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/test.yml b/.github/workflows/test.yml index 9ea035e8..ac2fca13 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,10 +17,10 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Install LLVM-12.0.0 + - name: Install LLVM-14.0.0 run: | wget https://apt.llvm.org/llvm.sh - sudo bash llvm.sh 12 + sudo bash llvm.sh 14 - uses: actions/checkout@v2 - name: Eigen-setup run: | diff --git a/.github/workflows/upload-pypi.yml b/.github/workflows/upload-pypi.yml index e213a497..006377f0 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/.github/workflows/wheel.yml b/.github/workflows/wheel.yml index db5ea130..0d96840b 100644 --- a/.github/workflows/wheel.yml +++ b/.github/workflows/wheel.yml @@ -20,7 +20,7 @@ jobs: env: CIBW_SKIP: "pp* *-musllinux_*" CIBW_ARCHS: "x86_64" - CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm12" + CIBW_MANYLINUX_X86_64_IMAGE: "ghcr.io/iith-compilers/manylinux2014-llvm/manylinux2014-llvm:x86-llvm14" CIBW_BEFORE_ALL: "bash Manylinux2014_Compliant_Source/pkg/build.sh" CIBW_TEST_REQUIRES: pytest CIBW_TEST_COMMAND: "pytest {project}/Manylinux2014_Compliant_Source/pkg/tests" diff --git a/.gitignore b/.gitignore index e38fa620..64c82c21 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ build/ __pycache__/ .vscode experiments/*/output +seed_embeddings/triplets.txt +seed_embeddings/preprocessed/* .cache/ 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 29f1af56..e76f79a2 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Please see [here](https://compilers.cse.iith.ac.in/projects/ir2vec/) for more de > IR2Vec: LLVM IR Based Scalable Program Embeddings, S. VenkataKeerthy, Rohit Aggarwal, Shalini Jain, Maunendra Sankar Desarkar, Ramakrishna Upadrasta, and Y. N. Srikant -![LLVM](https://img.shields.io/badge/LLVM-v12.0.0-blue) +![LLVM](https://img.shields.io/badge/LLVM-v14.0.0-blue) ![PyPI Version](https://img.shields.io/pypi/v/your-package-name) ![Tests](https://github.com/IITH-Compilers/IR2Vec/workflows/Tests/badge.svg) ![Publish](https://github.com/IITH-Compilers/IR2Vec/workflows/Publish/badge.svg) @@ -14,21 +14,37 @@ Please see [here](https://compilers.cse.iith.ac.in/projects/ir2vec/) for more de ![Image](images/ir2vec.jpg) +## LLVM Version Archive + +| LLVM Version | Branch | +| ------------ | ------ | +| LLVM 14.0.0 | [main](https://github.com/IITH-Compilers/IR2Vec) | +| LLVM 12.0.0 | [llvm12](https://github.com/IITH-Compilers/IR2Vec/tree/llvm12) | +| LLVM 10.0.1 | [llvm10](https://github.com/IITH-Compilers/IR2Vec/tree/llvm10) | +| LLVM 8.0.1 | [llvm8](https://github.com/IITH-Compilers/IR2Vec/tree/llvm8) | + ## 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) - * [Using Libraries](#using-libraries) - * [Using Python package (IR2Vec-Wheels)](#using-python-package-ir2vec-wheels) -* [Binaries, Libraries and Wheels - Artifacts](#binaries-libraries-and-wheels---artifacts) -* [Experiments](#experiments) -* [Citation](#citation) -* [Contributions](#contributions) -* [License](#license) +- [IR2Vec](#ir2vec) + - [LLVM Version Archive](#llvm-version-archive) + - [Table Of Contents](#table-of-contents) + - [Installation](#installation) + - [Python](#python) + - [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) + - [Binaries, Libraries and Wheels - Artifacts](#binaries-libraries-and-wheels---artifacts) + - [Experiments](#experiments) + - [Note](#note) + - [Citation](#citation) + - [Contributions](#contributions) + - [License](#license) ## Installation @@ -52,7 +68,7 @@ If you're a C++ developer and require low-level control, optimization, or integr ## Requirements * cmake (>= 3.13.4) * GNU Make (4.2.1) -* LLVM (12.0.0) - [src](https://github.com/llvm/llvm-project/tree/release/12.x), [release](https://releases.llvm.org/download.html#12.0.0) +* LLVM (14.0.0) - [src](https://github.com/llvm/llvm-project/tree/release/14.x), [release](https://releases.llvm.org/download.html#14.0.0) * Support for latest LLVM versions would be added soon * Eigen library (3.3.7) * Python (3.6.7) @@ -116,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`. @@ -154,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/seed_embeddings/OpenKE/generate_embedding.py b/seed_embeddings/OpenKE/generate_embedding.py index 04fa969f..5b847f69 100644 --- a/seed_embeddings/OpenKE/generate_embedding.py +++ b/seed_embeddings/OpenKE/generate_embedding.py @@ -21,9 +21,9 @@ def train(arg_conf): con.set_in_path(arg_conf.index_dir) con.set_work_threads(4) con.set_train_times(arg_conf.epoch) - con.set_nbatches(100) + con.set_nbatches(nbatches=arg_conf.nbatches) con.set_alpha(0.001) - con.set_margin(1.0) + con.set_margin(arg_conf.margin) con.set_bern(0) con.set_dimension(arg_conf.dim) con.set_ent_neg_rate(1) @@ -84,6 +84,22 @@ def findRep(src, dest, ent): type=int, default=300, ) + parser.add_argument( + "--nbatches", + dest="nbatches", + help="Number of batches", + required=False, + type=int, + default=100, + ) + parser.add_argument( + "--margin", + dest="margin", + help="Margin", + required=False, + type=float, + default=1.0, + ) arg_conf = parser.parse_args() @@ -91,7 +107,9 @@ def findRep(src, dest, ent): seedfile = os.path.join( arg_conf.index_dir, - "seedEmbedding_{}E_{}D.txt".format(arg_conf.epoch, arg_conf.dim), + "embeddings/seedEmbedding_{}E_{}D_{}batches{}margin.txt".format( + arg_conf.epoch, arg_conf.dim, arg_conf.nbatches, arg_conf.margin + ), ) findRep(outfilejson, seedfile, arg_conf.index_dir) diff --git a/seed_embeddings/OpenKE/openKE.yaml b/seed_embeddings/OpenKE/openKE.yaml new file mode 100644 index 00000000..c70cec8e --- /dev/null +++ b/seed_embeddings/OpenKE/openKE.yaml @@ -0,0 +1,7 @@ +name: openKE +channels: + - defaults + - conda-forge +dependencies: + - python=3.7 + - tensorflow-gpu==2.2.0 diff --git a/seed_embeddings/OpenKE/requirements.txt b/seed_embeddings/OpenKE/requirements.txt deleted file mode 100644 index c0d1ec84..00000000 --- a/seed_embeddings/OpenKE/requirements.txt +++ /dev/null @@ -1,102 +0,0 @@ -# This file may be used to create an environment using: -# $ conda create --name --file -# platform: linux-64 -_libgcc_mutex=0.1=main -_tflow_select=2.3.0=mkl -absl-py=0.10.0=py37_0 -aiohttp=3.7.4=py37h27cfd23_1 -appdirs=1.4.4=pyh9f0ad1d_0 -astor=0.8.1=py37_0 -astunparse=1.6.3=py_0 -async-timeout=3.0.1=py37h06a4308_0 -attrs=20.3.0=pyhd3eb1b0_0 -blas=1.0=mkl -blinker=1.4=py37h06a4308_0 -brotlipy=0.7.0=py37h27cfd23_1003 -c-ares=1.16.1=h7b6447c_0 -ca-certificates=2020.12.5=ha878542_0 -cachetools=4.2.1=pyhd3eb1b0_0 -certifi=2020.12.5=py37h89c1867_1 -cffi=1.14.5=py37h261ae71_0 -cfgv=3.2.0=py_0 -chardet=3.0.4=py37h06a4308_1003 -click=7.1.2=pyhd3eb1b0_0 -cryptography=3.3.2=py37h3c74f83_0 -distlib=0.3.1=pyh9f0ad1d_0 -editdistance=0.5.3=py37h3340039_2 -filelock=3.0.12=pyh9f0ad1d_0 -gast=0.3.3=py_0 -google-auth=1.27.1=pyhd3eb1b0_0 -google-auth-oauthlib=0.4.3=pyhd3eb1b0_0 -google-pasta=0.2.0=py_0 -grpcio=1.31.0=py37hf8bcb03_0 -h5py=2.10.0=py37hd6299e0_1 -hdf5=1.10.6=hb1b8bf9_0 -identify=2.1.0=pyhd8ed1ab_0 -idna=2.10=pyhd3eb1b0_0 -importlib-metadata=2.0.0=py_1 -importlib_metadata=2.0.0=1 -intel-openmp=2020.2=254 -keras-applications=1.0.8=py_1 -keras-preprocessing=1.1.0=py_1 -ld_impl_linux-64=2.33.1=h53a641e_7 -libedit=3.1.20191231=h14c3975_1 -libffi=3.3=he6710b0_2 -libgcc-ng=9.1.0=hdf63c60_0 -libgfortran-ng=7.3.0=hdf63c60_0 -libprotobuf=3.13.0=hd408876_0 -libstdcxx-ng=9.1.0=hdf63c60_0 -markdown=3.3=py37_0 -mkl=2020.2=256 -mkl-service=2.3.0=py37he904b0f_0 -mkl_fft=1.2.0=py37h23d657b_0 -mkl_random=1.1.1=py37h0573a6f_0 -mock=4.0.2=py_0 -multidict=5.1.0=py37h27cfd23_2 -ncurses=6.2=he6710b0_1 -nodeenv=1.5.0=pyh9f0ad1d_0 -numpy=1.19.1=py37hbc911f0_0 -numpy-base=1.19.1=py37hfa32c7d_0 -oauthlib=3.1.0=py_0 -openssl=1.1.1k=h27cfd23_0 -opt_einsum=3.1.0=py_0 -pip=20.2.3=py37_0 -pre-commit=2.9.3=py37h89c1867_0 -protobuf=3.13.0=py37hf484d3e_1 -pyasn1=0.4.8=py_0 -pyasn1-modules=0.2.8=py_0 -pycparser=2.20=py_2 -pyjwt=1.7.1=py37_0 -pyopenssl=20.0.1=pyhd3eb1b0_1 -pysocks=1.7.1=py37_1 -python=3.7.9=h7579374_0 -python_abi=3.7=1_cp37m -pyyaml=5.4.1=py37h27cfd23_1 -readline=8.0=h7b6447c_0 -requests=2.25.1=pyhd3eb1b0_0 -requests-oauthlib=1.3.0=py_0 -rsa=4.7.2=pyhd3eb1b0_1 -scipy=1.5.2=py37h0b6359f_0 -setuptools=50.3.0=py37hb0f4dca_1 -six=1.15.0=py_0 -sqlite=3.33.0=h62c20be_0 -tensorboard=2.4.0=pyhc547734_0 -tensorboard-plugin-wit=1.6.0=py_0 -tensorflow=2.2.0=mkl_py37h6e9ce2d_0 -tensorflow-base=2.2.0=mkl_py37hd506778_0 -tensorflow-estimator=2.2.0=pyh208ff02_0 -termcolor=1.1.0=py37_1 -tk=8.6.10=hbc83047_0 -toml=0.10.2=pyhd8ed1ab_0 -typing-extensions=3.7.4.3=hd3eb1b0_0 -typing_extensions=3.7.4.3=pyh06a4308_0 -urllib3=1.26.5=pyhd8ed1ab_0 -virtualenv=20.4.2=py37h89c1867_0 -werkzeug=1.0.1=py_0 -wheel=0.35.1=py_0 -wrapt=1.12.1=py37h7b6447c_1 -xz=5.2.5=h7b6447c_0 -yaml=0.2.5=h516909a_0 -yarl=1.6.3=py37h27cfd23_0 -zipp=3.3.0=py_0 -zlib=1.2.11=h7b6447c_3 diff --git a/seed_embeddings/OpenKE/requirements.yaml b/seed_embeddings/OpenKE/requirements.yaml deleted file mode 100644 index ea8c3567..00000000 --- a/seed_embeddings/OpenKE/requirements.yaml +++ /dev/null @@ -1,90 +0,0 @@ -name: ke -channels: - - defaults -dependencies: - - _libgcc_mutex=0.1=main - - _tflow_select=2.3.0=mkl - - absl-py=0.10.0=py37_0 - - aiohttp=3.7.4=py37h27cfd23_1 - - astor=0.8.1=py37_0 - - astunparse=1.6.3=py_0 - - async-timeout=3.0.1=py37h06a4308_0 - - attrs=20.3.0=pyhd3eb1b0_0 - - blas=1.0=mkl - - blinker=1.4=py37h06a4308_0 - - brotlipy=0.7.0=py37h27cfd23_1003 - - c-ares=1.16.1=h7b6447c_0 - - ca-certificates=2021.1.19=h06a4308_1 - - cachetools=4.2.1=pyhd3eb1b0_0 - - certifi=2020.12.5=py37h06a4308_0 - - cffi=1.14.5=py37h261ae71_0 - - chardet=3.0.4=py37h06a4308_1003 - - click=7.1.2=pyhd3eb1b0_0 - - cryptography=3.4.7=py37hd23ed53_0 - - gast=0.3.3=py_0 - - google-auth=1.27.1=pyhd3eb1b0_0 - - google-auth-oauthlib=0.4.3=pyhd3eb1b0_0 - - google-pasta=0.2.0=py_0 - - grpcio=1.31.0=py37hf8bcb03_0 - - h5py=2.10.0=py37hd6299e0_1 - - hdf5=1.10.6=hb1b8bf9_0 - - idna=2.10=pyhd3eb1b0_0 - - importlib-metadata=2.0.0=py_1 - - importlib_metadata=2.0.0=1 - - intel-openmp=2020.2=254 - - keras-applications=1.0.8=py_1 - - keras-preprocessing=1.1.0=py_1 - - ld_impl_linux-64=2.33.1=h53a641e_7 - - libedit=3.1.20191231=h14c3975_1 - - libffi=3.3=he6710b0_2 - - libgcc-ng=9.1.0=hdf63c60_0 - - libgfortran-ng=7.3.0=hdf63c60_0 - - libprotobuf=3.13.0=hd408876_0 - - libstdcxx-ng=9.1.0=hdf63c60_0 - - markdown=3.3=py37_0 - - mkl=2020.2=256 - - mkl-service=2.3.0=py37he904b0f_0 - - mkl_fft=1.2.0=py37h23d657b_0 - - mkl_random=1.1.1=py37h0573a6f_0 - - mock=4.0.2=py_0 - - multidict=5.1.0=py37h27cfd23_2 - - ncurses=6.2=he6710b0_1 - - numpy=1.19.1=py37hbc911f0_0 - - numpy-base=1.19.1=py37hfa32c7d_0 - - oauthlib=3.1.0=py_0 - - openssl=1.1.1k=h27cfd23_0 - - opt_einsum=3.1.0=py_0 - - pip=20.2.3=py37_0 - - protobuf=3.13.0=py37hf484d3e_1 - - pyasn1=0.4.8=py_0 - - pyasn1-modules=0.2.8=py_0 - - pycparser=2.20=py_2 - - pyjwt=1.7.1=py37_0 - - pyopenssl=20.0.1=pyhd3eb1b0_1 - - pysocks=1.7.1=py37_1 - - python=3.7.9=h7579374_0 - - readline=8.0=h7b6447c_0 - - requests=2.25.1=pyhd3eb1b0_0 - - requests-oauthlib=1.3.0=py_0 - - rsa=4.7.2=pyhd3eb1b0_1 - - scipy=1.5.2=py37h0b6359f_0 - - setuptools=50.3.0=py37hb0f4dca_1 - - six=1.15.0=py_0 - - sqlite=3.33.0=h62c20be_0 - - tensorboard=2.4.0=pyhc547734_0 - - tensorboard-plugin-wit=1.6.0=py_0 - - tensorflow=2.2.0=mkl_py37h6e9ce2d_0 - - tensorflow-base=2.2.0=mkl_py37hd506778_0 - - tensorflow-estimator=2.2.0=pyh208ff02_0 - - termcolor=1.1.0=py37_1 - - tk=8.6.10=hbc83047_0 - - typing-extensions=3.7.4.3=hd3eb1b0_0 - - typing_extensions=3.7.4.3=pyh06a4308_0 - - urllib3=1.26.3=pyhd3eb1b0_0 - - werkzeug=1.0.1=py_0 - - wheel=0.35.1=py_0 - - wrapt=1.12.1=py37h7b6447c_1 - - xz=5.2.5=h7b6447c_0 - - yarl=1.6.3=py37h27cfd23_0 - - zipp=3.3.0=py_0 - - zlib=1.2.11=h7b6447c_3 diff --git a/seed_embeddings/README.md b/seed_embeddings/README.md index 75a53545..8b850db7 100644 --- a/seed_embeddings/README.md +++ b/seed_embeddings/README.md @@ -42,8 +42,8 @@ The [`OpenKE`](./OpenKE) directory is a modified version of OpenKE repository (h Please see [OpenKE/README.md](./OpenKE/README.md) for further information on OpenKE. #### Requirements -Create `conda` environment and install the packages given in [requirements.txt](./OpenKE/requirements.txt) -* `conda create --name openKE --file ./OpenKE/requirements.txt` +Create `conda` environment and install the packages given in [openKE.yaml](./OpenKE/requirements.txt) +* `conda create -f ./OpenKE/openKE.yaml` * `conda activate openKE` #### Preprocessing the triplets @@ -56,5 +56,7 @@ We preprocess the generated triplets from the [previous step](#step-2-generating #### Training TransE to generate embeddings Run `python generate_embedding.py --index_dir=` * `--index_dir` points to the directory containing the processed files generated on preprocessing the triplets. +* `--nbatches` Mentions the batch size. Default size is 100. +* `--margin` Mentions the margin size. Default margin is 1.0 The seed embedding vocabulary will be generated inside the same directory. diff --git a/seed_embeddings/triplets.sh b/seed_embeddings/triplets.sh index 893f3770..e9e0da7d 100644 --- a/seed_embeddings/triplets.sh +++ b/seed_embeddings/triplets.sh @@ -69,7 +69,7 @@ while read p; do fi USED_OPT[$a]=$opt DEBUG echo "opt from $opt" - ${LLVM_BUILD}/bin/opt-12 -S -$opt $p -o $tmpfile + ${LLVM_BUILD}/bin/opt-14 -S -$opt $p -o $tmpfile $COLLECT_BUILD/bin/ir2vec -collectIR -o $4 $tmpfile &>/dev/null let "a++" rm "$tmpfile" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2b045f85..ef695554 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -10,7 +10,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2") set(LT_LLVM_INSTALL_DIR "" CACHE PATH "LLVM installation directory") list(APPEND CMAKE_PREFIX_PATH "${LT_LLVM_INSTALL_DIR}/lib/cmake/llvm/") -find_package(LLVM 12.0.0 REQUIRED CONFIG) +find_package(LLVM 14.0.0 REQUIRED CONFIG) message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}") message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}") @@ -24,7 +24,7 @@ include_directories(SYSTEM ${LLVM_INCLUDE_DIRS}) configure_file (./include/version.h.cmake version.h @ONLY) include_directories(./include ${CMAKE_CURRENT_BINARY_DIR}) -set(CMAKE_CXX_STANDARD 14 CACHE STRING "") +set(CMAKE_CXX_STANDARD 17 CACHE STRING "") # LLVM is normally built without RTTI. Be consistent with that. if(NOT LLVM_ENABLE_RTTI) @@ -35,7 +35,7 @@ set(commonsrc FlowAware.cpp Symbolic.cpp utils.cpp) set(libsrc libIR2Vec.cpp ${commonsrc}) set(binsrc CollectIR.cpp IR2Vec.cpp) -file(GLOB RESOURCE_FILES ../vocabulary/**.txt) +file(GLOB RESOURCE_FILES ../vocabulary/seedEmbeddingVocab-llvm14.txt) # llvm_map_components_to_libnames(llvm_libs all) llvm_map_components_to_libnames(llvm_libs support core irreader analysis TransformUtils) @@ -68,7 +68,7 @@ install(TARGETS ${IR2VEC_LIB} ${IR2VEC_LIB_STATIC} add_subdirectory(test-suite) add_custom_target(verify-symbolic - COMMAND bash ./sanity_check.sh SYM llvm12 + COMMAND bash ./sanity_check.sh SYM llvm14 COMMENT "Generating Symbolic IR2Vec vectors and comparing with oracle..." WORKING_DIRECTORY ./test-suite DEPENDS ${PROJECT_NAME} @@ -76,7 +76,7 @@ add_custom_target(verify-symbolic ) add_custom_target(verify-flowaware - COMMAND bash sanity_check.sh FA llvm12 + COMMAND bash sanity_check.sh FA llvm14 COMMENT "Generating Flow-Aware IR2Vec vectors and comparing with oracle..." WORKING_DIRECTORY ./test-suite DEPENDS ${PROJECT_NAME} diff --git a/src/test-suite/CMakeLists.txt b/src/test-suite/CMakeLists.txt index 51684534..6c975ad6 100644 --- a/src/test-suite/CMakeLists.txt +++ b/src/test-suite/CMakeLists.txt @@ -1,5 +1,5 @@ configure_file(sanity_check.sh.cmake sanity_check.sh @ONLY) -file(COPY PE-benchmarks-llfiles-llvm12 DESTINATION ./) +file(COPY PE-benchmarks-llfiles-llvm14 DESTINATION ./) file(COPY oracle DESTINATION ./) file(COPY ../../vocabulary DESTINATION ./) -file(COPY index-llvm12.files DESTINATION ./) +file(COPY index-llvm14.files DESTINATION ./) 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/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/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/Find_the_closest_pair_from_two_sorted_arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/Find_the_closest_pair_from_two_sorted_arrays.ll similarity index 61% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/Find_the_closest_pair_from_two_sorted_arrays.ll index f17e2be1..601408dc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Find_the_closest_pair_from_two_sorted_arrays.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/Find_the_closest_pair_from_two_sorted_arrays.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -32,21 +32,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12printClosestPiS_iii(i32* noundef %0, i32* noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4) #4 { %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 %8 = alloca i32, align 4 @@ -98,7 +98,7 @@ define dso_local void @_Z12printClosestPiS_iii(i32* %0, i32* %1, i32 %2, i32 %3, %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 + %41 = call i32 @abs(i32 noundef %40) #8 %42 = load i32, i32* %11, align 4 %43 = icmp slt i32 %41, %42 br i1 %43, label %44, label %61 @@ -121,7 +121,7 @@ define dso_local void @_Z12printClosestPiS_iii(i32* %0, i32* %1, i32 %2, i32 %3, %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 + %60 = call i32 @abs(i32 noundef %59) #8 store i32 %60, i32* %11, align 4 br label %61 @@ -154,36 +154,36 @@ define dso_local void @_Z12printClosestPiS_iii(i32* %0, i32* %1, i32 %2, i32 %3, br label %81 81: ; preds = %78, %75 - br label %18, !llvm.loop !2 + br label %18, !llvm.loop !6 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)) + %83 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %89 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %83, i32 noundef %88) + %90 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %89, i8* noundef 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)) + %96 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %90, i32 noundef %95) + %97 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %96, i8* noundef 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 i32 @abs(i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca [4 x i32], align 16 @@ -203,11 +203,11 @@ define dso_local i32 @main() #6 { %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) + call void @_Z12printClosestPiS_iii(i32* noundef %9, i32* noundef %10, i32 noundef %11, i32 noundef %12, i32 noundef %13) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -216,20 +216,24 @@ define internal void @_GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_array 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readnone willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } attributes #8 = { nounwind readnone willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll index 9c1f44e1..522a9402 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Iterative_QuickSort.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/Iterative_QuickSort.ll @@ -22,28 +22,28 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -62,8 +62,8 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -115,7 +115,7 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #4 { %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) + call void @_Z4swapPiS_(i32* noundef %37, i32* noundef %41) br label %42 42: ; preds = %31, %23 @@ -125,7 +125,7 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %18, !llvm.loop !6 46: ; preds = %18 %47 = load i32*, i32** %4, align 8 @@ -137,14 +137,14 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #4 { %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) + call void @_Z4swapPiS_(i32* noundef %51, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z18quickSortIterativePiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -204,7 +204,7 @@ define dso_local void @_Z18quickSortIterativePiii(i32* %0, i32 %1, i32 %2) #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) + %45 = call noundef i32 @_Z9partitionPiii(i32* noundef %42, i32 noundef %43, i32 noundef %44) store i32 %45, i32* %10, align 4 %46 = load i32, i32* %10, align 4 %47 = sub nsw i32 %46, 1 @@ -256,7 +256,7 @@ define dso_local void @_Z18quickSortIterativePiii(i32* %0, i32 %1, i32 %2) #4 { br label %79 79: ; preds = %67, %62 - br label %28, !llvm.loop !4 + br label %28, !llvm.loop !8 80: ; preds = %28 %81 = load i8*, i8** %7, align 8 @@ -270,8 +270,8 @@ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %1) #6 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -292,26 +292,26 @@ define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #6 { %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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef 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 + br label %6, !llvm.loop !9 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -322,14 +322,14 @@ define dso_local i32 @main() #7 { %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) + call void @_Z18quickSortIterativePiii(i32* noundef %5, i32 noundef 0, i32 noundef %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) + call void @_Z8printArrPii(i32* noundef %8, i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -338,22 +338,26 @@ define internal void @_GLOBAL__sub_I_Iterative_QuickSort.cpp() #0 section ".text 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll index faf88051..3410d5f0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/Nearly_sorted_Algo.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/Nearly_sorted_Algo.ll @@ -315,7 +315,7 @@ $_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 +@_ZSt4cout = external 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 @@ -325,21 +325,21 @@ $_ZNKSt6vectorIiSaIiEE3endEv = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z5sortKPiii(i32* noundef %0, i32 noundef %1, i32 noundef %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 @@ -361,12 +361,12 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b %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) + call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7, i32* noundef %14, i32* noundef %19, %"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %8, %"class.std::vector"* noundef 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 store i32 0, i32* %12, align 4 %22 = load i32, i32* %6, align 4 %23 = add nsw i32 %22, 1 @@ -380,7 +380,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b 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) + %29 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) to label %30 unwind label %50 30: ; preds = %28 @@ -392,7 +392,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b %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) + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) to label %37 unwind label %50 37: ; preds = %30 @@ -400,7 +400,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b %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) + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7, i32* noundef nonnull align 4 dereferenceable(4) %41) to label %42 unwind label %50 42: ; preds = %37 @@ -410,7 +410,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b %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 + br label %24, !llvm.loop !6 46: ; preds = %3 %47 = landingpad { i8*, i32 } @@ -419,7 +419,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 br label %71 50: ; preds = %62, %60, %55, %37, %30, %28 @@ -429,14 +429,14 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b 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 + call void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* noundef nonnull align 8 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) + %56 = invoke noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) to label %57 unwind label %50 57: ; preds = %55 @@ -445,7 +445,7 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b 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) + %61 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) to label %62 unwind label %50 62: ; preds = %60 @@ -457,11 +457,11 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b %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) + invoke void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %7) to label %69 unwind label %50 69: ; preds = %62 - br label %55, !llvm.loop !4 + br label %55, !llvm.loop !8 70: ; preds = %57 call void @llvm.trap() @@ -475,21 +475,21 @@ define dso_local i32 @_Z5sortKPiii(i32* %0, i32 %1, i32 %2) #4 personality i8* b resume { i8*, i32 } %75 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEEC2IPiEET_S8_RKS4_OS2_(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %0, i32* noundef %1, i32* noundef %2, %"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %3, %"class.std::vector"* noundef 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 @@ -511,32 +511,32 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g %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 + %22 = call noundef nonnull align 8 dereferenceable(24) %"class.std::vector"* @_ZSt4moveIRSt6vectorIiSaIiEEEONSt16remove_referenceIT_E4typeEOS5_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %21) #3 + call void @_ZNSt6vectorIiSaIiEEC2EOS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %20, %"class.std::vector"* noundef 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 + %27 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 + 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"* noundef nonnull align 8 dereferenceable(8) %11, %"class.__gnu_cxx::__normal_iterator"* noundef 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) + %33 = invoke i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %25, i32* %32, i32* noundef %29, i32* noundef %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 + %37 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %40 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -557,7 +557,7 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %20) #3 br label %52 52: ; preds = %48 @@ -568,10 +568,10 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g resume { i8*, i32 } %56 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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*) { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 @@ -588,13 +588,13 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector %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) + %17 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %16) #3 + invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %10, i32* noundef %15, %"class.std::allocator"* noundef 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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %19) #3 ret void 20: ; preds = %1 @@ -605,7 +605,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector %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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %24) #3 br label %25 25: ; preds = %20 @@ -614,18 +614,18 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3topEv(%"class.std::priority_queue"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt6vectorIiSaIiEE5frontEv(%"class.std::vector"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE3popEv(%"class.std::priority_queue"* noundef nonnull align 8 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 @@ -633,11 +633,11 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g 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 + %8 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %11 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -647,12 +647,12 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g %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 + call void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE4pushERKi(%"class.std::priority_queue"* noundef nonnull align 8 dereferenceable(25) %0, i32* noundef 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 @@ -663,13 +663,13 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g %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) + call void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + %12 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %15 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -681,13 +681,13 @@ define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7g 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEE5emptyEv(%"class.std::priority_queue"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret i1 %5 } @@ -695,17 +695,17 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt14priority_queueIiSt6vectorIiSaI 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 { +define linkonce_odr dso_local void @_ZNSt14priority_queueIiSt6vectorIiSaIiEESt7greaterIiEED2Ev(%"class.std::priority_queue"* noundef nonnull align 8 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10printArrayPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -726,31 +726,31 @@ define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef 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 + br label %6, !llvm.loop !9 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_) + %22 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #9 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca [6 x i32], align 16 @@ -763,51 +763,51 @@ define dso_local i32 @main() #9 { %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)) + %9 = call noundef i32 @_Z5sortKPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z10printArrayPii(i32* noundef %11, i32 noundef %12) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 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 @@ -821,15 +821,15 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_da } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %0, i32* noundef %1, %"class.std::allocator"* noundef 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 @@ -838,12 +838,12 @@ define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %0, i3 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) + call void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %7, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -853,7 +853,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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*) { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -875,12 +875,12 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std %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) + invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %5, i32* noundef %9, i64 noundef %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %23) #3 ret void 24: ; preds = %1 @@ -891,7 +891,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %28) #3 br label %29 29: ; preds = %24 @@ -907,24 +907,24 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare void @_ZSt9terminatev() -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* %0, i32* %1) #4 comdat { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %0, i32* noundef %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) + call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %5, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %0, i32* noundef %1) #7 comdat align 2 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 store i32* %0, i32** %3, align 8 @@ -932,8 +932,8 @@ define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"struct.std::_Vector_base"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -950,7 +950,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEP %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) + call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12, i32* noundef %13, i64 noundef %14) br label %15 15: ; preds = %10, %3 @@ -958,17 +958,17 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEP } ; 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -979,12 +979,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -994,33 +994,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(24) %"class.std::vector"* @_ZSt4moveIRSt6vectorIiSaIiEEEONSt16remove_referenceIT_E4typeEOS5_(%"class.std::vector"* noundef 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 @@ -1028,7 +1028,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(24) %"class.std::v } ; 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 { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EOS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, %"class.std::vector"* noundef 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 @@ -1037,12 +1037,12 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EOS1_(%"class.std::vec %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 + call void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_Vector_base"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx17__normal_iteratorIS3_S1_EENS5_IPKiS1_EET_SA_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* %1, i32* noundef %2, i32* noundef %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 @@ -1060,28 +1060,28 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx 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 + %18 = call i32* @_ZNKSt6vectorIiSaIiEE6cbeginEv(%"class.std::vector"* noundef nonnull align 8 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 + %20 = call noundef i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %6, %"class.__gnu_cxx::__normal_iterator.0"* noundef 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 + %21 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %24 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %13, i64 noundef %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 + call void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %17, i32* %29, i32* noundef %26, i32* noundef %27) + %30 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %33 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %15, i64 noundef %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 @@ -1089,8 +1089,8 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE6insertIPivEEN9__gnu_cxx 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -1099,14 +1099,14 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vect %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +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"* noundef nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* noundef 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 @@ -1114,13 +1114,13 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vecto %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 + %8 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 +; Function Attrs: mustprogress noinline uwtable 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 @@ -1133,8 +1133,8 @@ define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iterato 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) + %12 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #3 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 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) @@ -1145,12 +1145,12 @@ define linkonce_odr dso_local void @_ZSt9make_heapIN9__gnu_cxx17__normal_iterato %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) + 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"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -1159,14 +1159,14 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::ve %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_Vector_base"* noundef 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 @@ -1175,12 +1175,12 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EOS1_(%"struct. %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_Vector_base>::_Vector_impl"* noundef 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_Vector_base>::_Vector_impl"* noundef 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 @@ -1188,19 +1188,19 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2E %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 + %8 = call noundef nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* noundef 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 + call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %6, %"class.std::allocator"* noundef 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 + %12 = call noundef nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* noundef 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 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 dereferenceable(24) %10, %"struct.std::_Vector_base>::_Vector_impl_data"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(24) %"struct.std::_Vector_base>::_Vector_impl"* @_ZSt4moveIRNSt12_Vector_baseIiSaIiEE12_Vector_implEEONSt16remove_referenceIT_E4typeEOS6_(%"struct.std::_Vector_base>::_Vector_impl"* noundef 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 @@ -1208,7 +1208,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(24) %"struct.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 @@ -1217,12 +1217,12 @@ define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* non %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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, %"class.__gnu_cxx::new_allocator"* noundef 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2EOS2_(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_Vector_base>::_Vector_impl_data"* noundef 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 @@ -1256,7 +1256,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_da } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.__gnu_cxx::new_allocator"* noundef 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 @@ -1265,17 +1265,17 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"cl 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS9_SC_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator.0"* noundef 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 + %6 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %8) #3 %10 = load i32*, i32** %9, align 8 %11 = ptrtoint i32* %7 to i64 %12 = ptrtoint i32* %10 to i64 @@ -1284,8 +1284,8 @@ define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPKiSt6vectorIiSaIiEEEENS_17__ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE6cbeginEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -1294,14 +1294,14 @@ define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE6cbeginEv(%"class.std:: %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St12__false_type(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* %1, i32* noundef %2, i32* noundef %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 @@ -1322,16 +1322,16 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_insert_dispatchIPiE 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) + call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef 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) + call void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %15, i32* %22, i32* noundef %18, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %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 @@ -1344,14 +1344,14 @@ define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vecto %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %3, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 @@ -1360,7 +1360,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__g } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %0, i32** noundef 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 @@ -1373,8 +1373,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vecto 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN9__gnu_cxx17__normal_iteratorIS3_S1_EET_S7_St20forward_iterator_tag(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* %1, i32* noundef %2, i32* noundef %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 @@ -1408,7 +1408,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN 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) + %32 = call noundef i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(i32* noundef %30, i32* noundef %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 @@ -1429,10 +1429,10 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN br i1 %48, label %49, label %155 49: ; preds = %29 - %50 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %25) #3 + %50 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 + %52 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %12, %"class.__gnu_cxx::__normal_iterator"* noundef 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 @@ -1465,8 +1465,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %81 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %80) #3 + %82 = call noundef i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %69, i32* noundef %74, i32* noundef %79, %"class.std::allocator"* noundef 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 @@ -1475,14 +1475,14 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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 + %90 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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) + %97 = call noundef i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* noundef %91, i32* noundef %95, i32* noundef %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* @@ -1490,7 +1490,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN 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) + %104 = call i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* noundef %98, i32* noundef %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 @@ -1499,7 +1499,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + call void @_ZSt7advanceIPimEvRT_T0_(i32** noundef nonnull align 8 dereferenceable(8) %16, i64 noundef %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"* @@ -1508,8 +1508,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %117 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %116) #3 + %118 = call noundef i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* noundef %109, i32* noundef %110, i32* noundef %115, %"class.std::allocator"* noundef 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 @@ -1520,7 +1520,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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 + %128 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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"* @@ -1529,8 +1529,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %137 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %136) #3 + %138 = call noundef i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %129, i32* noundef %130, i32* noundef %135, %"class.std::allocator"* noundef 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 @@ -1546,7 +1546,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN 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) + %152 = call i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* noundef %146, i32* noundef %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 @@ -1556,11 +1556,11 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN 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)) + %157 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %25, i64 noundef %156, i8* noundef 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) + %160 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %158, i64 noundef %159) store i32* %160, i32** %20, align 8 %161 = load i32*, i32** %20, align 8 store i32* %161, i32** %21, align 8 @@ -1569,12 +1569,12 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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 + %167 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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) + %171 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %170) #3 + %172 = invoke noundef i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %166, i32* noundef %168, i32* noundef %169, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %171) to label %173 unwind label %193 173: ; preds = %155 @@ -1583,13 +1583,13 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %178 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %177) #3 + %179 = invoke noundef i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* noundef %174, i32* noundef %175, i32* noundef %176, %"class.std::allocator"* noundef 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 + %181 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -1598,8 +1598,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %190 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %189) #3 + %191 = invoke noundef i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %182, i32* noundef %187, i32* noundef %188, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %190) to label %192 unwind label %193 192: ; preds = %180 @@ -1621,15 +1621,15 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %203 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %202) #3 + invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %200, i32* noundef %201, %"class.std::allocator"* noundef 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) + invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %205, i32* noundef %206, i64 noundef %207) to label %208 unwind label %209 208: ; preds = %204 @@ -1661,8 +1661,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + %226 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %225) #3 + call void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %219, i32* noundef %224, %"class.std::allocator"* noundef 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 @@ -1683,7 +1683,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN %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) + call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %227, i32* noundef %232, i64 noundef %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 @@ -1730,15 +1730,15 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE15_M_range_insertIPiEEvN 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca %"struct.std::random_access_iterator_tag", align 1 @@ -1747,22 +1747,22 @@ define linkonce_odr dso_local i64 @_ZSt8distanceIPiENSt15iterator_traitsIT_E15di 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) + call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef nonnull align 8 dereferenceable(8) %3) + %9 = call noundef i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(i32* noundef %7, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* noundef 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 + %6 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #3 %10 = load i32*, i32** %9, align 8 %11 = ptrtoint i32* %7 to i64 %12 = ptrtoint i32* %10 to i64 @@ -1771,8 +1771,8 @@ define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__n 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -1784,11 +1784,11 @@ define linkonce_odr dso_local i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T 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) + %12 = call i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* noundef %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) + %15 = call i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* noundef %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 @@ -1797,12 +1797,12 @@ define linkonce_odr dso_local i32* @_ZSt22__uninitialized_move_aIPiS0_SaIiEET0_T %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) + %23 = call noundef i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %20, i32* %22, i32* noundef %17, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1810,16 +1810,16 @@ define linkonce_odr dso_local i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* % 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) + %8 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %7) %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) + %10 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -1827,8 +1827,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__g 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET0_T_S8_S7_(i32* noundef %0, i32* noundef %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 @@ -1839,15 +1839,15 @@ define linkonce_odr dso_local i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS 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) + %11 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %10) %12 = load i32*, i32** %7, align 8 - %13 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %12) + %13 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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) + %18 = call i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(i32* noundef %11, i32* noundef %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 @@ -1855,8 +1855,8 @@ define linkonce_odr dso_local i32* @_ZSt4copyIPiN9__gnu_cxx17__normal_iteratorIS 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt7advanceIPimEvRT_T0_(i32** noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #4 comdat { %3 = alloca i32**, align 8 %4 = alloca i64, align 8 %5 = alloca i64, align 8 @@ -1869,13 +1869,13 @@ define linkonce_odr dso_local void @_ZSt7advanceIPimEvRT_T0_(i32** nonnull align %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) + call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef nonnull align 8 dereferenceable(8) %11) + call void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(i32** noundef nonnull align 8 dereferenceable(8) %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_S1_RSaIT1_E(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -1887,12 +1887,12 @@ define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aIPiS0_iET0_T_S2_ %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) + %12 = call noundef i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i32* noundef %9, i32* noundef %10, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::vector"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1902,8 +1902,8 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 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 + %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 %12 = sub i64 %10, %11 %13 = load i64, i64* %5, align 8 %14 = icmp ult i64 %12, %13 @@ -1911,30 +1911,30 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 15: ; preds = %3 %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* %16) #17 + call void @_ZSt20__throw_length_errorPKc(i8* noundef %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 + %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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) + %20 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %8, i64* noundef 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 + %24 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 br label %34 32: ; preds = %26 @@ -1946,8 +1946,8 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1961,7 +1961,7 @@ define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(% %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) + %12 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11) br label %14 13: ; preds = %2 @@ -1972,8 +1972,8 @@ define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(% 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -1985,11 +1985,11 @@ define linkonce_odr dso_local i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS 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) + %12 = call i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* noundef %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) + %15 = call i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* noundef %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 @@ -1998,16 +1998,16 @@ define linkonce_odr dso_local i32* @_ZSt34__uninitialized_move_if_noexcept_aIPiS %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) + %23 = call noundef i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %20, i32* %22, i32* noundef %17, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %18) ret i32* %23 } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E15difference_typeES2_S2_St26random_access_iterator_tag(i32* noundef %0, i32* noundef %1) #7 comdat { %3 = alloca %"struct.std::random_access_iterator_tag", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -2022,8 +2022,8 @@ define linkonce_odr dso_local i64 @_ZSt10__distanceIPiENSt15iterator_traitsIT_E1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__uninitialized_copy_aISt13move_iteratorIPiES1_iET0_T_S4_S3_RSaIT1_E(i32* %0, i32* %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -2047,25 +2047,25 @@ define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aISt13move_iterat %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) + %22 = call noundef i32* @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %19, i32* %21, i32* noundef %17) ret i32* %22 } -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* %0) #4 comdat { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local i32* @_ZSt18make_move_iteratorIPiESt13move_iteratorIT_ES2_(i32* noundef %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 + %4 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** noundef 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) + call void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt18uninitialized_copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %0, i32* %1, i32* noundef %2) #4 comdat { %4 = alloca %"class.std::move_iterator", align 8 %5 = alloca %"class.std::move_iterator", align 8 %6 = alloca i32*, align 8 @@ -2089,12 +2089,12 @@ define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyISt13move_iteratorIP %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) + %21 = call noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(i32* %18, i32* %20, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyISt13move_iteratorIPiES3_EET0_T_S6_S5_(i32* %0, i32* %1, i32* noundef %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 @@ -2116,12 +2116,12 @@ define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_ %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) + %20 = call noundef i32* @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %17, i32* %19, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S3_(i32* %0, i32* %1, i32* noundef %2) #4 comdat { %4 = alloca %"class.std::move_iterator", align 8 %5 = alloca %"class.std::move_iterator", align 8 %6 = alloca i32*, align 8 @@ -2137,20 +2137,20 @@ define linkonce_odr dso_local i32* @_ZSt4copyISt13move_iteratorIPiES1_ET0_T_S4_S 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) + %15 = call noundef 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) + %20 = call noundef 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) + %22 = call noundef i32* @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %15, i32* noundef %20, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2158,28 +2158,28 @@ define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb1EPiS0_ET1_T0_S2_S1_(i 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 + %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #3 %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 + %13 = call noundef i32* @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %12) + %14 = call noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef 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) + %4 = call noundef i32* @_ZNKSt13move_iteratorIPiE4baseEv(%"class.std::move_iterator"* noundef nonnull align 8 dereferenceable(8) %2) + %5 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %0, i32* noundef %1) #7 comdat { %3 = alloca i32**, align 8 %4 = alloca i32*, align 8 store i32** %0, i32*** %3, align 8 @@ -2188,8 +2188,8 @@ define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnu 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2199,20 +2199,20 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb1EPiS0_ET1_T0_S2_S1_( %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) + %10 = call noundef i32* @_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %9) ret i32* %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #7 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2222,12 +2222,12 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb1EPiS0_ET1_T0_S2_S1_( %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) + %10 = call noundef i32* @_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11__copy_moveILb1ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #7 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2263,19 +2263,19 @@ define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb1ELb1ESt26random_access ret i32* %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNKSt13move_iteratorIPiE4baseEv(%"class.std::move_iterator"* noundef nonnull align 8 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 @@ -2284,8 +2284,8 @@ define linkonce_odr dso_local i32* @_ZNKSt13move_iteratorIPiE4baseEv(%"class.std 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** noundef 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 @@ -2293,21 +2293,21 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZSt4mov } ; 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 { +define linkonce_odr dso_local void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* noundef nonnull align 8 dereferenceable(8) %0, i32* noundef %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 + %7 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZSt4moveIRPiEONSt16remove_referenceIT_E4typeEOS3_(i32** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2315,18 +2315,18 @@ define linkonce_odr dso_local i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0 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 + %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #3 %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 + %13 = call noundef i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %12) + %14 = call noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2336,12 +2336,12 @@ define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T %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) + %10 = call noundef i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2351,12 +2351,12 @@ define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T %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) + %10 = call noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #7 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2396,8 +2396,8 @@ define linkonce_odr dso_local i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26rand 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__normal_iteratorIS0_St6vectorIiSaIiEEEEET1_T0_S8_S7_(i32* noundef %0, i32* noundef %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 @@ -2412,19 +2412,19 @@ define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__nor %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 + %14 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %13) #3 %15 = load i32*, i32** %7, align 8 - %16 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %15) #3 + %16 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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) + %21 = call noundef i32* @_ZSt12__niter_baseIPiSt6vectorIiSaIiEEET_N9__gnu_cxx17__normal_iteratorIS4_T0_EE(i32* %20) #3 + %22 = call noundef i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %14, i32* noundef %16, i32* noundef %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) + %25 = call i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(i32* %24, i32* noundef %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 @@ -2432,8 +2432,8 @@ define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiN9__gnu_cxx17__nor 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES2_ET_S7_T0_(i32* %0, i32* noundef %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 @@ -2447,12 +2447,12 @@ define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_ite 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 + %13 = call noundef 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 + %18 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, i64 noundef %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 @@ -2460,8 +2460,8 @@ define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIN9__gnu_cxx17__normal_ite 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2471,22 +2471,22 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_( %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) + %10 = call noundef i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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 + %4 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2496,12 +2496,12 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb0EPiS0_ET1_T0_S2_S1_( %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) + %10 = call noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #7 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2537,8 +2537,8 @@ define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9__advanceIPilEvRT_T0_St26random_access_iterator_tag(i32** noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %1) #7 comdat { %3 = alloca %"struct.std::random_access_iterator_tag", align 1 %4 = alloca i32**, align 8 %5 = alloca i64, align 8 @@ -2595,8 +2595,8 @@ define linkonce_odr dso_local void @_ZSt9__advanceIPilEvRT_T0_St26random_access_ ; 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2608,12 +2608,12 @@ define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyIPiS0_ET0_T_S2_S1_(i %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) + %11 = call noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(i32* noundef %8, i32* noundef %9, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIPiS2_EET0_T_S4_S3_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2623,12 +2623,12 @@ define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_ %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) + %10 = call noundef i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2636,16 +2636,16 @@ define linkonce_odr dso_local i32* @_ZSt4copyIPiS0_ET0_T_S2_S1_(i32* %0, i32* %1 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) + %8 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %7) %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) + %10 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -2653,29 +2653,29 @@ define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EPiS0_ET1_T0_S2_S1_(i 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 + %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #3 %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 + %13 = call noundef i32* @_ZSt14__copy_move_a1ILb0EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %12) + %14 = call noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 + %6 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -2697,10 +2697,10 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vec } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2728,17 +2728,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2753,8 +2753,8 @@ define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"cla 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -2763,18 +2763,18 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2802,25 +2802,25 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2828,12 +2828,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -2842,42 +2842,54 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #15 +declare noundef nonnull i8* @_Znwm(i64 noundef) #15 -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* %0) #4 comdat { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local i32* @_ZSt32__make_move_if_noexcept_iteratorIiSt13move_iteratorIPiEET0_PT_(i32* noundef %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) + call void @_ZNSt13move_iteratorIPiEC2ES0_(%"class.std::move_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, i32** noundef 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 @@ -2890,8 +2902,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vector 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef 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 @@ -2899,18 +2911,18 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.std::g } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 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 + %6 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef 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 { +; Function Attrs: mustprogress 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"* noundef nonnull align 1 dereferenceable(1) %2) #4 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 @@ -2925,7 +2937,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter %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 + %15 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, %"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4) #3 %16 = icmp slt i64 %15, 2 br i1 %16, label %17, label %18 @@ -2933,7 +2945,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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 + %19 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, %"class.__gnu_cxx::__normal_iterator"* noundef 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 @@ -2943,11 +2955,11 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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 + %25 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, i64 noundef %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 + %27 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 + %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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* @@ -2955,7 +2967,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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 + %34 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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* @@ -2963,7 +2975,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter 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) + call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %40, i64 noundef %32, i64 noundef %33, i32 noundef %35) %41 = load i64, i64* %8, align 8 %42 = icmp eq i64 %41, 0 br i1 %42, label %43, label %44 @@ -2975,22 +2987,22 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIN9__gnu_cxx17__normal_iter %45 = load i64, i64* %8, align 8 %46 = add nsw i64 %45, -1 store i64 %46, i64* %8, align 8 - br label %23 + br label %23, !llvm.loop !10 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -2999,8 +3011,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNK9__gn 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 { +; Function Attrs: mustprogress noinline uwtable +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 noundef %1, i64 noundef %2, i32 noundef %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 @@ -3041,19 +3053,19 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it %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 + %34 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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 + %38 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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) + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %6, i32* %41, i32* %43) br i1 %44, label %45, label %48 45: ; preds = %29 @@ -3064,21 +3076,21 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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 + %50 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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 + %52 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %14) #3 + %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %56 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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 + %58 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + br label %23, !llvm.loop !11 60: ; preds = %23 %61 = load i64, i64* %8, align 8 @@ -3101,17 +3113,17 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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 + %76 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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 + %78 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #3 + %79 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %82 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5, i64 noundef %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 + %84 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %17) #3 store i32 %80, i32* %84, align 4 %85 = load i64, i64* %11, align 8 %86 = sub nsw i64 %85, 1 @@ -3119,23 +3131,23 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_it 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) + %88 = call noundef 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"* noundef 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"* noundef nonnull align 1 dereferenceable(1) %18, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 + %93 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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) + call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(i32* %96, i64 noundef %91, i64 noundef %92, i32 noundef %94, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEESB_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 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 @@ -3146,14 +3158,14 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIS 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4) #3 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #3 + %13 = call noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %10, i32* noundef nonnull align 4 dereferenceable(4) %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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"* noundef 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 @@ -3161,7 +3173,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.__gnu_ } ; 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 { +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"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -3170,12 +3182,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7great %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 + %9 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +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 noundef %1, i64 noundef %2, i32 noundef %3, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 @@ -3207,12 +3219,12 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter 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 + %27 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %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) + %31 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 dereferenceable(1) %25, i32* %30, i32* noundef nonnull align 4 dereferenceable(4) %9) br label %32 32: ; preds = %24, %20 @@ -3221,17 +3233,17 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter 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 + %36 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %13) #3 + %39 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %42 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %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 + %44 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -3239,22 +3251,22 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iter %47 = sub nsw i64 %46, 1 %48 = sdiv i64 %47, 2 store i64 %48, i64* %11, align 8 - br label %20, !llvm.loop !7 + br label %20, !llvm.loop !12 49: ; preds = %32 - %50 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 + %50 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %53 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEplEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, i64 noundef %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 + %55 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef nonnull align 4 dereferenceable(4) %1, i32* noundef 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 @@ -3270,8 +3282,8 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.st 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEclINS_17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 dereferenceable(1) %0, i32* %1, i32* noundef 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 @@ -3281,27 +3293,27 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt 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 + %10 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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) + %12 = call noundef zeroext i1 @_ZNKSt7greaterIiEclERKiS2_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %9, i32* noundef nonnull align 4 dereferenceable(4) %10, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt6vectorIiSaIiEE5frontEv(%"class.std::vector"* noundef nonnull align 8 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 + %5 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -3310,14 +3322,14 @@ define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::v %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 @@ -3326,7 +3338,7 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNK9__gn ret i32* %5 } -; Function Attrs: noinline uwtable mustprogress +; Function Attrs: mustprogress noinline uwtable 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 @@ -3340,14 +3352,14 @@ define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iterator 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 + %13 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* noundef 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 + %16 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #3 + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 1 dereferenceable(1) %6) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.__gnu_cxx::__normal_iterator"* @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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) @@ -3363,15 +3375,15 @@ define linkonce_odr dso_local void @_ZSt8pop_heapIN9__gnu_cxx17__normal_iterator %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) + 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"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -3390,12 +3402,12 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE8pop_backEv(%"class.std: %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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"class.__gnu_cxx::__normal_iterator"* @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmmEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -3406,8 +3418,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"class.__gnu_c 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 { +; Function Attrs: mustprogress noinline uwtable +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"* noundef 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 @@ -3422,20 +3434,20 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_itera %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 + %15 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + %16 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %18 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #3 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %21 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %24 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %6, %"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #3 + %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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* @@ -3443,12 +3455,12 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIN9__gnu_cxx17__normal_itera 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) + call void @_ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops15_Iter_comp_iterISt7greaterIiEEEEvT_T0_SD_T1_T2_(i32* %31, i64 noundef 0, i64 noundef %24, i32 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3456,12 +3468,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3471,8 +3483,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEv 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -3502,7 +3514,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.s %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, i32* noundef %26, i32* noundef 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"* @@ -3513,20 +3525,20 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.s br label %40 34: ; preds = %2 - %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 + %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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) + call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %6, i32* %39, i32* noundef nonnull align 4 dereferenceable(4) %37) br label %40 40: ; preds = %34, %18 ret void } -; Function Attrs: noinline uwtable mustprogress +; Function Attrs: mustprogress noinline uwtable 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 @@ -3540,30 +3552,30 @@ define linkonce_odr dso_local void @_ZSt9push_heapIN9__gnu_cxx17__normal_iterato 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 + %13 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef nonnull align 1 dereferenceable(1) %5) #3 + call void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 dereferenceable(1) %6) + %14 = call i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, i64 noundef 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 + %16 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEdeEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #3 + %17 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %21 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* noundef 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 + %23 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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) + call void @_ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEliNS0_5__ops14_Iter_comp_valISt7greaterIiEEEEvT_T0_SD_T1_RT2_(i32* %26, i64 noundef %22, i64 noundef 0, i32 noundef %24, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -3574,13 +3586,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* %1, i32* noundef 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 @@ -3596,7 +3608,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi 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)) + %16 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %15, i64 noundef 1, i8* noundef 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 @@ -3610,14 +3622,14 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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 + %27 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %29 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* noundef 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) + %32 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %30, i64 noundef %31) store i32* %32, i32** %12, align 8 %33 = load i32*, i32** %12, align 8 store i32* %33, i32** %13, align 8 @@ -3628,27 +3640,27 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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 + %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %36, i32* noundef %39, i32* noundef 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 + %43 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %47 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %46) #3 + %48 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %42, i32* noundef %44, i32* noundef %45, %"class.std::allocator"* noundef 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 + %51 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %56 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %55) #3 + %57 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %52, i32* noundef %53, i32* noundef %54, %"class.std::allocator"* noundef 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 @@ -3662,7 +3674,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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) + call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %58, i32* noundef %59, i64 noundef %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 @@ -3686,8 +3698,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -3699,22 +3711,22 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -3728,12 +3740,12 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS %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 + %14 = call noundef i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* noundef %10, i32* noundef %11, i32* noundef %12, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -3747,12 +3759,12 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2 %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 + %14 = call noundef i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %10, i32* noundef %11, i32* noundef %12, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #7 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -3762,18 +3774,18 @@ define linkonce_odr dso_local i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1 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 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #3 %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 %13 = load i32*, i32** %7, align 8 - %14 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %13) #3 + %14 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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 + %16 = call noundef i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* noundef %10, i32* noundef %12, i32* noundef %14, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #7 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -3812,18 +3824,18 @@ define linkonce_odr dso_local i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3st } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valISt7greaterIiEEC2ES3_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 1 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 + %6 = call noundef nonnull align 1 dereferenceable(1) %"struct.std::greater"* @_ZSt4moveIRSt7greaterIiEEONSt16remove_referenceIT_E4typeEOS4_(%"struct.std::greater"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEmiEl(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, i64 noundef %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 @@ -3837,47 +3849,47 @@ define linkonce_odr dso_local i32* @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vecto %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %3, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt6vectorIiSaIiEE5emptyEv(%"class.std::vector"* noundef nonnull align 8 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 + %6 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %8 = call i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 + %10 = call noundef zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %3, %"class.__gnu_cxx::__normal_iterator.0"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxxeqIPKiSt6vectorIiSaIiEEEEbRKNS_17__normal_iteratorIT_T0_EESB_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator.0"* noundef 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 + %6 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -3886,7 +3898,7 @@ define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vec %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.0"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 @@ -3898,34 +3910,39 @@ define internal void @_GLOBAL__sub_I_Nearly_sorted_Algo.cpp() #0 section ".text. 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn writeonly } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #9 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { argmemonly nofree 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 #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #15 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #16 = { noreturn nounwind } attributes #17 = { noreturn } attributes #18 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll similarity index 73% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll index 938890e7..4a436912 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/aho-corasick-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/aho-corasick-algorithm.ll @@ -207,7 +207,7 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any @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 +@_ZSt4cout = external 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 @@ -221,21 +221,21 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %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 @@ -280,7 +280,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + %32 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %31) #3 %33 = icmp ult i64 %30, %32 br i1 %33, label %34, label %70 @@ -288,7 +288,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + %38 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %35, i64 noundef %37) #3 %39 = load i8, i8* %38, align 1 %40 = sext i8 %39 to i32 %41 = sub nsw i32 %40, 97 @@ -331,7 +331,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %28, !llvm.loop !6 70: ; preds = %28 %71 = load i32, i32* %6, align 4 @@ -348,7 +348,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %19, !llvm.loop !8 81: ; preds = %19 store i32 0, i32* %11, align 4 @@ -381,11 +381,11 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %82, !llvm.loop !9 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) + call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) store i32 0, i32* %13, align 4 br label %100 @@ -413,7 +413,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef nonnull align 4 dereferenceable(4) %118) to label %119 unwind label %120 119: ; preds = %109 @@ -426,7 +426,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch 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 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) #3 br label %216 124: ; preds = %119, %103 @@ -436,13 +436,13 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %100, !llvm.loop !10 128: ; preds = %100 br label %129 129: ; preds = %213, %128 - %130 = invoke i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* nonnull dereferenceable(80) %12) + %130 = invoke noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) to label %131 unwind label %120 131: ; preds = %129 @@ -450,13 +450,13 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch 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) + %134 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* noundef nonnull align 8 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) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) to label %137 unwind label %120 137: ; preds = %135 @@ -504,7 +504,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %155, !llvm.loop !11 169: ; preds = %155 %170 = load i32, i32* %18, align 4 @@ -548,7 +548,7 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef nonnull align 4 dereferenceable(4) %207) to label %208 unwind label %120 208: ; preds = %169 @@ -561,14 +561,14 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch %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 + br label %138, !llvm.loop !12 213: ; preds = %138 - br label %129, !llvm.loop !9 + br label %129, !llvm.loop !13 214: ; preds = %131 %215 = load i32, i32* %5, align 4 - call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* nonnull dereferenceable(80) %12) #3 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %12) #3 ret i32 %215 216: ; preds = %120 @@ -579,29 +579,29 @@ define dso_local i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11ch resume { i8*, i32 } %220 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -609,54 +609,54 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5queueIiSt5dequeIiSaIiEEE4sizeEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z13findNextStateic(i32 %0, i8 signext %1) #6 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z13findNextStateic(i32 noundef %0, i8 noundef signext %1) #6 { %3 = alloca i32, align 4 %4 = alloca i8, align 1 %5 = alloca i32, align 4 @@ -688,7 +688,7 @@ define dso_local i32 @_Z13findNextStateic(i32 %0, i8 signext %1) #6 { %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 + br label %11, !llvm.loop !14 25: ; preds = %11 %26 = load i32, i32* %5, align 4 @@ -701,8 +701,8 @@ define dso_local i32 @_Z13findNextStateic(i32 %0, i8 signext %1) #6 { 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %1, %"class.std::__cxx11::basic_string"* noundef %2) #4 { %4 = alloca %"class.std::__cxx11::basic_string"*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -712,7 +712,7 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait 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) + %11 = call noundef i32 @_Z20buildMatchingMachinePNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::__cxx11::basic_string"* noundef %9, i32 noundef %10) store i32 0, i32* %6, align 4 store i32 0, i32* %7, align 4 br label %12 @@ -720,7 +720,7 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait 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 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %16 = icmp ult i64 %14, %15 br i1 %16, label %17, label %74 @@ -728,9 +728,9 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait %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) + %21 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i64 noundef %20) %22 = load i8, i8* %21, align 1 - %23 = call i32 @_Z13findNextStateic(i32 %18, i8 signext %22) + %23 = call noundef i32 @_Z13findNextStateic(i32 noundef %18, i8 noundef signext %22) store i32 %23, i32* %6, align 4 %24 = load i32, i32* %6, align 4 %25 = sext i32 %24 to i64 @@ -764,27 +764,27 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait 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)) + %45 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %50 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %45, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %49) + %51 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %50, i8* noundef 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 + %58 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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)) + %61 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %51, i64 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %61, i8* noundef 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_) + %64 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %62, i32 noundef %63) + %65 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %64, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %66 66: ; preds = %44, %35 @@ -794,7 +794,7 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait %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 + br label %31, !llvm.loop !15 70: ; preds = %31 br label %71 @@ -803,28 +803,28 @@ define dso_local void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_trait %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 + br label %12, !llvm.loop !16 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 noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::__cxx11::basic_string"* noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -843,57 +843,57 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %4) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.5, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %21, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %4) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* noundef 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z11searchWordsPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiS4_(%"class.std::__cxx11::basic_string"* noundef %24, i32 noundef %25, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 @@ -932,19 +932,19 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #3 br label %46 46: ; preds = %42, %38 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 br label %47 47: ; preds = %46, %34 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %48 48: ; preds = %47, %30 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %4) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %4) #3 %49 = load i1, i1* %10, align 1 br i1 %49, label %50, label %58 @@ -956,7 +956,7 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %55) #3 %56 = icmp eq %"class.std::__cxx11::basic_string"* %55, %15 br i1 %56, label %57, label %53 @@ -973,7 +973,7 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12) #3 br label %78 63: ; preds = %23 @@ -992,17 +992,17 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %74) #3 %75 = icmp eq %"class.std::__cxx11::basic_string"* %74, %28 br i1 %75, label %76, label %72 @@ -1018,7 +1018,7 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %83) #3 %84 = icmp eq %"class.std::__cxx11::basic_string"* %83, %79 br i1 %84, label %85, label %81 @@ -1034,20 +1034,20 @@ define dso_local i32 @main() #8 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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*) { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -1055,16 +1055,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator.0"* noundef 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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -1075,7 +1075,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -1084,8 +1084,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator.0"* noundef 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 @@ -1094,8 +1094,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1106,12 +1106,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_D %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1122,12 +1122,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1137,7 +1137,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1160,7 +1160,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %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 @@ -1169,12 +1169,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %30) #3 ret void } @@ -1185,12 +1185,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #9 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -1219,8 +1219,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -1242,21 +1242,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + br label %10, !llvm.loop !17 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -1267,14 +1267,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -1284,7 +1284,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -1294,17 +1294,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -1313,11 +1313,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -1331,8 +1331,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1343,12 +1343,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #6 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1368,8 +1368,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %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 @@ -1379,28 +1379,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #10 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator.3"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -1411,22 +1411,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1436,27 +1436,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -1466,12 +1466,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -1479,17 +1479,17 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1497,25 +1497,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class. } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -1528,7 +1528,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -1540,19 +1540,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1566,7 +1566,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -1574,7 +1574,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -1584,7 +1584,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -1608,7 +1608,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -1634,7 +1634,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -1664,13 +1664,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -1687,7 +1687,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -1716,17 +1716,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -1735,14 +1735,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1750,7 +1750,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -1765,8 +1765,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -1794,8 +1794,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1804,13 +1804,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -1820,7 +1820,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -1831,8 +1831,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -1854,7 +1854,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -1866,7 +1866,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !18 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -1882,7 +1882,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #15 to label %47 unwind label %33 @@ -1923,12 +1923,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -1943,15 +1943,15 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1959,12 +1959,12 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -1973,24 +1973,33 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #16 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -1998,25 +2007,28 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_siz } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #12 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2024,12 +2036,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2038,38 +2050,47 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #16 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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) +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #6 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -2102,7 +2123,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -2115,15 +2136,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -2134,31 +2155,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -2177,8 +2198,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -2190,7 +2211,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -2206,8 +2227,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -2219,22 +2240,22 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2246,26 +2267,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #11 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2299,20 +2320,20 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -2323,44 +2344,50 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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*) { + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2375,18 +2402,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2414,17 +2441,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2525,7 +2552,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -2545,7 +2572,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2561,14 +2588,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2605,7 +2632,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2617,7 +2644,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2638,7 +2665,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2647,12 +2674,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2660,16 +2687,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2677,16 +2704,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2694,26 +2721,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #6 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2722,8 +2749,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2733,20 +2760,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2756,12 +2783,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2797,11 +2824,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2809,18 +2836,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2830,12 +2857,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2845,12 +2872,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2890,19 +2917,19 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2911,8 +2938,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2934,14 +2961,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: 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 + %20 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %20, i32* noundef %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"* @@ -2953,7 +2980,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: br label %36 34: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %35 unwind label %37 35: ; preds = %34 @@ -2970,8 +2997,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -2979,24 +3006,24 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %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 @@ -3004,7 +3031,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef %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"* @@ -3016,7 +3043,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %22, i32** noundef %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"* @@ -3032,8 +3059,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3049,39 +3076,43 @@ define internal void @_GLOBAL__sub_I_aho_corasick_algorithm.cpp() #0 section ".t 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn writeonly } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #10 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { argmemonly nofree nounwind willreturn } attributes #14 = { noreturn nounwind } attributes #15 = { noreturn } attributes #16 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} +!18 = distinct !{!18, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll index 6217e62a..97f671c4 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/anagram-substring-search-search-permutations.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/anagram-substring-search-search-permutations.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7comparePcS_(i8* noundef %0, i8* noundef %1) #4 { %3 = alloca i1, align 1 %4 = alloca i8*, align 8 %5 = alloca i8*, align 8 @@ -86,7 +86,7 @@ define dso_local zeroext i1 @_Z7comparePcS_(i8* %0, i8* %1) #4 { %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 + br label %7, !llvm.loop !6 29: ; preds = %7 store i1 true, i1* %3, align 1 @@ -97,8 +97,8 @@ define dso_local zeroext i1 @_Z7comparePcS_(i8* %0, i8* %1) #4 { ret i1 %31 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(i8* noundef %0, i8* noundef %1) #5 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32, align 4 @@ -110,11 +110,11 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { 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 + %12 = call i64 @strlen(i8* noundef %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 + %15 = call i64 @strlen(i8* noundef %14) #10 %16 = trunc i64 %15 to i32 store i32 %16, i32* %6, align 4 %17 = bitcast [256 x i8]* %7 to i8* @@ -157,7 +157,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { %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 + br label %19, !llvm.loop !8 45: ; preds = %19 %46 = load i32, i32* %5, align 4 @@ -173,16 +173,16 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { 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) + %54 = call noundef zeroext i1 @_Z7comparePcS_(i8* noundef %52, i8* noundef %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)) + %56 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %60 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %56, i32 noundef %59) + %61 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %60, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %62 62: ; preds = %55, %51 @@ -214,21 +214,21 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { %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 + br label %47, !llvm.loop !9 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) + %89 = call noundef zeroext i1 @_Z7comparePcS_(i8* noundef %87, i8* noundef %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)) + %91 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %95 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %91, i32 noundef %94) + %96 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %95, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %97 97: ; preds = %90, %86 @@ -236,21 +236,21 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 +declare i64 @strlen(i8* noundef) #6 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [11 x i8], align 1 %3 = alloca [5 x i8], align 1 @@ -261,11 +261,11 @@ define dso_local i32 @main() #8 { 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) + call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -274,24 +274,28 @@ define internal void @_GLOBAL__sub_I_anagram_substring_search_search_permutation 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn writeonly } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } attributes #10 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll similarity index 84% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll index bf65a43a..4c3724a0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/bellman-ford-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/bellman-ford-algorithm.ll @@ -16,27 +16,27 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %struct.Graph* @_Z11createGraphii(i32 noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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 @@ -53,7 +53,7 @@ define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #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) #9 + %20 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -63,22 +63,22 @@ define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 +declare noundef nonnull i8* @_Znam(i64 noundef) #5 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %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)) + %6 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([29 x i8], [29 x i8]* @.str, i64 0, i64 0)) store i32 0, i32* %5, align 4 br label %7 @@ -95,23 +95,23 @@ define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #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) + %18 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([10 x i8], [10 x i8]* @.str.1, i64 0, i64 0), i32 noundef %12, i32 noundef %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 + br label %7, !llvm.loop !6 22: ; preds = %7 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* noundef %0, i32 noundef %1) #4 { %3 = alloca %struct.Graph*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -165,7 +165,7 @@ define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { %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 + br label %30, !llvm.loop !8 41: ; preds = %30 %42 = load i32, i32* %4, align 4 @@ -261,7 +261,7 @@ define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { %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 + br label %51, !llvm.loop !9 111: ; preds = %51 br label %112 @@ -270,7 +270,7 @@ define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { %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 + br label %45, !llvm.loop !10 115: ; preds = %45 store i32 0, i32* %15, align 4 @@ -332,7 +332,7 @@ define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { 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)) + %163 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([37 x i8], [37 x i8]* @.str.2, i64 0, i64 0)) store i32 1, i32* %19, align 4 br label %170 @@ -343,11 +343,11 @@ define dso_local void @_Z11BellmanFordP5Graphi(%struct.Graph* %0, i32 %1) #4 { %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 + br label %116, !llvm.loop !11 168: ; preds = %116 %169 = load i32, i32* %5, align 4 - call void @_Z8printArrPii(i32* %29, i32 %169) + call void @_Z8printArrPii(i32* noundef %29, i32 noundef %169) store i32 1, i32* %19, align 4 br label %170 @@ -363,8 +363,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -374,7 +374,7 @@ define dso_local i32 @main() #8 { 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) + %7 = call noundef %struct.Graph* @_Z11createGraphii(i32 noundef %5, i32 noundef %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 @@ -521,7 +521,7 @@ define dso_local i32 @main() #8 { %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) + call void @_Z11BellmanFordP5Graphi(%struct.Graph* noundef %128, i32 noundef 0) ret i32 0 } @@ -531,25 +531,29 @@ define internal void @_GLOBAL__sub_I_bellman_ford_algorithm.cpp() #0 section ".t 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/bfs.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/bfs.ll index 08c9e264..70e1d592 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/bfs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/bfs.ll @@ -134,7 +134,7 @@ $_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 +@_ZSt4cout = external 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 @@ -144,21 +144,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -177,7 +177,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -191,7 +191,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -209,20 +209,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -235,30 +235,30 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3BFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -275,7 +275,7 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) %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 + %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #14 store i8* %17, i8** %5, align 8 store i32 0, i32* %6, align 4 br label %18 @@ -299,47 +299,47 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) %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 + br label %18, !llvm.loop !6 31: ; preds = %18 - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7, i32* noundef 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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %38 = call noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt7__cxx114listIiSaIiEE5frontEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + %44 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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)) + %46 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %44, i8* noundef 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 + call void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %53 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -353,15 +353,15 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) %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 + %63 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %65 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* noundef 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 + %68 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -371,13 +371,13 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) 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 + %76 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %80 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7, i32* noundef nonnull align 4 dereferenceable(4) %80) to label %81 unwind label %82 81: ; preds = %74 @@ -390,21 +390,21 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) 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 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %88 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 + br label %57, !llvm.loop !8 89: ; preds = %57 - br label %37, !llvm.loop !5 + br label %37, !llvm.loop !9 90: ; preds = %37 - call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %7) #3 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %7) #3 ret void 91: ; preds = %82 @@ -415,10 +415,10 @@ define dso_local void @_ZN5Graph3BFSEi(%class.Graph* nonnull dereferenceable(16) resume { i8*, i32 } %95 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -427,8 +427,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -446,40 +446,40 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt7__cxx114listIiSaIiEE5emptyEv(%" 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt7__cxx114listIiSaIiEE5frontEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %5 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9pop_frontEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %5 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(%"class.std::__cxx11::list"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -490,17 +490,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -515,8 +515,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -525,26 +525,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -558,85 +558,85 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([38 x i8], [38 x i8]* @.str.1, i64 0, i64 0)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i8* noundef getelementptr inbounds ([27 x i8], [27 x i8]* @.str.2, i64 0, i64 0)) + call void @_ZN5Graph3BFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -653,18 +653,18 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -697,17 +697,17 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv %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) + %26 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %28 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28, i32* noundef %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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_List_node"* noundef %30) #3 + br label %12, !llvm.loop !10 31: ; preds = %12 ret void @@ -721,22 +721,22 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } @@ -747,12 +747,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -760,12 +760,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -774,8 +774,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_List_node"* noundef %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 @@ -784,7 +784,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* noundef %8, i64 noundef 1) to label %9 unwind label %10 9: ; preds = %2 @@ -798,18 +798,18 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -818,8 +818,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -829,8 +829,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -841,12 +841,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -856,33 +856,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -893,21 +893,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -917,28 +917,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -946,10 +946,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -965,19 +965,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -987,7 +987,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -995,8 +995,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1007,13 +1007,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1025,7 +1025,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1039,7 +1039,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1056,8 +1056,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1065,12 +1065,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1079,24 +1079,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1104,21 +1113,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1130,14 +1142,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_List_iteratorIiE(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -1146,25 +1158,25 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_Lis 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) + invoke void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %8, i64 noundef 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 + call void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 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 + %16 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %18 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %17) + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %16, i32* noundef %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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %19, %"struct.std::_List_node"* noundef %20) #3 ret void 21: ; preds = %2 @@ -1175,8 +1187,8 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE8_M_eraseESt14_Lis 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1193,10 +1205,10 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_dec_si } ; Function Attrs: nounwind -declare dso_local void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* nonnull dereferenceable(16)) #2 +declare void @_ZNSt8__detail15_List_node_base9_M_unhookEv(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1214,32 +1226,36 @@ define internal void @_GLOBAL__sub_I_bfs.cpp() #0 section ".text.startup" { 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll index cc1e2bf7..bd537abf 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/biconnectivity.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/biconnectivity.ll @@ -109,7 +109,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -118,21 +118,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -151,7 +151,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -165,7 +165,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -183,20 +183,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -209,36 +209,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, i32* noundef %3, i32* noundef %4, i32* noundef %5) #7 align 2 { %7 = alloca i1, align 1 %8 = alloca %class.Graph*, align 8 %9 = alloca i32, align 4 @@ -277,13 +277,13 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %39 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -297,14 +297,14 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul %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 + %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %51 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15, %"struct.std::_List_iterator"* noundef 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 + %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -330,7 +330,7 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul %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) + %74 = call noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %19, i32 noundef %69, i8* noundef %70, i32* noundef %71, i32* noundef %72, i32* noundef %73) br i1 %74, label %75, label %76 75: ; preds = %61 @@ -346,7 +346,7 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul %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) + %85 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %80, i32* noundef 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 @@ -419,7 +419,7 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul %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) + %139 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %134, i32* noundef 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 @@ -435,8 +435,8 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul 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 + %148 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + br label %43, !llvm.loop !6 149: ; preds = %43 store i1 false, i1* %7, align 1 @@ -448,7 +448,7 @@ define dso_local zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* nonnul } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -457,8 +457,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -469,17 +469,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -494,8 +494,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -504,26 +504,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #8 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -551,8 +551,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -565,8 +565,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca i1, align 1 %3 = alloca %class.Graph*, align 8 %4 = alloca i8*, align 8 @@ -580,7 +580,7 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + %14 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -589,7 +589,7 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + %22 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -599,7 +599,7 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + %31 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -609,7 +609,7 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + %40 = call noalias noundef nonnull i8* @_Znam(i64 noundef %39) #14 %41 = bitcast i8* %40 to i32* store i32* %41, i32** %7, align 8 store i32 0, i32* %8, align 4 @@ -639,14 +639,14 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + br label %42, !llvm.loop !8 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) + %64 = call noundef zeroext i1 @_ZN5Graph8isBCUtilEiPbPiS1_S1_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %10, i32 noundef 0, i8* noundef %60, i32* noundef %61, i32* noundef %62, i32* noundef %63) %65 = zext i1 %64 to i32 %66 = icmp eq i32 %65, 1 br i1 %66, label %67, label %68 @@ -688,7 +688,7 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea %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 + br label %69, !llvm.loop !9 88: ; preds = %69 store i1 true, i1* %2, align 1 @@ -699,8 +699,8 @@ define dso_local zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* nonnull dereferencea ret i1 %90 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #10 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -708,89 +708,89 @@ define dso_local i32 @main() #10 { %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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + %7 = call noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 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)) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 4) + %14 = call noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %18 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + %21 = call noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 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)) + %23 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %25 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 3, i32 noundef 4) + %28 = call noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 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)) + %30 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %32 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 0) + %35 = call noundef zeroext i1 @_ZN5Graph4isBCEv(%class.Graph* noundef nonnull align 8 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)) + %37 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %39 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) br label %40 40: ; preds = %38, %36 @@ -798,60 +798,60 @@ define dso_local i32 @main() #10 { 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -867,8 +867,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -879,21 +879,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -905,26 +905,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -934,7 +934,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -945,8 +945,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -954,10 +954,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -973,19 +973,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -995,7 +995,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1005,7 +1005,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1013,8 +1013,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1025,25 +1025,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1055,7 +1055,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1069,7 +1069,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1086,8 +1086,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1095,12 +1095,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1109,24 +1109,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1134,21 +1143,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1160,24 +1172,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1186,8 +1198,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1198,7 +1210,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -1209,12 +1221,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1224,15 +1236,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1250,31 +1262,35 @@ define internal void @_GLOBAL__sub_I_biconnectivity.cpp() #0 section ".text.star 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll index 9366ca56..ec58a2fc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/binary-insertion-sort.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/binary-insertion-sort.ll @@ -7,8 +7,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z12binarySearchPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { %5 = alloca i32, align 4 %6 = alloca i32*, align 8 %7 = alloca i32, align 4 @@ -85,7 +85,7 @@ define dso_local i32 @_Z12binarySearchPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 %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) + %58 = call noundef i32 @_Z12binarySearchPiiii(i32* noundef %53, i32 noundef %54, i32 noundef %56, i32 noundef %57) store i32 %58, i32* %5, align 4 br label %66 @@ -95,7 +95,7 @@ define dso_local i32 @_Z12binarySearchPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 %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) + %65 = call noundef i32 @_Z12binarySearchPiiii(i32* noundef %60, i32 noundef %61, i32 noundef %62, i32 noundef %64) store i32 %65, i32* %5, align 4 br label %66 @@ -104,8 +104,8 @@ define dso_local i32 @_Z12binarySearchPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 ret i32 %67 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13insertionSortPii(i32* %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13insertionSortPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -137,7 +137,7 @@ define dso_local void @_Z13insertionSortPii(i32* %0, i32 %1) #0 { %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) + %25 = call noundef i32 @_Z12binarySearchPiiii(i32* noundef %22, i32 noundef %23, i32 noundef 0, i32 noundef %24) store i32 %25, i32* %6, align 4 br label %26 @@ -162,7 +162,7 @@ define dso_local void @_Z13insertionSortPii(i32* %0, i32 %1) #0 { %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 + br label %26, !llvm.loop !6 43: ; preds = %26 %44 = load i32, i32* %9, align 4 @@ -178,14 +178,14 @@ define dso_local void @_Z13insertionSortPii(i32* %0, i32 %1) #0 { %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 + br label %10, !llvm.loop !8 53: ; preds = %10 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca [11 x i32], align 16 %3 = alloca i32, align 4 @@ -196,8 +196,8 @@ define dso_local i32 @main() #1 { 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)) + call void @_Z13insertionSortPii(i32* noundef %6, i32 noundef %7) + %8 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([16 x i8], [16 x i8]* @.str, i64 0, i64 0)) store i32 0, i32* %4, align 4 br label %9 @@ -212,35 +212,39 @@ define dso_local i32 @main() #1 { %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) + %18 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 noundef %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 + br label %9, !llvm.loop !9 22: ; preds = %9 ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 +declare i32 @printf(i8* noundef, ...) #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" } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { argmemonly nofree nounwind willreturn } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll similarity index 60% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll index 7619d14a..9ad8114a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/binomial-coefficient.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/binomial-coefficient.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13binomialCoeffii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -83,7 +83,7 @@ define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { %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) + %28 = call noundef i32 @_Z3minii(i32 noundef %26, i32 noundef %27) %29 = icmp sle i32 %25, %28 br i1 %29, label %30, label %77 @@ -147,7 +147,7 @@ define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { %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 + br label %24, !llvm.loop !6 77: ; preds = %24 br label %78 @@ -156,7 +156,7 @@ define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { %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 + br label %19, !llvm.loop !8 81: ; preds = %19 %82 = load i32, i32* %3, align 4 @@ -175,8 +175,8 @@ define dso_local i32 @_Z13binomialCoeffii(i32 %0, i32 %1) #4 { ; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #6 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -202,29 +202,29 @@ define dso_local i32 @_Z3minii(i32 %0, i32 %1) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i8* noundef 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)) + %8 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %8, i8* noundef 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) + %12 = call noundef i32 @_Z13binomialCoeffii(i32 noundef %10, i32 noundef %11) + %13 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %9, i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_binomial_coefficient.cpp() #0 section ".text.startup" { @@ -232,20 +232,24 @@ define internal void @_GLOBAL__sub_I_binomial_coefficient.cpp() #0 section ".tex 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll similarity index 50% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll index 0d0d851c..39e51095 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/birthday-paradox.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/birthday-paradox.ll @@ -22,56 +22,56 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z4findd(double %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z4findd(double noundef %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 + %6 = call double @log(double noundef %5) #3 %7 = fmul double 7.300000e+02, %6 - %8 = call double @sqrt(double %7) #3 + %8 = call double @sqrt(double noundef %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 +declare double @sqrt(double noundef) #2 ; Function Attrs: nounwind -declare dso_local double @log(double) #2 +declare double @log(double noundef) #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) +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { + %1 = call noundef i32 @_Z4findd(double noundef 0x3FE6666666666666) + %2 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_birthday_paradox.cpp() #0 section ".text.startup" { @@ -79,16 +79,20 @@ define internal void @_GLOBAL__sub_I_birthday_paradox.cpp() #0 section ".text.st 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll similarity index 83% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll index af0efdc4..10985187 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boolean-parenthesization-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/boolean-parenthesization-problem.ll @@ -24,26 +24,26 @@ target triple = "x86_64-pc-linux-gnu" @__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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12countParenthPcS_i(i8* noundef %0, i8* noundef %1, i32 noundef %2) #4 { %4 = alloca i8*, align 8 %5 = alloca i8*, align 8 %6 = alloca i32, align 4 @@ -131,7 +131,7 @@ define dso_local i32 @_Z12countParenthPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %33, !llvm.loop !6 73: ; preds = %33 store i32 1, i32* %13, align 4 @@ -483,7 +483,7 @@ define dso_local i32 @_Z12countParenthPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %99, !llvm.loop !8 381: ; preds = %99 br label %382 @@ -495,7 +495,7 @@ define dso_local i32 @_Z12countParenthPcS_i(i8* %0, i8* %1, i32 %2) #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 + br label %80, !llvm.loop !9 387: ; preds = %80 br label %388 @@ -504,7 +504,7 @@ define dso_local i32 @_Z12countParenthPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %74, !llvm.loop !10 391: ; preds = %74 %392 = mul nsw i64 0, %30 @@ -525,8 +525,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [5 x i8], align 1 %3 = alloca [4 x i8], align 1 @@ -537,24 +537,24 @@ define dso_local i32 @main() #6 { %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 + %8 = call i64 @strlen(i8* noundef %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) + %13 = call noundef i32 @_Z12countParenthPcS_i(i8* noundef %10, i8* noundef %11, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i64 @strlen(i8* noundef) #8 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp() #0 section ".text.startup" { @@ -562,24 +562,28 @@ define internal void @_GLOBAL__sub_I_boolean_parenthesization_problem.cpp() #0 s 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } +attributes #8 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll similarity index 87% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll index 24f1adf1..b59b4ef0 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boruvkas-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/boruvkas-algorithm.ll @@ -10,8 +10,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* noundef %0) #0 { %2 = alloca %struct.Graph*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -47,7 +47,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + %33 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -56,7 +56,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + %41 = call noalias noundef nonnull i8* @_Znam(i64 noundef %40) #5 %42 = bitcast i8* %41 to i32* store i32* %42, i32** %7, align 8 store i32 0, i32* %8, align 4 @@ -93,7 +93,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + br label %43, !llvm.loop !6 66: ; preds = %43 %67 = load i32, i32* %3, align 4 @@ -128,7 +128,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + br label %72, !llvm.loop !8 84: ; preds = %72 store i32 0, i32* %12, align 4 @@ -148,7 +148,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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) + %97 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %90, i32 noundef %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 @@ -157,7 +157,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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) + %105 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %98, i32 noundef %104) store i32 %105, i32* %14, align 4 %106 = load i32, i32* %13, align 4 %107 = load i32, i32* %14, align 4 @@ -253,7 +253,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + br label %85, !llvm.loop !9 177: ; preds = %85 store i32 0, i32* %15, align 4 @@ -286,7 +286,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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) + %201 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %190, i32 noundef %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 @@ -299,7 +299,7 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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) + %213 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %202, i32 noundef %212) store i32 %213, i32* %17, align 4 %214 = load i32, i32* %16, align 4 %215 = load i32, i32* %17, align 4 @@ -343,11 +343,11 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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) + %251 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 noundef %240, i32 noundef %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) + call void @_Z5UnionP6subsetii(%struct.subset* noundef %252, i32 noundef %253, i32 noundef %254) %255 = load i32, i32* %9, align 4 %256 = add nsw i32 %255, -1 store i32 %256, i32* %9, align 4 @@ -360,14 +360,14 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { %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 + br label %178, !llvm.loop !10 261: ; preds = %178 - br label %68, !llvm.loop !7 + br label %68, !llvm.loop !11 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) + %264 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([21 x i8], [21 x i8]* @.str.1, i64 0, i64 0), i32 noundef %263) ret void } @@ -375,10 +375,10 @@ define dso_local void @_Z10boruvkaMSTP5Graph(%struct.Graph* %0) #0 { declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #2 +declare noundef nonnull i8* @_Znam(i64 noundef) #2 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4findP6subseti(%struct.subset* %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4findP6subseti(%struct.subset* noundef %0, i32 noundef %1) #0 { %3 = alloca %struct.subset*, align 8 %4 = alloca i32, align 4 store %struct.subset* %0, %struct.subset** %3, align 8 @@ -401,7 +401,7 @@ define dso_local i32 @_Z4findP6subseti(%struct.subset* %0, i32 %1) #0 { %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) + %21 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %14, i32 noundef %20) %22 = load %struct.subset*, %struct.subset** %3, align 8 %23 = load i32, i32* %4, align 4 %24 = sext i32 %23 to i64 @@ -420,10 +420,10 @@ define dso_local i32 @_Z4findP6subseti(%struct.subset* %0, i32 %1) #0 { ret i32 %33 } -declare dso_local i32 @printf(i8*, ...) #3 +declare i32 @printf(i8* noundef, ...) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5UnionP6subsetii(%struct.subset* %0, i32 %1, i32 %2) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5UnionP6subsetii(%struct.subset* noundef %0, i32 noundef %1, i32 noundef %2) #0 { %4 = alloca %struct.subset*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -434,11 +434,11 @@ define dso_local void @_Z5UnionP6subsetii(%struct.subset* %0, i32 %1, i32 %2) #0 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) + %11 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %9, i32 noundef %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) + %14 = call noundef i32 @_Z4findP6subseti(%struct.subset* noundef %12, i32 noundef %13) store i32 %14, i32* %8, align 4 %15 = load %struct.subset*, %struct.subset** %4, align 8 %16 = load i32, i32* %7, align 4 @@ -516,14 +516,14 @@ define dso_local void @_Z5UnionP6subsetii(%struct.subset* %0, i32 %1, i32 %2) #0 ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %struct.Graph* @_Z11createGraphii(i32 noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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 @@ -540,7 +540,7 @@ define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #0 { %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 + %20 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -550,10 +550,10 @@ define dso_local %struct.Graph* @_Z11createGraphii(i32 %0, i32 %1) #0 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #2 +declare noundef nonnull i8* @_Znwm(i64 noundef) #2 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -563,7 +563,7 @@ define dso_local i32 @main() #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) + %7 = call noundef %struct.Graph* @_Z11createGraphii(i32 noundef %5, i32 noundef %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 @@ -656,25 +656,29 @@ define dso_local i32 @main() #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) + call void @_Z10boruvkaMSTP5Graph(%struct.Graph* noundef %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 #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #2 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #5 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/box-stacking.ll similarity index 83% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/box-stacking.ll index 4797cbf7..ed6e41d6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/box-stacking.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/box-stacking.ll @@ -8,8 +8,8 @@ target triple = "x86_64-pc-linux-gnu" @__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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -32,8 +32,8 @@ define dso_local i32 @_Z3minii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -56,8 +56,8 @@ define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z7comparePKvS0_(i8* %0, i8* %1) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z7comparePKvS0_(i8* noundef %0, i8* noundef %1) #0 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 store i8* %0, i8** %3, align 8 @@ -84,8 +84,8 @@ define dso_local i32 @_Z7comparePKvS0_(i8* %0, i8* %1) #0 { ret i32 %23 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxStackHeightP3Boxi(%struct.Box* noundef %0, i32 noundef %1) #1 { %3 = alloca %struct.Box*, align 8 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -141,7 +141,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %47 = call noundef i32 @_Z3maxii(i32 noundef %40, i32 noundef %46) %48 = load i32, i32* %7, align 4 %49 = sext i32 %48 to i64 %50 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %49 @@ -159,7 +159,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %64 = call noundef i32 @_Z3minii(i32 noundef %57, i32 noundef %63) %65 = load i32, i32* %7, align 4 %66 = sext i32 %65 to i64 %67 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %66 @@ -191,7 +191,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %93 = call noundef i32 @_Z3maxii(i32 noundef %86, i32 noundef %92) %94 = load i32, i32* %7, align 4 %95 = sext i32 %94 to i64 %96 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %95 @@ -209,7 +209,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %110 = call noundef i32 @_Z3minii(i32 noundef %103, i32 noundef %109) %111 = load i32, i32* %7, align 4 %112 = sext i32 %111 to i64 %113 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %112 @@ -241,7 +241,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %139 = call noundef i32 @_Z3maxii(i32 noundef %132, i32 noundef %138) %140 = load i32, i32* %7, align 4 %141 = sext i32 %140 to i64 %142 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %141 @@ -259,7 +259,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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) + %156 = call noundef i32 @_Z3minii(i32 noundef %149, i32 noundef %155) %157 = load i32, i32* %7, align 4 %158 = sext i32 %157 to i64 %159 = getelementptr inbounds %struct.Box, %struct.Box* %19, i64 %158 @@ -274,7 +274,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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 + br label %20, !llvm.loop !6 166: ; preds = %20 %167 = load i32, i32* %4, align 4 @@ -283,7 +283,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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_) + call void @qsort(i8* noundef %169, i64 noundef %171, i64 noundef 12, i32 (i8*, i8*)* noundef @_Z7comparePKvS0_) %172 = load i32, i32* %4, align 4 %173 = zext i32 %172 to i64 %174 = alloca i32, i64 %173, align 16 @@ -313,7 +313,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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 + br label %175, !llvm.loop !8 191: ; preds = %175 store i32 1, i32* %11, align 4 @@ -405,7 +405,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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 + br label %197, !llvm.loop !9 259: ; preds = %197 br label %260 @@ -414,7 +414,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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 + br label %192, !llvm.loop !10 263: ; preds = %192 store i32 -1, i32* %13, align 4 @@ -451,7 +451,7 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { %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 + br label %264, !llvm.loop !11 284: ; preds = %264 %285 = load i32, i32* %13, align 4 @@ -463,13 +463,13 @@ define dso_local i32 @_Z14maxStackHeightP3Boxi(%struct.Box* %0, i32 %1) #1 { ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #2 -declare dso_local void @qsort(i8*, i64, i64, i32 (i8*, i8*)*) #3 +declare void @qsort(i8* noundef, i64 noundef, i64 noundef, i32 (i8*, i8*)* noundef) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [4 x %struct.Box], align 16 %3 = alloca i32, align 4 @@ -479,31 +479,35 @@ define dso_local i32 @main() #4 { 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) + %7 = call noundef i32 @_Z14maxStackHeightP3Boxi(%struct.Box* noundef %5, i32 noundef %6) + %8 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([44 x i8], [44 x i8]* @.str, i64 0, i64 0), i32 noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 +declare i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll similarity index 58% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll index cd1c8880..7cc74bf6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/boyer-moore-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/boyer-moore-algorithm.ll @@ -28,7 +28,7 @@ $_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 +@_ZSt4cout = external 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 @@ -36,21 +36,21 @@ $_ZSt3maxIiERKT_S2_S2_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %1, i32* noundef %2) #4 { %4 = alloca i32, align 4 %5 = alloca i32*, align 8 %6 = alloca i32, align 4 @@ -76,7 +76,7 @@ define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %7, !llvm.loop !6 18: ; preds = %7 store i32 0, i32* %6, align 4 @@ -93,7 +93,7 @@ define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_t %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) + %28 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %27) %29 = load i8, i8* %28, align 1 %30 = sext i8 %29 to i32 %31 = sext i32 %30 to i64 @@ -105,16 +105,16 @@ define dso_local void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %19, !llvm.loop !8 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -125,20 +125,20 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + %15 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z16badCharHeuristicNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiPi(%"class.std::__cxx11::basic_string"* noundef %6, i32 noundef %17, i32* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 store i32 0, i32* %9, align 4 br label %20 @@ -164,14 +164,14 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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) + %35 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %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) + %42 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %41) %43 = load i8, i8* %42, align 1 %44 = sext i8 %43 to i32 %45 = icmp eq i32 %37, %44 @@ -185,7 +185,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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 + br label %29, !llvm.loop !9 51: ; preds = %2 %52 = landingpad { i8*, i32 } @@ -194,7 +194,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 br label %103 55: ; preds = %46 @@ -203,10 +203,10 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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)) + %59 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %61 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %59, i32 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %61, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 @@ -220,7 +220,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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) + %74 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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 @@ -245,14 +245,14 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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) + %91 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %97 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %11, i32* noundef 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 @@ -260,7 +260,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI br label %101 101: ; preds = %85, %81 - br label %20, !llvm.loop !6 + br label %20, !llvm.loop !10 102: ; preds = %20 ret void @@ -274,25 +274,25 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI } ; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -320,8 +320,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI ret i32* %16 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -332,35 +332,35 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %8, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %15 = load i32, i32* %1, align 4 ret i32 %15 @@ -371,7 +371,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %39 20: ; preds = %10 @@ -381,7 +381,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %38 24: ; preds = %11 @@ -409,19 +409,19 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %39 39: ; preds = %38, %16 @@ -433,12 +433,12 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_boyer_moore_algorithm.cpp() #0 section ".text.startup" { @@ -446,21 +446,25 @@ define internal void @_GLOBAL__sub_I_boyer_moore_algorithm.cpp() #0 section ".te 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll index 81e84ea6..545c38fe 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/channel-assignment.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/channel-assignment.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* noundef %0, i32 noundef %1, i8* noundef %2, i32* noundef %3) #4 { %5 = alloca i1, align 1 %6 = alloca [4 x i32]*, align 8 %7 = alloca i32, align 4 @@ -108,7 +108,7 @@ define dso_local zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %0, i32 %1, i8* %2, i32 %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) + %51 = call noundef zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* noundef %43, i32 noundef %48, i8* noundef %49, i32* noundef %50) br i1 %51, label %52, label %58 52: ; preds = %42, %31 @@ -131,7 +131,7 @@ define dso_local zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %0, i32 %1, i8* %2, i32 %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 + br label %11, !llvm.loop !6 63: ; preds = %11 store i1 false, i1* %5, align 1 @@ -142,8 +142,8 @@ define dso_local zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* %0, i32 %1, i8* %2, i32 ret i1 %65 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z6maxBPMPA4_i([4 x i32]* noundef %0) #4 { %2 = alloca [4 x i32]*, align 8 %3 = alloca [4 x i32], align 16 %4 = alloca i32, align 4 @@ -170,7 +170,7 @@ define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { %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) + %19 = call noundef zeroext i1 @_Z3bpmPA4_iiPbPi([4 x i32]* noundef %15, i32 noundef %16, i8* noundef %17, i32* noundef %18) br i1 %19, label %20, label %23 20: ; preds = %13 @@ -186,13 +186,13 @@ define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { %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 + br label %10, !llvm.loop !8 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)) + %28 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %30 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %28, i32 noundef %29) + %31 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %30, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) store i32 0, i32* %7, align 4 br label %32 @@ -211,18 +211,18 @@ define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { 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)) + %43 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %49 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %43, i32 noundef %48) + %50 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %49, i8* noundef 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)) + %53 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %50, i32 noundef %52) + %54 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %53, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %55 55: ; preds = %42, %35 @@ -232,22 +232,22 @@ define dso_local i32 @_Z6maxBPMPA4_i([4 x i32]* %0) #4 { %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 + br label %32, !llvm.loop !9 59: ; preds = %32 %60 = load i32, i32* %4, align 4 ret i32 %60 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [3 x [4 x i32]], align 16 %3 = alloca i32, align 4 @@ -269,7 +269,7 @@ define dso_local i32 @main() #6 { %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) + %15 = call noundef i32 @_Z6maxBPMPA4_i([4 x i32]* noundef %14) store i32 %15, i32* %3, align 4 ret i32 0 } @@ -280,20 +280,24 @@ define internal void @_GLOBAL__sub_I_channel_assignment.cpp() #0 section ".text. 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn writeonly } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll index 5f8e25c6..56f69857 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/coin-change.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/coin-change.ll @@ -23,26 +23,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z5countPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -89,7 +89,7 @@ define dso_local i32 @_Z5countPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %22, !llvm.loop !6 35: ; preds = %22 store i32 1, i32* %7, align 4 @@ -185,7 +185,7 @@ define dso_local i32 @_Z5countPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %42, !llvm.loop !8 101: ; preds = %42 br label %102 @@ -194,7 +194,7 @@ define dso_local i32 @_Z5countPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %36, !llvm.loop !9 105: ; preds = %36 %106 = load i32, i32* %6, align 4 @@ -217,8 +217,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [3 x i32], align 4 %3 = alloca i32, align 4 @@ -231,15 +231,15 @@ define dso_local i32 @main() #6 { %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) + %9 = call noundef i32 @_Z5countPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_coin_change.cpp() #0 section ".text.startup" { @@ -247,21 +247,25 @@ define internal void @_GLOBAL__sub_I_coin_change.cpp() #0 section ".text.startup 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} 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-llvm14/collect-maximum-points-in-a-grid-using-two-traversals.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/collect-maximum-points-in-a-grid-using-two-traversals.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/collect-maximum-points-in-a-grid-using-two-traversals.ll index 70b3fb31..8fb19731 100644 --- 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-llvm14/collect-maximum-points-in-a-grid-using-two-traversals.ll @@ -25,27 +25,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7isValidiii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -86,8 +86,8 @@ define dso_local zeroext i1 @_Z7isValidiii(i32 %0, i32 %1, i32 %2) #4 { 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %0, [4 x [4 x i32]]* noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4) #5 { %6 = alloca i32, align 4 %7 = alloca [4 x i32]*, align 8 %8 = alloca [4 x [4 x i32]]*, align 8 @@ -113,7 +113,7 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %26 = call noundef zeroext i1 @_Z7isValidiii(i32 noundef %23, i32 noundef %24, i32 noundef %25) br i1 %26, label %28, label %27 27: ; preds = %5 @@ -265,10 +265,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %140 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %133, [4 x [4 x i32]]* noundef %134, i32 noundef %136, i32 noundef %137, i32 noundef %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) + %142 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -279,10 +279,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %152 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %145, [4 x [4 x i32]]* noundef %146, i32 noundef %148, i32 noundef %149, i32 noundef %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) + %154 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -292,10 +292,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %163 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %157, [4 x [4 x i32]]* noundef %158, i32 noundef %160, i32 noundef %161, i32 noundef %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) + %165 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -306,10 +306,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %175 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %168, [4 x [4 x i32]]* noundef %169, i32 noundef %171, i32 noundef %173, i32 noundef %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) + %177 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -321,10 +321,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %188 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %180, [4 x [4 x i32]]* noundef %181, i32 noundef %183, i32 noundef %185, i32 noundef %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) + %190 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -336,10 +336,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %201 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %193, [4 x [4 x i32]]* noundef %194, i32 noundef %196, i32 noundef %198, i32 noundef %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) + %203 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -350,10 +350,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %213 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %206, [4 x [4 x i32]]* noundef %207, i32 noundef %209, i32 noundef %211, i32 noundef %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) + %215 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -365,10 +365,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %226 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %218, [4 x [4 x i32]]* noundef %219, i32 noundef %221, i32 noundef %223, i32 noundef %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) + %228 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -380,10 +380,10 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] %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) + %239 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %231, [4 x [4 x i32]]* noundef %232, i32 noundef %234, i32 noundef %236, i32 noundef %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) + %241 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %12, i32* noundef 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 @@ -406,8 +406,8 @@ define dso_local i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* %0, [4 x [4 x i32] 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #4 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -435,8 +435,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI ret i32* %16 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z15geMaxCollectionPA4_i([4 x i32]* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z15geMaxCollectionPA4_i([4 x i32]* noundef %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 @@ -445,33 +445,33 @@ define dso_local i32 @_Z15geMaxCollectionPA4_i([4 x i32]* %0) #5 { 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) + %8 = call noundef i32 @_Z10getMaxUtilPA4_iPA4_S_iii([4 x i32]* noundef %6, [4 x [4 x i32]]* noundef %7, i32 noundef 0, i32 noundef 0, i32 noundef 3) ret i32 %8 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %6 = call noundef i32 @_Z15geMaxCollectionPA4_i([4 x i32]* noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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" { @@ -479,18 +479,22 @@ define internal void @_GLOBAL__sub_I_collect_maximum_points_in_a_grid_using_two_ 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} 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-llvm14/construction-of-lcp-array-from-suffix-array.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/construction-of-lcp-array-from-suffix-array.ll index 60756dc1..25aba223 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/construction-of-lcp-array-from-suffix-array.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/construction-of-lcp-array-from-suffix-array.ll @@ -284,7 +284,7 @@ $_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 +@_ZSt4cout = external 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 @@ -295,21 +295,21 @@ $_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef 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 @@ -366,11 +366,11 @@ define dso_local i32 @_Z3cmp6suffixS_(i64 %0, i32 %1, i64 %2, i32 %3) #4 { ret i32 %45 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::vector"* noalias sret(%"class.std::vector") align 8 %0, %"class.std::__cxx11::basic_string"* noundef %1, i32 noundef %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 @@ -414,7 +414,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t 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) + %37 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %36) %38 = load i8, i8* %37, align 1 %39 = sext i8 %38 to i32 %40 = sub nsw i32 %39, 97 @@ -434,7 +434,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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) + %54 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %53) %55 = load i8, i8* %54, align 1 %56 = sext i8 %55 to i32 %57 = sub nsw i32 %56, 97 @@ -457,13 +457,13 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %25, !llvm.loop !6 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_) + call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* noundef %24, %struct.suffix* noundef %72, i32 (i64, i32, i64, i32)* noundef @_Z3cmp6suffixS_) %73 = load i32, i32* %5, align 4 %74 = zext i32 %73 to i64 %75 = alloca i32, i64 %74, align 16 @@ -585,7 +585,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %95, !llvm.loop !8 162: ; preds = %95 store i32 0, i32* %14, align 4 @@ -641,24 +641,24 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %163, !llvm.loop !9 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_) + call void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* noundef %24, %struct.suffix* noundef %203, i32 (i64, i32, i64, i32)* noundef @_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 + br label %76, !llvm.loop !10 207: ; preds = %76 store i1 false, i1* %16, align 1 - call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 + call void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #3 store i32 0, i32* %17, align 4 br label %208 @@ -673,7 +673,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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) + invoke void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef nonnull align 4 dereferenceable(4) %216) to label %217 unwind label %221 217: ; preds = %212 @@ -683,7 +683,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t %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 + br label %208, !llvm.loop !11 221: ; preds = %212 %222 = landingpad { i8*, i32 } @@ -692,7 +692,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #3 br label %230 225: ; preds = %208 @@ -701,7 +701,7 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t br i1 %226, label %228, label %227 227: ; preds = %225 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %0) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #3 br label %228 228: ; preds = %227, %225 @@ -720,10 +720,10 @@ define dso_local void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_t ; 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, i32 (i64, i32, i64, i32)* noundef %2) #6 comdat { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca i32 (i64, i32, i64, i32)*, align 8 @@ -734,27 +734,27 @@ define linkonce_odr dso_local void @_ZSt4sortIP6suffixPFiS0_S0_EEvT_S4_T0_(%stru %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) + %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)* noundef %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) + call void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %8, %struct.suffix* noundef %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 { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -784,7 +784,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.s %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %21, i32* noundef %26, i32* noundef 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"* @@ -795,23 +795,23 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE9push_backERKi(%"class.s br label %40 34: ; preds = %2 - %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 + %35 = call i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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) + call void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %6, i32* %39, i32* noundef nonnull align 4 dereferenceable(4) %37) br label %40 40: ; preds = %34, %18 ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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*) { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 @@ -828,13 +828,13 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector %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) + %17 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %16) #3 + invoke void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %10, i32* noundef %15, %"class.std::allocator"* noundef 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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %19) #3 ret void 20: ; preds = %1 @@ -845,7 +845,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector %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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %24) #3 br label %25 25: ; preds = %20 @@ -857,8 +857,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector ; 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(%"class.std::vector"* noalias sret(%"class.std::vector") align 8 %0, %"class.std::__cxx11::basic_string"* noundef %1, %"class.std::vector"* noundef %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 @@ -875,28 +875,28 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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) + call void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %22, i32* noundef nonnull align 4 dereferenceable(4) %7, %"class.std::allocator"* noundef 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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) + call void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13) #3 + invoke void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %25, i32* noundef nonnull align 4 dereferenceable(4) %12, %"class.std::allocator"* noundef 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13) #3 store i32 0, i32* %14, align 4 br label %27 @@ -910,10 +910,10 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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 + %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %37) #3 store i32 %32, i32* %38, align 4 br label %39 @@ -921,7 +921,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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 + br label %27, !llvm.loop !12 42: ; preds = %3 %43 = landingpad { i8*, i32 } @@ -930,7 +930,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 br label %134 46: ; preds = %23 @@ -940,7 +940,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13) #3 br label %133 50: ; preds = %27 @@ -957,7 +957,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 + %58 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %57) #3 %59 = load i32, i32* %58, align 4 %60 = load i32, i32* %5, align 4 %61 = sub nsw i32 %60, 1 @@ -971,11 +971,11 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 + %67 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %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 + %71 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %2, i64 noundef %70) #3 %72 = load i32, i32* %71, align 4 store i32 %72, i32* %17, align 4 br label %73 @@ -1001,7 +1001,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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) + %90 = invoke noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %89) to label %91 unwind label %108 91: ; preds = %85 @@ -1011,7 +1011,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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) + %98 = invoke noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %97) to label %99 unwind label %108 99: ; preds = %91 @@ -1028,7 +1028,7 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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 + br label %73, !llvm.loop !13 108: ; preds = %91, %85 %109 = landingpad { i8*, i32 } @@ -1037,17 +1037,17 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + %116 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %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 + %119 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %118) #3 store i32 %113, i32* %119, align 4 %120 = load i32, i32* %15, align 4 %121 = icmp sgt i32 %120, 0 @@ -1066,23 +1066,23 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc %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 + br label %51, !llvm.loop !14 129: ; preds = %51 store i1 true, i1* %6, align 1 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %11) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0) #3 br label %134 134: ; preds = %133, %42 @@ -1093,8 +1093,8 @@ define dso_local void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIc 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -1116,17 +1116,17 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vec } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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*) { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2, %"class.std::allocator"* noundef 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 @@ -1141,12 +1141,12 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std %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) + %15 = call noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %13, %"class.std::allocator"* noundef 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) + call void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %12, i64 noundef %15, %"class.std::allocator"* noundef 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) + invoke void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %18) to label %19 unwind label %20 19: ; preds = %4 @@ -1160,7 +1160,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std %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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %24) #3 br label %25 25: ; preds = %20 @@ -1172,17 +1172,17 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2EmRKiRKS0_(%"class.std } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1198,8 +1198,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNSt6vec ret i32* %12 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* %0, i32 %1) #6 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %0, i32 noundef %1) #6 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %1, i32* %3, align 4 @@ -1215,33 +1215,33 @@ define dso_local void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* %0, i 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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt6vectorIiSaIiEEixEm(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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)) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %14, i8* noundef 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 + br label %5, !llvm.loop !15 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_) + %20 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -1256,72 +1256,72 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([7 x i8], [7 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* noundef 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 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + invoke void @_Z16buildSuffixArrayNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%"class.std::vector"* sret(%"class.std::vector") align 8 %6, %"class.std::__cxx11::basic_string"* noundef %7, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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)) + %21 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9, %"class.std::vector"* noundef 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) + invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %9, i32 noundef %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) + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12, %"class.std::vector"* noundef 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) + invoke void @_Z5kasaiNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt6vectorIiSaIiEE(%"class.std::vector"* sret(%"class.std::vector") align 8 %10, %"class.std::__cxx11::basic_string"* noundef %11, %"class.std::vector"* noundef %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)) + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %12) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 + %29 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + invoke void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %13, %"class.std::vector"* noundef 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) + invoke void @_Z8printArrSt6vectorIiSaIiEEi(%"class.std::vector"* noundef %13, i32 noundef %32) to label %33 unwind label %68 33: ; preds = %31 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %13) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %34 = load i32, i32* %1, align 4 ret i32 %34 @@ -1332,7 +1332,7 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %75 39: ; preds = %14 @@ -1351,7 +1351,7 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 br label %74 47: ; preds = %25, %22, %18 @@ -1370,7 +1370,7 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 br label %73 55: ; preds = %26 @@ -1389,11 +1389,11 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 br label %73 64: ; preds = %30, %28 @@ -1412,19 +1412,19 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %13) #3 br label %72 72: ; preds = %68, %64 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %10) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %10) #3 br label %73 73: ; preds = %72, %63, %51, %47 - call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* nonnull dereferenceable(24) %6) #3 + call void @_ZNSt6vectorIiSaIiEED2Ev(%"class.std::vector"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %75 75: ; preds = %74, %35 @@ -1436,23 +1436,23 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator.0"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, %"class.std::vector"* noundef 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 @@ -1465,22 +1465,22 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::ve %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 + %13 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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) + %16 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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"* noundef nonnull align 1 dereferenceable(1) %16) + invoke void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %11, i64 noundef %13, %"class.std::allocator"* noundef 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + %19 = call i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %22 = call i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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"* @@ -1489,12 +1489,12 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::ve %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 + %30 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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) + %35 = invoke noundef i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(i32* %32, i32* %34, i32* noundef %28, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %30) to label %36 unwind label %45 36: ; preds = %17 @@ -1512,7 +1512,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::ve 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %50 45: ; preds = %17 @@ -1523,7 +1523,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::ve %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 + call void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %49) #3 br label %50 50: ; preds = %45, %41 @@ -1535,29 +1535,29 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEEC2ERKS1_(%"class.std::ve } ; 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 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 @@ -1571,7 +1571,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_da } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1579,15 +1579,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 @@ -1611,14 +1611,14 @@ define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter %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) + %22 = call noundef i64 @_ZSt4__lgl(i64 noundef %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) + call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* noundef %14, %struct.suffix* noundef %15, i64 noundef %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* @@ -1626,28 +1626,28 @@ define linkonce_odr dso_local void @_ZSt6__sortIP6suffixN9__gnu_cxx5__ops15_Iter 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) + call void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %28, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +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)* noundef %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 + %4 = call noundef nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** noundef 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) + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %2, i32 (i64, i32, i64, i32)* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, i64 noundef %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 @@ -1687,7 +1687,7 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5 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) + call void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* noundef %26, %struct.suffix* noundef %27, %struct.suffix* noundef %28, i32 (i64, i32, i64, i32)* %32) br label %51 33: ; preds = %22 @@ -1701,7 +1701,7 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5 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) + %42 = call noundef %struct.suffix* @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(%struct.suffix* noundef %36, %struct.suffix* noundef %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 @@ -1711,17 +1711,17 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5 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) + call void @_ZSt16__introsort_loopIP6suffixlN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_T1_(%struct.suffix* noundef %43, %struct.suffix* noundef %44, i64 noundef %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 + br label %14, !llvm.loop !16 51: ; preds = %25, %14 ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgl(i64 noundef %0) #4 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1732,8 +1732,8 @@ define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 @@ -1762,7 +1762,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu 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) + call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %19, %struct.suffix* noundef %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 @@ -1771,7 +1771,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu 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) + call void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %27, %struct.suffix* noundef %28, i32 (i64, i32, i64, i32)* %32) br label %40 33: ; preds = %3 @@ -1782,15 +1782,15 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP6suffixN9__gnu 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) + call void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %34, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %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 @@ -1809,15 +1809,15 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIP6suffixN9__gnu_cxx5__o 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) + call void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* noundef %11, %struct.suffix* noundef %12, %struct.suffix* noundef %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) + call void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* noundef %18, %struct.suffix* noundef %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt27__unguarded_partition_pivotIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 @@ -1849,7 +1849,7 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt27__unguarded_partition_pivot 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) + call void @_ZSt22__move_median_to_firstIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.suffix* noundef %20, %struct.suffix* noundef %22, %struct.suffix* noundef %23, %struct.suffix* noundef %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 @@ -1859,12 +1859,12 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt27__unguarded_partition_pivot 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) + %38 = call noundef %struct.suffix* @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(%struct.suffix* noundef %31, %struct.suffix* noundef %32, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %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 @@ -1877,7 +1877,7 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__op 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) + call void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* noundef %11, %struct.suffix* noundef %12, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -1891,14 +1891,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__op 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) + %21 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.suffix* noundef %19, %struct.suffix* noundef %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) + call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* noundef %23, %struct.suffix* noundef %24, %struct.suffix* noundef %25, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5) br label %26 26: ; preds = %22, %18 @@ -1908,14 +1908,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP6suffixN9__gnu_cxx5__op %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 + br label %14, !llvm.loop !17 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -1942,15 +1942,15 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIP6suffixN9__gnu_cxx5__ops1 %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 + call void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* noundef %18, %struct.suffix* noundef %19, %struct.suffix* noundef %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %21) + br label %7, !llvm.loop !18 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_RT0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -1993,14 +1993,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops1 %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 + %35 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 + %41 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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) @@ -2017,7 +2017,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops1 %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) + call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* noundef %38, i64 noundef %39, i64 noundef %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 @@ -2029,14 +2029,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP6suffixN9__gnu_cxx5__ops1 %59 = load i64, i64* %8, align 8 %60 = add nsw i64 %59, -1 store i64 %60, i64* %8, align 8 - br label %31 + br label %31, !llvm.loop !19 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, %struct.suffix* noundef %1, %struct.suffix* noundef %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 @@ -2072,13 +2072,13 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIP %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) + %32 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_S8_RT0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -2092,12 +2092,12 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15 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 + %14 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 + %18 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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* @@ -2109,7 +2109,7 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15 %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 + %29 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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) @@ -2126,20 +2126,20 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP6suffixN9__gnu_cxx5__ops15 %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) + call void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* noundef %22, i64 noundef 0, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.suffix* noundef %0, i64 noundef %1, i64 noundef %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 @@ -2189,7 +2189,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 %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) + %42 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %9, %struct.suffix* noundef %37, %struct.suffix* noundef %41) br i1 %42, label %43, label %46 43: ; preds = %31 @@ -2202,7 +2202,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 %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 + %50 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 @@ -2211,7 +2211,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 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 + br label %25, !llvm.loop !20 57: ; preds = %25 %58 = load i64, i64* %12, align 8 @@ -2236,7 +2236,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 %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 + %75 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 @@ -2249,12 +2249,12 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 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) + %84 = call noundef 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"* noundef 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"* noundef nonnull align 8 dereferenceable(8) %15, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 + %88 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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) @@ -2265,12 +2265,12 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP6suffixlS0_N9__gnu_cxx5 %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) + call void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.suffix* noundef %85, i64 noundef %86, i64 noundef %87, i64 %94, i32 %96, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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"* noundef 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 @@ -2278,7 +2278,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.__gnu_ } ; 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 { +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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -2287,14 +2287,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suff %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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFiS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.suffix* noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 @@ -2330,7 +2330,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ %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) + %30 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 8 dereferenceable(8) %26, %struct.suffix* noundef %29, %struct.suffix* noundef nonnull align 4 dereferenceable(12) %7) br label %31 31: ; preds = %25, %21 @@ -2341,7 +2341,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ %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 + %37 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 @@ -2354,10 +2354,10 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ %45 = sub nsw i64 %44, 1 %46 = sdiv i64 %45, 2 store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !16 + br label %21, !llvm.loop !21 47: ; preds = %31 - %48 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %7) #3 + %48 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 @@ -2367,16 +2367,16 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP6suffixlS0_N9__gnu_cxx5__ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFi6suffixS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 8 dereferenceable(8) %0, %struct.suffix* noundef %1, %struct.suffix* noundef 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 @@ -2412,13 +2412,13 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPF %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) + %32 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +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* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2, %struct.suffix* noundef %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 @@ -2432,37 +2432,37 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP6suffixN9__gnu 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) + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %12, %struct.suffix* noundef %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) + %18 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %16, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %20, %struct.suffix* noundef %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) + %25 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %23, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %27, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %30, %struct.suffix* noundef %31) br label %32 32: ; preds = %29, %26 @@ -2474,31 +2474,31 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP6suffixN9__gnu 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) + %37 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %35, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %39, %struct.suffix* noundef %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) + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %42, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %46, %struct.suffix* noundef %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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %49, %struct.suffix* noundef %50) br label %51 51: ; preds = %48, %45 @@ -2511,8 +2511,8 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP6suffixN9__gnu 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt21__unguarded_partitionIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEET_S8_S8_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %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 @@ -2530,14 +2530,14 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt21__unguarded_partitionIP6suf 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) + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.suffix* noundef %12, %struct.suffix* noundef %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 + br label %11, !llvm.loop !22 18: ; preds = %11 %19 = load %struct.suffix*, %struct.suffix** %7, align 8 @@ -2548,14 +2548,14 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt21__unguarded_partitionIP6suf 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) + %24 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.suffix* noundef %22, %struct.suffix* noundef %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 + br label %21, !llvm.loop !23 28: ; preds = %21 %29 = load %struct.suffix*, %struct.suffix** %6, align 8 @@ -2570,44 +2570,44 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt21__unguarded_partitionIP6suf 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) + call void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %35, %struct.suffix* noundef %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 + br label %10, !llvm.loop !24 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* %0, %struct.suffix* %1) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIP6suffixS1_EvT_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 + call void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.suffix* noundef nonnull align 4 dereferenceable(12) %5, %struct.suffix* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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* noundef nonnull align 4 dereferenceable(12) %0, %struct.suffix* noundef 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 + %7 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 + %11 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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 + %15 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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* @@ -2618,8 +2618,8 @@ define linkonce_odr dso_local void @_ZSt4swapI6suffixENSt9enable_ifIXsr6__and_IS ; 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 @@ -2654,12 +2654,12 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5_ 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) + %26 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %4, %struct.suffix* noundef %24, %struct.suffix* noundef %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 + %29 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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) @@ -2667,8 +2667,8 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5_ %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 + %36 = call noundef %struct.suffix* @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(%struct.suffix* noundef %32, %struct.suffix* noundef %33, %struct.suffix* noundef %35) + %37 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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* @@ -2687,7 +2687,7 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5_ 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) + call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* noundef %42, i32 (i64, i32, i64, i32)* %50) br label %51 51: ; preds = %41, %27 @@ -2697,14 +2697,14 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP6suffixN9__gnu_cxx5_ %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 + br label %19, !llvm.loop !25 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP6suffixN9__gnu_cxx5__ops15_Iter_comp_iterIPFiS0_S0_EEEEvT_S8_T0_(%struct.suffix* noundef %0, %struct.suffix* noundef %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 @@ -2737,21 +2737,21 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP6suffixN9_ 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) + call void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* noundef %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 + br label %12, !llvm.loop !26 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt13move_backwardIP6suffixS1_ET0_T_S3_S2_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #6 comdat { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca %struct.suffix*, align 8 @@ -2759,16 +2759,16 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt13move_backwardIP6suffixS1_ET 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) + %8 = call noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %7) %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* %9) + %10 = call noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %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) + %12 = call noundef %struct.suffix* @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %8, %struct.suffix* noundef %10, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__gnu_cxx5__ops14_Val_comp_iterIPFiS0_S0_EEEEvT_T0_(%struct.suffix* noundef %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 @@ -2777,7 +2777,7 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ 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 + %9 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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) @@ -2790,12 +2790,12 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ 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) + %17 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* noundef nonnull align 8 dereferenceable(8) %3, %struct.suffix* noundef nonnull align 4 dereferenceable(12) %5, %struct.suffix* noundef %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 + %20 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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* @@ -2805,10 +2805,10 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ %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 + br label %15, !llvm.loop !27 27: ; preds = %15 - %28 = call nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* nonnull align 4 dereferenceable(12) %5) #3 + %28 = call noundef nonnull align 4 dereferenceable(12) %struct.suffix* @_ZSt4moveIR6suffixEONSt16remove_referenceIT_E4typeEOS3_(%struct.suffix* noundef 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* @@ -2816,21 +2816,21 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP6suffixN9__ ret void } -; Function Attrs: noinline uwtable mustprogress +; Function Attrs: mustprogress noinline uwtable 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) + %5 = call noundef 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"* noundef 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"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt22__copy_move_backward_aILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #6 comdat { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca %struct.suffix*, align 8 @@ -2838,26 +2838,26 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt22__copy_move_backward_aILb1E 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 + %8 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %7) #3 %9 = load %struct.suffix*, %struct.suffix** %5, align 8 - %10 = call %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* %9) #3 + %10 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %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) + %12 = call noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %11) #3 + %13 = call noundef %struct.suffix* @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %8, %struct.suffix* noundef %10, %struct.suffix* noundef %12) + %14 = call noundef %struct.suffix* @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(%struct.suffix** noundef nonnull align 8 dereferenceable(8) %6, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt12__miter_baseIP6suffixET_S2_(%struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt12__niter_wrapIP6suffixET_RKS2_S2_(%struct.suffix** noundef nonnull align 8 dereferenceable(8) %0, %struct.suffix* noundef %1) #4 comdat { %3 = alloca %struct.suffix**, align 8 %4 = alloca %struct.suffix*, align 8 store %struct.suffix** %0, %struct.suffix*** %3, align 8 @@ -2866,8 +2866,8 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt12__niter_wrapIP6suffixET_RKS 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt23__copy_move_backward_a1ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #6 comdat { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca %struct.suffix*, align 8 @@ -2877,20 +2877,20 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt23__copy_move_backward_a1ILb1 %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) + %10 = call noundef %struct.suffix* @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %7, %struct.suffix* noundef %8, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt12__niter_baseIP6suffixET_S2_(%struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZSt23__copy_move_backward_a2ILb1EP6suffixS1_ET1_T0_S3_S2_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #6 comdat { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca %struct.suffix*, align 8 @@ -2900,12 +2900,12 @@ define linkonce_odr dso_local %struct.suffix* @_ZSt23__copy_move_backward_a2ILb1 %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) + %10 = call noundef %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_(%struct.suffix* noundef %7, %struct.suffix* noundef %8, %struct.suffix* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.suffix* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI6suffixEEPT_PKS4_S7_S5_(%struct.suffix* noundef %0, %struct.suffix* noundef %1, %struct.suffix* noundef %2) #4 comdat align 2 { %4 = alloca %struct.suffix*, align 8 %5 = alloca %struct.suffix*, align 8 %6 = alloca %struct.suffix*, align 8 @@ -2945,11 +2945,11 @@ define linkonce_odr dso_local %struct.suffix* @_ZNSt20__copy_move_backwardILb1EL ret %struct.suffix* %30 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suffixS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, %struct.suffix* noundef nonnull align 4 dereferenceable(12) %1, %struct.suffix* noundef %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 @@ -2985,13 +2985,13 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPF %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) + %32 = call noundef 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 { +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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -3000,28 +3000,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFi6suff %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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** noundef 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFi6suffixS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, i32 (i64, i32, i64, i32)* noundef %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 + %7 = call noundef nonnull align 8 dereferenceable(8) i32 (i64, i32, i64, i32)** @_ZSt4moveIRPFi6suffixS0_EEONSt16remove_referenceIT_E4typeEOS5_(i32 (i64, i32, i64, i32)** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* noundef %0, i32* noundef %1, %"class.std::allocator"* noundef 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 @@ -3030,12 +3030,12 @@ define linkonce_odr dso_local void @_ZSt8_DestroyIPiiEvT_S1_RSaIT0_E(i32* %0, i3 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) + call void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %7, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -3045,7 +3045,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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*) { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -3067,12 +3067,12 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std %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) + invoke void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %5, i32* noundef %9, i64 noundef %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %23) #3 ret void 24: ; preds = %1 @@ -3083,7 +3083,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEED2Ev(%"struct.std %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %28) #3 br label %29 29: ; preds = %24 @@ -3099,24 +3099,24 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare void @_ZSt9terminatev() -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* %0, i32* %1) #6 comdat { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8_DestroyIPiEvT_S1_(i32* noundef %0, i32* noundef %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) + call void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %5, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S3_(i32* noundef %0, i32* noundef %1) #4 comdat align 2 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 store i32* %0, i32** %3, align 8 @@ -3124,8 +3124,8 @@ define linkonce_odr dso_local void @_ZNSt12_Destroy_auxILb1EE9__destroyIPiEEvT_S 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef %1, i64 noundef %2) #6 comdat align 2 { %4 = alloca %"struct.std::_Vector_base"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -3142,7 +3142,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEP %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) + call void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12, i32* noundef %13, i64 noundef %14) br label %15 15: ; preds = %10, %3 @@ -3150,17 +3150,17 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEP } ; 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #6 comdat align 2 { %4 = alloca %"class.std::allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -3171,12 +3171,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -3186,15 +3186,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -3205,13 +3205,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKiEEEvN9__gnu_cxx17__normal_iteratorIPiS1_EEDpOT_(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i32* %1, i32* noundef 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 @@ -3227,7 +3227,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi 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)) + %16 = call noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %15, i64 noundef 1, i8* noundef 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 @@ -3241,14 +3241,14 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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 + %27 = call i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 + %29 = call noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %4, %"class.__gnu_cxx::__normal_iterator"* noundef 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) + %32 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %30, i64 noundef %31) store i32* %32, i32** %12, align 8 %33 = load i32*, i32** %12, align 8 store i32* %33, i32** %13, align 8 @@ -3259,27 +3259,27 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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 + %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %40) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %36, i32* noundef %39, i32* noundef 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 + %43 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %47 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %46) #3 + %48 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %42, i32* noundef %44, i32* noundef %45, %"class.std::allocator"* noundef 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 + %51 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %56 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %55) #3 + %57 = call noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %52, i32* noundef %53, i32* noundef %54, %"class.std::allocator"* noundef 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 @@ -3293,7 +3293,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi %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) + call void @_ZNSt12_Vector_baseIiSaIiEE13_M_deallocateEPim(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %58, i32* noundef %59, i64 noundef %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 @@ -3317,8 +3317,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE17_M_realloc_insertIJRKi 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -3327,14 +3327,14 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE3endEv(%"class.std::vect %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -3346,22 +3346,22 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, i8* noundef %2) #6 comdat align 2 { %4 = alloca %"class.std::vector"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -3371,8 +3371,8 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 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 + %10 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + %11 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 %12 = sub i64 %10, %11 %13 = load i64, i64* %5, align 8 %14 = icmp ult i64 %12, %13 @@ -3380,30 +3380,30 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 15: ; preds = %3 %16 = load i8*, i8** %6, align 8 - call void @_ZSt20__throw_length_errorPKc(i8* %16) #16 + call void @_ZSt20__throw_length_errorPKc(i8* noundef %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 + %18 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 + %19 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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) + %20 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %8, i64* noundef 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 + %24 = call noundef i64 @_ZNKSt6vectorIiSaIiEE4sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %28 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %31 = call noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %9) #3 br label %34 32: ; preds = %26 @@ -3415,17 +3415,17 @@ define linkonce_odr dso_local i64 @_ZNKSt6vectorIiSaIiEE12_M_check_lenEmPKc(%"cl 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__normal_iteratorIT_T0_E15difference_typeERKS8_SB_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"class.__gnu_cxx::__normal_iterator"* noundef 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 + %6 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 + %9 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #3 %10 = load i32*, i32** %9, align 8 %11 = ptrtoint i32* %7 to i64 %12 = ptrtoint i32* %10 to i64 @@ -3434,8 +3434,8 @@ define linkonce_odr dso_local i64 @_ZN9__gnu_cxxmiIPiSt6vectorIiSaIiEEEENS_17__n 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -3444,14 +3444,14 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE5beginEv(%"class.std::ve %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -3465,7 +3465,7 @@ define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(% %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) + %12 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10, i64 noundef %11) br label %14 13: ; preds = %2 @@ -3476,8 +3476,8 @@ define linkonce_odr dso_local i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(% 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS0_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -3491,12 +3491,12 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE11_S_relocateEPiS2_S2_RS %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 + %14 = call noundef i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* noundef %10, i32* noundef %11, i32* noundef %12, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 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 @@ -3504,22 +3504,22 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__g 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt6vectorIiSaIiEE8max_sizeEv(%"class.std::vector"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 + %6 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -3547,17 +3547,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -3572,8 +3572,8 @@ define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"cla 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 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 @@ -3582,18 +3582,18 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #4 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -3621,17 +3621,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -3639,7 +3639,7 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_size } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEC2ERKS1_(%"class.__gnu_cxx::__normal_iterator"* noundef nonnull align 8 dereferenceable(8) %0, i32** noundef 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 @@ -3652,8 +3652,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPiSt6vector 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -3661,12 +3661,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #6 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -3675,30 +3675,42 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #14 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2_RS0_St17integral_constantIbLb1EE(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -3712,12 +3724,12 @@ define linkonce_odr dso_local i32* @_ZNSt6vectorIiSaIiEE14_S_do_relocateEPiS2_S2 %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 + %14 = call noundef i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %10, i32* noundef %11, i32* noundef %12, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -3727,18 +3739,18 @@ define linkonce_odr dso_local i32* @_ZSt12__relocate_aIPiS0_SaIiEET0_T_S3_S2_RT1 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 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %9) #3 %11 = load i32*, i32** %6, align 8 - %12 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %11) #3 + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 %13 = load i32*, i32** %7, align 8 - %14 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %13) #3 + %14 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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 + %16 = call noundef i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* noundef %10, i32* noundef %12, i32* noundef %14, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3std24__is_bitwise_relocatableIT_EE5valueEPS1_E4typeES2_S2_S2_RSaIT0_E(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -3776,16 +3788,16 @@ define linkonce_odr dso_local i32* @_ZSt14__relocate_a_1IiiENSt9enable_ifIXsr3st ret i32* %28 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0_(i64 noundef %0, %"class.std::allocator"* noundef 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 @@ -3793,14 +3805,14 @@ define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0 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 + call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + %8 = call noundef i64 @_ZNSt6vectorIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #3 %9 = icmp ugt i64 %6, %8 - call void @_ZNSaIiED2Ev(%"class.std::allocator"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef getelementptr inbounds ([49 x i8], [49 x i8]* @.str.5, i64 0, i64 0)) #16 unreachable 11: ; preds = %2 @@ -3809,7 +3821,7 @@ define linkonce_odr dso_local i64 @_ZNSt6vectorIiSaIiEE17_S_check_init_lenEmRKS0 } ; 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*) { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, %"class.std::allocator"* noundef 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 @@ -3821,9 +3833,9 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struc %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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %10, %"class.std::allocator"* noundef 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) + invoke void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %9, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 @@ -3836,7 +3848,7 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struc 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 + call void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implD2Ev(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %10) #3 br label %18 18: ; preds = %14 @@ -3847,8 +3859,8 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEEC2EmRKS0_(%"struc 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRKi(%"class.std::vector"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %1, i32* noundef 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 @@ -3864,8 +3876,8 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRK %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) + %16 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt12_Vector_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %15) #3 + %17 = call noundef i32* @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(i32* noundef %12, i64 noundef %13, i32* noundef nonnull align 4 dereferenceable(4) %14, %"class.std::allocator"* noundef 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"* @@ -3875,7 +3887,7 @@ define linkonce_odr dso_local void @_ZNSt6vectorIiSaIiEE18_M_fill_initializeEmRK } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 @@ -3884,12 +3896,12 @@ define linkonce_odr dso_local void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* non %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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, %"class.__gnu_cxx::new_allocator"* noundef 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.__gnu_cxx::new_allocator"* noundef 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 @@ -3899,7 +3911,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2ERKS1_(%"cl } ; 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 { +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2ERKS0_(%"struct.std::_Vector_base>::_Vector_impl"* noundef nonnull align 8 dereferenceable(24) %0, %"class.std::allocator"* noundef 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 @@ -3907,21 +3919,21 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE12_Vector_implC2E %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 + call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %6, %"class.std::allocator"* noundef 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 + call void @_ZNSt12_Vector_baseIiSaIiEE17_Vector_impl_dataC2Ev(%"struct.std::_Vector_base>::_Vector_impl_data"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_storageEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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) + %7 = call noundef i32* @_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEm(%"struct.std::_Vector_base"* noundef nonnull align 8 dereferenceable(24) %5, i64 noundef %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 @@ -3947,8 +3959,8 @@ define linkonce_odr dso_local void @_ZNSt12_Vector_baseIiSaIiEE17_M_create_stora 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0_RKT1_RSaIT2_E(i32* noundef %0, i64 noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #6 comdat { %5 = alloca i32*, align 8 %6 = alloca i64, align 8 %7 = alloca i32*, align 8 @@ -3960,12 +3972,12 @@ define linkonce_odr dso_local i32* @_ZSt24__uninitialized_fill_n_aIPimiiET_S1_T0 %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) + %12 = call noundef i32* @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(i32* noundef %9, i64 noundef %10, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1_(i32* noundef %0, i64 noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2) #6 comdat { %4 = alloca i32*, align 8 %5 = alloca i64, align 8 %6 = alloca i32*, align 8 @@ -3977,12 +3989,12 @@ define linkonce_odr dso_local i32* @_ZSt20uninitialized_fill_nIPimiET_S1_T0_RKT1 %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) + %11 = call noundef i32* @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(i32* noundef %8, i64 noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt22__uninitialized_fill_nILb1EE15__uninit_fill_nIPimiEET_S3_T0_RKT1_(i32* noundef %0, i64 noundef %1, i32* noundef 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 @@ -3992,12 +4004,12 @@ define linkonce_odr dso_local i32* @_ZNSt22__uninitialized_fill_nILb1EE15__unini %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) + %10 = call noundef i32* @_ZSt6fill_nIPimiET_S1_T0_RKT1_(i32* noundef %7, i64 noundef %8, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt6fill_nIPimiET_S1_T0_RKT1_(i32* noundef %0, i64 noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2) #6 comdat { %4 = alloca i32*, align 8 %5 = alloca i64, align 8 %6 = alloca i32*, align 8 @@ -4008,15 +4020,15 @@ define linkonce_odr dso_local i32* @_ZSt6fill_nIPimiET_S1_T0_RKT1_(i32* %0, i64 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) + %11 = call noundef i64 @_ZSt17__size_to_integerm(i64 noundef %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) + call void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef nonnull align 8 dereferenceable(8) %4) + %13 = call noundef i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(i32* noundef %9, i64 noundef %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26random_access_iterator_tag(i32* noundef %0, i64 noundef %1, i32* noundef 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 @@ -4040,7 +4052,7 @@ define linkonce_odr dso_local i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26rando %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) + call void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* noundef %14, i32* noundef %17, i32* noundef 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 @@ -4052,23 +4064,23 @@ define linkonce_odr dso_local i32* @_ZSt10__fill_n_aIPimiET_S1_T0_RKT1_St26rando ret i32* %23 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt17__size_to_integerm(i64 %0) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt17__size_to_integerm(i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt19__iterator_categoryIPiENSt15iterator_traitsIT_E17iterator_categoryERKS2_(i32** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* noundef %0, i32* noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2) #6 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -4078,12 +4090,12 @@ define linkonce_odr dso_local void @_ZSt8__fill_aIPiiEvT_S1_RKT0_(i32* %0, i32* %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) + call void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(i32* noundef %7, i32* noundef %8, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifIXsr11__is_scalarIT0_EE7__valueEvE6__typeET_S6_RKS3_(i32* noundef %0, i32* noundef %1, i32* noundef nonnull align 4 dereferenceable(4) %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -4112,26 +4124,26 @@ define linkonce_odr dso_local void @_ZSt9__fill_a1IPiiEN9__gnu_cxx11__enable_ifI %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 + br label %10, !llvm.loop !28 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 { +; Function Attrs: mustprogress noinline uwtable +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"* noundef 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) + call void @_ZNSt16allocator_traitsISaIiEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiiET0_T_SA_S9_RSaIT1_E(i32* %0, i32* %1, i32* noundef %2, %"class.std::allocator"* noundef 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 @@ -4155,12 +4167,12 @@ define linkonce_odr dso_local i32* @_ZSt22__uninitialized_copy_aIN9__gnu_cxx17__ %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) + %22 = call noundef i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %19, i32* %21, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -4169,14 +4181,14 @@ define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE5beginEv(%"class.std::v %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vector"* noundef nonnull align 8 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 @@ -4185,26 +4197,26 @@ define linkonce_odr dso_local i32* @_ZNKSt6vectorIiSaIiEE3endEv(%"class.std::vec %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 + call void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %2, i32** noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef 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 + call void @_ZNSaIiEC2ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %0, i32* %1, i32* noundef %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 @@ -4228,12 +4240,12 @@ define linkonce_odr dso_local i32* @_ZSt18uninitialized_copyIN9__gnu_cxx17__norm %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) + %21 = call noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(i32* %18, i32* %20, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiEET0_T_SC_SB_(i32* %0, i32* %1, i32* noundef %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 @@ -4255,12 +4267,12 @@ define linkonce_odr dso_local i32* @_ZNSt20__uninitialized_copyILb1EE13__uninit_ %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) + %20 = call noundef i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %17, i32* %19, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET0_T_SA_S9_(i32* %0, i32* %1, i32* noundef %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 @@ -4294,12 +4306,12 @@ define linkonce_odr dso_local i32* @_ZSt4copyIN9__gnu_cxx17__normal_iteratorIPKi %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) + %30 = call noundef i32* @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(i32* %27, i32* %29, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEEPiET1_T0_SA_S9_(i32* %0, i32* %1, i32* noundef %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 @@ -4315,21 +4327,21 @@ define linkonce_odr dso_local i32* @_ZSt13__copy_move_aILb0EN9__gnu_cxx17__norma 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 + %15 = call noundef 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 + %20 = call noundef 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) + %22 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %21) #3 + %23 = call noundef i32* @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(i32* noundef %15, i32* noundef %20, i32* noundef %22) + %24 = call noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %6, i32* noundef %23) ret i32* %24 } -; Function Attrs: noinline nounwind uwtable mustprogress +; Function Attrs: mustprogress noinline nounwind uwtable 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 @@ -4343,8 +4355,8 @@ define linkonce_odr dso_local i32* @_ZSt12__miter_baseIN9__gnu_cxx17__normal_ite 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %0, i32* noundef %1) #4 comdat { %3 = alloca i32**, align 8 %4 = alloca i32*, align 8 store i32** %0, i32*** %3, align 8 @@ -4353,8 +4365,8 @@ define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnu 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #6 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -4364,22 +4376,22 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a1ILb0EPKiPiET1_T0_S4_S3_( %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) + %10 = call noundef i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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 + %4 = call noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #6 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -4389,12 +4401,12 @@ define linkonce_odr dso_local i32* @_ZSt14__copy_move_a2ILb0EPKiPiET1_T0_S4_S3_( %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) + %10 = call noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIiEEPT_PKS3_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -4430,8 +4442,8 @@ define linkonce_odr dso_local i32* @_ZNSt11__copy_moveILb0ELb1ESt26random_access 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i32** @_ZNK9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEE4baseEv(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 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 @@ -4440,7 +4452,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i32** @_ZNK9__g } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx17__normal_iteratorIPKiSt6vectorIiSaIiEEEC2ERKS2_(%"class.__gnu_cxx::__normal_iterator.3"* noundef nonnull align 8 dereferenceable(8) %0, i32** noundef 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 @@ -4459,48 +4471,54 @@ define internal void @_GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn } +attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #8 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #14 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} +!18 = distinct !{!18, !7} +!19 = distinct !{!19, !7} +!20 = distinct !{!20, !7} +!21 = distinct !{!21, !7} +!22 = distinct !{!22, !7} +!23 = distinct !{!23, !7} +!24 = distinct !{!24, !7} +!25 = distinct !{!25, !7} +!26 = distinct !{!26, !7} +!27 = distinct !{!27, !7} +!28 = distinct !{!28, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll similarity index 62% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll index f83794e3..8f530368 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-1s-sorted-binary-array.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-1s-sorted-binary-array.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z9countOnesPbii(i8* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32, align 4 %5 = alloca i8*, align 8 %6 = alloca i32, align 4 @@ -115,7 +115,7 @@ define dso_local i32 @_Z9countOnesPbii(i8* %0, i32 %1, i32 %2) #4 { %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) + %58 = call noundef i32 @_Z9countOnesPbii(i8* noundef %54, i32 noundef %56, i32 noundef %57) store i32 %58, i32* %4, align 4 br label %66 @@ -124,7 +124,7 @@ define dso_local i32 @_Z9countOnesPbii(i8* %0, i32 %1, i32 %2) #4 { %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) + %64 = call noundef i32 @_Z9countOnesPbii(i8* noundef %60, i32 noundef %61, i32 noundef %63) store i32 %64, i32* %4, align 4 br label %66 @@ -137,8 +137,8 @@ define dso_local i32 @_Z9countOnesPbii(i8* %0, i32 %1, i32 %2) #4 { ret i32 %67 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [7 x i8], align 1 %3 = alloca i32, align 4 @@ -146,21 +146,21 @@ define dso_local i32 @main() #5 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %9 = call noundef i32 @_Z9countOnesPbii(i8* noundef %6, i32 noundef 0, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp() #0 section ".text.startup" { @@ -168,16 +168,20 @@ define internal void @_GLOBAL__sub_I_count_1s_sorted_binary_array.cpp() #0 secti 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} 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-llvm14/count-number-binary-strings-without-consecutive-1s.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/count-number-binary-strings-without-consecutive-1s.ll index 1e454e83..5a223a32 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-number-binary-strings-without-consecutive-1s.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-number-binary-strings-without-consecutive-1s.ll @@ -22,26 +22,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12countStringsi(i32 %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12countStringsi(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -102,7 +102,7 @@ define dso_local i32 @_Z12countStringsi(i32 %0) #4 { %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 + br label %16, !llvm.loop !6 46: ; preds = %16 %47 = load i32, i32* %2, align 4 @@ -127,21 +127,21 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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_) + %2 = call noundef i32 @_Z12countStringsi(i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %2) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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" { @@ -149,18 +149,22 @@ define internal void @_GLOBAL__sub_I_count_number_binary_strings_without_consecu 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll index 4bf6cc3b..ac87df07 100644 --- 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-llvm14/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.ll @@ -23,26 +23,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i64 @_Z8countRecii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z8countRecii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i64, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -106,7 +106,7 @@ define dso_local i64 @_Z8countRecii(i32 %0, i32 %1) #4 { %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) + %46 = call noundef i64 @_Z8countRecii(i32 noundef %42, i32 noundef %45) %47 = load i64, i64* %6, align 8 %48 = add i64 %47, %46 store i64 %48, i64* %6, align 8 @@ -119,7 +119,7 @@ define dso_local i64 @_Z8countRecii(i32 %0, i32 %1) #4 { %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 + br label %32, !llvm.loop !6 53: ; preds = %32 %54 = load i64, i64* %6, align 8 @@ -138,8 +138,8 @@ define dso_local i64 @_Z8countRecii(i32 %0, i32 %1) #4 { ret i64 %62 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i64 @_Z10finalCountii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z10finalCountii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i64, align 8 @@ -169,7 +169,7 @@ define dso_local i64 @_Z10finalCountii(i32 %0, i32 %1) #4 { %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) + %21 = call noundef i64 @_Z8countRecii(i32 noundef %17, i32 noundef %20) %22 = load i64, i64* %5, align 8 %23 = add i64 %22, %21 store i64 %23, i64* %5, align 8 @@ -182,18 +182,18 @@ define dso_local i64 @_Z10finalCountii(i32 %0, i32 %1) #4 { %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 + br label %7, !llvm.loop !8 28: ; preds = %7 %29 = load i64, i64* %5, align 8 ret i64 %29 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -202,12 +202,12 @@ define dso_local i32 @main() #6 { 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) + %6 = call noundef i64 @_Z10finalCountii(i32 noundef %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEy(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i64 noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEy(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #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" { @@ -215,19 +215,23 @@ define internal void @_GLOBAL__sub_I_count_of_n_digit_numbers_whose_sum_of_digit 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn writeonly } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll similarity index 55% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll index 86900b41..81e76fd6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-possible-ways-to-construct-buildings.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-possible-ways-to-construct-buildings.ll @@ -22,28 +22,28 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9countWaysi(i32 %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9countWaysi(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -90,7 +90,7 @@ define dso_local i32 @_Z9countWaysi(i32 %0) #4 { %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 + br label %14, !llvm.loop !6 28: ; preds = %14 %29 = load i32, i32* %5, align 4 @@ -108,25 +108,25 @@ define dso_local i32 @_Z9countWaysi(i32 %0) #4 { ret i32 %36 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i8* noundef 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) + %8 = call noundef i32 @_Z9countWaysi(i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp() #0 section ".text.startup" { @@ -134,17 +134,21 @@ define internal void @_GLOBAL__sub_I_count_possible_ways_to_construct_buildings. 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/count-ways-reach-nth-stair.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll index 76977e92..04ace776 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/count-ways-reach-nth-stair.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/count-ways-reach-nth-stair.ll @@ -5,8 +5,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z13countWaysUtilii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -77,7 +77,7 @@ define dso_local i32 @_Z13countWaysUtilii(i32 %0, i32 %1) #0 { %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 + br label %23, !llvm.loop !6 48: ; preds = %31 br label %49 @@ -86,7 +86,7 @@ define dso_local i32 @_Z13countWaysUtilii(i32 %0, i32 %1) #0 { %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 + br label %15, !llvm.loop !8 52: ; preds = %15 %53 = load i32, i32* %3, align 4 @@ -105,8 +105,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9countWaysii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -114,12 +114,12 @@ define dso_local i32 @_Z9countWaysii(i32 %0, i32 %1) #0 { %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) + %8 = call noundef i32 @_Z13countWaysUtilii(i32 noundef %6, i32 noundef %7) ret i32 %8 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -128,23 +128,27 @@ define dso_local i32 @main() #2 { 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) + %6 = call noundef i32 @_Z9countWaysii(i32 noundef %4, i32 noundef %5) + %7 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([19 x i8], [19 x i8]* @.str, i64 0, i64 0), i32 noundef %6) ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #3 +declare i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/cut-vertices.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/cut-vertices.ll index 6270a081..4770417a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/cut-vertices.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/cut-vertices.ll @@ -109,7 +109,7 @@ $_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 +@_ZSt4cout = external 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 @@ -120,21 +120,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -153,7 +153,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -167,7 +167,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -185,20 +185,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -211,36 +211,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, i32* noundef %3, i32* noundef %4, i32* noundef %5, i8* noundef %6) #7 align 2 { %8 = alloca %class.Graph*, align 8 %9 = alloca i32, align 4 %10 = alloca i8*, align 8 @@ -280,13 +280,13 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %40 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -300,14 +300,14 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der %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 + %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %52 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %16, %"struct.std::_List_iterator"* noundef 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 + %54 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -334,7 +334,7 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der %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) + call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %20, i32 noundef %70, i8* noundef %71, i32* noundef %72, i32* noundef %73, i32* noundef %74, i8* noundef %75) %76 = load i32*, i32** %12, align 8 %77 = load i32, i32* %9, align 4 %78 = sext i32 %77 to i64 @@ -343,7 +343,7 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der %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) + %84 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %79, i32* noundef 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 @@ -424,7 +424,7 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der %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) + %146 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %141, i32* noundef 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 @@ -440,15 +440,15 @@ define dso_local void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* nonnull der 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 + %155 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %16) #3 + br label %44, !llvm.loop !6 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -457,8 +457,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -469,17 +469,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -494,8 +494,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -504,26 +504,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #8 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -551,8 +551,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -565,8 +565,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph2APEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca %class.Graph*, align 8 %3 = alloca i8*, align 8 %4 = alloca i32*, align 8 @@ -581,7 +581,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + %15 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -590,7 +590,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + %23 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -600,7 +600,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + %32 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -610,13 +610,13 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + %41 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 + %46 = call noalias noundef nonnull i8* @_Znam(i64 noundef %45) #14 store i8* %46, i8** %7, align 8 store i32 0, i32* %8, align 4 br label %47 @@ -650,7 +650,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + br label %47, !llvm.loop !8 68: ; preds = %47 store i32 0, i32* %9, align 4 @@ -681,7 +681,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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) + call void @_ZN5Graph6APUtilEiPbPiS1_S1_S0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %11, i32 noundef %84, i8* noundef %85, i32* noundef %86, i32* noundef %87, i32* noundef %88, i8* noundef %89) br label %90 90: ; preds = %83, %74 @@ -691,7 +691,7 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + br label %69, !llvm.loop !9 94: ; preds = %69 store i32 0, i32* %10, align 4 @@ -717,8 +717,8 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) 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)) + %111 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %110) + %112 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %111, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) br label %113 113: ; preds = %109, %100 @@ -728,103 +728,103 @@ define dso_local void @_ZN5Graph2APEv(%class.Graph* nonnull dereferenceable(16) %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 + br label %95, !llvm.loop !10 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([38 x i8], [38 x i8]* @.str.1, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph2APEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([39 x i8], [39 x i8]* @.str.2, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph2APEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([38 x i8], [38 x i8]* @.str.3, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph2APEv(%class.Graph* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -840,8 +840,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -852,21 +852,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -878,26 +878,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -907,7 +907,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -918,8 +918,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -927,10 +927,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -946,19 +946,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -968,7 +968,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -978,7 +978,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -986,8 +986,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -998,25 +998,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1028,7 +1028,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1042,7 +1042,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1059,8 +1059,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1068,12 +1068,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1082,24 +1082,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1107,21 +1116,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1133,24 +1145,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1159,8 +1171,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1171,7 +1183,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -1182,12 +1194,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1197,15 +1209,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1223,32 +1235,36 @@ define internal void @_GLOBAL__sub_I_cut_vertices.cpp() #0 section ".text.startu 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll index f24c2486..1d4be6ba 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/cutting-a-rod.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/cutting-a-rod.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -30,8 +30,8 @@ define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z6cutRodPii(i32* %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z6cutRodPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -85,7 +85,7 @@ define dso_local i32 @_Z6cutRodPii(i32* %0, i32 %1) #0 { %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) + %40 = call noundef i32 @_Z3maxii(i32 noundef %26, i32 noundef %39) store i32 %40, i32* %9, align 4 br label %41 @@ -93,7 +93,7 @@ define dso_local i32 @_Z6cutRodPii(i32* %0, i32 %1) #0 { %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 + br label %21, !llvm.loop !6 44: ; preds = %21 %45 = load i32, i32* %9, align 4 @@ -107,7 +107,7 @@ define dso_local i32 @_Z6cutRodPii(i32* %0, i32 %1) #0 { %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 + br label %16, !llvm.loop !8 52: ; preds = %16 %53 = load i32, i32* %4, align 4 @@ -125,8 +125,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -136,30 +136,34 @@ define dso_local i32 @main() #2 { 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) + %7 = call noundef i32 @_Z6cutRodPii(i32* noundef %5, i32 noundef %6) + %8 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([32 x i8], [32 x i8]* @.str, i64 0, i64 0), i32 noundef %7) %9 = call i32 @getchar() ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #4 -declare dso_local i32 @getchar() #4 +declare 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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll index a1b9ed91..4ecb2bbb 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-in-a-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-in-a-graph.ll @@ -106,7 +106,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -115,21 +115,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -148,7 +148,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -162,7 +162,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -180,20 +180,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -206,30 +206,30 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, i8* noundef %3) #7 align 2 { %5 = alloca i1, align 1 %6 = alloca %class.Graph*, align 8 %7 = alloca i32, align 4 @@ -264,13 +264,13 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %36 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -284,15 +284,15 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul %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 + %46 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %48 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* noundef 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 + %51 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -301,11 +301,11 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul 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 + %58 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %62 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %59, i8* noundef %60, i8* noundef %61) br i1 %62, label %63, label %64 63: ; preds = %57 @@ -314,7 +314,7 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul 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 + %66 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -333,8 +333,8 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul 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 + %76 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 + br label %40, !llvm.loop !6 77: ; preds = %40 br label %78 @@ -354,7 +354,7 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* nonnul } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -363,8 +363,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -375,17 +375,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -400,8 +400,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -410,26 +410,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -442,8 +442,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca i1, align 1 %3 = alloca %class.Graph*, align 8 %4 = alloca i8*, align 8 @@ -455,12 +455,12 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + %12 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 + %16 = call noalias noundef nonnull i8* @_Znam(i64 noundef %15) #14 store i8* %16, i8** %5, align 8 store i32 0, i32* %6, align 4 br label %17 @@ -489,7 +489,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + br label %17, !llvm.loop !8 34: ; preds = %17 store i32 0, i32* %7, align 4 @@ -506,7 +506,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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) + %44 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbS0_(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8, i32 noundef %41, i8* noundef %42, i8* noundef %43) br i1 %44, label %45, label %46 45: ; preds = %40 @@ -520,7 +520,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + br label %35, !llvm.loop !9 50: ; preds = %35 store i1 false, i1* %2, align 1 @@ -531,87 +531,87 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere ret i1 %52 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* noundef nonnull align 8 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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -627,8 +627,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -639,21 +639,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -665,26 +665,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -694,7 +694,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -705,8 +705,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -714,10 +714,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -733,19 +733,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -755,7 +755,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -765,7 +765,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -773,8 +773,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -785,25 +785,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -815,7 +815,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -829,7 +829,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -846,8 +846,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -855,12 +855,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -869,24 +869,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -894,21 +903,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -920,24 +932,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -946,8 +958,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -958,7 +970,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -969,12 +981,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -984,15 +996,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1010,31 +1022,35 @@ define internal void @_GLOBAL__sub_I_detect_cycle_in_a_graph.cpp() #0 section ". 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll index b88fb85f..7ccb9a46 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/detect-cycle-undirected-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/detect-cycle-undirected-graph.ll @@ -106,7 +106,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -115,21 +115,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -148,7 +148,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -162,7 +162,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -180,20 +180,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -206,36 +206,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, i32 noundef %3) #7 align 2 { %5 = alloca i1, align 1 %6 = alloca %class.Graph*, align 8 %7 = alloca i32, align 4 @@ -254,13 +254,13 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -274,15 +274,15 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull %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 + %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %35 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10, %"struct.std::_List_iterator"* noundef 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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -291,11 +291,11 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull 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 + %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %49 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %46, i8* noundef %47, i32 noundef %48) br i1 %49, label %50, label %51 50: ; preds = %44 @@ -306,7 +306,7 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull 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 + %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 %54 = load i32, i32* %53, align 4 %55 = load i32, i32* %9, align 4 %56 = icmp ne i32 %54, %55 @@ -323,8 +323,8 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull 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 + %61 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %10) #3 + br label %27, !llvm.loop !6 62: ; preds = %27 store i1 false, i1* %5, align 1 @@ -336,7 +336,7 @@ define dso_local zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* nonnull } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -345,8 +345,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -357,17 +357,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -382,8 +382,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -392,26 +392,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -424,8 +424,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca i1, align 1 %3 = alloca %class.Graph*, align 8 %4 = alloca i8*, align 8 @@ -436,7 +436,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + %11 = call noalias noundef nonnull i8* @_Znam(i64 noundef %10) #14 store i8* %11, i8** %4, align 8 store i32 0, i32* %5, align 4 br label %12 @@ -460,7 +460,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + br label %12, !llvm.loop !8 25: ; preds = %12 store i32 0, i32* %6, align 4 @@ -485,7 +485,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere 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) + %41 = call noundef zeroext i1 @_ZN5Graph12isCyclicUtilEiPbi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef %39, i8* noundef %40, i32 noundef -1) br i1 %41, label %42, label %43 42: ; preds = %38 @@ -502,7 +502,7 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere %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 + br label %26, !llvm.loop !9 48: ; preds = %26 store i1 false, i1* %2, align 1 @@ -513,43 +513,43 @@ define dso_local zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* nonnull derefere ret i1 %50 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + %4 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* noundef nonnull align 8 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)) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %8 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + %11 = call noundef zeroext i1 @_ZN5Graph8isCyclicEv(%class.Graph* noundef nonnull align 8 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)) + %13 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([29 x i8], [29 x i8]* @.str.1, i64 0, i64 0)) br label %16 16: ; preds = %14, %12 @@ -557,60 +557,60 @@ define dso_local i32 @main() #10 { 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -626,8 +626,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -638,21 +638,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -664,26 +664,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -693,7 +693,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -704,8 +704,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -713,10 +713,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -732,19 +732,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -754,7 +754,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -764,7 +764,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -772,8 +772,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -784,25 +784,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -814,7 +814,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -828,7 +828,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -845,8 +845,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -854,12 +854,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -868,24 +868,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -893,21 +902,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -919,24 +931,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -945,8 +957,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -957,7 +969,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -968,12 +980,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -983,15 +995,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1009,31 +1021,35 @@ define internal void @_GLOBAL__sub_I_detect_cycle_undirected_graph.cpp() #0 sect 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/dfa-based-division.ll similarity index 60% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/dfa-based-division.ll index 69f86506..10e4c368 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfa-based-division.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/dfa-based-division.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z10preprocessiPA2_i(i32 noundef %0, [2 x i32]* noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca [2 x i32]*, align 8 %5 = alloca i32, align 4 @@ -84,14 +84,14 @@ define dso_local void @_Z10preprocessiPA2_i(i32 %0, [2 x i32]* %1) #0 { %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 + br label %8, !llvm.loop !6 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %0, i32* noundef %1, [2 x i32]* noundef %2) #1 { %4 = alloca i32, align 4 %5 = alloca i32*, align 8 %6 = alloca [2 x i32]*, align 8 @@ -107,7 +107,7 @@ define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 %0, i32* %1, [2 x i32]* % %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) + call void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %11, i32* noundef %12, [2 x i32]* noundef %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 @@ -126,8 +126,8 @@ define dso_local void @_Z15isDivisibleUtiliPiPA2_i(i32 %0, i32* %1, [2 x i32]* % ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11isDivisibleii(i32 %0, i32 %1) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11isDivisibleii(i32 noundef %0, i32 noundef %1) #1 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca [2 x i32]*, align 8 @@ -137,25 +137,25 @@ define dso_local i32 @_Z11isDivisibleii(i32 %0, i32 %1) #1 { %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 + %10 = call noalias i8* @malloc(i64 noundef %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) + call void @_Z10preprocessiPA2_i(i32 noundef %12, [2 x i32]* noundef %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) + call void @_Z15isDivisibleUtiliPiPA2_i(i32 noundef %14, i32* noundef %6, [2 x i32]* noundef %15) %16 = load i32, i32* %6, align 4 ret i32 %16 } ; Function Attrs: nounwind -declare dso_local noalias i8* @malloc(i64) #2 +declare noalias i8* @malloc(i64 noundef) #2 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -165,38 +165,42 @@ define dso_local i32 @main() #3 { 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) + %7 = call noundef i32 @_Z11isDivisibleii(i32 noundef %5, i32 noundef %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)) + %11 = call i32 (i8*, ...) @printf(i8* noundef 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) + %14 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([32 x i8], [32 x i8]* @.str.1, i64 0, i64 0), i32 noundef %13) br label %15 15: ; preds = %12, %10 ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #4 +declare i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #5 = { nounwind } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll similarity index 65% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll index e97251fe..bef392f7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/dfs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/dfs.ll @@ -106,7 +106,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -115,21 +115,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -148,7 +148,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #14 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -162,7 +162,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -180,20 +180,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -206,30 +206,30 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i8*, align 8 @@ -246,15 +246,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -268,15 +268,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %35 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* noundef 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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -285,29 +285,29 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab 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 + %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %46, i8* noundef %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 + %50 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + br label %27, !llvm.loop !6 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -316,8 +316,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -328,17 +328,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -353,8 +353,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -363,26 +363,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -395,8 +395,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3DFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1) #7 align 2 { %3 = alloca %class.Graph*, align 8 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -407,7 +407,7 @@ define dso_local void @_ZN5Graph3DFSEi(%class.Graph* nonnull dereferenceable(16) %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 + %11 = call noalias noundef nonnull i8* @_Znam(i64 noundef %10) #14 store i8* %11, i8** %5, align 8 store i32 0, i32* %6, align 4 br label %12 @@ -431,84 +431,84 @@ define dso_local void @_ZN5Graph3DFSEi(%class.Graph* nonnull dereferenceable(16) %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 + br label %12, !llvm.loop !8 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) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef %26, i8* noundef %27) ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 3) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([62 x i8], [62 x i8]* @.str.1, i64 0, i64 0)) + call void @_ZN5Graph3DFSEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -524,8 +524,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -536,21 +536,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -562,26 +562,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -591,7 +591,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -602,8 +602,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -611,10 +611,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -630,19 +630,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -652,7 +652,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -662,7 +662,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -670,8 +670,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -682,25 +682,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -712,7 +712,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -726,7 +726,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -743,8 +743,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -752,12 +752,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -766,24 +766,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -791,21 +800,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #11 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -817,24 +829,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -843,8 +855,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -855,7 +867,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -866,12 +878,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -881,15 +893,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -907,30 +919,34 @@ define internal void @_GLOBAL__sub_I_dfs.cpp() #0 section ".text.startup" { 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { builtin allocsize(0) } attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll similarity index 57% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll index 16bad09f..8e1dd832 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/edit-distance.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/edit-distance.ll @@ -30,40 +30,40 @@ $_ZSt3minIiERKT_S2_S2_ = comdat any @__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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noundef %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) + %7 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %4, i32* noundef nonnull align 4 dereferenceable(4) %5) + %8 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %7, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -91,8 +91,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %1, i32 noundef %2, i32 noundef %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 @@ -131,21 +131,21 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %31 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %37 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) to label %42 unwind label %49 42: ; preds = %41 @@ -153,13 +153,13 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %47 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %8, %"class.std::__cxx11::basic_string"* noundef %9, i32 noundef %44, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8) #3 br label %112 49: ; preds = %41 @@ -178,46 +178,46 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13, %"class.std::__cxx11::basic_string"* noundef 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) + %63 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %12, %"class.std::__cxx11::basic_string"* noundef %13, i32 noundef %60, i32 noundef %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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15, %"class.std::__cxx11::basic_string"* noundef 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) + %70 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %14, %"class.std::__cxx11::basic_string"* noundef %15, i32 noundef %68, i32 noundef %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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) to label %73 unwind label %99 73: ; preds = %72 @@ -225,22 +225,22 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %78 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %17, i32 noundef %75, i32 noundef %77) to label %79 unwind label %103 79: ; preds = %73 - %80 = invoke i32 @_Z3miniii(i32 %63, i32 %70, i32 %78) + %80 = invoke noundef i32 @_Z3miniii(i32 noundef %63, i32 noundef %70, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #3 br label %112 83: ; preds = %58 @@ -295,27 +295,27 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #3 br label %114 112: ; preds = %81, %48, %25, %20 @@ -330,17 +330,17 @@ define dso_local i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -351,43 +351,43 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([7 x i8], [7 x i8]* @.str, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* noundef 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 + %14 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + %18 = invoke noundef i32 @_Z8editDistNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_ii(%"class.std::__cxx11::basic_string"* noundef %8, %"class.std::__cxx11::basic_string"* noundef %9, i32 noundef %15, i32 noundef %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) + %20 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %22 = load i32, i32* %1, align 4 ret i32 %22 @@ -398,7 +398,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %46 27: ; preds = %10 @@ -408,7 +408,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %45 31: ; preds = %11 @@ -436,19 +436,19 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %46 46: ; preds = %45, %23 @@ -460,17 +460,17 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_edit_distance.cpp() #0 section ".text.startup" { @@ -478,16 +478,20 @@ define internal void @_GLOBAL__sub_I_edit_distance.cpp() #0 section ".text.start 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll similarity index 65% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll index b0a11913..e7fbbb15 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/efficient-constructtion-of-finite-automata.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/efficient-constructtion-of-finite-automata.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z15computeTransFunPciPA256_i(i8* noundef %0, i32 noundef %1, [256 x i32]* noundef %2) #4 { %4 = alloca i8*, align 8 %5 = alloca i32, align 4 %6 = alloca [256 x i32]*, align 8 @@ -76,7 +76,7 @@ define dso_local void @_Z15computeTransFunPciPA256_i(i8* %0, i32 %1, [256 x i32] %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 + br label %10, !llvm.loop !6 22: ; preds = %10 %23 = load [256 x i32]*, [256 x i32]** %6, align 8 @@ -128,7 +128,7 @@ define dso_local void @_Z15computeTransFunPciPA256_i(i8* %0, i32 %1, [256 x i32] %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 + br label %35, !llvm.loop !8 57: ; preds = %35 %58 = load i32, i32* %7, align 4 @@ -173,14 +173,14 @@ define dso_local void @_Z15computeTransFunPciPA256_i(i8* %0, i32 %1, [256 x i32] %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 + br label %30, !llvm.loop !9 91: ; preds = %30 ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(i8* noundef %0, i8* noundef %1) #5 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32, align 4 @@ -192,11 +192,11 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { 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 + %12 = call i64 @strlen(i8* noundef %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 + %15 = call i64 @strlen(i8* noundef %14) #10 %16 = trunc i64 %15 to i32 store i32 %16, i32* %6, align 4 %17 = load i32, i32* %5, align 4 @@ -208,7 +208,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { 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) + call void @_Z15computeTransFunPciPA256_i(i8* noundef %22, i32 noundef %23, [256 x i32]* noundef %21) store i32 0, i32* %10, align 4 store i32 0, i32* %9, align 4 br label %24 @@ -238,13 +238,13 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { 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)) + %44 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %49 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %44, i32 noundef %48) + %50 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %49, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %51 51: ; preds = %43, %28 @@ -254,7 +254,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { %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 + br label %24, !llvm.loop !10 55: ; preds = %24 %56 = load i8*, i8** %7, align 8 @@ -263,24 +263,24 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #5 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 +declare i64 @strlen(i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [16 x i8], align 16 %3 = alloca [6 x i8], align 1 @@ -291,11 +291,11 @@ define dso_local i32 @main() #8 { 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) + call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -304,25 +304,29 @@ define internal void @_GLOBAL__sub_I_efficient_constructtion_of_finite_automata. 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } attributes #10 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll similarity index 77% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll index 6087a12c..eb3eabd6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/egg-dropping-puzzle.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/egg-dropping-puzzle.ll @@ -5,8 +5,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -29,8 +29,8 @@ define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z7eggDropii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -82,7 +82,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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 + br label %21, !llvm.loop !6 39: ; preds = %21 store i32 1, i32* %10, align 4 @@ -108,7 +108,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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 + br label %40, !llvm.loop !8 54: ; preds = %40 store i32 2, i32* %9, align 4 @@ -169,7 +169,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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) + %97 = call noundef i32 @_Z3maxii(i32 noundef %86, i32 noundef %96) %98 = add nsw i32 1, %97 store i32 %98, i32* %8, align 4 %99 = load i32, i32* %8, align 4 @@ -203,7 +203,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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 + br label %72, !llvm.loop !9 122: ; preds = %72 br label %123 @@ -212,7 +212,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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 + br label %60, !llvm.loop !10 126: ; preds = %60 br label %127 @@ -221,7 +221,7 @@ define dso_local i32 @_Z7eggDropii(i32 %0, i32 %1) #0 { %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 + br label %55, !llvm.loop !11 130: ; preds = %55 %131 = load i32, i32* %3, align 4 @@ -243,8 +243,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -255,26 +255,30 @@ define dso_local i32 @main() #2 { %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) + %8 = call noundef i32 @_Z7eggDropii(i32 noundef %6, i32 noundef %7) + %9 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([75 x i8], [75 x i8]* @.str, i64 0, i64 0), i32 noundef %4, i32 noundef %5, i32 noundef %8) ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #3 +declare i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll index bb71f266..6bd7c2dc 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/euler-circuit-directed-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/euler-circuit-directed-graph.ll @@ -134,7 +134,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -143,21 +143,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1) unnamed_addr #0 align 2 { %3 = alloca %class.Graph*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -177,7 +177,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(24) % %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 + %19 = call noalias noundef nonnull i8* @_Znam(i64 noundef %18) #15 %20 = bitcast i8* %19 to i64* store i64 %10, i64* %20, align 16 %21 = getelementptr inbounds i8, i8* %19, i64 8 @@ -191,7 +191,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(24) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -205,7 +205,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(24) % %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 + %38 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -231,7 +231,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(24) % %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 + br label %41, !llvm.loop !6 54: ; preds = %41 ret void @@ -244,26 +244,26 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* noundef nonnull align 8 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) + %6 = call noundef zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* noundef nonnull align 8 dereferenceable(24) %5) %7 = zext i1 %6 to i32 %8 = icmp eq i32 %7, 0 br i1 %8, label %9, label %10 @@ -289,7 +289,7 @@ define dso_local zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull %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 + %22 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -311,7 +311,7 @@ define dso_local zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull %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 + br label %11, !llvm.loop !8 36: ; preds = %11 store i1 true, i1* %2, align 1 @@ -322,8 +322,8 @@ define dso_local zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* noundef nonnull align 8 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 @@ -367,7 +367,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + br label %21, !llvm.loop !9 33: ; preds = %21 store i32 0, i32* %7, align 4 @@ -386,7 +386,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + %45 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %44) #3 %46 = icmp ugt i64 %45, 0 br i1 %46, label %47, label %48 @@ -400,11 +400,11 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + br label %34, !llvm.loop !10 52: ; preds = %47, %34 %53 = load i32, i32* %7, align 4 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %15, i32 %53, i8* %20) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(24) %15, i32 noundef %53, i8* noundef %20) store i32 0, i32* %8, align 4 br label %54 @@ -421,7 +421,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + %65 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %64) #3 %66 = icmp ugt i64 %65, 0 br i1 %66, label %67, label %76 @@ -447,10 +447,10 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + br label %54, !llvm.loop !11 80: ; preds = %54 - call void @_ZN5Graph12getTransposeEv(%class.Graph* sret(%class.Graph) align 8 %10, %class.Graph* nonnull dereferenceable(24) %15) + call void @_ZN5Graph12getTransposeEv(%class.Graph* sret(%class.Graph) align 8 %10, %class.Graph* noundef nonnull align 8 dereferenceable(24) %15) store i32 0, i32* %11, align 4 br label %81 @@ -472,11 +472,11 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + br label %81, !llvm.loop !12 93: ; preds = %81 %94 = load i32, i32* %7, align 4 - invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %10, i32 %94, i8* %20) + invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10, i32 noundef %94, i8* noundef %20) to label %95 unwind label %118 95: ; preds = %93 @@ -496,7 +496,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + %107 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %106) #3 %108 = icmp ugt i64 %107, 0 br i1 %108, label %109, label %122 @@ -522,7 +522,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10) #3 br label %131 122: ; preds = %109, %101 @@ -532,7 +532,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea %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 + br label %96, !llvm.loop !13 126: ; preds = %96 store i1 true, i1* %2, align 1 @@ -540,7 +540,7 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea br label %127 127: ; preds = %126, %117 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %10) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10) #3 br label %128 128: ; preds = %127, %75 @@ -557,12 +557,12 @@ define dso_local zeroext i1 @_ZN5Graph4isSCEv(%class.Graph* nonnull dereferencea 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + %4 = invoke noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %3) to label %5 unwind label %6 5: ; preds = %1 @@ -576,8 +576,8 @@ define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.st unreachable } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(24) %0, i32 %1, i8* %2) #7 align 2 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1, i8* noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i8*, align 8 @@ -593,13 +593,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %20 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -613,15 +613,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %32 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* noundef 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 + %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -630,25 +630,25 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab 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 + %42 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(24) %10, i32 noundef %43, i8* noundef %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 + %47 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + br label %24, !llvm.loop !14 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -657,8 +657,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -669,17 +669,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -694,8 +694,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -704,26 +704,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -736,8 +736,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%class.Graph) align 8 %0, %class.Graph* noundef nonnull align 8 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 @@ -754,7 +754,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %15) store i32 0, i32* %6, align 4 br label %16 @@ -766,13 +766,13 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla br i1 %20, label %21, label %65 21: ; preds = %16 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %7) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %27 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -786,20 +786,20 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla %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 + %37 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %39 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* noundef 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 + %43 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %46, i32* noundef nonnull align 4 dereferenceable(4) %6) to label %47 unwind label %57 47: ; preds = %40 @@ -814,8 +814,8 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla 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 + %56 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + br label %31, !llvm.loop !15 57: ; preds = %40 %58 = landingpad { i8*, i32 } @@ -824,7 +824,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #3 br label %69 61: ; preds = %31 @@ -834,7 +834,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla %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 + br label %16, !llvm.loop !16 65: ; preds = %16 store i1 true, i1* %5, align 1 @@ -842,7 +842,7 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla br i1 %66, label %68, label %67 67: ; preds = %65 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %0) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0) #3 br label %68 68: ; preds = %67, %65 @@ -856,28 +856,28 @@ define dso_local void @_ZN5Graph12getTransposeEv(%class.Graph* noalias sret(%cla 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef nonnull align 4 dereferenceable(4) %9) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 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 @@ -898,12 +898,12 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull derefere 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 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZdaPv(i8* noundef %9) #17 br label %19 19: ; preds = %18, %1 @@ -914,7 +914,7 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull derefere 23: ; preds = %19 %24 = bitcast i32* %21 to i8* - call void @_ZdaPv(i8* %24) #17 + call void @_ZdaPv(i8* noundef %24) #17 br label %25 25: ; preds = %23, %19 @@ -927,46 +927,46 @@ 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 1, i32 noundef 0) to label %5 unwind label %16 5: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 0, i32 noundef 2) to label %6 unwind label %16 6: ; preds = %5 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 2, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 2, i32 noundef 1) to label %7 unwind label %16 7: ; preds = %6 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 0, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 0, i32 noundef 3) to label %8 unwind label %16 8: ; preds = %7 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 3, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 3, i32 noundef 4) to label %9 unwind label %16 9: ; preds = %8 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(24) %2, i32 4, i32 0) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2, i32 noundef 4, i32 noundef 0) to label %10 unwind label %16 10: ; preds = %9 - %11 = invoke zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* nonnull dereferenceable(24) %2) + %11 = invoke noundef zeroext i1 @_ZN5Graph15isEulerianCycleEv(%class.Graph* noundef nonnull align 8 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)) + %14 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([35 x i8], [35 x i8]* @.str, i64 0, i64 0)) to label %15 unwind label %16 15: ; preds = %13 @@ -979,11 +979,11 @@ define dso_local i32 @main() #11 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 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)) + %21 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([39 x i8], [39 x i8]* @.str.1, i64 0, i64 0)) to label %22 unwind label %16 22: ; preds = %20 @@ -991,7 +991,7 @@ define dso_local i32 @main() #11 personality i8* bitcast (i32 (...)* @__gxx_pers 23: ; preds = %22, %15 store i32 0, i32* %1, align 4 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(24) %2) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(24) %2) #3 %24 = load i32, i32* %1, align 4 ret i32 %24 @@ -1003,8 +1003,8 @@ define dso_local i32 @main() #11 personality i8* bitcast (i32 (...)* @__gxx_pers 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(24) %0, i32 noundef %1, i32 noundef %2) #7 comdat align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -1017,7 +1017,7 @@ define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull d %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 @@ -1029,60 +1029,60 @@ define linkonce_odr dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull d 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -1099,31 +1099,31 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 +declare void @_ZdaPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1156,17 +1156,17 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv %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) + %26 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %28 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28, i32* noundef %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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_List_node"* noundef %30) #3 + br label %12, !llvm.loop !17 31: ; preds = %12 ret void @@ -1180,22 +1180,22 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } @@ -1206,12 +1206,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -1219,12 +1219,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1233,8 +1233,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_List_node"* noundef %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 @@ -1243,7 +1243,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* noundef %8, i64 noundef 1) to label %9 unwind label %10 9: ; preds = %2 @@ -1257,18 +1257,18 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1277,8 +1277,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -1288,8 +1288,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1300,12 +1300,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1315,33 +1315,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1352,21 +1352,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1376,28 +1376,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1405,10 +1405,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1424,19 +1424,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1446,7 +1446,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1454,8 +1454,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1466,13 +1466,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1484,7 +1484,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1498,7 +1498,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1515,8 +1515,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1524,12 +1524,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1538,24 +1538,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1563,21 +1572,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1589,24 +1601,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + %5 = call noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1618,7 +1630,7 @@ define linkonce_odr dso_local i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_si } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1636,41 +1648,45 @@ define internal void @_GLOBAL__sub_I_euler_circuit_directed_graph.cpp() #0 secti 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree 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 #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll index a78e1813..266bc999 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/eulerian-path-and-circuit.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/eulerian-path-and-circuit.ll @@ -134,7 +134,7 @@ $_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 +@_ZSt4cout = external 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 @@ -142,21 +142,21 @@ $_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -169,36 +169,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2) #4 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i8*, align 8 @@ -214,13 +214,13 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %20 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -234,15 +234,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %30 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %32 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* noundef 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 + %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -251,25 +251,25 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab 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 + %42 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %43, i8* noundef %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 + %47 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + br label %24, !llvm.loop !6 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -278,8 +278,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -290,17 +290,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -315,8 +315,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -325,26 +325,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -357,8 +357,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { %2 = alloca i1, align 1 %3 = alloca %class.Graph*, align 8 %4 = alloca i8*, align 8 @@ -395,7 +395,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere %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 + br label %14, !llvm.loop !8 26: ; preds = %14 store i32 0, i32* %6, align 4 @@ -414,7 +414,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere %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 + %38 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %37) #3 %39 = icmp ne i64 %38, 0 br i1 %39, label %40, label %41 @@ -428,7 +428,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere %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 + br label %27, !llvm.loop !9 45: ; preds = %40, %27 %46 = load i32, i32* %6, align 4 @@ -444,7 +444,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere 51: ; preds = %45 %52 = load i32, i32* %6, align 4 - call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceable(16) %8, i32 %52, i8* %13) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8, i32 noundef %52, i8* noundef %13) store i32 0, i32* %6, align 4 br label %53 @@ -471,7 +471,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere %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 + %72 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %71) #3 %73 = icmp ugt i64 %72, 0 br i1 %73, label %74, label %75 @@ -487,7 +487,7 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere %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 + br label %53, !llvm.loop !10 79: ; preds = %53 store i1 true, i1* %2, align 1 @@ -504,12 +504,12 @@ define dso_local zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* nonnull dere ; 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + %4 = invoke noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %3) to label %5 unwind label %6 5: ; preds = %1 @@ -526,15 +526,15 @@ define linkonce_odr dso_local i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.st ; 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_ZN5Graph10isEulerianEv(%class.Graph* noundef nonnull align 8 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) + %7 = call noundef zeroext i1 @_ZN5Graph11isConnectedEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6) %8 = zext i1 %7 to i32 %9 = icmp eq i32 %8, 0 br i1 %9, label %10, label %11 @@ -561,7 +561,7 @@ define dso_local i32 @_ZN5Graph10isEulerianEv(%class.Graph* nonnull dereferencea %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 + %23 = call noundef i64 @_ZNKSt7__cxx114listIiSaIiEE4sizeEv(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %22) #3 %24 = and i64 %23, 1 %25 = icmp ne i64 %24, 0 br i1 %25, label %26, label %29 @@ -579,7 +579,7 @@ define dso_local i32 @_ZN5Graph10isEulerianEv(%class.Graph* nonnull dereferencea %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 + br label %12, !llvm.loop !11 33: ; preds = %12 %34 = load i32, i32* %4, align 4 @@ -603,20 +603,20 @@ define dso_local i32 @_ZN5Graph10isEulerianEv(%class.Graph* nonnull dereferencea ret i32 %43 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4testR5Graph(%class.Graph* noundef 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) + %5 = call noundef i32 @_ZN5Graph10isEulerianEv(%class.Graph* noundef nonnull align 8 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)) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @.str, i64 0, i64 0)) br label %18 10: ; preds = %1 @@ -625,11 +625,11 @@ define dso_local void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferencea 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)) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([25 x i8], [25 x i8]* @.str.2, i64 0, i64 0)) br label %17 17: ; preds = %15, %13 @@ -639,10 +639,10 @@ define dso_local void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferencea 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -652,129 +652,129 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) to label %9 unwind label %39 9: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) to label %10 unwind label %39 10: ; preds = %9 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) to label %11 unwind label %39 11: ; preds = %10 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) to label %12 unwind label %39 12: ; preds = %11 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) to label %13 unwind label %39 13: ; preds = %12 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %2) + invoke void @_Z4testR5Graph(%class.Graph* noundef 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) + invoke void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) to label %15 unwind label %39 15: ; preds = %14 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 0) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 0) to label %16 unwind label %43 16: ; preds = %15 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 2) to label %17 unwind label %43 17: ; preds = %16 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 1) to label %18 unwind label %43 18: ; preds = %17 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 3) to label %19 unwind label %43 19: ; preds = %18 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 3, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 3, i32 noundef 4) to label %20 unwind label %43 20: ; preds = %19 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 0) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 0) to label %21 unwind label %43 21: ; preds = %20 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %5) + invoke void @_Z4testR5Graph(%class.Graph* noundef 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) + invoke void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 5) to label %23 unwind label %43 23: ; preds = %22 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 0) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 0) to label %24 unwind label %47 24: ; preds = %23 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 2) to label %25 unwind label %47 25: ; preds = %24 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 2, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 1) to label %26 unwind label %47 26: ; preds = %25 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 0, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 3) to label %27 unwind label %47 27: ; preds = %26 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 3, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 3, i32 noundef 4) to label %28 unwind label %47 28: ; preds = %27 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %6, i32 1, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 3) to label %29 unwind label %47 29: ; preds = %28 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %6) + invoke void @_Z4testR5Graph(%class.Graph* noundef 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) + invoke void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef 3) to label %31 unwind label %47 31: ; preds = %30 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 0, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef 0, i32 noundef 1) to label %32 unwind label %51 32: ; preds = %31 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 1, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef 1, i32 noundef 2) to label %33 unwind label %51 33: ; preds = %32 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %7, i32 2, i32 0) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7, i32 noundef 2, i32 noundef 0) to label %34 unwind label %51 34: ; preds = %33 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %7) + invoke void @_Z4testR5Graph(%class.Graph* noundef 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) + invoke void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8, i32 noundef 3) to label %36 unwind label %51 36: ; preds = %35 - invoke void @_Z4testR5Graph(%class.Graph* nonnull align 8 dereferenceable(16) %8) + invoke void @_Z4testR5Graph(%class.Graph* noundef 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 %38 = load i32, i32* %1, align 4 ret i32 %38 @@ -821,23 +821,23 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %8) #3 br label %59 59: ; preds = %55, %51 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %7) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %60 60: ; preds = %59, %47 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %6) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6) #3 br label %61 61: ; preds = %60, %43 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %5) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #3 br label %62 62: ; preds = %61, %39 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 br label %63 63: ; preds = %62 @@ -849,7 +849,7 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso } ; 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 { +define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -868,7 +868,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #16 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -882,7 +882,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -893,10 +893,10 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 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 @@ -917,12 +917,12 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull derefere 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 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZdaPv(i8* noundef %9) #17 br label %19 19: ; preds = %18, %1 @@ -936,70 +936,70 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #10 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #11 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -1016,31 +1016,31 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 +declare void @_ZdaPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1073,17 +1073,17 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv %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) + %26 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %28 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28, i32* noundef %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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_List_node"* noundef %30) #3 + br label %12, !llvm.loop !12 31: ; preds = %12 ret void @@ -1097,22 +1097,22 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } @@ -1123,12 +1123,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -1136,12 +1136,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1150,8 +1150,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_List_node"* noundef %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 @@ -1160,7 +1160,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* noundef %8, i64 noundef 1) to label %9 unwind label %10 9: ; preds = %2 @@ -1174,18 +1174,18 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1194,8 +1194,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -1205,8 +1205,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1217,12 +1217,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1232,33 +1232,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1269,21 +1269,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1293,28 +1293,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1322,10 +1322,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1341,19 +1341,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1363,7 +1363,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1371,8 +1371,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1383,13 +1383,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1401,7 +1401,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1415,7 +1415,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1432,8 +1432,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1441,12 +1441,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1455,24 +1455,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1480,21 +1489,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #11 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1506,14 +1518,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1525,18 +1537,18 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx114listIiSaIiEE13_M_node_countEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + %5 = call noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt7__cxx1110_List_baseIiSaIiEE11_M_get_sizeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1553,36 +1565,40 @@ define internal void @_GLOBAL__sub_I_eulerian_path_and_circuit.cpp() #0 section 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree 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 #9 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #11 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll index 023f7d30..9889fc89 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-common-elements-three-sorted-arrays.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-common-elements-three-sorted-arrays.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -32,21 +32,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10findCommonPiS_S_iii(i32* noundef %0, i32* noundef %1, i32* noundef %2, i32 noundef %3, i32 noundef %4, i32 noundef %5) #4 { %7 = alloca i32*, align 8 %8 = alloca i32*, align 8 %9 = alloca i32*, align 8 @@ -123,8 +123,8 @@ define dso_local void @_Z10findCommonPiS_S_iii(i32* %0, i32* %1, i32* %2, i32 %3 %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)) + %60 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %59) + %61 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %60, i8* noundef 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 @@ -189,18 +189,18 @@ define dso_local void @_Z10findCommonPiS_S_iii(i32* %0, i32* %1, i32* %2, i32 %3 br label %103 103: ; preds = %102, %54 - br label %16, !llvm.loop !2 + br label %16, !llvm.loop !6 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca [5 x i32], align 16 @@ -218,18 +218,18 @@ define dso_local i32 @main() #5 { 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)) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z10findCommonPiS_S_iii(i32* noundef %12, i32* noundef %13, i32* noundef %14, i32 noundef %15, i32 noundef %16, i32 noundef %17) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -238,18 +238,22 @@ define internal void @_GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cp 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/find-k-closest-elements-given-value.ll similarity index 77% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-k-closest-elements-given-value.ll index cd971d9e..307f7e78 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-k-closest-elements-given-value.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-k-closest-elements-given-value.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13findCrossOverPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { %5 = alloca i32, align 4 %6 = alloca i32*, align 8 %7 = alloca i32, align 4 @@ -94,7 +94,7 @@ define dso_local i32 @_Z13findCrossOverPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 %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) + %67 = call noundef i32 @_Z13findCrossOverPiiii(i32* noundef %62, i32 noundef %64, i32 noundef %65, i32 noundef %66) store i32 %67, i32* %5, align 4 br label %75 @@ -104,7 +104,7 @@ define dso_local i32 @_Z13findCrossOverPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 %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) + %74 = call noundef i32 @_Z13findCrossOverPiiii(i32* noundef %69, i32 noundef %70, i32 noundef %72, i32 noundef %73) store i32 %74, i32* %5, align 4 br label %75 @@ -113,8 +113,8 @@ define dso_local i32 @_Z13findCrossOverPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 ret i32 %76 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printKclosestPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { %5 = alloca i32*, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 @@ -130,7 +130,7 @@ define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) # %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) + %16 = call noundef i32 @_Z13findCrossOverPiiii(i32* noundef %12, i32 noundef 0, i32 noundef %14, i32 noundef %15) store i32 %16, i32* %9, align 4 %17 = load i32, i32* %9, align 4 %18 = add nsw i32 %17, 1 @@ -201,7 +201,7 @@ define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) # %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) + %66 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %65) br label %75 67: ; preds = %43 @@ -212,14 +212,14 @@ define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) # %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) + %74 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %30, !llvm.loop !6 78: ; preds = %41 br label %79 @@ -247,11 +247,11 @@ define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) # %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) + %95 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %79, !llvm.loop !8 98: ; preds = %86 br label %99 @@ -280,20 +280,20 @@ define dso_local void @_Z13printKclosestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) # %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) + %116 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %99, !llvm.loop !9 119: ; preds = %107 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [13 x i32], align 16 %3 = alloca i32, align 4 @@ -308,24 +308,28 @@ define dso_local i32 @main() #2 { %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) + call void @_Z13printKclosestPiiii(i32* noundef %7, i32 noundef %8, i32 noundef 4, i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} 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-llvm14/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll index 6f495e54..89b6fab9 100644 --- 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-llvm14/find-length-of-the-longest-consecutive-path-in-a-character-matrix.ll @@ -28,26 +28,26 @@ $_ZSt3maxIiERKT_S2_S2_ = comdat any @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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z7isvalidii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i1, align 1 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -85,8 +85,8 @@ define dso_local zeroext i1 @_Z7isvalidii(i32 %0, i32 %1) #4 { ret i1 %20 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z10isadjacentcc(i8 signext %0, i8 signext %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %0, i8 noundef signext %1) #4 { %3 = alloca i8, align 1 %4 = alloca i8, align 1 store i8 %0, i8* %3, align 1 @@ -100,8 +100,8 @@ define dso_local zeroext i1 @_Z10isadjacentcc(i8 signext %0, i8 signext %1) #4 { 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10getLenUtilPA3_ciic([3 x i8]* noundef %0, i32 noundef %1, i32 noundef %2, i8 noundef signext %3) #5 { %5 = alloca i32, align 4 %6 = alloca [3 x i8]*, align 8 %7 = alloca i32, align 4 @@ -116,7 +116,7 @@ define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 si 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) + %15 = call noundef zeroext i1 @_Z7isvalidii(i32 noundef %13, i32 noundef %14) br i1 %15, label %16, label %27 16: ; preds = %4 @@ -129,7 +129,7 @@ define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 si %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) + %26 = call noundef zeroext i1 @_Z10isadjacentcc(i8 noundef signext %17, i8 noundef signext %25) br i1 %26, label %28, label %27 27: ; preds = %16, %4 @@ -190,10 +190,10 @@ define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 si %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) + %71 = call noundef i32 @_Z10getLenUtilPA3_ciic([3 x i8]* noundef %50, i32 noundef %56, i32 noundef %62, i8 noundef 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) + %73 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %10, i32* noundef nonnull align 4 dereferenceable(4) %12) %74 = load i32, i32* %73, align 4 store i32 %74, i32* %10, align 4 br label %75 @@ -202,7 +202,7 @@ define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 si %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 + br label %46, !llvm.loop !6 78: ; preds = %46 %79 = load i32, i32* %10, align 4 @@ -221,8 +221,8 @@ define dso_local i32 @_Z10getLenUtilPA3_ciic([3 x i8]* %0, i32 %1, i32 %2, i8 si 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #4 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -250,8 +250,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI ret i32* %16 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %0, i8 noundef signext %1) #5 { %3 = alloca [3 x i8]*, align 8 %4 = alloca i8, align 1 %5 = alloca i32, align 4 @@ -319,10 +319,10 @@ define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { %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) + %49 = call noundef i32 @_Z10getLenUtilPA3_ciic([3 x i8]* noundef %35, i32 noundef %41, i32 noundef %47, i8 noundef 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) + %51 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %5, i32* noundef nonnull align 4 dereferenceable(4) %9) %52 = load i32, i32* %51, align 4 store i32 %52, i32* %5, align 4 br label %53 @@ -331,7 +331,7 @@ define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { %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 + br label %31, !llvm.loop !8 56: ; preds = %31 br label %57 @@ -343,7 +343,7 @@ define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { %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 + br label %14, !llvm.loop !9 61: ; preds = %14 br label %62 @@ -352,50 +352,50 @@ define dso_local i32 @_Z6getLenPA3_cc([3 x i8]* %0, i8 signext %1) #5 { %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 + br label %10, !llvm.loop !10 65: ; preds = %10 %66 = load i32, i32* %5, align 4 ret i32 %66 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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_) + %5 = call noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %4, i8 noundef signext 97) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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_) + %9 = call noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %8, i8 noundef signext 101) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %10, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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_) + %13 = call noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %12, i8 noundef signext 98) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %14, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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_) + %17 = call noundef i32 @_Z6getLenPA3_cc([3 x i8]* noundef %16, i8 noundef signext 102) + %18 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %17) + %19 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %18, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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" { @@ -403,23 +403,27 @@ define internal void @_GLOBAL__sub_I_find_length_of_the_longest_consecutive_path 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} 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-llvm14/find-minimum-number-of-coins-that-make-a-change.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-minimum-number-of-coins-that-make-a-change.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-minimum-number-of-coins-that-make-a-change.ll index b5b7987d..aca37202 100644 --- 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-llvm14/find-minimum-number-of-coins-that-make-a-change.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8minCoinsPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -85,7 +85,7 @@ define dso_local i32 @_Z8minCoinsPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %19, !llvm.loop !6 30: ; preds = %19 store i32 1, i32* %10, align 4 @@ -162,7 +162,7 @@ define dso_local i32 @_Z8minCoinsPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %36, !llvm.loop !8 80: ; preds = %36 br label %81 @@ -171,7 +171,7 @@ define dso_local i32 @_Z8minCoinsPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %31, !llvm.loop !9 84: ; preds = %31 %85 = load i32, i32* %6, align 4 @@ -189,8 +189,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -200,21 +200,21 @@ define dso_local i32 @main() #6 { 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)) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %10 = call noundef i32 @_Z8minCoinsPiii(i32* noundef %7, i32 noundef %8, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %10) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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" { @@ -222,21 +222,25 @@ define internal void @_GLOBAL__sub_I_find_minimum_number_of_coins_that_make_a_ch 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll similarity index 50% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll index 8c74eb5a..a3a1c951 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-parity.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-parity.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9getParityj(i32 %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9getParityj(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i32, align 4 store i32 %0, i32* %2, align 4 @@ -68,38 +68,38 @@ define dso_local i32 @_Z9getParityj(i32 %0) #4 { %14 = sub i32 %13, 1 %15 = and i32 %12, %14 store i32 %15, i32* %2, align 4 - br label %4, !llvm.loop !2 + br label %4, !llvm.loop !6 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i8* noundef 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) + %8 = call noundef i32 @_Z9getParityj(i32 noundef %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) + %12 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i8* noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEj(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -declare dso_local i32 @getchar() #1 +declare i32 @getchar() #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_find_parity.cpp() #0 section ".text.startup" { @@ -107,17 +107,21 @@ define internal void @_GLOBAL__sub_I_find_parity.cpp() #0 section ".text.startup 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/find-two-non-repeating-element.ll similarity index 61% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/find-two-non-repeating-element.ll index a782413b..30a2b79c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/find-two-non-repeating-element.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/find-two-non-repeating-element.ll @@ -23,28 +23,28 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(i32* noundef %0, i32 noundef %1, i32* noundef %2, i32* noundef %3) #4 { %5 = alloca i32*, align 8 %6 = alloca i32, align 4 %7 = alloca i32*, align 8 @@ -88,7 +88,7 @@ define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(i32* %0, i32 %1, i32* %2, %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 + br label %17, !llvm.loop !6 32: ; preds = %17 %33 = load i32, i32* %9, align 4 @@ -150,49 +150,49 @@ define dso_local void @_Z19get2NonRepeatingNosPiiS_S_(i32* %0, i32 %1, i32* %2, %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 + br label %38, !llvm.loop !8 75: ; preds = %38 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 + %5 = call noalias noundef nonnull i8* @_Znam(i64 noundef 16) #8 %6 = bitcast i8* %5 to i32* store i32* %6, i32** %2, align 8 - %7 = call noalias nonnull i8* @_Znam(i64 16) #8 + %7 = call noalias noundef nonnull i8* @_Znam(i64 noundef 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)) + call void @_Z19get2NonRepeatingNosPiiS_S_(i32* noundef %9, i32 noundef 8, i32* noundef %10, i32* noundef %11) + %12 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %12, i32 noundef %14) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %15, i8* noundef 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) + %19 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i32 noundef %18) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull i8* @_Znam(i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_find_two_non_repeating_element.cpp() #0 section ".text.startup" { @@ -200,21 +200,25 @@ define internal void @_GLOBAL__sub_I_find_two_non_repeating_element.cpp() #0 sec 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } +attributes #7 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #8 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll index 3fef4ed5..700dce6a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/finite-automata-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/finite-automata-algorithm.ll @@ -7,8 +7,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12getNextStatePciii(i8* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #0 { %5 = alloca i32, align 4 %6 = alloca i8*, align 8 %7 = alloca i32, align 4 @@ -106,7 +106,7 @@ define dso_local i32 @_Z12getNextStatePciii(i8* %0, i32 %1, i32 %2, i32 %3) #0 { %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 + br label %43, !llvm.loop !6 72: ; preds = %67, %43 %73 = load i32, i32* %11, align 4 @@ -130,7 +130,7 @@ define dso_local i32 @_Z12getNextStatePciii(i8* %0, i32 %1, i32 %2, i32 %3) #0 { %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 + br label %29, !llvm.loop !8 84: ; preds = %29 store i32 0, i32* %5, align 4 @@ -141,8 +141,8 @@ define dso_local i32 @_Z12getNextStatePciii(i8* %0, i32 %1, i32 %2, i32 %3) #0 { ret i32 %86 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z9computeTFPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z9computeTFPciPA256_i(i8* noundef %0, i32 noundef %1, [256 x i32]* noundef %2) #0 { %4 = alloca i8*, align 8 %5 = alloca i32, align 4 %6 = alloca [256 x i32]*, align 8 @@ -174,7 +174,7 @@ define dso_local void @_Z9computeTFPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) # %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) + %22 = call noundef i32 @_Z12getNextStatePciii(i8* noundef %18, i32 noundef %19, i32 noundef %20, i32 noundef %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 @@ -189,7 +189,7 @@ define dso_local void @_Z9computeTFPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) # %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 + br label %14, !llvm.loop !9 33: ; preds = %14 br label %34 @@ -198,14 +198,14 @@ define dso_local void @_Z9computeTFPciPA256_i(i8* %0, i32 %1, [256 x i32]* %2) # %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 + br label %9, !llvm.loop !10 37: ; preds = %9 ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(i8* noundef %0, i8* noundef %1) #1 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32, align 4 @@ -217,11 +217,11 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { 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 + %12 = call i64 @strlen(i8* noundef %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 + %15 = call i64 @strlen(i8* noundef %14) #6 %16 = trunc i64 %15 to i32 store i32 %16, i32* %6, align 4 %17 = load i32, i32* %5, align 4 @@ -233,7 +233,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { 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) + call void @_Z9computeTFPciPA256_i(i8* noundef %22, i32 noundef %23, [256 x i32]* noundef %21) store i32 0, i32* %10, align 4 store i32 0, i32* %9, align 4 br label %24 @@ -267,7 +267,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { %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) + %48 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 noundef %47) br label %49 49: ; preds = %43, %28 @@ -277,7 +277,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { %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 + br label %24, !llvm.loop !11 53: ; preds = %24 %54 = load i8*, i8** %7, align 8 @@ -286,18 +286,18 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #1 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #2 +declare i64 @strlen(i8* noundef) #2 ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #3 -declare dso_local i32 @printf(i8*, ...) #4 +declare i32 @printf(i8* noundef, ...) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca i8*, align 8 %3 = alloca i8*, align 8 @@ -306,26 +306,30 @@ define dso_local i32 @main() #5 { 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) + call void @_Z6searchPcS_(i8* noundef %4, i8* noundef %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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #6 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll index 4e501875..d686820d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/floyd-warshall.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/floyd-warshall.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* noundef %0) #4 { %2 = alloca [4 x i32]*, align 8 %3 = alloca [4 x [4 x i32]], align 16 %4 = alloca i32, align 4 @@ -91,7 +91,7 @@ define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { %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 + br label %11, !llvm.loop !6 32: ; preds = %11 br label %33 @@ -100,7 +100,7 @@ define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { %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 + br label %7, !llvm.loop !8 36: ; preds = %7 store i32 0, i32* %6, align 4 @@ -187,7 +187,7 @@ define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { %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 + br label %45, !llvm.loop !9 98: ; preds = %45 br label %99 @@ -196,7 +196,7 @@ define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { %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 + br label %41, !llvm.loop !10 102: ; preds = %41 br label %103 @@ -205,21 +205,21 @@ define dso_local void @_Z13floydWarshallPA4_i([4 x i32]* %0) #4 { %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 + br label %37, !llvm.loop !11 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) + call void @_Z13printSolutionPA4_i([4 x i32]* noundef %107) ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([83 x i8], [83 x i8]* @.str, i64 0, i64 0)) store i32 0, i32* %3, align 4 br label %6 @@ -250,8 +250,8 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #4 { 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)) + %24 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0)) + %25 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %24, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.2, i64 0, i64 0)) br label %37 26: ; preds = %13 @@ -263,8 +263,8 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #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)) + %35 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %34) + %36 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %35, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.2, i64 0, i64 0)) br label %37 37: ; preds = %26, %23 @@ -274,43 +274,43 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #4 { %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 + br label %10, !llvm.loop !12 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_) + %42 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %6, !llvm.loop !13 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z13floydWarshallPA4_i([4 x i32]* noundef %4) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -319,24 +319,28 @@ define internal void @_GLOBAL__sub_I_floyd_warshall.cpp() #0 section ".text.star 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/graph-coloring.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/graph-coloring.ll index fa98a596..517fe6f1 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/graph-coloring.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/graph-coloring.ll @@ -128,7 +128,7 @@ $_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 +@_ZSt4cout = external 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 @@ -137,21 +137,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #4 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -164,36 +164,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #4 align 2 { %2 = alloca %class.Graph*, align 8 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -240,7 +240,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + br label %23, !llvm.loop !6 35: ; preds = %23 %36 = getelementptr inbounds %class.Graph, %class.Graph* %16, i32 0, i32 0 @@ -269,7 +269,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + br label %40, !llvm.loop !8 52: ; preds = %40 store i32 1, i32* %8, align 4 @@ -283,13 +283,13 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer br i1 %57, label %58, label %159 58: ; preds = %53 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %9) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %64 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -303,14 +303,14 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + %74 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %76 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* noundef 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 + %78 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -319,7 +319,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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 + %85 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -333,8 +333,8 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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 + %94 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #3 + br label %68, !llvm.loop !9 95: ; preds = %68 store i32 0, i32* %12, align 4 @@ -367,7 +367,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + br label %96, !llvm.loop !10 114: ; preds = %109, %96 %115 = load i32, i32* %12, align 4 @@ -380,7 +380,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + %124 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -394,14 +394,14 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + %134 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %136 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* noundef 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 + %138 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -410,7 +410,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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 + %145 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -424,8 +424,8 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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 + %154 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #3 + br label %128, !llvm.loop !11 155: ; preds = %128 br label %156 @@ -434,7 +434,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer %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 + br label %53, !llvm.loop !12 159: ; preds = %53 store i32 0, i32* %15, align 4 @@ -448,23 +448,23 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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)) + %166 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %168 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %166, i32 noundef %167) + %169 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %168, i8* noundef 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_) + %174 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %169, i32 noundef %173) + %175 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %174, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %160, !llvm.loop !13 179: ; preds = %160 %180 = load i8*, i8** %3, align 8 @@ -476,7 +476,7 @@ define dso_local void @_ZN5Graph14greedyColoringEv(%class.Graph* nonnull derefer 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -485,8 +485,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -497,17 +497,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -522,8 +522,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -532,26 +532,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -564,97 +564,97 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) to label %6 unwind label %26 6: ; preds = %0 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) to label %7 unwind label %26 7: ; preds = %6 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2) to label %8 unwind label %26 8: ; preds = %7 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 1, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 3) to label %9 unwind label %26 9: ; preds = %8 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 2, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) to label %10 unwind label %26 10: ; preds = %9 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %2, i32 3, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 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)) + %12 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + invoke void @_ZN5Graph14greedyColoringEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) to label %14 unwind label %26 14: ; preds = %13 - invoke void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) %5, i32 5) + invoke void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5) to label %15 unwind label %26 15: ; preds = %14 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 1) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 1) to label %16 unwind label %30 16: ; preds = %15 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 0, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 2) to label %17 unwind label %30 17: ; preds = %16 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 2) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 2) to label %18 unwind label %30 18: ; preds = %17 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 1, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 4) to label %19 unwind label %30 19: ; preds = %18 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 2, i32 4) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 4) to label %20 unwind label %30 20: ; preds = %19 - invoke void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceable(16) %5, i32 4, i32 3) + invoke void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 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)) + %22 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + invoke void @_ZN5Graph14greedyColoringEv(%class.Graph* noundef nonnull align 8 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 %25 = load i32, i32* %1, align 4 ret i32 %25 @@ -674,11 +674,11 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) #3 br label %34 34: ; preds = %30, %26 - call void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) %2) #3 + call void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 br label %35 35: ; preds = %34 @@ -690,7 +690,7 @@ define dso_local i32 @main() #9 personality i8* bitcast (i32 (...)* @__gxx_perso } ; 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 { +define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -709,7 +709,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #15 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -723,7 +723,7 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -734,10 +734,10 @@ define linkonce_odr dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull derefere ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 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 @@ -758,12 +758,12 @@ define linkonce_odr dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull derefere 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 + call void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZdaPv(i8* noundef %9) #16 br label %19 19: ; preds = %18, %1 @@ -777,70 +777,70 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #10 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #10 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #11 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -857,31 +857,31 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #12 +declare void @_ZdaPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -914,17 +914,17 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv %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) + %26 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %28 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28, i32* noundef %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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_List_node"* noundef %30) #3 + br label %12, !llvm.loop !14 31: ; preds = %12 ret void @@ -938,22 +938,22 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE8_M_clearEv } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } @@ -964,12 +964,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE7destroyIiEEvRS2_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -977,12 +977,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -991,8 +991,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_nodeEPSt10_List_nodeIiE(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_List_node"* noundef %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 @@ -1001,7 +1001,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* noundef %8, i64 noundef 1) to label %9 unwind label %10 9: ; preds = %2 @@ -1015,18 +1015,18 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_put_no 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1035,8 +1035,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -1046,8 +1046,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1058,12 +1058,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1073,33 +1073,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1110,21 +1110,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1134,28 +1134,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1163,10 +1163,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1182,19 +1182,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1204,7 +1204,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1212,8 +1212,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1224,13 +1224,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1242,7 +1242,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1256,7 +1256,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1273,8 +1273,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1282,12 +1282,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1296,24 +1296,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1321,21 +1330,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #11 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1347,14 +1359,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1372,38 +1384,42 @@ define internal void @_GLOBAL__sub_I_graph_coloring.cpp() #0 section ".text.star 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } +attributes #9 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #11 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll similarity index 63% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll index fae4a66f..8785504d 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/hamiltonian-cycle-backtracking.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/hamiltonian-cycle-backtracking.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -32,21 +32,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafeiPA5_bPii(i32 noundef %0, [5 x i8]* noundef %1, i32* noundef %2, i32 noundef %3) #4 { %5 = alloca i1, align 1 %6 = alloca i32, align 4 %7 = alloca [5 x i8]*, align 8 @@ -110,7 +110,7 @@ define dso_local zeroext i1 @_Z6isSafeiPA5_bPii(i32 %0, [5 x i8]* %1, i32* %2, i %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 + br label %29, !llvm.loop !6 46: ; preds = %29 store i1 true, i1* %5, align 1 @@ -121,8 +121,8 @@ define dso_local zeroext i1 @_Z6isSafeiPA5_bPii(i32 %0, [5 x i8]* %1, i32* %2, i ret i1 %48 } -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 %2) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* noundef %0, i32* noundef %1, i32 noundef %2) #5 { %4 = alloca i1, align 1 %5 = alloca [5 x i8]*, align 8 %6 = alloca i32*, align 8 @@ -178,7 +178,7 @@ define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 %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) + %41 = call noundef zeroext i1 @_Z6isSafeiPA5_bPii(i32 noundef %37, [5 x i8]* noundef %38, i32* noundef %39, i32 noundef %40) br i1 %41, label %42, label %61 42: ; preds = %36 @@ -192,7 +192,7 @@ define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 %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) + %52 = call noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* noundef %48, i32* noundef %49, i32 noundef %51) %53 = zext i1 %52 to i32 %54 = icmp eq i32 %53, 1 br i1 %54, label %55, label %56 @@ -216,7 +216,7 @@ define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 %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 + br label %33, !llvm.loop !8 65: ; preds = %33 store i1 false, i1* %4, align 1 @@ -227,14 +227,14 @@ define dso_local zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* %0, i32* %1, i32 ret i1 %67 } -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* noundef %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 + %6 = call noalias noundef nonnull i8* @_Znam(i64 noundef 20) #9 %7 = bitcast i8* %6 to i32* store i32* %7, i32** %4, align 8 store i32 0, i32* %5, align 4 @@ -257,7 +257,7 @@ define dso_local zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %0) #5 { %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 + br label %8, !llvm.loop !9 19: ; preds = %8 %20 = load i32*, i32** %4, align 8 @@ -265,19 +265,19 @@ define dso_local zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %0) #5 { 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) + %24 = call noundef zeroext i1 @_Z12hamCycleUtilPA5_bPii([5 x i8]* noundef %22, i32* noundef %23, i32 noundef 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)) + %28 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z13printSolutionPi(i32* noundef %30) store i1 true, i1* %2, align 1 br label %31 @@ -287,16 +287,16 @@ define dso_local zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* %0) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPi(i32* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPi(i32* noundef %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)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([54 x i8], [54 x i8]* @.str.1, i64 0, i64 0)) store i32 0, i32* %3, align 4 br label %5 @@ -311,34 +311,34 @@ define dso_local void @_Z13printSolutionPi(i32* %0) #5 { %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)) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %14, i8* noundef 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 + br label %5, !llvm.loop !10 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_) + %23 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %22) + %24 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %23, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) + %25 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -346,15 +346,15 @@ define dso_local i32 @main() #7 { %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) + %6 = call noundef zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* noundef %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) + %9 = call noundef zeroext i1 @_Z8hamCyclePA5_b([5 x i8]* noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -363,24 +363,28 @@ define internal void @_GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp() #0 sec 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll index 72d044d3..5275cc92 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/insertion-sort-for-singly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/insertion-sort-for-singly-linked-list.ll @@ -9,8 +9,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13insertionSortPP4Node(%struct.Node** noundef %0) #0 { %2 = alloca %struct.Node**, align 8 %3 = alloca %struct.Node*, align 8 %4 = alloca %struct.Node*, align 8 @@ -33,10 +33,10 @@ define dso_local void @_Z13insertionSortPP4Node(%struct.Node** %0) #0 { %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) + call void @_Z12sortedInsertPP4NodeS0_(%struct.Node** noundef %3, %struct.Node* noundef %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 + br label %8, !llvm.loop !6 17: ; preds = %8 %18 = load %struct.Node*, %struct.Node** %3, align 8 @@ -45,8 +45,8 @@ define dso_local void @_Z13insertionSortPP4Node(%struct.Node** %0) #0 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z12sortedInsertPP4NodeS0_(%struct.Node** %0, %struct.Node* %1) #1 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z12sortedInsertPP4NodeS0_(%struct.Node** noundef %0, %struct.Node* noundef %1) #1 { %3 = alloca %struct.Node**, align 8 %4 = alloca %struct.Node*, align 8 %5 = alloca %struct.Node*, align 8 @@ -113,7 +113,7 @@ define dso_local void @_Z12sortedInsertPP4NodeS0_(%struct.Node** %0, %struct.Nod %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 + br label %28, !llvm.loop !8 49: ; preds = %43 %50 = load %struct.Node*, %struct.Node** %5, align 8 @@ -132,8 +132,8 @@ define dso_local void @_Z12sortedInsertPP4NodeS0_(%struct.Node** %0, %struct.Nod ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%struct.Node* %0) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(%struct.Node* noundef %0) #0 { %2 = alloca %struct.Node*, align 8 %3 = alloca %struct.Node*, align 8 store %struct.Node* %0, %struct.Node** %2, align 8 @@ -150,27 +150,27 @@ define dso_local void @_Z9printListP4Node(%struct.Node* %0) #0 { %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) + %12 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %5, !llvm.loop !9 16: ; preds = %5 ret void } -declare dso_local i32 @printf(i8*, ...) #2 +declare i32 @printf(i8* noundef, ...) #2 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(%struct.Node** noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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 @@ -189,42 +189,46 @@ define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #0 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #3 +declare noundef nonnull i8* @_Znwm(i64 noundef) #3 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 30) + %3 = call i32 (i8*, ...) @printf(i8* noundef 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)) + call void @_Z9printListP4Node(%struct.Node* noundef %4) + call void @_Z13insertionSortPP4Node(%struct.Node** noundef %2) + %5 = call i32 (i8*, ...) @printf(i8* noundef 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) + call void @_Z9printListP4Node(%struct.Node* noundef %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 #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #5 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll similarity index 57% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll index 2e58b52a..2cf10866 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/karatsuba.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/karatsuba.ll @@ -29,21 +29,21 @@ $_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_ = c ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef 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 @@ -56,11 +56,11 @@ define dso_local i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_tr 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 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 %17 = trunc i64 %16 to i32 store i32 %17, i32* %7, align 4 %18 = load i32, i32* %6, align 4 @@ -82,17 +82,17 @@ define dso_local i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_tr 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) + 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 noundef signext 48, %"class.std::__cxx11::basic_string"* noundef 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 + %31 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %30, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + br label %22, !llvm.loop !6 35: ; preds = %22 %36 = load i32, i32* %7, align 4 @@ -119,17 +119,17 @@ define dso_local i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_tr 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) + 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 noundef signext 48, %"class.std::__cxx11::basic_string"* noundef 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 + %51 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %50, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + br label %42, !llvm.loop !8 55: ; preds = %42 br label %56 @@ -148,10 +148,10 @@ define dso_local i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_tr } ; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +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 noundef signext %1, %"class.std::__cxx11::basic_string"* noundef 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 @@ -167,30 +167,30 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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) + call void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %9, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 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"* noundef 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 + %17 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %22 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 1, i8 noundef 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) + %25 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %24) to label %26 unwind label %32 26: ; preds = %23 @@ -205,7 +205,7 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9) #3 br label %38 32: ; preds = %23, %20, %15 @@ -215,11 +215,11 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 br label %37 37: ; preds = %36, %26 @@ -234,13 +234,13 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 } ; 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 +declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +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"* noundef %1, %"class.std::__cxx11::basic_string"* noundef %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 @@ -256,8 +256,8 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 + %17 = invoke noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) to label %18 unwind label %63 18: ; preds = %3 @@ -276,7 +276,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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) + %27 = invoke noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %26) to label %28 unwind label %63 28: ; preds = %24 @@ -286,7 +286,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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) + %34 = invoke noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i64 noundef %33) to label %35 unwind label %63 35: ; preds = %28 @@ -303,12 +303,12 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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) + 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 noundef signext %46, %"class.std::__cxx11::basic_string"* noundef 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 + %48 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 %49 = load i32, i32* %11, align 4 %50 = load i32, i32* %12, align 4 %51 = and i32 %49, %50 @@ -327,7 +327,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai %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 + br label %21, !llvm.loop !9 63: ; preds = %70, %35, %28, %24, %3 %64 = landingpad { i8*, i32 } @@ -336,7 +336,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 br label %77 67: ; preds = %21 @@ -345,12 +345,12 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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) + 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 noundef signext 49, %"class.std::__cxx11::basic_string"* noundef 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 + %72 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEaSEOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 br label %73 73: ; preds = %71, %67 @@ -359,7 +359,7 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 br label %76 76: ; preds = %75, %73 @@ -374,19 +374,19 @@ define dso_local void @_Z13addBitStringsNSt7__cxx1112basic_stringIcSt11char_trai } ; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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) +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %1) #4 { + %3 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 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) + %7 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0) %8 = load i8, i8* %7, align 1 %9 = sext i8 %8 to i32 %10 = sub nsw i32 %9, 48 @@ -394,10 +394,10 @@ define dso_local i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_ 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -423,7 +423,7 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %28 = call noundef i32 @_Z15makeEqualLengthRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef 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 @@ -439,19 +439,19 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* noundef 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) + %37 = invoke noundef i32 @_Z18multiplyiSingleBitNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %5, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 br label %171 40: ; preds = %35 @@ -470,11 +470,11 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 br label %173 49: ; preds = %32 @@ -487,18 +487,18 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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) + 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"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef 0, i64 noundef %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) + 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"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %58, i64 noundef %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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 0, i64 noundef %63) to label %64 unwind label %108 64: ; preds = %61 @@ -506,74 +506,74 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %66, i64 noundef %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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17, %"class.std::__cxx11::basic_string"* noundef 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) + %72 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %16, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %20, %"class.std::__cxx11::basic_string"* noundef 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) + %76 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %19, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %20) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %24, %"class.std::__cxx11::basic_string"* noundef 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) + 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"* noundef %23, %"class.std::__cxx11::basic_string"* noundef %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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %26, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27, %"class.std::__cxx11::basic_string"* noundef 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) + 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"* noundef %26, %"class.std::__cxx11::basic_string"* noundef %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) + %84 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %22, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %25) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %26) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %22) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %24) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 @@ -594,10 +594,10 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 br label %171 104: ; preds = %49 @@ -652,11 +652,11 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %16) #3 br label %167 129: ; preds = %74 @@ -675,11 +675,11 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19) #3 br label %167 138: ; preds = %78 @@ -734,43 +734,43 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 br label %173 171: ; preds = %85, %38, %31 @@ -785,12 +785,12 @@ define dso_local i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef, i64 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -821,160 +821,160 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %2) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %6) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %33 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %1, %"class.std::__cxx11::basic_string"* noundef %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) + %35 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %2) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %39 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %7, %"class.std::__cxx11::basic_string"* noundef %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) + %41 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %14) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %45 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %11, %"class.std::__cxx11::basic_string"* noundef %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) + %47 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %16) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.5, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %18) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %51 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %15, %"class.std::__cxx11::basic_string"* noundef %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) + %53 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %17) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %18) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %16) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %20) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %22) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %21, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %57 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %19, %"class.std::__cxx11::basic_string"* noundef %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) + %59 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %21) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %22) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %20) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %24) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %26) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %25, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.7, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %63 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %23, %"class.std::__cxx11::basic_string"* noundef %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) + %65 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %25) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %26) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %24) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %30) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %29, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator"* noundef 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) + %69 = invoke noundef i64 @_Z8multiplyNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %27, %"class.std::__cxx11::basic_string"* noundef %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) + %71 = invoke i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i64 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %29) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %30) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28) #3 ret i32 0 73: ; preds = %0 @@ -1002,16 +1002,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #3 br label %86 86: ; preds = %85, %73 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %2) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %2) #3 br label %171 87: ; preds = %36 @@ -1039,16 +1039,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 br label %100 100: ; preds = %99, %87 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %8) #3 br label %171 101: ; preds = %42 @@ -1076,16 +1076,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %14) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %11) #3 br label %114 114: ; preds = %113, %101 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %12) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %12) #3 br label %171 115: ; preds = %48 @@ -1113,16 +1113,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %18) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %15) #3 br label %128 128: ; preds = %127, %115 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %16) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %16) #3 br label %171 129: ; preds = %54 @@ -1150,16 +1150,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %22) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %19) #3 br label %142 142: ; preds = %141, %129 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %20) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %20) #3 br label %171 143: ; preds = %60 @@ -1187,16 +1187,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %26) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %23) #3 br label %156 156: ; preds = %155, %143 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %24) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %24) #3 br label %171 157: ; preds = %66 @@ -1224,16 +1224,16 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %30) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %27) #3 br label %170 170: ; preds = %169, %157 - call void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1) %28) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28) #3 br label %171 171: ; preds = %170, %156, %142, %128, %114, %100, %86 @@ -1244,54 +1244,54 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso resume { i8*, i32 } %175 } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +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"* noundef 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) + call void @_ZNSt16allocator_traitsISaIcEE37select_on_container_copy_constructionERKS0_(%"class.std::allocator"* sret(%"class.std::allocator") align 1 %0, %"class.std::allocator"* noundef 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 +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE13get_allocatorEv(%"class.std::allocator"* sret(%"class.std::allocator") align 1, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::allocator"* noundef 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE7reserveEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEmc(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef, i8 noundef 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 +declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef 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 + call void @_ZNSaIcEC1ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 +declare void @_ZNSaIcEC1ERKS_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1), %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_karatsuba.cpp() #0 section ".text.startup" { @@ -1299,20 +1299,24 @@ define internal void @_GLOBAL__sub_I_karatsuba.cpp() #0 section ".text.startup" 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll index 4dab1349..4b39039e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/kmp-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/kmp-algorithm.ll @@ -14,21 +14,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9KMPSearchPcS_(i8* noundef %0, i8* noundef %1) #4 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32, align 4 @@ -40,11 +40,11 @@ define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #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 + %12 = call i64 @strlen(i8* noundef %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 + %15 = call i64 @strlen(i8* noundef %14) #10 %16 = trunc i64 %15 to i32 store i32 %16, i32* %6, align 4 %17 = load i32, i32* %5, align 4 @@ -55,7 +55,7 @@ define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { 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) + call void @_Z15computeLPSArrayPciPi(i8* noundef %21, i32 noundef %22, i32* noundef %20) store i32 0, i32* %9, align 4 store i32 0, i32* %10, align 4 br label %23 @@ -101,7 +101,7 @@ define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { %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) + %54 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([27 x i8], [27 x i8]* @.str, i64 0, i64 0), i32 noundef %53) %55 = load i32, i32* %10, align 4 %56 = sub nsw i32 %55, 1 %57 = sext i32 %56 to i64 @@ -159,7 +159,7 @@ define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { br label %92 92: ; preds = %91, %50 - br label %23, !llvm.loop !2 + br label %23, !llvm.loop !6 93: ; preds = %23 %94 = load i8*, i8** %7, align 8 @@ -168,13 +168,13 @@ define dso_local void @_Z9KMPSearchPcS_(i8* %0, i8* %1) #4 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 +declare i64 @strlen(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z15computeLPSArrayPciPi(i8* noundef %0, i32 noundef %1, i32* noundef %2) #7 { %4 = alloca i8*, align 8 %5 = alloca i32, align 4 %6 = alloca i32*, align 8 @@ -257,19 +257,19 @@ define dso_local void @_Z15computeLPSArrayPciPi(i8* %0, i32 %1, i32* %2) #7 { br label %57 57: ; preds = %56, %29 - br label %11, !llvm.loop !4 + br label %11, !llvm.loop !8 58: ; preds = %11 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [20 x i8], align 16 %3 = alloca [10 x i8], align 1 @@ -280,11 +280,11 @@ define dso_local i32 @main() #8 { 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) + call void @_Z9KMPSearchPcS_(i8* noundef %6, i8* noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -293,23 +293,27 @@ define internal void @_GLOBAL__sub_I_kmp_algorithm.cpp() #0 section ".text.start 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } attributes #10 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} 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-llvm14/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll index a0f1f65f..ac4bc3ef 100644 --- 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-llvm14/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11kthSmallestPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #4 { %5 = alloca i32, align 4 %6 = alloca i32*, align 8 %7 = alloca i32, align 4 @@ -71,7 +71,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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) + %24 = call noundef i32 @_Z15randomPartitionPiii(i32* noundef %21, i32 noundef %22, i32 noundef %23) store i32 %24, i32* %10, align 4 %25 = load i32, i32* %10, align 4 %26 = load i32, i32* %7, align 4 @@ -105,7 +105,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #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) + %50 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %45, i32 noundef %46, i32 noundef %48, i32 noundef %49) store i32 %50, i32* %5, align 4 br label %64 @@ -120,7 +120,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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) + %62 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %52, i32 noundef %54, i32 noundef %55, i32 noundef %61) store i32 %62, i32* %5, align 4 br label %64 @@ -133,8 +133,8 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { ret i32 %65 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z15randomPartitionPiii(i32* %0, i32 %1, i32 %2) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z15randomPartitionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #5 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -162,16 +162,16 @@ define dso_local i32 @_Z15randomPartitionPiii(i32* %0, i32 %1, i32 %2) #5 { %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) + call void @_Z4swapPiS_(i32* noundef %21, i32* noundef %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) + %29 = call noundef i32 @_Z9partitionPiii(i32* noundef %26, i32 noundef %27, i32 noundef %28) ret i32 %29 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #5 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -190,8 +190,8 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #5 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -239,7 +239,7 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #5 { %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) + call void @_Z4swapPiS_(i32* noundef %34, i32* noundef %38) %39 = load i32, i32* %8, align 4 %40 = add nsw i32 %39, 1 store i32 %40, i32* %8, align 4 @@ -252,7 +252,7 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #5 { %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 + br label %17, !llvm.loop !6 45: ; preds = %17 %46 = load i32*, i32** %4, align 8 @@ -263,16 +263,16 @@ define dso_local i32 @_Z9partitionPiii(i32* %0, i32 %1, i32 %2) #5 { %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) + call void @_Z4swapPiS_(i32* noundef %49, i32* noundef %53) %54 = load i32, i32* %8, align 4 ret i32 %54 } ; Function Attrs: nounwind -declare dso_local i32 @rand() #2 +declare i32 @rand() #2 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -282,22 +282,22 @@ define dso_local i32 @main() #6 { 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)) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %11 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %7, i32 noundef 0, i32 noundef %9, i32 noundef %10) + %12 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %11) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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" { @@ -305,19 +305,23 @@ define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_ 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll similarity index 70% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll index 58f29cda..b67b44cc 100644 --- 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-llvm14/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.ll @@ -98,27 +98,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z10findMedianPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z10findMedianPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 store i32* %0, i32** %3, align 8 @@ -128,7 +128,7 @@ define dso_local i32 @_Z10findMedianPii(i32* %0, i32 %1) #4 { %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) + call void @_ZSt4sortIPiEvT_S1_(i32* noundef %5, i32* noundef %9) %10 = load i32*, i32** %3, align 8 %11 = load i32, i32* %4, align 4 %12 = sdiv i32 %11, 2 @@ -138,8 +138,8 @@ define dso_local i32 @_Z10findMedianPii(i32* %0, i32 %1) #4 { ret i32 %15 } -; Function Attrs: noinline uwtable mustprogress -define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(i32* %0, i32* %1) #4 comdat { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 @@ -149,12 +149,12 @@ define linkonce_odr dso_local void @_ZSt4sortIPiEvT_S1_(i32* %0, i32* %1) #4 com %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) + call void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %7, i32* noundef %8) ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11kthSmallestPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #4 { %5 = alloca i32, align 4 %6 = alloca i32*, align 8 %7 = alloca i32, align 4 @@ -217,7 +217,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #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) + %51 = call noundef i32 @_Z10findMedianPii(i32* noundef %50, i32 noundef 5) %52 = load i32, i32* %11, align 4 %53 = sext i32 %52 to i64 %54 = getelementptr inbounds i32, i32* %36, i64 %53 @@ -228,7 +228,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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 + br label %37, !llvm.loop !6 58: ; preds = %37 %59 = load i32, i32* %11, align 4 @@ -248,7 +248,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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) + %74 = call noundef i32 @_Z10findMedianPii(i32* noundef %71, i32 noundef %73) %75 = load i32, i32* %11, align 4 %76 = sext i32 %75 to i64 %77 = getelementptr inbounds i32, i32* %36, i64 %76 @@ -276,7 +276,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #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) + %94 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %36, i32 noundef 0, i32 noundef %91, i32 noundef %93) br label %95 95: ; preds = %89, %83 @@ -286,7 +286,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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) + %101 = call noundef i32 @_Z9partitionPiiii(i32* noundef %97, i32 noundef %98, i32 noundef %99, i32 noundef %100) store i32 %101, i32* %15, align 4 %102 = load i32, i32* %15, align 4 %103 = load i32, i32* %7, align 4 @@ -321,7 +321,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #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) + %127 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %122, i32 noundef %123, i32 noundef %125, i32 noundef %126) store i32 %127, i32* %5, align 4 store i32 1, i32* %16, align 4 br label %140 @@ -337,7 +337,7 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { %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) + %139 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %129, i32 noundef %131, i32 noundef %132, i32 noundef %138) store i32 %139, i32* %5, align 4 store i32 1, i32* %16, align 4 br label %140 @@ -359,8 +359,8 @@ define dso_local i32 @_Z11kthSmallestPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #4 { ; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9partitionPiiii(i32* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #6 { %5 = alloca i32*, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 @@ -401,7 +401,7 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { %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 + br label %12, !llvm.loop !8 29: ; preds = %24, %12 %30 = load i32*, i32** %5, align 8 @@ -412,7 +412,7 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { %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) + call void @_Z4swapPiS_(i32* noundef %33, i32* noundef %37) %38 = load i32, i32* %6, align 4 store i32 %38, i32* %9, align 4 %39 = load i32, i32* %6, align 4 @@ -445,7 +445,7 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { %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) + call void @_Z4swapPiS_(i32* noundef %57, i32* noundef %61) %62 = load i32, i32* %9, align 4 %63 = add nsw i32 %62, 1 store i32 %63, i32* %9, align 4 @@ -458,7 +458,7 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { %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 + br label %40, !llvm.loop !9 68: ; preds = %40 %69 = load i32*, i32** %5, align 8 @@ -469,7 +469,7 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { %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) + call void @_Z4swapPiS_(i32* noundef %72, i32* noundef %76) %77 = load i32, i32* %9, align 4 ret i32 %77 } @@ -477,8 +477,8 @@ define dso_local i32 @_Z9partitionPiiii(i32* %0, i32 %1, i32 %2, i32 %3) #6 { ; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #6 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -497,8 +497,8 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #6 { ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -508,25 +508,25 @@ define dso_local i32 @main() #7 { 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)) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %11 = call noundef i32 @_Z11kthSmallestPiiii(i32* noundef %7, i32 noundef 0, i32 noundef %9, i32 noundef %10) + %12 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %11) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -548,25 +548,25 @@ define linkonce_odr dso_local void @_ZSt6__sortIPiN9__gnu_cxx5__ops15_Iter_less_ %17 = ptrtoint i32* %15 to i64 %18 = sub i64 %16, %17 %19 = sdiv exact i64 %18, 4 - %20 = call i64 @_ZSt4__lgl(i64 %19) + %20 = call noundef i64 @_ZSt4__lgl(i64 noundef %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) + call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* noundef %12, i32* noundef %13, i64 noundef %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) + call void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %22, i32* noundef %23) br label %24 24: ; preds = %11, %2 ret void } -; Function Attrs: noinline nounwind uwtable mustprogress +; Function Attrs: mustprogress noinline nounwind uwtable 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* noundef %0, i32* noundef %1, i64 noundef %2) #4 comdat { %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -599,7 +599,7 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops1 %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) + call void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* noundef %24, i32* noundef %25, i32* noundef %26) br label %37 27: ; preds = %20 @@ -608,22 +608,22 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops1 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) + %32 = call noundef i32* @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(i32* noundef %30, i32* noundef %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) + call void @_ZSt16__introsort_loopIPilN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_T1_(i32* noundef %33, i32* noundef %34, i64 noundef %35) %36 = load i32*, i32** %9, align 8 store i32* %36, i32** %6, align 8 - br label %12, !llvm.loop !6 + br label %12, !llvm.loop !10 37: ; preds = %23, %12 ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgl(i64 noundef %0) #6 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -634,8 +634,8 @@ define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #6 comdat { 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -657,25 +657,25 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIPiN9__gnu_cxx5_ %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) + call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %17, i32* noundef %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) + call void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %21, i32* noundef %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) + call void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %24, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -687,15 +687,15 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIPiN9__gnu_cxx5__ops15_I %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) + call void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* noundef %9, i32* noundef %10, i32* noundef %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) + call void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* noundef %12, i32* noundef %13, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt27__unguarded_partition_pivotIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_T0_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -720,17 +720,17 @@ define linkonce_odr dso_local i32* @_ZSt27__unguarded_partition_pivotIPiN9__gnu_ %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) + call void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(i32* noundef %18, i32* noundef %20, i32* noundef %21, i32* noundef %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) + %28 = call noundef i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(i32* noundef %25, i32* noundef %26, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_T0_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -741,7 +741,7 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_It 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) + call void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* noundef %9, i32* noundef %10, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4) %11 = load i32*, i32** %6, align 8 store i32* %11, i32** %8, align 8 br label %12 @@ -755,14 +755,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_It 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) + %19 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4, i32* noundef %17, i32* noundef %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) + call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* noundef %21, i32* noundef %22, i32* noundef %23, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4) br label %24 24: ; preds = %20, %16 @@ -772,14 +772,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIPiN9__gnu_cxx5__ops15_It %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 + br label %12, !llvm.loop !11 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* noundef %0, i32* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef 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 @@ -806,15 +806,15 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIPiN9__gnu_cxx5__ops15_Iter %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 + call void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* noundef %18, i32* noundef %19, i32* noundef %20, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %21) + br label %7, !llvm.loop !12 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_RT0_(i32* noundef %0, i32* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef 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 @@ -855,16 +855,16 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter %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 + %33 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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) + call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* noundef %35, i64 noundef %36, i64 noundef %37, i32 noundef %39) %41 = load i64, i64* %8, align 8 %42 = icmp eq i64 %41, 0 br i1 %42, label %43, label %44 @@ -876,14 +876,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIPiN9__gnu_cxx5__ops15_Iter %45 = load i64, i64* %8, align 8 %46 = add nsw i64 %45, -1 store i64 %46, i64* %8, align 8 - br label %29 + br label %29, !llvm.loop !13 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef %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 @@ -899,8 +899,8 @@ define linkonce_odr dso_local zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterc 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_RT0_(i32* noundef %0, i32* noundef %1, i32* noundef %2, %"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %3) #4 comdat { %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -912,11 +912,11 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_ 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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %15 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -927,23 +927,23 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIPiN9__gnu_cxx5__ops15_Iter_ %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 + %25 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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) + call void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* noundef %18, i64 noundef 0, i64 noundef %24, i32 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_Iter_less_iterEEvT_T0_S5_T1_T2_(i32* noundef %0, i64 noundef %1, i64 noundef %2, i32 noundef %3) #4 comdat { %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %6 = alloca i32*, align 8 %7 = alloca i64, align 8 @@ -983,7 +983,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ %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) + %33 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %28, i32* noundef %32) br i1 %33, label %34, label %37 34: ; preds = %22 @@ -996,7 +996,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ %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 + %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1004,7 +1004,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ 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 + br label %16, !llvm.loop !14 47: ; preds = %16 %48 = load i64, i64* %8, align 8 @@ -1029,7 +1029,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ %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 + %65 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1041,19 +1041,19 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIPiliN9__gnu_cxx5__ops15_ 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) + %73 = call noundef 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"* noundef 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"* noundef nonnull align 1 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 + %77 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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) + call void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(i32* noundef %74, i64 noundef %75, i64 noundef %76, i32 noundef %78, %"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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"* noundef 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 @@ -1061,7 +1061,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"struct.__gnu_ } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15_Iter_less_iterE(%"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef nonnull align 1 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 @@ -1069,8 +1069,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_less_valC2ENS0_15 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_Iter_less_valEEvT_T0_S5_T1_RT2_(i32* noundef %0, i64 noundef %1, i64 noundef %2, i32 noundef %3, %"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef nonnull align 1 dereferenceable(1) %4) #4 comdat { %6 = alloca i32*, align 8 %7 = alloca i64, align 8 %8 = alloca i64, align 8 @@ -1099,7 +1099,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_It %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) + %24 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef nonnull align 1 dereferenceable(1) %20, i32* noundef %23, i32* noundef nonnull align 4 dereferenceable(4) %9) br label %25 25: ; preds = %19, %15 @@ -1110,7 +1110,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_It %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 + %31 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1122,10 +1122,10 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_It %38 = sub nsw i64 %37, 1 %39 = sdiv i64 %38, 2 store i64 %39, i64* %11, align 8 - br label %15, !llvm.loop !10 + br label %15, !llvm.loop !15 40: ; preds = %25 - %41 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %9) #3 + %41 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1134,8 +1134,8 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIPiliN9__gnu_cxx5__ops14_It 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valclIPiiEEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_less_val"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1151,8 +1151,8 @@ define linkonce_odr dso_local zeroext i1 @_ZNK9__gnu_cxx5__ops14_Iter_less_valcl 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_S4_S4_T0_(i32* noundef %0, i32* noundef %1, i32* noundef %2, i32* noundef %3) #4 comdat { %5 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -1164,37 +1164,37 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5_ 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) + %12 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %10, i32* noundef %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) + %16 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %14, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %18, i32* noundef %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) + %23 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %21, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %25, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %28, i32* noundef %29) br label %30 30: ; preds = %27, %24 @@ -1206,31 +1206,31 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5_ 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) + %35 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %33, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %37, i32* noundef %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) + %42 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %40, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %44, i32* noundef %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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %47, i32* noundef %48) br label %49 49: ; preds = %46, %43 @@ -1243,8 +1243,8 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIPiN9__gnu_cxx5_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ops15_Iter_less_iterEET_S4_S4_S4_T0_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #6 comdat { %4 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1260,14 +1260,14 @@ define linkonce_odr dso_local i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ 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) + %12 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4, i32* noundef %10, i32* noundef %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 + br label %9, !llvm.loop !16 16: ; preds = %9 %17 = load i32*, i32** %6, align 8 @@ -1278,14 +1278,14 @@ define linkonce_odr dso_local i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ 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) + %22 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %4, i32* noundef %20, i32* noundef %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 + br label %19, !llvm.loop !17 26: ; preds = %19 %27 = load i32*, i32** %5, align 8 @@ -1300,42 +1300,42 @@ define linkonce_odr dso_local i32* @_ZSt21__unguarded_partitionIPiN9__gnu_cxx5__ 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) + call void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %33, i32* noundef %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 + br label %8, !llvm.loop !18 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* %0, i32* %1) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIPiS0_EvT_T0_(i32* noundef %0, i32* noundef %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 + call void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i32* noundef nonnull align 4 dereferenceable(4) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef 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 + %7 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %10 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %13 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1345,8 +1345,8 @@ define linkonce_odr dso_local void @_ZSt4swapIiENSt9enable_ifIXsr6__and_ISt6__no ; 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -1380,20 +1380,20 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15 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) + %25 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops15_Iter_less_iterclIPiS3_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_less_iter"* noundef nonnull align 1 dereferenceable(1) %3, i32* noundef %23, i32* noundef %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 + %28 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 + %34 = call noundef i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* noundef %30, i32* noundef %31, i32* noundef %33) + %35 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1402,7 +1402,7 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15 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) + call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* noundef %39) br label %40 40: ; preds = %38, %26 @@ -1412,14 +1412,14 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIPiN9__gnu_cxx5__ops15 %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 + br label %18, !llvm.loop !19 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_cxx5__ops15_Iter_less_iterEEvT_S4_T0_(i32* noundef %0, i32* noundef %1) #4 comdat { %3 = alloca %"struct.__gnu_cxx::__ops::_Iter_less_iter", align 1 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -1442,21 +1442,21 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIPiN9__gnu_c 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) + call void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* noundef %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 + br label %11, !llvm.loop !20 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1464,23 +1464,23 @@ define linkonce_odr dso_local i32* @_ZSt13move_backwardIPiS0_ET0_T_S2_S1_(i32* % 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) + %8 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %7) %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__miter_baseIPiET_S1_(i32* %9) + %10 = call noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cxx5__ops14_Val_less_iterEEvT_T0_(i32* noundef %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 + %7 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1492,12 +1492,12 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cx 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) + %14 = call noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_less_iter"* noundef nonnull align 1 dereferenceable(1) %2, i32* noundef nonnull align 4 dereferenceable(4) %4, i32* noundef %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 + %17 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 @@ -1506,24 +1506,24 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIPiN9__gnu_cx %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 + br label %12, !llvm.loop !21 23: ; preds = %12 - %24 = call nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* nonnull align 4 dereferenceable(4) %4) #3 + %24 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt4moveIRiEONSt16remove_referenceIT_E4typeEOS2_(i32* noundef 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 +; Function Attrs: mustprogress noinline nounwind uwtable 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1531,26 +1531,26 @@ define linkonce_odr dso_local i32* @_ZSt22__copy_move_backward_aILb1EPiS0_ET1_T0 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 + %8 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %7) #3 %9 = load i32*, i32** %5, align 8 - %10 = call i32* @_ZSt12__niter_baseIPiET_S1_(i32* %9) #3 + %10 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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) + %12 = call noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %11) #3 + %13 = call noundef i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %8, i32* noundef %10, i32* noundef %12) + %14 = call noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %6, i32* noundef %13) ret i32* %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__miter_baseIPiET_S1_(i32* %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__miter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** noundef nonnull align 8 dereferenceable(8) %0, i32* noundef %1) #6 comdat { %3 = alloca i32**, align 8 %4 = alloca i32*, align 8 store i32** %0, i32*** %3, align 8 @@ -1559,8 +1559,8 @@ define linkonce_odr dso_local i32* @_ZSt12__niter_wrapIPiET_RKS1_S1_(i32** nonnu 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1570,20 +1570,20 @@ define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a1ILb1EPiS0_ET1_T %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) + %10 = call noundef i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %7, i32* noundef %8, i32* noundef %9) ret i32* %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32* @_ZSt12__niter_baseIPiET_S1_(i32* %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZSt12__niter_baseIPiET_S1_(i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T0_S2_S1_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #4 comdat { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1593,12 +1593,12 @@ define linkonce_odr dso_local i32* @_ZSt23__copy_move_backward_a2ILb1EPiS0_ET1_T %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) + %10 = call noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* noundef %7, i32* noundef %8, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bIiEEPT_PKS3_S6_S4_(i32* noundef %0, i32* noundef %1, i32* noundef %2) #6 comdat align 2 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32*, align 8 @@ -1638,11 +1638,11 @@ define linkonce_odr dso_local i32* @_ZNSt20__copy_move_backwardILb1ELb1ESt26rand ret i32* %30 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNK9__gnu_cxx5__ops14_Val_less_iterclIiPiEEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_less_iter"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef nonnull align 4 dereferenceable(4) %1, i32* noundef %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 @@ -1664,34 +1664,40 @@ define internal void @_GLOBAL__sub_I_kth_smallestlargest_element_unsorted_array_ 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } +attributes #9 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #10 = { nofree nosync nounwind readnone speculatable willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} +!18 = distinct !{!18, !7} +!19 = distinct !{!19, !7} +!20 = distinct !{!20, !7} +!21 = distinct !{!21, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll index 3fa86f5a..aba539b9 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-independent-set-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-independent-set-problem.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -66,8 +66,8 @@ define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #4 { ret i32 %13 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4LISSP4node(%class.node* noundef %0) #5 { %2 = alloca i32, align 4 %3 = alloca %class.node*, align 8 %4 = alloca i32, align 4 @@ -120,11 +120,11 @@ define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { %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) + %35 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %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) + %39 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %38) %40 = add nsw i32 %35, %39 store i32 %40, i32* %4, align 4 store i32 1, i32* %5, align 4 @@ -140,13 +140,13 @@ define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { %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) + %51 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %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) + %57 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %56) %58 = add nsw i32 %51, %57 %59 = load i32, i32* %5, align 4 %60 = add nsw i32 %59, %58 @@ -166,13 +166,13 @@ define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { %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) + %72 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %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) + %78 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %77) %79 = add nsw i32 %72, %78 %80 = load i32, i32* %5, align 4 %81 = add nsw i32 %80, %79 @@ -182,7 +182,7 @@ define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { 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) + %85 = call noundef i32 @_Z3maxii(i32 noundef %83, i32 noundef %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 @@ -197,12 +197,12 @@ define dso_local i32 @_Z4LISSP4node(%class.node* %0) #5 { ret i32 %92 } -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.node* @_Z7newNodei(i32 %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %class.node* @_Z7newNodei(i32 noundef %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 + %4 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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) @@ -225,35 +225,35 @@ define dso_local %class.node* @_Z7newNodei(i32 %0) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 +declare noundef nonnull i8* @_Znwm(i64 noundef) #6 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %3 = call noundef %class.node* @_Z7newNodei(i32 noundef 20) store %class.node* %3, %class.node** %2, align 8 - %4 = call %class.node* @_Z7newNodei(i32 8) + %4 = call noundef %class.node* @_Z7newNodei(i32 noundef 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) + %7 = call noundef %class.node* @_Z7newNodei(i32 noundef 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) + %12 = call noundef %class.node* @_Z7newNodei(i32 noundef 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) + %17 = call noundef %class.node* @_Z7newNodei(i32 noundef 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 @@ -261,7 +261,7 @@ define dso_local i32 @main() #8 { %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) + %24 = call noundef %class.node* @_Z7newNodei(i32 noundef 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 @@ -269,26 +269,26 @@ define dso_local i32 @main() #8 { %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) + %31 = call noundef %class.node* @_Z7newNodei(i32 noundef 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) + %34 = call noundef %class.node* @_Z7newNodei(i32 noundef 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)) + %39 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %41 = call noundef i32 @_Z4LISSP4node(%class.node* noundef %40) + %42 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %39, i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_largest_independent_set_problem.cpp() #0 section ".text.startup" { @@ -296,19 +296,23 @@ define internal void @_GLOBAL__sub_I_largest_independent_set_problem.cpp() #0 se 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn writeonly } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll similarity index 51% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll index 1fb060bb..e15a1da6 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/largest-sum-contiguous-subarray.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/largest-sum-contiguous-subarray.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxSubArraySumPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxSubArraySumPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -112,38 +112,38 @@ define dso_local i32 @_Z14maxSubArraySumPii(i32* %0, i32 %1) #4 { %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 + br label %11, !llvm.loop !6 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)) + %41 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %43 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %41, i32 noundef %42) + %44 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %43, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %45 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %47 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %45, i32 noundef %46) + %48 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %47, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %49 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %48, i8* noundef 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_) + %51 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %49, i32 noundef %50) + %52 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %51, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -154,12 +154,12 @@ define dso_local i32 @main() #6 { 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) + %8 = call noundef i32 @_Z14maxSubArraySumPii(i32* noundef %6, i32 noundef %7) store i32 %8, i32* %4, align 4 ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -168,19 +168,23 @@ define internal void @_GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp() #0 se 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/lexicographic-rank-of-a-string.ll similarity index 60% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/lexicographic-rank-of-a-string.ll index 7e7fcde0..8daf672f 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/lexicographic-rank-of-a-string.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/lexicographic-rank-of-a-string.ll @@ -23,26 +23,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4facti(i32 %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4facti(i32 noundef %0) #4 { %2 = alloca i32, align 4 store i32 %0, i32* %2, align 4 %3 = load i32, i32* %2, align 4 @@ -56,7 +56,7 @@ define dso_local i32 @_Z4facti(i32 %0) #4 { %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) + %10 = call noundef i32 @_Z4facti(i32 noundef %9) %11 = mul nsw i32 %7, %10 br label %12 @@ -65,8 +65,8 @@ define dso_local i32 @_Z4facti(i32 %0) #4 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z18findSmallerInRightPcii(i8* %0, i32 %1, i32 %2) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z18findSmallerInRightPcii(i8* noundef %0, i32 noundef %1, i32 noundef %2) #5 { %4 = alloca i8*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -116,15 +116,15 @@ define dso_local i32 @_Z18findSmallerInRightPcii(i8* %0, i32 %1, i32 %2) #5 { %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 + br label %11, !llvm.loop !6 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8findRankPc(i8* noundef %0) #4 { %2 = alloca i8*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -133,11 +133,11 @@ define dso_local i32 @_Z8findRankPc(i8* %0) #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 + %9 = call i64 @strlen(i8* noundef %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) + %12 = call noundef i32 @_Z4facti(i32 noundef %11) store i32 %12, i32* %4, align 4 store i32 1, i32* %5, align 4 store i32 0, i32* %7, align 4 @@ -160,7 +160,7 @@ define dso_local i32 @_Z8findRankPc(i8* %0) #4 { %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) + %27 = call noundef i32 @_Z18findSmallerInRightPcii(i8* noundef %23, i32 noundef %24, i32 noundef %26) store i32 %27, i32* %6, align 4 %28 = load i32, i32* %6, align 4 %29 = load i32, i32* %4, align 4 @@ -174,7 +174,7 @@ define dso_local i32 @_Z8findRankPc(i8* %0) #4 { %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 + br label %13, !llvm.loop !8 36: ; preds = %13 %37 = load i32, i32* %5, align 4 @@ -182,25 +182,25 @@ define dso_local i32 @_Z8findRankPc(i8* %0) #4 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #6 +declare i64 @strlen(i8* noundef) #6 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef i32 @_Z8findRankPc(i8* noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %5) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp() #0 section ".text.startup" { @@ -208,22 +208,26 @@ define internal void @_GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp() #0 sec 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll new file mode 100644 index 00000000..bb82b1ca --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/little-and-big-endian-mystery.ll @@ -0,0 +1,76 @@ +; 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: mustprogress noinline uwtable +define dso_local void @_Z12show_mem_repPci(i8* noundef %0, i32 noundef %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* noundef getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i32 noundef %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 !6 + +21: ; preds = %6 + %22 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + ret void +} + +declare i32 @printf(i8* noundef, ...) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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* noundef %3, i32 noundef 4) + %4 = call i32 @getchar() + ret i32 0 +} + +declare i32 @getchar() #1 + +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll similarity index 79% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll index 634404aa..9e4a40a5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-bitonic-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-bitonic-subsequence.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3lbsPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -23,7 +23,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + %16 = call noalias noundef nonnull i8* @_Znam(i64 noundef %15) #6 %17 = bitcast i8* %16 to i32* store i32* %17, i32** %7, align 8 store i32 0, i32* %5, align 4 @@ -47,7 +47,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %18, !llvm.loop !6 30: ; preds = %18 store i32 1, i32* %5, align 4 @@ -119,7 +119,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %36, !llvm.loop !8 80: ; preds = %36 br label %81 @@ -128,7 +128,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %31, !llvm.loop !9 84: ; preds = %31 %85 = load i32, i32* %4, align 4 @@ -137,7 +137,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + %91 = call noalias noundef nonnull i8* @_Znam(i64 noundef %90) #6 %92 = bitcast i8* %91 to i32* store i32* %92, i32** %8, align 8 store i32 0, i32* %5, align 4 @@ -161,7 +161,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %93, !llvm.loop !10 105: ; preds = %93 %106 = load i32, i32* %4, align 4 @@ -236,7 +236,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %114, !llvm.loop !11 158: ; preds = %114 br label %159 @@ -245,7 +245,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %108, !llvm.loop !12 162: ; preds = %108 %163 = load i32*, i32** %7, align 8 @@ -306,7 +306,7 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { %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 + br label %171, !llvm.loop !13 207: ; preds = %171 %208 = load i32, i32* %9, align 4 @@ -317,10 +317,10 @@ define dso_local i32 @_Z3lbsPii(i32* %0, i32 %1) #0 { declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #1 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #2 +declare noundef nonnull i8* @_Znam(i64 noundef) #2 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #3 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [16 x i32], align 16 %3 = alloca i32, align 4 @@ -330,34 +330,38 @@ define dso_local i32 @main() #3 { 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) + %7 = call noundef i32 @_Z3lbsPii(i32* noundef %5, i32 noundef %6) + %8 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0), i32 noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #2 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { argmemonly nofree nounwind willreturn } +attributes #5 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #6 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} 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-llvm14/longest-even-length-substring-sum-first-second-half.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-even-length-substring-sum-first-second-half.ll index 1265223d..1e5d500b 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-even-length-substring-sum-first-second-half.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-even-length-substring-sum-first-second-half.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z10findLengthPc(i8* noundef %0) #4 { %2 = alloca i8*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -57,7 +57,7 @@ define dso_local i32 @_Z10findLengthPc(i8* %0) #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 + %14 = call i64 @strlen(i8* noundef %13) #9 %15 = trunc i64 %14 to i32 store i32 %15, i32* %3, align 4 store i32 0, i32* %4, align 4 @@ -102,7 +102,7 @@ define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { %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 + br label %23, !llvm.loop !6 45: ; preds = %23 store i32 2, i32* %9, align 4 @@ -214,7 +214,7 @@ define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { %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 + br label %51, !llvm.loop !8 130: ; preds = %51 br label %131 @@ -223,7 +223,7 @@ define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { %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 + br label %46, !llvm.loop !9 134: ; preds = %46 %135 = load i32, i32* %4, align 4 @@ -233,7 +233,7 @@ define dso_local i32 @_Z10findLengthPc(i8* %0) #4 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 +declare i64 @strlen(i8* noundef) #5 ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #6 @@ -241,26 +241,26 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %6 = call noundef i32 @_Z10findLengthPc(i8* noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp() #0 section ".text.startup" { @@ -268,23 +268,27 @@ define internal void @_GLOBAL__sub_I_longest_even_length_substring_sum_first_sec 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll index c48b6bec..3230e872 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-increasing-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-increasing-subsequence.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4_lisPiiS_(i32* noundef %0, i32 noundef %1, i32* noundef %2) #0 { %4 = alloca i32, align 4 %5 = alloca i32*, align 8 %6 = alloca i32, align 4 @@ -41,7 +41,7 @@ define dso_local i32 @_Z4_lisPiiS_(i32* %0, i32 %1, i32* %2) #0 { %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) + %23 = call noundef i32 @_Z4_lisPiiS_(i32* noundef %20, i32 noundef %21, i32* noundef %22) store i32 %23, i32* %8, align 4 %24 = load i32*, i32** %5, align 8 %25 = load i32, i32* %10, align 4 @@ -78,7 +78,7 @@ define dso_local i32 @_Z4_lisPiiS_(i32* %0, i32 %1, i32* %2) #0 { %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 + br label %15, !llvm.loop !6 49: ; preds = %15 %50 = load i32*, i32** %7, align 8 @@ -103,8 +103,8 @@ define dso_local i32 @_Z4_lisPiiS_(i32* %0, i32 %1, i32* %2) #0 { ret i32 %60 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3lisPii(i32* %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3lisPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -113,13 +113,13 @@ define dso_local i32 @_Z3lisPii(i32* %0, i32 %1) #0 { 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) + %8 = call noundef i32 @_Z4_lisPiiS_(i32* noundef %6, i32 noundef %7, i32* noundef %5) %9 = load i32, i32* %5, align 4 ret i32 %9 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #1 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -129,25 +129,29 @@ define dso_local i32 @main() #1 { 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) + %7 = call noundef i32 @_Z3lisPii(i32* noundef %5, i32 noundef %6) + %8 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([21 x i8], [21 x i8]* @.str, i64 0, i64 0), i32 noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 +declare i32 @printf(i8* noundef, ...) #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" } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { argmemonly nofree nounwind willreturn } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll similarity index 62% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll index fb2d5927..63b2141e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindrome-substring.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindrome-substring.ll @@ -26,7 +26,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -34,21 +34,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -67,27 +67,27 @@ define dso_local void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traits 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) + %15 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8 noundef 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 + br label %8, !llvm.loop !6 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8 noundef 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* noundef %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 @@ -102,7 +102,7 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr %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 + %16 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 %17 = trunc i64 %16 to i32 store i32 %17, i32* %2, align 4 %18 = load i32, i32* %2, align 4 @@ -142,7 +142,7 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr %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 + br label %26, !llvm.loop !8 41: ; preds = %26 store i32 0, i32* %8, align 4 @@ -159,13 +159,13 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr 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) + %50 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %56 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %55) %57 = load i8, i8* %56, align 1 %58 = sext i8 %57 to i32 %59 = icmp eq i32 %52, %58 @@ -193,7 +193,7 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr %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 + br label %42, !llvm.loop !9 74: ; preds = %42 store i32 3, i32* %10, align 4 @@ -240,12 +240,12 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr 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) + %106 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %111 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %110) %112 = load i8, i8* %111, align 1 %113 = sext i8 %112 to i32 %114 = icmp eq i32 %108, %113 @@ -282,7 +282,7 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr %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 + br label %80, !llvm.loop !10 134: ; preds = %80 br label %135 @@ -291,21 +291,21 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr %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 + br label %75, !llvm.loop !11 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) + %139 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([34 x i8], [34 x i8]* @.str, i64 0, i64 0)) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z11printSubStrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %13, i32 noundef %140, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #3 %146 = load i32, i32* %6, align 4 %147 = load i8*, i8** %3, align 8 call void @llvm.stackrestore(i8* %147) @@ -318,7 +318,7 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %13) #3 br label %152 152: ; preds = %148 @@ -330,28 +330,28 @@ define dso_local i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_tr } ; Function Attrs: nounwind -declare dso_local i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) #2 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) #2 ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #5 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -359,31 +359,31 @@ define dso_local i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* noundef 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)) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + %8 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, %"class.std::__cxx11::basic_string"* noundef 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) + %11 = invoke noundef i32 @_Z16longestPalSubstrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%"class.std::__cxx11::basic_string"* noundef %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) + %13 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %8, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %15 = load i32, i32* %1, align 4 ret i32 %15 @@ -394,7 +394,7 @@ define dso_local i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %29 20: ; preds = %9, %7 @@ -413,11 +413,11 @@ define dso_local i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %29 29: ; preds = %28, %16 @@ -429,14 +429,14 @@ define dso_local i32 @main() #7 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_longest_palindrome_substring.cpp() #0 section ".text.startup" { @@ -444,23 +444,27 @@ define internal void @_GLOBAL__sub_I_longest_palindrome_substring.cpp() #0 secti 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll similarity index 75% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll index 9c57f7c6..8df181b7 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-palindromic-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-palindromic-subsequence.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3maxii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -30,8 +30,8 @@ define dso_local i32 @_Z3maxii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3lpsPc(i8* %0) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3lpsPc(i8* noundef %0) #0 { %2 = alloca i8*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -42,7 +42,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { %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 + %11 = call i64 @strlen(i8* noundef %10) #6 %12 = trunc i64 %11 to i32 store i32 %12, i32* %3, align 4 %13 = load i32, i32* %3, align 4 @@ -79,7 +79,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { %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 + br label %20, !llvm.loop !6 35: ; preds = %20 store i32 2, i32* %6, align 4 @@ -198,7 +198,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { %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) + %129 = call noundef i32 @_Z3maxii(i32 noundef %119, i32 noundef %128) %130 = load i32, i32* %4, align 4 %131 = sext i32 %130 to i64 %132 = mul nsw i64 %131, %16 @@ -219,7 +219,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { %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 + br label %41, !llvm.loop !8 142: ; preds = %41 br label %143 @@ -228,7 +228,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { %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 + br label %36, !llvm.loop !9 146: ; preds = %36 %147 = mul nsw i64 0, %16 @@ -244,7 +244,7 @@ define dso_local i32 @_Z3lpsPc(i8* %0) #0 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #1 +declare i64 @strlen(i8* noundef) #1 ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #2 @@ -252,8 +252,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [16 x i8], align 16 %3 = alloca i32, align 4 @@ -261,37 +261,41 @@ define dso_local i32 @main() #3 { %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 + %6 = call i64 @strlen(i8* noundef %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) + %9 = call noundef i32 @_Z3lpsPc(i8* noundef %8) + %10 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([28 x i8], [28 x i8]* @.str, i64 0, i64 0), i32 noundef %9) %11 = call i32 @getchar() ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #5 -declare dso_local i32 @getchar() #5 +declare 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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { argmemonly nofree nounwind willreturn } +attributes #5 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #6 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll similarity index 73% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll index f16b1c68..a0cbaee4 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/longest-path-directed-acyclic-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/longest-path-directed-acyclic-graph.ll @@ -315,7 +315,7 @@ $_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 +@_ZSt4cout = external 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 @@ -328,21 +328,21 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -361,7 +361,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #16 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -375,7 +375,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -393,20 +393,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +define dso_local void @_ZN5GraphD2Ev(%class.Graph* noundef nonnull align 8 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 @@ -427,12 +427,12 @@ define dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZdaPv(i8* noundef %9) #17 br label %19 19: ; preds = %18, %1 @@ -440,20 +440,20 @@ define dso_local void @_ZN5GraphD2Ev(%class.Graph* nonnull dereferenceable(16) % } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %4) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #7 +declare void @_ZdaPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #8 align 2 { %5 = alloca %class.Graph*, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 @@ -466,18 +466,18 @@ define dso_local void @_ZN5Graph7addEdgeEiii(%class.Graph* nonnull dereferenceab %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) + call void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %9, i32 noundef %11, i32 noundef %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) + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, %class.AdjListNode* noundef 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 { +define linkonce_odr dso_local void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %0, i32 noundef %1, i32 noundef %2) unnamed_addr #6 comdat align 2 { %4 = alloca %class.AdjListNode*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -494,26 +494,26 @@ define linkonce_odr dso_local void @_ZN11AdjListNodeC2Eii(%class.AdjListNode* no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9push_backERKS1_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %class.AdjListNode* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, %class.AdjListNode* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, %"class.std::stack"* noundef 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 @@ -532,13 +532,13 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -552,19 +552,19 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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 + %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %35 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* noundef 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 + %37 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %41 = call noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %12) %42 = sext i32 %41 to i64 %43 = getelementptr inbounds i8, i8* %40, i64 %42 %44 = load i8, i8* %43, align 1 @@ -572,27 +572,27 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa br i1 %45, label %50, label %46 46: ; preds = %36 - %47 = call i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* nonnull dereferenceable(8) %12) + %47 = call noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 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) + call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %13, i32 noundef %47, i8* noundef %48, %"class.std::stack"* noundef 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 + %52 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #3 + br label %27, !llvm.loop !6 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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %54, i32* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -601,8 +601,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"s 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -613,17 +613,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -638,8 +638,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNo 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -648,26 +648,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 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 @@ -676,8 +676,8 @@ define linkonce_odr dso_local i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* n 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -690,8 +690,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -699,12 +699,12 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -724,7 +724,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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 @@ -735,7 +735,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + %28 = invoke noalias noundef nonnull i8* @_Znam(i64 noundef %27) #16 to label %29 unwind label %43 29: ; preds = %2 @@ -762,7 +762,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + br label %30, !llvm.loop !8 43: ; preds = %177, %171, %168, %144, %137, %124, %121, %94, %92, %87, %62, %2 %44 = landingpad { i8*, i32 } @@ -771,7 +771,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) #3 br label %191 47: ; preds = %30 @@ -799,7 +799,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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) + invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %19, i32 noundef %63, i8* noundef %64, %"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) to label %65 unwind label %43 65: ; preds = %62 @@ -812,7 +812,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + br label %48, !llvm.loop !9 70: ; preds = %48 store i32 0, i32* %13, align 4 @@ -836,7 +836,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + br label %71, !llvm.loop !10 83: ; preds = %71 %84 = load i32, i32* %4, align 4 @@ -846,7 +846,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc br label %87 87: ; preds = %155, %83 - %88 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %5) + %88 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) to label %89 unwind label %43 89: ; preds = %87 @@ -855,17 +855,17 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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) + %93 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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) + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt14_List_iteratorI11AdjListNodeEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -879,7 +879,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + %108 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -893,15 +893,15 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + %118 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %120 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorI11AdjListNodeES3_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15, %"struct.std::_List_iterator"* noundef 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) + %122 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + %123 = invoke noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %122) to label %124 unwind label %43 124: ; preds = %121 @@ -912,8 +912,8 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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) + %132 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + %133 = invoke noundef i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %132) to label %134 unwind label %43 134: ; preds = %124 @@ -926,14 +926,14 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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) + %142 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + %143 = invoke noundef i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* noundef nonnull align 4 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) + %146 = call noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + %147 = invoke noundef i32 @_ZN11AdjListNode4getVEv(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %146) to label %148 unwind label %43 148: ; preds = %144 @@ -946,14 +946,14 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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 + %153 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorI11AdjListNodeEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %15) #3 + br label %112, !llvm.loop !11 154: ; preds = %112 br label %155 155: ; preds = %154, %96 - br label %87, !llvm.loop !8 + br label %87, !llvm.loop !12 156: ; preds = %89 store i32 0, i32* %18, align 4 @@ -975,7 +975,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc 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)) + %169 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0)) to label %170 unwind label %43 170: ; preds = %168 @@ -986,11 +986,11 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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) + %176 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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)) + %178 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %176, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) to label %179 unwind label %43 179: ; preds = %177 @@ -1004,7 +1004,7 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc %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 + br label %157, !llvm.loop !13 185: ; preds = %157 %186 = load i8*, i8** %8, align 8 @@ -1012,13 +1012,13 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc br i1 %187, label %189, label %188 188: ; preds = %185 - call void @_ZdaPv(i8* %186) #17 + call void @_ZdaPv(i8* noundef %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 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %5) #3 ret void 191: ; preds = %43 @@ -1030,66 +1030,66 @@ define dso_local void @_ZN5Graph11longestPathEi(%class.Graph* nonnull dereferenc } ; 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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) ret void } ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #11 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %class.AdjListNode* @_ZNKSt14_List_iteratorI11AdjListNodeEptEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNode* noundef nonnull align 4 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 @@ -1098,93 +1098,93 @@ define linkonce_odr dso_local i32 @_ZN11AdjListNode9getWeightEv(%class.AdjListNo 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 6) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 3, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 2, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 4, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 5, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 5, i32 noundef 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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4, i32 noundef -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) + invoke void @_ZN5Graph7addEdgeEiii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 5, i32 noundef -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)) + %16 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %19 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i32 noundef %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)) + %21 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %19, i8* noundef 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) + invoke void @_ZN5Graph11longestPathEi(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef %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 + call void @_ZN5GraphD1Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 %25 = load i32, i32* %1, align 4 ret i32 %25 @@ -1195,7 +1195,7 @@ define dso_local i32 @main() #12 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZN5GraphD1Ev(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) #3 br label %30 30: ; preds = %26 @@ -1207,57 +1207,57 @@ define dso_local i32 @main() #12 personality i8* bitcast (i32 (...)* @__gxx_pers } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -1274,18 +1274,18 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EED2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE8_M_clearEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1318,17 +1318,17 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 %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) + %26 = invoke noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %28 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %28, %class.AdjListNode* noundef %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 + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::_List_node"* noundef %30) #3 + br label %12, !llvm.loop !14 31: ; preds = %12 ret void @@ -1342,22 +1342,22 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE10_List_implD2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef %class.AdjListNode* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(8) %4) #3 ret %class.AdjListNode* %5 } @@ -1368,12 +1368,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE7destroyIS1_EEvRS3_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* noundef %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 @@ -1381,12 +1381,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11 %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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, %class.AdjListNode* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1395,8 +1395,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_put_nodeEPSt10_List_nodeIS1_E(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::_List_node"* noundef %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 @@ -1405,7 +1405,7 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %"struct.std::_List_node"* noundef %8, i64 noundef 1) to label %9 unwind label %10 9: ; preds = %2 @@ -1419,18 +1419,18 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %class.AdjListNode* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNodeE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1439,8 +1439,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufI11AdjListNode 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE7destroyIS2_EEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* noundef %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 @@ -1450,8 +1450,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1462,12 +1462,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11 %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE10deallocateEPS3_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1477,25 +1477,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #7 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeI11AdjListNodeEED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1503,7 +1503,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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*) { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -1511,16 +1511,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator.0"* noundef 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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -1531,7 +1531,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -1540,8 +1540,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator.0"* noundef 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 @@ -1550,8 +1550,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1562,12 +1562,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_D %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1578,12 +1578,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1593,7 +1593,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1616,7 +1616,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %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 @@ -1625,17 +1625,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -1664,8 +1664,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #9 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -1687,21 +1687,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + br label %10, !llvm.loop !15 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -1712,14 +1712,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -1729,7 +1729,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -1739,17 +1739,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -1758,11 +1758,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -1776,8 +1776,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #8 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1788,12 +1788,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #9 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #9 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1813,8 +1813,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #9 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %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 @@ -1824,25 +1824,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #8 comdat align 2 { %4 = alloca %"class.std::allocator.3"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -1853,22 +1853,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1878,27 +1878,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -1908,12 +1908,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -1921,25 +1921,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_insertIJRKS1_EEEvSt14_List_iteratorIS1_EDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, %class.AdjListNode* noundef 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 @@ -1950,21 +1950,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE9_M_ 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) + %11 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, %class.AdjListNode* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listI11AdjListNodeSaIS1_EE14_M_create_nodeIJRKS1_EEEPSt10_List_nodeIS1_EDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %class.AdjListNode* noundef 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 @@ -1974,28 +1974,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listI11A 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef %class.AdjListNode* @_ZNSt10_List_nodeI11AdjListNodeE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %class.AdjListNode* noundef %17, %class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef 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 @@ -2003,10 +2003,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %class.AdjListN } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -2022,19 +2022,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseI11AdjListNodeSaIS1_EE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEC2ERS3_PS2_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -2044,7 +2044,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11A %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_(%"class.std::allocator"* noundef 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 @@ -2052,8 +2052,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11A 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE9constructIS1_JRKS1_EEEvRS3_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* noundef %1, %class.AdjListNode* noundef 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 @@ -2064,13 +2064,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeI11 %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 + %11 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef nonnull align 4 dereferenceable(8) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %class.AdjListNode* noundef %9, %class.AdjListNode* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -2082,7 +2082,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11AdjListNodeEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -2096,7 +2096,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11A %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE10deallocateERS3_PS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -2113,8 +2113,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeI11A 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeI11AdjListNodeEEE8allocateERS3_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2122,12 +2122,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #8 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -2136,24 +2136,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #20 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -2161,21 +2170,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeI11AdjListNodeEEEPT_RS4_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI11AdjListNodeEE9constructIS2_JRKS2_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %class.AdjListNode* noundef %1, %class.AdjListNode* noundef 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 @@ -2187,7 +2199,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(8) %class.AdjListNode* @_ZSt7forwardIRK11AdjListNodeEOT_RNSt16remove_referenceIS3_E4typeE(%class.AdjListNode* noundef 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) @@ -2195,7 +2207,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -2207,8 +2219,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorI11AdjListNodeEC2EPNSt8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -2241,7 +2253,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -2254,15 +2266,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -2273,31 +2285,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -2316,8 +2328,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -2329,7 +2341,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -2345,8 +2357,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -2358,22 +2370,22 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2385,26 +2397,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2438,27 +2450,27 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -2473,20 +2485,20 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -2497,50 +2509,56 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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) + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #9 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2555,18 +2573,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #9 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2594,25 +2612,25 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #8 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2713,7 +2731,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -2733,7 +2751,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2749,14 +2767,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2793,7 +2811,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2805,7 +2823,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2826,7 +2844,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2835,12 +2853,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2848,16 +2866,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2865,16 +2883,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #9 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2902,8 +2920,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2912,13 +2930,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -2928,7 +2946,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -2939,8 +2957,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2948,26 +2966,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #9 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #9 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2976,8 +2994,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2987,20 +3005,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #9 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3010,12 +3028,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #9 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3051,11 +3069,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3063,18 +3081,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3084,12 +3102,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3099,12 +3117,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #9 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3144,8 +3162,8 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -3153,12 +3171,12 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -3167,32 +3185,41 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #20 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -3200,12 +3227,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -3214,45 +3241,54 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #19 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #20 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -3265,7 +3301,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -3277,19 +3313,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -3303,7 +3339,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -3311,7 +3347,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -3321,7 +3357,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -3345,7 +3381,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -3371,7 +3407,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -3401,13 +3437,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -3424,7 +3460,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -3453,17 +3489,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -3472,14 +3508,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -3487,7 +3523,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3502,8 +3538,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -3525,7 +3561,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -3537,7 +3573,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !16 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -3553,7 +3589,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #19 to label %47 unwind label %33 @@ -3594,12 +3630,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3611,12 +3647,12 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.s %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 + %12 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -3631,20 +3667,20 @@ define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #3 + %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3659,7 +3695,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %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 @@ -3674,8 +3710,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3684,8 +3720,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3714,18 +3750,18 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: %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 + %26 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %26, i32* noundef %32) #3 br label %35 33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %34 unwind label %36 34: ; preds = %33 @@ -3742,8 +3778,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3751,12 +3787,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3767,7 +3803,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4, i32* noundef %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"* @@ -3779,7 +3815,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %14, i32** noundef %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"* @@ -3794,19 +3830,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + %35 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %35, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3822,41 +3858,45 @@ define internal void @_GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp() # 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { argmemonly nofree 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 #12 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #15 = { argmemonly nofree 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll index 082b4668..4c1d4232 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/m-coloring-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/m-coloring-problem.ll @@ -9,8 +9,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafeiPA4_bPii(i32 noundef %0, [4 x i8]* noundef %1, i32* noundef %2, i32 noundef %3) #0 { %5 = alloca i1, align 1 %6 = alloca i32, align 4 %7 = alloca [4 x i8]*, align 8 @@ -62,7 +62,7 @@ define dso_local zeroext i1 @_Z6isSafeiPA4_bPii(i32 %0, [4 x i8]* %1, i32* %2, i %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 + br label %11, !llvm.loop !6 37: ; preds = %11 store i1 true, i1* %5, align 1 @@ -73,8 +73,8 @@ define dso_local zeroext i1 @_Z6isSafeiPA4_bPii(i32 %0, [4 x i8]* %1, i32* %2, i 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* noundef %0, i32 noundef %1, i32* noundef %2, i32 noundef %3) #1 { %5 = alloca i1, align 1 %6 = alloca [4 x i8]*, align 8 %7 = alloca i32, align 4 @@ -108,7 +108,7 @@ define dso_local zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %0, i32 %1 %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) + %24 = call noundef zeroext i1 @_Z6isSafeiPA4_bPii(i32 noundef %20, [4 x i8]* noundef %21, i32* noundef %22, i32 noundef %23) br i1 %24, label %25, label %45 25: ; preds = %19 @@ -123,7 +123,7 @@ define dso_local zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %0, i32 %1 %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) + %36 = call noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* noundef %31, i32 noundef %32, i32* noundef %33, i32 noundef %35) %37 = zext i1 %36 to i32 %38 = icmp eq i32 %37, 1 br i1 %38, label %39, label %40 @@ -147,7 +147,7 @@ define dso_local zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %0, i32 %1 %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 + br label %15, !llvm.loop !8 49: ; preds = %15 store i1 false, i1* %5, align 1 @@ -158,8 +158,8 @@ define dso_local zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* %0, i32 %1 ret i1 %51 } -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* %0, i32 %1) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* noundef %0, i32 noundef %1) #1 { %3 = alloca i1, align 1 %4 = alloca [4 x i8]*, align 8 %5 = alloca i32, align 4 @@ -186,25 +186,25 @@ define dso_local zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* %0, i32 %1) #1 { %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 + br label %8, !llvm.loop !9 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) + %22 = call noundef zeroext i1 @_Z17graphColoringUtilPA4_biPii([4 x i8]* noundef %19, i32 noundef %20, i32* noundef %21, i32 noundef 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)) + %26 = call i32 (i8*, ...) @printf(i8* noundef 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) + call void @_Z13printSolutionPi(i32* noundef %28) store i1 true, i1* %3, align 1 br label %29 @@ -213,14 +213,14 @@ define dso_local zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* %0, i32 %1) #1 { ret i1 %30 } -declare dso_local i32 @printf(i8*, ...) #2 +declare i32 @printf(i8* noundef, ...) #2 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPi(i32* %0) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPi(i32* noundef %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)) + %4 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([53 x i8], [53 x i8]* @.str.1, i64 0, i64 0)) store i32 0, i32* %3, align 4 br label %5 @@ -235,22 +235,22 @@ define dso_local void @_Z13printSolutionPi(i32* %0) #1 { %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) + %14 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), i32 noundef %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 + br label %5, !llvm.loop !10 18: ; preds = %5 - %19 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.3, i64 0, i64 0)) + %19 = call i32 (i8*, ...) @printf(i8* noundef 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 %2 = alloca [4 x [4 x i8]], align 16 %3 = alloca i32, align 4 @@ -260,26 +260,30 @@ define dso_local i32 @main() #3 { 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) + %7 = call noundef zeroext i1 @_Z13graphColoringPA4_bi([4 x i8]* noundef %5, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 } +attributes #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/magic-square.ll similarity index 61% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/magic-square.ll index 4ac2f8ac..53fa116e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/magic-square.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/magic-square.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z14generateSquarei(i32 %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z14generateSquarei(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -146,7 +146,7 @@ define dso_local void @_Z14generateSquarei(i32 %0) #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 + br label %23, !llvm.loop !6 66: ; preds = %51 %67 = load i32, i32* %8, align 4 @@ -169,13 +169,13 @@ define dso_local void @_Z14generateSquarei(i32 %0) #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 + br label %23, !llvm.loop !6 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)) + %82 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %84 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %82, i32 noundef %83) + %85 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %84, i8* noundef 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 @@ -183,8 +183,8 @@ define dso_local void @_Z14generateSquarei(i32 %0) #4 { %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)) + %93 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %85, i32 noundef %92) + %94 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %93, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.2, i64 0, i64 0)) store i32 0, i32* %6, align 4 br label %95 @@ -213,25 +213,25 @@ define dso_local void @_Z14generateSquarei(i32 %0) #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)) + %113 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %112) + %114 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %113, i8* noundef 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 + br label %100, !llvm.loop !8 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_) + %119 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %95, !llvm.loop !9 123: ; preds = %95 %124 = load i8*, i8** %3, align 8 @@ -242,28 +242,28 @@ define dso_local void @_Z14generateSquarei(i32 %0) #4 { ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #5 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z14generateSquarei(i32 noundef %3) ret i32 0 } @@ -273,21 +273,25 @@ define internal void @_GLOBAL__sub_I_magic_square.cpp() #0 section ".text.startu 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll index 5fbea8fa..cdde9001 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/matrix-chain-multiplication.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/matrix-chain-multiplication.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z16MatrixChainOrderPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -90,7 +90,7 @@ define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { %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 + br label %20, !llvm.loop !6 35: ; preds = %20 store i32 2, i32* %11, align 4 @@ -210,7 +210,7 @@ define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { %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 + br label %61, !llvm.loop !8 127: ; preds = %61 br label %128 @@ -219,7 +219,7 @@ define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { %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 + br label %41, !llvm.loop !9 131: ; preds = %41 br label %132 @@ -228,7 +228,7 @@ define dso_local i32 @_Z16MatrixChainOrderPii(i32* %0, i32 %1) #4 { %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 + br label %36, !llvm.loop !10 135: ; preds = %36 %136 = mul nsw i64 1, %16 @@ -249,8 +249,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -258,23 +258,23 @@ define dso_local i32 @main() #6 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %8 = call noundef i32 @_Z16MatrixChainOrderPii(i32* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %8) %10 = call i32 @getchar() ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -declare dso_local i32 @getchar() #1 +declare i32 @getchar() #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_matrix_chain_multiplication.cpp() #0 section ".text.startup" { @@ -282,22 +282,26 @@ define internal void @_GLOBAL__sub_I_matrix_chain_multiplication.cpp() #0 sectio 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll index 416edf66..bc7a4d87 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-length-chain-of-pairs.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-length-chain-of-pairs.ll @@ -24,27 +24,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z14maxChainLengthP4Pairi(%class.Pair* noundef %0, i32 noundef %1) #4 { %3 = alloca %class.Pair*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -61,7 +61,7 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #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 + %16 = call noalias noundef nonnull i8* @_Znam(i64 noundef %15) #9 %17 = bitcast i8* %16 to i32* store i32* %17, i32** %8, align 8 store i32 0, i32* %5, align 4 @@ -85,7 +85,7 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { %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 + br label %18, !llvm.loop !6 30: ; preds = %18 store i32 1, i32* %5, align 4 @@ -159,7 +159,7 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { %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 + br label %36, !llvm.loop !8 82: ; preds = %36 br label %83 @@ -168,7 +168,7 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { %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 + br label %31, !llvm.loop !9 86: ; preds = %31 store i32 0, i32* %5, align 4 @@ -206,7 +206,7 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { %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 + br label %87, !llvm.loop !10 109: ; preds = %87 %110 = load i32, i32* %7, align 4 @@ -217,10 +217,10 @@ define dso_local i32 @_Z14maxChainLengthP4Pairi(%class.Pair* %0, i32 %1) #4 { declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 +declare noundef nonnull i8* @_Znam(i64 noundef) #6 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [4 x %class.Pair], align 16 %3 = alloca i32, align 4 @@ -228,20 +228,20 @@ define dso_local i32 @main() #7 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %8 = call noundef i32 @_Z14maxChainLengthP4Pairi(%class.Pair* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp() #0 section ".text.startup" { @@ -249,24 +249,28 @@ define internal void @_GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp() #0 sect 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} 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-llvm14/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll index 19210122..144b2a78 100644 --- 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-llvm14/maximum-profit-by-buying-and-selling-a-share-at-most-twice.ll @@ -25,27 +25,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z9maxProfitPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32*, align 8 @@ -65,7 +65,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #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 + %20 = call noalias noundef nonnull i8* @_Znam(i64 noundef %19) #11 %21 = bitcast i8* %20 to i32* store i32* %21, i32** %5, align 8 store i32 0, i32* %6, align 4 @@ -89,7 +89,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { %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 + br label %22, !llvm.loop !6 34: ; preds = %22 %35 = load i32*, i32** %3, align 8 @@ -142,7 +142,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { %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) + %73 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %65, i32* noundef 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 @@ -155,7 +155,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { %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 + br label %43, !llvm.loop !8 82: ; preds = %43 %83 = load i32*, i32** %3, align 8 @@ -210,7 +210,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #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) + %123 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %109, i32* noundef 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 @@ -223,7 +223,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { %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 + br label %86, !llvm.loop !9 132: ; preds = %86 %133 = load i32*, i32** %5, align 8 @@ -239,7 +239,7 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { 141: ; preds = %132 %142 = bitcast i32* %139 to i8* - call void @_ZdaPv(i8* %142) #12 + call void @_ZdaPv(i8* noundef %142) #12 br label %143 143: ; preds = %141, %132 @@ -251,10 +251,10 @@ define dso_local i32 @_Z9maxProfitPii(i32* %0, i32 %1) #4 { declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #5 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #7 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -283,10 +283,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #8 +declare void @_ZdaPv(i8* noundef) #8 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #9 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #9 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -294,20 +294,20 @@ define dso_local i32 @main() #9 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %8 = call noundef i32 @_Z9maxProfitPii(i32* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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" { @@ -315,26 +315,30 @@ define internal void @_GLOBAL__sub_I_maximum_profit_by_buying_and_selling_a_shar 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { argmemonly nofree nounwind willreturn } attributes #11 = { builtin allocsize(0) } attributes #12 = { builtin nounwind } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} 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-llvm14/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll index 93ce347a..7892e600 100644 --- 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-llvm14/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.ll @@ -24,7 +24,7 @@ $_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 +@_ZSt4cout = external 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 @@ -33,21 +33,21 @@ $_ZSt3minIiERKT_S2_S2_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* noundef %0) #4 { %2 = alloca [5 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -82,7 +82,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %9, !llvm.loop !6 26: ; preds = %9 store i32 0, i32* %4, align 4 @@ -111,7 +111,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %27, !llvm.loop !8 44: ; preds = %27 store i32 1, i32* %3, align 4 @@ -166,8 +166,8 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #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) + %85 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %76, i32* noundef nonnull align 4 dereferenceable(4) %84) + %86 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %69, i32* noundef 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 @@ -196,7 +196,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %49, !llvm.loop !9 106: ; preds = %49 br label %107 @@ -205,7 +205,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %45, !llvm.loop !10 110: ; preds = %45 %111 = getelementptr inbounds [6 x [5 x i32]], [6 x [5 x i32]]* %5, i64 0, i64 0 @@ -265,7 +265,7 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %118, !llvm.loop !11 145: ; preds = %118 br label %146 @@ -274,10 +274,10 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #4 { %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 + br label %114, !llvm.loop !12 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)) + %150 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 @@ -312,32 +312,32 @@ define dso_local void @_Z17printMaxSubSquarePA5_i([5 x i32]* %0) #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)) + %175 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %174) + %176 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %175, i8* noundef 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 + br label %160, !llvm.loop !13 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)) + %181 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 + br label %152, !llvm.loop !14 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #5 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -365,21 +365,21 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z17printMaxSubSquarePA5_i([5 x i32]* noundef %3) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -388,26 +388,30 @@ define internal void @_GLOBAL__sub_I_maximum_size_sub_matrix_with_all_1s_in_a_bi 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll index b7d16358..880dcac3 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-increasing-subsequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-increasing-subsequence.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8maxSumISPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -85,7 +85,7 @@ define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { %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 + br label %14, !llvm.loop !6 30: ; preds = %14 store i32 1, i32* %5, align 4 @@ -163,7 +163,7 @@ define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { %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 + br label %36, !llvm.loop !8 86: ; preds = %36 br label %87 @@ -172,7 +172,7 @@ define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { %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 + br label %31, !llvm.loop !9 90: ; preds = %31 store i32 0, i32* %5, align 4 @@ -208,7 +208,7 @@ define dso_local i32 @_Z8maxSumISPii(i32* %0, i32 %1) #4 { %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 + br label %91, !llvm.loop !10 111: ; preds = %91 %112 = load i32, i32* %7, align 4 @@ -223,8 +223,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -232,25 +232,25 @@ define dso_local i32 @main() #6 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %8 = call noundef i32 @_Z8maxSumISPii(i32* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %9, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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" { @@ -258,22 +258,26 @@ define internal void @_GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp() #0 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} 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-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll index feda134e..c3c56074 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/maximum-sum-rectangle-in-a-2d-matrix.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/maximum-sum-rectangle-in-a-2d-matrix.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -33,21 +33,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z6kadanePiS_S_i(i32* noundef %0, i32* noundef %1, i32* noundef %2, i32 noundef %3) #4 { %5 = alloca i32, align 4 %6 = alloca i32*, align 8 %7 = alloca i32*, align 8 @@ -122,7 +122,7 @@ define dso_local i32 @_Z6kadanePiS_S_i(i32* %0, i32* %1, i32* %2, i32 %3) #4 { %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 + br label %15, !llvm.loop !6 47: ; preds = %15 %48 = load i32*, i32** %8, align 8 @@ -184,7 +184,7 @@ define dso_local i32 @_Z6kadanePiS_S_i(i32* %0, i32* %1, i32* %2, i32 %3) #4 { %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 + br label %59, !llvm.loop !8 84: ; preds = %59 %85 = load i32, i32* %11, align 4 @@ -196,8 +196,8 @@ define dso_local i32 @_Z6kadanePiS_S_i(i32* %0, i32* %1, i32* %2, i32 %3) #4 { ret i32 %87 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* noundef %0) #5 { %2 = alloca [5 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -264,11 +264,11 @@ define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* %0) #5 { %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 + br label %26, !llvm.loop !9 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) + %48 = call noundef i32 @_Z6kadanePiS_S_i(i32* noundef %47, i32* noundef %13, i32* noundef %14, i32 noundef 4) store i32 %48, i32* %12, align 4 %49 = load i32, i32* %12, align 4 %50 = load i32, i32* %3, align 4 @@ -295,7 +295,7 @@ define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* %0) #5 { %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 + br label %22, !llvm.loop !10 62: ; preds = %22 br label %63 @@ -304,56 +304,56 @@ define dso_local void @_Z10findMaxSumPA5_i([5 x i32]* %0) #5 { %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 + br label %15, !llvm.loop !11 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)) + %67 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %69 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %67, i32 noundef %68) + %70 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %69, i8* noundef 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)) + %72 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %70, i32 noundef %71) + %73 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %72, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) + %74 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %73, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %75 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %77 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %75, i32 noundef %76) + %78 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %77, i8* noundef 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)) + %80 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %78, i32 noundef %79) + %81 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %80, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) + %82 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %81, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) + %83 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %85 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %83, i32 noundef %84) + %86 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %85, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) ret void } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z10findMaxSumPA5_i([5 x i32]* noundef %4) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -362,24 +362,28 @@ define internal void @_GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp() 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll similarity index 68% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll index d1424cae..c658e3b3 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/merge-sort-for-doubly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/merge-sort-for-doubly-linked-list.ll @@ -23,7 +23,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -32,21 +32,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #4 { %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 %5 = alloca %class.Node*, align 8 @@ -86,7 +86,7 @@ define dso_local %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %0, %class.Node* % %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) + %28 = call noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %26, %class.Node* noundef %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 @@ -108,7 +108,7 @@ define dso_local %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %0, %class.Node* % %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) + %44 = call noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %40, %class.Node* noundef %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 @@ -130,8 +130,8 @@ define dso_local %class.Node* @_Z5mergeP4NodeS0_(%class.Node* %0, %class.Node* % ret %class.Node* %56 } -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Node* @_Z9mergeSortP4Node(%class.Node* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %0) #4 { %2 = alloca %class.Node*, align 8 %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 @@ -154,17 +154,17 @@ define dso_local %class.Node* @_Z9mergeSortP4Node(%class.Node* %0) #4 { 14: ; preds = %7 %15 = load %class.Node*, %class.Node** %3, align 8 - %16 = call %class.Node* @_Z5splitP4Node(%class.Node* %15) + %16 = call noundef %class.Node* @_Z5splitP4Node(%class.Node* noundef %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) + %18 = call noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %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) + %20 = call noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %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) + %23 = call noundef %class.Node* @_Z5mergeP4NodeS0_(%class.Node* noundef %21, %class.Node* noundef %22) store %class.Node* %23, %class.Node** %2, align 8 br label %24 @@ -173,8 +173,8 @@ define dso_local %class.Node* @_Z9mergeSortP4Node(%class.Node* %0) #4 { ret %class.Node* %25 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %class.Node* @_Z5splitP4Node(%class.Node* %0) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef %class.Node* @_Z5splitP4Node(%class.Node* noundef %0) #5 { %2 = alloca %class.Node*, align 8 %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 @@ -217,7 +217,7 @@ define dso_local %class.Node* @_Z5splitP4Node(%class.Node* %0) #5 { %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 + br label %8, !llvm.loop !6 31: ; preds = %20 %32 = load %class.Node*, %class.Node** %4, align 8 @@ -231,14 +231,14 @@ define dso_local %class.Node* @_Z5splitP4Node(%class.Node* %0) #5 { ret %class.Node* %37 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6insertPP4Nodei(%class.Node** %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6insertPP4Nodei(%class.Node** noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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) @@ -285,19 +285,19 @@ define dso_local void @_Z6insertPP4Nodei(%class.Node** %0, i32 %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 +declare noundef nonnull i8* @_Znwm(i64 noundef) #6 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5printP4Node(%class.Node* noundef %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([38 x i8], [38 x i8]* @.str, i64 0, i64 0)) br label %6 6: ; preds = %9, %1 @@ -309,18 +309,18 @@ define dso_local void @_Z5printP4Node(%class.Node* %0) #4 { %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)) + %13 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %13, i8* noundef 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 + br label %6, !llvm.loop !8 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)) + %20 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([40 x i8], [40 x i8]* @.str.2, i64 0, i64 0)) br label %21 21: ; preds = %24, %19 @@ -332,24 +332,24 @@ define dso_local void @_Z5printP4Node(%class.Node* %0) #4 { %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)) + %28 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %27) + %29 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %28, i8* noundef 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 + br label %21, !llvm.loop !9 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #5 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -368,24 +368,24 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #5 { ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 5) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 20) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 4) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 3) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 30) + call void @_Z6insertPP4Nodei(%class.Node** noundef %2, i32 noundef 10) %3 = load %class.Node*, %class.Node** %2, align 8 - %4 = call %class.Node* @_Z9mergeSortP4Node(%class.Node* %3) + %4 = call noundef %class.Node* @_Z9mergeSortP4Node(%class.Node* noundef %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z5printP4Node(%class.Node* noundef %6) ret i32 0 } @@ -395,23 +395,27 @@ define internal void @_GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp() #0 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn writeonly } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll index 42230888..367baa7c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mergeSort_LinkedList.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/mergeSort_LinkedList.ll @@ -23,28 +23,28 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9MergeSortPP4Node(%class.Node** %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9MergeSortPP4Node(%class.Node** noundef %0) #4 { %2 = alloca %class.Node**, align 8 %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 @@ -69,12 +69,12 @@ define dso_local void @_Z9MergeSortPP4Node(%class.Node** %0) #4 { 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) + call void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* noundef %17, %class.Node** noundef %4, %class.Node** noundef %5) + call void @_Z9MergeSortPP4Node(%class.Node** noundef %4) + call void @_Z9MergeSortPP4Node(%class.Node** noundef %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) + %20 = call noundef %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* noundef %18, %class.Node* noundef %19) %21 = load %class.Node**, %class.Node*** %2, align 8 store %class.Node* %20, %class.Node** %21, align 8 br label %22 @@ -83,8 +83,8 @@ define dso_local void @_Z9MergeSortPP4Node(%class.Node** %0) #4 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* %0, %class.Node** %1, %class.Node** %2) #5 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* noundef %0, %class.Node** noundef %1, %class.Node** noundef %2) #5 { %4 = alloca %class.Node*, align 8 %5 = alloca %class.Node**, align 8 %6 = alloca %class.Node**, align 8 @@ -127,7 +127,7 @@ define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* %0, %class.N br label %29 29: ; preds = %22, %16 - br label %13, !llvm.loop !2 + br label %13, !llvm.loop !6 30: ; preds = %13 %31 = load %class.Node*, %class.Node** %4, align 8 @@ -144,8 +144,8 @@ define dso_local void @_Z14FrontBackSplitP4NodePS0_S1_(%class.Node* %0, %class.N ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %0, %class.Node* %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #4 { %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 %5 = alloca %class.Node*, align 8 @@ -192,7 +192,7 @@ define dso_local %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %0, %class. %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) + %31 = call noundef %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* noundef %29, %class.Node* noundef %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 @@ -205,7 +205,7 @@ define dso_local %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %0, %class. %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) + %40 = call noundef %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* noundef %36, %class.Node* noundef %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 @@ -221,8 +221,8 @@ define dso_local %class.Node* @_Z11SortedMergeP4NodeS0_(%class.Node* %0, %class. ret %class.Node* %46 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%class.Node* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(%class.Node* noundef %0) #4 { %2 = alloca %class.Node*, align 8 store %class.Node* %0, %class.Node** %2, align 8 br label %3 @@ -236,30 +236,30 @@ define dso_local void @_Z9printListP4Node(%class.Node* %0) #4 { %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)) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %10, i8* noundef 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 + br label %3, !llvm.loop !8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(%class.Node** noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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) @@ -280,29 +280,29 @@ define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 +declare noundef nonnull i8* @_Znwm(i64 noundef) #6 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 15) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 10) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 5) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 20) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 3) + call void @_Z4pushPP4Nodei(%class.Node** noundef %3, i32 noundef 2) + call void @_Z9MergeSortPP4Node(%class.Node** noundef %3) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z9printListP4Node(%class.Node* noundef %5) ret i32 0 } @@ -312,22 +312,26 @@ define internal void @_GLOBAL__sub_I_mergeSort_LinkedList.cpp() #0 section ".tex 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn writeonly } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll similarity index 63% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll index eb29a652..46517977 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/min-cost-path.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/min-cost-path.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #0 { %4 = alloca i32, align 4 %5 = alloca [3 x i32]*, align 8 %6 = alloca i32, align 4 @@ -64,18 +64,18 @@ define dso_local i32 @_Z7minCostPA3_iii([3 x i32]* %0, i32 %1, i32 %2) #0 { %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) + %43 = call noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %38, i32 noundef %40, i32 noundef %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) + %48 = call noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %44, i32 noundef %46, i32 noundef %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) + %53 = call noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %49, i32 noundef %50, i32 noundef %52) + %54 = call noundef i32 @_Z3miniii(i32 noundef %43, i32 noundef %48, i32 noundef %53) %55 = add nsw i32 %37, %54 store i32 %55, i32* %4, align 4 br label %56 @@ -85,8 +85,8 @@ define dso_local i32 @_Z7minCostPA3_iii([3 x i32]* %0, i32 %1, i32 %2) #0 { ret i32 %57 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3miniii(i32 %0, i32 %1, i32 %2) #1 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3miniii(i32 noundef %0, i32 noundef %1, i32 noundef %2) #1 { %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -142,32 +142,36 @@ define dso_local i32 @_Z3miniii(i32 %0, i32 %1, i32 %2) #1 { ret i32 %32 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef i32 @_Z7minCostPA3_iii([3 x i32]* noundef %4, i32 noundef 2, i32 noundef 2) + %6 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 noundef %5) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #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" } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !0 = !{i32 1, !"wchar_size", i32 4} -!1 = !{!"Ubuntu clang version 12.0.0-++20210402082642+04ba60cfe598-1~exp1~20210402063359.71"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} 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-llvm14/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll similarity index 66% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll index 5f300d57..df7610ef 100644 --- 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-llvm14/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.ll @@ -22,27 +22,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5solvePii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5solvePii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -117,7 +117,7 @@ define dso_local void @_Z5solvePii(i32* %0, i32 %1) #4 { %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 + br label %13, !llvm.loop !6 51: ; preds = %13 %52 = load i32, i32* %8, align 4 @@ -132,7 +132,7 @@ define dso_local void @_Z5solvePii(i32* %0, i32 %1) #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) + %62 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %61) br label %71 63: ; preds = %51 @@ -142,17 +142,17 @@ define dso_local void @_Z5solvePii(i32* %0, i32 %1) #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) + %70 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -162,11 +162,11 @@ define dso_local i32 @main() #5 { 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) + call void @_Z5solvePii(i32* noundef %5, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -175,18 +175,22 @@ define internal void @_GLOBAL__sub_I_minimum_adjacent_swaps_to_move_maximum_and_ 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/minimum-cost-polygon-triangulation.ll similarity index 76% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cost-polygon-triangulation.ll index c1a3d4f6..5c788dc1 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cost-polygon-triangulation.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cost-polygon-triangulation.ll @@ -25,26 +25,26 @@ $_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local double @_Z3mindd(double %0, double %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef double @_Z3mindd(double noundef %0, double noundef %1) #4 { %3 = alloca double, align 8 %4 = alloca double, align 8 store double %0, double* %3, align 8 @@ -67,8 +67,8 @@ define dso_local double @_Z3mindd(double %0, double %1) #4 { ret double %13 } -; Function Attrs: noinline uwtable mustprogress -define dso_local double @_Z4dist5PointS_(i64 %0, i64 %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef 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* @@ -98,22 +98,22 @@ define dso_local double @_Z4dist5PointS_(i64 %0, i64 %1) #5 { %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) + %30 = call noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %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 + %5 = call double @sqrt(double noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef double @_Z4costP5Pointiii(%struct.Point* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #5 { %5 = alloca %struct.Point*, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 @@ -162,7 +162,7 @@ define dso_local double @_Z4costP5Pointiii(%struct.Point* %0, i32 %1, i32 %2, i3 %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) + %44 = call noundef 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) @@ -173,7 +173,7 @@ define dso_local double @_Z4costP5Pointiii(%struct.Point* %0, i32 %1, i32 %2, i3 %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) + %53 = call noundef 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* @@ -185,16 +185,16 @@ define dso_local double @_Z4costP5Pointiii(%struct.Point* %0, i32 %1, i32 %2, i3 %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) + %63 = call noundef double @_Z4dist5PointS_(i64 %60, i64 %62) %64 = fadd double %54, %63 ret double %64 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef double @_Z5mTCDPP5Pointi(%struct.Point* noundef %0, i32 noundef %1) #5 { %3 = alloca double, align 8 %4 = alloca %struct.Point*, align 8 %5 = alloca i32, align 4 @@ -308,7 +308,7 @@ define dso_local double @_Z5mTCDPP5Pointi(%struct.Point* %0, i32 %1) #5 { %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) + %84 = call noundef double @_Z4costP5Pointiii(%struct.Point* noundef %80, i32 noundef %81, i32 noundef %82, i32 noundef %83) %85 = fadd double %79, %84 store double %85, double* %13, align 8 %86 = load i32, i32* %10, align 4 @@ -342,7 +342,7 @@ define dso_local double @_Z5mTCDPP5Pointi(%struct.Point* %0, i32 %1) #5 { %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 + br label %58, !llvm.loop !6 109: ; preds = %58 br label %110 @@ -357,7 +357,7 @@ define dso_local double @_Z5mTCDPP5Pointi(%struct.Point* %0, i32 %1) #5 { %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 + br label %31, !llvm.loop !8 116: ; preds = %31 br label %117 @@ -366,7 +366,7 @@ define dso_local double @_Z5mTCDPP5Pointi(%struct.Point* %0, i32 %1) #5 { %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 + br label %25, !llvm.loop !9 120: ; preds = %25 %121 = mul nsw i64 0, %21 @@ -392,8 +392,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [5 x %struct.Point], align 16 %3 = alloca i32, align 4 @@ -420,18 +420,18 @@ define dso_local i32 @main() #8 { 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) + %18 = call noundef double @_Z5mTCDPP5Pointi(%struct.Point* noundef %16, i32 noundef %17) + %19 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEd(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, double noundef %18) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEd(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), double noundef) #1 ; Function Attrs: nounwind -declare dso_local double @sqrt(double) #2 +declare double @sqrt(double noundef) #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp() #0 section ".text.startup" { @@ -439,23 +439,27 @@ define internal void @_GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp() #0 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree 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 } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn writeonly } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll similarity index 74% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll index a0074066..9997b789 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-cut-in-a-directed-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-cut-in-a-directed-graph.ll @@ -206,7 +206,7 @@ $_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 +@_ZSt4cout = external 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 @@ -214,21 +214,21 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3bfsPA6_iiiPi([6 x i32]* noundef %0, i32 noundef %1, i32 noundef %2, i32* noundef %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 @@ -245,8 +245,8 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #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) + call void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10, i32* noundef nonnull align 4 dereferenceable(4) %6) to label %16 unwind label %64 16: ; preds = %4 @@ -262,7 +262,7 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 br label %24 24: ; preds = %72, %16 - %25 = invoke zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* nonnull dereferenceable(80) %10) + %25 = invoke noundef zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) to label %26 unwind label %64 26: ; preds = %24 @@ -270,13 +270,13 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 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) + %29 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* noundef nonnull align 8 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) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) to label %32 unwind label %64 32: ; preds = %30 @@ -311,7 +311,7 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 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) + invoke void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10, i32* noundef nonnull align 4 dereferenceable(4) %14) to label %55 unwind label %64 55: ; preds = %54 @@ -334,7 +334,7 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 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 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) #3 br label %82 68: ; preds = %55, %44, %36 @@ -344,10 +344,10 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 %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 + br label %33, !llvm.loop !6 72: ; preds = %33 - br label %24, !llvm.loop !4 + br label %24, !llvm.loop !8 73: ; preds = %26 %74 = load i32, i32* %7, align 4 @@ -358,7 +358,7 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 %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 + call void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %10) #3 ret i32 %81 82: ; preds = %64 @@ -369,23 +369,23 @@ define dso_local i32 @_Z3bfsPA6_iiiPi([6 x i32]* %0, i32 %1, i32 %2, i32* %3) #4 resume { i8*, i32 } %86 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::queue"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -393,54 +393,54 @@ define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef nonnull align 4 dereferenceable(4) %7) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5queueIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5queueIiSt5dequeIiSaIiEEE5frontEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEE3popEv(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt5queueIiSt5dequeIiSaIiEEED2Ev(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z3dfsPA6_iiPb([6 x i32]* noundef %0, i32 noundef %1, i8* noundef %2) #4 { %4 = alloca [6 x i32]*, align 8 %5 = alloca i32, align 4 %6 = alloca i8*, align 8 @@ -486,7 +486,7 @@ define dso_local void @_Z3dfsPA6_iiPb([6 x i32]* %0, i32 %1, i8* %2) #4 { %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) + call void @_Z3dfsPA6_iiPb([6 x i32]* noundef %33, i32 noundef %34, i8* noundef %35) br label %36 36: ; preds = %32, %25, %15 @@ -496,14 +496,14 @@ define dso_local void @_Z3dfsPA6_iiPb([6 x i32]* %0, i32 %1, i8* %2) #4 { %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 + br label %12, !llvm.loop !9 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6minCutPA6_iii([6 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca [6 x i32]*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -557,7 +557,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %19, !llvm.loop !10 40: ; preds = %19 br label %41 @@ -566,7 +566,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %15, !llvm.loop !11 44: ; preds = %15 br label %45 @@ -576,7 +576,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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) + %50 = call noundef i32 @_Z3bfsPA6_iiiPi([6 x i32]* noundef %46, i32 noundef %47, i32 noundef %48, i32* noundef %49) %51 = icmp ne i32 %50, 0 br i1 %51, label %52, label %111 @@ -604,7 +604,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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) + %69 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %11, i32* noundef nonnull align 4 dereferenceable(4) %68) %70 = load i32, i32* %69, align 4 store i32 %70, i32* %11, align 4 br label %71 @@ -615,7 +615,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %54, !llvm.loop !12 76: ; preds = %54 %77 = load i32, i32* %6, align 4 @@ -662,10 +662,10 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %78, !llvm.loop !13 110: ; preds = %78 - br label %45, !llvm.loop !10 + br label %45, !llvm.loop !14 111: ; preds = %45 %112 = getelementptr inbounds [6 x i8], [6 x i8]* %12, i64 0, i64 0 @@ -673,7 +673,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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) + call void @_Z3dfsPA6_iiPb([6 x i32]* noundef %113, i32 noundef %114, i8* noundef %115) store i32 0, i32* %13, align 4 br label %116 @@ -721,11 +721,11 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { 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)) + %147 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %146) + %148 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %147, i8* noundef 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_) + %150 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %148, i32 noundef %149) + %151 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %150, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %152 152: ; preds = %145, %135, %129, %123 @@ -735,7 +735,7 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %120, !llvm.loop !15 156: ; preds = %120 br label %157 @@ -744,14 +744,14 @@ define dso_local void @_Z6minCutPA6_iii([6 x i32]* %0, i32 %1, i32 %2) #4 { %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 + br label %116, !llvm.loop !16 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #6 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -779,31 +779,31 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z6minCutPA6_iii([6 x i32]* noundef %4, i32 noundef 0, i32 noundef 5) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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*) { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -811,16 +811,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator"* noundef 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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -831,7 +831,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -840,8 +840,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator"* noundef 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 @@ -850,8 +850,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -862,12 +862,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_D %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -878,12 +878,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -893,7 +893,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -916,7 +916,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %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 @@ -925,12 +925,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %30) #3 ret void } @@ -941,12 +941,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #10 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -975,8 +975,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -998,21 +998,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + br label %10, !llvm.loop !17 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -1023,14 +1023,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -1040,7 +1040,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -1050,17 +1050,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -1069,11 +1069,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -1087,8 +1087,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1099,12 +1099,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #6 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1124,8 +1124,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #6 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #6 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1135,28 +1135,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #11 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -1167,22 +1167,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1192,27 +1192,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -1222,12 +1222,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1235,17 +1235,17 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1253,25 +1253,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class. } ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* nonnull dereferenceable(80) %0) unnamed_addr #0 comdat align 2 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -1284,7 +1284,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -1296,19 +1296,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1322,7 +1322,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -1330,7 +1330,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -1340,7 +1340,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -1364,7 +1364,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -1390,7 +1390,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -1420,13 +1420,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -1443,7 +1443,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -1472,17 +1472,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -1491,14 +1491,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1506,7 +1506,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -1521,8 +1521,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -1550,8 +1550,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1560,13 +1560,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -1576,7 +1576,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -1587,8 +1587,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -1610,7 +1610,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -1622,7 +1622,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !18 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -1638,7 +1638,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #15 to label %47 unwind label %33 @@ -1679,12 +1679,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -1699,15 +1699,15 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1715,12 +1715,12 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -1729,24 +1729,33 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #16 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1754,25 +1763,28 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_siz } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #13 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1780,12 +1792,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1794,38 +1806,47 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #15 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #16 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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) +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #6 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -1858,7 +1879,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -1871,15 +1892,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1890,31 +1911,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -1933,8 +1954,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -1946,7 +1967,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -1962,8 +1983,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1975,22 +1996,22 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2002,26 +2023,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #12 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2055,20 +2076,20 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -2079,44 +2100,50 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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*) { + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2131,18 +2158,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #6 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2170,17 +2197,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2281,7 +2308,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -2301,7 +2328,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2317,14 +2344,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2361,7 +2388,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2373,7 +2400,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2394,7 +2421,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2403,12 +2430,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2416,16 +2443,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2433,16 +2460,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2450,26 +2477,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #6 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2478,8 +2505,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2489,20 +2516,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #6 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2512,12 +2539,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2553,11 +2580,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2565,18 +2592,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2586,12 +2613,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #4 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2601,12 +2628,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #6 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2646,8 +2673,8 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2659,12 +2686,12 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.s %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 + %12 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -2679,19 +2706,19 @@ define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE5frontEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2700,8 +2727,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2723,14 +2750,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: 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 + %20 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %20, i32* noundef %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"* @@ -2742,7 +2769,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: br label %36 34: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %35 unwind label %37 35: ; preds = %34 @@ -2759,8 +2786,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9pop_frontEv(%"class.std: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -2768,24 +2795,24 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i32* noundef %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 @@ -2793,7 +2820,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32* noundef %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"* @@ -2805,7 +2832,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %22, i32** noundef %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"* @@ -2821,8 +2848,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_pop_front_auxEv(%"cl 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -2838,39 +2865,43 @@ define internal void @_GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp() #0 se 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn writeonly } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree 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 #11 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #14 = { noreturn nounwind } attributes #15 = { noreturn } attributes #16 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} +!18 = distinct !{!18, !7} 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-llvm14/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll index 4b014c72..e295da99 100644 --- 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-llvm14/minimum-number-of-jumps-to-reach-end-of-a-given-array.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z3minii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -66,8 +66,8 @@ define dso_local i32 @_Z3minii(i32 %0, i32 %1) #4 { ret i32 %13 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8minJumpsPii(i32* noundef %0, i32 noundef %1) #5 { %3 = alloca i32, align 4 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -82,7 +82,7 @@ define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { %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 + %15 = call noalias noundef nonnull i8* @_Znam(i64 noundef %14) #10 %16 = bitcast i8* %15 to i32* store i32* %16, i32** %6, align 8 %17 = load i32, i32* %5, align 4 @@ -161,7 +161,7 @@ define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { %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) + %70 = call noundef i32 @_Z3minii(i32 noundef %63, i32 noundef %69) %71 = load i32*, i32** %6, align 8 %72 = load i32, i32* %7, align 4 %73 = sext i32 %72 to i64 @@ -176,7 +176,7 @@ define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { %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 + br label %37, !llvm.loop !6 79: ; preds = %58, %37 br label %80 @@ -185,7 +185,7 @@ define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { %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 + br label %28, !llvm.loop !8 83: ; preds = %28 %84 = load i32*, i32** %6, align 8 @@ -206,10 +206,10 @@ define dso_local i32 @_Z8minJumpsPii(i32* %0, i32 %1) #5 { declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #6 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #7 +declare noundef nonnull i8* @_Znam(i64 noundef) #7 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -217,20 +217,20 @@ define dso_local i32 @main() #8 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %8 = call noundef i32 @_Z8minJumpsPii(i32* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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" { @@ -238,23 +238,27 @@ define internal void @_GLOBAL__sub_I_minimum_number_of_jumps_to_reach_end_of_a_g 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #7 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } attributes #10 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll index 333f802b..c83bbb9c 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/minimum-positive-points-to-reach-destination.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/minimum-positive-points-to-reach-destination.ll @@ -27,27 +27,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16minInitialPointsPA3_i([3 x i32]* noundef %0) #4 { %2 = alloca [3 x i32]*, align 8 %3 = alloca [3 x [3 x i32]], align 16 %4 = alloca i32, align 4 @@ -93,7 +93,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { %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 + %40 = call i32 @abs(i32 noundef %39) #9 %41 = add nsw i32 %40, 1 br label %42 @@ -140,7 +140,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #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) + %77 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %7, i32* noundef 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 @@ -156,7 +156,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { %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 + br label %54, !llvm.loop !6 89: ; preds = %54 %90 = load i32, i32* %5, align 4 @@ -191,7 +191,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #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) + %115 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %10, i32* noundef 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 @@ -207,7 +207,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { %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 + br label %92, !llvm.loop !8 127: ; preds = %92 %128 = load i32, i32* %4, align 4 @@ -246,7 +246,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #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) + %154 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %146, i32* noundef 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 @@ -261,7 +261,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #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) + %166 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %15, i32* noundef 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 @@ -276,7 +276,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { %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 + br label %136, !llvm.loop !9 177: ; preds = %136 br label %178 @@ -285,7 +285,7 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { %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 + br label %130, !llvm.loop !10 181: ; preds = %130 %182 = getelementptr inbounds [3 x [3 x i32]], [3 x [3 x i32]]* %3, i64 0, i64 0 @@ -295,10 +295,10 @@ define dso_local i32 @_Z16minInitialPointsPA3_i([3 x i32]* %0) #4 { } ; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 +declare i32 @abs(i32 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #6 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -326,8 +326,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #6 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -355,26 +355,26 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI ret i32* %16 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %6 = call noundef i32 @_Z16minInitialPointsPA3_i([3 x i32]* noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp() #0 section ".text.startup" { @@ -382,24 +382,28 @@ define internal void @_GLOBAL__sub_I_minimum_positive_points_to_reach_destinatio 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readnone willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { nounwind readnone willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll similarity index 81% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll index cb847198..40821c82 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem.ll @@ -8,8 +8,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca [3 x i8]*, align 8 %5 = alloca i32, align 4 @@ -99,7 +99,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %38, !llvm.loop !6 55: ; preds = %38 store i32 2, i32* %12, align 4 @@ -283,7 +283,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %108, !llvm.loop !8 190: ; preds = %108 br label %191 @@ -295,7 +295,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %65, !llvm.loop !9 195: ; preds = %65 br label %196 @@ -304,7 +304,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %61, !llvm.loop !10 199: ; preds = %61 br label %200 @@ -313,7 +313,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %56, !llvm.loop !11 203: ; preds = %56 store i32 0, i32* %18, align 4 @@ -343,7 +343,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %204, !llvm.loop !12 221: ; preds = %204 %222 = load i32, i32* %18, align 4 @@ -357,7 +357,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { ret i32 %225 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -366,8 +366,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main(i32 noundef %0, i8** noundef %1) #3 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 %5 = alloca i8**, align 8 @@ -378,40 +378,44 @@ define dso_local i32 @main(i32 %0, i8** %1) #3 { %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) + %9 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %8, i32 noundef 1) + %10 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 1, i32 noundef %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) + %12 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %11, i32 noundef 2) + %13 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 2, i32 noundef %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) + %15 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %14, i32 noundef 3) + %16 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 3, i32 noundef %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) + %18 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %17, i32 noundef 4) + %19 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 4, i32 noundef %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) + %21 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %20, i32 noundef 5) + %22 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 5, i32 noundef %21) ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #4 +declare i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { argmemonly nofree 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" } +attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll similarity index 85% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll index d39d2fbe..3d37add5 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/mobile-numeric-keypad-problem_space_optm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/mobile-numeric-keypad-problem_space_optm.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca [3 x i8]*, align 8 %5 = alloca i32, align 4 @@ -65,7 +65,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %23, !llvm.loop !6 33: ; preds = %23 store i32 2, i32* %9, align 4 @@ -334,7 +334,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %34, !llvm.loop !8 265: ; preds = %34 store i32 0, i32* %11, align 4 @@ -365,7 +365,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %269, !llvm.loop !9 282: ; preds = %269 br label %298 @@ -393,7 +393,7 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { %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 + br label %284, !llvm.loop !10 297: ; preds = %284 br label %298 @@ -408,48 +408,52 @@ define dso_local i32 @_Z8getCountPA3_ci([3 x i8]* %0, i32 %1) #0 { ret i32 %301 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %4, i32 noundef 1) + %6 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 1, i32 noundef %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) + %8 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %7, i32 noundef 2) + %9 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 2, i32 noundef %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) + %11 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %10, i32 noundef 3) + %12 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 3, i32 noundef %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) + %14 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %13, i32 noundef 4) + %15 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 4, i32 noundef %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) + %17 = call noundef i32 @_Z8getCountPA3_ci([3 x i8]* noundef %16, i32 noundef 5) + %18 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([36 x i8], [36 x i8]* @.str, i64 0, i64 0), i32 noundef 5, i32 noundef %17) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 +declare i32 @printf(i8* noundef, ...) #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" } +attributes #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { argmemonly nofree nounwind willreturn } +attributes #3 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/n-queen-problem.ll similarity index 73% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/n-queen-problem.ll index cffe388e..766d7f40 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/n-queen-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/n-queen-problem.ll @@ -10,8 +10,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %0) #0 { %2 = alloca [4 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -42,33 +42,33 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { %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) + %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %9, !llvm.loop !6 25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %26 = call i32 (i8*, ...) @printf(i8* noundef 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 + br label %5, !llvm.loop !8 30: ; preds = %5 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %0, i32 %1) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %0, i32 noundef %1) #0 { %3 = alloca i1, align 1 %4 = alloca [4 x i32]*, align 8 %5 = alloca i32, align 4 @@ -152,7 +152,7 @@ define dso_local zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %0, i32 %1) #0 { %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) + %64 = call noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %61, i32 noundef %63) br i1 %64, label %65, label %66 65: ; preds = %38 @@ -195,7 +195,7 @@ define dso_local zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %0, i32 %1) #0 { %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 + br label %11, !llvm.loop !9 93: ; preds = %11 store i1 false, i1* %3, align 1 @@ -206,26 +206,26 @@ define dso_local zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* %0, i32 %1) #0 { ret i1 %95 } -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z7solveNQv() #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef 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) + %5 = call noundef zeroext i1 @_Z11solveNQUtilPA4_ii([4 x i32]* noundef %4, i32 noundef 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)) + %9 = call i32 (i8*, ...) @printf(i8* noundef 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) + call void @_Z13printSolutionPA4_i([4 x i32]* noundef %11) store i1 true, i1* %1, align 1 br label %12 @@ -234,28 +234,32 @@ define dso_local zeroext i1 @_Z7solveNQv() #0 { ret i1 %13 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #3 { %1 = alloca i32, align 4 store i32 0, i32* %1, align 4 - %2 = call zeroext i1 @_Z7solveNQv() + %2 = call noundef 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" } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { argmemonly nofree nounwind willreturn writeonly } +attributes #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll similarity index 56% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll index 9550fb5f..3fbe7842 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/naive-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/naive-algorithm.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_(i8* noundef %0, i8* noundef %1) #4 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32, align 4 @@ -54,11 +54,11 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #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 + %10 = call i64 @strlen(i8* noundef %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 + %13 = call i64 @strlen(i8* noundef %12) #8 %14 = trunc i64 %13 to i32 store i32 %14, i32* %6, align 4 store i32 0, i32* %7, align 4 @@ -110,7 +110,7 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #4 { %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 + br label %22, !llvm.loop !6 47: ; preds = %42, %22 %48 = load i32, i32* %8, align 4 @@ -119,10 +119,10 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #4 { 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)) + %52 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %54 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %52, i32 noundef %53) + %55 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %54, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %56 56: ; preds = %51, %47 @@ -132,25 +132,25 @@ define dso_local void @_Z6searchPcS_(i8* %0, i8* %1) #4 { %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 + br label %15, !llvm.loop !8 60: ; preds = %15 ret void } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 +declare i64 @strlen(i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [19 x i8], align 16 %3 = alloca [5 x i8], align 1 @@ -161,11 +161,11 @@ define dso_local i32 @main() #6 { 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) + call void @_Z6searchPcS_(i8* noundef %6, i8* noundef %7) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -174,21 +174,25 @@ define internal void @_GLOBAL__sub_I_naive_algorithm.cpp() #0 section ".text.sta 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } attributes #8 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll index a304cce4..5b2bc014 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimal-binary-search-tree.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimal-binary-search-tree.ll @@ -24,27 +24,27 @@ target triple = "x86_64-pc-linux-gnu" @__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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z17optimalSearchTreePiS_i(i32* noundef %0, i32* noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 %6 = alloca i32, align 4 @@ -99,7 +99,7 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { %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 + br label %23, !llvm.loop !6 43: ; preds = %23 store i32 2, i32* %11, align 4 @@ -197,7 +197,7 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { %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) + %110 = call noundef i32 @_Z3sumPiii(i32* noundef %107, i32 noundef %108, i32 noundef %109) %111 = add nsw i32 %106, %110 store i32 %111, i32* %15, align 4 %112 = load i32, i32* %15, align 4 @@ -231,7 +231,7 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { %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 + br label %69, !llvm.loop !8 135: ; preds = %69 br label %136 @@ -240,7 +240,7 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { %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 + br label %49, !llvm.loop !9 139: ; preds = %49 br label %140 @@ -249,7 +249,7 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { %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 + br label %44, !llvm.loop !10 143: ; preds = %44 %144 = mul nsw i64 0, %19 @@ -267,8 +267,8 @@ define dso_local i32 @_Z17optimalSearchTreePiS_i(i32* %0, i32* %1, i32 %2) #4 { ; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3sumPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #6 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -303,7 +303,7 @@ define dso_local i32 @_Z3sumPiii(i32* %0, i32 %1, i32 %2) #6 { %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 + br label %10, !llvm.loop !11 25: ; preds = %10 %26 = load i32, i32* %7, align 4 @@ -313,8 +313,8 @@ define dso_local i32 @_Z3sumPiii(i32* %0, i32 %1, i32 %2) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [3 x i32], align 4 %3 = alloca [3 x i32], align 4 @@ -325,21 +325,21 @@ define dso_local i32 @main() #7 { %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)) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %11 = call noundef i32 @_Z17optimalSearchTreePiS_i(i32* noundef %8, i32* noundef %9, i32 noundef %10) + %12 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %7, i32 noundef %11) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_optimal_binary_search_tree.cpp() #0 section ".text.startup" { @@ -347,24 +347,28 @@ define internal void @_GLOBAL__sub_I_optimal_binary_search_tree.cpp() #0 section 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll similarity index 54% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll index 9371f505..82573955 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/optimized-naive-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/optimized-naive-algorithm.ll @@ -26,7 +26,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -34,29 +34,29 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %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 + %7 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #3 %10 = trunc i64 %9 to i32 store i32 %10, i32* %4, align 4 store i32 0, i32* %5, align 4 @@ -85,12 +85,12 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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) + %27 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %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) + %32 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %31) %33 = load i8, i8* %32, align 1 %34 = sext i8 %33 to i32 %35 = icmp ne i32 %29, %34 @@ -106,7 +106,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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 + br label %18, !llvm.loop !6 41: ; preds = %36, %18 %42 = load i32, i32* %6, align 4 @@ -115,10 +115,10 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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)) + %46 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %48 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %46, i32 noundef %47) + %49 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %48, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 @@ -147,27 +147,27 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI br label %64 64: ; preds = %63, %45 - br label %11, !llvm.loop !4 + br label %11, !llvm.loop !8 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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -178,35 +178,35 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([17 x i8], [17 x i8]* @.str.1, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %8, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %15 = load i32, i32* %1, align 4 ret i32 %15 @@ -217,7 +217,7 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %39 20: ; preds = %10 @@ -227,7 +227,7 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %38 24: ; preds = %11 @@ -255,19 +255,19 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %39 39: ; preds = %38, %16 @@ -279,19 +279,19 @@ define dso_local i32 @main() #5 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 -declare dso_local i32 @__gxx_personality_v0(...) +declare i32 @__gxx_personality_v0(...) ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcED1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_optimized_naive_algorithm.cpp() #0 section ".text.startup" { @@ -299,18 +299,22 @@ define internal void @_GLOBAL__sub_I_optimized_naive_algorithm.cpp() #0 section 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll similarity index 56% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll index 8d0b9aee..1941f515 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/overlapping-subproblems-property.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/overlapping-subproblems-property.ll @@ -23,26 +23,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress +; Function Attrs: mustprogress noinline nounwind uwtable define dso_local void @_Z11_initializev() #4 { %1 = alloca i32, align 4 store i32 0, i32* %1, align 4 @@ -64,14 +64,14 @@ define dso_local void @_Z11_initializev() #4 { %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 + br label %2, !llvm.loop !6 12: ; preds = %2 ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z3fibi(i32 %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #5 { %2 = alloca i32, align 4 store i32 %0, i32* %2, align 4 %3 = load i32, i32* %2, align 4 @@ -97,10 +97,10 @@ define dso_local i32 @_Z3fibi(i32 %0) #5 { 16: ; preds = %8 %17 = load i32, i32* %2, align 4 %18 = sub nsw i32 %17, 1 - %19 = call i32 @_Z3fibi(i32 %18) + %19 = call noundef i32 @_Z3fibi(i32 noundef %18) %20 = load i32, i32* %2, align 4 %21 = sub nsw i32 %20, 2 - %22 = call i32 @_Z3fibi(i32 %21) + %22 = call noundef i32 @_Z3fibi(i32 noundef %21) %23 = add nsw i32 %19, %22 %24 = load i32, i32* %2, align 4 %25 = sext i32 %24 to i64 @@ -119,23 +119,23 @@ define dso_local i32 @_Z3fibi(i32 %0) #5 { ret i32 %32 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %5 = call noundef i32 @_Z3fibi(i32 noundef %4) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_overlapping_subproblems_property.cpp() #0 section ".text.startup" { @@ -143,18 +143,22 @@ define internal void @_GLOBAL__sub_I_overlapping_subproblems_property.cpp() #0 s 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll similarity index 79% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll index 7515a488..3ec5028e 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/palindrome-partitioning.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/palindrome-partitioning.ll @@ -6,8 +6,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3minii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -30,8 +30,8 @@ define dso_local i32 @_Z3minii(i32 %0, i32 %1) #0 { ret i32 %13 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z13minPalPartionPc(i8* noundef %0) #0 { %2 = alloca i8*, align 8 %3 = alloca i32, align 4 %4 = alloca i8*, align 8 @@ -44,7 +44,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + %13 = call i64 @strlen(i8* noundef %12) #6 %14 = trunc i64 %13 to i32 store i32 %14, i32* %3, align 4 %15 = load i32, i32* %3, align 4 @@ -85,7 +85,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + br label %25, !llvm.loop !6 40: ; preds = %25 store i32 2, i32* %11, align 4 @@ -195,7 +195,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + br label %46, !llvm.loop !8 122: ; preds = %46 br label %123 @@ -204,7 +204,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + br label %41, !llvm.loop !9 126: ; preds = %41 store i32 0, i32* %8, align 4 @@ -296,7 +296,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + br label %149, !llvm.loop !10 190: ; preds = %149 br label %191 @@ -308,7 +308,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { %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 + br label %127, !llvm.loop !11 195: ; preds = %127 %196 = load i32, i32* %3, align 4 @@ -322,7 +322,7 @@ define dso_local i32 @_Z13minPalPartionPc(i8* %0) #0 { } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #1 +declare i64 @strlen(i8* noundef) #1 ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #2 @@ -330,40 +330,44 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef i32 @_Z13minPalPartionPc(i8* noundef %4) + %6 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([50 x i8], [50 x i8]* @.str, i64 0, i64 0), i32 noundef %5) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #3 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { argmemonly nofree nounwind willreturn } +attributes #5 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #6 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll similarity index 79% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll index 53c4f1de..2f7f9271 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/partition-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/partition-problem.ll @@ -7,8 +7,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z12findPartiionPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i1, align 1 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -45,7 +45,7 @@ define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { %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 + br label %12, !llvm.loop !6 27: ; preds = %12 %28 = load i32, i32* %6, align 4 @@ -93,7 +93,7 @@ define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { %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 + br label %43, !llvm.loop !8 56: ; preds = %43 store i32 1, i32* %7, align 4 @@ -119,7 +119,7 @@ define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { %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 + br label %57, !llvm.loop !9 71: ; preds = %57 store i32 1, i32* %7, align 4 @@ -224,7 +224,7 @@ define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { %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 + br label %78, !llvm.loop !10 151: ; preds = %78 br label %152 @@ -233,7 +233,7 @@ define dso_local zeroext i1 @_Z12findPartiionPii(i32* %0, i32 %1) #0 { %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 + br label %72, !llvm.loop !11 155: ; preds = %72 %156 = load i32, i32* %6, align 4 @@ -262,8 +262,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -273,17 +273,17 @@ define dso_local i32 @main() #2 { 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) + %7 = call noundef zeroext i1 @_Z12findPartiionPii(i32* noundef %5, i32 noundef %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)) + %11 = call i32 (i8*, ...) @printf(i8* noundef 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)) + %13 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([49 x i8], [49 x i8]* @.str.1, i64 0, i64 0)) br label %14 14: ; preds = %12, %10 @@ -291,27 +291,31 @@ define dso_local i32 @main() #2 { ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #4 -declare dso_local i32 @getchar() #4 +declare 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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll similarity index 50% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll index 083b19fe..e68dc08a 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/permutations-of-a-given-string.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/permutations-of-a-given-string.ll @@ -30,27 +30,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %0, i32 noundef %1, i32 noundef %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 @@ -65,8 +65,8 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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_) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %14, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %47 16: ; preds = %3 @@ -83,34 +83,34 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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) + %25 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %28 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %27) + call void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* noundef nonnull align 1 dereferenceable(1) %25, i8* noundef nonnull align 1 dereferenceable(1) %28) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %7, i32 noundef %30, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + %35 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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 + %38 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %37) + call void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* noundef nonnull align 1 dereferenceable(1) %35, i8* noundef 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 + br label %18, !llvm.loop !6 42: ; preds = %22 %43 = landingpad { i8*, i32 } @@ -119,7 +119,7 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 br label %48 46: ; preds = %18 @@ -136,46 +136,46 @@ define dso_local void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESa 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKNSt7__cxx1112basic_stringIS4_S5_T1_EE(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::__cxx11::basic_string"* noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt4swapIcENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS3_ESt18is_move_assignableIS3_EEE5valueEvE4typeERS3_SC_(i8* noundef nonnull align 1 dereferenceable(1) %0, i8* noundef 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 + %7 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef 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 + %10 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef 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 + %13 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef 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 noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32)) unnamed_addr #1 -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -184,28 +184,28 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), %"class.std::allocator"* noundef 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z7permuteNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEii(%"class.std::__cxx11::basic_string"* noundef %7, i32 noundef 0, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %15 = load i32, i32* %1, align 4 ret i32 %15 @@ -216,7 +216,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %29 20: ; preds = %8 @@ -235,11 +235,11 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %29 29: ; preds = %28, %16 @@ -251,18 +251,18 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE4sizeEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) i8* @_ZSt4moveIRcEONSt16remove_referenceIT_E4typeEOS2_(i8* noundef 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 @@ -275,18 +275,22 @@ define internal void @_GLOBAL__sub_I_permutations_of_a_given_string.cpp() #0 sec 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/program-for-nth-fibonacci-number.ll similarity index 51% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll index 2cd2b9ea..c6054c02 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-for-nth-fibonacci-number.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/program-for-nth-fibonacci-number.ll @@ -5,8 +5,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z3fibi(i32 noundef %0) #0 { %2 = alloca i32, align 4 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -50,7 +50,7 @@ define dso_local i32 @_Z3fibi(i32 %0) #0 { %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 + br label %13, !llvm.loop !6 26: ; preds = %13 %27 = load i32, i32* %5, align 4 @@ -62,31 +62,35 @@ define dso_local i32 @_Z3fibi(i32 %0) #0 { ret i32 %29 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #1 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %4 = call noundef i32 @_Z3fibi(i32 noundef %3) + %5 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str, i64 0, i64 0), i32 noundef %4) %6 = call i32 @getchar() ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #2 +declare i32 @printf(i8* noundef, ...) #2 -declare dso_local i32 @getchar() #2 +declare 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" } +attributes #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"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-llvm14/program-wish-womens-day.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/program-wish-womens-day.ll index 2f8485c2..fee03934 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/program-wish-womens-day.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/program-wish-womens-day.ll @@ -24,7 +24,7 @@ $_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES @_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 +@_ZSt4cout = external 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 @@ -32,21 +32,21 @@ $_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -94,7 +94,7 @@ define dso_local i32 @main() #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) + %36 = call noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %35) %37 = fptrunc double %36 to float store float %37, float* %5, align 4 %38 = load float, float* %5, align 4 @@ -115,11 +115,11 @@ define dso_local i32 @main() #4 { 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)) + %52 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %54 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %55 55: ; preds = %53, %51 @@ -129,7 +129,7 @@ define dso_local i32 @main() #4 { %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 + br label %15, !llvm.loop !6 59: ; preds = %15 %60 = load i32, i32* %3, align 4 @@ -138,19 +138,19 @@ define dso_local i32 @main() #4 { 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)) + %64 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %65 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %64, i8* noundef 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_) + %67 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %9, !llvm.loop !8 71: ; preds = %9 store i32 0, i32* %6, align 4 @@ -200,11 +200,11 @@ define dso_local i32 @main() #4 { 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)) + %103 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %105 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %106 106: ; preds = %104, %102 @@ -214,7 +214,7 @@ define dso_local i32 @main() #4 { %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 + br label %83, !llvm.loop !9 110: ; preds = %83 br label %130 @@ -237,11 +237,11 @@ define dso_local i32 @main() #4 { 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)) + %122 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %124 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %125 125: ; preds = %123, %121 @@ -251,44 +251,44 @@ define dso_local i32 @main() #4 { %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 + br label %112, !llvm.loop !10 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_) + %131 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %72, !llvm.loop !11 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef double @_ZSt4sqrtIiEN9__gnu_cxx11__enable_ifIXsr12__is_integerIT_EE7__valueEdE6__typeES2_(i32 noundef %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 + %5 = call double @sqrt(double noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 ; Function Attrs: nounwind -declare dso_local double @sqrt(double) #2 +declare double @sqrt(double noundef) #2 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_program_wish_womens_day.cpp() #0 section ".text.startup" { @@ -296,21 +296,25 @@ define internal void @_GLOBAL__sub_I_program_wish_womens_day.cpp() #0 section ". 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll similarity index 64% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll index 44c5acb8..d2145f59 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-for-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-for-linked-list.ll @@ -23,7 +23,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -64,8 +64,8 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %class.Node* @_Z8lastNodeP4Node(%class.Node* %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef %class.Node* @_Z8lastNodeP4Node(%class.Node* noundef %0) #4 { %2 = alloca %class.Node*, align 8 store %class.Node* %0, %class.Node** %2, align 8 br label %3 @@ -91,15 +91,15 @@ define dso_local %class.Node* @_Z8lastNodeP4Node(%class.Node* %0) #4 { %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 + br label %3, !llvm.loop !6 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef %class.Node* @_Z9partitionP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #4 { %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 %5 = alloca i32, align 4 @@ -155,7 +155,7 @@ define dso_local %class.Node* @_Z9partitionP4NodeS0_(%class.Node* %0, %class.Nod %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) + call void @_Z4swapPiS_(i32* noundef %37, i32* noundef %39) br label %40 40: ; preds = %34, %19 @@ -166,7 +166,7 @@ define dso_local %class.Node* @_Z9partitionP4NodeS0_(%class.Node* %0, %class.Nod %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 + br label %15, !llvm.loop !8 45: ; preds = %15 %46 = load %class.Node*, %class.Node** %6, align 8 @@ -190,13 +190,13 @@ define dso_local %class.Node* @_Z9partitionP4NodeS0_(%class.Node* %0, %class.Nod %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) + call void @_Z4swapPiS_(i32* noundef %57, i32* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10_quickSortP4NodeS0_(%class.Node* noundef %0, %class.Node* noundef %1) #5 { %3 = alloca %class.Node*, align 8 %4 = alloca %class.Node*, align 8 %5 = alloca %class.Node*, align 8 @@ -223,40 +223,40 @@ define dso_local void @_Z10_quickSortP4NodeS0_(%class.Node* %0, %class.Node* %1) 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) + %21 = call noundef %class.Node* @_Z9partitionP4NodeS0_(%class.Node* noundef %19, %class.Node* noundef %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) + call void @_Z10_quickSortP4NodeS0_(%class.Node* noundef %22, %class.Node* noundef %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) + call void @_Z10_quickSortP4NodeS0_(%class.Node* noundef %28, %class.Node* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9quickSortP4Node(%class.Node* noundef %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) + %5 = call noundef %class.Node* @_Z8lastNodeP4Node(%class.Node* noundef %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) + call void @_Z10_quickSortP4NodeS0_(%class.Node* noundef %6, %class.Node* noundef %7) ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%class.Node* %0) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(%class.Node* noundef %0) #5 { %2 = alloca %class.Node*, align 8 store %class.Node* %0, %class.Node** %2, align 8 br label %3 @@ -270,35 +270,35 @@ define dso_local void @_Z9printListP4Node(%class.Node* %0) #5 { %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)) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %9) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %10, i8* noundef 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 + br label %3, !llvm.loop !9 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_) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #5 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(%class.Node** noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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 @@ -334,27 +334,27 @@ define dso_local void @_Z4pushPP4Nodei(%class.Node** %0, i32 %1) #5 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #6 +declare noundef nonnull i8* @_Znwm(i64 noundef) #6 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + call void @_Z4pushPP4Nodei(%class.Node** noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(%class.Node** noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(%class.Node** noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(%class.Node** noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(%class.Node** noundef %2, i32 noundef 30) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z9printListP4Node(%class.Node* noundef %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)) + call void @_Z9quickSortP4Node(%class.Node* noundef %5) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z9printListP4Node(%class.Node* noundef %7) ret i32 0 } @@ -364,22 +364,26 @@ define internal void @_GLOBAL__sub_I_quicksort_for_linked_list.cpp() #0 section 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #8 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll similarity index 70% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll index f4e47228..16921832 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/quicksort-on-singly-linked-list.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/quicksort-on-singly-linked-list.ll @@ -25,34 +25,34 @@ target triple = "x86_64-pc-linux-gnu" @__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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z4pushPP4Nodei(%struct.Node** noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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 @@ -71,10 +71,10 @@ define dso_local void @_Z4pushPP4Nodei(%struct.Node** %0, i32 %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #5 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printListP4Node(%struct.Node* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printListP4Node(%struct.Node* noundef %0) #4 { %2 = alloca %struct.Node*, align 8 store %struct.Node* %0, %struct.Node** %2, align 8 br label %3 @@ -88,22 +88,22 @@ define dso_local void @_Z9printListP4Node(%struct.Node* %0) #4 { %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) + %10 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %3, !llvm.loop !6 14: ; preds = %3 - %15 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %15 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local %struct.Node* @_Z7getTailP4Node(%struct.Node* %0) #6 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef %struct.Node* @_Z7getTailP4Node(%struct.Node* noundef %0) #6 { %2 = alloca %struct.Node*, align 8 store %struct.Node* %0, %struct.Node** %2, align 8 br label %3 @@ -129,15 +129,15 @@ define dso_local %struct.Node* @_Z7getTailP4Node(%struct.Node* %0) #6 { %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 + br label %3, !llvm.loop !8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* noundef %0, %struct.Node* noundef %1, %struct.Node** noundef %2, %struct.Node** noundef %3) #6 { %5 = alloca %struct.Node*, align 8 %6 = alloca %struct.Node*, align 8 %7 = alloca %struct.Node**, align 8 @@ -230,7 +230,7 @@ define dso_local %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* %0, % br label %61 61: ; preds = %50, %36 - br label %17, !llvm.loop !5 + br label %17, !llvm.loop !9 62: ; preds = %17 %63 = load %struct.Node**, %struct.Node*** %7, align 8 @@ -252,8 +252,8 @@ define dso_local %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* %0, % ret %struct.Node* %72 } -; Function Attrs: noinline uwtable mustprogress -define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %struct.Node* %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* noundef %0, %struct.Node* noundef %1) #4 { %3 = alloca %struct.Node*, align 8 %4 = alloca %struct.Node*, align 8 %5 = alloca %struct.Node*, align 8 @@ -283,7 +283,7 @@ define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %s 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) + %21 = call noundef %struct.Node* @_Z9partitionP4NodeS0_PS0_S1_(%struct.Node* noundef %19, %struct.Node* noundef %20, %struct.Node** noundef %6, %struct.Node** noundef %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 @@ -308,7 +308,7 @@ define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %s %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 + br label %27, !llvm.loop !10 37: ; preds = %27 %38 = load %struct.Node*, %struct.Node** %9, align 8 @@ -316,10 +316,10 @@ define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %s 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) + %42 = call noundef %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* noundef %40, %struct.Node* noundef %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) + %44 = call noundef %struct.Node* @_Z7getTailP4Node(%struct.Node* noundef %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 @@ -332,7 +332,7 @@ define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %s %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) + %53 = call noundef %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* noundef %51, %struct.Node* noundef %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 @@ -345,43 +345,43 @@ define dso_local %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* %0, %s ret %struct.Node* %58 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9quickSortPP4Node(%struct.Node** %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9quickSortPP4Node(%struct.Node** noundef %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) + %7 = call noundef %struct.Node* @_Z7getTailP4Node(%struct.Node* noundef %6) + %8 = call noundef %struct.Node* @_Z14quickSortRecurP4NodeS0_(%struct.Node* noundef %4, %struct.Node* noundef %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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 5) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 20) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 4) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 3) + call void @_Z4pushPP4Nodei(%struct.Node** noundef %2, i32 noundef 30) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + call void @_Z9printListP4Node(%struct.Node* noundef %4) + call void @_Z9quickSortPP4Node(%struct.Node** noundef %2) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z9printListP4Node(%struct.Node* noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp() #0 section ".text.startup" { @@ -389,23 +389,27 @@ define internal void @_GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp() #0 se 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #8 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll index a7a6467f..9dcfcff1 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/rabin-karp-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/rabin-karp-algorithm.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchPcS_i(i8* noundef %0, i8* noundef %1, i32 noundef %2) #4 { %4 = alloca i8*, align 8 %5 = alloca i8*, align 8 %6 = alloca i32, align 4 @@ -59,11 +59,11 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { 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 + %15 = call i64 @strlen(i8* noundef %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 + %18 = call i64 @strlen(i8* noundef %17) #8 %19 = trunc i64 %18 to i32 store i32 %19, i32* %8, align 4 store i32 0, i32* %11, align 4 @@ -91,7 +91,7 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %20, !llvm.loop !6 33: ; preds = %20 store i32 0, i32* %9, align 4 @@ -134,7 +134,7 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %34, !llvm.loop !8 64: ; preds = %34 store i32 0, i32* %9, align 4 @@ -192,7 +192,7 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %76, !llvm.loop !9 101: ; preds = %96, %76 %102 = load i32, i32* %10, align 4 @@ -201,10 +201,10 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { 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)) + %106 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %108 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %106, i32 noundef %107) + %109 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %108, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %110 110: ; preds = %105, %101 @@ -263,25 +263,25 @@ define dso_local void @_Z6searchPcS_i(i8* %0, i8* %1, i32 %2) #4 { %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 + br label %65, !llvm.loop !10 151: ; preds = %65 ret void } ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #5 +declare i64 @strlen(i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [16 x i8], align 16 %3 = alloca [5 x i8], align 1 @@ -295,11 +295,11 @@ define dso_local i32 @main() #6 { %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) + call void @_Z6searchPcS_i(i8* noundef %7, i8* noundef %8, i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -308,23 +308,27 @@ define internal void @_GLOBAL__sub_I_rabin_karp_algorithm.cpp() #0 section ".tex 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } attributes #8 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll index 58cf4d71..3e5c1105 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/rat-in-a-maze.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/rat-in-a-maze.ll @@ -8,8 +8,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %0) #0 { %2 = alloca [4 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -40,33 +40,33 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { %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) + %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %9, !llvm.loop !6 25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %26 = call i32 (i8*, ...) @printf(i8* noundef 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 + br label %5, !llvm.loop !8 30: ; preds = %5 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local zeroext i1 @_Z6isSafePA4_iii([4 x i32]* %0, i32 %1, i32 %2) #2 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafePA4_iii([4 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #2 { %4 = alloca i1, align 1 %5 = alloca [4 x i32]*, align 8 %6 = alloca i32, align 4 @@ -118,8 +118,8 @@ define dso_local zeroext i1 @_Z6isSafePA4_iii([4 x i32]* %0, i32 %1, i32 %2) #2 ret i1 %32 } -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z9solveMazePA4_i([4 x i32]* %0) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z9solveMazePA4_i([4 x i32]* noundef %0) #0 { %2 = alloca i1, align 1 %3 = alloca [4 x i32]*, align 8 %4 = alloca [4 x [4 x i32]], align 16 @@ -128,19 +128,19 @@ define dso_local zeroext i1 @_Z9solveMazePA4_i([4 x i32]* %0) #0 { 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) + %8 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* noundef %6, i32 noundef 0, i32 noundef 0, [4 x i32]* noundef %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)) + %12 = call i32 (i8*, ...) @printf(i8* noundef 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) + call void @_Z13printSolutionPA4_i([4 x i32]* noundef %14) store i1 true, i1* %2, align 1 br label %15 @@ -149,11 +149,11 @@ define dso_local zeroext i1 @_Z9solveMazePA4_i([4 x i32]* %0) #0 { ret i1 %16 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* noundef %0, i32 noundef %1, i32 noundef %2, [4 x i32]* noundef %3) #0 { %5 = alloca i1, align 1 %6 = alloca [4 x i32]*, align 8 %7 = alloca i32, align 4 @@ -188,7 +188,7 @@ define dso_local zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %0, i32 %1, %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) + %27 = call noundef zeroext i1 @_Z6isSafePA4_iii([4 x i32]* noundef %24, i32 noundef %25, i32 noundef %26) %28 = zext i1 %27 to i32 %29 = icmp eq i32 %28, 1 br i1 %29, label %30, label %65 @@ -207,7 +207,7 @@ define dso_local zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %0, i32 %1, %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) + %43 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* noundef %38, i32 noundef %40, i32 noundef %41, [4 x i32]* noundef %42) %44 = zext i1 %43 to i32 %45 = icmp eq i32 %44, 1 br i1 %45, label %46, label %47 @@ -222,7 +222,7 @@ define dso_local zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %0, i32 %1, %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) + %53 = call noundef zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* noundef %48, i32 noundef %49, i32 noundef %51, [4 x i32]* noundef %52) %54 = zext i1 %53 to i32 %55 = icmp eq i32 %54, 1 br i1 %55, label %56, label %57 @@ -252,33 +252,37 @@ define dso_local zeroext i1 @_Z13solveMazeUtilPA4_iiiS0_([4 x i32]* %0, i32 %1, ret i1 %67 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef zeroext i1 @_Z9solveMazePA4_i([4 x i32]* noundef %4) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn writeonly } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll index 5b0be381..224f6842 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/reservoir-sampling.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/reservoir-sampling.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10printArrayPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -65,31 +65,31 @@ define dso_local void @_Z10printArrayPii(i32* %0, i32 %1) #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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef 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 + br label %6, !llvm.loop !6 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_) + %22 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z12selectKItemsPiii(i32* %0, i32 %1, i32 %2) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12selectKItemsPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -131,12 +131,12 @@ define dso_local void @_Z12selectKItemsPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %15, !llvm.loop !8 31: ; preds = %15 - %32 = call i64 @time(i64* null) #3 + %32 = call i64 @time(i64* noundef null) #3 %33 = trunc i64 %32 to i32 - call void @srand(i32 %33) #3 + call void @srand(i32 noundef %33) #3 br label %34 34: ; preds = %56, %31 @@ -175,12 +175,12 @@ define dso_local void @_Z12selectKItemsPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %34, !llvm.loop !9 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)) + %60 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z10printArrayPii(i32* noundef %14, i32 noundef %61) %62 = load i8*, i8** %8, align 8 call void @llvm.stackrestore(i8* %62) ret void @@ -190,19 +190,19 @@ define dso_local void @_Z12selectKItemsPiii(i32* %0, i32 %1, i32 %2) #4 { declare i8* @llvm.stacksave() #5 ; Function Attrs: nounwind -declare dso_local void @srand(i32) #2 +declare void @srand(i32 noundef) #2 ; Function Attrs: nounwind -declare dso_local i64 @time(i64*) #2 +declare i64 @time(i64* noundef) #2 ; Function Attrs: nounwind -declare dso_local i32 @rand() #2 +declare 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [12 x i32], align 16 %3 = alloca i32, align 4 @@ -215,11 +215,11 @@ define dso_local i32 @main() #6 { %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) + call void @_Z12selectKItemsPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -228,21 +228,25 @@ define internal void @_GLOBAL__sub_I_reservoir_sampling.cpp() #0 section ".text. 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/rotate-bits-of-an-integer.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/rotate-bits-of-an-integer.ll new file mode 100644 index 00000000..ea09742c --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/rotate-bits-of-an-integer.ll @@ -0,0 +1,152 @@ +; 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 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"* noundef nonnull align 1 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 void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +; Function Attrs: nounwind +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +; Function Attrs: nounwind +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i64 0, i64 0)) + %5 = load i32, i32* %2, align 4 + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0)) + %8 = load i32, i32* %3, align 4 + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %7, i32 noundef %8) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %9, i8* noundef 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 noundef i32 @_ZN3gfg10leftRotateEij(%class.gfg* noundef nonnull align 1 dereferenceable(1) %1, i32 noundef %11, i32 noundef %12) + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %13) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([20 x i8], [20 x i8]* @.str.3, i64 0, i64 0)) + %16 = load i32, i32* %2, align 4 + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %15, i32 noundef %16) + %18 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %17, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.1, i64 0, i64 0)) + %19 = load i32, i32* %3, align 4 + %20 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %18, i32 noundef %19) + %21 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %20, i8* noundef 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 noundef i32 @_ZN3gfg11rightRotateEij(%class.gfg* noundef nonnull align 1 dereferenceable(1) %1, i32 noundef %22, i32 noundef %23) + %25 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %24) + %26 = call i32 @getchar() + ret i32 0 +} + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN3gfg10leftRotateEij(%class.gfg* noundef nonnull align 1 dereferenceable(1) %0, i32 noundef %1, i32 noundef %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: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32 @_ZN3gfg11rightRotateEij(%class.gfg* noundef nonnull align 1 dereferenceable(1) %0, i32 noundef %1, i32 noundef %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 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 "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { nounwind } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll index 9b2c9b98..23f02c94 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/shortest-common-supersequence.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/shortest-common-supersequence.ll @@ -26,27 +26,27 @@ $_ZSt3minIiERKT_S2_S2_ = comdat any @__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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z8superSeqPcS_ii(i8* noundef %0, i8* noundef %1, i32 noundef %2, i32 noundef %3) #4 { %5 = alloca i8*, align 8 %6 = alloca i8*, align 8 %7 = alloca i32, align 4 @@ -182,7 +182,7 @@ define dso_local i32 @_Z8superSeqPcS_ii(i8* %0, i8* %1, i32 %2, i32 %3) #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) + %108 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %99, i32* noundef 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 @@ -208,7 +208,7 @@ define dso_local i32 @_Z8superSeqPcS_ii(i8* %0, i8* %1, i32 %2, i32 %3) #4 { %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 + br label %28, !llvm.loop !6 124: ; preds = %28 br label %125 @@ -217,7 +217,7 @@ define dso_local i32 @_Z8superSeqPcS_ii(i8* %0, i8* %1, i32 %2, i32 %3) #4 { %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 + br label %23, !llvm.loop !8 128: ; preds = %23 %129 = load i32, i32* %7, align 4 @@ -236,8 +236,8 @@ define dso_local i32 @_Z8superSeqPcS_ii(i8* %0, i8* %1, i32 %2, i32 %3) #4 { ; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #6 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -268,8 +268,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI ; Function Attrs: nofree nosync nounwind willreturn declare void @llvm.stackrestore(i8*) #5 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [7 x i8], align 1 %3 = alloca [8 x i8], align 1 @@ -278,29 +278,29 @@ define dso_local i32 @main() #7 { 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)) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 + %10 = call i64 @strlen(i8* noundef %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 + %13 = call i64 @strlen(i8* noundef %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) + %15 = call noundef i32 @_Z8superSeqPcS_ii(i8* noundef %7, i8* noundef %8, i32 noundef %11, i32 noundef %14) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, i32 noundef %15) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: nounwind readonly willreturn -declare dso_local i64 @strlen(i8*) #9 +declare i64 @strlen(i8* noundef) #9 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_shortest_common_supersequence.cpp() #0 section ".text.startup" { @@ -308,23 +308,27 @@ define internal void @_GLOBAL__sub_I_shortest_common_supersequence.cpp() #0 sect 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } +attributes #9 = { nounwind readonly willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #10 = { nounwind readonly willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll similarity index 56% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll index a52cf393..f5617e94 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sieve-of-eratosthenes.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/sieve-of-eratosthenes.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z19SieveOfEratosthenesi(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -106,7 +106,7 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #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 + br label %31, !llvm.loop !6 43: ; preds = %31 br label %44 @@ -118,7 +118,7 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { %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 + br label %13, !llvm.loop !8 48: ; preds = %13 store i32 2, i32* %7, align 4 @@ -140,8 +140,8 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { 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)) + %61 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %60) + %62 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %61, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) br label %63 63: ; preds = %59, %53 @@ -151,7 +151,7 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { %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 + br label %49, !llvm.loop !9 67: ; preds = %49 %68 = load i8*, i8** %3, align 8 @@ -162,35 +162,35 @@ define dso_local void @_Z19SieveOfEratosthenesi(i32 %0) #4 { ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #5 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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)) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([41 x i8], [41 x i8]* @.str.1, i64 0, i64 0)) + %4 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %3, i8* noundef 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_) + %6 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %4, i32 noundef %5) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %6, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) %8 = load i32, i32* %2, align 4 - call void @_Z19SieveOfEratosthenesi(i32 %8) + call void @_Z19SieveOfEratosthenesi(i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp() #0 section ".text.startup" { @@ -198,21 +198,25 @@ define internal void @_GLOBAL__sub_I_sieve_of_eratosthenes.cpp() #0 section ".te 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll similarity index 75% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll index 3bbff607..56bad162 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/snake-ladder.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/snake-ladder.ll @@ -205,28 +205,28 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z16getMinDiceThrowsPii(i32* noundef %0, i32 noundef %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 @@ -243,7 +243,7 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 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 + %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #15 store i8* %17, i8** %5, align 8 store i32 0, i32* %6, align 4 br label %18 @@ -266,23 +266,23 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 %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 + br label %18, !llvm.loop !6 30: ; preds = %18 - call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* nonnull dereferenceable(80) %7) + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* noundef nonnull align 8 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) + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7, %struct.queueEntry* noundef 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) + %36 = invoke noundef zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) to label %37 unwind label %51 37: ; preds = %35 @@ -290,7 +290,7 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 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) + %40 = invoke noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) to label %41 unwind label %51 41: ; preds = %39 @@ -316,11 +316,11 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 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 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) #3 br label %112 55: ; preds = %41 - invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* nonnull dereferenceable(80) %7) + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) to label %56 unwind label %51 56: ; preds = %55 @@ -391,7 +391,7 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 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) + invoke void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7, %struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %14) to label %103 unwind label %51 103: ; preds = %102 @@ -404,15 +404,15 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 %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 + br label %59, !llvm.loop !8 108: ; preds = %68 - br label %35, !llvm.loop !5 + br label %35, !llvm.loop !9 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 + call void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %7) #3 ret i32 %111 112: ; preds = %51 @@ -424,25 +424,25 @@ define dso_local i32 @_Z16getMinDiceThrowsPii(i32* %0, i32 %1) #4 personality i8 } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEEC2IS3_vEEv(%"class.std::queue"* noundef nonnull align 8 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) + call void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) ret void } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE4pushERKS0_(%"class.std::queue"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry* noundef 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 @@ -450,57 +450,57 @@ define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EE %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) + call void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, %struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %7) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5emptyEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE5frontEv(%"class.std::queue"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 ret %struct.queueEntry* %5 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEE3popEv(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt5queueI10queueEntrySt5dequeIS0_SaIS0_EEED2Ev(%"class.std::queue"* noundef nonnull align 8 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 + call void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #10 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i8*, align 8 @@ -534,7 +534,7 @@ define dso_local i32 @main() #10 { %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 + br label %10, !llvm.loop !10 21: ; preds = %10 %22 = getelementptr inbounds i32, i32* %9, i64 2 @@ -553,10 +553,10 @@ define dso_local i32 @main() #10 { 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)) + %30 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %32 = call noundef i32 @_Z16getMinDiceThrowsPii(i32* noundef %9, i32 noundef %31) + %33 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %30, i32 noundef %32) store i32 0, i32* %1, align 4 %34 = load i8*, i8** %3, align 8 call void @llvm.stackrestore(i8* %34) @@ -567,15 +567,15 @@ define dso_local i32 @main() #10 { ; 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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*) { +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -583,16 +583,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class %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 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator"* noundef 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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -603,7 +603,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -612,8 +612,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EED2Ev(%"class 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy_dataESt15_Deque_iteratorIS0_RS0_PS0_ES6_RKS1_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator"* noundef 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 @@ -622,8 +622,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE15_M_destroy 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -634,12 +634,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"s %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -650,12 +650,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE3endEv(%"str %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -665,7 +665,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -688,7 +688,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev( %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, %struct.queueEntry** noundef %14, %struct.queueEntry** noundef %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 @@ -697,12 +697,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EED2Ev( %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, %struct.queueEntry** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %30) #3 ret void } @@ -713,12 +713,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2ERKS3_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -747,8 +747,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %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 @@ -770,21 +770,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_ 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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, %struct.queueEntry* noundef %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 + 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_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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry** noundef %1, i64 noundef %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 @@ -795,14 +795,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, %struct.queueEntry** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -812,7 +812,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ 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 + call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -822,17 +822,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaI10queueEntryED2Ev(%"class.std::allocator"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry* noundef %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 @@ -841,11 +841,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_ %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7, %struct.queueEntry* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -859,8 +859,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_ 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE10deallocateERS1_PS0_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator"*, align 8 %5 = alloca %struct.queueEntry*, align 8 %6 = alloca i64, align 8 @@ -871,12 +871,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE10d %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) + call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %struct.queueEntry* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #7 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #7 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -896,8 +896,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #7 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %1, i64 noundef %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 @@ -907,28 +907,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE10 %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #13 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIP10queueEntryEE10deallocateERS2_PS1_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry** noundef %1, i64 noundef %2) #4 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca i64, align 8 @@ -939,22 +939,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIP10queueEntryEE10 %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) + call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, %struct.queueEntry** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -964,27 +964,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIP10queueEntryEC2IS_EERKSaIT_E(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry** noundef %1, i64 noundef %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 @@ -994,12 +994,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE1 %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1007,17 +1007,17 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIP10queueEntryED } ; 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 { +define linkonce_odr dso_local void @_ZNSaI10queueEntryED2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1025,25 +1025,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryED2 } ; 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 { +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -1056,7 +1056,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev( 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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -1068,19 +1068,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EEC2Ev( } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaI10queueEntryEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1094,7 +1094,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -1102,7 +1102,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -1112,7 +1112,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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) + %28 = call noundef %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -1136,7 +1136,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ 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) + invoke void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, %struct.queueEntry** noundef %47, %struct.queueEntry** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -1162,7 +1162,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, %struct.queueEntry** noundef %60, i64 noundef %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 @@ -1192,13 +1192,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, %struct.queueEntry** noundef %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, %struct.queueEntry** noundef %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 @@ -1215,7 +1215,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -1244,17 +1244,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_ } ; 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 { +define linkonce_odr dso_local void @_ZNSaI10queueEntryEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -1263,14 +1263,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_De %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1278,7 +1278,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryEC2 } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_EC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -1293,8 +1293,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -1322,8 +1322,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1332,13 +1332,13 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEn 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef %struct.queueEntry** @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret %struct.queueEntry** %10 12: ; preds = %2 @@ -1348,7 +1348,7 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEn 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 + call void @_ZNSaIP10queueEntryED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -1359,8 +1359,8 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEn 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_create_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %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 @@ -1382,7 +1382,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ 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) + %17 = invoke noundef %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -1394,7 +1394,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ %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 + br label %12, !llvm.loop !12 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -1410,7 +1410,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_destroy_nodesEPPS0_S4_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, %struct.queueEntry** noundef %30, %struct.queueEntry** noundef %31) #3 invoke void @__cxa_rethrow() #17 to label %47 unwind label %33 @@ -1451,12 +1451,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_ unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %struct.queueEntry** noundef %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 @@ -1471,15 +1471,15 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt16allocator_traitsISaIP10queueEntryEE8allocateERS2_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1487,12 +1487,12 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt16allocator_traitsISaIP %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) + %8 = call noundef %struct.queueEntry** @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZN9__gnu_cxx13new_allocatorIP10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -1501,24 +1501,33 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZN9__gnu_cxx13new_allocator 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to %struct.queueEntry** + ret %struct.queueEntry** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1526,25 +1535,28 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIP10queueEntryE1 } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #14 +declare void @_ZSt28__throw_bad_array_new_lengthv() #14 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #14 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 8) + %7 = call noundef %struct.queueEntry* @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry* @_ZNSt16allocator_traitsISaI10queueEntryEE8allocateERS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1552,12 +1564,12 @@ define linkonce_odr dso_local %struct.queueEntry* @_ZNSt16allocator_traitsISaI10 %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) + %8 = call noundef %struct.queueEntry* @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry* @_ZN9__gnu_cxx13new_allocatorI10queueEntryE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1566,38 +1578,47 @@ define linkonce_odr dso_local %struct.queueEntry* @_ZN9__gnu_cxx13new_allocatorI 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to %struct.queueEntry* + ret %struct.queueEntry* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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) +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E14_S_buffer_sizeEv() #7 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backERKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry* noundef 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 @@ -1630,7 +1651,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backER %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 + call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %23, %struct.queueEntry* noundef %29, %struct.queueEntry* noundef 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"* @@ -1643,15 +1664,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9push_backER 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) + call void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, %struct.queueEntry* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %1, %struct.queueEntry* noundef 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 @@ -1662,31 +1683,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE9co %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 + %11 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %struct.queueEntry* noundef %9, %struct.queueEntry* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_back_auxIJRKS0_EEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %struct.queueEntry* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef %struct.queueEntry* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -1705,8 +1726,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_ba %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 + %30 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef nonnull align 4 dereferenceable(8) %29) #3 + call void @_ZNSt16allocator_traitsISaI10queueEntryEE9constructIS0_JRKS0_EEEvRS1_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %22, %struct.queueEntry* noundef %28, %struct.queueEntry* noundef 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"* @@ -1718,7 +1739,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_ba %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, %struct.queueEntry** noundef %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"* @@ -1734,8 +1755,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_push_ba 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9constructIS1_JRKS1_EEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %1, %struct.queueEntry* noundef 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 @@ -1747,23 +1768,23 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE9c %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 + %12 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZSt7forwardIRK10queueEntryEOT_RNSt16remove_referenceIS3_E4typeE(%struct.queueEntry* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -1775,26 +1796,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE4sizeEv(%"cl %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeI10queueEntrySaIS0_EE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNKSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #14 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1828,20 +1849,20 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE22_M_reserve 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) + call void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -1852,44 +1873,50 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorI10queueEntryRS0_P %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*) { + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %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 = icmp ne %struct.queueEntry** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %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 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load %struct.queueEntry*, %struct.queueEntry** %28, align 8 + %30 = ptrtoint %struct.queueEntry* %26 to i64 + %31 = ptrtoint %struct.queueEntry* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 8 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load %struct.queueEntry*, %struct.queueEntry** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load %struct.queueEntry*, %struct.queueEntry** %39, align 8 + %41 = ptrtoint %struct.queueEntry* %37 to i64 + %42 = ptrtoint %struct.queueEntry* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 8 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_sizeERKS1_(%"class.std::allocator"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(%"class.std::allocator"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -1904,18 +1931,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeI10queueEntrySaIS0_EE11_S_max_size 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaI10queueEntryEE8max_sizeERKS1_(%"class.std::allocator"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #7 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -1943,17 +1970,17 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE8max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorI10queueEntryE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #4 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2054,7 +2081,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) + %88 = call noundef %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** noundef %79, %struct.queueEntry** noundef %86, %struct.queueEntry** noundef %87) br label %107 89: ; preds = %62 @@ -2074,7 +2101,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) + %106 = call noundef %struct.queueEntry** @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** noundef %95, %struct.queueEntry** noundef %102, %struct.queueEntry** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2090,14 +2117,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef %struct.queueEntry** @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %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 @@ -2134,7 +2161,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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) + %153 = call noundef %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** noundef %144, %struct.queueEntry** noundef %151, %struct.queueEntry** noundef %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 @@ -2146,7 +2173,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE17_M_deallocate_mapEPPS0_m(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, %struct.queueEntry** noundef %159, i64 noundef %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 @@ -2167,7 +2194,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, %struct.queueEntry** noundef %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"* @@ -2176,12 +2203,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE17_M_realloc %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2189,16 +2216,16 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt4copyIPP10queueEntryS2_E 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) + %8 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) + %10 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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) + %12 = call noundef %struct.queueEntry** @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %8, %struct.queueEntry** noundef %10, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt13copy_backwardIPP10queueEntryS2_ET0_T_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2206,16 +2233,16 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt13copy_backwardIPP10queu 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) + %8 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) + %10 = call noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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) + %12 = call noundef %struct.queueEntry** @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %8, %struct.queueEntry** noundef %10, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt13__copy_move_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2223,26 +2250,26 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt13__copy_move_aILb0EPP10 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 + %8 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) #3 %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) #3 + %10 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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) + %12 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %11) #3 + %13 = call noundef %struct.queueEntry** @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %8, %struct.queueEntry** noundef %10, %struct.queueEntry** noundef %12) + %14 = call noundef %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** noundef nonnull align 8 dereferenceable(8) %6, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt12__miter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** noundef nonnull align 8 dereferenceable(8) %0, %struct.queueEntry** noundef %1) #7 comdat { %3 = alloca %struct.queueEntry***, align 8 %4 = alloca %struct.queueEntry**, align 8 store %struct.queueEntry*** %0, %struct.queueEntry**** %3, align 8 @@ -2251,8 +2278,8 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt12__niter_wrapIPP10queue 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt14__copy_move_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2262,20 +2289,20 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt14__copy_move_a1ILb0EPP1 %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) + %10 = call noundef %struct.queueEntry** @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt14__copy_move_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2285,12 +2312,12 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt14__copy_move_a2ILb0EPP1 %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) + %10 = call noundef %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #7 comdat align 2 { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2326,11 +2353,11 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt11__copy_moveILb0ELb1ES ret %struct.queueEntry** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt22__copy_move_backward_aILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2338,18 +2365,18 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt22__copy_move_backward_a 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 + %8 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %7) #3 %9 = load %struct.queueEntry**, %struct.queueEntry*** %5, align 8 - %10 = call %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** %9) #3 + %10 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %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) + %12 = call noundef %struct.queueEntry** @_ZSt12__niter_baseIPP10queueEntryET_S3_(%struct.queueEntry** noundef %11) #3 + %13 = call noundef %struct.queueEntry** @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %8, %struct.queueEntry** noundef %10, %struct.queueEntry** noundef %12) + %14 = call noundef %struct.queueEntry** @_ZSt12__niter_wrapIPP10queueEntryET_RKS3_S3_(%struct.queueEntry*** noundef nonnull align 8 dereferenceable(8) %6, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt23__copy_move_backward_a1ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2359,12 +2386,12 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt23__copy_move_backward_a %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) + %10 = call noundef %struct.queueEntry** @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZSt23__copy_move_backward_a2ILb0EPP10queueEntryS2_ET1_T0_S4_S3_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #4 comdat { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2374,12 +2401,12 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZSt23__copy_move_backward_a %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) + %10 = call noundef %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** noundef %7, %struct.queueEntry** noundef %8, %struct.queueEntry** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.queueEntry** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIP10queueEntryEEPT_PKS5_S8_S6_(%struct.queueEntry** noundef %0, %struct.queueEntry** noundef %1, %struct.queueEntry** noundef %2) #7 comdat align 2 { %4 = alloca %struct.queueEntry**, align 8 %5 = alloca %struct.queueEntry**, align 8 %6 = alloca %struct.queueEntry**, align 8 @@ -2419,8 +2446,8 @@ define linkonce_odr dso_local %struct.queueEntry** @_ZNSt20__copy_move_backwardI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2432,12 +2459,12 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeI10queueEntrySaIS0_EE5empt %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 + %12 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEntryRS0_PS0_ES5_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -2452,19 +2479,19 @@ define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorI10queueEnt 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNSt5dequeI10queueEntrySaIS0_EE5frontEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeI10queueEntrySaIS0_EE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(8) %struct.queueEntry* @_ZNKSt15_Deque_iteratorI10queueEntryRS0_PS0_EdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2473,8 +2500,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(8) %struct.queueEn 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2496,14 +2523,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv 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 + %20 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %20, %struct.queueEntry* noundef %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"* @@ -2515,7 +2542,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv br label %36 34: ; preds = %1 - invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %35 unwind label %37 35: ; preds = %34 @@ -2532,8 +2559,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE9pop_frontEv 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %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 @@ -2541,24 +2568,24 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaI10queueEntryEE7de %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 + call void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, %struct.queueEntry* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_front_auxEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaI10queueEntryEE7destroyIS0_EEvRS1_PT_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, %struct.queueEntry* noundef %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 @@ -2566,7 +2593,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_fro %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 + call void @_ZNSt11_Deque_baseI10queueEntrySaIS0_EE18_M_deallocate_nodeEPS0_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, %struct.queueEntry* noundef %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"* @@ -2578,7 +2605,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_fro %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 + call void @_ZNSt15_Deque_iteratorI10queueEntryRS0_PS0_E11_M_set_nodeEPS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %22, %struct.queueEntry** noundef %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"* @@ -2594,8 +2621,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeI10queueEntrySaIS0_EE16_M_pop_fro 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorI10queueEntryE7destroyIS1_EEvPT_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %struct.queueEntry* noundef %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 @@ -2611,35 +2638,39 @@ define internal void @_GLOBAL__sub_I_snake_ladder.cpp() #0 section ".text.startu 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } +attributes #9 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #13 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #14 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #15 = { builtin allocsize(0) } attributes #16 = { noreturn nounwind } attributes #17 = { noreturn } attributes #18 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll similarity index 65% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll index 8c15cab7..95b789f8 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sort-array-wave-form-2.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/sort-array-wave-form-2.ll @@ -23,27 +23,27 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4swapPiS_(i32* noundef %0, i32* noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -62,8 +62,8 @@ define dso_local void @_Z4swapPiS_(i32* %0, i32* %1) #4 { ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local void @_Z10sortInWavePii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z10sortInWavePii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -108,7 +108,7 @@ define dso_local void @_Z10sortInWavePii(i32* %0, i32 %1) #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) + call void @_Z4swapPiS_(i32* noundef %30, i32* noundef %35) br label %36 36: ; preds = %26, %13, %10 @@ -143,7 +143,7 @@ define dso_local void @_Z10sortInWavePii(i32* %0, i32 %1) #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) + call void @_Z4swapPiS_(i32* noundef %58, i32* noundef %63) br label %64 64: ; preds = %54, %41, %36 @@ -153,14 +153,14 @@ define dso_local void @_Z10sortInWavePii(i32* %0, i32 %1) #4 { %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 + br label %6, !llvm.loop !6 68: ; preds = %6 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #5 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #5 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -171,7 +171,7 @@ define dso_local i32 @main() #5 { 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) + call void @_Z10sortInWavePii(i32* noundef %6, i32 noundef %7) store i32 0, i32* %4, align 4 br label %8 @@ -186,26 +186,26 @@ define dso_local i32 @main() #5 { %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)) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %16) + %18 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %17, i8* noundef 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 + br label %8, !llvm.loop !8 22: ; preds = %8 ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_sort_array_wave_form_2.cpp() #0 section ".text.startup" { @@ -213,19 +213,23 @@ define internal void @_GLOBAL__sub_I_sort_array_wave_form_2.cpp() #0 section ".t 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} 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-llvm14/sort-n-numbers-range-0-n2-1-linear-time.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/sort-n-numbers-range-0-n2-1-linear-time.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/sort-n-numbers-range-0-n2-1-linear-time.ll index 10c3f196..1513d432 100644 --- 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-llvm14/sort-n-numbers-range-0-n2-1-linear-time.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9countSortPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -87,7 +87,7 @@ define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %19, !llvm.loop !6 30: ; preds = %19 store i32 0, i32* %9, align 4 @@ -120,7 +120,7 @@ define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %31, !llvm.loop !8 52: ; preds = %31 store i32 1, i32* %9, align 4 @@ -150,7 +150,7 @@ define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %53, !llvm.loop !9 71: ; preds = %53 %72 = load i32, i32* %5, align 4 @@ -205,7 +205,7 @@ define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %74, !llvm.loop !10 114: ; preds = %74 store i32 0, i32* %9, align 4 @@ -233,7 +233,7 @@ define dso_local i32 @_Z9countSortPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %115, !llvm.loop !11 131: ; preds = %115 call void @llvm.trap() @@ -246,24 +246,24 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local void @_Z4sortPii(i32* noundef %0, i32 noundef %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) + %7 = call noundef i32 @_Z9countSortPiii(i32* noundef %5, i32 noundef %6, i32 noundef 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) + %11 = call noundef i32 @_Z9countSortPiii(i32* noundef %8, i32 noundef %9, i32 noundef %10) ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #7 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8printArrPii(i32* noundef %0, i32 noundef %1) #7 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -284,26 +284,26 @@ define dso_local void @_Z8printArrPii(i32* %0, i32 %1) #7 { %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)) + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef 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 + br label %6, !llvm.loop !12 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca [7 x i32], align 16 %3 = alloca i32, align 4 @@ -311,21 +311,21 @@ define dso_local i32 @main() #8 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z8printArrPii(i32* noundef %6, i32 noundef %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)) + call void @_Z4sortPii(i32* noundef %8, i32 noundef %9) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + call void @_Z8printArrPii(i32* noundef %11, i32 noundef %12) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -334,26 +334,30 @@ define internal void @_GLOBAL__sub_I_sort_n_numbers_range_0_n2_1_linear_time.cpp 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} 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-llvm14/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll similarity index 60% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll index e70edb66..2943c911 100644 --- 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-llvm14/sorted-array-number-x-find-pair-array-whose-sum-closest-x.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12printClosestPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -83,7 +83,7 @@ define dso_local void @_Z12printClosestPiii(i32* %0, i32 %1, i32 %2) #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 + %32 = call i32 @abs(i32 noundef %31) #8 %33 = load i32, i32* %11, align 4 %34 = icmp slt i32 %32, %33 br i1 %34, label %35, label %52 @@ -106,7 +106,7 @@ define dso_local void @_Z12printClosestPiii(i32* %0, i32 %1, i32 %2) #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 + %51 = call i32 @abs(i32 noundef %50) #8 store i32 %51, i32* %11, align 4 br label %52 @@ -139,35 +139,35 @@ define dso_local void @_Z12printClosestPiii(i32* %0, i32 %1, i32 %2) #4 { br label %72 72: ; preds = %69, %66 - br label %14, !llvm.loop !2 + br label %14, !llvm.loop !6 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)) + %74 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %80 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %74, i32 noundef %79) + %81 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %80, i8* noundef 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) + %87 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %81, i32 noundef %86) ret void } ; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 +declare i32 @abs(i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -180,11 +180,11 @@ define dso_local i32 @main() #6 { %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) + call void @_Z12printClosestPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -193,20 +193,24 @@ define internal void @_GLOBAL__sub_I_sorted_array_number_x_find_pair_array_whose 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readnone willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } attributes #8 = { nounwind readnone willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll index e72c193b..4e6ce618 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/strongly-connected-components.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/strongly-connected-components.ll @@ -286,7 +286,7 @@ $_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 +@_ZSt4cout = external 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 @@ -296,21 +296,21 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -329,7 +329,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #15 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -343,7 +343,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -361,20 +361,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i8*, align 8 @@ -391,15 +391,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %16 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %15) + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %16, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %23 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -413,15 +413,15 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab %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 + %33 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %35 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7, %"struct.std::_List_iterator"* noundef 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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -430,29 +430,29 @@ define dso_local void @_ZN5Graph7DFSUtilEiPb(%class.Graph* nonnull dereferenceab 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 + %45 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %10, i32 noundef %46, i8* noundef %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 + %50 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %7) #3 + br label %27, !llvm.loop !6 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -461,8 +461,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -473,17 +473,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -498,8 +498,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -508,21 +508,21 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 dereferenceable(20) %6) to label %8 unwind label %9 8: ; preds = %1 @@ -536,8 +536,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -550,8 +550,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph*, align 8 %4 = alloca i32, align 4 @@ -562,7 +562,7 @@ define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeE %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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef %10) store i32 0, i32* %4, align 4 br label %11 @@ -574,13 +574,13 @@ define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeE br i1 %15, label %16, label %48 16: ; preds = %11 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %5) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -594,25 +594,25 @@ define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeE %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 + %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %34 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %5, %"struct.std::_List_iterator"* noundef 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 + %38 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %41, i32* noundef 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 + %43 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %5) #3 + br label %26, !llvm.loop !8 44: ; preds = %26 br label %45 @@ -621,7 +621,7 @@ define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeE %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 + br label %11, !llvm.loop !9 48: ; preds = %11 %49 = bitcast %class.Graph* %2 to { i32, %"class.std::__cxx11::list"* }* @@ -629,26 +629,26 @@ define dso_local { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -661,12 +661,12 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, %"class.std::stack"* noundef 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 @@ -684,13 +684,13 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%clas %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -704,15 +704,15 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%clas %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 + %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %34 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* noundef 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 + %37 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -721,28 +721,28 @@ define dso_local void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%clas 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 + %44 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %45, i8* noundef %46, %"class.std::stack"* noundef 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 + %50 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9) #3 + br label %26, !llvm.loop !10 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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %52, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -750,12 +750,12 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* noundef nonnull align 8 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 @@ -768,11 +768,11 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab %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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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 + %16 = invoke noalias noundef nonnull i8* @_Znam(i64 noundef %15) #15 to label %17 unwind label %31 17: ; preds = %1 @@ -799,7 +799,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab %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 + br label %18, !llvm.loop !11 31: ; preds = %101, %98, %87, %85, %80, %58, %50, %1 %32 = landingpad { i8*, i32 } @@ -808,7 +808,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab 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 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #3 br label %106 35: ; preds = %18 @@ -836,7 +836,7 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab 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) + invoke void @_ZN5Graph9fillOrderEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %51, i8* noundef %52, %"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %53 unwind label %31 53: ; preds = %50 @@ -849,10 +849,10 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab %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 + br label %36, !llvm.loop !12 58: ; preds = %36 - %59 = invoke { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* nonnull dereferenceable(16) %12) + %59 = invoke { i32, %"class.std::__cxx11::list"* } @_ZN5Graph12getTransposeEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %12) to label %60 unwind label %31 60: ; preds = %58 @@ -885,13 +885,13 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab %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 + br label %66, !llvm.loop !13 79: ; preds = %66 br label %80 80: ; preds = %104, %79 - %81 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %3) + %81 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %82 unwind label %31 82: ; preds = %80 @@ -900,13 +900,13 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab 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) + %86 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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) + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %89 unwind label %31 89: ; preds = %87 @@ -923,21 +923,21 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab 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) + invoke void @_ZN5Graph7DFSUtilEiPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %9, i32 noundef %99, i8* noundef %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_) + %102 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %80, !llvm.loop !14 105: ; preds = %82 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #3 ret void 106: ; preds = %31 @@ -949,131 +949,131 @@ define dso_local void @_ZN5Graph9printSCCsEv(%class.Graph* nonnull dereferenceab } ; 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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([61 x i8], [61 x i8]* @.str.1, i64 0, i64 0)) + call void @_ZN5Graph9printSCCsEv(%class.Graph* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -1090,7 +1090,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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*) { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -1098,16 +1098,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator.0"* noundef 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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -1118,7 +1118,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -1127,8 +1127,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator.0"* noundef 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 @@ -1137,8 +1137,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1149,12 +1149,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_D %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -1165,12 +1165,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1180,7 +1180,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1203,7 +1203,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %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 @@ -1212,12 +1212,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %30) #3 ret void } @@ -1228,12 +1228,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -1262,8 +1262,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -1285,21 +1285,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + br label %10, !llvm.loop !15 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -1310,14 +1310,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -1327,7 +1327,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -1337,17 +1337,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -1356,11 +1356,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -1374,8 +1374,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1386,12 +1386,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1411,8 +1411,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %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 @@ -1422,28 +1422,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.3"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -1454,22 +1454,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1479,27 +1479,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -1509,12 +1509,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -1522,17 +1522,17 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -1540,7 +1540,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1552,28 +1552,28 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1582,8 +1582,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1594,21 +1594,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1618,28 +1618,28 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %10 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %12 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %13, %"struct.std::_List_node"* noundef %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) + %17 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %19 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %18) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, i32* noundef %17, i32* noundef nonnull align 4 dereferenceable(4) %19) #3 + %20 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1647,10 +1647,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1666,19 +1666,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1688,7 +1688,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1698,7 +1698,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1706,8 +1706,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1718,13 +1718,13 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1736,7 +1736,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1750,7 +1750,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1767,8 +1767,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1776,12 +1776,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1790,24 +1790,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1815,21 +1824,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1841,14 +1853,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1859,12 +1871,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1874,12 +1886,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -1912,7 +1924,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -1925,15 +1937,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1944,31 +1956,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -1987,8 +1999,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -2000,7 +2012,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -2016,8 +2028,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -2029,14 +2041,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2048,26 +2060,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2101,27 +2113,27 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -2136,20 +2148,20 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -2160,50 +2172,56 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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) + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2218,18 +2236,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2257,25 +2275,25 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #7 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2376,7 +2394,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -2396,7 +2414,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2412,14 +2430,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2456,7 +2474,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2468,7 +2486,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2489,7 +2507,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2498,12 +2516,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2511,16 +2529,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2528,16 +2546,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2565,8 +2583,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2575,13 +2593,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -2591,7 +2609,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -2602,8 +2620,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2611,26 +2629,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #8 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2639,8 +2657,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2650,20 +2668,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2673,12 +2691,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2714,11 +2732,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2726,18 +2744,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2747,12 +2765,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2762,12 +2780,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2807,8 +2825,8 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2816,12 +2834,12 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2830,32 +2848,41 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2863,12 +2890,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2877,45 +2904,54 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -2928,7 +2964,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -2940,19 +2976,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2966,7 +3002,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -2974,7 +3010,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -2984,7 +3020,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -3008,7 +3044,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -3034,7 +3070,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -3064,13 +3100,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -3087,7 +3123,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -3116,17 +3152,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -3135,14 +3171,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -3150,7 +3186,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3165,8 +3201,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -3188,7 +3224,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -3200,7 +3236,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !16 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -3216,7 +3252,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #17 to label %47 unwind label %33 @@ -3257,12 +3293,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3274,12 +3310,12 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.s %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 + %12 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -3294,20 +3330,20 @@ define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #3 + %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3322,7 +3358,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %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 @@ -3337,8 +3373,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3347,8 +3383,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3377,18 +3413,18 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: %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 + %26 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %26, i32* noundef %32) #3 br label %35 33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %34 unwind label %36 34: ; preds = %33 @@ -3405,8 +3441,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3414,12 +3450,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3430,7 +3466,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4, i32* noundef %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"* @@ -3442,7 +3478,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %14, i32** noundef %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"* @@ -3457,19 +3493,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + %35 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %35, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3485,39 +3521,43 @@ define internal void @_GLOBAL__sub_I_strongly_connected_components.cpp() #0 sect 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #14 = { argmemonly nofree 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll similarity index 78% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll index 58abb3ae..b09cfab8 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum-problem.ll @@ -7,8 +7,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z11isSubsetSumPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #0 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -56,7 +56,7 @@ define dso_local zeroext i1 @_Z11isSubsetSumPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + br label %23, !llvm.loop !6 36: ; preds = %23 store i32 1, i32* %11, align 4 @@ -81,7 +81,7 @@ define dso_local zeroext i1 @_Z11isSubsetSumPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + br label %37, !llvm.loop !8 50: ; preds = %37 store i32 1, i32* %12, align 4 @@ -200,7 +200,7 @@ define dso_local zeroext i1 @_Z11isSubsetSumPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + br label %56, !llvm.loop !9 140: ; preds = %56 br label %141 @@ -209,7 +209,7 @@ define dso_local zeroext i1 @_Z11isSubsetSumPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + br label %51, !llvm.loop !10 144: ; preds = %51 %145 = load i32, i32* %5, align 4 @@ -232,8 +232,8 @@ 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #2 { %1 = alloca i32, align 4 %2 = alloca [6 x i32], align 16 %3 = alloca i32, align 4 @@ -246,41 +246,45 @@ define dso_local i32 @main() #2 { %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) + %9 = call noundef zeroext i1 @_Z11isSubsetSumPiii(i32* noundef %6, i32 noundef %7, i32 noundef %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)) + %13 = call i32 (i8*, ...) @printf(i8* noundef 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)) + %15 = call i32 (i8*, ...) @printf(i8* noundef 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 +; Function Attrs: argmemonly nofree 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 i32 @printf(i8* noundef, ...) #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 #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } +attributes #4 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum.ll similarity index 70% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum.ll index 5a372ecf..eab607a9 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/subset-sum.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/subset-sum.ll @@ -9,8 +9,8 @@ target triple = "x86_64-pc-linux-gnu" @__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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z11printSubsetPii(i32* noundef %0, i32 noundef %1) #0 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -31,24 +31,24 @@ define dso_local void @_Z11printSubsetPii(i32* %0, i32 %1) #0 { %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) + %16 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str, i64 0, i64 0), i32 noundef 5, i32 noundef %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 + br label %6, !llvm.loop !6 20: ; preds = %6 - %21 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z10comparatorPKvS0_(i8* %0, i8* %1) #2 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z10comparatorPKvS0_(i8* noundef %0, i8* noundef %1) #2 { %3 = alloca i8*, align 8 %4 = alloca i8*, align 8 %5 = alloca i32*, align 8 @@ -70,8 +70,8 @@ define dso_local i32 @_Z10comparatorPKvS0_(i8* %0, i8* %1) #2 { 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z10subset_sumPiS_iiiii(i32* noundef %0, i32* noundef %1, i32 noundef %2, i32 noundef %3, i32 noundef %4, i32 noundef %5, i32 noundef %6) #0 { %8 = alloca i32*, align 8 %9 = alloca i32*, align 8 %10 = alloca i32, align 4 @@ -98,7 +98,7 @@ define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, 21: ; preds = %7 %22 = load i32*, i32** %9, align 8 %23 = load i32, i32* %11, align 4 - call void @_Z11printSubsetPii(i32* %22, i32 %23) + call void @_Z11printSubsetPii(i32* noundef %22, i32 noundef %23) %24 = load i32, i32* %13, align 4 %25 = add nsw i32 %24, 1 %26 = load i32, i32* %10, align 4 @@ -140,7 +140,7 @@ define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, %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) + call void @_Z10subset_sumPiS_iiiii(i32* noundef %46, i32* noundef %47, i32 noundef %48, i32 noundef %50, i32 noundef %57, i32 noundef %59, i32 noundef %60) br label %61 61: ; preds = %45, %28, %21 @@ -213,7 +213,7 @@ define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, %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) + call void @_Z10subset_sumPiS_iiiii(i32* noundef %102, i32* noundef %103, i32 noundef %104, i32 noundef %106, i32 noundef %113, i32 noundef %115, i32 noundef %116) br label %117 117: ; preds = %101, %82 @@ -223,7 +223,7 @@ define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, %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 + br label %78, !llvm.loop !8 121: ; preds = %78 br label %122 @@ -235,8 +235,8 @@ define dso_local void @_Z10subset_sumPiS_iiiii(i32* %0, i32* %1, i32 %2, i32 %3, ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z15generateSubsetsPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #0 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -249,7 +249,7 @@ define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + %13 = call noalias i8* @malloc(i64 noundef %12) #6 %14 = bitcast i8* %13 to i32* store i32* %14, i32** %7, align 8 store i32 0, i32* %8, align 4 @@ -257,7 +257,7 @@ define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { %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_) + call void @qsort(i8* noundef %16, i64 noundef %18, i64 noundef 4, i32 (i8*, i8*)* noundef @_Z10comparatorPKvS0_) store i32 0, i32* %9, align 4 br label %19 @@ -282,7 +282,7 @@ define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { %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 + br label %19, !llvm.loop !9 34: ; preds = %19 %35 = load i32*, i32** %4, align 8 @@ -303,26 +303,26 @@ define dso_local void @_Z15generateSubsetsPiii(i32* %0, i32 %1, i32 %2) #0 { %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) + call void @_Z10subset_sumPiS_iiiii(i32* noundef %45, i32* noundef %46, i32 noundef %47, i32 noundef 0, i32 noundef 0, i32 noundef 0, i32 noundef %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 + call void @free(i8* noundef %51) #6 ret void } ; Function Attrs: nounwind -declare dso_local noalias i8* @malloc(i64) #3 +declare noalias i8* @malloc(i64 noundef) #3 -declare dso_local void @qsort(i8*, i64, i64, i32 (i8*, i8*)*) #1 +declare void @qsort(i8* noundef, i64 noundef, i64 noundef, i32 (i8*, i8*)* noundef) #1 ; Function Attrs: nounwind -declare dso_local void @free(i8*) #3 +declare void @free(i8* noundef) #3 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 %2 = alloca [8 x i32], align 16 %3 = alloca i32, align 4 @@ -335,29 +335,33 @@ define dso_local i32 @main() #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) + call void @_Z15generateSubsetsPiii(i32* noundef %6, i32 noundef %7, i32 noundef %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) + %10 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([20 x i8], [20 x i8]* @.str.2, i64 0, i64 0), i32 noundef %9) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn } attributes #6 = { nounwind } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll similarity index 71% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll index 2dac26ce..73eca62f 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/sudoku.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/sudoku.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -30,21 +30,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* noundef %0) #4 { %2 = alloca i1, align 1 %3 = alloca [9 x i32]*, align 8 %4 = alloca i32, align 4 @@ -52,7 +52,7 @@ define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #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) + %8 = call noundef zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* noundef %7, i32* noundef nonnull align 4 dereferenceable(4) %4, i32* noundef nonnull align 4 dereferenceable(4) %5) br i1 %8, label %10, label %9 9: ; preds = %1 @@ -73,7 +73,7 @@ define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #4 { %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) + %19 = call noundef zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* noundef %15, i32 noundef %16, i32 noundef %17, i32 noundef %18) br i1 %19, label %20, label %40 20: ; preds = %14 @@ -87,7 +87,7 @@ define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #4 { %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) + %30 = call noundef zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* noundef %29) br i1 %30, label %31, label %32 31: ; preds = %20 @@ -112,7 +112,7 @@ define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #4 { %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 + br label %11, !llvm.loop !6 44: ; preds = %11 store i1 false, i1* %2, align 1 @@ -123,8 +123,8 @@ define dso_local zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* %0) #4 { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* noundef %0, i32* noundef nonnull align 4 dereferenceable(4) %1, i32* noundef nonnull align 4 dereferenceable(4) %2) #5 { %4 = alloca i1, align 1 %5 = alloca [9 x i32]*, align 8 %6 = alloca i32*, align 8 @@ -179,7 +179,7 @@ define dso_local zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* %0, %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 + br label %15, !llvm.loop !8 37: ; preds = %15 br label %38 @@ -189,7 +189,7 @@ define dso_local zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* %0, %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 + br label %9, !llvm.loop !9 42: ; preds = %9 store i1 false, i1* %4, align 1 @@ -200,8 +200,8 @@ define dso_local zeroext i1 @_Z22FindUnassignedLocationPA9_iRiS1_([9 x i32]* %0, 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #5 { %5 = alloca [9 x i32]*, align 8 %6 = alloca i32, align 4 %7 = alloca i32, align 4 @@ -213,14 +213,14 @@ define dso_local zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* %0, i32 %1, i32 %2, i3 %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) + %12 = call noundef zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* noundef %9, i32 noundef %10, i32 noundef %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) + %17 = call noundef zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* noundef %14, i32 noundef %15, i32 noundef %16) br i1 %17, label %40, label %18 18: ; preds = %13 @@ -234,7 +234,7 @@ define dso_local zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* %0, i32 %1, i32 %2, i3 %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) + %29 = call noundef zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* noundef %19, i32 noundef %23, i32 noundef %27, i32 noundef %28) br i1 %29, label %40, label %30 30: ; preds = %18 @@ -254,8 +254,8 @@ define dso_local zeroext i1 @_Z6isSafePA9_iiii([9 x i32]* %0, i32 %1, i32 %2, i3 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #5 { %4 = alloca i1, align 1 %5 = alloca [9 x i32]*, align 8 %6 = alloca i32, align 4 @@ -296,7 +296,7 @@ define dso_local zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* %0, i32 %1, i32 %2) %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 + br label %9, !llvm.loop !10 28: ; preds = %9 store i1 false, i1* %4, align 1 @@ -307,8 +307,8 @@ define dso_local zeroext i1 @_Z9UsedInRowPA9_iii([9 x i32]* %0, i32 %1, i32 %2) 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2) #5 { %4 = alloca i1, align 1 %5 = alloca [9 x i32]*, align 8 %6 = alloca i32, align 4 @@ -349,7 +349,7 @@ define dso_local zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* %0, i32 %1, i32 %2) %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 + br label %9, !llvm.loop !11 28: ; preds = %9 store i1 false, i1* %4, align 1 @@ -360,8 +360,8 @@ define dso_local zeroext i1 @_Z9UsedInColPA9_iii([9 x i32]* %0, i32 %1, i32 %2) 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* noundef %0, i32 noundef %1, i32 noundef %2, i32 noundef %3) #5 { %5 = alloca i1, align 1 %6 = alloca [9 x i32]*, align 8 %7 = alloca i32, align 4 @@ -418,7 +418,7 @@ define dso_local zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* %0, i32 %1, i32 %2, %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 + br label %16, !llvm.loop !12 39: ; preds = %16 br label %40 @@ -427,7 +427,7 @@ define dso_local zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* %0, i32 %1, i32 %2, %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 + br label %12, !llvm.loop !13 43: ; preds = %12 store i1 false, i1* %5, align 1 @@ -438,8 +438,8 @@ define dso_local zeroext i1 @_Z9UsedInBoxPA9_iiii([9 x i32]* %0, i32 %1, i32 %2, ret i1 %45 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z9printGridPA9_i([9 x i32]* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z9printGridPA9_i([9 x i32]* noundef %0) #4 { %2 = alloca [9 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -470,65 +470,65 @@ define dso_local void @_Z9printGridPA9_i([9 x i32]* %0) #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)) + %21 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %20) + %22 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %21, i8* noundef 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 + br label %9, !llvm.loop !14 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_) + %27 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + br label %5, !llvm.loop !15 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %5 = call noundef zeroext i1 @_Z11SolveSudokuPA9_i([9 x i32]* noundef %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) + call void @_Z9printGridPA9_i([9 x i32]* noundef %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)) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 +; Function Attrs: argmemonly nofree 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 @@ -537,27 +537,31 @@ define internal void @_GLOBAL__sub_I_sudoku.cpp() #0 section ".text.startup" { 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll similarity index 70% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll index f00e291a..18d13094 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/tarjan-algorithm.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/tarjan-algorithm.ll @@ -273,7 +273,7 @@ $_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 +@_ZSt4cout = external 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 @@ -288,21 +288,21 @@ $_ZN9__gnu_cxx13new_allocatorIiED2Ev = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -321,7 +321,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #15 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -335,7 +335,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -353,20 +353,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -379,30 +379,30 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32* noundef %2, i32* noundef %3, %"class.std::stack"* noundef %4, i8* noundef %5) #7 align 2 { %7 = alloca %class.Graph*, align 8 %8 = alloca i32, align 4 %9 = alloca i32*, align 8 @@ -435,19 +435,19 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c %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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %29, i32* noundef 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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %39 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -461,14 +461,14 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c %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 + %49 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %51 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %13, %"struct.std::_List_iterator"* noundef 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 + %53 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -485,7 +485,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c %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) + call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %18, i32 noundef %62, i32* noundef %63, i32* noundef %64, %"class.std::stack"* noundef %65, i8* noundef %66) %67 = load i32*, i32** %10, align 8 %68 = load i32, i32* %8, align 4 %69 = sext i32 %68 to i64 @@ -494,7 +494,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c %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) + %75 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %70, i32* noundef 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 @@ -523,7 +523,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c %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) + %99 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %94, i32* noundef 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 @@ -539,8 +539,8 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c 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 + %108 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %13) #3 + br label %43, !llvm.loop !6 109: ; preds = %43 store i32 0, i32* %17, align 4 @@ -562,7 +562,7 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c 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) + %124 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %123) %125 = load i32, i32* %124, align 4 %126 = load i32, i32* %8, align 4 %127 = icmp ne i32 %125, %126 @@ -570,44 +570,44 @@ define dso_local void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%c 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) + %130 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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)) + %133 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %132) + %134 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %133, i8* noundef 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 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %139) + br label %122, !llvm.loop !8 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) + %142 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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)) + %145 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %144) + %146 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %145, i8* noundef 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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -615,12 +615,12 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -629,8 +629,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -641,17 +641,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -666,8 +666,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -676,26 +676,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3minIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #8 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -723,8 +723,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -737,32 +737,32 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 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 @@ -781,7 +781,7 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %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 + %19 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -791,17 +791,17 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %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 + %28 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 + %33 = call noalias noundef nonnull i8* @_Znam(i64 noundef %32) #15 store i8* %33, i8** %5, align 8 - %34 = call noalias nonnull i8* @_Znwm(i64 80) #15 + %34 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 80) #15 %35 = bitcast i8* %34 to %"class.std::stack"* - invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* nonnull dereferenceable(80) %35) + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %35) to label %36 unwind label %58 36: ; preds = %1 @@ -838,7 +838,7 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %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 + br label %37, !llvm.loop !9 58: ; preds = %1 %59 = landingpad { i8*, i32 } @@ -847,7 +847,7 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) 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 + call void @_ZdlPv(i8* noundef %34) #16 br label %86 62: ; preds = %37 @@ -876,7 +876,7 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %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) + call void @_ZN5Graph7SCCUtilEiPiS0_PSt5stackIiSt5dequeIiSaIiEEEPb(%class.Graph* noundef nonnull align 8 dereferenceable(16) %11, i32 noundef %76, i32* noundef %77, i32* noundef %78, %"class.std::stack"* noundef %79, i8* noundef %80) br label %81 81: ; preds = %75, %68 @@ -886,7 +886,7 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) %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 + br label %63, !llvm.loop !10 85: ; preds = %63 ret void @@ -900,27 +900,27 @@ define dso_local void @_ZN5Graph3SCCEv(%class.Graph* nonnull dereferenceable(16) } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare i32 @__gxx_personality_v0(...) ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #10 +declare void @_ZdlPv(i8* noundef) #10 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #11 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #11 { %1 = alloca i32, align 4 %2 = alloca %class.Graph, align 8 %3 = alloca %class.Graph, align 8 @@ -928,115 +928,115 @@ define dso_local i32 @main() #11 { %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) + %7 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @.str.2, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2) + %8 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([24 x i8], [24 x i8]* @.str.3, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %3) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @.str.4, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 1, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 3, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %4) + %10 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([24 x i8], [24 x i8]* @.str.5, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 11) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 0, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 1, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 2, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 3, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 4, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 8) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 5, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 6, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 7, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 8, i32 noundef 9) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5, i32 noundef 9, i32 noundef 8) + call void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %5) + %11 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([23 x i8], [23 x i8]* @.str.6, i64 0, i64 0)) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 1, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 2, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 3, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %6, i32 noundef 4, i32 noundef 2) + call void @_ZN5Graph3SCCEv(%class.Graph* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -1052,8 +1052,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1064,21 +1064,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1090,26 +1090,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -1119,7 +1119,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -1130,8 +1130,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1139,10 +1139,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1158,19 +1158,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1180,7 +1180,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1190,7 +1190,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1198,8 +1198,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1210,23 +1210,23 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1238,7 +1238,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1252,7 +1252,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1269,8 +1269,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1278,12 +1278,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1292,24 +1292,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1317,18 +1326,21 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 + +; Function Attrs: noreturn +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1340,24 +1352,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1366,8 +1378,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1378,7 +1390,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -1389,12 +1401,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1404,12 +1416,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -1442,7 +1454,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -1455,15 +1467,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1474,31 +1486,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -1517,8 +1529,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -1530,7 +1542,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -1546,8 +1558,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1559,14 +1571,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -1578,26 +1590,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #12 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1631,27 +1643,27 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -1666,20 +1678,20 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -1690,36 +1702,42 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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) + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { + %1 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) to label %2 unwind label %3 2: ; preds = %0 @@ -1733,8 +1751,8 @@ define linkonce_odr dso_local i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_size unreachable } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1754,17 +1772,17 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -1779,8 +1797,8 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1789,18 +1807,18 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -1828,25 +1846,25 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #7 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -1947,7 +1965,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -1967,7 +1985,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -1983,14 +2001,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2027,7 +2045,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2039,7 +2057,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2060,7 +2078,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2069,12 +2087,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2082,16 +2100,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2099,16 +2117,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2136,8 +2154,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2146,13 +2164,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -2162,7 +2180,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -2173,8 +2191,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -2185,14 +2203,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -2202,7 +2220,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -2211,8 +2229,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2220,26 +2238,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #8 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2248,8 +2266,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2259,20 +2277,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2282,12 +2300,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2323,11 +2341,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2335,18 +2353,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2356,12 +2374,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2371,12 +2389,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2416,21 +2434,21 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2438,42 +2456,42 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2482,24 +2500,33 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -2507,15 +2534,15 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_siz } ; 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.3"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -2526,12 +2553,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -2541,12 +2568,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2554,12 +2581,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2568,24 +2595,33 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #18 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #19 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } ; 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -2597,20 +2633,20 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #3 + %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -2621,12 +2657,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2641,7 +2677,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %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 @@ -2656,8 +2692,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2667,7 +2703,7 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -2696,8 +2732,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2726,18 +2762,18 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: %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 + %26 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %26, i32* noundef %32) #3 br label %35 33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %34 unwind label %36 34: ; preds = %33 @@ -2754,8 +2790,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -2763,12 +2799,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -2777,8 +2813,8 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -2789,7 +2825,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4, i32* noundef %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"* @@ -2801,7 +2837,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %14, i32** noundef %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"* @@ -2816,19 +2852,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + %35 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %35, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -2838,8 +2874,8 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEv 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -2848,8 +2884,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %10 unwind label %11 10: ; preds = %2 @@ -2863,8 +2899,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -2875,12 +2911,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %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 @@ -2890,33 +2926,33 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -2929,7 +2965,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -2941,19 +2977,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2967,7 +3003,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -2975,7 +3011,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -2985,7 +3021,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -3009,7 +3045,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -3035,7 +3071,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -3065,13 +3101,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -3088,7 +3124,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -3117,27 +3153,27 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -3146,14 +3182,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -3161,7 +3197,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3176,8 +3212,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -3199,7 +3235,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -3211,7 +3247,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !11 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -3227,7 +3263,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #18 to label %47 unwind label %33 @@ -3268,12 +3304,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -3295,31 +3331,31 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + br label %10, !llvm.loop !12 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -3332,36 +3368,40 @@ define internal void @_GLOBAL__sub_I_tarjan_algorithm.cpp() #0 section ".text.st 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #13 = { noinline noreturn nounwind } -attributes #14 = { argmemonly nofree nosync nounwind willreturn writeonly } +attributes #14 = { argmemonly nofree 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/the-knights-tour.ll similarity index 73% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/the-knights-tour.ll index ce530e2c..81a0a046 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/the-knights-tour.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/the-knights-tour.ll @@ -9,8 +9,8 @@ target triple = "x86_64-pc-linux-gnu" @__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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %0, i32 noundef %1, [8 x i32]* noundef %2) #0 { %4 = alloca i32, align 4 %5 = alloca i32, align 4 %6 = alloca [8 x i32]*, align 8 @@ -53,8 +53,8 @@ define dso_local zeroext i1 @_Z6isSafeiiPA8_i(i32 %0, i32 %1, [8 x i32]* %2) #0 ret i1 %29 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA8_i([8 x i32]* %0) #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA8_i([8 x i32]* noundef %0) #1 { %2 = alloca [8 x i32]*, align 8 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -85,33 +85,33 @@ define dso_local void @_Z13printSolutionPA8_i([8 x i32]* %0) #1 { %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) + %21 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i32 noundef %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 + br label %9, !llvm.loop !6 25: ; preds = %9 - %26 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) + %26 = call i32 (i8*, ...) @printf(i8* noundef 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 + br label %5, !llvm.loop !8 30: ; preds = %5 ret void } -declare dso_local i32 @printf(i8*, ...) #2 +declare i32 @printf(i8* noundef, ...) #2 -; Function Attrs: noinline uwtable mustprogress -define dso_local zeroext i1 @_Z7solveKTv() #1 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef zeroext i1 @_Z7solveKTv() #1 { %1 = alloca i1, align 1 %2 = alloca [8 x [8 x i32]], align 16 %3 = alloca i32, align 4 @@ -149,7 +149,7 @@ define dso_local zeroext i1 @_Z7solveKTv() #1 { %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 + br label %11, !llvm.loop !9 24: ; preds = %11 br label %25 @@ -158,7 +158,7 @@ define dso_local zeroext i1 @_Z7solveKTv() #1 { %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 + br label %7, !llvm.loop !10 28: ; preds = %7 %29 = bitcast [8 x i32]* %5 to i8* @@ -171,18 +171,18 @@ define dso_local zeroext i1 @_Z7solveKTv() #1 { %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) + %36 = call noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef 0, i32 noundef 0, i32 noundef 1, [8 x i32]* noundef %33, i32* noundef %34, i32* noundef %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)) + %39 = call i32 (i8*, ...) @printf(i8* noundef 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) + call void @_Z13printSolutionPA8_i([8 x i32]* noundef %41) br label %42 42: ; preds = %40 @@ -194,11 +194,11 @@ define dso_local zeroext i1 @_Z7solveKTv() #1 { ret i1 %44 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %0, i32 noundef %1, i32 noundef %2, [8 x i32]* noundef %3, i32* noundef %4, i32* noundef %5) #1 { %7 = alloca i32, align 4 %8 = alloca i32, align 4 %9 = alloca i32, align 4 @@ -252,7 +252,7 @@ define dso_local i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %0, i32 %1, i32 %2, [8 x %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) + %42 = call noundef zeroext i1 @_Z6isSafeiiPA8_i(i32 noundef %39, i32 noundef %40, [8 x i32]* noundef %41) br i1 %42, label %43, label %71 43: ; preds = %24 @@ -272,7 +272,7 @@ define dso_local i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %0, i32 %1, i32 %2, [8 x %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) + %59 = call noundef i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 noundef %52, i32 noundef %53, i32 noundef %55, [8 x i32]* noundef %56, i32* noundef %57, i32* noundef %58) %60 = icmp eq i32 %59, 1 br i1 %60, label %61, label %62 @@ -301,7 +301,7 @@ define dso_local i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %0, i32 %1, i32 %2, [8 x %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 + br label %21, !llvm.loop !11 75: ; preds = %21 store i32 0, i32* %7, align 4 @@ -312,28 +312,32 @@ define dso_local i32 @_Z11solveKTUtiliiiPA8_iPiS1_(i32 %0, i32 %1, i32 %2, [8 x ret i32 %77 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #4 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #4 { %1 = alloca i32, align 4 store i32 0, i32* %1, align 4 - %2 = call zeroext i1 @_Z7solveKTv() + %2 = call noundef 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" } +attributes #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } +attributes #4 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/topological-sorting.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/topological-sorting.ll index 014cd49e..5a8607e8 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/topological-sorting.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/topological-sorting.ll @@ -286,7 +286,7 @@ $_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 +@_ZSt4cout = external 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 @@ -296,21 +296,21 @@ $_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_ = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -329,7 +329,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #15 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -343,7 +343,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -361,20 +361,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -387,30 +387,30 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i8* noundef %2, %"class.std::stack"* noundef 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 @@ -428,13 +428,13 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 + %22 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -448,15 +448,15 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa %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 + %32 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %34 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %9, %"struct.std::_List_iterator"* noundef 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 + %37 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -465,28 +465,28 @@ define dso_local void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSa 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 + %44 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %12, i32 noundef %45, i8* noundef %46, %"class.std::stack"* noundef 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 + %50 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %52, i32* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -495,8 +495,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -507,17 +507,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -532,8 +532,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -542,26 +542,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -574,8 +574,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -583,12 +583,12 @@ define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE4pushERKi(%"cl %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) + call void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %6, i32* noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* noundef nonnull align 8 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 @@ -598,11 +598,11 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe %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) + call void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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 + %13 = invoke noalias noundef nonnull i8* @_Znam(i64 noundef %12) #15 to label %14 unwind label %28 14: ; preds = %1 @@ -629,7 +629,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe %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 + br label %15, !llvm.loop !8 28: ; preds = %68, %66, %63, %61, %56, %47, %1 %29 = landingpad { i8*, i32 } @@ -638,7 +638,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe 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 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #3 br label %71 32: ; preds = %15 @@ -666,7 +666,7 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe 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) + invoke void @_ZN5Graph19topologicalSortUtilEiPbRSt5stackIiSt5dequeIiSaIiEEE(%class.Graph* noundef nonnull align 8 dereferenceable(16) %9, i32 noundef %48, i8* noundef %49, %"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %50 unwind label %28 50: ; preds = %47 @@ -679,13 +679,13 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe %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 + br label %33, !llvm.loop !9 55: ; preds = %33 br label %56 56: ; preds = %69, %55 - %57 = invoke zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* nonnull dereferenceable(80) %3) + %57 = invoke noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %58 unwind label %28 58: ; preds = %56 @@ -694,27 +694,27 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe 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) + %62 = invoke noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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) + %65 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %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)) + %67 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %65, i8* noundef 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) + invoke void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) to label %69 unwind label %28 69: ; preds = %68 - br label %56, !llvm.loop !6 + br label %56, !llvm.loop !10 70: ; preds = %58 - call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* nonnull dereferenceable(80) %3) #3 + call void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 dereferenceable(80) %3) #3 ret void 71: ; preds = %28 @@ -726,132 +726,132 @@ define dso_local void @_ZN5Graph15topologicalSortEv(%class.Graph* nonnull derefe } ; 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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEEC2IS2_vEEv(%"class.std::stack"* noundef nonnull align 8 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) + call void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5stackIiSt5dequeIiSaIiEEE5emptyEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5stackIiSt5dequeIiSaIiEEE3topEv(%"class.std::stack"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEE3popEv(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt5stackIiSt5dequeIiSaIiEEED2Ev(%"class.std::stack"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 ret void } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 6) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 0) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 2, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 1) + %3 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([53 x i8], [53 x i8]* @.str.1, i64 0, i64 0)) + call void @_ZN5Graph15topologicalSortEv(%class.Graph* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -868,7 +868,7 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( } ; 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*) { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* noundef nonnull align 8 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 @@ -876,16 +876,16 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7) #3 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %4, %"class.std::deque"* noundef nonnull align 8 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) + %9 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8) #3 + invoke void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %7, %"struct.std::_Deque_iterator"* noundef %3, %"struct.std::_Deque_iterator"* noundef %4, %"class.std::allocator.0"* noundef 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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %11) #3 ret void 12: ; preds = %1 @@ -896,7 +896,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* %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 + call void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %16) #3 br label %17 17: ; preds = %12 @@ -905,8 +905,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEED2Ev(%"class.std::deque"* 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_Deque_iteratorIiRiPiES5_RKS0_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, %"struct.std::_Deque_iterator"* noundef %1, %"struct.std::_Deque_iterator"* noundef %2, %"class.std::allocator.0"* noundef 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 @@ -915,8 +915,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_destroy_dataESt15_De 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -927,12 +927,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE5beginEv(%"struct.std::_D %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* noalias sret(%"struct.std::_Deque_iterator") align 8 %0, %"class.std::deque"* noundef nonnull align 8 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* @@ -943,12 +943,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deq %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -958,7 +958,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -981,7 +981,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %14, i32** noundef %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 @@ -990,12 +990,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEED2Ev(%"class.std:: %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %3, i32** noundef %24, i64 noundef %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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %30) #3 ret void } @@ -1006,12 +1006,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #11 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -1040,8 +1040,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2ERKS2_(%"stru 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca %"class.std::_Deque_base"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -1063,21 +1063,21 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodes 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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %8, i32* noundef %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 + 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i64 noundef %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 @@ -1088,14 +1088,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + 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"* noundef nonnull align 8 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) + invoke void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7, i32** noundef %11, i64 noundef %12) to label %13 unwind label %14 13: ; preds = %3 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %7) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 ret void 14: ; preds = %3 @@ -1105,7 +1105,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %18 18: ; preds = %14 @@ -1115,17 +1115,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef %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 @@ -1134,11 +1134,11 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no %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) + %9 = invoke noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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) + invoke void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %7, i32* noundef %8, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %10 @@ -1152,8 +1152,8 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateERS0_Pim(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.0"*, align 8 %5 = alloca i32*, align 8 %6 = alloca i64, align 8 @@ -1164,12 +1164,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE10deallocateER %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) + call void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i64 noundef %10) ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef %0) #8 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -1189,8 +1189,8 @@ define linkonce_odr dso_local i64 @_ZSt16__deque_buf_sizem(i64 %0) #8 comdat { 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateEPim(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i64 noundef %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 @@ -1200,28 +1200,28 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE10deallocateE %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #12 +declare void @_ZdlPv(i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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"* noundef nonnull align 8 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 + %7 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %6) #3 + call void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateERS1_PS0_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %2) #7 comdat align 2 { %4 = alloca %"class.std::allocator.3"*, align 8 %5 = alloca i32**, align 8 %6 = alloca i64, align 8 @@ -1232,22 +1232,22 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIPiEE10deallocateE %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) + call void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %8, i32** noundef %9, i64 noundef %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 { +define linkonce_odr dso_local void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 @@ -1257,27 +1257,27 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSaIPiEC2IiEERKSaIT_E(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, %"class.std::allocator.0"* noundef 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 + call void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiEC2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocateEPS1_m(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i32** noundef %1, i64 noundef %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 @@ -1287,12 +1287,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiE10deallocate %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 @@ -1300,25 +1300,25 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIPiED2Ev(%"class } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiED2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiED2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -1329,21 +1329,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -1355,26 +1355,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -1384,7 +1384,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -1395,8 +1395,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1404,10 +1404,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1423,19 +1423,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1445,7 +1445,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1455,7 +1455,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1463,8 +1463,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1475,23 +1475,23 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1503,7 +1503,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1517,7 +1517,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1534,8 +1534,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1543,12 +1543,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1557,24 +1557,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1582,21 +1591,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #13 +declare void @_ZSt28__throw_bad_array_new_lengthv() #13 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #13 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1608,24 +1620,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1634,8 +1646,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1646,12 +1658,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1661,12 +1673,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1678,8 +1690,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_L 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 @@ -1712,7 +1724,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st %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 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %23, i32* noundef %29, i32* noundef 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"* @@ -1725,15 +1737,15 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE9push_backERKi(%"class.st 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) + call void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1744,31 +1756,31 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE9constructIiJR %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEEEvDpOT_(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i32* noundef 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 + %6 = call noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5) #3 + %7 = call noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZSt20__throw_length_errorPKc(i8* noundef 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) + call void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 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) + %12 = call noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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"* @@ -1787,8 +1799,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + %30 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %29) #3 + call void @_ZNSt16allocator_traitsISaIiEE9constructIiJRKiEEEvRS0_PT_DpOT0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %22, i32* noundef %28, i32* noundef 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"* @@ -1800,7 +1812,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %34, i32** noundef %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"* @@ -1816,8 +1828,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE16_M_push_back_auxIJRKiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1829,14 +1841,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE9constructIiJ %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -1848,26 +1860,26 @@ define linkonce_odr dso_local i64 @_ZNKSt5dequeIiSaIiEE4sizeEv(%"class.std::dequ %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 + %12 = call noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNKSt5dequeIiSaIiEE8max_sizeEv(%"class.std::deque"* noundef nonnull align 8 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 + %5 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNKSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %6 = call noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i64 %6 } ; Function Attrs: noreturn -declare dso_local void @_ZSt20__throw_length_errorPKc(i8*) #13 +declare void @_ZSt20__throw_length_errorPKc(i8* noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backEm(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -1901,27 +1913,27 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE22_M_reserve_map_at_backE 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) + call void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef %31, i1 noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 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) + %6 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) + %7 = call noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, i32** noundef %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 @@ -1936,20 +1948,20 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEP 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 + %13 = call noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 + %5 = call noundef 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 @@ -1960,50 +1972,56 @@ define linkonce_odr dso_local i64 @_ZStmiRKSt15_Deque_iteratorIiRiPiES4_(%"struc %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) + %16 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %17 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %16, i32 0, i32 3 + %18 = load i32**, i32*** %17, align 8 + %19 = icmp ne i32** %18, null + %20 = zext i1 %19 to i32 + %21 = sext i32 %20 to i64 + %22 = sub nsw i64 %15, %21 + %23 = mul nsw i64 %5, %22 + %24 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %25 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %24, i32 0, i32 0 + %26 = load i32*, i32** %25, align 8 + %27 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %3, align 8 + %28 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %27, i32 0, i32 1 + %29 = load i32*, i32** %28, align 8 + %30 = ptrtoint i32* %26 to i64 + %31 = ptrtoint i32* %29 to i64 + %32 = sub i64 %30, %31 + %33 = sdiv exact i64 %32, 4 + %34 = add nsw i64 %23, %33 + %35 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %36 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %35, i32 0, i32 2 + %37 = load i32*, i32** %36, align 8 + %38 = load %"struct.std::_Deque_iterator"*, %"struct.std::_Deque_iterator"** %4, align 8 + %39 = getelementptr inbounds %"struct.std::_Deque_iterator", %"struct.std::_Deque_iterator"* %38, i32 0, i32 0 + %40 = load i32*, i32** %39, align 8 + %41 = ptrtoint i32* %37 to i64 + %42 = ptrtoint i32* %40 to i64 + %43 = sub i64 %41, %42 + %44 = sdiv exact i64 %43, 4 + %45 = add nsw i64 %34, %44 + ret i64 %45 +} + +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt15_Deque_iteratorIiRiPiE14_S_buffer_sizeEv() #8 comdat align 2 { + %1 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %6 = call noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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) + %7 = invoke noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %3, i64* noundef nonnull align 8 dereferenceable(8) %4) to label %8 unwind label %10 8: ; preds = %1 @@ -2018,18 +2036,18 @@ define linkonce_odr dso_local i64 @_ZNSt5dequeIiSaIiEE11_S_max_sizeERKS0_(%"clas 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNSt16allocator_traitsISaIiEE8max_sizeERKS0_(%"class.std::allocator.0"* noundef 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 + %5 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3minImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2057,25 +2075,25 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3minI 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE8max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 + %4 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %1, i1 noundef zeroext %2) #7 comdat align 2 { %4 = alloca %"class.std::deque"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8, align 1 @@ -2176,7 +2194,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %88 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %79, i32** noundef %86, i32** noundef %87) br label %107 89: ; preds = %62 @@ -2196,7 +2214,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %106 = call noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %95, i32** noundef %102, i32** noundef %105) br label %107 107: ; preds = %89, %73 @@ -2212,14 +2230,14 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %118 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %117, i64* noundef 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) + %124 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %122, i64 noundef %123) store i32** %124, i32*** %11, align 8 %125 = load i32**, i32*** %11, align 8 %126 = load i64, i64* %10, align 8 @@ -2256,7 +2274,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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) + %153 = call noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %144, i32** noundef %151, i32** noundef %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 @@ -2268,7 +2286,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %154, i32** noundef %159, i64 noundef %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 @@ -2289,7 +2307,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %179, i32** noundef %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"* @@ -2298,12 +2316,12 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE17_M_reallocate_mapEmb(%" %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %184, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2311,16 +2329,16 @@ define linkonce_odr dso_local i32** @_ZSt4copyIPPiS1_ET0_T_S3_S2_(i32** %0, i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2328,16 +2346,16 @@ define linkonce_odr dso_local i32** @_ZSt13copy_backwardIPPiS1_ET0_T_S3_S2_(i32* 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) + %8 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %7) %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %9) + %10 = call noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %0, i64* noundef nonnull align 8 dereferenceable(8) %1) #8 comdat { %3 = alloca i64*, align 8 %4 = alloca i64*, align 8 %5 = alloca i64*, align 8 @@ -2365,8 +2383,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) i64* @_ZSt3maxI 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2375,13 +2393,13 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + 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"* noundef nonnull align 8 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) + %10 = invoke noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef %9) to label %11 unwind label %12 11: ; preds = %2 - call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* nonnull dereferenceable(1) %5) #3 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 ret i32** %10 12: ; preds = %2 @@ -2391,7 +2409,7 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 + call void @_ZNSaIPiED2Ev(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %5) #3 br label %16 16: ; preds = %12 @@ -2402,8 +2420,8 @@ define linkonce_odr dso_local i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_map 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2411,26 +2429,26 @@ define linkonce_odr dso_local i32** @_ZSt13__copy_move_aILb0EPPiS1_ET1_T0_S3_S2_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %13) ret i32** %14 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__miter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__miter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %0, i32** noundef %1) #8 comdat { %3 = alloca i32***, align 8 %4 = alloca i32**, align 8 store i32*** %0, i32**** %3, align 8 @@ -2439,8 +2457,8 @@ define linkonce_odr dso_local i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** no 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2450,20 +2468,20 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a1ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %9) ret i32** %10 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %0) #8 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2473,12 +2491,12 @@ define linkonce_odr dso_local i32** @_ZSt14__copy_move_a2ILb0EPPiS1_ET1_T0_S3_S2 %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) + %10 = call noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_access_iterator_tagE8__copy_mIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2514,11 +2532,11 @@ define linkonce_odr dso_local i32** @_ZNSt11__copy_moveILb0ELb1ESt26random_acces ret i32** %26 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2526,18 +2544,18 @@ define linkonce_odr dso_local i32** @_ZSt22__copy_move_backward_aILb0EPPiS1_ET1_ 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 + %8 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %7) #3 %9 = load i32**, i32*** %5, align 8 - %10 = call i32** @_ZSt12__niter_baseIPPiET_S2_(i32** %9) #3 + %10 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %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) + %12 = call noundef i32** @_ZSt12__niter_baseIPPiET_S2_(i32** noundef %11) #3 + %13 = call noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %8, i32** noundef %10, i32** noundef %12) + %14 = call noundef i32** @_ZSt12__niter_wrapIPPiET_RKS2_S2_(i32*** noundef nonnull align 8 dereferenceable(8) %6, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2547,12 +2565,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a1ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1_T0_S3_S2_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #7 comdat { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2562,12 +2580,12 @@ define linkonce_odr dso_local i32** @_ZSt23__copy_move_backward_a2ILb0EPPiS1_ET1 %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) + %10 = call noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %7, i32** noundef %8, i32** noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26random_access_iterator_tagE13__copy_move_bIPiEEPT_PKS4_S7_S5_(i32** noundef %0, i32** noundef %1, i32** noundef %2) #8 comdat align 2 { %4 = alloca i32**, align 8 %5 = alloca i32**, align 8 %6 = alloca i32**, align 8 @@ -2607,8 +2625,8 @@ define linkonce_odr dso_local i32** @_ZNSt20__copy_move_backwardILb0ELb1ESt26ran 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS1_m(%"class.std::allocator.3"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2616,12 +2634,12 @@ define linkonce_odr dso_local i32** @_ZNSt16allocator_traitsISaIPiEE8allocateERS %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) + %8 = call noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2630,32 +2648,41 @@ define linkonce_odr dso_local i32** @_ZN9__gnu_cxx13new_allocatorIPiE8allocateEm 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 2305843009213693951 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 8 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to i32** + ret i32** %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorIPiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.4"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_m(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -2663,12 +2690,12 @@ define linkonce_odr dso_local i32* @_ZNSt16allocator_traitsISaIiEE8allocateERS0_ %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) + %8 = call noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPKv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %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 @@ -2677,45 +2704,54 @@ define linkonce_odr dso_local i32* @_ZN9__gnu_cxx13new_allocatorIiE8allocateEmPK 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorIiE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 4611686018427387903 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 4 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to i32* + ret i32* %20 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEEC2Ev(%"class.std::deque"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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*) { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std::_Deque_base"* noundef nonnull align 8 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) + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 + invoke void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %5, i64 noundef 0) to label %7 unwind label %8 7: ; preds = %1 @@ -2728,7 +2764,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: 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 + call void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implD2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 dereferenceable(80) %6) #3 br label %12 12: ; preds = %8 @@ -2740,19 +2776,19 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEEC2Ev(%"class.std:: } ; 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE11_Deque_implC2Ev(%"struct.std::_Deque_base>::_Deque_impl"* noundef nonnull align 8 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 + call void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i64 noundef %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 @@ -2766,7 +2802,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + %14 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 4) %15 = udiv i64 %13, %14 %16 = add i64 %15, 1 store i64 %16, i64* %5, align 8 @@ -2774,7 +2810,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %19 = call noundef nonnull align 8 dereferenceable(8) i64* @_ZSt3maxImERKT_S2_S2_(i64* noundef nonnull align 8 dereferenceable(8) %6, i64* noundef 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"* @@ -2784,7 +2820,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %28 = call noundef i32** @_ZNSt11_Deque_baseIiSaIiEE15_M_allocate_mapEm(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i64 noundef %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 @@ -2808,7 +2844,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma 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) + invoke void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %47, i32** noundef %48) to label %49 unwind label %50 49: ; preds = %2 @@ -2834,7 +2870,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt11_Deque_baseIiSaIiEE17_M_deallocate_mapEPPim(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %12, i32** noundef %60, i64 noundef %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 @@ -2864,13 +2900,13 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %79, i32** noundef %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %83, i32** noundef %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 @@ -2887,7 +2923,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma %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) + %101 = call noundef i64 @_ZSt16__deque_buf_sizem(i64 noundef 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 @@ -2916,17 +2952,17 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE17_M_initialize_ma } ; 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 { +define linkonce_odr dso_local void @_ZNSaIiEC2Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_dataC2Ev(%"struct.std::_Deque_base>::_Deque_impl_data"* noundef nonnull align 8 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 @@ -2935,14 +2971,14 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE16_Deque_impl_data %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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 + call void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 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 @@ -2950,7 +2986,7 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiEC2Ev(%"class. } ; 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 { +define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -2965,8 +3001,8 @@ define linkonce_odr dso_local void @_ZNSt15_Deque_iteratorIiRiPiEC2Ev(%"struct.s 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %0, i32** noundef %1, i32** noundef %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 @@ -2988,7 +3024,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE 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) + %17 = invoke noundef i32* @_ZNSt11_Deque_baseIiSaIiEE16_M_allocate_nodeEv(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10) to label %18 unwind label %23 18: ; preds = %16 @@ -3000,7 +3036,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + br label %12, !llvm.loop !12 23: ; preds = %16 %24 = landingpad { i8*, i32 } @@ -3016,7 +3052,7 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE %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 + call void @_ZNSt11_Deque_baseIiSaIiEE16_M_destroy_nodesEPPiS3_(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %10, i32** noundef %30, i32** noundef %31) #3 invoke void @__cxa_rethrow() #17 to label %47 unwind label %33 @@ -3057,12 +3093,12 @@ define linkonce_odr dso_local void @_ZNSt11_Deque_baseIiSaIiEE15_M_create_nodesE unreachable } -declare dso_local void @__cxa_rethrow() +declare void @__cxa_rethrow() -declare dso_local void @__cxa_end_catch() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3074,12 +3110,12 @@ define linkonce_odr dso_local zeroext i1 @_ZNKSt5dequeIiSaIiEE5emptyEv(%"class.s %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 + %12 = call noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %7, %"struct.std::_Deque_iterator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %0, %"struct.std::_Deque_iterator"* noundef 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 @@ -3094,20 +3130,20 @@ define linkonce_odr dso_local zeroext i1 @_ZSteqRKSt15_Deque_iteratorIiRiPiES4_( 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNSt5dequeIiSaIiEE4backEv(%"class.std::deque"* noundef nonnull align 8 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 + call void @_ZNSt5dequeIiSaIiEE3endEv(%"struct.std::_Deque_iterator"* sret(%"struct.std::_Deque_iterator") align 8 %3, %"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %4) #3 + %5 = call noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3) #3 + %6 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) %"struct.std::_Deque_iterator"* @_ZNSt15_Deque_iteratorIiRiPiEmmEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3122,7 +3158,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %3, i32** noundef %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 @@ -3137,8 +3173,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(32) %"struct.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_Deque_iteratorIiRiPiEdeEv(%"struct.std::_Deque_iterator"* noundef nonnull align 8 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 @@ -3147,8 +3183,8 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZNKSt15_ 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*) { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3177,18 +3213,18 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: %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 + %26 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %26, i32* noundef %32) #3 br label %35 33: ; preds = %1 - invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* nonnull dereferenceable(80) %3) + invoke void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 dereferenceable(80) %3) to label %34 unwind label %36 34: ; preds = %33 @@ -3205,8 +3241,8 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE8pop_backEv(%"class.std:: 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3214,12 +3250,12 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvR %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 + call void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %6, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"class.std::deque"* noundef nonnull align 8 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 @@ -3230,7 +3266,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt11_Deque_baseIiSaIiEE18_M_deallocate_nodeEPi(%"class.std::_Deque_base"* noundef nonnull align 8 dereferenceable(80) %4, i32* noundef %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"* @@ -3242,7 +3278,7 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + call void @_ZNSt15_Deque_iteratorIiRiPiE11_M_set_nodeEPS1_(%"struct.std::_Deque_iterator"* noundef nonnull align 8 dereferenceable(32) %14, i32** noundef %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"* @@ -3257,19 +3293,19 @@ define linkonce_odr dso_local void @_ZNSt5dequeIiSaIiEE15_M_pop_back_auxEv(%"cla %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 + %35 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator.0"* @_ZNSt11_Deque_baseIiSaIiEE19_M_get_Tp_allocatorEv(%"class.std::_Deque_base"* noundef nonnull align 8 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 + call void @_ZNSt16allocator_traitsISaIiEE7destroyIiEEvRS0_PT_(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %35, i32* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorIiE7destroyIiEEvPT_(%"class.__gnu_cxx::new_allocator.1"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %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 @@ -3285,35 +3321,39 @@ define internal void @_GLOBAL__sub_I_topological_sorting.cpp() #0 section ".text 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #12 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #13 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #14 = { argmemonly nofree 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} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} 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-llvm14/total-number-of-non-decreasing-numbers-with-n-digits.ll similarity index 69% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/total-number-of-non-decreasing-numbers-with-n-digits.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/total-number-of-non-decreasing-numbers-with-n-digits.ll index d3b0835f..5b96fe1f 100644 --- 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-llvm14/total-number-of-non-decreasing-numbers-with-n-digits.ll @@ -22,26 +22,26 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i64 @_Z18countNonDecreasingi(i32 noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -85,7 +85,7 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { %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 + br label %20, !llvm.loop !6 32: ; preds = %20 store i32 0, i32* %6, align 4 @@ -142,7 +142,7 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { %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 + br label %42, !llvm.loop !8 68: ; preds = %42 br label %69 @@ -151,7 +151,7 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { %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 + br label %37, !llvm.loop !9 72: ; preds = %37 br label %73 @@ -160,7 +160,7 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { %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 + br label %33, !llvm.loop !10 76: ; preds = %33 store i64 0, i64* %9, align 8 @@ -190,7 +190,7 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { %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 + br label %77, !llvm.loop !11 94: ; preds = %77 %95 = load i64, i64* %9, align 8 @@ -202,25 +202,25 @@ define dso_local i64 @_Z18countNonDecreasingi(i32 %0) #4 { ; Function Attrs: nofree nosync nounwind willreturn declare i8* @llvm.stacksave() #5 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %4 = call noundef i64 @_Z18countNonDecreasingi(i32 noundef %3) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEx(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i64 noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEx(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #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" { @@ -228,23 +228,27 @@ define internal void @_GLOBAL__sub_I_total_number_of_non_decreasing_numbers_with 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { argmemonly nofree nounwind willreturn writeonly } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm14/tower-of-hanoi.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/tower-of-hanoi.ll new file mode 100644 index 00000000..76eaf8ab --- /dev/null +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/tower-of-hanoi.ll @@ -0,0 +1,142 @@ +; 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 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"* noundef nonnull align 1 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 void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #1 + +; Function Attrs: nounwind +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 + +; Function Attrs: nounwind +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 + +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z12towerOfHanoiiccc(i32 noundef %0, i8 noundef signext %1, i8 noundef signext %2, i8 noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) + %13 = load i8, i8* %6, align 1 + %14 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %12, i8 noundef signext %13) + %15 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %14, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0)) + %16 = load i8, i8* %7, align 1 + %17 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %15, i8 noundef signext %16) + %18 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %17, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef %21, i8 noundef signext %22, i8 noundef signext %23, i8 noundef signext %24) + %25 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([11 x i8], [11 x i8]* @.str.2, i64 0, i64 0)) + %26 = load i32, i32* %5, align 4 + %27 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %25, i32 noundef %26) + %28 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %27, i8* noundef getelementptr inbounds ([11 x i8], [11 x i8]* @.str.3, i64 0, i64 0)) + %29 = load i8, i8* %6, align 1 + %30 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %28, i8 noundef signext %29) + %31 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %30, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.1, i64 0, i64 0)) + %32 = load i8, i8* %7, align 1 + %33 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %31, i8 noundef signext %32) + %34 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %33, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 noundef %36, i8 noundef signext %37, i8 noundef signext %38, i8 noundef signext %39) + br label %40 + +40: ; preds = %19, %11 + ret void +} + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_c(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8 noundef signext) #1 + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #1 + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 + +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 + +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 noundef %3, i8 noundef signext 65, i8 noundef signext 67, i8 noundef 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 "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { nounwind } +attributes #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } + +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} + +!0 = !{i32 1, !"wchar_size", i32 4} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll similarity index 74% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll index 175cfd0a..d98f4c90 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/transitive-closure-of-a-graph.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/transitive-closure-of-a-graph.ll @@ -8,8 +8,8 @@ target triple = "x86_64-pc-linux-gnu" @.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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* noundef %0) #0 { %2 = alloca [4 x i32]*, align 8 %3 = alloca [4 x [4 x i32]], align 16 %4 = alloca i32, align 4 @@ -55,7 +55,7 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { %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 + br label %11, !llvm.loop !6 32: ; preds = %11 br label %33 @@ -64,7 +64,7 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { %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 + br label %7, !llvm.loop !8 36: ; preds = %7 store i32 0, i32* %6, align 4 @@ -146,7 +146,7 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { %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 + br label %45, !llvm.loop !9 89: ; preds = %45 br label %90 @@ -155,7 +155,7 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { %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 + br label %41, !llvm.loop !10 93: ; preds = %41 br label %94 @@ -164,21 +164,21 @@ define dso_local void @_Z17transitiveClosurePA4_i([4 x i32]* %0) #0 { %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 + br label %37, !llvm.loop !11 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) + call void @_Z13printSolutionPA4_i([4 x i32]* noundef %98) ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13printSolutionPA4_i([4 x i32]* noundef %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)) + %5 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([59 x i8], [59 x i8]* @.str, i64 0, i64 0)) store i32 0, i32* %3, align 4 br label %6 @@ -205,61 +205,65 @@ define dso_local void @_Z13printSolutionPA4_i([4 x i32]* %0) #0 { %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) + %22 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([4 x i8], [4 x i8]* @.str.1, i64 0, i64 0), i32 noundef %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 + br label %10, !llvm.loop !12 26: ; preds = %10 - %27 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([2 x i8], [2 x i8]* @.str.2, i64 0, i64 0)) + %27 = call i32 (i8*, ...) @printf(i8* noundef 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 + br label %6, !llvm.loop !13 31: ; preds = %6 ret void } -declare dso_local i32 @printf(i8*, ...) #1 +declare i32 @printf(i8* noundef, ...) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #2 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_Z17transitiveClosurePA4_i([4 x i32]* noundef %4) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 } +attributes #0 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #3 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll similarity index 62% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll index ae08d084..0b2e52c9 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/trie-suffixes.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/trie-suffixes.ll @@ -115,7 +115,7 @@ $_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 +@_ZSt4cout = external 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 @@ -131,21 +131,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* noundef %1, i32 noundef %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 @@ -157,13 +157,13 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri %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 + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef nonnull align 4 dereferenceable(4) %5) + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + %16 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 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 @@ -175,9 +175,9 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri br i1 %23, label %24, label %36 24: ; preds = %15 - %25 = call noalias nonnull i8* @_Znwm(i64 2056) #13 + %25 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 2056) #13 %26 = bitcast i8* %25 to %class.SuffixTrieNode* - invoke void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* nonnull dereferenceable(2056) %26) + invoke void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %26) to label %27 unwind label %32 27: ; preds = %24 @@ -195,7 +195,7 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri 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 + call void @_ZdlPv(i8* noundef %25) #14 br label %50 36: ; preds = %27, %15 @@ -204,14 +204,14 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri %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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 1, i64 noundef -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) + invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %41, %"class.std::__cxx11::basic_string"* noundef %9, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 br label %49 45: ; preds = %36 @@ -221,7 +221,7 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 br label %50 49: ; preds = %44, %3 @@ -235,41 +235,41 @@ define dso_local void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stri 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #5 ; Function Attrs: noinline uwtable -define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* nonnull dereferenceable(2056) %0) unnamed_addr #0 comdat align 2 { +define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* noundef nonnull align 8 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 + %5 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 24) #13 %6 = bitcast i8* %5 to %"class.std::__cxx11::list"* - call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* nonnull dereferenceable(24) %6) #3 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -292,24 +292,24 @@ define linkonce_odr dso_local void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNod %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 + br label %8, !llvm.loop !6 19: ; preds = %8 ret void } -declare dso_local i32 @__gxx_personality_v0(...) +declare i32 @__gxx_personality_v0(...) ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #6 +declare void @_ZdlPv(i8* noundef) #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 +declare void @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6substrEmm(%"class.std::__cxx11::basic_string"* sret(%"class.std::__cxx11::basic_string") align 8, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef, i64 noundef) #1 ; Function Attrs: nounwind -declare dso_local void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* nonnull dereferenceable(32)) unnamed_addr #2 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -317,7 +317,7 @@ define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__ %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 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #3 %10 = icmp eq i64 %9, 0 br i1 %10, label %11, label %14 @@ -329,7 +329,7 @@ define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__ 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) + %16 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 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 @@ -339,18 +339,18 @@ define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__ 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) + %24 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE2atEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef 1, i64 noundef -1) + %29 = invoke noundef %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %28, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 br label %36 31: ; preds = %22 @@ -360,7 +360,7 @@ define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__ 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 br label %38 35: ; preds = %14 @@ -379,8 +379,8 @@ define dso_local %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__ 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -393,20 +393,20 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha 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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) + %14 = invoke noundef %"class.std::__cxx11::list"* @_ZN14SuffixTrieNode6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %13, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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_) + %19 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([18 x i8], [18 x i8]* @.str, i64 0, i64 0)) + %20 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %19, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) br label %49 21: ; preds = %2 @@ -416,16 +416,16 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #3 + %26 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + %29 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -435,25 +435,25 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha 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 + %35 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %37 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %8, %"struct.std::_List_iterator"* noundef 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 + %39 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([27 x i8], [27 x i8]* @.str.1, i64 0, i64 0)) + %40 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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_) + %44 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %39, i32 noundef %43) + %45 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %44, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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 + %47 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %8) #3 + br label %33, !llvm.loop !8 48: ; preds = %33 br label %49 @@ -469,16 +469,16 @@ define dso_local void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11cha 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -487,8 +487,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -499,17 +499,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -524,8 +524,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -534,28 +534,28 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -568,8 +568,8 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -586,99 +586,99 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([18 x i8], [18 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* noundef %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)) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 + %19 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %21 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %19, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %9) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, i8* noundef getelementptr inbounds ([3 x i8], [3 x i8]* @.str.4, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* noundef %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)) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %9) #3 + %25 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %27 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %25, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %11) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.6, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* noundef %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)) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %11) #3 + %31 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %33 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %31, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %13) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.8, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* noundef %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)) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %13) #3 + %37 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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_) + %39 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %37, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %15) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14, i8* noundef getelementptr inbounds ([9 x i8], [9 x i8]* @.str.10, i64 0, i64 0), %"class.std::allocator.0"* noundef 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) + invoke void @_ZN10SuffixTrie6searchENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %6, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %43 = load i32, i32* %1, align 4 ret i32 %43 @@ -689,7 +689,7 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %93 48: ; preds = %38, %36, %32, %30, %26, %24, %20, %18, %16 @@ -708,7 +708,7 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %7) #3 br label %92 56: ; preds = %22 @@ -727,11 +727,11 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8) #3 br label %64 64: ; preds = %60, %56 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %9) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %9) #3 br label %92 65: ; preds = %28 @@ -750,11 +750,11 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #3 br label %73 73: ; preds = %69, %65 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %11) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %11) #3 br label %92 74: ; preds = %34 @@ -773,11 +773,11 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %12) #3 br label %82 82: ; preds = %78, %74 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %13) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 dereferenceable(1) %13) #3 br label %92 83: ; preds = %40 @@ -796,15 +796,15 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %14) #3 br label %91 91: ; preds = %87, %83 - call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1) %15) #3 + call void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %93 93: ; preds = %92, %44 @@ -816,15 +816,15 @@ define dso_local i32 @main() #10 personality i8* bitcast (i32 (...)* @__gxx_pers } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator.0"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator.0"* noundef nonnull align 1 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*) { +define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE(%class.SuffixTrie* noundef nonnull align 8 dereferenceable(2056) %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -833,14 +833,14 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI 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) + call void @_ZN14SuffixTrieNodeC2Ev(%class.SuffixTrieNode* noundef nonnull align 8 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 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %1) #3 %14 = icmp ult i64 %12, %13 br i1 %14, label %15, label %28 @@ -848,20 +848,20 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI %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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i64 noundef %18, i64 noundef -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) + invoke void @_ZN14SuffixTrieNode12insertSuffixENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi(%class.SuffixTrieNode* noundef nonnull align 8 dereferenceable(2056) %16, %"class.std::__cxx11::basic_string"* noundef %5, i32 noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + br label %10, !llvm.loop !9 24: ; preds = %15 %25 = landingpad { i8*, i32 } @@ -870,7 +870,7 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %5) #3 br label %29 28: ; preds = %10 @@ -885,67 +885,67 @@ define linkonce_odr dso_local void @_ZN10SuffixTrieC2ENSt7__cxx1112basic_stringI } ; 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -961,8 +961,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -973,21 +973,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -999,26 +999,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -1028,7 +1028,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -1039,8 +1039,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -1048,10 +1048,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -1067,19 +1067,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -1089,7 +1089,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -1099,7 +1099,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -1107,8 +1107,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1119,23 +1119,23 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1147,7 +1147,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -1161,7 +1161,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -1178,8 +1178,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -1187,12 +1187,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #4 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -1201,24 +1201,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #16 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #17 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -1226,18 +1235,21 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #11 +declare void @_ZSt28__throw_bad_array_new_lengthv() #11 + +; Function Attrs: noreturn +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -1249,24 +1261,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -1275,8 +1287,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1287,7 +1299,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -1298,12 +1310,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #12 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -1313,12 +1325,12 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -1336,18 +1348,18 @@ define internal void @_GLOBAL__sub_I_trie_suffixes.cpp() #0 section ".text.start 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { argmemonly nofree nounwind willreturn } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #12 = { noinline noreturn nounwind } attributes #13 = { builtin allocsize(0) } attributes #14 = { builtin nounwind } @@ -1355,12 +1367,16 @@ attributes #15 = { noreturn nounwind } attributes #16 = { noreturn } attributes #17 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll index b25531a8..e90062b2 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/tug-of-war.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/tug-of-war.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* noundef %0, i32 noundef %1, i8* noundef %2, i32 noundef %3, i8* noundef %4, i32* noundef %5, i32 noundef %6, i32 noundef %7, i32 noundef %8) #4 { %10 = alloca i32*, align 8 %11 = alloca i32, align 4 %12 = alloca i8*, align 8 @@ -98,7 +98,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, %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) + call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* noundef %35, i32 noundef %36, i8* noundef %37, i32 noundef %38, i8* noundef %39, i32* noundef %40, i32 noundef %41, i32 noundef %42, i32 noundef %44) %45 = load i32, i32* %13, align 4 %46 = add nsw i32 %45, 1 store i32 %46, i32* %13, align 4 @@ -126,7 +126,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, %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 + %67 = call i32 @abs(i32 noundef %66) #9 %68 = load i32*, i32** %15, align 8 %69 = load i32, i32* %68, align 4 %70 = icmp slt i32 %67, %69 @@ -137,7 +137,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, %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 + %76 = call i32 @abs(i32 noundef %75) #9 %77 = load i32*, i32** %15, align 8 store i32 %76, i32* %77, align 4 store i32 0, i32* %19, align 4 @@ -168,7 +168,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, %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 + br label %78, !llvm.loop !6 97: ; preds = %78 br label %98 @@ -187,7 +187,7 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, %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) + call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* noundef %100, i32 noundef %101, i8* noundef %102, i32 noundef %103, i8* noundef %104, i32* noundef %105, i32 noundef %106, i32 noundef %107, i32 noundef %109) br label %110 110: ; preds = %99, %98 @@ -203,10 +203,10 @@ define dso_local void @_Z7TOWUtilPiiPbiS0_S_iii(i32* %0, i32 %1, i8* %2, i32 %3, } ; Function Attrs: nounwind readnone willreturn -declare dso_local i32 @abs(i32) #5 +declare i32 @abs(i32 noundef) #5 -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z8tugOfWarPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i8*, align 8 @@ -220,11 +220,11 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { 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 + %14 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 + %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #10 store i8* %17, i8** %6, align 8 store i32 2147483647, i32* %7, align 4 store i32 0, i32* %8, align 4 @@ -262,7 +262,7 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { %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 + br label %18, !llvm.loop !8 41: ; preds = %18 %42 = load i32*, i32** %3, align 8 @@ -270,8 +270,8 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #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)) + call void @_Z7TOWUtilPiiPbiS0_S_iii(i32* noundef %42, i32 noundef %43, i8* noundef %44, i32 noundef 0, i8* noundef %45, i32* noundef %7, i32 noundef %46, i32 noundef 0, i32 noundef 0) + %47 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0)) store i32 0, i32* %10, align 4 br label %48 @@ -298,8 +298,8 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #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)) + %67 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %66) + %68 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %67, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %69 69: ; preds = %61, %52 @@ -309,10 +309,10 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { %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 + br label %48, !llvm.loop !9 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)) + %74 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef getelementptr inbounds ([24 x i8], [24 x i8]* @.str.2, i64 0, i64 0)) store i32 0, i32* %11, align 4 br label %75 @@ -339,8 +339,8 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #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)) + %94 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %93) + %95 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %94, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str.1, i64 0, i64 0)) br label %96 96: ; preds = %88, %79 @@ -350,21 +350,21 @@ define dso_local void @_Z8tugOfWarPii(i32* %0, i32 %1) #4 { %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 + br label %75, !llvm.loop !10 100: ; preds = %75 ret void } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #6 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #7 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #7 { %1 = alloca i32, align 4 %2 = alloca [11 x i32], align 16 %3 = alloca i32, align 4 @@ -374,11 +374,11 @@ define dso_local i32 @main() #7 { 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) + call void @_Z8tugOfWarPii(i32* noundef %5, i32 noundef %6) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -387,25 +387,29 @@ define internal void @_GLOBAL__sub_I_tug_of_war.cpp() #0 section ".text.startup" 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nounwind readnone willreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #8 = { argmemonly nofree nounwind willreturn } attributes #9 = { nounwind readnone willreturn } attributes #10 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/ugly-numbers.ll similarity index 51% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/ugly-numbers.ll index 5d6c9618..2f480e91 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/ugly-numbers.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/ugly-numbers.ll @@ -5,8 +5,8 @@ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z9maxDivideii(i32 noundef %0, i32 noundef %1) #0 { %3 = alloca i32, align 4 %4 = alloca i32, align 4 store i32 %0, i32* %3, align 4 @@ -25,25 +25,25 @@ define dso_local i32 @_Z9maxDivideii(i32 %0, i32 %1) #0 { %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 + br label %5, !llvm.loop !6 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z6isUglyi(i32 noundef %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) + %4 = call noundef i32 @_Z9maxDivideii(i32 noundef %3, i32 noundef 2) store i32 %4, i32* %2, align 4 %5 = load i32, i32* %2, align 4 - %6 = call i32 @_Z9maxDivideii(i32 %5, i32 3) + %6 = call noundef i32 @_Z9maxDivideii(i32 noundef %5, i32 noundef 3) store i32 %6, i32* %2, align 4 %7 = load i32, i32* %2, align 4 - %8 = call i32 @_Z9maxDivideii(i32 %7, i32 5) + %8 = call noundef i32 @_Z9maxDivideii(i32 noundef %7, i32 noundef 5) store i32 %8, i32* %2, align 4 %9 = load i32, i32* %2, align 4 %10 = icmp eq i32 %9, 1 @@ -52,8 +52,8 @@ define dso_local i32 @_Z6isUglyi(i32 %0) #0 { ret i32 %12 } -; Function Attrs: noinline nounwind uwtable mustprogress -define dso_local i32 @_Z12getNthUglyNoi(i32 %0) #0 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z12getNthUglyNoi(i32 noundef %0) #0 { %2 = alloca i32, align 4 %3 = alloca i32, align 4 %4 = alloca i32, align 4 @@ -73,7 +73,7 @@ define dso_local i32 @_Z12getNthUglyNoi(i32 %0) #0 { %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) + %13 = call noundef i32 @_Z6isUglyi(i32 noundef %12) %14 = icmp ne i32 %13, 0 br i1 %14, label %15, label %18 @@ -84,39 +84,43 @@ define dso_local i32 @_Z12getNthUglyNoi(i32 %0) #0 { br label %18 18: ; preds = %15, %9 - br label %5, !llvm.loop !4 + br label %5, !llvm.loop !8 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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + %3 = call noundef i32 @_Z12getNthUglyNoi(i32 noundef 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) + %5 = call i32 (i8*, ...) @printf(i8* noundef getelementptr inbounds ([22 x i8], [22 x i8]* @.str, i64 0, i64 0), i32 noundef %4) %6 = call i32 @getchar() ret i32 0 } -declare dso_local i32 @printf(i8*, ...) #2 +declare i32 @printf(i8* noundef, ...) #2 -declare dso_local i32 @getchar() #2 +declare 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" } +attributes #0 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll similarity index 72% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll index e6008361..41e56c25 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/union-find.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/union-find.ll @@ -24,34 +24,34 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 -; Function Attrs: noinline uwtable mustprogress -define dso_local %class.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef %class.Graph* @_Z11createGraphii(i32 noundef %0, i32 noundef %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 + %6 = call noalias noundef nonnull i8* @_Znwm(i64 noundef 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) @@ -73,7 +73,7 @@ define dso_local %class.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { %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 + %24 = call noalias noundef nonnull i8* @_Znam(i64 noundef %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 @@ -83,19 +83,19 @@ define dso_local %class.Graph* @_Z11createGraphii(i32 %0, i32 %1) #4 { } ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #5 -; Function Attrs: argmemonly nofree nosync nounwind willreturn writeonly +; Function Attrs: argmemonly nofree 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 +declare noundef nonnull i8* @_Znam(i64 noundef) #5 -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z4findPii(i32* %0, i32 %1) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z4findPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca i32*, align 8 %5 = alloca i32, align 4 @@ -121,7 +121,7 @@ define dso_local i32 @_Z4findPii(i32* %0, i32 %1) #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) + %21 = call noundef i32 @_Z4findPii(i32* noundef %15, i32 noundef %20) store i32 %21, i32* %3, align 4 br label %22 @@ -130,8 +130,8 @@ define dso_local i32 @_Z4findPii(i32* %0, i32 %1) #4 { ret i32 %23 } -; Function Attrs: noinline uwtable mustprogress -define dso_local void @_Z5UnionPiii(i32* %0, i32 %1, i32 %2) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z5UnionPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -142,11 +142,11 @@ define dso_local void @_Z5UnionPiii(i32* %0, i32 %1, i32 %2) #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) + %11 = call noundef i32 @_Z4findPii(i32* noundef %9, i32 noundef %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) + %14 = call noundef i32 @_Z4findPii(i32* noundef %12, i32 noundef %13) store i32 %14, i32* %8, align 4 %15 = load i32, i32* %7, align 4 %16 = load i32, i32* %8, align 4 @@ -166,8 +166,8 @@ define dso_local void @_Z5UnionPiii(i32* %0, i32 %1, i32 %2) #4 { ret void } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z7isCycleP5Graph(%class.Graph* noundef %0) #4 { %2 = alloca i32, align 4 %3 = alloca %class.Graph*, align 8 %4 = alloca i32*, align 8 @@ -184,7 +184,7 @@ define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #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 + %17 = call noalias noundef nonnull i8* @_Znam(i64 noundef %16) #9 %18 = bitcast i8* %17 to i32* store i32* %18, i32** %4, align 8 %19 = load i32*, i32** %4, align 8 @@ -216,7 +216,7 @@ define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { %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) + %42 = call noundef i32 @_Z4findPii(i32* noundef %33, i32 noundef %41) store i32 %42, i32* %6, align 4 %43 = load i32*, i32** %4, align 8 %44 = load %class.Graph*, %class.Graph** %3, align 8 @@ -227,7 +227,7 @@ define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { %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) + %52 = call noundef i32 @_Z4findPii(i32* noundef %43, i32 noundef %51) store i32 %52, i32* %7, align 4 %53 = load i32, i32* %6, align 4 %54 = load i32, i32* %7, align 4 @@ -242,14 +242,14 @@ define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { %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) + call void @_Z5UnionPiii(i32* noundef %58, i32 noundef %59, i32 noundef %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 + br label %26, !llvm.loop !6 64: ; preds = %26 store i32 0, i32* %2, align 4 @@ -260,8 +260,8 @@ define dso_local i32 @_Z7isCycleP5Graph(%class.Graph* %0) #4 { ret i32 %66 } -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #8 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #8 { %1 = alloca i32, align 4 %2 = alloca i32, align 4 %3 = alloca i32, align 4 @@ -271,7 +271,7 @@ define dso_local i32 @main() #8 { 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) + %7 = call noundef %class.Graph* @_Z11createGraphii(i32 noundef %5, i32 noundef %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 @@ -310,23 +310,23 @@ define dso_local i32 @main() #8 { %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) + %39 = call noundef i32 @_Z7isCycleP5Graph(%class.Graph* noundef %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)) + %42 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %44 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 ; Function Attrs: noinline uwtable define internal void @_GLOBAL__sub_I_union_find.cpp() #0 section ".text.startup" { @@ -334,21 +334,25 @@ define internal void @_GLOBAL__sub_I_union_find.cpp() #0 section ".text.startup" 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { argmemonly nofree 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 #8 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #9 = { builtin allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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"} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll similarity index 67% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll index c4bc5b1d..c95bc795 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/vertex-cover-problem.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/vertex-cover-problem.ll @@ -106,7 +106,7 @@ $_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 +@_ZSt4cout = external 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 }] @@ -114,21 +114,21 @@ $_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE = comdat any ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +define dso_local void @_ZN5GraphC2Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %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 @@ -147,7 +147,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % %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 + %18 = call noalias noundef nonnull i8* @_Znam(i64 noundef %17) #15 %19 = bitcast i8* %18 to i64* store i64 %9, i64* %19, align 16 %20 = getelementptr inbounds i8, i8* %18, i64 8 @@ -161,7 +161,7 @@ define dso_local void @_ZN5GraphC2Ei(%class.Graph* nonnull dereferenceable(16) % 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 + call void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -179,20 +179,20 @@ declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #4 declare { i64, i1 } @llvm.uadd.with.overflow.i64(i64, i64) #4 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #5 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEEC2Ev(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0, i32 noundef %1, i32 noundef %2) #7 align 2 { %4 = alloca %class.Graph*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -205,36 +205,36 @@ define dso_local void @_ZN5Graph7addEdgeEii(%class.Graph* nonnull dereferenceabl %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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %12, i32* noundef 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) + call void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %17, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9push_backERKi(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 + %7 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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) + call void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %6, %"struct.std::__detail::_List_node_base"* %11, i32* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* noundef nonnull align 8 dereferenceable(16) %0) #7 align 2 { %2 = alloca %class.Graph*, align 8 %3 = alloca i8*, align 8 %4 = alloca i64, align 8 @@ -275,10 +275,10 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref %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 + br label %18, !llvm.loop !6 30: ; preds = %18 - call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* nonnull dereferenceable(8) %6) #3 + call void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6) #3 store i32 0, i32* %7, align 4 br label %31 @@ -305,7 +305,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref %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 + %50 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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* @@ -319,14 +319,14 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref %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 + %60 = call %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 + %62 = call noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6, %"struct.std::_List_iterator"* noundef 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 + %64 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -353,8 +353,8 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref 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 + %82 = call noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %6) #3 + br label %54, !llvm.loop !8 83: ; preds = %73, %54 br label %84 @@ -366,7 +366,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref %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 + br label %31, !llvm.loop !9 88: ; preds = %31 store i32 0, i32* %11, align 4 @@ -389,8 +389,8 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref 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)) + %102 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i32 noundef %101) + %103 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %102, i8* noundef getelementptr inbounds ([2 x i8], [2 x i8]* @.str, i64 0, i64 0)) br label %104 104: ; preds = %100, %94 @@ -400,7 +400,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref %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 + br label %89, !llvm.loop !10 108: ; preds = %89 %109 = load i8*, i8** %3, align 8 @@ -412,7 +412,7 @@ define dso_local void @_ZN5Graph16printVertexCoverEv(%class.Graph* nonnull deref 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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -421,8 +421,8 @@ define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2Ev(%"struct.std::_ 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE5beginEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -433,17 +433,17 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::_List_iterator"* noundef 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 @@ -458,8 +458,8 @@ define linkonce_odr dso_local zeroext i1 @_ZStneRKSt14_List_iteratorIiES2_(%"str 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7__cxx114listIiSaIiEE3endEv(%"class.std::__cxx11::list"* noundef nonnull align 8 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 @@ -468,26 +468,26 @@ define linkonce_odr dso_local %"struct.std::__detail::_List_node_base"* @_ZNSt7_ %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 + call void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.std::__detail::_List_node_base"* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZNKSt14_List_iteratorIiEdeEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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) + %7 = call noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) %"struct.std::_List_iterator"* @_ZNSt14_List_iteratorIiEppEv(%"struct.std::_List_iterator"* noundef nonnull align 8 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 @@ -500,81 +500,81 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.std::_ 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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) + call void @_ZN5GraphC1Ei(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 7) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 1) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 0, i32 noundef 2) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 1, i32 noundef 3) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 3, i32 noundef 4) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 4, i32 noundef 5) + call void @_ZN5Graph7addEdgeEii(%class.Graph* noundef nonnull align 8 dereferenceable(16) %2, i32 noundef 5, i32 noundef 6) + call void @_ZN5Graph16printVertexCoverEv(%class.Graph* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEEC2Ev(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE10_List_implC2Ev(%"struct.std::__cxx11::_List_base>::_List_impl"* noundef nonnull align 8 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 + call void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZNSaISt10_List_nodeIiEEC2Ev(%"class.std::allocator"* noundef nonnull align 1 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 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_headerC2Ev(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 + call void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEEC2Ev(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv(%"struct.std::__detail::_List_node_header"* noundef nonnull align 8 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 @@ -590,8 +590,8 @@ define linkonce_odr dso_local void @_ZNSt8__detail17_List_node_header7_M_initEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEEvSt14_List_iteratorIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, %"struct.std::__detail::_List_node_base"* %1, i32* noundef 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 @@ -602,21 +602,21 @@ define linkonce_odr dso_local void @_ZNSt7__cxx114listIiSaIiEE9_M_insertIJRKiEEE 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) + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %9, i32* noundef 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 + call void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16) %14, %"struct.std::__detail::_List_node_base"* noundef %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) + call void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %17, i64 noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSaIiEE14_M_create_nodeIJRKiEEEPSt10_List_nodeIiEDpOT_(%"class.std::__cxx11::list"* noundef nonnull align 8 dereferenceable(24) %0, i32* noundef 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 @@ -628,26 +628,26 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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) + %12 = call noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + %14 = call noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %15, %"struct.std::_List_node"* noundef %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) + %19 = invoke noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %22 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %21) #3 + call void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %17, i32* noundef %19, i32* noundef nonnull align 4 dereferenceable(4) %22) #3 + %23 = call noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 ret %"struct.std::_List_node"* %24 25: ; preds = %2 @@ -657,7 +657,7 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 + call void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %7) #3 br label %29 29: ; preds = %25 @@ -668,8 +668,8 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt7__cxx114listIiSa 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 @@ -677,10 +677,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt7forw } ; 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 +declare void @_ZNSt8__detail15_List_node_base7_M_hookEPS0_(%"struct.std::__detail::_List_node_base"* noundef nonnull align 8 dereferenceable(16), %"struct.std::__detail::_List_node_base"* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_sizeEm(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 dereferenceable(24) %0, i64 noundef %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 @@ -696,19 +696,19 @@ define linkonce_odr dso_local void @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_inc_si 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt7__cxx1110_List_baseIiSaIiEE11_M_get_nodeEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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) + %6 = call noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %5, i64 noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 1 dereferenceable(1) %"class.std::allocator"* @_ZNSt7__cxx1110_List_baseIiSaIiEE21_M_get_Node_allocatorEv(%"class.std::__cxx11::_List_base"* noundef nonnull align 8 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 @@ -718,7 +718,7 @@ define linkonce_odr dso_local nonnull align 1 dereferenceable(1) %"class.std::al } ; 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 { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEC2ERS2_PS1_(%"struct.std::__allocated_ptr"* noundef nonnull align 8 dereferenceable(16) %0, %"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %1, %"struct.std::_List_node"* noundef %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 @@ -728,7 +728,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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 + %10 = call noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 @@ -736,8 +736,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE9constructIiJRKiEEEvRS2_PT_DpOT0_(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -748,25 +748,25 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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 + %11 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef nonnull align 4 dereferenceable(4) %10) #3 + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, i32* noundef %9, i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZNSt10_List_nodeIiE9_M_valptrEv(%"struct.std::_List_node"* noundef nonnull align 8 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 + %5 = call noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 dereferenceable(4) %4) #3 ret i32* %5 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(16) %"struct.std::__allocated_ptr"* @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEEaSEDn(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -778,7 +778,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(16) %"struct.std:: } ; 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*) { +define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEEED2Ev(%"struct.std::__allocated_ptr"* noundef nonnull align 8 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 @@ -792,7 +792,7 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE %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) + invoke void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %9, %"struct.std::_List_node"* noundef %11, i64 noundef 1) to label %12 unwind label %14 12: ; preds = %7 @@ -809,8 +809,8 @@ define linkonce_odr dso_local void @_ZNSt15__allocated_ptrISaISt10_List_nodeIiEE 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE8allocateERS2_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %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 @@ -818,12 +818,12 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZNSt16allocator_trait %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) + %8 = call noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %6, i64 noundef %7, i8* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE8allocateEmPKv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i64 noundef %1, i8* noundef %2) #7 comdat align 2 { %4 = alloca %"class.__gnu_cxx::new_allocator"*, align 8 %5 = alloca i64, align 8 %6 = alloca i8*, align 8 @@ -832,24 +832,33 @@ define linkonce_odr dso_local %"struct.std::_List_node"* @_ZN9__gnu_cxx13new_all 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 + %9 = call noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 %10 = icmp ugt i64 %8, %9 - br i1 %10, label %11, label %12 + br i1 %10, label %11, label %16 11: ; preds = %3 + %12 = load i64, i64* %5, align 8 + %13 = icmp ugt i64 %12, 768614336404564650 + br i1 %13, label %14, label %15 + +14: ; preds = %11 + call void @_ZSt28__throw_bad_array_new_lengthv() #17 + unreachable + +15: ; preds = %11 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 +16: ; preds = %3 + %17 = load i64, i64* %5, align 8 + %18 = mul i64 %17, 24 + %19 = call noalias noundef nonnull i8* @_Znwm(i64 noundef %18) #18 + %20 = bitcast i8* %19 to %"struct.std::_List_node"* + ret %"struct.std::_List_node"* %20 } -; 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeIiEE11_M_max_sizeEv(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 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 @@ -857,21 +866,24 @@ define linkonce_odr dso_local i64 @_ZNK9__gnu_cxx13new_allocatorISt10_List_nodeI } ; Function Attrs: noreturn -declare dso_local void @_ZSt17__throw_bad_allocv() #12 +declare void @_ZSt28__throw_bad_array_new_lengthv() #12 + +; Function Attrs: noreturn +declare void @_ZSt17__throw_bad_allocv() #12 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znwm(i64) #5 +declare noundef nonnull i8* @_Znwm(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %"class.std::allocator"* @_ZSt11__addressofISaISt10_List_nodeIiEEEPT_RS3_(%"class.std::allocator"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE9constructIiJRKiEEEvPT_DpOT0_(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, i32* noundef %1, i32* noundef 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 @@ -883,24 +895,24 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + %12 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt7forwardIRKiEOT_RNSt16remove_referenceIS2_E4typeE(i32* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i32* @_ZN9__gnu_cxx16__aligned_membufIiE6_M_ptrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 + %4 = call noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv(%"struct.__gnu_cxx::__aligned_membuf"* noundef nonnull align 4 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 @@ -909,8 +921,8 @@ define linkonce_odr dso_local i8* @_ZN9__gnu_cxx16__aligned_membufIiE7_M_addrEv( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiEEE10deallocateERS2_PS1_m(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -921,7 +933,7 @@ define linkonce_odr dso_local void @_ZNSt16allocator_traitsISaISt10_List_nodeIiE %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) + call void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %8, %"struct.std::_List_node"* noundef %9, i64 noundef %10) ret void } @@ -932,12 +944,12 @@ define linkonce_odr hidden void @__clang_call_terminate(i8* %0) #13 comdat { unreachable } -declare dso_local i8* @__cxa_begin_catch(i8*) +declare i8* @__cxa_begin_catch(i8*) -declare dso_local void @_ZSt9terminatev() +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIiEE10deallocateEPS2_m(%"class.__gnu_cxx::new_allocator"* noundef nonnull align 1 dereferenceable(1) %0, %"struct.std::_List_node"* noundef %1, i64 noundef %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 @@ -947,15 +959,15 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx13new_allocatorISt10_List_nodeI %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 + call void @_ZdlPv(i8* noundef %9) #3 ret void } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdlPv(i8*) #14 +declare void @_ZdlPv(i8* noundef) #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 { +define linkonce_odr dso_local void @_ZNSt14_List_iteratorIiEC2EPNSt8__detail15_List_node_baseE(%"struct.std::_List_iterator"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.std::__detail::_List_node_base"* noundef %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 @@ -973,33 +985,37 @@ define internal void @_GLOBAL__sub_I_vertex_cover_problem.cpp() #0 section ".tex 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #5 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #6 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #9 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { argmemonly nofree nounwind willreturn } +attributes #11 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #12 = { noreturn "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #14 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #15 = { builtin allocsize(0) } attributes #16 = { noreturn nounwind } attributes #17 = { noreturn } attributes #18 = { allocsize(0) } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll similarity index 74% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll index cc8322c6..3cc07b03 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/weighted-job-scheduling.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/weighted-job-scheduling.ll @@ -107,27 +107,27 @@ $_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 +@_ZSt4cout = external 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef 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 @@ -154,11 +154,11 @@ define dso_local zeroext i1 @_Z14jobComparataor3JobS_(i64 %0, i32 %1, i64 %2, i3 ret i1 %21 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define dso_local noundef i32 @_Z17latestNonConflictP3Jobi(%struct.Job* noundef %0, i32 noundef %1) #4 { %3 = alloca i32, align 4 %4 = alloca %struct.Job*, align 8 %5 = alloca i32, align 4 @@ -203,7 +203,7 @@ define dso_local i32 @_Z17latestNonConflictP3Jobi(%struct.Job* %0, i32 %1) #4 { %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 + br label %9, !llvm.loop !6 32: ; preds = %9 store i32 -1, i32* %3, align 4 @@ -214,8 +214,8 @@ define dso_local i32 @_Z17latestNonConflictP3Jobi(%struct.Job* %0, i32 %1) #4 { ret i32 %34 } -; Function Attrs: noinline uwtable mustprogress -define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13findMaxProfitP3Jobi(%struct.Job* noundef %0, i32 noundef %1) #6 { %3 = alloca %struct.Job*, align 8 %4 = alloca i32, align 4 %5 = alloca i32*, align 8 @@ -230,14 +230,14 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { %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_) + call void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct.Job* noundef %10, %struct.Job* noundef %14, i1 (i64, i32, i64, i32)* noundef @_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 + %21 = call noalias noundef nonnull i8* @_Znam(i64 noundef %20) #12 %22 = bitcast i8* %21 to i32* store i32* %22, i32** %5, align 8 %23 = load %struct.Job*, %struct.Job** %3, align 8 @@ -266,7 +266,7 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { 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) + %42 = call noundef i32 @_Z17latestNonConflictP3Jobi(%struct.Job* noundef %40, i32 noundef %41) store i32 %42, i32* %8, align 4 %43 = load i32, i32* %8, align 4 %44 = icmp ne i32 %43, -1 @@ -289,7 +289,7 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { %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) + %59 = call noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %7, i32* noundef 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 @@ -302,7 +302,7 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { %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 + br label %29, !llvm.loop !8 68: ; preds = %29 %69 = load i32*, i32** %5, align 8 @@ -318,7 +318,7 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { 77: ; preds = %68 %78 = bitcast i32* %75 to i8* - call void @_ZdaPv(i8* %78) #13 + call void @_ZdaPv(i8* noundef %78) #13 br label %79 79: ; preds = %77, %68 @@ -326,8 +326,8 @@ define dso_local i32 @_Z13findMaxProfitP3Jobi(%struct.Job* %0, i32 %1) #6 { 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct.Job* noundef %0, %struct.Job* noundef %1, i1 (i64, i32, i64, i32)* noundef %2) #6 comdat { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca i1 (i64, i32, i64, i32)*, align 8 @@ -338,12 +338,12 @@ define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct. %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) + %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)* noundef %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) + call void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %8, %struct.Job* noundef %9, i1 (i64, i32, i64, i32)* %14) ret void } @@ -351,10 +351,10 @@ define linkonce_odr dso_local void @_ZSt4sortIP3JobPFbS0_S0_EEvT_S4_T0_(%struct. declare { i64, i1 } @llvm.umul.with.overflow.i64(i64, i64) #7 ; Function Attrs: nobuiltin allocsize(0) -declare dso_local nonnull i8* @_Znam(i64) #8 +declare noundef nonnull i8* @_Znam(i64 noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(4) i32* @_ZSt3maxIiERKT_S2_S2_(i32* noundef nonnull align 4 dereferenceable(4) %0, i32* noundef nonnull align 4 dereferenceable(4) %1) #4 comdat { %3 = alloca i32*, align 8 %4 = alloca i32*, align 8 %5 = alloca i32*, align 8 @@ -383,10 +383,10 @@ define linkonce_odr dso_local nonnull align 4 dereferenceable(4) i32* @_ZSt3maxI } ; Function Attrs: nobuiltin nounwind -declare dso_local void @_ZdaPv(i8*) #9 +declare void @_ZdaPv(i8* noundef) #9 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #10 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #10 { %1 = alloca i32, align 4 %2 = alloca [4 x %struct.Job], align 16 %3 = alloca i32, align 4 @@ -394,20 +394,20 @@ define dso_local i32 @main() #10 { %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)) + %5 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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) + %8 = call noundef i32 @_Z13findMaxProfitP3Jobi(%struct.Job* noundef %6, i32 noundef %7) + %9 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %5, i32 noundef %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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 @@ -431,14 +431,14 @@ define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_co %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) + %22 = call noundef i64 @_ZSt4__lgl(i64 noundef %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) + call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* noundef %14, %struct.Job* noundef %15, i64 noundef %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* @@ -446,28 +446,28 @@ define linkonce_odr dso_local void @_ZSt6__sortIP3JobN9__gnu_cxx5__ops15_Iter_co 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) + call void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %28, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +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)* noundef %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 + %4 = call noundef nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** noundef 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) + call void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %2, i1 (i64, i32, i64, i32)* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* noundef %0, %struct.Job* noundef %1, i64 noundef %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 @@ -507,7 +507,7 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__o 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) + call void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* noundef %26, %struct.Job* noundef %27, %struct.Job* noundef %28, i1 (i64, i32, i64, i32)* %32) br label %51 33: ; preds = %22 @@ -521,7 +521,7 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__o 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) + %42 = call noundef %struct.Job* @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(%struct.Job* noundef %36, %struct.Job* noundef %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 @@ -531,17 +531,17 @@ define linkonce_odr dso_local void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__o 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) + call void @_ZSt16__introsort_loopIP3JoblN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_T1_(%struct.Job* noundef %43, %struct.Job* noundef %44, i64 noundef %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 + br label %14, !llvm.loop !9 51: ; preds = %25, %14 ret void } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef i64 @_ZSt4__lgl(i64 noundef %0) #4 comdat { %2 = alloca i64, align 8 store i64 %0, i64* %2, align 8 %3 = load i64, i64* %2, align 8 @@ -552,8 +552,8 @@ define linkonce_odr dso_local i64 @_ZSt4__lgl(i64 %0) #4 comdat { 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 @@ -582,7 +582,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cx 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) + call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %19, %struct.Job* noundef %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 @@ -591,7 +591,7 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cx 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) + call void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %27, %struct.Job* noundef %28, i1 (i64, i32, i64, i32)* %32) br label %40 33: ; preds = %3 @@ -602,15 +602,15 @@ define linkonce_odr dso_local void @_ZSt22__final_insertion_sortIP3JobN9__gnu_cx 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) + call void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %34, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %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 @@ -629,15 +629,15 @@ define linkonce_odr dso_local void @_ZSt14__partial_sortIP3JobN9__gnu_cxx5__ops1 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) + call void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* noundef %11, %struct.Job* noundef %12, %struct.Job* noundef %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) + call void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* noundef %18, %struct.Job* noundef %19, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt27__unguarded_partition_pivotIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 @@ -669,7 +669,7 @@ define linkonce_odr dso_local %struct.Job* @_ZSt27__unguarded_partition_pivotIP3 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) + call void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_S8_T0_(%struct.Job* noundef %20, %struct.Job* noundef %22, %struct.Job* noundef %23, %struct.Job* noundef %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 @@ -679,12 +679,12 @@ define linkonce_odr dso_local %struct.Job* @_ZSt27__unguarded_partition_pivotIP3 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) + %38 = call noundef %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(%struct.Job* noundef %31, %struct.Job* noundef %32, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %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 @@ -697,7 +697,7 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15 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) + call void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* noundef %11, %struct.Job* noundef %12, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -711,14 +711,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15 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) + %21 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.Job* noundef %19, %struct.Job* noundef %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) + call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* noundef %23, %struct.Job* noundef %24, %struct.Job* noundef %25, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5) br label %26 26: ; preds = %22, %18 @@ -728,14 +728,14 @@ define linkonce_odr dso_local void @_ZSt13__heap_selectIP3JobN9__gnu_cxx5__ops15 %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 + br label %14, !llvm.loop !10 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -762,15 +762,15 @@ define linkonce_odr dso_local void @_ZSt11__sort_heapIP3JobN9__gnu_cxx5__ops15_I %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 + call void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* noundef %18, %struct.Job* noundef %19, %struct.Job* noundef %20, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %21) + br label %7, !llvm.loop !11 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_RT0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -813,14 +813,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_I %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 + %35 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 + %41 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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) @@ -837,7 +837,7 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_I %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) + call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* noundef %38, i64 noundef %39, i64 noundef %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 @@ -849,14 +849,14 @@ define linkonce_odr dso_local void @_ZSt11__make_heapIP3JobN9__gnu_cxx5__ops15_I %59 = load i64, i64* %8, align 8 %60 = add nsw i64 %59, -1 store i64 %60, i64* %8, align 8 - br label %31 + br label %31, !llvm.loop !12 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, %struct.Job* noundef %1, %struct.Job* noundef %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 @@ -892,12 +892,12 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIP %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) + %32 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_S8_RT0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -911,12 +911,12 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_It 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 + %14 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 + %18 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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* @@ -928,7 +928,7 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_It %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 + %29 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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) @@ -945,20 +945,20 @@ define linkonce_odr dso_local void @_ZSt10__pop_heapIP3JobN9__gnu_cxx5__ops15_It %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) + call void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* noundef %22, i64 noundef 0, i64 noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_T0_S9_T1_T2_(%struct.Job* noundef %0, i64 noundef %1, i64 noundef %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 @@ -1008,7 +1008,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o %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) + %42 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %9, %struct.Job* noundef %37, %struct.Job* noundef %41) br i1 %42, label %43, label %46 43: ; preds = %31 @@ -1021,7 +1021,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o %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 + %50 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 @@ -1030,7 +1030,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o 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 + br label %25, !llvm.loop !13 57: ; preds = %25 %58 = load i64, i64* %12, align 8 @@ -1055,7 +1055,7 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o %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 + %75 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 @@ -1068,12 +1068,12 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o 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) + %84 = call noundef 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"* noundef 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"* noundef nonnull align 8 dereferenceable(8) %15, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 + %88 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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) @@ -1084,12 +1084,12 @@ define linkonce_odr dso_local void @_ZSt13__adjust_heapIP3JoblS0_N9__gnu_cxx5__o %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) + call void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.Job* noundef %85, i64 noundef %86, i64 noundef %87, i64 %94, i32 %96, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef 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"* noundef 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 @@ -1097,7 +1097,7 @@ define linkonce_odr dso_local nonnull align 8 dereferenceable(8) %"struct.__gnu_ } ; 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 { +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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -1106,14 +1106,14 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS %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 + %9 = call noundef nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops14_Iter_comp_valIPFbS0_S0_EEEEvT_T0_S9_T1_RT2_(%struct.Job* noundef %0, i64 noundef %1, i64 noundef %2, i64 %3, i32 %4, %"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef 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 @@ -1149,7 +1149,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops %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) + %30 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 8 dereferenceable(8) %26, %struct.Job* noundef %29, %struct.Job* noundef nonnull align 4 dereferenceable(12) %7) br label %31 31: ; preds = %25, %21 @@ -1160,7 +1160,7 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops %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 + %37 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 @@ -1173,10 +1173,10 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops %45 = sub nsw i64 %44, 1 %46 = sdiv i64 %45, 2 store i64 %46, i64* %13, align 8 - br label %21, !llvm.loop !9 + br label %21, !llvm.loop !14 47: ; preds = %31 - %48 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %7) #3 + %48 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 @@ -1186,16 +1186,16 @@ define linkonce_odr dso_local void @_ZSt11__push_heapIP3JoblS0_N9__gnu_cxx5__ops 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPFb3JobS2_EEclIPS2_S2_EEbT_RT0_(%"struct.__gnu_cxx::__ops::_Iter_comp_val"* noundef nonnull align 8 dereferenceable(8) %0, %struct.Job* noundef %1, %struct.Job* noundef 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 @@ -1231,12 +1231,12 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Iter_comp_valIPF %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) + %32 = call noundef 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 { +; Function Attrs: mustprogress noinline uwtable +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* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2, %struct.Job* noundef %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 @@ -1250,37 +1250,37 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cx 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) + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %12, %struct.Job* noundef %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) + %18 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %16, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %20, %struct.Job* noundef %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) + %25 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %23, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %27, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %30, %struct.Job* noundef %31) br label %32 32: ; preds = %29, %26 @@ -1292,31 +1292,31 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cx 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) + %37 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %35, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %39, %struct.Job* noundef %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) + %44 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %42, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %46, %struct.Job* noundef %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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %49, %struct.Job* noundef %50) br label %51 51: ; preds = %48, %45 @@ -1329,8 +1329,8 @@ define linkonce_odr dso_local void @_ZSt22__move_median_to_firstIP3JobN9__gnu_cx 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEET_S8_S8_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %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 @@ -1348,14 +1348,14 @@ define linkonce_odr dso_local %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9_ 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) + %14 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.Job* noundef %12, %struct.Job* noundef %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 + br label %11, !llvm.loop !15 18: ; preds = %11 %19 = load %struct.Job*, %struct.Job** %7, align 8 @@ -1366,14 +1366,14 @@ define linkonce_odr dso_local %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9_ 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) + %24 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %5, %struct.Job* noundef %22, %struct.Job* noundef %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 + br label %21, !llvm.loop !16 28: ; preds = %21 %29 = load %struct.Job*, %struct.Job** %6, align 8 @@ -1388,44 +1388,44 @@ define linkonce_odr dso_local %struct.Job* @_ZSt21__unguarded_partitionIP3JobN9_ 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) + call void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %35, %struct.Job* noundef %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 + br label %10, !llvm.loop !17 } -; Function Attrs: noinline nounwind uwtable mustprogress -define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* %0, %struct.Job* %1) #4 comdat { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local void @_ZSt9iter_swapIP3JobS1_EvT_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 + call void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6__not_ISt15__is_tuple_likeIT_EESt21is_move_constructibleIS4_ESt18is_move_assignableIS4_EEE5valueEvE4typeERS4_SD_(%struct.Job* noundef nonnull align 4 dereferenceable(12) %5, %struct.Job* noundef 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 { +; Function Attrs: mustprogress noinline nounwind uwtable +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* noundef nonnull align 4 dereferenceable(12) %0, %struct.Job* noundef 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 + %7 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 + %11 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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 + %15 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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* @@ -1436,8 +1436,8 @@ define linkonce_odr dso_local void @_ZSt4swapI3JobENSt9enable_ifIXsr6__and_ISt6_ ; 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 @@ -1472,12 +1472,12 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__op 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) + %26 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEclIPS2_S7_EEbT_T0_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %4, %struct.Job* noundef %24, %struct.Job* noundef %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 + %29 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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) @@ -1485,8 +1485,8 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__op %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 + %36 = call noundef %struct.Job* @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(%struct.Job* noundef %32, %struct.Job* noundef %33, %struct.Job* noundef %35) + %37 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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* @@ -1505,7 +1505,7 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__op 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) + call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* noundef %42, i1 (i64, i32, i64, i32)* %50) br label %51 51: ; preds = %41, %27 @@ -1515,14 +1515,14 @@ define linkonce_odr dso_local void @_ZSt16__insertion_sortIP3JobN9__gnu_cxx5__op %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 + br label %19, !llvm.loop !18 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP3JobN9__gnu_cxx5__ops15_Iter_comp_iterIPFbS0_S0_EEEEvT_S8_T0_(%struct.Job* noundef %0, %struct.Job* noundef %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 @@ -1555,21 +1555,21 @@ define linkonce_odr dso_local void @_ZSt26__unguarded_insertion_sortIP3JobN9__gn 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) + call void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* noundef %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 + br label %12, !llvm.loop !19 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt13move_backwardIP3JobS1_ET0_T_S3_S2_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #6 comdat { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca %struct.Job*, align 8 @@ -1577,16 +1577,16 @@ define linkonce_odr dso_local %struct.Job* @_ZSt13move_backwardIP3JobS1_ET0_T_S3 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) + %8 = call noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %7) %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* %9) + %10 = call noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %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) + %12 = call noundef %struct.Job* @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %8, %struct.Job* noundef %10, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu_cxx5__ops14_Val_comp_iterIPFbS0_S0_EEEEvT_T0_(%struct.Job* noundef %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 @@ -1595,7 +1595,7 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu 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 + %9 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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) @@ -1608,12 +1608,12 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu 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) + %17 = call noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* noundef nonnull align 8 dereferenceable(8) %3, %struct.Job* noundef nonnull align 4 dereferenceable(12) %5, %struct.Job* noundef %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 + %20 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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* @@ -1623,10 +1623,10 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu %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 + br label %15, !llvm.loop !20 27: ; preds = %15 - %28 = call nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* nonnull align 4 dereferenceable(12) %5) #3 + %28 = call noundef nonnull align 4 dereferenceable(12) %struct.Job* @_ZSt4moveIR3JobEONSt16remove_referenceIT_E4typeEOS3_(%struct.Job* noundef 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* @@ -1634,21 +1634,21 @@ define linkonce_odr dso_local void @_ZSt25__unguarded_linear_insertIP3JobN9__gnu ret void } -; Function Attrs: noinline uwtable mustprogress +; Function Attrs: mustprogress noinline uwtable 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) + %5 = call noundef 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"* noundef 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"* noundef nonnull align 8 dereferenceable(8) %2, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt22__copy_move_backward_aILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #6 comdat { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca %struct.Job*, align 8 @@ -1656,26 +1656,26 @@ define linkonce_odr dso_local %struct.Job* @_ZSt22__copy_move_backward_aILb1EP3J 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 + %8 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %7) #3 %9 = load %struct.Job*, %struct.Job** %5, align 8 - %10 = call %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* %9) #3 + %10 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %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) + %12 = call noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %11) #3 + %13 = call noundef %struct.Job* @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %8, %struct.Job* noundef %10, %struct.Job* noundef %12) + %14 = call noundef %struct.Job* @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(%struct.Job** noundef nonnull align 8 dereferenceable(8) %6, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt12__miter_baseIP3JobET_S2_(%struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt12__niter_wrapIP3JobET_RKS2_S2_(%struct.Job** noundef nonnull align 8 dereferenceable(8) %0, %struct.Job* noundef %1) #4 comdat { %3 = alloca %struct.Job**, align 8 %4 = alloca %struct.Job*, align 8 store %struct.Job** %0, %struct.Job*** %3, align 8 @@ -1684,8 +1684,8 @@ define linkonce_odr dso_local %struct.Job* @_ZSt12__niter_wrapIP3JobET_RKS2_S2_( 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt23__copy_move_backward_a1ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #6 comdat { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca %struct.Job*, align 8 @@ -1695,20 +1695,20 @@ define linkonce_odr dso_local %struct.Job* @_ZSt23__copy_move_backward_a1ILb1EP3 %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) + %10 = call noundef %struct.Job* @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %7, %struct.Job* noundef %8, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt12__niter_baseIP3JobET_S2_(%struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZSt23__copy_move_backward_a2ILb1EP3JobS1_ET1_T0_S3_S2_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #6 comdat { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca %struct.Job*, align 8 @@ -1718,12 +1718,12 @@ define linkonce_odr dso_local %struct.Job* @_ZSt23__copy_move_backward_a2ILb1EP3 %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) + %10 = call noundef %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_(%struct.Job* noundef %7, %struct.Job* noundef %8, %struct.Job* noundef %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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1ESt26random_access_iterator_tagE13__copy_move_bI3JobEEPT_PKS4_S7_S5_(%struct.Job* noundef %0, %struct.Job* noundef %1, %struct.Job* noundef %2) #4 comdat align 2 { %4 = alloca %struct.Job*, align 8 %5 = alloca %struct.Job*, align 8 %6 = alloca %struct.Job*, align 8 @@ -1763,11 +1763,11 @@ define linkonce_odr dso_local %struct.Job* @_ZNSt20__copy_move_backwardILb1ELb1E ret %struct.Job* %30 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 { +; Function Attrs: mustprogress noinline uwtable +define linkonce_odr dso_local noundef zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS2_EEclIS2_PS2_EEbRT_T0_(%"struct.__gnu_cxx::__ops::_Val_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, %struct.Job* noundef nonnull align 4 dereferenceable(12) %1, %struct.Job* noundef %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 @@ -1803,12 +1803,12 @@ define linkonce_odr dso_local zeroext i1 @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPF %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) + %32 = call noundef 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 { +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"* noundef nonnull align 8 dereferenceable(8) %0, %"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef 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 @@ -1817,21 +1817,21 @@ define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops14_Val_comp_iterIPFb3JobS %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 + %9 = call noundef nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** noundef 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 { +define linkonce_odr dso_local void @_ZN9__gnu_cxx5__ops15_Iter_comp_iterIPFb3JobS2_EEC2ES4_(%"struct.__gnu_cxx::__ops::_Iter_comp_iter"* noundef nonnull align 8 dereferenceable(8) %0, i1 (i64, i32, i64, i32)* noundef %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 + %7 = call noundef nonnull align 8 dereferenceable(8) i1 (i64, i32, i64, i32)** @_ZSt4moveIRPFb3JobS0_EEONSt16remove_referenceIT_E4typeEOS5_(i1 (i64, i32, i64, i32)** noundef 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 @@ -1843,36 +1843,42 @@ define internal void @_GLOBAL__sub_I_weighted_job_scheduling.cpp() #0 section ". 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #5 = { argmemonly nofree nounwind willreturn } +attributes #6 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #8 = { nobuiltin allocsize(0) "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #9 = { nobuiltin nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #10 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #11 = { noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } attributes #12 = { builtin allocsize(0) } attributes #13 = { builtin nounwind } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} +!13 = distinct !{!13, !7} +!14 = distinct !{!14, !7} +!15 = distinct !{!15, !7} +!16 = distinct !{!16, !7} +!17 = distinct !{!17, !7} +!18 = distinct !{!18, !7} +!19 = distinct !{!19, !7} +!20 = distinct !{!20, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/word-wrap.ll similarity index 74% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/word-wrap.ll index 70aeaa27..4777d720 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/word-wrap.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/word-wrap.ll @@ -22,7 +22,7 @@ target triple = "x86_64-pc-linux-gnu" @_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 +@_ZSt4cout = external 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 @@ -31,21 +31,21 @@ target triple = "x86_64-pc-linux-gnu" ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z13solveWordWrapPiii(i32* noundef %0, i32 noundef %1, i32 noundef %2) #4 { %4 = alloca i32*, align 8 %5 = alloca i32, align 4 %6 = alloca i32, align 4 @@ -162,7 +162,7 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %63, !llvm.loop !6 95: ; preds = %63 br label %96 @@ -171,7 +171,7 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %41, !llvm.loop !8 99: ; preds = %41 store i32 1, i32* %14, align 4 @@ -284,7 +284,7 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %106, !llvm.loop !9 180: ; preds = %106 br label %181 @@ -293,7 +293,7 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %100, !llvm.loop !10 184: ; preds = %100 %185 = getelementptr inbounds i32, i32* %36, i64 0 @@ -397,7 +397,7 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %194, !llvm.loop !11 261: ; preds = %194 br label %262 @@ -406,11 +406,11 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { %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 + br label %186, !llvm.loop !12 265: ; preds = %186 %266 = load i32, i32* %5, align 4 - %267 = call i32 @_Z13printSolutionPii(i32* %40, i32 %266) + %267 = call noundef i32 @_Z13printSolutionPii(i32* noundef %40, i32 noundef %266) %268 = load i8*, i8** %7, align 8 call void @llvm.stackrestore(i8* %268) ret void @@ -419,8 +419,8 @@ define dso_local void @_Z13solveWordWrapPiii(i32* %0, i32 %1, i32 %2) #4 { ; 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local noundef i32 @_Z13printSolutionPii(i32* noundef %0, i32 noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -446,26 +446,26 @@ define dso_local i32 @_Z13printSolutionPii(i32* %0, i32 %1) #4 { %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) + %21 = call noundef i32 @_Z13printSolutionPii(i32* noundef %14, i32 noundef %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)) + %24 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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)) + %26 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %24, i32 noundef %25) + %27 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %26, i8* noundef 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)) + %33 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %27, i32 noundef %32) + %34 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %33, i8* noundef 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_) + %36 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %34, i32 noundef %35) + %37 = call noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %36, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) %38 = load i32, i32* %5, align 4 ret i32 %38 } @@ -473,16 +473,16 @@ define dso_local i32 @_Z13printSolutionPii(i32* %0, i32 %1) #4 { ; 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* nonnull dereferenceable(8), i32) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEi(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i32 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8)) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef i32 @main() #6 { %1 = alloca i32, align 4 %2 = alloca [4 x i32], align 16 %3 = alloca i32, align 4 @@ -495,11 +495,11 @@ define dso_local i32 @main() #6 { %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) + call void @_Z13solveWordWrapPiii(i32* noundef %6, i32 noundef %7, i32 noundef %8) ret i32 0 } -; Function Attrs: argmemonly nofree nosync nounwind willreturn +; Function Attrs: argmemonly nofree 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 @@ -508,24 +508,28 @@ define internal void @_GLOBAL__sub_I_word_wrap.cpp() #0 section ".text.startup" 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { argmemonly nofree nounwind willreturn } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} +!11 = distinct !{!11, !7} +!12 = distinct !{!12, !7} diff --git a/src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll b/src/test-suite/PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll similarity index 59% rename from src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll rename to src/test-suite/PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll index 5ceefd41..674bc705 100644 --- a/src/test-suite/PE-benchmarks-llfiles-llvm12/z-algorithm-linear-time.ll +++ b/src/test-suite/PE-benchmarks-llfiles-llvm14/z-algorithm-linear-time.ll @@ -33,7 +33,7 @@ $_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_re @_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 +@_ZSt4cout = external 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 @@ -41,21 +41,21 @@ $_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_re ; 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) + call void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitC1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 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 +declare void @_ZNSt8ios_base4InitD1Ev(%"class.std::ios_base::Init"* noundef nonnull align 1 dereferenceable(1)) unnamed_addr #2 ; Function Attrs: nounwind -declare dso_local i32 @__cxa_atexit(void (i8*)*, i8*, i8*) #3 +declare 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*) { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %0, %"class.std::__cxx11::basic_string"* noundef %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 @@ -65,13 +65,13 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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) + 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"* noundef nonnull align 8 dereferenceable(32) %1, i8* noundef 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"* noundef nonnull align 8 dereferenceable(32) %4, %"class.std::__cxx11::basic_string"* noundef 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %4) #3 + %13 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %3) #3 %14 = trunc i64 %13 to i32 store i32 %14, i32* %7, align 4 %15 = load i32, i32* %7, align 4 @@ -80,15 +80,15 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(%"class.std::__cxx11::basic_string"* noundef %10, i32* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #3 store i32 0, i32* %11, align 4 br label %21 @@ -104,25 +104,25 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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 + %31 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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)) + %34 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) @_ZSt4cout, i8* noundef 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 + %38 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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) + %41 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %34, i64 noundef %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_) + %43 = invoke noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8) %41, %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_) to label %44 unwind label %49 44: ; preds = %42 @@ -135,7 +135,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %4) #3 br label %64 49: ; preds = %42, %35, %33, %12 @@ -154,7 +154,7 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #3 br label %63 57: ; preds = %44, %25 @@ -164,16 +164,16 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI %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 + br label %21, !llvm.loop !6 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %3) #3 br label %64 64: ; preds = %63, %45 @@ -184,8 +184,8 @@ define dso_local void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaI 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 { +; Function Attrs: mustprogress noinline uwtable +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"* noundef nonnull align 8 dereferenceable(32) %1, %"class.std::__cxx11::basic_string"* noundef 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 @@ -195,14 +195,14 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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 + %10 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) + %11 = call noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %10) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef 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*) { +; Function Attrs: mustprogress noinline uwtable +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"* noundef nonnull align 8 dereferenceable(32) %1, i8* noundef %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 @@ -215,9 +215,9 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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) + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, %"class.std::__cxx11::basic_string"* noundef 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) + %13 = invoke noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i8* noundef %12) to label %14 unwind label %16 14: ; preds = %3 @@ -232,11 +232,11 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 br label %21 21: ; preds = %20, %14 @@ -250,19 +250,19 @@ define linkonce_odr dso_local void @_ZStplIcSt11char_traitsIcESaIcEENSt7__cxx111 resume { i8*, i32 } %26 } -declare dso_local i32 @__gxx_personality_v0(...) +declare 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 +declare noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 { +; Function Attrs: mustprogress noinline uwtable +define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPi(%"class.std::__cxx11::basic_string"* noundef %0, i32* noundef %1) #4 { %3 = alloca i32*, align 8 %4 = alloca i32, align 4 %5 = alloca i32, align 4 @@ -270,7 +270,7 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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 + %9 = call noundef i64 @_ZNKSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6lengthEv(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0) #3 %10 = trunc i64 %9 to i32 store i32 %10, i32* %4, align 4 store i32 0, i32* %6, align 4 @@ -307,12 +307,12 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %30 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %35 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %34) %36 = load i8, i8* %35, align 1 %37 = sext i8 %36 to i32 %38 = icmp eq i32 %32, %37 @@ -326,7 +326,7 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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 + br label %21, !llvm.loop !8 44: ; preds = %39 %45 = load i32, i32* %6, align 4 @@ -388,12 +388,12 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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) + %89 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %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) + %94 = call noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %0, i64 noundef %93) %95 = load i8, i8* %94, align 1 %96 = sext i8 %95 to i32 %97 = icmp eq i32 %91, %96 @@ -407,7 +407,7 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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 + br label %80, !llvm.loop !9 103: ; preds = %98 %104 = load i32, i32* %6, align 4 @@ -433,29 +433,29 @@ define dso_local void @_Z7getZarrNSt7__cxx1112basic_stringIcSt11char_traitsIcESa %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 + br label %11, !llvm.loop !10 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i8* noundef) #1 -declare dso_local nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* nonnull dereferenceable(8), i64) #1 +declare noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEm(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), i64 noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZNSolsEPFRSoS_E(%"class.std::basic_ostream"* noundef nonnull align 8 dereferenceable(8), %"class.std::basic_ostream"* (%"class.std::basic_ostream"*)* noundef) #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 noundef nonnull align 8 dereferenceable(8) %"class.std::basic_ostream"* @_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_(%"class.std::basic_ostream"* noundef 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 +declare noundef nonnull align 1 dereferenceable(1) i8* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEixEm(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i64 noundef) #1 -; Function Attrs: noinline norecurse uwtable mustprogress -define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { +; Function Attrs: mustprogress noinline norecurse uwtable +define dso_local noundef 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 @@ -466,35 +466,35 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso %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) + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2, i8* noundef getelementptr inbounds ([16 x i8], [16 x i8]* @.str.2, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 + call void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6, i8* noundef getelementptr inbounds ([5 x i8], [5 x i8]* @.str.3, i64 0, i64 0), %"class.std::allocator"* noundef 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) + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %8, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1ERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9, %"class.std::__cxx11::basic_string"* noundef 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) + invoke void @_Z6searchNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES4_(%"class.std::__cxx11::basic_string"* noundef %8, %"class.std::__cxx11::basic_string"* noundef %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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %9) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %6) #3 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 %15 = load i32, i32* %1, align 4 ret i32 %15 @@ -505,7 +505,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %3) #3 br label %39 20: ; preds = %10 @@ -515,7 +515,7 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 dereferenceable(1) %7) #3 br label %38 24: ; preds = %11 @@ -543,19 +543,19 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 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 + call void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEED1Ev(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32) %2) #3 br label %39 39: ; preds = %38, %16 @@ -567,27 +567,27 @@ define dso_local i32 @main() #6 personality i8* bitcast (i32 (...)* @__gxx_perso } ; Function Attrs: nounwind -declare dso_local void @_ZNSaIcEC1Ev(%"class.std::allocator"* nonnull dereferenceable(1)) unnamed_addr #2 +declare void @_ZNSaIcEC1Ev(%"class.std::allocator"* noundef nonnull align 1 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 void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EPKcRKS3_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef, %"class.std::allocator"* noundef 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 void @_ZNSaIcED1Ev(%"class.std::allocator"* noundef nonnull align 1 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 +declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendEPKc(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), i8* noundef) #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 { +; Function Attrs: mustprogress noinline nounwind uwtable +define linkonce_odr dso_local noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZSt4moveIRNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEONSt16remove_referenceIT_E4typeEOS8_(%"class.std::__cxx11::basic_string"* noundef 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 +declare noundef nonnull align 8 dereferenceable(32) %"class.std::__cxx11::basic_string"* @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE6appendERKS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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 +declare void @_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEC1EOS4_(%"class.std::__cxx11::basic_string"* noundef nonnull align 8 dereferenceable(32), %"class.std::__cxx11::basic_string"* noundef 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" { @@ -595,22 +595,26 @@ define internal void @_GLOBAL__sub_I_z_algorithm_linear_time.cpp() #0 section ". 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 #0 = { noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #1 = { "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #2 = { nounwind "frame-pointer"="all" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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 #4 = { mustprogress noinline uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } 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" } +attributes #6 = { mustprogress noinline norecurse uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } +attributes #7 = { mustprogress noinline nounwind uwtable "frame-pointer"="all" "min-legal-vector-width"="0" "no-trapping-math"="true" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87" "tune-cpu"="generic" } -!llvm.module.flags = !{!0} -!llvm.ident = !{!1} +!llvm.module.flags = !{!0, !1, !2, !3, !4} +!llvm.ident = !{!5} !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} +!1 = !{i32 7, !"PIC Level", i32 2} +!2 = !{i32 7, !"PIE Level", i32 2} +!3 = !{i32 7, !"uwtable", i32 1} +!4 = !{i32 7, !"frame-pointer", i32 2} +!5 = !{!"Ubuntu clang version 14.0.1-++20220402053234+23d08271a4b2-1~exp1~20220402053315.111"} +!6 = distinct !{!6, !7} +!7 = !{!"llvm.loop.mustprogress"} +!8 = distinct !{!8, !7} +!9 = distinct !{!9, !7} +!10 = distinct !{!10, !7} diff --git a/src/test-suite/generateFlevel.sh b/src/test-suite/generateOracle.sh similarity index 58% rename from src/test-suite/generateFlevel.sh rename to src/test-suite/generateOracle.sh index aa7f4bfb..91b85dea 100644 --- a/src/test-suite/generateFlevel.sh +++ b/src/test-suite/generateOracle.sh @@ -4,25 +4,38 @@ # This software is available under the BSD 4-Clause License. Please see LICENSE # file in the top-level directory for more details. # -SEED_VERSION="llvm12" -# SRC_WD="PE-benchmarks-llfiles-llvm12" +SEED_VERSION="llvm14" +# SRC_WD="PE-benchmarks-llfiles-llvm14 +DEST_FOLDER_SYM_P="oracle/SYM_${SEED_VERSION}_p" +DEST_FOLDER_FA_P="oracle/FA_${SEED_VERSION}_p" + DEST_FOLDER_SYM="oracle/SYM_${SEED_VERSION}_f" DEST_FOLDER_FA="oracle/FA_${SEED_VERSION}_f" + DEST_FOLDER_SYM_ONDEMAND="oracle/SYM_${SEED_VERSION}_onDemand" DEST_FOLDER_FA_ONDEMAND="oracle/FA_${SEED_VERSION}_onDemand" + +mkdir -p ${DEST_FOLDER_SYM_P} +mkdir -p ${DEST_FOLDER_FA_P} mkdir -p ${DEST_FOLDER_SYM} mkdir -p ${DEST_FOLDER_FA} mkdir -p ${DEST_FOLDER_SYM_ONDEMAND} mkdir -p ${DEST_FOLDER_FA_ONDEMAND} # Update the BUILD to use -LLVM_BUILD= +LLVM_BUILD="/usr" #Update IR2Vec Path to use -IR2VEC_PATH= +IR2VEC_PATH="../../build/bin/ir2vec" #Update Vocabulary Path to use -VOCAB_PATH= +VOCAB_PATH="../../vocabulary/seedEmbeddingVocab-llvm14.txt" + +# does the VOCAB_PATH exist? +if [ ! -f ${VOCAB_PATH} ]; then + echo "Vocabulary file does not exist.." + exit +fi if [ -z ${LLVM_BUILD} ]; then echo "Enter the llvm build path.." @@ -44,14 +57,28 @@ functions=("main" "buildMatchingMachine" "search" "BellamFord" "BFS" "isBCUtil" "selectKItems" "getMinDiceThrows" "countSort" "subset_sum" "SolveSudoku" "SCC" "solveKTUtil" "topologicalSort" "transitiveClosure" "insertSuffix" "tugOfWar" "isUgly" "Union" "printVertexCover" "findMaxProfit" "solveWordWrap") +# define a counter variable to count the number of files +cat index-${SEED_VERSION}.files | wc -l +echo "generating P level files" +while IFS= read -r d; do + ${IR2VEC_PATH} -sym -vocab=${VOCAB_PATH} -level p -o ${DEST_FOLDER_SYM_P}/ir2vec.txt ${d} &>/dev/null + ${IR2VEC_PATH} -fa -vocab=${VOCAB_PATH} -level p -o ${DEST_FOLDER_FA_P}/ir2vec.txt ${d} &>/dev/null +done /dev/null + ${IR2VEC_PATH} -fa -vocab=${VOCAB_PATH} -level f -o ${DEST_FOLDER_FA}/ir2vec.txt ${d} &>/dev/null +done /dev/null - ${IR2VEC_PATH} -fa -vocab=${VOCAB_PATH} -o ${DEST_FOLDER_FA}/ir2vec.txt -level f ${d} &>/dev/null +echo "generating onDemand level files" +while IFS= read -r d; do + echo $d for func in "${functions[@]}"; do - ${IR2VEC_PATH} -sym -vocab=${VOCAB_PATH} -o ${DEST_FOLDER_SYM_ONDEMAND}/ir2vec.txt -level f -funcName=$func ${d} &>/dev/null - ${IR2VEC_PATH} -fa -vocab=${VOCAB_PATH} -o ${DEST_FOLDER_FA_ONDEMAND}/ir2vec.txt -level f -funcName=$func ${d} &>/dev/null + ${IR2VEC_PATH} -sym -vocab=${VOCAB_PATH} -level f -funcName=$func -o ${DEST_FOLDER_SYM_ONDEMAND}/ir2vec.txt ${d} &>/dev/null + ${IR2VEC_PATH} -fa -vocab=${VOCAB_PATH} -level f -funcName=$func -o ${DEST_FOLDER_FA_ONDEMAND}/ir2vec.txt ${d} &>/dev/null done - done , 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/FA_llvm14_f/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_f/ir2vec.txt new file mode 100644 index 00000000..36afb4c5 --- /dev/null +++ b/src/test-suite/oracle/FA_llvm14_f/ir2vec.txt @@ -0,0 +1,2145 @@ +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = 0.367900 0.047595 0.673940 -0.851587 -0.346307 -0.294512 1.163747 -0.667956 -0.414381 1.367800 0.160943 -0.781980 -0.906116 0.910355 -0.117946 -0.639008 0.115778 -0.490744 -0.462987 -0.302942 -0.377856 0.399696 -0.177320 -0.890985 0.569788 -0.199322 0.429966 1.190188 -0.187850 0.121072 0.313917 -0.519237 0.523984 1.656012 0.280795 0.213704 -0.606498 1.852604 -1.538768 1.823899 -1.644504 -1.536243 2.374267 -0.241323 -0.128967 -1.640651 -0.263465 1.101911 -0.573106 -0.986136 -0.249044 0.135876 0.298644 -1.465741 -0.564665 1.386641 -1.702226 0.479685 0.653983 -1.170115 -1.472195 -0.292702 0.137195 0.293403 -1.192156 -1.127969 -0.126782 -0.564590 -0.682177 0.395067 -0.972738 -0.842097 1.130893 0.207995 -0.237242 0.460501 -0.433150 -0.434451 0.817173 -0.249840 -0.693069 -0.872574 0.235356 -0.535360 0.606462 0.529052 0.897014 -2.182417 0.014944 -1.830195 0.856574 -1.122419 0.831194 1.297886 -0.389715 1.561302 0.072509 0.254896 -0.060044 -0.192790 0.826274 0.505459 1.156608 0.449449 1.108549 1.151890 -1.171926 -1.784993 -1.189072 -0.742126 0.577851 -0.600379 -1.707846 0.577436 -0.851725 -0.031503 0.257898 -0.157739 -0.381003 1.359935 -1.980133 0.563999 0.668290 -0.339405 0.633302 0.907853 0.025703 -0.001389 -0.164811 0.830919 0.092798 0.721098 0.085347 1.203035 -0.465057 -0.859170 -0.187383 0.219371 0.395353 -0.853466 -1.298105 -2.032745 -0.501297 0.876773 -0.766117 0.804879 2.191926 -0.497843 -1.386189 0.924192 0.094627 0.258966 0.403234 0.465996 1.861617 -1.026748 -0.028226 -0.165074 -0.030258 1.118763 2.188638 -0.397829 -1.371878 1.266040 -0.486867 -1.074849 1.168820 -0.079168 -0.028608 0.022317 0.092970 -0.671135 -0.872685 1.464737 -0.976978 1.700252 -1.076668 1.848497 -0.835912 -0.596044 0.365577 -1.757982 -0.467715 -1.415663 -0.126924 -0.130007 0.869987 -1.250733 -0.930993 -0.745845 -0.402564 -0.290303 1.688221 -1.608940 -0.174368 -0.159017 -0.182400 1.336834 0.400525 -0.776426 -0.183140 -1.271399 0.483994 0.766744 0.570033 -1.960129 -0.466587 -0.293065 -0.602273 0.302500 0.075590 0.894447 -0.663174 0.114788 0.937547 -0.270257 -0.530250 -0.365452 -1.592005 0.384828 0.232863 0.528108 0.493901 1.916259 1.295229 0.781329 -0.174418 0.686318 -0.223903 -0.582614 -1.506329 0.416623 0.036061 0.276915 0.796543 1.091427 0.638400 0.546195 1.239066 0.513280 -0.304643 1.354717 0.339973 1.416512 -0.662371 -0.449436 0.701026 0.100068 1.060054 1.173934 0.061544 -1.046149 0.921874 -0.360532 -0.927758 -0.408125 -0.321348 -0.309078 -0.219336 1.518148 0.917681 -0.451584 -0.122213 2.284555 -0.238092 -2.543776 1.009079 0.582664 0.874962 0.670840 -0.513404 0.735766 1.128959 0.201898 0.370222 0.668529 0.808229 -1.611318 0.038220 0.193460 0.805593 1.383614 0.153220 -3.178280 -0.437165 0.227645 1.764740 -0.037064 1.882768 -0.824068 0.318936 0.147926 0.088858 0.231476 -0.162403 0.669942 -0.286324 0.075596 -1.977214 0.317143 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = 0.218731 0.246357 0.639348 -1.264869 -1.208780 0.038615 0.869856 -0.883375 -0.282760 0.910761 0.749437 -0.390464 -0.159388 1.093166 -0.134142 -0.253512 0.025002 -0.881735 -0.447091 -0.211562 -0.080615 0.702214 -0.297842 -0.449767 0.176004 -0.291962 0.030418 0.853677 -0.388084 -0.256726 -0.011032 -0.585470 0.159097 1.373649 0.393577 -0.162323 -0.478086 1.903268 -1.343112 1.000014 -1.242635 -1.235532 1.601841 -0.384423 -0.061489 -1.684935 -0.810467 0.803404 1.095325 -1.024009 0.123700 -0.041630 0.575180 -0.771453 -0.311274 0.599418 -0.879258 -0.105533 0.752992 -1.195281 -0.948573 -0.316315 0.027327 0.483832 -1.477519 -0.898774 0.276325 -0.023972 0.023591 -0.081982 -0.372394 -1.283671 1.438240 0.259868 -0.146258 0.272885 -0.036517 -1.466451 1.077132 0.309483 -1.180225 -0.393800 -0.108952 -0.713287 0.683779 -0.284616 1.168742 -1.998646 0.199034 -1.969140 0.466139 -0.905096 0.540978 1.122740 -0.470964 0.813379 0.564217 1.257197 0.495785 0.078713 1.081530 0.640950 1.004021 0.736889 1.215203 0.956011 -0.785473 -1.075226 -1.218559 -1.189268 0.828621 -0.514223 -1.854974 0.793753 -0.078031 -1.146244 -0.313748 -0.202794 0.121902 2.332964 -1.223259 0.555312 1.017675 -0.307929 -0.127652 0.971684 -0.198857 0.016914 -0.472881 0.808245 -0.535040 1.059432 0.093908 1.042462 -0.753558 -0.687942 -0.323878 0.378043 0.257681 -1.096304 -1.095833 -1.451551 -0.202108 0.814782 -0.769806 0.444351 2.210404 -1.157156 -1.407527 1.186064 1.365423 -0.682111 0.231589 0.351428 1.695756 -0.585363 -0.461418 -0.645276 -0.597531 0.545164 1.737533 0.022310 -0.735748 0.951439 -0.443271 -2.173401 2.687888 -0.338389 -0.602651 0.936263 0.347197 -0.762329 -1.052471 1.152681 0.194790 1.450620 -0.314930 1.675735 -0.515651 -0.327397 0.295132 -0.290826 -0.214059 -1.385682 0.237151 0.365906 0.943509 -0.313748 -0.730350 -0.432487 -0.897082 -0.542561 1.052525 -1.370011 0.402196 0.404766 -0.032621 0.131926 1.206260 -0.088033 -0.317741 -0.877897 0.784116 0.720292 0.394332 -1.422773 -0.771522 -0.601081 -0.318663 -0.341512 0.058312 1.228616 -0.385188 -0.012726 0.507958 -0.325605 -0.462043 0.084878 -1.739981 0.405655 -0.134254 1.049840 -0.107145 1.360563 1.341097 1.384359 0.530372 0.437355 -0.186740 -0.096114 -1.340401 0.238508 0.142045 0.207715 0.857643 1.723147 0.950924 0.966178 1.540209 0.462230 0.747655 1.416291 -0.180044 1.884967 -0.506880 -0.428931 0.158030 0.503091 1.311329 1.760081 1.082556 -0.608883 0.462955 -0.027684 -1.297513 -0.517349 0.174069 -0.094879 0.176584 0.878428 1.198456 -0.046579 -0.395786 1.832333 -0.182461 -2.178764 0.713854 0.317875 1.118890 1.032886 -0.181509 0.957610 0.745717 0.301237 1.044581 1.142716 0.778134 -1.518122 -0.859931 0.310611 0.779132 0.586102 0.776766 -2.733524 0.629001 0.178531 1.233544 -0.582507 1.457145 -1.247008 0.350282 0.792378 0.071019 0.053628 0.444951 0.643609 -1.157427 0.084448 -1.866634 0.123275 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 5.856948 0.173910 5.224032 -9.803888 -3.904199 -1.634562 9.422617 -11.174490 -5.951314 20.662681 3.166944 -6.526176 -1.466692 9.046813 -2.145031 -3.533361 2.654584 1.945403 -3.700542 -3.724086 -2.887321 4.197383 -3.327709 -11.085260 3.426795 -3.016034 7.033281 8.566309 -7.234253 6.700655 1.535618 -7.396234 4.660076 17.582423 5.421220 1.518797 -10.760495 15.795891 -16.280742 16.320276 -17.771092 -16.396039 21.474134 -2.398554 4.158521 -16.845259 -5.037886 9.355911 6.758889 -14.257953 -5.712754 -1.966562 6.704897 -14.864225 -7.604978 9.042374 -8.862740 -3.094461 8.791482 -16.439490 -18.095678 -3.303754 7.317803 5.907319 -19.587570 -11.853349 -0.000128 -1.993146 -0.964573 3.631893 -12.421206 -14.507102 4.596198 2.427883 -3.641953 1.882801 -7.028467 -11.016301 8.075183 4.856320 -8.035007 -9.116875 0.489020 -7.903752 1.893414 5.316691 16.480009 -22.810383 6.335788 -20.510152 7.193199 -8.033429 10.393462 13.295519 -3.509496 11.843937 3.101964 15.376383 2.031231 -2.579882 8.080259 8.039830 9.200255 1.902535 13.941746 14.068126 -11.812151 -18.649427 -10.579741 -8.744520 8.858425 -9.295861 -16.990923 7.308068 -9.173805 -7.326991 -3.187094 -3.453048 -3.127551 20.286135 -24.052198 1.281411 8.870877 -4.032659 4.742728 6.664630 0.499982 1.647236 -2.091384 6.258327 -0.454404 4.163117 1.454329 13.717520 -13.769416 -4.422413 0.316127 4.772002 5.091196 -12.342256 -13.932649 -22.457213 -6.030288 12.149467 -7.687737 6.493206 20.494300 -7.823074 -14.890338 6.768872 1.751136 -7.383609 5.210274 5.182661 19.670450 -12.910791 2.438750 -2.300273 0.876055 11.252773 22.536915 -6.064216 -14.092169 14.880620 -10.506035 -14.495192 17.623127 -2.163292 -0.226364 -1.466888 4.095374 -5.065335 -3.791905 13.411662 -18.953778 15.461401 -13.956818 16.322407 -9.948453 -1.128611 1.844609 -23.200845 -8.648560 -12.865817 2.708781 -2.983678 15.338143 -10.637639 -9.550607 -4.954484 -8.279316 -0.960658 18.951100 -22.727186 -2.278085 -0.299993 -4.131982 13.981111 4.008908 -5.650324 -3.524579 -6.840058 6.025723 10.709595 5.693245 -17.603395 -9.788873 -8.104123 -6.182520 -7.064582 1.817181 13.057718 -8.579933 1.526770 8.444514 -2.455132 -6.326035 -4.567426 -15.355329 6.767129 -1.674145 9.088788 1.134760 21.182975 10.250495 12.169025 -0.730605 1.936824 -0.747960 -9.639782 -19.388112 7.854695 2.248208 -0.105557 8.257514 11.559864 5.990015 8.599285 12.595145 1.561968 4.436677 15.053656 0.115113 13.620464 -5.559526 -1.048092 7.122583 0.229226 10.927730 13.824362 8.734084 -10.378713 6.309313 -8.897083 -14.798114 -1.801989 -1.564651 0.033326 -3.693630 8.964226 14.566661 -3.093531 -5.416388 23.429467 -0.939446 -25.878331 10.191347 4.925038 9.693817 14.269206 -7.478905 12.806417 8.516109 10.749948 7.223768 8.915695 8.698256 -17.686862 -1.324761 2.521435 8.769901 18.144239 -0.131387 -31.685936 5.185755 2.192693 17.234491 -4.190475 20.253481 -11.701551 11.067907 2.111424 1.428420 3.652352 -2.468249 8.884352 -1.328444 -2.084601 -23.365058 6.341620 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = 2.879307 0.214253 2.849414 -4.663906 -2.591566 -0.648135 4.583889 -4.719630 -2.597854 8.700614 1.444053 -2.978414 -1.055713 4.709922 -1.102764 -1.906289 0.925345 -1.084358 -1.508718 -1.815728 -1.505834 2.540934 -1.512717 -4.439855 1.994335 -1.524778 2.285516 4.513748 -3.001443 2.101879 0.959090 -3.282042 1.796756 8.201126 2.402060 -0.113881 -3.963673 8.663954 -7.773179 7.457158 -7.949555 -7.663524 10.479315 -1.292530 0.870553 -7.664477 -2.389827 4.431819 2.133337 -5.371984 -1.645304 -0.594250 2.853121 -6.278871 -3.106255 4.678914 -5.720515 -0.204611 3.787211 -7.053105 -7.782799 -1.665874 2.138942 2.330229 -8.029491 -5.411530 0.250461 -0.883817 -0.755681 1.467197 -5.016547 -6.082350 3.833995 1.398932 -1.386230 1.189255 -2.479262 -4.892150 4.118283 1.047951 -4.367182 -4.118618 0.144073 -3.791702 1.971265 1.914039 6.977022 -10.969783 2.505291 -9.875298 3.408899 -4.431478 4.434688 6.560885 -1.875501 6.029426 1.581293 5.905688 1.149533 -1.156096 4.340444 3.623164 4.459001 2.032759 5.852777 6.628879 -5.326883 -8.162543 -5.357589 -3.873020 3.618960 -3.720894 -8.436323 3.501302 -3.677343 -2.934552 -0.866340 -1.379288 -1.482546 9.809243 -10.206243 1.161068 3.891700 -1.837155 1.943858 3.489349 0.107789 0.436230 -1.454442 3.625160 -0.596957 2.929005 0.413321 6.259565 -5.691523 -2.993466 -0.835777 1.866540 2.116772 -5.696370 -6.550418 -10.167358 -2.439375 5.015610 -3.808658 3.996023 10.404459 -3.917507 -7.079803 4.286622 1.757124 -2.429149 2.480283 2.344937 8.938337 -5.052090 -0.077561 -1.613508 -0.333592 4.672297 10.337198 -2.029948 -5.804935 6.687574 -3.721315 -6.323970 8.916603 -0.889441 -0.917358 0.303190 1.478600 -2.601036 -2.828972 6.620749 -6.152678 7.285650 -5.421847 8.526701 -3.966014 -1.460873 1.154188 -9.509973 -3.304949 -6.464487 1.039386 -0.766094 5.946837 -4.838405 -4.568664 -2.411217 -3.527190 -1.250598 8.249791 -8.984550 -0.339221 0.297384 -1.416874 6.265840 2.848584 -2.457522 -1.402909 -4.171853 2.920929 4.725768 2.232277 -8.785734 -3.978426 -2.664958 -2.702460 -1.809679 0.750517 5.770786 -4.085703 0.626962 3.838598 -0.980628 -2.547715 -1.254504 -7.832559 2.997609 -0.396419 4.022072 0.895704 9.367859 5.549459 5.493995 0.099833 1.892391 -0.877019 -3.435327 -8.074003 3.078640 1.328973 0.370173 3.930001 6.444977 3.278847 3.898538 5.942830 1.750981 1.529400 6.832485 0.026363 7.308008 -3.211171 -1.130277 2.726408 0.833455 5.651811 6.845474 3.323074 -4.781587 3.304692 -3.168268 -6.269561 -1.492713 -0.330791 -0.446567 -0.793819 4.472609 6.415783 -1.498832 -2.017019 11.032893 -0.637867 -12.406399 4.931971 2.753914 4.642710 5.567590 -2.573286 5.137717 4.366205 3.456129 3.517689 4.471619 4.203172 -8.200494 -0.712628 1.223914 4.086956 7.085091 1.341198 -15.099181 1.508562 1.380302 7.870097 -1.666058 9.614332 -5.197877 3.420325 1.552569 0.565853 1.182736 -0.033916 3.780840 -1.895895 0.400137 -10.095987 2.065701 +PE-benchmarks/subset-sum.cpp__main = 0.924499 0.059509 0.930847 -1.755324 -1.075853 -0.150583 0.954561 -1.438079 -0.636322 1.816882 0.611252 -1.166004 -0.467761 1.912170 -0.563287 -0.984242 0.239171 -0.643890 -0.534903 -0.485445 -0.376177 0.825567 -0.442134 -1.323018 0.615534 -0.450225 0.502832 1.472344 -0.169835 0.109657 -0.148232 -0.867660 0.537071 2.788555 0.706429 -0.194426 -0.752536 3.206522 -1.822567 2.150908 -2.569356 -2.169331 3.221769 -0.440939 -0.086311 -2.668782 -1.251328 1.401396 -0.221679 -1.092663 -0.199164 -0.208398 0.562867 -1.889662 -0.736586 1.809880 -2.526144 0.792923 1.182024 -1.526688 -1.946309 -0.724721 0.452848 0.396001 -1.894762 -1.744577 0.248740 0.015598 -0.744245 0.505636 -1.478467 -1.956687 2.189600 0.535274 -0.566896 0.499890 -0.531010 -1.808521 1.375230 -0.338132 -1.601973 -1.145735 0.281117 -0.841064 1.310258 0.332979 1.773786 -3.672652 0.529231 -3.411019 1.033492 -1.931076 1.456584 2.334574 -1.381637 1.810268 0.443830 1.447168 0.561421 0.095801 1.730488 1.073291 1.235076 0.512223 1.866069 1.737907 -1.262135 -2.170681 -1.395450 -1.452966 0.581495 -0.952770 -3.488832 1.074385 -1.266602 -0.470312 -0.349091 -0.181587 -0.409922 2.674008 -2.934139 0.023697 1.086085 -0.620532 0.798105 1.546293 -0.163878 0.159469 -0.819056 1.516989 -0.115019 0.944835 -0.146216 1.807336 -1.469402 -1.888880 -1.121324 0.386582 0.750932 -1.779500 -2.486943 -3.016817 -0.780187 1.054059 -1.176428 1.612967 3.559043 -1.153088 -2.428047 1.844743 0.884298 -0.131671 1.526773 0.674147 3.119033 -1.629649 0.072343 -0.498177 -0.176527 1.035987 1.773230 -0.676997 -1.727774 1.783467 -0.899212 -2.210904 2.994580 -0.213308 -0.414347 0.186292 0.243324 -1.100718 -1.461872 2.603043 -1.042275 2.600308 -1.250142 3.133678 -1.348693 -1.182673 0.629459 -2.233101 -0.646447 -1.785699 0.149745 -0.165036 1.871765 -1.704894 -1.668174 -0.520772 -0.847527 -0.562412 2.475431 -1.450235 -0.051729 0.108534 -0.205428 1.704517 1.400786 -0.937172 0.103519 -1.773284 0.959073 1.798723 0.526425 -3.065556 -0.762426 -0.808211 -0.761215 -0.251139 0.224553 1.625757 -1.311208 -0.277158 1.006763 -0.287421 -0.198421 -0.237267 -2.517870 0.944464 -0.471977 0.980322 0.482448 2.869057 2.188199 1.662474 0.194664 0.397725 -0.167787 -0.995318 -1.775230 0.635236 0.438096 0.374184 1.241531 2.234020 1.127956 1.067520 1.895161 0.952049 0.212631 2.259152 0.502446 2.759208 -0.950258 -0.439286 0.556390 -0.033559 2.113815 2.903077 0.407998 -1.262756 1.175836 -0.316854 -1.456139 -1.424581 -0.333703 -0.263463 -0.550614 1.564252 1.426277 -0.567742 -0.524637 3.581281 -0.154968 -3.834825 1.768639 0.881582 1.341324 1.290764 -0.737182 1.092297 1.599737 0.227531 1.111458 1.369579 1.489736 -2.354535 -0.566429 0.295403 1.485916 1.622670 0.718992 -4.042170 0.696645 0.862589 2.650019 0.002976 2.423504 -1.499815 0.346233 0.420030 0.103702 0.170470 0.060363 1.152165 -1.182780 0.101744 -2.621284 -0.115320 +PE-benchmarks/karatsuba.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = 1.234216 0.493157 2.284140 -5.791166 -3.388424 -1.454280 3.846584 -2.702478 -1.947918 6.105498 1.237950 -4.396441 -3.837627 5.539661 -0.459854 -3.205868 0.838063 -4.027723 -1.134873 -0.788512 -1.189876 2.967522 -0.743291 -2.779307 2.012922 -0.080181 0.051639 3.914148 1.740401 -1.566522 0.546728 -2.422849 1.990511 7.177902 1.342394 -1.098217 -2.858409 9.137272 -4.626121 7.126404 -7.390081 -5.330874 8.946604 -1.272813 -0.740983 -8.633372 -1.763527 5.264853 -1.348994 -3.864191 -0.290847 0.950191 1.253370 -5.714636 -2.802536 5.413272 -7.377871 3.676574 3.846234 -3.479427 -3.987007 -1.153225 0.576687 1.848277 -4.772343 -4.446934 -0.627903 -3.075272 -3.579796 0.335402 -3.714401 -3.014900 4.445615 2.151223 -1.786349 1.982997 -1.789905 -3.322135 3.991502 -3.616540 -4.392666 -2.936852 0.048700 -2.362796 3.624091 0.782320 3.605248 -9.522394 0.872145 -8.758372 2.715994 -5.358805 3.090680 7.031717 -1.948326 5.550621 0.215036 0.154035 2.276122 -0.830827 4.377079 2.562004 4.811384 2.687344 4.483207 5.557126 -3.974614 -5.767163 -3.779803 -3.938258 1.649853 -1.707986 -6.867881 3.592649 -2.765193 -1.250304 1.264859 -0.563743 -2.280332 5.209677 -6.714917 -1.132244 2.467437 -1.732002 2.157812 5.413146 -0.222592 -0.187467 -2.076013 4.431422 0.281821 4.766577 1.073785 5.480699 -2.316853 -4.556574 -1.943027 1.018838 1.490293 -4.000247 -5.874029 -9.171265 -1.632451 0.434186 -3.888460 4.460896 9.904586 -2.986231 -6.114612 5.914829 1.038973 0.867332 2.484587 0.947168 8.145270 -3.325340 -1.471181 -0.697961 -1.542948 3.181532 9.762928 -0.862420 -4.859141 4.437732 -3.164549 -5.249646 2.383219 0.787891 -1.403239 -0.248116 0.186597 -3.903993 -5.488732 5.850016 -3.804722 6.501926 -3.225149 8.206031 -1.881274 -3.246682 2.995270 -5.457115 -1.240005 -5.211970 -0.706301 0.771602 3.375985 -4.757234 -3.757710 -2.442712 -1.116108 -3.199859 5.851232 -6.573176 -0.087581 0.846265 0.488485 6.225244 3.145321 -3.286803 0.273276 -5.470454 2.697661 3.523287 2.348395 -8.011589 -1.941425 -1.851020 -2.537336 2.383651 -0.407842 3.882584 -2.913654 -0.696871 4.072677 -1.002357 -0.824041 -0.481458 -7.878848 2.283791 0.215676 3.121532 2.138957 8.123451 4.244825 4.311383 0.058980 2.919612 -1.597514 -1.119807 -5.120854 0.475589 0.122811 -0.243470 4.070361 4.630671 3.982905 3.064920 6.756134 2.742784 -2.743328 6.061846 -0.399722 6.502260 -2.107586 -2.390036 2.608700 0.132791 5.243941 7.373580 0.993840 -4.976236 4.579665 -1.885691 -3.740097 -3.348613 -0.517476 -1.354167 -0.246482 5.492774 3.673568 -1.340489 -0.348620 8.699301 -1.835868 -10.735051 5.306777 2.580082 4.347901 2.725464 -0.973021 2.912057 4.406956 -1.446673 2.141004 4.529126 3.546344 -6.028603 -0.829069 0.953592 3.787801 4.720281 2.582060 -12.826996 -1.576552 1.977004 6.731419 0.368611 7.760702 -3.726586 -0.728605 2.431945 1.176526 0.121686 -1.296589 2.511564 -2.397029 0.044214 -5.675155 0.953522 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 0.746333 -0.372684 1.378452 -3.240716 -2.482394 -0.956355 -0.238711 -0.668479 -0.756345 1.443190 1.083740 -2.805264 -2.657882 3.559011 -0.426065 -2.380496 0.276550 -1.617035 0.552971 -0.235632 0.271618 1.489749 0.292420 -0.789546 0.838344 0.174710 -1.814090 2.072458 4.191527 -1.525466 0.001100 -0.631736 1.072423 3.083197 -0.241523 -2.003116 -0.470903 5.216366 -1.589186 2.035669 -2.440230 -1.936891 4.250850 -0.606714 -0.840438 -4.198097 -2.499096 2.635661 -2.730935 -1.343293 0.550855 1.351930 0.596464 -2.521317 -1.659130 2.768140 -5.607848 3.022556 1.822547 -0.356121 0.163590 0.450335 -0.999759 0.538883 -0.505577 -2.031185 -0.474822 -1.460805 -2.343268 -0.786719 -0.777936 -0.319349 4.114770 0.842309 -0.634684 1.713356 1.155956 -1.835535 2.721366 -2.947494 -2.923279 -0.878842 -1.111672 -0.865553 3.342409 -0.565755 0.969138 -3.964626 0.772507 -4.311084 1.587453 -3.790459 0.581249 3.961868 -3.082893 2.456857 0.987798 -0.434827 2.520266 0.202408 3.505398 1.854693 1.583193 2.081685 1.841012 1.969757 -1.137849 -1.065678 -2.183645 -2.397170 -0.282395 -1.233059 -5.001198 2.002131 -0.258900 -0.413481 1.393619 -0.814516 -0.672742 2.321884 -1.996061 0.097727 1.045832 -0.674280 -0.491386 3.502203 -0.564842 -1.223509 -1.592606 3.343304 -0.487473 2.385112 2.325746 2.332941 -0.182728 -4.351290 -1.572472 0.651274 -0.010094 -2.168237 -2.567671 -3.917512 0.550536 -1.379487 -1.525007 2.072762 5.445957 -0.948482 -2.402318 3.830989 1.271926 0.749400 2.662313 0.277274 4.474604 -0.506979 -2.662389 -0.815181 -2.371134 1.024350 1.571797 0.620127 -1.019413 1.734483 -0.420760 -2.886282 0.856133 -0.059654 -1.102638 0.340063 0.096420 -2.728945 -3.345562 2.798021 0.358028 2.866417 0.218820 4.384637 1.470041 -2.985275 2.267253 -0.593909 -0.037566 -1.615883 -0.581997 1.085269 0.078129 -2.312012 -1.743878 -1.972599 0.316753 -2.200913 2.288330 -0.953477 1.346041 1.770962 0.988956 1.507503 2.128325 -1.376640 1.262832 -3.649881 1.112110 1.577840 -0.096332 -4.815194 0.102346 -0.967888 -0.029913 2.289425 -0.824950 2.162303 -1.488433 -1.492150 1.155688 -0.373324 0.151219 0.063368 -3.178518 0.725993 0.067838 2.175199 2.013937 3.531946 2.778533 2.178890 0.185919 2.916633 -0.738076 0.963411 -0.892571 -0.573473 -0.570136 0.214610 1.812639 2.168837 1.948426 1.951506 3.508347 2.538680 -1.753328 3.221410 -0.013692 3.348365 0.022724 -1.933276 0.737049 0.235222 3.186850 4.499442 0.214857 -1.604590 2.355850 -0.088889 -0.612048 -3.107755 0.254881 -0.378203 -0.229039 3.135355 1.137943 0.242610 0.315100 2.208698 -0.594289 -4.986991 3.219216 1.288397 1.783190 0.774613 0.486215 0.583825 1.547057 -2.150807 0.652402 2.583667 1.613642 -3.027845 -0.248795 0.911271 2.587810 0.996257 3.059468 -5.698799 -0.485078 1.382483 1.793307 0.282620 2.436114 -2.075716 -3.237682 1.939667 0.659872 -0.697424 -1.079273 -0.163397 -3.018982 0.285941 -0.072970 -0.760041 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.170018 0.342742 3.071596 -6.605638 -3.326423 -1.990751 3.272927 -4.042305 -2.670035 7.193944 2.014724 -6.461102 -3.766034 6.784740 -0.689753 -3.093094 2.007682 -2.800576 -0.171606 -0.241496 -1.150440 2.534331 -0.604875 -4.191635 2.030067 0.598560 -0.085860 4.819381 3.934863 -1.330119 -0.700682 -2.645507 3.824309 9.212874 1.831599 -3.771334 -3.331649 11.532248 -5.532164 7.662111 -7.455268 -5.165913 11.866350 -1.288810 -1.200984 -11.041625 -4.134896 6.912555 -2.690680 -5.804276 -0.302278 1.079402 1.825913 -7.350101 -4.879415 7.939553 -9.789779 4.418271 5.358817 -3.416896 -4.160765 -0.699622 0.849294 2.436543 -5.108651 -5.925556 -0.294474 -4.164543 -4.442538 -0.146478 -6.258892 -4.089999 7.526999 1.774459 -2.324412 2.275774 -1.491572 -4.818755 5.101416 -3.272936 -5.744218 -3.369552 -1.587882 -2.955835 5.490054 0.129028 3.877596 -11.712592 1.424188 -11.528011 3.381799 -7.470738 3.858852 9.194564 -4.234225 6.348027 0.678575 0.968575 2.710817 -0.026912 6.746381 3.917112 3.991412 2.218887 6.953631 6.929714 -4.862496 -7.453196 -5.006049 -4.688678 1.623919 -1.866831 -10.726322 4.830278 -4.826655 -1.310850 1.310136 -1.213792 -2.663717 6.569313 -7.689750 -0.918957 2.722453 -2.237583 2.463042 8.266385 -0.374605 -0.365736 -2.709979 6.071465 0.913015 4.451925 2.817047 6.541031 -2.943575 -8.447805 -2.525051 1.710074 2.542179 -5.555978 -7.821847 -11.819450 -1.144197 -1.317638 -4.509567 4.456989 12.481340 -2.554702 -6.538789 7.172058 1.937902 1.104917 5.161570 1.097484 13.295849 -5.540639 -1.811065 -0.388442 -2.581518 3.694154 9.195206 -2.010153 -5.380994 5.519259 -3.392635 -7.157108 3.903657 1.014847 -1.445732 2.970416 0.121512 -3.608854 -7.689699 7.864334 -3.480290 7.272645 -3.172877 11.426590 -0.330915 -4.578671 3.673395 -3.778176 -1.963617 -5.685326 -0.855517 0.490420 4.488724 -5.637504 -4.882251 -2.467301 -0.533138 -3.450644 9.038227 -5.916833 0.467121 1.553184 0.123437 5.501233 3.732895 -4.634231 1.566848 -7.542887 2.763329 5.016936 1.263494 -11.081050 -2.388551 -3.602598 -2.369923 2.128200 -1.479742 5.920432 -5.251286 -2.221730 4.953678 -1.084447 -0.977845 -0.714974 -8.653755 3.314789 0.008149 3.737172 3.955000 11.679047 5.322580 5.819741 0.025156 3.867881 -1.759761 -0.420465 -8.326887 0.609987 -0.951960 1.007284 4.748897 5.062478 4.171553 4.334988 7.154806 1.665218 -2.413408 8.070770 0.665689 7.579874 -0.927486 -3.068863 3.227138 -1.075817 7.320817 9.601818 1.045618 -7.469357 5.216702 -3.471567 -5.204573 -5.280793 -0.069060 -0.863279 -1.671723 6.399952 5.255001 -0.132813 -1.147481 10.706387 -2.459733 -14.564824 6.643884 3.195900 4.449484 5.611854 -1.104627 5.103113 4.401712 -0.542018 1.961222 5.715238 5.050013 -8.030751 0.492545 1.375799 5.085887 4.381925 3.285484 -17.738993 -0.889892 2.501624 8.117141 0.814819 8.856797 -5.567148 -0.157704 3.559174 2.181532 0.601236 -2.969577 4.309825 -4.234387 -0.973797 -6.929542 2.714990 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.824331 0.305325 0.339350 0.065727 -0.157617 0.108228 0.141475 -0.803075 -0.428684 1.034037 0.125563 -0.468243 -0.008738 0.006780 -0.441217 -0.084607 0.266558 0.781706 -0.082514 -0.543336 -0.583073 -0.296172 -0.208533 -0.479493 0.012333 -0.217628 0.461590 0.099607 -0.541747 0.424328 -0.161185 -0.195725 0.387051 1.015620 0.507866 -0.345593 -0.384076 0.620407 0.238198 0.415009 -0.761770 -0.249573 0.575573 -0.022888 0.736210 -0.568973 -0.157134 0.578215 0.201100 -0.331115 -0.375429 -0.432014 0.148563 -0.589229 -0.515153 0.716154 -0.383463 0.258312 0.439648 -0.861606 -0.925967 0.013985 0.506587 0.143908 -0.274013 -0.690797 0.059139 0.654649 0.007433 0.571372 -1.159659 -1.042749 0.090503 -0.046309 -0.410434 -0.124434 -0.424132 0.054503 0.118397 0.120610 -0.404281 -0.506503 0.280077 0.050747 0.055598 0.531279 0.638085 -1.184189 0.379593 -1.251764 0.389357 -0.414518 0.812196 0.627044 0.113320 0.385144 0.229938 -0.125895 -0.177267 0.427789 0.432654 -0.049288 -0.078613 -0.204114 0.376005 0.389421 -0.261035 -0.832088 -0.029048 -0.208566 0.080662 0.428608 -0.191548 0.331646 -1.022999 0.816582 -0.348082 0.298778 0.020623 0.502898 -0.953649 -0.642832 0.371831 -0.306881 0.992652 0.346675 0.086471 0.577191 -0.276112 0.343849 0.125901 -0.375700 -0.159713 0.569724 -0.194383 -0.996333 -0.829037 0.285135 0.714347 -0.529517 -0.961192 -0.674217 -0.451363 0.383887 -0.457735 0.547446 0.920329 -0.312780 -0.272071 0.191723 -0.331335 -0.119829 0.853044 0.416350 1.477975 -1.102220 0.575031 0.142921 0.364666 0.426576 0.029885 -0.724514 -0.663533 0.815336 0.083178 0.115511 0.810556 -0.212690 -0.051028 0.767166 0.071271 0.724095 0.003992 0.512685 -0.356086 0.498681 -0.272090 1.225433 -0.621393 -0.380508 -0.030795 -0.260231 -0.207707 0.375827 0.600921 -0.387507 1.002690 -0.601594 -0.722037 0.506076 -0.567571 0.234677 1.084267 0.478227 -0.219100 0.058535 -0.612211 0.753697 0.154470 -0.264963 0.008161 -0.466081 0.140573 0.201424 0.117253 -0.691407 -0.434912 -0.390405 -0.239354 -0.472451 0.212079 0.591706 -0.403254 0.048129 0.288195 -0.264906 0.137298 -0.100193 0.573255 0.491536 -0.310094 -0.056795 -0.122070 1.127613 0.560397 0.647450 0.042079 -0.216022 -0.023412 -0.537449 -0.358718 0.469198 0.292999 0.436572 0.234884 -0.199580 -0.102519 0.274775 0.048408 -0.835963 0.514543 0.649250 0.073871 0.553212 -1.056200 0.541065 0.179181 -0.461122 0.682194 0.612790 -0.419177 -0.856905 0.083778 -0.585992 -0.488295 -0.354046 -0.191033 0.182560 -0.598007 0.051265 1.048344 -0.042199 -0.613706 1.267281 0.057310 -1.102436 0.831261 0.283985 -0.009314 0.840498 -0.348747 0.619765 0.279685 0.953150 -0.326421 0.456278 0.762862 -1.021421 -0.032698 -0.019047 0.464325 -0.020860 -0.265363 -1.559210 -0.119012 0.565406 0.797703 -0.068042 0.515782 -0.716294 0.379387 0.158387 0.027251 0.093744 0.006835 0.692122 -0.064099 0.042437 -0.503535 0.452763 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 10.238285 -7.184368 8.161825 -25.985732 -13.949629 -6.571292 4.511467 -1.156946 -11.452178 23.806248 6.133414 -28.762872 -27.478084 23.593270 2.111155 -22.788717 14.141799 -12.878961 6.159394 -2.250092 -6.375049 7.203249 5.629270 -18.263526 10.303887 3.035259 -18.913189 20.823568 38.216262 -8.353546 4.364322 -2.414731 9.309533 30.827736 -0.136530 -23.625403 -5.469878 42.839176 -15.965558 20.966683 -18.270638 -13.762735 47.493588 -4.986903 -1.840994 -27.181868 -12.275843 30.652915 -22.556046 -22.405054 0.576886 10.567799 12.061350 -30.637090 -26.935495 33.640910 -47.097670 22.109895 16.546989 -5.793277 -8.871873 8.125764 -5.566221 11.902859 -6.563452 -25.540387 -7.065548 -19.425039 -19.804321 -9.253183 -18.921484 -0.782606 28.906516 5.590298 -3.696899 13.999252 2.743342 -8.974318 19.743495 -21.462096 -23.878601 -9.041482 -12.321656 -14.129604 30.640706 -4.319196 14.267215 -38.594294 9.732240 -40.079754 17.691785 -31.818516 8.973269 39.402327 -18.136441 23.738789 1.332704 -7.550218 15.327923 1.955892 32.290129 10.192760 15.509259 16.415870 18.493255 20.939523 -14.749397 -16.330622 -18.167963 -13.955888 -2.120406 -6.247732 -30.839393 25.481805 -11.788207 1.640656 19.572000 -6.616802 -14.531915 17.622682 -14.190554 -1.849133 5.411186 -7.549800 3.583604 27.416531 -4.555994 -8.876222 -8.109872 30.642720 4.912092 19.173242 23.739217 26.671977 0.567842 -33.921095 -3.415120 12.881080 5.443071 -19.927938 -25.979465 -40.249403 6.330453 -13.907600 -19.539317 22.190050 47.111202 -2.220583 -15.788735 29.866771 -1.838516 11.488747 18.573555 0.268424 43.060820 -13.465648 -17.389030 1.210903 -11.804678 13.457644 23.689641 -1.527537 -15.248149 19.192788 -8.406292 -12.926525 0.024158 8.106942 -3.411706 5.403625 -2.564498 -17.573256 -29.882423 25.712972 -4.356972 21.744826 5.626626 43.449827 19.154770 -25.490349 23.681197 1.961845 -5.413074 -11.697114 -6.261156 9.469334 -6.044503 -19.181433 -19.229446 -19.608130 10.643100 -19.099629 25.790410 -8.364546 9.543084 15.944440 2.195964 16.674441 4.855320 -15.668027 8.505200 -34.670093 7.353659 11.894376 -4.778704 -34.684452 -7.180972 -5.770508 -0.838980 25.855872 -3.495458 25.308771 -17.191266 -12.895753 19.515341 5.349293 0.107038 -0.272615 -25.873425 8.606129 11.814518 13.129074 19.814254 43.659832 18.714627 17.037541 -7.879878 27.902995 -9.707860 12.745165 -21.890279 -8.964964 -10.601736 6.421242 17.452639 6.317242 12.668341 18.130939 30.294007 13.140448 -20.769311 28.319842 -0.818356 19.564937 -0.412312 -17.848938 16.990439 -4.896341 27.645417 28.483376 -4.621637 -26.996219 22.362258 -10.303919 -9.699031 -18.388773 3.377005 -4.628457 2.657072 20.128338 8.380955 3.241772 -1.576615 21.613610 -4.906626 -51.182416 35.025268 14.468185 18.989496 17.866240 2.876439 14.977518 8.208182 -13.522932 3.339799 25.263622 11.935122 -26.424147 8.530358 11.505110 24.015450 4.891671 20.049692 -54.926325 -13.258452 6.941756 15.296283 8.672346 22.339792 -16.395776 -21.905486 13.873122 5.329281 -0.980745 -17.857379 -0.713362 -22.337399 2.850244 -4.872818 8.590068 +PE-benchmarks/karatsuba.cpp__main = 18.653611 -15.894093 14.762037 -52.695901 -31.339937 -12.618143 -1.839066 3.168398 -22.101956 40.162774 9.777284 -58.787249 -61.020774 48.264129 1.697272 -50.875593 25.219529 -28.258368 15.750601 -6.458759 -10.993779 15.522412 14.946150 -32.786131 20.554107 6.014018 -45.636160 39.721558 93.611213 -21.820590 10.650368 -1.748858 17.451651 57.889905 -3.288290 -50.280857 -5.485486 85.840913 -20.247621 33.452225 -32.903171 -25.395929 91.659266 -8.765255 -6.167511 -50.634873 -24.077786 60.781702 -58.491957 -36.543113 3.138033 24.354495 21.055355 -57.760258 -54.161668 65.352356 -100.303363 54.793142 28.856897 -3.738282 -9.334709 19.818853 -16.112302 22.961204 -0.988401 -49.251228 -16.731688 -36.468415 -46.309353 -22.196691 -30.095590 8.929526 62.352223 10.187670 -7.553772 29.730585 10.888258 -12.050964 38.325375 -53.892548 -48.514548 -14.371539 -25.467655 -25.837497 65.877549 -9.931686 22.814929 -72.462075 20.149625 -75.729903 34.810219 -63.046811 14.128434 77.839491 -41.730073 45.979702 2.162581 -23.546875 36.462965 5.140820 67.438495 18.278429 28.928070 37.292093 30.666560 36.782256 -23.167890 -22.417205 -33.240839 -27.595385 -11.176094 -11.427617 -63.674824 50.340010 -18.871994 9.426686 43.226412 -12.826023 -30.768976 25.505453 -23.627869 -8.853047 5.352963 -13.566536 4.718496 53.259726 -10.197272 -20.194384 -15.032881 65.098987 8.970837 37.097075 52.509479 50.467827 9.724283 -71.217918 -11.906531 26.366462 8.135528 -36.209102 -48.755123 -74.892056 15.673708 -36.749332 -37.763254 47.157347 93.341055 -0.309881 -28.828333 63.108606 -8.989087 29.005461 41.647443 -2.074722 81.256531 -20.267755 -41.978510 3.362000 -27.391611 24.281077 35.150607 1.496658 -24.739579 33.613712 -11.771739 -16.251687 -17.079322 16.233129 -8.708822 3.121624 -7.562332 -38.899012 -60.677488 47.601074 -2.364597 40.835796 18.948733 85.098831 46.233255 -58.902675 49.954776 9.177403 -8.386162 -15.201956 -13.943553 19.872517 -21.971364 -39.977939 -36.223838 -39.774185 28.184935 -43.209079 44.775498 -3.650652 23.211244 35.630994 9.127368 33.518842 10.004683 -30.346488 20.486800 -71.659153 12.213195 22.870808 -11.809094 -67.809846 -9.578791 -8.324550 1.919021 62.615100 -9.569591 46.648487 -30.749994 -27.839593 33.916910 12.536823 6.900220 2.400085 -46.548735 15.427429 24.544200 25.558285 42.246598 82.995538 37.784460 30.355234 -16.494059 61.600135 -18.654515 29.623213 -29.141873 -23.750188 -20.686027 11.435461 34.032744 11.497420 25.594154 35.893182 62.245068 33.852552 -49.638245 54.519961 -4.630788 38.945281 -2.032038 -37.934805 29.913437 -8.480733 53.943162 59.026864 -16.399618 -49.637919 46.214058 -16.406760 -8.941376 -42.197986 9.159052 -10.950528 9.512801 39.539660 10.798603 8.674806 0.450275 32.746737 -9.123650 -96.190995 74.435647 29.055551 35.740216 27.260223 9.431348 21.078860 14.358586 -39.057494 2.050633 51.828404 19.678092 -49.087209 18.565276 23.215637 51.016308 0.853491 46.010382 -97.310437 -29.724857 15.894980 24.328263 21.033532 34.842143 -29.139575 -60.714422 30.142741 10.639360 -6.006445 -35.732661 -8.881072 -48.527232 8.630294 7.360028 9.494678 +PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = 0.043016 0.162927 0.379432 -0.476255 -0.546637 -0.112538 0.312586 -0.087488 -0.077784 -0.068509 0.214097 -0.189944 -0.335755 0.496449 -0.085577 -0.418015 -0.147827 -0.508259 -0.300096 -0.148582 -0.051402 0.311425 -0.057162 0.025369 0.234229 -0.071801 -0.153272 0.417059 0.139465 -0.514730 0.036527 -0.124131 0.092021 0.541835 -0.107348 -0.027648 0.033189 0.975449 -0.213622 0.175809 -0.453611 -0.492839 0.614709 -0.169247 -0.212009 -0.728985 -0.412183 0.405556 -0.191539 -0.086216 0.237510 0.241578 -0.142762 -0.330112 0.122297 0.412717 -0.901844 0.434977 0.255158 -0.222386 -0.252682 -0.067393 -0.190672 -0.163774 -0.004337 -0.353224 0.099630 -0.029917 -0.238477 0.065862 0.086055 -0.368037 0.928211 0.099467 0.035972 0.384658 0.252072 -0.315161 0.525176 -0.293629 -0.464299 -0.181861 0.179901 -0.115249 0.541936 -0.138946 0.054075 -0.788426 -0.022472 -0.682518 0.238732 -0.604759 0.140416 0.527402 -0.384741 0.511403 0.209437 -0.127539 0.177691 0.078626 0.576383 0.082147 0.465925 0.416554 0.274778 0.123237 -0.259879 -0.291914 -0.573292 -0.612547 0.130343 -0.132168 -0.856511 0.271161 0.093342 -0.171941 0.109882 -0.016781 0.165986 0.482048 -0.373858 0.289729 0.453371 -0.128388 -0.059141 0.575846 -0.177016 -0.145280 -0.352200 0.477000 -0.245000 0.543896 0.027525 0.310286 0.173894 -0.704405 -0.416279 -0.071213 -0.002290 -0.299388 -0.417470 -0.406341 0.029103 0.071822 -0.331933 0.296757 1.092121 -0.398643 -0.617613 0.694192 0.727138 0.231931 0.200253 0.146858 0.693534 -0.113823 -0.351883 -0.248039 -0.318282 0.248822 -0.082252 0.198934 -0.208866 0.330840 0.129179 -0.688445 0.929847 -0.235272 -0.240801 0.560179 0.155583 -0.408371 -0.578184 0.567290 0.839840 0.780993 0.202062 0.759945 -0.166985 -0.464465 0.177091 0.054623 0.079736 -0.520156 -0.126877 0.130115 0.129374 -0.241960 -0.284200 -0.312338 -0.289613 -0.323451 0.196945 0.018817 0.275118 0.073098 0.229658 -0.142005 0.669775 -0.057965 0.095781 -0.774180 0.248331 0.194362 0.139721 -0.691013 0.063395 -0.024804 -0.091509 0.290796 -0.061248 0.244540 0.029679 -0.103254 0.160097 -0.183808 -0.091480 0.006634 -0.505363 -0.057153 -0.124353 0.337074 0.114095 0.409717 0.895757 0.405589 0.272501 0.317232 0.001940 0.074011 -0.083681 -0.156873 -0.150933 0.377371 0.359266 0.431432 0.470302 0.190966 0.606134 0.397613 -0.052302 0.585339 0.188192 1.010807 -0.166611 -0.303718 -0.047027 0.195018 0.530811 0.767634 0.044393 -0.029160 0.382957 0.403262 -0.157431 -0.605545 -0.032464 -0.160635 -0.044674 0.590933 0.169568 -0.264606 0.092893 0.619551 -0.138486 -0.792899 0.334078 0.117053 0.357453 -0.038361 0.128056 0.009933 0.489565 -0.424170 0.173603 0.320832 0.389171 -0.591515 -0.227816 0.086749 0.444713 -0.153206 0.527425 -0.891281 0.059656 0.200459 0.391247 -0.093538 0.339496 -0.340116 -0.404903 0.308343 -0.011625 -0.165398 0.344306 0.110866 -0.538276 0.064985 -0.435798 -0.309006 +PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.038379 0.154957 0.300167 -0.378422 -0.459341 -0.075724 0.245952 -0.092456 -0.083137 -0.063318 0.184114 -0.174538 -0.284853 0.408188 -0.077341 -0.344303 -0.138675 -0.431638 -0.255426 -0.143541 -0.028793 0.269027 -0.037764 0.033819 0.180575 -0.058324 -0.141645 0.350992 0.128418 -0.423158 0.047787 -0.086856 0.091906 0.442887 -0.075773 -0.026156 0.042559 0.799328 -0.170839 0.144128 -0.376397 -0.410972 0.499918 -0.122799 -0.193041 -0.606972 -0.349289 0.328642 -0.175948 -0.059358 0.179464 0.186036 -0.134742 -0.247829 0.086703 0.362498 -0.770799 0.381726 0.188495 -0.183779 -0.209852 -0.043669 -0.149323 -0.148213 0.007855 -0.289034 0.062932 -0.020804 -0.197062 0.068175 0.086119 -0.288138 0.773305 0.071931 0.021778 0.298164 0.192839 -0.248662 0.427983 -0.239112 -0.375481 -0.138182 0.138290 -0.090780 0.445148 -0.116568 0.029472 -0.647763 -0.027105 -0.553514 0.188491 -0.488934 0.108947 0.424830 -0.329308 0.408173 0.166531 -0.113433 0.131072 0.067962 0.479146 0.048530 0.374269 0.365714 0.215731 0.096949 -0.213918 -0.221175 -0.462158 -0.508002 0.128004 -0.106688 -0.721819 0.200462 0.078379 -0.134978 0.100745 -0.022792 0.149346 0.392489 -0.309375 0.229118 0.354698 -0.095524 -0.047577 0.460624 -0.129529 -0.104711 -0.293188 0.410385 -0.191349 0.446738 0.028355 0.235332 0.146634 -0.600727 -0.341671 -0.044628 -0.013563 -0.232892 -0.338406 -0.331147 0.021682 0.058388 -0.263502 0.247953 0.890085 -0.317042 -0.514962 0.595019 0.596856 0.179508 0.168579 0.113518 0.574859 -0.085577 -0.311288 -0.197595 -0.281473 0.203199 -0.070884 0.150147 -0.162104 0.253597 0.115367 -0.569652 0.772485 -0.210722 -0.221116 0.461188 0.108489 -0.332705 -0.470985 0.457798 0.700016 0.649576 0.162849 0.621194 -0.120063 -0.403183 0.146892 0.043530 0.058842 -0.418216 -0.100792 0.096108 0.100677 -0.207364 -0.230180 -0.245079 -0.217578 -0.289696 0.161589 0.025765 0.244237 0.078083 0.200796 -0.117142 0.544244 -0.062618 0.063465 -0.626590 0.189663 0.178425 0.133960 -0.585371 0.069728 -0.033132 -0.064095 0.245517 -0.064183 0.197793 0.025988 -0.066536 0.118960 -0.171678 -0.062268 0.020098 -0.417912 -0.027585 -0.116689 0.262241 0.083423 0.329792 0.742918 0.313624 0.212382 0.282035 0.017750 0.064983 -0.071181 -0.124598 -0.098811 0.304080 0.293124 0.362149 0.378214 0.175466 0.499816 0.346151 -0.029121 0.478028 0.163060 0.837848 -0.142742 -0.233666 -0.057635 0.182361 0.430027 0.641059 0.035409 -0.034155 0.300246 0.317199 -0.112893 -0.516370 -0.046357 -0.141218 -0.037214 0.500639 0.132144 -0.210342 0.087552 0.501410 -0.097742 -0.639084 0.294828 0.108459 0.272177 -0.048806 0.091370 0.000000 0.423594 -0.350510 0.119896 0.288661 0.316303 -0.486976 -0.192822 0.056859 0.373641 -0.128987 0.459789 -0.734308 0.047010 0.168731 0.324953 -0.095781 0.283113 -0.273859 -0.357434 0.266740 0.007968 -0.151240 0.290745 0.080256 -0.449459 0.063662 -0.350281 -0.264441 +PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = 2.456838 -0.612254 2.327949 -3.092305 -1.795148 -0.357061 3.810615 -4.474544 -2.354513 7.863485 1.068114 -2.715477 -0.618057 3.207779 -0.412943 -1.355841 1.130896 1.364141 -1.067737 -0.760612 -2.038046 1.566593 -1.687561 -3.793682 1.691770 -0.943527 2.614668 3.667972 -2.958550 2.769655 0.674801 -3.103925 1.321995 7.364481 2.552718 0.496345 -3.482266 7.441332 -5.862205 7.361196 -6.127702 -5.956631 8.506084 -1.196307 1.511969 -4.732576 -1.426601 4.426077 1.461484 -5.934730 -1.507374 -0.722516 2.796715 -5.605594 -2.847953 3.692507 -3.986282 -1.177675 3.802299 -6.351577 -7.306476 -1.371485 1.846623 2.310275 -8.032666 -4.839694 -0.088124 -0.735930 -0.159280 1.089397 -5.146592 -5.795335 2.915147 0.930814 -1.905619 0.820235 -2.236464 -3.260487 3.321682 2.251599 -4.124965 -3.803341 -0.328913 -4.151960 1.739716 2.162843 6.720849 -9.463088 3.215340 -8.944967 3.171936 -3.653900 4.191540 6.309743 -1.604538 5.212669 1.674720 6.073496 0.283687 -0.734103 3.476181 2.732627 2.477175 1.470391 5.240343 5.341536 -5.067246 -7.682633 -4.820374 -3.330398 3.617926 -3.102976 -6.111613 3.079226 -3.621987 -0.161348 -1.103382 -0.126643 -1.495614 7.710415 -9.379214 1.616726 3.305317 -1.740728 2.708561 3.038220 -0.053515 0.840707 -1.052916 2.974949 -0.746430 1.607815 0.272820 5.838220 -4.808605 -0.785297 -0.482335 1.927462 2.622705 -4.694838 -5.887553 -9.148200 -2.446621 5.215423 -3.426679 3.604831 9.031313 -3.617797 -4.925952 3.331261 -0.301620 -1.870523 2.078149 2.313792 7.618803 -4.830171 0.239594 -1.314594 -0.085093 4.045741 8.648429 -1.958884 -5.566092 6.446928 -3.439923 -4.027782 8.635314 -0.327487 -0.841716 -0.173676 1.463523 -1.351825 -2.192858 6.000523 -7.114804 5.451627 -4.756629 7.668795 -3.238004 -0.305076 0.880953 -7.817006 -2.946097 -5.617480 0.892214 -1.052699 5.649938 -4.688950 -4.092535 -1.526258 -3.147916 -0.731597 7.305725 -6.375006 -0.915556 0.384232 -1.653167 6.258632 1.940512 -1.943110 -2.081065 -3.524828 2.374710 3.114994 0.972651 -5.889156 -3.940955 -2.708764 -2.621583 -2.158168 0.902910 5.044053 -4.405112 0.677807 3.194573 -0.489585 -2.107861 -0.864107 -6.896667 2.672153 0.575225 3.220853 1.584737 8.183426 4.507636 5.351437 0.358883 1.821466 -0.972081 -2.553236 -7.867096 3.019794 0.878760 1.436995 3.355877 4.185604 2.948523 3.421308 3.981192 0.045502 2.349174 6.252850 0.453534 6.122168 -2.526668 -0.679089 3.055491 0.586691 4.948610 4.877919 1.543167 -3.800050 2.624607 -3.525430 -6.056980 -0.622396 -0.112407 -0.163300 -0.835165 2.855713 5.440425 -0.716614 -2.325508 9.575244 -1.047297 -10.899567 3.980889 2.208285 4.203178 6.127348 -1.994437 5.554250 3.103332 3.933200 3.402847 4.017036 3.700532 -7.279697 0.566247 1.056344 3.153762 6.511636 0.690191 -12.672685 0.878429 0.512935 6.556397 -1.400652 7.567602 -4.781703 3.992997 1.293801 -0.473130 1.487347 -0.889155 3.684040 0.258752 -0.011973 -9.613721 1.878646 +PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.163003 -0.210969 1.124581 -1.829731 -1.097647 -0.143552 1.456769 -1.813437 -0.959701 2.849937 0.423684 -1.393176 -1.084753 1.897882 -0.370859 -1.245152 0.338762 -0.537278 -0.492474 -0.388559 -0.942522 0.910351 -0.711822 -1.551352 0.918270 -0.410508 0.779345 1.913391 -0.273373 0.497172 0.043727 -1.287506 0.478347 3.588000 1.099242 -0.040069 -0.994330 4.231867 -2.385769 3.254820 -3.022115 -2.875146 4.140077 -0.584881 0.054804 -2.585426 -0.711875 2.136369 -0.848532 -1.763134 -0.153254 -0.190766 0.819589 -2.422605 -1.009647 2.205829 -3.154191 0.874700 1.583278 -2.008434 -2.740587 -0.921626 0.406587 0.670332 -2.709081 -2.260012 0.102494 -0.393722 -0.980964 0.504514 -2.220580 -2.209509 2.193789 0.728004 -0.885066 0.567958 -0.730694 -1.455688 1.614741 -0.284361 -2.189231 -1.603226 0.058720 -1.559479 1.682849 0.854510 2.314872 -4.646051 1.029685 -4.413759 1.355942 -2.280876 1.897464 3.225365 -1.333476 2.605809 0.613020 1.782056 0.351402 -0.357112 1.991731 1.162963 1.299816 0.927627 2.271409 2.267495 -2.044645 -3.081866 -2.067118 -1.587098 0.912275 -1.185668 -3.596921 1.382545 -1.739739 0.270954 -0.196028 0.125637 -0.987978 2.858525 -4.245341 0.294609 1.080363 -0.810508 1.575671 1.825023 -0.178966 0.319301 -0.704933 1.927410 -0.224250 1.151006 -0.177777 2.544381 -1.473137 -1.325002 -1.231861 0.635708 1.283511 -2.056396 -3.102476 -4.127172 -1.141904 1.534939 -1.580756 2.359834 4.635264 -1.521355 -2.578565 2.292444 -0.308063 0.271853 1.652226 0.918328 3.594462 -1.957895 -0.084771 -0.506444 -0.229238 1.371107 2.892317 -0.728592 -2.378234 2.558478 -1.093142 -1.310763 2.984016 -0.002758 -0.655173 -0.467645 0.294129 -1.178801 -1.740697 3.241165 -2.460647 2.859645 -1.601584 3.976745 -1.464035 -1.058155 0.800094 -3.309226 -0.824197 -2.583655 -0.037425 -0.407971 2.106412 -2.533210 -2.066053 -0.845021 -0.806965 -0.804070 3.180109 -1.794010 -0.300144 0.212789 -0.193932 2.955566 1.527107 -1.131275 -0.359909 -2.316319 1.183244 1.715283 0.377416 -3.304213 -1.163951 -0.839344 -1.180597 0.196867 0.311199 1.974832 -1.900557 -0.112522 1.406260 -0.064999 -0.307522 -0.026585 -3.450771 1.174026 0.185742 1.052624 1.179642 3.692748 2.417941 2.205557 0.295226 0.959359 -0.390889 -0.896650 -2.609684 0.833096 0.471376 0.855682 1.608395 2.278194 1.597248 1.344106 2.032815 0.947793 0.107900 2.891702 0.586719 3.362879 -1.309621 -0.665464 1.072757 0.132803 2.467454 2.909309 -0.180670 -1.559122 1.633872 -0.867705 -2.010795 -1.175119 -0.199530 -0.506416 -0.337722 1.718528 1.841382 -0.560699 -0.714822 4.637246 -0.604365 -5.122614 2.152530 1.218259 1.903473 1.937862 -0.707285 1.663853 1.806480 0.263592 1.560944 1.884105 1.744306 -3.044184 0.223426 0.408512 1.692205 2.292166 0.683825 -5.353386 0.050182 0.679298 3.347726 0.217589 3.141596 -1.855057 0.543411 0.602649 -0.289258 0.472797 -0.195883 1.690036 -0.555190 0.307204 -3.630399 0.036622 +PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/word-wrap.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 11.339995 -0.054073 2.975658 -7.587360 -0.732259 -1.922520 18.443420 -15.267701 -10.908189 27.708660 4.099088 -11.280128 -5.744376 7.651878 0.897625 -2.969724 6.794543 7.464931 -5.198206 -4.346860 -9.966957 0.488870 -4.687048 -18.922530 5.153406 -3.744085 8.654405 14.623529 -10.616813 12.837087 1.449823 -8.419824 8.033107 24.907542 9.458401 -2.596470 -13.536434 25.018067 -27.366655 24.084389 -16.059851 -19.031775 35.355599 -3.050923 4.540129 -14.555781 -6.083007 14.611734 8.806061 -21.769713 -8.796294 -3.984453 9.512605 -21.557485 -13.716059 20.922085 -11.661804 -4.864888 12.689689 -23.346728 -28.437879 -4.834645 8.067750 8.178528 -27.598000 -18.110457 -0.236302 -5.577967 0.942355 3.810328 -25.868756 -21.631937 7.830081 3.701955 -3.365573 1.031322 -13.392087 -8.395219 8.046739 13.811183 -10.935470 -12.298851 0.751525 -8.705173 2.190477 11.025858 23.929157 -31.963866 4.201350 -31.146812 10.410525 -14.127404 16.736164 20.001387 -0.167128 19.448710 2.750898 16.589161 -4.558746 -0.959555 10.892666 5.454988 9.816032 0.837371 17.247164 20.427572 -17.770801 -29.009415 -14.467548 -5.942060 12.368260 -5.904984 -18.203950 12.515057 -20.154979 -3.714896 -3.015924 -0.024523 -6.666737 25.532596 -27.298849 6.105690 10.054468 -6.516001 14.997436 11.267859 1.783562 4.373517 -2.761591 7.215752 4.813984 5.141013 -0.432183 19.892603 -15.522932 -8.128059 0.772642 8.340096 12.003410 -18.891221 -20.771962 -28.495989 -7.992794 19.034131 -12.748181 9.871535 30.950993 -10.549316 -11.590252 7.476650 -2.500922 -1.740161 7.183846 7.614021 35.478898 -22.448560 8.183278 2.836987 4.668393 15.437176 32.144728 -12.183006 -21.884875 19.922918 -9.670938 -8.779840 28.390985 -0.890938 0.766775 6.627004 4.289607 1.778271 -10.044521 22.824764 -24.893899 19.793280 -15.078436 26.299636 -12.403107 0.843405 5.165623 -19.257181 -12.735031 -20.471931 6.053030 -5.971447 20.546833 -12.728576 -14.618316 -5.476752 -9.551199 0.015065 29.824427 -20.055183 -5.102269 -0.898389 -10.471522 15.101819 2.400536 -9.058353 -6.868286 -15.016088 7.038239 10.847059 2.183998 -23.409000 -14.769371 -8.053585 -8.636170 -8.876800 3.263180 18.068467 -14.409289 2.529517 14.110462 0.159787 -7.497661 -5.505674 -17.394411 11.258827 3.472473 6.981670 3.966879 32.707756 15.075500 16.587303 -2.487717 4.902457 -3.497681 -9.662474 -31.907106 12.744211 -0.293635 8.360252 11.324685 11.886066 3.884615 11.990621 13.324365 -8.459849 8.251048 19.042118 5.607396 19.957332 -8.562399 -3.785286 12.823639 -4.545849 16.852651 14.248264 6.474216 -22.118074 7.726482 -16.875996 -22.881084 0.052329 -2.316630 0.893485 -7.261814 14.874812 20.793533 -0.867194 -10.613073 36.024485 -2.959445 -42.533179 14.286110 9.043878 13.215101 25.347761 -11.121506 22.911697 12.834905 21.419535 7.243811 13.349985 13.564801 -25.067551 5.092148 3.203227 9.799751 19.161118 -6.120131 -52.805152 3.385878 3.827056 24.346274 -2.873431 26.921947 -16.190317 20.148968 1.045264 1.929159 8.862089 -6.053283 15.554667 -2.873618 1.280223 -35.521145 14.642552 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.368523 0.414622 1.312467 -2.184930 -2.793273 0.442542 -0.416455 -3.518807 -1.496968 3.897183 1.319228 -2.177343 -0.682751 2.799362 -1.481167 -1.869788 -0.473762 0.950348 -0.413770 -1.652982 -0.821676 1.232942 -1.048475 -1.774686 0.356673 -1.034367 0.911754 1.614950 0.235763 1.074060 -0.079602 -1.680919 0.840225 4.564974 1.999579 -0.041878 -1.308652 4.807985 -1.994730 2.804738 -4.752411 -4.063859 4.351032 -0.357358 1.023033 -3.340483 -1.767925 2.402677 -1.315288 -1.312302 -0.370761 -0.963391 1.361604 -2.250599 -1.135557 1.956460 -3.692807 2.076887 1.918975 -3.610636 -3.247456 -0.691587 0.813959 1.283093 -2.574117 -2.847982 -0.105840 1.757152 -0.531037 0.500392 -2.329823 -3.543928 3.164518 0.236409 -1.684539 0.138819 -1.054979 -1.826610 2.035629 -0.728081 -3.305335 -1.822997 0.561536 -1.196461 1.319107 1.836976 3.572285 -6.041395 1.494236 -6.100838 2.084299 -1.794167 2.653263 3.445963 -2.681160 2.079469 1.639600 2.088796 2.009120 0.440584 2.649256 1.108059 1.012936 1.304462 2.381707 2.882905 -1.813031 -2.959985 -2.066435 -2.965376 1.091602 -1.202206 -4.942279 1.586955 -2.127123 0.829916 -1.292375 -0.326277 -0.278654 3.932195 -5.550054 -1.070662 1.415078 -0.896226 2.217347 1.839802 -0.106500 1.294548 -0.928256 2.426548 -1.180531 0.471488 -0.028565 3.185342 -1.977782 -3.277805 -3.498651 1.809043 1.817469 -3.055175 -3.746465 -4.765714 -1.341582 2.009211 -1.947234 2.632424 5.884756 -2.759456 -3.966409 3.027401 -0.153752 -1.225878 3.467701 1.280861 5.216225 -2.658996 -0.100636 -1.003833 -1.049871 1.638830 2.461448 -1.024444 -2.801760 3.255591 -0.847568 -2.441822 3.389326 -0.574015 -1.695612 -1.243435 0.955702 -1.036760 -0.846981 3.092182 -2.748229 3.175451 -2.084882 5.034264 -2.501214 -2.313652 0.689603 -4.473046 -1.679521 -0.959765 0.509828 -0.399876 3.478011 -3.336432 -2.384305 -0.417406 -1.732248 -1.282038 3.811829 -1.124353 -0.009069 1.165808 -0.563702 3.710084 2.729180 -0.605366 -0.421857 -2.166539 1.419721 2.826597 0.771076 -4.977972 -1.885535 -2.238054 -1.057165 -0.445997 0.245288 3.184278 -1.885637 0.234791 0.573694 -0.964113 0.882488 0.329013 -2.029146 2.129966 -1.149374 1.970891 0.734106 4.603829 2.934618 3.887651 1.159997 1.169822 -0.107215 -2.057106 -0.849168 1.541471 1.975395 0.417610 2.190555 3.236464 1.952952 2.301208 2.890743 0.969840 1.120169 4.084576 -0.446695 4.807207 -3.048117 0.697570 0.226067 0.557469 3.354785 5.046947 -0.465085 -1.891691 1.350295 -1.476269 -1.931947 -2.130414 0.162960 -0.260091 -0.971840 1.720693 3.613585 -0.042443 -1.849200 5.483636 -0.100963 -5.642977 3.999080 1.322245 1.928168 2.297001 -1.280104 1.304506 1.802501 0.665215 1.532872 3.485947 2.690288 -4.497290 -0.912938 0.263389 3.014933 3.063486 1.506125 -6.099337 1.284655 2.074269 3.880614 -0.570268 3.199792 -3.385493 -0.376760 1.239789 -0.337571 0.249735 0.125448 1.665399 -1.071920 0.672395 -2.892139 -0.833437 +PE-benchmarks/word-wrap.cpp__main = 2.516082 -0.113141 0.861840 -2.293004 -0.619475 -0.418826 3.904683 -3.357068 -2.298803 5.394091 1.093028 -2.641840 -1.456961 2.369543 0.048433 -1.141060 1.514224 0.984497 -1.204095 -0.762371 -2.110053 0.473724 -1.091147 -4.039865 1.339004 -0.789790 1.600890 3.491513 -1.687154 2.149263 -0.033021 -1.887435 1.613450 5.961955 2.045892 -0.697787 -2.583829 6.469595 -5.752870 5.457118 -3.886587 -4.211387 8.034422 -0.842823 0.530768 -3.878739 -1.915397 3.384506 1.170699 -4.420641 -1.470257 -0.831145 1.891272 -4.797762 -2.729849 4.997117 -3.594995 -0.326035 2.983678 -4.587473 -5.884310 -1.360171 1.450840 1.394100 -5.794978 -4.176061 0.129832 -1.160836 -0.293174 0.831648 -5.558600 -4.891278 2.869743 1.080872 -0.894722 0.510166 -2.621213 -2.492102 2.103307 2.329992 -2.916000 -2.725778 0.248800 -1.867624 1.432145 1.977977 5.019502 -7.660655 0.849995 -7.498168 2.287518 -3.863376 3.799435 5.050851 -0.912068 4.464279 0.693753 3.510274 -0.731920 0.029507 3.002783 1.380388 2.162722 0.358700 4.045774 4.372275 -3.767746 -6.227603 -3.232936 -1.714586 2.356608 -1.363913 -5.182453 2.858448 -4.401053 -0.666845 -0.684303 0.176088 -1.469016 5.661775 -6.008704 1.256339 2.279887 -1.554041 3.289417 3.124383 0.174668 0.777024 -1.138813 2.184283 0.901767 1.569269 -0.398419 4.483822 -3.281228 -2.672007 -0.539272 1.515331 2.625667 -4.319745 -5.189468 -6.521891 -1.780014 3.722942 -2.940864 2.660457 7.538949 -2.525222 -3.084062 2.511702 0.031178 0.178072 2.176825 1.677559 8.089361 -4.862523 1.555500 0.370898 0.736578 3.033769 6.060264 -2.543638 -4.809879 4.305764 -2.076048 -2.580712 6.951351 -0.149728 -0.130412 1.576192 0.763410 -0.211741 -2.983438 5.786731 -4.653451 4.911892 -2.987787 6.493893 -2.751105 -0.532112 1.438837 -3.846622 -2.417517 -4.777690 1.053111 -1.107515 4.476036 -3.120382 -3.589480 -1.183943 -1.897556 -0.378621 6.552059 -3.615292 -0.988655 -0.098435 -1.887251 3.235758 1.279417 -2.178873 -1.026234 -3.883850 1.799231 2.763960 0.356251 -5.712046 -2.818114 -1.701205 -1.942576 -1.537000 0.720849 3.956086 -3.318655 0.090076 3.092079 0.057080 -1.255761 -0.963326 -4.534160 2.477676 0.492381 1.451093 1.194518 7.297275 3.976880 3.788660 -0.323581 1.083072 -0.736658 -1.907051 -6.678056 2.446589 -0.077052 2.097137 2.676077 3.102332 1.345489 2.631016 3.207111 -1.118134 1.626377 4.567388 1.726185 5.191900 -1.679067 -1.181778 2.668949 -1.056060 4.245893 4.057944 1.080927 -4.531565 2.055768 -2.993628 -4.782579 -0.998481 -0.596493 -0.007528 -1.783485 3.567576 4.070036 -0.401978 -2.163602 8.378902 -0.784221 -9.723875 3.421128 2.123378 3.119992 5.163949 -2.165582 4.696157 3.198550 3.699298 1.966827 3.077022 3.287382 -5.522293 0.729141 0.711733 2.410083 3.940244 -0.703008 -11.381924 0.921592 1.139624 5.746167 -0.216214 5.750658 -3.484638 3.708307 0.335094 0.322829 1.711372 -1.173897 3.423449 -1.245344 0.237121 -7.705636 2.452036 +PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.135420 0.223640 1.546957 -1.568282 -0.699621 -0.640118 3.622595 -2.740801 -1.663500 4.174358 1.107515 -2.326601 -1.666620 1.968499 -0.428732 -0.219967 1.364651 2.359373 -1.167419 -1.116175 -1.731451 0.231083 -0.845410 -2.604010 1.262089 -0.496736 1.732941 3.053067 -1.291933 1.402164 0.393924 -1.373712 1.503201 4.670797 1.326878 -0.110637 -2.330417 5.011280 -4.324037 4.844319 -3.957361 -2.761775 6.503724 -0.652285 0.704896 -4.421201 -1.855198 3.089091 0.420599 -3.865468 -1.519935 -0.679300 1.580815 -4.091148 -2.149138 4.016966 -2.602366 -0.597195 2.685108 -4.641210 -5.280003 -0.543435 1.548854 0.695956 -5.496077 -3.341596 -0.213236 -1.161619 -0.437843 1.032429 -4.246067 -3.970303 1.877269 -0.227956 -0.992399 0.738776 -2.041551 -1.797239 1.633424 2.896655 -2.234985 -2.324786 0.604262 -2.339213 0.895150 1.119432 4.091335 -6.457177 -0.001975 -6.322415 1.671896 -3.070711 3.032237 4.025715 -1.162559 3.805984 0.473003 1.920367 -1.122091 0.812914 2.188935 1.274658 1.979333 0.179687 3.974644 3.184327 -2.854317 -5.723518 -2.945360 -1.802728 2.083798 -0.863858 -4.203591 1.810016 -3.816748 -0.097193 -0.685065 0.314420 -0.578932 5.110157 -4.254854 2.305628 2.459649 -1.264659 2.108728 3.169030 0.348595 0.510715 -0.843090 1.544065 0.245910 1.243481 -0.289038 3.495212 -1.771577 -2.314354 -0.130971 0.558140 1.650882 -2.577881 -3.973688 -5.288356 -1.732639 3.104582 -2.208031 0.392278 6.100740 -2.218224 -2.945065 1.710420 0.167159 -0.154577 1.298696 1.600385 7.226884 -4.029174 1.154800 -0.295876 0.453018 3.002795 5.510162 -2.294807 -4.101097 3.357853 -1.676757 -4.520588 7.174850 -0.444693 0.205011 2.377451 0.901412 0.113365 -2.622391 4.287899 -3.450688 4.356187 -3.300726 5.196087 -2.300387 -0.790551 0.735334 -2.605738 -1.263090 -3.028175 1.016867 -0.924854 4.072096 -2.076268 -3.027780 -1.100834 -2.018014 0.180543 5.802254 -2.991946 -0.850757 -0.297943 -1.858218 1.684560 0.380099 -2.106891 -0.686992 -3.077502 1.259924 2.375232 0.940819 -5.058346 -1.919940 -1.790345 -1.768218 -2.145497 0.696112 3.258492 -2.367419 0.313724 2.503974 -0.675577 -1.500419 -1.197739 -4.007156 1.876789 0.017095 1.175065 1.087739 6.201344 3.661557 3.206411 -0.658932 1.215467 -0.588852 -2.136524 -5.883351 1.988630 -0.157233 1.993240 1.967148 2.035230 1.429959 2.087724 1.980516 -1.848158 2.088545 3.987764 1.672270 4.166753 -1.941080 -0.657390 2.317988 -0.565133 3.187090 3.061832 1.446086 -3.803492 1.432339 -1.787842 -4.227333 -1.651696 -0.883941 0.280111 -1.705123 3.418607 3.777787 -0.574177 -1.509366 7.058146 -0.741944 -8.216536 2.780936 1.038834 2.222312 4.333858 -1.310661 3.609203 2.827612 3.848504 1.141520 2.401163 2.603269 -5.065792 0.040426 0.517746 2.080128 3.821463 -0.776832 -10.791732 0.709941 0.167291 4.938784 -0.791017 5.029065 -2.711089 3.494172 0.417887 -0.399099 0.997671 -0.922194 2.752026 -0.565356 -0.847300 -7.258028 2.257899 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.347883 0.207880 0.476474 -0.476790 -0.514052 -0.030967 0.365219 -0.821144 -0.445106 0.637714 0.300503 -0.629426 -0.749912 0.540687 -0.423425 -0.509057 0.041973 0.454763 -0.282260 -0.588316 -0.408803 0.070544 -0.204690 -0.595827 0.256793 -0.282697 0.334643 0.733023 0.252041 0.116817 0.036898 -0.331598 0.446278 1.326717 0.425187 0.018107 -0.365157 1.497671 -0.350298 0.806963 -1.294898 -0.945955 1.581267 -0.159001 0.137656 -1.358349 -0.510630 0.784300 -0.780370 -0.300002 -0.268356 -0.232819 0.209441 -0.898224 -0.449206 1.073880 -1.234996 0.746080 0.547584 -1.059157 -1.081023 -0.180587 0.168629 0.019405 -0.534708 -0.867802 -0.087943 0.210351 -0.470984 0.401375 -0.885885 -0.858008 1.154752 -0.072734 -0.368010 0.199860 -0.371593 -0.222452 0.400340 0.032776 -0.742159 -0.602868 0.419555 -0.045370 0.461312 0.447390 0.724638 -1.781291 -0.186790 -1.781901 0.535704 -0.828445 0.845242 0.969962 -0.733014 0.960964 0.261541 -0.195814 -0.035655 0.367314 0.755133 0.124288 0.476966 0.197119 0.769175 0.550000 -0.396654 -1.117520 -0.540244 -0.628823 0.151710 -0.010816 -1.517473 0.360461 -0.989837 0.504134 -0.246421 0.142148 -0.026999 0.819141 -1.229675 0.105854 0.497707 -0.315365 0.826969 0.758700 0.055131 0.300713 -0.253349 0.652091 -0.069469 0.220439 -0.165908 0.844024 0.057019 -1.438144 -0.921118 0.184272 0.507010 -0.631684 -1.178727 -1.076670 -0.502508 0.522318 -0.535357 0.242445 1.747966 -0.577664 -0.992215 0.742161 -0.053858 0.271408 0.908995 0.479950 1.874994 -0.934406 0.196645 -0.056608 -0.052378 0.660702 0.504333 -0.577474 -0.992845 0.812620 -0.035173 -0.837288 1.122240 -0.276447 -0.193576 0.379320 0.062136 -0.145643 -0.644760 1.045000 -0.251086 1.272774 -0.583565 1.557863 -0.770129 -0.862684 0.166720 -0.594918 -0.225124 -0.228119 0.272514 -0.210763 0.912611 -0.915826 -0.890242 -0.136713 -0.383207 -0.125870 1.390664 0.057625 -0.152437 0.079609 -0.306874 0.532289 0.454220 -0.525900 0.030736 -0.937655 0.316641 0.718440 0.365375 -1.637205 -0.294297 -0.395956 -0.376730 -0.052385 0.166659 0.766064 -0.266457 0.052048 0.398664 -0.344604 0.110400 -0.095179 -0.404751 0.477823 -0.190052 0.142350 0.238352 1.510324 1.162486 0.818731 -0.033567 0.400331 -0.007501 -0.638612 -0.433915 0.315332 0.269159 0.527216 0.516941 0.579024 0.455547 0.488047 0.657378 -0.037833 0.269083 1.101641 0.402200 1.392874 -1.020525 -0.020175 0.255964 -0.086257 0.958149 1.206338 -0.194034 -0.799163 0.435079 -0.161898 -0.453681 -0.944241 -0.265096 -0.009047 -0.534024 1.069111 0.986879 -0.164303 -0.388220 1.806114 -0.093796 -1.888963 1.145962 0.370958 0.416999 0.566933 -0.348128 0.288750 0.866767 0.419694 0.026853 0.724107 0.804636 -1.342518 -0.213675 0.042996 0.819724 0.527613 0.088657 -2.193853 0.001846 0.484929 1.319621 0.020554 0.854531 -0.719586 0.021856 0.167738 -0.098309 0.088522 0.008317 0.542407 -0.382037 -0.093683 -1.063016 0.027280 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = 2.991549 0.081851 2.968232 -6.040437 -1.994769 -1.238040 5.932222 -5.835825 -2.873134 10.300492 2.219002 -4.092283 -1.598107 5.370462 -0.717202 -2.527509 2.312964 -0.676954 -2.101176 -1.487392 -1.502766 2.409286 -1.607078 -6.339886 2.203443 -1.324793 3.462224 5.425055 -3.061518 2.130618 0.402367 -3.803099 2.666639 9.862265 2.797996 0.729939 -5.374414 9.089813 -9.057667 9.530745 -9.824726 -8.270862 12.217373 -1.543793 1.215168 -9.725835 -2.535223 5.364515 2.295850 -7.450005 -2.431227 -0.938809 3.715882 -8.536156 -4.115044 6.273313 -5.585028 -0.740638 5.055809 -7.890307 -9.014962 -2.241830 3.132729 2.986227 -9.983905 -6.685930 0.328634 -2.190298 -1.624995 2.089803 -6.970957 -7.316578 3.856526 1.437972 -1.763796 1.242429 -3.967041 -6.371671 4.534793 1.378663 -4.379051 -4.969606 0.511398 -3.231400 1.854527 2.035036 8.182934 -12.839916 2.039491 -11.329895 4.183302 -5.127631 5.725093 7.690805 -2.468225 6.558805 0.886812 6.831380 0.609512 -1.272085 4.789092 4.178116 5.350363 0.677679 7.877593 7.510078 -6.237695 -10.312654 -5.313944 -4.660755 4.429236 -4.426602 -9.691362 4.206271 -5.447047 -3.727272 -1.118533 -1.945953 -1.744458 10.541370 -11.614724 0.661026 4.642055 -2.277282 2.863024 4.673458 0.229329 0.679201 -1.427306 3.956734 0.536812 3.357271 0.367106 7.673507 -6.760331 -4.275694 0.117827 1.869671 2.826437 -6.804581 -8.147848 -12.378158 -2.965925 5.627088 -4.302994 3.667927 11.184031 -3.978940 -8.254739 4.412513 1.639127 -3.221547 2.771666 2.363326 10.816580 -7.230411 1.525377 -1.012070 0.637411 5.895627 12.785663 -3.525662 -8.220596 7.637847 -5.938374 -8.721733 9.112247 0.015585 0.064030 0.067928 1.264158 -3.281512 -3.633855 7.912276 -8.879264 8.868286 -7.210654 9.799059 -5.317052 -1.552660 1.743638 -10.338795 -4.067106 -7.395933 0.612668 -0.304819 7.872806 -5.761135 -5.570178 -3.263183 -3.661790 -0.739962 10.356560 -11.800380 -1.373357 -0.482931 -2.106489 7.393649 2.514810 -3.899173 -1.184947 -4.294508 3.502103 5.993578 3.557902 -9.813649 -4.710445 -4.060327 -3.631495 -2.974138 0.850743 7.136136 -4.625410 0.093130 5.345183 -1.138024 -3.408341 -2.373628 -9.481175 3.595205 -0.339525 3.997204 0.957005 11.680191 5.257451 6.159272 -0.746561 0.646366 -0.943661 -4.506941 -10.908899 3.551360 0.670250 -0.052091 4.530295 6.312287 3.509795 4.446908 7.481807 1.418770 1.117784 8.277052 0.733595 7.089168 -2.553469 -0.924118 4.305203 -0.490442 6.607123 7.642795 3.877218 -6.469339 3.928806 -3.956736 -7.602870 -1.752859 -1.571399 -0.422873 -2.187873 5.496863 6.695427 -1.982857 -2.621972 13.028659 -0.768345 -14.193652 5.703918 2.866869 5.328611 7.093351 -4.065320 6.233169 4.939072 4.343804 3.984862 4.399709 5.133315 -8.549930 -1.118927 1.375740 4.687900 9.372103 0.262129 -16.925536 1.761311 1.683355 9.938185 -1.096950 10.969940 -5.890699 5.758185 0.647271 1.133738 2.188120 -1.857399 4.602493 -1.789119 -1.408800 -12.280006 3.665891 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.297402 0.359529 1.450889 -3.012561 -1.051359 -0.765459 4.788915 -3.011570 -1.863503 6.206836 0.965100 -2.352389 -2.214512 3.484340 -0.364056 -0.978049 1.399726 -0.831965 -1.290217 -0.374947 -1.374032 1.178673 -0.992661 -3.560106 1.411495 -0.056768 1.797880 3.407334 -1.374215 1.226771 -0.178140 -1.976933 1.558380 5.546126 1.636673 -0.433411 -2.805261 6.818910 -7.167899 6.077649 -5.963739 -4.883900 8.011560 -0.883570 0.048060 -7.023309 -1.941497 3.536868 1.316320 -4.521736 -1.190747 -0.438834 1.608078 -4.859188 -2.429845 5.020366 -4.791728 0.110988 3.053244 -4.067580 -5.580452 -1.341601 2.102044 1.378876 -6.331924 -3.906246 0.084419 -2.924878 -1.093213 1.073681 -4.850338 -4.083794 1.940575 0.898601 -1.030699 0.629988 -2.593732 -3.582363 2.484602 0.576296 -2.901555 -2.598263 0.121771 -2.193285 1.341943 1.378143 4.619270 -7.896273 0.905349 -7.486538 1.925340 -4.240986 3.135387 4.885263 -1.126536 4.258378 0.136634 3.174081 0.236333 -0.757506 2.593430 2.707739 3.352014 0.198124 4.567314 5.214074 -3.850684 -6.240849 -3.582949 -2.237875 2.229615 -1.776973 -6.574197 2.520895 -3.473748 -1.639958 -0.163255 -0.929862 -1.450880 6.087580 -6.317691 1.720417 2.185661 -1.274603 2.255925 4.069435 0.057221 0.435248 -1.017735 2.146599 0.886049 3.000797 0.110495 4.182352 -4.142965 -3.263645 0.090701 1.079977 1.930789 -3.626390 -4.688586 -8.220271 -1.391886 3.098382 -2.695785 1.634767 7.801087 -2.547197 -4.839644 2.521226 0.375619 -0.475481 1.631464 1.063946 7.905094 -4.187964 1.108715 0.266272 0.526643 2.809995 8.240129 -2.159751 -4.594904 3.914698 -3.062071 -6.140911 6.163785 0.469293 0.129352 1.381030 0.618966 -1.470561 -3.321942 5.694076 -5.544594 5.338021 -4.106568 5.460502 -2.727441 -0.492961 1.296237 -6.154741 -1.825092 -5.132563 -0.132076 -0.511672 4.662212 -3.329123 -2.987715 -2.169868 -1.925552 -0.668105 6.517502 -7.183252 -0.950925 -0.394347 -1.028455 3.864062 1.319086 -2.625606 -0.520075 -3.778307 1.873227 3.478665 1.250874 -7.204784 -2.565457 -2.181454 -2.100915 -1.261661 0.365315 3.627428 -2.992415 -0.190956 3.732019 -0.410503 -1.797378 -1.226209 -5.716911 1.920045 -0.314641 2.654107 1.280490 7.351221 3.110830 3.885930 -0.516203 1.045084 -0.474090 -2.704678 -6.901913 1.765681 -0.140047 0.702115 2.669346 3.477130 1.843371 2.194487 3.453012 0.189467 0.231009 4.610816 1.968165 5.287231 -1.478575 -1.781942 2.661119 -0.702213 3.467992 4.395123 1.742660 -4.044948 2.213725 -2.656022 -4.829246 -1.232142 -0.839890 -0.434531 -1.528783 4.391305 4.063528 -1.075555 -1.287094 8.235518 -1.009949 -10.293343 3.023831 1.666582 3.097429 4.897283 -1.972980 3.958951 3.226212 2.966771 2.668294 3.084453 2.945675 -5.089477 -0.130153 0.767242 2.503428 5.525675 -0.470513 -12.934195 0.970216 0.757624 6.185453 -0.241737 7.663362 -3.374576 3.769562 0.304256 0.455395 1.495869 -1.328485 3.466964 -0.606467 -0.727200 -8.552679 2.594011 +PE-benchmarks/binary-insertion-sort.cpp__main = 1.145818 -0.016419 0.920566 -1.768789 -0.707320 -0.313015 1.750447 -1.493500 -0.844931 2.532888 0.376313 -1.398817 -1.362792 1.873204 -0.330834 -1.112781 0.468333 -0.917206 -0.641558 -0.321672 -0.800728 0.681738 -0.510505 -1.728203 0.875305 -0.220793 0.759616 1.897785 -0.048092 0.228163 -0.098822 -0.996844 0.678175 3.238124 0.864281 -0.181476 -0.942232 3.906572 -2.665343 3.013116 -2.978516 -2.612301 4.194835 -0.520382 -0.259168 -3.025204 -0.757175 1.964437 -0.816483 -1.593305 -0.308769 -0.125261 0.563435 -2.506378 -1.109213 2.608427 -3.212798 1.043876 1.429289 -1.591301 -2.574680 -0.909066 0.617695 0.504112 -2.408691 -2.117251 0.132112 -0.948927 -1.244236 0.595847 -2.291381 -1.877851 1.964331 0.659857 -0.620932 0.551275 -0.983431 -1.469356 1.384823 -0.457887 -1.717390 -1.420457 0.256346 -1.110522 1.493403 0.724072 1.871229 -4.299924 0.455747 -4.009434 1.137833 -2.380681 1.733090 2.837921 -1.185901 2.474476 0.128663 1.191183 0.131388 -0.323283 1.733244 1.100665 1.563780 0.478997 2.206365 2.230647 -1.814510 -2.943349 -1.732523 -1.290475 0.664728 -0.930108 -3.657533 1.281724 -1.903977 -0.080661 0.029532 -0.072877 -0.994607 2.525101 -3.619923 0.320862 0.878775 -0.717975 1.518567 1.996909 -0.109907 0.226002 -0.616883 1.645029 0.337836 1.290274 -0.171049 2.206303 -1.357251 -1.818088 -0.907075 0.441119 1.148079 -1.831019 -2.876577 -3.933074 -0.975120 1.166208 -1.419661 1.904541 4.234323 -1.112682 -2.557380 1.934172 -0.159944 0.568735 1.522661 0.678326 3.771847 -2.028862 0.311916 -0.045966 0.102881 1.315237 2.873435 -0.982800 -2.320811 2.062697 -1.114202 -1.750678 2.485925 0.212896 -0.208081 -0.014046 0.092164 -1.164898 -1.998829 3.186495 -2.166368 2.946516 -1.592705 3.527621 -1.490446 -1.048861 0.889948 -2.953308 -0.685667 -2.462569 -0.226343 -0.384915 2.007862 -2.226501 -1.881912 -0.952823 -0.544527 -0.623979 3.230315 -2.053369 -0.392890 -0.124155 -0.247876 2.423850 1.151008 -1.476683 -0.024827 -2.357594 1.015437 1.889734 0.557946 -3.540306 -0.929475 -0.751879 -1.106437 0.290078 0.227510 1.718968 -1.634782 -0.272009 1.659977 -0.018994 -0.377452 -0.329567 -3.201996 1.024732 0.001484 0.843071 1.059213 3.684011 2.102317 1.754707 -0.109409 0.682536 -0.300262 -1.076297 -2.642046 0.594487 0.134172 0.733945 1.452859 2.077020 1.213848 1.069344 1.936940 0.848439 -0.413043 2.543439 0.972256 2.999733 -1.091211 -0.855242 1.110889 -0.276601 2.156775 2.709703 -0.124969 -1.829212 1.548393 -0.735065 -1.812135 -1.266558 -0.532741 -0.511535 -0.546314 2.095793 1.540340 -0.684066 -0.490212 4.438644 -0.518493 -5.013742 1.951091 1.105602 1.624939 1.724630 -0.909606 1.428621 1.898808 0.294276 1.227659 1.530332 1.578523 -2.614712 0.144041 0.357947 1.585070 2.101701 0.221282 -5.439134 0.061180 0.682810 3.346435 0.480820 3.198981 -1.541218 0.754847 0.234025 0.025545 0.574230 -0.393568 1.672359 -0.729922 0.053998 -3.561473 0.400893 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = 2.302462 0.659314 3.579987 -7.137336 -2.644877 -1.579003 6.584246 -6.461635 -2.758983 10.075740 2.323397 -4.985269 -2.389292 4.975607 -1.425223 -2.370836 2.710002 1.003857 -2.589827 -2.206530 -2.019934 1.878894 -1.685661 -5.659974 1.908542 -1.353188 4.200586 5.327394 -2.008695 0.923546 0.414240 -3.742477 3.016028 10.681396 2.950155 0.646011 -6.541671 8.961156 -5.445623 9.534395 -11.661769 -5.729216 11.412725 -1.536595 1.890732 -13.536185 -3.431739 6.241425 3.026488 -7.910730 -3.494543 -1.367397 3.802119 -9.302072 -4.923295 7.224836 -4.535715 -0.705307 6.086367 -9.073000 -9.198181 -1.021481 4.852759 3.397496 -10.583189 -7.358966 0.063697 -2.223363 -2.333631 2.716112 -7.731158 -8.592540 3.196227 1.396912 -3.221005 1.485590 -4.820346 -6.507884 4.277094 1.865276 -4.071807 -5.454236 1.419205 -4.072170 1.661314 0.994898 8.022616 -13.429622 1.670899 -12.014479 3.507492 -5.695190 6.467174 7.708488 -1.015682 6.823311 0.372675 3.722943 0.296281 -0.013612 4.497023 3.667136 5.976894 0.071129 8.605899 6.482747 -5.438003 -11.012879 -4.408924 -5.301532 3.997178 -3.531940 -9.494243 4.563414 -6.757525 -2.470980 -1.585795 -0.709484 -1.402297 10.907813 -10.248490 -0.120286 5.466804 -2.815357 3.069488 6.760515 0.690192 1.010032 -1.798601 3.678718 0.630610 3.501290 0.286737 7.975418 -5.354619 -4.610763 -0.452354 1.348404 3.154619 -5.831903 -8.767045 -11.302199 -4.681054 4.159504 -4.799038 3.601290 11.528136 -4.229412 -9.131599 4.043400 1.598632 -2.771346 2.786943 2.853196 13.060744 -8.637909 2.278821 -1.958729 1.113299 6.739479 14.261606 -4.638358 -8.834426 8.233905 -6.789159 -10.855416 9.927369 -0.229751 0.526335 3.566927 1.382714 -2.168615 -5.130260 7.600420 -8.715772 10.722874 -7.492828 10.700524 -6.098420 -2.230380 1.465008 -7.842538 -3.278009 -5.301618 1.817466 -0.695891 9.124869 -5.148421 -6.193050 -1.906252 -4.927824 -0.188027 11.536724 -10.617639 -1.876430 -0.749851 -3.173724 8.262695 2.261756 -4.671332 -0.941188 -4.588693 4.284319 5.728451 4.772903 -9.372733 -5.259946 -4.721736 -4.230915 -3.760502 1.059268 7.738671 -4.417579 0.307355 5.477011 -1.816017 -3.223534 -3.113683 -10.213989 4.088227 -1.671366 3.668603 0.009007 12.767067 6.130164 6.630967 -1.216681 0.031922 -1.236630 -5.413815 -11.110520 3.082165 0.650355 -0.215865 4.790488 5.429642 3.439352 4.562595 7.953385 -0.556341 2.024638 8.829537 -0.036062 7.157703 -3.878737 -0.868493 4.649578 -1.461595 6.757942 8.889422 4.775765 -7.311166 4.252699 -3.356406 -8.301203 -4.987265 -1.963537 0.273770 -2.533174 6.819330 8.024512 -2.226816 -3.076749 13.998086 -0.600803 -14.818998 6.524727 2.389404 4.892081 7.277402 -3.835355 7.184233 5.419928 5.419923 2.029493 4.585750 5.300354 -10.030840 -2.604968 1.479390 4.704712 8.309789 -0.314424 -19.538339 0.285201 1.456736 11.311526 -1.462713 12.093972 -6.300908 6.306983 2.238875 1.729632 1.612064 -2.275487 4.767327 -2.069960 -2.868939 -12.731359 4.777339 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 0.761136 0.031690 1.117006 -2.145086 -1.459492 -0.397399 1.590775 -2.699195 -1.413266 3.145518 1.395154 -2.015273 -0.232407 2.546229 -0.455198 -1.313945 0.528640 1.256912 -0.968454 -0.891252 -0.516469 1.015565 -0.697273 -2.369734 1.002381 -0.659722 1.061413 2.254783 -0.849206 1.121679 0.237762 -1.230033 1.034914 4.133081 1.055847 0.579931 -1.950803 4.058397 -3.384230 3.458255 -4.073062 -3.059323 5.076246 -0.580783 0.598269 -3.954604 -2.353981 2.187043 0.402622 -2.835696 -0.966314 -0.457917 1.317059 -3.175503 -1.320781 2.544232 -2.579470 -0.024946 2.267474 -3.818323 -3.808531 -0.361597 0.915013 0.733734 -3.784101 -2.841119 -0.162449 0.047782 0.156891 0.691848 -2.644423 -3.670517 2.651011 0.248333 -0.668339 0.849346 -1.386852 -2.516820 2.035691 1.092562 -2.141550 -2.055238 0.801675 -1.170982 0.745345 1.273673 3.639491 -5.552069 0.594768 -5.137217 2.061794 -2.285182 2.475434 3.216372 -1.848916 2.658870 1.026150 2.439622 0.823933 0.756137 2.296518 1.347276 1.542847 0.532696 2.964354 2.788452 -2.299979 -4.033880 -2.417740 -2.394296 1.821884 -1.824822 -4.820574 1.900389 -2.352128 -0.985431 -0.994052 -0.527490 0.307516 4.682086 -4.210175 0.922163 2.265123 -0.763312 1.081279 2.177908 0.050122 0.331321 -1.161705 1.555229 -0.375400 1.047587 0.074945 3.180954 -2.475404 -2.672464 -0.816428 0.913230 1.060243 -3.036437 -3.212268 -4.690665 -1.071649 2.425961 -1.959129 1.064009 5.067037 -2.299075 -3.588234 2.090800 1.728519 -1.077889 1.660925 1.269911 5.276347 -3.067052 0.413846 -0.668309 -0.275650 2.576610 3.486757 -1.325475 -3.247777 3.227172 -1.618119 -4.809722 5.771698 -0.579269 -0.370066 0.807928 1.095315 -0.936359 -1.480184 3.452585 -2.176878 3.961380 -2.943226 4.184059 -2.406608 -1.134586 0.713496 -3.791616 -1.788596 -2.447449 0.534581 -0.581743 3.361630 -2.426718 -2.315818 -0.893524 -2.044822 -0.443789 4.074750 -3.249869 -0.265707 0.186662 -1.102092 1.783454 1.421991 -1.107595 -0.412731 -2.267387 1.417284 2.609150 1.211081 -4.676004 -1.756597 -2.040186 -1.188102 -1.773345 0.363834 3.135871 -1.822036 0.214072 1.524627 -0.772922 -0.618844 -0.879983 -2.881295 1.588674 -0.776426 1.955935 0.529188 4.821317 3.243628 3.085847 -0.000519 0.816867 0.050387 -2.100129 -3.538814 1.700512 0.429478 0.788443 2.004055 2.844745 1.675550 2.005359 2.779192 0.044439 1.629306 3.984140 0.629738 3.971316 -1.213760 -0.234275 1.331063 0.116853 3.220327 3.786841 1.560437 -2.371299 1.286340 -1.345764 -3.093390 -1.655401 -0.404812 0.216466 -1.701562 2.590363 2.752924 -0.486663 -1.443574 5.548954 -0.068567 -5.965312 2.890162 0.928998 2.093558 2.609116 -1.234557 2.469582 2.271799 1.826570 1.302559 2.214763 2.596246 -4.404043 -0.961641 0.472256 2.299487 3.850908 0.481318 -7.034439 1.632495 0.985349 3.935454 -1.106524 3.808592 -2.760033 1.759309 0.456121 0.272092 0.471047 -0.515655 1.547454 -0.784600 -0.508380 -4.947147 0.440753 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = 1.300195 -0.446076 1.805216 -2.612792 -1.904727 -0.553629 2.986084 -3.130414 -1.557226 5.116814 1.317411 -2.611696 -0.265327 3.870724 -0.329208 -1.066726 0.600340 0.565806 -1.043333 -0.249993 -1.135820 1.854151 -1.112979 -2.766023 1.614397 -0.605441 1.239617 3.277251 -2.006641 1.518879 0.654143 -2.141576 1.121256 5.496153 1.426460 0.433543 -2.204381 6.202866 -6.037271 6.345066 -5.040267 -4.434050 7.293300 -0.931123 0.417060 -4.301943 -2.484406 3.345921 0.800223 -4.471550 -0.834957 -0.181039 1.870352 -4.275022 -1.613839 3.312993 -3.987954 -0.462784 2.979366 -5.014211 -5.450930 -0.888443 0.681826 1.311295 -6.177053 -3.731405 -0.305795 -0.686178 -0.008067 0.410357 -3.299861 -4.376541 3.429949 0.447703 -1.145379 1.133461 -1.460949 -2.877084 3.037121 1.134194 -3.232530 -2.749444 0.055959 -3.054547 1.509917 1.540168 5.067774 -7.539517 1.787694 -6.952099 2.830900 -3.329015 2.878734 4.918173 -1.920636 4.201862 1.337204 4.165334 0.886710 0.393281 2.963215 2.053270 2.207877 1.481630 4.070531 4.542056 -3.935413 -5.774438 -4.253349 -3.067825 2.946861 -2.372472 -5.815361 2.396345 -2.357115 -0.530274 -0.577135 -0.387723 -0.498290 6.709604 -6.303781 2.517534 2.921755 -1.225424 1.258233 2.986568 -0.102951 0.023424 -1.481531 2.324851 -0.855127 1.914998 0.319695 4.410910 -3.934224 -1.867882 -0.324302 1.209720 1.217447 -3.892755 -4.215171 -7.440301 -1.193970 4.035441 -2.854174 2.560519 7.519708 -3.150234 -4.417171 3.122825 1.721145 -1.293047 1.390229 1.633736 6.558182 -3.395741 -0.375209 -1.339228 -0.772123 3.191990 6.763854 -1.016963 -4.264259 4.511898 -2.233930 -5.786686 8.517554 -0.287950 -0.824336 0.479971 1.404307 -1.433965 -2.228020 5.103618 -3.919540 4.708050 -3.935863 6.174226 -2.351685 -0.719515 1.069047 -5.773294 -2.252918 -4.813184 0.237799 -0.438481 4.031957 -3.296985 -2.919723 -1.613947 -2.632303 -1.056163 5.385857 -5.340721 -0.239534 0.368241 -1.214816 3.767801 1.844191 -1.465941 -1.145836 -3.426965 1.810126 2.808861 0.709883 -6.036843 -2.465476 -2.076863 -1.773880 -1.527990 0.429730 3.828013 -3.450669 0.431782 2.348111 -0.742195 -1.561133 -0.872349 -5.384051 1.841436 0.011687 3.279936 1.403877 6.230437 4.227775 4.188533 0.367399 2.180889 -0.895833 -1.793420 -5.782951 2.397747 0.481332 0.942469 2.866194 4.264687 2.547991 2.723633 3.516911 0.379593 1.743416 5.055846 0.708399 5.413321 -1.479640 -0.981935 2.144213 0.818664 4.232394 4.491162 1.429203 -2.960055 2.133408 -2.188372 -4.708040 -0.781919 -0.015384 -0.218950 -1.259717 3.325903 3.583685 -0.475325 -1.503176 7.552056 -0.783002 -8.676309 3.197826 1.586710 3.430051 3.841108 -1.171835 3.944458 2.914404 2.343354 2.587908 3.224306 3.161335 -5.871415 -0.481922 0.793688 2.581346 5.852038 1.281807 -10.672958 1.196196 0.731049 5.152144 -1.726614 6.067616 -3.655774 2.359871 0.929575 -0.116345 0.779843 -0.539974 2.287993 -0.577378 0.315670 -7.571399 0.801866 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.820363 0.195258 1.152280 -2.275733 -1.295826 -0.143624 1.082321 -2.011626 -0.704998 1.967469 0.851220 -1.553675 -0.983715 1.746727 -0.754506 -1.222900 0.616383 0.074313 -0.606169 -0.763766 -0.624619 0.563558 -0.577241 -1.371199 0.459801 -0.494261 0.930789 1.588464 0.418670 -0.148308 -0.395332 -1.000889 0.650679 3.413648 1.053488 -0.108149 -1.219198 3.401753 -0.737507 2.345929 -3.452583 -1.579133 3.151751 -0.457047 0.218125 -4.017638 -1.436891 1.828982 -0.512231 -1.327383 -0.426476 -0.592049 0.875138 -2.287018 -1.091136 2.357920 -2.319456 0.953406 1.694160 -1.969973 -2.072886 -0.541821 1.045982 0.662876 -2.155904 -2.155240 0.277440 0.001467 -1.119973 0.770266 -2.169045 -2.582798 2.065321 0.543693 -1.192178 0.416152 -0.955889 -2.006954 1.303774 -0.201715 -1.774925 -1.426931 0.543710 -0.885712 1.378731 0.114106 1.924263 -4.273398 0.342555 -4.118736 0.980463 -2.162247 2.016196 2.604706 -1.270400 1.848861 0.347472 0.549748 0.407747 0.328815 1.810052 0.905343 1.326088 0.133748 2.416979 1.490335 -1.082329 -2.614456 -1.059804 -1.793356 0.440347 -0.723945 -3.684020 1.267480 -2.106402 0.059499 -0.673399 0.158880 -0.426564 2.665384 -2.803492 -0.491619 1.271319 -0.878440 1.344297 2.373881 -0.029823 0.526563 -0.846061 1.661820 -0.054169 0.997331 -0.339976 2.185127 -0.956145 -2.438551 -1.608385 0.353025 1.240556 -1.719208 -3.102722 -3.015513 -1.422678 0.591241 -1.357912 1.623876 3.902001 -1.355850 -2.844133 1.894327 0.427875 -0.039892 1.933499 0.839729 4.088808 -2.413172 0.586726 -0.711744 0.048651 1.261743 2.246096 -1.268302 -2.247519 2.169321 -1.384985 -2.720660 2.908301 -0.134292 -0.350011 0.940285 0.177991 -0.821599 -2.000405 2.728737 -1.499460 3.216389 -1.400435 3.737578 -1.823244 -1.610329 0.633924 -1.539169 -0.493635 -1.088433 0.388278 -0.164224 2.554800 -1.833726 -2.107104 -0.296069 -1.074682 -0.361008 3.126441 -1.025364 -0.393152 0.083191 -0.557226 2.241214 1.533955 -1.254026 0.208576 -1.854739 1.304881 1.950043 1.010231 -3.055105 -1.050063 -1.295654 -1.087662 -0.535272 0.336546 2.116760 -1.332291 -0.367458 1.137204 -0.464899 0.023394 -0.329015 -2.945506 1.307104 -0.785610 0.671716 0.335336 3.552132 2.303785 2.088594 0.121224 -0.029072 -0.192575 -1.330747 -1.966974 0.493937 0.524730 0.399865 1.384872 1.803886 1.217268 1.224365 2.182250 0.372264 0.469251 2.696117 0.411450 2.854269 -1.363993 -0.216472 0.810131 -0.578020 2.364837 3.487929 0.486761 -1.663068 1.340175 -0.259795 -1.700432 -2.657002 -0.562739 -0.108128 -0.880433 1.977306 1.937621 -0.619268 -0.959446 4.258376 -0.158323 -4.316126 2.313651 0.804847 1.271679 1.654634 -0.890499 1.336018 1.694556 0.458587 0.761874 1.570466 1.785464 -2.779929 -0.933114 0.309449 1.659694 1.520405 0.401703 -4.887295 0.234425 0.985872 3.437744 0.269390 2.804809 -1.809071 0.667560 0.755885 0.146377 0.215251 -0.355295 1.438769 -1.208108 -0.563177 -2.858353 0.307898 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = 0.029498 -0.291471 0.373654 -0.703349 -0.734100 -0.002555 0.231887 -0.500421 -0.220910 0.166706 0.414805 -0.435952 -0.230410 1.066832 -0.022729 -0.681756 0.044345 0.264016 -0.111805 0.097167 -0.153916 0.604224 -0.264530 -0.215386 0.466234 -0.200332 -0.160238 0.722027 0.190829 -0.077669 -0.041169 -0.418023 -0.030949 1.169516 0.156648 0.273473 -0.062756 1.748950 -0.726136 1.234615 -0.916653 -0.824739 1.284509 -0.225372 -0.183598 -0.822662 -0.925244 0.574250 -0.534811 -0.526853 0.317380 -0.010569 0.258698 -0.557551 0.180797 0.696709 -1.256554 0.259835 0.582486 -0.667541 -0.558628 -0.229095 -0.414827 -0.151295 -0.823606 -0.696861 -0.047424 0.183278 -0.095187 -0.089475 -0.263178 -0.902479 1.615288 0.238470 -0.342847 0.448778 0.194578 -0.723682 0.718538 -0.018151 -1.040526 -0.486930 0.073902 -0.368492 0.814835 0.123202 0.897842 -1.646059 0.275263 -1.612676 0.668329 -0.942226 0.619700 1.268891 -1.007316 0.816082 0.612977 0.596186 0.356941 0.328779 0.991611 0.388159 0.087363 0.514381 0.709646 0.553622 -0.608906 -0.839164 -0.879773 -0.858676 0.363445 -0.494416 -1.720950 0.376973 -0.245995 0.323155 -0.142938 0.154189 0.114456 1.052110 -0.972311 0.654521 0.637126 -0.287632 0.227564 0.864629 -0.129677 -0.187085 -0.593230 0.817271 -0.604179 0.541840 -0.218475 0.849455 -0.380164 -0.802141 -0.560730 -0.006236 0.127790 -0.846208 -0.978170 -1.224736 -0.137486 0.718565 -0.556120 0.592172 1.929113 -0.933083 -0.929035 1.136378 0.666404 0.192922 0.561270 0.388625 1.210647 -0.425651 -0.367760 -0.568200 -0.490725 0.340134 0.333733 0.165474 -0.679251 0.764183 -0.129440 -1.394710 2.244333 -0.266832 -0.505027 0.057641 0.243850 -0.531724 -0.679552 1.286240 -0.033664 1.059478 -0.386046 1.477195 -0.349080 -0.620508 0.318814 -0.603446 -0.294672 -0.988300 -0.096821 0.106874 0.510659 -0.818733 -0.667134 -0.322005 -0.444570 -0.456569 0.662776 -0.049065 0.087499 0.249491 0.067756 0.470997 0.924585 -0.019614 -0.084108 -0.990512 0.439258 0.465864 -0.222315 -1.290137 -0.062231 -0.291848 -0.246739 -0.027677 0.053466 0.616269 -0.579846 -0.134735 0.090195 -0.200157 0.091615 0.101914 -1.081354 0.223942 0.020838 0.510093 0.530998 0.934688 1.334192 0.982870 0.379736 0.594227 -0.080782 -0.027962 -0.566775 0.294170 0.083212 0.571208 0.601511 0.933903 0.838475 0.493928 0.743022 0.457143 0.598349 1.116830 0.469322 1.675277 0.046522 -0.431940 0.258821 0.219935 1.072222 1.310888 -0.117926 0.068522 0.567436 0.164352 -0.574590 -0.767042 0.180488 -0.123511 -0.497558 0.862580 0.303625 -0.052250 -0.291387 1.427741 -0.235054 -1.683409 0.746614 0.297457 0.752744 0.389892 0.180811 0.395132 0.655313 -0.266379 0.738888 0.721412 0.828376 -1.136892 -0.272385 0.091293 0.536663 0.946993 0.785118 -1.444658 0.347891 0.313830 0.958598 -0.154826 0.667905 -0.583361 -0.202143 0.236476 -0.329913 -0.116160 0.016120 0.139932 -0.304602 0.064400 -1.178753 -0.568766 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = 5.173533 -0.171959 6.031043 -8.965319 -10.127869 -0.162798 4.348115 -10.837826 -5.194184 16.322247 4.652553 -7.698825 -1.580058 13.601850 -3.170393 -5.403506 0.207123 0.710701 -2.068763 -3.000522 -3.950488 6.203572 -4.318703 -7.540768 4.106925 -2.798556 2.889572 8.524371 -3.252984 3.578061 0.271584 -7.227468 2.508492 18.037727 6.034900 -0.842598 -5.193023 23.171262 -15.581305 15.773943 -16.748168 -17.135909 20.659412 -2.828211 2.450951 -11.683796 -7.464250 10.447742 -0.990611 -9.132930 -0.017581 -1.430838 5.728810 -10.876090 -3.713251 8.473884 -15.074918 4.208473 8.922078 -13.589789 -14.324997 -4.087500 0.990998 4.145710 -15.570615 -11.289544 0.185484 2.489326 -0.833155 0.631576 -9.146295 -13.740390 12.939609 2.030762 -4.343488 2.703896 -2.976363 -9.848744 9.715967 -0.926266 -14.606717 -7.680861 0.464593 -8.435282 6.785541 5.668975 16.247762 -25.125834 6.712355 -25.438151 8.372193 -10.024819 9.444794 16.758057 -9.838160 11.379349 6.010804 12.898088 6.573712 0.881608 10.929372 6.634092 4.971026 5.915710 10.987388 14.280826 -10.404358 -14.506367 -12.115709 -10.568034 6.221237 -5.954850 -18.965080 7.700788 -6.315767 0.615771 -3.346589 -1.080473 -2.369595 19.375792 -20.965038 2.169146 7.600004 -3.932650 6.103462 8.786036 -1.310235 1.941687 -4.970501 9.247654 -4.443682 5.274318 -0.203253 13.744440 -10.813217 -9.184566 -8.878411 5.116313 5.716489 -12.974828 -14.769506 -22.640951 -3.652892 11.017095 -8.939857 10.077654 26.421514 -12.635914 -14.685836 12.358115 3.114181 -3.511995 9.540574 4.996266 19.654251 -9.416592 -1.779762 -4.222801 -4.077025 6.782766 15.030991 -2.110509 -11.513171 13.430960 -4.278346 -12.972820 21.918345 -0.625163 -5.503591 -3.071045 4.527686 -5.419103 -6.225432 15.776529 -10.711171 12.700103 -8.801100 20.507158 -7.942131 -5.729576 3.720507 -17.412445 -5.664121 -11.524724 0.785491 -0.109885 12.680607 -11.662237 -9.669779 -3.788406 -7.331026 -5.094010 14.656312 -9.454320 0.003667 3.251645 -1.672741 12.515294 10.777176 -2.759611 -2.435307 -10.918159 6.037571 9.286576 0.751068 -20.579650 -7.220538 -6.555458 -5.035794 -2.522890 1.381250 11.870509 -10.132003 0.136249 5.466179 -2.329204 -0.459813 0.444068 -13.533321 6.732909 -1.612686 9.571939 5.439980 18.319171 13.148750 16.353190 4.183664 6.242602 -2.724398 -5.791282 -9.937059 6.476949 4.521686 3.673218 9.210968 14.563481 9.343087 8.534924 10.978516 3.464237 4.586975 16.240524 0.694102 20.812541 -8.118625 -1.229608 3.742546 2.871283 14.108273 18.015369 0.055454 -7.939940 6.769514 -5.693044 -11.287507 -4.869740 1.442027 -1.373551 -2.287191 7.518047 12.839698 -1.226959 -5.532064 22.567425 -2.832921 -26.735297 12.515444 5.430434 10.737930 11.515023 -2.894743 8.538406 7.846658 3.179992 10.801612 13.603607 10.603149 -17.483573 -1.776947 2.084873 10.265255 15.077456 6.402663 -29.611490 5.403053 5.333934 14.345056 -2.972034 15.763805 -12.912829 2.081816 3.973417 -2.488919 1.695738 0.435660 7.262134 -3.918382 3.119985 -17.237530 -1.738369 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.057188 -0.124583 0.184027 -0.448449 -0.525744 0.102886 -0.164865 -0.275453 -0.093735 -0.134276 0.161898 -0.125558 -0.264496 0.543746 -0.108314 -0.514810 -0.107957 -0.060302 -0.010246 0.035089 -0.078920 0.286835 -0.157524 0.024815 0.100135 -0.105382 -0.125282 0.189345 0.294365 -0.232137 -0.164485 -0.248109 -0.114236 0.550337 0.160534 0.165864 0.026105 0.949183 0.120227 0.473232 -0.551551 -0.454429 0.377076 -0.146163 -0.034770 -0.499274 -0.368862 0.281547 -0.469646 0.021942 0.307260 -0.016533 -0.004684 -0.095024 0.196015 0.173612 -0.687395 0.483136 0.246800 -0.148274 -0.008071 -0.162631 -0.283106 -0.057894 -0.076395 -0.282409 0.024398 0.295739 -0.233241 -0.042550 -0.045982 -0.362258 0.936843 0.223223 -0.255201 0.160549 0.234578 -0.230773 0.333324 -0.421522 -0.665082 -0.161648 0.040094 0.000200 0.530814 0.096314 0.292240 -0.786642 0.206622 -0.869063 0.261805 -0.457977 0.247404 0.597511 -0.505991 0.292966 0.381400 0.062264 0.385611 0.174969 0.485970 0.168707 -0.029637 0.314597 0.287592 0.091332 -0.089011 -0.183441 -0.286215 -0.491077 -0.047529 -0.133762 -0.900824 0.191998 0.005368 0.406429 -0.171034 0.245098 0.047061 0.127779 -0.582198 -0.010091 0.192820 -0.138174 0.248933 0.400354 -0.159837 0.025544 -0.317334 0.465892 -0.391576 0.297768 -0.130831 0.364203 0.033893 -0.488963 -0.703039 0.046272 0.174859 -0.339749 -0.502892 -0.439879 -0.105655 0.211575 -0.265887 0.464794 0.974959 -0.517015 -0.471662 0.661198 0.202161 0.219103 0.469263 0.172557 0.486929 -0.055125 -0.252840 -0.237638 -0.333558 -0.051367 -0.284507 0.181140 -0.222192 0.328133 0.033290 -0.472297 0.624601 -0.148057 -0.419603 -0.136285 0.027408 -0.346759 -0.337107 0.523690 0.104943 0.468737 0.055316 0.705727 -0.170850 -0.407368 0.139136 -0.265772 -0.009702 -0.245153 -0.046852 0.045748 0.183525 -0.528153 -0.305155 -0.055994 -0.221995 -0.330901 0.184031 0.325268 0.057323 0.253036 0.201815 0.388648 0.703260 0.107576 0.034380 -0.489798 0.292061 0.180822 -0.133641 -0.533595 0.000898 -0.096282 -0.089159 0.226194 0.026164 0.202181 -0.136084 -0.128939 -0.104157 -0.090757 0.305985 0.257505 -0.244367 0.024885 0.023343 0.254663 0.268619 0.334567 0.581605 0.561419 0.387128 0.242704 -0.013090 0.061163 0.218374 -0.046354 0.153792 0.246820 0.279451 0.395722 0.472888 0.183542 0.446025 0.415715 0.155128 0.519869 0.106783 0.915929 -0.159790 -0.191469 -0.051413 0.113062 0.522487 0.808896 -0.371475 0.271369 0.302178 0.183483 -0.057402 -0.481299 0.163861 -0.114669 -0.216760 0.366268 0.177295 0.038623 -0.163487 0.596634 -0.144686 -0.677080 0.405001 0.153769 0.337548 0.101456 0.166501 -0.035433 0.244993 -0.454492 0.345205 0.433545 0.373505 -0.465158 -0.196604 0.031621 0.275521 0.171953 0.493539 -0.251352 0.109801 0.326352 0.461489 0.066041 0.029618 -0.309794 -0.447758 0.249339 -0.216999 -0.103165 0.127119 0.085514 -0.171505 0.007680 -0.159340 -0.547660 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.195562 -0.616264 0.413270 -0.830208 -0.683291 0.305970 -0.344119 -0.449351 -0.123633 0.015920 0.148668 -0.029143 -0.170208 0.793294 0.007325 -0.826178 -0.005644 -0.176400 0.134962 0.024794 -0.131084 0.459073 -0.253572 0.012994 0.170948 -0.365178 -0.106365 0.436630 0.279400 -0.196015 -0.118671 -0.496224 -0.495569 0.996739 0.342880 0.217726 0.035074 1.778713 0.175607 0.899820 -0.618258 -0.867035 0.726654 -0.298823 -0.171762 -0.169209 -0.468279 0.443572 -0.569210 -0.131440 0.502700 -0.057142 0.256490 -0.200875 0.076669 0.090360 -0.972965 0.241774 0.310834 -0.319896 -0.282472 -0.351303 -0.340767 0.107670 -0.624755 -0.469256 0.320949 0.412284 -0.343328 -0.205790 -0.078282 -0.590777 1.339574 0.563708 -0.253224 0.221302 0.557474 -0.454748 0.619686 -0.074334 -1.300604 -0.378699 -0.346846 -0.899243 1.117766 -0.088518 0.873386 -1.411561 0.940325 -1.579262 0.387977 -0.723087 0.443695 1.195278 -0.854639 0.636053 0.749386 1.126788 0.346438 -0.184249 0.923216 0.375568 -0.312443 0.773299 0.793992 0.119496 -0.334498 -0.362174 -0.670039 -0.711722 0.086905 -0.765802 -1.429953 0.447683 0.038871 0.369991 -0.325535 0.516594 -0.273497 0.574389 -1.248828 0.193912 0.249872 -0.270005 0.219429 0.444463 -0.327365 -0.020620 -0.373154 0.923111 -0.832619 0.429808 -0.141689 0.711585 -0.091544 0.223787 -0.846445 0.173814 0.397981 -0.636012 -0.980170 -0.788262 -0.363725 0.599339 -0.398976 1.491822 1.727546 -0.824540 -0.723083 1.095062 0.012365 0.278351 0.750785 0.355856 0.539235 -0.020902 -0.669090 -0.664917 -0.534288 -0.000135 -0.501289 0.368761 -0.103437 0.864872 -0.107199 0.106067 1.640139 -0.342414 -0.760068 -0.457489 0.152202 -0.697349 -0.690878 0.976480 -0.189358 0.705679 0.335536 1.320001 -0.055819 -0.416069 0.234567 -0.721778 -0.122344 -0.787138 0.015318 -0.222812 0.302166 -0.757120 -0.668414 -0.269984 -0.379990 -0.463218 0.344750 0.728780 0.298194 0.536048 0.356289 0.949535 1.258764 0.309326 -0.285314 -0.819485 0.501151 0.479788 -0.379692 -0.275736 -0.168144 -0.029576 -0.143876 0.237010 0.154431 0.537916 -0.756469 -0.217838 -0.307876 0.301561 0.329184 0.581905 -1.547767 0.132843 0.409691 0.427748 0.655410 0.587400 1.008658 0.926261 0.670835 0.393813 -0.093138 0.351533 -0.178443 -0.172792 0.256678 0.713601 0.437936 0.923878 0.849592 0.511329 0.771634 0.937497 0.485584 0.821640 0.053077 1.588752 -0.026339 -0.422421 -0.097841 0.371857 0.929965 1.324249 -0.355901 0.620343 0.613310 0.305036 -0.348112 -0.955218 0.389992 -0.251704 0.295914 0.137845 0.317728 0.117046 -0.326760 1.011020 -0.158110 -1.409207 0.594719 0.363647 0.717418 0.608862 0.259015 0.232791 0.256674 -0.786202 0.942159 0.819348 0.415403 -0.833565 0.313920 0.164387 0.484481 0.153867 0.927322 -0.263922 0.456989 0.212643 0.701779 0.213041 0.237693 -0.550058 -0.540407 0.506130 -0.652782 -0.079694 0.430594 0.204468 -0.348457 0.231244 -0.637469 -0.897066 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 4.138215 -1.116005 3.948492 -6.142559 -5.661123 0.112579 2.078752 -6.090411 -2.694483 9.476160 3.130979 -5.317064 -2.197665 6.461619 -1.203024 -3.258895 1.396974 -0.866213 0.388521 -1.350465 -1.920727 2.963315 -2.406602 -5.140686 2.080208 -1.239818 0.631269 5.956966 -0.448245 2.787918 -0.402128 -3.965694 1.286987 11.183468 3.609883 -2.170407 -2.923229 14.347694 -8.531878 8.684293 -9.474977 -9.879673 13.220614 -1.770216 1.605844 -6.979255 -4.100025 6.674162 -2.973368 -5.667063 -0.475142 -0.879758 4.420176 -7.120112 -4.452049 5.759684 -11.247991 2.263262 5.310946 -7.441928 -7.880842 -1.422351 0.635139 3.386842 -8.195183 -6.635026 0.165718 0.009097 -1.034268 0.034178 -6.082049 -6.847528 6.699050 2.178167 -1.770511 1.547044 -0.902591 -5.675061 6.207620 -1.069088 -8.956173 -4.600693 -1.778407 -6.684759 5.572676 2.314303 9.646828 -13.921488 4.953363 -15.633719 5.001337 -7.205753 4.830348 10.542842 -5.618711 6.975907 4.001053 7.287659 4.080989 0.051873 7.236468 5.043704 3.228464 3.880481 7.331664 8.301623 -5.757830 -7.529344 -6.917002 -5.823974 2.277886 -4.426438 -11.867670 5.169178 -4.270673 0.628534 -0.777644 -0.752717 -1.968848 11.353332 -11.954279 1.424266 3.565384 -2.267061 2.884400 5.283592 -0.750333 -0.088526 -2.354740 6.557593 -2.397749 3.020805 1.865439 8.528153 -5.828147 -5.924658 -4.623580 3.762663 3.540232 -7.990418 -9.301666 -13.516150 -1.611960 5.140421 -4.759629 7.313555 15.573313 -5.747307 -8.015379 7.537425 -0.035363 -2.162352 7.040258 2.997600 11.804605 -5.053385 -2.058159 -2.732114 -2.905829 3.152981 8.571264 -1.528021 -5.845919 8.360035 -2.621136 -5.117048 11.012501 0.127430 -2.570077 -1.154250 1.766522 -4.063572 -5.467438 9.284428 -6.274487 7.544722 -3.359361 12.647961 -2.657826 -3.882536 3.479626 -8.823592 -3.293744 -6.019373 0.408266 0.092359 5.958286 -7.089199 -6.250347 -3.261181 -3.121494 -3.233848 9.986869 -4.001839 0.803644 3.577775 -1.444414 7.213291 5.043200 -2.407872 -1.033111 -6.862446 3.606716 5.077680 -0.503464 -11.503410 -4.707216 -3.976990 -2.022006 0.438443 1.220027 8.558295 -6.449910 -0.855076 4.050648 0.042914 -0.436950 0.228555 -9.679037 4.178013 0.694744 5.346943 3.936371 11.745726 7.273553 9.191303 0.970921 4.572323 -2.274904 -1.676188 -6.188641 1.861144 1.818479 1.951781 4.716168 7.922805 4.900154 6.014106 6.734230 3.508442 1.580959 9.750012 0.228967 10.313898 -4.393997 -1.545955 3.192276 1.117368 8.811423 9.910770 0.505623 -5.169059 3.826310 -3.944878 -6.932653 -3.770223 1.110480 -0.484045 -0.470924 4.217949 7.804452 0.676601 -3.391889 12.348157 -0.501085 -16.808744 8.143549 3.451229 6.021194 7.589660 -1.814174 5.372048 3.893228 1.633021 6.444437 8.105092 5.277152 -10.789130 -0.109340 2.219950 6.562503 6.919270 4.285282 -17.099077 1.914992 2.250940 7.689845 -0.570147 10.084861 -8.299016 -0.094644 2.400017 -2.049910 0.388113 -0.613073 3.736115 -3.135448 2.330886 -9.471475 -0.153651 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/tarjan-algorithm.cpp__main = 7.056237 -2.214187 8.092161 -14.323943 -15.609117 -1.595285 -1.226680 -10.092251 -4.345456 10.436461 4.401758 -11.785336 -8.216045 18.795605 -7.171146 -14.406183 -0.293852 0.341243 0.374821 -3.834939 -5.165824 9.465318 -5.013293 -7.154963 8.578597 -4.514194 -1.780844 11.734453 10.953935 -0.819618 -2.652294 -7.802911 1.959072 25.489391 4.232885 -3.055434 -0.579269 36.726730 -6.577300 14.674577 -21.495673 -19.821775 26.605964 -4.254624 0.760707 -17.754536 -12.499271 13.030552 -19.616273 -0.533622 3.196549 -0.196896 2.814681 -13.713912 -0.966093 13.891387 -31.969827 18.093829 10.730087 -9.030675 -11.055627 -6.507359 -5.262321 -1.011174 -7.482218 -14.693477 -0.121396 6.932065 -9.684410 2.093777 -9.322916 -12.693014 26.324405 5.100139 -7.555931 7.993726 1.945744 -11.486017 12.206539 -13.794978 -20.676558 -9.656321 4.676900 -4.192548 17.497059 5.863955 14.578310 -33.206045 6.450936 -34.304246 11.240440 -20.703986 13.553621 26.646951 -21.761136 17.404397 8.797422 5.486497 11.984891 6.077011 20.517830 8.934091 4.967782 8.187116 10.027197 13.171068 -6.933046 -12.609100 -10.870385 -13.987636 -3.101319 -4.291320 -33.828651 8.557653 -9.952643 10.847001 -1.971866 2.525373 -3.258293 15.771869 -25.576939 -3.700631 7.666811 -6.096411 10.389790 14.713839 -3.101356 -0.942127 -10.310312 18.250930 -6.518110 6.297813 -2.780538 16.947746 -6.679163 -24.691619 -22.702083 0.792836 6.032568 -16.354470 -23.851182 -24.363136 -5.254873 4.687988 -10.352992 17.009033 37.808288 -13.039897 -18.927210 22.994812 -0.194417 7.417034 22.742830 6.973320 25.372796 -9.699917 -3.543201 -5.940517 -5.543974 4.202270 -0.472491 -0.658170 -13.752185 13.232655 0.198269 -10.173598 18.346229 -1.506058 -7.490607 -8.922078 2.313231 -11.176295 -13.414875 25.586495 -5.744673 21.100354 -6.552501 31.662992 -8.972759 -19.012663 8.473691 -15.824174 -2.372870 -9.503826 0.413219 0.309342 11.038636 -20.636582 -15.955435 -2.793258 -4.617221 -8.950680 16.535341 6.982651 -0.067057 4.907526 1.549202 16.547260 17.057372 -5.249244 4.673486 -21.263127 7.959552 11.782847 -3.004549 -30.324389 -1.167228 -4.327485 -5.420817 5.730319 2.211888 11.403834 -9.613165 -5.839607 3.512162 -1.476951 7.452335 1.654533 -13.723458 7.717276 -4.120159 7.558864 10.039145 21.648056 23.584535 17.013333 4.769951 8.604101 -1.882556 -6.010125 2.613596 4.515852 5.785380 6.499826 10.482475 18.724788 14.636645 8.154195 13.190705 11.427374 -1.218628 21.801845 5.958523 31.360331 -12.789080 -5.212593 2.746294 0.161472 21.608247 29.294806 -8.803455 -5.376495 12.240970 1.997558 -4.912209 -18.104857 0.661426 -2.731776 -7.374178 11.416430 7.906480 -3.725911 -4.060348 28.453108 -3.222016 -32.943193 21.271918 7.360743 11.924079 3.782927 0.714787 0.448400 13.884661 -9.244517 10.882712 14.185818 14.585240 -20.374330 -5.281043 2.080328 16.314347 10.265300 12.644347 -25.769468 4.233693 12.609038 19.069341 4.913308 11.617843 -11.653925 -13.038308 3.645114 -5.762938 -3.411426 0.753382 5.130679 -9.914458 5.188689 -10.245596 -13.168812 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.505831 -2.912229 2.062124 -4.596553 -4.212682 2.699506 -3.157283 -4.038797 -0.729430 0.474537 1.706435 0.393830 0.452908 3.005987 -0.102551 -3.985204 -0.278271 -1.070354 0.801882 -0.994731 -0.870446 1.912944 -2.138104 -0.132597 0.054634 -2.574507 0.268542 2.094510 0.945511 -0.474393 -1.270757 -2.988733 -3.350175 5.875191 3.283341 0.360743 0.350090 9.556091 1.022056 2.216280 -3.316643 -4.888822 3.733052 -1.616534 -1.246935 0.383730 -2.211516 1.936647 -2.416565 0.293498 2.773970 -1.733859 2.543726 -0.359023 -0.122682 -0.144616 -4.264403 0.778161 1.860325 -2.584999 -2.547611 -2.381538 -0.357349 1.497153 -3.661169 -2.523549 3.321105 3.305818 -0.498821 -1.506148 -1.030364 -4.849321 6.549067 3.086311 -0.985301 0.071362 2.072212 -3.415418 3.230021 2.024911 -7.691523 -2.094225 -1.800322 -6.258372 5.636691 -0.932263 5.493234 -7.978490 5.379280 -9.598416 1.310930 -2.567924 3.039859 5.717087 -5.241490 2.423833 4.503279 7.754789 1.822225 -2.244465 4.960359 1.237858 -2.214959 4.036132 4.693590 0.739375 -1.269316 -1.272797 -3.392479 -4.198802 0.678626 -4.408829 -7.844518 2.929038 -1.008055 0.243449 -3.355152 2.439378 -1.608122 4.994107 -6.345531 0.030698 0.836314 -1.499803 1.717616 2.255986 -1.764722 0.930518 -1.426975 4.637113 -5.046895 1.551024 -1.640264 4.019794 -0.470812 1.806640 -6.259683 1.883849 3.583933 -4.415233 -5.787555 -3.435374 -2.415647 2.783310 -2.041211 9.050457 9.440207 -5.496813 -4.884088 5.742893 -0.304678 0.173910 5.508153 2.013104 3.507008 -0.736611 -2.775152 -4.293218 -2.884482 -0.590782 -4.236747 1.306544 0.331733 4.980944 -0.385821 3.017363 9.999634 -1.726758 -4.677756 -1.454582 1.651088 -3.084966 -3.994611 4.814908 0.200268 3.310844 3.202488 7.287570 -1.560939 -2.175679 0.985255 -3.236613 -1.198753 -3.220861 0.181602 -1.668762 2.879659 -2.711987 -3.649046 -1.340158 -2.327247 -2.323893 2.330713 6.638341 2.149428 3.321715 1.257694 3.987674 8.319690 2.272719 -1.968246 -3.664438 3.007141 4.197322 -1.864411 -0.349457 -2.412707 -1.030667 -0.801916 0.503967 1.092553 4.511946 -4.606359 -0.864961 -2.173459 2.725316 2.583929 3.936698 -10.096098 2.068316 1.143708 1.775955 2.955879 3.499206 4.825871 6.221549 4.528123 0.801641 -0.157875 1.435898 -0.298458 -1.439232 2.180625 4.874531 2.502421 5.958782 4.569387 3.667880 3.949154 4.703087 3.992653 4.774980 -0.639202 9.440061 -1.289723 -1.020786 -1.631320 2.070931 5.369582 8.203596 -1.036502 3.012510 2.527505 1.734095 -2.584494 -6.878010 2.605063 -1.137963 2.941640 -1.219493 3.050380 1.051944 -3.267849 6.501296 -0.266645 -7.791870 3.783085 1.960937 3.763166 4.090375 0.528938 1.202777 0.797385 -3.854006 6.093531 5.421366 2.510602 -4.901779 2.368327 0.996905 3.537610 -1.073440 4.614566 -1.035743 4.447714 1.218350 3.878613 1.678678 1.539843 -4.160671 -2.129671 3.031936 -3.995114 0.284912 3.670510 2.294631 -3.044787 2.317486 -3.850244 -4.614651 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.161987 -0.423404 0.547085 -1.040056 -1.045462 0.011568 0.128939 -0.519429 -0.185220 -0.084574 0.487015 -0.497015 -0.377741 1.277250 -0.013487 -0.905385 -0.025762 0.153810 -0.105487 0.005176 0.038289 0.678080 -0.172122 -0.135365 0.271903 -0.331064 -0.177934 0.912603 0.520506 -0.125166 0.039948 -0.499125 -0.081274 1.167100 0.208487 0.340272 -0.157649 1.965338 -0.627994 1.433165 -1.070112 -0.837743 1.310123 -0.279886 -0.300265 -1.260635 -1.270980 0.610460 -0.741524 -0.483703 0.435233 0.106433 0.427126 -0.509819 0.158004 0.603761 -1.245067 0.317168 0.544339 -0.772273 -0.292061 -0.186854 -0.602132 0.105005 -0.924567 -0.669901 -0.038202 0.147565 -0.189604 -0.192728 -0.053778 -0.789702 1.934566 0.310475 -0.382863 0.434660 0.481213 -0.800559 0.863542 -0.055190 -1.269659 -0.482659 -0.160635 -0.518116 1.011784 -0.121350 0.987857 -1.755589 0.273578 -1.781135 0.724327 -1.074965 0.440576 1.299827 -1.100317 0.875546 0.686421 0.572193 0.543947 0.243379 0.982661 0.552655 0.244499 0.751020 0.991921 0.480705 -0.517801 -0.827605 -1.010874 -1.045273 0.359003 -0.838753 -2.132026 0.471353 0.074673 0.148307 -0.220661 0.155740 0.097712 1.143093 -0.840434 0.926052 0.728270 -0.309987 -0.054742 0.939630 -0.279442 -0.160955 -0.593669 0.947953 -0.795684 0.863014 -0.007149 0.905240 -0.327339 -0.771309 -0.650971 0.174837 0.114687 -0.725689 -0.997869 -1.164699 -0.201291 0.722587 -0.554243 0.646506 2.072398 -0.992582 -1.154251 1.253418 0.927403 0.128330 0.469789 0.404396 1.214356 -0.196598 -0.732801 -0.873192 -0.809485 0.350143 0.693409 0.329793 -0.604797 0.980735 -0.309344 -1.841530 2.325138 -0.445068 -0.721539 0.003709 0.227736 -0.820596 -0.836979 1.324331 -0.011493 1.185131 -0.331072 1.520418 -0.182126 -0.730041 0.295460 -0.648911 -0.245431 -1.049906 -0.012883 0.226708 0.467270 -0.823700 -0.732985 -0.546500 -0.578347 -0.558104 0.600808 -0.254821 0.202112 0.486069 0.303070 0.632982 1.201091 0.152579 -0.171075 -1.034628 0.612102 0.572357 -0.083323 -1.338218 -0.105325 -0.228047 -0.207448 -0.083218 0.085077 0.695143 -0.608871 -0.155867 -0.089934 -0.295084 0.071192 0.295854 -1.581728 0.192984 0.225977 0.789698 0.535353 0.896534 1.480068 1.075238 0.585213 0.792461 -0.135073 0.140044 -0.531790 0.162644 0.238630 0.289512 0.631479 1.244471 0.955890 0.565125 1.174647 0.880392 0.587016 1.091253 0.281197 1.793256 0.221815 -0.589762 0.128274 0.448541 1.157385 1.695869 0.275229 0.245956 0.693824 0.289479 -0.539807 -1.127092 0.238475 -0.168876 -0.239585 1.208880 0.415310 -0.032678 -0.244635 1.299565 -0.188810 -1.767949 0.742821 0.364319 0.846931 0.474158 0.178019 0.352753 0.621562 -0.532989 0.880558 0.888987 0.663786 -1.202013 -0.418410 0.155696 0.457099 1.107374 1.084458 -1.513997 0.287130 0.358235 1.085310 -0.274819 0.865536 -0.741098 -0.438228 0.531651 -0.331120 -0.168772 0.070271 -0.036498 -0.591810 0.040348 -1.044307 -0.855879 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.063331 -2.045307 0.226275 -0.971492 -1.273114 0.561250 0.471831 -3.768573 -1.080842 2.241214 0.754523 -1.403718 -0.161396 1.323226 1.006294 -0.836611 1.601118 1.327069 0.576749 -1.311331 -0.746675 0.485964 -0.914592 -1.352601 -0.492413 -0.798048 0.520756 1.206363 -0.776636 1.497094 -0.761229 -2.166977 0.381191 4.094995 2.516006 0.860808 -2.731898 4.719579 -0.522534 4.178926 -4.390899 -2.329226 3.220970 -1.122792 0.880163 -2.351585 -1.448314 2.165718 1.484306 -2.912893 -0.660328 -0.930542 1.615854 -1.500115 -1.676690 1.902097 -0.527158 -0.535284 1.503125 -4.018931 -2.685132 -1.125256 -0.121392 2.174189 -5.287222 -2.739608 1.152120 0.847311 -0.097272 1.297461 -3.378029 -4.368015 1.175266 1.363374 -2.192126 -1.163422 -0.654300 -1.239712 1.708451 3.455425 -3.143236 -1.815259 -1.281431 -1.143142 0.700345 0.689549 4.557719 -6.001838 1.929785 -6.705610 1.843718 -2.352261 3.169964 3.070949 -2.133176 1.602643 1.500317 4.309402 1.472609 -1.032488 2.166204 1.695032 -0.222961 0.383192 4.611538 1.796295 -0.179158 -2.877706 -0.932738 -1.678406 2.307080 -1.893602 -3.527049 1.968564 -2.876418 -0.100034 -2.268771 2.079992 -0.531571 3.448751 -4.868069 -1.021363 2.070844 -1.212359 2.786667 1.806131 -1.681628 1.607652 -1.635918 2.207324 -0.504618 1.207888 -0.738780 3.080294 -2.303897 -1.144720 -2.858554 1.371937 2.910820 -3.888401 -4.289832 -4.306281 -1.412024 2.728743 -2.137190 2.817298 5.236433 -3.126345 -1.655114 2.021759 -0.287329 -1.729055 2.214992 0.816744 5.487362 -3.109971 1.083639 -0.769628 -0.006037 0.996734 3.025637 -1.103205 -2.697043 2.666252 -1.376097 -2.952047 5.674160 -1.153005 -1.947458 -0.026744 -0.225040 1.345724 -1.327655 2.912350 -4.133019 1.825947 -2.381367 2.895644 -1.236445 -0.354528 1.175703 -2.914079 -2.144570 -0.411087 1.347475 -1.256158 4.196116 -2.965279 -2.311337 -0.103440 -3.529804 -0.111342 3.442720 0.429799 -0.595171 1.479997 0.144837 3.631923 2.833887 0.723590 -1.160192 -1.951273 2.072892 3.117578 0.707146 -1.073859 -2.590354 -2.677182 -1.204770 -3.389753 0.944409 3.290235 -2.753981 -0.201613 -0.059276 0.289266 0.601321 1.215833 -3.531113 2.167446 1.269805 1.341189 0.610921 4.580314 1.472801 3.228447 1.918684 -1.162999 -0.164607 -1.338869 -3.882806 2.050165 1.100851 0.879988 1.354106 1.546830 1.803207 1.596793 3.387155 -0.906900 3.550073 3.520601 0.616620 4.123217 -1.610436 1.083372 0.915013 -1.174673 3.443943 5.322320 1.323521 -1.264840 1.242656 -2.202820 -4.111636 -1.728773 -0.475035 0.286747 -0.833989 0.795927 2.127310 0.344489 -2.789770 5.550976 0.044756 -6.178034 2.583315 1.282521 1.218387 5.190340 -1.282387 2.894541 0.961937 1.260107 2.234135 3.018504 2.298972 -3.499690 -1.266114 -0.137960 0.869884 3.390976 0.333232 -4.538775 1.986857 1.767277 4.749370 0.124840 1.273287 -3.626081 2.045770 1.227371 -1.376985 0.683822 0.620177 2.926947 -0.895068 -0.566722 -4.749194 0.614265 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.446071 -0.371836 0.366169 -0.200395 -0.095968 -0.173228 -0.036134 0.283504 -0.052976 0.237584 -0.143683 -0.204573 -0.497553 0.326768 -0.101461 -0.481907 0.281144 -0.218335 0.078482 -0.170773 0.154721 0.030892 0.474400 -0.307763 0.121167 -0.121709 -0.082549 0.276663 0.713941 -0.236297 0.137423 0.062977 0.168226 0.064988 -0.215416 -0.337599 -0.204666 0.502631 0.426915 0.271217 -0.220724 -0.153205 0.606457 -0.144911 0.136707 -0.392203 -0.195570 0.514463 -0.418670 -0.326637 -0.096150 0.308369 0.110981 -0.589245 -0.606630 0.323966 -0.570108 0.462114 -0.141417 0.128267 0.140775 0.150913 -0.143341 0.231369 0.409096 -0.320814 -0.023042 -0.149924 -0.899182 -0.089143 -0.150705 0.488621 0.564118 -0.047056 0.112594 0.125412 0.318455 0.377434 0.298823 -0.588537 -0.240602 -0.239443 -0.379408 0.010868 0.374972 -0.160176 0.064694 -0.600627 0.360993 -0.438821 0.560865 -0.365275 0.004145 0.357089 -0.265584 0.544338 0.019805 -0.134171 0.121812 0.068073 0.491847 0.196525 0.245589 0.246701 0.145233 -0.177713 -0.108752 -0.109504 -0.115287 -0.009398 -0.129406 -0.209682 -0.481842 0.357546 0.149930 0.373346 0.447641 -0.004758 -0.157077 -0.267335 -0.521673 0.114591 0.159677 -0.089948 0.007072 0.073095 -0.242733 -0.076188 -0.090836 0.544292 -0.058079 0.151333 0.655351 0.285591 0.237246 -0.486202 0.150879 0.234866 0.069549 0.074808 -0.368414 -0.362042 0.140774 -0.323673 -0.244324 0.407581 0.389735 0.341194 0.027482 0.102920 -0.183098 0.291920 0.220013 -0.088330 0.424555 -0.092901 -0.538660 0.202699 -0.088308 0.510074 -0.101766 0.012857 -0.017618 0.449832 -0.035232 0.087650 -0.425941 -0.167736 -0.028047 -0.073105 -0.056450 -0.307792 -0.214915 0.096188 0.098463 0.140665 0.229583 0.600038 0.406570 -0.346434 0.218065 -0.147166 -0.022257 -0.029267 0.214112 -0.042142 -0.238213 -0.511882 -0.340712 -0.339264 -0.033284 -0.020849 0.322616 -0.069886 0.259928 0.275103 0.200324 0.513417 -0.145469 -0.095071 0.087187 -0.581027 -0.030140 0.144916 0.087302 -0.378838 -0.047108 0.119930 0.115310 0.541896 -0.036754 0.081031 -0.059085 -0.347689 0.035803 -0.010878 -0.116185 0.037548 0.018784 -0.311116 0.528359 0.237840 0.091917 0.571079 0.259564 -0.192157 -0.172832 0.463010 -0.045615 0.292157 -0.070171 -0.260606 -0.199415 -0.030778 0.105496 -0.068341 0.094505 0.084756 0.645162 0.338770 -0.567307 0.079522 -0.016673 0.079755 -0.249648 -0.342531 -0.007132 0.053387 0.376060 0.322770 -0.097305 -0.254131 0.426481 -0.046228 0.327610 -0.167181 0.002599 -0.179642 0.295995 0.426497 0.231944 0.202640 0.062256 -0.068924 -0.061875 -0.666236 0.658360 0.138390 0.287281 0.361377 0.017232 0.144628 -0.075421 -0.340786 -0.480568 0.200033 -0.011153 -0.208591 0.206350 0.037061 0.302183 -0.195550 0.348450 -0.368396 -0.359063 0.336014 0.214639 0.022980 -0.010830 -0.225699 -0.702276 0.058514 0.027122 0.048133 0.004975 -0.340253 -0.371286 -0.190832 0.309463 0.170405 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.558464 -10.818418 5.288756 -15.468560 -9.766384 8.482713 -6.427680 -14.454276 -3.111874 6.389642 5.933514 -0.392585 2.534729 11.858661 1.739979 -9.532810 3.243154 -2.097711 3.524726 -1.178209 -2.505942 5.839149 -7.127379 -3.105284 -0.440755 -7.013231 2.103737 6.681824 -1.381641 1.904795 -4.785250 -9.986707 -10.293540 19.933696 11.933489 1.752155 -2.466913 29.212386 -3.531669 15.533663 -12.399970 -14.916926 13.286205 -4.623897 -2.808789 -0.825216 -7.620625 6.392808 -1.972375 -4.994706 6.820663 -6.885361 10.085724 -2.786593 -2.488386 1.296727 -10.185956 -3.210911 7.446155 -9.670310 -9.427563 -7.692546 1.111552 7.185938 -18.974414 -8.490306 10.285755 7.025993 -0.183253 -4.547275 -7.502837 -18.022107 14.925207 11.228255 -3.992263 -1.315393 4.156878 -13.932390 10.507172 9.556106 -23.468049 -6.825511 -8.395710 -22.112122 16.279933 -2.330860 21.471406 -26.346403 18.120125 -31.446742 4.641810 -8.410973 10.105055 19.890052 -13.405090 7.052179 13.189792 29.916079 4.712198 -8.063598 14.377561 6.996135 -7.359029 10.389457 19.733827 6.096147 -6.616860 -8.270461 -10.793867 -11.506303 4.964900 -16.260388 -22.540742 10.336500 -5.784302 -2.874533 -11.233133 7.741737 -7.562917 18.243374 -21.704894 -0.099456 2.762479 -5.180757 5.807323 7.754087 -4.468537 3.438555 -4.276309 14.026251 -13.704913 5.792303 -4.865934 14.202719 -7.307734 9.402975 -14.440053 7.033784 11.791611 -15.590502 -19.378466 -16.642637 -8.459882 11.598123 -6.157333 28.981616 29.264689 -17.036011 -14.596165 16.896223 -1.073708 -2.873013 15.307982 5.770204 13.024521 -5.172457 -5.963034 -12.923316 -6.995083 -1.640319 -3.333966 2.037839 -0.841104 16.836106 -5.782671 4.352253 34.330161 -4.211704 -13.451639 -6.420650 4.907376 -9.110645 -12.530053 16.730209 -10.109119 9.756233 4.901365 21.859461 -4.500799 -3.249489 3.710529 -14.757608 -5.932664 -13.547627 1.075103 -5.622058 11.842327 -9.115686 -12.184124 -4.951016 -7.632529 -6.279069 9.822461 10.934465 4.660664 10.004463 2.526820 16.158979 23.307095 6.069887 -7.420353 -9.523173 10.073818 14.387919 -5.790234 -1.439301 -9.302889 -5.850470 -3.625637 -3.444639 3.724596 15.928322 -18.604109 -2.933335 -4.455606 8.667566 5.911695 11.223572 -36.021593 8.382721 5.016475 6.264272 10.195526 13.770351 11.969491 20.187946 12.389480 0.741095 -1.274889 3.305935 -10.861799 -2.217971 6.586279 12.510958 7.899197 18.711989 13.229815 12.662321 13.057577 12.426607 14.683882 15.380122 -2.005198 26.075549 1.229476 -2.822349 -1.194218 4.071187 16.496888 25.109192 0.327286 6.577912 8.133311 -0.208609 -13.357828 -17.695710 7.616468 -3.363774 7.165276 -2.923664 10.541788 3.984450 -12.028320 22.616476 -0.945159 -27.577932 10.199703 6.707337 12.479103 18.936090 -0.295502 8.785586 2.133585 -7.626395 21.948414 17.095778 7.749968 -15.725373 7.565226 3.322322 9.122302 4.830350 11.952427 -8.349776 14.997724 1.920009 14.714006 5.101825 9.300461 -13.959156 0.740966 8.569189 -11.757501 2.113086 7.249953 9.897187 -7.096067 4.791426 -18.218365 -9.751491 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.335811 -0.370968 0.699634 -1.859837 -1.491681 -0.588781 -0.212847 -0.531078 -0.084647 0.640665 0.942246 -1.340368 -1.034911 2.214629 0.112214 -1.063160 0.072311 -0.941079 0.430120 0.569522 0.347856 0.867043 -0.171515 -0.215088 0.322451 0.397452 -1.103334 0.640572 1.580602 -1.181863 -0.551904 -0.505953 0.290948 1.429543 -0.355673 -0.837499 -0.402554 2.877081 -0.939341 1.280014 -1.724963 -1.047760 1.928379 -0.669450 -0.295818 -2.316154 -1.288679 1.291592 -0.646486 -0.925808 0.407022 0.782770 0.188589 -1.302716 -0.529397 0.939185 -2.866803 1.430647 1.415155 -0.187793 0.391830 0.131621 -0.578156 0.178278 -0.543212 -0.799463 -0.037699 -0.773825 -1.015783 -0.537082 -0.364902 -0.578147 2.402770 0.765107 -0.312429 1.078710 0.766459 -1.304674 1.795159 -1.729625 -1.799063 -0.463770 -0.548679 -0.385733 1.665076 -0.239975 0.665949 -1.998024 0.750925 -2.569067 0.908056 -2.244453 0.188847 2.222574 -1.531055 1.082814 1.057904 0.097493 1.862432 0.428502 1.775068 1.259166 0.724843 1.022027 0.919477 1.076821 -0.591837 -0.361617 -1.108919 -1.590835 -0.152763 -0.416031 -2.623342 1.159045 0.124052 -0.048703 0.611162 -0.175567 0.218753 1.442804 -1.126454 0.147699 0.950271 -0.380353 -0.382024 2.207673 -0.445602 -0.854741 -1.364809 1.522227 -0.730032 1.482888 1.189388 1.259124 -0.466242 -2.160267 -0.963402 0.075555 -0.236714 -1.556906 -1.179019 -2.115248 0.541905 -0.367358 -0.731979 1.225462 2.993069 -1.101259 -1.307403 2.067387 1.237304 0.044903 1.498152 0.219305 2.480480 -0.050683 -1.357473 -0.638799 -1.367154 0.191880 0.538542 0.632757 -0.455376 0.768068 -0.139540 -2.273974 1.496282 0.140666 -0.701470 0.606697 0.307292 -1.611389 -1.937583 1.300586 0.580013 1.593183 0.223629 2.322743 0.538596 -0.901107 1.413918 -0.133043 0.083195 -0.888881 -0.498264 0.863546 0.298832 -1.073750 -0.733561 -0.942595 -0.526323 -1.073682 1.197098 -0.434978 0.765911 1.212900 0.293947 0.647570 1.490854 -0.546114 0.594568 -1.917721 0.831163 0.562174 -0.468877 -2.412735 -0.013276 -0.850208 0.127315 1.170096 -0.361471 1.422730 -0.787507 -1.054834 0.610667 -0.154033 0.110056 -0.125485 -1.387677 0.029093 -0.177469 1.597908 1.047499 1.637054 1.162620 1.667988 0.469027 1.377621 -0.626914 0.742464 -0.167974 -0.379375 -0.620227 0.253499 0.998168 1.210292 1.241544 1.124792 1.877446 1.060849 -0.642694 1.942311 -0.191257 1.960812 -0.109043 -1.079679 0.406876 0.151646 2.001768 2.484840 -0.183859 -0.420181 1.065439 0.063386 -0.773623 -1.269349 0.167919 0.020895 -0.591139 1.472872 0.844495 0.481860 -0.055668 1.267317 -0.250899 -2.661583 1.483977 0.403529 1.165540 0.576470 0.598083 0.315256 0.824155 -1.026541 0.614341 1.373926 1.195610 -1.738408 -0.581203 0.589354 1.368842 0.500739 1.893738 -2.688401 0.110034 0.938272 0.714391 -0.114657 1.135294 -1.407949 -1.520272 0.984472 0.151852 -0.430663 -0.475006 -0.090269 -1.420904 -0.133101 -0.314595 -0.527346 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.231030 -0.215698 0.282452 -1.049409 -1.164009 0.212985 -0.325873 -0.649324 -0.240240 0.129248 0.354868 -0.326840 -0.397635 1.191650 -0.207295 -0.971104 -0.193686 -0.386481 0.013056 0.108340 -0.208111 0.717497 -0.385920 0.039740 0.216782 -0.152031 -0.307024 0.343274 0.585416 -0.497576 -0.380132 -0.556454 -0.307509 1.209200 0.410839 0.062284 0.038964 2.072227 -0.001271 0.886298 -1.137954 -0.969194 0.844004 -0.307704 -0.089331 -0.922132 -0.664718 0.650860 -0.674312 -0.039226 0.646143 -0.060619 0.068782 -0.207549 0.307904 0.327842 -1.406984 0.961270 0.616037 -0.242868 -0.115154 -0.397447 -0.399360 0.028578 -0.410210 -0.654797 0.141240 0.495281 -0.423372 -0.219820 -0.207652 -0.829778 1.665937 0.550083 -0.541701 0.270332 0.321335 -0.706593 0.755731 -0.878750 -1.472869 -0.291145 -0.011228 -0.301360 1.112873 0.117812 0.733199 -1.728295 0.638708 -1.917003 0.413598 -0.917787 0.544455 1.395029 -1.020849 0.546847 0.723869 0.468456 0.957556 0.180161 1.071450 0.406726 -0.023415 0.706803 0.588340 0.431574 -0.274852 -0.336037 -0.607208 -1.033756 -0.045312 -0.290307 -1.806541 0.557136 -0.031033 0.554257 -0.331411 0.402669 -0.079016 0.571824 -1.300986 -0.292259 0.308969 -0.297124 0.504649 0.904913 -0.333942 0.062054 -0.696865 0.997563 -0.745924 0.689083 -0.244305 0.838443 -0.212469 -0.793737 -1.426199 0.176245 0.431983 -0.847714 -1.105358 -1.123563 -0.201780 0.246874 -0.635785 1.238780 2.096860 -1.163647 -1.043759 1.488090 0.278720 0.290717 1.028751 0.242131 1.062886 -0.142793 -0.542291 -0.475855 -0.697239 -0.195777 -0.367856 0.379225 -0.420561 0.643570 -0.079366 -0.748787 1.220828 -0.091139 -0.929387 -0.402008 0.141643 -0.734554 -0.796166 1.133807 -0.057404 0.902645 0.165189 1.519534 -0.299813 -0.732094 0.425723 -0.641691 -0.048850 -0.638318 -0.168838 0.113341 0.460503 -0.974886 -0.594086 -0.119753 -0.406456 -0.831989 0.421500 0.576632 0.186237 0.576123 0.440558 0.944703 1.552392 0.186735 0.068640 -0.996592 0.675463 0.517363 -0.340599 -1.054862 -0.159282 -0.292617 -0.232648 0.499896 -0.002364 0.547195 -0.475323 -0.318691 -0.127664 0.001758 0.667607 0.591089 -0.879679 0.225032 -0.071320 0.613358 0.581450 0.808625 1.036853 1.285033 0.852973 0.433785 -0.080675 0.154132 0.298884 -0.096257 0.331657 0.455345 0.685734 0.996958 1.053932 0.514749 0.965158 0.852025 0.232638 1.158090 0.038230 1.973158 -0.369328 -0.395793 -0.121289 0.238801 1.126961 1.797050 -0.674892 0.382499 0.644209 0.240416 -0.312206 -0.946407 0.418669 -0.281407 -0.236418 0.433368 0.393516 0.093556 -0.368371 1.337090 -0.359913 -1.553045 0.900672 0.345438 0.822895 0.350371 0.347415 0.070788 0.454343 -0.984944 0.904236 1.087856 0.761777 -0.932515 -0.310365 0.113961 0.673822 0.300116 1.059954 -0.697645 0.405174 0.677454 0.969148 0.191342 0.254764 -0.709113 -0.852829 0.627928 -0.400156 -0.152860 0.252401 0.316395 -0.470991 0.169631 -0.413143 -1.021532 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 0.022214 -1.301276 0.708108 -1.736944 -1.459769 0.543360 -0.291445 -1.233275 -0.289550 0.555239 0.394837 -0.351503 -0.199501 1.950794 0.076055 -1.435798 0.055981 0.360595 0.379322 0.342467 -0.168186 1.213614 -0.677145 -0.040674 0.304986 -0.697867 0.006340 1.046442 0.229296 0.383435 -0.169643 -1.246541 -0.858009 2.157031 0.941112 0.908214 -0.281822 3.483546 -0.593493 3.113938 -1.727229 -1.812122 1.577786 -0.442361 -0.165537 -0.934972 -1.249855 0.756148 -0.941766 -0.753878 0.907550 -0.284808 0.904674 -0.347645 0.404559 0.211944 -1.554322 -0.032642 0.798629 -1.176073 -0.597331 -0.751039 -0.858898 0.524098 -2.404585 -0.952115 0.195914 0.701653 -0.243360 -0.321498 -0.287311 -1.453713 2.510299 1.142347 -1.085300 0.275937 0.879389 -1.387697 1.206793 0.035019 -2.602060 -0.821053 -0.803952 -1.706532 1.844609 0.110047 2.381058 -2.963099 1.686688 -3.275335 0.954830 -1.459274 0.967519 2.573716 -1.584667 1.235273 1.475537 2.628336 0.929984 -0.239127 1.514242 1.297204 -0.521888 1.348946 1.867560 0.915962 -0.972014 -1.377256 -1.439455 -1.400660 0.527872 -1.793749 -3.145121 0.644661 0.075681 0.868383 -0.832299 0.890638 -0.549558 1.700251 -2.708639 0.694479 0.617077 -0.547975 0.416888 0.917432 -0.446290 0.045510 -0.715033 1.729115 -1.631537 0.985955 -0.431112 1.625641 -1.233871 0.718677 -1.315707 0.429796 0.654275 -1.342173 -1.958093 -2.258965 -0.956822 1.926339 -0.730154 2.397600 3.428577 -1.876458 -1.621217 2.147238 0.018511 -0.040804 1.082078 0.788428 1.043600 -0.139087 -1.128918 -1.658574 -1.109517 -0.035685 1.195317 0.692300 -0.802305 1.861938 -0.843679 -1.269949 3.581303 -0.583867 -1.547436 -1.716020 0.182771 -1.376662 -0.986128 2.252505 -2.183751 1.439731 -0.719853 2.482936 -0.304783 -0.612984 0.339112 -2.426663 -0.503093 -2.005334 0.143801 -0.108000 1.038597 -1.864378 -1.319931 -0.456385 -0.942015 -0.929807 0.899259 -0.195409 0.043606 0.994858 0.618713 2.785770 2.251312 0.612476 -0.848459 -1.143708 1.180493 0.848456 -0.756071 -1.099638 -0.452371 -0.334535 -0.520544 -0.356709 0.355449 1.074390 -1.815199 -0.203461 -0.561711 0.127694 0.471896 1.060294 -3.466259 0.587217 0.902107 1.203227 1.314758 1.207123 1.873706 2.082906 1.309981 0.861413 -0.300522 0.262037 -1.072090 0.504462 1.035131 0.505423 0.855955 2.328930 1.714154 1.016009 1.537164 1.805289 1.450191 1.697306 0.067341 2.953268 0.356918 -0.789818 0.237888 0.807155 1.778408 2.690969 -0.221276 1.156589 1.142843 0.046151 -1.179736 -1.317865 0.778193 -0.411421 0.112983 0.758864 0.748311 0.200770 -0.725700 2.301917 -0.343250 -2.963365 0.933664 0.782997 1.509043 1.483815 0.341129 0.827598 0.609780 -0.961797 2.411647 1.674278 0.833970 -1.763258 0.032625 0.246555 0.424487 2.167892 1.731612 -1.278320 0.709547 0.345020 1.905142 0.049235 1.312445 -1.147193 -0.338316 0.970448 -1.252064 -0.191302 0.153651 0.370932 -0.136479 0.334102 -1.931230 -1.795260 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 1.228666 -2.966625 1.589009 -3.392542 -2.759969 2.180959 -2.477112 -2.414323 -0.455981 0.773220 0.810377 0.562752 0.367428 2.493881 0.237569 -2.899574 0.181189 -0.989714 1.197771 -0.167171 -0.528068 1.563250 -1.305421 0.183594 0.013865 -1.821630 -0.169140 1.409009 0.695754 -0.137376 -0.760160 -2.194372 -3.044663 3.888404 2.268969 0.124704 0.317733 7.017745 0.660484 2.606111 -1.750672 -3.444876 2.303967 -1.154874 -0.752636 1.235135 -1.361680 1.456683 -1.505796 -0.375228 2.381675 -1.018835 2.102807 0.022378 -0.252578 -0.637099 -2.927287 -0.116471 1.036660 -1.303683 -1.291277 -1.571987 -0.542851 1.417819 -3.125891 -1.621360 2.342053 2.091233 -0.569689 -1.628654 -0.526490 -2.789241 4.217348 2.597999 -0.731509 -0.019879 2.263905 -2.243239 2.416960 1.204407 -5.938621 -1.354154 -2.517795 -5.623059 4.617118 -0.904337 4.331007 -5.482010 5.107572 -6.775136 1.019023 -1.921649 1.797948 4.595945 -3.403945 1.713347 3.519447 6.807294 1.398881 -2.052855 3.651278 1.394996 -2.266239 3.453393 3.581816 0.462039 -1.309484 -0.688884 -2.732829 -2.655295 0.506002 -3.836732 -5.074857 2.183685 0.093009 0.428867 -2.032347 2.017411 -1.830274 3.260971 -5.004463 0.427654 0.235789 -1.028828 0.768489 1.214843 -1.426869 0.439596 -0.891626 3.705827 -4.031372 1.254406 -0.613249 2.886736 -0.657399 3.043641 -3.593992 1.615780 2.454135 -2.888996 -4.005968 -2.869653 -1.640164 2.240148 -1.397148 7.518772 6.638436 -3.673587 -2.758677 4.142649 -0.957294 0.147126 3.550444 1.297776 1.521488 0.124026 -2.941404 -3.275197 -2.365445 -0.690314 -2.691180 1.539288 0.860740 3.871969 -0.568641 3.116231 7.134316 -1.220589 -3.697770 -2.184772 1.081029 -2.555184 -2.702208 3.377276 -1.202284 1.584312 2.681934 5.175121 0.104318 -0.949056 0.840255 -2.951500 -0.748319 -2.970097 0.123674 -1.353513 1.382061 -2.134024 -2.594640 -1.255340 -1.388451 -1.814562 1.172120 4.275326 1.841062 2.923918 1.314707 3.925527 5.796371 2.098538 -1.827263 -2.513378 2.096267 2.547845 -2.070223 0.641909 -1.654432 -0.395826 -0.331350 0.673963 0.792618 3.032931 -4.131650 -0.863005 -1.869900 2.424771 1.701435 3.345661 -8.177174 1.151280 1.905552 1.600474 2.806812 2.155265 3.085805 4.351636 3.385763 1.102775 -0.412843 2.035748 -0.900726 -1.202776 1.560462 3.414827 1.669694 4.188419 3.348137 2.718908 2.776438 3.932984 2.827583 3.023384 -0.776414 6.277705 -0.027034 -1.180260 -1.059147 1.856674 3.645670 5.367526 -0.885497 2.887908 2.042893 0.914660 -1.870408 -4.201449 2.416363 -1.052819 2.970835 -1.494358 1.941939 1.238973 -2.184585 3.846339 -0.335088 -5.662958 2.337106 1.523764 3.008767 3.681300 0.908163 1.379257 -0.169341 -3.192116 4.914153 4.089389 1.250585 -3.155791 2.612021 0.880844 2.093835 -0.425782 3.788391 -0.216671 3.006357 0.357964 2.273227 1.241892 1.068340 -2.759329 -1.773865 2.472518 -3.358338 0.182179 2.440303 1.347385 -1.728827 1.789008 -2.603351 -3.422407 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 1.062216 -3.186038 1.497540 -3.728746 -3.090138 2.864049 -3.385496 -3.225408 -0.374007 -0.269260 1.343818 0.858294 1.217854 2.747155 0.180775 -2.970191 0.003242 -0.543609 1.286209 -0.089890 -0.569330 1.558689 -1.911357 0.345214 -0.247315 -2.124665 -0.090539 1.325989 0.332716 -0.035311 -1.347836 -2.437135 -3.680289 4.488567 2.862350 0.499156 0.767990 7.694028 0.841813 2.425923 -1.806627 -3.569130 2.094335 -1.234304 -1.160826 1.675726 -2.073723 1.004675 -1.571025 0.170646 2.807181 -1.717693 2.235910 0.631616 0.274189 -0.924960 -2.925900 -0.468575 1.305272 -1.482967 -1.460675 -1.985866 -0.457916 1.199158 -3.580690 -1.546401 2.992554 3.088175 0.182074 -1.772171 -0.484600 -4.025820 5.113498 2.926862 -0.829593 -0.169850 2.456324 -3.134403 2.518110 2.238065 -6.688930 -1.300822 -2.370362 -6.204847 5.154571 -1.064907 4.958626 -5.899871 5.436700 -7.641647 0.753202 -1.986053 2.143310 4.852668 -4.313577 1.297924 4.233476 8.078202 1.468301 -1.902138 3.982424 1.351915 -3.238535 3.476683 4.236898 0.307737 -0.967348 -0.482537 -2.857972 -3.214028 0.528774 -4.203836 -6.176514 2.223352 -0.290023 0.252329 -3.205402 2.520373 -1.621038 3.983044 -4.976677 0.483426 0.204642 -1.124691 0.883158 1.468417 -1.501045 0.660148 -1.141228 3.795572 -4.732339 1.000697 -1.451959 2.938352 -0.823797 3.224901 -4.771472 1.619715 2.848177 -3.558066 -4.475687 -2.670035 -1.965747 2.890858 -1.271462 8.261098 7.401197 -4.579806 -3.357840 4.684861 -0.242368 -0.042768 4.478910 1.654412 1.858489 0.020181 -2.679173 -3.994321 -2.619329 -1.373942 -4.607641 1.561036 1.235221 3.994063 -0.374917 2.954093 9.710392 -1.546224 -4.240758 -1.780836 1.349771 -2.608733 -3.139346 3.998627 -0.390691 1.885815 3.196133 5.593749 -0.448101 -1.109320 0.687303 -2.697955 -0.886013 -3.009162 0.118735 -1.733194 2.037482 -1.900370 -2.845453 -0.917083 -1.715058 -1.888229 1.129599 6.158433 2.035473 3.165177 1.138775 3.290936 7.081779 2.581787 -1.946810 -2.517597 2.372198 3.255931 -2.582774 0.944739 -1.761780 -0.759046 -0.303086 -0.082927 1.013384 3.536527 -4.730498 -0.876783 -2.519871 2.806084 2.418667 3.821496 -9.114179 1.601693 1.359196 1.451815 3.034707 1.987926 3.703341 5.269360 4.135241 0.607373 -0.163664 1.970070 -0.612882 -1.359399 1.957852 4.368197 1.750606 4.999529 3.667873 3.116139 2.548495 4.163603 4.275956 3.498060 -0.511197 7.488673 0.300200 -0.916394 -1.508383 1.875813 4.158055 6.420895 -0.979717 3.790013 1.786226 1.423478 -2.309794 -5.457227 2.723192 -0.893592 2.684767 -1.968730 1.946839 1.433820 -2.870661 4.616839 -0.088097 -5.901536 2.248134 1.544734 2.999014 3.919891 0.909353 1.261275 -0.051033 -3.360135 5.972307 4.457266 1.671144 -3.565822 2.604320 0.927893 2.372869 -0.766768 4.112278 0.642293 4.507798 0.364481 2.492267 1.479839 0.701705 -3.115024 -1.508410 2.628034 -3.928957 0.118371 3.026976 1.892484 -2.050056 2.042541 -3.174378 -4.431000 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.420496 -0.420539 0.750615 -0.891220 -0.895983 -0.140529 0.033303 -0.075902 -0.126572 0.379305 0.213635 -0.473287 -0.625862 1.082397 -0.200631 -0.959330 0.171243 -0.452273 -0.029530 -0.329235 0.124637 0.500020 0.265026 -0.295792 0.295558 -0.341339 -0.220068 0.777899 0.933841 -0.435501 0.100101 -0.229288 0.026532 0.829567 -0.098521 -0.369252 -0.186398 1.817774 -0.074560 0.719909 -0.915059 -0.781474 1.354744 -0.318439 -0.064310 -1.105045 -0.880650 0.869733 -0.713688 -0.384387 0.255341 0.356482 0.316130 -0.820229 -0.411804 0.627047 -1.482157 0.765127 0.222066 -0.309838 -0.154158 -0.033349 -0.359816 0.285198 -0.092180 -0.730105 0.163670 0.033318 -0.925333 -0.177522 -0.145602 -0.152560 1.561238 0.170377 -0.041883 0.412740 0.605395 -0.316562 0.915672 -0.688766 -1.080836 -0.474721 -0.336060 -0.502721 1.038761 -0.304764 0.623158 -1.709856 0.578083 -1.582190 0.861941 -1.033439 0.295951 1.179964 -0.950565 1.021363 0.451629 0.305255 0.587321 0.096313 1.177306 0.501018 0.549058 0.766469 0.655875 0.216249 -0.417103 -0.466213 -0.786239 -0.746190 0.011257 -0.623715 -1.729138 0.707233 0.166862 0.144894 0.294807 -0.010799 -0.116231 0.709583 -1.047125 0.428017 0.603752 -0.281233 -0.044748 0.714886 -0.450520 -0.136833 -0.497271 1.165645 -0.580985 0.733664 0.544558 0.801857 -0.002592 -1.015016 -0.523743 0.321512 0.176688 -0.476502 -1.020320 -1.037637 0.024180 -0.069265 -0.585393 1.004503 1.790306 -0.368230 -0.842701 1.001783 0.428197 0.308655 0.685827 0.125150 1.216306 -0.223949 -0.919102 -0.411312 -0.536083 0.592608 0.094070 0.265024 -0.248489 0.961487 -0.075505 -0.730417 1.018866 -0.396257 -0.513269 0.008396 0.230733 -0.818670 -0.805298 0.939846 0.377443 0.935225 0.248729 1.587249 0.152162 -0.861890 0.448355 -0.480759 -0.066276 -0.639305 0.136559 0.116946 0.123398 -0.827513 -0.771741 -0.703789 -0.423144 -0.424726 0.593889 0.006873 0.515290 0.564863 0.421515 0.730103 0.837559 0.042503 0.063904 -1.303492 0.378020 0.599838 0.033406 -1.212244 -0.130379 -0.048882 -0.009980 0.547268 0.015583 0.601352 -0.410049 -0.496669 -0.010714 -0.086024 0.002383 0.244228 -1.110085 -0.087704 0.352634 0.735896 0.342565 1.071866 1.226332 0.559644 0.324213 0.793018 -0.085704 0.305759 -0.153316 -0.232304 -0.003699 0.225614 0.532430 0.856589 0.739569 0.460704 1.319720 0.903982 -0.301765 0.817909 0.046897 1.394639 -0.366863 -0.603414 -0.102543 0.345529 1.105203 1.519900 0.130400 -0.157191 0.828736 0.294231 -0.042578 -1.019438 0.139980 -0.334413 0.325739 0.870257 0.524532 0.013329 -0.078039 0.827147 -0.128613 -1.750022 1.148720 0.320784 0.808579 0.553946 0.150830 0.203005 0.370183 -0.831911 0.201146 0.807343 0.429337 -0.945001 -0.095868 0.159397 0.795274 0.107109 1.054933 -1.375377 0.042899 0.617452 0.796962 -0.044230 0.598904 -0.738736 -1.076628 0.448095 -0.234689 -0.128358 0.321366 -0.204018 -0.984663 0.062232 -0.316828 -0.437423 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.269825 -2.091816 1.287722 -2.887077 -1.956014 -0.034979 -1.220720 -1.339345 -0.118543 0.623559 1.248335 -1.491157 -0.950154 3.073814 0.480291 -2.043747 0.510671 0.239765 1.144855 0.446442 0.471997 1.030828 -0.460645 -0.522657 0.201525 -0.449812 -0.858426 1.392838 2.129734 -0.295863 -0.599446 -1.199930 -0.619376 2.680873 0.303525 -0.305209 -0.663074 5.062453 -0.724812 2.974063 -2.417867 -1.979677 2.989008 -1.004805 -0.459405 -1.983690 -2.224011 1.517014 -1.877641 -1.246786 0.693843 0.439651 1.319059 -1.618911 -0.838828 0.803428 -3.502223 0.813000 1.689864 -1.117550 -0.030547 -0.249056 -1.069465 0.854063 -2.157051 -1.226216 0.544944 -0.140799 -1.155164 -0.871267 -0.713186 -1.416601 3.900012 1.556213 -0.644527 1.124497 1.826024 -1.962031 2.514536 -0.447119 -3.592051 -1.175285 -1.587309 -2.334726 3.103673 -0.505910 2.647924 -3.790386 2.401719 -4.894710 1.701486 -3.093146 0.738194 3.911755 -3.004078 1.937741 2.326157 2.708955 1.936712 -0.027410 2.783667 2.140734 -0.266022 1.909616 2.693977 1.183304 -0.995667 -1.145672 -1.867057 -2.209611 -0.049106 -2.367164 -4.708842 1.738367 -0.170377 0.436917 -0.143334 0.687519 -0.401874 2.502035 -2.689373 0.956713 1.247984 -0.820278 -0.274181 2.359544 -0.835852 -0.783161 -1.495257 2.773045 -2.125212 1.602799 1.165319 2.324301 -0.970738 -0.861156 -1.757300 0.649109 0.377218 -2.389399 -2.644059 -3.100389 -0.288068 1.049114 -0.694179 3.388406 5.036914 -1.976867 -2.118662 3.093343 0.606558 0.042315 2.715064 0.919016 3.105463 -0.136740 -2.121458 -2.141244 -1.942749 0.251584 0.143716 0.937336 -0.419514 2.410739 -0.615891 -1.686636 4.381736 -0.672312 -1.582443 -0.757383 0.633715 -2.570743 -2.638563 2.675561 -0.936680 2.318825 0.267804 3.942191 0.672170 -1.254231 1.537578 -1.648332 -0.493288 -1.745415 -0.015873 0.354672 0.850520 -2.134950 -1.999855 -1.571492 -1.115406 -1.167422 1.953688 0.696730 1.014760 2.232604 0.548768 2.366540 2.817168 0.142467 -0.327093 -2.602697 1.469669 1.509251 -1.339035 -2.255883 -0.417575 -1.001390 0.057073 0.484512 0.224515 2.607577 -2.513993 -1.381592 -0.328336 0.568140 0.474843 0.670512 -4.528320 0.553147 0.887478 2.106765 2.115100 2.423349 2.303962 2.780511 1.148517 1.890464 -0.725209 1.184691 -0.977877 -0.417561 0.055698 1.026857 1.185045 2.689664 2.107296 2.025756 2.772159 2.368548 0.717304 2.780220 -0.218347 3.548146 0.541747 -1.520826 0.488788 0.649667 3.206247 4.269388 -0.038263 0.646339 1.780520 0.124515 -1.494619 -2.927008 0.628590 -0.103741 -0.036795 1.504030 1.447760 0.873705 -0.928255 2.416305 0.023428 -4.631308 2.236510 0.972006 1.958877 2.175560 0.596182 0.731622 0.885371 -1.618222 2.325357 2.375603 1.346870 -2.985993 0.360166 0.897464 1.798952 1.485023 3.017184 -2.562333 1.016246 0.941576 1.654202 0.290899 1.696952 -2.305443 -1.784992 1.401670 -1.220832 -0.492214 -0.246639 -0.076995 -1.739451 0.092275 -1.474640 -1.859327 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.879240 -7.643819 4.147835 -9.822459 -6.810950 1.783505 -3.306554 -5.736456 -1.272179 2.474778 4.021953 -3.934429 -2.352457 9.769407 1.194738 -7.635780 2.463036 2.002538 2.753908 -0.160820 0.527397 3.918912 -1.804992 -2.640983 0.846181 -3.429739 -0.785933 6.213262 6.002617 1.044483 -1.453967 -4.604657 -3.503795 10.532677 3.549974 0.341841 -2.129176 18.131086 -2.941021 11.424827 -8.636511 -7.344722 11.016727 -2.695242 -1.799620 -5.732812 -8.169582 4.985588 -6.919149 -4.087598 2.937385 -0.897432 6.252779 -4.593494 -2.244950 3.528392 -9.880753 1.142065 4.618321 -5.410596 -2.534148 -2.118234 -2.902167 3.951341 -9.203313 -5.571251 2.809602 1.545198 -2.953826 -2.940613 -3.446651 -6.932241 13.211102 4.990871 -2.805865 1.896454 4.848083 -7.326236 7.537755 1.752188 -13.017074 -4.565641 -5.088348 -9.709765 10.369416 -1.934943 11.451266 -15.711479 8.218712 -18.262495 6.059479 -8.480247 4.267579 13.387951 -10.438765 6.835987 7.291304 11.843545 4.610719 -1.190281 9.509632 6.233051 -1.533529 6.341834 10.779917 3.937236 -4.129982 -5.875769 -6.768260 -7.188431 1.130672 -9.751106 -17.290446 6.101168 -2.021444 1.332940 -2.538030 2.965542 -2.794698 9.619760 -10.395317 3.774096 3.590021 -3.176521 1.119434 6.656653 -2.700912 -0.522304 -3.732010 9.868390 -7.748195 5.001552 1.013253 8.824166 -3.922703 -0.684649 -6.545015 3.611430 3.629482 -7.780128 -10.946922 -10.989260 -2.916990 5.154895 -3.052639 12.770841 18.091726 -7.811158 -8.700145 10.492042 0.783917 0.090515 8.700253 3.146983 10.256831 -2.278194 -5.794192 -8.053816 -5.552934 1.194008 1.655376 2.130416 -2.271666 9.891941 -3.421450 -4.783744 17.626260 -2.960557 -6.376690 -4.305614 2.432523 -7.665284 -8.038499 10.833332 -5.773836 7.883494 0.141620 14.060754 0.138438 -4.995715 3.565080 -7.739090 -3.153475 -7.381126 0.801830 -0.017637 4.163954 -7.708461 -7.949978 -5.298941 -3.896086 -4.031317 6.801506 3.006706 2.544059 6.680493 2.279292 9.731839 10.661496 2.046364 -2.767556 -8.126059 5.574723 7.059024 -4.041123 -6.787379 -2.993367 -3.003828 -1.116241 -0.481754 1.658423 8.973970 -9.549296 -3.454519 -2.332823 2.476823 2.399390 4.183416 -18.757426 3.433211 3.843458 5.721476 6.564369 9.115264 9.032545 9.849389 4.712714 5.100016 -1.258385 2.645079 -5.352979 -0.798829 2.561180 3.944256 4.378303 10.756343 7.697777 6.865905 9.715648 8.448279 5.241164 9.155115 -0.034265 13.957368 2.168748 -4.533131 1.144474 2.527909 10.528668 15.499693 0.727241 2.655285 6.273714 0.291885 -5.526983 -11.155293 3.119329 -1.661730 1.244837 4.596772 5.120637 2.175502 -5.025834 10.842454 -0.319388 -17.108177 8.151345 3.855646 7.445019 9.143797 0.736656 3.525921 2.626425 -5.607653 10.055840 9.164243 4.288395 -10.095556 1.941201 2.276868 5.504446 6.531065 9.240362 -8.377869 4.735123 2.800113 8.608636 1.723869 6.668482 -7.835754 -4.009332 4.321554 -5.571237 -0.533402 0.423765 0.909866 -5.508028 0.994708 -8.079449 -6.627516 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.573963 -1.385735 2.299743 -3.223303 -3.006910 -1.170188 1.252171 0.044965 -0.485834 2.742785 0.877837 -2.286866 -3.078003 3.797830 0.366833 -2.285110 0.647936 -2.035821 0.683308 -0.097310 0.471161 1.849810 0.587589 -0.576213 0.942815 -0.036528 -1.666435 2.784869 3.034189 -1.182485 0.773842 -0.995367 0.386843 2.366012 -0.722618 -1.540800 -1.272165 6.075685 -3.014367 3.889546 -3.171813 -2.752115 4.728057 -1.014348 -0.296406 -4.494458 -2.251300 3.056625 -1.945669 -2.562495 0.729902 1.990439 1.432961 -2.862228 -1.615001 2.148189 -5.186496 1.753864 1.554131 -1.450484 -0.084727 0.719848 -1.530149 1.403337 -1.814052 -1.921775 -0.495160 -2.300401 -2.186115 -1.006263 -0.325204 0.330366 3.479032 0.914816 -0.214322 1.824221 1.992254 -1.401019 3.348899 -2.899254 -3.686218 -1.351644 -2.115674 -2.353084 2.997674 -0.660820 2.072935 -4.335737 1.814369 -4.733467 2.418274 -3.862752 0.036361 4.244720 -1.738721 3.550665 1.490287 0.453760 2.754541 -0.373505 3.099655 2.648287 2.543477 3.038724 2.016345 2.311683 -2.250850 -1.661073 -3.505255 -2.304136 0.392524 -2.125261 -4.251724 2.240136 1.260391 -0.290947 2.164634 -0.631967 -0.580717 3.073856 -2.595398 2.526496 1.921706 -0.728443 -1.264061 3.147305 -1.061854 -1.509218 -1.444254 3.414017 -1.617328 3.580468 3.057405 2.815246 -0.762937 -2.416511 -0.012541 1.043667 -0.406616 -1.767413 -2.122924 -4.551765 0.731255 -0.044330 -1.720027 2.437694 5.975366 -1.406182 -2.382307 3.312444 1.200227 0.156765 0.919871 0.388004 3.675300 0.254619 -3.786441 -1.671885 -2.589046 1.658401 5.215238 1.557305 -1.071467 2.824582 -0.767116 -3.487404 1.945528 -0.279882 -1.305266 -0.222392 0.633589 -3.088926 -3.005079 2.404804 -0.942054 2.719031 -0.010794 4.300615 1.902822 -1.657143 2.122249 -2.036556 -0.049293 -2.943219 -0.400318 1.619353 -0.321842 -2.282044 -1.740731 -3.410081 -0.998048 -1.931874 1.998407 -3.341132 1.573840 2.394473 1.276543 2.996381 1.887802 -0.436912 0.044939 -3.812105 1.388823 0.460631 -0.222440 -4.671424 -0.430246 -0.380960 0.078028 2.379760 -0.306053 2.459071 -1.703637 -1.315669 1.060854 -0.418710 -1.187580 0.213367 -4.678866 -0.210799 1.771270 3.566746 2.058027 3.275213 2.814216 2.390337 0.464502 4.116532 -1.487777 1.801698 -1.696207 -0.398560 -0.523587 -0.669957 1.691206 2.364340 2.330014 1.899940 4.268528 2.791448 -1.859346 2.840027 -0.717660 3.308508 -0.239967 -2.830407 1.087793 1.398914 3.056728 3.548196 1.401558 -1.023469 2.658147 -0.359946 -1.220185 -1.641598 0.664217 -0.736657 1.186408 3.800015 2.197436 0.329192 0.397658 1.624740 -0.587387 -6.027373 2.953854 1.141830 2.795766 1.828247 1.048982 1.304376 1.137035 -2.011345 1.552569 2.961656 1.000734 -3.196012 -0.383470 1.164486 1.927144 2.398361 3.665690 -7.390923 -1.356577 0.879963 1.387707 -0.829228 4.041867 -2.655426 -3.023153 2.032821 -0.453653 -0.677589 -0.587021 -1.008164 -2.351478 0.346018 -1.266618 -0.473130 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.158607 -0.108720 1.005144 -1.505303 -1.472002 -0.406663 1.537368 -0.430118 -0.401139 1.310379 0.253768 -0.672079 -1.245120 1.809468 -0.113029 -0.920846 -0.032229 -1.316850 -0.358434 -0.136228 -0.235651 1.237072 -0.208219 -0.144015 0.734328 -0.177088 -0.199722 1.423205 0.170974 -0.621107 0.411068 -0.774670 0.130749 1.645817 0.082066 0.016417 -0.553933 3.186964 -1.912032 2.341343 -1.918908 -1.821402 2.148522 -0.423804 -0.257034 -2.487213 -0.866089 1.302178 -0.520796 -0.956378 0.493114 0.564559 0.276081 -1.098664 0.067106 1.150679 -2.265550 0.708847 0.829148 -1.045954 -0.800674 -0.290629 -0.581828 0.210249 -1.383884 -1.118817 -0.149737 -0.759245 -0.695508 0.077634 -0.203962 -0.653061 1.610629 0.523664 -0.377094 0.756990 0.359818 -1.089818 1.385700 -1.208905 -1.716927 -0.757090 -0.172022 -0.851710 1.171964 0.025018 1.072876 -2.547271 0.274976 -2.376377 0.820920 -1.686749 0.471778 2.048678 -0.557464 1.812297 0.483425 0.308556 0.754150 -0.299631 1.251398 1.041526 1.400484 1.299962 1.022245 1.334786 -1.315349 -1.440899 -1.814497 -1.207715 0.623226 -0.820518 -2.207318 0.783333 0.328527 -0.198520 0.442437 -0.024761 -0.279571 1.782851 -1.764342 1.043793 1.048603 -0.414681 -0.048798 1.420214 -0.280795 -0.357338 -0.733060 1.343782 -0.640129 1.924176 0.240426 1.376646 -0.601837 -0.902368 -0.392109 0.066243 0.025482 -0.858713 -1.282603 -2.335479 -0.248051 0.590160 -1.009789 1.049129 3.180374 -1.281545 -1.712048 1.808950 0.873471 0.264231 0.026068 0.369315 1.525890 -0.225374 -1.150775 -0.801413 -0.877589 0.779713 2.953371 0.543539 -1.096297 1.343249 -0.492461 -2.201457 1.765544 -0.172487 -0.765187 -0.168226 0.254207 -1.243126 -1.235846 1.744879 -0.667432 1.907008 -0.717595 2.016765 -0.212641 -0.731545 0.493543 -1.536229 -0.026062 -2.149525 -0.206091 0.555184 0.441381 -1.264088 -0.884618 -1.203977 -0.715090 -0.988828 0.900577 -2.044287 0.234977 0.356125 0.676238 1.586372 1.433852 -0.234097 -0.134349 -1.701801 0.940447 0.304824 0.299949 -2.461126 -0.233974 -0.046046 -0.596130 0.596449 -0.056919 0.779979 -0.665404 -0.073113 0.612617 -0.512491 -0.593287 0.175479 -2.421498 0.143727 0.336916 1.421466 0.754207 1.413992 1.805154 1.339055 0.512940 1.309045 -0.481846 0.051403 -1.162634 0.288544 0.138951 -0.133978 1.022124 1.616890 1.439715 0.641210 1.828186 1.256304 -0.323897 1.540952 0.102466 2.396137 -0.369421 -1.103684 0.486764 0.740433 1.283509 1.793629 0.564089 -0.316039 1.289704 0.007726 -0.883011 -0.615446 0.189676 -0.561027 0.227814 1.926821 0.896903 -0.590869 0.199218 1.846361 -0.649497 -2.905077 0.932921 0.609430 1.393114 0.503346 0.329735 0.647714 1.228430 -0.772269 1.286624 1.286583 0.799940 -1.554017 -0.661203 0.296037 0.688134 1.646263 1.360959 -3.718193 -0.547432 0.343397 1.471347 -0.417922 2.282348 -1.053967 -0.559260 0.912310 -0.202738 -0.225384 0.214159 0.272270 -0.702276 0.234102 -1.729771 -0.470012 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = 0.029498 -0.291471 0.373654 -0.703349 -0.734100 -0.002555 0.231887 -0.500421 -0.220910 0.166706 0.414805 -0.435952 -0.230410 1.066832 -0.022729 -0.681756 0.044345 0.264016 -0.111805 0.097167 -0.153916 0.604224 -0.264530 -0.215386 0.466234 -0.200332 -0.160238 0.722027 0.190829 -0.077669 -0.041169 -0.418023 -0.030949 1.169516 0.156648 0.273473 -0.062756 1.748950 -0.726136 1.234615 -0.916653 -0.824739 1.284509 -0.225372 -0.183598 -0.822662 -0.925244 0.574250 -0.534811 -0.526853 0.317380 -0.010569 0.258698 -0.557551 0.180797 0.696709 -1.256554 0.259835 0.582486 -0.667541 -0.558628 -0.229095 -0.414827 -0.151295 -0.823606 -0.696861 -0.047424 0.183278 -0.095187 -0.089475 -0.263178 -0.902479 1.615288 0.238470 -0.342847 0.448778 0.194578 -0.723682 0.718538 -0.018151 -1.040526 -0.486930 0.073902 -0.368492 0.814835 0.123202 0.897842 -1.646059 0.275263 -1.612676 0.668329 -0.942226 0.619700 1.268891 -1.007316 0.816082 0.612977 0.596186 0.356941 0.328779 0.991611 0.388159 0.087363 0.514381 0.709646 0.553622 -0.608906 -0.839164 -0.879773 -0.858676 0.363445 -0.494416 -1.720950 0.376973 -0.245995 0.323155 -0.142938 0.154189 0.114456 1.052110 -0.972311 0.654521 0.637126 -0.287632 0.227564 0.864629 -0.129677 -0.187085 -0.593230 0.817271 -0.604179 0.541840 -0.218475 0.849455 -0.380164 -0.802141 -0.560730 -0.006236 0.127790 -0.846208 -0.978170 -1.224736 -0.137486 0.718565 -0.556120 0.592172 1.929113 -0.933083 -0.929035 1.136378 0.666404 0.192922 0.561270 0.388625 1.210647 -0.425651 -0.367760 -0.568200 -0.490725 0.340134 0.333733 0.165474 -0.679251 0.764183 -0.129440 -1.394710 2.244333 -0.266832 -0.505027 0.057641 0.243850 -0.531724 -0.679552 1.286240 -0.033664 1.059478 -0.386046 1.477195 -0.349080 -0.620508 0.318814 -0.603446 -0.294672 -0.988300 -0.096821 0.106874 0.510659 -0.818733 -0.667134 -0.322005 -0.444570 -0.456569 0.662776 -0.049065 0.087499 0.249491 0.067756 0.470997 0.924585 -0.019614 -0.084108 -0.990512 0.439258 0.465864 -0.222315 -1.290137 -0.062231 -0.291848 -0.246739 -0.027677 0.053466 0.616269 -0.579846 -0.134735 0.090195 -0.200157 0.091615 0.101914 -1.081354 0.223942 0.020838 0.510093 0.530998 0.934688 1.334192 0.982870 0.379736 0.594227 -0.080782 -0.027962 -0.566775 0.294170 0.083212 0.571208 0.601511 0.933903 0.838475 0.493928 0.743022 0.457143 0.598349 1.116830 0.469322 1.675277 0.046522 -0.431940 0.258821 0.219935 1.072222 1.310888 -0.117926 0.068522 0.567436 0.164352 -0.574590 -0.767042 0.180488 -0.123511 -0.497558 0.862580 0.303625 -0.052250 -0.291387 1.427741 -0.235054 -1.683409 0.746614 0.297457 0.752744 0.389892 0.180811 0.395132 0.655313 -0.266379 0.738888 0.721412 0.828376 -1.136892 -0.272385 0.091293 0.536663 0.946993 0.785118 -1.444658 0.347891 0.313830 0.958598 -0.154826 0.667905 -0.583361 -0.202143 0.236476 -0.329913 -0.116160 0.016120 0.139932 -0.304602 0.064400 -1.178753 -0.568766 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.484032 -1.007629 2.029417 -4.201135 -4.231762 0.594987 -0.234622 -3.703320 -1.691394 4.290697 1.611038 -2.391271 -0.922371 5.615208 -0.939909 -3.189693 -0.219113 -0.885474 -0.092168 -0.553519 -1.565441 2.923140 -1.947489 -1.480342 1.557495 -1.117400 0.007728 2.381252 0.227134 -0.256684 -0.524185 -2.942212 -0.581358 6.768417 2.424819 -0.048154 -0.988424 9.582600 -3.370367 5.648937 -5.647741 -5.795306 6.344832 -1.246458 0.317595 -3.148721 -2.767362 3.763640 -2.160307 -1.863416 1.629115 -0.537360 1.566985 -2.765807 -0.216190 2.228106 -6.423288 2.771582 3.282826 -3.448435 -3.615360 -1.899935 -0.603589 0.961802 -4.158115 -3.731769 0.603389 1.682244 -1.065317 -0.684915 -2.518065 -4.717413 5.603002 1.936175 -1.809065 1.176234 0.049233 -3.117639 3.723858 -2.099316 -6.455334 -2.542569 -0.176026 -3.532405 4.109652 1.797593 5.136780 -9.086474 3.476158 -9.593031 2.708923 -3.781533 3.406802 6.901109 -4.179772 3.872298 3.056117 4.132127 3.238585 0.049029 4.703996 2.007791 0.332684 3.236934 3.806835 4.075463 -3.137424 -3.743881 -4.106746 -4.347075 1.246227 -2.329575 -6.715508 3.033285 -1.715028 1.067721 -1.576822 1.004790 -1.382546 5.010414 -7.530891 -0.418044 1.962149 -1.586050 2.625790 3.666611 -0.938631 0.514356 -2.482613 4.260194 -2.942562 2.421785 -0.819449 5.074358 -2.456481 -2.814446 -5.075521 1.551021 2.435381 -4.853455 -5.790863 -7.490441 -1.451531 2.607699 -3.434716 6.376112 10.247058 -5.172214 -5.154527 6.084203 0.687295 0.314776 4.505676 1.722749 6.133610 -2.244762 -1.775030 -2.136951 -2.527493 1.013574 1.896029 0.526365 -3.045757 4.658892 -0.947654 -2.359080 7.077847 -0.170627 -3.432226 -2.519953 1.658096 -2.793278 -3.092639 5.904308 -2.609828 4.212179 -1.099300 8.021616 -2.320913 -2.740851 1.894703 -5.692264 -1.498790 -3.948101 -0.392526 -0.299551 3.607367 -4.624750 -3.554691 -1.222793 -2.159196 -3.019442 3.770421 -0.093069 0.528477 2.086553 0.614152 5.322147 5.816495 -0.012171 -0.360596 -4.706136 2.626300 3.292765 -0.548232 -6.023311 -1.871361 -1.807835 -1.743198 0.894677 0.385259 3.854454 -3.933478 -0.540780 0.799359 0.101404 1.496869 1.726468 -5.792121 2.195001 -0.159502 3.101395 3.073614 5.685709 4.846867 6.178058 2.860819 2.433668 -1.163186 -0.616538 -1.470158 1.004760 1.733140 2.207582 3.563974 5.089294 4.575383 3.135176 4.297328 2.723132 1.149865 5.988402 -0.163944 8.591079 -2.226690 -0.883167 0.558708 1.266642 5.534776 7.460480 -1.788059 -0.891397 3.251988 -0.909698 -3.065954 -3.312819 1.579726 -1.082662 -0.338555 1.796154 3.508079 0.017350 -2.178135 7.866413 -1.564589 -9.123745 4.802139 2.136240 4.309703 3.130166 0.322323 1.999581 2.399436 -2.043173 4.478094 5.262737 3.964966 -5.776281 -0.101051 0.700450 3.783207 3.958318 3.819371 -7.433008 2.249484 2.383639 4.792378 0.161046 3.690521 -4.173936 -1.651861 2.134567 -1.881303 0.103846 0.960282 2.406151 -1.515377 1.620610 -4.417471 -2.703121 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 2.649261 -1.386295 2.410332 -5.226759 -2.521214 -0.737081 1.933858 -3.247677 -2.018644 5.670468 0.656381 -3.328596 -3.104556 5.667027 -0.665545 -2.681117 1.138951 -2.680098 0.598630 0.637456 -1.466033 2.597886 -0.828622 -2.608140 1.945185 -0.341098 0.334181 3.778293 1.988803 -0.452470 -0.198812 -3.262352 1.466314 7.547623 2.458486 -1.513021 -2.394485 10.408185 -4.317282 8.488129 -4.170757 -5.307691 8.595580 -1.325982 -0.620113 -5.200202 -1.888070 5.300409 -1.673635 -5.056745 0.837938 0.592349 2.035665 -4.969436 -3.326522 4.372530 -6.819080 2.227137 3.765653 -2.324782 -2.853642 -1.707339 -0.700816 2.140668 -5.535464 -4.391286 -0.199369 -2.220151 -3.916077 -1.117624 -4.189823 -2.674043 5.691760 2.573809 -2.041435 1.404741 -0.133020 -2.927158 3.934249 -2.575538 -5.975868 -2.917540 -2.666593 -3.152693 4.921419 1.098917 4.443665 -9.376960 2.876206 -9.604884 2.738864 -5.287547 3.123885 7.805744 -3.325881 5.636040 1.811915 4.354735 1.907334 -1.431849 5.331353 3.724918 1.122322 3.111904 5.412867 5.023591 -4.136036 -5.638952 -4.667615 -3.156629 1.857926 -2.889232 -7.332590 3.681972 -2.317654 0.094171 0.129502 0.593861 -3.600486 4.920865 -8.851019 -0.007144 1.373076 -1.686024 2.285273 4.854578 -0.422022 -0.486368 -1.490823 5.029155 -0.800380 2.993205 1.746960 5.869204 -2.341950 -2.073637 -1.885302 1.451879 2.783213 -4.621790 -6.438734 -9.761895 -1.619585 1.445034 -3.841188 5.774224 10.567888 -3.139143 -3.643810 5.880584 -0.683516 0.930575 3.589229 1.450009 7.318399 -2.663259 -3.162255 -0.609050 -3.001701 2.606683 7.400300 -0.110000 -3.689525 5.327161 -2.581559 -2.294153 3.118639 0.469197 -2.349745 -1.644930 -0.104452 -3.645294 -5.530823 6.342377 -5.966294 4.062264 -2.381245 8.946201 0.223300 -2.365108 2.603700 -5.506210 -1.131821 -6.706719 0.107477 -0.356805 3.157996 -5.818676 -3.961503 -1.648130 -0.445305 -3.107430 6.197872 -4.825210 0.247148 1.548909 0.711428 7.119294 3.980118 -2.475490 -0.011150 -5.237788 2.705159 2.829300 0.247402 -6.836215 -2.333675 -1.706410 -2.412953 2.087567 -0.958338 3.445495 -5.030054 -0.992691 2.989627 0.011662 -0.840620 1.017211 -8.517698 2.189756 2.586923 3.253657 4.357938 7.902294 4.110144 5.398955 1.037472 3.646087 -2.062993 0.509719 -6.573775 1.080341 0.119753 1.550591 3.820272 5.174042 4.269796 3.755217 5.605392 2.986511 -0.690580 6.235547 -0.024490 6.719296 -0.591407 -2.980247 2.571501 0.496090 5.889811 6.909726 -0.203774 -3.568034 4.593300 -2.912394 -3.918948 -2.121325 1.605053 -0.997232 0.605900 4.345413 4.111840 1.126537 -1.070371 8.035608 -3.192312 -11.630409 4.278782 3.077444 4.720323 4.932402 -0.402807 4.757788 2.385878 -0.838613 3.512915 5.007806 3.532038 -6.253910 1.944228 1.159492 2.938617 4.876178 2.757564 -12.162421 -0.814907 1.061163 6.246073 0.798477 5.965883 -4.463593 -0.551907 3.204656 0.291704 1.170722 -1.721803 3.543786 -1.962810 0.595346 -5.189904 0.737407 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.057188 -0.124583 0.184027 -0.448449 -0.525744 0.102886 -0.164865 -0.275453 -0.093735 -0.134276 0.161898 -0.125558 -0.264496 0.543746 -0.108314 -0.514810 -0.107957 -0.060302 -0.010246 0.035089 -0.078920 0.286835 -0.157524 0.024815 0.100135 -0.105382 -0.125282 0.189345 0.294365 -0.232137 -0.164485 -0.248109 -0.114236 0.550337 0.160534 0.165864 0.026105 0.949183 0.120227 0.473232 -0.551551 -0.454429 0.377076 -0.146163 -0.034770 -0.499274 -0.368862 0.281547 -0.469646 0.021942 0.307260 -0.016533 -0.004684 -0.095024 0.196015 0.173612 -0.687395 0.483136 0.246800 -0.148274 -0.008071 -0.162631 -0.283106 -0.057894 -0.076395 -0.282409 0.024398 0.295739 -0.233241 -0.042550 -0.045982 -0.362258 0.936843 0.223223 -0.255201 0.160549 0.234578 -0.230773 0.333324 -0.421522 -0.665082 -0.161648 0.040094 0.000200 0.530814 0.096314 0.292240 -0.786642 0.206622 -0.869063 0.261805 -0.457977 0.247404 0.597511 -0.505991 0.292966 0.381400 0.062264 0.385611 0.174969 0.485970 0.168707 -0.029637 0.314597 0.287592 0.091332 -0.089011 -0.183441 -0.286215 -0.491077 -0.047529 -0.133762 -0.900824 0.191998 0.005368 0.406429 -0.171034 0.245098 0.047061 0.127779 -0.582198 -0.010091 0.192820 -0.138174 0.248933 0.400354 -0.159837 0.025544 -0.317334 0.465892 -0.391576 0.297768 -0.130831 0.364203 0.033893 -0.488963 -0.703039 0.046272 0.174859 -0.339749 -0.502892 -0.439879 -0.105655 0.211575 -0.265887 0.464794 0.974959 -0.517015 -0.471662 0.661198 0.202161 0.219103 0.469263 0.172557 0.486929 -0.055125 -0.252840 -0.237638 -0.333558 -0.051367 -0.284507 0.181140 -0.222192 0.328133 0.033290 -0.472297 0.624601 -0.148057 -0.419603 -0.136285 0.027408 -0.346759 -0.337107 0.523690 0.104943 0.468737 0.055316 0.705727 -0.170850 -0.407368 0.139136 -0.265772 -0.009702 -0.245153 -0.046852 0.045748 0.183525 -0.528153 -0.305155 -0.055994 -0.221995 -0.330901 0.184031 0.325268 0.057323 0.253036 0.201815 0.388648 0.703260 0.107576 0.034380 -0.489798 0.292061 0.180822 -0.133641 -0.533595 0.000898 -0.096282 -0.089159 0.226194 0.026164 0.202181 -0.136084 -0.128939 -0.104157 -0.090757 0.305985 0.257505 -0.244367 0.024885 0.023343 0.254663 0.268619 0.334567 0.581605 0.561419 0.387128 0.242704 -0.013090 0.061163 0.218374 -0.046354 0.153792 0.246820 0.279451 0.395722 0.472888 0.183542 0.446025 0.415715 0.155128 0.519869 0.106783 0.915929 -0.159790 -0.191469 -0.051413 0.113062 0.522487 0.808896 -0.371475 0.271369 0.302178 0.183483 -0.057402 -0.481299 0.163861 -0.114669 -0.216760 0.366268 0.177295 0.038623 -0.163487 0.596634 -0.144686 -0.677080 0.405001 0.153769 0.337548 0.101456 0.166501 -0.035433 0.244993 -0.454492 0.345205 0.433545 0.373505 -0.465158 -0.196604 0.031621 0.275521 0.171953 0.493539 -0.251352 0.109801 0.326352 0.461489 0.066041 0.029618 -0.309794 -0.447758 0.249339 -0.216999 -0.103165 0.127119 0.085514 -0.171505 0.007680 -0.159340 -0.547660 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.195562 -0.616264 0.413270 -0.830208 -0.683291 0.305970 -0.344119 -0.449351 -0.123633 0.015920 0.148668 -0.029143 -0.170208 0.793294 0.007325 -0.826178 -0.005644 -0.176400 0.134962 0.024794 -0.131084 0.459073 -0.253572 0.012994 0.170948 -0.365178 -0.106365 0.436630 0.279400 -0.196015 -0.118671 -0.496224 -0.495569 0.996739 0.342880 0.217726 0.035074 1.778713 0.175607 0.899820 -0.618258 -0.867035 0.726654 -0.298823 -0.171762 -0.169209 -0.468279 0.443572 -0.569210 -0.131440 0.502700 -0.057142 0.256490 -0.200875 0.076669 0.090360 -0.972965 0.241774 0.310834 -0.319896 -0.282472 -0.351303 -0.340767 0.107670 -0.624755 -0.469256 0.320949 0.412284 -0.343328 -0.205790 -0.078282 -0.590777 1.339574 0.563708 -0.253224 0.221302 0.557474 -0.454748 0.619686 -0.074334 -1.300604 -0.378699 -0.346846 -0.899243 1.117766 -0.088518 0.873386 -1.411561 0.940325 -1.579262 0.387977 -0.723087 0.443695 1.195278 -0.854639 0.636053 0.749386 1.126788 0.346438 -0.184249 0.923216 0.375568 -0.312443 0.773299 0.793992 0.119496 -0.334498 -0.362174 -0.670039 -0.711722 0.086905 -0.765802 -1.429953 0.447683 0.038871 0.369991 -0.325535 0.516594 -0.273497 0.574389 -1.248828 0.193912 0.249872 -0.270005 0.219429 0.444463 -0.327365 -0.020620 -0.373154 0.923111 -0.832619 0.429808 -0.141689 0.711585 -0.091544 0.223787 -0.846445 0.173814 0.397981 -0.636012 -0.980170 -0.788262 -0.363725 0.599339 -0.398976 1.491822 1.727546 -0.824540 -0.723083 1.095062 0.012365 0.278351 0.750785 0.355856 0.539235 -0.020902 -0.669090 -0.664917 -0.534288 -0.000135 -0.501289 0.368761 -0.103437 0.864872 -0.107199 0.106067 1.640139 -0.342414 -0.760068 -0.457489 0.152202 -0.697349 -0.690878 0.976480 -0.189358 0.705679 0.335536 1.320001 -0.055819 -0.416069 0.234567 -0.721778 -0.122344 -0.787138 0.015318 -0.222812 0.302166 -0.757120 -0.668414 -0.269984 -0.379990 -0.463218 0.344750 0.728780 0.298194 0.536048 0.356289 0.949535 1.258764 0.309326 -0.285314 -0.819485 0.501151 0.479788 -0.379692 -0.275736 -0.168144 -0.029576 -0.143876 0.237010 0.154431 0.537916 -0.756469 -0.217838 -0.307876 0.301561 0.329184 0.581905 -1.547767 0.132843 0.409691 0.427748 0.655410 0.587400 1.008658 0.926261 0.670835 0.393813 -0.093138 0.351533 -0.178443 -0.172792 0.256678 0.713601 0.437936 0.923878 0.849592 0.511329 0.771634 0.937497 0.485584 0.821640 0.053077 1.588752 -0.026339 -0.422421 -0.097841 0.371857 0.929965 1.324249 -0.355901 0.620343 0.613310 0.305036 -0.348112 -0.955218 0.389992 -0.251704 0.295914 0.137845 0.317728 0.117046 -0.326760 1.011020 -0.158110 -1.409207 0.594719 0.363647 0.717418 0.608862 0.259015 0.232791 0.256674 -0.786202 0.942159 0.819348 0.415403 -0.833565 0.313920 0.164387 0.484481 0.153867 0.927322 -0.263922 0.456989 0.212643 0.701779 0.213041 0.237693 -0.550058 -0.540407 0.506130 -0.652782 -0.079694 0.430594 0.204468 -0.348457 0.231244 -0.637469 -0.897066 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/topological-sorting.cpp__main = 1.036380 -0.426810 1.204695 -2.446723 -2.131304 -0.461864 0.011432 -1.236249 -0.685937 1.095511 0.345968 -1.718645 -1.778807 3.204100 -1.081077 -2.446357 -0.021520 -0.538903 0.027892 -0.196611 -0.840934 1.601990 -0.572740 -0.842813 1.514012 -0.536994 -0.386483 1.767904 2.292297 -0.887235 -0.461167 -1.260214 0.444730 3.903916 0.537805 -0.415390 -0.061104 5.876415 -0.476499 2.766488 -2.836213 -2.682512 3.963633 -0.720854 -0.337579 -3.021395 -1.783910 2.181456 -3.130496 -0.206338 0.832902 0.293139 0.012678 -2.135379 -0.056319 2.369501 -4.956478 3.170658 1.672142 -0.608028 -1.031423 -1.196956 -1.186089 -0.439350 -0.852538 -2.239382 -0.101723 0.582218 -2.339754 0.175808 -1.374419 -1.477254 4.577774 1.037414 -1.340870 1.417976 0.487733 -1.540405 1.820034 -2.756738 -3.122445 -1.419518 0.551672 -0.069269 3.088769 0.741825 1.527464 -5.100091 0.714320 -5.017611 1.576982 -3.440886 2.041214 4.265893 -3.308661 2.920670 1.122168 0.355838 1.593630 0.767238 3.316649 1.360818 0.585578 1.335045 1.551054 1.707812 -1.038617 -1.995682 -1.608016 -2.008415 -0.532529 -0.485569 -5.171072 1.295965 -1.366235 1.767191 -0.086645 0.724602 -0.877601 1.554281 -3.986365 -0.763022 1.002426 -0.981291 1.721993 2.649987 -0.500791 -0.293235 -1.700467 2.996142 -0.785585 1.278344 -0.443621 2.544221 -0.455344 -3.709366 -3.337533 -0.295388 0.944288 -2.259211 -3.736010 -3.744156 -0.884449 0.167536 -1.731674 2.704074 5.853162 -1.805248 -2.525563 3.815806 0.009723 1.948008 3.252873 0.944063 3.751197 -1.293272 -0.905887 -0.573714 -1.048294 0.684064 -0.148801 0.125708 -2.084873 1.838585 -0.019461 -1.475807 1.908094 -0.186818 -1.270488 -1.365442 -0.027716 -1.969497 -2.569331 4.036767 -0.829602 3.170111 -0.908103 4.987806 -0.970528 -3.015682 1.375894 -2.062172 0.024503 -2.025512 -0.043193 0.011198 1.388875 -3.459620 -2.428307 -0.263434 -0.297056 -1.603652 2.329322 0.847344 -0.094608 0.491929 0.711126 2.840791 2.799606 -1.051362 1.013217 -3.550945 1.282046 1.596895 -0.332847 -4.538232 0.222370 -0.339605 -1.050682 1.442968 -0.043440 1.083693 -1.429262 -1.074226 0.619076 -0.305533 1.087638 0.430861 -2.305272 0.902674 -0.227898 0.957742 1.901086 3.230958 3.618207 2.316121 0.806616 1.419524 -0.343307 -0.511858 0.066625 0.540891 0.536262 1.165103 1.733193 2.699672 2.497483 1.045770 2.237576 1.954451 -0.672557 3.264110 1.117493 4.862719 -1.426860 -1.321716 0.493845 -0.102587 3.327448 4.558690 -1.679571 -0.714869 2.367175 0.502291 -0.404712 -2.818269 0.179975 -0.610911 -1.124783 2.249992 0.749521 -0.544328 -0.242487 4.307086 -1.156041 -5.032732 2.984774 1.278301 1.941179 0.295593 0.395189 0.143992 2.219289 -2.056130 1.374801 1.951516 2.299450 -2.817111 -0.520324 0.204343 2.167229 1.409634 1.972887 -3.887433 0.079613 1.914735 3.181634 1.098761 1.378175 -1.393592 -2.295694 0.840452 -0.503844 -0.408874 -0.113319 0.955370 -1.537615 0.468317 -1.211631 -1.984615 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.505831 -2.912229 2.062124 -4.596553 -4.212682 2.699506 -3.157283 -4.038797 -0.729430 0.474537 1.706435 0.393830 0.452908 3.005987 -0.102551 -3.985204 -0.278271 -1.070354 0.801882 -0.994731 -0.870446 1.912944 -2.138104 -0.132597 0.054634 -2.574507 0.268542 2.094510 0.945511 -0.474393 -1.270757 -2.988733 -3.350175 5.875191 3.283341 0.360743 0.350090 9.556091 1.022056 2.216280 -3.316643 -4.888822 3.733052 -1.616534 -1.246935 0.383730 -2.211516 1.936647 -2.416565 0.293498 2.773970 -1.733859 2.543726 -0.359023 -0.122682 -0.144616 -4.264403 0.778161 1.860325 -2.584999 -2.547611 -2.381538 -0.357349 1.497153 -3.661169 -2.523549 3.321105 3.305818 -0.498821 -1.506148 -1.030364 -4.849321 6.549067 3.086311 -0.985301 0.071362 2.072212 -3.415418 3.230021 2.024911 -7.691523 -2.094225 -1.800322 -6.258372 5.636691 -0.932263 5.493234 -7.978490 5.379280 -9.598416 1.310930 -2.567924 3.039859 5.717087 -5.241490 2.423833 4.503279 7.754789 1.822225 -2.244465 4.960359 1.237858 -2.214959 4.036132 4.693590 0.739375 -1.269316 -1.272797 -3.392479 -4.198802 0.678626 -4.408829 -7.844518 2.929038 -1.008055 0.243449 -3.355152 2.439378 -1.608122 4.994107 -6.345531 0.030698 0.836314 -1.499803 1.717616 2.255986 -1.764722 0.930518 -1.426975 4.637113 -5.046895 1.551024 -1.640264 4.019794 -0.470812 1.806640 -6.259683 1.883849 3.583933 -4.415233 -5.787555 -3.435374 -2.415647 2.783310 -2.041211 9.050457 9.440207 -5.496813 -4.884088 5.742893 -0.304678 0.173910 5.508153 2.013104 3.507008 -0.736611 -2.775152 -4.293218 -2.884482 -0.590782 -4.236747 1.306544 0.331733 4.980944 -0.385821 3.017363 9.999634 -1.726758 -4.677756 -1.454582 1.651088 -3.084966 -3.994611 4.814908 0.200268 3.310844 3.202488 7.287570 -1.560939 -2.175679 0.985255 -3.236613 -1.198753 -3.220861 0.181602 -1.668762 2.879659 -2.711987 -3.649046 -1.340158 -2.327247 -2.323893 2.330713 6.638341 2.149428 3.321715 1.257694 3.987674 8.319690 2.272719 -1.968246 -3.664438 3.007141 4.197322 -1.864411 -0.349457 -2.412707 -1.030667 -0.801916 0.503967 1.092553 4.511946 -4.606359 -0.864961 -2.173459 2.725316 2.583929 3.936698 -10.096098 2.068316 1.143708 1.775955 2.955879 3.499206 4.825871 6.221549 4.528123 0.801641 -0.157875 1.435898 -0.298458 -1.439232 2.180625 4.874531 2.502421 5.958782 4.569387 3.667880 3.949154 4.703087 3.992653 4.774980 -0.639202 9.440061 -1.289723 -1.020786 -1.631320 2.070931 5.369582 8.203596 -1.036502 3.012510 2.527505 1.734095 -2.584494 -6.878010 2.605063 -1.137963 2.941640 -1.219493 3.050380 1.051944 -3.267849 6.501296 -0.266645 -7.791870 3.783085 1.960937 3.763166 4.090375 0.528938 1.202777 0.797385 -3.854006 6.093531 5.421366 2.510602 -4.901779 2.368327 0.996905 3.537610 -1.073440 4.614566 -1.035743 4.447714 1.218350 3.878613 1.678678 1.539843 -4.160671 -2.129671 3.031936 -3.995114 0.284912 3.670510 2.294631 -3.044787 2.317486 -3.850244 -4.614651 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.013021 -1.972513 0.186226 -0.961073 -1.253406 0.580438 0.508430 -3.844745 -1.082668 2.211969 0.776527 -1.376217 -0.126269 1.283621 1.004294 -0.791230 1.556719 1.332717 0.533885 -1.301355 -0.788827 0.481111 -1.003653 -1.341355 -0.488033 -0.789413 0.570436 1.176948 -0.918562 1.503725 -0.794898 -2.191702 0.372651 4.143834 2.563795 0.952452 -2.717952 4.697378 -0.560009 4.170925 -4.439448 -2.365564 3.179617 -1.116796 0.867106 -2.355614 -1.394880 2.107796 1.511174 -2.843288 -0.666029 -0.993899 1.569051 -1.458725 -1.580032 1.894816 -0.496208 -0.549536 1.544500 -4.066603 -2.756804 -1.180856 -0.094927 2.112163 -5.324576 -2.721898 1.166298 0.888568 -0.011777 1.365706 -3.389384 -4.477631 1.145788 1.383621 -2.211898 -1.168940 -0.732683 -1.294835 1.674874 3.499158 -3.113067 -1.815091 -1.163890 -1.095726 0.652126 0.750474 4.548666 -5.980498 1.854303 -6.692018 1.781480 -2.317720 3.206436 3.041435 -2.102870 1.569560 1.495974 4.292723 1.427504 -1.028674 2.112475 1.658344 -0.229900 0.332309 4.608431 1.820566 -0.170697 -2.915013 -0.905817 -1.689632 2.319157 -1.844875 -3.500357 1.920822 -2.953702 -0.107054 -2.349969 2.108993 -0.499857 3.469813 -4.877879 -1.082608 2.065494 -1.213049 2.853471 1.806464 -1.636966 1.632108 -1.633523 2.142820 -0.485052 1.186129 -0.880028 3.067485 -2.321102 -1.137158 -2.940891 1.312224 2.922543 -3.922883 -4.290253 -4.278303 -1.469801 2.807763 -2.109307 2.785263 5.237328 -3.196373 -1.712227 2.035906 -0.265132 -1.743109 2.222292 0.854229 5.467707 -3.141051 1.209514 -0.783858 0.042472 0.945560 3.014720 -1.139323 -2.751273 2.622137 -1.359395 -2.971150 5.734612 -1.130811 -1.930433 -0.009753 -0.229290 1.373154 -1.316828 2.933821 -4.138377 1.885594 -2.448453 2.857541 -1.381068 -0.338656 1.133903 -2.935548 -2.145804 -0.414966 1.320866 -1.260500 4.270614 -2.951964 -2.299991 -0.039740 -3.546542 -0.104142 3.451855 0.446919 -0.664144 1.407231 0.104063 3.601310 2.874896 0.696900 -1.165651 -1.897467 2.097289 3.115570 0.728468 -1.074283 -2.584735 -2.694723 -1.253949 -3.451751 0.961949 3.287684 -2.719918 -0.143587 -0.034039 0.276566 0.622811 1.191266 -3.503373 2.215360 1.175828 1.281431 0.589423 4.539872 1.469421 3.266721 1.927555 -1.260212 -0.148971 -1.439029 -3.859670 2.087695 1.134149 0.907665 1.349151 1.569466 1.808898 1.582182 3.318227 -0.943597 3.622109 3.552813 0.644468 4.162292 -1.639299 1.138205 0.932776 -1.201688 3.421397 5.305687 1.271155 -1.249810 1.203820 -2.186630 -4.159505 -1.722855 -0.507697 0.299541 -0.926533 0.781762 2.121890 0.283762 -2.812703 5.650312 0.048351 -6.127377 2.522375 1.277320 1.185870 5.121068 -1.311614 2.850870 1.034921 1.307878 2.292717 2.979732 2.339493 -3.507637 -1.320299 -0.150724 0.858156 3.418034 0.272193 -4.495559 2.018139 1.748518 4.786605 0.148992 1.278595 -3.606252 2.157425 1.193493 -1.377448 0.679361 0.638007 3.009322 -0.836954 -0.560526 -4.833817 0.585482 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.556438 -10.770580 5.323739 -15.539192 -9.854573 8.474772 -6.384288 -14.510400 -3.131523 6.392635 5.972926 -0.411524 2.506058 11.927410 1.715170 -9.582727 3.198507 -2.163916 3.468343 -1.203787 -2.528391 5.897559 -7.171040 -3.101364 -0.402948 -7.028268 2.104723 6.724450 -1.411796 1.835490 -4.791549 -10.024950 -10.286813 20.034822 11.946780 1.782240 -2.466878 29.358883 -3.569917 15.557232 -12.510974 -15.017731 13.368913 -4.649364 -2.830216 -0.939265 -7.663067 6.431551 -1.989383 -4.971769 6.844190 -6.885463 10.052074 -2.821663 -2.436780 1.343016 -10.305876 -3.135543 7.501510 -9.734099 -9.497824 -7.730821 1.098969 7.141294 -18.992610 -8.541783 10.302465 7.055793 -0.192607 -4.514242 -7.500034 -18.113935 15.044427 11.251178 -3.999912 -1.270206 4.147179 -13.996527 10.569483 9.510302 -23.537788 -6.861609 -8.321024 -22.108091 16.326620 -2.312939 21.493603 -26.474682 18.104245 -31.562385 4.656798 -8.474052 10.150858 19.960682 -13.457381 7.119574 13.226266 29.899052 4.740824 -8.044010 14.445769 6.997419 -7.298130 10.437674 19.764516 6.132690 -6.648360 -8.322833 -10.854486 -11.603105 4.987266 -16.259885 -22.664381 10.361270 -5.803880 -2.890349 -11.259446 7.752708 -7.523749 18.325732 -21.791981 -0.103005 2.825125 -5.202307 5.836710 7.827673 -4.475786 3.431779 -4.335571 14.072993 -13.746039 5.858996 -4.919582 14.256159 -7.304698 9.294530 -14.550742 7.005886 11.799944 -15.658270 -19.449763 -16.700355 -8.484163 11.637172 -6.203789 29.028681 29.431343 -17.137465 -14.722921 17.009591 -0.979110 -2.855437 15.356975 5.806760 13.121947 -5.199982 -5.971256 -12.962155 -7.029091 -1.620011 -3.352000 2.049671 -0.901345 16.871423 -5.762144 4.248450 34.473001 -4.235242 -13.491535 -6.366246 4.935528 -9.160666 -12.597881 16.815391 -10.015301 9.894565 4.890568 21.965554 -4.593907 -3.313482 3.720758 -14.794012 -5.932001 -13.611551 1.058587 -5.612753 11.902093 -9.158884 -12.225419 -4.963587 -7.693051 -6.331937 9.867733 10.944726 4.672393 9.997999 2.543762 16.157157 23.427029 6.052660 -7.409496 -9.609367 10.125502 14.430538 -5.753855 -1.559848 -9.302550 -5.865424 -3.662080 -3.424026 3.724230 15.969281 -18.584718 -2.921826 -4.431354 8.637181 5.920324 11.222184 -36.068474 8.400415 4.953554 6.298307 10.194988 13.826118 12.089842 20.271726 12.434614 0.751794 -1.270569 3.265039 -10.836391 -2.214727 6.595878 12.560148 7.954354 18.799403 13.312130 12.695324 13.131323 12.474171 14.703436 15.484819 -1.982454 26.253521 1.158426 -2.841666 -1.203913 4.098654 16.576540 25.232042 0.307948 6.573288 8.174848 -0.157612 -13.395855 -17.779618 7.608518 -3.382764 7.121580 -2.851666 10.584821 3.933918 -12.035447 22.758142 -0.965783 -27.684804 10.255870 6.725628 12.530051 18.901119 -0.289094 8.767654 2.234584 -7.671523 21.991269 17.147543 7.828045 -15.820993 7.500855 3.325461 9.192885 4.834867 12.015075 -8.460631 15.032215 1.965042 14.797056 5.086877 9.351193 -14.009379 0.709573 8.600233 -11.760647 2.089914 7.315178 9.938050 -7.149474 4.807652 -18.302776 -9.813301 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.860553 -7.614704 4.138319 -9.828058 -6.811838 1.790601 -3.284727 -5.769569 -1.274850 2.460864 4.034731 -3.925332 -2.343617 9.764624 1.193974 -7.624907 2.444503 1.995414 2.732138 -0.155579 0.509651 3.923694 -1.842417 -2.636263 0.852167 -3.426847 -0.768934 6.208905 5.944565 1.038178 -1.468088 -4.618300 -3.507331 10.562958 3.568729 0.380788 -2.124096 18.141519 -2.960877 11.432076 -8.665286 -7.368363 11.011072 -2.696835 -1.808226 -5.748657 -8.156556 4.969826 -6.908620 -4.065102 2.940184 -0.919742 6.232042 -4.582442 -2.203734 3.532612 -9.883634 1.140881 4.640441 -5.433660 -2.566735 -2.142629 -2.895923 3.923022 -9.222287 -5.570738 2.816715 1.560580 -2.923394 -2.912515 -3.450740 -6.983924 13.217336 5.002849 -2.814206 1.900373 4.821631 -7.355538 7.534146 1.765008 -13.015302 -4.569400 -5.041123 -9.693850 10.361237 -1.913073 11.451069 -15.718586 8.190848 -18.271643 6.039159 -8.478390 4.284928 13.387618 -10.432419 6.831983 7.295097 11.839063 4.595199 -1.186664 9.498640 6.221967 -1.530809 6.329253 10.786687 3.949092 -4.132605 -5.897556 -6.768316 -7.203773 1.139641 -9.735700 -17.296300 6.087015 -2.049629 1.328792 -2.570091 2.979535 -2.778985 9.636433 -10.408625 3.757475 3.596413 -3.179445 1.145257 6.667181 -2.686307 -0.515631 -3.738837 9.851539 -7.746265 5.004079 0.956335 8.825741 -3.929028 -0.691111 -6.582866 3.586032 3.634280 -7.800189 -10.955748 -10.988287 -2.939997 5.191952 -3.048087 12.764835 18.112640 -7.848200 -8.733464 10.510975 0.807408 0.088244 8.705065 3.165262 10.260237 -2.292051 -5.751191 -8.064233 -5.540133 1.176712 1.650727 2.119874 -2.297822 9.881603 -3.414854 -4.808657 17.674185 -2.955996 -6.375606 -4.288779 2.432221 -7.662451 -8.044955 10.853472 -5.764698 7.921184 0.117096 14.059707 0.078778 -4.994591 3.551160 -7.748959 -3.153027 -7.395543 0.789172 -0.017541 4.196471 -7.709435 -7.951347 -5.278234 -3.909024 -4.034643 6.809624 3.010523 2.520562 6.653921 2.267289 9.719616 10.690185 2.035154 -2.769525 -8.117214 5.590224 7.060793 -4.031551 -6.799018 -2.990516 -3.011593 -1.137880 -0.502772 1.665114 8.977519 -9.537431 -3.433097 -2.319422 2.468638 2.405597 4.175195 -18.756998 3.450231 3.806600 5.704264 6.559211 9.106747 9.046681 9.873556 4.721546 5.067101 -1.252971 2.608336 -5.350206 -0.786326 2.571586 3.962562 4.382859 10.772889 7.709689 6.864197 9.699346 8.441457 5.273006 9.179117 -0.018232 13.991232 2.157690 -4.518331 1.152679 2.520974 10.530157 15.505978 0.706409 2.663697 6.265110 0.303631 -5.551544 -11.160880 3.107072 -1.659404 1.205193 4.602537 5.121750 2.148734 -5.034595 10.894808 -0.321484 -17.104153 8.131418 3.856436 7.440202 9.118857 0.728485 3.512330 2.663795 -5.594665 10.085208 9.155364 4.312325 -10.109688 1.915254 2.273521 5.505159 6.543436 9.226543 -8.375823 4.749157 2.794757 8.632082 1.730600 6.676573 -7.833982 -3.968852 4.313671 -5.572534 -0.537450 0.436135 0.945550 -5.491249 0.995864 -8.125134 -6.644071 +PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.593027 -1.404421 2.324413 -3.250047 -3.030501 -1.172545 1.243208 0.047197 -0.490980 2.746436 0.878507 -2.298397 -3.091595 3.831996 0.356320 -2.312400 0.655080 -2.048291 0.690646 -0.102811 0.478090 1.864615 0.603310 -0.580748 0.949197 -0.047209 -1.676536 2.809428 3.074305 -1.194739 0.779601 -1.002718 0.390922 2.387630 -0.723062 -1.561222 -1.275564 6.128025 -3.009078 3.912941 -3.175828 -2.763609 4.764066 -1.021127 -0.303863 -4.520516 -2.287217 3.083770 -1.964704 -2.582557 0.742707 2.004375 1.446479 -2.881580 -1.637418 2.164764 -5.224830 1.769219 1.556222 -1.448596 -0.075370 0.723833 -1.544779 1.415469 -1.815516 -1.942044 -0.493101 -2.302392 -2.217216 -1.022665 -0.325119 0.337788 3.530373 0.918901 -0.216726 1.833509 2.020359 -1.407162 3.373677 -2.917091 -3.721195 -1.362888 -2.146127 -2.372305 3.035856 -0.678761 2.088757 -4.379502 1.839226 -4.774883 2.440929 -3.892749 0.039871 4.278202 -1.771715 3.579002 1.504636 0.473219 2.771581 -0.375318 3.138642 2.668651 2.544553 3.066076 2.040346 2.313740 -2.259883 -1.668303 -3.533041 -2.323006 0.395452 -2.151808 -4.306156 2.261622 1.275757 -0.290627 2.172508 -0.633792 -0.592054 3.091691 -2.621104 2.547552 1.933090 -0.735073 -1.278235 3.168215 -1.076165 -1.517337 -1.455415 3.451363 -1.635348 3.598165 3.088060 2.836470 -0.760635 -2.439003 -0.017264 1.057119 -0.399973 -1.776672 -2.150035 -4.583047 0.736257 -0.054342 -1.740204 2.466647 6.024350 -1.409374 -2.394326 3.339600 1.217520 0.164307 0.937281 0.389702 3.706633 0.255565 -3.833181 -1.682378 -2.619239 1.677611 5.214272 1.569866 -1.066030 2.856937 -0.773223 -3.507128 1.971984 -0.295577 -1.325048 -0.215770 0.635270 -3.111824 -3.031565 2.429302 -0.929886 2.730606 0.004174 4.347028 1.931883 -1.682882 2.133131 -2.043437 -0.049722 -2.967220 -0.391192 1.617229 -0.325080 -2.305137 -1.761017 -3.428108 -1.002530 -1.947055 2.012112 -3.341424 1.596950 2.415774 1.293978 3.015850 1.912285 -0.432866 0.050329 -3.848296 1.396408 0.477371 -0.223723 -4.700499 -0.434186 -0.379917 0.081041 2.395189 -0.313576 2.469764 -1.726243 -1.331055 1.055543 -0.420942 -1.191209 0.228297 -4.719571 -0.215010 1.793583 3.592359 2.075922 3.305483 2.850211 2.405798 0.476135 4.149731 -1.492408 1.824327 -1.713019 -0.407460 -0.525477 -0.662417 1.706785 2.387933 2.350396 1.916383 4.307210 2.822975 -1.863923 2.858871 -0.717996 3.343621 -0.233184 -2.854292 1.081524 1.412528 3.088579 3.592622 1.416341 -1.024401 2.684264 -0.356476 -1.217152 -1.674383 0.680676 -0.743490 1.207457 3.826165 2.211370 0.341899 0.399122 1.633888 -0.598647 -6.078514 2.981964 1.154567 2.817261 1.852098 1.057201 1.323274 1.134530 -2.035269 1.555222 2.988701 1.009279 -3.221638 -0.371573 1.170449 1.943165 2.399613 3.701128 -7.436089 -1.355475 0.891199 1.404895 -0.834676 4.056398 -2.677285 -3.059962 2.058278 -0.453800 -0.678354 -0.581774 -1.014778 -2.383937 0.348870 -1.263332 -0.481909 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.373684 -0.724186 0.465286 -1.044313 -0.775927 0.785714 -0.705531 -0.913534 -0.111174 -0.143177 0.441291 0.266833 0.242833 0.630073 0.080920 -0.803291 0.035257 -0.381532 0.192200 -0.013978 -0.180656 0.316698 -0.524888 -0.027903 -0.078280 -0.519140 0.054631 0.414317 -0.075084 -0.146320 -0.445397 -0.632352 -0.888415 1.303328 0.788394 0.145387 0.178057 2.059613 0.227053 0.587575 -0.548725 -1.010063 0.671885 -0.377255 -0.370452 0.266519 -0.470885 0.354386 -0.281964 -0.078854 0.729631 -0.483374 0.562122 0.041224 -0.027446 -0.071719 -0.859841 -0.120728 0.401620 -0.423341 -0.518448 -0.547771 -0.003380 0.306067 -0.867707 -0.485822 0.881316 0.728217 0.008402 -0.386230 -0.234775 -1.237035 1.557236 0.787459 -0.150851 -0.033819 0.570863 -0.898982 0.728554 0.674080 -1.738626 -0.382190 -0.565795 -1.552183 1.421915 -0.341588 1.221867 -1.655889 1.318811 -2.101985 0.217672 -0.581817 0.612604 1.238494 -1.079291 0.373109 1.088132 2.053001 0.230387 -0.531626 1.097897 0.277294 -0.701492 0.847090 1.222805 0.026813 -0.313670 -0.240397 -0.815560 -0.932406 0.211569 -1.051530 -1.730145 0.649061 -0.174471 -0.019129 -0.833775 0.644089 -0.357027 1.101122 -1.347035 0.170294 0.131942 -0.309201 0.316927 0.506626 -0.404523 0.213238 -0.281085 1.009208 -1.162646 0.312989 -0.407428 0.797193 -0.095304 0.694763 -1.242367 0.439603 0.845530 -0.990666 -1.265533 -0.728515 -0.505325 0.806765 -0.389384 2.134855 2.045855 -1.211674 -0.987731 1.233080 0.155168 -0.002657 1.174972 0.463806 0.682109 -0.155233 -0.594484 -0.978602 -0.624036 -0.293369 -1.259043 0.294263 0.266196 1.122217 -0.100250 0.664816 2.767532 -0.406067 -1.054280 0.008635 0.304397 -0.708123 -0.994451 1.088878 0.278068 0.655112 0.978104 1.595096 -0.262297 -0.294783 0.173426 -0.495812 -0.232134 -0.879147 -0.032095 -0.425424 0.613943 -0.488452 -0.797864 -0.261381 -0.484389 -0.457956 0.458312 1.603047 0.558253 0.764059 0.222171 0.668552 1.907369 0.569707 -0.512454 -0.743189 0.655360 0.888284 -0.583678 0.244346 -0.553561 -0.262964 -0.097800 0.059855 0.268431 1.037846 -1.174658 -0.235752 -0.475499 0.708857 0.533967 0.942261 -2.426932 0.369601 0.359665 0.325211 0.732993 0.681313 1.054514 1.444045 1.064693 0.074751 -0.015470 0.524375 -0.366787 -0.504822 0.367244 1.351333 0.518917 1.248700 0.941514 0.839350 0.769109 1.064607 1.149953 1.025742 -0.039070 2.026782 0.037831 -0.248361 -0.346428 0.418389 1.174031 1.700443 -0.287293 0.906258 0.469821 0.433540 -0.693779 -1.481567 0.635136 -0.244844 0.676984 -0.389060 0.622906 0.357040 -0.803062 1.409679 -0.018368 -1.689234 0.582833 0.420298 0.814468 1.137169 0.132338 0.434915 0.057404 -0.781022 1.538534 1.158427 0.558255 -1.049204 0.684665 0.273572 0.693481 -0.449017 1.011917 0.010772 1.128160 0.051588 0.769306 0.426339 0.243278 -0.925367 -0.229750 0.681861 -0.954212 0.113582 0.856534 0.655557 -0.627730 0.431573 -1.071082 -0.975015 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.224958 -0.248863 0.314390 -1.112463 -1.226751 0.227214 -0.321132 -0.690315 -0.247555 0.134847 0.383784 -0.345301 -0.397247 1.276308 -0.209361 -1.009012 -0.190167 -0.377440 0.020014 0.119936 -0.204329 0.766622 -0.406892 0.043182 0.226630 -0.172859 -0.314144 0.390016 0.589393 -0.487379 -0.388679 -0.594019 -0.331114 1.279529 0.436772 0.084472 0.032922 2.193642 -0.056102 0.994924 -1.200639 -1.019044 0.901381 -0.321279 -0.101938 -0.987682 -0.744515 0.673717 -0.694848 -0.068299 0.683324 -0.068613 0.101302 -0.214973 0.331914 0.346260 -1.468615 0.955233 0.647065 -0.284740 -0.125889 -0.418577 -0.433627 0.038287 -0.495716 -0.686069 0.147272 0.514947 -0.416396 -0.231221 -0.210682 -0.888890 1.759217 0.579815 -0.575482 0.283330 0.357651 -0.778422 0.806102 -0.875006 -1.560254 -0.314068 -0.038056 -0.354819 1.176459 0.108106 0.809938 -1.829809 0.676004 -2.028450 0.446160 -0.981004 0.569730 1.480167 -1.081665 0.584952 0.775184 0.549392 0.997087 0.188441 1.125384 0.459734 -0.028554 0.750866 0.658308 0.470079 -0.308273 -0.382057 -0.668048 -1.090822 -0.021652 -0.350692 -1.930436 0.577070 -0.019117 0.556486 -0.361719 0.419635 -0.080932 0.655852 -1.363306 -0.238733 0.344821 -0.314877 0.496785 0.953554 -0.350746 0.057826 -0.735324 1.055706 -0.805140 0.739937 -0.258783 0.888357 -0.265819 -0.806576 -1.466400 0.187090 0.441377 -0.894657 -1.168633 -1.204797 -0.221982 0.307019 -0.661004 1.292409 2.217147 -1.232339 -1.109012 1.566208 0.330457 0.279241 1.058013 0.267055 1.114655 -0.145960 -0.584930 -0.543020 -0.746677 -0.200838 -0.316650 0.405565 -0.445137 0.700655 -0.105823 -0.862189 1.389716 -0.117940 -0.984160 -0.427102 0.153887 -0.781512 -0.836519 1.221118 -0.099435 0.958670 0.134717 1.602856 -0.307471 -0.759763 0.436921 -0.705648 -0.058683 -0.714469 -0.164798 0.123460 0.499183 -1.023496 -0.637839 -0.142726 -0.445097 -0.865231 0.447071 0.549382 0.194527 0.611374 0.463704 1.001910 1.634514 0.209761 0.051914 -1.039821 0.716875 0.550393 -0.360641 -1.123939 -0.165432 -0.310086 -0.245464 0.468759 0.008048 0.585817 -0.533882 -0.329515 -0.144258 -0.011517 0.675799 0.623586 -1.000293 0.245152 -0.059340 0.664256 0.618159 0.845107 1.116659 1.358318 0.901451 0.468083 -0.089108 0.163053 0.255839 -0.073155 0.366124 0.461284 0.715489 1.086762 1.113136 0.548834 1.018233 0.910392 0.293816 1.217399 0.053591 2.078683 -0.341380 -0.425448 -0.117034 0.269357 1.191438 1.898898 -0.648226 0.418104 0.677066 0.249793 -0.358054 -1.001474 0.442727 -0.292047 -0.247364 0.481917 0.416526 0.094904 -0.388800 1.415264 -0.369761 -1.654306 0.926258 0.367475 0.872720 0.394463 0.363432 0.100496 0.482344 -1.012883 0.991199 1.144057 0.796615 -0.994480 -0.339573 0.121735 0.684788 0.389605 1.127769 -0.778461 0.441970 0.691135 1.033382 0.174562 0.314294 -0.751737 -0.862442 0.662733 -0.435037 -0.167250 0.259791 0.326431 -0.494470 0.178655 -0.488961 -1.084695 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 0.012152 -1.286717 0.700098 -1.734861 -1.455827 0.547197 -0.284125 -1.248509 -0.289915 0.549390 0.399237 -0.346003 -0.192476 1.942873 0.075655 -1.426722 0.047101 0.361725 0.370749 0.344463 -0.176617 1.212644 -0.694957 -0.038425 0.305862 -0.696140 0.016276 1.040559 0.200911 0.384761 -0.176376 -1.251486 -0.859717 2.166799 0.950670 0.926543 -0.279033 3.479106 -0.600988 3.112337 -1.736938 -1.819389 1.569515 -0.441162 -0.168149 -0.935777 -1.239168 0.744564 -0.936392 -0.739957 0.906410 -0.297479 0.895313 -0.339367 0.423890 0.210488 -1.548132 -0.035492 0.806904 -1.185608 -0.611666 -0.762159 -0.853605 0.511693 -2.412056 -0.948573 0.198749 0.709905 -0.226261 -0.307849 -0.289582 -1.475636 2.504404 1.146396 -1.089254 0.274834 0.863712 -1.398722 1.200078 0.043766 -2.596026 -0.821020 -0.780444 -1.697049 1.834965 0.122232 2.379247 -2.958831 1.671592 -3.272617 0.942382 -1.452366 0.974813 2.567813 -1.578606 1.228656 1.474668 2.625001 0.920963 -0.238364 1.503496 1.289866 -0.523275 1.338769 1.866939 0.920816 -0.970322 -1.384718 -1.434071 -1.402906 0.530287 -1.784004 -3.139783 0.635112 0.060224 0.866979 -0.848538 0.896438 -0.543216 1.704464 -2.710601 0.682230 0.616007 -0.548113 0.430248 0.917498 -0.437358 0.050401 -0.714554 1.716214 -1.627624 0.981604 -0.459362 1.623079 -1.237312 0.720190 -1.332175 0.417853 0.656620 -1.349069 -1.958177 -2.253369 -0.968377 1.942143 -0.724578 2.391193 3.428756 -1.890464 -1.632639 2.150067 0.022950 -0.043615 1.083537 0.795925 1.039669 -0.145303 -1.103743 -1.661420 -1.099815 -0.045920 1.193133 0.685077 -0.813151 1.853115 -0.840338 -1.273770 3.593393 -0.579428 -1.544031 -1.712622 0.181921 -1.371176 -0.983963 2.256799 -2.184823 1.451660 -0.733270 2.475315 -0.333708 -0.609809 0.330752 -2.430957 -0.503339 -2.006109 0.138479 -0.108869 1.053496 -1.861715 -1.317662 -0.443645 -0.945363 -0.928367 0.901086 -0.191985 0.029811 0.980305 0.610558 2.779648 2.259514 0.607138 -0.849551 -1.132947 1.185372 0.848055 -0.751807 -1.099723 -0.451247 -0.338043 -0.530380 -0.369109 0.358957 1.073879 -1.808387 -0.191855 -0.556664 0.125154 0.476194 1.055380 -3.460711 0.596800 0.883311 1.191275 1.310458 1.199035 1.873030 2.090561 1.311755 0.841970 -0.297395 0.242005 -1.067463 0.511968 1.041790 0.510958 0.854964 2.333458 1.715293 1.013087 1.523379 1.797950 1.464598 1.703749 0.072911 2.961083 0.351146 -0.778851 0.241441 0.801752 1.773899 2.687643 -0.231750 1.159595 1.135075 0.049389 -1.189310 -1.316681 0.771660 -0.408862 0.094474 0.756031 0.747227 0.188624 -0.730287 2.321785 -0.342531 -2.953234 0.921476 0.781957 1.502540 1.469961 0.335284 0.818864 0.624377 -0.952243 2.423363 1.666523 0.842074 -1.764847 0.021788 0.244002 0.422141 2.173304 1.719404 -1.269677 0.715803 0.341268 1.912589 0.054065 1.313507 -1.143227 -0.315985 0.963672 -1.252157 -0.192194 0.157217 0.387407 -0.124856 0.335342 -1.948154 -1.801017 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 1.228666 -2.966625 1.589009 -3.392542 -2.759969 2.180959 -2.477112 -2.414323 -0.455981 0.773220 0.810377 0.562752 0.367428 2.493881 0.237569 -2.899574 0.181189 -0.989714 1.197771 -0.167171 -0.528068 1.563250 -1.305421 0.183594 0.013865 -1.821630 -0.169140 1.409009 0.695754 -0.137376 -0.760160 -2.194372 -3.044663 3.888404 2.268969 0.124704 0.317733 7.017745 0.660484 2.606111 -1.750672 -3.444876 2.303967 -1.154874 -0.752636 1.235135 -1.361680 1.456683 -1.505796 -0.375228 2.381675 -1.018835 2.102807 0.022378 -0.252578 -0.637099 -2.927287 -0.116471 1.036660 -1.303683 -1.291277 -1.571987 -0.542851 1.417819 -3.125891 -1.621360 2.342053 2.091233 -0.569689 -1.628654 -0.526490 -2.789241 4.217348 2.597999 -0.731509 -0.019879 2.263905 -2.243239 2.416960 1.204407 -5.938621 -1.354154 -2.517795 -5.623059 4.617118 -0.904337 4.331007 -5.482010 5.107572 -6.775136 1.019023 -1.921649 1.797948 4.595945 -3.403945 1.713347 3.519447 6.807294 1.398881 -2.052855 3.651278 1.394996 -2.266239 3.453393 3.581816 0.462039 -1.309484 -0.688884 -2.732829 -2.655295 0.506002 -3.836732 -5.074857 2.183685 0.093009 0.428867 -2.032347 2.017411 -1.830274 3.260971 -5.004463 0.427654 0.235789 -1.028828 0.768489 1.214843 -1.426869 0.439596 -0.891626 3.705827 -4.031372 1.254406 -0.613249 2.886736 -0.657399 3.043641 -3.593992 1.615780 2.454135 -2.888996 -4.005968 -2.869653 -1.640164 2.240148 -1.397148 7.518772 6.638436 -3.673587 -2.758677 4.142649 -0.957294 0.147126 3.550444 1.297776 1.521488 0.124026 -2.941404 -3.275197 -2.365445 -0.690314 -2.691180 1.539288 0.860740 3.871969 -0.568641 3.116231 7.134316 -1.220589 -3.697770 -2.184772 1.081029 -2.555184 -2.702208 3.377276 -1.202284 1.584312 2.681934 5.175121 0.104318 -0.949056 0.840255 -2.951500 -0.748319 -2.970097 0.123674 -1.353513 1.382061 -2.134024 -2.594640 -1.255340 -1.388451 -1.814562 1.172120 4.275326 1.841062 2.923918 1.314707 3.925527 5.796371 2.098538 -1.827263 -2.513378 2.096267 2.547845 -2.070223 0.641909 -1.654432 -0.395826 -0.331350 0.673963 0.792618 3.032931 -4.131650 -0.863005 -1.869900 2.424771 1.701435 3.345661 -8.177174 1.151280 1.905552 1.600474 2.806812 2.155265 3.085805 4.351636 3.385763 1.102775 -0.412843 2.035748 -0.900726 -1.202776 1.560462 3.414827 1.669694 4.188419 3.348137 2.718908 2.776438 3.932984 2.827583 3.023384 -0.776414 6.277705 -0.027034 -1.180260 -1.059147 1.856674 3.645670 5.367526 -0.885497 2.887908 2.042893 0.914660 -1.870408 -4.201449 2.416363 -1.052819 2.970835 -1.494358 1.941939 1.238973 -2.184585 3.846339 -0.335088 -5.662958 2.337106 1.523764 3.008767 3.681300 0.908163 1.379257 -0.169341 -3.192116 4.914153 4.089389 1.250585 -3.155791 2.612021 0.880844 2.093835 -0.425782 3.788391 -0.216671 3.006357 0.357964 2.273227 1.241892 1.068340 -2.759329 -1.773865 2.472518 -3.358338 0.182179 2.440303 1.347385 -1.728827 1.789008 -2.603351 -3.422407 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 1.098373 -3.181147 1.530579 -3.769015 -3.080420 2.847707 -3.321806 -3.252120 -0.395658 -0.246882 1.337323 0.852482 1.196442 2.787799 0.155625 -2.969742 0.029483 -0.600768 1.276254 -0.085325 -0.567468 1.595035 -1.899558 0.330666 -0.212892 -2.132404 -0.059236 1.383413 0.321762 -0.062723 -1.339586 -2.460133 -3.644647 4.553980 2.892545 0.487183 0.747344 7.780177 0.803646 2.516938 -1.807280 -3.583493 2.164399 -1.234437 -1.201804 1.592940 -2.112492 1.038231 -1.564931 0.121157 2.812876 -1.723704 2.238441 0.592912 0.245295 -0.854047 -2.969485 -0.477923 1.322310 -1.482380 -1.473442 -2.007263 -0.467998 1.189137 -3.608835 -1.585540 2.999581 3.045514 0.128239 -1.760584 -0.508489 -4.035019 5.173657 2.941273 -0.835649 -0.167930 2.452260 -3.175450 2.546632 2.228680 -6.710137 -1.334302 -2.405019 -6.203573 5.189326 -1.093470 4.967830 -5.976066 5.430398 -7.685157 0.765287 -2.012577 2.157711 4.898230 -4.337722 1.363745 4.222308 8.115273 1.421378 -1.935810 4.033882 1.391048 -3.236562 3.490147 4.297187 0.326608 -1.003789 -0.554004 -2.900745 -3.213893 0.574851 -4.244760 -6.254680 2.239555 -0.306909 0.224886 -3.206984 2.516266 -1.652628 4.025248 -5.045633 0.505852 0.212713 -1.136394 0.880374 1.511504 -1.483767 0.643522 -1.147843 3.841780 -4.721032 1.028853 -1.445650 2.975559 -0.841626 3.196806 -4.745668 1.599253 2.867661 -3.572491 -4.533900 -2.748255 -1.986794 2.884807 -1.294019 8.280349 7.479186 -4.585100 -3.385264 4.733354 -0.195562 -0.048067 4.473832 1.660417 1.902474 -0.005626 -2.725403 -3.997674 -2.649504 -1.328740 -4.525134 1.549119 1.217822 4.042275 -0.403871 2.890691 9.745403 -1.559065 -4.249776 -1.728644 1.326630 -2.630948 -3.198804 4.055735 -0.412395 1.925691 3.151158 5.653842 -0.433830 -1.145242 0.669125 -2.730497 -0.888265 -3.119508 0.139567 -1.741166 2.062919 -1.952010 -2.879594 -0.921981 -1.707231 -1.912287 1.184525 6.066666 2.038745 3.136201 1.164073 3.339838 7.109158 2.538829 -1.935442 -2.550394 2.394237 3.283080 -2.542423 0.871616 -1.766972 -0.756793 -0.343893 -0.094195 0.976306 3.525198 -4.767483 -0.870389 -2.485082 2.778579 2.367646 3.830459 -9.217919 1.619397 1.389170 1.452946 3.056637 2.039746 3.752061 5.277738 4.120030 0.621751 -0.161595 1.961334 -0.739107 -1.347487 1.952155 4.373107 1.770369 5.049632 3.703134 3.140595 2.591733 4.204662 4.298897 3.535940 -0.483486 7.535887 0.344223 -0.958072 -1.485977 1.883082 4.195863 6.464208 -0.938603 3.746411 1.832180 1.398284 -2.332029 -5.487830 2.741697 -0.914630 2.689898 -1.879418 1.974031 1.432684 -2.862808 4.677542 -0.145347 -5.996533 2.253405 1.579382 3.019442 3.950954 0.894467 1.322919 -0.017635 -3.356361 5.981019 4.470072 1.699360 -3.606208 2.630096 0.921336 2.367534 -0.721727 4.135645 0.506237 4.477587 0.351250 2.573582 1.477356 0.775405 -3.138633 -1.482566 2.660815 -3.883136 0.131134 3.020377 1.936669 -2.081849 2.030582 -3.236067 -4.387467 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = 2.348725 -0.077677 2.056689 -3.579358 -1.058921 -1.062332 6.052866 -3.605593 -2.472077 8.016409 0.743730 -2.986148 -2.949830 3.252834 0.109955 -1.509430 1.392313 -1.184548 -1.624286 -0.568613 -2.272205 1.679388 -1.340772 -4.351493 2.334406 -0.418976 2.245259 4.831916 -1.889457 1.940209 0.944238 -2.819137 1.855764 7.355905 2.093767 0.032729 -3.502428 8.634527 -8.530307 8.242044 -6.475505 -6.777221 10.465533 -1.230186 -0.141169 -6.992706 -1.009305 4.980068 0.238956 -6.107830 -1.488903 -0.077136 2.362399 -6.455815 -3.260960 5.996148 -5.996129 -0.076320 3.718629 -5.792143 -7.656422 -1.662127 1.684359 2.049238 -7.948230 -5.144998 -0.338253 -3.380496 -1.588630 1.069071 -5.836478 -4.569664 3.154736 1.246714 -1.275612 1.204968 -3.026052 -3.017277 3.285383 1.291407 -3.521497 -3.707533 -0.085275 -3.642888 1.999338 2.161250 5.800767 -9.753449 1.108146 -8.899850 2.875744 -4.928090 4.037042 6.452434 -0.951950 6.297831 0.403717 4.453407 -0.462641 -1.618837 3.407591 2.778405 4.458376 1.525106 5.387783 6.143014 -5.735082 -8.442205 -5.180746 -2.639610 3.402336 -2.676610 -7.170067 3.226095 -4.292009 -1.369520 0.432586 -0.703482 -2.439569 7.376221 -9.084636 2.623792 2.780878 -1.667027 3.108488 4.246116 0.236088 0.281348 -0.652071 3.069902 0.686562 3.472529 0.258445 5.883076 -4.148413 -2.040116 0.580797 1.492741 2.457104 -4.430639 -5.893641 -9.907235 -2.236975 4.502662 -3.636702 3.082048 9.788317 -2.940585 -5.235266 3.561361 -0.927939 0.099084 1.255257 1.805904 8.671268 -4.890843 0.444250 -0.175864 0.282309 4.376363 11.073479 -2.209649 -6.217574 5.673215 -3.467220 -4.211716 6.451720 0.372888 -0.156288 0.085147 0.788152 -2.135157 -4.121238 7.008939 -7.575608 6.260777 -5.101035 7.564346 -3.160831 -0.514071 1.663988 -7.927142 -2.497871 -7.515849 -0.108411 -0.779956 4.911422 -4.745377 -3.981355 -2.817080 -2.048041 -1.183784 8.118972 -8.660561 -1.191077 -0.397328 -1.220522 6.153162 1.203978 -3.277919 -1.500615 -4.849719 2.440812 3.332628 1.575657 -8.011914 -3.508736 -1.977821 -2.996729 -0.374941 0.532482 4.660994 -3.848275 0.525133 4.760361 -0.230228 -2.766946 -1.290223 -8.508548 2.433582 1.376549 2.820340 2.165180 9.149639 4.364391 4.424135 -0.730661 2.400004 -1.073900 -2.619308 -9.147895 2.458072 -0.117869 1.432849 3.645674 4.463981 2.902643 3.097892 4.662193 0.628707 0.111260 6.082584 1.758958 6.058776 -2.347725 -2.416902 3.855357 0.142304 4.526963 4.375229 1.855988 -5.205104 3.405068 -3.407394 -6.081244 -0.662313 -0.711833 -0.861314 -0.680850 5.236673 5.116788 -1.288627 -1.377642 10.605292 -1.670481 -12.600776 3.925348 2.536608 4.605463 5.715953 -2.211766 5.326796 4.058582 3.333268 3.126353 3.745965 3.417459 -6.988207 1.072671 1.123548 3.104923 6.676741 -0.294801 -15.471118 -0.481225 0.156980 7.738081 -0.363385 8.873441 -3.969290 4.201990 0.824428 0.182043 1.968030 -1.490825 4.142163 -0.319137 -0.009550 -10.622252 3.141854 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.791065 0.051454 0.744802 -1.519504 -1.014322 -0.051839 0.862539 -1.349100 -0.651534 1.504680 0.550702 -1.117185 -1.017979 1.495957 -0.395177 -1.094915 0.187378 -0.565756 -0.440720 -0.383197 -0.565528 0.622140 -0.471715 -1.161787 0.565178 -0.296494 0.404215 1.466684 0.424258 0.072611 -0.226759 -0.794323 0.442725 2.619972 0.807923 -0.209215 -0.520622 3.282701 -1.646633 1.978004 -2.294032 -2.026341 3.051826 -0.394274 -0.296127 -2.441307 -0.934304 1.493325 -1.073750 -0.907130 0.021607 -0.228506 0.539422 -1.658738 -0.688067 1.986695 -2.696192 1.158807 1.124587 -1.252428 -1.721862 -0.703025 0.251907 0.376248 -1.506840 -1.646144 0.148773 -0.217754 -0.892163 0.313906 -1.581357 -1.638303 2.238380 0.496462 -0.646346 0.391226 -0.558061 -1.289611 1.159235 -0.417476 -1.643198 -1.006785 0.238071 -0.678694 1.394492 0.442540 1.456546 -3.428439 0.192374 -3.359333 0.920109 -1.894672 1.401257 2.256725 -1.386260 1.703433 0.380130 0.848399 0.409986 -0.044230 1.592105 0.729292 1.075162 0.535237 1.618101 1.516119 -1.179108 -1.969678 -1.292792 -1.275301 0.378502 -0.631038 -3.295835 0.995416 -1.396858 0.102527 -0.190514 -0.019207 -0.581968 1.977870 -2.605236 0.121503 0.698305 -0.573258 1.226397 1.692463 -0.149239 0.293521 -0.594321 1.498868 -0.058774 1.001767 -0.257395 1.720992 -0.822237 -1.923050 -1.335805 0.461283 0.977437 -1.517937 -2.359252 -2.754016 -0.730223 0.753087 -1.113250 1.452704 3.510314 -1.110455 -2.079700 1.826680 0.098166 0.457004 1.560690 0.569455 3.034536 -1.488393 0.086112 -0.283838 -0.243253 0.782997 1.540332 -0.637404 -1.660801 1.559023 -0.628460 -1.395513 2.097335 -0.000182 -0.526759 0.007609 0.099518 -0.972715 -1.663279 2.537485 -1.100071 2.218308 -0.899656 2.966528 -1.188977 -1.231445 0.712170 -1.741624 -0.458718 -1.656854 -0.119654 -0.102573 1.550491 -1.749430 -1.521090 -0.586378 -0.436632 -0.682139 2.306958 -0.798048 -0.160195 0.184459 -0.077217 1.656806 1.342307 -0.909002 0.079525 -1.876165 0.880564 1.508414 0.310082 -2.892091 -0.683932 -0.700928 -0.756832 0.291066 0.163466 1.453915 -1.133746 -0.282421 0.974389 -0.142438 0.108436 0.039143 -2.427908 0.902996 -0.138344 0.642581 0.782106 2.724321 1.897960 1.615000 0.246972 0.590175 -0.139068 -0.735939 -1.428058 0.377406 0.350495 0.677865 1.194862 1.786005 1.122393 0.945394 1.607760 0.824545 -0.032816 2.115071 0.723833 2.668363 -0.977680 -0.573970 0.576838 -0.098345 1.895430 2.551741 -0.143033 -1.186003 1.145182 -0.289167 -1.164284 -1.512156 -0.243329 -0.377616 -0.458331 1.648411 1.269876 -0.385440 -0.544755 3.430827 -0.362982 -3.752490 1.760695 0.856811 1.278979 1.198358 -0.587422 0.853174 1.408462 -0.069630 1.051085 1.430365 1.375607 -2.112933 -0.175846 0.241695 1.379674 1.268326 0.522567 -3.831658 0.221368 0.764477 2.560571 0.402393 2.051335 -1.332982 0.100779 0.397477 -0.103449 0.307181 -0.139652 1.180066 -0.913265 0.160008 -2.309138 -0.143765 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 3.781219 -5.966311 6.469020 -16.563302 -11.655220 3.036554 1.241826 -13.659737 -4.745806 14.369221 4.179834 -5.013110 -3.657921 14.606208 -1.801522 -11.134998 1.339247 0.998737 0.998876 -1.406118 -2.226582 8.384316 -5.979678 -6.192306 1.801997 -5.812855 4.223841 9.653087 1.012005 6.233813 -2.167686 -11.196177 -2.785653 21.605162 9.829672 3.847631 -6.986660 27.653802 -10.455175 22.540395 -19.793058 -19.318753 18.621704 -3.401292 1.238542 -15.978237 -8.636318 8.615994 -4.526868 -8.485106 3.550304 -3.665526 9.762211 -8.274189 -1.635303 5.295760 -13.640585 1.278853 8.792546 -13.270781 -10.320422 -7.099591 -0.297422 7.724255 -21.240236 -11.129983 2.270335 3.538589 -2.750961 -0.107416 -8.996008 -15.569848 15.481952 8.644733 -9.012173 0.931493 1.172254 -15.339055 10.405684 0.296540 -19.719007 -8.476309 -4.484953 -11.929657 12.203291 2.860905 20.588336 -28.270107 11.329429 -29.937219 7.745109 -11.867294 10.946448 20.870527 -11.646436 11.045864 9.434863 21.087539 8.327419 -5.053465 12.358945 11.968518 2.921880 7.621312 17.464927 12.697622 -9.953925 -15.665195 -11.716843 -12.108974 4.787987 -14.681147 -27.628789 7.596214 -4.936363 -0.688107 -7.274125 1.851438 -6.566496 18.916898 -27.407148 -0.094140 6.023653 -5.206268 6.366878 8.816094 -2.720482 2.996776 -3.936659 13.628033 -8.677931 7.954316 -2.491713 15.969172 -13.557551 -0.485696 -11.153205 6.329752 8.401070 -13.763864 -19.362771 -23.425923 -9.147917 13.354543 -7.284748 16.528546 28.924638 -14.165206 -17.849335 15.934728 -1.883519 -3.981137 11.622954 6.348787 15.316594 -7.302480 -3.734099 -10.368522 -5.729213 2.891018 17.804055 0.242332 -11.035742 17.534814 -10.667208 -11.158495 20.614219 -3.524932 -9.647454 -13.525113 2.300864 -11.424915 -7.321543 19.185422 -23.773199 14.686539 -9.961613 21.644033 -7.838613 -5.881822 3.000184 -25.921473 -6.305269 -15.627752 1.732292 -0.819998 13.971950 -16.369595 -12.515245 -5.354680 -7.453099 -6.191460 14.519840 -12.229174 -1.705228 6.035263 2.890041 23.849414 16.730835 0.854671 -5.012422 -8.454614 10.659560 11.532588 -0.958246 -15.814149 -8.116587 -6.383699 -6.201607 -4.237987 3.076447 13.044028 -13.528773 -1.662446 1.003233 -0.272850 1.684981 5.366722 -27.567455 8.183106 3.083314 10.485126 7.618533 17.552791 13.629684 18.449414 8.270163 3.801434 -1.230762 -4.215437 -12.472027 5.815378 9.014457 0.531976 8.836620 19.682157 12.463261 9.511514 15.528789 13.125630 7.976915 16.609773 -0.790943 22.818004 -1.663093 -4.049146 3.688968 3.434905 14.982598 24.300209 3.522953 1.150314 9.660526 -3.900585 -12.249637 -10.225314 3.763891 -2.839412 -0.070997 7.684415 12.434426 -1.066829 -7.374047 24.870080 -2.287807 -28.645556 11.059326 7.371370 12.999634 15.288518 -3.043402 8.893271 6.496888 -2.286523 18.844057 14.542035 8.522318 -17.167915 -1.189547 2.648607 7.114141 19.839454 8.749147 -21.233411 6.226280 4.584224 20.432647 1.317962 17.771996 -12.817552 2.103437 6.950445 -6.157798 1.367622 -0.911433 7.814211 -3.391177 1.286765 -19.028663 -7.834589 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = -0.050637 0.041361 0.702586 -0.911522 -0.870521 -0.036935 0.480005 -0.350551 -0.146960 -0.343766 0.491170 -0.278957 -0.592537 0.722889 -0.132578 -0.737223 -0.016913 -0.551306 -0.281232 -0.388301 -0.058155 0.501848 -0.153031 -0.094467 0.427307 -0.366118 -0.196671 1.084192 0.516158 -0.494136 0.127642 -0.265707 0.021922 1.130395 0.077127 -0.073247 0.143622 1.842304 -0.538177 0.354687 -0.778852 -0.714421 1.340235 -0.274478 -0.651977 -1.338995 -1.001120 0.506576 -0.915330 0.080976 0.417465 0.070223 0.264686 -0.505263 0.065104 0.959835 -1.615249 0.567340 0.414323 -0.555362 -0.423680 -0.228973 -0.453383 -0.315762 -0.155932 -0.607649 0.226554 -0.049663 -0.250735 0.065293 0.015085 -0.614001 1.798294 0.191332 0.016260 0.534982 0.366722 -0.854475 0.749829 0.028247 -0.925434 -0.476587 0.160132 -0.363879 1.104636 -0.454523 0.289612 -1.484470 -0.336655 -1.427167 0.393362 -1.085073 0.434904 0.982622 -1.065388 0.946151 0.445702 -0.127414 -0.009781 -0.020143 1.050215 0.144679 0.583590 0.726987 0.707987 0.234403 -0.377670 -0.563900 -0.942027 -0.815968 0.159200 -0.490595 -1.880885 0.362238 -0.187211 -0.407342 -0.026100 -0.097286 0.114333 1.202416 -0.237815 0.882115 0.665436 -0.282955 -0.116909 0.989925 -0.133435 -0.247498 -0.490845 0.929396 -0.544015 0.931096 -0.264774 0.654126 0.334677 -1.404731 -0.747804 -0.159158 0.049616 -0.590949 -0.989546 -0.604675 -0.170470 0.078445 -0.415466 0.378947 1.876679 -0.705420 -1.200502 1.251306 1.126082 0.478322 0.528587 0.403662 1.109034 -0.216415 -0.583697 -0.788533 -0.607692 0.361518 0.032109 0.113884 -0.332567 0.701812 0.156571 -1.110797 2.029114 -0.467916 -0.503682 0.905254 0.136486 -0.753593 -1.144749 1.219846 1.348518 1.359919 0.198669 1.474839 -0.298273 -1.088451 0.222232 0.229677 0.086062 -0.893158 -0.102707 0.287190 0.179669 -0.404223 -0.801127 -0.627649 -0.181035 -0.443146 0.527366 0.308097 0.381144 0.218207 0.274358 -0.326427 1.161327 -0.160875 0.118209 -1.137355 0.465869 0.603967 0.255227 -1.399845 0.126843 0.051685 -0.198445 0.287498 0.094077 0.680165 -0.196854 -0.135112 0.206665 -0.224139 -0.067980 0.204677 -1.620249 0.235229 -0.142514 0.191996 0.309666 0.741007 1.639519 0.633928 0.289202 0.601300 0.000187 0.117241 -0.286994 -0.194666 0.048828 0.663368 0.528083 1.059414 0.850440 0.447568 0.888388 0.899542 0.293298 0.946803 0.534673 1.724026 -0.065180 -0.547704 -0.013752 0.369569 1.026411 1.379535 0.486363 -0.070977 0.637510 0.771934 -0.207859 -1.641077 -0.018644 -0.203128 0.029851 1.199151 0.293323 -0.428007 -0.011053 1.313530 -0.118642 -1.498458 0.743076 0.390841 0.589491 -0.148114 0.159287 -0.062949 0.892768 -0.684270 0.579667 0.574249 0.695591 -1.031330 -0.346476 0.153715 0.679478 0.030017 0.931853 -1.660040 0.060290 0.206536 0.859969 0.033485 0.872024 -0.464219 -0.615775 0.399691 -0.147980 -0.216563 0.518303 0.082365 -1.105273 0.242659 -0.864954 -0.566739 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.367997 -0.995522 3.436030 -6.085468 -5.981834 0.671921 -0.104162 -4.281525 -1.462105 1.421899 2.297576 -2.120404 -3.401087 5.020297 -1.570742 -5.554804 -0.464670 -0.045778 -0.117668 -2.257221 -0.884936 2.981557 -1.874151 -1.477553 1.418180 -2.789979 0.288634 4.951143 3.784919 0.169314 -0.244434 -3.324169 -0.471198 8.080212 2.681961 0.689251 -0.774791 11.554665 -2.040641 4.665465 -7.137174 -6.442033 7.680765 -1.465988 -1.204717 -7.538209 -4.800030 3.280558 -6.516145 0.273269 2.292906 -0.795809 3.028755 -2.854884 0.263257 3.620846 -8.194365 4.064663 3.031037 -4.615015 -2.671986 -2.225714 -2.203921 0.819863 -3.173971 -4.108631 0.804047 2.073512 -1.790661 0.121428 -1.790224 -4.721566 9.614426 2.090642 -2.524601 1.704836 1.571099 -4.810350 3.990750 -1.260729 -7.459569 -3.293585 0.362674 -2.092233 5.858841 0.171968 4.947308 -10.548660 0.720178 -11.139664 3.192093 -5.473829 3.951667 7.194133 -6.720023 5.011657 3.743329 1.938119 2.811141 -0.602341 5.752836 2.518924 2.064071 3.776574 4.953666 3.082343 -2.174382 -4.380486 -4.574883 -5.098408 0.171346 -3.804353 -11.999203 2.521537 -2.004660 0.575718 -2.119268 0.295832 -1.006107 6.282657 -6.405735 1.354441 2.836400 -2.024355 2.105863 4.643260 -1.039938 0.523011 -2.059471 5.801358 -3.938855 3.817568 -1.637748 5.517764 -0.659546 -6.168807 -7.161423 1.151593 2.427151 -4.582040 -7.261383 -5.942097 -2.688281 2.264067 -2.675012 4.195456 11.938277 -5.391171 -7.560338 7.291105 1.533290 1.349008 5.558627 2.792306 6.656463 -2.022611 -2.330401 -4.611466 -3.321635 1.341261 2.535817 0.434186 -3.541066 5.783326 -0.915772 -4.518923 7.401999 -2.196500 -4.041781 -1.753748 0.817035 -4.569234 -4.341560 7.375945 -0.898109 6.846533 -1.465993 9.237584 -3.147250 -5.982728 1.151245 -4.808726 -0.964448 -3.916719 0.279488 0.969078 3.322755 -5.564580 -5.213379 -2.631836 -1.843614 -2.768708 4.444837 0.483353 0.326704 2.335167 1.512598 4.712328 7.598881 0.118827 -0.203500 -5.222668 3.690082 4.197236 0.455075 -8.352643 -1.218824 -1.065886 -1.899295 0.756505 1.098610 4.676196 -2.584272 -0.778095 -0.003634 -1.066530 1.723340 2.283422 -8.488854 2.697781 -0.100100 2.503342 2.635710 5.790443 7.757683 6.195105 3.113286 2.884274 -0.113654 -1.122865 -0.227088 0.693903 3.108143 1.703538 3.397944 7.233007 5.363086 3.049462 5.824183 5.678475 1.931334 6.399669 0.928299 10.419714 -2.117259 -1.912332 0.138115 1.739277 6.393693 10.049537 0.779876 0.272637 3.995882 1.801223 -1.720852 -8.032419 1.050234 -1.095130 -0.353940 5.405643 3.892303 -1.371293 -2.013789 9.078777 -0.819639 -9.935559 5.695527 2.784735 4.171585 1.674312 -0.065196 -0.010464 3.863764 -3.476559 5.220642 5.058688 4.093395 -6.782312 -1.762919 0.836831 3.982032 3.995253 4.720448 -8.230459 0.823516 2.821694 6.958731 1.082169 5.279568 -4.239471 -3.313860 2.672566 -2.113317 -0.526399 1.251877 1.401864 -4.044433 1.385345 -4.191413 -4.712884 +PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = 0.349351 0.150373 0.689204 -0.887578 -0.770208 -0.138381 0.835972 -0.820234 -0.488473 1.370256 0.233832 -0.789492 -1.024805 1.006473 -0.251987 -0.815827 -0.120997 -0.499490 -0.363606 -0.466564 -0.372275 0.582629 -0.243275 -0.615889 0.489414 -0.267910 0.245159 1.128946 0.097774 0.075032 0.324210 -0.577569 0.416876 1.681064 0.399834 0.161985 -0.478977 2.109925 -1.368803 1.665187 -1.773096 -1.711045 2.207676 -0.193915 -0.094051 -1.677350 -0.337249 1.116508 -0.859891 -0.707481 -0.037871 0.091276 0.284072 -1.148976 -0.385410 1.242286 -1.945719 0.830794 0.613862 -1.212147 -1.294720 -0.253350 -0.022026 0.309852 -0.993765 -1.106048 -0.169433 -0.261342 -0.638653 0.308087 -0.775371 -0.835771 1.295522 0.218325 -0.396066 0.394720 -0.263578 -0.378110 0.892986 -0.532143 -1.001173 -0.792809 0.195572 -0.520447 0.701298 0.602141 0.917744 -2.290415 0.120640 -2.028172 0.867417 -1.068305 0.810304 1.374917 -0.573939 1.459478 0.310977 0.126478 0.287746 -0.202337 0.963812 0.470601 1.061610 0.754134 0.948810 1.161759 -1.099296 -1.536015 -1.254936 -0.939541 0.529606 -0.544256 -1.861673 0.543377 -0.668271 0.156873 0.197233 -0.153849 -0.309513 1.330301 -2.089079 0.375241 0.592726 -0.318821 0.694764 0.914519 -0.005962 0.123547 -0.228989 1.029125 -0.207200 0.805903 0.080545 1.206031 -0.347505 -1.046638 -0.678916 0.365073 0.431793 -0.879689 -1.289083 -2.005410 -0.474618 0.786889 -0.786349 0.929530 2.449537 -0.756928 -1.501413 1.233738 -0.016750 0.206394 0.623900 0.458423 1.846831 -0.819685 -0.318633 -0.323221 -0.347890 0.936241 2.013542 -0.177344 -1.219294 1.252049 -0.280511 -0.949943 0.971959 -0.206493 -0.419273 -0.245843 0.142226 -0.707855 -0.776079 1.388510 -0.887770 1.621621 -0.916741 1.918496 -0.757222 -0.831511 0.365206 -1.851940 -0.434240 -1.240553 -0.127464 -0.065194 0.796651 -1.376887 -0.878517 -0.740431 -0.425601 -0.567673 1.470057 -1.295960 -0.019458 0.130390 0.031789 1.470369 0.776101 -0.525167 -0.234167 -1.307995 0.535621 0.752481 0.496233 -2.105784 -0.432967 -0.356571 -0.537852 0.491476 0.001358 0.911144 -0.576053 0.159433 0.662763 -0.379069 -0.220519 -0.054869 -1.448913 0.466313 0.137505 0.653564 0.521099 1.779334 1.383818 1.019319 0.138664 0.899933 -0.152441 -0.493707 -0.975972 0.406199 0.331197 0.233987 0.857099 1.221815 0.823778 0.651715 1.311993 0.720192 -0.222880 1.441282 0.144823 1.776124 -0.900725 -0.360422 0.436975 0.337863 1.105842 1.472727 -0.083338 -0.838954 0.907054 -0.329383 -0.757143 -0.589728 -0.126338 -0.386576 -0.139766 1.472975 1.042895 -0.359851 -0.179921 2.224128 -0.260222 -2.514483 1.219909 0.609582 0.880668 0.548630 -0.353930 0.496601 1.099043 -0.127477 0.467185 1.002470 0.858709 -1.698709 -0.062670 0.146789 0.932066 1.299247 0.497351 -3.110902 -0.415693 0.422810 1.715450 -0.091809 1.798134 -0.949584 -0.195134 0.415922 -0.037034 0.072586 0.019662 0.601220 -0.348975 0.287379 -1.635883 -0.063692 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 1.226427 0.578581 1.583869 -2.990728 -1.723567 -0.849361 3.372592 -3.000677 -1.971933 5.446285 1.082053 -3.034501 -2.350264 3.092518 -0.446318 -1.957787 0.487592 -1.006096 -1.464817 -1.452834 -1.325657 1.479454 -0.797521 -3.384223 1.759540 -0.683903 1.346588 3.695191 -0.463430 0.901799 0.862769 -1.735924 1.860861 5.813096 1.458063 0.247148 -2.537353 6.558305 -5.319079 5.291683 -5.550601 -5.297260 8.241146 -0.773418 0.208893 -5.402374 -1.199534 3.777886 -0.629716 -3.516773 -1.198836 0.008893 1.333563 -4.805028 -2.374835 4.491171 -5.064827 1.600963 2.685058 -4.466068 -5.327456 -0.989727 0.887972 1.426467 -4.534734 -3.920087 -0.471972 -1.373349 -1.515646 1.016868 -3.863358 -3.484180 3.546884 0.767453 -0.790927 1.226208 -2.332329 -2.089374 2.666144 -0.333350 -2.771490 -2.747944 1.090728 -1.494966 1.377767 2.291798 3.909220 -7.744290 0.073458 -6.881263 2.748544 -3.554911 3.287148 4.654757 -1.544914 4.974304 0.441738 1.672620 0.672447 -0.176093 3.046454 1.525436 3.819080 1.425349 3.494249 4.496834 -3.740149 -5.798528 -3.736411 -2.591178 2.134834 -1.619524 -5.678906 2.603880 -3.474776 -1.020467 0.091756 -0.670101 -1.109827 5.173354 -6.618720 0.513737 2.202446 -1.035781 2.636863 2.889404 0.220022 0.609654 -0.779410 2.629084 0.474635 2.195978 0.201274 4.493855 -2.249788 -3.171260 -1.170876 1.320113 1.775072 -3.661436 -4.569786 -7.042803 -1.727858 2.505602 -2.928724 2.315797 7.658677 -2.399698 -4.571830 3.320598 0.516982 0.144015 1.938058 1.391401 7.109542 -3.923682 0.364692 0.076922 -0.087340 3.655961 7.633438 -1.730292 -4.782368 4.053163 -1.826638 -3.810392 3.882168 -0.006416 -0.435411 -0.366245 0.691359 -1.916306 -2.864376 4.967198 -3.808907 5.658139 -3.867200 6.157747 -3.184387 -1.900595 1.591745 -5.577614 -1.933665 -4.501186 0.179491 -0.577051 3.659640 -4.029338 -3.160324 -1.731113 -1.500436 -1.284120 5.662913 -5.422768 -0.617222 -0.083151 -0.925970 3.881016 1.551555 -2.431809 -0.664665 -4.154649 1.748745 3.052388 2.137622 -6.857503 -2.288238 -1.875564 -2.103564 0.192160 0.206651 3.615156 -2.131858 0.422692 3.142083 -0.793342 -1.014772 -0.988887 -4.934211 2.141615 0.126003 2.024274 1.268539 6.988337 4.127285 3.454075 -0.460862 1.909544 -0.495457 -2.471579 -4.799856 1.863462 0.520390 0.882111 2.974504 4.010811 2.450717 2.471678 4.338742 0.788440 -0.466864 5.137799 0.443978 5.534307 -2.875167 -0.939063 2.195779 0.235179 4.053245 4.652858 1.158654 -4.568171 2.661752 -2.134883 -3.610082 -1.254638 -0.842078 -0.613770 -0.866717 4.570961 3.658364 -1.048758 -1.104711 8.012604 -0.804547 -9.082953 4.196073 1.829535 3.240376 2.918511 -1.892182 2.844475 3.992729 1.217641 1.542279 3.143489 3.086901 -5.593814 -0.349383 0.564893 3.256696 4.544135 0.246546 -11.163049 -0.106971 1.257221 5.756939 -0.250678 6.185049 -3.328931 1.390851 0.674186 0.545232 0.851962 -0.707682 2.621063 -1.045419 0.190385 -6.682855 1.242392 +PE-benchmarks/reservoir-sampling.cpp__main = 0.493368 0.013390 0.583483 -1.373678 -0.817736 -0.204194 0.890518 -0.903663 -0.511552 0.941616 0.489621 -0.992715 -0.778138 1.457671 -0.220356 -0.938673 0.252834 -0.709708 -0.457417 -0.183566 -0.381793 0.671841 -0.313242 -0.932203 0.660231 -0.177753 0.139327 1.305845 0.343523 -0.237794 -0.150432 -0.550655 0.379001 2.143066 0.445824 -0.129063 -0.384012 2.777642 -1.343354 1.698577 -1.784737 -1.464483 2.611531 -0.387322 -0.335479 -2.048057 -0.938702 1.217736 -0.716456 -0.770053 0.049234 -0.032476 0.255463 -1.447271 -0.461604 1.710934 -2.275600 0.967136 0.982752 -0.811340 -1.262226 -0.591187 0.014884 0.043688 -1.182325 -1.337987 0.082698 -0.319912 -0.784774 0.272956 -1.157520 -1.261726 2.013103 0.493972 -0.379793 0.549144 -0.409261 -1.230933 1.027188 -0.498915 -1.283204 -0.815596 0.316641 -0.425583 1.269604 0.231165 1.015515 -2.816740 0.024417 -2.645058 0.755122 -1.748877 1.109632 1.981525 -1.187625 1.569397 0.231921 0.526966 0.314318 0.186199 1.433540 0.594477 0.963332 0.476296 1.295191 1.186127 -0.961616 -1.585426 -1.086708 -1.044410 0.309923 -0.506821 -2.677444 0.876213 -1.065012 -0.127959 -0.062767 0.046972 -0.357634 1.589926 -1.872679 0.137948 0.709483 -0.457997 0.817302 1.448692 -0.138040 0.024251 -0.742377 1.266950 0.033897 0.980262 -0.271728 1.404073 -0.626599 -1.680647 -0.927975 0.111334 0.579999 -1.273788 -1.949033 -2.231254 -0.527026 0.417236 -0.976972 1.149309 2.880485 -0.895298 -1.680378 1.680492 0.634759 0.554908 1.127668 0.433035 2.415489 -1.157547 -0.008218 -0.181115 -0.214568 0.677526 1.158006 -0.453095 -1.389378 1.131813 -0.507188 -1.586823 2.049587 0.027176 -0.370850 0.177542 0.043761 -0.950656 -1.547409 2.215218 -0.436452 2.084863 -0.745540 2.465515 -0.907361 -1.080912 0.724062 -1.110709 -0.257244 -1.583541 -0.121597 -0.028635 1.098597 -1.380534 -1.297881 -0.434815 -0.287404 -0.638458 1.719756 -0.688809 -0.091646 0.064613 0.021860 0.991598 1.109621 -0.853564 0.214490 -1.711562 0.741332 1.205026 0.346976 -2.401746 -0.321888 -0.465601 -0.636055 0.276792 0.109543 1.065424 -0.863169 -0.331289 0.898404 -0.133546 0.040817 -0.059968 -2.042120 0.654234 -0.176913 0.459614 0.654850 2.153391 1.787237 1.162015 0.081790 0.484490 -0.136214 -0.468872 -1.256606 0.270439 0.085753 0.601509 1.006041 1.527281 1.058710 0.727228 1.409987 0.731524 -0.117205 1.786524 0.693502 2.307295 -0.541620 -0.612534 0.543377 -0.099855 1.686012 2.138863 0.017814 -1.021584 1.042822 -0.045405 -0.928379 -1.259874 -0.301582 -0.308979 -0.504465 1.506806 0.643002 -0.438290 -0.261930 2.776526 -0.353241 -3.033829 1.403120 0.680510 1.125047 0.678099 -0.319717 0.682712 1.430115 -0.341081 0.826521 1.035723 1.191802 -1.627545 -0.359165 0.184066 1.101472 1.016848 0.570327 -3.053503 0.223022 0.625657 2.028300 0.308337 1.603279 -0.912361 -0.043316 0.260878 0.046043 0.109346 -0.104776 0.836728 -0.879704 0.019153 -1.937978 -0.227996 +PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = 3.079498 -0.196906 3.525618 -5.548750 -2.362617 -0.819153 4.971151 -6.202075 -2.434919 10.260380 1.901734 -4.368050 -1.315642 4.687633 -1.382151 -2.271011 2.214622 0.942016 -1.681331 -1.565763 -2.308464 1.749170 -1.923113 -5.839942 2.156818 -1.506238 3.970522 4.908381 -2.838921 2.168204 0.244572 -3.791366 2.467354 10.460918 3.331432 0.440069 -5.000365 9.167132 -5.939847 9.446978 -9.990561 -6.935035 11.355637 -1.518484 1.921498 -8.949474 -2.078943 5.883987 1.615756 -7.128380 -2.557876 -1.510963 4.052400 -8.448449 -4.519819 6.192974 -5.329746 -0.322470 5.260152 -8.306014 -9.197450 -1.700994 3.373235 3.455595 -9.648939 -6.887861 0.259972 -0.777118 -1.906193 2.135238 -7.191065 -7.970708 4.655575 1.227403 -2.994948 1.173201 -3.913114 -5.457706 4.213776 1.428654 -4.750921 -5.310095 0.812146 -4.242273 2.290738 2.057113 8.347604 -13.030931 2.741135 -12.013936 4.345172 -5.059548 6.315854 7.883059 -2.320487 6.583209 1.155914 5.819740 0.481163 -0.234949 4.733845 3.538752 4.351920 0.560114 7.413200 6.718448 -5.737046 -10.323540 -4.750324 -4.498974 3.646756 -3.360541 -8.960574 4.154043 -6.163099 -0.138665 -1.462528 -0.539333 -1.924183 10.419581 -11.458988 0.029362 4.446557 -2.512959 3.879062 5.073398 0.375710 1.246170 -1.245632 4.090713 0.015874 1.928821 0.001171 7.847568 -5.803745 -3.408221 -1.344127 1.958798 3.602588 -6.219472 -8.702430 -11.621408 -4.030032 5.410498 -4.516755 4.852035 11.463028 -4.100978 -7.873207 4.139090 0.196425 -2.583904 3.699754 2.979009 11.188432 -7.874269 1.830198 -1.849063 0.918073 5.832010 12.385060 -3.918006 -8.083097 8.259256 -5.193401 -7.171394 9.829610 0.293282 -0.084260 1.077306 1.168267 -2.121777 -3.923445 7.729919 -8.624613 8.590292 -6.793923 11.159009 -5.766806 -2.191407 1.418935 -8.608205 -3.479014 -5.572370 1.377283 -0.524561 8.267864 -6.139669 -6.067902 -1.393552 -4.090491 -0.316686 10.755862 -8.250539 -1.734814 -0.337736 -3.138788 9.049969 2.373437 -3.938837 -1.462447 -4.445435 3.506602 5.081172 2.773335 -8.680742 -5.188406 -4.031131 -3.773783 -2.699575 1.237477 7.230572 -5.376479 0.269794 4.877982 -1.117419 -2.483097 -2.151132 -9.307549 3.900448 -0.369140 3.454434 1.193283 11.792435 5.769876 6.664360 -0.589619 0.712120 -1.559471 -4.753722 -9.724474 3.444075 1.354553 0.848339 4.465851 6.042612 3.375582 4.253709 6.402861 0.166889 2.059677 8.454743 0.074383 7.193501 -4.381132 -0.359644 4.211265 -0.725569 7.032874 7.809410 1.861549 -6.436768 3.898476 -3.555568 -7.330662 -2.870795 -1.134269 -0.081447 -1.482873 4.784031 7.484426 -1.427034 -3.267087 13.405584 -0.666771 -14.214334 6.329107 2.825687 5.044772 7.273981 -3.596156 6.595679 4.439757 4.893433 3.224498 4.634556 5.323615 -9.518453 -1.122981 1.355097 4.621188 7.908335 0.298559 -16.912629 0.289079 1.524018 9.993763 -0.779256 10.485316 -6.260367 5.286955 1.383862 0.392783 1.887650 -1.730800 4.578465 -1.381598 -0.927207 -11.699918 3.440962 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 0.735723 -0.052920 1.240441 -2.107643 -0.031191 -0.756205 3.025553 -1.009817 -0.479906 3.308342 0.226703 -1.127051 -1.463907 1.705667 -0.042826 -0.822061 1.182874 -2.119755 -0.709555 -0.050666 -0.356082 0.989221 -0.148775 -1.971696 1.250130 -0.191376 0.860139 2.070643 -1.042457 -0.245883 0.272471 -0.914758 0.884135 2.971787 0.380505 0.144187 -1.389502 2.914103 -3.043937 3.823895 -3.112266 -2.475171 3.956033 -0.582243 -0.127060 -3.277441 -0.007191 1.701561 0.294248 -2.270298 -0.599170 0.092989 0.899639 -2.983801 -1.217237 2.637885 -2.519508 0.124651 1.301647 -1.675500 -2.438767 -0.675921 0.584600 0.806860 -2.523926 -1.925895 0.156213 -1.738949 -1.615920 0.891729 -1.722854 -1.371476 1.288387 0.700147 -0.371181 0.787557 -0.999294 -1.880592 1.551025 -0.988098 -0.868461 -1.557477 0.186880 -1.062657 1.054003 0.255790 1.747038 -3.815404 0.083363 -2.738747 1.459332 -1.974749 1.506272 2.378381 -0.075809 2.629008 -0.382638 1.149044 -0.414532 -0.777298 1.425954 1.419815 2.487548 0.257101 2.212252 2.180386 -2.312872 -3.421737 -1.730518 -0.731440 1.102248 -1.353957 -2.440486 1.116969 -1.404704 -0.745418 0.773378 -0.666263 -1.051876 2.862930 -3.452212 0.427791 1.163310 -0.634263 0.738760 1.668466 0.168836 -0.307893 -0.182840 1.596901 0.650293 1.601154 0.133793 2.298994 -1.638941 -0.942170 0.872294 -0.064409 0.485579 -1.673958 -2.408466 -3.857328 -1.043892 1.342293 -1.148633 1.677925 3.340987 -0.465950 -2.444225 1.491204 0.324825 -0.131133 0.136433 0.606846 2.450947 -2.053877 0.273372 -0.350046 0.603654 1.973463 5.635940 -0.876143 -2.548658 2.058410 -1.699364 -2.339361 1.569396 0.571823 0.478460 -0.019334 -0.243300 -1.591564 -1.716049 2.486580 -2.675197 3.056270 -2.305855 3.172482 -1.531306 -0.715329 0.689385 -2.780139 -0.674373 -2.976757 -0.263665 0.402775 1.569753 -2.040299 -1.687759 -1.329954 -0.530495 -0.222559 3.053780 -4.513927 -0.499659 -0.732167 -0.473020 3.251064 0.247088 -1.911655 -0.238457 -1.637694 1.022381 1.266609 1.356435 -3.131774 -0.873184 -0.458436 -1.259455 0.295917 0.083881 1.625344 -1.381312 -0.246863 2.376063 -0.355508 -1.659171 -1.089444 -3.959372 0.605551 0.714077 0.761019 0.584503 3.254129 1.647235 0.958301 -0.915043 0.282238 -0.729477 -1.169308 -3.812065 0.661253 -0.200593 -0.301010 1.212067 2.156215 1.008333 0.832289 2.391707 1.145034 -0.837243 2.261300 0.333434 1.502831 -0.626274 -0.963381 1.777007 -0.354394 1.918858 1.529908 0.607803 -2.224820 1.783598 -0.699380 -1.904659 -0.178241 -0.748994 -0.728780 0.125577 2.490238 1.476874 -1.085904 -0.087269 3.750511 -0.357368 -4.332678 1.425514 1.121681 1.796105 1.539265 -1.071980 1.744367 1.834148 0.489536 1.007746 0.563072 1.235832 -2.110609 -0.393643 0.401069 0.989945 2.667541 0.129223 -5.517078 -1.172433 0.073095 3.214907 0.263098 3.860643 -1.106103 1.562973 -0.066930 0.543596 0.517621 -0.772056 1.211448 -0.838826 -0.318722 -3.778066 1.563430 +PE-benchmarks/min-cost-path.cpp__main = 0.975575 -0.089832 0.832351 -1.523887 -0.776412 0.050664 0.554987 -1.571803 -0.538668 1.784439 0.515704 -1.054514 -0.547317 1.288203 -0.536228 -0.998038 0.445198 -0.096377 -0.328843 -0.401340 -0.604923 0.369871 -0.525897 -1.339623 0.460307 -0.403718 0.784390 1.121159 0.008290 0.152325 -0.405981 -0.848937 0.416429 2.773217 0.952332 -0.083879 -0.738558 2.748715 -0.691623 1.904443 -2.433344 -1.710305 2.648248 -0.403919 0.211366 -2.096234 -0.624748 1.428422 -0.551264 -1.033398 -0.245927 -0.524542 0.719161 -1.821772 -0.932727 1.678016 -2.006282 0.795782 1.202118 -1.375110 -1.841110 -0.671571 0.679732 0.573115 -1.590696 -1.696694 0.318681 0.239049 -0.920805 0.519375 -1.786363 -1.976116 1.911299 0.504871 -0.839124 0.257703 -0.721562 -1.380891 1.015562 -0.240875 -1.523515 -1.170081 0.311165 -0.748582 1.227037 0.421712 1.674041 -3.409720 0.644670 -3.339681 0.969568 -1.556394 1.676251 2.161661 -1.236322 1.482250 0.395089 1.144933 0.281942 0.089073 1.523307 0.708741 0.716577 0.126323 1.741928 1.280285 -1.014863 -2.045081 -0.869631 -1.211609 0.302816 -0.604266 -2.821361 1.005337 -1.690387 0.489296 -0.501310 0.180957 -0.573043 1.958429 -2.848547 -0.567477 0.747003 -0.648306 1.392812 1.449930 -0.082819 0.467058 -0.497231 1.396090 -0.039924 0.365472 -0.330001 1.793741 -0.947120 -1.497371 -1.358486 0.433607 1.182070 -1.572339 -2.559250 -2.616986 -1.040110 0.842693 -1.068974 1.755218 3.107841 -1.001033 -2.006789 1.476232 -0.133748 0.020781 1.793899 0.697900 2.876265 -1.899217 0.516028 -0.348811 0.165086 0.892933 1.300766 -0.969004 -1.728475 1.793616 -0.882859 -1.090090 2.150133 0.085771 -0.291845 0.098995 0.062670 -0.714000 -1.344267 2.224943 -1.401022 2.162346 -0.978469 3.118454 -1.491707 -1.142341 0.540443 -1.644226 -0.557750 -1.040263 0.179386 -0.230199 1.929942 -1.785464 -1.692011 -0.113140 -0.646777 -0.273170 2.513789 -0.437737 -0.341358 0.063420 -0.503391 2.111467 1.167466 -0.968376 0.030681 -1.441352 0.882250 1.512469 0.380843 -2.189750 -0.940147 -0.912204 -0.819212 -0.111359 0.318466 1.631828 -1.325026 -0.319670 0.924364 -0.069763 0.125445 -0.144989 -2.160663 0.982175 -0.271292 0.451117 0.552757 2.820825 1.651024 1.666624 0.121611 -0.008861 -0.211596 -0.989734 -1.478573 0.430862 0.453010 0.660421 1.080786 1.533922 0.925754 0.940682 1.480905 0.474249 0.278494 2.134202 0.363872 2.248407 -1.220025 -0.089940 0.659246 -0.415822 1.970345 2.499047 -0.390220 -1.207377 1.047936 -0.364580 -1.236903 -1.485311 -0.310199 -0.178200 -0.477294 1.022380 1.468222 -0.304303 -0.850991 3.426248 -0.151175 -3.450289 1.831956 0.781488 1.127234 1.474453 -0.789895 1.070008 1.148509 0.341672 0.869794 1.236870 1.455214 -2.130452 -0.229035 0.249670 1.380569 1.084701 0.296643 -3.199112 0.263321 0.774523 2.554268 0.485367 1.860758 -1.442471 0.504458 0.306427 -0.129452 0.368308 -0.209330 1.238924 -0.725434 -0.114009 -2.218038 0.134272 +PE-benchmarks/box-stacking.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/box-stacking.cpp__max(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = 0.977043 -0.563327 0.612537 -1.695973 -1.049360 0.684873 -0.029938 -1.618078 -0.474680 1.255586 0.709770 -0.330584 0.797466 1.513371 -0.071878 -0.747287 0.418258 -0.325273 0.029863 -0.248022 -0.286443 0.598252 -0.608626 -0.639956 -0.165304 -0.831429 0.272071 0.670073 -1.278473 0.305463 -0.428332 -0.968077 -0.543244 2.170238 1.153194 -0.183134 -0.646114 2.681846 -0.948313 2.007073 -1.557555 -1.364154 1.509526 -0.402520 0.098088 -0.956960 -1.346391 0.608129 1.472573 -0.906355 0.285290 -0.704253 0.939731 -0.570608 -0.452692 0.528144 -0.699758 -0.693453 0.864614 -1.559349 -1.266255 -0.530052 0.436454 0.881638 -2.336537 -1.132121 0.955336 0.952711 0.440582 -0.051007 -1.099484 -2.384278 1.431101 1.199683 -0.358765 -0.150530 0.119402 -1.780967 1.161434 0.874050 -2.116083 -0.798449 -0.651830 -1.848292 1.180237 -0.136032 2.574420 -2.862233 1.842961 -3.232848 0.605782 -1.097686 1.109966 1.913175 -0.397387 0.748950 1.193894 2.855258 0.540343 -0.295095 1.377783 0.968872 -0.258254 0.791128 2.063110 1.157802 -0.836612 -1.312873 -1.064021 -1.184840 0.775156 -1.312932 -2.316273 1.241769 -0.574434 -0.705186 -1.165998 0.537391 -0.332586 2.755775 -2.072889 -0.155803 0.831385 -0.607573 0.331668 0.867534 -0.306824 0.401861 -0.831498 1.175441 -0.951612 0.712444 -0.268093 1.458264 -1.689449 0.315983 -1.105981 0.812974 1.055909 -1.886995 -1.964249 -1.840441 -0.821026 1.759091 -0.953422 2.862145 2.988440 -1.769532 -1.696737 1.447338 1.140486 -1.002666 1.189968 0.711496 2.092748 -1.021893 -0.305915 -1.199065 -0.455430 0.236064 0.759624 -0.117355 -0.421821 2.012079 -0.795147 -1.030104 4.566810 -0.677468 -1.103912 0.775955 0.491564 -0.363155 -1.027646 1.717752 -0.732351 1.474199 0.051275 2.511995 -0.676743 -0.111904 0.266701 -1.551825 -0.809195 -1.471534 0.736032 -0.547508 1.764982 -0.632358 -1.316194 -0.119473 -1.628486 -0.414285 1.469726 -0.016216 0.483103 0.850714 -0.292674 1.759907 2.197782 0.492939 -0.663648 -0.967232 1.166028 1.365929 -0.324238 -0.790004 -1.191216 -0.607648 -0.316887 -1.166936 0.382822 1.771588 -1.961663 -0.126173 -0.110291 0.379732 0.103864 0.633691 -2.865452 0.911751 0.137463 1.156564 0.307951 1.773965 1.517107 2.179031 1.141240 -0.181858 -0.258014 -0.033535 -1.751560 0.332363 0.715675 0.750271 0.891007 2.145844 0.780449 1.328600 1.741680 0.711152 1.856058 1.503045 -0.473040 2.504371 -0.099999 -0.154985 -0.048475 0.141264 1.898526 2.813303 0.660736 -0.072254 0.698256 -0.467517 -1.936375 -1.349941 0.596129 -0.049973 0.160616 0.105594 1.739794 0.262781 -1.288113 2.614405 0.213873 -3.041665 0.973812 0.828560 1.124198 2.312725 -0.371104 1.629705 0.446635 0.366868 1.719059 1.741249 1.105107 -2.081398 0.125730 0.397305 0.715544 0.738795 1.000579 -2.192068 1.542807 0.645598 1.817013 -0.311899 1.842267 -1.744783 0.772012 1.087811 -0.391929 0.140368 0.762690 1.092100 -1.256451 0.607134 -2.090953 -0.314124 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 10.553204 -6.097404 5.083163 -9.618439 -4.717234 1.708558 7.231126 -18.385256 -8.201194 26.193825 5.766297 -11.489233 2.059996 16.096034 -0.966403 -3.936479 4.983407 7.642937 -1.924875 0.391375 -6.990828 4.701983 -6.728610 -16.991141 4.766704 -3.342054 8.649354 12.815175 -10.565187 14.033153 -1.648361 -10.545759 3.074272 27.373057 11.917272 0.837319 -9.401613 30.070822 -27.905584 31.351223 -20.112366 -22.146579 34.598648 -3.779161 3.598314 -9.926222 -10.112160 14.303245 2.340958 -21.289286 -4.353901 -5.849156 11.116976 -18.534756 -10.341999 15.451149 -16.840544 -4.261323 13.179216 -20.583226 -26.486026 -7.242272 6.330073 9.186963 -31.696381 -17.417790 1.211106 1.123578 1.048935 0.761583 -21.781668 -23.902531 16.310485 3.844616 -6.618530 0.466744 -9.045591 -13.185849 11.535125 10.251164 -17.565718 -12.195116 -2.728444 -16.568466 7.954862 10.557516 28.688257 -36.169522 13.729687 -36.551784 12.888103 -14.139715 16.364511 24.563398 -11.478123 17.434411 7.317712 30.550805 2.734840 0.937700 13.419969 10.654415 3.371431 3.167314 20.923448 21.634360 -17.869217 -26.719619 -16.880817 -11.046874 12.253246 -11.974241 -28.186325 11.703823 -16.355611 2.274834 -7.101258 1.567608 -6.720141 29.038328 -34.989126 7.679275 8.335461 -5.819243 12.913598 10.512078 -0.888467 4.555552 -4.703855 10.849901 -2.372998 1.844999 -0.943797 21.004355 -22.624155 -2.918260 -4.526639 9.862086 12.066657 -20.907789 -23.361904 -36.242568 -7.654305 22.505700 -12.223340 19.064262 34.999242 -13.915536 -16.498121 12.398665 -1.159049 -6.590943 13.335684 7.777262 32.351419 -19.243755 3.721355 -3.092601 -0.174252 10.691057 24.156988 -8.493479 -19.251311 21.642981 -11.228412 -14.308585 40.697656 0.844465 -4.260014 -5.713693 5.461240 -3.906165 -8.563832 27.157735 -29.140056 17.532738 -16.792628 30.033325 -12.403470 -0.421684 5.609531 -30.000079 -13.079813 -21.665061 2.203759 -6.510931 22.917188 -17.646765 -15.185892 -3.461057 -10.206318 -2.819681 28.256464 -14.560415 -3.368019 2.866368 -8.356948 22.792719 8.446804 -6.218856 -6.902705 -14.254509 7.439377 16.084607 -2.703161 -24.122920 -14.429762 -11.727105 -7.783162 -10.033771 3.722367 19.195578 -22.846914 0.358513 8.850760 1.677502 -2.601469 -1.342456 -26.367209 11.715535 2.391188 11.091556 9.857041 31.064570 16.319075 21.417372 2.645014 5.712054 -3.902215 -9.085558 -28.416724 12.484175 4.677606 8.217980 12.077549 19.858210 8.772882 13.568985 11.826458 -0.434403 11.616740 22.841490 4.701252 24.873555 -6.564880 -1.471679 9.800115 -0.012878 20.629356 20.859870 0.103366 -13.078404 7.622338 -14.891905 -23.022817 -1.778367 0.756907 -0.623696 -5.798999 9.800716 17.656958 2.216442 -12.080742 37.402071 -2.432227 -43.308381 15.156287 8.710034 15.504716 26.186755 -9.069763 21.280358 10.765280 14.757238 16.488488 16.516061 14.544075 -25.535218 4.101381 3.258868 11.593365 26.352741 1.545088 -43.643885 11.540335 4.010976 24.796365 -2.833725 24.845565 -18.312117 16.158519 1.169645 -4.198378 7.498253 -4.738312 15.276651 -0.010269 2.818929 -36.349994 3.226322 +PE-benchmarks/box-stacking.cpp__main = 2.419429 -1.243850 1.196831 -2.522611 -1.368347 0.463665 1.190321 -4.107176 -1.750606 5.072269 1.411028 -2.656937 0.103587 3.789332 -0.435143 -1.394157 1.009703 1.219744 -0.499570 -0.019500 -1.524181 1.067963 -1.494224 -3.706268 1.053213 -0.777496 1.723988 2.898003 -1.540151 2.489662 -0.720994 -2.253725 0.652037 6.357100 2.666586 0.015766 -1.727448 7.150100 -5.400195 6.507840 -4.684580 -4.869955 7.657143 -0.902634 0.472471 -2.620692 -2.457994 3.248026 -0.353042 -4.068744 -0.671408 -1.345958 2.206148 -4.068810 -2.170963 3.737697 -4.463511 0.007042 2.938540 -4.047643 -5.483048 -1.779475 1.281342 1.757717 -6.245729 -3.965576 0.461568 0.496937 -0.320214 0.233744 -4.774148 -5.329837 4.484831 1.015363 -1.565102 0.214415 -1.849237 -3.116173 2.634930 1.593425 -4.160605 -2.647670 -0.341100 -3.273429 2.398187 2.097627 5.901277 -8.329751 2.766577 -8.479691 2.792559 -3.529634 3.760719 5.657386 -3.178064 3.826098 1.616583 6.133029 0.776057 0.388840 3.374156 2.194454 0.724934 0.704866 4.621551 4.450066 -3.582644 -5.563002 -3.471315 -2.702725 2.184955 -2.439776 -6.990188 2.640645 -3.792739 0.800411 -1.615650 0.505592 -1.477396 6.030489 -7.613802 1.149049 1.712497 -1.356626 3.136177 2.741612 -0.331193 1.066087 -1.288546 2.806805 -0.504367 0.523754 -0.467016 4.600938 -4.453523 -1.615510 -1.926073 2.037705 2.839041 -4.665433 -5.616107 -7.797939 -1.762908 4.361420 -2.742136 4.571422 8.105657 -3.095393 -3.995192 3.272062 -0.104042 -0.851662 3.687980 1.697534 7.447642 -4.308993 0.857992 -0.669965 -0.133091 2.059051 4.040252 -1.934569 -4.177621 4.611551 -2.231680 -3.057623 8.753296 0.197608 -1.124922 -1.072536 0.991460 -1.184967 -2.447241 6.317643 -5.474966 4.242616 -3.156999 7.120685 -2.915082 -0.859965 1.455252 -5.998151 -2.585883 -4.472350 0.320555 -1.354935 5.003496 -4.126372 -3.609063 -0.646517 -1.984438 -0.847607 6.237451 -2.009386 -0.651951 0.694181 -1.597585 4.849523 2.450262 -1.538577 -1.065632 -3.561919 1.763807 3.877114 -0.594932 -5.612256 -2.871338 -2.546302 -1.690021 -1.654834 0.802344 4.208389 -4.889939 -0.278737 1.860530 0.406116 -0.013191 -0.090070 -5.838965 2.615439 0.222502 2.139005 2.285688 6.945440 3.971288 4.759357 0.737133 1.107056 -0.729180 -1.931801 -5.492213 2.304963 1.066475 2.113445 2.758290 4.523274 2.115195 2.933736 2.826270 0.387600 2.226275 5.233227 1.324889 6.007545 -1.628165 -0.404182 1.878441 -0.232110 4.881876 5.353285 -0.547449 -2.731513 1.893097 -2.662458 -4.575730 -1.388956 0.018551 -0.280842 -1.430261 2.316841 3.605637 0.370940 -2.628884 8.509725 -0.524303 -9.602290 3.734125 2.010848 3.372350 5.324373 -1.954614 4.156031 2.595345 2.398323 3.571359 3.734308 3.431927 -5.577511 0.679740 0.674412 2.890623 5.038836 0.640064 -9.057811 2.569361 1.309294 5.736163 -0.066407 5.030104 -3.997103 2.781852 0.312932 -0.935646 1.514479 -0.869025 3.386358 -0.601920 0.601644 -7.461824 0.151174 +PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = 0.029498 -0.291471 0.373654 -0.703349 -0.734100 -0.002555 0.231887 -0.500421 -0.220910 0.166706 0.414805 -0.435952 -0.230410 1.066832 -0.022729 -0.681756 0.044345 0.264016 -0.111805 0.097167 -0.153916 0.604224 -0.264530 -0.215386 0.466234 -0.200332 -0.160238 0.722027 0.190829 -0.077669 -0.041169 -0.418023 -0.030949 1.169516 0.156648 0.273473 -0.062756 1.748950 -0.726136 1.234615 -0.916653 -0.824739 1.284509 -0.225372 -0.183598 -0.822662 -0.925244 0.574250 -0.534811 -0.526853 0.317380 -0.010569 0.258698 -0.557551 0.180797 0.696709 -1.256554 0.259835 0.582486 -0.667541 -0.558628 -0.229095 -0.414827 -0.151295 -0.823606 -0.696861 -0.047424 0.183278 -0.095187 -0.089475 -0.263178 -0.902479 1.615288 0.238470 -0.342847 0.448778 0.194578 -0.723682 0.718538 -0.018151 -1.040526 -0.486930 0.073902 -0.368492 0.814835 0.123202 0.897842 -1.646059 0.275263 -1.612676 0.668329 -0.942226 0.619700 1.268891 -1.007316 0.816082 0.612977 0.596186 0.356941 0.328779 0.991611 0.388159 0.087363 0.514381 0.709646 0.553622 -0.608906 -0.839164 -0.879773 -0.858676 0.363445 -0.494416 -1.720950 0.376973 -0.245995 0.323155 -0.142938 0.154189 0.114456 1.052110 -0.972311 0.654521 0.637126 -0.287632 0.227564 0.864629 -0.129677 -0.187085 -0.593230 0.817271 -0.604179 0.541840 -0.218475 0.849455 -0.380164 -0.802141 -0.560730 -0.006236 0.127790 -0.846208 -0.978170 -1.224736 -0.137486 0.718565 -0.556120 0.592172 1.929113 -0.933083 -0.929035 1.136378 0.666404 0.192922 0.561270 0.388625 1.210647 -0.425651 -0.367760 -0.568200 -0.490725 0.340134 0.333733 0.165474 -0.679251 0.764183 -0.129440 -1.394710 2.244333 -0.266832 -0.505027 0.057641 0.243850 -0.531724 -0.679552 1.286240 -0.033664 1.059478 -0.386046 1.477195 -0.349080 -0.620508 0.318814 -0.603446 -0.294672 -0.988300 -0.096821 0.106874 0.510659 -0.818733 -0.667134 -0.322005 -0.444570 -0.456569 0.662776 -0.049065 0.087499 0.249491 0.067756 0.470997 0.924585 -0.019614 -0.084108 -0.990512 0.439258 0.465864 -0.222315 -1.290137 -0.062231 -0.291848 -0.246739 -0.027677 0.053466 0.616269 -0.579846 -0.134735 0.090195 -0.200157 0.091615 0.101914 -1.081354 0.223942 0.020838 0.510093 0.530998 0.934688 1.334192 0.982870 0.379736 0.594227 -0.080782 -0.027962 -0.566775 0.294170 0.083212 0.571208 0.601511 0.933903 0.838475 0.493928 0.743022 0.457143 0.598349 1.116830 0.469322 1.675277 0.046522 -0.431940 0.258821 0.219935 1.072222 1.310888 -0.117926 0.068522 0.567436 0.164352 -0.574590 -0.767042 0.180488 -0.123511 -0.497558 0.862580 0.303625 -0.052250 -0.291387 1.427741 -0.235054 -1.683409 0.746614 0.297457 0.752744 0.389892 0.180811 0.395132 0.655313 -0.266379 0.738888 0.721412 0.828376 -1.136892 -0.272385 0.091293 0.536663 0.946993 0.785118 -1.444658 0.347891 0.313830 0.958598 -0.154826 0.667905 -0.583361 -0.202143 0.236476 -0.329913 -0.116160 0.016120 0.139932 -0.304602 0.064400 -1.178753 -0.568766 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = 2.257702 -1.246630 3.101529 -5.820586 -4.606854 0.404513 2.207823 -5.315505 -2.871251 8.143620 2.453921 -4.164666 -1.491555 7.691927 -0.436328 -3.509597 0.980973 -1.647683 -0.696279 -0.653407 -2.856004 3.512608 -2.776131 -3.758865 2.642338 -1.210621 1.045162 4.132908 -1.499004 0.556714 -0.425486 -4.310073 0.256356 10.559165 3.868477 -0.291689 -2.543673 13.307263 -7.147274 10.091404 -7.885750 -8.613979 10.875133 -1.783795 0.546090 -4.286099 -2.834686 6.395323 -1.528446 -5.051478 1.481031 -0.832854 3.066003 -5.717831 -1.956283 4.684840 -8.496751 2.562527 5.257463 -5.868043 -7.006614 -3.013987 -0.018263 2.033114 -7.717462 -5.817786 0.671186 0.424592 -1.468930 -0.808098 -5.487880 -7.321899 6.661830 2.773773 -2.138706 1.557292 -1.500058 -4.523201 5.308879 -1.343438 -8.530816 -4.247043 -0.617812 -5.572387 5.427169 2.980935 7.782411 -13.709834 4.130540 -14.115471 4.274402 -5.488994 5.519890 10.226293 -4.682571 6.303746 3.387411 6.439315 2.760805 -0.524444 6.372908 2.703052 1.458213 3.929230 6.617530 7.195674 -6.117576 -7.560656 -6.265124 -5.507937 3.004044 -3.315711 -7.644947 4.789826 -3.990854 0.175774 -1.713051 1.121419 -3.047091 7.815637 -10.970955 -0.186437 3.122103 -2.504622 4.682574 5.404477 -0.865822 0.966536 -2.891157 5.817858 -2.735810 3.600900 -1.202971 8.103020 -3.916693 -3.289422 -5.029225 2.588352 4.128660 -7.260491 -9.013221 -12.554907 -2.355876 4.347600 -5.462841 8.493462 14.458389 -6.736100 -6.852068 7.996876 0.746070 0.434790 5.333879 2.558158 9.728447 -4.799798 -1.307157 -2.008772 -2.632676 2.631854 6.830476 -0.601375 -5.694435 7.411852 -2.413402 -3.256942 10.408707 0.493670 -3.827054 -2.884675 2.201309 -3.696778 -5.141107 8.951366 -5.375904 5.761634 -2.710286 12.158804 -3.869500 -3.025767 3.123870 -8.165522 -2.671496 -7.287153 -0.610488 -0.379129 5.968726 -6.630589 -5.716067 -2.027565 -2.483342 -3.713884 6.925121 -3.334262 -0.108929 2.133616 -0.079785 7.553717 6.592914 -1.416717 -0.966699 -6.683358 3.417852 4.700766 0.166957 -8.624577 -3.475691 -2.899925 -3.240156 0.880457 0.735616 6.065965 -6.362380 -0.489773 3.348058 0.060953 0.527519 1.603540 -9.798006 3.636410 0.889628 3.890888 4.604814 9.972559 6.225926 8.573564 2.807045 3.270278 -2.406767 -1.078173 -5.982578 1.929418 1.556462 3.513242 5.432306 6.666055 6.166902 4.683910 6.286255 2.400533 1.120412 8.774034 0.287328 10.888201 -2.465331 -1.245957 2.603466 1.033581 8.069321 9.396031 -1.567342 -3.959206 5.025797 -2.910077 -5.854566 -3.084130 1.551933 -1.512725 -0.247949 3.021788 5.729588 -0.135368 -3.269509 12.775211 -2.779560 -14.546195 6.692785 3.466987 6.841752 6.085652 -0.651159 4.883506 3.743582 -0.876633 6.587216 7.281798 6.028990 -8.696259 0.687520 1.028541 5.093537 7.102697 3.813055 -13.723127 2.243496 2.329824 7.542535 0.442560 7.006562 -6.277741 0.358984 2.185136 -2.233255 1.183616 0.225850 4.648866 -1.413775 1.834542 -8.999859 -1.038787 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 1.696762 -0.717309 2.165687 -3.591233 -2.103685 -0.350386 3.470693 -3.072939 -1.858140 5.445236 0.974703 -2.724149 -2.059149 4.491822 -0.203688 -2.020102 0.891908 -1.660744 -0.718107 -0.163828 -1.867453 2.177330 -1.466651 -2.729207 2.027737 -0.485535 1.021635 3.958777 -1.081604 0.735878 0.203152 -2.615526 0.563428 6.661840 2.141487 -0.114794 -1.846750 8.587973 -6.198883 7.451489 -5.446585 -5.424119 7.897115 -1.127110 -0.029015 -4.511960 -1.748858 4.240499 -1.787640 -3.746136 0.456232 -0.161888 1.844543 -4.339751 -1.496466 4.364108 -6.305494 1.438120 3.214927 -3.640805 -4.760334 -1.834776 0.032363 1.170962 -5.531883 -4.090384 0.013935 -1.340444 -1.498984 0.230682 -4.043486 -3.907817 3.629204 1.583142 -1.390079 1.149806 -1.243120 -2.811352 3.290368 -1.033062 -4.568894 -2.973847 -0.479267 -3.528303 3.371592 1.778294 4.424434 -8.653791 1.652442 -8.441680 2.623812 -4.500317 3.259446 6.464965 -2.239850 4.912154 1.276666 3.396109 0.883463 -0.827160 3.577688 2.300270 2.135328 2.236359 4.440956 4.873311 -4.480803 -5.850818 -4.406797 -2.808752 1.994702 -2.438066 -5.766886 2.757253 -2.747628 0.074817 -0.169030 0.232870 -2.240973 5.355526 -7.386965 1.574194 1.952252 -1.520780 2.700033 3.615343 -0.324824 0.210361 -1.553149 3.583203 -0.760023 2.930814 -0.485313 5.073035 -2.832088 -2.352979 -1.803026 1.218456 2.250335 -4.003744 -5.643819 -8.510479 -1.702999 2.872963 -3.273224 4.689561 8.874514 -3.388910 -4.524244 4.653909 -0.122044 0.914046 2.390312 1.593790 6.173852 -3.149900 -0.737592 -1.107406 -1.144601 2.241661 6.686397 -0.797838 -4.408001 4.806644 -2.030250 -2.903533 5.925178 0.540379 -1.635282 -1.543548 0.778750 -2.451806 -3.634062 6.430594 -4.991604 4.535243 -2.995928 7.420072 -2.252659 -1.623959 1.823810 -6.305479 -1.416664 -5.703927 -0.640811 -0.226121 3.400670 -4.606130 -3.721031 -2.102795 -1.165329 -2.012907 5.427067 -4.349372 -0.566097 0.645054 -0.009986 5.514921 3.046302 -1.881056 -0.615499 -4.345533 2.331358 2.775546 0.506563 -6.774534 -1.980528 -1.284964 -2.333569 0.770707 0.517675 3.607768 -4.074269 -0.155264 3.024514 -0.088189 -0.795073 0.397750 -7.254254 2.105329 0.966301 2.220606 3.069360 6.694850 4.272917 4.463040 0.772762 2.399270 -1.505249 -0.959525 -5.384945 1.614444 0.723173 1.502544 3.231804 4.306374 3.463585 2.533449 3.842150 1.897898 -0.009141 5.348066 1.263482 6.075070 -1.424130 -1.557928 2.414941 0.587028 4.607041 4.909186 -0.240041 -3.031497 3.394971 -2.003836 -3.982319 -1.509399 0.224873 -1.197030 -0.370434 3.586859 3.277295 -0.809881 -1.266696 8.534343 -1.783750 -9.770182 3.701373 2.446873 4.177442 3.636828 -0.704695 3.428083 3.007823 -0.052590 3.797223 3.885150 3.346951 -5.428798 0.557653 0.812943 2.657992 5.637378 1.717290 -10.997629 -0.163691 0.928253 5.831878 0.237167 6.075933 -3.396622 0.973600 1.101336 -0.839776 1.022849 -0.566282 3.051332 -0.749234 0.923721 -6.873783 0.175414 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.908174 -0.257330 1.370929 -2.295204 -2.040438 -0.449778 0.491929 -1.254488 -0.772291 1.656535 0.263363 -1.756746 -2.109236 3.118229 -1.019500 -2.538992 -0.138419 -0.776049 -0.291881 -0.564165 -1.130862 1.558404 -0.749682 -0.926953 1.652076 -0.595949 -0.118107 1.957556 1.666515 -0.813797 -0.216666 -1.275226 0.293175 4.044782 0.589419 -0.085003 -0.091936 5.835690 -1.077837 2.983722 -3.427201 -3.196932 4.098550 -0.660278 -0.136763 -2.901333 -1.350029 2.325607 -3.643914 0.048447 0.856723 0.261964 -0.048922 -2.247775 0.230880 2.579006 -5.317507 3.423563 1.606542 -1.013171 -1.660007 -1.262505 -1.030382 -0.502992 -0.802540 -2.396292 -0.080172 0.577598 -2.274811 0.522559 -1.511966 -1.646429 3.948393 0.961237 -1.222944 1.428805 0.208607 -1.199115 1.830393 -3.017356 -2.995123 -1.614661 0.983298 -0.407154 2.941441 1.208261 1.461360 -5.257379 0.559431 -5.020304 1.659487 -3.341548 2.177912 4.212191 -2.893002 3.118238 0.954108 -0.118317 1.373670 0.522798 2.997158 1.036394 1.023706 1.413851 1.475491 1.849035 -1.453413 -2.317801 -1.782008 -1.981112 -0.542532 -0.541886 -4.523358 1.214639 -1.559072 1.904798 0.060603 0.677756 -0.987579 1.432839 -4.320810 -0.657326 0.995592 -0.993325 2.124455 2.459094 -0.454547 -0.102634 -1.556770 2.923616 -0.732487 1.434587 -0.849306 2.637894 -0.252273 -3.661682 -3.518088 -0.219439 1.068539 -2.143036 -3.790756 -3.873322 -1.101547 0.429404 -1.786593 3.093028 5.873927 -1.866616 -2.855641 3.763278 -0.427888 2.198619 3.093203 1.035181 3.570806 -1.491105 -0.515855 -0.628120 -0.724822 0.817870 0.248224 0.012145 -2.466568 2.041098 0.123046 -0.907032 1.632647 -0.027484 -1.186472 -1.902055 0.166829 -1.901586 -2.246140 4.112469 -1.207528 3.394175 -1.050319 4.992965 -1.608016 -3.023704 1.328032 -2.815156 -0.006347 -1.990040 -0.385055 -0.023275 1.409963 -3.606591 -2.507044 -0.672624 -0.327570 -1.535101 2.384347 0.614977 -0.325939 0.269224 0.722398 3.275766 2.742185 -1.084950 0.894667 -3.623692 1.320508 1.550426 -0.038227 -4.741399 0.267214 -0.137055 -1.229773 1.716679 0.214876 1.180873 -1.355500 -0.812777 0.853840 -0.274813 1.030976 0.381498 -2.316619 0.924707 -0.302392 0.766606 1.989029 3.288517 3.612737 2.215379 0.755273 1.331350 -0.459765 -0.860674 0.278458 0.605577 0.723352 1.181574 1.770654 2.510143 2.466153 0.815937 2.159870 2.018658 -1.090187 3.262916 1.200464 4.784202 -1.878017 -1.047857 0.599784 -0.029662 3.067200 4.130789 -2.171721 -0.847702 2.509378 0.571563 -0.353331 -2.587721 -0.108957 -0.901753 -1.030163 2.269766 0.826324 -1.083712 -0.206750 4.675392 -1.043067 -5.000782 3.076110 1.342682 2.001519 0.030278 0.274283 -0.158144 2.402970 -2.241608 1.429505 1.884435 2.277810 -2.828305 -0.473253 0.171591 2.263212 1.788078 1.764383 -4.174043 -0.274870 1.904167 3.330483 1.220567 1.677481 -1.286714 -2.213744 0.517709 -0.816481 -0.338543 0.129884 1.005666 -1.230679 0.717290 -1.534291 -2.029481 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = 5.054003 0.870926 2.246357 -5.042825 -1.110264 -1.586911 9.329438 -7.722874 -5.348478 13.510457 2.670347 -6.465223 -2.536150 4.277934 0.278462 -2.142534 4.052876 2.834503 -3.052961 -2.556564 -4.537070 0.611886 -2.142962 -9.018705 2.606247 -1.435643 4.482354 6.851737 -5.139234 4.825904 0.668407 -3.968316 4.463733 12.803863 4.468903 -1.203512 -7.413645 12.175570 -11.989314 12.301481 -9.774147 -8.357167 16.800931 -1.705048 2.114518 -10.258044 -2.849707 7.874779 4.927380 -10.793927 -4.381783 -1.744101 4.528076 -11.265982 -7.122678 10.583642 -5.240050 -1.823588 7.039491 -11.675432 -13.753659 -2.079716 4.432791 3.980946 -14.043625 -9.188209 -0.098819 -3.160180 -0.132743 2.769071 -12.935210 -10.823618 3.739011 1.869261 -1.809091 0.887392 -7.079800 -5.183560 4.325768 6.241108 -5.495799 -6.373112 1.043534 -3.645041 1.205151 4.158640 11.549429 -16.771509 1.981349 -16.116103 4.996785 -7.222697 8.338175 10.538733 0.006865 9.112332 0.503400 6.388264 -1.992923 -0.110106 5.511965 3.117103 5.180588 0.056479 9.431966 10.253633 -8.262950 -15.009773 -6.083445 -3.729408 6.026588 -2.409982 -9.293344 6.631409 -10.331535 -2.919231 -1.466622 -0.064434 -2.529232 13.020928 -12.057302 0.991564 5.744466 -3.299164 6.893412 6.742784 0.924295 2.336651 -2.173752 3.816405 2.969526 3.549414 -0.181136 10.058136 -7.500821 -5.363117 0.226868 3.316500 5.676735 -8.872531 -10.756758 -14.711564 -4.103893 8.038375 -6.697449 4.248175 15.044460 -5.518518 -7.210661 4.310210 -0.095034 -1.695077 3.122338 3.405678 18.254151 -11.414815 4.112432 1.219869 2.367270 7.980785 16.854692 -6.534106 -11.312142 9.975729 -6.033839 -7.096187 14.099909 -0.111413 0.576744 4.903672 1.584390 0.516932 -5.891699 10.750493 -11.259231 10.362493 -8.278887 13.345663 -6.423740 -0.568156 2.818342 -8.861348 -5.464384 -9.280707 2.940105 -2.204415 10.795785 -6.064505 -7.697864 -2.049418 -5.201013 -0.128921 14.994746 -10.871579 -2.625243 -0.651505 -4.972100 7.762723 1.629493 -5.303470 -2.853605 -7.280684 3.974355 6.113451 2.823592 -11.554987 -7.080611 -4.552493 -4.806093 -5.060264 1.516100 9.185732 -6.729801 0.900852 7.828166 -0.749626 -3.886362 -2.958871 -9.210721 5.760070 0.969007 3.564169 1.267431 16.972384 6.771558 8.397332 -1.571920 1.142797 -1.490703 -5.161807 -16.533383 5.584143 -0.288460 3.430466 5.774236 5.524872 2.591438 5.804961 7.645405 -4.109605 3.514273 9.948943 2.145594 9.286688 -4.354585 -1.243581 6.562791 -2.553589 8.848045 8.529967 3.736146 -12.104556 4.188955 -7.665444 -11.722038 -1.457984 -2.191724 0.577238 -4.143867 6.939841 10.116278 -1.384900 -4.757793 18.567328 -1.515992 -21.039431 7.508835 4.152898 6.247068 12.341270 -5.356377 10.913536 6.613075 9.871195 3.257080 6.703103 7.255794 -12.385176 1.255004 1.558243 5.033779 9.485249 -2.841294 -25.782560 1.188509 2.316587 13.124663 -1.391618 14.030021 -8.010303 10.099175 1.032534 1.817732 3.743665 -3.176812 7.807471 -1.903818 -0.833083 -17.098948 7.577863 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 1.325840 0.227187 0.573534 -1.459863 -0.866593 -0.021016 1.136924 -2.004410 -1.183832 2.468263 0.739234 -1.529334 -0.896168 1.271672 -0.302392 -1.155781 0.584333 0.332343 -0.576769 -0.764840 -1.056617 0.251516 -0.615024 -1.817808 0.488405 -0.449627 0.769588 1.451181 -0.197268 0.622581 -0.286646 -0.930036 0.785084 3.277188 1.245507 -0.419774 -1.167578 3.517807 -1.740102 2.292824 -2.530854 -2.174014 3.675555 -0.411861 0.295174 -2.366322 -0.805884 1.878528 -0.121056 -1.576575 -0.501023 -0.567927 0.795846 -2.225976 -1.350618 2.443281 -2.149637 0.806683 1.557155 -2.159418 -2.693074 -0.687089 0.807506 0.740680 -2.299171 -2.175613 0.202276 0.006242 -0.550243 0.561927 -2.792425 -2.578749 1.896823 0.608823 -0.700038 0.185436 -1.275606 -1.214341 1.112779 0.520595 -1.885968 -1.344230 0.412583 -0.590527 1.021121 0.956756 2.354181 -4.270308 0.559874 -4.319048 1.157541 -1.903920 2.086973 2.721997 -0.916270 1.936214 0.432321 1.099705 0.086348 0.122776 1.780373 0.542736 0.869852 0.247920 2.008832 2.006062 -1.468012 -2.831432 -1.198887 -1.272071 0.761674 -0.363537 -3.009102 1.526151 -2.421906 0.084887 -0.538295 0.253852 -0.611469 2.460490 -3.080292 -0.560894 0.984687 -0.793319 2.071571 1.803145 -0.001866 0.785459 -0.702525 1.454367 0.338497 0.717001 -0.318453 2.278025 -1.149209 -2.048773 -1.445578 0.852667 1.642364 -2.157548 -2.940559 -3.206206 -1.024931 1.316118 -1.557646 1.729606 4.060479 -1.503582 -2.012950 1.715718 -0.280369 0.147501 1.861002 0.783566 4.379845 -2.510690 0.786219 0.174026 0.227341 1.285035 2.078753 -1.337386 -2.318635 2.160092 -0.895747 -0.969370 2.783352 -0.080105 -0.417045 0.685061 0.242233 -0.211196 -1.661521 2.731062 -1.813936 2.510249 -1.153621 3.632899 -1.637853 -1.008709 0.838119 -1.776648 -0.998275 -1.594107 0.474696 -0.526842 2.418847 -1.860265 -1.955120 -0.267547 -0.942714 -0.442537 3.245689 -0.705293 -0.397027 0.195472 -0.759840 1.951610 1.304441 -1.061056 -0.298791 -2.082084 1.015908 1.740578 0.373355 -2.879182 -1.355531 -1.102673 -0.987262 -0.407767 0.297821 2.084198 -1.487122 -0.133907 1.317577 -0.076808 0.080532 -0.140229 -1.955701 1.410933 -0.095001 0.617618 0.567406 3.833575 1.927586 2.240328 0.161610 0.250946 -0.148056 -1.059898 -2.392491 0.837046 0.302489 1.173657 1.437078 1.526709 0.904799 1.355512 1.869100 -0.272279 0.576339 2.554672 0.561958 2.978743 -1.476977 -0.177607 0.933061 -0.611952 2.390964 2.916529 -0.171053 -2.249814 1.115746 -1.167888 -2.003093 -1.351558 -0.383230 -0.092928 -0.960330 1.445675 2.146887 -0.223976 -1.220298 4.443438 -0.327921 -4.827163 2.290575 1.047787 1.390783 2.396090 -1.071751 1.744313 1.572803 1.110021 0.872963 1.922630 1.903079 -2.847688 0.190179 0.268836 1.640203 1.306744 -0.101704 -4.948121 0.472034 1.120155 3.159147 0.302897 2.499599 -1.950766 1.076889 0.441991 0.092390 0.647100 -0.371521 1.821086 -0.892146 0.060777 -3.035546 0.698344 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = 1.722990 -1.017737 1.938468 -3.850507 -4.043149 0.802585 -0.937428 -3.696444 -1.673678 4.343896 1.487986 -2.359589 -0.917990 5.197416 -1.105751 -3.206084 -0.273702 -0.663153 0.100144 -0.864333 -1.462588 2.533728 -1.720899 -1.575579 1.219914 -1.205814 0.106829 2.065065 0.601115 -0.047673 -0.534911 -2.740728 -0.505249 6.411913 2.522803 -0.256960 -0.947757 8.947954 -2.651749 5.038859 -5.413617 -5.654523 5.983260 -1.088131 0.527275 -2.590114 -2.426928 3.671300 -2.433050 -1.604795 1.427923 -0.673869 1.632470 -2.595855 -0.641168 2.002021 -6.140054 3.003986 2.898076 -3.273694 -3.420527 -1.693863 -0.328116 1.273944 -3.532334 -3.584781 0.624107 2.000960 -1.277158 -0.738681 -2.550348 -4.349449 5.302842 1.730729 -1.767740 0.835334 -0.000319 -2.519012 3.442084 -2.170430 -6.242183 -2.412510 -0.324462 -3.377873 3.855361 1.938504 4.962950 -8.697339 3.608526 -9.280913 2.742633 -3.293338 3.331786 6.400794 -4.139426 3.512078 2.982477 3.959635 3.263396 -0.015884 4.515902 1.752840 0.077193 3.092084 3.531178 3.763097 -2.822493 -3.293719 -3.684907 -4.098583 1.002159 -2.186203 -6.317969 2.946022 -1.792905 1.400917 -1.556515 0.932119 -1.476815 4.437585 -7.510041 -0.932609 1.552896 -1.462404 2.825718 3.198895 -0.921397 0.841369 -2.100139 4.172946 -2.820503 1.837989 -0.503659 4.825730 -2.131104 -2.732996 -5.210340 1.948642 2.647000 -4.599849 -5.589395 -7.076557 -1.417412 2.314798 -3.260989 6.467732 9.621965 -4.718009 -4.807615 5.614488 -0.005545 0.207626 4.818591 1.586583 5.977712 -2.272730 -1.695562 -1.825091 -2.396200 1.021323 1.321768 0.323915 -2.704129 4.575499 -0.767523 -1.308131 5.899267 -0.191734 -3.381646 -2.820605 1.565148 -2.533632 -2.685660 5.288972 -2.647177 3.659296 -0.762630 7.762129 -2.186736 -2.802527 1.827501 -5.627721 -1.596918 -3.107902 -0.236844 -0.533618 3.486313 -4.608101 -3.412381 -1.075264 -1.946730 -2.822314 3.718226 0.522576 0.628750 2.251175 0.480243 5.447902 5.483811 0.074470 -0.387482 -4.401959 2.328059 3.371272 -0.515545 -5.588957 -2.001174 -1.895479 -1.497847 1.106866 0.346176 3.815918 -3.842757 -0.539838 0.513922 0.201690 1.783777 1.823505 -5.104646 2.189020 -0.069843 2.897043 2.926444 5.623162 4.338523 5.911036 2.756820 2.352641 -1.048777 -0.627203 -0.895593 0.834358 1.916253 2.120462 3.368465 4.714799 4.138776 3.101428 4.151072 2.610882 0.903172 5.630455 -0.493932 8.021499 -2.623455 -0.484153 0.257083 1.175573 5.279126 7.246895 -2.106856 -0.981753 3.027755 -1.110476 -2.583737 -3.248067 1.576687 -1.047560 -0.034017 1.385816 3.675727 0.362290 -2.320562 7.327329 -1.298721 -8.644671 5.029059 2.084430 3.961316 3.219574 0.055313 1.788047 1.950167 -1.980205 3.942046 5.271522 3.715264 -5.540900 0.235880 0.623295 3.878657 3.400216 3.576393 -6.716337 2.185109 2.532335 4.486348 0.315902 3.229324 -4.209019 -1.964217 2.059580 -1.869110 0.222291 0.967541 2.264339 -1.478067 1.682578 -3.611023 -2.553051 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = 0.457853 -0.509842 0.541710 -0.661590 -0.858286 0.123662 -0.388050 -0.076850 -0.124410 0.265777 0.136981 -0.184678 -0.266786 0.893561 -0.168901 -0.738183 0.066983 -0.314007 0.205943 -0.132228 0.159858 0.461943 0.228120 0.007493 0.039436 -0.267919 -0.325760 0.380166 0.765518 -0.276619 0.015550 -0.256174 -0.208308 0.444270 0.054711 -0.370978 -0.096377 1.368178 0.157162 0.546824 -0.478043 -0.531784 0.673542 -0.233547 0.076893 -0.513555 -0.741090 0.630125 -0.311321 -0.372103 0.401681 0.225373 0.344306 -0.270785 -0.323888 0.073960 -0.923647 0.457848 0.069259 -0.106720 0.189479 0.051685 -0.316396 0.365842 -0.111970 -0.443103 0.130582 0.240415 -0.582505 -0.429559 0.038941 0.003383 1.094160 0.194786 -0.106381 0.125292 0.696788 -0.145994 0.686446 -0.567554 -1.104022 -0.234709 -0.700198 -0.627738 0.855173 -0.272689 0.605616 -1.177512 0.917526 -1.259386 0.586419 -0.628405 0.105072 0.867732 -0.701001 0.522716 0.607243 0.640270 0.747299 0.026776 0.909357 0.475201 0.012364 0.805451 0.476363 0.074684 -0.240921 0.001611 -0.622354 -0.620894 0.037222 -0.585867 -1.199866 0.552072 0.507837 0.183104 0.084861 0.090217 -0.108470 0.432018 -0.863343 0.345641 0.314300 -0.163349 -0.182963 0.382442 -0.455980 -0.048950 -0.401917 0.924570 -0.761668 0.517586 0.606184 0.554548 -0.072693 -0.368901 -0.420670 0.482182 0.200325 -0.336645 -0.642985 -0.758174 0.134368 -0.034156 -0.500954 0.991532 1.274510 -0.411209 -0.425384 0.758816 0.237378 0.028600 0.536920 0.038845 0.667976 0.136439 -1.100915 -0.365018 -0.745234 0.219029 -0.227771 0.449279 0.159302 0.770440 -0.074448 -0.373861 0.840291 -0.381670 -0.723713 -0.198944 0.209923 -0.578718 -0.434108 0.471760 0.163257 0.248263 0.500589 1.107477 0.510671 -0.436867 0.319532 -0.449242 -0.050853 -0.389309 0.175073 -0.020835 -0.019267 -0.577889 -0.445400 -0.457539 -0.376494 -0.461030 0.204111 0.189552 0.601082 0.800325 0.463330 0.665124 0.819477 0.393356 -0.061179 -0.809490 0.283740 0.372229 -0.195768 -0.582705 -0.203211 -0.083013 0.158441 0.444054 -0.033336 0.427872 -0.474067 -0.387098 -0.313276 0.028252 0.161560 0.540986 -0.772562 -0.148127 0.459470 0.777623 0.341557 0.630846 0.730532 0.628156 0.553780 0.762593 -0.109692 0.594431 0.047996 -0.238915 0.134988 0.154689 0.391674 0.599026 0.615339 0.460963 0.986259 0.775786 0.001799 0.509715 -0.205111 1.052951 -0.188944 -0.450501 -0.301832 0.475981 0.806909 1.168913 0.108505 0.258794 0.522312 0.076002 -0.003368 -0.614714 0.475944 -0.225531 0.501739 0.294129 0.507609 0.400963 -0.167275 0.284289 -0.141782 -1.210403 0.835322 0.229724 0.670280 0.678980 0.322359 0.319938 -0.129337 -0.719893 0.288843 0.907033 0.228675 -0.636576 0.087961 0.137953 0.482482 0.024294 1.035586 -0.719268 0.257752 0.456553 0.343635 -0.216531 0.208526 -0.661352 -1.041243 0.605523 -0.328146 -0.084712 0.357505 -0.219527 -0.630048 0.126142 0.056838 -0.476831 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 1.835981 -1.629162 1.218078 -3.798451 -3.187566 0.878940 -0.719276 -3.277381 -1.271668 3.540023 0.983304 -1.673246 -1.179368 4.559599 -0.538962 -2.940521 0.040624 -1.305039 0.296809 0.347456 -1.454699 2.426780 -1.838704 -1.098711 0.990649 -0.713650 -0.074941 1.840105 0.823243 -0.227846 -1.136100 -2.572773 -1.261074 5.737567 2.351403 -0.145493 -0.596313 8.575211 -2.414101 5.234159 -4.478805 -4.708627 5.109658 -1.147327 0.028823 -2.173354 -1.867298 3.234518 -2.249475 -1.701242 1.658871 -0.639879 1.281937 -1.940832 -0.336884 1.602254 -5.559031 2.272124 2.664762 -1.773274 -2.539516 -1.957519 -0.253278 1.173554 -4.045332 -3.213897 0.821111 1.147738 -1.455420 -0.906957 -2.657287 -3.846786 4.688780 2.343369 -1.870504 0.528775 0.183650 -2.671911 3.008752 -1.957695 -5.841761 -1.867331 -0.981212 -3.715001 4.211548 1.243285 4.421360 -7.601371 3.973258 -8.504316 1.801477 -3.473860 2.839511 6.298790 -3.457240 3.137594 2.607339 4.545232 2.802322 -0.561201 3.946833 2.010188 -0.491523 2.695144 3.489555 3.082941 -2.570096 -2.750538 -3.305142 -3.348000 0.590658 -2.292801 -6.360873 2.719339 -1.475433 1.607735 -1.291731 1.526480 -1.941727 3.672628 -7.247588 -0.643933 0.827258 -1.321338 2.659776 3.263860 -0.946839 0.498460 -2.038024 3.780960 -2.303378 2.010563 -0.760995 4.175869 -2.314369 -0.876341 -4.276552 1.406806 2.560690 -3.900771 -5.222271 -6.426589 -1.496623 2.033845 -2.766194 6.906969 8.658486 -4.170540 -3.908382 5.176985 -1.040352 0.825561 4.218474 1.166772 4.971351 -1.668399 -1.571454 -1.575636 -1.988027 -0.036925 0.725903 0.438387 -2.217098 3.804110 -1.254933 -0.386672 5.470379 0.327646 -3.225749 -3.087713 0.939794 -2.503673 -2.975844 5.408728 -3.717219 3.384544 -0.257981 6.741763 -1.388630 -1.658695 1.912140 -5.187297 -1.051883 -3.749713 -0.663248 -0.793820 2.817905 -4.200461 -2.951260 -0.964554 -1.425633 -2.649412 3.361950 0.916292 0.391600 2.077787 0.799145 5.741303 5.203557 0.142148 -0.498659 -4.041186 2.611790 2.876553 -1.466278 -4.096226 -1.771770 -1.469594 -1.427544 1.354345 0.455847 3.187547 -4.139214 -0.941163 0.383198 1.142659 1.830185 2.050114 -6.025800 1.799626 0.406842 2.289688 3.266177 4.733936 3.580364 5.158891 2.645534 1.866083 -1.010136 0.216751 -1.596056 0.424792 1.440084 2.182389 2.971291 4.375552 3.821477 2.634896 3.420946 2.845552 0.874549 4.823180 0.016017 7.302773 -1.510339 -1.159299 0.489850 0.841657 4.446068 6.311837 -2.570984 0.115033 2.767750 -0.803768 -2.753647 -2.785795 1.480431 -1.131443 0.099048 0.814051 2.330077 0.568174 -1.906882 6.686200 -1.443493 -8.182747 3.658367 1.818262 3.651556 3.353772 0.411219 2.000653 1.474690 -2.332497 4.353390 4.607039 2.874721 -4.310345 0.844283 0.732482 2.904537 2.750851 3.115271 -5.079238 1.985803 1.829792 4.519278 1.018253 2.738757 -3.327765 -1.321375 1.979367 -1.989553 0.426450 0.502913 2.461918 -1.036813 1.329315 -3.865667 -2.610976 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.002425 -0.206199 0.619634 -1.201936 -1.411656 0.090941 -0.052675 -0.672143 -0.218589 0.029255 0.494824 -0.432177 -0.425034 1.432074 -0.269154 -1.025789 -0.236235 -0.224474 -0.088616 -0.129762 -0.095755 0.871831 -0.355688 0.051348 0.328734 -0.370066 -0.279828 0.781360 0.557037 -0.388277 -0.103251 -0.614669 -0.209960 1.390812 0.303333 0.182456 -0.010759 2.412861 -0.442495 1.123873 -1.323412 -1.136949 1.233451 -0.335492 -0.230466 -1.411897 -1.206085 0.665825 -0.826723 -0.066735 0.649842 0.058659 0.235606 -0.356727 0.401832 0.499242 -1.664474 0.806237 0.645859 -0.690899 -0.283047 -0.352701 -0.637153 -0.031875 -0.671629 -0.731873 0.104610 0.486103 -0.275560 -0.122141 0.000753 -0.942327 2.053084 0.435374 -0.475082 0.485507 0.564642 -0.951944 0.980277 -0.595460 -1.583083 -0.461470 0.038873 -0.475990 1.220638 -0.026091 0.934239 -2.005127 0.419497 -2.099645 0.613795 -1.198621 0.544506 1.518898 -1.261744 0.893288 0.862417 0.501713 0.899626 0.247643 1.221198 0.578914 0.272924 0.938405 0.853790 0.560102 -0.419653 -0.632051 -1.031386 -1.251391 0.146287 -0.621758 -2.309594 0.533785 0.089029 0.215344 -0.356670 0.240627 0.090646 1.186704 -1.190861 0.418622 0.707586 -0.352142 0.125429 1.051439 -0.346818 -0.084557 -0.781755 1.141917 -0.984000 0.967016 -0.207391 0.966032 -0.283432 -1.122402 -1.372404 0.102845 0.216794 -0.905770 -1.199304 -1.229457 -0.255612 0.536283 -0.649542 0.990619 2.500922 -1.293205 -1.404718 1.660192 0.896599 0.211431 0.890200 0.440785 1.286343 -0.119392 -0.793399 -0.924567 -0.912656 0.105104 0.138346 0.473940 -0.533685 0.928014 -0.056532 -1.564685 2.144351 -0.445933 -0.979473 -0.140924 0.288057 -0.920845 -0.918252 1.447237 0.248357 1.335016 -0.117895 1.762494 -0.359027 -0.993603 0.327534 -0.766205 -0.067664 -0.952815 -0.036784 0.227443 0.547638 -0.968274 -0.798267 -0.419352 -0.651132 -0.799310 0.496875 0.176426 0.293550 0.582139 0.475876 0.740052 1.712468 0.235179 0.005590 -1.226220 0.748365 0.632874 -0.126317 -1.586361 -0.062644 -0.226402 -0.262207 0.163064 0.072471 0.706247 -0.505812 -0.219889 -0.159934 -0.275568 0.378554 0.496742 -1.408208 0.273183 -0.110331 0.849244 0.546394 0.867017 1.663750 1.351921 0.879962 0.724479 -0.086502 0.049341 0.085508 0.095262 0.439107 0.377761 0.738348 1.444315 1.223768 0.602904 1.203757 1.079123 0.484860 1.317096 0.167427 2.328859 -0.259993 -0.525670 -0.112653 0.513456 1.320543 2.090081 -0.021203 0.364399 0.766651 0.460565 -0.436982 -1.351192 0.353532 -0.253018 -0.230215 0.997329 0.525961 -0.155701 -0.266136 1.540141 -0.279154 -1.862274 0.944787 0.402662 0.912679 0.256719 0.348950 0.058750 0.764719 -0.925124 1.050693 1.099779 0.843986 -1.297494 -0.587692 0.153906 0.734908 0.747932 1.324227 -1.471009 0.448655 0.630210 1.128830 -0.126757 0.751614 -0.836730 -0.886155 0.719704 -0.430772 -0.320247 0.416157 0.162949 -0.774792 0.259198 -0.789868 -1.221039 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = 0.044773 -0.310297 0.411072 -0.789326 -0.828465 0.020215 0.210417 -0.555292 -0.236544 0.172256 0.450835 -0.453190 -0.244776 1.156258 -0.038063 -0.748641 0.030915 0.227268 -0.111987 0.090302 -0.164660 0.659905 -0.295533 -0.209266 0.480982 -0.225361 -0.180061 0.764381 0.220722 -0.110445 -0.061160 -0.461489 -0.063113 1.267588 0.190384 0.271442 -0.054983 1.919510 -0.745264 1.290344 -0.994899 -0.903089 1.357404 -0.250521 -0.203664 -0.887427 -0.993624 0.618353 -0.575521 -0.526795 0.370083 -0.018637 0.277735 -0.570107 0.200657 0.719918 -1.366145 0.308828 0.626437 -0.701324 -0.580915 -0.260115 -0.441559 -0.147687 -0.869547 -0.745575 -0.019291 0.223535 -0.110190 -0.108013 -0.269626 -0.977246 1.745044 0.279392 -0.369329 0.470586 0.231465 -0.796175 0.785984 -0.046811 -1.161715 -0.513320 0.063517 -0.428228 0.909988 0.111988 0.965595 -1.783940 0.329477 -1.766651 0.696582 -1.015151 0.659459 1.375339 -1.094566 0.863386 0.678440 0.664840 0.417132 0.328323 1.081432 0.421393 0.086449 0.582862 0.772464 0.586140 -0.634975 -0.865264 -0.946754 -0.944196 0.371842 -0.539984 -1.870987 0.422714 -0.244454 0.326448 -0.177430 0.177697 0.109163 1.137112 -1.061068 0.663257 0.670474 -0.311464 0.242390 0.933515 -0.157157 -0.185718 -0.644530 0.898996 -0.677073 0.601258 -0.237845 0.914051 -0.397947 -0.850830 -0.665514 0.009585 0.159070 -0.916761 -1.066841 -1.304969 -0.156302 0.746576 -0.601005 0.697257 2.101832 -1.028056 -1.022368 1.254671 0.714372 0.202844 0.638832 0.414642 1.293346 -0.433078 -0.422806 -0.630441 -0.553154 0.330485 0.300013 0.197540 -0.694332 0.827294 -0.131215 -1.450242 2.401911 -0.290781 -0.582382 0.052764 0.267075 -0.592849 -0.751738 1.381221 -0.007097 1.137009 -0.359298 1.601637 -0.369611 -0.678142 0.344956 -0.646414 -0.298635 -1.052327 -0.103955 0.110205 0.550143 -0.873261 -0.721039 -0.346163 -0.483695 -0.515686 0.693890 0.003691 0.120212 0.299168 0.100941 0.518116 1.059818 0.003776 -0.087927 -1.070829 0.492407 0.520406 -0.243294 -1.366946 -0.077936 -0.311753 -0.261097 -0.008456 0.058717 0.674919 -0.630194 -0.155065 0.073843 -0.193970 0.129678 0.152390 -1.201292 0.248674 0.012293 0.560451 0.573819 0.993434 1.435233 1.085766 0.451570 0.629923 -0.085298 -0.010639 -0.561021 0.282639 0.112564 0.620261 0.653633 1.033831 0.923639 0.545182 0.819728 0.534235 0.639788 1.207818 0.472525 1.841909 0.027354 -0.462513 0.239348 0.254042 1.165282 1.458458 -0.130035 0.102165 0.615442 0.196160 -0.610602 -0.868091 0.215234 -0.144201 -0.490987 0.892497 0.342444 -0.051183 -0.321682 1.535704 -0.253042 -1.813259 0.811488 0.326510 0.817874 0.424383 0.205674 0.405326 0.693570 -0.339220 0.825845 0.809513 0.884935 -1.220668 -0.288151 0.105202 0.595487 0.960216 0.878262 -1.519140 0.401675 0.352129 1.028233 -0.148766 0.707499 -0.646550 -0.261010 0.292675 -0.368943 -0.130468 0.060450 0.167537 -0.364853 0.092197 -1.232690 -0.651095 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = 1.585284 -1.159222 2.143977 -4.277961 -4.357219 0.540683 -0.289250 -3.564825 -1.704838 4.324154 1.595543 -2.483935 -1.051855 5.771252 -0.941728 -3.362646 -0.149268 -0.911205 -0.039939 -0.583526 -1.478595 2.986214 -1.767313 -1.497590 1.579743 -1.148260 -0.108192 2.499802 0.576363 -0.319966 -0.457939 -2.914297 -0.554920 6.732035 2.324152 -0.215974 -1.015502 9.768747 -3.298831 5.726320 -5.624513 -5.777815 6.511377 -1.278281 0.322227 -3.237768 -2.950243 3.932572 -2.300815 -2.008559 1.672753 -0.389565 1.649102 -2.887440 -0.382442 2.298482 -6.601953 2.884162 3.225681 -3.378658 -3.481621 -1.805084 -0.702901 1.059814 -4.083934 -3.814738 0.566024 1.605872 -1.287207 -0.821035 -2.490938 -4.525578 5.806909 1.907931 -1.786992 1.223311 0.231218 -3.025510 3.847752 -2.239992 -6.591880 -2.575472 -0.394864 -3.614994 4.270402 1.672022 5.170285 -9.253665 3.622768 -9.730448 2.881019 -3.925120 3.361949 7.039340 -4.317623 4.011559 3.095917 4.129486 3.358729 0.073974 4.885145 2.090659 0.384116 3.390284 3.836320 4.032460 -3.183541 -3.707156 -4.208587 -4.400084 1.231526 -2.449817 -6.906114 3.150216 -1.549239 1.124524 -1.402094 0.962960 -1.416688 4.988037 -7.568513 -0.253247 2.021931 -1.604352 2.514630 3.735091 -1.054481 0.453644 -2.546353 4.461837 -3.026008 2.529230 -0.545962 5.147934 -2.401417 -2.932709 -4.978490 1.665831 2.418359 -4.812133 -5.858436 -7.598823 -1.339708 2.456617 -3.535314 6.476027 10.381093 -5.090600 -5.115787 6.152793 0.691958 0.394973 4.529602 1.664245 6.260220 -2.190769 -2.078773 -2.137067 -2.678925 1.142120 1.905608 0.622610 -2.986041 4.787419 -0.975217 -2.421023 7.052743 -0.246053 -3.513245 -2.547735 1.679810 -2.900556 -3.175057 5.942606 -2.545209 4.184060 -0.965141 8.203033 -2.057710 -2.843146 2.007271 -5.667456 -1.494988 -3.998018 -0.348358 -0.275861 3.476348 -4.716480 -3.620604 -1.381589 -2.159170 -3.084425 3.786530 -0.103137 0.681168 2.254947 0.740344 5.409988 5.816874 0.037748 -0.342336 -4.910565 2.611800 3.325354 -0.581004 -6.129333 -1.862209 -1.773369 -1.658791 1.062178 0.344204 3.872628 -3.994831 -0.676232 0.743656 0.093912 1.469063 1.793371 -5.897338 2.092108 0.033281 3.255909 3.137518 5.821018 4.961667 6.147166 2.880232 2.681942 -1.192373 -0.402052 -1.495935 0.929236 1.665696 2.181427 3.614194 5.099376 4.633391 3.184128 4.517086 2.853983 1.000593 5.990868 -0.176322 8.650119 -2.191200 -1.042052 0.514217 1.348368 5.656298 7.606680 -1.705960 -0.911248 3.382345 -0.897266 -2.965383 -3.408013 1.643069 -1.136268 -0.185147 1.919778 3.530250 0.125751 -2.128718 7.748861 -1.597930 -9.331785 4.997079 2.163981 4.430274 3.256589 0.399691 2.081627 2.314339 -2.212881 4.375151 5.395345 3.933433 -5.823548 -0.032025 0.718722 3.845005 3.932589 4.019535 -7.598193 2.183878 2.476691 4.794026 0.098346 3.702519 -4.250060 -1.953837 2.224479 -1.897864 0.094422 0.945452 2.224592 -1.677630 1.604450 -4.285826 -2.716010 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = 4.169163 -2.375389 3.773083 -8.690192 -4.821690 -0.591847 3.375689 -5.648088 -3.447057 9.710102 1.759703 -5.694402 -4.613388 9.231085 -0.804601 -4.573203 2.177762 -3.988952 0.598790 0.614451 -2.775046 4.478492 -1.907513 -4.803295 3.190745 -0.829283 0.490193 6.517345 2.523720 0.054569 -0.426437 -5.360671 1.746556 13.053959 4.467543 -2.182911 -3.813013 17.664728 -7.953609 13.996356 -7.833977 -9.427024 14.803255 -2.096883 -0.526243 -8.212529 -3.415824 8.777232 -2.599075 -8.326344 1.248507 0.234743 3.994133 -8.136428 -5.310000 7.237844 -11.516350 3.112883 6.255558 -4.968998 -6.158027 -2.867784 -0.673131 3.904375 -10.134652 -7.587284 -0.151174 -2.879361 -5.111092 -1.811114 -7.192283 -5.691183 9.176493 4.188172 -3.162194 2.001413 -0.784903 -5.476206 6.594754 -3.206845 -10.396004 -4.894298 -3.974547 -6.416391 8.040931 1.983373 8.737014 -16.238347 5.151881 -16.950886 4.730898 -8.532854 5.621838 13.198114 -5.470043 9.134113 3.218395 8.024173 3.374154 -1.899696 8.902101 5.836518 2.144233 5.156433 9.228886 8.839194 -7.148174 -9.500202 -7.827534 -5.695779 3.182610 -4.924559 -12.352097 6.337738 -4.337597 0.014429 -0.167609 1.107563 -5.600731 9.124399 -14.523380 0.213791 2.514005 -2.894683 4.264809 7.655336 -0.741063 -0.536728 -2.511206 8.394962 -1.666914 4.917691 2.077709 10.120419 -4.660666 -3.264057 -3.501952 3.032924 4.868766 -8.115611 -11.165311 -16.538215 -2.730918 3.448319 -6.630216 10.137765 18.084229 -5.889085 -7.010354 9.897624 -1.076186 1.186395 6.215064 2.523675 12.546354 -4.961260 -4.344700 -1.446275 -4.456822 3.844985 12.089293 -0.545418 -6.498388 9.084258 -4.477777 -4.068127 7.566974 0.847726 -3.920309 -3.030591 0.338855 -5.810349 -8.997158 11.178760 -9.713465 7.186611 -3.715342 15.208562 -0.617316 -4.013955 4.413075 -9.584644 -2.543730 -10.778583 0.026459 -0.587530 5.626767 -9.224943 -6.868426 -2.965321 -1.178358 -5.281501 10.363189 -7.185697 0.359530 2.935685 0.692932 11.437135 6.611067 -3.532674 -0.564168 -8.695280 4.598001 5.195253 -0.012018 -11.262478 -4.519433 -3.161462 -3.915185 2.898862 -0.693133 6.681629 -8.483231 -1.432824 4.965382 0.500732 -0.937389 1.745568 -14.750028 4.147482 3.876845 5.329589 6.735489 13.525288 7.345069 9.546570 1.688184 5.762581 -3.335981 0.465601 -10.633569 1.810566 0.655466 2.849437 6.392001 8.797870 7.156355 6.481282 9.299364 4.790466 -0.322683 10.602210 0.227330 11.765820 -1.489823 -4.511346 4.507776 0.859469 9.886310 11.694290 -0.243769 -5.862310 7.138470 -4.828669 -7.270250 -3.754079 2.687298 -1.698070 0.906310 6.360917 6.883138 1.692014 -2.551864 14.184316 -4.552546 -19.927749 7.795597 4.906889 8.141006 8.687344 -0.939467 7.970411 4.024147 -1.095455 6.953969 8.952361 5.911740 -10.730168 2.710620 1.996364 5.345158 8.279869 4.668226 -19.840866 -0.140703 1.715082 10.449941 1.213090 10.037329 -7.789067 -0.422909 4.624096 -0.577758 1.653652 -2.404535 5.789316 -3.000705 1.433716 -9.950415 0.796232 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.057188 -0.124583 0.184027 -0.448449 -0.525744 0.102886 -0.164865 -0.275453 -0.093735 -0.134276 0.161898 -0.125558 -0.264496 0.543746 -0.108314 -0.514810 -0.107957 -0.060302 -0.010246 0.035089 -0.078920 0.286835 -0.157524 0.024815 0.100135 -0.105382 -0.125282 0.189345 0.294365 -0.232137 -0.164485 -0.248109 -0.114236 0.550337 0.160534 0.165864 0.026105 0.949183 0.120227 0.473232 -0.551551 -0.454429 0.377076 -0.146163 -0.034770 -0.499274 -0.368862 0.281547 -0.469646 0.021942 0.307260 -0.016533 -0.004684 -0.095024 0.196015 0.173612 -0.687395 0.483136 0.246800 -0.148274 -0.008071 -0.162631 -0.283106 -0.057894 -0.076395 -0.282409 0.024398 0.295739 -0.233241 -0.042550 -0.045982 -0.362258 0.936843 0.223223 -0.255201 0.160549 0.234578 -0.230773 0.333324 -0.421522 -0.665082 -0.161648 0.040094 0.000200 0.530814 0.096314 0.292240 -0.786642 0.206622 -0.869063 0.261805 -0.457977 0.247404 0.597511 -0.505991 0.292966 0.381400 0.062264 0.385611 0.174969 0.485970 0.168707 -0.029637 0.314597 0.287592 0.091332 -0.089011 -0.183441 -0.286215 -0.491077 -0.047529 -0.133762 -0.900824 0.191998 0.005368 0.406429 -0.171034 0.245098 0.047061 0.127779 -0.582198 -0.010091 0.192820 -0.138174 0.248933 0.400354 -0.159837 0.025544 -0.317334 0.465892 -0.391576 0.297768 -0.130831 0.364203 0.033893 -0.488963 -0.703039 0.046272 0.174859 -0.339749 -0.502892 -0.439879 -0.105655 0.211575 -0.265887 0.464794 0.974959 -0.517015 -0.471662 0.661198 0.202161 0.219103 0.469263 0.172557 0.486929 -0.055125 -0.252840 -0.237638 -0.333558 -0.051367 -0.284507 0.181140 -0.222192 0.328133 0.033290 -0.472297 0.624601 -0.148057 -0.419603 -0.136285 0.027408 -0.346759 -0.337107 0.523690 0.104943 0.468737 0.055316 0.705727 -0.170850 -0.407368 0.139136 -0.265772 -0.009702 -0.245153 -0.046852 0.045748 0.183525 -0.528153 -0.305155 -0.055994 -0.221995 -0.330901 0.184031 0.325268 0.057323 0.253036 0.201815 0.388648 0.703260 0.107576 0.034380 -0.489798 0.292061 0.180822 -0.133641 -0.533595 0.000898 -0.096282 -0.089159 0.226194 0.026164 0.202181 -0.136084 -0.128939 -0.104157 -0.090757 0.305985 0.257505 -0.244367 0.024885 0.023343 0.254663 0.268619 0.334567 0.581605 0.561419 0.387128 0.242704 -0.013090 0.061163 0.218374 -0.046354 0.153792 0.246820 0.279451 0.395722 0.472888 0.183542 0.446025 0.415715 0.155128 0.519869 0.106783 0.915929 -0.159790 -0.191469 -0.051413 0.113062 0.522487 0.808896 -0.371475 0.271369 0.302178 0.183483 -0.057402 -0.481299 0.163861 -0.114669 -0.216760 0.366268 0.177295 0.038623 -0.163487 0.596634 -0.144686 -0.677080 0.405001 0.153769 0.337548 0.101456 0.166501 -0.035433 0.244993 -0.454492 0.345205 0.433545 0.373505 -0.465158 -0.196604 0.031621 0.275521 0.171953 0.493539 -0.251352 0.109801 0.326352 0.461489 0.066041 0.029618 -0.309794 -0.447758 0.249339 -0.216999 -0.103165 0.127119 0.085514 -0.171505 0.007680 -0.159340 -0.547660 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.195562 -0.616264 0.413270 -0.830208 -0.683291 0.305970 -0.344119 -0.449351 -0.123633 0.015920 0.148668 -0.029143 -0.170208 0.793294 0.007325 -0.826178 -0.005644 -0.176400 0.134962 0.024794 -0.131084 0.459073 -0.253572 0.012994 0.170948 -0.365178 -0.106365 0.436630 0.279400 -0.196015 -0.118671 -0.496224 -0.495569 0.996739 0.342880 0.217726 0.035074 1.778713 0.175607 0.899820 -0.618258 -0.867035 0.726654 -0.298823 -0.171762 -0.169209 -0.468279 0.443572 -0.569210 -0.131440 0.502700 -0.057142 0.256490 -0.200875 0.076669 0.090360 -0.972965 0.241774 0.310834 -0.319896 -0.282472 -0.351303 -0.340767 0.107670 -0.624755 -0.469256 0.320949 0.412284 -0.343328 -0.205790 -0.078282 -0.590777 1.339574 0.563708 -0.253224 0.221302 0.557474 -0.454748 0.619686 -0.074334 -1.300604 -0.378699 -0.346846 -0.899243 1.117766 -0.088518 0.873386 -1.411561 0.940325 -1.579262 0.387977 -0.723087 0.443695 1.195278 -0.854639 0.636053 0.749386 1.126788 0.346438 -0.184249 0.923216 0.375568 -0.312443 0.773299 0.793992 0.119496 -0.334498 -0.362174 -0.670039 -0.711722 0.086905 -0.765802 -1.429953 0.447683 0.038871 0.369991 -0.325535 0.516594 -0.273497 0.574389 -1.248828 0.193912 0.249872 -0.270005 0.219429 0.444463 -0.327365 -0.020620 -0.373154 0.923111 -0.832619 0.429808 -0.141689 0.711585 -0.091544 0.223787 -0.846445 0.173814 0.397981 -0.636012 -0.980170 -0.788262 -0.363725 0.599339 -0.398976 1.491822 1.727546 -0.824540 -0.723083 1.095062 0.012365 0.278351 0.750785 0.355856 0.539235 -0.020902 -0.669090 -0.664917 -0.534288 -0.000135 -0.501289 0.368761 -0.103437 0.864872 -0.107199 0.106067 1.640139 -0.342414 -0.760068 -0.457489 0.152202 -0.697349 -0.690878 0.976480 -0.189358 0.705679 0.335536 1.320001 -0.055819 -0.416069 0.234567 -0.721778 -0.122344 -0.787138 0.015318 -0.222812 0.302166 -0.757120 -0.668414 -0.269984 -0.379990 -0.463218 0.344750 0.728780 0.298194 0.536048 0.356289 0.949535 1.258764 0.309326 -0.285314 -0.819485 0.501151 0.479788 -0.379692 -0.275736 -0.168144 -0.029576 -0.143876 0.237010 0.154431 0.537916 -0.756469 -0.217838 -0.307876 0.301561 0.329184 0.581905 -1.547767 0.132843 0.409691 0.427748 0.655410 0.587400 1.008658 0.926261 0.670835 0.393813 -0.093138 0.351533 -0.178443 -0.172792 0.256678 0.713601 0.437936 0.923878 0.849592 0.511329 0.771634 0.937497 0.485584 0.821640 0.053077 1.588752 -0.026339 -0.422421 -0.097841 0.371857 0.929965 1.324249 -0.355901 0.620343 0.613310 0.305036 -0.348112 -0.955218 0.389992 -0.251704 0.295914 0.137845 0.317728 0.117046 -0.326760 1.011020 -0.158110 -1.409207 0.594719 0.363647 0.717418 0.608862 0.259015 0.232791 0.256674 -0.786202 0.942159 0.819348 0.415403 -0.833565 0.313920 0.164387 0.484481 0.153867 0.927322 -0.263922 0.456989 0.212643 0.701779 0.213041 0.237693 -0.550058 -0.540407 0.506130 -0.652782 -0.079694 0.430594 0.204468 -0.348457 0.231244 -0.637469 -0.897066 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/strongly-connected-components.cpp__main = 1.298641 -0.594694 1.406475 -3.041305 -2.484174 -0.368890 0.312444 -1.682089 -0.950048 1.884343 0.574654 -2.079019 -1.975244 3.730341 -1.006134 -2.657939 0.189477 -0.882024 0.026141 -0.162115 -1.042400 1.885346 -0.759738 -1.218550 1.619087 -0.575970 -0.333416 2.203602 2.221547 -0.761297 -0.496421 -1.626823 0.459052 4.774853 0.959923 -0.554915 -0.373537 6.992011 -1.226142 3.742987 -3.380696 -3.358239 4.952821 -0.836607 -0.316360 -3.443048 -1.955294 2.783656 -3.013250 -0.940533 0.895471 0.201266 0.435016 -2.617192 -0.503915 2.779968 -5.558946 3.104251 2.088122 -1.101062 -1.618851 -1.344250 -1.065947 0.021042 -1.785786 -2.744931 -0.056547 0.353538 -2.422323 -0.031576 -1.906882 -2.018935 4.966448 1.334381 -1.474189 1.407603 0.326043 -1.977171 2.281594 -2.681108 -3.866909 -1.707624 0.152419 -0.808335 3.543031 0.837214 2.313587 -6.171278 1.185917 -6.219137 1.854688 -3.854189 2.382040 5.083930 -3.473770 3.409537 1.351039 1.155179 1.805844 0.545748 3.825896 1.713025 0.753160 1.709644 2.285354 2.387890 -1.618052 -2.645075 -2.192965 -2.429918 -0.167973 -0.907612 -5.831665 1.798955 -1.643508 1.549477 -0.146789 0.775894 -1.255341 2.340411 -4.903749 -0.664515 1.148045 -1.156425 1.990932 3.076792 -0.546730 -0.264353 -1.780014 3.495269 -0.925598 1.638523 -0.289191 3.256152 -0.898228 -3.608586 -3.414179 0.114901 1.350748 -2.834842 -4.440982 -4.922574 -1.036007 0.558773 -2.210060 3.479025 7.026817 -2.281553 -3.046718 4.402620 -0.046097 1.808631 3.540610 1.077513 4.588993 -1.656674 -1.154005 -0.708175 -1.342893 0.874632 0.906370 0.053845 -2.474998 2.515723 -0.446545 -1.732828 2.698323 -0.082918 -1.560514 -1.495423 0.069143 -2.300039 -3.156131 4.720308 -1.549052 3.556916 -1.047789 5.935175 -1.022479 -3.088126 1.667410 -2.744710 -0.271247 -2.783275 -0.080177 -0.033172 1.806159 -3.896118 -2.830610 -0.546326 -0.434813 -1.988072 3.030958 0.237376 -0.016082 0.794501 0.687447 3.547305 3.209487 -1.175039 0.792755 -4.009179 1.612611 1.979562 -0.356135 -5.078385 -0.302965 -0.653648 -1.282666 1.543268 -0.022292 1.711999 -2.080268 -1.085843 0.997744 -0.166563 0.971751 0.604294 -3.532707 1.243583 0.102848 1.369705 2.279542 4.187786 3.984212 3.075838 0.940320 1.776840 -0.601143 -0.409220 -0.868450 0.600009 0.590284 1.366481 2.174012 3.270714 2.935859 1.586454 2.908939 2.214850 -0.536260 3.957235 1.028139 5.574467 -1.469082 -1.560480 0.846044 0.010452 3.927575 5.255001 -1.539282 -1.139566 2.733093 0.025506 -1.125009 -2.937767 0.437891 -0.730431 -0.907352 2.501231 1.329433 -0.329022 -0.551757 5.269083 -1.385747 -6.437863 3.476597 1.578593 2.544618 1.145704 0.254108 0.873726 2.354572 -1.976205 2.030557 2.703710 2.622438 -3.563439 -0.273423 0.381555 2.507277 1.979277 2.260829 -5.263547 0.216775 1.884841 3.831583 1.089984 2.163682 -2.048845 -2.085642 1.161168 -0.627284 -0.247506 -0.237582 1.405067 -1.667675 0.608408 -2.140041 -1.786103 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.505831 -2.912229 2.062124 -4.596553 -4.212682 2.699506 -3.157283 -4.038797 -0.729430 0.474537 1.706435 0.393830 0.452908 3.005987 -0.102551 -3.985204 -0.278271 -1.070354 0.801882 -0.994731 -0.870446 1.912944 -2.138104 -0.132597 0.054634 -2.574507 0.268542 2.094510 0.945511 -0.474393 -1.270757 -2.988733 -3.350175 5.875191 3.283341 0.360743 0.350090 9.556091 1.022056 2.216280 -3.316643 -4.888822 3.733052 -1.616534 -1.246935 0.383730 -2.211516 1.936647 -2.416565 0.293498 2.773970 -1.733859 2.543726 -0.359023 -0.122682 -0.144616 -4.264403 0.778161 1.860325 -2.584999 -2.547611 -2.381538 -0.357349 1.497153 -3.661169 -2.523549 3.321105 3.305818 -0.498821 -1.506148 -1.030364 -4.849321 6.549067 3.086311 -0.985301 0.071362 2.072212 -3.415418 3.230021 2.024911 -7.691523 -2.094225 -1.800322 -6.258372 5.636691 -0.932263 5.493234 -7.978490 5.379280 -9.598416 1.310930 -2.567924 3.039859 5.717087 -5.241490 2.423833 4.503279 7.754789 1.822225 -2.244465 4.960359 1.237858 -2.214959 4.036132 4.693590 0.739375 -1.269316 -1.272797 -3.392479 -4.198802 0.678626 -4.408829 -7.844518 2.929038 -1.008055 0.243449 -3.355152 2.439378 -1.608122 4.994107 -6.345531 0.030698 0.836314 -1.499803 1.717616 2.255986 -1.764722 0.930518 -1.426975 4.637113 -5.046895 1.551024 -1.640264 4.019794 -0.470812 1.806640 -6.259683 1.883849 3.583933 -4.415233 -5.787555 -3.435374 -2.415647 2.783310 -2.041211 9.050457 9.440207 -5.496813 -4.884088 5.742893 -0.304678 0.173910 5.508153 2.013104 3.507008 -0.736611 -2.775152 -4.293218 -2.884482 -0.590782 -4.236747 1.306544 0.331733 4.980944 -0.385821 3.017363 9.999634 -1.726758 -4.677756 -1.454582 1.651088 -3.084966 -3.994611 4.814908 0.200268 3.310844 3.202488 7.287570 -1.560939 -2.175679 0.985255 -3.236613 -1.198753 -3.220861 0.181602 -1.668762 2.879659 -2.711987 -3.649046 -1.340158 -2.327247 -2.323893 2.330713 6.638341 2.149428 3.321715 1.257694 3.987674 8.319690 2.272719 -1.968246 -3.664438 3.007141 4.197322 -1.864411 -0.349457 -2.412707 -1.030667 -0.801916 0.503967 1.092553 4.511946 -4.606359 -0.864961 -2.173459 2.725316 2.583929 3.936698 -10.096098 2.068316 1.143708 1.775955 2.955879 3.499206 4.825871 6.221549 4.528123 0.801641 -0.157875 1.435898 -0.298458 -1.439232 2.180625 4.874531 2.502421 5.958782 4.569387 3.667880 3.949154 4.703087 3.992653 4.774980 -0.639202 9.440061 -1.289723 -1.020786 -1.631320 2.070931 5.369582 8.203596 -1.036502 3.012510 2.527505 1.734095 -2.584494 -6.878010 2.605063 -1.137963 2.941640 -1.219493 3.050380 1.051944 -3.267849 6.501296 -0.266645 -7.791870 3.783085 1.960937 3.763166 4.090375 0.528938 1.202777 0.797385 -3.854006 6.093531 5.421366 2.510602 -4.901779 2.368327 0.996905 3.537610 -1.073440 4.614566 -1.035743 4.447714 1.218350 3.878613 1.678678 1.539843 -4.160671 -2.129671 3.031936 -3.995114 0.284912 3.670510 2.294631 -3.044787 2.317486 -3.850244 -4.614651 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.013021 -1.972513 0.186226 -0.961073 -1.253406 0.580438 0.508430 -3.844745 -1.082668 2.211969 0.776527 -1.376217 -0.126269 1.283621 1.004294 -0.791230 1.556719 1.332717 0.533885 -1.301355 -0.788827 0.481111 -1.003653 -1.341355 -0.488033 -0.789413 0.570436 1.176948 -0.918562 1.503725 -0.794898 -2.191702 0.372651 4.143834 2.563795 0.952452 -2.717952 4.697378 -0.560009 4.170925 -4.439448 -2.365564 3.179617 -1.116796 0.867106 -2.355614 -1.394880 2.107796 1.511174 -2.843288 -0.666029 -0.993899 1.569051 -1.458725 -1.580032 1.894816 -0.496208 -0.549536 1.544500 -4.066603 -2.756804 -1.180856 -0.094927 2.112163 -5.324576 -2.721898 1.166298 0.888568 -0.011777 1.365706 -3.389384 -4.477631 1.145788 1.383621 -2.211898 -1.168940 -0.732683 -1.294835 1.674874 3.499158 -3.113067 -1.815091 -1.163890 -1.095726 0.652126 0.750474 4.548666 -5.980498 1.854303 -6.692018 1.781480 -2.317720 3.206436 3.041435 -2.102870 1.569560 1.495974 4.292723 1.427504 -1.028674 2.112475 1.658344 -0.229900 0.332309 4.608431 1.820566 -0.170697 -2.915013 -0.905817 -1.689632 2.319157 -1.844875 -3.500357 1.920822 -2.953702 -0.107054 -2.349969 2.108993 -0.499857 3.469813 -4.877879 -1.082608 2.065494 -1.213049 2.853471 1.806464 -1.636966 1.632108 -1.633523 2.142820 -0.485052 1.186129 -0.880028 3.067485 -2.321102 -1.137158 -2.940891 1.312224 2.922543 -3.922883 -4.290253 -4.278303 -1.469801 2.807763 -2.109307 2.785263 5.237328 -3.196373 -1.712227 2.035906 -0.265132 -1.743109 2.222292 0.854229 5.467707 -3.141051 1.209514 -0.783858 0.042472 0.945560 3.014720 -1.139323 -2.751273 2.622137 -1.359395 -2.971150 5.734612 -1.130811 -1.930433 -0.009753 -0.229290 1.373154 -1.316828 2.933821 -4.138377 1.885594 -2.448453 2.857541 -1.381068 -0.338656 1.133903 -2.935548 -2.145804 -0.414966 1.320866 -1.260500 4.270614 -2.951964 -2.299991 -0.039740 -3.546542 -0.104142 3.451855 0.446919 -0.664144 1.407231 0.104063 3.601310 2.874896 0.696900 -1.165651 -1.897467 2.097289 3.115570 0.728468 -1.074283 -2.584735 -2.694723 -1.253949 -3.451751 0.961949 3.287684 -2.719918 -0.143587 -0.034039 0.276566 0.622811 1.191266 -3.503373 2.215360 1.175828 1.281431 0.589423 4.539872 1.469421 3.266721 1.927555 -1.260212 -0.148971 -1.439029 -3.859670 2.087695 1.134149 0.907665 1.349151 1.569466 1.808898 1.582182 3.318227 -0.943597 3.622109 3.552813 0.644468 4.162292 -1.639299 1.138205 0.932776 -1.201688 3.421397 5.305687 1.271155 -1.249810 1.203820 -2.186630 -4.159505 -1.722855 -0.507697 0.299541 -0.926533 0.781762 2.121890 0.283762 -2.812703 5.650312 0.048351 -6.127377 2.522375 1.277320 1.185870 5.121068 -1.311614 2.850870 1.034921 1.307878 2.292717 2.979732 2.339493 -3.507637 -1.320299 -0.150724 0.858156 3.418034 0.272193 -4.495559 2.018139 1.748518 4.786605 0.148992 1.278595 -3.606252 2.157425 1.193493 -1.377448 0.679361 0.638007 3.009322 -0.836954 -0.560526 -4.833817 0.585482 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.556438 -10.770580 5.323739 -15.539192 -9.854573 8.474772 -6.384288 -14.510400 -3.131523 6.392635 5.972926 -0.411524 2.506058 11.927410 1.715170 -9.582727 3.198507 -2.163916 3.468343 -1.203787 -2.528391 5.897559 -7.171040 -3.101364 -0.402948 -7.028268 2.104723 6.724450 -1.411796 1.835490 -4.791549 -10.024950 -10.286813 20.034822 11.946780 1.782240 -2.466878 29.358883 -3.569917 15.557232 -12.510974 -15.017731 13.368913 -4.649364 -2.830216 -0.939265 -7.663067 6.431551 -1.989383 -4.971769 6.844190 -6.885463 10.052074 -2.821663 -2.436780 1.343016 -10.305876 -3.135543 7.501510 -9.734099 -9.497824 -7.730821 1.098969 7.141294 -18.992610 -8.541783 10.302465 7.055793 -0.192607 -4.514242 -7.500034 -18.113935 15.044427 11.251178 -3.999912 -1.270206 4.147179 -13.996527 10.569483 9.510302 -23.537788 -6.861609 -8.321024 -22.108091 16.326620 -2.312939 21.493603 -26.474682 18.104245 -31.562385 4.656798 -8.474052 10.150858 19.960682 -13.457381 7.119574 13.226266 29.899052 4.740824 -8.044010 14.445769 6.997419 -7.298130 10.437674 19.764516 6.132690 -6.648360 -8.322833 -10.854486 -11.603105 4.987266 -16.259885 -22.664381 10.361270 -5.803880 -2.890349 -11.259446 7.752708 -7.523749 18.325732 -21.791981 -0.103005 2.825125 -5.202307 5.836710 7.827673 -4.475786 3.431779 -4.335571 14.072993 -13.746039 5.858996 -4.919582 14.256159 -7.304698 9.294530 -14.550742 7.005886 11.799944 -15.658270 -19.449763 -16.700355 -8.484163 11.637172 -6.203789 29.028681 29.431343 -17.137465 -14.722921 17.009591 -0.979110 -2.855437 15.356975 5.806760 13.121947 -5.199982 -5.971256 -12.962155 -7.029091 -1.620011 -3.352000 2.049671 -0.901345 16.871423 -5.762144 4.248450 34.473001 -4.235242 -13.491535 -6.366246 4.935528 -9.160666 -12.597881 16.815391 -10.015301 9.894565 4.890568 21.965554 -4.593907 -3.313482 3.720758 -14.794012 -5.932001 -13.611551 1.058587 -5.612753 11.902093 -9.158884 -12.225419 -4.963587 -7.693051 -6.331937 9.867733 10.944726 4.672393 9.997999 2.543762 16.157157 23.427029 6.052660 -7.409496 -9.609367 10.125502 14.430538 -5.753855 -1.559848 -9.302550 -5.865424 -3.662080 -3.424026 3.724230 15.969281 -18.584718 -2.921826 -4.431354 8.637181 5.920324 11.222184 -36.068474 8.400415 4.953554 6.298307 10.194988 13.826118 12.089842 20.271726 12.434614 0.751794 -1.270569 3.265039 -10.836391 -2.214727 6.595878 12.560148 7.954354 18.799403 13.312130 12.695324 13.131323 12.474171 14.703436 15.484819 -1.982454 26.253521 1.158426 -2.841666 -1.203913 4.098654 16.576540 25.232042 0.307948 6.573288 8.174848 -0.157612 -13.395855 -17.779618 7.608518 -3.382764 7.121580 -2.851666 10.584821 3.933918 -12.035447 22.758142 -0.965783 -27.684804 10.255870 6.725628 12.530051 18.901119 -0.289094 8.767654 2.234584 -7.671523 21.991269 17.147543 7.828045 -15.820993 7.500855 3.325461 9.192885 4.834867 12.015075 -8.460631 15.032215 1.965042 14.797056 5.086877 9.351193 -14.009379 0.709573 8.600233 -11.760647 2.089914 7.315178 9.938050 -7.149474 4.807652 -18.302776 -9.813301 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.860553 -7.614704 4.138319 -9.828058 -6.811838 1.790601 -3.284727 -5.769569 -1.274850 2.460864 4.034731 -3.925332 -2.343617 9.764624 1.193974 -7.624907 2.444503 1.995414 2.732138 -0.155579 0.509651 3.923694 -1.842417 -2.636263 0.852167 -3.426847 -0.768934 6.208905 5.944565 1.038178 -1.468088 -4.618300 -3.507331 10.562958 3.568729 0.380788 -2.124096 18.141519 -2.960877 11.432076 -8.665286 -7.368363 11.011072 -2.696835 -1.808226 -5.748657 -8.156556 4.969826 -6.908620 -4.065102 2.940184 -0.919742 6.232042 -4.582442 -2.203734 3.532612 -9.883634 1.140881 4.640441 -5.433660 -2.566735 -2.142629 -2.895923 3.923022 -9.222287 -5.570738 2.816715 1.560580 -2.923394 -2.912515 -3.450740 -6.983924 13.217336 5.002849 -2.814206 1.900373 4.821631 -7.355538 7.534146 1.765008 -13.015302 -4.569400 -5.041123 -9.693850 10.361237 -1.913073 11.451069 -15.718586 8.190848 -18.271643 6.039159 -8.478390 4.284928 13.387618 -10.432419 6.831983 7.295097 11.839063 4.595199 -1.186664 9.498640 6.221967 -1.530809 6.329253 10.786687 3.949092 -4.132605 -5.897556 -6.768316 -7.203773 1.139641 -9.735700 -17.296300 6.087015 -2.049629 1.328792 -2.570091 2.979535 -2.778985 9.636433 -10.408625 3.757475 3.596413 -3.179445 1.145257 6.667181 -2.686307 -0.515631 -3.738837 9.851539 -7.746265 5.004079 0.956335 8.825741 -3.929028 -0.691111 -6.582866 3.586032 3.634280 -7.800189 -10.955748 -10.988287 -2.939997 5.191952 -3.048087 12.764835 18.112640 -7.848200 -8.733464 10.510975 0.807408 0.088244 8.705065 3.165262 10.260237 -2.292051 -5.751191 -8.064233 -5.540133 1.176712 1.650727 2.119874 -2.297822 9.881603 -3.414854 -4.808657 17.674185 -2.955996 -6.375606 -4.288779 2.432221 -7.662451 -8.044955 10.853472 -5.764698 7.921184 0.117096 14.059707 0.078778 -4.994591 3.551160 -7.748959 -3.153027 -7.395543 0.789172 -0.017541 4.196471 -7.709435 -7.951347 -5.278234 -3.909024 -4.034643 6.809624 3.010523 2.520562 6.653921 2.267289 9.719616 10.690185 2.035154 -2.769525 -8.117214 5.590224 7.060793 -4.031551 -6.799018 -2.990516 -3.011593 -1.137880 -0.502772 1.665114 8.977519 -9.537431 -3.433097 -2.319422 2.468638 2.405597 4.175195 -18.756998 3.450231 3.806600 5.704264 6.559211 9.106747 9.046681 9.873556 4.721546 5.067101 -1.252971 2.608336 -5.350206 -0.786326 2.571586 3.962562 4.382859 10.772889 7.709689 6.864197 9.699346 8.441457 5.273006 9.179117 -0.018232 13.991232 2.157690 -4.518331 1.152679 2.520974 10.530157 15.505978 0.706409 2.663697 6.265110 0.303631 -5.551544 -11.160880 3.107072 -1.659404 1.205193 4.602537 5.121750 2.148734 -5.034595 10.894808 -0.321484 -17.104153 8.131418 3.856436 7.440202 9.118857 0.728485 3.512330 2.663795 -5.594665 10.085208 9.155364 4.312325 -10.109688 1.915254 2.273521 5.505159 6.543436 9.226543 -8.375823 4.749157 2.794757 8.632082 1.730600 6.676573 -7.833982 -3.968852 4.313671 -5.572534 -0.537450 0.436135 0.945550 -5.491249 0.995864 -8.125134 -6.644071 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.593027 -1.404421 2.324413 -3.250047 -3.030501 -1.172545 1.243208 0.047197 -0.490980 2.746436 0.878507 -2.298397 -3.091595 3.831996 0.356320 -2.312400 0.655080 -2.048291 0.690646 -0.102811 0.478090 1.864615 0.603310 -0.580748 0.949197 -0.047209 -1.676536 2.809428 3.074305 -1.194739 0.779601 -1.002718 0.390922 2.387630 -0.723062 -1.561222 -1.275564 6.128025 -3.009078 3.912941 -3.175828 -2.763609 4.764066 -1.021127 -0.303863 -4.520516 -2.287217 3.083770 -1.964704 -2.582557 0.742707 2.004375 1.446479 -2.881580 -1.637418 2.164764 -5.224830 1.769219 1.556222 -1.448596 -0.075370 0.723833 -1.544779 1.415469 -1.815516 -1.942044 -0.493101 -2.302392 -2.217216 -1.022665 -0.325119 0.337788 3.530373 0.918901 -0.216726 1.833509 2.020359 -1.407162 3.373677 -2.917091 -3.721195 -1.362888 -2.146127 -2.372305 3.035856 -0.678761 2.088757 -4.379502 1.839226 -4.774883 2.440929 -3.892749 0.039871 4.278202 -1.771715 3.579002 1.504636 0.473219 2.771581 -0.375318 3.138642 2.668651 2.544553 3.066076 2.040346 2.313740 -2.259883 -1.668303 -3.533041 -2.323006 0.395452 -2.151808 -4.306156 2.261622 1.275757 -0.290627 2.172508 -0.633792 -0.592054 3.091691 -2.621104 2.547552 1.933090 -0.735073 -1.278235 3.168215 -1.076165 -1.517337 -1.455415 3.451363 -1.635348 3.598165 3.088060 2.836470 -0.760635 -2.439003 -0.017264 1.057119 -0.399973 -1.776672 -2.150035 -4.583047 0.736257 -0.054342 -1.740204 2.466647 6.024350 -1.409374 -2.394326 3.339600 1.217520 0.164307 0.937281 0.389702 3.706633 0.255565 -3.833181 -1.682378 -2.619239 1.677611 5.214272 1.569866 -1.066030 2.856937 -0.773223 -3.507128 1.971984 -0.295577 -1.325048 -0.215770 0.635270 -3.111824 -3.031565 2.429302 -0.929886 2.730606 0.004174 4.347028 1.931883 -1.682882 2.133131 -2.043437 -0.049722 -2.967220 -0.391192 1.617229 -0.325080 -2.305137 -1.761017 -3.428108 -1.002530 -1.947055 2.012112 -3.341424 1.596950 2.415774 1.293978 3.015850 1.912285 -0.432866 0.050329 -3.848296 1.396408 0.477371 -0.223723 -4.700499 -0.434186 -0.379917 0.081041 2.395189 -0.313576 2.469764 -1.726243 -1.331055 1.055543 -0.420942 -1.191209 0.228297 -4.719571 -0.215010 1.793583 3.592359 2.075922 3.305483 2.850211 2.405798 0.476135 4.149731 -1.492408 1.824327 -1.713019 -0.407460 -0.525477 -0.662417 1.706785 2.387933 2.350396 1.916383 4.307210 2.822975 -1.863923 2.858871 -0.717996 3.343621 -0.233184 -2.854292 1.081524 1.412528 3.088579 3.592622 1.416341 -1.024401 2.684264 -0.356476 -1.217152 -1.674383 0.680676 -0.743490 1.207457 3.826165 2.211370 0.341899 0.399122 1.633888 -0.598647 -6.078514 2.981964 1.154567 2.817261 1.852098 1.057201 1.323274 1.134530 -2.035269 1.555222 2.988701 1.009279 -3.221638 -0.371573 1.170449 1.943165 2.399613 3.701128 -7.436089 -1.355475 0.891199 1.404895 -0.834676 4.056398 -2.677285 -3.059962 2.058278 -0.453800 -0.678354 -0.581774 -1.014778 -2.383937 0.348870 -1.263332 -0.481909 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.373684 -0.724186 0.465286 -1.044313 -0.775927 0.785714 -0.705531 -0.913534 -0.111174 -0.143177 0.441291 0.266833 0.242833 0.630073 0.080920 -0.803291 0.035257 -0.381532 0.192200 -0.013978 -0.180656 0.316698 -0.524888 -0.027903 -0.078280 -0.519140 0.054631 0.414317 -0.075084 -0.146320 -0.445397 -0.632352 -0.888415 1.303328 0.788394 0.145387 0.178057 2.059613 0.227053 0.587575 -0.548725 -1.010063 0.671885 -0.377255 -0.370452 0.266519 -0.470885 0.354386 -0.281964 -0.078854 0.729631 -0.483374 0.562122 0.041224 -0.027446 -0.071719 -0.859841 -0.120728 0.401620 -0.423341 -0.518448 -0.547771 -0.003380 0.306067 -0.867707 -0.485822 0.881316 0.728217 0.008402 -0.386230 -0.234775 -1.237035 1.557236 0.787459 -0.150851 -0.033819 0.570863 -0.898982 0.728554 0.674080 -1.738626 -0.382190 -0.565795 -1.552183 1.421915 -0.341588 1.221867 -1.655889 1.318811 -2.101985 0.217672 -0.581817 0.612604 1.238494 -1.079291 0.373109 1.088132 2.053001 0.230387 -0.531626 1.097897 0.277294 -0.701492 0.847090 1.222805 0.026813 -0.313670 -0.240397 -0.815560 -0.932406 0.211569 -1.051530 -1.730145 0.649061 -0.174471 -0.019129 -0.833775 0.644089 -0.357027 1.101122 -1.347035 0.170294 0.131942 -0.309201 0.316927 0.506626 -0.404523 0.213238 -0.281085 1.009208 -1.162646 0.312989 -0.407428 0.797193 -0.095304 0.694763 -1.242367 0.439603 0.845530 -0.990666 -1.265533 -0.728515 -0.505325 0.806765 -0.389384 2.134855 2.045855 -1.211674 -0.987731 1.233080 0.155168 -0.002657 1.174972 0.463806 0.682109 -0.155233 -0.594484 -0.978602 -0.624036 -0.293369 -1.259043 0.294263 0.266196 1.122217 -0.100250 0.664816 2.767532 -0.406067 -1.054280 0.008635 0.304397 -0.708123 -0.994451 1.088878 0.278068 0.655112 0.978104 1.595096 -0.262297 -0.294783 0.173426 -0.495812 -0.232134 -0.879147 -0.032095 -0.425424 0.613943 -0.488452 -0.797864 -0.261381 -0.484389 -0.457956 0.458312 1.603047 0.558253 0.764059 0.222171 0.668552 1.907369 0.569707 -0.512454 -0.743189 0.655360 0.888284 -0.583678 0.244346 -0.553561 -0.262964 -0.097800 0.059855 0.268431 1.037846 -1.174658 -0.235752 -0.475499 0.708857 0.533967 0.942261 -2.426932 0.369601 0.359665 0.325211 0.732993 0.681313 1.054514 1.444045 1.064693 0.074751 -0.015470 0.524375 -0.366787 -0.504822 0.367244 1.351333 0.518917 1.248700 0.941514 0.839350 0.769109 1.064607 1.149953 1.025742 -0.039070 2.026782 0.037831 -0.248361 -0.346428 0.418389 1.174031 1.700443 -0.287293 0.906258 0.469821 0.433540 -0.693779 -1.481567 0.635136 -0.244844 0.676984 -0.389060 0.622906 0.357040 -0.803062 1.409679 -0.018368 -1.689234 0.582833 0.420298 0.814468 1.137169 0.132338 0.434915 0.057404 -0.781022 1.538534 1.158427 0.558255 -1.049204 0.684665 0.273572 0.693481 -0.449017 1.011917 0.010772 1.128160 0.051588 0.769306 0.426339 0.243278 -0.925367 -0.229750 0.681861 -0.954212 0.113582 0.856534 0.655557 -0.627730 0.431573 -1.071082 -0.975015 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.224958 -0.248863 0.314390 -1.112463 -1.226751 0.227214 -0.321132 -0.690315 -0.247555 0.134847 0.383784 -0.345301 -0.397247 1.276308 -0.209361 -1.009012 -0.190167 -0.377440 0.020014 0.119936 -0.204329 0.766622 -0.406892 0.043182 0.226630 -0.172859 -0.314144 0.390016 0.589393 -0.487379 -0.388679 -0.594019 -0.331114 1.279529 0.436772 0.084472 0.032922 2.193642 -0.056102 0.994924 -1.200639 -1.019044 0.901381 -0.321279 -0.101938 -0.987682 -0.744515 0.673717 -0.694848 -0.068299 0.683324 -0.068613 0.101302 -0.214973 0.331914 0.346260 -1.468615 0.955233 0.647065 -0.284740 -0.125889 -0.418577 -0.433627 0.038287 -0.495716 -0.686069 0.147272 0.514947 -0.416396 -0.231221 -0.210682 -0.888890 1.759217 0.579815 -0.575482 0.283330 0.357651 -0.778422 0.806102 -0.875006 -1.560254 -0.314068 -0.038056 -0.354819 1.176459 0.108106 0.809938 -1.829809 0.676004 -2.028450 0.446160 -0.981004 0.569730 1.480167 -1.081665 0.584952 0.775184 0.549392 0.997087 0.188441 1.125384 0.459734 -0.028554 0.750866 0.658308 0.470079 -0.308273 -0.382057 -0.668048 -1.090822 -0.021652 -0.350692 -1.930436 0.577070 -0.019117 0.556486 -0.361719 0.419635 -0.080932 0.655852 -1.363306 -0.238733 0.344821 -0.314877 0.496785 0.953554 -0.350746 0.057826 -0.735324 1.055706 -0.805140 0.739937 -0.258783 0.888357 -0.265819 -0.806576 -1.466400 0.187090 0.441377 -0.894657 -1.168633 -1.204797 -0.221982 0.307019 -0.661004 1.292409 2.217147 -1.232339 -1.109012 1.566208 0.330457 0.279241 1.058013 0.267055 1.114655 -0.145960 -0.584930 -0.543020 -0.746677 -0.200838 -0.316650 0.405565 -0.445137 0.700655 -0.105823 -0.862189 1.389716 -0.117940 -0.984160 -0.427102 0.153887 -0.781512 -0.836519 1.221118 -0.099435 0.958670 0.134717 1.602856 -0.307471 -0.759763 0.436921 -0.705648 -0.058683 -0.714469 -0.164798 0.123460 0.499183 -1.023496 -0.637839 -0.142726 -0.445097 -0.865231 0.447071 0.549382 0.194527 0.611374 0.463704 1.001910 1.634514 0.209761 0.051914 -1.039821 0.716875 0.550393 -0.360641 -1.123939 -0.165432 -0.310086 -0.245464 0.468759 0.008048 0.585817 -0.533882 -0.329515 -0.144258 -0.011517 0.675799 0.623586 -1.000293 0.245152 -0.059340 0.664256 0.618159 0.845107 1.116659 1.358318 0.901451 0.468083 -0.089108 0.163053 0.255839 -0.073155 0.366124 0.461284 0.715489 1.086762 1.113136 0.548834 1.018233 0.910392 0.293816 1.217399 0.053591 2.078683 -0.341380 -0.425448 -0.117034 0.269357 1.191438 1.898898 -0.648226 0.418104 0.677066 0.249793 -0.358054 -1.001474 0.442727 -0.292047 -0.247364 0.481917 0.416526 0.094904 -0.388800 1.415264 -0.369761 -1.654306 0.926258 0.367475 0.872720 0.394463 0.363432 0.100496 0.482344 -1.012883 0.991199 1.144057 0.796615 -0.994480 -0.339573 0.121735 0.684788 0.389605 1.127769 -0.778461 0.441970 0.691135 1.033382 0.174562 0.314294 -0.751737 -0.862442 0.662733 -0.435037 -0.167250 0.259791 0.326431 -0.494470 0.178655 -0.488961 -1.084695 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 0.012152 -1.286717 0.700098 -1.734861 -1.455827 0.547197 -0.284125 -1.248509 -0.289915 0.549390 0.399237 -0.346003 -0.192476 1.942873 0.075655 -1.426722 0.047101 0.361725 0.370749 0.344463 -0.176617 1.212644 -0.694957 -0.038425 0.305862 -0.696140 0.016276 1.040559 0.200911 0.384761 -0.176376 -1.251486 -0.859717 2.166799 0.950670 0.926543 -0.279033 3.479106 -0.600988 3.112337 -1.736938 -1.819389 1.569515 -0.441162 -0.168149 -0.935777 -1.239168 0.744564 -0.936392 -0.739957 0.906410 -0.297479 0.895313 -0.339367 0.423890 0.210488 -1.548132 -0.035492 0.806904 -1.185608 -0.611666 -0.762159 -0.853605 0.511693 -2.412056 -0.948573 0.198749 0.709905 -0.226261 -0.307849 -0.289582 -1.475636 2.504404 1.146396 -1.089254 0.274834 0.863712 -1.398722 1.200078 0.043766 -2.596026 -0.821020 -0.780444 -1.697049 1.834965 0.122232 2.379247 -2.958831 1.671592 -3.272617 0.942382 -1.452366 0.974813 2.567813 -1.578606 1.228656 1.474668 2.625001 0.920963 -0.238364 1.503496 1.289866 -0.523275 1.338769 1.866939 0.920816 -0.970322 -1.384718 -1.434071 -1.402906 0.530287 -1.784004 -3.139783 0.635112 0.060224 0.866979 -0.848538 0.896438 -0.543216 1.704464 -2.710601 0.682230 0.616007 -0.548113 0.430248 0.917498 -0.437358 0.050401 -0.714554 1.716214 -1.627624 0.981604 -0.459362 1.623079 -1.237312 0.720190 -1.332175 0.417853 0.656620 -1.349069 -1.958177 -2.253369 -0.968377 1.942143 -0.724578 2.391193 3.428756 -1.890464 -1.632639 2.150067 0.022950 -0.043615 1.083537 0.795925 1.039669 -0.145303 -1.103743 -1.661420 -1.099815 -0.045920 1.193133 0.685077 -0.813151 1.853115 -0.840338 -1.273770 3.593393 -0.579428 -1.544031 -1.712622 0.181921 -1.371176 -0.983963 2.256799 -2.184823 1.451660 -0.733270 2.475315 -0.333708 -0.609809 0.330752 -2.430957 -0.503339 -2.006109 0.138479 -0.108869 1.053496 -1.861715 -1.317662 -0.443645 -0.945363 -0.928367 0.901086 -0.191985 0.029811 0.980305 0.610558 2.779648 2.259514 0.607138 -0.849551 -1.132947 1.185372 0.848055 -0.751807 -1.099723 -0.451247 -0.338043 -0.530380 -0.369109 0.358957 1.073879 -1.808387 -0.191855 -0.556664 0.125154 0.476194 1.055380 -3.460711 0.596800 0.883311 1.191275 1.310458 1.199035 1.873030 2.090561 1.311755 0.841970 -0.297395 0.242005 -1.067463 0.511968 1.041790 0.510958 0.854964 2.333458 1.715293 1.013087 1.523379 1.797950 1.464598 1.703749 0.072911 2.961083 0.351146 -0.778851 0.241441 0.801752 1.773899 2.687643 -0.231750 1.159595 1.135075 0.049389 -1.189310 -1.316681 0.771660 -0.408862 0.094474 0.756031 0.747227 0.188624 -0.730287 2.321785 -0.342531 -2.953234 0.921476 0.781957 1.502540 1.469961 0.335284 0.818864 0.624377 -0.952243 2.423363 1.666523 0.842074 -1.764847 0.021788 0.244002 0.422141 2.173304 1.719404 -1.269677 0.715803 0.341268 1.912589 0.054065 1.313507 -1.143227 -0.315985 0.963672 -1.252157 -0.192194 0.157217 0.387407 -0.124856 0.335342 -1.948154 -1.801017 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 1.228666 -2.966625 1.589009 -3.392542 -2.759969 2.180959 -2.477112 -2.414323 -0.455981 0.773220 0.810377 0.562752 0.367428 2.493881 0.237569 -2.899574 0.181189 -0.989714 1.197771 -0.167171 -0.528068 1.563250 -1.305421 0.183594 0.013865 -1.821630 -0.169140 1.409009 0.695754 -0.137376 -0.760160 -2.194372 -3.044663 3.888404 2.268969 0.124704 0.317733 7.017745 0.660484 2.606111 -1.750672 -3.444876 2.303967 -1.154874 -0.752636 1.235135 -1.361680 1.456683 -1.505796 -0.375228 2.381675 -1.018835 2.102807 0.022378 -0.252578 -0.637099 -2.927287 -0.116471 1.036660 -1.303683 -1.291277 -1.571987 -0.542851 1.417819 -3.125891 -1.621360 2.342053 2.091233 -0.569689 -1.628654 -0.526490 -2.789241 4.217348 2.597999 -0.731509 -0.019879 2.263905 -2.243239 2.416960 1.204407 -5.938621 -1.354154 -2.517795 -5.623059 4.617118 -0.904337 4.331007 -5.482010 5.107572 -6.775136 1.019023 -1.921649 1.797948 4.595945 -3.403945 1.713347 3.519447 6.807294 1.398881 -2.052855 3.651278 1.394996 -2.266239 3.453393 3.581816 0.462039 -1.309484 -0.688884 -2.732829 -2.655295 0.506002 -3.836732 -5.074857 2.183685 0.093009 0.428867 -2.032347 2.017411 -1.830274 3.260971 -5.004463 0.427654 0.235789 -1.028828 0.768489 1.214843 -1.426869 0.439596 -0.891626 3.705827 -4.031372 1.254406 -0.613249 2.886736 -0.657399 3.043641 -3.593992 1.615780 2.454135 -2.888996 -4.005968 -2.869653 -1.640164 2.240148 -1.397148 7.518772 6.638436 -3.673587 -2.758677 4.142649 -0.957294 0.147126 3.550444 1.297776 1.521488 0.124026 -2.941404 -3.275197 -2.365445 -0.690314 -2.691180 1.539288 0.860740 3.871969 -0.568641 3.116231 7.134316 -1.220589 -3.697770 -2.184772 1.081029 -2.555184 -2.702208 3.377276 -1.202284 1.584312 2.681934 5.175121 0.104318 -0.949056 0.840255 -2.951500 -0.748319 -2.970097 0.123674 -1.353513 1.382061 -2.134024 -2.594640 -1.255340 -1.388451 -1.814562 1.172120 4.275326 1.841062 2.923918 1.314707 3.925527 5.796371 2.098538 -1.827263 -2.513378 2.096267 2.547845 -2.070223 0.641909 -1.654432 -0.395826 -0.331350 0.673963 0.792618 3.032931 -4.131650 -0.863005 -1.869900 2.424771 1.701435 3.345661 -8.177174 1.151280 1.905552 1.600474 2.806812 2.155265 3.085805 4.351636 3.385763 1.102775 -0.412843 2.035748 -0.900726 -1.202776 1.560462 3.414827 1.669694 4.188419 3.348137 2.718908 2.776438 3.932984 2.827583 3.023384 -0.776414 6.277705 -0.027034 -1.180260 -1.059147 1.856674 3.645670 5.367526 -0.885497 2.887908 2.042893 0.914660 -1.870408 -4.201449 2.416363 -1.052819 2.970835 -1.494358 1.941939 1.238973 -2.184585 3.846339 -0.335088 -5.662958 2.337106 1.523764 3.008767 3.681300 0.908163 1.379257 -0.169341 -3.192116 4.914153 4.089389 1.250585 -3.155791 2.612021 0.880844 2.093835 -0.425782 3.788391 -0.216671 3.006357 0.357964 2.273227 1.241892 1.068340 -2.759329 -1.773865 2.472518 -3.358338 0.182179 2.440303 1.347385 -1.728827 1.789008 -2.603351 -3.422407 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 1.098373 -3.181147 1.530579 -3.769015 -3.080420 2.847707 -3.321806 -3.252120 -0.395658 -0.246882 1.337323 0.852482 1.196442 2.787799 0.155625 -2.969742 0.029483 -0.600768 1.276254 -0.085325 -0.567468 1.595035 -1.899558 0.330666 -0.212892 -2.132404 -0.059236 1.383413 0.321762 -0.062723 -1.339586 -2.460133 -3.644647 4.553980 2.892545 0.487183 0.747344 7.780177 0.803646 2.516938 -1.807280 -3.583493 2.164399 -1.234437 -1.201804 1.592940 -2.112492 1.038231 -1.564931 0.121157 2.812876 -1.723704 2.238441 0.592912 0.245295 -0.854047 -2.969485 -0.477923 1.322310 -1.482380 -1.473442 -2.007263 -0.467998 1.189137 -3.608835 -1.585540 2.999581 3.045514 0.128239 -1.760584 -0.508489 -4.035019 5.173657 2.941273 -0.835649 -0.167930 2.452260 -3.175450 2.546632 2.228680 -6.710137 -1.334302 -2.405019 -6.203573 5.189326 -1.093470 4.967830 -5.976066 5.430398 -7.685157 0.765287 -2.012577 2.157711 4.898230 -4.337722 1.363745 4.222308 8.115273 1.421378 -1.935810 4.033882 1.391048 -3.236562 3.490147 4.297187 0.326608 -1.003789 -0.554004 -2.900745 -3.213893 0.574851 -4.244760 -6.254680 2.239555 -0.306909 0.224886 -3.206984 2.516266 -1.652628 4.025248 -5.045633 0.505852 0.212713 -1.136394 0.880374 1.511504 -1.483767 0.643522 -1.147843 3.841780 -4.721032 1.028853 -1.445650 2.975559 -0.841626 3.196806 -4.745668 1.599253 2.867661 -3.572491 -4.533900 -2.748255 -1.986794 2.884807 -1.294019 8.280349 7.479186 -4.585100 -3.385264 4.733354 -0.195562 -0.048067 4.473832 1.660417 1.902474 -0.005626 -2.725403 -3.997674 -2.649504 -1.328740 -4.525134 1.549119 1.217822 4.042275 -0.403871 2.890691 9.745403 -1.559065 -4.249776 -1.728644 1.326630 -2.630948 -3.198804 4.055735 -0.412395 1.925691 3.151158 5.653842 -0.433830 -1.145242 0.669125 -2.730497 -0.888265 -3.119508 0.139567 -1.741166 2.062919 -1.952010 -2.879594 -0.921981 -1.707231 -1.912287 1.184525 6.066666 2.038745 3.136201 1.164073 3.339838 7.109158 2.538829 -1.935442 -2.550394 2.394237 3.283080 -2.542423 0.871616 -1.766972 -0.756793 -0.343893 -0.094195 0.976306 3.525198 -4.767483 -0.870389 -2.485082 2.778579 2.367646 3.830459 -9.217919 1.619397 1.389170 1.452946 3.056637 2.039746 3.752061 5.277738 4.120030 0.621751 -0.161595 1.961334 -0.739107 -1.347487 1.952155 4.373107 1.770369 5.049632 3.703134 3.140595 2.591733 4.204662 4.298897 3.535940 -0.483486 7.535887 0.344223 -0.958072 -1.485977 1.883082 4.195863 6.464208 -0.938603 3.746411 1.832180 1.398284 -2.332029 -5.487830 2.741697 -0.914630 2.689898 -1.879418 1.974031 1.432684 -2.862808 4.677542 -0.145347 -5.996533 2.253405 1.579382 3.019442 3.950954 0.894467 1.322919 -0.017635 -3.356361 5.981019 4.470072 1.699360 -3.606208 2.630096 0.921336 2.367534 -0.721727 4.135645 0.506237 4.477587 0.351250 2.573582 1.477356 0.775405 -3.138633 -1.482566 2.660815 -3.883136 0.131134 3.020377 1.936669 -2.081849 2.030582 -3.236067 -4.387467 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = 0.269875 -0.023833 0.527502 -0.465703 0.094356 -0.361526 1.479062 -0.085319 -0.302875 0.876860 -0.139340 -0.288796 -0.981055 0.306988 0.171016 -0.313471 0.285174 -0.755075 -0.336962 0.011936 -0.431151 0.235540 -0.089033 -0.513127 0.618674 0.028185 0.247298 0.977669 -0.310918 -0.040363 0.340487 -0.342582 0.295884 1.007123 0.038368 0.103383 -0.397629 1.302932 -1.231044 1.383710 -0.787943 -0.902114 1.659129 -0.265106 -0.212610 -1.132931 0.189802 0.841231 -0.399437 -0.818069 -0.060584 0.295161 0.100835 -1.079857 -0.355301 1.095352 -1.222327 0.153935 0.446184 -0.541335 -0.960411 -0.261416 -0.110177 -0.053644 -0.749935 -0.707160 -0.124214 -0.985041 -0.567513 0.339330 -0.736135 -0.205279 0.444763 0.247960 0.009548 0.448328 -0.208155 -0.109079 0.486969 -0.172212 -0.308014 -0.643823 0.002545 -0.388468 0.563733 0.204899 0.227466 -1.278323 -0.148473 -0.980776 0.415781 -0.940364 0.421618 0.947923 0.157993 1.339567 -0.118628 -0.159762 -0.530221 -0.428343 0.457767 0.321087 0.937411 0.377981 0.696605 0.682575 -0.992227 -1.364165 -0.943469 -0.153884 0.397107 -0.338205 -0.688630 0.356705 -0.484658 -0.095981 0.503235 -0.008556 -0.457765 0.623106 -1.166821 0.794031 0.443964 -0.252647 0.389564 0.635952 0.026310 -0.226159 -0.084066 0.529806 0.222867 0.816772 -0.013314 0.784743 -0.003916 -0.323389 0.366239 -0.151455 0.179599 -0.324944 -0.804006 -1.334255 -0.296238 0.427531 -0.512287 0.355387 1.344206 -0.138813 -0.600264 0.580691 -0.111599 0.633103 -0.231634 0.305608 0.856677 -0.482459 -0.150480 0.021568 0.072388 0.746407 1.760089 -0.185076 -0.931899 0.823522 -0.305579 -0.337407 0.495681 0.039876 0.122295 0.245918 -0.116117 -0.474963 -0.768099 1.036826 -0.620030 1.075927 -0.616962 1.085648 -0.268319 -0.150865 0.223146 -0.987566 -0.040838 -1.426396 -0.217260 -0.023612 0.159784 -0.805125 -0.646064 -0.689321 0.008340 -0.161091 1.055822 -1.464750 -0.217789 -0.273427 0.057642 0.762883 0.005569 -0.679796 -0.128108 -0.946687 0.324556 0.083171 0.382742 -1.126010 -0.143515 0.222970 -0.515854 0.533823 0.095864 0.347273 -0.321051 0.079096 0.996666 -0.075244 -0.735446 -0.229204 -1.276429 0.024191 0.562854 0.098634 0.494115 1.158160 0.802968 0.186402 -0.321559 0.591315 -0.250751 -0.045456 -1.491086 0.129763 -0.331078 0.344278 0.451681 0.331081 0.492237 0.156228 0.614421 0.337125 -0.477189 0.723274 0.521150 0.676475 -0.161824 -0.667099 0.774318 0.070067 0.520826 0.124887 0.098265 -0.701841 0.760496 -0.197362 -0.637928 0.053454 -0.254252 -0.304090 0.004855 1.146958 0.375092 -0.502656 0.212487 1.470060 -0.445542 -1.730533 0.324501 0.462230 0.675842 0.342515 -0.085785 0.615029 0.814905 0.067706 0.267116 0.159325 0.413241 -0.861898 0.330345 0.180058 0.236189 0.814816 -0.030768 -2.362843 -0.909446 -0.221574 1.102982 0.116522 1.370093 -0.215284 0.353384 0.027625 0.059560 0.224268 -0.152984 0.527991 0.037594 -0.032974 -1.551319 0.525747 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.650855 -0.004890 1.655161 -1.513002 -0.124454 -0.532208 2.437471 -2.508809 -1.287323 4.920980 0.470745 -1.839172 -0.774243 1.184755 -0.484313 -0.812594 1.042899 1.144308 -0.972797 -1.040653 -1.458543 0.021580 -0.764404 -3.013107 1.181303 -0.655898 2.235996 2.167057 -1.856184 1.455312 0.421556 -1.481610 1.470265 4.606655 1.285573 0.321023 -2.272927 3.447775 -2.569733 3.772947 -3.771120 -3.295568 5.238548 -0.607422 1.220819 -2.755946 -0.094566 2.805248 0.328767 -3.386049 -1.591754 -0.533059 1.537102 -4.273322 -2.352740 2.928574 -2.304442 -0.331083 2.158587 -3.900253 -4.954636 -0.685766 1.762878 1.189952 -3.797776 -3.138552 0.014631 -0.439191 -0.854567 1.351290 -3.678354 -3.437193 1.395678 0.152395 -0.885176 0.653621 -1.942415 -1.338477 1.567382 1.306028 -1.498270 -2.636862 0.649948 -1.760845 0.725011 1.556990 3.329658 -5.475425 1.163006 -4.853173 2.081147 -1.967817 2.978606 3.209975 -0.721799 3.241829 0.331586 2.367255 -0.878039 -0.283291 1.883999 0.971584 1.772326 -0.039316 3.048738 2.693705 -2.904759 -5.001985 -2.165062 -1.572641 1.725387 -1.358982 -2.770127 1.679946 -3.299533 0.334882 -0.355964 -0.194127 -0.984187 3.891215 -5.522949 0.182982 1.976314 -1.107564 2.289202 1.685567 0.267661 0.631849 -0.111141 1.521252 0.445345 0.028703 0.026270 3.398954 -1.850585 -1.271047 -0.206179 0.835387 1.827286 -2.547428 -3.797977 -4.949562 -1.805993 2.696130 -1.924383 1.938089 4.655914 -1.205366 -2.809809 1.174089 -0.818386 -0.639839 1.590396 1.563845 4.921669 -3.956863 1.334060 -0.174837 1.008011 3.213900 4.644236 -2.195464 -3.843140 3.890936 -1.823046 -1.370743 3.750418 0.000804 0.595232 0.528350 0.641477 -0.402363 -1.222070 3.232127 -3.824035 3.537416 -2.895669 4.819000 -2.771335 -0.748060 0.446368 -3.973773 -1.717967 -2.303325 0.587495 -0.814107 3.610094 -2.880699 -2.805969 -0.662106 -1.550795 0.453127 5.119198 -3.302618 -0.991774 -0.645557 -1.759521 3.637784 0.207089 -2.070413 -0.753402 -2.108817 1.049906 1.928614 1.313703 -3.423056 -2.224196 -1.563458 -1.722792 -1.047101 0.680487 3.052133 -2.208927 0.364343 2.531609 -0.386842 -1.533756 -1.419341 -3.133126 1.561066 0.123841 0.940644 0.714615 5.477861 2.514248 2.441225 -0.776239 0.258658 -0.609237 -2.304406 -4.645257 1.643678 0.075060 1.248912 1.813377 1.557519 1.037321 1.632629 2.142138 -0.665685 0.639798 3.633593 0.534434 2.593361 -2.168335 0.185790 2.206386 -0.591190 2.787173 2.277069 0.150294 -3.270871 1.675553 -1.841139 -3.082069 -0.632535 -0.913857 0.026805 -0.782748 1.804547 3.364607 -0.880056 -1.373630 5.930733 -0.325467 -6.147834 2.714574 1.245340 1.960038 3.311592 -1.917286 3.046137 1.941085 2.903652 0.777009 1.511389 2.376985 -4.345466 0.546071 0.557049 2.196296 3.135288 -0.686187 -7.471539 -0.249336 0.315368 4.073637 -0.174662 4.191772 -2.623415 2.811224 -0.017137 0.036572 1.161343 -0.818717 2.293236 0.060211 -0.452263 -5.418697 2.108866 +PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.469869 0.204873 0.743642 -0.773117 -0.562907 -0.253533 0.534784 -0.832964 -0.438919 1.068347 0.203647 -0.807500 -0.866315 0.712557 -0.498415 -0.863280 -0.008608 0.082212 -0.434255 -0.680835 -0.460460 0.174390 -0.210428 -0.928402 0.501526 -0.382104 0.520338 0.955895 0.221469 0.046904 0.170127 -0.487033 0.647417 1.791246 0.344247 0.130863 -0.515753 1.787948 -0.410182 0.997349 -1.715564 -1.440417 2.084273 -0.265891 0.172912 -1.637280 -0.350874 1.061800 -1.050389 -0.397099 -0.344775 -0.022474 0.228069 -1.470101 -0.565985 1.284912 -1.731863 1.037483 0.684213 -1.222065 -1.403252 -0.305261 0.136231 0.114896 -0.451366 -1.166943 -0.092987 0.155771 -0.807953 0.598493 -0.973327 -0.943179 1.504489 0.031349 -0.368840 0.478941 -0.403582 -0.301022 0.661401 -0.457033 -0.758279 -0.939989 0.646089 0.025712 0.645581 0.620473 0.747314 -2.222590 -0.081670 -1.974544 0.879275 -1.065782 1.054852 1.231565 -0.843583 1.412892 0.200642 -0.230243 0.040767 0.185375 0.977532 0.226133 0.915081 0.267868 0.850228 0.770672 -0.687631 -1.506889 -0.743491 -0.833950 0.153250 -0.243677 -1.807859 0.538110 -1.090678 0.522223 -0.054781 -0.032732 -0.173347 0.989804 -1.900341 -0.107497 0.724490 -0.414353 0.943025 0.822837 -0.001929 0.208690 -0.239627 0.880068 0.022086 0.267723 -0.076167 1.188841 -0.036257 -1.694588 -1.035193 0.160790 0.557017 -0.858563 -1.524367 -1.517886 -0.629234 0.569447 -0.724301 0.651194 2.153554 -0.503828 -1.413512 0.940988 -0.049168 0.382594 1.063083 0.621306 1.991603 -1.192866 0.217938 -0.112836 0.060466 1.089739 0.895300 -0.618848 -1.401502 1.253046 -0.170773 -0.691627 0.754611 -0.212864 -0.038461 0.094839 0.083490 -0.512307 -0.704543 1.350772 -0.379658 1.738522 -0.829208 2.051954 -1.129376 -1.141715 0.243333 -1.220364 -0.369009 -0.502078 0.152516 -0.134332 1.032574 -1.392911 -1.147248 -0.298474 -0.439993 -0.142434 1.694830 -0.444939 -0.246133 -0.124978 -0.300826 1.161231 0.560915 -0.782843 0.099476 -1.252712 0.439732 0.824345 0.638073 -2.004781 -0.394131 -0.334099 -0.571133 0.258101 0.195185 0.923734 -0.312029 0.029760 0.711404 -0.401688 -0.093695 -0.352082 -0.647610 0.473930 -0.185174 0.291657 0.283041 1.900395 1.467722 0.836787 -0.126739 0.416439 -0.095244 -0.883452 -0.489494 0.363492 0.230411 0.426926 0.734415 0.838397 0.623501 0.478041 1.095456 0.358142 -0.254770 1.445477 0.327089 1.566665 -1.256270 -0.079210 0.449551 -0.090802 1.236522 1.464920 -0.353950 -1.029210 0.833594 -0.098659 -0.431136 -0.989670 -0.418329 -0.126623 -0.469525 1.294769 1.064751 -0.513536 -0.282030 2.220329 -0.118540 -2.197844 1.421737 0.550439 0.645189 0.370085 -0.550863 0.274613 1.119749 0.186821 0.011195 0.627390 1.006236 -1.657302 -0.231019 0.128036 1.111724 0.743314 0.185061 -2.492227 -0.337908 0.641318 1.634895 0.141496 1.207866 -0.884445 -0.131517 0.102447 0.060057 0.125003 -0.011692 0.557114 -0.482370 -0.008012 -1.174995 -0.003896 +PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 1.962477 0.492430 2.635579 -5.897648 -1.881758 -0.889742 6.299368 -5.603400 -3.090495 9.614709 2.509423 -4.208444 -2.180344 3.990546 0.194240 -2.073771 2.690511 0.163000 -2.418191 -2.290088 -2.257710 1.264758 -1.747300 -6.694584 1.742052 -1.726873 3.945771 4.728348 -2.600274 2.433155 0.547176 -3.917193 3.306718 10.025428 3.322604 0.975057 -6.226049 8.808744 -6.540325 9.141453 -8.447623 -8.174681 12.170325 -1.518069 1.429778 -8.608622 -0.943911 5.853767 3.767177 -8.105825 -2.884423 -1.135575 4.084108 -8.769701 -5.352752 5.889572 -3.137049 -1.374084 5.048987 -8.715782 -9.570374 -2.640960 3.271939 3.723909 -10.403986 -6.076818 0.262512 -2.246354 -1.738998 1.581018 -7.718664 -7.562654 3.506367 1.881400 -1.576512 0.944909 -4.688892 -5.222787 3.692753 3.991233 -4.439420 -4.735708 0.619600 -2.592777 1.399978 2.279452 8.236167 -12.851952 0.805194 -11.866409 3.932505 -4.276956 6.435804 7.384848 -1.372556 6.533291 0.831208 6.114769 -0.860359 -1.199581 4.691001 2.780350 5.376531 0.630827 8.405031 7.316695 -5.945005 -10.790308 -4.483109 -4.480034 4.834937 -3.011855 -7.153820 4.435233 -6.765825 -4.689852 -1.661527 -0.566543 -2.527881 9.053901 -10.489118 -1.042334 4.808782 -2.615521 4.553041 4.290806 0.466936 1.728429 -0.452226 3.679087 0.875744 2.963134 -0.228261 7.910892 -4.503972 -2.914725 0.072324 2.387377 3.867841 -6.567675 -8.573234 -11.448124 -3.775789 5.665938 -4.631469 2.393149 11.057204 -3.981064 -6.813181 3.958681 0.590696 -2.055444 2.429563 2.610973 11.497825 -7.915070 2.578749 0.103333 1.143192 6.191472 13.891550 -4.189518 -8.334974 7.461936 -5.841678 -6.283705 7.821717 -0.751003 0.087622 0.468521 1.105046 -2.874547 -4.817826 7.194229 -8.154165 8.036689 -6.362903 10.052387 -5.792042 -1.337405 2.075960 -7.479859 -4.105294 -7.111405 1.884863 -0.704586 8.350133 -5.037919 -6.056771 -2.064581 -3.294588 -0.461721 10.018101 -11.115989 -1.908023 -0.417562 -2.594321 5.641208 2.008248 -3.799610 -2.167510 -4.284343 2.957091 5.410043 4.296038 -7.352833 -5.426551 -4.289855 -4.047297 -3.019574 1.131905 7.038391 -3.531348 0.466133 5.629941 -1.235320 -3.199391 -2.107481 -9.358953 4.040946 0.927233 2.989131 0.298546 12.397868 4.873437 6.341964 -0.776214 0.367956 -1.053425 -3.936016 -11.731463 3.118929 0.213420 1.279203 4.680236 5.350150 3.693792 4.857125 8.040331 -0.642321 1.275921 7.920657 0.144625 7.084523 -2.860225 -0.684905 4.819919 -1.075843 6.654622 7.884731 4.905182 -7.946927 4.009785 -4.476984 -8.024499 -1.855818 -1.602656 0.053017 -1.431623 5.005496 7.585074 -1.296735 -3.277957 13.664542 -1.368892 -14.555711 5.858077 2.664618 5.738457 8.188905 -4.610792 6.876033 5.066751 5.277124 3.854945 4.783519 5.136978 -8.869906 -0.664209 1.015665 4.644189 7.624852 -1.298159 -16.400383 1.550442 1.053077 9.621537 -0.234452 9.886643 -6.255082 6.561849 0.762318 0.645850 2.413835 -1.785095 5.570464 -1.192046 -2.049178 -12.830396 4.957315 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.749225 0.154887 0.858798 -1.851628 -1.064203 0.062097 0.834880 -1.755906 -0.749810 1.807650 0.790030 -1.256477 -0.922387 1.335062 -0.401072 -1.130610 0.544906 -0.046714 -0.496999 -0.772504 -0.691232 0.362169 -0.581005 -1.439410 0.360932 -0.543898 0.838803 1.258921 0.314569 0.140029 -0.371105 -0.988771 0.619200 3.066267 1.109256 -0.023995 -1.088430 3.134719 -0.657281 2.018806 -2.598301 -1.984068 2.981596 -0.414649 0.196017 -2.668099 -0.691076 1.654581 -0.356589 -1.232515 -0.276478 -0.548699 0.843180 -1.983146 -1.122131 1.860410 -1.842053 0.818315 1.370882 -1.763695 -2.023208 -0.815990 0.732774 0.717204 -1.906689 -1.759224 0.320011 0.086835 -0.975676 0.497257 -2.062207 -2.221649 1.898143 0.634517 -0.836778 0.236878 -0.882996 -1.495671 1.059639 0.197542 -1.772402 -1.185390 0.358165 -0.545535 1.219197 0.428385 1.840924 -3.876992 0.265844 -3.847355 0.972077 -1.653763 1.922667 2.363984 -1.202661 1.625797 0.455306 0.960281 0.167628 0.024251 1.732545 0.600838 1.031139 0.248892 2.167752 1.491034 -1.075394 -2.344062 -0.937419 -1.518461 0.537060 -0.512841 -2.860241 1.166679 -2.016633 -0.238124 -0.672515 0.260093 -0.657465 1.971440 -2.791879 -0.854004 0.986547 -0.785290 1.685103 1.685614 -0.069608 0.710682 -0.478720 1.564993 -0.034803 0.739629 -0.429546 2.033232 -0.614261 -1.829905 -1.522943 0.574136 1.393701 -1.741979 -2.868301 -2.790359 -1.202287 0.820472 -1.240522 1.404086 3.557282 -1.244950 -2.149535 1.747018 -0.046270 0.127953 1.825470 0.738363 3.490590 -2.127355 0.629947 -0.209973 0.081430 1.042719 1.863174 -1.096079 -1.967088 1.885211 -1.072470 -1.304799 2.065360 -0.230074 -0.456200 0.177477 0.114191 -0.847235 -1.759993 2.370132 -1.375709 2.414950 -0.983648 3.363004 -1.660116 -1.314958 0.703653 -1.390724 -0.632219 -1.242531 0.394081 -0.235652 2.245594 -1.735131 -1.925212 -0.245085 -0.685778 -0.401432 2.604504 -0.857555 -0.374470 0.180573 -0.407499 1.703362 1.421770 -0.953153 -0.090548 -1.653732 0.953754 1.724361 0.821701 -2.290363 -1.061996 -1.152683 -0.985217 -0.267970 0.319889 1.839371 -1.043580 -0.299017 1.032604 -0.264005 0.126212 -0.050595 -2.468178 1.218968 -0.203465 0.448957 0.375669 3.250645 1.826536 1.946138 0.250762 -0.005759 -0.118748 -0.942917 -1.834830 0.418502 0.430399 0.747013 1.271074 1.552250 1.190480 1.217624 2.031988 0.280487 0.283784 2.347506 0.327986 2.672032 -1.209253 -0.098905 0.751567 -0.488083 2.159832 3.053911 0.310618 -1.632181 1.198486 -0.497466 -1.500416 -1.870847 -0.412524 -0.153790 -0.564821 1.342854 1.788290 -0.342893 -0.999444 3.901769 -0.309859 -3.956939 2.086913 0.793749 1.332696 1.773269 -0.973290 1.161274 1.450642 0.366060 1.024830 1.560438 1.632692 -2.375423 -0.380184 0.186805 1.584968 1.121775 0.147469 -3.786791 0.445833 0.867018 2.860376 0.568117 2.071817 -1.704696 0.616870 0.462019 -0.136029 0.368002 -0.204552 1.553375 -0.863498 -0.366487 -2.593694 0.321347 +PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/bfs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = 0.029498 -0.291471 0.373654 -0.703349 -0.734100 -0.002555 0.231887 -0.500421 -0.220910 0.166706 0.414805 -0.435952 -0.230410 1.066832 -0.022729 -0.681756 0.044345 0.264016 -0.111805 0.097167 -0.153916 0.604224 -0.264530 -0.215386 0.466234 -0.200332 -0.160238 0.722027 0.190829 -0.077669 -0.041169 -0.418023 -0.030949 1.169516 0.156648 0.273473 -0.062756 1.748950 -0.726136 1.234615 -0.916653 -0.824739 1.284509 -0.225372 -0.183598 -0.822662 -0.925244 0.574250 -0.534811 -0.526853 0.317380 -0.010569 0.258698 -0.557551 0.180797 0.696709 -1.256554 0.259835 0.582486 -0.667541 -0.558628 -0.229095 -0.414827 -0.151295 -0.823606 -0.696861 -0.047424 0.183278 -0.095187 -0.089475 -0.263178 -0.902479 1.615288 0.238470 -0.342847 0.448778 0.194578 -0.723682 0.718538 -0.018151 -1.040526 -0.486930 0.073902 -0.368492 0.814835 0.123202 0.897842 -1.646059 0.275263 -1.612676 0.668329 -0.942226 0.619700 1.268891 -1.007316 0.816082 0.612977 0.596186 0.356941 0.328779 0.991611 0.388159 0.087363 0.514381 0.709646 0.553622 -0.608906 -0.839164 -0.879773 -0.858676 0.363445 -0.494416 -1.720950 0.376973 -0.245995 0.323155 -0.142938 0.154189 0.114456 1.052110 -0.972311 0.654521 0.637126 -0.287632 0.227564 0.864629 -0.129677 -0.187085 -0.593230 0.817271 -0.604179 0.541840 -0.218475 0.849455 -0.380164 -0.802141 -0.560730 -0.006236 0.127790 -0.846208 -0.978170 -1.224736 -0.137486 0.718565 -0.556120 0.592172 1.929113 -0.933083 -0.929035 1.136378 0.666404 0.192922 0.561270 0.388625 1.210647 -0.425651 -0.367760 -0.568200 -0.490725 0.340134 0.333733 0.165474 -0.679251 0.764183 -0.129440 -1.394710 2.244333 -0.266832 -0.505027 0.057641 0.243850 -0.531724 -0.679552 1.286240 -0.033664 1.059478 -0.386046 1.477195 -0.349080 -0.620508 0.318814 -0.603446 -0.294672 -0.988300 -0.096821 0.106874 0.510659 -0.818733 -0.667134 -0.322005 -0.444570 -0.456569 0.662776 -0.049065 0.087499 0.249491 0.067756 0.470997 0.924585 -0.019614 -0.084108 -0.990512 0.439258 0.465864 -0.222315 -1.290137 -0.062231 -0.291848 -0.246739 -0.027677 0.053466 0.616269 -0.579846 -0.134735 0.090195 -0.200157 0.091615 0.101914 -1.081354 0.223942 0.020838 0.510093 0.530998 0.934688 1.334192 0.982870 0.379736 0.594227 -0.080782 -0.027962 -0.566775 0.294170 0.083212 0.571208 0.601511 0.933903 0.838475 0.493928 0.743022 0.457143 0.598349 1.116830 0.469322 1.675277 0.046522 -0.431940 0.258821 0.219935 1.072222 1.310888 -0.117926 0.068522 0.567436 0.164352 -0.574590 -0.767042 0.180488 -0.123511 -0.497558 0.862580 0.303625 -0.052250 -0.291387 1.427741 -0.235054 -1.683409 0.746614 0.297457 0.752744 0.389892 0.180811 0.395132 0.655313 -0.266379 0.738888 0.721412 0.828376 -1.136892 -0.272385 0.091293 0.536663 0.946993 0.785118 -1.444658 0.347891 0.313830 0.958598 -0.154826 0.667905 -0.583361 -0.202143 0.236476 -0.329913 -0.116160 0.016120 0.139932 -0.304602 0.064400 -1.178753 -0.568766 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = 2.998802 -1.865063 3.185165 -6.560538 -5.279552 0.141178 -0.457715 -5.248273 -2.563640 6.305807 1.748464 -4.070744 -2.713444 7.820913 -1.163945 -4.814379 0.189695 -1.842130 0.835079 -0.282479 -2.109748 3.715478 -2.328612 -2.613024 2.246692 -1.062912 -0.289076 3.871134 2.275059 -0.769786 -0.913602 -4.309731 -0.024305 10.018061 3.302771 -1.268557 -1.764417 14.703637 -4.188763 8.162550 -7.564812 -8.095080 10.077953 -2.027593 -0.073053 -5.447587 -3.702721 6.174296 -4.617934 -3.314352 2.029238 -0.040207 2.301442 -5.037759 -2.017837 4.259260 -10.643187 4.836385 5.142183 -3.909556 -4.259842 -2.326083 -1.113678 1.927817 -5.286613 -5.637004 0.736212 0.768996 -3.208059 -1.293363 -4.408173 -5.232391 8.801295 2.992741 -2.556504 2.042803 0.421621 -3.935518 5.589375 -4.033411 -9.443054 -3.906516 -1.474503 -4.761254 6.767522 2.238275 6.653127 -12.948728 5.035378 -13.941194 4.013584 -6.453421 4.595892 10.560340 -6.385276 6.372726 4.222151 5.204420 4.623804 -0.544620 7.389131 3.582141 0.338880 4.767111 5.820939 5.888905 -4.631853 -5.452466 -6.042686 -5.740895 1.215067 -3.416391 -10.829819 4.906368 -2.848138 1.892091 -1.270419 1.126437 -2.790281 6.453910 -11.299340 -0.530820 2.308757 -2.359759 3.526585 6.149998 -1.265095 0.120858 -3.326072 6.710442 -3.479257 3.481369 0.555219 7.640795 -2.579671 -4.906230 -6.835568 2.227647 3.634142 -7.096722 -8.556171 -11.318911 -1.854242 2.326826 -4.852952 9.387396 15.158698 -6.377231 -6.882252 8.902232 -0.143485 1.405426 7.214468 2.402483 9.708385 -3.085413 -3.586275 -2.467710 -4.133069 1.997340 3.071552 0.606075 -4.187430 7.002088 -1.447743 -2.052405 7.266640 0.214525 -4.559146 -3.047554 1.594083 -4.495597 -5.891823 8.546084 -4.244755 6.036586 -1.115901 12.217145 -1.520843 -4.237391 3.181528 -7.670320 -1.932008 -5.661611 -0.702822 -0.521436 4.424367 -7.382368 -5.306325 -2.135144 -2.090015 -4.447781 6.626277 -0.236395 1.012177 3.349019 0.940892 8.454364 7.874882 -1.207787 -0.019047 -7.496149 3.775076 4.505013 -1.062682 -9.399276 -2.694271 -2.601595 -2.389682 2.804315 -0.148917 5.833956 -6.291137 -1.435250 1.935858 0.564117 1.677483 2.235460 -8.784622 3.046599 0.836576 4.524338 5.620758 9.207611 6.613981 8.717823 3.332568 4.466846 -2.098170 0.035193 -2.990230 0.762166 1.473870 3.296733 5.167974 6.754177 6.453663 4.931394 6.709497 4.336697 0.216947 8.957753 -0.326043 11.617064 -2.839625 -2.242309 1.437942 1.392632 8.443308 10.624558 -2.846500 -2.348255 5.372367 -2.059453 -4.062200 -5.269015 2.476408 -1.348418 -0.141773 3.621028 5.455373 0.873414 -2.682282 10.908968 -2.688465 -14.258961 7.277863 3.589731 6.074337 5.018446 0.551470 3.294048 3.209579 -3.247170 5.518595 7.642688 5.631672 -8.666466 1.344793 1.472958 5.743158 4.776682 5.658009 -12.302859 1.686500 3.310297 6.976712 0.979548 5.634671 -6.316253 -3.156456 3.806367 -1.757897 0.543687 0.169897 3.691569 -2.821278 1.878095 -5.221047 -2.724918 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.415897 -0.856434 0.407850 -1.044424 -0.764792 0.920428 -0.666641 -0.968801 -0.091106 -0.087083 0.423013 0.427216 0.346900 0.405201 0.230795 -0.794017 0.135476 -0.312112 0.308767 0.135050 -0.174273 0.328988 -0.571223 0.009871 -0.135947 -0.533992 0.078500 0.415714 -0.141637 0.069270 -0.500584 -0.693078 -1.024801 1.310397 0.891323 0.172520 0.185056 2.100883 0.337749 0.662906 -0.403670 -0.994588 0.585111 -0.399327 -0.405309 0.451737 -0.301116 0.282527 -0.070028 -0.251510 0.775638 -0.580405 0.743863 0.156169 -0.070147 -0.200831 -0.639431 -0.456861 0.374457 -0.422657 -0.517190 -0.613251 -0.000934 0.457977 -1.170454 -0.435824 0.932831 0.684530 0.150292 -0.437721 -0.255024 -1.295510 1.605952 0.919516 -0.278076 -0.143009 0.628413 -1.057213 0.698550 1.043746 -1.847018 -0.364193 -0.790346 -1.713936 1.486997 -0.505018 1.430943 -1.662982 1.514916 -2.163671 0.195663 -0.537987 0.637213 1.336569 -1.048741 0.294921 1.165613 2.512159 0.130773 -0.745758 1.121184 0.362269 -0.819735 0.864385 1.270757 0.028428 -0.369255 -0.284771 -0.822133 -0.868583 0.325308 -1.158745 -1.833951 0.627580 -0.125295 0.035032 -0.849718 0.687863 -0.439518 1.248450 -1.436496 0.185092 0.085456 -0.316927 0.335004 0.423796 -0.419256 0.274846 -0.185754 1.076882 -1.229667 0.284079 -0.451470 0.811381 -0.299640 1.213259 -1.071414 0.492036 0.912991 -0.999704 -1.303701 -0.748084 -0.572391 0.988211 -0.319016 2.156787 2.034095 -1.254711 -0.891235 1.235154 -0.067045 -0.144371 1.076421 0.461060 0.475091 -0.107648 -0.629515 -1.103932 -0.582434 -0.417330 -0.960714 0.333449 0.343499 1.187495 -0.271906 0.887532 2.957525 -0.416331 -1.138829 -0.054517 0.194454 -0.717546 -0.990645 1.122445 -0.035033 0.534797 0.975828 1.572100 -0.151624 -0.111699 0.129926 -0.505670 -0.284129 -1.090787 0.013542 -0.373700 0.623297 -0.502572 -0.810049 -0.182760 -0.467008 -0.444756 0.426302 1.547718 0.535100 0.842462 0.236476 0.872388 1.916100 0.681328 -0.784731 -0.582296 0.691526 0.806888 -0.802106 0.625435 -0.695384 -0.290865 -0.097763 -0.054331 0.308233 1.077057 -1.313469 -0.252223 -0.533355 0.800703 0.503659 1.068368 -2.861642 0.421083 0.590299 0.307121 0.726155 0.611755 0.984027 1.506007 1.138921 0.021058 0.044875 0.676503 -0.693939 -0.488564 0.425324 1.394014 0.476561 1.321444 0.970670 0.889749 0.702878 1.107775 1.436964 0.981982 -0.080413 2.031078 0.203337 -0.296861 -0.293081 0.464941 1.171760 1.658181 -0.163364 1.090205 0.398375 0.371204 -0.852682 -1.392720 0.722826 -0.248708 0.862372 -0.612666 0.611161 0.441879 -0.881397 1.415364 -0.009509 -1.754222 0.446232 0.438265 0.865981 1.436531 0.138349 0.623829 -0.052798 -0.671722 1.834441 1.211170 0.492623 -1.006870 0.840812 0.288614 0.540605 -0.496605 1.031032 0.220353 1.086218 -0.118445 0.802945 0.488735 0.354521 -0.928522 0.006040 0.748183 -1.076081 0.140596 0.789415 0.709461 -0.487176 0.427884 -1.320045 -0.944242 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.045069 -0.115688 0.370071 -0.752928 -0.923727 0.143710 -0.181227 -0.473673 -0.168395 -0.114779 0.326882 -0.181097 -0.382965 0.788486 -0.179532 -0.754938 -0.195358 -0.180488 -0.040158 -0.101663 -0.118830 0.473985 -0.259349 0.035587 0.167032 -0.235144 -0.194489 0.409290 0.434779 -0.351707 -0.134879 -0.407118 -0.176781 0.886877 0.264682 0.143688 0.019989 1.526801 -0.002598 0.521260 -0.859016 -0.752735 0.712654 -0.248170 -0.119705 -0.838227 -0.630337 0.451198 -0.666488 0.068734 0.469154 -0.020145 0.131408 -0.174282 0.238094 0.276357 -1.078296 0.684326 0.418632 -0.408618 -0.124901 -0.223837 -0.417014 -0.039191 -0.150613 -0.462175 0.098011 0.413116 -0.229409 -0.115156 -0.024406 -0.591498 1.417236 0.293347 -0.287480 0.271545 0.347111 -0.451277 0.580806 -0.473605 -1.068516 -0.296633 0.062375 -0.159551 0.799508 0.046879 0.498626 -1.260381 0.252277 -1.391599 0.384613 -0.668926 0.372124 0.892187 -0.803198 0.510320 0.622171 0.103174 0.583542 0.145926 0.784913 0.222851 0.092122 0.614213 0.471936 0.216939 -0.175764 -0.292460 -0.584855 -0.810377 0.010615 -0.279418 -1.410598 0.372861 0.018656 0.309590 -0.280027 0.227770 0.086135 0.522514 -0.756773 0.136310 0.382715 -0.224456 0.237016 0.648731 -0.228661 0.010371 -0.458558 0.712556 -0.687686 0.568956 -0.168164 0.627224 0.093097 -0.821903 -1.077110 0.109864 0.248131 -0.584360 -0.760444 -0.643859 -0.142680 0.260997 -0.437421 0.657112 1.596911 -0.887977 -0.870348 1.055576 0.466044 0.226716 0.676655 0.296055 0.804405 -0.059183 -0.498917 -0.510066 -0.613759 0.018766 -0.263239 0.294570 -0.293873 0.596820 0.078918 -0.736241 1.122400 -0.270258 -0.690927 -0.002122 0.156995 -0.560425 -0.582777 0.781445 0.408104 0.780065 0.151799 1.131798 -0.269095 -0.674323 0.186782 -0.331460 -0.038606 -0.413722 -0.056726 0.135795 0.272620 -0.652893 -0.492003 -0.231725 -0.378378 -0.535121 0.304754 0.434837 0.203481 0.436480 0.289633 0.404117 1.177222 0.195055 0.015225 -0.771080 0.488348 0.358098 -0.090455 -0.913460 -0.096388 -0.137584 -0.147163 0.321929 0.050729 0.481446 -0.189079 -0.123337 -0.120850 -0.132985 0.375741 0.412992 -0.611248 0.118112 -0.031272 0.450486 0.352355 0.557244 0.975708 0.936026 0.617010 0.459862 -0.041466 0.096212 0.306409 -0.101745 0.257334 0.393175 0.488933 0.754729 0.799297 0.390007 0.774109 0.676435 0.287642 0.857077 0.054372 1.513161 -0.316660 -0.295563 -0.124635 0.310382 0.851385 1.297545 -0.264903 0.300556 0.470997 0.319665 -0.160873 -0.897398 0.304412 -0.159366 -0.145649 0.594887 0.427675 0.006997 -0.269947 0.974552 -0.207200 -1.127190 0.689814 0.262156 0.576726 0.127579 0.255538 -0.056031 0.409150 -0.669764 0.584272 0.756207 0.591550 -0.837661 -0.302550 0.103593 0.528474 0.202474 0.840018 -0.704565 0.207207 0.453375 0.676701 0.007390 0.258047 -0.571946 -0.699399 0.478913 -0.299676 -0.146964 0.334257 0.122957 -0.460345 0.139937 -0.312391 -0.773865 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.166741 -0.387351 0.550761 -1.142740 -1.309796 0.199207 -0.379818 -0.647445 -0.218554 0.092315 0.368884 -0.312861 -0.324317 1.322360 -0.280140 -1.056841 -0.201066 -0.215332 0.065480 -0.136758 -0.109965 0.792061 -0.313377 0.035757 0.262595 -0.415418 -0.290986 0.594750 0.632376 -0.365611 -0.127150 -0.614632 -0.352437 1.294762 0.353488 0.095030 0.005558 2.337320 -0.063791 0.940301 -1.187472 -1.122751 1.091477 -0.358459 -0.130337 -1.002869 -1.003580 0.639877 -0.802637 0.010567 0.610811 0.005377 0.257854 -0.299540 0.240238 0.276985 -1.528792 0.809234 0.548223 -0.554072 -0.233089 -0.358863 -0.549481 0.056560 -0.553061 -0.688121 0.189187 0.628174 -0.387477 -0.219477 -0.028303 -0.782374 1.892486 0.492750 -0.430996 0.383655 0.592393 -0.753483 0.889616 -0.623244 -1.639880 -0.446195 -0.110961 -0.622244 1.238931 -0.004132 0.992545 -1.930164 0.760959 -2.093783 0.574751 -1.044134 0.548975 1.494681 -1.252824 0.812903 0.918855 0.747456 0.930785 0.157502 1.233737 0.537492 0.010044 0.977564 0.791085 0.424890 -0.308153 -0.418895 -0.867039 -1.128133 0.034251 -0.641572 -2.132575 0.591856 0.095441 0.364186 -0.401766 0.362590 -0.049973 0.966370 -1.354289 0.155982 0.531820 -0.342537 0.196227 0.826897 -0.386472 -0.033334 -0.710450 1.148334 -1.039922 0.766797 -0.121066 0.951190 -0.225947 -0.800467 -1.414465 0.197441 0.317249 -0.893769 -1.197252 -1.119849 -0.276896 0.459090 -0.631303 1.329889 2.360500 -1.215490 -1.231139 1.565833 0.511325 0.224961 1.047177 0.404938 1.100986 -0.046263 -0.860953 -0.820778 -0.866392 0.048501 -0.332689 0.476201 -0.343320 0.942085 -0.032330 -0.891411 1.847519 -0.418138 -1.022830 -0.399028 0.281772 -0.887900 -0.825868 1.266093 0.114786 1.103537 0.123496 1.728855 -0.219663 -0.890083 0.339100 -0.842972 -0.102853 -0.743859 0.042482 0.033843 0.465198 -0.979832 -0.793442 -0.328822 -0.598522 -0.769006 0.454936 0.569965 0.369245 0.708772 0.464305 0.929627 1.678940 0.320583 -0.045340 -1.142311 0.693455 0.671644 -0.247620 -1.231986 -0.152632 -0.183122 -0.192159 0.288857 0.103059 0.710926 -0.600115 -0.264957 -0.302642 -0.032509 0.523036 0.620384 -1.312184 0.243698 0.012645 0.791760 0.587690 0.843594 1.447089 1.311116 0.885659 0.677262 -0.092874 0.160241 0.271421 -0.030853 0.465408 0.468255 0.689554 1.339300 1.181568 0.647966 1.150511 1.103364 0.433524 1.217642 0.002053 2.228357 -0.390617 -0.476124 -0.217303 0.513082 1.296113 2.022402 -0.227983 0.469272 0.745900 0.379740 -0.331728 -1.302960 0.464409 -0.249190 -0.010201 0.606674 0.553197 0.028471 -0.351989 1.374067 -0.242265 -1.781590 1.037810 0.414675 0.905889 0.379115 0.375235 0.051982 0.552694 -0.998488 0.985376 1.161181 0.737219 -1.197584 -0.302610 0.171219 0.791996 0.456200 1.322532 -0.982774 0.558857 0.652873 0.976686 -0.011668 0.472908 -0.817628 -1.023189 0.725300 -0.529932 -0.255964 0.502040 0.137161 -0.710225 0.304477 -0.517370 -1.222196 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = 0.110427 0.049811 0.283285 -0.428798 -0.445289 -0.055109 0.160641 -0.141017 -0.106409 0.033641 0.103597 -0.084332 -0.210119 0.459645 -0.117487 -0.361223 -0.134832 -0.425082 -0.184968 -0.096232 -0.081500 0.312946 -0.089232 -0.001428 0.216643 -0.096584 -0.121369 0.249360 0.011095 -0.427139 0.047595 -0.190480 0.005129 0.497411 -0.024942 0.043113 -0.031087 0.879542 -0.036866 0.212319 -0.476752 -0.519672 0.506449 -0.194354 -0.073265 -0.556309 -0.265840 0.329420 -0.061659 -0.043984 0.140812 0.149929 -0.136168 -0.282642 0.074875 0.210558 -0.711839 0.373437 0.241159 -0.235014 -0.258562 -0.111299 -0.158329 -0.153652 -0.048050 -0.310447 0.073338 0.096497 -0.235714 0.063152 0.052271 -0.273277 0.732122 0.148570 0.010092 0.302412 0.173414 -0.216629 0.409326 -0.348979 -0.466044 -0.206248 0.137040 -0.121400 0.432384 -0.012573 0.167336 -0.720901 0.181355 -0.659568 0.187716 -0.457120 0.166636 0.499769 -0.297953 0.463112 0.256245 0.052614 0.211622 0.081457 0.499704 0.112640 0.264146 0.409942 0.236125 0.114833 -0.182019 -0.225127 -0.413508 -0.485457 0.096019 -0.116202 -0.694965 0.257430 0.078749 -0.031982 -0.012211 0.098354 0.104163 0.357627 -0.558986 0.094292 0.361350 -0.126576 0.001761 0.356294 -0.134733 -0.123734 -0.330852 0.386662 -0.283935 0.410658 0.004148 0.334490 0.070030 -0.476324 -0.411379 -0.075627 0.006372 -0.321737 -0.392114 -0.388541 -0.040598 0.161142 -0.313278 0.419293 0.951285 -0.419772 -0.528904 0.609583 0.486109 0.153505 0.227995 0.169290 0.488424 -0.044989 -0.340905 -0.175127 -0.268087 0.208450 -0.202862 0.169350 -0.193352 0.326757 0.081800 -0.449159 0.747402 -0.194575 -0.256257 0.281741 0.120250 -0.366959 -0.412076 0.431440 0.521089 0.654942 0.119872 0.662866 -0.148736 -0.318357 0.114051 -0.188555 0.020650 -0.388514 -0.017545 0.002133 0.133001 -0.305860 -0.277104 -0.159559 -0.310951 -0.295317 0.208805 0.035858 0.213015 0.119616 0.168497 0.096961 0.580672 -0.033917 0.043207 -0.585358 0.247106 0.181065 0.109857 -0.545794 -0.013985 0.004392 -0.106801 0.247922 -0.006891 0.226852 -0.004565 -0.038398 0.101331 -0.083424 -0.021430 0.055151 -0.298034 -0.050553 -0.082509 0.315551 0.099847 0.368358 0.686944 0.399482 0.224154 0.263735 -0.033053 0.023909 0.018563 -0.108765 -0.053651 0.298719 0.314886 0.392244 0.467909 0.219619 0.531472 0.373761 0.004529 0.532765 0.055872 0.902761 -0.290974 -0.249605 -0.042035 0.214465 0.491313 0.649715 -0.071817 0.037881 0.333880 0.234446 -0.153255 -0.413103 0.051563 -0.108624 -0.036248 0.370807 0.233882 -0.150624 0.019076 0.570616 -0.136783 -0.695564 0.357573 0.141566 0.356719 -0.007746 0.150145 0.025594 0.404728 -0.327451 0.155891 0.333254 0.341777 -0.537827 -0.165687 0.088423 0.406423 -0.081119 0.491219 -0.588146 0.120788 0.208216 0.334812 -0.110347 0.196626 -0.287816 -0.367408 0.279113 -0.031657 -0.126417 0.355434 0.101144 -0.341383 0.047610 -0.312229 -0.287725 +PE-benchmarks/bfs.cpp__main = 1.148340 -0.439276 1.418860 -2.718298 -2.859671 -0.207339 -0.718603 -1.742118 -0.798733 1.220260 0.590271 -1.916423 -1.783006 3.658172 -1.343805 -2.996173 -0.333029 -0.318720 0.117993 -0.563860 -0.968441 1.819438 -0.890635 -0.799786 1.505943 -0.768538 -0.503194 1.764229 2.557648 -0.920296 -0.643417 -1.475110 0.159630 4.468923 0.784329 -0.407549 0.137706 6.834269 -0.262934 2.553544 -3.642978 -3.361492 4.221381 -0.816785 -0.182956 -3.124561 -2.178864 2.358265 -4.027392 0.389798 1.127349 0.108596 0.058528 -2.055730 0.244161 2.332448 -5.905410 3.985664 1.890245 -0.945875 -1.258025 -1.327759 -1.291357 -0.442599 -0.594519 -2.499573 0.101226 1.431441 -2.274942 0.186386 -1.387561 -2.013682 5.345247 1.090112 -1.540889 1.499763 0.666581 -1.692292 2.157582 -3.245079 -3.929042 -1.604397 0.862884 -0.296515 3.513744 1.060434 1.954313 -5.905468 1.129721 -6.014313 1.881118 -3.674076 2.388404 4.819141 -4.094871 3.032046 1.683467 0.390651 2.297538 0.979162 3.798882 1.311288 0.419247 1.711755 1.571672 1.866923 -1.039598 -1.858637 -1.846557 -2.610605 -0.797392 -0.534229 -6.036316 1.500116 -1.509547 2.299083 -0.431960 0.822787 -0.708328 1.802334 -4.596327 -1.080884 1.126853 -1.112823 2.100764 2.896829 -0.689000 -0.034869 -2.043144 3.449595 -1.400050 1.292091 -0.706462 2.887501 -0.411425 -4.529373 -4.724806 -0.047326 1.204426 -2.763173 -4.243545 -4.020004 -0.986395 0.278317 -1.912133 3.506148 6.886477 -2.481387 -3.275961 4.517089 -0.013131 2.063952 4.261231 1.160664 4.315843 -1.391000 -0.991858 -0.991706 -1.328507 0.498914 -1.218391 0.271351 -2.147760 2.189633 0.349666 -1.267446 2.487944 -0.314565 -1.830694 -1.830363 0.306212 -2.149189 -2.580446 4.481765 -0.437304 3.578003 -0.609586 5.750923 -1.415964 -3.640124 1.478151 -2.576958 -0.109405 -1.591193 -0.166167 -0.030725 1.697247 -3.908663 -2.742491 -0.318048 -0.620158 -1.916401 2.397464 2.051510 0.082919 0.934609 0.803202 3.225160 3.743163 -0.734713 1.061190 -4.049405 1.490002 2.010969 -0.584709 -5.203818 0.178180 -0.566480 -1.016468 1.664297 0.115574 1.576122 -1.636143 -1.179698 0.264595 -0.268826 1.801401 0.774203 -2.211486 1.150781 -0.687963 1.208212 2.146978 3.491901 4.205980 3.057165 1.382776 1.597930 -0.283884 -0.702853 1.174274 0.487056 1.017434 1.482312 2.001592 3.105881 2.945894 1.284073 2.478021 2.335244 -0.535768 3.849990 0.991988 5.993012 -2.128387 -1.043133 0.104221 0.097839 3.883315 5.529511 -2.356613 -0.436875 2.521121 0.734651 -0.255742 -3.649597 0.359963 -0.710939 -1.267895 2.105632 1.110579 -0.599520 -0.612379 4.915322 -0.992514 -5.541537 3.758419 1.400848 2.139836 0.227847 0.544859 -0.360977 2.397783 -2.690681 1.752432 2.577975 2.760637 -3.356248 -0.713296 0.226861 2.855108 1.290440 2.622870 -3.850380 0.588785 2.545707 3.374047 1.217368 1.250354 -1.847245 -3.101767 1.015806 -0.981506 -0.604602 0.351775 0.988412 -1.805689 0.835798 -0.969185 -2.898865 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/bfs.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.164755 -0.367254 0.404479 -0.858344 -0.931777 0.010513 -0.123693 -0.339062 -0.184565 0.166182 0.103339 -0.287791 -0.460129 1.081990 -0.178177 -0.910084 -0.134387 -0.290253 -0.004153 -0.045519 -0.147086 0.614331 -0.171301 -0.022936 0.340374 -0.270774 -0.223456 0.493463 0.558126 -0.398059 -0.011089 -0.458545 -0.177514 1.015353 0.139098 0.145928 -0.041917 2.045484 -0.022554 0.919047 -0.972571 -0.997611 0.963597 -0.301219 -0.142708 -0.878797 -0.630549 0.592938 -0.669204 -0.063621 0.378060 0.158688 0.025353 -0.426827 0.138980 0.365835 -1.337887 0.741003 0.408364 -0.332191 -0.242770 -0.289665 -0.469350 -0.039852 -0.444942 -0.586928 0.093279 0.266503 -0.569892 -0.075314 -0.048338 -0.416443 1.525453 0.420316 -0.330636 0.420188 0.430530 -0.445850 0.659921 -0.694760 -1.307413 -0.402582 -0.014160 -0.476457 0.983970 0.084483 0.734098 -1.582808 0.689939 -1.669145 0.487855 -0.955487 0.445137 1.270573 -0.901464 0.851922 0.576697 0.527330 0.650283 0.062463 0.971999 0.473561 0.086408 0.798727 0.534812 0.362926 -0.302740 -0.438580 -0.649181 -0.790233 -0.011275 -0.449865 -1.710407 0.450489 0.052108 0.473154 -0.110422 0.390828 -0.129940 0.594838 -1.249562 0.098346 0.407565 -0.280745 0.249177 0.670257 -0.292109 -0.116502 -0.545965 0.921132 -0.638118 0.643743 -0.036497 0.760248 -0.136169 -0.569765 -0.950124 0.024838 0.196493 -0.612010 -0.948732 -0.995274 -0.256274 0.400826 -0.528661 1.160752 2.018538 -0.911148 -0.924821 1.210176 0.173229 0.423436 0.725591 0.307761 0.857374 -0.061676 -0.659518 -0.454542 -0.540371 0.186756 -0.152167 0.356518 -0.363038 0.716798 -0.054412 -0.604308 1.294363 -0.268576 -0.649475 -0.381834 0.120648 -0.741270 -0.729127 1.075307 -0.043285 0.989864 0.111582 1.371495 -0.137562 -0.684082 0.320197 -0.826564 -0.060076 -0.735157 0.012452 -0.038327 0.322216 -0.934873 -0.640790 -0.260915 -0.448917 -0.589082 0.410032 0.355762 0.248712 0.408272 0.400233 1.013908 1.244685 0.077323 -0.013931 -1.075225 0.501551 0.408841 -0.184397 -1.052237 -0.076692 -0.011376 -0.217353 0.423157 0.050050 0.440626 -0.433691 -0.222164 -0.140401 -0.001571 0.316970 0.350021 -1.102006 0.080928 0.153688 0.634992 0.548555 0.723439 1.163924 0.961228 0.521472 0.585294 -0.107580 0.112481 0.126580 -0.076094 0.260329 0.390339 0.539460 0.966470 0.913451 0.463676 0.930777 0.869997 0.053497 0.937279 0.135164 1.851248 -0.340455 -0.551204 -0.029994 0.324138 0.974701 1.507110 -0.394189 0.317474 0.721749 0.285793 -0.181714 -0.974301 0.244924 -0.245365 0.011419 0.578713 0.394229 -0.074091 -0.113060 1.054596 -0.270747 -1.613085 0.811310 0.350679 0.723800 0.209941 0.298229 0.045456 0.559975 -0.835612 0.732149 0.897646 0.534168 -0.890031 -0.183072 0.121300 0.656872 0.311724 0.957247 -0.832069 0.290505 0.497693 0.802852 0.081641 0.400920 -0.621243 -0.835106 0.490134 -0.378005 -0.200261 0.339216 0.065001 -0.469443 0.150706 -0.442628 -0.908626 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 0.843338 -1.446888 1.089664 -2.487105 -2.836957 0.509920 -0.510579 -1.111548 -0.528330 1.305843 0.511005 -0.636614 -0.985775 3.044083 -0.202745 -2.193218 0.089571 -1.279453 0.497118 0.071901 -0.239537 1.670500 -0.398467 -0.017732 0.458905 -0.659289 -0.647291 1.383222 1.613155 -0.615305 -0.322921 -1.321260 -0.992585 2.532180 0.897131 -0.395561 -0.180776 5.989765 -1.057239 2.744660 -2.429449 -2.572531 2.433617 -0.729998 -0.505156 -2.120459 -1.814606 1.725839 -1.080212 -0.799329 1.447445 0.093574 1.004649 -0.720006 -0.157518 0.860890 -3.271406 1.308864 1.012573 -0.648325 -0.273684 -0.701485 -0.883246 0.816399 -2.006817 -1.541367 0.753561 0.257893 -1.206338 -0.968986 -0.475561 -1.172407 3.508080 1.326699 -0.954169 0.441543 1.233382 -1.816105 1.916417 -1.368733 -4.414783 -0.879573 -1.320826 -2.679693 2.829234 -0.309970 2.648580 -4.455662 2.793022 -5.237656 1.202432 -2.382149 1.035067 3.575094 -2.300829 1.788858 1.727065 2.882444 2.182189 -0.714193 2.607969 1.737521 -0.120689 2.454942 1.786540 1.418506 -1.105967 -0.848710 -1.996543 -1.959288 0.190374 -1.719491 -4.641144 1.558436 0.418632 0.571297 -0.324853 0.821378 -0.902592 2.491061 -3.161611 0.628183 0.626447 -0.702360 0.484811 1.962757 -0.949838 -0.019140 -1.214529 2.693973 -2.002616 2.037077 0.272706 2.152064 -1.020917 -0.548828 -2.092995 0.904453 1.033104 -1.711080 -2.607021 -3.287500 -0.476256 0.790243 -1.474563 3.846375 5.630932 -2.825582 -2.362495 3.122202 -0.042304 0.445597 1.923577 0.454005 2.253208 -0.026652 -2.217287 -1.470848 -1.832110 0.001246 0.593213 1.086321 -0.186706 2.206826 -0.632452 -1.289422 4.092901 -0.384510 -2.251998 -1.072229 0.445651 -1.904758 -2.120900 2.798971 -0.896351 1.625889 1.148783 3.654882 0.348786 -1.277590 1.050242 -2.363372 -0.245939 -2.373069 -0.077853 0.066825 0.912988 -2.126318 -1.592207 -1.134434 -1.062371 -1.743833 1.023630 0.715515 1.143029 1.797559 1.236336 3.208151 3.837741 0.710687 -0.374491 -2.575717 1.457766 1.269621 -0.991275 -2.479308 -0.955917 -0.359911 -0.362569 1.127467 0.082984 1.784947 -2.064328 -0.854193 -0.571544 0.476294 0.899203 1.680447 -4.778194 0.475938 0.950658 2.113717 1.767290 2.039512 2.324333 3.269086 1.818999 1.690386 -0.472724 1.088958 -0.421742 -0.546316 1.039842 0.848534 1.473273 2.909601 2.390414 1.728327 2.541800 2.429190 0.434257 2.259747 -0.024706 4.953103 -0.360162 -1.588294 -0.238271 1.043952 2.561174 4.189606 -0.394948 0.925309 1.773649 0.201948 -0.859736 -2.609863 1.290754 -0.810502 1.209102 0.823622 1.690367 0.531930 -0.756016 2.505991 -0.770372 -5.068605 2.142530 1.000505 2.244844 1.767079 0.835553 0.879042 0.533667 -2.273229 3.088900 3.407752 1.138985 -2.088831 -0.061881 0.448922 1.619686 0.815179 2.730087 -2.887867 1.257879 1.055090 1.982868 0.287262 1.810687 -2.392140 -1.988275 1.696162 -1.365075 -0.133576 0.884467 0.352006 -1.547335 0.689745 -1.445154 -1.994105 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/bfs.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.340260 -0.423309 0.651018 -0.782317 -0.918983 -0.099564 0.003894 0.069893 -0.099915 0.188833 0.206169 -0.377669 -0.442750 1.048237 -0.107125 -0.827598 0.103704 -0.437561 0.003292 -0.159467 0.168127 0.556546 0.273846 -0.048197 0.238876 -0.240008 -0.396085 0.673080 0.880747 -0.442551 0.105542 -0.188005 -0.061658 0.578342 -0.176482 -0.399616 -0.067594 1.614745 -0.143065 0.636975 -0.575248 -0.556816 1.031938 -0.273337 -0.111259 -0.872083 -0.955522 0.748084 -0.456305 -0.443645 0.385520 0.421222 0.257557 -0.544145 -0.259845 0.430631 -1.281339 0.550933 0.158838 -0.143269 0.048861 0.044779 -0.409093 0.197687 -0.180693 -0.567760 0.092888 -0.025360 -0.674947 -0.324382 0.059580 -0.051617 1.369261 0.162941 -0.035550 0.388206 0.715387 -0.325762 0.846657 -0.562701 -1.040143 -0.305098 -0.503114 -0.602237 1.008540 -0.413238 0.507580 -1.380714 0.637136 -1.315303 0.673999 -0.980216 0.139324 1.059913 -0.834028 0.804980 0.478095 0.400393 0.635845 0.120090 1.063412 0.488495 0.382941 0.825092 0.528883 0.161518 -0.387832 -0.220166 -0.807298 -0.743370 0.075688 -0.607308 -1.495585 0.587332 0.455848 0.001389 0.313269 -0.016846 -0.030504 0.666036 -0.715491 0.634299 0.556554 -0.213488 -0.294174 0.676152 -0.480279 -0.227378 -0.555500 1.045432 -0.638397 0.776253 0.578339 0.609693 -0.047665 -0.740189 -0.302111 0.290773 0.036595 -0.363733 -0.758822 -0.872025 0.168877 -0.088390 -0.565708 0.849953 1.540351 -0.373069 -0.620310 0.942416 0.586684 0.259662 0.442482 0.058983 0.949656 0.024621 -1.081246 -0.431941 -0.699816 0.400169 -0.002786 0.442255 -0.049027 0.762634 -0.077152 -0.836381 1.231443 -0.408663 -0.586107 0.088800 0.242656 -0.729556 -0.723916 0.809545 0.485460 0.671295 0.395574 1.321158 0.429142 -0.635441 0.455403 -0.266427 0.018713 -0.687617 0.069238 0.121014 -0.025078 -0.565239 -0.564507 -0.647192 -0.379130 -0.484408 0.298318 0.012140 0.605658 0.638168 0.508891 0.430544 0.815822 0.192445 0.046860 -1.158137 0.311474 0.422677 -0.100097 -0.943012 -0.021104 -0.014311 0.100313 0.480858 -0.036778 0.440039 -0.416667 -0.474893 -0.115168 -0.074545 -0.020958 0.321613 -1.088426 -0.169413 0.357881 0.793103 0.353350 0.773170 1.132400 0.522376 0.433827 0.854632 -0.110123 0.558490 -0.171646 -0.216933 -0.065896 0.223120 0.476700 0.730417 0.701095 0.415942 1.129920 0.829941 -0.169206 0.646800 0.077626 1.269247 -0.078361 -0.650411 -0.173184 0.435780 0.939746 1.316612 0.287023 0.080142 0.686787 0.328348 -0.064048 -0.860359 0.242469 -0.277101 0.370162 0.673319 0.315327 0.099606 0.035673 0.501511 -0.155361 -1.458695 0.875533 0.236835 0.756855 0.494891 0.332255 0.289399 0.210506 -0.824808 0.269313 0.798149 0.323019 -0.746914 -0.086728 0.153349 0.579077 0.090251 1.102363 -1.195320 0.168389 0.463744 0.501549 -0.218602 0.461511 -0.598273 -1.058786 0.532816 -0.254322 -0.181436 0.322545 -0.282339 -0.873746 0.095837 -0.247918 -0.504384 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.509935 -0.846739 0.790598 -1.117269 -1.070732 0.089192 -0.072327 -0.278363 -0.170606 0.895035 0.028894 -0.382454 -0.525784 1.365754 -0.115492 -1.127903 0.165736 -0.321054 0.269480 -0.019019 0.042211 0.815028 0.071988 -0.115317 0.268553 -0.423958 -0.174444 0.745137 0.713424 -0.046228 0.078709 -0.615163 -0.309020 1.113715 0.204048 -0.055611 -0.306875 2.300846 -0.127149 1.755483 -1.090850 -1.206993 1.254643 -0.325252 0.142361 -0.864383 -0.719630 0.924595 -0.571682 -0.724058 0.509684 0.280589 0.544583 -0.620210 -0.258375 0.264328 -1.424050 0.438262 0.252761 -0.450971 -0.164946 -0.217744 -0.524124 0.588179 -0.995775 -0.773172 0.070980 0.182482 -0.886313 -0.273284 -0.158228 -0.264263 1.545403 0.570537 -0.519828 0.280858 0.846969 -0.482365 0.999178 -0.766238 -1.634236 -0.549503 -0.845407 -1.071578 1.305797 -0.117704 1.265899 -2.040059 1.363577 -2.047436 0.926423 -1.158479 0.441890 1.713887 -0.902301 1.097090 0.780658 1.342600 0.877079 -0.181655 1.252241 0.986047 0.188587 1.072185 0.947178 0.513364 -0.723271 -0.701241 -0.997267 -0.838491 0.154119 -1.072375 -1.916239 0.645236 0.445277 0.569479 0.134706 0.295530 -0.468080 0.849327 -1.997779 0.360046 0.492126 -0.333208 0.071512 0.564433 -0.529620 -0.054944 -0.485826 1.464099 -0.929499 0.796371 0.491719 1.051211 -0.629930 0.066012 -0.526892 0.495143 0.339743 -0.606357 -1.269368 -1.630442 -0.295896 0.619434 -0.678280 1.676444 2.171850 -0.677586 -0.827438 1.279221 -0.181151 0.107964 0.672992 0.255032 0.831294 -0.033893 -1.223837 -0.725291 -0.733585 0.356743 0.902759 0.563476 -0.353858 1.322749 -0.478655 -0.515215 1.272725 -0.421347 -0.905708 -1.110665 0.109957 -1.025899 -0.623952 1.220551 -1.182995 0.796017 -0.123830 1.825556 0.313833 -0.564538 0.455064 -1.556100 -0.155168 -1.166212 0.214524 0.003673 0.312479 -1.353854 -0.885059 -0.597541 -0.573954 -0.615689 0.593795 -0.500083 0.362557 0.829849 0.647211 2.028710 1.116782 0.323591 -0.345445 -1.148896 0.593562 0.449877 -0.332320 -0.935754 -0.276601 -0.070602 -0.129073 0.398049 0.098800 0.581303 -0.998660 -0.458362 -0.231373 0.014460 0.069399 0.614389 -1.890761 0.011124 0.857367 1.085319 0.719822 1.065856 1.209499 0.966719 0.683216 0.924842 -0.248328 0.463163 -0.544388 0.110467 0.430324 0.048870 0.580432 1.237202 1.016276 0.572918 1.405792 1.308374 0.039818 0.932684 -0.157521 1.642965 -0.198095 -0.719721 0.022914 0.586764 1.192992 1.714474 -0.041348 0.368610 0.988372 0.001083 -0.360791 -0.635529 0.451054 -0.427345 0.571891 0.558859 0.632705 0.180802 -0.155730 1.023840 -0.249158 -2.124535 1.020296 0.492172 1.103190 1.097797 0.294957 0.591333 0.190860 -0.903674 0.936222 1.152032 0.362037 -1.054991 0.112473 0.185440 0.500496 0.916043 1.299462 -1.282736 0.039547 0.497145 1.050444 -0.053278 0.877365 -0.827097 -0.952314 0.726156 -0.656439 -0.158293 0.184626 -0.092096 -0.463850 0.186921 -0.678053 -0.812609 +PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 0.794980 -0.580936 1.353327 -2.287588 -2.797532 0.259908 -0.705063 -0.987974 -0.462971 0.801288 0.745243 -0.693549 -0.634683 2.523960 -0.673883 -2.004375 -0.319374 -1.173740 0.070325 -0.712187 -0.062547 1.560872 -0.219275 0.020125 0.465362 -0.830947 -0.742927 1.226282 1.550049 -1.073876 -0.024113 -0.993816 -0.570321 2.250884 0.434518 -0.741415 -0.066674 4.544185 -0.165737 0.947677 -2.146957 -2.133075 2.358498 -0.747711 -0.186961 -1.983738 -1.956493 1.604962 -1.040421 -0.157481 1.074275 0.297932 0.637874 -0.852887 -0.190059 0.570093 -3.174200 1.740086 0.912262 -0.974522 -0.506500 -0.400058 -0.678062 0.444999 -0.683026 -1.488225 0.605124 0.958364 -1.038702 -0.681623 -0.013997 -1.157843 3.310532 0.736756 -0.394995 0.736448 1.214866 -1.340033 2.014497 -1.369026 -3.198273 -0.840253 -0.553930 -1.705198 2.415802 -0.458422 1.772362 -3.850626 1.816723 -4.060617 1.160893 -1.978544 0.872881 2.793078 -2.315306 1.679602 1.667759 1.463862 2.022616 0.052387 2.685704 0.969794 0.513058 2.232458 1.365969 0.820281 -0.679624 -0.437370 -1.874236 -2.273669 0.118725 -1.248614 -3.908472 1.567653 0.475718 -0.059262 -0.330674 0.232184 -0.147236 2.288791 -2.498466 0.274032 1.136899 -0.632193 -0.052448 1.646460 -0.942003 -0.116522 -1.389231 2.426049 -2.018697 1.691038 0.496267 1.853557 -0.275513 -1.784487 -2.444899 0.730090 0.603499 -1.680722 -2.247183 -2.167901 -0.160578 0.095699 -1.459931 2.867669 4.575137 -2.089605 -2.405505 2.962387 1.136739 0.201817 2.037104 0.502547 2.465239 -0.060354 -2.209742 -1.439265 -1.839853 0.462043 -0.741656 0.979063 -0.219431 1.949309 0.031045 -1.240109 3.235680 -0.833696 -2.005083 -0.153278 0.850589 -1.741711 -1.779176 2.079515 1.061416 1.989856 0.979402 3.543923 0.032662 -1.764724 0.880567 -1.253376 -0.134933 -1.277822 0.164562 0.063804 0.682932 -1.453285 -1.485566 -1.042583 -1.211635 -1.577184 0.903320 1.081118 1.372705 1.675132 0.998143 1.410255 3.206866 0.641416 0.016863 -2.530434 1.225448 1.540670 -0.210732 -2.406703 -0.561905 -0.381122 -0.131328 0.998645 0.041168 1.668322 -1.105281 -0.705786 -0.471067 0.104095 0.758352 1.213362 -2.728393 0.361412 -0.048603 1.851582 0.855772 1.953245 2.753797 2.403012 1.680299 1.573375 -0.218035 0.656674 0.560346 -0.457205 0.634933 0.890623 1.480117 2.555737 2.247813 1.496872 2.662279 2.142936 0.273942 2.306851 -0.436676 4.270145 -1.230011 -0.979529 -0.770800 1.218339 2.612699 4.038074 0.153213 0.358911 1.523090 0.727600 -0.552395 -2.685600 0.977769 -0.579016 0.822434 0.885877 1.451290 0.167348 -0.569552 2.311994 -0.404159 -3.707088 2.477047 0.756385 1.916101 0.968654 0.744064 0.273536 0.820075 -2.087891 1.443132 2.584060 1.290343 -2.382353 -0.355534 0.451647 2.018457 -0.041071 2.820878 -2.623664 1.203801 1.397829 1.552643 -0.259097 1.147072 -1.893231 -2.505756 1.702672 -0.810099 -0.435931 1.408447 0.116927 -2.133319 0.811281 -0.660810 -1.840950 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = -0.076105 -0.034728 0.305220 -0.504767 -0.195116 -0.172169 0.613093 -0.229494 -0.090971 0.006833 0.243474 -0.351751 -0.312046 0.460798 0.037935 -0.275913 0.222065 0.096108 -0.282654 0.013116 -0.078407 0.173342 -0.044904 -0.212156 0.249427 -0.044154 0.088934 0.537170 0.023864 -0.278196 0.041620 -0.144572 0.194069 0.664964 -0.020436 0.230598 -0.274444 0.742697 -0.243910 0.817699 -0.674328 -0.117053 0.771002 -0.139891 -0.140783 -1.085059 -0.547347 0.418814 -0.039121 -0.550369 -0.089386 0.035783 0.093639 -0.611801 -0.123398 0.719426 -0.498398 -0.037307 0.409925 -0.488426 -0.425551 0.016303 0.044149 -0.082486 -0.560372 -0.463695 -0.049281 -0.275304 -0.224867 0.168425 -0.298024 -0.543286 0.724939 0.074586 -0.161997 0.313808 -0.102959 -0.402652 0.352848 0.171603 -0.250347 -0.350888 0.165532 -0.155428 0.325062 -0.151389 0.322450 -0.878267 -0.146164 -0.728447 0.299578 -0.632107 0.356979 0.552268 -0.185436 0.572729 0.049111 -0.148334 -0.175177 0.260950 0.404999 0.137204 0.369983 0.059285 0.613194 0.160268 -0.333393 -0.734193 -0.401527 -0.458911 0.292005 -0.202153 -0.837951 0.227041 -0.335961 0.012578 0.021295 0.110400 0.143151 0.580761 -0.232754 0.513530 0.531470 -0.202389 0.040925 0.726555 0.020104 -0.147046 -0.303615 0.316224 -0.047822 0.443714 -0.054065 0.446642 -0.012872 -0.558459 0.079398 -0.167602 0.012123 -0.277767 -0.538224 -0.565269 -0.215229 0.292703 -0.326630 0.081378 0.905276 -0.306481 -0.584512 0.409635 0.615235 0.154941 0.002417 0.225275 0.952725 -0.494177 0.004898 -0.255752 -0.047788 0.481345 0.673621 -0.181638 -0.571376 0.459002 -0.315212 -1.305061 1.360785 -0.145535 0.036523 0.778620 0.038018 -0.201368 -0.648648 0.661937 0.137376 0.947166 -0.342885 0.803931 -0.287990 -0.295571 0.139241 0.073234 -0.083870 -0.515427 0.021020 0.053322 0.404104 -0.267337 -0.430545 -0.202064 -0.345773 -0.041017 0.622468 -0.394007 -0.047481 -0.098398 -0.147277 0.130679 0.214446 -0.319834 -0.002782 -0.578490 0.274376 0.238965 0.270592 -0.658850 -0.049972 -0.190478 -0.232923 -0.167087 0.038350 0.381522 -0.198885 -0.039383 0.323984 -0.233142 -0.270333 -0.254037 -0.774828 0.064614 -0.026201 0.152565 0.080549 0.709977 0.776698 0.339354 -0.096103 0.164885 -0.089827 -0.115955 -0.808404 0.055575 -0.209568 0.251698 0.311990 0.261781 0.308047 0.223636 0.561769 -0.014309 0.264583 0.592952 0.346994 0.644187 0.080319 -0.302716 0.357464 -0.094481 0.527025 0.605709 0.266565 -0.273922 0.360885 0.150040 -0.476497 -0.649028 -0.195521 0.000298 -0.386243 0.889876 0.219993 -0.182084 -0.077106 0.880800 -0.081370 -0.992521 0.331894 0.102513 0.313633 0.253854 -0.046919 0.418228 0.533076 0.145100 0.027221 0.170921 0.431665 -0.681541 -0.305407 0.073496 0.212810 0.454622 0.171641 -1.290543 -0.110403 0.021691 0.745293 -0.154569 0.658412 -0.272596 0.282576 0.137625 0.085327 -0.033988 -0.130747 0.120115 -0.228744 -0.340645 -0.966987 0.163652 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 3.599514 0.687250 1.233345 -2.673357 -0.187427 -1.108958 6.301425 -4.259598 -3.399390 8.570744 1.094387 -3.601411 -2.508711 2.298720 0.011582 -1.349503 2.337734 1.445156 -1.896156 -1.781322 -3.213380 0.226722 -1.187658 -5.858826 1.971993 -1.116971 2.491410 4.373416 -3.203297 3.088051 0.636474 -2.391312 2.975027 7.750519 2.500319 -1.224832 -4.359891 7.947022 -8.271226 7.448846 -5.564367 -5.947515 10.898068 -0.988444 1.198628 -5.649091 -1.425307 4.722937 2.652423 -6.296396 -2.842197 -0.945480 2.579029 -7.105045 -4.345398 7.191694 -4.144348 -0.678844 3.875796 -7.213812 -8.773657 -1.376795 2.411539 2.157372 -8.104593 -5.774613 -0.176879 -1.822641 -0.550623 1.735480 -8.049715 -6.185774 2.451580 1.176759 -0.826275 0.678589 -4.334610 -2.559056 2.443583 3.510001 -3.214760 -3.907613 0.807227 -1.825920 0.674508 3.139539 7.002211 -10.163139 0.880235 -9.732588 3.123536 -4.659024 5.204757 6.390714 0.547764 6.074769 0.250944 3.567858 -1.717518 -0.329600 3.452859 1.791445 3.435979 0.151595 5.177204 6.439240 -5.379816 -9.344755 -3.884238 -1.500252 3.387545 -1.087091 -5.570998 3.842173 -6.433179 -1.450179 -0.235922 -0.048845 -2.037309 7.831754 -7.915704 0.971756 3.328349 -2.100362 4.657198 3.832616 0.789537 1.089198 -0.976061 2.358548 2.111860 2.108449 -0.209224 6.092368 -4.227135 -3.523976 0.317294 1.922598 3.403572 -5.549871 -6.510768 -8.666290 -2.451621 5.500195 -4.071610 2.725631 9.720505 -3.186579 -3.922502 2.407175 -1.032860 -0.095133 1.864378 2.291405 11.075612 -7.017036 2.689875 1.176296 1.807076 5.116802 10.482666 -3.987355 -7.079214 5.847644 -2.825944 -2.645364 7.643143 -0.266146 0.672762 2.615807 0.849070 0.513434 -3.445766 6.747156 -7.390268 6.264231 -4.910259 8.256014 -3.973474 -0.411526 1.680434 -5.510634 -3.414972 -6.065255 1.992232 -1.433133 6.024979 -3.884745 -4.697321 -1.472681 -2.942454 0.044794 9.593642 -6.582728 -1.700407 -0.755377 -3.214229 5.105841 0.630244 -3.487799 -1.620471 -4.848897 2.286695 3.222286 1.138649 -8.156720 -4.149252 -1.967622 -2.864914 -2.179518 0.914618 5.309330 -3.803793 0.687264 5.106399 -0.393077 -2.714045 -2.119790 -4.589367 3.265612 1.080650 1.928169 0.896614 10.486561 4.426260 4.828116 -1.390587 1.093234 -1.090796 -3.354643 -9.905635 3.721081 -0.371619 2.489525 3.482962 3.467656 1.102866 3.332232 4.520982 -2.530097 1.870424 5.735019 1.759088 5.656331 -3.293021 -1.386241 4.199128 -1.797450 5.156778 4.611638 1.336514 -7.707949 2.772295 -4.771869 -6.814233 -0.053815 -1.166618 0.153301 -2.442723 4.996280 6.695470 -0.902309 -2.746773 11.465629 -1.033997 -13.389349 4.621534 2.900528 3.931908 7.525118 -3.344864 6.638821 4.127383 6.564009 1.672257 3.997214 4.305355 -7.755460 1.317196 0.962916 3.003362 5.460928 -2.244514 -16.613266 0.001753 1.431241 8.043212 -0.643051 8.438989 -4.591140 6.031732 0.302421 1.143815 2.498818 -1.809997 4.782781 -1.613869 0.186904 -10.164136 5.231561 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/binomial-coefficient.cpp__main = 1.068799 0.651865 0.799296 -1.260449 -1.377568 0.000691 0.261107 -2.010002 -0.985060 2.210763 0.663950 -1.514045 -1.006898 1.416093 -1.094390 -1.245254 -0.208603 0.419670 -0.514409 -1.497517 -0.652831 0.343776 -0.415592 -1.617439 0.242508 -0.840743 0.713150 1.242846 0.276863 0.643695 0.080283 -0.832454 1.081855 2.842752 1.106279 -0.269260 -0.987794 2.981892 -1.273201 1.502686 -3.005758 -2.593345 3.292757 -0.209310 0.501803 -2.701132 -1.072581 1.459024 -0.935205 -0.445286 -0.695356 -0.525520 0.645109 -1.837645 -1.092269 1.972854 -2.470695 1.746355 1.005486 -2.442390 -2.255711 -0.437742 0.512474 0.759395 -1.148765 -1.880709 -0.097035 0.977244 -0.755076 0.761392 -1.846712 -1.957191 2.227247 0.079944 -0.750865 0.146060 -0.990464 -0.747463 0.991220 -0.532232 -1.612281 -1.217146 0.873619 0.147185 0.535836 1.357334 2.006181 -3.768472 0.068427 -3.726079 1.353697 -1.425379 1.774594 1.856483 -1.235880 1.709514 0.565433 0.197004 0.784702 0.488322 1.524248 0.509317 1.218799 0.460673 1.375808 1.828542 -0.883135 -2.159605 -0.968173 -1.378572 0.346595 -0.192108 -3.256592 1.015947 -1.885891 0.408631 -0.614508 -0.192459 -0.199510 2.256750 -3.097956 -0.792877 0.938539 -0.604685 1.712883 1.159388 0.099962 0.889048 -0.424499 1.327850 -0.003915 0.352902 -0.037023 1.901465 -0.870439 -3.052303 -2.237947 1.005410 1.182481 -1.842582 -2.418328 -2.532135 -0.976960 1.281793 -1.222892 1.199987 3.670078 -1.296894 -2.405927 1.505833 -0.083144 -0.200748 2.168528 0.883287 3.909648 -2.049381 0.507487 -0.078669 -0.097123 1.426360 1.858558 -1.157923 -2.087212 1.900054 -0.242583 -1.316702 1.397763 -0.508972 -0.530355 -0.066379 0.270364 -0.387343 -0.813590 2.009984 -1.273152 2.474848 -1.464427 3.233908 -1.909495 -1.767687 0.419909 -2.289396 -0.989574 -0.399232 0.758492 -0.339977 2.197922 -2.021524 -1.695677 -0.202310 -1.101406 -0.433485 2.886962 -0.691678 -0.231219 0.319340 -0.715699 2.062816 1.276721 -0.858031 -0.030647 -1.700675 0.796167 1.797815 0.856974 -3.790518 -1.111229 -1.005438 -0.702058 -0.209311 0.242440 1.867615 -0.717709 0.201143 0.735072 -0.753697 0.370335 -0.227939 -0.479085 1.310631 -0.655826 0.904346 0.057110 3.251248 2.037033 1.974011 0.175881 0.589124 -0.041266 -1.739063 -0.449241 1.036503 1.114340 0.218612 1.244427 1.998961 0.692588 1.206276 2.020558 0.309969 0.232649 2.277784 -0.024355 2.814058 -2.531949 0.276987 0.246222 -0.124953 2.100375 3.137807 -0.247381 -2.059865 0.907463 -0.901136 -0.987461 -1.460184 -0.370091 -0.052930 -0.878118 1.927262 2.545906 -0.283054 -1.025708 3.714387 0.128443 -3.830754 2.654212 0.987943 0.929940 1.299072 -1.253966 0.614537 1.598878 0.897995 0.195197 1.842503 1.676690 -2.878145 -0.680239 0.128754 1.893710 1.421413 0.236389 -4.500561 0.317483 1.640871 2.788202 -0.146270 2.175664 -1.975424 -0.105439 0.489533 0.279353 0.251182 0.092018 1.113948 -1.259807 0.447626 -1.563721 0.032375 +PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 1.185530 1.527770 2.048329 -3.139737 -3.903158 0.247080 -1.337524 -4.088859 -1.136259 4.192056 1.295774 -3.018310 -1.729436 3.570450 -3.275139 -2.804504 -1.354719 0.276364 -0.570381 -3.609066 -0.325889 1.652338 -0.680483 -1.804262 0.265979 -2.027279 1.105287 1.750716 1.838225 -0.031213 0.543485 -1.577203 1.704007 5.118954 1.846451 0.224398 -1.594432 5.014251 -0.055218 2.115088 -7.448428 -4.926540 4.826668 -0.028728 1.123752 -6.269121 -2.117194 2.321781 -2.778744 0.701718 -1.247318 -1.135227 0.973018 -2.657137 -1.470145 2.565829 -5.078555 4.589954 1.405533 -4.590608 -3.202981 -0.277024 1.182988 1.579236 -1.015380 -3.202910 -0.358570 3.121428 -2.361816 1.601265 -1.513406 -3.023185 4.277123 -0.140795 -2.250246 0.364814 -1.418445 -1.534099 2.025398 -3.415894 -2.996819 -2.172616 2.245246 0.044970 0.754496 2.333169 3.373494 -6.812291 0.410096 -6.303483 2.636282 -1.828343 3.216335 2.780660 -3.144829 2.666780 1.358858 -0.605150 3.223971 1.245006 3.017968 1.107012 2.588397 1.508459 2.008086 2.897377 -0.737000 -2.629469 -1.277461 -3.642504 0.093806 -0.516962 -6.600075 1.182877 -2.706868 1.484990 -1.278151 -0.779330 0.177653 4.145567 -6.295898 -3.064024 1.546377 -0.880523 2.344222 1.967759 0.438265 1.674950 -0.691465 2.967076 -1.195207 0.365702 0.208998 3.204891 -1.318527 -6.109716 -5.567692 1.618676 1.376379 -2.984530 -4.120307 -4.315104 -2.317321 1.420993 -1.908837 2.995230 6.581004 -2.497471 -5.978280 3.391936 0.014955 -1.415640 4.866406 1.529714 6.378177 -3.187489 0.062696 -1.423068 -0.856050 2.718081 3.440793 -1.525930 -3.239439 3.208591 -0.351609 -3.616896 0.854866 -1.178167 -1.588317 -1.644041 0.599934 -1.588020 -0.904302 2.534764 -1.972957 5.274576 -3.204962 6.003748 -3.976035 -4.828858 0.517465 -5.332270 -1.620376 1.231609 1.362357 -0.382804 4.102387 -4.180684 -2.806065 -0.165667 -2.420337 -1.319543 4.391730 -1.007094 0.138144 0.982108 -0.971956 5.365950 3.055761 -1.264868 0.286330 -2.565361 1.508755 3.914231 2.745436 -7.290423 -1.641363 -2.499442 -1.152698 0.138984 0.073885 3.461011 -0.818095 0.586130 0.034104 -2.099814 1.665616 -0.320332 -1.018843 2.567568 -2.677965 2.163222 -0.460832 5.160547 3.905865 3.633223 0.613781 1.162647 0.070670 -4.107083 2.079479 1.684723 3.570135 -1.256794 2.305697 4.744917 1.872478 2.433210 4.532848 2.084862 -0.136659 4.474396 -1.787342 5.584735 -6.224063 1.407767 -0.713660 0.640039 3.699169 7.192596 -0.530196 -2.867693 1.833297 -0.630145 -0.539962 -4.346204 -0.548088 -0.320979 -1.008590 3.490301 4.742203 -0.640322 -1.663504 6.042084 0.958527 -5.647380 6.017118 1.391241 1.166925 0.405846 -2.097839 -0.683252 3.126329 -0.222119 -0.391506 3.652620 2.947767 -5.380675 -2.925988 0.000000 4.382744 2.785550 1.894714 -7.050622 0.614913 3.707830 5.009835 -0.562680 4.051310 -3.653890 -2.526871 1.670386 0.441571 -0.732645 0.936791 0.854379 -2.559195 0.947034 -1.071547 -1.424815 +PE-benchmarks/tower-of-hanoi.cpp__main = 0.328367 0.291511 0.701327 -0.941439 -0.881727 -0.115969 0.131542 -0.804376 -0.243677 0.641683 0.289862 -0.748739 -0.653001 1.083613 -0.782261 -0.801068 -0.142362 -0.185027 -0.255285 -0.714975 -0.114333 0.470785 -0.133832 -0.539671 0.324052 -0.461877 0.228502 0.753969 0.485573 -0.217632 0.070304 -0.387683 0.488496 1.479947 0.295843 0.074437 -0.310170 1.662117 -0.131917 0.844091 -1.863980 -1.178559 1.527938 -0.149039 0.071734 -2.036632 -0.800729 0.673363 -0.944196 0.143175 -0.197809 -0.141529 0.110049 -0.921379 -0.260088 1.035811 -1.722036 1.247542 0.446112 -0.929492 -0.738556 -0.242898 0.006226 0.017887 -0.188499 -0.897331 -0.082741 0.519934 -0.828790 0.576487 -0.443840 -0.708328 1.561935 0.059681 -0.500377 0.355563 -0.177091 -0.619444 0.606250 -1.013274 -0.769379 -0.663248 0.616145 0.212415 0.610200 0.373085 0.626023 -1.920478 -0.169946 -1.721326 0.699057 -1.019897 0.838701 0.999891 -0.973739 1.026022 0.267915 -0.362021 0.534655 0.468553 0.955801 0.422944 0.807298 0.328160 0.685182 0.644381 -0.245509 -0.886967 -0.433847 -0.862889 -0.097530 -0.141306 -2.064470 0.288958 -0.700105 0.392077 -0.205459 -0.072487 0.043861 0.989294 -1.479251 -0.353733 0.597412 -0.313152 0.531299 0.770702 0.032295 0.181709 -0.427146 0.924398 -0.189030 0.392246 -0.125378 0.854142 -0.240729 -2.022993 -1.308315 0.043113 0.228967 -0.725009 -1.323739 -1.197137 -0.585699 0.314055 -0.527540 0.603694 1.891534 -0.521893 -1.538022 1.069000 0.433269 0.129788 1.168363 0.478510 1.677132 -0.809953 0.004552 -0.355469 -0.161943 0.681800 0.646350 -0.410578 -0.988777 0.825363 -0.075279 -1.410234 0.737019 -0.341112 -0.274426 -0.063120 -0.038505 -0.627581 -0.618106 1.146347 -0.087717 1.687638 -0.843732 1.778502 -0.969645 -1.400258 0.186963 -1.062915 -0.148600 -0.122425 0.299335 0.013163 0.918851 -1.215787 -0.986783 -0.096598 -0.492034 -0.288287 1.208286 -0.317806 -0.069383 0.069446 -0.108714 1.096846 0.777892 -0.568578 0.323339 -0.985735 0.448654 0.919429 0.688863 -2.191328 -0.093503 -0.357913 -0.373486 0.102112 0.122392 0.714006 -0.183441 -0.054095 0.271575 -0.597955 0.229357 -0.164610 -0.485978 0.480487 -0.581051 0.388871 0.025972 1.358860 1.423116 0.714455 0.004624 0.325151 -0.014751 -0.922425 0.238617 0.365267 0.652933 -0.149321 0.567510 1.202160 0.608443 0.432761 1.132158 0.714670 -0.143769 1.186993 0.129075 1.552708 -1.261187 -0.009788 0.028976 0.036464 1.126383 1.823675 -0.091193 -0.676242 0.669616 0.161885 -0.083742 -1.301558 -0.331212 -0.118057 -0.503426 1.323810 0.873123 -0.431231 -0.180410 1.761498 0.097816 -1.662010 1.397890 0.448117 0.400249 -0.078699 -0.384180 -0.166221 1.101479 -0.217806 -0.009794 0.650909 0.867388 -1.320251 -0.898757 0.019429 0.992714 0.741603 0.551150 -1.986191 -0.041944 0.886630 1.455957 0.003088 1.040787 -0.705121 -0.650978 0.257673 0.131132 -0.242241 0.207066 0.229454 -0.803232 0.051725 -0.518961 -0.449626 +PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.118725 0.056033 0.643406 -1.060193 -1.095547 -0.094207 0.680581 -0.496863 -0.225589 0.056227 0.616190 -0.425214 -0.438692 1.147680 -0.105518 -0.615804 -0.027994 -0.489283 -0.291549 -0.164999 0.020082 0.784128 -0.199520 -0.096139 0.403626 -0.247519 -0.262028 1.044564 0.231642 -0.403095 0.140987 -0.412276 0.066840 1.146427 0.125097 0.033488 -0.122355 1.884188 -1.119793 0.957562 -1.128000 -0.811706 1.422674 -0.282315 -0.454741 -1.753723 -1.249946 0.601033 -0.333457 -0.390503 0.397321 0.100228 0.369656 -0.529223 0.139891 0.869713 -1.450543 0.351662 0.610388 -0.822896 -0.421294 -0.154268 -0.465683 -0.126109 -0.705813 -0.687584 0.022141 -0.132065 -0.026953 -0.058916 -0.001015 -0.796085 1.688899 0.193225 -0.154340 0.500036 0.259417 -1.098156 0.918116 -0.113651 -1.040524 -0.464685 0.029852 -0.396518 0.875439 -0.324987 0.649176 -1.647104 -0.187345 -1.579451 0.513348 -1.080767 0.381640 1.101267 -0.878723 0.896459 0.530355 0.130812 0.407379 0.151352 0.990934 0.443497 0.712377 0.783401 0.835263 0.623737 -0.583461 -0.770118 -1.120691 -1.012252 0.464591 -0.565635 -1.952109 0.458357 0.045794 -0.545485 -0.075457 -0.206565 0.255519 1.574747 -0.430579 1.034058 0.863063 -0.278746 -0.285431 1.104893 -0.125778 -0.282909 -0.659621 0.851029 -0.652732 1.179872 -0.097153 0.823089 -0.245782 -1.354948 -0.488345 -0.022491 -0.080933 -0.752463 -0.887477 -1.096820 -0.048259 0.370706 -0.583202 0.209457 2.016373 -1.006324 -1.346157 1.307818 1.481611 0.000571 0.239318 0.351396 1.280502 -0.201528 -0.713049 -0.846296 -0.810302 0.407879 0.990204 0.238785 -0.552880 0.784359 -0.160584 -2.203785 2.390192 -0.390670 -0.626473 0.800919 0.249939 -0.779045 -0.990046 1.222167 0.774723 1.364075 -0.270725 1.430126 -0.259430 -0.813990 0.251401 -0.225431 -0.082741 -1.137296 -0.092050 0.463040 0.370670 -0.463027 -0.669710 -0.662936 -0.494844 -0.612031 0.594853 -0.687690 0.337669 0.343578 0.258836 -0.051704 1.155563 -0.064622 0.019737 -1.011407 0.612750 0.558729 0.276642 -1.739226 -0.070791 -0.200239 -0.241008 0.008870 0.020319 0.787684 -0.288258 -0.046847 0.287719 -0.452463 -0.205743 0.162622 -1.538315 0.240687 -0.175228 0.684788 0.241797 0.871639 1.523981 0.955831 0.402509 0.767932 -0.118791 0.053069 -0.630126 0.091506 0.123918 0.226348 0.679151 1.248535 0.973326 0.586698 1.142170 0.793307 0.488243 1.113796 0.320546 1.763320 0.042965 -0.591011 0.124805 0.510261 1.088143 1.500803 0.764786 -0.144363 0.608661 0.387556 -0.591749 -1.153570 0.145489 -0.159704 -0.192931 1.390039 0.525939 -0.278966 -0.091946 1.397203 -0.217039 -1.700595 0.718161 0.356944 0.803958 0.122244 0.212149 0.289716 0.856743 -0.404117 0.755078 0.818804 0.782216 -1.200717 -0.724695 0.179936 0.563693 0.828508 1.070762 -2.245511 0.173458 0.258565 0.991307 -0.428381 1.227499 -0.680764 -0.361538 0.556665 -0.011555 -0.216677 0.310346 0.062446 -0.920355 0.121793 -1.179487 -0.436570 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = 0.240451 -0.113847 0.488418 -0.646187 -0.675307 -0.048388 0.503401 -0.450383 -0.203520 0.868882 -0.005673 -0.392029 -0.804514 0.816709 -0.161650 -0.640924 -0.114772 -0.466032 -0.216362 -0.282651 -0.201948 0.285485 -0.130714 -0.350015 0.206166 -0.221082 0.283068 0.677111 0.002828 -0.098105 0.148220 -0.399405 0.203746 1.029110 0.254381 0.266627 -0.345398 1.737171 -0.677858 1.445152 -1.326020 -1.302203 1.178050 -0.128147 -0.082679 -1.187227 -0.032327 0.663878 -0.627653 -0.357208 0.002214 0.109129 0.091719 -0.694893 -0.225978 0.678017 -1.177614 0.548450 0.264778 -0.652564 -0.718439 -0.213422 0.006116 0.337155 -0.768970 -0.624877 -0.024093 -0.174560 -0.643658 0.297126 -0.327079 -0.438098 0.980637 0.285202 -0.311312 0.218161 -0.020973 -0.381558 0.528670 -0.578453 -1.007961 -0.477572 0.086712 -0.328293 0.506934 0.375847 0.678936 -1.547758 0.289899 -1.505054 0.528464 -0.726783 0.467345 0.940621 -0.347209 0.986158 0.159177 0.348104 0.308990 -0.271185 0.526227 0.433920 0.635420 0.436325 0.581730 0.751468 -0.609539 -0.882010 -0.751144 -0.566094 0.199732 -0.427398 -1.455857 0.299479 -0.239056 0.470173 0.116368 0.186453 -0.317207 0.723827 -1.568929 0.122149 0.285363 -0.194405 0.501962 0.513700 -0.077492 0.154204 -0.005998 0.686919 -0.098843 0.513586 0.084330 0.692571 -0.294308 -0.214344 -0.502690 0.244581 0.359883 -0.415650 -0.825857 -1.333462 -0.465799 0.740144 -0.415875 0.888143 1.795249 -0.599379 -1.094516 0.691331 -0.229707 0.123003 0.402887 0.297663 0.932832 -0.467529 -0.161608 -0.201940 -0.092903 0.542200 1.588401 -0.057978 -0.719593 0.844030 -0.254327 -0.644584 0.524730 -0.092039 -0.220989 -0.482856 -0.038864 -0.563255 -0.534732 0.870862 -0.920818 1.118271 -0.450993 1.150099 -0.525372 -0.477834 0.174557 -1.441137 -0.204900 -0.821967 -0.031117 -0.038432 0.652913 -1.000709 -0.555106 -0.482635 -0.458113 -0.279750 0.786359 -0.738851 -0.077629 0.029454 0.117504 1.524998 0.789058 -0.285156 -0.216776 -0.853151 0.372593 0.324325 0.192817 -1.238483 -0.275976 -0.137298 -0.353391 0.379194 0.028330 0.436325 -0.477046 0.055421 0.195807 -0.180722 -0.127478 -0.009758 -1.204011 0.182762 0.281702 0.684168 0.453241 0.945020 0.876815 0.825828 0.146821 0.467976 -0.163270 -0.328679 -0.453120 0.152451 0.399118 -0.058372 0.453488 0.949027 0.456964 0.292832 0.926100 0.661106 -0.296688 0.796316 0.035360 1.351887 -0.612874 -0.307575 0.235815 0.163742 0.606849 1.143708 -0.240012 -0.191828 0.649639 -0.106263 -0.302030 -0.416291 -0.130952 -0.306769 0.161270 0.991494 0.773456 -0.271673 -0.053611 1.129502 -0.109009 -1.732413 0.626848 0.380840 0.502332 0.421885 -0.303493 0.232399 0.700068 -0.235306 0.693196 0.774143 0.378687 -0.888475 -0.206680 0.092324 0.497168 0.841684 0.322603 -1.702417 -0.254426 0.260004 0.978313 0.127670 1.288691 -0.827841 -0.152078 0.301928 -0.231250 0.026137 0.052042 0.325270 -0.148986 0.111542 -0.897744 -0.287850 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = 0.413088 -0.300708 0.761988 -0.868349 -0.650938 -0.039198 1.252923 -0.398843 -0.181474 1.371677 -0.125893 -0.111644 -1.087136 0.826753 -0.014751 -0.610300 0.316070 -1.080887 -0.030409 -0.003077 -0.280204 0.541661 -0.211154 -0.272508 0.413746 -0.167865 0.299380 0.942561 -0.330387 -0.038929 0.029251 -0.599789 -0.048362 1.264445 0.341965 0.137114 -0.384229 2.325577 -1.189574 2.150406 -1.399582 -1.504395 1.285923 -0.272897 -0.063333 -1.467949 0.193009 0.758468 -0.409866 -0.688614 0.336357 0.115942 0.337326 -0.711351 -0.094561 0.795934 -1.425353 0.194210 0.387506 -0.510838 -0.678159 -0.412372 -0.183128 0.459675 -1.222730 -0.636000 0.191464 -0.614966 -0.742354 0.371659 -0.446381 -0.459921 0.795936 0.586563 -0.439919 0.238497 0.299079 -0.832946 0.767150 -0.767703 -1.337007 -0.558325 -0.331762 -0.720634 0.914556 0.113027 0.884356 -1.905857 0.547280 -1.765119 0.580279 -1.103554 0.491570 1.433011 -0.089789 1.287722 0.250776 0.838717 0.162825 -0.743084 0.706939 0.919730 0.841700 0.571031 0.848727 0.981718 -1.021300 -1.261570 -1.155380 -0.362039 0.299639 -0.696830 -1.481729 0.365430 -0.046983 0.396190 0.294997 0.212785 -0.670068 1.039908 -1.972101 0.411034 0.317206 -0.276552 0.488869 0.711539 -0.184760 0.080536 -0.006338 1.091951 -0.227738 1.011594 -0.010094 0.939518 -0.621364 0.242873 -0.193590 0.105196 0.455289 -0.494163 -1.085153 -1.839829 -0.586610 0.874277 -0.398421 1.144994 2.202067 -0.666892 -1.051632 0.983094 -0.453723 0.166420 0.142767 0.328889 0.573571 -0.362191 -0.383512 -0.466429 -0.028767 0.343461 2.641066 0.191622 -0.724050 1.081899 -0.478539 -0.551256 0.658366 0.013620 -0.353255 -0.687186 -0.207552 -0.805948 -0.744324 1.256218 -1.615539 1.120587 -0.557624 1.378716 -0.337695 -0.281300 0.149201 -1.723387 0.041537 -1.642588 -0.087841 0.205812 0.563535 -1.253261 -0.722446 -0.748733 -0.387340 -0.319929 0.760245 -1.545019 -0.136464 0.041790 0.382946 2.171463 0.946567 -0.251902 -0.400083 -0.937911 0.559866 0.027024 0.027345 -1.240305 -0.270597 0.059243 -0.511879 0.432122 0.072711 0.402025 -0.761869 -0.173409 0.473824 -0.116712 -0.483140 0.189715 -2.240577 0.110688 0.816903 0.722218 0.669718 0.878969 0.982814 0.915298 0.264429 0.468342 -0.267297 -0.045487 -1.199907 0.173501 0.403754 -0.152386 0.394288 1.132288 0.722557 0.221197 0.870517 0.967199 -0.268431 0.865817 0.149945 1.420000 -0.324533 -0.653146 0.510872 0.187456 0.734663 0.935799 0.023968 -0.017717 0.863378 -0.149317 -0.599194 -0.147239 0.022655 -0.552076 0.552381 1.038855 0.802550 -0.459838 0.023864 1.316648 -0.344346 -2.221393 0.350879 0.553826 0.841125 0.858211 -0.061211 0.554610 0.694971 -0.401727 1.383582 0.708372 0.340585 -0.779369 -0.129534 0.147725 0.195967 1.103965 0.455719 -2.278184 -0.704608 -0.014834 1.209481 0.345594 1.864873 -0.789277 0.121064 0.385335 -0.481423 0.016350 -0.020467 0.628488 -0.071123 0.131008 -1.470028 -0.146163 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = 0.692219 -0.628820 2.490243 -4.392799 -4.487623 -0.311492 4.353201 -2.313358 -1.093036 4.917728 0.941720 -1.587697 -2.674827 5.156279 -0.167752 -1.968630 0.145731 -3.127379 -0.432555 0.098443 -0.647455 3.463241 -1.216524 -0.573901 1.381057 -0.603816 0.140615 4.182916 -0.515679 -0.206953 0.600244 -2.728886 -0.163657 4.994216 1.437878 0.214704 -1.857799 9.933287 -7.291772 7.817625 -5.901493 -5.657510 6.330500 -0.998494 -0.793520 -7.673057 -3.169849 3.181170 0.000597 -3.325530 1.453243 0.567253 1.916898 -2.395425 -0.015048 3.188562 -6.077862 0.409435 2.475582 -3.441042 -2.549979 -1.206885 -0.954629 1.804665 -6.359731 -2.988784 -0.063180 -2.063258 -0.803203 0.007221 -1.141382 -2.918150 4.954045 1.951635 -1.870132 1.094533 0.557908 -4.677945 3.694491 -1.948023 -5.679700 -2.008791 -1.363328 -3.423875 2.960716 0.058480 4.858074 -7.611705 1.725810 -7.639381 2.010651 -5.221085 1.650965 5.828165 -1.329823 4.978519 1.676532 3.524369 2.848015 -1.577233 3.074419 4.030437 4.070235 3.237661 3.595289 4.965664 -3.900778 -4.418955 -5.974457 -3.239233 2.234360 -2.914060 -7.968986 2.126330 0.647028 -0.876304 0.204459 -0.112335 -1.314527 6.746863 -5.829155 4.165710 2.436250 -1.131035 0.112754 4.692956 -0.612328 -0.267060 -1.516542 3.604946 -1.967568 5.788082 0.273261 4.075265 -4.061191 -1.421054 -0.942424 0.975206 0.799540 -2.894893 -3.868434 -7.702715 -1.301364 3.271048 -2.590824 3.106817 10.144971 -4.482020 -5.293717 4.745622 2.677051 -1.001243 0.199166 1.084485 4.944119 -0.906731 -2.641893 -2.841783 -2.270159 1.371445 11.387648 1.261395 -2.997837 4.200154 -2.499190 -7.868081 7.231979 -0.155968 -2.518000 -1.085261 0.554217 -3.228463 -3.471702 6.123768 -4.592897 5.352218 -2.838592 5.482134 -0.907862 -1.063830 1.066556 -6.185414 -0.596044 -7.344474 -0.284819 1.562099 2.763464 -3.552940 -2.440338 -3.623382 -2.648651 -2.599946 2.865344 -7.111195 0.199453 1.295128 1.486121 6.057382 4.624371 -0.203386 -1.272686 -4.337532 2.952017 1.157372 0.263546 -7.430111 -1.765363 -0.913284 -1.839680 0.231711 0.083136 2.798026 -3.094932 0.012916 1.496876 -1.086218 -1.507494 1.030964 -9.374174 1.275981 1.154347 4.646535 2.033136 3.990285 5.118721 5.068487 1.943287 3.676671 -1.355241 -0.172134 -4.549337 1.497678 1.923429 -1.392476 2.740984 5.861702 3.848331 2.199683 4.721704 3.462129 0.593446 4.289974 0.171164 7.701170 -0.650227 -3.013346 1.509953 2.091510 3.528455 5.643813 3.038068 -0.584901 3.022356 -0.966370 -3.645881 -1.756281 1.029465 -1.342072 1.115780 6.099229 3.620787 -1.079818 -0.301770 5.710222 -1.541639 -9.657545 2.034415 1.845684 3.997975 3.027224 0.355160 2.833466 3.480536 -0.995957 5.630633 4.501016 2.091096 -4.344886 -2.090008 0.893923 1.311845 6.157485 3.388878 -12.840311 -0.341796 0.504569 4.595206 -1.093886 8.740526 -3.875681 0.163338 2.795041 -0.943589 -0.221496 0.168236 1.548867 -1.282158 0.891108 -6.916909 -1.058039 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = 0.793756 -0.413079 3.652712 -8.133507 -8.701249 -0.277741 4.966138 -4.276976 -2.019368 6.769006 2.734110 -3.305875 -4.099419 8.838480 -0.454278 -4.481412 -0.085835 -5.010873 -0.602333 0.401200 -1.159382 6.330819 -2.374784 -0.417595 2.304714 -0.693110 -1.099665 5.921472 1.241114 -1.394712 -0.138642 -4.473062 -0.580237 8.848529 2.668035 -0.590972 -2.057494 15.466591 -9.292097 10.732828 -9.486480 -8.088630 9.190331 -1.807799 -1.185692 -11.447794 -4.903429 5.653253 -1.361451 -4.399944 3.813105 0.703599 3.260241 -3.289397 0.877466 4.618079 -9.707492 2.968647 4.937725 -4.776333 -2.807506 -2.137430 -2.486375 2.451444 -8.493007 -5.297389 -0.057144 -1.908483 -1.269019 -1.069907 -1.955768 -5.570065 8.619941 3.313354 -3.717355 2.012878 1.156135 -8.062938 6.568930 -4.301370 -9.903780 -2.882985 -1.793516 -4.542918 6.207356 -0.436603 6.875799 -13.025992 2.487153 -13.369327 3.324078 -7.462781 3.039943 10.337298 -4.090933 6.115340 3.360467 4.219320 5.883447 -1.639535 6.282228 5.517911 5.051696 5.643120 5.499535 7.514882 -5.693056 -6.269551 -7.961248 -6.507342 2.830304 -3.921404 -12.432282 4.089857 0.810515 -1.132255 0.026283 -0.516802 -1.622847 10.430927 -8.437558 3.054813 3.908664 -2.074655 0.813392 7.679745 -1.412149 -0.362728 -3.689674 6.804393 -3.918328 8.697463 -0.227277 7.080577 -5.295684 -4.161161 -4.150772 1.704630 1.734710 -5.512586 -7.098178 -11.951962 -1.386092 2.944958 -4.805740 5.242723 15.673158 -8.147970 -8.884378 9.708662 3.774806 -1.068295 2.034396 1.457602 7.754215 -1.366351 -4.721409 -5.000398 -5.063392 0.954065 14.101036 2.556377 -4.842601 6.249766 -3.460467 -11.488307 9.953728 0.136668 -5.470139 -1.651751 1.135432 -5.639489 -5.893748 9.047747 -5.349506 7.432500 -3.270991 10.155564 -1.435488 -3.501508 2.670312 -7.443089 -0.575077 -9.714187 -1.331066 3.670516 3.807424 -5.882036 -4.108022 -4.356090 -3.309472 -5.665817 4.303670 -8.544518 0.701388 3.067441 3.120804 8.376746 9.041416 0.066775 -1.003830 -6.445836 5.419253 2.499144 -0.173062 -11.143436 -2.499651 -2.019603 -2.851342 1.589503 -0.215387 5.017017 -4.382956 -0.898271 2.311925 -1.897154 -0.482497 2.752347 -13.008337 2.543821 0.806017 6.876455 3.566105 6.836788 7.385742 9.043807 4.445186 5.044222 -1.944036 0.520266 -5.317908 1.712053 2.756952 -1.142678 5.257868 9.396788 7.408318 3.927472 8.126641 5.974193 1.027811 8.023101 -0.350006 12.425062 -0.897018 -4.174867 1.808552 3.178571 6.959771 10.886339 2.561957 -0.898589 5.135194 -0.554768 -5.363058 -3.781010 2.363693 -2.348249 0.750442 6.983182 4.945771 -1.357738 -1.043756 10.128546 -3.115428 -14.079331 4.633828 3.032456 7.049647 4.087589 1.533329 3.659932 4.318681 -3.690010 8.897956 8.014927 4.526369 -7.298537 -3.841508 1.399755 2.934513 8.491774 6.858172 -16.634383 -0.457515 2.162175 7.993633 -1.100375 10.958967 -6.113567 -1.837825 5.170538 -1.373063 -0.613847 0.047975 2.398324 -3.526233 1.705450 -8.363696 -3.025375 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.376627 -0.034648 1.365355 -2.557224 -2.974881 0.012178 1.230741 -1.521057 -0.627263 2.133530 0.855842 -0.926247 -1.174063 2.987019 -0.520794 -1.459859 -0.225053 -1.505055 -0.143664 -0.127474 -0.299836 2.050159 -0.767505 -0.090807 0.646037 -0.413006 -0.289937 1.682466 0.178153 -0.451129 -0.043394 -1.502181 -0.176121 2.831098 0.883149 -0.042246 -0.702935 4.926494 -2.605288 3.298892 -3.372815 -2.839388 2.764011 -0.610859 -0.042626 -3.860043 -1.703706 1.709172 -0.352058 -1.096630 1.151833 0.151033 0.908682 -0.947714 0.395760 1.160838 -3.161628 1.179327 1.493047 -1.750132 -0.874571 -0.658003 -0.834132 0.731034 -2.389089 -1.642420 0.011788 0.006908 -0.447143 -0.150808 -0.440913 -1.818509 2.845657 0.947388 -1.192744 0.632253 0.569378 -2.429898 2.138727 -1.779294 -3.253272 -0.964978 -0.404802 -1.225802 1.861381 0.129228 2.274163 -4.235352 0.966093 -4.352292 1.201039 -2.293541 0.980322 3.142141 -1.358469 1.931060 1.359087 1.325509 2.186848 -0.222646 2.051163 1.853274 1.551355 1.880795 1.734181 2.305867 -1.601638 -1.864480 -2.498888 -2.228248 0.790390 -1.178475 -4.065452 1.236976 0.406558 -0.171602 -0.280787 -0.089768 -0.264575 3.270194 -3.096937 0.771518 1.392357 -0.649515 0.232897 2.189482 -0.502896 0.003172 -1.249265 2.179586 -1.560726 2.601908 -0.012259 2.245320 -1.695039 -1.713125 -1.808677 0.583181 0.507821 -1.832402 -2.253078 -3.731368 -0.486604 1.192966 -1.517244 1.711068 5.086971 -2.711567 -3.003791 3.085616 1.419703 -0.559039 0.931115 0.623975 2.482903 -0.364910 -1.587887 -1.651315 -1.688539 0.355560 3.942962 0.881087 -1.466601 2.099301 -0.839427 -3.891286 3.201540 -0.274118 -1.872013 -0.625908 0.447049 -1.800927 -1.549888 2.687295 -1.448371 2.452076 -1.119374 3.290669 -0.658024 -1.279073 0.627780 -2.766517 -0.180630 -2.662919 -0.136333 1.005089 1.371545 -2.067869 -1.357930 -1.219261 -1.433259 -1.735451 1.334685 -2.623963 0.323677 1.109050 0.943241 2.758324 3.049399 0.217756 -0.253230 -2.009944 1.713034 0.853748 0.111563 -3.828502 -0.795902 -0.692736 -0.822103 0.350512 0.000413 1.606802 -1.194271 -0.206905 0.492612 -0.835712 -0.023888 0.899098 -3.365953 0.702371 0.039450 2.405588 0.918513 2.098331 2.527206 3.025721 1.576503 1.597340 -0.543207 -0.116601 -1.033090 0.635449 1.175094 -0.512065 1.622326 3.105342 2.394728 1.269270 2.671116 1.996295 0.472071 2.639692 -0.322508 4.135159 -0.846210 -1.092446 0.293937 1.162432 2.321386 3.685444 0.739246 -0.098876 1.552904 -0.167313 -1.541386 -1.202387 0.832213 -0.671589 0.092721 2.223546 1.945014 -0.388371 -0.442078 3.204282 -0.842470 -4.351071 1.666817 0.939181 2.159053 1.208146 0.493985 0.915255 1.402995 -1.118288 2.648610 2.588906 1.543827 -2.543334 -1.564818 0.413929 1.121959 2.696345 2.337706 -5.133409 0.094647 0.985471 2.499700 -0.608958 3.245236 -2.124783 -0.913047 1.707457 -0.488861 -0.362526 0.390948 0.744070 -1.149382 0.552921 -2.316845 -1.243656 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.071795 0.420615 1.792549 -2.546203 -3.309448 -0.644906 0.622586 -1.121925 -0.554604 0.782528 0.681873 -1.560019 -2.097152 3.081499 -1.305234 -2.571165 -0.886672 -0.924311 -0.659518 -1.368427 -0.367085 1.908595 -0.441400 -0.277901 1.284468 -1.015110 -0.435241 2.259001 1.986370 -1.192117 0.517805 -1.122593 0.615574 3.334839 0.073773 0.087668 -0.180332 5.611301 -0.985350 1.853320 -3.736159 -3.178411 3.752718 -0.658612 -0.488536 -4.541542 -2.316750 1.831483 -3.028439 0.619063 0.723684 0.698826 0.019370 -1.779147 0.565197 2.044618 -4.907461 3.278085 1.285233 -1.877882 -1.192431 -0.662054 -1.453635 -0.381050 -0.450598 -1.980531 -0.239218 0.764370 -1.635971 0.617708 0.049264 -1.320507 4.737290 0.433665 -0.928715 1.676889 0.848495 -1.621346 2.114587 -2.649115 -2.923016 -1.394042 1.298460 0.096234 2.354290 0.408510 1.321907 -4.798271 -0.264223 -4.421840 1.669291 -3.079520 1.430628 3.265021 -2.901645 3.044811 1.166517 -0.968553 1.925593 0.690483 2.833760 1.101675 2.167278 2.031735 1.145179 1.643008 -0.889911 -1.803076 -2.239405 -2.636453 -0.154587 -0.689481 -5.489546 1.010478 -0.296273 0.685334 0.040821 -0.061301 0.196489 2.582974 -2.942932 0.395909 1.867062 -0.817621 0.533339 2.420688 -0.497614 -0.302247 -1.541231 2.676348 -1.358608 2.230743 -0.222683 2.211828 -0.055852 -4.449312 -3.420875 -0.226635 0.099038 -1.733120 -2.794940 -2.776962 -0.762818 0.515765 -1.512688 1.432891 5.916847 -2.233138 -3.747702 3.695118 1.655634 1.139065 2.169126 1.086707 3.448308 -0.678620 -1.455292 -1.572017 -1.495232 1.297122 1.407536 0.601093 -1.977441 1.953731 0.353175 -3.448848 2.463711 -1.025271 -1.439439 -0.413244 0.446385 -2.202384 -2.057073 3.306032 0.979310 4.095307 -1.047472 4.273470 -1.437118 -3.433166 0.753715 -2.099244 0.057363 -1.640910 0.099682 0.718936 1.184599 -2.675887 -2.059825 -1.166107 -1.271341 -1.630452 1.598522 -0.316117 0.398516 0.557983 0.967569 1.942018 3.244241 -0.483840 0.629372 -3.439735 1.411648 1.434437 0.790934 -5.312979 0.273629 -0.089434 -0.871552 1.112965 0.061241 1.303373 -0.156225 -0.317528 0.245112 -1.272731 0.503134 0.208902 -2.175814 0.671922 -0.857103 1.793629 0.796211 2.436815 4.399744 2.279707 1.057658 1.944539 -0.129758 -0.984790 1.127986 0.505859 1.097534 0.149948 1.707970 3.361740 2.578034 0.970537 3.015810 2.514456 -0.605419 3.061731 0.450240 5.349722 -2.156507 -1.156799 -0.137500 0.994062 2.896688 4.791818 -0.027258 -0.495156 2.161704 1.321852 -0.113035 -3.405110 -0.096324 -0.651345 -0.624163 3.426934 1.395794 -1.427558 0.190262 3.693742 -0.533963 -4.386941 2.911523 1.041014 1.717374 -0.816654 0.343895 -0.837026 2.822733 -2.160259 1.171189 2.030132 1.980460 -3.154105 -1.987374 0.235656 2.333561 1.537007 2.606878 -4.817676 -0.170479 1.974779 2.826066 -0.111574 2.446378 -1.710601 -2.847012 1.302277 -0.294331 -1.010889 0.960310 0.052180 -2.276984 0.769969 -1.086207 -2.494723 +PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 5.508748 -1.137484 5.384743 -7.871046 -6.880990 -0.456209 7.147258 -9.582758 -5.084002 16.698535 3.915554 -6.989641 -1.143874 11.788068 -1.177454 -3.911333 1.956928 -0.032021 -2.140160 -1.029054 -4.240627 5.204785 -4.109547 -8.109741 4.472465 -1.526480 3.513868 8.938364 -5.423090 4.234111 0.236282 -6.741355 2.298976 17.082346 5.803623 -0.907517 -5.400798 21.292201 -17.701949 17.189602 -14.482671 -15.316036 20.783014 -2.754417 1.589370 -9.904408 -5.847950 10.344724 0.770978 -11.472307 -0.304470 -1.321749 6.022058 -11.391523 -4.683796 9.455522 -13.525925 1.079107 8.839807 -12.212683 -14.797012 -4.024850 1.925777 4.036844 -17.074872 -10.863275 0.379383 -0.832142 -0.231193 0.494831 -10.420488 -13.155588 10.486091 2.430368 -3.486400 2.318625 -3.947028 -9.598059 8.989982 1.640443 -12.809284 -7.697274 -1.030420 -9.802576 6.451549 4.710694 15.459421 -23.332047 6.908817 -23.463643 7.542403 -9.797963 8.879293 16.268644 -7.662834 11.490059 4.476406 13.966759 3.610200 -0.823301 9.496531 6.476902 4.742867 4.614705 11.425884 14.138492 -11.679582 -15.521959 -12.327029 -8.473709 7.134657 -6.499718 -16.406956 7.553125 -6.822512 -0.281089 -2.146761 -1.116920 -3.476678 18.679150 -19.578543 4.217577 6.773962 -3.737313 5.802940 8.835449 -0.889473 1.226115 -4.186665 8.129139 -2.613163 5.511317 -0.245281 13.209369 -11.271135 -5.748761 -4.470294 4.608284 5.778276 -12.035937 -13.973655 -22.986513 -3.306914 11.051029 -8.553819 9.719338 24.140588 -10.954853 -12.650241 10.491299 2.500596 -3.192674 6.931019 4.402919 18.235894 -9.676494 -0.914816 -3.206175 -2.653101 6.724866 17.156691 -2.821546 -11.301625 13.254948 -5.695062 -11.526184 22.679686 0.741246 -3.845289 -1.286341 3.820617 -4.589902 -6.723556 15.711831 -12.250400 11.432170 -8.733692 18.910100 -6.741918 -2.974655 3.753546 -16.839897 -5.705743 -13.898076 -0.289667 -0.384676 11.758487 -10.537899 -9.100423 -4.549953 -5.821874 -4.053970 14.970294 -11.447238 -0.736387 1.998395 -2.118460 11.962601 8.175527 -3.821179 -3.023685 -10.130738 5.450577 8.249402 0.142568 -17.930730 -7.346042 -5.873855 -5.267460 -2.617985 1.412236 11.226937 -11.426725 0.129150 7.280899 -0.984655 -2.484361 -0.185889 -15.994319 6.160772 0.272327 8.093507 6.200748 18.138325 11.213722 14.589023 2.542607 5.517939 -3.123308 -4.475809 -14.716173 5.951043 2.452981 4.561329 8.541802 12.266656 8.079289 7.748263 9.177397 2.261676 4.372908 14.771783 2.000559 17.764508 -4.880801 -2.036637 5.639844 1.892581 12.656984 14.150546 0.635475 -8.378205 6.539688 -6.647801 -12.517725 -2.459924 0.968020 -1.430574 -1.736733 7.105602 11.280983 -1.202413 -4.971078 21.949820 -3.308503 -26.618600 10.078757 5.473848 10.580577 12.833654 -3.051568 10.727945 7.153907 4.722335 11.009196 11.930075 9.692978 -15.876485 0.868239 2.265059 8.270443 15.401425 4.438801 -29.943578 3.987254 2.817922 13.867004 -2.303688 16.863185 -11.480115 5.571910 2.711148 -2.192234 2.971609 -1.063283 7.903675 -2.011669 2.290977 -19.938908 1.259700 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = 3.946593 -0.930647 3.968578 -5.768980 -4.693971 0.518572 3.547909 -5.832383 -2.912761 9.831392 2.890542 -5.028983 -2.767103 4.551786 -0.856317 -2.922765 2.368033 -0.647483 -0.349380 -2.171219 -2.850658 2.140945 -2.443374 -6.366024 2.467427 -1.905767 1.791780 6.714090 -1.570692 4.032510 0.109851 -3.914030 1.593645 11.983419 4.385306 -1.498234 -3.159429 13.624523 -8.497099 9.098781 -8.712188 -10.299200 14.245712 -1.368752 1.914909 -5.762029 -2.734612 6.864771 -3.016554 -6.170197 -1.016802 -1.699068 5.235496 -7.717144 -5.203947 6.460362 -9.841447 0.904440 4.711700 -8.499894 -9.758527 -1.771179 0.972413 3.797154 -8.668860 -7.071963 0.134203 -0.111556 -0.818264 0.492067 -6.995852 -7.136425 5.659604 2.069162 -1.224973 1.017921 -1.982877 -5.138985 5.221799 1.019525 -8.263501 -4.923366 -1.419569 -6.992241 5.231529 2.474316 10.163892 -14.209309 3.978822 -15.579650 4.989330 -6.085141 5.649806 9.962703 -4.423820 7.593845 3.077437 7.107111 1.666795 -0.283660 6.888778 4.199560 3.868239 3.215015 8.232156 8.214567 -6.197179 -8.982680 -6.829088 -4.904884 2.650400 -4.596422 -10.409852 4.998055 -5.784346 0.308761 -0.995100 -0.382373 -2.893028 11.106889 -11.772003 1.391134 3.278296 -2.411741 4.106390 4.243707 -0.233439 0.318172 -0.756108 6.301979 -1.400241 2.341749 0.774581 8.946355 -4.788164 -4.697752 -3.614245 4.076890 4.608034 -7.528581 -10.085282 -13.171870 -2.593398 6.047539 -4.973378 6.584520 15.211992 -4.921493 -7.561085 6.589512 -1.398124 -1.807359 6.148878 3.359578 11.504199 -6.353084 -0.521737 -2.101938 -1.619637 3.817931 10.503185 -2.822361 -6.870424 8.863781 -3.041769 -3.468224 10.545437 0.044917 -1.518202 -1.101380 1.211298 -3.411620 -5.389422 9.454191 -7.120332 7.672302 -3.614830 12.709926 -3.716026 -4.130443 3.069439 -7.930300 -3.769198 -6.590959 1.056996 -0.407909 6.071201 -6.938876 -6.955991 -3.144405 -2.411194 -2.542891 10.737475 -4.373797 -0.169086 2.481609 -2.181330 6.613004 3.674575 -2.826913 -1.662178 -6.557620 3.348289 4.822565 0.379310 -10.120035 -5.416189 -3.382755 -2.710975 0.044554 1.950054 8.528346 -5.882162 -0.077538 4.977698 0.317101 -1.137294 0.009157 -10.177747 4.687483 2.197124 3.731563 3.466149 12.645375 7.357404 8.484974 -0.239001 3.797811 -2.314969 -2.232512 -8.127873 1.804905 1.785766 2.528487 4.428694 7.535380 4.390945 5.797545 6.566218 2.869423 1.926389 9.322509 0.687295 9.490646 -4.355955 -1.383535 4.285898 0.385653 8.287307 8.602626 0.861313 -6.410599 3.789001 -4.201435 -7.368489 -3.065069 0.908178 -0.633008 0.220892 4.063959 7.944061 0.282751 -3.795063 13.344073 -0.519891 -17.428210 7.929818 3.560967 6.112834 8.273685 -3.010322 6.262156 3.926046 2.877253 6.751561 7.526390 4.711122 -10.790794 0.362035 2.060912 6.046197 6.791247 2.287047 -17.015264 1.084498 0.923620 8.512102 0.351283 10.525504 -8.038014 1.801091 1.344858 -2.632461 0.940459 -0.706610 4.426871 -2.595135 2.365233 -11.371228 1.369756 +PE-benchmarks/biconnectivity.cpp__main = 6.839107 -1.880696 7.838101 -11.732948 -11.972239 0.408359 0.234416 -10.392808 -4.699307 14.570250 3.607273 -10.007196 -8.533041 13.780750 -5.532926 -11.448606 1.190419 -1.005523 0.307147 -5.104558 -5.785338 6.577638 -4.789705 -7.989304 6.354508 -4.557422 1.195840 10.680017 5.638581 2.383854 -1.816993 -7.421198 1.446572 23.516028 6.749760 -2.237389 -1.879951 30.651020 -8.572569 15.808631 -18.874576 -19.967762 23.595354 -2.726273 2.759054 -11.733648 -6.703706 12.432497 -16.848077 -2.577657 2.485615 -1.943512 4.930089 -12.045712 -2.997673 12.039672 -25.825041 13.312407 8.481511 -10.364140 -12.913119 -5.486632 -2.407578 2.879075 -8.481672 -13.189190 0.786510 5.488163 -7.948000 2.008390 -10.436801 -12.060626 17.293834 4.514394 -5.974037 4.366211 0.318858 -7.975300 10.280873 -10.157787 -18.298345 -8.757675 1.990518 -7.667124 14.259258 7.025425 14.789784 -29.610736 7.139772 -30.550622 10.277733 -14.815912 12.320690 22.100986 -15.083387 15.032648 7.148978 7.166229 7.917908 1.882745 16.184454 7.290196 4.724059 7.169232 11.245536 12.718950 -8.654085 -13.511113 -10.800096 -10.853425 -1.028745 -5.928850 -24.018418 7.832028 -10.262226 8.945858 -2.038312 2.062672 -5.841959 13.666336 -25.514650 -4.010799 4.593392 -5.085065 11.651958 10.479449 -2.181147 1.546968 -4.972890 16.046952 -5.000266 4.291391 -2.087325 16.062335 -5.131396 -15.962774 -18.443510 4.227628 8.749515 -13.981804 -21.310318 -23.113016 -6.284807 6.538650 -9.011725 17.770866 32.501242 -10.459307 -15.717286 18.225808 -5.630806 4.388351 18.898880 6.363810 21.082911 -10.316445 -1.819628 -4.687269 -3.788308 4.307758 6.495383 -1.941427 -12.542175 14.092345 -0.809712 -2.347502 12.002444 -0.485474 -6.335935 -10.991685 2.057597 -8.550553 -9.975719 20.745234 -11.676336 16.030831 -5.601261 27.434071 -8.974792 -14.960657 6.665333 -16.964274 -3.460845 -8.912394 0.373711 -1.049764 10.561017 -18.559865 -14.011839 -4.090750 -3.255356 -7.077843 16.056634 2.828259 -0.721315 4.308694 0.448846 18.346084 13.590386 -4.228166 1.381290 -16.846462 6.675167 9.944046 -1.125311 -23.448168 -3.791816 -4.284139 -5.483726 5.094858 2.387617 11.392636 -9.984641 -3.523728 4.389169 -0.319541 5.110827 2.442098 -14.724525 7.989470 0.387560 5.645813 9.540486 20.490812 17.741479 15.619155 3.855858 6.688812 -2.711722 -5.521220 -1.705072 3.752155 6.306081 5.608019 8.699150 15.588748 11.338919 7.817403 11.511436 9.552527 -1.182689 18.665577 2.974832 24.340217 -11.796429 -2.462142 3.647332 -0.080718 17.456080 22.468249 -8.406467 -6.859388 10.495329 -1.739374 -6.074926 -12.208360 1.279017 -3.703184 -2.531909 8.180451 10.191858 -2.422419 -5.381445 25.492184 -2.539862 -30.216554 18.146513 7.213692 10.824297 7.775656 -2.079668 2.963760 9.759467 -6.060181 11.235380 13.338419 11.089316 -18.171684 -1.336735 1.866975 13.554560 10.499819 8.184186 -24.624207 1.723296 8.610832 17.516534 5.443373 12.685347 -12.104944 -7.831999 2.858252 -6.801959 -1.053186 0.273957 7.208975 -6.716249 5.867919 -11.706080 -8.157853 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/find-parity.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = 0.136238 -0.025868 0.402636 -0.593321 0.125851 -0.291081 1.407922 -0.055819 -0.173793 0.491602 -0.187813 -0.217372 -1.044892 0.213763 0.277831 -0.246268 0.359923 -0.640136 -0.288895 0.055045 -0.232389 0.296834 -0.047169 -0.781057 0.495476 -0.005658 0.135731 1.000217 0.109561 -0.196505 0.241151 -0.284064 0.360929 0.815986 -0.014888 0.181393 -0.493769 1.277150 -0.694704 1.441370 -1.219763 -0.729896 2.083988 -0.217624 -0.355814 -1.868771 -0.119788 0.619450 -0.308437 -0.771203 -0.036056 0.231936 0.214813 -0.866369 -0.263638 1.118600 -0.917107 0.143750 0.350430 -0.931196 -0.781921 -0.194192 -0.089688 -0.014347 -1.029119 -0.569201 -0.087328 -1.156845 -0.572149 0.257085 -0.759680 -0.164405 1.009932 0.295203 -0.169312 0.392321 -0.169799 -0.264148 0.423106 0.051220 -0.247418 -0.501110 0.041794 -0.345085 0.461430 0.032696 0.203222 -1.345284 -0.530792 -1.327059 0.343274 -0.982064 0.353822 0.736815 0.239966 1.263669 -0.108757 -0.401147 -0.458573 -0.205893 0.424557 0.355499 1.074343 0.294258 1.275801 0.795775 -0.725641 -1.610845 -0.897924 -0.203954 0.301719 -0.305151 -1.597250 0.283216 -0.757327 -0.073951 0.421049 0.219721 -0.305327 0.840694 -0.717659 0.829176 0.389994 -0.202076 0.602880 0.813717 0.051355 -0.124885 0.040408 0.471358 0.158521 0.982023 -0.013576 0.629857 -0.033103 -0.650800 0.333768 -0.186712 0.058801 -0.289158 -0.644311 -1.314521 -0.519302 0.458583 -0.410284 -0.072019 1.329864 -0.151468 -0.801739 0.523232 0.018806 0.660444 -0.222129 0.214190 1.452270 -0.898016 0.116037 0.071252 0.175523 0.613412 2.422686 -0.109168 -0.879552 0.612500 -0.365359 -1.230514 0.873358 0.104511 0.100692 0.614344 -0.165238 -0.531687 -1.066802 1.009964 -0.224851 1.391075 -0.820778 1.140472 -0.397298 -0.205051 0.079529 -0.085952 -0.187834 -1.243048 -0.179230 0.051669 0.247636 -0.639407 -0.498219 -0.772418 -0.046799 -0.174202 1.379162 -1.848686 -0.154498 -0.234860 0.065788 0.326398 0.079430 -0.559630 -0.088695 -0.943473 0.336311 0.547220 0.379500 -1.426118 -0.113489 0.140807 -0.412894 0.341248 0.033576 0.434599 -0.049641 0.030670 0.774278 -0.100436 -0.578558 -0.225990 -1.490396 -0.017015 0.424065 0.128305 0.295001 1.481295 0.755003 0.159036 -0.282294 0.626122 -0.268990 -0.066083 -1.737390 0.159700 -0.260744 0.160241 0.391128 0.967150 0.434430 0.277027 0.854880 0.180711 -0.378000 0.595954 0.549874 0.815330 -0.213594 -0.839442 0.616008 0.036091 0.449087 0.582934 0.159861 -0.883217 0.665316 -0.019860 -1.050154 -0.455963 -0.199411 -0.250557 0.081768 1.372875 0.545568 -0.264317 0.045814 2.026486 -0.302966 -2.161334 0.295371 0.351662 0.697256 0.468035 -0.205311 0.574026 0.923069 0.199633 0.200197 0.126781 0.340530 -0.976916 0.080086 0.145346 0.189266 0.554016 0.014317 -2.756098 -0.984059 -0.136309 1.578118 0.109833 1.529553 -0.149133 0.505460 0.072998 0.129771 0.119281 -0.129633 0.608800 -0.224458 -0.132497 -1.998822 0.687718 +PE-benchmarks/find-parity.cpp__main = 0.345057 0.590087 0.517907 -0.705959 -1.180973 0.200244 -0.378690 -1.039565 -0.253483 0.362148 0.400890 -0.632658 -0.992796 0.035886 -0.672869 -0.942005 -0.408171 0.145194 -0.254609 -1.050175 -0.159091 -0.001016 -0.156516 -0.718939 -0.022177 -0.639497 0.327766 0.697432 0.900124 0.216453 -0.071881 -0.319509 0.653647 1.375172 0.554702 -0.011584 -0.179190 1.461834 0.788051 -0.181854 -1.530509 -1.494015 1.513451 -0.089180 0.208478 -1.410700 -0.316393 0.642648 -1.672439 0.448920 -0.184478 -0.300070 0.321472 -0.668735 -0.433984 0.820921 -1.316708 1.531469 0.210632 -1.152503 -0.731389 -0.245531 -0.065444 0.377738 0.472547 -0.803775 -0.052218 0.885018 -0.783087 0.428616 -0.519365 -0.684739 1.768484 0.050807 -0.506970 0.077631 -0.181464 -0.137679 0.384940 -0.465798 -0.856796 -0.436560 0.745661 0.622739 0.514070 0.449851 0.585644 -1.829281 -0.543760 -1.901285 0.774693 -0.534775 0.883104 0.637042 -1.097253 0.732420 0.395357 -0.793821 0.423230 0.364573 0.921607 -0.036808 0.924261 0.305514 0.594160 0.391199 0.102759 -0.708696 -0.311602 -0.912282 -0.198234 0.031620 -2.271523 0.289411 -0.958310 0.832308 -0.326184 -0.107597 0.081190 0.759585 -1.327959 -0.869721 0.353574 -0.238047 1.089670 0.501458 -0.046987 0.677685 0.163593 0.860499 -0.177595 -0.011509 -0.083700 0.774755 0.548001 -2.178851 -1.889066 0.566099 0.732051 -0.669713 -1.242276 -0.483981 -0.649711 0.215697 -0.369232 0.024179 1.831665 -0.482730 -1.195828 0.897373 -0.486237 0.052236 1.452084 0.459900 1.814554 -0.998270 0.250407 -0.106112 -0.184111 0.597767 0.618634 -0.519718 -0.946340 0.736572 0.245850 -0.286163 -0.413022 -0.441626 -0.429348 -0.063273 -0.139319 -0.474706 -0.491519 0.731115 0.229411 1.468996 -0.331065 1.576799 -1.192521 -1.577094 0.256328 0.109942 -0.338588 0.382293 0.481331 0.104776 0.881815 -1.215364 -0.869622 0.070064 -0.365945 -0.256223 1.289066 0.668079 -0.061207 0.258316 -0.202783 0.432223 0.927839 -0.321764 -0.028429 -0.904590 0.366892 0.811966 0.610524 -1.626426 -0.438676 -0.516366 -0.231737 0.436979 0.102665 0.866667 0.508319 0.002123 0.027233 -0.628927 0.684655 0.089923 0.270782 0.595377 -0.198849 0.144726 -0.186617 1.465856 1.245311 0.891508 0.282288 0.309239 0.206201 -0.793508 0.689138 -0.012335 0.768174 0.088575 0.549083 1.317916 0.437572 0.578482 1.195431 0.535453 -0.063187 1.147754 -0.213251 1.709194 -1.744762 0.318061 -0.331812 -0.040473 1.100644 1.984317 -0.386972 -0.829841 0.361350 0.207970 0.068843 -1.426667 -0.276505 -0.107488 -0.167973 1.076926 1.261723 -0.111395 -0.513461 1.754637 0.277934 -1.598411 1.471865 0.324443 0.329836 0.176364 -0.765478 -0.421033 0.859396 -0.103685 -0.051861 0.850969 0.667435 -1.415057 -0.867402 -0.031912 1.170353 -0.319163 0.155545 -1.197421 -0.346503 0.953506 1.494086 0.393942 0.828918 -1.038421 -0.783462 0.352215 -0.123512 -0.066521 0.303601 0.355196 -1.029125 0.258872 -0.279207 -0.419192 +PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 1.163713 -0.215027 1.038115 -1.102210 -0.090600 -0.094342 1.941323 -1.200044 -0.399872 2.531840 0.176589 -0.496798 -0.701150 0.092684 -0.024786 -0.736925 0.947750 -0.466364 -0.251307 -0.090353 -0.580623 0.238311 -0.399295 -1.782791 0.779817 -0.412986 1.174754 1.593393 -0.783886 0.997200 -0.053396 -0.888824 0.674584 2.675852 0.836401 0.011014 -0.893116 2.363179 -1.260187 2.222496 -1.840787 -2.088777 3.106953 -0.485487 0.111276 -1.680929 0.560143 1.288357 0.088099 -1.834489 -0.448009 -0.392416 1.352464 -2.195096 -1.354943 1.806149 -1.579903 -0.381551 0.937644 -1.608327 -2.328992 -0.783372 0.425399 1.004334 -2.137985 -1.554973 0.304953 -0.635097 -0.727337 0.826219 -1.800704 -1.594707 1.971526 0.523208 -0.743927 0.245878 -0.678428 -1.549805 0.964909 0.714467 -1.040543 -1.397269 -0.091933 -0.640965 1.016761 0.110658 1.886361 -3.182798 0.398394 -2.757234 1.332742 -1.406589 1.640075 2.034257 -0.691924 1.920309 0.120818 1.892060 -0.723702 -0.866785 1.358706 1.043048 1.416540 -0.060510 1.588305 1.558653 -1.682267 -2.911199 -1.261548 -0.414449 0.822272 -0.861258 -2.655116 0.782479 -1.545810 0.382315 0.182544 -0.370073 -0.857692 2.558226 -3.154186 0.150833 0.860585 -0.575991 1.278069 0.889342 0.072347 0.345616 0.287362 1.469838 0.372991 0.337336 -0.186388 1.908708 -1.472983 -0.335334 0.200472 0.353204 1.080241 -1.419671 -2.385907 -2.834840 -1.066302 1.624416 -0.760961 0.837795 2.685812 -0.375936 -1.549863 0.930064 -0.657387 -0.331433 0.699160 0.773486 1.852955 -1.945258 0.600963 -0.405129 0.813684 1.320454 3.834152 -1.016126 -1.949665 2.143627 -1.262462 -0.398298 1.771629 0.172138 0.247228 0.194722 -0.482983 -0.832846 -1.055868 2.178748 -2.131129 1.933301 -1.635812 2.915472 -1.378657 -0.590000 0.195685 -1.865703 -0.727129 -2.164458 0.272472 0.365933 1.584912 -1.997732 -1.712413 -0.339491 -0.330414 0.230272 2.699634 -2.280865 -0.665416 -0.407165 -0.684692 2.600283 0.179380 -1.232977 -0.785801 -0.958259 0.671801 0.780331 0.287929 -1.619755 -1.301483 -0.523094 -0.967841 -0.184644 0.416758 1.538431 -1.264012 -0.174685 1.648916 -0.147881 -1.051746 -0.485675 -3.128776 0.782531 0.932262 0.261866 0.297025 2.717523 1.508135 1.084856 -0.467157 0.033023 -0.157918 -0.909737 -3.158509 0.720522 0.248672 0.505362 0.779479 1.602999 0.679636 0.670371 1.186563 0.596954 0.349210 1.790131 0.468848 1.429779 -0.925615 -0.394321 1.399790 -0.288837 1.766154 1.212060 0.313125 -1.468816 0.983811 -0.615654 -1.558057 -0.212070 -0.456213 -0.246264 0.323927 1.075210 1.531170 -0.600028 -0.567906 3.349778 -0.138388 -3.607963 1.158956 0.993226 1.307170 2.033360 -1.104944 1.644305 1.095990 1.262124 1.300531 0.535914 1.171461 -1.953076 0.232068 0.309715 0.758618 1.256142 -0.179102 -3.558339 -1.019986 -0.066289 2.591800 0.614038 2.824756 -1.200148 1.656634 -0.107242 -0.089634 0.625290 -0.580094 1.246486 -0.266463 -0.082752 -3.299820 1.164080 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/the-knights-tour.cpp__solveKT() = 1.944037 -0.597097 1.478850 -3.295120 -0.911256 -0.426078 3.545418 -1.945830 -1.446516 4.126144 0.182593 -1.990310 -3.295516 2.691727 0.219126 -2.326433 1.199653 -2.953588 -0.660819 0.257839 -1.938505 1.432995 -1.104852 -2.343985 1.953189 0.019401 0.800160 3.563448 0.558712 -0.107810 -0.400057 -1.889693 0.287658 5.690209 1.613214 -0.629435 -1.077784 7.696783 -4.634284 5.641107 -4.085705 -4.345997 6.755344 -1.005507 -1.144361 -4.171114 -0.276510 3.750875 -2.959980 -2.704584 0.691097 0.014863 1.033448 -3.885233 -1.448206 4.864043 -6.391298 2.088458 2.506449 -1.471248 -3.728341 -1.983260 0.329192 0.682370 -3.710890 -3.581249 0.384024 -2.493765 -2.680210 0.475317 -4.098223 -2.579006 3.196903 2.021751 -1.250069 1.032674 -1.216222 -2.255433 2.385572 -1.563280 -3.431728 -2.336056 -0.377108 -2.609574 3.809215 0.876477 2.475398 -7.098718 0.953280 -6.754826 1.533667 -4.659898 2.874997 5.747165 -1.634756 4.425967 0.141632 1.881366 -0.195740 -1.822098 3.160402 1.634646 2.317461 1.400888 3.448489 3.467501 -3.695823 -4.776617 -3.160547 -1.633175 0.723866 -1.697706 -5.293080 2.281048 -3.029407 0.399175 0.850079 0.434232 -2.922115 3.078231 -6.149965 0.595401 0.679706 -1.331000 3.185185 3.876782 -0.335852 0.090528 -0.953150 3.463863 0.528310 3.043218 -0.851853 3.941838 -1.467744 -1.918653 -1.472920 0.446582 2.393306 -2.824466 -5.251114 -6.742832 -1.736677 1.040435 -2.506761 4.530818 7.493859 -1.784987 -3.399578 4.094611 -1.961266 2.606789 2.308321 0.918766 5.132016 -2.811250 -0.028148 -0.172232 -0.053418 1.313845 4.904408 -0.996412 -3.674317 3.415790 -1.837767 0.161907 2.466477 1.158203 -0.845201 -1.357078 -0.299411 -2.407938 -4.337412 6.084436 -4.656655 4.151743 -1.594330 6.217207 -1.704688 -1.624674 2.024345 -4.381404 -0.464251 -5.575835 -1.334866 -0.257632 2.226801 -4.170772 -3.263380 -2.043549 0.333446 -1.717792 4.781788 -2.868821 -0.851641 -0.096116 0.552313 5.200227 2.362234 -2.450768 -0.015068 -4.455795 2.051427 2.193168 0.098258 -5.113950 -1.171656 -0.426996 -2.177192 2.247132 0.321920 2.433889 -3.199922 -0.885198 3.179185 0.819452 -0.441106 0.396719 -7.406330 1.607420 1.291183 0.612567 3.079613 5.745348 3.156476 2.693028 0.129633 1.360308 -0.937000 -0.423526 -4.830305 0.358380 -0.153024 1.889378 2.540201 2.848502 2.670690 1.489293 2.902654 2.185433 -1.600962 4.116403 2.131317 4.688093 -0.879461 -2.364805 2.361498 -0.515268 3.437891 3.644799 -1.355858 -2.493974 3.349102 -0.934956 -2.711901 -2.016599 -0.404774 -1.597455 0.043494 3.179811 1.674161 -1.254290 -0.473773 7.395388 -1.806196 -8.601654 2.832837 2.225846 3.319791 2.797981 -0.627569 2.460634 2.772458 -1.193808 3.024387 2.532565 2.412406 -3.532028 1.592343 0.698391 2.066054 2.913239 0.650507 -8.531408 -1.356069 0.507129 5.524428 2.186350 4.973684 -1.850158 0.741363 0.599809 -0.620555 1.161940 -1.009525 3.102511 -0.812297 0.529641 -5.643547 0.486267 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 2.698428 0.254756 2.693143 -5.017009 -2.113951 -1.373595 6.553506 -4.235285 -2.768793 8.743263 1.831124 -3.824556 -2.377650 5.241251 -0.312599 -2.025275 1.775989 -1.831317 -2.036315 -0.490138 -1.898684 2.572517 -1.554540 -5.075147 2.726353 -0.322142 2.083521 5.632912 -2.282574 1.555735 0.228719 -3.137346 2.251921 8.828029 2.207851 -0.584732 -3.726329 9.602180 -10.086637 8.759018 -7.720138 -7.124542 11.529066 -1.413975 0.347942 -8.468738 -2.796854 5.530870 0.599359 -6.755644 -0.946790 -0.154347 2.849342 -7.323898 -2.966298 6.757935 -7.321685 0.424028 4.720405 -5.697167 -7.468245 -2.048608 1.782194 1.740447 -8.121783 -6.057508 -0.130469 -3.034011 -1.318138 1.098674 -6.199475 -6.196770 4.038286 1.408740 -1.488931 1.648795 -3.046031 -5.660250 4.505786 0.261811 -4.356077 -4.125167 0.011679 -3.399595 3.002339 1.726862 5.945681 -11.357511 1.167708 -10.299407 3.444513 -5.873991 4.571522 7.739393 -2.440803 6.430347 0.696178 4.927772 0.631843 -1.196232 4.561160 3.533281 5.102296 1.332973 6.191365 7.077546 -6.450691 -8.931336 -5.914393 -3.863591 3.619116 -3.510246 -8.456237 3.829148 -4.232436 -2.876106 0.147799 -1.729692 -2.093887 9.130900 -9.577223 2.223836 3.826942 -1.998764 2.655966 5.306063 -0.056646 -0.036740 -1.894378 3.950034 0.546674 4.021569 0.036592 6.709762 -5.377181 -4.593315 0.028752 1.530724 2.414887 -5.720438 -7.275263 -11.629032 -1.811351 3.772839 -4.273517 3.183730 10.876671 -3.629878 -6.738572 4.904826 1.724500 -0.869825 2.178540 1.895572 9.649287 -5.744567 0.527906 -0.766645 -0.331818 4.364066 11.205212 -2.396206 -7.009357 6.316812 -4.204160 -7.367295 8.355210 0.611989 -0.424370 0.507854 1.236613 -3.085347 -4.253152 8.317011 -6.851629 7.305222 -5.473894 8.995443 -3.842059 -1.576785 2.168005 -8.292027 -2.690068 -8.073698 -0.630751 0.314530 5.615001 -5.282388 -4.773303 -3.359464 -1.966342 -1.673608 8.682456 -9.918102 -1.107685 -0.340356 -0.906702 5.521233 2.440839 -3.677180 -0.391189 -5.066048 3.099451 4.325391 1.920979 -10.164880 -3.369184 -2.807215 -3.175484 -0.698805 0.510778 5.587466 -4.371301 -0.254680 5.576459 -1.017357 -2.936339 -1.540293 -8.887848 2.904705 -0.120189 3.351510 2.269364 10.119793 5.536501 5.358379 -0.371482 1.980718 -1.220173 -2.804300 -9.707184 2.854823 -0.114469 0.910137 4.418350 5.348671 3.610619 3.420462 5.661695 1.440847 0.230598 7.393258 2.010111 6.900162 -1.307140 -1.933808 4.095463 -0.176008 5.804100 6.097569 2.606120 -5.679579 3.935138 -3.204549 -6.388959 -1.069751 -0.855768 -0.935843 -1.737182 5.819003 5.019387 -1.959439 -1.540350 11.678815 -1.817642 -13.204812 4.644039 2.860004 5.376067 5.539877 -2.378282 5.799407 4.583829 2.750672 4.223652 4.172749 4.701472 -7.506015 -0.530245 1.256431 3.749314 8.177833 0.803864 -16.978733 0.363584 0.943300 8.364496 -0.689089 9.834740 -4.779683 3.981657 0.744485 0.733682 1.890974 -1.833036 4.276345 -1.673484 -0.318694 -11.092666 2.821713 +PE-benchmarks/the-knights-tour.cpp__main = 0.441242 -0.110433 0.417431 -0.806255 -0.222759 -0.146939 0.842484 -0.404732 -0.328227 0.622473 0.058711 -0.450614 -0.913923 0.653811 -0.003170 -0.686364 0.256234 -0.709259 -0.252519 0.042593 -0.446625 0.290482 -0.220880 -0.598220 0.514683 -0.016100 0.166410 0.873190 0.213134 -0.229583 -0.110772 -0.413377 0.161683 1.382077 0.296281 -0.027013 -0.226543 1.847458 -0.786060 1.257129 -1.044233 -1.015338 1.646669 -0.300645 -0.294006 -1.204303 -0.148258 0.904744 -0.876399 -0.526865 0.142735 0.046780 0.107757 -1.015799 -0.311680 1.249559 -1.651728 0.703857 0.597750 -0.325185 -0.822417 -0.466719 -0.043574 -0.033256 -0.561335 -0.871429 0.056905 -0.511294 -0.787052 0.222309 -0.905981 -0.573177 1.131332 0.441229 -0.247656 0.362066 -0.230911 -0.448473 0.563431 -0.521778 -0.769150 -0.605787 0.083363 -0.289411 0.979281 0.205056 0.407228 -1.714296 0.035542 -1.603534 0.431994 -1.202545 0.698448 1.313015 -0.489601 1.140465 0.048314 0.074447 -0.124383 -0.226435 0.814028 0.299921 0.596316 0.296978 0.797239 0.622301 -0.754485 -1.125736 -0.687610 -0.440311 0.077859 -0.290128 -1.415743 0.514274 -0.727997 0.271530 0.193920 0.182962 -0.524591 0.516031 -1.381072 0.186710 0.276830 -0.335374 0.782676 0.959110 -0.094546 -0.032975 -0.307998 0.834787 0.128602 0.727131 -0.240360 0.917300 -0.074238 -0.862980 -0.474376 -0.025349 0.509248 -0.636857 -1.287233 -1.437956 -0.394683 0.233034 -0.612332 0.916156 1.813657 -0.395684 -0.858554 1.000601 -0.207806 0.805494 0.596580 0.291197 1.286148 -0.683270 0.010040 0.021129 -0.008031 0.394272 0.755411 -0.279341 -0.942489 0.798628 -0.310808 -0.209906 0.651800 0.173587 -0.146242 -0.031225 -0.152047 -0.629852 -1.098792 1.444634 -0.583906 1.180906 -0.306248 1.558520 -0.489914 -0.566508 0.443636 -0.786013 -0.048715 -1.190823 -0.284233 -0.036334 0.464461 -1.073297 -0.851884 -0.427983 0.050191 -0.365439 1.165724 -0.462075 -0.213176 -0.077273 0.115171 1.009273 0.571107 -0.664048 0.116425 -1.166482 0.480957 0.487267 0.124901 -1.337659 -0.158601 -0.024273 -0.502751 0.641867 0.105512 0.522149 -0.536957 -0.227243 0.785272 0.078897 -0.091420 0.020958 -1.392544 0.239722 0.277487 0.060583 0.667666 1.373894 0.938295 0.569031 -0.037133 0.338998 -0.191965 -0.120374 -0.944943 -0.021348 -0.135027 0.561875 0.598516 0.567465 0.652014 0.283535 0.761386 0.557292 -0.415545 1.016956 0.651807 1.190786 -0.289920 -0.605803 0.557794 -0.168281 0.902731 0.904394 -0.467378 -0.543663 0.832575 -0.030630 -0.472847 -0.630494 -0.188020 -0.343173 -0.190226 1.001859 0.359106 -0.342122 -0.070181 1.779761 -0.419680 -1.983091 0.741206 0.530474 0.751388 0.456208 -0.127117 0.441108 0.792039 -0.340412 0.506050 0.489038 0.673296 -0.890611 0.216744 0.152694 0.539977 0.512972 0.198067 -1.867598 -0.422605 0.210963 1.338195 0.517737 0.963249 -0.396595 0.017509 0.079081 -0.079858 0.230336 -0.169373 0.644775 -0.268800 -0.024577 -1.214609 0.046119 +PE-benchmarks/coin-change.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.832319 0.357842 1.637429 -3.664960 -0.356317 -1.275502 7.622469 -4.831650 -3.872682 10.565451 1.195573 -4.290812 -3.281165 3.646800 0.410862 -1.716906 3.235282 0.768089 -2.062202 -1.383485 -3.832062 0.943088 -1.581919 -6.100302 2.532423 -0.923044 2.573452 5.306329 -3.559190 3.277624 0.514494 -3.072385 2.817961 9.252662 2.941997 -1.218074 -4.911003 10.280953 -10.653751 10.222276 -7.001571 -7.132333 12.871527 -1.253663 0.818404 -7.414232 -1.716305 5.739469 2.678316 -7.560431 -2.523599 -1.039618 2.966620 -8.064599 -4.574752 8.453105 -5.603573 -0.780082 4.812579 -8.054278 -10.227212 -1.693585 2.486321 2.542385 -10.145198 -6.808290 -0.014463 -3.167560 -0.906016 1.827680 -9.133083 -7.072133 2.875392 1.816917 -1.322877 0.987172 -4.625754 -3.412287 3.315086 3.355418 -4.348410 -4.536538 0.296197 -3.379781 1.599592 3.329963 8.282846 -12.439838 1.433866 -11.901191 3.509560 -6.009279 5.824593 8.233994 0.710595 7.322273 0.409017 4.661613 -1.660462 -0.886946 4.176992 2.772709 3.979203 0.666074 6.652420 7.938172 -6.864728 -11.207750 -5.203194 -1.920051 3.915429 -1.803776 -7.047228 4.601587 -7.154923 -1.478223 0.102003 0.240615 -2.843018 9.344270 -9.627149 1.825180 3.714956 -2.490787 5.207445 5.323966 0.703213 0.965754 -1.413738 3.477905 1.946828 3.324661 -0.253877 7.348197 -5.172020 -3.397238 0.528599 2.110919 3.912748 -6.286246 -7.708339 -11.239418 -2.891475 6.319154 -4.731171 4.248379 12.165681 -3.858737 -5.023623 3.657843 -1.566220 0.160433 2.019479 2.492734 12.942468 -7.608510 2.475221 0.789456 1.674938 5.303865 13.155284 -3.896430 -8.150379 6.989185 -3.678079 -4.072621 9.642967 0.131395 0.179253 2.543797 1.050624 0.003061 -4.777142 8.482202 -9.672072 7.292251 -5.837508 9.896131 -4.035445 -0.245870 2.312438 -7.274947 -3.601681 -8.354339 1.520783 -1.483517 6.880962 -4.806891 -5.386486 -2.245197 -3.449125 -0.436213 11.026746 -8.612955 -1.837043 -0.572500 -2.980399 7.162288 1.335730 -3.885491 -2.281542 -6.262098 3.045943 3.756318 1.078494 -9.605525 -4.632050 -2.216121 -3.566625 -2.297502 0.895929 6.068548 -5.077554 0.410657 5.966269 -0.184957 -3.153498 -1.897148 -7.445005 3.700485 1.711108 2.546472 1.952703 12.295893 5.080552 5.928919 -1.099882 1.579813 -1.658771 -3.291580 -12.355591 4.015137 -0.523791 2.868519 4.106333 4.486900 1.844257 3.973457 5.215727 -2.235177 1.811410 6.990925 2.388266 6.982936 -3.076055 -2.396491 5.084055 -1.852443 6.015101 5.712520 1.209995 -8.309746 3.770655 -5.402322 -8.392761 -0.511798 -0.983853 -0.342481 -2.304869 5.950865 7.467385 -1.074858 -2.895266 13.734530 -1.544314 -16.480771 5.111063 3.415811 5.128231 8.950280 -3.152533 7.971948 4.733671 6.594817 2.791918 4.797126 4.889467 -8.950249 1.833358 1.236292 3.265608 7.321826 -2.049727 -19.941890 -0.231501 1.200422 9.814548 -0.360406 10.601123 -5.261518 6.848968 0.674618 0.867740 2.769815 -2.242549 5.906104 -1.407327 0.321514 -12.925269 5.547188 +PE-benchmarks/coin-change.cpp__main = 1.068243 0.047316 0.623263 -1.528214 -0.679596 -0.163066 1.431149 -1.482451 -0.912362 2.002838 0.605178 -1.313622 -0.999873 1.549456 -0.191730 -1.000684 0.701309 -0.237435 -0.551458 -0.362237 -0.877967 0.468881 -0.502605 -1.556514 0.670918 -0.317828 0.477410 1.589747 -0.122383 0.330207 -0.298921 -0.836699 0.611887 2.934541 0.908916 -0.434382 -0.858051 3.519850 -2.252408 2.532706 -2.264865 -1.962035 3.555661 -0.440074 -0.147684 -2.486472 -1.052701 1.626972 -0.303127 -1.416442 -0.225561 -0.380973 0.673524 -2.060317 -0.981693 2.501823 -2.451321 0.725859 1.385244 -1.649689 -2.265614 -0.723129 0.429496 0.424151 -2.141079 -1.958044 0.216254 -0.413109 -0.693406 0.443607 -2.285654 -2.108961 2.031385 0.649518 -0.569310 0.382298 -0.923181 -1.445319 1.147055 0.173817 -1.696219 -1.184356 0.228976 -0.714160 1.287515 0.571711 1.954232 -3.869926 0.265357 -3.834048 0.988923 -2.139074 1.711194 2.617515 -0.891461 1.940720 0.299746 1.035976 -0.004603 0.068559 1.676424 0.776030 0.976645 0.292634 1.945141 1.880558 -1.489466 -2.617191 -1.317771 -1.016494 0.579912 -0.510875 -3.118809 1.290331 -1.943717 -0.080923 -0.203565 0.187996 -0.690329 2.419557 -2.593654 0.171338 0.933436 -0.743776 1.523783 1.916267 -0.040107 0.302818 -0.770358 1.479116 0.278772 1.045672 -0.362619 2.009701 -1.130686 -1.963197 -0.969618 0.476695 1.189173 -1.867146 -2.667600 -3.055016 -0.823356 1.170450 -1.334051 1.608366 3.853950 -1.236306 -1.921118 1.743378 0.089602 0.467621 1.459248 0.686106 3.779983 -2.020866 0.515570 -0.051561 0.111258 0.996410 2.128788 -0.990514 -2.069487 1.801373 -0.805161 -1.511632 2.982109 0.024137 -0.334503 0.665592 0.131987 -0.536049 -1.856807 2.857143 -1.584260 2.400084 -1.097405 3.331282 -1.269714 -0.946656 0.845073 -1.529371 -0.671818 -2.047480 0.180350 -0.235475 1.893706 -1.640848 -1.782390 -0.499279 -0.700923 -0.463144 2.903831 -1.057349 -0.331012 0.058073 -0.468411 1.751297 1.201288 -1.098763 -0.100329 -2.104097 1.003734 1.513405 0.189509 -3.068960 -0.910887 -0.684788 -0.899033 -0.189126 0.257476 1.701428 -1.441871 -0.313304 1.356622 -0.060287 -0.171946 -0.169585 -2.379016 1.083152 0.036833 0.560807 0.753530 3.335966 1.960636 1.814739 0.051803 0.381867 -0.317563 -0.781207 -2.452679 0.685980 0.083166 0.985672 1.261712 1.704368 0.885618 1.090626 1.660095 0.158084 0.351662 2.232449 0.949871 2.679320 -0.862983 -0.696305 0.981827 -0.540895 2.144601 2.586733 -0.120561 -1.825233 1.217133 -0.731522 -1.780991 -1.295986 -0.315346 -0.245848 -0.791875 1.782633 1.630366 -0.353496 -0.794554 4.025493 -0.393025 -4.534285 1.805958 1.018249 1.436982 1.928636 -0.735348 1.579433 1.526204 0.727217 1.029939 1.511300 1.623531 -2.418972 0.037425 0.298548 1.262758 1.495133 0.086425 -4.774480 0.256527 0.792331 2.937077 0.357181 2.456046 -1.487859 0.914747 0.291339 0.082103 0.531006 -0.374447 1.545296 -1.042136 0.115638 -3.006207 0.543553 +PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/magic-square.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/magic-square.cpp__generateSquare(int) = 4.543399 0.946571 2.115256 -5.287349 -1.740027 -1.254524 11.055979 -6.177963 -4.033726 7.648662 1.289652 -5.299018 -8.287785 3.411317 -0.220755 -3.767388 2.242906 -0.882626 -2.142516 -3.537878 -3.865033 1.162456 -1.445916 -7.249459 2.161042 -2.832168 3.085086 10.284087 1.304060 3.354692 1.754933 -3.772008 3.734888 10.940380 3.699532 -0.635170 -5.748844 14.617526 -11.277038 10.611856 -9.474358 -8.706386 18.948367 -1.205746 -2.880372 -13.570317 -4.437338 6.122672 -2.308579 -6.120069 -3.186716 -0.942025 3.580773 -9.050676 -5.681894 12.849646 -9.680013 1.092045 4.399272 -10.563596 -11.135962 -2.122572 1.764299 4.065301 -9.808239 -7.873153 -0.013814 -5.653118 -2.295379 2.905485 -10.166433 -6.884270 8.026815 2.688050 -1.749250 0.807807 -5.155941 -2.691057 3.479515 1.965663 -4.628768 -5.631238 1.384766 -1.331209 1.282145 4.082007 9.190478 -14.608931 -3.314547 -13.560757 4.868490 -9.576631 7.085557 8.163108 0.830184 12.814368 0.381108 -1.435958 -1.194035 -1.585850 5.091875 2.056279 9.983069 1.688937 7.250167 9.036681 -6.393652 -12.347258 -8.544208 -2.748174 3.918232 -1.615786 -13.129954 5.226593 -8.742374 -1.639868 -0.091619 -0.151340 -2.986223 10.401534 -7.906765 6.517378 4.067438 -2.886604 6.373708 8.219245 1.123977 1.960335 -0.917196 4.408456 2.429695 7.584269 -0.115523 8.549901 -4.807190 -9.123457 -1.719917 2.789018 4.667777 -7.535718 -9.173734 -11.463446 -4.403490 6.701646 -5.510646 1.820720 17.085180 -4.059267 -7.258741 4.586197 1.679878 3.239220 3.013257 3.019764 17.916628 -8.789566 2.398940 0.454054 1.852548 7.209284 19.071127 -4.560143 -9.574604 8.700766 -3.904947 -7.188845 9.989148 -1.184144 -0.228449 5.956848 0.056671 -0.552633 -8.612865 12.032907 -6.018858 13.971355 -6.930103 12.395380 -5.533441 -2.475548 2.444282 -6.275115 -4.660217 -11.342698 2.977992 -1.612965 7.665046 -6.278156 -6.712048 -6.382556 -4.205110 -0.868160 12.438434 -10.329465 -1.890769 -0.365717 -3.375785 7.160515 2.551523 -4.084214 -2.387013 -10.504831 3.894010 5.061638 3.378389 -14.419267 -5.587036 -1.852477 -4.116454 -1.408155 1.055285 7.370345 -4.370449 1.341580 5.630343 -0.545492 -2.751200 -1.791912 -11.555934 4.806057 2.083172 2.797801 0.513450 13.962429 9.956505 5.948667 -1.063700 3.738242 -1.215571 -4.112269 -11.313004 4.563931 1.369805 1.122751 4.844290 7.109388 2.060169 4.815121 8.996356 -0.480757 0.286082 7.537975 3.477155 12.010088 -6.013165 -5.263394 4.669198 -1.450117 7.432788 8.642051 6.158594 -10.122238 4.907765 -5.443226 -8.292594 -5.576567 -1.775907 -0.492793 -2.380976 14.891585 8.706303 -1.713829 -3.379595 16.445067 -0.662871 -21.126902 7.384563 4.649298 4.929064 7.691328 -5.004686 6.666924 10.325194 5.325055 1.610124 5.514997 5.605500 -10.707077 0.848068 1.294344 4.521554 7.187808 -1.818738 -29.044926 -2.162751 3.717598 12.949799 0.008529 16.918584 -6.413508 5.603512 1.642966 2.061396 2.606766 -1.384461 5.610399 -3.601565 1.670085 -15.549248 5.278802 +PE-benchmarks/magic-square.cpp__main = 0.932405 0.199131 0.650175 -1.381735 -0.501616 -0.447129 2.601335 -1.240526 -0.869661 1.374914 0.318657 -1.250322 -1.970529 1.057782 -0.112037 -1.031330 0.506125 -0.387973 -0.628681 -0.702754 -0.824466 0.409018 -0.285248 -1.625828 0.709763 -0.599748 0.577974 2.442832 0.392524 0.398003 0.389111 -0.835205 0.925432 2.625818 0.639415 -0.049303 -1.192298 3.562892 -2.396604 2.510962 -2.288443 -1.976007 4.400550 -0.394301 -0.734311 -3.453224 -1.237698 1.482145 -0.774304 -1.307780 -0.633568 -0.048879 0.613746 -2.240561 -1.126067 3.064561 -2.589077 0.545080 1.090869 -2.226910 -2.400284 -0.549409 0.138985 0.549317 -1.987283 -1.860517 -0.069454 -1.275331 -0.771832 0.766219 -2.131102 -1.495775 2.328554 0.601669 -0.368628 0.477743 -0.992811 -0.770073 0.931863 0.117866 -1.093377 -1.358410 0.481834 -0.081958 0.629552 0.764356 1.830740 -3.494108 -0.889092 -3.161121 1.171769 -2.485018 1.596897 2.055959 -0.142614 3.066225 0.078942 -0.560619 -0.305711 -0.100284 1.367233 0.532089 2.323206 0.439639 1.694249 1.897875 -1.418103 -2.846556 -1.935149 -0.772699 0.779857 -0.368174 -3.330424 1.160435 -1.872733 -0.264687 0.068643 0.022950 -0.527596 2.271925 -1.800784 1.573256 1.144806 -0.706718 1.312887 2.033025 0.181097 0.210775 -0.474297 1.165145 0.515538 1.867178 -0.108524 1.969206 -0.901669 -2.559107 -0.476983 0.323128 0.855569 -1.674055 -2.246055 -2.629783 -0.951189 1.404723 -1.307862 0.363288 4.042420 -0.922025 -1.834746 1.324789 0.801558 1.002796 0.710662 0.760347 4.051255 -1.923656 0.405510 0.041095 0.313638 1.686148 3.867654 -0.977440 -2.299515 1.938140 -0.809448 -2.172843 2.573554 -0.329721 -0.022918 1.511485 -0.069748 -0.418678 -2.156032 2.958188 -0.846179 3.461468 -1.573743 3.034855 -1.273863 -0.873086 0.602612 -1.251036 -0.857944 -2.644398 0.582710 -0.229308 1.618170 -1.589023 -1.691503 -1.386508 -0.914288 -0.272414 2.824289 -2.235023 -0.423856 -0.174039 -0.610373 1.425700 0.685342 -1.117033 -0.288980 -2.596897 0.937354 1.151357 0.848413 -3.583733 -0.959552 -0.276405 -0.970251 -0.154215 0.263317 1.553657 -0.843113 0.171838 1.398852 -0.285029 -0.675220 -0.495972 -2.543458 0.917643 0.376369 0.607786 0.199084 3.172414 2.613894 1.249386 -0.318322 0.930315 -0.286811 -0.902750 -2.463452 0.920226 0.140256 0.360625 1.154498 1.663171 0.686362 0.989582 2.141103 0.150332 -0.058415 1.868260 1.077027 2.907186 -1.244447 -1.357753 1.116538 -0.314118 1.882973 2.127398 1.237043 -2.174363 1.293612 -0.855940 -1.703920 -1.500462 -0.541084 -0.147049 -0.770953 3.628365 1.717775 -0.599799 -0.542276 3.834947 -0.248908 -4.791243 1.725534 1.082666 1.208764 1.383021 -0.962676 1.348793 2.551818 0.916534 0.323825 1.112828 1.414588 -2.474765 -0.108094 0.295893 1.086722 1.626570 -0.145754 -6.434471 -0.579792 0.887655 3.021456 0.007574 3.621454 -1.318386 0.976870 0.315682 0.513084 0.446199 -0.264095 1.132878 -0.988863 0.195289 -3.451132 0.937702 +PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = 1.774040 -1.124335 2.503140 -5.347712 -4.060422 0.214241 1.369409 -4.041839 -2.093821 5.944962 1.611409 -3.001589 -2.226156 6.252346 -0.599011 -3.738546 0.345547 -2.378430 -0.447085 -0.435405 -2.129858 3.253220 -2.154689 -2.374386 2.244317 -0.989802 0.364476 3.483820 0.039229 -0.696527 -0.339320 -3.468805 -0.336411 8.297590 2.813406 -0.103025 -1.636946 11.088937 -4.946825 7.512892 -6.861901 -6.886479 8.321725 -1.522521 -0.003967 -4.285483 -2.191337 4.978156 -2.710567 -2.953827 1.689781 -0.396518 2.060602 -4.240276 -0.933602 3.751178 -7.804567 3.189582 4.045762 -3.967870 -4.718943 -2.316970 -0.407037 1.302066 -5.153895 -4.810024 0.607122 0.246647 -2.058691 -0.586427 -3.683744 -5.107989 5.895547 2.533269 -1.893562 1.521145 -0.707426 -3.602470 4.343568 -2.761458 -6.974197 -3.354890 -0.314177 -4.303964 4.917081 1.980446 5.479701 -10.748676 3.347953 -10.993317 3.091234 -4.661414 4.115741 8.187261 -3.950301 5.199135 2.650012 4.001999 2.769890 -0.885077 5.222689 2.236101 1.415627 3.574037 4.830053 5.057249 -4.473563 -5.338363 -4.919242 -4.514139 1.605995 -2.914468 -7.086730 3.755577 -2.574582 0.748038 -0.958633 0.846982 -2.444969 5.736143 -8.913526 -0.294139 2.107584 -1.938873 3.372582 4.659194 -0.779937 0.296753 -2.430390 4.967271 -2.419430 3.474817 -0.946050 6.311751 -2.469596 -2.957652 -4.674595 1.594740 3.015330 -5.468888 -7.050613 -9.338364 -1.964191 2.631478 -4.215842 7.567606 11.765574 -5.435766 -6.065145 6.905354 0.141123 0.918758 4.435752 1.904222 7.089649 -3.117405 -1.720723 -2.072021 -2.442832 1.796574 4.618841 0.079270 -4.345051 5.702169 -1.775908 -2.253891 6.761616 0.623926 -3.299093 -2.722968 1.458488 -3.584042 -4.266989 7.039263 -4.077811 5.332470 -1.647894 9.556834 -2.831984 -3.003892 2.501958 -6.677695 -1.652962 -5.544202 -1.029764 -0.004494 3.889152 -5.586153 -4.372752 -2.149753 -1.769329 -3.419419 5.264174 -1.961979 0.124078 1.754968 0.643058 6.957178 6.005883 -1.106222 -0.344170 -5.576261 3.291103 3.651759 0.068448 -7.164974 -2.327342 -1.723761 -2.553090 1.964467 0.419139 4.644975 -4.684055 -0.562979 2.313424 0.359229 0.803945 1.572064 -8.027984 2.538855 0.562664 3.068826 3.956496 7.416888 5.084925 6.621493 2.382693 2.751484 -1.883035 -0.677544 -3.415229 0.914891 1.359491 2.453684 4.341954 5.572112 5.199340 3.491885 5.445165 3.358959 0.128649 6.988836 0.018293 9.037911 -2.247303 -1.568207 1.694645 1.056530 6.217520 7.741807 -2.185590 -2.154227 4.437153 -1.297270 -3.829558 -3.306453 1.365434 -1.612132 0.062237 2.884067 4.062609 -0.439681 -2.144259 9.739751 -2.195898 -11.232579 5.452405 2.851524 5.356131 3.697172 0.002435 2.875618 3.028736 -2.325335 5.030154 5.736063 4.489283 -6.568852 0.456304 1.003704 4.134172 5.054581 3.761065 -10.085420 1.015216 2.143660 6.270186 0.812671 5.430669 -4.527271 -1.069866 2.200638 -1.670857 0.724739 0.398337 3.063654 -1.729935 1.605494 -5.990321 -1.679130 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 1.393720 -0.808544 2.125088 -3.683679 -1.608834 -0.504876 3.652332 -2.492470 -1.658879 5.357638 0.567698 -2.475392 -2.299624 4.283994 0.059188 -2.035288 0.955217 -2.377004 -0.725032 -0.079632 -1.732365 2.134494 -1.286451 -2.499581 2.027303 -0.414895 1.035422 3.631162 -1.201985 0.275570 0.426651 -2.535931 0.471158 6.198475 1.850515 0.189537 -2.020785 7.946745 -5.678397 7.582068 -5.261452 -5.249809 7.410951 -1.083379 -0.217308 -4.334491 -1.047818 4.058206 -1.506046 -3.592969 0.426597 0.133637 1.538649 -4.272380 -1.475627 4.013349 -5.789389 1.294510 2.924494 -3.275354 -4.437836 -1.762592 0.090229 1.180106 -5.248562 -3.695026 0.016672 -1.883699 -1.901384 0.288956 -3.656474 -3.236256 2.895325 1.888201 -1.148215 1.218503 -1.178628 -2.340605 3.074264 -1.433257 -4.084285 -2.900086 -0.549047 -3.561000 3.175036 1.658103 3.958506 -7.978908 1.688405 -7.584948 2.385597 -4.139239 2.933920 6.057739 -1.432485 4.930924 0.903973 2.859835 0.612043 -1.320526 3.130770 2.224107 2.358193 2.238051 4.329765 4.586555 -4.392579 -5.661578 -4.120319 -2.458915 1.868853 -2.527295 -4.722780 2.604293 -2.430840 -0.232969 0.173016 0.365186 -2.532493 4.458706 -7.103088 1.184704 1.723873 -1.447718 2.456636 3.337558 -0.254034 0.009375 -1.283351 3.346481 -0.537886 3.157643 -0.375875 4.792287 -2.450551 -1.378443 -1.218063 0.944583 2.006212 -3.516030 -5.195943 -8.119411 -1.812070 2.637741 -3.100716 4.885149 8.217512 -2.932485 -4.256091 4.309930 -0.281666 1.109787 1.746486 1.430432 5.321783 -2.777045 -0.818805 -0.953619 -0.924283 2.293128 7.154453 -0.590398 -4.117822 4.610843 -2.235922 -2.255584 4.606710 0.609249 -1.348174 -1.830182 0.579914 -2.659146 -3.570058 5.785584 -5.096680 4.381648 -2.881047 6.774190 -2.059049 -1.315973 1.775667 -6.475428 -1.281232 -5.759676 -0.761619 -0.329196 2.971332 -4.410528 -3.440010 -2.272610 -1.011047 -1.929889 4.923926 -4.971285 -0.629728 0.376052 0.230122 5.846622 2.695348 -1.927359 -0.632123 -4.136841 2.218079 2.460927 0.867788 -5.879204 -1.754108 -0.868325 -2.384743 1.157500 0.431965 3.100444 -3.831324 -0.079029 3.108111 0.050891 -1.066761 0.273718 -7.408349 1.748828 1.384333 2.067493 3.014151 6.247316 3.660266 3.843321 0.510858 2.225388 -1.626571 -0.806364 -5.411527 1.214503 0.472677 1.180428 3.027777 3.850473 3.314805 2.208281 3.991635 2.166749 -0.747155 4.781275 0.857166 5.352736 -1.047528 -1.769637 2.518913 0.521326 4.048303 4.352618 -0.227605 -2.861632 3.632288 -1.890193 -3.711790 -1.209243 0.140746 -1.344690 0.072089 3.529494 2.961681 -1.002392 -0.865710 7.899093 -1.816842 -9.187657 3.241733 2.386532 4.022241 3.282007 -0.647780 3.203988 2.947774 -0.505831 3.466904 3.401893 2.881386 -4.892934 0.890768 0.776821 2.281246 5.453596 1.506134 -10.165639 -0.683512 0.625494 5.526098 0.468828 6.046133 -2.896343 0.948976 1.049321 -0.711134 0.928685 -0.532748 2.846053 -0.399996 0.730611 -6.510531 0.417623 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.751233 -0.738922 2.493069 -3.981696 -3.613869 -0.284232 0.285921 -2.820706 -1.407343 3.921406 0.535069 -3.013799 -3.370760 5.562157 -1.850744 -4.361828 -0.049697 -1.188000 -0.088486 -1.147831 -1.907398 2.707367 -1.470142 -1.685277 2.487388 -1.225981 0.135683 3.181365 2.434282 -0.682007 -0.627422 -2.461846 0.152852 7.283635 1.660557 -0.159765 -0.281775 10.306074 -2.312967 5.931395 -6.304676 -6.069769 6.913071 -1.049023 0.187821 -4.375388 -2.134318 3.963572 -6.278840 -0.052613 1.635536 -0.002922 0.431225 -3.573542 0.336499 4.031576 -9.010623 5.607672 2.763640 -2.055269 -3.075489 -2.258509 -1.439921 -0.042538 -2.020235 -4.037120 0.253537 1.449014 -3.745937 0.787340 -2.882528 -3.332615 6.158063 1.796607 -2.384855 1.951803 0.516144 -2.155292 3.357580 -5.169783 -5.771088 -2.783079 1.186010 -1.624856 5.098106 2.464299 3.426587 -9.602588 1.901564 -9.245335 3.153832 -5.405442 3.922698 7.494169 -4.970701 5.145299 2.043536 1.093502 2.702721 0.429458 5.145709 2.176719 1.341128 2.537575 3.045931 3.630881 -2.811557 -4.216338 -3.344390 -3.458095 -0.728491 -1.558689 -7.621274 2.212351 -2.792378 3.474117 -0.319863 1.211023 -2.163016 2.817235 -8.472425 -1.556404 1.336784 -1.704830 4.056104 3.997859 -0.915055 0.421531 -2.342555 5.390824 -1.689562 2.191465 -1.364713 4.867228 -1.060778 -5.319110 -6.496353 0.331590 2.451903 -4.060075 -6.760206 -7.374467 -2.223416 1.312910 -2.945053 6.479698 10.498288 -3.464729 -5.078174 6.584199 -1.634043 3.113141 5.858226 1.846562 6.119247 -2.742698 -0.902636 -1.435416 -1.279194 1.157587 1.160359 0.124112 -4.045954 4.022748 0.014714 -0.709743 2.740314 -0.020646 -2.502211 -4.556806 0.516560 -3.245329 -3.451001 7.079543 -3.698059 5.338224 -1.961173 8.850447 -2.965098 -4.994988 2.196102 -6.182412 -0.337892 -3.426383 -0.602047 -0.363392 2.992616 -6.591768 -4.349446 -1.315833 -0.763303 -2.644146 4.204609 0.907732 -0.486128 0.867462 1.201755 7.040199 5.159728 -1.417863 1.027027 -5.992003 2.288041 3.042924 -0.253920 -7.917142 0.036475 -0.660544 -2.114177 2.574445 0.372626 2.394763 -3.180959 -1.470247 1.099157 -0.290397 2.049390 1.081512 -4.866911 1.967592 -0.132877 1.590483 3.724355 5.766441 5.887232 4.444102 1.841936 2.128314 -0.820921 -1.601177 0.312257 1.241135 1.927454 1.842170 2.990178 4.811851 4.244409 1.694323 3.680933 3.654310 -1.535731 5.804405 1.464197 8.325274 -3.369025 -1.286290 0.830187 0.011629 5.460971 7.431731 -3.889295 -1.292006 4.266665 0.338625 -0.981701 -4.278082 0.164052 -1.802365 -1.212988 3.298987 2.049633 -1.552690 -0.943801 8.248193 -1.611158 -9.038244 5.462177 2.482209 3.600498 1.086320 0.181268 -0.012274 3.687662 -3.878389 3.227905 3.703700 3.846064 -5.038466 -0.398199 0.242248 3.964643 3.710259 3.081723 -7.288581 -0.083498 3.368177 5.981520 2.254065 3.310059 -2.791743 -3.550517 1.024518 -1.970217 -0.460923 0.198825 2.277116 -1.864996 1.620513 -2.898261 -3.728370 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 2.028574 -0.502889 2.563195 -3.110423 -1.665157 -0.693140 4.722943 -3.352572 -2.004388 7.145001 1.173916 -3.061471 -0.855631 4.335704 -0.049919 -1.154812 1.206163 -0.828156 -1.153638 -0.210140 -1.829389 2.031622 -1.452944 -3.658586 2.208870 -0.481366 1.868748 4.232435 -3.131647 1.895807 0.727124 -2.755752 1.431323 7.022470 2.082092 0.022690 -2.719144 7.929340 -7.755527 8.239817 -5.527305 -5.941560 8.891958 -1.109313 0.501026 -4.357899 -1.732919 4.551826 0.534344 -5.600684 -0.502756 -0.067992 2.447926 -5.436630 -2.347412 4.524737 -5.441125 -0.354431 3.526730 -5.170023 -6.461340 -1.603678 0.738689 1.804224 -7.195502 -4.429821 -0.163569 -1.713586 -0.497469 0.609860 -4.505213 -4.875275 3.354837 1.069060 -1.198246 1.204585 -1.865885 -3.259553 3.667753 0.683987 -4.022763 -3.497335 -0.542468 -4.022461 2.391588 2.034683 5.636710 -9.029669 2.004573 -8.420861 3.347866 -4.293318 3.522126 6.415187 -1.738127 5.359106 1.162854 5.069554 0.392771 -0.766946 3.430933 2.711814 2.900567 1.817180 4.904626 5.886808 -5.516697 -7.324035 -5.214799 -2.954112 3.368757 -2.836977 -5.439945 2.966147 -2.937362 -0.749666 -0.142053 -0.510758 -1.872766 7.195925 -8.076315 2.499934 2.979573 -1.547830 2.284470 3.352885 -0.134137 0.245528 -1.325754 3.189552 -0.403043 2.555828 0.119841 5.542291 -4.525072 -1.736009 -0.116582 1.622816 2.116559 -4.492579 -5.613400 -9.735075 -1.592549 4.488094 -3.569649 3.729787 8.920149 -3.274726 -4.644822 3.846821 1.054134 -0.742082 1.494660 1.865434 6.907458 -4.149094 -0.277502 -1.087008 -0.606789 3.549187 9.353785 -1.340542 -5.167754 5.781647 -2.804492 -4.462774 8.251504 0.394106 -0.884409 -0.416247 1.226620 -2.014643 -3.058393 6.540067 -5.600560 4.752990 -4.377441 7.702550 -2.753905 -0.737470 1.513784 -7.201545 -2.330866 -6.667058 -0.156937 -0.161771 4.549206 -4.523046 -3.841950 -2.136536 -2.121493 -1.328231 6.335279 -6.981139 -0.729693 0.170054 -0.982756 5.432606 1.950257 -2.218904 -1.328375 -4.093234 2.038930 2.787674 0.930477 -6.948759 -2.933435 -1.954416 -2.527923 -0.851319 0.611590 4.249115 -4.606182 0.352459 3.892943 -0.640396 -2.295614 -0.661580 -7.584891 2.270342 1.031719 3.098197 2.425499 7.613179 4.517979 4.714569 0.253668 2.436620 -1.639833 -1.767178 -7.757194 2.631923 0.468368 1.322443 3.413494 4.458661 3.105589 2.844789 3.943760 0.836052 0.820273 5.746245 1.150027 5.685732 -1.410101 -1.199174 3.186422 0.733830 4.874150 4.388110 1.215609 -4.239334 3.133076 -3.088497 -5.360545 -0.123750 -0.092043 -0.739219 -0.431092 3.657893 4.296970 -0.967975 -1.453567 9.120148 -1.549822 -10.597805 3.489358 2.426246 4.448282 5.010361 -1.528020 5.000355 3.225059 2.395244 3.829735 3.724110 3.719374 -6.397387 0.497547 0.922624 2.715444 6.957941 1.203704 -13.178787 0.195011 0.428714 5.904034 -0.999002 7.608839 -4.176519 3.066037 0.790283 -0.418233 1.323800 -0.828271 3.345595 -0.210267 0.724096 -9.032117 1.656557 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = 2.241662 -0.405139 1.794490 -3.566649 -2.157228 0.287692 1.667766 -3.587647 -2.061304 5.028237 0.556736 -2.345333 -3.373445 3.061000 -0.856162 -3.228467 0.323318 -1.040575 -0.428385 -1.356824 -1.828883 1.458183 -1.476968 -2.685561 1.256963 -1.023463 1.478425 3.472134 1.244448 1.491279 -0.328246 -2.527542 0.505275 6.742167 2.688657 -0.148050 -1.630626 8.237981 -3.885814 5.472206 -5.775292 -6.046775 7.401073 -0.752031 -0.098626 -4.925947 -0.861877 3.752123 -3.994834 -1.939580 0.334051 -0.739990 1.615570 -3.699027 -1.643866 4.069540 -6.600788 2.935824 2.474554 -3.036486 -4.316251 -2.062110 0.730120 1.418130 -3.997084 -3.938352 0.324125 -0.478623 -2.395124 0.818913 -4.480144 -3.675091 3.582529 1.858213 -2.007055 0.485560 -1.173573 -2.287424 2.565845 -1.222998 -4.557995 -2.746133 -0.137274 -2.424778 3.547217 2.116399 3.788742 -8.624471 1.589785 -8.584294 2.178457 -4.043635 3.704076 5.950668 -2.958193 4.527675 1.318356 2.499379 0.997098 -1.769649 3.647042 2.080767 2.161960 1.818477 4.112776 4.088515 -3.443086 -5.123945 -3.442265 -2.683429 0.739006 -2.469104 -7.127797 2.258005 -3.678110 0.573323 -0.564600 0.229443 -2.755235 3.780642 -8.444714 -0.670827 0.826902 -1.466016 4.013326 3.155593 -0.351574 1.258571 -0.698084 4.074198 -0.478048 2.065025 -0.771619 4.567084 -1.791159 -2.791442 -3.792832 1.737104 3.199066 -3.610784 -6.093343 -7.419952 -2.521873 1.952543 -2.523706 4.730940 8.626098 -2.646224 -4.823858 4.555804 -2.742732 1.503019 4.282965 1.580068 6.299473 -3.330971 0.023880 -0.694821 -0.568025 1.628948 4.329405 -1.291010 -4.003414 4.575225 -1.784084 0.123096 2.066691 -0.269358 -1.798143 -3.173766 0.250145 -2.543939 -2.968470 5.984956 -5.878479 4.721589 -2.473767 6.966694 -2.825172 -2.691181 1.550200 -7.420973 -1.463243 -4.205062 -0.378522 -1.159242 3.540816 -5.473451 -3.864347 -2.031824 -0.342511 -1.822887 5.623571 -2.491481 -0.840420 0.760373 0.517604 6.167878 3.497273 -1.734643 -0.453125 -4.120240 2.205607 3.585646 0.552584 -6.344671 -1.860993 -1.449036 -2.157263 1.444815 0.545270 3.371578 -3.249077 -0.429839 2.025027 0.162703 0.623437 0.905696 -6.368357 2.558672 0.537276 1.222777 2.739938 6.719632 3.985819 4.068485 0.996264 1.710853 -0.116048 -1.642891 -3.383411 1.184961 1.677949 1.457278 2.789976 3.990553 2.928392 2.270197 3.640256 2.801354 -0.648925 4.973437 1.183030 6.329409 -2.416246 -1.096434 1.520231 -0.024989 4.024987 5.867144 -0.869058 -2.237900 3.238375 -1.616719 -2.670593 -3.004959 -0.153522 -1.363560 -0.471552 3.203139 3.365268 -1.029278 -1.499296 8.621620 -1.169863 -9.310697 4.373853 2.551239 3.250228 3.267481 -1.519347 1.950117 3.079216 -0.913078 3.299970 3.811991 2.907693 -5.128428 1.194853 0.518919 3.215464 4.102856 0.852011 -8.782496 -0.172605 1.677078 6.600096 1.812820 5.454939 -3.205032 -0.200155 1.063078 -1.080172 0.989138 -0.523800 3.489821 -0.826141 0.856943 -5.457857 -0.801601 +PE-benchmarks/channel-assignment.cpp__main = 0.285354 -0.433780 0.758132 -1.588115 -0.936334 -0.008010 0.749963 -0.846661 -0.501294 -0.086556 0.526376 -0.826191 -1.529809 1.215795 -0.002090 -1.590496 0.384056 -0.400536 -0.239753 -0.154105 -0.539446 0.574505 -0.449663 -0.718733 0.755123 -0.364269 0.026816 1.859101 1.417117 -0.149944 -0.316523 -0.667344 0.009886 2.499573 0.641312 -0.071964 0.080541 3.560125 -0.963016 1.719175 -1.518064 -1.338920 2.768901 -0.453636 -0.969183 -2.065793 -1.205434 1.219308 -2.615182 -0.230388 0.698066 -0.142988 0.568217 -1.242769 -0.150110 2.121121 -2.974690 1.316249 0.977407 -0.471182 -0.851234 -0.859315 -0.587675 -0.282333 -0.823402 -1.348831 0.231475 -0.445120 -0.971536 0.122258 -1.219023 -1.202782 2.861631 0.751979 -0.582928 0.633218 0.123673 -1.304840 0.987272 -0.154441 -1.813897 -0.957621 0.063560 -0.514932 2.256032 -0.195795 0.729598 -3.111027 -0.324935 -3.170654 0.717337 -2.219141 1.262843 2.455462 -1.994124 1.784275 0.479013 0.035419 -0.171350 -0.253166 1.747842 0.443948 0.570966 0.689688 1.550083 0.762996 -0.894190 -1.589699 -1.233102 -1.009059 -0.093852 -0.871491 -3.473320 0.731178 -1.266977 0.368423 -0.078411 0.317965 -0.713532 1.190603 -1.408562 0.757618 0.499522 -0.648195 1.107307 1.882025 -0.257805 -0.045868 -0.714451 1.805532 -0.303241 1.256846 -0.805007 1.503773 0.249234 -2.018124 -1.533468 -0.057475 0.874086 -1.134979 -2.469227 -1.928648 -0.733178 0.092855 -0.805250 1.256141 3.362013 -0.978317 -1.734511 2.206748 0.076572 1.607252 1.558038 0.638889 2.235940 -0.932850 -0.237398 -0.717792 -0.519838 0.248374 0.275255 -0.310242 -1.271891 1.343642 -0.324923 -0.744769 2.170555 -0.181530 -0.731180 0.017418 -0.187973 -1.257383 -2.094882 2.860456 -0.094640 2.103484 -0.167351 2.885483 -0.705363 -1.720000 0.753567 -0.587809 0.001542 -1.803994 -0.424858 0.135072 0.649595 -1.673031 -1.725449 -0.843574 0.372767 -0.748673 1.650999 0.644262 -0.195629 0.223649 0.484060 0.875693 1.705010 -0.734127 0.263840 -2.034676 0.895806 1.208573 -0.106425 -2.372055 0.104401 -0.022345 -0.692586 0.787084 0.295071 1.030560 -1.016027 -0.593545 0.661219 0.078535 0.396482 0.508003 -3.093298 0.740337 0.278392 -0.186730 1.300918 2.011021 2.286696 1.154497 0.340291 0.754057 -0.033569 0.112009 -1.072794 -0.112463 0.130258 1.241926 0.945744 1.471437 1.366242 0.589710 1.191573 1.402392 0.005116 1.744189 1.459436 2.731876 0.165863 -1.041813 0.579372 -0.147346 1.830205 2.382123 -0.298912 -0.312601 1.371400 0.652913 -0.485453 -2.493954 -0.199084 -0.510502 -0.442909 1.865869 0.176833 -0.602144 -0.267074 3.043861 -0.548080 -3.251176 1.430548 0.955674 1.187041 0.404213 -0.027896 0.258081 1.435780 -1.216139 1.386100 1.025694 1.233638 -1.543679 0.143129 0.187357 0.938324 0.800640 0.857978 -2.581470 -0.286966 0.486017 2.333053 1.091170 1.448365 -0.640857 -0.597161 0.247886 -0.514583 0.128020 -0.195146 0.763023 -1.067774 0.150284 -1.807163 -0.938199 +PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.390165 0.223083 0.676250 -0.833585 -0.428796 -0.335244 1.281322 -0.626444 -0.434291 1.501422 0.173431 -0.729349 -0.961467 0.900208 -0.195133 -0.562377 0.074856 -0.684719 -0.461692 -0.362574 -0.370034 0.507823 -0.164248 -0.813667 0.631760 -0.166872 0.316633 1.139138 -0.221208 -0.013037 0.381747 -0.500429 0.561109 1.561933 0.212289 0.112930 -0.625808 1.775657 -1.636507 1.627509 -1.723231 -1.552274 2.340632 -0.228467 -0.084356 -1.833485 -0.215692 1.095342 -0.384757 -0.938731 -0.255678 0.154073 0.265010 -1.417715 -0.539522 1.382146 -1.752738 0.561821 0.654297 -1.322840 -1.552596 -0.216506 0.141953 0.223441 -1.022643 -1.115966 -0.179651 -0.594459 -0.651890 0.389321 -0.882028 -0.745813 0.982156 0.147376 -0.192872 0.482802 -0.494353 -0.445518 0.823112 -0.467502 -0.623132 -0.847384 0.303711 -0.395598 0.456701 0.541858 0.792675 -2.101250 -0.091514 -1.711652 0.824017 -1.038809 0.794508 1.189331 -0.257864 1.537362 0.073643 -0.006248 0.061096 -0.178535 0.833588 0.357845 1.311351 0.510574 0.922178 1.215041 -1.165934 -1.672733 -1.197584 -0.729652 0.592892 -0.426410 -1.559455 0.561962 -0.769467 -0.182522 0.347887 -0.306570 -0.280575 1.428821 -1.884799 0.509951 0.707800 -0.309556 0.539512 0.915113 0.098229 -0.065408 -0.195287 0.784608 0.061752 0.830545 0.122374 1.178640 -0.432502 -1.103354 -0.140845 0.160113 0.266477 -0.863837 -1.164108 -2.008041 -0.384773 0.717844 -0.801570 0.602850 2.150181 -0.547434 -1.414048 0.928305 0.225109 0.158707 0.302548 0.416402 1.824202 -0.956584 -0.104458 -0.122186 -0.079480 1.151147 2.342056 -0.342378 -1.326118 1.156942 -0.394974 -1.231557 0.939347 -0.065171 -0.041406 0.176774 0.122432 -0.636203 -0.796891 1.278624 -0.760210 1.682449 -1.085159 1.753255 -0.807715 -0.622400 0.345663 -1.698785 -0.435963 -1.333338 -0.129684 -0.018063 0.759965 -1.164120 -0.829168 -0.777333 -0.414632 -0.358834 1.602499 -1.973450 -0.103171 -0.148014 -0.184997 1.183647 0.356066 -0.774304 -0.109794 -1.221278 0.471322 0.678770 0.684742 -2.147408 -0.466038 -0.298771 -0.584214 0.423576 0.009571 0.892215 -0.453566 0.175407 1.012084 -0.371406 -0.577678 -0.397050 -1.292776 0.345418 0.087597 0.700676 0.349799 1.867201 1.228112 0.767653 -0.221562 0.758166 -0.221307 -0.615084 -1.352262 0.419341 0.032995 0.146265 0.822485 1.037598 0.671309 0.557721 1.261321 0.461603 -0.379075 1.345988 0.220744 1.388385 -0.843663 -0.443332 0.669294 0.168521 0.996959 1.074471 0.180617 -1.146720 0.884132 -0.387523 -0.877916 -0.282724 -0.250815 -0.297769 -0.224376 1.568115 1.019155 -0.456956 -0.082689 2.208544 -0.270393 -2.459241 1.076473 0.545010 0.870508 0.492474 -0.416559 0.663649 1.148580 0.214979 0.234264 0.693802 0.853156 -1.606432 -0.132717 0.188195 0.855669 1.330195 0.197014 -3.401515 -0.519271 0.263313 1.657844 -0.167527 1.946335 -0.800195 0.198481 0.192248 0.210951 0.174519 -0.076833 0.606625 -0.323475 0.101560 -1.852320 0.479135 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = 5.618447 1.582186 3.593783 -6.611051 -2.545941 -2.793942 10.353809 -7.784094 -5.905937 15.161881 3.020443 -8.433285 -5.553791 6.028190 -0.198768 -3.108765 3.514361 0.199586 -3.208553 -3.224490 -4.763309 1.380649 -2.201988 -9.990149 3.637630 -1.068329 3.665560 8.651841 -2.179910 4.171966 0.898940 -4.521421 6.084914 15.149038 4.020429 -3.127797 -7.509235 15.635485 -14.195139 12.639928 -11.704100 -10.969726 20.331891 -2.196190 1.487382 -13.521813 -3.625782 10.106958 0.742040 -11.054307 -4.322224 -0.388996 4.511189 -13.810051 -8.211284 13.251915 -11.334837 1.907346 8.237640 -11.517097 -14.094472 -2.427529 3.859475 3.697402 -12.398416 -10.353875 -0.768885 -4.796656 -2.385593 2.689416 -13.701068 -10.452082 5.546639 2.194222 -2.028581 2.431774 -6.777192 -5.736729 6.258756 2.665657 -6.454034 -7.315186 0.984691 -3.495864 3.519985 4.766486 10.006994 -19.189261 0.583314 -18.200969 6.105499 -10.190387 8.827183 12.660222 -1.929912 11.432387 0.856568 4.119845 -0.927201 -0.836142 7.564849 3.677474 8.311189 1.585954 9.623273 12.134811 -9.922866 -15.731157 -7.878568 -5.107144 5.516008 -2.632399 -11.487105 7.354234 -10.889986 -3.421491 0.549157 -1.680800 -3.750527 13.675606 -14.264745 1.009451 6.477540 -3.943900 7.609464 8.884292 0.660205 1.516098 -2.831549 6.125271 3.049474 5.113549 0.991494 11.607548 -6.453915 -10.181208 -1.328967 3.617339 5.572240 -10.098938 -12.716057 -17.667361 -3.718377 5.721202 -7.459255 4.866466 18.338008 -5.074266 -8.936013 7.026672 -0.364921 0.653657 5.364253 3.880290 20.528128 -11.782592 2.853778 1.195010 1.020795 8.886662 18.247225 -6.426132 -12.523727 10.873573 -5.297589 -6.811647 10.825639 -0.038759 0.217908 3.559945 1.905063 -1.992884 -8.011920 13.036070 -10.384219 12.040972 -8.182176 16.345973 -6.500008 -3.032824 4.456084 -10.200053 -5.192358 -10.511251 1.689752 -1.174553 10.360752 -8.356610 -9.011504 -3.802392 -3.618797 -1.611726 16.716333 -13.032919 -2.242030 -0.044461 -3.975658 8.334038 2.222718 -7.290288 -1.192160 -9.996554 4.170126 6.691504 3.675046 -16.696892 -6.464202 -4.783294 -5.112226 -1.323192 1.069206 10.264812 -6.427206 -0.017291 9.859512 -1.645929 -4.215953 -3.546958 -10.822535 6.215257 0.256929 4.162922 2.642418 19.309602 8.875620 8.669814 -1.907916 3.672883 -2.135786 -4.883861 -15.859183 5.248531 -0.898336 3.133843 7.197053 6.466459 3.959353 6.586280 9.405298 -2.160188 -0.250966 12.082898 3.042404 10.731522 -5.310292 -2.452469 7.361845 -2.405069 10.513181 10.347969 3.837986 -14.016711 6.225244 -7.816747 -11.064992 -3.117774 -2.739356 -0.175209 -4.098738 9.980518 10.980686 -2.330804 -3.806675 20.542553 -2.367546 -23.472058 10.006325 5.391319 7.699313 10.677081 -5.449739 10.347112 8.402452 7.960816 3.130319 7.534093 8.517567 -14.449711 0.765731 1.937646 7.358872 10.151108 -1.258160 -30.853436 -0.972864 3.182762 13.961065 -0.633607 15.907296 -9.157394 6.855665 1.415070 2.424949 3.450198 -3.838375 8.158737 -3.523960 0.043554 -16.733184 7.343819 +PE-benchmarks/longest-palindrome-substring.cpp__main = 1.838992 -0.768584 1.668395 -4.042173 -2.262993 -1.331615 1.047671 -1.305689 -1.763392 3.827866 1.292818 -4.364614 -3.984005 3.987462 -0.015132 -2.891769 1.573899 -1.364153 0.735900 -0.367316 -0.651172 1.121526 0.405842 -2.829674 1.350978 0.295848 -1.842746 3.345123 4.818712 -0.647869 0.292033 -1.014220 2.065810 5.183725 0.305108 -3.137902 -1.618051 7.241982 -3.280495 4.022218 -3.442560 -2.916355 7.674117 -0.971609 -0.466696 -5.437509 -2.507119 4.535006 -2.962821 -3.716929 -0.364882 1.452959 1.754606 -5.018714 -4.079738 5.110339 -7.241024 3.130603 3.022032 -1.723949 -1.687523 0.664243 -0.600798 1.648389 -2.054346 -3.682297 -0.935716 -2.842020 -2.989902 -0.919119 -3.316578 -1.023867 4.839286 1.120575 -0.800197 2.061271 0.202262 -1.924003 3.406192 -2.538646 -3.816862 -1.893724 -1.775801 -1.574880 4.170278 0.023294 2.541816 -6.437415 1.189246 -6.901954 2.763772 -5.365963 1.697382 6.024165 -3.029173 4.166773 0.891118 -0.198656 2.188606 0.119537 4.758339 2.275999 2.462637 2.308799 3.278387 3.714614 -2.544718 -3.293844 -3.137573 -2.497368 0.274627 -1.391579 -5.977648 3.560866 -2.127736 -0.211857 2.144381 -0.947661 -1.808169 3.700472 -3.445731 0.288201 1.531993 -1.257727 0.725626 4.694535 -0.461207 -1.206242 -1.581448 4.398257 0.437916 2.868827 3.421045 4.276683 -0.672691 -5.570905 -0.920414 1.660217 0.950280 -3.602431 -4.334972 -6.686224 0.428253 -0.977197 -2.752475 2.905062 7.860443 -0.968382 -2.738736 4.517660 0.254773 1.227338 3.369173 0.667128 7.577366 -2.287096 -2.508444 -0.087074 -2.093169 2.464641 4.627907 -0.519246 -2.727134 3.465608 -1.301101 -2.796869 1.309209 0.455546 -0.700850 1.095758 -0.092006 -2.824045 -4.836641 4.396406 -1.440382 3.911528 -0.397499 6.940731 1.783434 -3.347592 3.335789 -1.083063 -0.958472 -2.718043 -0.313896 1.044927 0.684815 -3.562637 -3.153991 -2.653335 0.586217 -2.440542 5.024108 -2.517991 1.121161 2.217200 0.002956 2.898989 1.360365 -2.735343 1.036414 -5.238128 1.404007 2.114610 -0.129586 -6.611637 -1.193492 -1.500908 -0.477654 2.856410 -0.661034 3.965987 -2.788943 -1.721769 3.036374 -0.033798 -0.519212 -0.457441 -4.499019 1.544895 1.259716 2.565631 2.874424 6.929599 3.412969 3.215918 -0.827794 4.117497 -1.448349 1.104584 -3.868411 -0.327489 -1.311914 0.874044 2.780146 2.142473 2.093461 3.122659 4.860348 1.833596 -2.299277 4.825108 0.196450 3.802471 -0.424168 -2.645508 2.499841 -0.540567 4.790567 5.196103 0.286158 -4.274429 3.327982 -1.999813 -2.204706 -3.042811 0.154990 -0.259802 -0.408327 4.375734 2.682616 0.662544 -0.407869 4.535243 -0.936055 -8.705133 5.051103 2.301785 2.946585 3.069484 -0.195236 2.686927 2.088880 -0.688374 0.673490 3.820643 2.546300 -5.078167 0.853108 1.539934 3.614746 1.950305 2.726873 -10.239939 -1.583890 1.434217 3.268327 0.576542 4.438151 -3.370335 -2.390270 2.154731 1.144638 0.056239 -2.570427 0.710687 -3.373283 0.227018 -1.899777 1.283719 +PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 5.454864 0.585167 1.711367 -3.909632 0.117268 -1.795193 10.627842 -5.817611 -4.898814 12.963171 1.260915 -5.342363 -3.954921 3.863817 0.646284 -1.732099 3.579255 0.671871 -2.705643 -1.926838 -4.866322 0.693777 -1.715902 -8.722139 3.223345 -1.380073 3.325155 7.523114 -5.172717 4.701011 1.213924 -3.594794 4.118573 11.380233 3.559179 -1.921928 -6.110870 12.569293 -14.272238 12.444313 -8.167618 -8.900380 17.203375 -1.500647 0.990330 -8.662838 -2.424318 7.110628 3.546132 -9.590265 -3.785732 -0.955484 3.693708 -10.501157 -6.223295 11.459762 -7.208477 -1.149690 5.665930 -10.332693 -12.997297 -2.136472 2.915502 3.196377 -12.291942 -8.517926 -0.348870 -4.082166 -0.639666 2.305381 -12.001257 -8.558647 3.648115 2.255397 -0.918818 1.136575 -6.241359 -3.536257 3.857179 4.436611 -4.670937 -5.862891 0.740072 -3.313229 1.297636 4.893088 10.295567 -14.950537 0.651900 -14.346768 4.741893 -7.760179 7.323731 9.751783 1.392521 9.955672 0.193905 5.061298 -2.661695 -1.023647 4.946159 2.914593 5.873619 0.707172 7.772463 10.306813 -8.740970 -14.072079 -6.891501 -1.838322 5.317290 -1.861907 -8.350299 5.861647 -9.230900 -2.183995 0.366365 -0.190036 -3.534818 11.763781 -11.719574 3.143730 4.690644 -3.073344 6.812878 6.041993 1.086038 1.209381 -1.602133 3.552300 3.293862 4.066387 -0.183481 9.106045 -6.931143 -5.032680 1.017977 2.842694 4.868516 -8.271704 -9.424916 -13.750872 -3.295923 8.313143 -6.215351 4.726537 14.774793 -4.501556 -5.860707 3.812622 -0.939775 0.550348 2.106783 3.208070 16.326955 -9.913540 3.412766 1.720019 2.478913 7.467586 17.289261 -5.382292 -10.373100 8.871589 -4.109905 -4.375787 11.591219 -0.049534 0.872200 4.104758 1.190106 0.605676 -5.772373 10.922663 -11.082384 9.509121 -7.451880 12.267227 -5.388107 -0.118371 2.774220 -9.317086 -4.985436 -10.645578 2.332901 -2.150857 8.399685 -5.874664 -6.746110 -3.155874 -4.232942 -0.336699 14.049510 -11.129736 -2.438231 -1.131261 -4.369254 8.163811 0.804829 -5.093275 -2.785180 -7.928300 3.451059 4.523835 1.364302 -12.887092 -5.986636 -2.285363 -4.293803 -2.718114 1.228549 7.549636 -6.422372 1.073906 7.889716 -0.203164 -4.427836 -2.946596 -8.358245 4.640937 2.348534 3.192895 2.012304 15.460502 7.023505 6.731790 -1.997558 2.590986 -1.945720 -4.482543 -15.323067 5.517242 -0.852211 3.440773 5.273536 5.611842 1.673594 4.776091 6.729104 -3.221109 1.998467 8.221667 3.123223 8.694582 -4.160560 -2.924516 6.560659 -2.408340 7.489763 6.420468 2.543640 -11.305710 4.519304 -7.470936 -10.444740 0.180160 -1.490374 -0.205773 -3.293089 8.609933 9.418544 -1.456860 -3.682132 17.292831 -1.857100 -20.354950 6.431259 4.657853 6.130389 10.907872 -4.642210 10.247787 6.645228 9.066650 2.483574 5.738786 6.215031 -11.436660 2.494096 1.536111 4.031424 9.001605 -3.093336 -26.321944 -0.713317 1.967520 12.081275 -0.961708 14.002697 -6.518711 8.916417 0.443559 1.770492 3.809691 -2.827650 7.135563 -2.055254 1.142615 -16.019180 7.736302 +PE-benchmarks/egg-dropping-puzzle.cpp__main = 1.295766 0.244649 0.809308 -1.465411 -0.294424 -0.574251 2.540267 -1.668812 -1.108496 2.906460 0.570258 -1.677954 -0.976452 1.612218 -0.241332 -0.687315 0.806300 -0.016764 -0.914896 -0.656436 -0.949598 0.302038 -0.368794 -2.492443 0.841765 -0.488007 0.994017 2.177834 -1.064980 0.908632 0.222581 -0.930816 1.340088 3.296004 0.860601 -0.305065 -1.567961 3.439956 -3.485106 3.322179 -2.817984 -2.446646 4.797506 -0.473918 0.129301 -3.238918 -1.277438 1.889197 0.457265 -2.234899 -1.074672 -0.240436 0.903394 -3.057410 -1.616767 3.190141 -2.397879 0.229350 1.544960 -2.738717 -3.278686 -0.642701 0.716405 0.710043 -2.920066 -2.365496 -0.084903 -0.777991 -0.553963 0.858028 -2.900557 -2.369004 1.895324 0.424883 -0.317951 0.498836 -1.543679 -1.389305 1.237222 0.620679 -1.226809 -1.666741 0.536725 -0.522596 0.612700 1.103470 2.548613 -4.284623 -0.178606 -3.981136 1.472203 -2.365090 1.974582 2.547688 -0.354033 2.722317 0.015384 1.064607 -0.405802 0.229242 1.502933 0.969732 1.889637 0.067609 2.342076 2.606832 -2.025423 -3.718351 -1.742487 -0.920940 1.187050 -0.642424 -3.221533 1.486121 -2.413417 -0.596217 -0.109216 -0.211329 -0.620492 3.316689 -3.125121 0.837642 1.524981 -0.834062 1.532798 1.815192 0.199411 0.271220 -0.636349 1.117660 0.820402 1.104276 -0.040480 2.426053 -1.862857 -2.407931 -0.184700 0.616099 1.091759 -2.217323 -2.800413 -3.729176 -0.956346 2.078386 -1.629204 1.088628 4.060272 -1.094744 -2.255508 1.235004 0.684399 0.062418 0.971834 0.960601 4.635315 -2.750564 0.926973 0.216860 0.529935 2.119826 4.156555 -1.591816 -2.938151 2.402556 -1.157340 -2.565874 3.524497 -0.132452 0.300595 1.255956 0.222293 -0.344539 -1.730158 3.160105 -2.156128 3.158315 -2.251204 3.626737 -1.827496 -0.713610 0.707026 -2.459420 -1.210011 -2.515419 0.625234 -0.385597 2.489036 -1.808349 -2.063888 -0.771748 -1.238183 -0.052776 3.924139 -2.943799 -0.625519 -0.378126 -1.156660 1.979187 0.427031 -1.631878 -0.284123 -2.228221 0.990058 1.705169 0.833748 -4.147752 -1.373354 -0.763555 -1.126742 -0.835191 0.397376 2.105574 -1.559689 0.130635 2.071868 -0.439498 -1.077005 -0.991578 -2.224618 1.205698 0.109918 0.966018 0.367416 4.234814 2.362125 1.738214 -0.607024 0.604145 -0.473940 -1.584767 -3.587958 1.383263 -0.021652 0.572418 1.457388 2.008416 0.570595 1.231749 2.181579 -0.313829 0.355618 2.453751 0.968730 2.530026 -1.270120 -0.682488 1.559803 -0.615404 2.341396 2.417898 0.803140 -2.978692 1.306346 -1.473707 -2.450982 -0.667861 -0.723942 -0.016145 -1.171797 2.834922 2.409603 -0.613414 -0.850479 4.787975 -0.255238 -5.319186 1.996854 1.232623 1.565587 2.374339 -1.444346 2.294426 2.120363 2.100059 0.535230 1.379331 1.843448 -3.189538 -0.179929 0.394967 1.362198 2.588307 -0.479752 -6.885036 0.030779 0.843500 3.511321 -0.327787 3.691795 -1.839197 1.958163 0.029723 0.664164 0.813555 -0.627632 1.673339 -1.062682 0.043604 -4.054336 1.560832 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 7.230462 0.614713 3.308138 -5.528619 -0.777145 -1.661577 14.373881 -10.136737 -7.370691 20.307330 2.710454 -8.028456 -4.679730 5.577866 0.735863 -1.222441 5.086065 2.640106 -3.994441 -2.994296 -7.171271 0.848243 -3.400621 -13.390579 4.202414 -1.976966 6.542140 10.489826 -8.153360 8.449836 1.503580 -6.287329 6.232201 17.887346 6.566489 -1.663273 -9.768594 18.297220 -19.394487 18.046247 -11.867030 -14.820939 25.597919 -2.502396 3.095162 -10.056771 -1.959761 11.502618 5.934341 -16.203457 -5.935639 -2.157826 6.573359 -15.947391 -10.354339 14.125633 -8.739063 -2.882295 9.117020 -16.438823 -20.893673 -3.975858 5.542579 6.069331 -19.796232 -12.196260 -0.312016 -5.202549 -0.440818 2.705845 -17.711700 -14.077329 4.936900 2.485923 -2.020133 1.179219 -9.504153 -5.615291 6.238010 8.920115 -8.018767 -8.793433 0.279905 -7.143475 1.995564 7.771793 16.349779 -23.135656 2.169161 -22.363909 7.608214 -9.585339 11.474994 14.675987 -0.031718 14.187927 1.515022 11.515305 -3.350376 -1.376171 7.683430 4.064172 8.076568 1.408001 12.848873 15.430366 -13.516240 -21.167818 -11.103847 -4.617497 9.241541 -3.699251 -10.515544 8.770387 -13.961982 -3.698956 -1.286084 -0.079386 -5.625471 17.417931 -20.094287 3.528132 7.284320 -4.528997 10.993153 7.656166 1.051073 3.362707 -1.302119 5.659167 3.183200 3.966529 0.014994 14.446209 -10.016047 -4.633842 1.074552 5.775825 8.314539 -12.606573 -14.784752 -22.233025 -5.454183 13.020160 -9.224001 6.160421 22.118283 -7.178038 -8.395542 5.935361 -2.447034 -0.654666 4.320663 5.166973 23.739171 -15.363498 5.326639 2.503257 2.999121 11.110283 25.397582 -8.182972 -15.642113 14.087775 -6.971930 -5.513249 18.046925 -0.001527 0.402026 3.035036 2.942860 -0.305058 -8.126635 15.796975 -17.350611 13.053885 -11.091084 18.883369 -8.966982 0.567773 3.915433 -14.126240 -8.178325 -15.500224 3.500276 -3.690488 14.359705 -9.538727 -10.386729 -3.754936 -5.957824 -0.522945 20.535751 -16.653275 -3.574055 -0.744611 -6.620756 10.441861 1.317174 -7.144446 -5.239507 -10.648732 4.295018 7.346188 2.984422 -16.137362 -10.502715 -5.896776 -6.770595 -4.851282 2.165047 12.338865 -9.706789 1.808407 11.426321 -0.471570 -6.153027 -3.749500 -13.887208 7.622559 3.145464 5.114311 3.334887 23.592989 10.344342 11.750958 -1.872659 4.026684 -2.917764 -6.562097 -23.402561 8.316113 -0.502431 5.892822 8.320907 8.422048 4.121942 8.584791 9.819830 -5.607404 3.820195 13.976023 3.617928 13.725411 -6.943817 -2.589896 9.562299 -2.279380 11.822074 9.747771 4.818531 -16.965107 6.122369 -12.222690 -16.240627 1.188418 -1.807063 -0.048377 -3.235129 10.125902 15.025819 -0.983279 -6.520235 26.050712 -3.154237 -30.201302 10.067660 6.203143 10.458607 17.896315 -7.678194 16.039805 9.499082 14.140899 6.166846 9.607527 9.621255 -17.507173 3.777552 2.166416 7.451771 13.864402 -4.373722 -37.747727 1.257280 1.496695 16.648765 -1.608085 19.318972 -11.530364 13.949298 0.612290 0.783184 6.069335 -3.844126 12.278579 -0.676038 0.709739 -26.085802 11.005114 +PE-benchmarks/palindrome-partitioning.cpp__main = 1.751740 0.091580 0.737225 -1.528479 -0.501331 -0.142493 2.428408 -2.373399 -1.563014 3.827356 0.701464 -1.822948 -1.224821 1.471046 -0.065148 -0.818472 0.962655 0.266323 -0.838640 -0.688660 -1.579327 0.218653 -0.820062 -2.847445 0.874784 -0.479378 1.261523 2.223199 -1.043571 1.359414 -0.092966 -1.354978 1.194006 4.243770 1.577707 -0.466008 -1.733200 4.558829 -3.398809 3.598311 -2.824059 -3.320669 5.535322 -0.608588 0.441922 -2.282776 -0.579264 2.591031 0.373140 -2.917691 -0.959782 -0.610706 1.209069 -3.353940 -2.118535 3.242138 -2.645545 0.281513 2.010299 -3.083928 -4.240460 -1.076465 1.126799 1.123236 -3.652325 -2.781683 0.159752 -0.678322 -0.592793 0.576606 -3.855815 -3.209625 1.980908 0.737550 -0.618921 0.285772 -1.894347 -1.347798 1.448241 1.301280 -2.175170 -1.869499 0.234945 -1.344132 1.099060 1.597851 3.307532 -5.442106 0.550902 -5.400348 1.643193 -2.393923 2.695561 3.503909 -0.749670 3.011742 0.472172 2.258097 -0.449777 -0.141304 2.110545 0.749258 1.491086 0.356208 2.797584 3.043176 -2.603713 -4.226762 -2.178698 -1.306255 1.511775 -0.677690 -3.100338 1.978793 -3.222585 -0.248197 -0.436585 0.248818 -1.264247 3.383249 -4.575095 0.140844 1.349101 -1.045393 2.796183 1.976103 0.061581 0.867957 -0.510133 1.671758 0.577212 0.797989 -0.261829 3.150319 -1.760146 -1.689188 -0.825329 1.233769 2.099118 -2.880806 -3.705019 -4.741692 -1.283545 2.392256 -2.058392 2.012492 5.278933 -1.686663 -2.143761 1.849036 -0.634197 0.360258 1.848424 1.122554 5.439559 -3.391693 1.162284 0.538565 0.528385 2.033473 3.979460 -1.790013 -3.275242 2.970793 -1.257366 -0.797037 3.801339 0.036878 -0.210960 0.534083 0.479517 -0.349195 -2.181876 3.768124 -3.105647 3.082644 -1.825887 4.645747 -2.125932 -0.545297 1.063971 -2.747475 -1.578713 -3.031523 0.572182 -0.860535 3.137741 -2.428269 -2.494594 -0.622644 -1.072483 -0.373945 4.475096 -2.160478 -0.668157 0.002909 -1.216500 2.365798 0.962851 -1.597167 -0.786852 -2.700627 1.049253 1.967430 0.449428 -3.654383 -2.064540 -1.323641 -1.421786 -0.499220 0.459696 2.699714 -2.150449 0.047927 2.240456 0.061056 -0.625513 -0.494300 -3.036644 1.718164 0.435783 0.856692 0.963683 5.223477 2.550437 2.741418 -0.124957 0.726088 -0.495104 -1.334839 -4.233048 1.388563 0.023524 1.696547 1.915213 2.000304 1.107331 1.871250 2.257293 -0.721581 0.631242 3.293299 0.988623 3.610315 -1.752915 -0.546976 1.738246 -0.672624 2.936078 2.897785 0.193559 -3.350814 1.499996 -2.142171 -3.074617 -0.635733 -0.416204 -0.167289 -0.822185 2.110193 3.017965 -0.178645 -1.516539 5.949555 -0.666623 -6.674345 2.622991 1.443329 2.254870 3.602619 -1.604004 2.994816 2.168827 2.211089 1.404897 2.303019 2.327265 -3.799582 0.779753 0.426023 1.999683 2.279526 -0.601184 -7.405667 0.471109 0.768315 3.867273 0.231796 3.633260 -2.545543 2.238344 0.202907 -0.004983 1.221092 -0.637524 2.740722 -0.566047 0.212543 -5.124519 1.684386 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = 1.262215 0.163070 1.354567 -2.625862 0.302333 -0.964400 4.458088 -2.208055 -1.083171 4.975723 0.453253 -1.978922 -1.382108 1.824156 -0.005378 -1.049498 1.745047 -1.650806 -1.120715 -0.158232 -0.902812 0.741974 -0.519747 -3.047427 1.261658 -0.230243 1.868593 2.953116 -1.889815 0.204103 0.150182 -1.369444 1.616346 4.527391 1.075339 -0.122104 -2.433659 4.386186 -4.241996 5.401109 -4.178882 -3.136862 5.670197 -0.778324 0.588273 -5.229319 -0.825807 2.772866 1.294396 -3.845891 -1.304402 -0.243586 1.334600 -4.364900 -2.201479 4.118605 -3.264176 -0.298386 2.429458 -3.007507 -3.979855 -0.997474 1.820786 1.308741 -4.193547 -3.081448 0.162775 -2.464746 -1.513549 1.441726 -3.851772 -2.968488 1.225087 0.964098 -0.728306 0.800480 -2.018755 -2.414221 1.928415 -0.059770 -1.386257 -2.343590 0.259202 -1.755323 1.016156 0.428095 2.793914 -5.749337 -0.084282 -4.729781 1.783558 -3.204565 2.511802 3.592891 -0.086970 3.592886 -0.456324 1.680200 -0.776983 -0.512459 1.823706 1.853377 3.059688 -0.092639 3.876075 3.249419 -3.224567 -5.289692 -2.300065 -1.330176 1.798333 -1.163640 -3.204680 1.917593 -2.960549 -1.352338 0.512457 -0.661053 -1.305925 4.227286 -5.359489 0.464050 1.776918 -1.114143 1.691113 2.746897 0.204987 0.332552 -0.491355 1.780189 1.129365 1.960477 0.138942 3.368850 -2.663257 -1.725345 0.788109 0.455236 1.394546 -2.508120 -3.809583 -5.425403 -1.952311 1.712972 -1.944626 1.954316 4.791313 -0.952041 -3.775424 1.711239 0.286597 -0.130240 0.436803 1.100817 5.235347 -3.653705 1.142713 0.039155 0.739512 2.869421 6.772419 -2.003730 -3.888591 3.035280 -2.846912 -4.418745 3.193921 0.628458 0.670299 0.909111 0.060612 -1.344886 -2.507490 3.944391 -4.247380 4.614730 -3.574432 4.582858 -2.255660 -0.553279 0.753876 -3.639227 -1.052630 -3.825433 0.143685 -0.466492 3.288891 -2.304662 -2.662611 -1.327121 -1.306592 0.045094 5.095102 -6.094254 -0.972873 -0.824894 -1.094501 3.746215 0.218709 -2.683281 -0.313935 -2.404597 1.640680 2.333463 1.681324 -4.786155 -2.014204 -1.338232 -1.928707 -0.759765 0.397365 2.820681 -2.338765 -0.185240 3.308021 -0.419374 -2.103820 -1.490297 -4.884514 1.400355 0.511634 0.905804 0.534427 5.415732 2.219877 1.946646 -1.057104 0.087370 -0.650352 -1.958290 -5.955658 1.241000 -0.191399 0.260693 1.786476 2.016272 1.283215 1.348867 2.482694 -0.018121 -0.303389 3.451173 1.019331 2.332058 -1.325857 -0.917385 2.523059 -0.757477 2.606587 2.486904 1.823641 -3.847086 2.134118 -1.680614 -3.392950 -0.810337 -1.211163 -0.471087 -0.611266 3.578783 2.498967 -1.365619 -0.697414 6.074061 -0.495846 -6.940580 2.157279 1.457780 2.342903 3.248518 -1.763221 3.410498 2.776482 1.810770 1.076242 1.242819 1.990221 -3.568621 -0.231116 0.574575 1.548734 3.871410 -0.650634 -9.150309 -0.530489 0.171183 4.983173 0.259869 6.045937 -2.122849 3.132343 0.405390 0.699138 1.115307 -1.267406 2.758523 -0.567683 -0.937179 -6.324956 2.691027 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = 0.953365 -0.229970 1.193149 -1.453692 -1.051769 -0.004632 1.446854 -1.646912 -0.640350 2.541001 0.639466 -1.246806 0.052111 1.687158 0.099236 -0.567634 0.448520 -0.034763 -0.330363 -0.245240 -0.229155 0.802289 -0.589848 -1.372804 0.715335 -0.368497 0.639761 1.459146 -0.907254 0.588884 0.067542 -1.110756 0.698963 2.847144 0.738037 0.181474 -1.115365 3.091112 -2.468049 2.767554 -2.445708 -2.425132 3.531781 -0.450277 0.332886 -2.479333 -1.330636 1.610802 0.410580 -2.103734 -0.178447 -0.153459 0.911369 -2.029750 -0.649567 1.577269 -1.702468 0.051458 1.328349 -2.310172 -2.406678 -0.527443 -0.093481 0.489615 -2.499363 -1.844707 -0.008635 -0.126801 -0.215076 0.506189 -1.686848 -2.213315 2.175946 0.631825 -0.585971 0.521303 -0.517340 -1.846010 1.440495 0.596147 -1.818316 -1.251602 -0.062486 -1.485877 0.844947 0.677281 2.177810 -3.481067 0.768318 -3.501287 1.421767 -1.741506 1.580911 2.283462 -0.848871 1.919438 0.759495 1.838339 0.301361 0.098254 1.705427 1.239884 1.224260 0.680199 1.755334 1.889896 -1.711050 -2.607197 -1.754080 -1.392233 1.197585 -1.080935 -2.959039 1.066702 -1.111285 -0.133579 -0.338568 -0.419565 -0.287650 2.899063 -3.298128 0.538477 1.545052 -0.658860 0.802323 1.303172 -0.123611 0.051660 -0.803420 1.371600 -0.287448 0.892919 -0.032638 2.226310 -2.221495 -1.415388 -0.549875 0.585496 0.814510 -2.023339 -2.331345 -3.243198 -0.465547 1.745391 -1.398727 1.003662 3.607467 -1.408055 -2.203105 1.634637 1.015135 -0.867544 0.805428 0.862399 3.004796 -1.761430 -0.014004 -0.824788 -0.274035 1.286836 2.780413 -0.554970 -2.050828 2.003711 -1.193337 -2.610764 3.858488 -0.052464 -0.403772 0.232692 0.385948 -0.816144 -1.193814 2.473866 -1.336511 2.131421 -1.900382 3.292969 -1.238173 -0.417899 0.269872 -2.039010 -1.196555 -2.317099 -0.192805 0.174476 2.133679 -1.728225 -1.625188 -0.454067 -1.420071 -0.378313 2.506415 -2.429670 -0.185020 0.179153 -0.485440 1.836306 1.067719 -0.602542 -0.542672 -1.630190 0.874199 1.171990 0.369587 -2.837359 -1.080134 -1.109366 -0.824550 -0.932114 0.066820 1.871840 -1.549562 -0.117630 1.055022 -0.350309 -0.627511 -0.329791 -2.122435 0.903183 0.249938 1.381864 0.729291 3.009150 1.950356 1.843086 0.336099 0.632389 -0.448015 -0.929793 -2.663813 1.023108 0.438007 0.297696 1.294779 2.364536 1.358438 1.258748 1.525794 0.516536 0.983999 2.249368 0.247946 2.568477 -0.771638 -0.180122 0.987020 0.230641 2.088384 2.357751 0.156181 -1.592234 0.861670 -0.808993 -2.189462 -0.461426 -0.140734 -0.133737 -0.494173 1.025786 1.623882 -0.383082 -0.794113 3.572403 -0.211659 -4.064766 1.658377 0.744738 1.664409 1.948572 -0.703556 1.844695 1.384999 0.934479 1.521538 1.431715 1.604735 -2.783241 -0.322426 0.065752 1.076468 2.346414 0.722809 -4.279270 0.759860 0.437187 2.525533 -0.552155 2.507451 -1.774486 1.158685 0.257421 -0.153165 0.261410 0.025030 1.227106 -0.595801 -0.010782 -3.406296 0.350696 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.969142 0.207487 1.041185 -1.830052 -1.046242 -0.409470 1.848376 -1.577633 -0.818309 2.459158 0.757314 -1.384588 -0.413502 1.972516 -0.358840 -0.973898 0.544415 -0.613653 -0.642090 -0.523099 -0.478057 0.977655 -0.447470 -1.664979 0.950911 -0.541744 0.434099 1.823500 -0.808747 0.068186 0.169153 -0.970772 0.909357 3.120748 0.615603 -0.279086 -1.122903 3.480877 -2.637778 2.648785 -2.842696 -2.307972 3.914521 -0.547747 0.135784 -3.274138 -1.611554 1.624897 0.494060 -1.662293 -0.424262 -0.154396 0.810765 -2.405629 -0.883678 2.385130 -2.573902 0.511526 1.536732 -2.313015 -2.396898 -0.563944 0.238228 0.319056 -2.144078 -2.097938 0.061131 -0.249933 -0.422397 0.639100 -1.819580 -2.246214 2.326896 0.564026 -0.390584 0.760360 -0.818863 -1.957170 1.562130 -0.168421 -1.622480 -1.504474 0.468390 -0.711597 0.968012 0.456362 2.142170 -4.080335 0.171696 -3.710559 1.441685 -2.147747 1.726951 2.532387 -0.965747 2.275304 0.512624 1.000086 0.353975 0.316547 1.926281 1.092575 1.658904 0.613237 1.924403 2.187738 -1.687143 -2.788272 -1.691805 -1.421097 1.031862 -0.716215 -3.278844 1.349901 -1.479001 -0.693162 -0.132422 -0.494235 -0.146513 3.403773 -2.884570 0.388559 1.674881 -0.778973 0.755107 1.784819 0.035139 -0.052300 -1.073464 1.470196 -0.062211 1.324499 -0.102521 2.295900 -1.801851 -2.597998 -0.692229 0.294460 0.606035 -2.258077 -2.584412 -3.281845 -0.668567 1.342662 -1.552891 1.235590 4.009080 -1.493085 -2.718253 1.907286 1.584561 -0.373658 1.023860 0.899778 3.702014 -2.009917 0.088737 -0.565288 -0.212434 1.672714 2.917203 -0.809068 -2.242386 2.087060 -0.969330 -3.311021 3.774006 -0.212915 -0.288624 1.105074 0.388293 -0.857665 -1.518676 2.720744 -0.691443 3.033518 -1.776739 3.589533 -1.471503 -1.135444 0.563622 -1.956965 -0.957731 -2.162479 0.295570 0.100413 2.017327 -1.588988 -1.864400 -0.648369 -1.338302 -0.495020 2.871937 -2.441470 -0.076783 0.022958 -0.615897 1.589606 1.216841 -1.075701 0.003422 -2.005300 1.113580 1.607544 0.757837 -3.873451 -1.017067 -0.796831 -0.919141 -0.555633 0.202705 2.037736 -1.275013 -0.076258 1.485883 -0.566861 -0.711265 -0.594012 -2.164531 1.011463 -0.328212 1.171154 0.274896 3.349165 2.446111 1.855494 -0.043415 0.625705 -0.376701 -1.153192 -2.456975 0.988147 0.257075 0.359171 1.470630 2.291577 1.246311 1.257601 2.117435 0.458603 0.543569 2.535144 0.451858 2.892412 -1.115902 -0.525915 0.984604 -0.025340 2.437325 2.796604 0.846489 -2.080725 1.289760 -0.648242 -1.960587 -1.158548 -0.291840 -0.115487 -0.852988 2.160274 1.868774 -0.690059 -0.691625 4.068469 -0.208043 -4.466314 2.079024 1.041797 1.631976 1.448361 -0.717241 1.642323 1.948098 0.833932 0.893408 1.456590 1.936776 -2.960339 -0.811906 0.316996 1.484011 2.153071 0.721934 -5.508853 0.426543 0.939817 2.898891 -0.494742 3.199541 -1.732233 0.796834 0.450983 0.446779 0.220331 0.009267 1.129498 -1.355328 0.143288 -3.189379 0.635723 +PE-benchmarks/dfa-based-division.cpp__main = 0.428123 0.231619 0.886210 -1.329920 -0.544781 -0.493882 1.299462 -0.847156 -0.452963 1.386450 0.324373 -1.078329 -0.999858 1.131878 -0.334408 -0.931059 0.209652 -0.719240 -0.668678 -0.565531 -0.330132 0.418816 -0.138997 -1.305379 0.666323 -0.368255 0.548924 1.456195 0.000924 -0.173132 0.294638 -0.567568 0.882091 2.147015 0.312358 0.074208 -0.758878 2.152995 -1.271813 1.692098 -2.094156 -1.671398 2.817949 -0.370989 -0.148660 -2.416619 -0.593306 1.253499 -0.718599 -0.819711 -0.436907 0.120245 0.409092 -1.979673 -0.803179 1.846838 -2.032804 0.942506 0.866862 -1.415983 -1.622945 -0.423888 0.118523 0.260552 -0.954030 -1.436599 -0.096933 -0.471172 -0.994313 0.670800 -1.103795 -1.020012 1.862189 0.240017 -0.255948 0.640954 -0.626694 -0.879335 0.946516 -0.563040 -0.746732 -1.120721 0.587526 -0.119551 0.810752 0.351658 0.894155 -2.638897 -0.397112 -2.209328 1.009013 -1.472394 1.091597 1.500591 -0.746297 1.802078 -0.084887 -0.138601 -0.075356 0.015483 1.094459 0.498615 1.577334 0.325482 1.277672 1.190665 -1.048295 -2.017172 -0.989139 -0.895489 0.405865 -0.544893 -2.273310 0.764329 -1.116805 -0.143411 0.191149 -0.338939 -0.319481 1.667391 -1.949011 0.183488 0.973475 -0.491715 0.690014 1.154705 0.045028 -0.013772 -0.345025 1.020511 0.336980 0.849325 0.001578 1.474280 -0.487810 -1.907538 -0.530716 0.107632 0.428208 -1.073719 -1.796842 -2.029631 -0.683384 0.667569 -0.917306 0.731218 2.479040 -0.491304 -1.911022 1.166007 0.620409 0.272517 0.704051 0.615227 2.297073 -1.387723 0.176955 -0.220850 0.045577 1.404532 2.274872 -0.760776 -1.795768 1.451771 -0.647035 -1.699492 1.211423 -0.011711 0.116628 0.424926 -0.058516 -0.939103 -1.199420 1.779079 -0.483927 2.330167 -1.245177 2.416532 -1.232245 -1.189324 0.417834 -1.325729 -0.450123 -1.252375 0.032619 0.184043 1.152195 -1.415239 -1.365370 -0.615168 -0.477542 -0.242302 2.123028 -1.663695 -0.286658 -0.296447 -0.305538 1.387222 0.545933 -1.202514 0.134213 -1.441262 0.692357 1.083881 0.996039 -2.598296 -0.498887 -0.280865 -0.755736 0.234527 0.179614 1.177379 -0.525953 -0.001898 1.252435 -0.484698 -0.573216 -0.589623 -1.628201 0.564072 -0.042436 0.490050 0.279177 2.339778 1.652990 0.792647 -0.394446 0.463547 -0.331922 -0.958831 -1.402044 0.404534 0.098687 0.109418 0.951248 1.424533 0.730857 0.595719 1.702225 0.741450 -0.499627 1.640039 0.380226 1.612723 -0.962709 -0.426803 0.788118 -0.090952 1.497832 1.729501 0.161956 -1.566981 1.145745 -0.122413 -0.789551 -1.012525 -0.635002 -0.237522 -0.351546 1.952826 1.106458 -0.771334 -0.105249 2.682112 -0.139100 -2.779111 1.443061 0.780617 0.962296 0.470239 -0.785275 0.628129 1.498157 0.218238 0.214647 0.647096 1.088482 -1.829384 -0.483676 0.234850 1.069178 1.284070 0.294591 -3.466291 -0.543211 0.572065 2.131953 0.072264 2.075799 -0.958527 0.250950 0.126829 0.444639 0.227316 -0.176057 0.576694 -0.957876 -0.052093 -1.804273 0.369174 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = 1.152197 0.092148 1.665850 -2.158888 -0.521659 -0.869867 4.368557 -1.986825 -1.327036 4.145351 0.484100 -1.973412 -2.467808 2.094158 -0.222342 -0.851196 1.228915 -0.605663 -1.028122 -0.689852 -1.330967 0.912803 -0.587446 -2.536257 1.600826 -0.353836 1.369274 3.475789 -0.940585 0.759511 0.623823 -1.430740 1.312899 4.444497 0.994655 -0.039401 -2.082569 5.548801 -5.103204 5.127611 -4.259542 -3.692595 6.714505 -0.762823 -0.316004 -5.276613 -1.197851 2.949588 -0.402798 -3.335231 -1.014961 -0.072385 1.314722 -4.068646 -1.903039 4.451676 -4.108610 0.199107 2.196116 -3.704946 -4.655290 -0.841075 0.944085 0.933565 -4.583508 -3.056494 -0.145943 -2.162587 -1.474070 1.066821 -3.500081 -2.649673 2.042477 0.450334 -0.761705 0.958311 -1.655867 -1.772627 1.920093 0.654844 -1.902348 -2.286618 0.343578 -2.039905 1.339566 0.971388 3.311196 -6.180922 -0.146043 -5.361757 1.833449 -3.629971 2.467568 3.850340 -0.565846 4.261850 -0.025798 1.606253 -0.751753 -0.466740 2.083263 1.740213 2.945239 0.694196 3.479092 3.470317 -3.183453 -5.479034 -3.132459 -1.354094 1.744788 -1.371294 -4.592730 1.725170 -2.951572 -0.550800 0.411206 -0.221684 -1.284239 4.540193 -4.758544 2.368513 1.865572 -1.060813 1.753239 3.117411 0.254141 0.056511 -0.492137 1.985823 0.541666 2.407006 -0.009269 3.431148 -2.037325 -2.286133 0.299807 0.327381 1.231479 -2.353696 -3.661476 -5.683232 -1.586112 2.610825 -2.031783 1.328884 6.105967 -1.494113 -3.290311 2.125532 -0.266574 0.630950 0.704347 1.216644 5.869272 -3.139225 0.421450 -0.323297 0.433922 2.830664 7.139776 -1.550453 -3.844774 3.196859 -1.875381 -3.381502 4.482896 0.082076 0.208229 0.937456 0.221887 -1.150003 -3.195269 4.593850 -4.038828 4.445513 -3.361118 4.908172 -2.032544 -0.917852 0.924174 -3.918563 -1.066405 -4.312809 0.193435 -0.392934 3.023309 -2.713785 -2.680730 -1.896783 -1.385387 -0.362471 5.207664 -5.042786 -0.763905 -0.531283 -1.000439 3.360716 0.466080 -2.364904 -0.732864 -3.391238 1.379122 2.121008 1.322276 -5.632369 -1.583767 -0.925993 -1.846705 -0.482832 0.396586 2.635691 -2.086156 0.142953 2.962755 -0.472763 -1.824267 -1.079120 -5.346917 1.365800 0.644804 1.371468 1.226156 5.609151 3.363791 2.274716 -0.844162 1.500357 -0.730113 -1.872279 -5.598481 1.436533 -0.092624 0.826352 1.932891 2.715434 1.622944 1.613645 2.663071 0.141582 0.035020 3.573677 1.602012 3.581876 -1.740357 -1.644382 2.372014 -0.200490 2.888397 2.670270 1.374615 -3.494359 2.132076 -1.484363 -3.492129 -1.343145 -0.839464 -0.531014 -0.633804 4.301493 3.172130 -1.076020 -0.625863 6.606222 -0.855049 -8.016637 2.447215 1.465280 2.495322 3.286121 -1.229397 2.870843 3.005487 2.165839 1.290078 1.810071 2.080530 -4.234217 0.157921 0.577605 1.767145 3.911620 -0.329039 -10.497781 -0.644151 0.140166 5.067703 -0.119678 5.721939 -2.100119 2.631583 0.346964 0.085439 0.875793 -0.855475 2.445397 -0.714134 -0.305160 -6.574539 1.998273 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.350253 0.080834 0.512412 -0.920366 -0.201692 -0.293851 1.231504 -0.706272 -0.479621 1.001475 0.304071 -0.584461 -0.868740 0.753338 -0.145525 -0.581112 0.362069 -0.028178 -0.469176 -0.346849 -0.295841 0.284940 -0.170242 -1.010182 0.545918 -0.229177 0.432979 1.113053 -0.072340 0.118256 0.106803 -0.467666 0.537745 1.573186 0.233540 0.199920 -0.772098 1.718393 -1.354144 1.372564 -1.623358 -1.331243 2.284426 -0.271532 -0.106073 -2.126110 -0.651507 0.872393 -0.225073 -0.993017 -0.421879 -0.081672 0.371796 -1.483745 -0.591409 1.506078 -1.418574 0.205810 0.753053 -1.244418 -1.462095 -0.282649 0.386235 0.069339 -1.154242 -1.081387 -0.041871 -0.516140 -0.542561 0.423750 -1.112840 -1.048307 1.030187 0.174893 -0.176790 0.432938 -0.582860 -0.804278 0.644305 0.220652 -0.565334 -0.838364 0.370247 -0.180576 0.425578 0.335336 0.989173 -2.118822 -0.243148 -1.805692 0.679692 -1.157666 0.973556 1.157152 -0.485865 1.367705 0.110999 0.298514 -0.196597 -0.025659 0.864565 0.507686 1.045839 0.084351 1.201205 0.949823 -0.906848 -1.723755 -0.909126 -0.666912 0.515715 -0.552658 -1.946130 0.555029 -1.083577 -0.456583 -0.005997 -0.207417 -0.171467 1.383133 -1.585083 0.588448 0.805632 -0.386815 0.555184 1.051939 0.108585 -0.068984 -0.249484 0.659810 0.125699 0.707082 -0.078101 1.145816 -0.474890 -1.347516 -0.038479 0.022073 0.330561 -0.955748 -1.308731 -1.703988 -0.485586 0.790741 -0.664351 0.159056 2.041504 -0.537745 -1.363745 0.724635 0.335720 0.210472 0.473126 0.485573 2.098675 -1.194684 0.302019 -0.051326 0.159300 1.083146 1.616372 -0.622875 -1.354790 1.062335 -0.634411 -1.560750 1.505774 -0.246809 0.159463 0.504502 0.125826 -0.560665 -0.955571 1.458723 -0.790428 1.790205 -1.060814 1.607199 -0.938143 -0.563002 0.270042 -1.289621 -0.529706 -1.196171 0.076820 -0.171287 1.046799 -0.971632 -0.965682 -0.665962 -0.479623 -0.055952 1.788754 -1.590497 -0.242584 -0.244503 -0.352706 0.653857 0.277097 -0.806962 -0.026107 -1.095126 0.482769 0.933247 0.626075 -2.083894 -0.449800 -0.443585 -0.557879 -0.158218 0.136223 0.980727 -0.360016 -0.004583 0.939535 -0.296512 -0.529069 -0.538337 -1.277961 0.380923 -0.080687 0.373978 0.205822 1.973746 1.310960 0.769611 -0.356402 0.336450 0.002265 -0.797445 -1.584509 0.383877 -0.145843 0.352926 0.702615 0.816479 0.548911 0.563487 1.140606 0.190051 0.096712 1.315500 0.660573 1.348576 -0.453711 -0.513458 0.746271 -0.220959 1.033241 1.178255 0.586182 -0.995786 0.733553 -0.281709 -0.979284 -0.780457 -0.352665 -0.072548 -0.649032 1.666639 1.037566 -0.419100 -0.300386 2.276187 -0.161571 -2.529995 1.019559 0.446055 0.792899 0.825093 -0.534962 0.772328 1.134060 0.651368 0.252711 0.511658 0.896780 -1.529666 -0.201750 0.171589 0.803262 1.237006 -0.123691 -3.081804 0.063350 0.223993 1.760149 -0.043665 1.648046 -0.709583 0.731511 -0.040656 0.184890 0.267944 -0.256732 0.683402 -0.383934 -0.405581 -2.056320 0.602854 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.158899 0.124157 0.451834 -0.678373 -0.302450 -0.237708 0.549730 -0.434728 -0.194844 0.160085 0.300842 -0.561817 -0.529978 0.678722 -0.266706 -0.516607 0.120355 -0.115681 -0.395787 -0.288053 -0.082075 0.140605 -0.039636 -0.704399 0.310401 -0.195403 0.251184 0.794205 0.226105 -0.125217 0.000000 -0.206078 0.498484 1.078795 0.107417 0.105212 -0.301768 1.117176 -0.547398 0.744971 -1.122766 -0.701043 1.480006 -0.198202 -0.189216 -1.559549 -0.708073 0.549991 -0.601800 -0.290698 -0.227207 -0.008548 0.138644 -0.995693 -0.332769 1.090140 -1.162471 0.585192 0.447554 -0.643550 -0.700246 -0.214802 0.034247 -0.069482 -0.303172 -0.706071 -0.040729 -0.114217 -0.519594 0.374615 -0.557115 -0.615552 1.299466 0.012995 -0.122520 0.363826 -0.268816 -0.559858 0.450801 -0.206687 -0.343819 -0.535921 0.439491 0.233176 0.480208 0.112903 0.362259 -1.375707 -0.463790 -1.182226 0.527577 -0.910096 0.579794 0.692652 -0.680881 0.870411 -0.001311 -0.262603 -0.041956 0.325352 0.616307 0.245385 0.741768 -0.006993 0.733852 0.445476 -0.330661 -0.962091 -0.436967 -0.541401 0.091629 -0.224893 -1.603947 0.318704 -0.671399 -0.054109 -0.054821 -0.126299 0.052524 0.775938 -0.713128 0.321978 0.575360 -0.253262 0.321165 0.753925 -0.001809 -0.025347 -0.296130 0.500373 0.147918 0.406681 -0.091606 0.656362 -0.121894 -1.532173 -0.424445 -0.041692 0.163403 -0.543378 -0.964268 -0.904173 -0.292314 0.303338 -0.411136 0.048884 1.283348 -0.232960 -1.042067 0.584643 0.675292 0.289913 0.549080 0.344588 1.436798 -0.770319 0.212903 -0.089833 0.020606 0.656123 0.571630 -0.481958 -0.908060 0.626202 -0.239943 -1.416617 1.045643 -0.158956 0.105413 0.534065 -0.045527 -0.484424 -0.736954 1.053008 0.216852 1.332776 -0.603801 1.238543 -0.719233 -0.798260 0.198462 -0.399376 -0.181873 -0.481877 0.054134 0.061883 0.648664 -0.697051 -0.752221 -0.275527 -0.247088 -0.040106 1.123583 -0.517329 -0.152722 -0.174253 -0.205669 0.216459 0.309310 -0.642592 0.260094 -0.823906 0.307590 0.708164 0.514442 -1.593339 -0.093434 -0.214342 -0.306624 -0.023283 0.129423 0.572706 -0.137073 -0.102852 0.553711 -0.361838 -0.166986 -0.361392 -0.597528 0.232369 -0.236235 0.160458 0.081149 1.200677 1.078653 0.380945 -0.228593 0.201741 -0.028520 -0.562926 -0.536474 0.157511 -0.003964 0.153733 0.439409 0.693686 0.329055 0.254122 0.820805 0.330210 -0.104511 0.858332 0.530977 0.935579 -0.386329 -0.254258 0.330391 -0.175072 0.845917 1.063249 0.174335 -0.675738 0.501017 0.139562 -0.289996 -0.880398 -0.413083 -0.029473 -0.552586 1.291361 0.468511 -0.367848 -0.093798 1.426812 0.000597 -1.398364 0.775475 0.326137 0.388902 0.121087 -0.410114 0.177366 0.870195 0.141338 0.003313 0.230801 0.659014 -0.941285 -0.499435 0.082216 0.589077 0.611056 0.116187 -1.695251 -0.042079 0.396266 1.153949 0.030402 0.841821 -0.452051 0.073584 -0.071153 0.240248 0.068230 -0.099846 0.254474 -0.612289 -0.228282 -0.903741 0.035094 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = 3.284362 -0.552460 2.974118 -4.451482 -1.821486 -1.228903 7.384852 -5.582830 -3.542327 11.459282 1.413003 -4.533731 -2.405954 5.497142 -0.036770 -1.528740 1.536415 -0.500927 -2.136846 -0.779066 -2.941790 2.539342 -1.995197 -6.363067 3.084144 -0.810625 3.233880 6.728239 -3.935751 3.632736 1.546933 -4.085075 2.559151 10.317509 3.157848 0.303359 -4.889960 11.820206 -12.985644 12.061030 -8.747044 -9.782899 15.185569 -1.727917 0.376434 -7.583326 -2.157007 6.814736 1.257339 -8.985570 -2.265704 -0.235058 3.619780 -8.906280 -4.491694 7.412844 -7.864033 -0.839188 5.224800 -9.142486 -11.467493 -2.267539 2.225812 3.239127 -11.856047 -7.182080 -0.550135 -3.427543 -1.096236 1.129491 -7.785932 -7.178543 5.192617 1.211351 -1.620437 1.561179 -4.035122 -4.224079 4.989582 2.554076 -5.297328 -5.256670 -0.331706 -5.920567 2.434846 3.665949 9.131821 -13.818846 2.855586 -12.577787 4.725985 -6.364104 5.504697 9.019529 -1.981856 8.960521 1.233203 7.930075 0.044687 -1.346324 4.740894 3.709582 5.668283 2.448052 7.544369 9.014722 -8.264832 -11.838852 -8.187677 -4.142679 5.486576 -4.389691 -9.727368 4.640391 -5.518762 -1.732158 -0.108908 -0.991656 -2.870337 11.438990 -13.130618 4.585919 4.270481 -2.205001 3.832344 5.096817 0.148076 0.503986 -1.184563 4.025565 0.239919 3.924922 0.736849 8.434315 -7.005170 -1.967890 0.715776 2.753726 3.267472 -6.846300 -8.037947 -14.364609 -2.774930 7.407027 -5.250079 4.966026 13.959611 -4.656713 -7.226854 4.884759 0.319141 -1.294638 1.943645 2.790787 12.328501 -6.793887 0.237048 -0.727544 -0.153171 6.346160 15.599394 -2.876266 -8.650027 8.441427 -4.750296 -6.898824 12.000633 0.416524 -0.593373 -0.429598 1.805306 -2.728942 -4.608891 9.809200 -10.441163 8.639305 -7.492192 10.958536 -4.506398 -0.267169 2.175893 -11.744241 -4.347555 -10.627265 0.149231 -1.330026 7.288253 -6.615497 -5.498242 -3.752129 -3.566684 -1.631668 11.340830 -11.915258 -1.289808 -0.082983 -2.300528 8.274232 2.061043 -3.995836 -2.592078 -6.684410 3.200235 5.006763 1.745907 -11.112055 -5.358714 -3.224173 -3.899359 -1.524342 0.886741 6.986800 -6.402304 1.120952 6.057485 -0.429053 -3.840479 -1.791659 -11.349251 3.600698 1.525116 4.759012 3.133962 12.690966 6.540755 6.899524 -0.520254 4.008715 -2.024243 -3.640761 -12.705408 4.301261 0.410090 1.946050 5.236229 7.156837 4.065295 4.844622 6.370682 0.621829 1.312120 8.883593 1.683251 8.980064 -3.458471 -2.577057 5.037288 0.995848 6.939779 6.465737 2.363272 -7.212480 4.288799 -5.421379 -8.651631 0.333373 -0.602220 -0.911242 -0.993284 6.845070 7.461195 -1.151530 -2.418103 14.606176 -1.969356 -17.669748 5.562022 3.540230 6.642714 8.455968 -3.262400 7.970508 5.748065 5.436881 4.857066 5.736350 5.030411 -10.252589 1.270958 1.629842 4.560525 10.419944 0.436638 -21.705640 0.721707 0.426805 10.101894 -1.777391 12.428577 -6.380404 6.059851 1.103749 0.189707 2.762127 -1.697401 5.573330 -0.321293 0.596182 -15.338344 3.667951 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.996134 0.033073 0.810203 -1.527190 -1.280053 0.075130 0.674393 -1.820794 -0.918354 2.133574 0.625371 -1.351934 -0.977039 1.747556 -0.528876 -1.198603 0.000214 -0.334821 -0.436800 -0.602240 -0.718255 0.758037 -0.613986 -1.385936 0.588336 -0.427510 0.517168 1.615313 0.250348 0.406453 -0.078185 -1.015904 0.516522 3.069066 1.114815 -0.157094 -0.678663 3.786407 -2.046277 2.341783 -2.688805 -2.681264 3.677286 -0.419642 -0.105951 -2.243299 -0.937954 1.774396 -1.149693 -1.123385 -0.112078 -0.344054 0.695007 -1.855433 -0.897104 2.036428 -3.046884 1.313032 1.273340 -1.867881 -2.347650 -0.759885 0.343923 0.617623 -1.888905 -1.942763 0.062981 0.086362 -0.816608 0.294421 -1.824608 -1.988761 2.568837 0.448767 -0.776484 0.328166 -0.738820 -1.185984 1.363712 -0.348321 -2.041877 -1.218035 0.223741 -0.998521 1.388645 0.906934 2.004894 -4.067820 0.633247 -3.994990 1.225203 -1.895012 1.661910 2.595537 -1.626769 2.038009 0.646539 1.327260 0.643521 -0.026212 1.816386 0.702126 1.095550 0.847559 1.754052 1.922897 -1.485290 -2.304591 -1.700268 -1.556027 0.667324 -0.809185 -3.613862 1.177839 -1.594606 0.346241 -0.347987 -0.015996 -0.641694 2.421016 -3.468278 0.116818 0.765279 -0.619153 1.543191 1.624020 -0.133552 0.501893 -0.598763 1.694144 -0.262647 0.887133 -0.155722 2.111978 -1.114799 -1.885704 -1.675836 0.836840 1.205586 -1.908783 -2.646229 -3.354871 -0.845225 1.201491 -1.356353 1.934952 4.210104 -1.476551 -2.374820 2.106634 -0.068022 0.190361 1.901618 0.734626 3.564071 -1.704797 -0.047318 -0.325001 -0.422899 1.045259 1.963577 -0.706133 -1.952053 1.987263 -0.644453 -1.280287 2.556747 -0.049484 -0.803259 -0.407980 0.280804 -0.987099 -1.523404 2.767285 -1.610176 2.459705 -1.154095 3.494517 -1.409369 -1.292729 0.758194 -2.516912 -0.842742 -1.836356 -0.033128 -0.308688 1.889887 -2.177214 -1.697737 -0.633912 -0.651458 -0.877379 2.746493 -0.906306 -0.101203 0.415319 -0.224016 2.183012 1.596099 -0.896025 -0.202937 -2.107982 0.946923 1.792699 0.304976 -3.313788 -1.039976 -0.955017 -0.847816 0.298669 0.179993 1.842544 -1.468780 -0.066213 0.965154 -0.161806 0.215570 0.141535 -2.523319 1.169320 -0.155910 0.932244 0.935267 3.233761 2.152792 2.112103 0.403670 0.963097 -0.234553 -0.915975 -1.520033 0.664519 0.663823 0.801993 1.459594 2.181649 1.327356 1.318601 1.849205 0.864051 0.171401 2.581727 0.481755 3.267991 -1.523748 -0.403511 0.566709 0.177433 2.251843 2.950733 -0.390820 -1.437850 1.212783 -0.724872 -1.378678 -1.347493 -0.118184 -0.410301 -0.418487 1.714866 1.796103 -0.214495 -0.815615 3.987576 -0.369734 -4.453322 2.244500 1.046946 1.532207 1.565824 -0.757607 1.083924 1.619689 0.164912 1.222910 1.967776 1.630072 -2.687491 -0.025192 0.273625 1.765422 1.681376 0.746737 -4.542594 0.426727 0.952915 2.838524 0.177928 2.408691 -1.799139 0.071236 0.549686 -0.172451 0.403006 -0.041574 1.378151 -0.814949 0.426669 -2.721805 -0.244138 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = 1.513859 -1.074223 1.720027 -3.687217 -3.547846 0.709445 -0.375952 -3.467886 -1.610206 4.035954 1.402133 -2.072106 -0.768042 4.869844 -0.722875 -2.850513 -0.076017 -0.765033 -0.000336 -0.418432 -1.574820 2.445314 -1.844391 -1.498364 1.361326 -0.974445 0.137513 2.009013 0.017665 -0.116410 -0.582526 -2.704657 -0.640127 6.209217 2.413325 -0.039248 -0.912296 8.606171 -2.902744 5.145214 -4.966302 -5.283779 5.731564 -1.144427 0.350494 -2.285584 -2.144311 3.463194 -1.963914 -1.797221 1.443224 -0.666724 1.496298 -2.527053 -0.413081 1.971255 -5.671623 2.398636 2.993864 -3.063441 -3.454568 -1.804966 -0.346909 0.953222 -3.787389 -3.393069 0.655162 1.536463 -0.965942 -0.700442 -2.572039 -4.352022 4.868359 1.853000 -1.592276 0.900716 -0.147068 -2.620690 3.251190 -1.688025 -5.895049 -2.352381 -0.293709 -3.396083 3.740376 1.777616 4.730981 -8.228851 3.405185 -8.796167 2.408187 -3.220913 3.211252 6.267142 -3.696099 3.430897 2.784821 4.015282 2.707862 -0.143545 4.204208 1.643245 -0.043817 2.855246 3.514314 3.640100 -2.907781 -3.402705 -3.611602 -3.782622 1.146421 -2.113872 -5.725564 2.824240 -1.813464 1.157257 -1.524197 1.086792 -1.479331 4.287775 -7.031193 -0.599674 1.541964 -1.448913 2.717777 3.179126 -0.817885 0.602139 -2.102021 3.803736 -2.603756 1.933996 -0.830646 4.667381 -2.118193 -2.131552 -4.587221 1.544150 2.495684 -4.471796 -5.346519 -6.837789 -1.391626 2.420921 -3.134772 6.155280 9.186052 -4.666582 -4.467152 5.392737 0.138688 0.364687 4.226003 1.571447 5.487282 -2.167246 -1.440650 -1.738162 -2.155032 0.853222 1.388783 0.312132 -2.718859 4.312926 -0.887015 -1.294173 6.264104 0.014227 -3.101275 -2.428636 1.475005 -2.400356 -2.781370 5.270834 -2.607844 3.546378 -0.774944 7.305896 -2.136753 -2.268604 1.743140 -5.209223 -1.478111 -3.514157 -0.418082 -0.493269 3.308818 -4.240017 -3.256210 -1.005208 -1.797324 -2.672337 3.550998 0.294070 0.415583 1.916493 0.417572 4.992048 5.196171 -0.046672 -0.446008 -4.161280 2.323185 3.018367 -0.625716 -5.033757 -1.877825 -1.675335 -1.610514 0.943776 0.401693 3.585845 -3.786284 -0.464921 0.791617 0.385565 1.459888 1.676223 -5.282778 2.048703 0.064534 2.573360 2.962268 5.287753 4.079708 5.654822 2.553491 2.079241 -1.114377 -0.459332 -1.496831 0.782689 1.505146 2.335609 3.229028 4.351353 4.071367 2.905327 3.724998 2.312827 1.078176 5.412504 -0.172734 7.632143 -2.019176 -0.674569 0.590313 1.020903 4.998123 6.523882 -2.025654 -0.843125 2.916420 -1.055394 -2.843531 -2.845959 1.504313 -0.990067 -0.177375 1.240429 3.253018 0.221800 -2.185242 7.227205 -1.459761 -8.326168 4.380982 2.001845 3.932982 3.126495 0.203611 1.989572 1.965077 -1.742408 4.112652 4.834173 3.608322 -5.192487 0.393333 0.646209 3.442236 3.396931 3.261376 -6.401721 2.070947 2.043012 4.295874 0.380880 3.134468 -3.809597 -1.272162 1.823581 -1.835174 0.325681 0.827027 2.391392 -1.107374 1.479509 -4.068164 -2.242234 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 1.629662 -1.710391 2.845980 -5.697970 -2.621366 -0.641348 5.119184 -3.894976 -2.340654 6.920259 0.987369 -3.647410 -4.375664 5.056071 0.505608 -3.800502 1.543228 -2.104620 -1.090230 -0.353557 -2.617928 2.608291 -1.717144 -4.287215 2.850941 -1.289065 1.726829 6.042439 0.339568 1.093691 0.742829 -3.774348 0.924029 9.504934 2.841388 0.641484 -2.989900 12.132946 -6.751626 10.607040 -7.123446 -7.774032 11.874487 -1.790832 -0.760048 -6.159914 -1.139562 5.979585 -3.096521 -5.527802 0.189278 0.068417 3.144287 -6.797845 -2.891987 6.138083 -7.768658 1.622911 4.148169 -5.639762 -7.026950 -2.802715 -0.425571 2.450415 -8.272339 -5.780587 -0.026754 -2.687690 -3.320811 0.242098 -5.617500 -4.731668 6.537846 2.761943 -2.103793 1.846104 -1.639433 -3.476924 4.229661 -0.074919 -6.243336 -4.343210 -0.697799 -4.614952 5.066252 1.881196 6.403083 -12.369505 1.718178 -11.810806 3.887732 -6.234750 4.934791 9.092973 -3.033632 7.822919 1.425770 4.558271 0.054035 -1.905818 5.215282 2.704555 3.783818 3.244018 6.677171 6.094091 -6.089737 -8.942965 -5.929829 -3.602773 2.738162 -3.843589 -8.823876 3.940617 -4.320378 0.303857 0.201520 0.886149 -3.868276 7.018022 -10.370496 2.031681 2.705077 -2.322235 4.229431 4.925826 -0.414686 0.261164 -1.093712 5.403472 -0.679168 4.224509 -0.604528 7.450283 -2.740713 -1.464217 -1.800944 1.613068 3.411341 -5.225220 -8.273532 -10.917861 -3.354916 4.370914 -4.351757 6.273538 12.646262 -4.102479 -6.071507 6.324352 -1.746266 2.220837 2.827240 2.446169 8.452560 -4.569890 -0.915761 -1.633914 -0.995044 3.922032 11.199489 -1.286871 -6.732599 6.991952 -3.489804 -2.569752 6.848100 0.352387 -1.868836 -2.656155 0.304628 -4.223261 -5.976455 8.954119 -7.758636 7.335239 -4.226887 10.744240 -3.190870 -2.479124 2.714101 -7.710733 -2.141973 -8.656570 -0.328315 -0.255400 4.357645 -6.723826 -5.700548 -3.174090 -1.248647 -2.477027 8.043622 -6.343228 -1.209698 0.609663 -0.035104 8.460159 3.881488 -2.944265 -1.841143 -6.381671 3.475567 3.692093 0.941780 -7.775827 -3.138885 -1.236710 -3.581133 1.623002 0.915376 5.089475 -5.134788 -0.241384 4.139763 0.346913 -1.431694 0.374877 -11.949986 2.885608 3.125391 2.516779 4.106415 9.791661 6.220326 5.615869 0.529198 3.481268 -1.994406 -0.992232 -8.517065 1.862321 0.684980 2.409993 4.468605 6.614855 4.942525 3.665420 6.537827 3.207795 -0.342413 7.308531 1.412869 8.642759 -1.948491 -3.228469 3.967904 0.650020 6.580053 7.195503 -0.020024 -4.284261 5.369231 -2.127850 -5.271523 -2.708481 -0.055129 -1.752415 0.531948 5.685739 4.382068 -1.137099 -1.639674 12.219212 -2.412281 -14.350011 5.233412 3.584711 6.242486 5.415396 -1.544873 4.847161 4.668760 -0.296205 5.208128 5.032686 3.980004 -7.683967 1.370841 1.243610 3.512109 6.969322 1.787150 -14.249659 -1.500770 0.734917 9.060999 1.407980 8.611260 -4.444047 1.632649 1.631609 -1.279491 1.677786 -1.308384 3.908117 -1.369357 0.808641 -10.254165 0.511421 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.363055 -0.272962 0.429709 -0.386004 -0.497593 -0.172926 -0.099399 0.199864 -0.097755 0.181945 0.030169 -0.333562 -0.440473 0.607748 -0.148099 -0.604181 0.087637 -0.232158 -0.006225 -0.188058 0.181780 0.221408 0.423693 -0.188766 0.108237 -0.127600 -0.246328 0.371772 0.837419 -0.336364 0.160409 -0.016909 0.193585 0.181322 -0.225754 -0.370428 -0.172377 0.762537 0.201253 0.276473 -0.333248 -0.266593 0.724190 -0.164813 0.074624 -0.623643 -0.550677 0.613551 -0.362788 -0.398725 0.055392 0.400978 0.137718 -0.546792 -0.485820 0.320595 -0.765430 0.564281 -0.015974 -0.028694 0.139735 0.204514 -0.216312 0.243809 0.248943 -0.403167 -0.087177 -0.074821 -0.731201 -0.238285 -0.004242 0.301796 0.880681 -0.067739 0.048790 0.224378 0.408431 0.187922 0.480284 -0.618827 -0.483647 -0.214311 -0.375364 -0.091862 0.484165 -0.190372 0.164742 -0.793688 0.375155 -0.676031 0.588272 -0.521076 0.015378 0.478259 -0.453397 0.553118 0.174961 -0.113865 0.445366 0.191297 0.637367 0.241031 0.345764 0.461453 0.195546 -0.022561 -0.165430 -0.074316 -0.375961 -0.383554 -0.014072 -0.275475 -0.824872 0.430786 0.343372 0.186227 0.389747 -0.104773 0.009507 0.076589 -0.459385 0.325577 0.336029 -0.100404 -0.175112 0.313723 -0.328454 -0.127809 -0.266500 0.620237 -0.253204 0.362804 0.733525 0.366817 0.162835 -0.726133 -0.019231 0.323604 0.013492 -0.076933 -0.372114 -0.493417 0.244853 -0.270542 -0.425195 0.372548 0.736575 0.051991 -0.224713 0.350581 0.253597 0.195274 0.247323 -0.051689 0.701547 -0.027093 -0.774052 0.030453 -0.426164 0.518387 -0.017305 0.184748 -0.054132 0.510022 -0.047132 -0.488820 0.101041 -0.254450 -0.238876 0.108805 0.095207 -0.404816 -0.328966 0.227321 0.396698 0.288411 0.288941 0.792091 0.426997 -0.445819 0.311233 -0.108879 -0.045976 -0.134851 0.140640 0.044964 -0.145851 -0.442259 -0.305635 -0.422195 -0.203817 -0.233371 0.292773 -0.109199 0.422124 0.433055 0.271390 0.313152 0.187300 0.024446 0.115296 -0.751126 0.065251 0.233707 0.095855 -0.657960 -0.072210 -0.001154 0.152223 0.524496 -0.098798 0.209799 -0.083491 -0.325840 -0.022626 -0.136432 -0.070944 0.092370 -0.115756 -0.276521 0.368872 0.553424 0.113939 0.652695 0.551687 0.130349 0.086098 0.687514 -0.088137 0.374717 0.018870 -0.213993 -0.165402 -0.007755 0.291845 0.177801 0.277129 0.222528 0.869929 0.424439 -0.447742 0.297252 -0.061788 0.491044 -0.246662 -0.406078 -0.119546 0.228667 0.553359 0.699737 0.100490 -0.186599 0.454818 0.052218 0.200668 -0.369684 0.116806 -0.145515 0.262668 0.569070 0.318675 0.224948 0.069319 0.049173 -0.092846 -0.850707 0.755635 0.132214 0.429422 0.333068 0.117505 0.210156 -0.010152 -0.429540 -0.342558 0.475740 0.135796 -0.442474 -0.002308 0.081912 0.417205 -0.067941 0.612369 -0.769054 -0.130038 0.430579 0.240928 -0.234809 0.128886 -0.413781 -0.875285 0.299166 0.043916 -0.026122 0.089537 -0.371626 -0.562783 -0.087678 0.226932 -0.054221 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = 1.366442 -0.764796 1.691888 -3.872794 -1.486177 -0.535254 4.206789 -2.361117 -1.411450 4.527160 0.526231 -2.218070 -3.646813 1.963189 0.774587 -2.346239 1.349435 -2.255005 -0.913580 -0.018972 -1.691719 1.250241 -0.999172 -3.141083 1.874009 -0.646474 1.259829 4.158845 0.662458 0.537470 0.191620 -2.315291 1.057550 6.120720 1.794613 0.064568 -2.044173 7.494105 -4.025545 6.116253 -4.472609 -4.916113 7.963828 -1.228425 -0.528439 -4.687080 0.055888 4.023251 -2.231877 -3.781125 0.004934 0.056443 2.099158 -4.742823 -2.222461 4.510616 -4.626141 1.196943 2.622736 -3.108115 -4.301634 -1.926933 -0.268534 1.593837 -4.793117 -3.923957 0.019173 -2.678450 -2.726426 0.374409 -4.227889 -2.685897 4.047472 2.112857 -1.265743 1.114860 -1.414621 -2.454583 2.424324 0.066844 -3.568893 -2.673822 -0.420549 -2.457400 3.351098 0.704416 3.372340 -7.873002 0.253728 -7.437105 2.201540 -4.047370 3.277859 5.606079 -1.213987 5.104284 0.325505 1.850099 -0.739608 -1.546403 3.387057 1.759423 3.327020 1.592819 4.374035 3.632532 -3.832664 -6.026184 -3.465214 -1.909169 1.547094 -2.008693 -5.894255 2.583228 -3.254285 0.131163 0.591652 0.344748 -2.753490 4.187922 -6.509876 0.708949 1.563374 -1.539198 3.138737 3.420119 -0.184342 0.143036 -0.251834 3.435918 0.390752 2.959156 -0.473259 4.738664 -1.285384 -1.411903 -0.665704 0.915882 2.541345 -3.096811 -5.502803 -6.368107 -2.277546 2.095401 -2.712246 2.943417 7.784814 -2.064576 -3.546933 3.805692 -1.927003 1.717083 1.393714 1.389979 5.469415 -3.313267 -0.037390 -0.513173 -0.163843 2.425278 8.031964 -1.291702 -4.736908 4.160928 -2.533329 -1.091035 2.552744 0.589221 -0.661328 -0.832748 -0.472396 -2.761645 -4.279608 5.587777 -4.840470 5.086030 -2.532553 6.722467 -2.206072 -1.587390 1.907492 -3.062555 -1.089359 -5.837772 -0.440215 0.297368 2.490504 -4.286294 -3.725036 -1.930471 -0.338223 -1.390802 5.735952 -4.328393 -1.165085 -0.017838 -0.102461 4.762806 2.008002 -2.498924 -1.127853 -4.107257 2.436622 1.997998 0.729874 -4.559353 -2.183636 -0.645357 -2.450758 1.763317 0.473019 3.263954 -2.481777 -0.416681 3.387990 0.265379 -1.258050 0.057009 -7.182713 1.745289 2.643712 0.942283 2.384468 6.660808 3.403640 3.150150 -0.119931 1.791418 -1.180482 -0.382670 -6.270760 0.655006 -0.080619 1.515992 2.789356 4.263102 2.938167 2.153205 4.352195 1.914106 -0.754276 4.580261 0.948897 5.072998 -1.398551 -2.442075 2.902580 -0.256597 3.977468 4.183525 -0.155035 -3.457017 3.449030 -1.170919 -3.595616 -1.564801 -0.437280 -1.213145 0.405576 3.675576 2.782679 -0.902045 -0.941035 8.118596 -1.669553 -9.384016 3.076957 2.242797 4.049188 3.614846 -1.332873 3.254530 3.057080 0.016115 3.150434 2.815537 2.265247 -4.630240 0.711560 0.872128 1.996634 3.362050 0.216512 -9.004621 -2.187977 0.134950 6.437386 1.721384 5.799251 -2.656984 1.570229 0.889324 -0.549243 1.416352 -1.210248 2.865049 -1.313127 0.099229 -6.972182 1.378242 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = 0.592474 0.177298 1.166270 -1.702918 -0.970623 -0.392725 1.647646 -0.944633 -0.635069 2.489076 -0.017349 -1.058207 -2.232746 0.861317 -0.109824 -1.539680 0.027184 -1.506584 -0.580747 -0.689271 -0.808846 0.625197 -0.350040 -1.122204 0.848785 -0.425727 0.632778 1.729544 0.436403 -0.237421 0.462500 -1.008822 0.687663 2.748759 0.619129 0.160267 -0.904320 3.244904 -1.129323 2.292690 -2.444105 -2.786260 3.236670 -0.438670 -0.026296 -2.220772 0.658532 1.978061 -1.605164 -1.039500 0.047368 0.373029 0.544373 -2.134796 -0.844083 1.875334 -2.702538 1.516900 0.921709 -1.569118 -1.950944 -0.656932 -0.153381 0.784624 -1.190833 -1.772913 -0.115226 -0.853795 -1.729170 0.581308 -1.337197 -0.853720 1.865230 0.760513 -0.630409 0.688156 -0.399312 -0.398816 1.234111 -1.204561 -1.489934 -1.306863 0.257907 -0.717072 1.412311 0.707879 1.030465 -3.403805 0.093974 -2.972741 1.189331 -1.615453 1.334703 2.260438 -0.411682 2.440442 0.080725 -0.165568 -0.005742 -1.011272 1.442996 0.541119 2.019461 1.073661 1.385254 1.471898 -1.725638 -2.527187 -1.583336 -1.091733 0.433125 -0.758525 -2.154193 0.990010 -1.079119 0.500142 0.671497 -0.083320 -1.166753 1.332612 -3.475748 -0.360431 0.694133 -0.607988 1.513399 1.273802 -0.087462 0.217683 0.115209 1.743772 0.125546 1.284003 0.052307 2.022041 0.056926 -0.927080 -0.977445 0.453888 1.055660 -1.070978 -2.273205 -2.691706 -1.107115 0.770344 -1.203153 1.698289 3.569625 -0.770614 -1.936075 1.824730 -1.157142 0.812165 0.770578 0.677389 2.134351 -1.321353 -0.281242 -0.288715 -0.134786 1.448470 3.730858 -0.342106 -2.118945 2.040860 -0.677806 0.307683 -0.589229 0.141088 -0.359898 -0.882442 -0.210232 -1.411040 -1.465947 1.995586 -1.911546 2.444232 -1.032885 3.054106 -1.238956 -1.313149 0.684454 -2.122394 -0.342032 -2.024775 -0.289734 0.279440 0.938054 -2.345453 -1.554135 -1.066142 -0.240151 -0.768577 2.284714 -2.053558 -0.393502 -0.096709 0.266758 3.019079 1.089735 -1.114909 -0.412640 -1.977798 1.032873 0.642800 0.864086 -2.283472 -0.796241 -0.086827 -1.125788 1.513131 0.073637 1.243163 -0.604085 0.048991 1.461120 -0.274405 -0.540070 -0.048064 -2.615922 0.611970 0.980352 0.619979 0.944520 2.775610 1.665290 1.273911 0.045516 0.946902 -0.533279 -0.559510 -1.641223 0.207820 0.263519 0.383866 1.285302 1.636283 1.318303 0.728137 2.276951 1.392204 -1.220251 2.064107 -0.117664 2.263289 -1.539915 -0.750123 1.008758 0.195010 1.568361 1.880752 -0.734047 -1.538396 1.825137 -0.260879 -0.868032 -0.704436 -0.356504 -0.807443 0.581673 1.865819 1.550115 -0.868646 -0.047662 3.256673 -0.661883 -3.738018 1.687428 1.070674 1.553995 0.925448 -0.661132 0.692644 1.485943 -0.598431 0.822156 1.235980 0.991914 -2.183183 0.318128 0.334471 1.245753 1.154048 0.429879 -3.990614 -1.736119 0.415237 2.678705 0.767774 2.583973 -1.257428 -0.245614 0.656449 -0.120525 0.344467 -0.173451 1.000445 -0.625791 0.340609 -2.118338 0.264929 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = 7.249841 -6.766733 8.385166 -14.916502 -9.032687 -2.106741 0.027931 -4.972013 -5.194440 8.813662 0.158925 -8.944506 -10.628006 13.421940 -3.914366 -13.339721 3.505478 -3.754159 4.007132 -0.796642 -3.776721 7.894636 0.106827 -6.350129 8.344197 -3.777884 -3.010031 13.331184 15.443845 -2.269090 2.115622 -7.363560 3.698927 22.275796 4.333210 -5.489698 -2.059359 31.785493 -1.867984 17.458093 -7.902848 -13.144640 25.098482 -3.121146 -3.400847 -12.413579 -8.368315 14.014866 -16.617104 -8.486554 3.752721 2.634487 6.065067 -13.454292 -9.047652 13.467681 -24.496405 9.231152 7.771282 -5.138885 -6.269552 -2.070296 -7.328959 2.939094 -7.230060 -13.531258 -1.518765 -2.241028 -12.702815 -3.012385 -6.336584 -2.854892 24.913103 5.746298 -5.234471 7.078473 5.686928 -7.119542 10.333789 -8.713189 -18.227041 -9.037915 -6.936212 -7.867756 19.497680 -0.807939 11.532910 -25.724666 8.916614 -26.148594 9.335853 -16.126297 8.601551 23.831123 -17.344430 18.250241 5.772352 8.308680 4.732769 -2.469586 20.078355 9.737577 0.829331 11.173326 12.660940 9.228095 -7.892009 -12.601601 -12.896635 -8.696659 1.051069 -9.904208 -27.784042 9.642217 -4.785292 6.945131 2.530869 2.041712 -9.298591 11.479395 -20.623980 1.031372 3.611398 -4.932523 3.140407 12.116608 -1.600290 -5.148096 -3.514205 18.983223 -3.919887 6.303482 6.552542 16.296904 -1.377885 -10.447173 -8.113747 2.239824 5.681088 -11.307118 -19.140830 -22.404216 -3.654216 0.968105 -10.235977 16.387235 32.021728 -5.904186 -10.333784 19.129494 -2.428969 6.156876 13.401280 5.211361 17.502922 -5.259850 -13.566934 -4.778721 -9.856428 7.646162 9.200857 1.481673 -8.122332 15.913681 -4.264076 -2.239757 7.898551 -1.560081 -5.988101 -3.999478 -2.348520 -11.714635 -15.398270 18.858095 -8.040750 13.673077 -2.551198 27.531913 5.462008 -15.716296 6.360059 -9.929492 -3.031218 -15.098824 1.562865 -0.010864 2.454253 -17.937950 -13.359299 -5.181631 1.794292 -9.756316 14.785486 -0.027680 3.142038 5.071581 3.852258 18.257840 11.085810 -6.129466 2.119361 -17.836342 6.345401 7.024261 -2.313214 -18.718765 -3.407158 -0.381835 -5.056436 8.937193 -2.211875 8.490385 -12.541211 -3.621468 4.589693 0.813431 -0.570552 3.475017 -23.218177 5.406723 8.983066 7.056010 13.593405 20.574719 18.395568 12.157509 0.528087 13.489231 -3.973038 2.936188 -12.015363 0.108455 0.806367 6.656755 9.328428 13.593287 12.723405 9.737425 15.458157 14.343580 -1.821502 17.219704 1.877290 21.128569 -0.563145 -10.981164 6.378692 2.143381 17.650321 20.596718 -2.778167 -5.044061 14.452381 -2.172260 -4.482223 -14.438375 6.013486 -2.877061 3.120200 12.644507 6.951076 1.567878 -0.856765 17.652489 -7.187174 -31.058171 15.664677 9.609513 11.219114 8.425674 1.415908 8.781466 6.783673 -8.095935 8.530048 12.753592 8.662997 -17.975101 7.147269 3.979523 10.293818 7.184277 12.957629 -25.295104 -4.787257 2.811635 14.679398 4.776607 12.448609 -9.686412 -10.862082 9.337498 -1.418447 -0.618814 -3.592070 3.408384 -9.240691 3.669327 -6.948835 -4.337193 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = 0.457320 -0.588292 0.599386 -1.308188 -0.902043 0.195451 0.393535 -0.863377 -0.416374 1.331083 -0.005193 -0.112565 -0.690337 0.374626 0.159488 -1.252679 -0.152815 -0.854563 -0.006999 -0.201779 -0.500017 0.659199 -0.490095 -0.370368 0.427935 -0.482127 0.278837 0.788603 0.008404 -0.197317 0.152628 -0.951483 -0.241290 1.835763 0.650818 0.358501 -0.471130 2.656708 0.209513 1.330633 -1.243906 -1.990882 1.660157 -0.485042 -0.141437 -0.469686 0.624712 1.054386 -0.571755 -0.683111 0.376933 -0.063147 0.550782 -0.804361 -0.361772 0.341321 -1.251301 0.290943 0.646904 -1.146974 -1.372648 -0.532467 -0.104824 0.694685 -1.317354 -1.015916 0.441633 0.120646 -0.651429 0.012624 -0.408509 -0.875784 1.709972 0.891105 -0.445031 0.344979 0.209653 -0.628140 0.943694 0.091194 -1.779921 -0.863168 -0.259175 -1.251538 1.309852 0.077836 1.395524 -2.304079 1.258525 -2.445294 0.617916 -0.715607 0.881653 1.894787 -0.877841 1.386455 0.674957 1.673656 0.156089 -1.090630 1.221448 0.517121 0.346450 1.217013 0.967445 0.673419 -1.001669 -1.301204 -1.134572 -0.983430 0.581800 -0.978888 -2.094544 0.862519 -0.250959 0.668386 -0.038469 0.512554 -0.685396 1.284241 -2.661547 -0.336656 0.447948 -0.420878 0.706222 0.498361 -0.204551 0.106952 0.003932 1.417725 -0.663328 0.715120 0.002554 1.449696 -0.230376 1.083151 -0.883287 0.421802 0.786096 -1.006586 -1.451514 -1.519233 -0.822579 1.098484 -0.798620 2.179245 2.669325 -1.147954 -1.352560 1.483607 -0.924740 0.038363 0.711978 0.553792 0.802036 -0.414372 -0.769129 -0.708984 -0.383530 0.438199 1.290652 0.247554 -0.806924 1.664925 -0.606072 1.195414 1.027986 -0.170578 -0.789105 -0.885210 0.048469 -1.081583 -0.983881 1.140837 -1.203633 1.434039 -0.012867 2.065300 -0.512406 -0.383500 0.283090 -1.588196 -0.511311 -1.538977 0.009087 -0.067081 0.622352 -1.356137 -0.947635 -0.463028 -0.557080 -0.730250 1.126285 0.148504 0.169559 0.412371 0.306121 2.433346 1.428189 -0.091735 -0.954806 -1.037898 0.866217 0.492707 -0.176217 -0.227739 -0.974106 -0.080703 -0.643697 0.763698 0.118382 1.092811 -0.970697 0.158049 0.184609 0.405911 -0.142540 0.483897 -2.804048 0.397129 0.891082 0.713781 0.780535 1.485930 1.194999 1.392244 0.585006 0.585873 -0.221490 0.094520 -1.098541 -0.155116 0.424488 0.881505 0.916437 1.393779 1.276335 0.909542 1.592781 1.304502 0.197028 1.485652 -0.538078 2.205669 -0.850953 -0.590339 0.356240 0.666497 1.284212 1.583041 -0.432856 0.301839 1.096428 -0.026648 -0.935304 -0.866226 0.358694 -0.435207 1.020835 0.240554 1.124174 -0.162779 -0.359892 2.018309 -0.368429 -2.510274 1.020094 0.752970 1.297719 1.114081 -0.110974 0.712525 0.655508 -0.655424 1.502319 1.275235 0.610405 -1.631357 0.787855 0.362968 0.918976 0.083818 0.958675 -0.979693 -0.338644 0.058243 1.445652 0.488115 1.312864 -1.034076 -0.150439 0.931951 -0.790025 0.184236 0.469433 0.707856 -0.267763 0.417177 -1.565261 -0.627685 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = 0.110427 0.049811 0.283285 -0.428798 -0.445289 -0.055109 0.160641 -0.141017 -0.106409 0.033641 0.103597 -0.084332 -0.210119 0.459645 -0.117487 -0.361223 -0.134832 -0.425082 -0.184968 -0.096232 -0.081500 0.312946 -0.089232 -0.001428 0.216643 -0.096584 -0.121369 0.249360 0.011095 -0.427139 0.047595 -0.190480 0.005129 0.497411 -0.024942 0.043113 -0.031087 0.879542 -0.036866 0.212319 -0.476752 -0.519672 0.506449 -0.194354 -0.073265 -0.556309 -0.265840 0.329420 -0.061659 -0.043984 0.140812 0.149929 -0.136168 -0.282642 0.074875 0.210558 -0.711839 0.373437 0.241159 -0.235014 -0.258562 -0.111299 -0.158329 -0.153652 -0.048050 -0.310447 0.073338 0.096497 -0.235714 0.063152 0.052271 -0.273277 0.732122 0.148570 0.010092 0.302412 0.173414 -0.216629 0.409326 -0.348979 -0.466044 -0.206248 0.137040 -0.121400 0.432384 -0.012573 0.167336 -0.720901 0.181355 -0.659568 0.187716 -0.457120 0.166636 0.499769 -0.297953 0.463112 0.256245 0.052614 0.211622 0.081457 0.499704 0.112640 0.264146 0.409942 0.236125 0.114833 -0.182019 -0.225127 -0.413508 -0.485457 0.096019 -0.116202 -0.694965 0.257430 0.078749 -0.031982 -0.012211 0.098354 0.104163 0.357627 -0.558986 0.094292 0.361350 -0.126576 0.001761 0.356294 -0.134733 -0.123734 -0.330852 0.386662 -0.283935 0.410658 0.004148 0.334490 0.070030 -0.476324 -0.411379 -0.075627 0.006372 -0.321737 -0.392114 -0.388541 -0.040598 0.161142 -0.313278 0.419293 0.951285 -0.419772 -0.528904 0.609583 0.486109 0.153505 0.227995 0.169290 0.488424 -0.044989 -0.340905 -0.175127 -0.268087 0.208450 -0.202862 0.169350 -0.193352 0.326757 0.081800 -0.449159 0.747402 -0.194575 -0.256257 0.281741 0.120250 -0.366959 -0.412076 0.431440 0.521089 0.654942 0.119872 0.662866 -0.148736 -0.318357 0.114051 -0.188555 0.020650 -0.388514 -0.017545 0.002133 0.133001 -0.305860 -0.277104 -0.159559 -0.310951 -0.295317 0.208805 0.035858 0.213015 0.119616 0.168497 0.096961 0.580672 -0.033917 0.043207 -0.585358 0.247106 0.181065 0.109857 -0.545794 -0.013985 0.004392 -0.106801 0.247922 -0.006891 0.226852 -0.004565 -0.038398 0.101331 -0.083424 -0.021430 0.055151 -0.298034 -0.050553 -0.082509 0.315551 0.099847 0.368358 0.686944 0.399482 0.224154 0.263735 -0.033053 0.023909 0.018563 -0.108765 -0.053651 0.298719 0.314886 0.392244 0.467909 0.219619 0.531472 0.373761 0.004529 0.532765 0.055872 0.902761 -0.290974 -0.249605 -0.042035 0.214465 0.491313 0.649715 -0.071817 0.037881 0.333880 0.234446 -0.153255 -0.413103 0.051563 -0.108624 -0.036248 0.370807 0.233882 -0.150624 0.019076 0.570616 -0.136783 -0.695564 0.357573 0.141566 0.356719 -0.007746 0.150145 0.025594 0.404728 -0.327451 0.155891 0.333254 0.341777 -0.537827 -0.165687 0.088423 0.406423 -0.081119 0.491219 -0.588146 0.120788 0.208216 0.334812 -0.110347 0.196626 -0.287816 -0.367408 0.279113 -0.031657 -0.126417 0.355434 0.101144 -0.341383 0.047610 -0.312229 -0.287725 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.164755 -0.367254 0.404479 -0.858344 -0.931777 0.010513 -0.123693 -0.339062 -0.184565 0.166182 0.103339 -0.287791 -0.460129 1.081990 -0.178177 -0.910084 -0.134387 -0.290253 -0.004153 -0.045519 -0.147086 0.614331 -0.171301 -0.022936 0.340374 -0.270774 -0.223456 0.493463 0.558126 -0.398059 -0.011089 -0.458545 -0.177514 1.015353 0.139098 0.145928 -0.041917 2.045484 -0.022554 0.919047 -0.972571 -0.997611 0.963597 -0.301219 -0.142708 -0.878797 -0.630549 0.592938 -0.669204 -0.063621 0.378060 0.158688 0.025353 -0.426827 0.138980 0.365835 -1.337887 0.741003 0.408364 -0.332191 -0.242770 -0.289665 -0.469350 -0.039852 -0.444942 -0.586928 0.093279 0.266503 -0.569892 -0.075314 -0.048338 -0.416443 1.525453 0.420316 -0.330636 0.420188 0.430530 -0.445850 0.659921 -0.694760 -1.307413 -0.402582 -0.014160 -0.476457 0.983970 0.084483 0.734098 -1.582808 0.689939 -1.669145 0.487855 -0.955487 0.445137 1.270573 -0.901464 0.851922 0.576697 0.527330 0.650283 0.062463 0.971999 0.473561 0.086408 0.798727 0.534812 0.362926 -0.302740 -0.438580 -0.649181 -0.790233 -0.011275 -0.449865 -1.710407 0.450489 0.052108 0.473154 -0.110422 0.390828 -0.129940 0.594838 -1.249562 0.098346 0.407565 -0.280745 0.249177 0.670257 -0.292109 -0.116502 -0.545965 0.921132 -0.638118 0.643743 -0.036497 0.760248 -0.136169 -0.569765 -0.950124 0.024838 0.196493 -0.612010 -0.948732 -0.995274 -0.256274 0.400826 -0.528661 1.160752 2.018538 -0.911148 -0.924821 1.210176 0.173229 0.423436 0.725591 0.307761 0.857374 -0.061676 -0.659518 -0.454542 -0.540371 0.186756 -0.152167 0.356518 -0.363038 0.716798 -0.054412 -0.604308 1.294363 -0.268576 -0.649475 -0.381834 0.120648 -0.741270 -0.729127 1.075307 -0.043285 0.989864 0.111582 1.371495 -0.137562 -0.684082 0.320197 -0.826564 -0.060076 -0.735157 0.012452 -0.038327 0.322216 -0.934873 -0.640790 -0.260915 -0.448917 -0.589082 0.410032 0.355762 0.248712 0.408272 0.400233 1.013908 1.244685 0.077323 -0.013931 -1.075225 0.501551 0.408841 -0.184397 -1.052237 -0.076692 -0.011376 -0.217353 0.423157 0.050050 0.440626 -0.433691 -0.222164 -0.140401 -0.001571 0.316970 0.350021 -1.102006 0.080928 0.153688 0.634992 0.548555 0.723439 1.163924 0.961228 0.521472 0.585294 -0.107580 0.112481 0.126580 -0.076094 0.260329 0.390339 0.539460 0.966470 0.913451 0.463676 0.930777 0.869997 0.053497 0.937279 0.135164 1.851248 -0.340455 -0.551204 -0.029994 0.324138 0.974701 1.507110 -0.394189 0.317474 0.721749 0.285793 -0.181714 -0.974301 0.244924 -0.245365 0.011419 0.578713 0.394229 -0.074091 -0.113060 1.054596 -0.270747 -1.613085 0.811310 0.350679 0.723800 0.209941 0.298229 0.045456 0.559975 -0.835612 0.732149 0.897646 0.534168 -0.890031 -0.183072 0.121300 0.656872 0.311724 0.957247 -0.832069 0.290505 0.497693 0.802852 0.081641 0.400920 -0.621243 -0.835106 0.490134 -0.378005 -0.200261 0.339216 0.065001 -0.469443 0.150706 -0.442628 -0.908626 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 0.843338 -1.446888 1.089664 -2.487105 -2.836957 0.509920 -0.510579 -1.111548 -0.528330 1.305843 0.511005 -0.636614 -0.985775 3.044083 -0.202745 -2.193218 0.089571 -1.279453 0.497118 0.071901 -0.239537 1.670500 -0.398467 -0.017732 0.458905 -0.659289 -0.647291 1.383222 1.613155 -0.615305 -0.322921 -1.321260 -0.992585 2.532180 0.897131 -0.395561 -0.180776 5.989765 -1.057239 2.744660 -2.429449 -2.572531 2.433617 -0.729998 -0.505156 -2.120459 -1.814606 1.725839 -1.080212 -0.799329 1.447445 0.093574 1.004649 -0.720006 -0.157518 0.860890 -3.271406 1.308864 1.012573 -0.648325 -0.273684 -0.701485 -0.883246 0.816399 -2.006817 -1.541367 0.753561 0.257893 -1.206338 -0.968986 -0.475561 -1.172407 3.508080 1.326699 -0.954169 0.441543 1.233382 -1.816105 1.916417 -1.368733 -4.414783 -0.879573 -1.320826 -2.679693 2.829234 -0.309970 2.648580 -4.455662 2.793022 -5.237656 1.202432 -2.382149 1.035067 3.575094 -2.300829 1.788858 1.727065 2.882444 2.182189 -0.714193 2.607969 1.737521 -0.120689 2.454942 1.786540 1.418506 -1.105967 -0.848710 -1.996543 -1.959288 0.190374 -1.719491 -4.641144 1.558436 0.418632 0.571297 -0.324853 0.821378 -0.902592 2.491061 -3.161611 0.628183 0.626447 -0.702360 0.484811 1.962757 -0.949838 -0.019140 -1.214529 2.693973 -2.002616 2.037077 0.272706 2.152064 -1.020917 -0.548828 -2.092995 0.904453 1.033104 -1.711080 -2.607021 -3.287500 -0.476256 0.790243 -1.474563 3.846375 5.630932 -2.825582 -2.362495 3.122202 -0.042304 0.445597 1.923577 0.454005 2.253208 -0.026652 -2.217287 -1.470848 -1.832110 0.001246 0.593213 1.086321 -0.186706 2.206826 -0.632452 -1.289422 4.092901 -0.384510 -2.251998 -1.072229 0.445651 -1.904758 -2.120900 2.798971 -0.896351 1.625889 1.148783 3.654882 0.348786 -1.277590 1.050242 -2.363372 -0.245939 -2.373069 -0.077853 0.066825 0.912988 -2.126318 -1.592207 -1.134434 -1.062371 -1.743833 1.023630 0.715515 1.143029 1.797559 1.236336 3.208151 3.837741 0.710687 -0.374491 -2.575717 1.457766 1.269621 -0.991275 -2.479308 -0.955917 -0.359911 -0.362569 1.127467 0.082984 1.784947 -2.064328 -0.854193 -0.571544 0.476294 0.899203 1.680447 -4.778194 0.475938 0.950658 2.113717 1.767290 2.039512 2.324333 3.269086 1.818999 1.690386 -0.472724 1.088958 -0.421742 -0.546316 1.039842 0.848534 1.473273 2.909601 2.390414 1.728327 2.541800 2.429190 0.434257 2.259747 -0.024706 4.953103 -0.360162 -1.588294 -0.238271 1.043952 2.561174 4.189606 -0.394948 0.925309 1.773649 0.201948 -0.859736 -2.609863 1.290754 -0.810502 1.209102 0.823622 1.690367 0.531930 -0.756016 2.505991 -0.770372 -5.068605 2.142530 1.000505 2.244844 1.767079 0.835553 0.879042 0.533667 -2.273229 3.088900 3.407752 1.138985 -2.088831 -0.061881 0.448922 1.619686 0.815179 2.730087 -2.887867 1.257879 1.055090 1.982868 0.287262 1.810687 -2.392140 -1.988275 1.696162 -1.365075 -0.133576 0.884467 0.352006 -1.547335 0.689745 -1.445154 -1.994105 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.340260 -0.423309 0.651018 -0.782317 -0.918983 -0.099564 0.003894 0.069893 -0.099915 0.188833 0.206169 -0.377669 -0.442750 1.048237 -0.107125 -0.827598 0.103704 -0.437561 0.003292 -0.159467 0.168127 0.556546 0.273846 -0.048197 0.238876 -0.240008 -0.396085 0.673080 0.880747 -0.442551 0.105542 -0.188005 -0.061658 0.578342 -0.176482 -0.399616 -0.067594 1.614745 -0.143065 0.636975 -0.575248 -0.556816 1.031938 -0.273337 -0.111259 -0.872083 -0.955522 0.748084 -0.456305 -0.443645 0.385520 0.421222 0.257557 -0.544145 -0.259845 0.430631 -1.281339 0.550933 0.158838 -0.143269 0.048861 0.044779 -0.409093 0.197687 -0.180693 -0.567760 0.092888 -0.025360 -0.674947 -0.324382 0.059580 -0.051617 1.369261 0.162941 -0.035550 0.388206 0.715387 -0.325762 0.846657 -0.562701 -1.040143 -0.305098 -0.503114 -0.602237 1.008540 -0.413238 0.507580 -1.380714 0.637136 -1.315303 0.673999 -0.980216 0.139324 1.059913 -0.834028 0.804980 0.478095 0.400393 0.635845 0.120090 1.063412 0.488495 0.382941 0.825092 0.528883 0.161518 -0.387832 -0.220166 -0.807298 -0.743370 0.075688 -0.607308 -1.495585 0.587332 0.455848 0.001389 0.313269 -0.016846 -0.030504 0.666036 -0.715491 0.634299 0.556554 -0.213488 -0.294174 0.676152 -0.480279 -0.227378 -0.555500 1.045432 -0.638397 0.776253 0.578339 0.609693 -0.047665 -0.740189 -0.302111 0.290773 0.036595 -0.363733 -0.758822 -0.872025 0.168877 -0.088390 -0.565708 0.849953 1.540351 -0.373069 -0.620310 0.942416 0.586684 0.259662 0.442482 0.058983 0.949656 0.024621 -1.081246 -0.431941 -0.699816 0.400169 -0.002786 0.442255 -0.049027 0.762634 -0.077152 -0.836381 1.231443 -0.408663 -0.586107 0.088800 0.242656 -0.729556 -0.723916 0.809545 0.485460 0.671295 0.395574 1.321158 0.429142 -0.635441 0.455403 -0.266427 0.018713 -0.687617 0.069238 0.121014 -0.025078 -0.565239 -0.564507 -0.647192 -0.379130 -0.484408 0.298318 0.012140 0.605658 0.638168 0.508891 0.430544 0.815822 0.192445 0.046860 -1.158137 0.311474 0.422677 -0.100097 -0.943012 -0.021104 -0.014311 0.100313 0.480858 -0.036778 0.440039 -0.416667 -0.474893 -0.115168 -0.074545 -0.020958 0.321613 -1.088426 -0.169413 0.357881 0.793103 0.353350 0.773170 1.132400 0.522376 0.433827 0.854632 -0.110123 0.558490 -0.171646 -0.216933 -0.065896 0.223120 0.476700 0.730417 0.701095 0.415942 1.129920 0.829941 -0.169206 0.646800 0.077626 1.269247 -0.078361 -0.650411 -0.173184 0.435780 0.939746 1.316612 0.287023 0.080142 0.686787 0.328348 -0.064048 -0.860359 0.242469 -0.277101 0.370162 0.673319 0.315327 0.099606 0.035673 0.501511 -0.155361 -1.458695 0.875533 0.236835 0.756855 0.494891 0.332255 0.289399 0.210506 -0.824808 0.269313 0.798149 0.323019 -0.746914 -0.086728 0.153349 0.579077 0.090251 1.102363 -1.195320 0.168389 0.463744 0.501549 -0.218602 0.461511 -0.598273 -1.058786 0.532816 -0.254322 -0.181436 0.322545 -0.282339 -0.873746 0.095837 -0.247918 -0.504384 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.509935 -0.846739 0.790598 -1.117269 -1.070732 0.089192 -0.072327 -0.278363 -0.170606 0.895035 0.028894 -0.382454 -0.525784 1.365754 -0.115492 -1.127903 0.165736 -0.321054 0.269480 -0.019019 0.042211 0.815028 0.071988 -0.115317 0.268553 -0.423958 -0.174444 0.745137 0.713424 -0.046228 0.078709 -0.615163 -0.309020 1.113715 0.204048 -0.055611 -0.306875 2.300846 -0.127149 1.755483 -1.090850 -1.206993 1.254643 -0.325252 0.142361 -0.864383 -0.719630 0.924595 -0.571682 -0.724058 0.509684 0.280589 0.544583 -0.620210 -0.258375 0.264328 -1.424050 0.438262 0.252761 -0.450971 -0.164946 -0.217744 -0.524124 0.588179 -0.995775 -0.773172 0.070980 0.182482 -0.886313 -0.273284 -0.158228 -0.264263 1.545403 0.570537 -0.519828 0.280858 0.846969 -0.482365 0.999178 -0.766238 -1.634236 -0.549503 -0.845407 -1.071578 1.305797 -0.117704 1.265899 -2.040059 1.363577 -2.047436 0.926423 -1.158479 0.441890 1.713887 -0.902301 1.097090 0.780658 1.342600 0.877079 -0.181655 1.252241 0.986047 0.188587 1.072185 0.947178 0.513364 -0.723271 -0.701241 -0.997267 -0.838491 0.154119 -1.072375 -1.916239 0.645236 0.445277 0.569479 0.134706 0.295530 -0.468080 0.849327 -1.997779 0.360046 0.492126 -0.333208 0.071512 0.564433 -0.529620 -0.054944 -0.485826 1.464099 -0.929499 0.796371 0.491719 1.051211 -0.629930 0.066012 -0.526892 0.495143 0.339743 -0.606357 -1.269368 -1.630442 -0.295896 0.619434 -0.678280 1.676444 2.171850 -0.677586 -0.827438 1.279221 -0.181151 0.107964 0.672992 0.255032 0.831294 -0.033893 -1.223837 -0.725291 -0.733585 0.356743 0.902759 0.563476 -0.353858 1.322749 -0.478655 -0.515215 1.272725 -0.421347 -0.905708 -1.110665 0.109957 -1.025899 -0.623952 1.220551 -1.182995 0.796017 -0.123830 1.825556 0.313833 -0.564538 0.455064 -1.556100 -0.155168 -1.166212 0.214524 0.003673 0.312479 -1.353854 -0.885059 -0.597541 -0.573954 -0.615689 0.593795 -0.500083 0.362557 0.829849 0.647211 2.028710 1.116782 0.323591 -0.345445 -1.148896 0.593562 0.449877 -0.332320 -0.935754 -0.276601 -0.070602 -0.129073 0.398049 0.098800 0.581303 -0.998660 -0.458362 -0.231373 0.014460 0.069399 0.614389 -1.890761 0.011124 0.857367 1.085319 0.719822 1.065856 1.209499 0.966719 0.683216 0.924842 -0.248328 0.463163 -0.544388 0.110467 0.430324 0.048870 0.580432 1.237202 1.016276 0.572918 1.405792 1.308374 0.039818 0.932684 -0.157521 1.642965 -0.198095 -0.719721 0.022914 0.586764 1.192992 1.714474 -0.041348 0.368610 0.988372 0.001083 -0.360791 -0.635529 0.451054 -0.427345 0.571891 0.558859 0.632705 0.180802 -0.155730 1.023840 -0.249158 -2.124535 1.020296 0.492172 1.103190 1.097797 0.294957 0.591333 0.190860 -0.903674 0.936222 1.152032 0.362037 -1.054991 0.112473 0.185440 0.500496 0.916043 1.299462 -1.282736 0.039547 0.497145 1.050444 -0.053278 0.877365 -0.827097 -0.952314 0.726156 -0.656439 -0.158293 0.184626 -0.092096 -0.463850 0.186921 -0.678053 -0.812609 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = 0.155721 -0.028981 0.279945 -0.455264 -0.388322 0.084876 0.024347 -0.303457 -0.095057 0.032093 0.191293 -0.074327 -0.115990 0.432659 -0.099969 -0.348714 -0.068172 -0.312798 -0.141770 -0.080101 -0.062184 0.191568 -0.128274 -0.124014 0.082472 -0.131699 0.009309 0.238938 -0.064483 -0.272303 -0.078850 -0.219315 -0.037112 0.568198 0.145507 0.087959 -0.067853 0.815432 -0.056080 0.311612 -0.528715 -0.521339 0.509560 -0.177318 -0.059329 -0.483290 -0.286094 0.305987 -0.051954 -0.122170 0.139368 -0.015357 0.026771 -0.262788 -0.030235 0.209219 -0.588527 0.250120 0.243727 -0.297462 -0.292623 -0.137013 -0.029545 0.008406 -0.160344 -0.322202 0.163758 0.182840 -0.172172 0.024752 -0.092693 -0.451419 0.772943 0.170722 -0.030119 0.157566 0.112348 -0.290605 0.386808 -0.149313 -0.523834 -0.218632 0.043583 -0.209178 0.432104 0.004836 0.312594 -0.771588 0.231743 -0.795137 0.222720 -0.380879 0.232770 0.449789 -0.336330 0.343467 0.303802 0.273168 0.185571 0.047019 0.453959 0.124739 0.143108 0.297682 0.413505 0.115094 -0.177108 -0.271333 -0.381729 -0.493996 0.117394 -0.214722 -0.775135 0.281266 -0.050879 -0.016971 -0.169985 0.118132 0.060937 0.421673 -0.605706 0.092860 0.289452 -0.127577 0.103743 0.341321 -0.134431 0.009615 -0.233091 0.365506 -0.298925 0.283969 -0.028371 0.365108 -0.000809 -0.370886 -0.457142 0.085908 0.176825 -0.387945 -0.476085 -0.438632 -0.103436 0.286814 -0.288204 0.511794 0.915090 -0.436544 -0.562935 0.509600 0.438361 0.023468 0.351701 0.192959 0.577616 -0.177709 -0.203249 -0.206526 -0.233398 0.157838 -0.197615 0.048460 -0.182386 0.431644 -0.008730 -0.434067 0.917960 -0.173196 -0.270972 0.290210 0.108558 -0.327902 -0.401619 0.436670 0.378692 0.573679 0.134869 0.710255 -0.251107 -0.266887 0.087797 -0.231678 -0.073130 -0.325588 -0.008929 -0.046310 0.285823 -0.316360 -0.318476 -0.140061 -0.323889 -0.208452 0.340923 0.116774 0.176040 0.165562 0.050834 0.164233 0.611994 0.002365 -0.020618 -0.471676 0.263665 0.307892 0.073771 -0.448841 -0.159869 -0.128351 -0.088825 0.122472 0.042822 0.370172 -0.165035 -0.046663 0.067064 -0.029362 0.040400 0.107949 -0.434057 0.024787 -0.030155 0.280490 0.124991 0.466507 0.584358 0.516533 0.266095 0.149337 -0.032046 -0.005958 -0.099365 -0.124464 0.026467 0.342706 0.303689 0.433322 0.379425 0.273921 0.530888 0.347268 0.173523 0.542946 0.035572 0.829055 -0.237717 -0.139101 -0.042904 0.140872 0.525544 0.710339 -0.092404 0.051466 0.266419 0.149363 -0.235367 -0.451737 0.078443 -0.081322 -0.024404 0.314637 0.360266 -0.013334 -0.168981 0.669743 -0.053677 -0.753480 0.362953 0.155822 0.341930 0.235615 0.000569 0.134505 0.278274 -0.195406 0.263532 0.389951 0.362928 -0.575765 -0.099010 0.097982 0.386922 -0.020348 0.389135 -0.527665 0.234800 0.188585 0.428562 -0.047437 0.223933 -0.414296 -0.171130 0.241964 -0.092446 -0.009506 0.300124 0.204538 -0.322881 0.016109 -0.425228 -0.228700 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.039374 -0.574476 0.163633 -0.471866 -0.215704 0.267328 -0.244204 -0.367844 -0.014576 -0.225807 0.132578 -0.074190 0.048653 0.620722 0.079169 -0.457943 0.126323 0.289889 0.114887 0.262630 -0.010053 0.206953 -0.190357 -0.089165 0.025810 -0.197642 0.073040 0.272612 0.025641 0.140605 -0.254146 -0.309434 -0.311839 0.658990 0.303943 0.434832 0.005979 0.987331 0.030249 1.128128 -0.415088 -0.401723 0.381452 -0.125275 -0.114874 -0.108767 -0.491579 0.135008 -0.390402 -0.252750 0.280468 -0.190308 0.186444 -0.082637 0.143486 0.122245 -0.422319 -0.111241 0.180551 -0.161975 -0.111097 -0.288086 -0.216134 0.059034 -0.719462 -0.244113 0.142310 0.310652 -0.141169 -0.049225 -0.173567 -0.554827 0.956467 0.398203 -0.336492 0.039440 0.321759 -0.422409 0.290537 0.170887 -0.747466 -0.217571 -0.268996 -0.476066 0.687695 0.014739 0.704383 -0.863164 0.550234 -0.996319 0.299280 -0.523018 0.335567 0.764925 -0.602512 0.281330 0.451850 0.981160 0.096925 0.088543 0.449566 0.383402 -0.442797 0.193578 0.730243 0.064047 -0.205582 -0.408506 -0.299463 -0.384084 0.085202 -0.599663 -1.093247 0.116024 -0.102798 0.483075 -0.371779 0.485609 -0.147158 0.263387 -0.810816 0.268449 0.112874 -0.165566 0.234407 0.275704 -0.174745 0.048770 -0.240809 0.519497 -0.435130 0.099303 -0.247458 0.384130 -0.349707 0.299132 -0.401686 0.087445 0.277626 -0.382402 -0.690548 -0.611141 -0.345314 0.741828 -0.135522 0.857246 0.935801 -0.444880 -0.375377 0.561150 0.050359 0.141205 0.474667 0.267099 0.353569 -0.155028 -0.141795 -0.432265 -0.199776 -0.125422 -0.219028 0.094749 -0.205341 0.517742 -0.264442 -0.412488 1.490526 -0.221720 -0.383114 -0.462699 -0.044416 -0.385155 -0.369257 0.817645 -0.612340 0.432385 -0.137502 0.771900 -0.142546 -0.151352 0.105447 -0.610900 -0.149420 -0.586366 0.036720 -0.210041 0.400111 -0.616286 -0.466803 -0.003360 -0.250442 -0.131338 0.316833 0.350711 -0.054044 0.236423 0.117024 0.764158 0.645143 0.158983 -0.217890 -0.357325 0.293445 0.337446 -0.378219 -0.131302 -0.019396 -0.132483 -0.099167 -0.240165 0.165517 0.241359 -0.701521 -0.181749 -0.268380 0.119877 0.243591 0.300246 -1.053829 0.111910 0.337192 0.182325 0.493822 0.338622 0.609715 0.548703 0.368055 0.067579 -0.029176 0.113657 -0.423544 0.091411 0.236197 0.375614 0.158308 0.601800 0.379634 0.227548 0.324687 0.513519 0.603522 0.450185 0.312076 0.821686 0.366335 -0.224061 0.082900 0.040108 0.560537 0.825673 -0.304739 0.555684 0.294436 0.110593 -0.325385 -0.511202 0.130921 -0.102709 -0.179214 0.207795 0.014537 0.148104 -0.289232 0.715756 -0.015097 -0.846199 0.163714 0.208904 0.351654 0.567638 0.021750 0.292748 0.154102 -0.271888 0.738684 0.355456 0.261322 -0.438584 0.093932 0.031323 0.034968 0.596633 0.402888 0.066015 0.403853 0.079149 0.632747 0.169167 0.110371 -0.270472 0.049196 0.110492 -0.485738 -0.023204 -0.022797 0.173872 0.038988 -0.065999 -0.681125 -0.652628 +PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 3.380419 0.073900 3.157231 -4.116421 -1.350887 -1.822756 9.336079 -6.125190 -3.733989 11.896861 2.368702 -5.616136 -2.955441 5.033449 0.410059 -1.592339 3.221103 0.188869 -2.334837 -1.457030 -3.262845 2.002098 -1.696794 -6.672847 3.546641 -0.602488 3.809842 8.014409 -4.329789 3.341747 1.441716 -3.258721 2.726704 10.435965 3.032341 0.635583 -5.595952 12.044240 -13.799544 12.866242 -9.662796 -8.353329 16.403446 -1.566664 0.972553 -9.649179 -2.115588 7.475409 1.475884 -9.580279 -2.389149 -0.564273 3.642713 -9.477069 -5.017732 9.129273 -7.079381 -1.199220 5.810137 -10.074685 -12.388682 -1.826663 2.322236 3.026941 -13.038345 -7.986655 -0.205237 -4.535032 -1.146731 2.320650 -10.085506 -7.455561 3.744535 0.711913 -0.923389 1.544727 -5.194621 -4.062386 4.702380 3.350944 -4.982749 -5.628373 0.851793 -4.782601 1.366309 3.905673 9.628416 -15.041433 0.528544 -13.752557 5.080559 -7.157492 6.455333 9.403676 -1.442669 9.584122 0.431006 6.372065 -0.643204 -0.046030 4.980718 3.566264 5.673732 1.349418 8.423983 9.357219 -8.165474 -13.398768 -7.794082 -3.756141 5.515443 -3.002664 -9.996308 5.382654 -8.054482 -2.342318 -0.311493 -0.311273 -1.611493 12.070943 -12.240108 4.729131 4.556940 -1.857352 4.769993 6.093117 0.542434 1.240538 -1.706510 3.873643 1.514952 4.513440 0.181100 8.849829 -6.645802 -4.163093 0.906437 2.011404 4.005757 -7.016944 -8.626889 -15.009157 -2.995293 6.674137 -5.812336 3.666416 13.434077 -4.793045 -7.124907 4.517486 0.345441 -1.357937 1.740898 2.332976 14.581782 -8.508871 1.660792 0.520238 1.102317 7.190070 16.670127 -4.154960 -9.842037 8.373302 -4.768360 -9.127837 12.828684 0.963422 0.168152 2.029074 1.444568 -1.121432 -5.990270 10.250401 -10.285592 9.947222 -8.884105 11.578190 -5.157925 -0.601678 2.915637 -10.871603 -3.463048 -10.396716 0.652438 -1.758903 8.461223 -6.238943 -6.181956 -4.164425 -4.303089 -0.775230 12.393756 -12.207937 -1.716111 -0.598277 -3.226727 6.774912 1.636505 -4.503273 -1.978290 -7.503441 3.445130 5.552485 3.368907 -11.724442 -5.231802 -3.991588 -4.412364 -3.427646 0.965681 7.622140 -6.208653 0.811642 6.654183 -0.195863 -3.752803 -1.953532 -11.442224 4.130074 1.473322 3.974428 2.958936 14.288036 6.590835 6.844657 -1.370158 2.824292 -1.306577 -4.263203 -14.469142 4.903147 0.053978 2.665686 4.868284 6.515758 4.032789 4.796404 6.334128 -1.683467 1.404939 9.509218 2.490235 8.973608 -4.605282 -1.732026 5.568773 0.050579 7.652053 6.526433 3.758356 -9.837711 3.915672 -5.386364 -10.027961 -0.444824 -2.029018 -0.504909 -2.633977 7.145684 7.095098 -1.321391 -2.822165 16.529256 -1.802447 -19.293995 6.294399 2.717119 5.991278 9.334212 -3.338010 8.048394 6.576415 5.724192 3.876918 5.447901 5.941151 -10.178105 0.881514 1.399246 4.744596 10.630944 -1.561066 -24.536827 1.077702 1.198964 11.908680 -1.189841 13.478761 -6.389674 7.552901 0.389423 0.181156 2.887543 -2.137627 6.376593 -0.419256 -0.580387 -16.979973 4.947433 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = 1.573628 0.147547 1.725890 -2.403088 -1.096693 -0.837929 4.009706 -3.036453 -1.608084 5.368898 1.300528 -2.740160 -1.220887 3.045983 -0.252574 -0.966689 1.275767 -0.109969 -1.185845 -0.810531 -1.254445 1.193585 -0.789367 -3.217839 1.600256 -0.479817 1.733977 3.688214 -1.934234 1.263276 0.543785 -1.636931 1.419847 5.148887 1.382673 0.391440 -2.647416 5.831204 -6.251412 6.074582 -5.216133 -4.205118 7.744699 -0.783585 0.496140 -5.311356 -1.619905 3.435831 0.745317 -4.235927 -1.134342 -0.300384 1.663109 -4.545786 -2.206589 4.234645 -3.703283 -0.139963 2.760660 -4.833394 -5.585408 -0.884658 1.068808 1.404156 -5.854915 -3.833704 -0.073820 -1.563536 -0.738652 1.169134 -4.369574 -3.763788 2.513159 0.333053 -0.586585 0.857504 -2.264789 -2.389030 2.467038 0.901036 -2.500925 -2.696530 0.640340 -1.957500 0.776248 1.800361 4.618772 -7.364214 0.256980 -6.705191 2.605986 -3.519127 3.085997 4.398000 -1.093940 4.455998 0.408090 2.919826 0.283391 0.386042 2.576715 1.967712 2.914364 0.652003 4.100791 4.433280 -3.617708 -6.149851 -3.627868 -2.229416 2.442870 -1.509432 -5.472458 2.508767 -3.542608 -1.150934 -0.378367 -0.311831 -0.482451 5.992732 -5.965474 1.989866 2.453535 -0.938510 1.975958 3.010735 0.184867 0.513355 -1.043150 1.983238 0.430529 2.160016 0.137642 4.208664 -3.367888 -2.790866 -0.093980 0.943030 1.676418 -3.531551 -4.243216 -7.149617 -1.421239 3.266213 -2.788143 1.795860 6.674130 -2.429436 -4.005254 2.365944 1.052861 -0.925026 1.224921 1.228806 7.130826 -4.048167 0.712239 -0.065678 0.309971 3.436654 7.558993 -1.895600 -4.668264 4.019786 -2.233450 -5.484538 6.454745 0.206553 -0.024540 1.025543 0.744353 -0.920628 -2.778629 4.905469 -4.268162 5.125779 -4.324959 5.769319 -2.780979 -0.784049 1.299307 -5.307026 -1.692463 -4.579280 0.433430 -0.645159 4.236788 -3.130528 -3.029548 -1.842035 -2.385118 -0.443626 5.884933 -5.835538 -0.685150 -0.216020 -1.529937 3.288576 1.151293 -2.100239 -0.638695 -3.576906 1.754025 2.944400 1.788399 -6.235595 -2.408017 -2.051448 -1.992358 -1.684619 0.459940 3.716393 -2.794259 0.294318 2.974358 -0.493370 -1.628808 -1.072820 -5.037296 1.890492 0.186644 2.251127 1.118389 6.775973 3.527731 3.453679 -0.492983 1.291125 -0.618776 -2.376378 -6.159800 2.321951 0.305299 0.844529 2.429261 3.633391 2.001084 2.319854 3.492342 -0.318743 0.714933 4.708269 0.999406 4.591442 -2.408776 -0.753590 2.362737 0.067839 3.903424 3.874201 1.824914 -4.428352 1.946389 -2.241372 -4.522747 -0.643398 -0.926917 -0.193152 -1.494907 3.781120 3.591380 -0.684807 -1.376356 7.889402 -0.632065 -9.026307 3.263187 1.305529 2.860035 4.070757 -1.681263 3.526506 3.275428 2.521776 1.767826 2.650412 3.026492 -5.097088 -0.412515 0.662036 2.506169 5.203163 -0.293925 -11.495936 0.829482 0.984659 5.766580 -0.818752 6.338874 -3.257746 3.098585 0.293136 0.256954 1.117190 -0.768389 2.786521 -0.701616 -0.322095 -7.656898 1.927383 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = 0.330437 0.055430 0.681142 -0.900196 -0.605618 -0.217130 1.062819 -0.701517 -0.446550 1.367799 0.197749 -0.718930 -0.949257 0.992414 -0.128408 -0.708435 0.015997 -0.540188 -0.378217 -0.293656 -0.387551 0.562949 -0.239076 -0.666454 0.558963 -0.204163 0.270877 1.147811 -0.091934 0.061033 0.311883 -0.587481 0.381829 1.636078 0.323430 0.185544 -0.540575 2.046769 -1.527285 1.798124 -1.661997 -1.598776 2.236944 -0.246595 -0.109382 -1.644554 -0.312175 1.112278 -0.608580 -0.902435 -0.046430 0.145306 0.311177 -1.246361 -0.389415 1.240041 -1.786782 0.567081 0.673537 -1.165472 -1.318358 -0.278199 -0.017368 0.284910 -1.166080 -1.093823 -0.140632 -0.460541 -0.590922 0.276874 -0.827926 -0.836547 1.171025 0.261604 -0.315737 0.450489 -0.274622 -0.457983 0.891444 -0.392842 -0.919433 -0.815642 0.140595 -0.599148 0.687250 0.516597 0.934473 -2.220066 0.135606 -1.938922 0.834350 -1.111601 0.779065 1.393493 -0.429495 1.505595 0.251613 0.255164 0.165029 -0.232210 0.907057 0.535836 1.080212 0.669137 1.025893 1.171945 -1.172682 -1.640734 -1.292524 -0.850107 0.585677 -0.593360 -1.726378 0.587595 -0.646101 0.013558 0.232627 -0.130084 -0.344726 1.379704 -1.993299 0.562383 0.660712 -0.336151 0.591461 0.946025 -0.017265 0.001388 -0.246414 0.931658 -0.149880 0.870925 0.073738 1.225490 -0.435581 -0.839313 -0.376765 0.259917 0.381613 -0.878193 -1.254480 -2.042293 -0.439880 0.834122 -0.801144 0.864214 2.363765 -0.721930 -1.403962 1.126070 0.094021 0.221346 0.414077 0.450793 1.763743 -0.825021 -0.273533 -0.302550 -0.262315 0.963439 2.158307 -0.170297 -1.249794 1.260485 -0.398096 -1.074034 1.176161 -0.131562 -0.288366 -0.102141 0.152144 -0.708241 -0.838869 1.428577 -0.940262 1.602443 -0.950815 1.848615 -0.705054 -0.623971 0.368726 -1.781803 -0.416184 -1.442191 -0.155954 -0.043722 0.766670 -1.270011 -0.868576 -0.782516 -0.442797 -0.482562 1.482658 -1.529441 -0.071405 0.030986 -0.010586 1.379709 0.655116 -0.562227 -0.232275 -1.288600 0.555428 0.665852 0.456471 -1.976180 -0.451861 -0.291092 -0.573669 0.406119 0.033259 0.886490 -0.629308 0.125882 0.793925 -0.299965 -0.405611 -0.147427 -1.588101 0.380148 0.240917 0.655477 0.546031 1.776401 1.325266 0.963244 0.059413 0.838273 -0.219924 -0.426535 -1.288851 0.397619 0.145343 0.262899 0.841369 1.147192 0.814383 0.602677 1.268511 0.624366 -0.206884 1.397640 0.221922 1.636076 -0.679946 -0.484775 0.587669 0.274639 1.077948 1.281671 0.042962 -0.840882 0.928262 -0.337857 -0.904335 -0.422770 -0.121641 -0.356340 -0.147004 1.456374 0.961096 -0.384640 -0.145371 2.212837 -0.323902 -2.542674 1.037320 0.581282 0.951192 0.639609 -0.305896 0.667023 1.064883 -0.013472 0.534181 0.865813 0.828267 -1.633016 -0.009780 0.192150 0.804960 1.378763 0.399107 -3.161827 -0.423853 0.272727 1.684303 -0.105721 1.847274 -0.877225 0.063421 0.340049 -0.020801 0.138538 -0.054664 0.628047 -0.276974 0.185496 -1.846376 0.111531 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.823449 -0.187348 0.940889 -1.834807 -1.431146 -0.051870 0.388018 -1.630979 -0.637040 1.567142 0.604543 -1.488400 -0.984094 2.226003 -0.647049 -1.637458 0.062884 -0.264602 -0.378633 -0.546874 -0.580710 0.914370 -0.546641 -1.184848 0.732786 -0.564466 0.412974 1.645592 0.675070 0.009675 -0.256323 -0.948046 0.343639 3.167838 0.839638 0.113637 -0.494146 4.116020 -1.385797 2.600849 -2.926932 -2.478951 3.529482 -0.441862 -0.145509 -2.524058 -1.279010 1.671995 -1.662998 -0.689115 0.130760 -0.209173 0.406976 -1.840783 -0.473209 1.997593 -3.255594 1.652898 1.239333 -1.502413 -1.921743 -0.859263 0.000641 0.362189 -1.782005 -1.946016 0.184153 0.385468 -1.249522 0.469997 -1.622708 -1.941764 2.974841 0.635181 -0.883423 0.618918 -0.324433 -1.356191 1.436551 -0.913248 -2.195757 -1.228804 0.530767 -0.787634 1.751927 0.787859 1.976064 -4.301610 0.581542 -4.165570 1.346671 -2.306376 1.768457 2.911369 -2.055506 2.153664 0.679358 1.159539 0.907871 0.375398 2.096102 0.972377 0.894909 0.759245 1.891139 1.693784 -1.180385 -2.233747 -1.469914 -1.729367 0.224252 -0.840269 -4.194356 1.134374 -1.605711 0.690961 -0.423700 0.353513 -0.516042 2.172956 -3.520168 -0.195185 0.854544 -0.658072 1.493388 1.819618 -0.290885 0.371223 -0.921206 1.974250 -0.364847 0.904566 -0.367356 2.063504 -1.051711 -2.179988 -2.177427 0.420574 1.096888 -1.898040 -2.916672 -3.269761 -1.021899 1.101099 -1.322555 2.302617 4.375820 -1.468641 -2.572135 2.407035 0.091952 0.576010 2.270031 0.758278 3.554601 -1.697511 -0.006493 -0.515159 -0.325944 0.925048 1.163758 -0.521797 -1.972684 1.887139 -0.558715 -1.683440 2.719268 -0.175904 -0.781924 -0.718784 0.191219 -1.229137 -1.791348 3.117151 -1.423014 2.898915 -1.250431 3.784356 -1.534625 -1.776039 0.914696 -2.562099 -0.537350 -1.702492 0.019037 -0.381099 1.959246 -2.409173 -1.914252 -0.538377 -0.819632 -0.843468 2.524793 -0.241379 -0.144203 0.301348 -0.024368 2.407668 1.963392 -0.818836 0.137953 -2.446878 1.060752 1.936252 0.251002 -3.362363 -0.553049 -0.826594 -0.864235 0.182589 0.219709 1.581578 -1.513485 -0.429333 0.598375 -0.135485 0.552782 0.121498 -2.654993 1.060520 -0.270854 0.911360 1.079848 3.093665 2.613375 2.020312 0.529122 0.682071 -0.107506 -0.999735 -1.010181 0.649457 0.732338 0.801721 1.363414 2.482131 1.502204 1.095933 2.006068 1.200594 0.008793 2.647692 0.666778 3.622969 -1.436087 -0.478341 0.415159 -0.022674 2.492983 3.587802 -0.639479 -1.058276 1.468776 -0.072088 -1.176663 -2.018944 -0.304936 -0.464934 -0.755414 1.739739 1.217370 -0.456103 -0.657978 4.076926 -0.273724 -4.401075 2.313480 0.926486 1.435610 1.181702 -0.567269 0.616105 1.835424 -0.636989 1.236916 1.720865 1.699631 -2.568764 -0.352306 0.201382 1.802284 1.677775 0.904933 -3.843769 0.647838 1.322071 3.111145 0.520650 2.089203 -1.584305 -0.440709 0.467294 -0.416268 0.051333 0.023432 1.181965 -1.063793 0.302042 -2.396920 -1.011475 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.911645 1.180012 1.002661 -1.742255 -2.756312 0.574632 -2.190847 -2.854300 -0.658178 1.623630 1.185441 -2.027585 -0.694420 2.197668 -2.197566 -1.961456 -1.218729 0.354847 -0.262692 -2.239524 0.006102 0.568630 -0.474005 -1.202875 -0.484028 -1.172972 0.640392 0.596034 1.717256 0.103258 -0.396127 -0.796880 1.108901 2.993571 1.488961 -0.279027 -0.504205 2.921934 0.664444 0.358946 -4.242371 -2.918262 2.553445 0.051793 0.762754 -3.515988 -1.753992 1.235387 -2.445718 1.198482 -0.426801 -0.929693 0.418080 -1.068244 -0.737231 1.297569 -3.185244 3.798635 0.736018 -2.286413 -1.318264 -0.326219 0.565431 1.063457 0.598153 -1.789272 -0.018186 2.785858 -1.334502 0.796063 -1.035214 -2.126330 3.516933 -0.164737 -1.427943 -0.172094 -0.731977 -0.843206 1.116758 -2.388243 -2.151872 -0.880576 1.513845 0.810718 0.604194 1.611163 1.642286 -3.899345 -0.047883 -4.141155 1.582448 -1.003340 1.860654 1.345159 -2.808427 0.848487 0.992288 -0.739710 2.598733 1.241812 1.825199 0.454795 1.199020 0.611797 0.955083 1.537361 0.280843 -0.799790 -0.269594 -2.450731 -0.534087 0.173264 -4.441587 0.766978 -1.728514 1.271216 -1.283128 -0.456633 0.347636 1.806310 -3.504004 -2.735590 0.552720 -0.427855 1.975218 1.067328 -0.095397 1.656826 -0.474676 1.776238 -0.643719 -0.277018 0.072546 1.665831 -0.612150 -4.829375 -4.889609 1.618418 1.404706 -1.928431 -2.593057 -2.175697 -1.079441 0.210014 -1.068780 1.776514 3.771020 -1.516591 -3.647341 2.105861 0.119947 -0.859695 4.032674 0.780572 4.301485 -1.937975 0.411388 -0.534087 -0.780454 0.907660 0.008498 -1.082830 -1.672224 1.428227 0.190629 -2.101855 -0.180949 -0.581948 -1.335013 -1.093372 0.300771 -0.862827 -0.357514 1.457855 -0.259758 2.601999 -1.368986 3.625911 -2.538177 -3.314265 0.347376 -2.758614 -1.028442 1.709815 0.681434 -0.192918 2.728954 -2.426705 -1.592567 0.380340 -1.358048 -0.893815 2.450394 1.086440 0.166971 0.983804 -0.464921 2.509585 2.453362 -0.421295 0.578638 -1.543207 0.806968 2.746690 1.288474 -4.652250 -1.077526 -1.892763 -0.353018 0.117203 0.028627 2.082113 -0.244777 -0.028406 -0.547026 -1.242627 2.106286 0.255333 0.703156 1.698459 -1.997976 1.215097 -0.294154 3.020831 2.146674 2.438424 1.021420 0.369580 0.363373 -2.524473 2.746117 0.690119 2.524499 -0.671502 1.343264 2.819457 0.933469 1.369052 2.370950 1.279965 -0.151198 2.582488 -0.985071 3.547301 -4.015579 1.451442 -1.157753 0.167201 2.407195 5.091960 -1.123758 -1.605920 0.626351 -0.249460 0.272410 -2.893476 -0.337756 -0.213714 -0.975034 1.661579 2.709614 0.000551 -1.345835 3.412511 0.873841 -2.825700 3.904235 0.766150 0.389062 0.203569 -1.568102 -0.971066 1.553346 -0.602182 -0.224634 2.458138 1.886175 -3.000599 -1.944940 -0.229624 2.882609 0.866466 1.177224 -2.772906 1.218514 2.979703 2.833911 0.060004 1.437931 -2.568088 -2.205560 0.934029 0.181879 -0.321582 0.765372 0.698558 -1.993902 0.680644 0.549949 -1.688192 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = 0.136833 0.137865 0.488912 -0.938793 -0.078367 -0.091359 0.931849 -0.847625 -0.139525 0.620443 0.616663 -0.756127 0.036059 0.733880 0.230127 -0.294645 0.573556 0.019837 -0.281244 0.110948 0.029635 0.147902 -0.171841 -0.729719 0.234683 -0.091949 0.445611 0.670524 -0.607417 -0.235593 -0.081013 -0.356197 0.468537 1.321478 0.215432 0.072919 -0.765106 1.155201 -0.474355 1.592058 -1.195539 -0.467212 1.627899 -0.173977 0.147724 -2.077836 -0.960694 0.657447 0.710271 -1.252392 -0.353053 -0.183769 0.350113 -1.137208 -0.494928 1.207165 -0.478354 -0.234032 0.764949 -1.220878 -0.987369 -0.049690 0.266665 0.121190 -0.807993 -0.959914 0.033434 -0.371596 -0.289652 0.376276 -0.990191 -1.328018 1.196364 0.385986 -0.251986 0.286581 -0.581720 -0.930041 0.534529 0.520339 -0.530037 -0.593721 0.300315 -0.317751 0.081073 -0.045881 0.794344 -1.404326 -0.305570 -1.511912 0.602820 -0.912712 0.921092 0.799772 -0.318086 0.859256 0.098633 -0.035971 -0.189950 0.391286 0.702295 0.497657 0.878722 -0.084035 1.107466 0.760436 -0.614932 -1.313787 -0.482797 -0.682831 0.606606 -0.099687 -0.955877 0.511798 -0.983373 -0.448469 -0.058322 -0.040887 0.159154 1.247036 -0.852758 0.032622 0.916514 -0.337002 0.410947 0.932441 0.089271 0.044281 -0.318155 0.436301 0.180926 0.581342 -0.034523 1.007385 -0.640577 -1.007830 -0.014407 0.087288 0.368731 -0.936280 -1.102333 -1.304259 -0.367959 0.191513 -0.693181 0.351853 1.450537 -0.528454 -1.224411 0.495881 0.890201 -0.425416 0.185383 0.389915 2.027165 -1.258079 0.490021 -0.292945 0.079413 0.957245 1.669971 -0.686666 -1.200507 0.454362 -0.937184 -2.581927 1.845877 0.099150 0.112889 1.385853 0.012655 -0.237159 -0.835725 0.945604 -0.362111 1.434564 -1.276064 1.554447 -0.577155 -0.178985 0.121948 -0.565593 -0.708408 -0.874428 0.088545 0.044614 1.266361 -0.100024 -0.796335 -0.082871 -0.973693 0.142192 1.393786 -1.230966 -0.133724 -0.142875 -0.552417 0.382298 0.295260 -0.508645 -0.105604 -0.810120 0.484865 0.571137 0.561246 -1.535236 -0.707556 -0.800764 -0.447445 -0.789116 0.072959 1.040082 -0.376681 -0.155066 0.521170 -0.205690 -0.312339 -0.542417 -1.048297 0.410311 0.026000 0.304269 -0.016793 1.706644 0.929669 0.623851 -0.141802 -0.186316 -0.109520 -0.641878 -1.622913 0.203934 -0.099319 0.136862 0.588751 0.512295 0.500081 0.557892 0.636074 -0.325039 0.623800 0.938161 0.336894 0.882703 -0.147644 -0.046632 0.618232 -0.277319 0.963285 1.212221 0.560455 -1.141178 0.306342 -0.171978 -1.172131 -0.434847 -0.383129 -0.107061 -0.656527 1.098906 0.608472 -0.122691 -0.418081 1.769245 0.250149 -1.827288 0.858099 0.150506 0.564601 0.955872 -0.514472 1.154434 0.861916 0.559952 0.108166 0.399736 0.831133 -1.344629 -0.396444 -0.136764 0.443093 0.946719 -0.003886 -2.093691 0.507765 0.137905 1.411614 -0.165485 1.629653 -0.746580 0.998612 0.123804 0.187120 0.178589 0.001894 0.531623 -0.407707 -0.701443 -1.828199 0.829019 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = 0.136833 0.137865 0.488912 -0.938793 -0.078367 -0.091359 0.931849 -0.847625 -0.139525 0.620443 0.616663 -0.756127 0.036059 0.733880 0.230127 -0.294645 0.573556 0.019837 -0.281244 0.110948 0.029635 0.147902 -0.171841 -0.729719 0.234683 -0.091949 0.445611 0.670524 -0.607417 -0.235593 -0.081013 -0.356197 0.468537 1.321478 0.215432 0.072919 -0.765106 1.155201 -0.474355 1.592058 -1.195539 -0.467212 1.627899 -0.173977 0.147724 -2.077836 -0.960694 0.657447 0.710271 -1.252392 -0.353053 -0.183769 0.350113 -1.137208 -0.494928 1.207165 -0.478354 -0.234032 0.764949 -1.220878 -0.987369 -0.049690 0.266665 0.121190 -0.807993 -0.959914 0.033434 -0.371596 -0.289652 0.376276 -0.990191 -1.328018 1.196364 0.385986 -0.251986 0.286581 -0.581720 -0.930041 0.534529 0.520339 -0.530037 -0.593721 0.300315 -0.317751 0.081073 -0.045881 0.794344 -1.404326 -0.305570 -1.511912 0.602820 -0.912712 0.921092 0.799772 -0.318086 0.859256 0.098633 -0.035971 -0.189950 0.391286 0.702295 0.497657 0.878722 -0.084035 1.107466 0.760436 -0.614932 -1.313787 -0.482797 -0.682831 0.606606 -0.099687 -0.955877 0.511798 -0.983373 -0.448469 -0.058322 -0.040887 0.159154 1.247036 -0.852758 0.032622 0.916514 -0.337002 0.410947 0.932441 0.089271 0.044281 -0.318155 0.436301 0.180926 0.581342 -0.034523 1.007385 -0.640577 -1.007830 -0.014407 0.087288 0.368731 -0.936280 -1.102333 -1.304259 -0.367959 0.191513 -0.693181 0.351853 1.450537 -0.528454 -1.224411 0.495881 0.890201 -0.425416 0.185383 0.389915 2.027165 -1.258079 0.490021 -0.292945 0.079413 0.957245 1.669971 -0.686666 -1.200507 0.454362 -0.937184 -2.581927 1.845877 0.099150 0.112889 1.385853 0.012655 -0.237159 -0.835725 0.945604 -0.362111 1.434564 -1.276064 1.554447 -0.577155 -0.178985 0.121948 -0.565593 -0.708408 -0.874428 0.088545 0.044614 1.266361 -0.100024 -0.796335 -0.082871 -0.973693 0.142192 1.393786 -1.230966 -0.133724 -0.142875 -0.552417 0.382298 0.295260 -0.508645 -0.105604 -0.810120 0.484865 0.571137 0.561246 -1.535236 -0.707556 -0.800764 -0.447445 -0.789116 0.072959 1.040082 -0.376681 -0.155066 0.521170 -0.205690 -0.312339 -0.542417 -1.048297 0.410311 0.026000 0.304269 -0.016793 1.706644 0.929669 0.623851 -0.141802 -0.186316 -0.109520 -0.641878 -1.622913 0.203934 -0.099319 0.136862 0.588751 0.512295 0.500081 0.557892 0.636074 -0.325039 0.623800 0.938161 0.336894 0.882703 -0.147644 -0.046632 0.618232 -0.277319 0.963285 1.212221 0.560455 -1.141178 0.306342 -0.171978 -1.172131 -0.434847 -0.383129 -0.107061 -0.656527 1.098906 0.608472 -0.122691 -0.418081 1.769245 0.250149 -1.827288 0.858099 0.150506 0.564601 0.955872 -0.514472 1.154434 0.861916 0.559952 0.108166 0.399736 0.831133 -1.344629 -0.396444 -0.136764 0.443093 0.946719 -0.003886 -2.093691 0.507765 0.137905 1.411614 -0.165485 1.629653 -0.746580 0.998612 0.123804 0.187120 0.178589 0.001894 0.531623 -0.407707 -0.701443 -1.828199 0.829019 +PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/union-find.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/union-find.cpp__createGraph(int, int) = 0.850344 -0.088228 0.935165 -1.473197 -1.480240 0.378685 -0.128580 -1.129660 -0.458336 0.711382 0.982926 -0.852257 -0.419936 0.640319 -0.424346 -1.083408 0.444369 -0.185839 0.089343 -1.018539 -0.247826 0.440607 -0.380453 -1.097612 0.377703 -0.901750 -0.235082 1.474886 0.251058 0.492121 -0.019945 -0.522550 0.157435 2.428579 0.769107 -0.653669 -0.146153 2.806439 -0.708301 0.447783 -1.595840 -1.763532 2.664412 -0.231681 0.049391 -1.375008 -1.450581 0.860390 -1.136981 -0.081750 -0.064597 -0.592654 1.157004 -1.112107 -0.958866 1.353690 -2.391702 0.469132 0.645155 -1.791834 -1.480887 -0.035187 -0.154177 0.368274 -0.478040 -1.316331 0.312326 0.804610 0.178570 0.141809 -0.769961 -1.441104 2.048243 0.531077 0.172952 0.297568 0.151815 -1.365187 1.070477 0.270613 -1.838904 -0.962498 -0.115353 -1.074410 1.429692 -0.178401 1.958515 -2.651171 0.597338 -3.182889 0.985388 -1.239562 1.051067 1.697963 -1.408903 1.308802 1.048693 0.643363 0.448776 0.277391 1.894267 0.631899 0.646471 0.886204 1.490831 1.034524 -0.445570 -0.916358 -1.078342 -1.144374 0.009807 -0.993187 -2.929470 0.994364 -1.038976 -0.194256 -0.413240 -0.226499 0.071194 2.532183 -1.101288 0.194311 0.803955 -0.507291 0.214654 0.817693 -0.008268 -0.249810 -0.408880 1.548737 -0.717737 0.479356 0.087602 1.571300 -0.378149 -2.285912 -1.492905 0.701052 0.675758 -1.710497 -2.085855 -1.427990 -0.315216 0.804920 -0.814389 1.319887 3.207873 -1.046792 -1.907014 1.634444 0.844344 -0.529351 1.844199 0.862266 2.369454 -1.006461 -0.457484 -1.025245 -0.692418 0.543197 0.251583 -0.486666 -0.677406 1.737807 0.021204 -0.889592 2.980619 -0.674660 -0.491142 1.120576 0.190810 -0.684469 -1.229831 1.654073 1.052768 1.979033 0.315971 2.704296 -0.576717 -1.847915 0.529882 -0.200285 -0.772863 -0.465645 0.615675 0.069255 0.766021 -0.902091 -1.601697 -0.639334 -0.645193 -0.568628 1.835391 0.969957 0.594423 0.918762 -0.495777 0.081158 1.317209 -0.191513 0.041167 -1.466871 0.734379 1.188861 0.038486 -2.115747 -0.808663 -0.401917 -0.067672 0.014282 0.529870 2.038958 -0.688738 -0.108368 0.450126 0.040731 0.189788 0.174838 -1.587380 1.009305 0.050943 0.521926 0.186307 2.162418 2.165707 1.614063 -0.041844 0.733572 -0.192159 -0.246957 -0.396808 -0.217881 0.526145 0.694793 0.679132 1.772999 0.745485 1.342045 1.590870 1.210147 0.957453 1.727391 0.058073 2.302869 -0.866209 -0.291197 0.279150 0.087931 1.975821 2.406023 0.582218 -0.871936 0.569430 0.004602 -0.918027 -2.126324 0.375622 0.096150 -0.047101 0.955107 1.610424 0.101340 -0.935339 2.261305 0.568319 -3.127677 2.049297 0.766990 0.785115 0.958566 -0.478119 0.557146 0.874168 0.123889 1.049598 1.540706 1.041577 -2.374643 -0.427867 0.489259 1.516884 0.027222 1.143323 -2.405485 0.600637 0.570599 1.352580 0.037603 1.803457 -1.663940 -0.668549 0.431723 -0.477035 -0.387202 0.591477 0.179689 -1.788834 0.899137 -1.243233 -0.288856 +PE-benchmarks/union-find.cpp__find(int*, int) = 0.721261 -0.156177 0.834523 -1.597058 -1.046506 -0.246389 1.362892 -1.523969 -0.754945 2.584207 0.755580 -1.328715 -0.229501 2.133049 -0.121033 -0.740913 0.336604 -0.343819 -0.562195 0.072309 -0.527019 1.024573 -0.561451 -1.434749 0.811911 -0.160361 0.458498 1.479842 -0.912827 0.277313 0.053894 -1.059077 0.540948 2.834332 0.750592 0.099220 -1.002003 3.107571 -2.784807 3.094374 -2.538806 -2.273228 3.413081 -0.499585 0.181290 -2.017572 -1.019297 1.757948 0.410508 -2.183436 -0.167227 -0.089253 0.877552 -2.123703 -0.757769 1.701330 -2.154214 0.162416 1.537726 -1.999675 -2.307658 -0.564128 0.282031 0.640515 -2.705359 -1.925342 -0.090177 -0.344433 -0.274362 0.104119 -1.569977 -2.174060 2.009607 0.414368 -0.612105 0.557711 -0.769152 -1.680114 1.604889 -0.078536 -1.722883 -1.279554 0.005306 -1.259872 1.018791 0.659573 2.288902 -3.751667 0.872822 -3.491248 1.382675 -1.643469 1.432548 2.554796 -1.057525 1.830668 0.575586 1.994545 0.626847 0.128294 1.601546 1.056140 1.086759 0.691813 1.910874 2.168932 -1.956972 -2.644830 -1.867529 -1.591901 1.299755 -1.081401 -2.744014 1.279515 -1.026806 -0.189933 -0.159127 -0.259336 -0.334819 3.048962 -3.154853 0.646690 1.315981 -0.607487 0.766148 1.577420 -0.103021 -0.009305 -0.819044 1.314175 -0.294124 1.030298 0.074902 2.211420 -1.885098 -1.112477 -0.319975 0.605924 0.694330 -2.015157 -2.243796 -3.726783 -0.482978 1.693326 -1.501711 1.555444 3.684369 -1.594975 -2.210335 1.789916 0.936951 -0.635451 0.821677 0.668767 3.034569 -1.697872 -0.152185 -0.528922 -0.445849 1.351762 3.163617 -0.482577 -2.144521 2.093248 -1.165724 -2.763236 3.681382 0.222235 -0.483609 0.085008 0.515607 -0.967439 -1.212211 2.482083 -1.797510 2.213822 -1.632859 3.192074 -1.199905 -0.523879 0.733644 -2.460236 -1.009222 -2.350406 -0.161864 0.161111 1.884858 -1.755628 -1.441341 -0.693208 -1.071776 -0.739663 2.564942 -2.453695 -0.132391 0.192904 -0.430449 2.055103 1.131706 -0.849046 -0.343922 -1.629308 1.024949 1.341378 0.313825 -2.908452 -1.170561 -1.053976 -0.887989 -0.306386 0.125234 1.885130 -1.647713 0.004597 1.352888 -0.343036 -0.620394 -0.326094 -2.572826 0.860959 0.013814 1.443251 0.800111 3.071713 1.818968 2.135209 0.235332 0.833054 -0.595564 -0.751663 -2.684009 0.948566 0.144163 0.446801 1.534971 2.062303 1.343508 1.301620 1.968223 0.478204 0.542489 2.577745 0.263059 2.577790 -0.606560 -0.472947 1.085447 0.252088 2.189808 2.315052 0.119939 -1.476102 1.185958 -0.954912 -2.091322 -0.248407 0.005799 -0.257423 -0.547366 1.465257 1.639575 -0.206762 -0.717661 3.623701 -0.499249 -4.100507 1.642494 0.849009 1.822240 1.820175 -0.567282 1.874124 1.274930 0.749512 1.412751 1.677150 1.669971 -2.637709 -0.369824 0.400006 1.292516 2.635943 0.844435 -4.722322 0.458263 0.494367 2.482888 -0.563325 2.671315 -1.793333 0.984172 0.454951 0.050209 0.451317 -0.375090 1.068716 -0.507305 0.091940 -3.332328 0.393699 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = 0.533452 0.146693 1.181156 -2.023044 -1.289855 -0.605785 1.882234 -1.569758 -0.745375 2.516168 0.949570 -1.653789 -0.650725 2.331818 -0.326009 -1.028315 0.289341 -0.505070 -0.914466 -0.338085 -0.414709 1.107959 -0.443872 -1.821842 1.033364 -0.370949 0.583228 2.056979 -0.586508 0.049880 0.346435 -1.074914 1.043613 3.229266 0.552950 0.183236 -1.251979 3.405348 -3.032231 3.061860 -3.212318 -2.561014 4.316883 -0.588952 -0.058912 -3.310377 -1.453838 1.952454 0.092961 -2.156556 -0.460846 0.085007 1.006020 -2.792639 -0.984162 2.345442 -2.671161 0.517512 1.698615 -2.563018 -2.643738 -0.503488 0.224243 0.620407 -2.601598 -2.243383 -0.203175 -0.558678 -0.566478 0.379892 -1.550113 -2.259601 2.813258 0.233769 -0.514661 0.920860 -0.952734 -1.966644 1.827329 -0.176884 -1.574796 -1.604764 0.523578 -0.828573 0.990907 0.550226 2.271885 -4.257471 0.091367 -3.738584 1.708349 -2.020674 1.628043 2.558092 -1.332601 2.413865 0.398987 1.201209 0.581305 0.302349 1.821946 1.097451 2.016801 0.687885 2.119981 2.366963 -1.999837 -3.149125 -2.106079 -1.882310 1.347383 -1.128885 -3.654978 1.397910 -1.285366 -0.601811 -0.016024 -0.664791 -0.092496 3.673149 -3.016043 1.004050 1.835867 -0.706872 0.574147 1.983208 0.002447 -0.185489 -0.844267 1.419885 -0.136800 1.394364 0.171956 2.494885 -1.728053 -2.316409 -0.345126 0.445543 0.481379 -2.169170 -2.488097 -3.848426 -0.577939 1.667409 -1.661556 0.982234 4.180096 -1.580668 -2.970740 1.915541 1.725889 -0.571097 0.801791 0.853702 3.764919 -2.051221 -0.079454 -0.698101 -0.420905 2.044620 4.028782 -0.734543 -2.668450 2.365020 -1.258414 -3.984566 3.900304 0.031636 -0.204301 0.804660 0.512898 -1.306041 -1.608862 2.775705 -1.061128 3.191081 -2.105020 3.671528 -1.680222 -1.164833 0.736318 -2.361409 -1.106079 -2.432293 -0.057251 0.463589 2.069174 -1.865816 -1.748242 -1.023049 -1.270363 -0.661690 3.096213 -3.131436 -0.164091 -0.070643 -0.623719 1.787435 1.112679 -1.284785 -0.141190 -2.023826 1.160052 1.677251 0.994466 -3.979643 -1.206522 -1.053733 -1.047109 -0.301702 0.151328 2.208877 -1.280420 0.093866 1.738262 -0.767381 -0.969600 -0.806087 -2.775830 0.914711 -0.255322 1.584465 0.484310 3.629186 2.512206 2.101061 -0.113409 1.036920 -0.591833 -1.247146 -2.778686 1.000780 0.088787 0.219578 1.754178 2.546056 1.454170 1.374033 2.649482 0.704936 0.269916 2.928426 0.354123 2.934376 -0.978845 -0.663034 1.249116 0.261519 2.537215 2.838434 0.753491 -2.079146 1.470243 -0.631312 -2.087641 -0.913982 -0.335714 -0.186497 -0.742118 2.593552 1.958345 -0.622035 -0.578061 4.194825 -0.370985 -4.618605 2.085971 0.952100 1.931755 1.426281 -0.868187 1.705225 1.918176 0.875023 1.052785 1.579114 1.946091 -3.180376 -0.974161 0.469893 1.655274 2.869195 0.876185 -5.905724 0.148861 0.702791 3.024999 -0.733054 3.386681 -1.966308 0.910685 0.424395 0.479036 0.387996 -0.353293 0.875249 -1.141720 -0.040642 -3.632964 0.599625 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = 2.966852 -1.255166 2.399581 -5.188251 -3.715424 0.446913 1.663145 -4.994285 -2.077887 6.921961 2.152025 -3.646281 -0.298274 5.677594 -0.889343 -2.752259 1.326816 -0.458414 -0.263989 -0.604435 -1.487957 2.630902 -1.887385 -4.191902 1.464279 -1.574066 1.119458 4.128563 -1.826053 2.326481 -0.530862 -3.293384 0.557186 8.789968 3.306154 -0.521811 -2.446239 10.009554 -6.461235 8.399279 -7.323464 -6.840133 9.488898 -1.227382 0.939781 -5.175231 -3.660473 4.259021 -0.263248 -4.359390 -0.206605 -1.363197 3.375760 -5.004989 -2.478600 4.177289 -6.424081 0.629726 3.802887 -5.773827 -5.991286 -1.842681 0.559033 2.637208 -7.490009 -5.284081 0.448235 0.923127 -0.397814 0.311448 -4.853777 -6.343102 5.577644 2.287487 -1.916670 0.687135 -1.255632 -5.211761 4.225807 -0.210881 -6.386857 -3.590420 -0.914445 -4.525350 3.912227 1.704464 8.057223 -11.089190 3.917945 -11.600376 3.740138 -4.888652 4.318131 7.856745 -3.541901 4.899295 2.602148 6.734473 2.565981 0.227354 5.081923 3.898464 1.937833 2.226419 6.223037 6.234158 -4.340101 -6.568957 -4.549642 -4.134646 2.209102 -3.843368 -9.249851 3.827533 -3.411998 0.085090 -1.688206 0.053866 -1.680116 8.891398 -9.224067 0.328579 2.822290 -1.942501 2.533846 3.649339 -0.502577 0.463237 -2.161032 4.594887 -1.502482 2.284594 -0.036797 6.464399 -5.918835 -3.096992 -3.184759 2.614649 2.978483 -6.269947 -7.554376 -10.035909 -2.149827 5.052527 -3.855996 6.435054 11.200397 -4.628335 -6.470001 5.528406 1.211663 -2.134323 4.563364 2.333234 8.534031 -4.497491 -0.515029 -2.357296 -1.437245 2.347757 7.147307 -1.489973 -5.066073 6.591246 -3.094889 -5.523253 10.303851 -0.143072 -2.101661 -1.155818 1.037865 -2.672230 -3.385239 7.520622 -6.003106 6.094885 -3.683754 9.630809 -3.077544 -2.480551 2.085341 -7.631871 -3.025508 -5.493960 0.874265 -0.353469 5.525245 -5.375230 -5.004874 -1.514482 -3.150680 -2.143549 7.452237 -3.977532 -0.177297 1.859661 -1.191947 6.958327 4.318794 -1.397644 -0.955336 -4.495737 3.300631 4.486176 -0.173555 -7.817321 -3.660121 -2.637492 -2.049650 -1.449474 1.172096 5.940247 -5.558219 -0.408656 2.504503 -0.043001 -0.203635 0.341021 -7.905716 3.439474 0.516748 3.868841 2.369052 8.682290 5.427504 6.670539 1.194181 1.929227 -1.515596 -1.989135 -5.936158 2.369088 2.087655 0.851047 3.682003 7.054540 3.464215 4.133224 5.606598 2.722060 2.437907 6.907388 0.095129 7.860418 -2.119555 -1.085728 2.315102 0.351024 6.738262 8.259390 0.461910 -3.347189 3.121289 -2.870344 -5.730134 -2.441058 0.797728 -0.526509 -1.051314 2.989761 5.286048 0.054054 -3.012418 10.346968 -0.340568 -12.245439 5.393374 2.943240 4.676162 6.000239 -1.897442 4.818295 3.076980 1.525770 5.231321 5.581192 4.184960 -7.719914 -0.782923 1.314131 3.731274 6.636629 2.744673 -11.431862 2.262455 2.143367 7.334405 -0.543574 7.684304 -5.678729 1.598617 1.640257 -1.016230 0.667621 -0.457030 3.102740 -2.450183 1.570051 -8.031801 -0.425951 +PE-benchmarks/union-find.cpp__main = 0.466304 -0.303912 1.789746 -2.704351 -2.084477 -0.277333 1.479240 -1.597962 -0.755273 1.355044 1.080158 -1.742837 -1.888586 2.212018 -0.362130 -2.216861 0.485255 -0.503515 -0.477367 -0.866901 -0.640170 1.151872 -0.607084 -1.580527 1.182197 -0.995852 0.231047 3.118637 1.007632 0.227830 0.209327 -1.245666 0.579619 4.213846 0.932480 -0.061841 -0.571877 5.335609 -2.300412 3.127773 -3.230802 -2.883988 4.920076 -0.660883 -0.669146 -3.717922 -2.137628 2.085787 -2.854635 -0.909650 0.453428 -0.071231 1.471652 -2.539159 -0.682931 3.057883 -4.362361 1.502518 1.587112 -2.446894 -2.163043 -0.819744 -0.928593 0.348988 -1.890896 -2.427248 0.038732 -0.217400 -0.965269 0.457974 -1.544852 -2.153818 4.350658 0.840894 -0.717565 1.125299 0.150297 -2.201950 2.009409 -0.384451 -2.820118 -1.890559 0.224135 -1.100980 2.753486 0.015867 2.292517 -5.152136 -0.205196 -5.128829 1.872510 -3.141410 1.908716 3.635868 -2.519615 3.128994 0.956859 0.354972 0.331087 -0.032373 2.712670 1.196694 1.844442 1.391507 2.628183 2.015113 -1.750000 -3.099873 -2.418937 -1.972255 0.412351 -1.687522 -5.232280 1.393262 -1.559834 0.204793 -0.075020 -0.180726 -0.591768 3.487088 -2.661193 1.362176 1.645964 -1.017552 0.974145 2.480914 -0.236260 -0.238724 -0.934477 2.698792 -0.716667 1.940170 -0.437799 2.862441 -0.590716 -3.392811 -1.992206 0.381661 0.987161 -2.191376 -3.694319 -3.527612 -1.076464 1.275791 -1.550028 1.720763 5.640760 -1.770361 -3.366867 3.161849 1.119226 0.793186 1.950047 1.334440 3.864593 -1.730494 -0.662100 -1.678162 -1.003946 1.405439 3.064843 -0.499036 -2.494073 2.952124 -0.696891 -2.776967 4.063617 -0.533532 -0.899197 0.416462 0.056989 -1.916582 -2.578275 4.010682 -0.361382 3.796096 -1.218942 4.852807 -1.432214 -2.801465 0.939157 -1.665686 -0.597394 -2.636230 0.032762 0.691918 1.506946 -2.605177 -2.785081 -1.495603 -0.634068 -1.032235 3.090003 -0.941279 -0.104482 0.496820 0.096564 1.991121 2.325957 -1.032828 0.056694 -2.998960 1.561846 1.728925 0.505099 -4.490771 -0.589387 -0.283395 -1.066317 0.427478 0.585548 2.370145 -1.477332 -0.341043 1.321494 -0.588503 -0.236287 0.157379 -4.340883 1.302219 0.448530 0.927848 1.304630 3.641314 3.869475 2.298545 0.283062 1.542841 -0.547093 -0.581204 -1.937085 0.471614 0.647647 0.840693 1.632886 3.136616 2.010369 1.361053 2.823133 2.173116 0.334247 3.104787 1.060600 4.110934 -0.670263 -1.232000 1.117281 0.286549 3.189085 3.929906 0.453562 -1.406276 2.081936 0.409839 -1.389476 -3.095527 -0.174868 -0.504676 -0.409450 3.295133 1.675130 -0.973225 -0.578958 4.741439 -0.340270 -5.508080 2.645590 1.517292 2.002355 1.049590 -0.511593 0.885367 2.290201 -0.693506 1.994565 1.924259 2.003180 -3.480168 -0.715147 0.541908 1.738508 2.277791 1.690231 -5.656469 -0.599852 0.901358 3.595059 0.433995 3.579476 -1.954115 -0.602354 0.690117 -0.466885 -0.093831 -0.082121 0.688187 -2.088349 0.658427 -3.107109 -0.887410 +PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = 1.682606 0.077787 2.360021 -5.080807 -2.059808 -1.285499 5.902862 -3.427510 -2.117190 6.910133 1.322443 -3.188135 -2.909244 3.878583 0.123399 -2.215066 1.636131 -2.112476 -1.793925 -0.274987 -1.619158 2.247796 -1.256093 -3.719535 2.136132 -0.290244 1.801693 4.768523 -1.012304 0.483470 0.409529 -2.799060 1.703492 7.482745 1.860075 -0.102178 -3.481239 8.075296 -6.665595 7.668067 -6.841943 -5.290197 9.227280 -1.358612 -0.166423 -8.228369 -1.627910 4.849858 0.568541 -5.734048 -0.764918 0.089245 2.500613 -6.205140 -2.662240 5.560403 -5.359670 0.279838 4.101092 -4.818190 -5.837197 -1.572811 1.433978 1.934990 -7.251410 -5.078885 -0.146331 -3.374646 -1.796876 1.018924 -4.959357 -4.828611 3.578988 1.730292 -1.770355 1.480066 -2.479805 -4.686595 3.699002 0.247440 -3.671623 -3.528340 -0.131536 -3.063199 2.841838 0.487293 4.738777 -9.567498 0.852248 -8.580335 2.534893 -4.948925 3.733472 6.601599 -1.247176 5.598345 0.198865 3.007973 0.165333 -1.529965 3.657455 2.886326 4.787910 1.387325 5.512486 5.386168 -5.128885 -7.750377 -4.582966 -3.339162 2.964753 -2.970373 -7.134205 3.336528 -3.398514 -2.107515 0.401404 -0.945929 -2.008386 7.350387 -7.460059 1.451168 3.248174 -1.843617 2.106665 4.926351 -0.020515 -0.065342 -1.405604 3.503191 0.540516 4.120230 0.077781 5.743948 -3.769190 -2.644898 0.270442 0.959327 2.046072 -4.132460 -6.152369 -9.140501 -2.220924 2.689476 -3.595973 2.864921 9.084322 -3.056542 -5.908710 4.324790 0.927767 -0.421537 1.056909 1.548563 7.739776 -4.561929 0.080771 -1.189374 -0.271096 3.755146 11.062959 -1.868433 -6.012050 5.493834 -4.318178 -6.190049 6.099949 0.580987 -0.438845 0.987902 0.463142 -2.923992 -4.346430 6.586703 -5.955707 6.784737 -4.469352 7.633432 -2.952435 -1.354503 1.814752 -5.993366 -1.837698 -6.822766 -0.385971 0.626875 4.467328 -4.306428 -4.097674 -2.701553 -1.771184 -1.570740 7.240982 -8.580379 -1.097585 -0.282930 -0.458401 5.681436 2.247545 -3.238156 -0.802513 -4.184772 3.150220 3.205192 2.072920 -7.164148 -3.005834 -2.018205 -3.016086 -0.207301 0.422167 4.624395 -3.370209 -0.154090 4.699032 -0.768495 -2.630532 -1.111771 -8.975381 2.365171 0.576404 2.683301 1.639000 8.409841 4.426088 4.365236 -0.325943 1.632619 -1.202420 -1.884251 -8.666446 1.741674 -0.182937 0.390084 3.736776 4.480113 3.342903 2.851824 5.560347 1.598876 -0.073313 6.071155 1.016712 5.706628 -1.026436 -2.276007 3.694189 -0.103972 4.776085 5.457565 2.429533 -4.555014 3.765349 -2.136738 -5.520491 -1.846662 -0.848930 -0.911889 -0.734158 5.157740 4.126823 -1.857863 -1.017338 9.789203 -1.660493 -11.091793 3.693220 2.431811 4.593764 4.581215 -1.789448 4.929481 3.952975 1.722170 3.344262 3.497654 3.490483 -6.234669 -0.568829 1.186679 2.686374 6.199217 0.857800 -13.829082 -1.105117 0.433980 7.672778 -0.225792 8.808821 -3.793619 3.350448 1.493012 0.835651 1.402806 -1.737941 3.358928 -1.506392 -0.762875 -9.329127 2.512303 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.356389 0.087370 0.834324 -1.633128 -0.819854 -0.444395 1.693652 -0.955844 -0.516877 1.488232 0.588550 -1.043252 -0.855915 1.529272 -0.105555 -0.792799 0.401935 -0.646273 -0.650598 -0.105661 -0.303174 0.778020 -0.298524 -1.099767 0.704775 -0.152162 0.375940 1.555029 -0.144754 -0.141290 0.084366 -0.744794 0.617999 2.249405 0.367507 0.084981 -0.899300 2.545373 -1.990961 2.287281 -2.223746 -1.541108 2.881101 -0.430411 -0.217287 -2.892087 -1.039328 1.377683 -0.030477 -1.524770 -0.156809 0.087810 0.616294 -1.876078 -0.598078 1.842099 -1.934425 0.334632 1.208360 -1.440049 -1.555080 -0.421415 0.185534 0.320425 -1.859387 -1.524226 -0.073664 -0.806958 -0.601648 0.346591 -1.207398 -1.497153 1.770672 0.401213 -0.458525 0.636940 -0.559193 -1.564733 1.233038 -0.166245 -1.100227 -1.048575 0.202524 -0.563669 0.956995 0.060656 1.302691 -2.948418 -0.087799 -2.599400 0.931393 -1.711206 1.085478 1.914756 -0.726779 1.728122 0.146807 0.547687 0.205067 -0.003710 1.261918 0.883346 1.540524 0.409534 1.663524 1.493083 -1.370809 -2.223743 -1.423720 -1.221764 0.805916 -0.824780 -2.664601 0.933725 -0.902882 -0.619621 0.082837 -0.327838 -0.234618 2.287774 -1.917345 0.746692 1.210432 -0.544271 0.406145 1.675787 -0.040015 -0.169720 -0.650803 1.111062 0.032720 1.348038 -0.010547 1.649093 -1.021624 -1.579713 -0.118974 0.122623 0.373840 -1.297058 -1.849126 -2.622837 -0.520870 0.835332 -1.092248 0.603069 2.903070 -0.981512 -2.014035 1.438550 1.099523 -0.039609 0.421101 0.520854 2.570286 -1.351613 -0.042054 -0.481134 -0.232195 1.184763 2.894500 -0.496230 -1.806334 1.545295 -1.080550 -2.841306 2.477915 -0.015375 -0.136402 0.724376 0.150599 -1.020983 -1.452255 2.118276 -0.893200 2.356862 -1.344705 2.444404 -0.998184 -0.779177 0.551737 -1.446969 -0.487851 -1.957445 -0.109427 0.334748 1.316910 -1.279403 -1.278667 -0.827610 -0.681454 -0.485299 2.096346 -2.365616 -0.211726 -0.103816 -0.152498 1.215672 0.836047 -0.970315 0.005370 -1.479199 0.933486 1.071556 0.712642 -2.658858 -0.647476 -0.609508 -0.796844 -0.107864 0.110139 1.357492 -0.824613 -0.121368 1.311084 -0.496706 -0.728372 -0.452048 -2.402540 0.570173 -0.069910 0.891131 0.392983 2.457650 1.766716 1.300372 -0.085881 0.591412 -0.316177 -0.642112 -2.247396 0.493393 -0.080189 0.120484 1.143315 1.557059 1.052202 0.810617 1.838721 0.625835 0.063529 1.908179 0.529111 1.979861 -0.279995 -0.756524 0.976224 -0.008189 1.627990 1.968427 0.783256 -1.263671 1.142678 -0.268719 -1.462460 -0.919919 -0.328153 -0.226523 -0.560541 2.042678 1.121568 -0.599659 -0.244593 2.948622 -0.389557 -3.289062 1.214284 0.671923 1.329270 1.014855 -0.478912 1.223569 1.414516 0.346025 0.850435 0.966696 1.232506 -1.978133 -0.669481 0.319763 0.906740 1.878202 0.502808 -4.184363 -0.156575 0.342591 2.322385 -0.234041 2.498676 -1.142209 0.693819 0.378416 0.333269 0.232013 -0.376504 0.767090 -0.797503 -0.301587 -2.674666 0.466578 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.380066 -0.006895 0.347063 -0.925548 -0.588871 0.033074 0.082827 -0.621293 -0.213742 0.131150 0.375478 -0.567741 -0.479595 0.875980 -0.262974 -0.765421 0.093408 -0.438098 -0.244714 -0.118907 -0.186650 0.283171 -0.208207 -0.527993 0.240827 -0.139517 0.069306 0.645973 0.543936 -0.345227 -0.374449 -0.293532 0.160783 1.332370 0.356632 -0.134702 -0.026985 1.645011 -0.217270 0.695052 -1.106856 -0.748861 1.313634 -0.232884 -0.290649 -1.213865 -0.643428 0.662913 -0.827329 -0.115841 0.168010 -0.158565 0.106011 -0.737075 -0.222179 1.015887 -1.482287 0.926233 0.544369 -0.219007 -0.496859 -0.415303 0.052434 -0.015591 -0.278330 -0.786863 0.204614 0.110830 -0.650330 0.150745 -0.659294 -0.848761 1.576868 0.326683 -0.333101 0.248454 -0.151957 -0.791949 0.574513 -0.490057 -0.867507 -0.418362 0.245093 -0.072470 0.998613 -0.001745 0.424164 -1.685530 0.003080 -1.689214 0.401217 -1.043933 0.704912 1.127657 -1.027795 0.684840 0.182402 0.132405 0.270103 0.200558 0.942545 0.240241 0.358753 0.153310 0.769566 0.421810 -0.282962 -0.663827 -0.379895 -0.737703 -0.104511 -0.209884 -1.885843 0.486625 -0.702193 0.221520 -0.178831 0.126503 -0.180292 0.680378 -0.999445 -0.237468 0.287491 -0.301631 0.634687 0.974354 -0.161503 0.121032 -0.477936 0.859037 -0.023223 0.424362 -0.280366 0.729886 -0.133016 -1.347800 -1.044541 0.089813 0.500478 -0.743287 -1.313552 -1.073992 -0.336221 0.027346 -0.515918 0.879183 1.686422 -0.508588 -1.098375 1.080039 0.347672 0.458605 1.105064 0.246253 1.491415 -0.730565 0.105310 -0.147672 -0.144679 0.157792 -0.212245 -0.335119 -0.688626 0.592013 -0.202108 -0.764167 1.109347 0.025640 -0.300200 0.215078 -0.070669 -0.607931 -1.024926 1.309751 0.174405 1.207440 -0.067414 1.602900 -0.634025 -0.931464 0.443693 -0.287529 -0.067491 -0.530826 -0.142082 0.014200 0.683440 -0.852899 -0.827618 -0.119827 -0.079466 -0.380730 1.005427 0.429574 -0.020692 0.100144 0.043306 0.534114 0.928110 -0.488869 0.315983 -1.006857 0.462628 0.874504 0.088229 -1.319444 -0.114880 -0.322783 -0.292757 0.330348 0.079899 0.640772 -0.485479 -0.374713 0.352595 -0.028726 0.361428 0.088012 -1.046031 0.386367 -0.269718 0.098920 0.392877 1.224056 1.060816 0.735957 0.190954 0.082927 -0.011973 -0.243112 -0.258347 -0.093193 0.114916 0.493946 0.571443 0.863043 0.571059 0.382063 0.828723 0.599648 -0.084368 1.046565 0.490461 1.428806 -0.371188 -0.261151 0.113663 -0.231173 1.081603 1.574996 -0.411471 -0.368566 0.597165 0.262179 -0.263659 -1.217266 -0.198461 -0.201407 -0.382570 0.765233 0.298559 -0.192280 -0.261654 1.619035 -0.115769 -1.598427 0.945724 0.403226 0.537261 0.289993 -0.236444 0.144673 0.725192 -0.483919 0.443749 0.624435 0.769613 -0.866094 -0.274433 0.086591 0.753298 0.143928 0.431608 -1.165906 0.229979 0.575617 1.241367 0.453529 0.560726 -0.563122 -0.311088 0.154687 -0.029316 0.061231 0.003337 0.484445 -0.759367 -0.022460 -0.726758 -0.400775 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = 0.089622 -0.913230 3.076666 -5.656642 -5.370944 -0.070204 2.881060 -3.163064 -1.181614 4.162773 1.874478 -2.242315 -2.041644 6.001156 -0.306193 -3.263888 0.004867 -2.040680 -0.344100 -0.051312 -0.515704 4.206701 -1.599551 -0.543963 1.564474 -1.254252 -0.173255 4.396415 0.281146 -0.046882 0.380179 -3.291573 -0.503526 6.483474 1.869134 0.659362 -1.602394 10.031888 -5.687416 8.000357 -6.315212 -5.605090 6.488099 -1.250660 -0.636548 -6.963263 -3.879788 3.532922 -1.170092 -3.129122 2.321693 0.368163 2.695097 -2.529752 0.635553 2.701144 -6.076254 1.009726 3.136879 -4.328847 -2.498027 -1.544553 -2.030859 1.744653 -6.502890 -3.625532 0.022942 -0.441660 -0.637851 -0.402131 -1.063083 -4.174515 6.353792 2.242197 -2.521708 1.567347 1.405327 -5.245841 4.601650 -1.559403 -6.426691 -2.490917 -1.345015 -3.890663 4.451116 -0.248488 5.409086 -9.003752 2.078246 -8.989305 2.842875 -5.009744 2.313642 7.069381 -3.238512 4.476210 2.802958 4.140548 3.227650 -0.972410 4.371426 3.870158 2.901196 4.032158 4.815849 4.615834 -4.044208 -5.088570 -5.585774 -4.636498 2.288187 -3.972283 -8.624024 2.511395 0.483219 -0.854100 -0.577500 -0.191891 -1.022570 7.515602 -6.398943 2.780403 3.214481 -1.547389 0.094314 4.448341 -0.984652 -0.339231 -2.335359 4.828967 -3.303385 5.236544 -0.249917 5.066153 -3.789026 -1.908471 -2.645933 1.140010 1.033588 -3.868566 -5.241666 -7.858479 -1.624663 3.505339 -3.009403 3.963870 10.441536 -5.216653 -6.131960 6.486364 2.854013 -0.989195 1.426260 1.707071 4.955625 -1.070791 -3.362373 -4.422169 -3.483613 1.305714 9.160889 1.691402 -3.517282 5.217342 -2.559262 -7.634680 8.578872 -0.903071 -3.672901 -1.676332 0.933820 -4.164603 -3.601276 6.483000 -4.147599 5.466001 -3.078932 7.410194 -1.316661 -2.556652 1.375519 -5.904914 -0.819824 -6.760150 -0.286646 1.944995 2.957244 -4.397632 -3.469636 -2.866152 -2.740230 -3.254993 3.335616 -5.921166 0.403122 2.049400 1.861532 6.103023 5.882504 0.314768 -1.283263 -4.139777 3.714016 2.164952 0.162655 -6.922924 -1.612337 -1.239926 -1.979697 -0.239433 0.328621 3.713377 -3.546666 -0.327577 1.136449 -1.450013 -0.741366 1.693936 -9.737919 1.844374 1.040791 4.551771 2.465630 4.744353 5.829294 5.838903 3.001538 3.293591 -1.301353 -0.055951 -4.328951 1.740677 2.174061 -0.406089 3.384896 6.997068 5.085644 2.854065 5.781932 4.627981 1.861162 5.594312 -0.199124 8.182913 -0.112321 -2.574159 1.321064 2.561255 5.100926 7.561688 2.183409 -0.181596 3.682669 -0.081620 -3.986876 -3.040736 1.423530 -1.413363 0.491953 4.694352 3.368987 -1.101758 -0.864576 7.358426 -1.588630 -9.420506 3.050765 2.232978 4.803009 3.205080 0.663803 2.667177 2.980136 -2.027379 5.981000 4.864363 3.021282 -5.746544 -2.127247 0.990380 1.885883 6.730943 4.857780 -10.489203 0.055755 1.172970 5.927922 -1.136699 7.230573 -3.981479 -0.757159 3.344158 -1.358248 -0.594767 0.270711 1.351518 -2.349708 1.167595 -6.394900 -2.635874 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 0.567593 -0.297144 2.365156 -4.889977 -5.342267 0.121337 1.884737 -2.927256 -1.186399 3.933996 1.612989 -1.823698 -2.166968 5.129683 -0.694901 -3.044113 -0.352568 -2.434060 -0.143261 -0.154521 -0.691863 3.711901 -1.537686 -0.255552 1.204104 -0.837328 -0.488094 3.128860 0.822375 -0.614472 -0.132469 -2.878501 -0.483521 5.508501 1.849572 -0.040928 -1.221440 8.958926 -4.211134 5.897216 -5.896366 -5.117848 5.157978 -1.125873 -0.198023 -6.331103 -2.760088 3.249952 -1.173387 -2.031047 2.275586 0.179754 2.021930 -1.802586 0.614069 2.093429 -5.624564 2.181652 2.850433 -3.229920 -1.688807 -1.353407 -1.622547 1.571521 -4.516308 -3.154506 0.062169 0.059989 -0.858472 -0.522245 -1.032975 -3.474802 5.427762 1.963288 -2.405769 1.123559 0.967064 -4.363458 3.890817 -2.799257 -6.037620 -1.874722 -0.868266 -2.528225 3.743216 0.133275 4.300978 -7.882828 1.904292 -8.168017 2.240365 -4.045199 2.044949 6.064841 -2.818732 3.439949 2.516465 2.656821 3.813800 -0.758760 3.914878 3.160637 2.519549 3.515122 3.317757 4.097949 -3.022890 -3.592199 -4.385098 -4.115030 1.396150 -2.399412 -7.393903 2.397895 0.424070 -0.106610 -0.529099 -0.125213 -0.838592 5.880432 -5.770287 0.933157 2.349393 -1.286127 0.766364 3.979190 -0.923449 0.077219 -2.131213 4.214778 -2.875307 4.523121 -0.215255 4.368552 -2.903944 -2.589883 -3.508323 1.210348 1.259629 -3.478095 -4.461542 -6.739835 -1.108573 2.057668 -2.823110 3.546074 9.245503 -4.943242 -5.395765 5.878915 1.810849 -0.814142 1.954800 1.177290 4.413978 -0.791620 -2.863709 -3.223141 -3.130070 0.572115 7.048038 1.574466 -2.826907 4.060528 -1.756562 -5.904875 5.420182 -0.332402 -3.569958 -1.640194 0.755627 -3.427416 -2.980125 5.039522 -3.145831 4.310404 -1.942314 6.366431 -1.230509 -2.500072 1.338915 -4.879460 -0.482802 -4.881607 -0.408892 1.912705 2.438462 -3.964510 -2.673074 -2.118593 -2.249431 -3.302726 2.620547 -4.198358 0.446693 2.107583 1.774706 5.449052 5.650707 0.397775 -0.675786 -3.581090 3.283865 1.707398 -0.039362 -6.316458 -1.626405 -1.268957 -1.642326 0.845180 0.051014 3.153357 -2.455304 -0.446062 0.906772 -1.204560 0.216379 1.875707 -6.826588 1.571917 0.389694 4.035133 1.975037 4.090367 4.449625 5.578821 2.988975 2.787715 -1.023255 -0.036940 -2.099846 1.085832 2.128497 -0.530439 3.104163 5.713514 4.553639 2.449870 4.975823 3.847005 0.926961 4.971884 -0.727818 7.478490 -1.310377 -1.968974 0.687563 2.067294 4.419447 6.874416 0.910176 -0.195649 3.041456 -0.223539 -2.892607 -2.470298 1.616291 -1.297364 0.396464 3.549459 3.348165 -0.641989 -0.979427 6.210593 -1.630353 -7.971572 3.223628 1.866871 4.140063 2.411379 0.848398 1.736064 2.319842 -2.318525 5.007221 4.796883 2.847242 -4.742224 -2.219001 0.805910 2.083273 4.756350 4.298159 -8.637676 -0.059198 1.730005 4.876605 -0.635102 5.678207 -3.754601 -1.655395 3.184379 -1.068515 -0.493557 0.436435 1.374747 -2.103355 1.159911 -4.217704 -2.389232 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = 0.406545 -1.141264 1.127357 -2.131266 -2.295104 0.306571 1.320950 -1.284721 -0.365807 1.811115 0.510214 -0.536738 -1.056987 2.892884 -0.041138 -1.217418 0.447354 -1.052441 0.211176 0.387197 -0.234864 1.552670 -0.681388 -0.194759 0.520188 -0.400294 0.042870 1.782962 -0.249883 0.149319 -0.362572 -1.311986 -0.598126 2.569109 0.984540 0.245833 -0.448575 5.354840 -2.907952 4.719526 -2.936911 -2.772895 2.385743 -0.502257 -0.425509 -3.126494 -1.428160 1.200540 -0.734901 -1.266940 1.131589 -0.173321 1.032107 -0.702244 0.329182 1.242773 -2.636078 0.153992 1.092218 -1.052240 -0.723170 -0.866362 -0.671129 0.761333 -3.315007 -1.238456 0.349546 -0.422800 -0.511755 -0.061429 -0.686728 -1.660167 2.430938 1.223805 -1.191133 0.308544 0.771520 -2.806866 1.688124 -0.829750 -3.712635 -0.842800 -0.959083 -1.795074 2.106344 -0.123610 2.868270 -4.190361 1.481093 -4.602151 1.024165 -2.349410 0.982424 3.382083 -1.512223 1.847721 1.158395 2.889943 1.438306 -0.611324 1.723605 2.445690 0.489163 1.312358 2.089238 2.272936 -1.607163 -1.927858 -2.266471 -1.408522 0.683829 -1.689240 -4.505617 0.857758 0.102496 0.581036 -0.330349 0.719915 -0.830505 3.079655 -3.148245 1.306863 0.776499 -0.599827 0.443664 1.888772 -0.500553 0.079556 -0.823919 2.163050 -1.257316 2.120876 -0.333092 1.892239 -2.142269 0.128410 -1.040399 0.425639 0.751216 -1.499583 -2.306860 -3.903078 -0.864620 1.913379 -0.931446 2.403823 4.886651 -2.447596 -2.613627 2.541969 0.241219 -0.305280 0.847437 0.607823 1.737559 -0.435496 -1.104002 -1.616935 -1.000477 -0.070038 4.108716 0.657121 -1.112075 1.956630 -1.113286 -3.260468 4.116560 -0.172580 -1.502040 -1.423622 0.034719 -1.615763 -1.683428 3.024046 -3.054919 2.033650 -1.037007 2.899162 -0.392306 -0.699009 0.527068 -3.318491 -0.137058 -3.136306 -0.139528 0.487836 1.587235 -2.048888 -1.436484 -1.193213 -1.200370 -1.123153 1.215093 -1.841388 0.012129 0.826297 0.835767 3.655304 2.954084 0.185492 -0.603203 -1.742171 1.399205 0.761808 -0.783574 -3.018583 -0.505869 -0.445737 -0.746059 -0.098211 0.196175 1.196743 -2.267232 -0.506378 -0.056325 -0.205119 -0.082134 0.954474 -4.938080 0.662753 0.863636 2.049709 1.652465 1.608239 2.252845 2.823156 1.272766 1.116502 -0.457584 0.206979 -1.975313 0.583819 1.348406 -0.410100 1.023950 3.225512 1.852826 0.941361 1.781616 1.951087 0.838048 1.994104 0.454898 3.861987 0.260156 -1.286519 0.551189 0.642753 1.954707 3.332149 0.579647 0.795676 1.389808 -0.165125 -1.554316 -1.220830 0.612061 -0.764980 0.342482 1.865496 1.424023 -0.262855 -0.484890 2.801432 -0.615142 -4.616060 0.889542 0.954288 1.836550 1.802035 0.290280 1.207417 1.165449 -1.004517 3.823106 2.349879 1.017494 -1.754689 -1.081006 0.295840 0.401820 3.136392 1.725241 -4.121529 0.433461 0.335354 2.403678 0.146346 3.463777 -1.991806 -0.029360 1.094583 -1.328545 -0.163388 -0.046316 0.943883 -0.552077 0.362051 -2.898992 -1.507949 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = -0.079670 0.094772 1.498319 -2.091956 -2.048066 -0.258242 1.577308 -0.900999 -0.451141 1.030455 0.823516 -0.773763 -1.123027 2.004519 -0.209199 -1.232777 -0.081337 -1.336578 -0.484615 -0.538965 -0.166583 1.536753 -0.428225 -0.155123 0.868057 -0.590381 -0.245623 2.105738 0.236519 -0.590340 0.528420 -0.974999 0.070128 2.404720 0.312172 -0.005389 -0.381181 3.858838 -2.230930 2.082991 -2.205230 -2.056734 2.817823 -0.535697 -0.690925 -3.070560 -1.686560 1.361847 -0.736785 -0.772249 0.795806 0.368328 0.798870 -1.174978 0.163351 1.528399 -2.897439 0.669810 1.089055 -1.722184 -1.134843 -0.428394 -0.860125 0.085248 -1.634986 -1.400459 0.110054 -0.440874 -0.321524 0.060381 -0.074473 -1.332021 2.709821 0.555780 -0.367072 0.976680 0.609937 -1.904167 1.838415 -0.448246 -2.108203 -1.049235 -0.107333 -1.287203 1.801747 -0.478214 1.365300 -3.303906 0.021632 -3.082506 0.994095 -2.082802 0.773169 2.374545 -1.336207 2.068069 0.927766 0.572777 0.672015 -0.378604 1.870866 1.016612 1.649110 1.770853 1.636730 1.431234 -1.474808 -1.785951 -2.371139 -1.796615 0.879703 -1.333100 -3.294795 0.915964 0.148211 -1.021515 0.102769 -0.404750 -0.062164 3.068138 -1.630676 1.661370 1.542468 -0.579356 -0.381818 1.878674 -0.277191 -0.449746 -0.950641 1.855342 -1.196592 2.311914 -0.097508 1.756266 -0.543783 -1.769720 -0.919660 0.045514 0.039297 -1.336158 -1.872018 -2.403749 -0.419247 0.827733 -1.127678 0.998901 4.057692 -1.788237 -2.560247 2.567844 1.939302 0.042307 0.368543 0.740572 2.072673 -0.346388 -1.498021 -1.733198 -1.407838 0.927093 2.853018 0.572141 -1.154598 1.858586 -0.404912 -2.981253 3.616161 -0.665776 -1.198997 0.696570 0.445146 -1.652180 -1.786248 2.398688 0.435695 2.596417 -0.662209 2.896277 -0.503677 -1.487982 0.457708 -1.245119 -0.068579 -2.532539 -0.162722 0.829822 0.714435 -1.204467 -1.419259 -1.465455 -0.892777 -1.180472 1.203361 -1.880302 0.550449 0.575035 0.709299 0.960075 2.224998 -0.158644 -0.209434 -2.004525 1.257768 0.883665 0.613394 -3.083445 -0.262205 -0.134983 -0.676583 0.267436 0.088494 1.469474 -0.766109 -0.011368 0.699266 -0.718769 -0.648008 0.394492 -3.653611 0.555833 0.059297 1.400426 0.677679 1.744242 2.844497 1.782460 0.809978 1.491507 -0.387208 0.040860 -1.445440 0.285902 0.434115 0.288827 1.305530 2.540022 1.964580 1.071552 2.271707 1.842889 0.468718 2.130644 0.265608 3.314431 -0.229865 -1.136137 0.356626 1.137022 1.966108 2.707492 1.349373 -0.407040 1.473078 0.606554 -1.185986 -1.897181 0.257771 -0.540014 0.327831 2.367969 1.214436 -0.854249 0.021181 2.769438 -0.528384 -3.499578 1.309437 0.855223 1.676434 0.433151 0.333531 0.601131 1.622914 -0.946174 1.712444 1.587549 1.267935 -2.339734 -0.906442 0.411117 1.077068 1.677006 1.995159 -4.616111 -0.186776 0.325337 2.005038 -0.553660 2.831702 -1.335437 -0.699698 1.229185 -0.228005 -0.389762 0.668718 0.322040 -1.611602 0.559639 -2.359331 -0.796438 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = 0.343263 -0.032951 1.292516 -1.723135 -2.651338 0.148319 0.548407 -1.361173 -0.509590 1.992760 0.356667 -0.974645 -1.807790 2.269395 -0.707335 -1.666236 -0.650101 -0.891038 -0.166417 -0.984021 -0.346568 1.193001 -0.496217 -0.156607 0.313419 -0.721567 0.212671 1.608362 0.695100 -0.086076 0.301774 -1.094810 0.140049 2.430869 0.822320 0.261469 -0.497008 4.568662 -1.759356 2.894987 -3.241750 -3.237170 2.433658 -0.195856 -0.167578 -3.045782 -0.802206 1.450088 -1.911547 -0.224458 0.654458 0.135129 0.539611 -0.835224 0.054432 1.209758 -3.135905 1.720483 0.658853 -1.687751 -1.105620 -0.437147 -0.466093 0.900372 -1.638743 -1.356138 -0.051267 0.246352 -1.003573 0.323067 -0.293121 -1.190801 2.556561 0.615309 -1.083820 0.397202 0.482856 -1.279818 1.505218 -1.682311 -3.019197 -0.903236 0.020663 -0.937212 1.417201 0.737110 1.925332 -3.782643 0.710403 -3.926567 1.230312 -1.727201 0.987845 2.412594 -1.384940 1.981369 0.965402 0.702316 1.684399 -0.574061 1.543225 1.198985 1.389005 1.614838 1.163484 1.961677 -1.242857 -1.533985 -2.066308 -1.785064 0.342969 -1.027010 -3.856122 0.675840 -0.061095 0.912591 -0.022853 0.162417 -0.541991 2.241225 -3.318531 0.293358 0.695878 -0.448044 0.893464 1.436986 -0.310485 0.517396 -0.289880 1.995973 -1.062521 1.576569 0.111695 1.665073 -0.798388 -1.163395 -2.202689 0.843341 0.797827 -1.136041 -1.922591 -3.056459 -0.918422 1.351831 -0.981014 1.946897 4.696613 -2.040995 -2.856476 2.300647 -0.235752 -0.048041 1.366104 0.669088 2.208272 -0.574646 -1.039422 -1.218275 -1.056999 0.701277 3.638719 0.463022 -1.258061 1.944236 -0.247689 -2.199300 1.681488 -0.497073 -1.405072 -1.541275 0.222587 -1.405486 -1.087943 2.105743 -1.843874 2.337925 -0.881639 2.822234 -0.993180 -1.668505 0.397533 -3.303095 -0.307748 -1.675939 -0.030440 0.341971 1.417533 -2.281520 -1.218150 -1.252158 -1.163019 -1.203410 1.239565 -1.328032 0.173407 0.746679 0.744455 3.390050 2.737811 0.071100 -0.459380 -2.000294 1.083623 0.821840 0.218961 -3.446026 -0.563461 -0.496416 -0.668052 0.798558 -0.019343 1.183475 -1.050180 0.089283 -0.155072 -0.728895 0.296055 0.676319 -2.921234 0.754085 0.223781 1.989205 1.045927 1.800103 2.363201 2.516004 1.178443 1.528599 -0.267013 -0.588478 -0.004027 0.532204 1.647385 -0.475875 1.173047 2.805512 1.557104 0.907498 2.225771 1.948866 -0.254322 2.022476 -0.316891 3.883929 -1.600045 -0.570849 -0.048895 0.936285 1.601862 3.454453 -0.124391 -0.038507 1.419118 -0.051499 -0.529753 -1.571586 0.260362 -0.774890 0.532938 2.228973 2.004911 -0.531542 -0.286121 2.517388 -0.299283 -3.936624 1.774369 0.872719 1.263393 0.742359 -0.230765 0.065943 1.476240 -1.207197 2.130466 2.434334 1.009492 -2.232519 -0.986905 0.171551 1.305745 2.120193 1.582529 -4.565238 -0.280059 1.007313 2.147149 0.038288 3.095747 -2.182359 -1.337500 1.309015 -0.832076 -0.349438 0.463082 0.564340 -0.800806 0.838929 -1.475738 -1.565359 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.092569 0.342035 3.206241 -4.594269 -5.316433 -0.748585 2.023088 -2.103443 -1.020666 2.337856 1.305119 -2.144861 -3.183210 4.847739 -1.459034 -3.727973 -0.920761 -2.239904 -0.828629 -1.804800 -0.670293 3.427120 -1.000176 -0.335139 2.029202 -1.605335 -0.566349 4.129233 2.128077 -1.445097 0.985502 -2.283714 0.412398 5.682230 0.662795 0.019489 -0.642874 9.376341 -3.100953 4.044212 -5.836649 -5.328879 6.234308 -1.175512 -0.920563 -7.133367 -3.469875 3.163087 -3.702227 -0.135900 1.663217 0.943922 1.071650 -2.709068 0.721003 3.146002 -7.424502 3.797765 2.348735 -3.540017 -2.211179 -1.202259 -2.309568 0.052310 -2.308179 -3.277906 -0.092976 0.374448 -1.882925 0.544602 -0.157802 -2.520641 6.860541 1.176432 -1.503330 2.392631 1.468811 -3.418496 3.811662 -3.185347 -5.207145 -2.410576 0.864907 -1.459602 4.103969 0.062265 2.911498 -7.954081 0.163729 -7.528931 2.537928 -4.879804 2.192370 5.709067 -3.963113 4.928606 2.160149 -0.014146 2.747474 -0.102296 4.504518 2.251840 3.566244 3.850380 2.711098 3.196872 -2.402146 -3.527514 -4.482625 -4.178699 0.621033 -2.079062 -8.272244 1.936899 -0.071151 -0.121267 0.051942 -0.364007 -0.263186 5.481948 -4.897860 1.636860 3.091756 -1.395564 0.365796 3.999756 -0.787016 -0.565065 -2.257043 4.506888 -2.643766 4.422939 -0.361537 4.046520 -0.796219 -5.412269 -4.409319 0.014243 0.390755 -3.009559 -4.652849 -5.261974 -1.333036 1.338856 -2.580546 2.731825 9.752629 -4.066631 -6.040122 6.156265 2.716681 1.018899 2.527778 1.781948 4.975087 -0.845311 -2.977980 -3.345495 -2.875853 1.924978 4.714037 1.283483 -3.030315 3.910526 -0.213010 -5.537021 5.254249 -1.461275 -2.803350 -0.544582 0.825562 -3.787596 -3.540468 5.496410 0.350657 6.150853 -1.739922 6.987288 -1.806277 -4.618442 1.148043 -3.801262 0.010659 -4.122289 -0.035329 1.568940 1.848147 -4.006976 -3.413285 -2.535478 -2.036610 -2.839726 2.676841 -2.348138 0.777419 1.285254 1.779063 3.660956 5.470026 -0.426416 0.214702 -5.063321 2.755215 2.092167 1.170387 -7.892412 -0.227626 -0.159860 -1.626754 1.446322 0.218239 2.737071 -1.122973 -0.299333 0.860704 -1.760473 -0.019234 0.924416 -5.984864 1.339278 -0.478718 3.195488 1.630236 4.027993 6.681332 4.181642 2.043143 3.332076 -0.636989 -0.843945 -0.264262 0.866450 1.815034 0.204124 2.932873 5.836403 4.570466 2.011363 5.091738 4.404071 -0.186352 5.024305 0.316618 8.357196 -2.461361 -2.184175 0.255870 2.185009 4.672246 7.233896 1.120810 -0.750697 3.612219 1.604461 -1.331640 -4.837474 0.437452 -1.245213 0.102246 5.196512 2.755685 -2.137679 0.087139 6.307264 -1.183623 -7.742209 4.082975 1.957450 3.462468 -0.091780 0.751744 -0.159204 4.030784 -3.140909 3.239977 3.731870 3.033620 -5.265858 -2.567556 0.676412 3.175086 3.354520 4.500717 -9.111315 -0.580586 2.196629 4.740845 -0.445309 5.285310 -3.037163 -3.462851 2.642040 -0.753579 -1.271289 1.506043 0.500039 -3.510568 1.497837 -3.217824 -3.272020 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 1.591600 -1.522294 2.123553 -3.979585 -3.177443 -0.278246 -0.478893 -2.364011 -1.272495 3.842271 1.505018 -3.273152 -2.780866 4.039088 -0.149945 -3.388443 0.680891 -0.415155 1.050478 -0.437992 -0.511752 1.562968 -0.649141 -2.073079 1.080878 -0.491913 -1.124447 2.894187 3.459784 0.232356 -0.178437 -1.767264 0.529632 5.584755 0.941136 -1.552214 -1.066688 7.982138 -2.469277 4.138747 -4.446437 -4.534184 6.640628 -1.178148 -0.014619 -3.775526 -2.065995 3.738593 -3.578255 -2.492591 0.455844 0.654709 2.103592 -3.832450 -2.462692 3.105332 -7.171971 2.774885 2.793255 -2.473981 -2.140340 -0.283660 -0.887973 1.594991 -2.865960 -3.279295 -0.111517 -0.623459 -2.147134 -0.593692 -2.450220 -2.275207 5.659662 1.559827 -1.421580 1.766172 1.123799 -2.586622 3.723962 -1.853826 -5.148996 -2.173269 -1.535285 -2.784946 4.599834 0.476856 3.832072 -7.083818 2.786654 -8.008257 3.005595 -4.853484 2.177175 6.438751 -4.348423 3.768774 2.475637 2.604530 2.794767 -0.311338 4.823503 2.633284 1.358507 2.855611 3.398458 3.363843 -2.591416 -3.029968 -3.423793 -3.297320 0.199472 -2.467068 -7.014164 2.888548 -1.593470 1.040582 0.776795 -0.257737 -1.402549 4.413769 -5.653618 0.162304 1.652814 -1.280270 1.157154 3.675346 -0.857391 -0.555447 -1.606331 4.801571 -1.577588 2.152849 1.981935 4.346421 -1.503687 -3.566854 -2.874115 1.732169 1.304564 -4.020428 -4.861547 -6.512011 -0.474229 1.081072 -2.142688 4.463282 8.518844 -2.370579 -3.733679 5.094798 -0.568984 0.363466 4.485896 1.379390 6.058593 -1.750222 -2.447108 -1.827449 -2.222304 1.481030 2.766710 0.209847 -2.387050 4.113632 -0.924628 -1.533312 3.747656 -0.205253 -1.878575 -1.425032 0.469561 -3.428869 -3.621078 4.721323 -2.438713 4.014200 -0.524273 7.269638 0.300704 -3.164901 2.685298 -3.460268 -1.106191 -2.671901 -0.382711 0.773954 1.595508 -4.400314 -3.480600 -2.367387 -0.483747 -2.248121 4.426204 -0.692757 1.026607 2.735127 0.342529 4.422503 3.177728 -1.303562 -0.086363 -4.574786 1.825246 2.433879 -1.060838 -5.581941 -1.278334 -1.725361 -0.485865 2.077726 0.148651 4.342285 -3.384477 -1.573063 1.437095 0.250955 0.448037 0.501068 -5.603138 1.684118 0.968442 2.836012 3.127285 5.792399 3.958454 4.297970 0.761626 3.456618 -1.058866 0.608873 -2.160617 0.124918 0.328838 1.451430 2.566800 3.631000 2.967287 3.139805 4.253765 3.125516 -0.560162 5.205823 -0.096404 5.469123 -1.272012 -1.733979 1.536389 0.568005 5.084999 6.060616 -0.832712 -1.695208 3.003210 -0.953469 -2.200795 -3.376047 0.437645 -0.486424 0.011628 2.620627 2.920857 0.449432 -1.092443 5.270887 -0.310023 -8.341188 4.888231 2.154703 3.220152 3.167372 0.004760 1.644182 1.998219 -1.454232 2.778723 4.160245 2.724518 -5.358367 0.642084 1.373976 3.829080 2.469988 3.677130 -7.332223 -0.102111 1.634124 3.418439 0.758413 3.921688 -3.736257 -2.615214 1.968372 -0.958623 -0.290555 -1.119984 0.743364 -2.524147 0.864049 -2.655942 -1.323022 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = 0.237071 0.112123 0.785950 -0.838086 -0.481542 -0.370070 1.362527 -0.281040 -0.407399 0.771514 0.060044 -0.455693 -1.304453 0.527639 0.023992 -0.785712 0.052925 -0.972333 -0.473398 -0.366813 -0.514863 0.434068 -0.175412 -0.479865 0.761542 -0.181572 0.108023 1.329563 0.185014 -0.356086 0.447374 -0.454907 0.311145 1.487912 0.075776 -0.017554 -0.275149 2.139085 -1.153384 1.079928 -1.126327 -1.331596 2.185222 -0.379489 -0.450749 -1.513286 -0.100737 1.112514 -1.030721 -0.512092 0.128912 0.381273 0.136026 -1.250479 -0.319621 1.368111 -1.990724 0.740292 0.619166 -0.815683 -1.174783 -0.323222 -0.292476 -0.131120 -0.528483 -0.981131 -0.010099 -0.807175 -0.727421 0.303308 -0.640398 -0.430898 1.259309 0.281453 0.033335 0.701468 -0.051318 -0.250082 0.815681 -0.308533 -0.789594 -0.820357 0.230965 -0.508592 1.010761 0.119732 0.289423 -1.932753 -0.234314 -1.632046 0.575266 -1.268163 0.618058 1.331396 -0.409535 1.719862 0.117661 -0.422849 -0.345318 -0.480830 0.962984 0.192039 1.201789 0.827515 0.790808 0.738358 -1.037101 -1.425216 -1.310435 -0.633002 0.363468 -0.436876 -1.452540 0.592147 -0.568211 -0.166573 0.487704 -0.067084 -0.400010 1.022903 -1.329451 0.837633 0.667081 -0.367561 0.454722 1.017690 -0.072043 -0.247210 -0.253036 0.947817 -0.079805 1.124469 -0.062392 1.082852 0.387716 -1.012082 -0.344709 -0.116914 0.282962 -0.603574 -1.180396 -1.423328 -0.353431 0.271622 -0.731365 0.667434 2.259837 -0.531568 -1.186641 1.206946 0.142677 0.895125 0.212749 0.463171 1.397867 -0.529001 -0.470292 -0.284528 -0.269101 0.927261 1.411839 -0.062228 -1.012966 1.106858 -0.055050 -0.307448 0.885496 -0.163339 -0.198337 0.493459 0.063482 -0.785147 -1.216392 1.407489 0.180811 1.641945 -0.296252 1.753260 -0.453974 -0.777880 0.355602 -0.852734 -0.033882 -1.520388 -0.285316 0.058543 0.203207 -0.969831 -0.923078 -0.950400 -0.083282 -0.473072 1.199841 -0.863247 0.052718 -0.095563 0.221690 0.630244 0.693363 -0.663493 -0.072450 -1.535952 0.516761 0.395578 0.503282 -1.669835 -0.151115 0.234742 -0.582264 0.898382 0.076772 0.679470 -0.255298 0.059208 0.952230 -0.110591 -0.546449 -0.074217 -1.726818 0.174318 0.379625 0.223588 0.605968 1.481212 1.508937 0.566283 -0.056305 0.910174 -0.209171 -0.026715 -1.101141 -0.061090 -0.256030 0.722332 0.755947 0.786788 0.921595 0.408117 1.075735 0.743555 -0.534015 1.205523 0.514087 1.629842 -0.543194 -0.792629 0.574275 0.304111 0.983745 0.892313 0.076103 -0.758182 1.055853 0.196510 -0.569474 -0.822488 -0.202012 -0.416429 0.151944 1.488441 0.592634 -0.684205 0.176603 1.979194 -0.495321 -2.306916 0.858321 0.614061 0.914443 0.125168 -0.007266 0.347748 1.181995 -0.443585 0.384112 0.559935 0.716089 -1.380524 0.282182 0.250544 0.776931 0.457739 0.454030 -2.876761 -0.844763 0.040887 1.372692 0.192507 1.558916 -0.515070 -0.269271 0.326904 -0.020888 0.104067 0.216852 0.533604 -0.545186 0.245511 -1.560609 0.099349 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 1.188176 -1.128149 1.361045 -2.951480 -2.679184 0.009434 -0.773133 -2.211684 -0.717261 2.849971 1.256543 -2.412586 -1.819966 3.435499 -0.011918 -2.381325 0.167156 -0.551326 0.997204 0.454174 -0.284562 1.456454 -0.894080 -0.783944 0.454501 0.007937 -0.722182 1.637985 2.267411 -0.033958 -0.946476 -1.566313 0.054304 4.023686 1.093283 -0.972109 -0.565035 6.165001 -1.772260 3.920048 -3.331183 -3.198440 3.846531 -0.809123 -0.083552 -2.414311 -1.327216 2.649630 -2.705584 -1.701248 1.071559 0.285360 1.278352 -1.988811 -1.015219 1.830867 -5.189215 2.398181 2.217189 -1.146091 -0.712404 -0.641994 -0.837571 1.232436 -2.438136 -2.067831 0.040181 -0.275715 -1.643013 -0.599121 -1.789263 -2.013081 4.246225 1.646644 -1.755523 0.897642 0.974528 -2.119554 2.855145 -2.110525 -4.293016 -1.309015 -1.458476 -1.957443 3.557726 0.535211 2.653861 -5.127836 2.380327 -6.163139 1.977534 -3.601980 1.503195 5.018635 -3.253678 2.165707 2.091409 2.319614 2.602460 -0.333154 3.284397 2.184642 0.292473 2.024506 2.319858 2.543169 -1.957371 -1.919763 -2.261346 -2.598166 0.059412 -1.600181 -5.022175 1.810102 -0.827723 1.684149 0.326395 0.271765 -1.075203 2.767028 -4.624540 -0.519888 0.779836 -0.879575 1.382026 3.074913 -0.732584 -0.038959 -1.532931 3.608656 -1.427891 1.637797 0.963193 2.973257 -1.577819 -1.932673 -2.884716 1.226907 1.297308 -2.898319 -3.635512 -5.041547 -0.496186 0.801516 -1.422230 3.980196 6.226217 -2.278452 -2.484877 4.154419 -0.868034 0.138540 3.606750 0.829312 4.091943 -0.957115 -1.819029 -1.521256 -2.042589 0.059993 2.231750 0.541189 -1.577768 2.674738 -0.709678 -0.996648 2.494912 0.302015 -2.087827 -1.966587 0.189555 -2.494625 -2.663907 3.557018 -2.883743 2.316071 -0.467773 5.301736 0.076458 -1.925478 2.141321 -2.780014 -0.419014 -2.284549 -0.664839 0.807185 1.599312 -3.616685 -2.228545 -1.188509 -0.456388 -1.986773 2.871791 -0.175438 0.479572 2.209410 0.690533 4.367279 3.184174 -0.666325 -0.133567 -3.077051 1.637980 1.459891 -1.356460 -3.763117 -0.709805 -1.596180 -0.466848 1.623072 -0.149977 2.718886 -2.969679 -1.416703 0.649001 0.052879 0.944124 0.982829 -4.463738 1.310648 0.691192 2.189238 2.771584 3.600394 2.262997 3.642770 1.479604 2.160867 -0.972250 0.755333 -1.199786 0.335798 0.682903 0.887139 1.865104 2.946672 2.412308 2.128495 2.760535 2.394402 -0.234553 3.766656 -0.167187 4.221024 -0.688154 -1.061113 0.825063 0.440837 3.716025 4.801981 -1.689163 -0.591228 2.116378 -0.757890 -1.612616 -2.103561 0.480218 -0.587572 -0.191000 1.515724 1.944952 0.711093 -0.880267 3.887614 -0.612070 -5.829435 3.046820 1.488416 2.340331 2.463424 0.252629 1.144958 1.178437 -1.673443 2.730395 3.314884 2.154203 -3.449923 0.325479 0.730366 2.230804 2.214824 2.979318 -4.670730 -0.129369 1.536201 2.726024 0.822490 2.688947 -2.865959 -1.957763 1.720860 -1.035560 -0.216315 -1.029763 0.932872 -1.383828 0.735891 -1.749667 -1.715699 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 1.483418 -0.474089 1.504125 -5.081162 -5.092980 0.374236 -2.031061 -3.399892 -1.331638 3.376729 1.979478 -3.406688 -3.220826 5.335996 -0.747332 -4.147381 -0.565818 -2.586171 0.895086 -0.271965 -0.679685 2.624591 -1.433445 -0.439957 0.453429 -0.068892 -1.613989 1.549817 4.468080 -2.128759 -1.566259 -2.232702 -0.197873 5.812021 1.922286 -1.761224 -0.573789 9.397843 -0.730335 3.736860 -5.720028 -4.597970 4.930088 -1.146573 -0.382916 -4.605680 -1.968431 3.991529 -4.249908 -0.683827 1.997364 0.143812 0.924689 -2.110966 -1.006298 2.472894 -7.895306 5.706742 3.267767 -1.136519 -0.517589 -1.020901 -0.680113 1.487823 -1.559878 -3.003579 0.353662 0.426903 -3.010479 -1.214262 -2.092823 -2.893467 6.076932 2.585458 -2.445932 1.105742 0.685153 -2.650993 3.900038 -5.026758 -6.588272 -1.456981 -0.952526 -2.105654 5.005030 0.818248 2.874737 -7.712324 2.932782 -9.138061 2.074223 -4.452267 2.317403 6.774876 -4.501942 2.672411 2.776869 0.803598 4.858003 -0.317944 4.921767 1.899290 0.741458 3.432447 2.614940 3.261581 -1.757890 -1.346886 -2.564123 -4.520797 -0.533879 -1.068193 -6.981342 3.065904 -1.265143 1.937500 -0.014643 0.682900 -1.445943 2.751735 -5.940952 -3.065250 0.643385 -1.300339 2.651098 5.009705 -1.068531 0.478381 -2.611346 5.117399 -2.278544 3.060000 0.781178 4.174697 -0.674389 -4.459138 -6.361888 1.799530 2.231750 -4.160303 -5.175908 -6.345566 -0.732935 -0.847878 -2.696625 6.563749 9.546377 -4.202558 -4.591279 6.882122 -0.827449 0.873959 5.926382 0.700006 6.466266 -1.147527 -2.703371 -1.630862 -3.420368 -0.421148 1.163814 0.958942 -1.764765 3.037637 -0.519125 -0.857886 1.305621 0.647903 -3.872885 -2.416519 0.544963 -3.638142 -4.454702 4.411995 -1.625058 3.725875 0.855367 7.581129 -0.556859 -3.830653 3.284517 -3.004782 -0.325812 -1.804890 -1.233589 0.953043 2.167948 -4.639764 -2.777544 -1.330449 -0.644489 -4.031604 3.204058 1.717054 1.222132 3.430414 1.550780 5.626243 6.128287 -0.653514 0.599418 -4.907007 2.646526 2.835995 -0.935720 -5.686869 -1.074041 -2.354005 -0.836906 3.827316 -0.636081 3.721470 -3.002957 -1.877492 0.576533 0.135301 2.929792 2.166642 -5.142394 2.052107 -0.375932 2.881524 3.339425 5.128015 3.141975 5.754563 2.885467 2.858223 -1.167197 0.924879 1.059425 -0.804398 1.298716 1.300786 3.320647 4.054440 4.159123 3.232680 4.973796 3.655803 -1.413066 5.603658 -1.288062 7.525131 -2.486758 -1.196908 -0.049100 0.614434 5.310261 8.378737 -3.109803 -1.000961 3.302606 -0.489116 -1.384778 -4.777847 1.179127 -1.243905 -0.036629 2.247579 3.018078 0.958322 -1.509800 5.781598 -1.267707 -7.978487 5.532847 1.998932 3.388451 2.134878 0.725309 0.326892 2.097453 -4.393476 3.121674 5.753548 3.416943 -4.709012 -0.224292 0.800298 4.192002 1.098261 4.744257 -6.024070 0.341448 3.347127 3.967105 1.583248 2.873725 -4.136414 -4.681475 3.290379 -1.024071 -0.576756 -0.235422 1.574324 -2.817883 1.267608 -0.622954 -3.026456 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/trie-suffixes.cpp__main = 3.721713 -3.969547 4.107199 -12.815002 -10.331057 -1.453296 -5.557683 -0.330743 -3.983337 5.762622 2.413136 -11.787747 -13.852712 12.642555 -1.325779 -12.435416 2.753569 -7.240030 5.406331 -1.225836 -0.841737 5.186611 2.775833 -3.283918 3.262850 0.792544 -11.167736 7.410055 24.141150 -6.466157 1.077954 -1.432238 2.305658 12.202903 0.160846 -10.786392 0.397490 21.587913 -0.494693 6.581534 -6.965718 -6.218367 16.739181 -1.823094 -2.713799 -11.104950 -6.675383 12.388841 -16.419331 -4.614924 3.711294 5.350118 3.853878 -8.832634 -9.644282 11.154165 -23.871323 15.066627 5.632392 1.442525 2.650349 3.923467 -5.774030 4.809767 2.046090 -8.912486 -3.134215 -5.197163 -11.588752 -6.416146 -2.992892 3.125372 16.987546 3.474933 -3.311003 6.035431 6.006385 -2.766376 9.342220 -15.383781 -13.861526 -2.140810 -7.408254 -5.494339 16.598063 -2.536633 4.063656 -15.344375 6.191833 -17.587654 6.995955 -13.728111 1.853998 17.331231 -12.360439 8.943892 3.425479 -4.431362 11.590055 0.236391 15.850885 5.257939 3.482841 10.761904 5.783176 6.549475 -3.076291 -1.098823 -7.593425 -7.816582 -3.823147 -3.601318 -17.123182 9.892931 -0.815068 4.111989 7.916493 -1.658832 -6.584847 3.934888 -6.358419 -3.176143 -0.226782 -2.526873 0.053224 12.355000 -2.897035 -4.286885 -3.951267 16.079514 -1.817703 8.312952 11.849213 10.132512 3.527480 -15.255182 -7.524042 5.803272 1.836424 -7.546550 -10.318425 -15.370241 3.360195 -9.237803 -7.317315 12.636945 22.274120 -1.983742 -6.434967 16.553677 -2.127947 6.184598 12.123534 -0.414967 15.780140 -0.671645 -13.461040 -1.669445 -10.166077 2.491087 3.759814 3.612968 -1.893915 6.948712 -0.694127 -1.767506 -5.759872 2.023710 -5.823598 -2.624926 -1.782552 -10.581899 -13.789734 9.603479 0.765710 7.348665 6.290635 18.694775 11.606823 -14.662832 10.690015 1.115218 -0.273103 -2.590749 -3.043598 4.551409 -5.399928 -10.460594 -7.000082 -7.931721 6.103227 -11.667893 6.865334 3.466772 6.813591 10.295674 4.917249 9.383719 7.148165 -4.228590 4.765515 -15.631321 3.259030 4.814455 -3.675248 -14.800512 -0.607800 -2.125929 1.178297 15.601089 -3.539604 8.650993 -6.967891 -6.652394 3.586790 1.926603 4.431042 3.825632 -11.506874 3.104289 5.111885 7.123443 10.846533 14.896286 8.995513 8.578289 0.156242 15.060139 -3.811341 8.139021 -0.608094 -6.134149 -2.019257 2.060842 7.366061 5.199570 7.677120 8.446166 14.259888 11.571344 -10.113996 12.039096 -2.841176 11.761527 -0.500291 -8.463324 3.184842 0.520042 12.404427 16.667500 -5.100531 -6.150388 10.409333 -1.829904 0.699770 -12.415389 4.450721 -2.900656 3.654631 8.910655 2.792482 3.919632 0.352710 4.979777 -2.845152 -19.769187 16.251893 6.365862 7.448469 4.204803 3.955402 1.794540 2.307960 -13.200262 2.039959 13.250011 4.284077 -10.580953 3.791067 4.539723 11.197477 -1.052388 14.006504 -17.797304 -5.799836 4.849762 4.367074 4.795363 5.479924 -7.301965 -18.928163 9.497458 1.028424 -2.938981 -5.946471 -2.624093 -11.510486 3.301471 6.403575 -3.297554 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 1.120992 -0.825797 1.436248 -2.565826 -1.759690 -0.846349 0.490195 -1.404660 -0.786028 2.804938 0.892240 -2.585049 -2.379035 2.966599 0.114055 -2.023859 0.379823 -0.844362 0.488252 0.137917 -0.378590 1.068084 -0.440412 -1.408657 1.013890 0.167936 -0.736622 2.086342 2.142289 -0.283287 -0.155436 -1.144111 0.790349 3.690176 0.174641 -1.106713 -0.900085 5.593159 -2.447261 3.377755 -3.248090 -3.055942 5.005990 -0.971021 -0.268208 -3.150524 -1.144145 2.828039 -2.552824 -1.958322 0.053267 0.949994 0.788656 -3.164045 -1.670770 2.593061 -5.491605 2.320048 2.221389 -1.373631 -1.483059 -0.283827 -0.606361 0.666223 -1.996578 -2.191256 -0.279582 -1.441640 -1.982376 -0.136778 -2.003306 -1.237029 3.609285 1.140652 -0.802355 1.590094 0.490650 -1.404036 2.707464 -1.886523 -3.074059 -1.606281 -0.771884 -1.552682 2.991419 0.621162 1.951639 -4.757158 1.469046 -5.265093 2.010965 -3.903396 1.323872 4.531451 -2.587375 3.137383 1.353045 0.924453 1.695610 -0.113977 3.066060 1.904472 1.460485 1.811343 2.138279 2.581752 -2.081756 -2.413168 -2.439066 -2.135293 0.145631 -1.268019 -4.560481 1.922690 -1.292875 0.813295 1.130009 -0.122458 -0.880207 2.727727 -4.022327 0.408644 1.281591 -0.870239 0.906578 3.056772 -0.505471 -0.727368 -1.450420 3.042436 -0.572419 1.865493 1.492434 2.907890 -0.965654 -2.803495 -1.596132 0.624737 0.575419 -2.671834 -3.173726 -4.829127 -0.197226 0.494966 -1.477541 2.925873 5.840114 -1.397850 -2.423103 3.483298 -0.370356 0.830239 2.821602 0.885003 4.612986 -1.191857 -1.571563 -0.780901 -1.385300 1.246261 2.492848 0.073962 -2.014462 2.491194 -0.516453 -1.340918 2.102696 0.201640 -0.893774 -0.621604 0.276020 -2.421118 -2.965248 3.397317 -1.708661 3.172829 -0.807752 4.965994 0.113596 -1.793361 2.181757 -2.550994 -0.461291 -2.366899 -0.621583 0.479731 1.108789 -3.142257 -2.242742 -1.783424 -0.333985 -1.489214 3.449697 -1.184611 0.499315 1.492003 0.180269 3.024932 1.793330 -1.609834 0.213797 -3.649117 1.219684 1.437013 -0.524086 -4.456358 -0.488825 -1.088552 -0.503264 1.919608 -0.099651 2.661645 -2.217828 -1.187078 1.612125 0.056101 -0.103827 -0.219489 -3.679534 0.875196 0.555292 1.918754 2.371091 4.130670 2.575809 2.564405 0.167786 2.577201 -0.970371 0.424260 -1.807336 0.183464 -0.405105 0.989548 1.811965 2.278485 2.009117 1.946934 2.806262 1.799383 -1.280262 3.644783 0.329345 3.593081 -1.009490 -1.552891 1.403849 0.214714 3.473911 3.779091 -0.875260 -1.723195 2.262801 -0.759207 -1.688270 -1.878024 -0.254269 -0.367351 -0.528838 2.497876 1.781645 0.101683 -0.235757 3.936477 -0.506718 -6.017740 3.116749 1.425312 2.199461 1.725980 0.070789 1.113867 2.001037 -0.967954 1.357697 2.435215 2.019548 -3.682075 0.470486 0.910079 2.574766 1.946892 2.234054 -6.054367 -0.677196 1.201220 2.559923 0.486781 3.116847 -2.374029 -1.665927 1.110495 -0.265569 -0.150196 -1.065015 0.735283 -1.508438 0.393205 -2.222149 -0.550686 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 0.578682 -0.334409 1.196757 -1.792652 -0.544880 -0.552330 2.885752 -1.122368 -0.913662 2.916783 0.521754 -1.511931 -1.212475 1.996662 0.479246 -0.944210 0.852916 -0.977066 -0.730244 0.132243 -0.927748 1.031439 -0.580787 -1.701168 1.391341 -0.077645 0.642753 2.360515 -0.955111 0.338985 0.433196 -1.208731 0.709542 3.444943 0.698285 0.184262 -1.237578 4.024083 -3.696790 4.323214 -2.532361 -2.653121 4.657192 -0.595723 -0.432321 -2.406350 -0.570740 2.357281 -0.279556 -2.816748 -0.022215 0.244945 1.032772 -2.869815 -1.084582 2.744211 -2.933657 -0.015349 1.733260 -2.117619 -2.925520 -0.806678 0.091785 0.553794 -3.262298 -2.124617 -0.150937 -1.739565 -0.707940 0.208844 -2.156719 -2.034303 1.956557 0.823232 -0.436984 0.924157 -0.887677 -1.472542 1.769888 0.303072 -1.787555 -1.745079 -0.200761 -1.781640 1.559449 0.625117 2.186431 -4.416745 0.411908 -3.924963 1.599620 -2.343736 1.706919 3.285741 -0.702648 2.968430 0.250544 1.483088 -0.385949 -0.685830 1.777970 1.052426 1.760632 0.955470 2.455577 2.656052 -2.853526 -3.750819 -2.586929 -1.330850 1.603694 -1.374304 -2.565107 1.427490 -1.575018 -0.520702 0.515783 -0.143032 -1.118727 2.948669 -3.297102 1.440982 1.416902 -0.819757 1.180681 2.121836 -0.001693 -0.229901 -0.630348 1.730721 0.054901 1.822804 -0.138265 2.696586 -1.405560 -0.791393 0.395875 0.356781 0.884624 -1.969197 -2.773207 -4.622474 -0.761027 1.730496 -1.768265 1.710286 4.473661 -1.395519 -2.222045 2.125281 0.556768 0.503961 0.293882 0.812055 3.321737 -1.963612 -0.201445 -0.455880 -0.245169 1.824448 4.960708 -0.558163 -2.596237 2.630838 -1.447492 -2.079082 3.625759 0.276236 -0.263879 0.194251 0.318180 -1.318262 -2.168592 3.313494 -2.168269 2.637112 -1.873762 3.806035 -1.177969 -0.570907 1.025363 -2.842966 -0.964261 -3.820594 -0.520006 0.113974 1.674629 -2.162678 -1.914415 -1.442576 -0.527206 -0.798322 2.957743 -3.498510 -0.425577 -0.185008 -0.220679 2.350842 0.870437 -1.386597 -0.564593 -2.431465 0.999481 1.186941 0.573669 -3.146513 -1.022308 -0.593247 -1.363849 0.336908 0.180486 1.811716 -2.011091 0.019979 2.254292 -0.228396 -1.284471 -0.411068 -4.424974 0.887063 0.974342 1.024812 1.453712 3.756854 2.273782 1.879590 -0.164251 1.347381 -0.819365 -0.385980 -4.281483 0.787840 -0.375538 1.010412 1.735987 1.851351 1.677021 1.196642 2.167376 0.635917 -0.148838 2.695519 0.922325 2.749963 0.035865 -1.191265 1.927185 0.128287 2.297206 1.982245 0.493722 -2.084084 1.959931 -1.043067 -2.471520 -0.434825 -0.224217 -0.602588 -0.196429 2.396443 1.482236 -0.720611 -0.375528 4.577592 -1.020091 -5.368008 1.578601 1.234095 2.289985 2.025841 -0.551845 2.318081 1.904843 0.474579 1.753448 1.526166 1.803018 -2.925635 0.541114 0.420977 1.132900 3.143402 0.526109 -6.383142 -0.662933 -0.092914 3.098023 0.021067 3.855463 -1.558671 1.378603 0.259269 -0.130099 0.611899 -0.664978 1.513039 -0.122357 0.101424 -4.675440 1.001392 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = 1.313959 0.254117 2.221896 -3.918072 -1.399578 -1.319497 5.603195 -2.204737 -1.573975 5.771508 0.848699 -2.609599 -3.068092 3.667341 -0.081429 -1.570097 1.206595 -2.805780 -1.541546 -0.438736 -1.464222 1.956593 -0.866616 -3.188644 2.252870 -0.335324 1.269768 4.395763 -1.058853 0.030025 0.678780 -2.164231 1.588226 5.983787 1.148198 -0.123156 -2.587273 7.084030 -6.758150 6.674496 -5.438226 -5.059826 8.228236 -1.024164 -0.180942 -6.526611 -1.160880 4.061899 -0.144578 -4.315101 -0.414747 0.438338 1.696327 -5.241285 -1.953486 5.114812 -5.503646 0.885489 2.962678 -3.712405 -4.769716 -1.459927 0.502889 1.187369 -5.309497 -4.120030 -0.220459 -2.883781 -2.129790 0.879366 -3.802429 -3.191408 2.956508 1.256382 -0.865315 1.543898 -1.851991 -3.297362 3.078413 -0.961057 -2.794242 -2.842789 0.173479 -2.204510 2.342034 1.063315 3.331322 -7.671367 -0.126215 -6.687361 2.298629 -4.436515 2.950075 5.235322 -0.850371 5.289349 0.020748 1.872609 0.045099 -1.098716 3.053233 2.360715 4.514019 1.425663 4.225440 4.677161 -4.531365 -6.346444 -4.239956 -2.307623 2.150058 -2.095334 -5.291553 2.506201 -2.686641 -1.935488 0.854978 -0.880383 -1.950239 5.681601 -6.396949 1.925829 2.527731 -1.381710 1.804238 3.860764 0.114072 -0.400521 -0.937627 2.950212 0.586678 3.673201 -0.028584 4.629655 -2.483137 -2.950023 0.276226 0.522121 1.401553 -3.361831 -4.920979 -7.669455 -1.628085 2.283758 -3.000199 2.376444 7.720347 -2.191097 -4.528136 3.561716 0.831234 0.525387 0.727628 1.303082 6.153941 -3.549440 -0.011914 -0.544327 -0.193323 3.300012 9.512863 -1.302393 -5.024146 4.123507 -2.601668 -4.692221 4.131729 0.537940 -0.130654 0.131567 0.342040 -2.684984 -3.806032 5.677476 -4.629406 5.650314 -3.764074 6.372779 -2.531782 -1.458191 1.672527 -5.100543 -1.127662 -6.108683 -0.465237 0.579919 3.032732 -3.738253 -3.366016 -2.776841 -1.023324 -1.316382 5.742395 -7.546870 -0.882091 -0.575077 -0.259999 4.375732 1.555500 -2.896338 -0.275074 -4.029627 2.321073 2.278854 1.962302 -7.106637 -1.891848 -1.055660 -2.483593 0.734700 0.288593 3.358047 -2.439911 -0.053863 4.194949 -0.731167 -2.437699 -1.069787 -6.863819 1.605463 0.770006 2.035144 1.733596 6.757605 4.034565 3.104227 -0.623416 1.768457 -1.362971 -1.624997 -6.610252 1.633052 -0.212229 0.346849 3.011482 4.005930 2.729897 2.052512 4.566283 1.602906 -1.051195 4.805622 1.156205 4.677551 -1.347958 -2.070248 3.111400 0.051469 3.768295 3.865451 1.635991 -4.227929 3.418210 -1.544219 -3.971104 -0.822314 -0.746900 -1.048820 -0.392355 5.141917 3.236649 -1.693553 -0.358515 7.981787 -1.570896 -9.249519 3.014390 2.085250 3.909826 2.961087 -1.365875 3.503036 3.663297 0.888253 2.581248 2.556630 2.802125 -4.926534 -0.572808 0.896185 2.291067 5.360417 0.497752 -12.382110 -1.348787 0.360932 6.012896 0.036432 7.110517 -2.787282 2.049715 0.727083 0.527256 1.114912 -1.063384 2.677919 -1.525378 -0.080220 -7.433184 2.145930 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = 0.780146 -0.123112 1.256223 -2.613826 -0.912153 -0.709619 3.236852 -1.350976 -0.971101 2.884931 0.426817 -1.784359 -2.782855 2.218303 0.102322 -1.621219 0.775684 -1.869904 -0.898479 -0.130559 -1.235066 1.095832 -0.604268 -1.977277 1.536556 -0.219021 0.634906 3.003264 0.440074 -0.267480 0.153546 -1.344402 0.817893 4.130651 0.849198 -0.012648 -1.200720 5.252579 -3.442123 4.421789 -3.307916 -3.191316 5.387360 -0.716105 -0.498656 -3.815930 -0.422344 2.801848 -1.741286 -2.315021 0.097046 0.258280 0.894868 -3.314595 -1.131835 3.685547 -4.173011 1.417190 1.858911 -1.789684 -2.769127 -1.206063 -0.102536 0.600531 -2.957580 -2.759238 -0.100312 -1.836442 -2.091477 0.460829 -2.671726 -1.850337 2.701043 1.078784 -0.806916 1.072652 -1.019345 -1.690012 1.836827 -0.977608 -2.150557 -1.768784 0.221712 -1.211439 2.267791 0.722201 1.745886 -5.259511 -0.376493 -4.749077 1.480418 -3.254856 2.132100 3.810873 -1.046339 3.548665 -0.014051 0.608861 -0.219446 -0.682302 2.277947 1.173189 2.493184 1.002169 2.675794 2.598152 -2.729703 -4.001219 -2.445404 -1.420440 0.850435 -1.098290 -3.914602 1.603403 -2.164877 -0.142421 0.708250 0.083894 -1.646252 2.765069 -4.201144 0.862453 1.163941 -0.976777 1.981509 2.716614 -0.044211 -0.138052 -0.555489 2.347645 0.467272 2.230823 -0.412680 3.028015 -0.669384 -1.963536 -0.612178 0.220325 1.319604 -2.056756 -3.634416 -4.691091 -1.309216 1.081209 -1.923955 2.188565 5.348730 -1.315136 -2.711372 2.777492 -0.605089 1.653853 1.079524 0.854445 4.032474 -2.304971 0.076421 -0.201177 -0.081214 1.765871 5.100251 -0.834773 -3.336883 2.464413 -1.330336 -1.677511 1.877253 0.510376 -0.285867 -0.508754 -0.164023 -1.899618 -3.099314 4.143742 -2.964506 3.711910 -1.884947 4.630240 -1.613568 -1.471409 1.418105 -2.634895 -0.427534 -3.844626 -0.556665 0.266945 1.614512 -2.876569 -2.429118 -1.602941 -0.064349 -1.067688 3.751207 -3.175088 -0.732618 -0.328352 0.069993 3.165764 1.386350 -1.999324 -0.081491 -3.099713 1.562883 1.432641 0.804460 -4.322963 -0.889274 -0.393354 -1.672395 1.385000 0.207691 1.940772 -1.614937 -0.348959 2.506477 -0.088616 -0.880765 -0.308391 -4.778626 1.060624 0.949456 0.652002 1.714790 4.434620 2.842666 1.930693 -0.275366 1.224272 -0.849243 -0.626615 -3.764581 0.674704 -0.204726 0.931617 1.964102 2.551706 1.933527 1.199602 2.867622 1.314646 -1.056758 3.183299 1.261102 3.413816 -0.955709 -1.626935 1.995210 -0.254661 2.641515 2.834734 -0.199841 -2.454543 2.504238 -0.505284 -2.104870 -1.186619 -0.559760 -0.950801 -0.258333 3.331413 1.499320 -1.000750 -0.233998 5.480613 -1.211495 -6.160150 2.191849 1.481523 2.564025 1.661931 -0.733544 1.828842 2.427655 -0.386461 1.729040 1.704575 1.813205 -3.020507 0.090022 0.508138 1.542815 2.727335 0.317060 -7.097377 -1.380221 0.384955 4.265815 0.995333 3.850035 -1.537202 0.636541 0.422735 -0.067438 0.760189 -0.866603 1.827552 -1.075599 0.057690 -4.393281 0.760361 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.417459 0.117668 0.617941 -0.664108 -0.324160 -0.219351 0.811012 -0.683991 -0.420582 1.303019 0.061988 -0.751865 -0.931001 0.677747 -0.217668 -0.675783 -0.038172 -0.383479 -0.429400 -0.466483 -0.407182 0.221509 -0.156360 -0.845235 0.422529 -0.232585 0.495070 0.996125 -0.053058 0.179820 0.302557 -0.461202 0.545530 1.529370 0.338306 0.191315 -0.530868 1.634439 -1.084686 1.461730 -1.526718 -1.532898 2.111534 -0.190537 -0.016121 -1.335125 -0.031478 1.044204 -0.823037 -0.689612 -0.297138 0.111137 0.186129 -1.326944 -0.594224 1.199056 -1.606579 0.722469 0.513410 -1.081163 -1.405162 -0.272618 0.181951 0.342781 -0.838630 -1.028363 -0.123377 -0.330726 -0.754037 0.453828 -0.935386 -0.700384 1.015093 0.138163 -0.247514 0.351117 -0.418139 -0.094222 0.672405 -0.360292 -0.624646 -0.798610 0.303395 -0.391889 0.528280 0.670364 0.732475 -1.983688 0.052395 -1.681753 0.796468 -0.923288 0.780711 1.102471 -0.380710 1.413796 0.047469 0.073823 -0.049218 -0.210276 0.704052 0.333925 1.027027 0.416859 0.914510 0.975294 -0.975224 -1.572512 -0.977834 -0.670685 0.405159 -0.462105 -1.485598 0.504372 -0.869788 0.236817 0.205342 -0.087521 -0.408789 0.970258 -2.026458 0.211519 0.482321 -0.294701 0.811633 0.672042 0.002489 0.181422 -0.028189 0.770810 0.143256 0.454436 0.118319 1.066983 -0.232518 -0.817486 -0.482261 0.331361 0.512210 -0.705099 -1.208406 -1.751844 -0.546212 0.764952 -0.668081 0.870692 1.962034 -0.358239 -1.244633 0.800462 -0.282591 0.321070 0.586050 0.450163 1.716363 -0.970029 0.038740 -0.029686 0.024438 1.038720 1.723363 -0.441001 -1.257512 1.189422 -0.313333 -0.436720 0.521637 -0.097359 -0.043967 -0.215035 0.052537 -0.557768 -0.674801 1.229871 -0.954045 1.500784 -0.903620 1.703048 -0.859358 -0.654748 0.298645 -1.746345 -0.434809 -1.009440 -0.073449 -0.253390 0.830973 -1.286354 -0.864017 -0.594900 -0.325161 -0.246959 1.587981 -1.145963 -0.185334 -0.123374 -0.164543 1.411032 0.369989 -0.723345 -0.184885 -1.172101 0.381652 0.733980 0.571312 -1.720617 -0.457584 -0.258996 -0.543158 0.420932 0.078533 0.782711 -0.531348 0.150943 0.776127 -0.236164 -0.325711 -0.285942 -1.165746 0.389736 0.211616 0.410701 0.450001 1.780718 1.127105 0.686421 -0.126892 0.610036 -0.156332 -0.631038 -1.039528 0.344138 0.154810 0.287113 0.700890 0.910381 0.504237 0.471735 1.100266 0.485468 -0.456623 1.221643 0.209415 1.282681 -0.930775 -0.239832 0.523293 0.082676 0.930485 1.100212 -0.248240 -1.000761 0.828557 -0.375405 -0.664671 -0.406375 -0.361237 -0.308902 -0.132247 1.274311 0.933242 -0.415129 -0.131194 2.064966 -0.166431 -2.231939 1.045488 0.565094 0.690083 0.570731 -0.593204 0.499127 1.012132 0.133039 0.173956 0.642027 0.693814 -1.492215 0.172829 0.146371 0.853322 1.042588 0.062832 -2.676919 -0.490029 0.331352 1.611817 0.083577 1.554594 -0.808316 0.102385 0.145318 0.052645 0.233135 -0.089713 0.667837 -0.218009 0.152592 -1.529382 0.173550 +PE-benchmarks/m-coloring-problem.cpp__main = 0.432821 -0.127778 0.412490 -1.121263 -0.542351 -0.041745 0.606631 -0.584356 -0.287394 0.381409 0.320040 -0.604720 -0.806504 1.022775 -0.089737 -0.814584 0.269211 -0.789563 -0.264327 0.067093 -0.371140 0.422473 -0.278436 -0.604301 0.462125 -0.071442 0.042412 0.941945 0.493903 -0.406735 -0.361161 -0.426986 0.096104 1.612870 0.398181 -0.159879 -0.085143 2.185213 -0.685970 1.264915 -1.169721 -0.954704 1.725497 -0.322251 -0.383885 -1.361688 -0.525989 0.919487 -0.910585 -0.431884 0.309150 -0.078317 0.171200 -0.957511 -0.245355 1.331927 -1.817631 0.889876 0.702968 -0.192809 -0.654217 -0.579627 -0.078755 -0.027486 -0.660416 -0.975111 0.203822 -0.280365 -0.838194 0.103872 -0.907715 -0.873412 1.612695 0.529058 -0.361856 0.357781 -0.172709 -0.916584 0.711681 -0.561622 -1.074199 -0.526177 0.096742 -0.320657 1.291923 -0.000949 0.502352 -2.042016 0.005495 -2.022221 0.428686 -1.389740 0.822285 1.552993 -0.941909 1.036189 0.158031 0.285815 0.117608 0.006056 1.112929 0.376186 0.504385 0.306608 0.994826 0.644652 -0.635475 -1.019272 -0.657700 -0.700873 -0.010082 -0.308144 -1.977277 0.619065 -0.800889 0.176059 -0.002530 0.240669 -0.474736 0.817037 -1.320811 0.005541 0.311353 -0.385972 0.793725 1.208712 -0.174564 0.004921 -0.524102 1.069222 0.025764 0.755394 -0.379089 0.980612 -0.150976 -1.183935 -0.863028 0.011388 0.597479 -0.857904 -1.587661 -1.513207 -0.420154 0.092910 -0.681266 1.134712 2.107997 -0.606901 -1.103928 1.346000 0.129210 0.786059 0.982866 0.276693 1.591892 -0.789081 0.024075 -0.131443 -0.153819 0.186720 0.372469 -0.288639 -0.923313 0.731546 -0.322724 -0.667460 1.231385 0.165373 -0.340914 0.069116 -0.138399 -0.787432 -1.392247 1.726667 -0.277740 1.378978 -0.148750 1.919314 -0.574999 -0.858672 0.614345 -0.435884 0.014018 -1.152027 -0.273199 0.062071 0.623511 -1.055732 -1.001755 -0.318457 0.056581 -0.518270 1.210179 0.041546 -0.111872 0.058418 0.160977 0.824178 1.000203 -0.640771 0.262142 -1.279966 0.616279 0.790680 0.012857 -1.509828 -0.124220 -0.202123 -0.470173 0.580385 0.098620 0.686330 -0.687734 -0.439345 0.647934 0.098336 0.189399 0.155335 -1.690010 0.399842 0.047294 0.075004 0.699449 1.487545 1.214719 0.828110 0.161411 0.231705 -0.167839 -0.055252 -0.827582 -0.067776 -0.029987 0.659335 0.708796 0.991931 0.798820 0.431931 0.954786 0.710487 -0.214905 1.228635 0.700874 1.631196 -0.229942 -0.577876 0.406059 -0.238956 1.222402 1.551684 -0.455416 -0.493811 0.862015 0.204171 -0.512403 -1.088296 -0.166281 -0.351576 -0.286956 0.974746 0.258953 -0.262920 -0.196857 2.024878 -0.376738 -2.146166 0.928292 0.543405 0.854256 0.478639 -0.127854 0.413159 0.867867 -0.615075 0.763246 0.720636 0.834389 -0.963740 -0.095302 0.148706 0.703051 0.394804 0.434402 -1.776199 -0.035777 0.416605 1.531889 0.632137 0.867050 -0.544895 -0.181109 0.182618 -0.133042 0.164094 -0.116827 0.691500 -0.723530 0.000837 -1.224681 -0.257478 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 1.003366 -2.223844 0.407637 -2.606632 -0.808327 1.661198 -0.913835 -2.442654 -0.155127 0.217203 0.829895 -0.177553 -0.319813 0.753398 0.599861 -2.040731 1.406089 0.434831 0.749643 0.640485 -0.554658 0.295009 -1.097343 -1.512834 0.261453 -1.242570 0.747601 1.687182 0.562527 1.181467 -1.672119 -1.413829 -1.388387 3.969344 2.188209 0.602428 0.147376 4.938418 0.834918 3.167450 -1.506379 -2.367998 2.817760 -0.698609 -0.711494 0.623342 -0.653950 0.858117 -2.457192 -0.985313 0.908873 -1.812745 1.996036 -1.011185 -0.760592 1.382785 -1.759905 -0.487663 1.004138 -0.711766 -1.506953 -1.904725 0.013662 1.017544 -2.874940 -1.651312 1.514841 1.058722 -1.160909 -0.437704 -2.166240 -2.888937 3.575397 2.406317 -1.332482 -0.313890 0.268230 -2.613893 0.965212 2.038024 -3.629857 -1.099493 -1.051313 -2.665062 3.528523 -0.605582 3.672001 -4.810228 2.128448 -5.543907 1.113170 -1.922806 2.652128 3.879563 -3.049540 1.310164 1.662388 4.812360 -0.592228 -0.816911 2.752272 1.108024 -1.475222 0.454982 3.560805 0.523068 -0.871019 -1.982198 -0.912491 -1.154465 0.159111 -2.606026 -5.241053 1.165905 -2.427467 1.751445 -1.642547 1.685249 -1.854832 2.344275 -3.816227 -0.698389 -0.235794 -0.959324 2.333010 1.462324 -0.507153 0.760032 -0.022939 2.764468 -1.202556 -0.075151 -1.680464 2.420561 -0.800893 1.350444 -2.166866 0.788217 2.630132 -2.561760 -4.323585 -2.359228 -2.217485 2.115565 -0.575565 4.292078 4.681412 -1.791777 -1.529930 2.685169 -2.385453 0.597869 3.245812 1.093767 2.102906 -1.969904 0.452293 -1.509616 -0.002601 -0.511497 -0.153854 -0.738963 -1.156135 2.326553 -1.445018 1.826725 4.750724 -0.156669 -1.455872 -1.795476 -0.587784 -1.706168 -2.690990 3.842096 -3.281902 2.174431 0.339228 4.238743 -1.390896 -1.160849 1.270413 -0.475883 -0.974707 -2.627517 0.374196 -0.836526 2.129643 -2.585431 -2.760033 0.211514 -0.098605 -0.385052 2.677540 3.405161 -0.354928 0.890908 -0.273192 3.015034 3.016852 -0.093908 -1.325452 -1.621423 1.490481 2.163895 -1.621747 0.394362 -1.180986 -0.931065 -0.789493 -0.177192 0.863364 2.289840 -3.039125 -1.264517 -0.404371 1.623856 1.588939 1.499604 -6.200355 1.629405 2.007542 -0.630128 2.082383 2.830213 2.228577 2.690873 1.160036 -0.703439 -0.017171 0.494606 -2.760499 -0.572285 0.938432 2.560070 0.980020 3.483029 1.655143 1.766922 1.551659 2.074562 2.521188 2.527747 0.900977 4.014234 0.682170 -0.690497 0.449204 -0.839896 3.163901 4.068402 -1.314312 0.925221 1.292650 0.478883 -1.846698 -3.306317 0.479219 -0.641335 0.580105 -0.258186 0.724687 0.800346 -2.139610 4.545530 0.158178 -5.034040 1.580670 1.170929 2.014572 3.472407 -0.844090 1.604572 0.614819 -1.017791 3.892114 1.976475 1.162557 -2.048868 1.055104 0.295014 1.050735 0.307841 0.582780 0.542044 1.388383 0.069818 3.676053 2.736028 1.498269 -1.574212 1.010549 0.290444 -2.474946 0.724019 -0.187077 1.787858 -1.085248 0.274497 -3.782026 -1.399529 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 7.796061 -5.134417 4.477855 -8.844476 -3.850825 -0.097459 8.311221 -10.497574 -5.207415 18.421213 3.121278 -8.001438 -4.801070 11.207141 0.275377 -5.369693 4.262938 0.242729 -0.754013 0.161154 -5.813670 3.723571 -4.232230 -9.781162 4.077181 -1.263354 3.913771 11.554171 -3.110368 5.216765 -1.462609 -7.167941 1.367858 18.901884 6.698757 -1.703882 -6.270699 27.635697 -20.283014 21.918634 -14.745597 -15.822773 26.007433 -3.279455 -0.360105 -12.104618 -6.533479 12.035104 -3.212127 -13.500731 -1.040086 -1.934242 6.331494 -13.347252 -7.296448 14.739965 -17.879181 0.923667 9.568049 -11.607959 -17.260968 -4.833543 3.319752 5.742094 -19.596846 -12.057130 1.606704 -4.104322 -3.345583 0.463406 -15.183109 -13.573726 12.288056 4.845197 -4.245071 1.925679 -4.518360 -8.309533 8.845797 2.776650 -14.497524 -8.113938 -2.645064 -11.858874 8.645527 5.633008 17.043596 -25.424486 8.359819 -27.969668 7.446433 -15.391185 10.421279 20.169139 -8.098939 14.839298 4.251334 17.912248 2.074135 -2.352888 10.652227 7.921620 4.293123 3.967668 14.480790 14.663263 -12.651193 -18.052393 -13.285978 -7.371045 5.773110 -7.448280 -22.040628 8.952731 -11.260128 2.436033 -1.511153 2.977845 -6.626150 17.648075 -22.887922 6.719865 4.781380 -4.376864 9.642922 13.027860 -1.150947 1.675462 -3.470079 9.960087 -1.317575 7.123857 0.274718 14.586376 -11.357318 -4.450086 -4.100811 5.121178 8.279307 -13.146428 -16.648275 -25.268211 -5.242317 11.333251 -8.434193 16.011114 28.411256 -8.980976 -11.675641 11.085909 -3.954393 0.297849 9.570783 4.422019 25.059090 -12.023680 0.584542 -1.840096 -0.561716 6.280848 18.827659 -4.136163 -12.267485 13.969951 -7.154384 -5.656690 23.589294 1.924846 -3.275197 -3.638966 2.561234 -4.680420 -12.963127 20.940150 -20.461216 14.804308 -8.318739 22.119350 -6.099175 -1.925711 5.955590 -17.253858 -5.900606 -18.207930 -0.274368 -2.804989 13.214114 -12.385567 -10.681900 -6.289401 -5.383517 -3.566518 19.530175 -7.506738 -1.399634 2.566500 -2.808099 18.328743 7.564883 -5.444738 -3.680754 -14.801565 6.189943 10.042987 -2.700205 -18.613379 -8.156102 -6.128799 -5.700076 -1.564928 1.670279 12.597078 -15.454434 -1.813717 6.629705 2.529698 -1.743794 0.049398 -25.054298 6.913420 3.377881 7.205023 9.900516 22.392971 12.211204 14.143675 1.754184 5.194274 -3.598053 -3.834601 -19.178297 4.929660 1.036522 7.120718 8.432319 11.676772 7.370729 8.917505 9.457567 1.388169 2.707020 15.784196 5.293199 19.157850 -4.822058 -5.883850 7.175038 -0.828536 13.890616 14.837692 0.205522 -8.134702 7.922330 -8.236060 -14.682823 -5.480452 0.179106 -2.006337 -1.627019 11.008331 11.582440 0.326179 -6.072526 25.853295 -3.086706 -34.504534 10.998085 6.393871 11.266121 17.668460 -3.999182 12.874393 9.209553 5.950248 12.119341 11.647488 9.645323 -17.143679 5.350752 2.923836 8.742776 14.029715 2.307027 -34.747979 4.177523 2.768394 17.527753 1.751359 19.334918 -11.381898 7.909383 2.504924 -4.530721 4.323725 -3.247041 10.877588 -2.015714 1.666546 -25.321915 1.587723 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 0.215357 -0.173267 0.701175 -1.464293 -1.726052 0.023410 0.204792 -0.948690 -0.325872 0.431618 0.621680 -0.711046 -0.513682 1.799150 -0.270836 -1.127786 -0.147582 -0.493059 -0.124947 -0.209595 -0.152297 1.107589 -0.430109 -0.047211 0.376721 -0.357111 -0.345606 0.979359 0.528694 -0.438960 -0.177254 -0.790426 -0.087854 1.824868 0.452292 0.036816 -0.209879 3.004159 -0.837834 1.546333 -1.850142 -1.396582 1.664115 -0.423229 -0.218586 -1.976904 -1.445802 0.962589 -0.639158 -0.318881 0.692544 0.085085 0.322441 -0.556911 0.324799 0.842426 -2.022448 0.993048 0.870160 -0.956928 -0.465828 -0.450670 -0.676775 0.145868 -1.097939 -1.052879 0.156782 0.418713 -0.336032 -0.024551 -0.266029 -1.325320 2.260151 0.575239 -0.686299 0.481723 0.476964 -1.285122 1.278938 -0.721323 -1.899082 -0.592273 -0.006683 -0.522275 1.365375 -0.022762 1.244933 -2.649922 0.478726 -2.740058 0.784921 -1.581056 0.770706 1.933785 -1.422123 1.102311 0.898843 0.657261 1.236119 0.200539 1.502314 0.824138 0.557839 1.038034 1.160729 0.956627 -0.557955 -0.920237 -1.225694 -1.499058 0.316613 -0.678210 -2.765405 0.779605 -0.055246 0.060865 -0.380006 0.225537 0.050697 1.700494 -1.570682 0.272031 0.943182 -0.462385 0.278396 1.433085 -0.483264 -0.014475 -1.063487 1.429928 -0.945989 1.327660 -0.221829 1.275787 -0.658448 -1.567754 -1.650851 0.197264 0.378962 -1.285457 -1.606650 -1.828157 -0.277529 0.579356 -0.941484 1.230203 3.135563 -1.610172 -1.737882 2.043540 1.144957 0.048467 1.054314 0.433707 1.904102 -0.380772 -0.788812 -1.000966 -1.000393 0.169213 0.787681 0.447243 -0.837893 1.122980 -0.206561 -2.194952 2.549228 -0.412950 -1.174708 -0.037145 0.279931 -0.931297 -1.164024 1.843605 0.011268 1.639970 -0.380143 2.171524 -0.469745 -1.160654 0.538868 -1.024226 -0.157073 -1.183613 -0.029369 0.347151 0.892204 -1.232227 -0.985241 -0.499475 -0.928806 -0.993163 0.795847 -0.148873 0.284183 0.686037 0.576836 1.095264 2.056592 0.188873 0.062875 -1.543944 0.999186 0.893469 -0.023620 -2.092456 -0.234396 -0.446925 -0.399968 0.035267 0.060847 0.976954 -0.724190 -0.305098 0.014608 -0.375548 0.386620 0.560270 -1.788778 0.483388 -0.172185 1.125006 0.580822 1.332157 1.890219 1.686073 1.066796 0.721573 -0.159730 -0.077105 -0.241565 0.289714 0.533717 0.260055 0.971464 1.765913 1.454977 0.736142 1.636121 1.121589 0.533805 1.705042 0.180805 2.804815 -0.433988 -0.537069 -0.028266 0.442183 1.694792 2.710768 0.145590 0.059372 0.970629 0.300552 -0.798127 -1.481299 0.305817 -0.309387 -0.324865 1.240186 0.712764 -0.256538 -0.369956 2.109658 -0.356330 -2.520103 1.225544 0.550831 1.113840 0.564211 0.292357 0.295061 0.977125 -0.965540 1.280669 1.438789 1.126697 -1.621740 -0.904641 0.163420 0.870373 1.109195 1.502751 -2.321951 0.503812 0.906815 1.614767 -0.165925 1.165493 -1.175465 -0.854686 0.918992 -0.375629 -0.333129 0.433560 0.405887 -1.065422 0.317004 -1.169988 -1.167274 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 1.258937 -2.207564 2.083176 -4.747396 -4.473454 2.274216 -1.793314 -3.887381 -0.835234 1.719720 1.794464 0.042797 0.476267 3.959493 -0.198325 -3.043832 -0.208894 -2.012033 0.807403 -0.484639 -0.771442 2.650942 -2.177110 0.152878 0.196610 -1.942844 -0.262185 2.076721 -0.038658 -0.528187 -1.010866 -3.034819 -3.005122 5.622925 3.043270 0.026496 -0.025203 9.206888 -1.299417 3.395986 -3.793920 -4.797291 3.624264 -1.479898 -0.920409 -1.078748 -2.533357 2.089097 -0.772278 -0.607373 2.871647 -1.330704 2.474038 -0.206820 0.229721 -0.016306 -4.277988 0.397390 2.230311 -2.706052 -2.184247 -2.049014 -0.571200 1.588912 -4.490899 -2.494768 2.647714 2.427482 0.114898 -1.526350 -0.837697 -4.724364 5.365111 2.931280 -1.230630 0.187501 1.935042 -4.184007 3.568040 0.883779 -7.349522 -1.741693 -2.068068 -6.093173 5.116869 -0.828192 5.439121 -7.556839 4.985024 -9.020663 1.184970 -2.827178 2.447728 5.782724 -4.150842 2.187971 4.214247 7.413787 2.694209 -2.009048 4.554021 2.045732 -1.302822 4.167412 4.621862 1.951710 -1.844140 -1.551441 -3.956198 -4.182377 1.213776 -4.058611 -7.043479 2.902310 -0.175547 -0.818855 -2.873902 1.676378 -1.480336 5.910804 -5.996519 0.460989 1.202084 -1.350043 0.805255 2.641187 -1.535877 0.582232 -1.793792 4.318987 -4.748364 2.639824 -1.178893 3.985200 -1.766811 1.321268 -5.164873 1.785107 2.745694 -4.401735 -5.096014 -4.607732 -1.810670 2.760463 -2.244472 7.914956 9.242758 -5.664747 -4.867423 5.854134 0.992666 -0.839295 4.199948 1.670049 3.389236 -0.379149 -3.130678 -4.270730 -3.274495 -0.731096 -1.045875 1.699871 0.039054 4.595299 -0.810344 0.155239 9.820597 -1.248632 -4.700978 -1.278284 1.618932 -3.089280 -3.618355 4.695949 -0.793498 3.098687 1.986107 6.628263 -0.960927 -1.633731 1.042863 -3.777790 -0.942614 -3.957969 -0.070200 -0.728560 2.704405 -2.487361 -3.106355 -1.581142 -2.465290 -2.780639 1.963154 3.130276 2.058367 3.306623 1.427603 4.035377 7.820379 2.154311 -1.681370 -3.256263 3.177842 3.515293 -1.556065 -1.635858 -2.339605 -1.272229 -0.889567 0.116380 0.781924 4.349904 -4.508661 -0.646535 -1.361589 1.859116 1.811619 3.660421 -9.596642 2.024708 0.729130 2.745401 2.785222 3.275340 4.341397 6.355825 4.423111 1.292656 -0.591930 1.333724 -1.288560 -0.746279 2.232354 3.285325 2.700794 6.071847 4.646126 3.597251 4.041200 4.428952 3.734861 4.806756 -1.045603 8.726612 -0.775951 -1.138871 -1.108411 2.344027 4.957634 7.629853 0.032248 2.375183 2.417637 0.851715 -3.259195 -5.154093 2.754086 -1.114772 2.533295 -0.563577 3.161036 0.805947 -2.742120 6.147818 -0.645409 -7.609877 3.093750 1.890899 3.900060 4.001900 0.946487 1.737332 0.857720 -3.272923 6.386304 5.478474 2.512224 -4.763170 1.108165 1.115091 2.979766 0.763940 4.823180 -3.348664 3.914619 0.955385 3.643982 0.639265 2.799902 -4.114986 -1.616014 3.451007 -3.200381 0.001992 3.081717 2.347715 -2.793311 2.247193 -4.202909 -3.857643 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 1.469869 -1.909414 1.344741 -3.099015 -3.022917 1.118417 -1.409272 -1.518292 -0.588159 1.134682 1.078915 -0.637559 -0.408808 2.799173 0.098134 -2.419212 0.514402 -1.851626 0.764238 -0.382660 -0.287811 1.615991 -0.516712 -0.232823 0.248627 -0.890209 -1.129587 1.401930 1.697929 -0.995375 -0.646274 -1.432762 -1.670650 3.242562 1.303707 -1.158112 -0.005617 6.193127 -0.262465 1.711029 -2.264096 -2.558012 2.949001 -1.064030 -0.368475 -0.785698 -1.875416 2.090916 -0.836699 -0.927135 1.685789 -0.199190 1.500493 -0.827926 -0.853108 0.583597 -3.628931 1.038133 1.214249 -0.987700 -0.923107 -0.646677 -0.484012 1.310047 -2.006019 -1.986088 1.582004 0.913538 -0.927737 -1.374571 -0.692293 -2.065593 3.558922 1.661644 -0.409079 0.340186 1.610154 -2.073593 2.613896 -0.363038 -4.804214 -0.970646 -1.971564 -3.939604 3.772670 -1.041282 3.167917 -5.075711 3.679879 -5.965821 1.209044 -2.393724 1.281767 4.031143 -2.916512 1.678988 2.354124 4.017068 2.345290 -0.832692 3.666890 1.398824 -0.422598 2.810158 2.803266 0.984949 -0.938940 -0.379015 -2.331601 -2.645140 0.307515 -2.395139 -4.491358 2.517786 0.104419 -0.319907 -0.758840 1.012901 -0.998649 3.087237 -3.386608 0.148699 0.735434 -0.871246 0.297070 2.011123 -1.579522 -0.067327 -1.480235 3.477702 -2.659394 1.917679 0.537087 2.648182 -0.670471 -0.171189 -2.907693 1.557248 1.692842 -2.793423 -3.404029 -3.238534 -0.259015 0.463968 -1.897629 5.451502 6.077480 -2.842177 -2.620545 3.864132 0.456503 -0.008278 3.021035 0.508752 2.977860 -0.274803 -2.600483 -2.007606 -2.149991 -0.262405 -1.579543 1.212794 0.262191 2.723765 -0.380392 0.194126 5.294160 -0.569002 -2.691970 -0.428537 0.918335 -2.037150 -2.866256 2.867751 0.398148 1.783198 2.309459 4.609626 0.658589 -1.522617 1.551122 -1.377915 -0.517804 -1.850371 -0.123063 -0.348629 0.864269 -1.600362 -2.042748 -1.542341 -1.223636 -2.100567 1.362217 2.762712 1.947776 2.712886 1.238281 2.209123 4.352446 1.161348 -0.458345 -3.086623 1.728736 2.340770 -1.244404 -1.126600 -1.411522 -0.779586 -0.013865 1.159896 0.310513 2.888238 -2.775784 -1.242590 -0.655816 1.621235 1.214827 2.241281 -5.534763 0.837133 1.043634 2.011369 1.874992 2.864780 2.697397 3.590134 2.333875 1.428852 -0.498799 1.709709 -0.589479 -1.210605 0.514413 2.099166 1.707913 2.972222 2.777370 2.357589 3.269357 2.801554 1.126157 3.075943 -0.559221 5.181154 -0.639763 -1.302223 -0.612646 1.048764 3.549416 5.068764 -0.219173 0.919959 1.861360 0.454896 -1.677608 -3.380559 1.753217 -0.869375 1.919301 -0.414700 1.610016 0.976066 -1.558624 3.088863 -0.308685 -5.413430 3.015971 1.176659 2.687743 2.947233 0.876144 1.315520 0.142666 -2.827296 3.185927 3.834311 1.343510 -2.855454 0.888835 0.870228 2.385836 -0.555820 3.514929 -2.260680 2.291024 1.029799 1.855861 0.579551 1.033224 -2.763353 -2.384016 2.167435 -1.972077 -0.153436 1.682030 0.821065 -2.563098 1.222268 -1.702689 -1.984714 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = 6.941116 -2.220217 6.731167 -11.735276 -7.770777 -1.316875 6.398731 -7.671304 -4.972403 13.558631 4.073050 -8.119520 -7.600299 10.956304 -0.793170 -7.398431 3.406488 -5.253042 -0.386839 -2.177222 -3.504267 4.587066 -2.377669 -8.480840 4.337299 -1.272056 0.021167 10.832295 4.517262 0.477176 -0.453107 -6.122334 2.367491 18.083553 4.104140 -5.180211 -5.397002 24.839538 -13.809252 12.564383 -14.273772 -14.217568 24.040417 -4.135922 -0.960472 -15.170085 -6.775223 12.687193 -4.423869 -10.627387 0.361423 1.067937 6.147006 -13.761357 -8.231790 12.307663 -19.868232 5.182020 9.453912 -9.181905 -11.586792 -2.556959 1.350472 5.075109 -11.509053 -11.742476 1.714957 -5.126932 -5.150302 -0.770630 -10.975555 -10.289943 13.360512 4.066163 -2.244886 4.313965 -0.838784 -9.048203 11.046958 -2.218789 -13.747991 -7.648117 -2.999533 -9.616207 11.201359 1.458363 12.025119 -23.999275 6.059724 -24.599679 7.847238 -14.557245 8.141470 17.996223 -8.920438 14.105706 4.932608 8.138519 5.586709 -2.534353 13.450716 7.211957 8.669962 6.680171 12.428469 12.046854 -9.810324 -12.874518 -13.296451 -9.651095 3.792872 -6.980742 -20.208809 10.606610 -7.190686 -3.398662 0.755829 -1.441069 -4.976901 16.483166 -17.337978 4.091935 6.575946 -4.357630 4.631389 12.889513 -2.764374 -0.605427 -4.672983 11.957165 -2.619272 9.181817 3.953288 14.292932 -6.103263 -11.461467 -6.035921 5.063793 6.103364 -12.964146 -15.668834 -22.022870 -1.854052 3.452958 -9.119924 11.265472 27.256815 -8.051405 -12.914242 13.287982 2.692337 1.451712 10.305367 3.737528 21.624260 -8.715960 -4.209223 -2.968231 -4.080519 6.811677 12.290119 -1.656600 -9.103885 13.649441 -4.846635 -8.180123 15.951397 -0.028304 -3.942688 2.647974 3.004125 -7.970940 -12.877257 16.495301 -5.038682 14.280364 -2.612870 21.576019 -2.725919 -6.499014 6.721145 -11.214373 -4.188190 -12.948387 -0.997578 -0.001581 8.092487 -10.871788 -10.462466 -8.797026 -3.520766 -5.673797 15.628632 -7.784030 2.335439 4.797136 -0.151925 9.100347 9.208968 -4.810040 0.019856 -15.374624 6.101055 9.375544 0.559966 -18.558421 -6.988223 -5.356311 -3.801454 3.757140 0.714558 13.359898 -9.815813 -3.329461 8.062465 1.199844 -1.914165 0.304252 -19.431793 5.204989 1.749572 8.198855 6.930018 20.741865 13.209877 13.325689 2.060526 8.068730 -2.689164 -0.590223 -12.668408 0.639865 -0.854071 5.397034 9.133024 10.477390 9.109043 9.050079 13.388164 5.753164 -1.353371 16.292644 2.089260 18.000040 -4.987131 -6.284153 5.374001 0.555532 14.983470 17.003911 3.366309 -8.944739 9.156950 -4.491274 -10.659334 -9.173607 1.249137 -1.906786 0.430815 10.334680 10.832863 -0.669338 -4.230840 20.943172 -2.955595 -29.488105 13.467384 6.267789 11.332961 12.060768 -1.766631 9.149876 8.105713 -0.741987 8.406787 11.997304 9.304180 -16.810387 2.082474 3.973334 11.429048 7.598825 6.645926 -31.752944 1.834792 3.802134 13.557792 1.056921 16.378782 -12.151859 -1.248230 5.030893 -1.122625 1.962359 -1.038008 7.425954 -7.382816 1.729315 -16.330165 1.690638 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.811741 -1.034109 0.299118 -0.642227 -0.538953 0.658379 -0.228302 -1.317747 -0.194307 0.188117 0.370825 0.054242 0.329214 0.488150 0.520728 -0.375182 0.476214 -0.613180 0.287134 -0.259432 -0.241842 0.280396 -0.517122 -0.102049 -0.191473 -0.329756 0.003045 0.424319 -0.590772 -0.132582 -0.441177 -0.814424 -0.616251 1.510335 1.035868 0.193766 -0.413027 2.202653 0.063678 1.021207 -1.136704 -0.911235 0.873953 -0.582209 -0.276085 0.068733 -0.381910 0.687594 0.524001 -0.683147 0.370216 -0.442493 0.554074 -0.104731 -0.464478 0.323629 -0.555362 -0.359033 0.476664 -0.959048 -0.891859 -0.583481 0.001113 0.610057 -1.645308 -0.800226 1.093153 0.387654 0.036900 0.067778 -0.742679 -1.652157 0.828639 0.830744 -0.347682 -0.394061 0.221817 -0.675411 0.870519 1.423159 -1.644459 -0.571527 -0.847358 -1.555685 1.022108 -0.339924 1.516787 -2.088401 1.355342 -2.567022 0.328339 -0.793722 0.926780 1.205191 -1.035193 0.452051 0.898260 2.397769 0.367789 -0.895786 1.055065 0.399613 -0.606618 0.690757 1.833228 0.193030 -0.068113 -0.431429 -0.684622 -0.810905 0.800532 -1.083043 -1.326496 0.889855 -0.647200 -0.359011 -0.986221 1.001244 -0.345439 1.404030 -1.631428 -0.022415 0.466928 -0.392333 0.637343 0.691989 -0.782567 0.402080 -0.618090 1.014949 -0.784532 0.619223 -0.441994 1.002491 -0.395784 0.483289 -1.281978 0.459012 1.178770 -1.474445 -1.575749 -1.259897 -0.445965 0.867088 -0.736495 2.252719 2.208546 -1.436022 -0.777354 1.143093 0.288991 -0.456763 1.000080 0.301215 1.401944 -0.623353 -0.226513 -0.742386 -0.400176 -0.094788 -0.498472 0.026990 -0.071729 1.068388 -0.197055 0.059405 3.280104 -0.360400 -1.136147 0.494212 0.091668 0.073068 -1.098810 1.075391 -0.119038 0.530834 0.479585 1.282766 -0.187594 -0.000599 0.431582 -0.555657 -0.526054 -0.546352 0.070378 -0.640794 1.148969 -0.635500 -0.812198 -0.258440 -1.131953 -0.311791 0.791631 1.563613 0.443175 0.828975 0.306451 0.857754 1.875791 0.581529 -0.554943 -0.884339 0.833593 1.310694 -0.101719 0.490880 -0.937859 -0.724326 -0.277329 -0.656072 0.353698 1.371518 -1.456895 -0.166387 -0.261905 0.807720 0.377836 1.008869 -2.617206 0.619747 0.593669 0.358150 0.633307 1.226271 0.680560 1.413611 1.140158 -0.405742 -0.146347 0.261026 -1.230935 -0.151807 0.240189 1.284351 0.551990 0.849330 1.005904 0.808085 1.134063 0.396043 1.522550 1.309586 0.149021 2.027522 -0.279710 0.176965 -0.116468 0.018107 1.390570 1.985894 0.157980 0.338140 0.514297 -0.138791 -1.452850 -1.286322 0.257304 -0.135096 0.642360 -0.413945 0.581091 0.316385 -1.060879 1.897480 -0.000431 -2.231223 0.712228 0.515306 0.646866 1.857983 -0.068966 0.931112 0.115448 -0.424245 1.430797 1.334349 0.766599 -1.172872 0.300301 0.135360 0.541741 0.013765 0.782310 -0.757561 1.256842 0.220737 1.255368 0.342134 0.148168 -1.324634 0.363514 0.739201 -0.957508 0.260242 1.090377 1.193902 -0.672652 0.223911 -1.781692 -0.245992 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = 0.664674 -0.931733 1.627506 -3.230734 -2.750812 -0.501358 -0.179519 -1.485187 -0.214777 1.645306 1.617134 -1.951225 -0.989910 3.678143 0.043927 -1.726618 0.210238 -1.308236 0.539609 0.156231 0.501779 1.593582 -0.433559 -0.614264 0.438261 -0.141143 -1.120895 1.621190 1.602377 -1.122845 -0.507576 -1.230281 0.113664 2.991120 0.046461 -0.970444 -0.915237 5.315168 -2.092981 2.631524 -3.365085 -2.466403 3.727899 -1.106598 -0.390884 -3.617805 -2.527614 2.085509 -0.547954 -1.667454 0.597418 0.798737 1.062189 -2.148158 -0.968834 1.389543 -4.304516 1.398529 2.096089 -1.558907 -0.500426 -0.092241 -0.673776 0.893616 -2.204546 -1.682478 0.462321 -0.566399 -1.120142 -0.661107 -0.668060 -1.811556 3.900193 1.233619 -0.511481 1.398612 1.251020 -2.620708 3.131232 -1.420629 -3.473938 -1.186630 -1.072148 -1.967692 2.713485 -0.502415 2.409705 -4.311952 1.801134 -5.083773 1.748928 -3.464746 0.802905 3.780899 -2.713071 2.142576 2.017368 1.960518 2.803897 0.207180 3.071366 2.289461 1.268118 2.021684 2.484446 2.062917 -1.284666 -1.278989 -2.430801 -2.883525 0.414323 -1.743081 -4.938915 2.051700 0.028818 -0.798712 0.217426 -0.221053 0.139262 3.868431 -2.735117 0.859643 1.918357 -0.769852 -0.684918 3.159246 -0.909101 -0.955588 -1.974149 2.748189 -1.763741 2.410656 1.544747 2.520106 -1.488902 -2.612695 -1.764369 0.617042 0.093153 -2.917288 -2.582719 -3.892458 0.230067 0.582907 -1.405792 2.799585 5.632776 -2.312674 -2.965250 3.423327 2.232265 -0.668254 2.447976 0.718976 4.231955 -0.501227 -2.187953 -1.894506 -2.160285 0.739581 1.725136 0.884213 -0.892832 2.243498 -0.584489 -3.831230 4.623170 -0.370250 -1.491427 0.686565 0.868388 -2.563091 -2.975305 2.694428 0.290468 3.015677 -0.069083 4.319537 0.232601 -1.494976 1.879598 -1.483453 -0.377070 -1.957365 -0.287440 0.913094 1.344678 -1.787768 -1.738281 -1.806360 -1.657679 -1.536215 2.320158 -0.944329 1.365276 2.051638 0.401608 1.693551 3.027918 -0.347701 0.259288 -3.094848 1.624889 1.763371 -0.378797 -3.833714 -0.703347 -1.468238 -0.033726 0.708303 -0.129434 2.974763 -2.012232 -1.299260 0.607924 -0.102814 -0.070397 0.141949 -4.089150 0.566296 -0.089557 2.908022 1.490737 3.106922 2.657120 3.195637 1.180697 2.001788 -0.931534 0.674748 -1.071492 -0.162903 -0.181892 0.479448 1.736951 3.139978 2.293298 2.188857 3.539297 2.113311 0.088143 3.448866 -0.473304 4.052184 -0.512718 -1.436835 0.413239 0.741435 3.613441 4.812859 0.797809 -0.583540 1.822253 0.087863 -1.983806 -2.613274 0.423350 -0.091200 -0.135275 2.170408 2.041960 0.501857 -0.608850 3.034662 -0.067518 -5.236952 2.645426 0.884598 2.230588 1.834896 0.484048 1.017154 1.431257 -1.298675 1.915067 2.719562 1.935744 -3.502306 -0.926570 0.971245 2.371240 1.556915 3.190019 -5.128502 1.079793 1.370743 1.910339 -0.511272 2.729306 -2.874657 -1.774233 1.757951 -0.366462 -0.575598 0.099831 0.221837 -2.613322 0.268022 -1.895624 -1.082908 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.140771 -0.508892 0.337549 -0.875234 -0.632071 0.408966 -0.159709 -0.637677 -0.107883 0.037758 0.407688 -0.002832 0.158109 0.853200 0.100057 -0.542854 0.074258 -0.237822 0.046625 0.144896 -0.039572 0.481888 -0.342791 -0.043320 0.081308 -0.293202 -0.060278 0.446361 -0.163891 -0.147209 -0.229990 -0.482504 -0.510315 0.993692 0.440341 0.242922 -0.018195 1.585103 -0.368735 0.992557 -0.657504 -0.763977 0.725773 -0.252953 -0.279457 -0.275172 -0.663456 0.329050 0.042571 -0.415489 0.473275 -0.247239 0.391668 -0.121377 0.070037 0.151883 -0.725536 -0.214130 0.405688 -0.468785 -0.409330 -0.316319 -0.082604 0.164695 -0.996314 -0.453709 0.427513 0.318544 0.045749 -0.279265 -0.133454 -0.972862 1.209455 0.540643 -0.186126 0.102350 0.345267 -0.862647 0.672472 0.376926 -1.217500 -0.314515 -0.390780 -1.068561 0.926544 -0.209608 1.037355 -1.361677 0.849432 -1.553445 0.305219 -0.592716 0.442571 1.032544 -0.736092 0.406161 0.757637 1.477052 0.301948 -0.170346 0.838082 0.407167 -0.299243 0.628899 0.992285 0.276831 -0.441220 -0.428537 -0.771622 -0.805418 0.384942 -0.837220 -1.453115 0.459879 -0.027924 -0.142014 -0.480210 0.350514 -0.108508 1.080351 -1.005262 0.440069 0.323069 -0.229741 0.036716 0.574389 -0.230501 -0.022251 -0.385534 0.744452 -0.828446 0.481308 -0.215927 0.673592 -0.410727 0.311755 -0.551353 0.232182 0.367096 -0.805959 -0.882119 -0.901986 -0.277776 0.787632 -0.393085 1.320437 1.651070 -0.983106 -0.864241 0.992262 0.546782 -0.148681 0.577742 0.317904 0.716590 -0.171765 -0.503907 -0.757113 -0.541590 -0.038583 -0.172254 0.270719 -0.060423 0.814038 -0.267987 -0.569196 2.471943 -0.300577 -0.723411 0.065560 0.259310 -0.592767 -0.743871 0.953322 -0.041968 0.714042 0.252863 1.204915 -0.178314 -0.174804 0.200031 -0.590550 -0.263695 -0.962148 -0.056974 -0.168844 0.522149 -0.427200 -0.547955 -0.301648 -0.508887 -0.423004 0.421327 0.370184 0.360000 0.495893 0.150769 0.548525 1.269694 0.324417 -0.354601 -0.616573 0.529271 0.630706 -0.332072 -0.286598 -0.334827 -0.303996 -0.118623 -0.130852 0.114484 0.754775 -0.888238 -0.136709 -0.210208 0.269294 0.178383 0.490548 -1.818366 0.233510 0.207655 0.492660 0.512799 0.624584 0.917513 1.096790 0.675195 0.233232 -0.075102 0.293196 -0.657365 -0.121034 0.203326 0.721219 0.478736 1.059639 0.761525 0.652223 0.761744 0.737062 0.904893 0.876326 0.067064 1.534386 0.244469 -0.334978 -0.055923 0.345359 0.914714 1.316451 0.047368 0.536695 0.414912 0.197320 -0.725984 -0.878871 0.425572 -0.171535 0.183972 0.156623 0.426679 0.223220 -0.496688 1.150003 -0.068252 -1.447439 0.421282 0.284741 0.716203 0.827276 0.135586 0.522882 0.227889 -0.421910 1.121431 0.867992 0.512182 -0.902200 0.156229 0.183338 0.427833 0.349152 0.832049 -0.607745 0.814781 0.045105 0.735031 -0.006901 0.515121 -0.682175 -0.008345 0.488917 -0.540878 0.002268 0.419278 0.360517 -0.399991 0.169213 -1.143941 -0.598605 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = 0.505319 0.255284 0.763404 -0.851220 -0.806075 -0.062873 0.622297 -0.871940 -0.466567 1.426788 0.185337 -0.689987 -1.050629 0.894525 -0.441134 -0.845382 -0.198926 -0.608721 -0.315153 -0.650238 -0.417602 0.490313 -0.263967 -0.626859 0.437684 -0.346851 0.310106 0.995202 0.114181 0.027815 0.262900 -0.582120 0.403594 1.694366 0.456511 0.074093 -0.443020 2.072088 -1.068436 1.320297 -1.853049 -1.828030 2.106979 -0.195892 0.028335 -1.642150 -0.171204 1.097888 -0.945468 -0.431844 -0.037214 0.018327 0.241349 -1.101519 -0.421949 1.138425 -2.019354 1.069695 0.548141 -1.185989 -1.289056 -0.282007 0.059761 0.325311 -0.652029 -1.091670 -0.063767 -0.007446 -0.750459 0.387708 -0.787838 -0.811422 1.253921 0.196243 -0.373148 0.343073 -0.247654 -0.267097 0.843862 -0.770642 -1.020319 -0.800010 0.302902 -0.405115 0.682298 0.705064 0.830270 -2.271706 0.156039 -2.053483 0.849016 -0.977680 0.860968 1.260950 -0.581865 1.412558 0.363910 -0.009570 0.380164 -0.220711 0.984201 0.414611 1.061056 0.732725 0.839930 1.081787 -0.953673 -1.379278 -1.145071 -0.920136 0.337406 -0.395853 -1.790985 0.539043 -0.734420 0.247270 0.112379 -0.144947 -0.327815 1.198332 -2.242636 0.050255 0.516080 -0.312404 0.831198 0.800572 -0.016630 0.239737 -0.155337 1.038079 -0.246721 0.654082 0.055234 1.173781 -0.187599 -1.234699 -1.021549 0.402502 0.543290 -0.890252 -1.332096 -1.874755 -0.518185 0.666670 -0.766683 1.034451 2.428920 -0.725236 -1.531560 1.184905 -0.176734 0.217390 0.886506 0.487860 1.824233 -0.842488 -0.242941 -0.255753 -0.278171 0.895399 1.605700 -0.221932 -1.118441 1.254723 -0.095051 -0.536628 0.552877 -0.235936 -0.431273 -0.292350 0.139311 -0.670965 -0.680027 1.244964 -0.694854 1.574132 -0.754858 1.954229 -0.890881 -0.967007 0.298799 -1.884614 -0.373966 -0.926927 -0.056217 -0.137293 0.820596 -1.429332 -0.905726 -0.654623 -0.435545 -0.513356 1.464263 -0.987898 0.012049 0.148630 -0.004436 1.501094 0.857472 -0.492370 -0.135682 -1.290447 0.508019 0.784534 0.556305 -2.114718 -0.474330 -0.344743 -0.511027 0.629657 0.032951 0.925760 -0.452178 0.150090 0.608618 -0.355705 -0.078357 -0.006973 -1.104245 0.461801 0.017476 0.587531 0.439618 1.771108 1.337683 1.038329 0.182731 0.790366 -0.108581 -0.614709 -0.539798 0.322086 0.450789 0.260638 0.822920 1.175377 0.785037 0.618748 1.271899 0.748427 -0.345080 1.428634 0.012717 1.788705 -1.293441 -0.204258 0.278872 0.304780 1.100489 1.513065 -0.264336 -0.841666 0.877499 -0.276207 -0.568574 -0.657379 -0.100133 -0.380771 -0.058723 1.311835 1.212151 -0.358925 -0.244384 2.217573 -0.201404 -2.413531 1.351451 0.606553 0.794738 0.462203 -0.392334 0.291283 1.048702 -0.195659 0.348451 1.000427 0.886066 -1.702547 -0.062677 0.140775 1.082390 0.960393 0.443820 -2.932199 -0.403756 0.561124 1.656088 0.030293 1.637833 -1.002679 -0.406200 0.413389 -0.071002 0.066165 0.214313 0.672813 -0.420488 0.366028 -1.326902 -0.099036 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 8.062508 -9.564861 8.722410 -21.032413 -16.030954 0.757824 -2.798056 -6.378106 -5.666686 13.000932 6.284271 -13.139234 -12.729322 19.924941 0.488374 -16.625611 6.086591 -10.193506 5.412349 -1.848371 -3.039884 8.352608 -0.536655 -8.067006 4.875631 -2.009304 -10.021137 13.437956 20.248366 -5.287416 -0.877636 -6.897938 -1.681519 23.623006 4.310198 -11.543479 -2.975184 39.741720 -9.430676 15.737448 -16.640510 -16.321849 30.424988 -6.003971 -2.899079 -15.681823 -11.979839 18.690963 -13.333024 -11.605734 5.756473 3.697764 9.974727 -15.344248 -12.783194 14.808274 -32.167798 12.328046 11.376458 -6.768644 -7.083057 0.147984 -4.224250 9.280347 -10.605746 -15.612908 2.501982 -4.641074 -10.972853 -8.153572 -9.404186 -7.966536 25.189367 8.183487 -3.288268 7.336156 6.989576 -11.159673 17.168486 -9.782004 -26.270486 -7.414151 -10.680375 -18.239899 24.332120 -3.339846 17.312659 -32.595924 15.385734 -37.140199 11.691531 -22.034336 7.967594 29.422978 -18.229171 16.567598 9.790996 11.687389 15.086820 -2.381121 24.436255 10.410768 5.686605 15.780288 17.186561 13.049526 -9.182948 -8.851182 -16.717503 -15.078644 0.050367 -11.406675 -30.472711 17.895659 -4.468317 -0.192063 3.966931 1.085159 -9.074115 18.413306 -18.491233 2.091883 5.379763 -5.891092 2.443874 18.887480 -6.855057 -3.884703 -7.788811 23.176675 -8.287827 14.485913 10.986189 19.920990 -2.992884 -14.368402 -12.293507 9.726770 7.404052 -17.994042 -21.529691 -28.337400 1.039189 -1.585000 -13.304760 25.921601 41.190760 -11.399831 -16.015266 24.603388 1.488772 4.515223 18.552360 2.866178 28.134642 -5.832452 -15.380462 -7.278055 -12.090894 4.619689 6.964474 4.057395 -5.432654 17.505385 -4.441132 -5.753619 19.026445 0.641702 -10.396476 -1.065476 2.698235 -15.370372 -22.474326 21.180133 -1.960604 15.866523 7.637100 32.822187 7.678995 -14.786159 14.184561 -7.195209 -4.013513 -12.644835 -2.825740 2.675461 2.263172 -14.476050 -14.446486 -13.633751 -1.057827 -13.941376 15.456644 4.071806 9.525459 15.033284 4.417586 15.093716 17.350058 -2.351644 1.427349 -24.702419 8.747554 12.785292 -5.958554 -20.269982 -7.574567 -5.565324 -0.857450 13.408889 -0.214157 19.645905 -16.432713 -9.023001 5.316154 6.483222 3.914212 6.568849 -30.854387 6.029302 7.620929 13.464171 15.023750 26.873472 17.888106 20.138616 5.357365 16.669898 -5.731936 8.958569 -9.734205 -6.725667 -1.722670 9.051864 12.817586 14.734800 15.062473 15.163333 23.065539 15.273315 -4.443411 22.334279 -1.929239 26.918616 -2.947928 -12.112566 4.798284 2.152674 23.401172 29.393605 -1.146722 -6.436121 15.282569 -2.642539 -10.028702 -19.275515 7.273991 -4.147246 6.781562 9.907406 10.571663 4.577436 -5.896082 20.542583 -3.144504 -40.343522 23.329542 9.489698 16.926495 16.740484 3.655586 9.339663 5.556827 -13.675067 13.627138 22.293593 10.070586 -21.665839 5.774606 7.505763 17.861211 2.744468 19.295638 -32.232511 2.880544 6.307822 12.915312 5.101489 14.473112 -16.625615 -16.022842 12.218202 -5.288955 -1.070123 -1.453153 3.289124 -16.254985 5.167335 -9.671046 -4.839954 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 1.652011 -2.617298 2.518279 -6.243788 -5.851440 1.232197 -2.556572 -3.395477 -0.823852 1.744606 2.808081 -2.152954 -1.446365 6.037965 0.021079 -4.153499 0.392848 -2.725166 1.786224 0.108887 -0.105223 2.925770 -1.523098 -0.339627 0.316890 -0.915556 -2.532453 2.509580 3.745929 -1.959368 -1.634576 -2.713113 -2.049702 6.203266 1.918726 -2.027860 -0.271798 11.176204 -1.723211 3.619718 -5.024701 -4.579900 5.572582 -2.030492 -1.008255 -3.858977 -4.136173 3.671736 -2.305701 -1.616948 2.998226 0.100534 2.629796 -1.812866 -1.189043 1.519210 -7.650467 2.767352 3.478840 -1.967225 -0.540455 -0.866745 -1.544398 1.986656 -3.451546 -3.180039 2.008716 0.943243 -1.397571 -2.423115 -1.232764 -4.029292 7.689069 3.081183 -1.359614 1.478777 3.040294 -4.780331 5.234682 -1.891659 -8.533876 -1.668542 -2.956440 -5.363817 6.818014 -1.405077 5.124251 -8.552377 5.037143 -10.833135 2.363923 -5.476812 1.957771 7.618733 -5.847359 2.835941 4.734997 5.332702 5.315653 -0.717604 6.405723 3.255498 -0.184923 4.763311 4.925823 2.772158 -1.629245 -0.957504 -4.443841 -5.347502 0.156618 -3.584903 -9.210521 4.312271 0.038412 -0.523060 -1.188989 1.017061 -1.061270 6.225998 -5.177274 0.440457 1.904031 -1.555440 -0.011008 5.198403 -2.215183 -0.663411 -3.184727 5.926604 -4.661666 4.076198 1.411174 4.855710 -1.455439 -2.859920 -5.751484 2.175625 2.052119 -5.584875 -5.652261 -6.365787 -0.073675 0.658013 -2.898971 7.833490 11.354518 -5.541896 -5.204973 7.469666 2.283566 -0.374835 5.889985 1.285326 6.457472 -0.282076 -4.623962 -4.068575 -4.655256 -0.677478 -1.040862 2.269079 -0.090871 4.528855 -0.540214 -2.754993 9.013811 -0.678652 -4.756491 0.059380 1.499319 -4.443150 -5.696148 5.299668 0.997720 3.972404 2.876352 8.425594 1.055414 -3.199266 3.153198 -1.917478 -0.569256 -3.170324 -0.743466 0.874856 1.756846 -3.245149 -3.498682 -2.823643 -2.085302 -3.883942 2.903632 3.214765 3.094421 5.007926 1.666723 3.398258 7.986752 1.243259 -0.083386 -5.494385 3.420684 3.652546 -2.308526 -4.436387 -1.965789 -2.210554 0.001440 2.166435 0.176248 5.702188 -4.640554 -2.420658 -0.434855 1.615314 2.159745 3.133355 -8.917202 1.675090 0.679471 4.310694 3.792725 5.085978 4.843370 7.253324 4.066532 3.342984 -1.307148 2.701841 -0.603366 -1.740990 0.792234 2.904276 3.378073 5.792482 5.109301 4.436119 5.875521 4.936795 1.701385 6.326282 -1.194881 9.144364 -0.677375 -2.386862 -0.420724 1.716351 6.780811 9.627237 -0.260479 1.154936 3.286502 0.681295 -3.180631 -6.295015 2.722685 -0.791512 1.529166 1.294079 3.373911 1.761054 -2.466805 5.771896 -0.586810 -9.593369 5.117199 2.091294 4.504724 4.249378 1.789018 1.622941 1.107014 -4.507801 5.664427 6.588569 3.338267 -5.923605 0.147886 1.883951 4.478900 0.436962 6.670437 -5.986573 3.155518 2.203424 3.271799 0.734377 2.987329 -5.316614 -4.424967 4.243923 -2.464527 -0.708721 1.523139 1.317695 -4.787534 1.718533 -2.511100 -3.751961 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = 0.041213 -0.119471 0.231822 -0.415817 -0.394029 -0.022075 0.036200 -0.145523 -0.080927 -0.110519 0.072275 -0.118057 -0.232267 0.507141 -0.075402 -0.456182 -0.094284 -0.148715 -0.106698 -0.003102 -0.073745 0.295750 -0.097277 -0.002998 0.210661 -0.122151 -0.103792 0.263165 0.151825 -0.297331 -0.004621 -0.207838 -0.044558 0.527690 0.007379 0.189987 -0.000204 0.924219 0.077964 0.457587 -0.462493 -0.474206 0.480135 -0.171611 -0.086381 -0.464780 -0.329657 0.280658 -0.328055 -0.031050 0.175063 0.108727 -0.108187 -0.246494 0.147212 0.214589 -0.692702 0.360330 0.216519 -0.186407 -0.171899 -0.152084 -0.264442 -0.160891 -0.136980 -0.290370 0.019190 0.160208 -0.278831 0.056810 0.025237 -0.269381 0.865372 0.198937 -0.116005 0.287446 0.235245 -0.187492 0.349697 -0.311556 -0.516623 -0.215315 0.102872 -0.087531 0.506782 0.039048 0.248997 -0.749243 0.207012 -0.714601 0.245611 -0.511524 0.217090 0.591865 -0.427193 0.462882 0.287668 0.121322 0.189932 0.144813 0.493366 0.160373 0.085398 0.350170 0.291614 0.069814 -0.153920 -0.274109 -0.344894 -0.446032 0.032040 -0.193891 -0.827810 0.182845 0.027259 0.248061 -0.059383 0.228584 0.052244 0.201217 -0.604186 0.117390 0.297901 -0.142097 0.103133 0.342532 -0.141422 -0.105029 -0.325500 0.436254 -0.304764 0.322019 -0.077155 0.341905 0.035949 -0.371273 -0.458744 -0.091932 0.038245 -0.296736 -0.463710 -0.404692 -0.125247 0.278036 -0.259350 0.468475 0.953555 -0.399796 -0.463191 0.622677 0.305484 0.272071 0.304132 0.202085 0.438504 -0.051580 -0.288869 -0.218065 -0.244097 0.136972 -0.248509 0.169283 -0.251795 0.336657 0.030040 -0.435839 0.781044 -0.209429 -0.272265 -0.010546 0.046810 -0.383045 -0.387304 0.553327 0.213538 0.630414 0.002329 0.689689 -0.145681 -0.355608 0.124822 -0.286808 -0.003857 -0.397912 -0.006543 -0.035049 0.149014 -0.459499 -0.332005 -0.100769 -0.259529 -0.264961 0.208637 0.179623 0.094980 0.121375 0.186409 0.306440 0.566081 -0.006822 0.010931 -0.573248 0.244268 0.172785 -0.027869 -0.494442 0.067596 0.018951 -0.116409 0.181831 0.031430 0.151503 -0.114915 -0.085163 -0.016722 -0.069080 0.090894 0.095332 -0.370866 -0.032361 0.035967 0.249175 0.225369 0.335179 0.711559 0.383791 0.234057 0.256657 -0.021971 0.028965 0.022319 -0.032632 0.016851 0.300473 0.264268 0.406324 0.459984 0.169106 0.464493 0.419794 0.083606 0.502248 0.170513 0.897771 -0.136318 -0.274311 0.008315 0.150079 0.501969 0.695240 -0.228502 0.190903 0.359145 0.246822 -0.104590 -0.465388 0.041456 -0.111488 -0.154484 0.406043 0.095822 -0.111596 -0.009855 0.581539 -0.127880 -0.697760 0.337250 0.157426 0.336153 0.022315 0.150480 0.002575 0.389616 -0.384926 0.238131 0.293713 0.321218 -0.491193 -0.128313 0.050504 0.301125 0.123502 0.474283 -0.344618 0.101134 0.222201 0.421028 -0.004563 0.102413 -0.216326 -0.365721 0.204452 -0.150266 -0.139282 0.204402 0.048476 -0.206302 0.000295 -0.308141 -0.464843 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.162055 0.137428 0.452970 -0.639949 -0.688425 -0.074064 0.222833 -0.210352 -0.154961 0.069523 0.188469 -0.093572 -0.292199 0.560626 -0.169475 -0.516267 -0.226014 -0.727912 -0.297606 -0.264449 -0.135842 0.421872 -0.137085 0.003764 0.312682 -0.181993 -0.176733 0.405169 0.043548 -0.671267 0.116379 -0.258925 -0.009298 0.732104 -0.038577 -0.057597 -0.007818 1.296075 -0.071730 0.021909 -0.617648 -0.770560 0.781210 -0.294087 -0.179203 -0.723780 -0.347089 0.490103 -0.086553 0.015921 0.215928 0.226418 -0.148337 -0.419125 0.049834 0.305314 -1.055376 0.542752 0.351712 -0.382238 -0.457412 -0.149581 -0.169091 -0.197293 0.005034 -0.458165 0.206196 0.120974 -0.292873 0.050892 0.102733 -0.417802 1.033701 0.190625 0.124886 0.454870 0.245680 -0.331852 0.624474 -0.372841 -0.687962 -0.306971 0.222535 -0.304059 0.647337 -0.108055 0.207000 -1.041841 0.237714 -0.959491 0.224881 -0.615606 0.237823 0.680841 -0.457782 0.684088 0.371980 0.069431 0.260631 -0.006667 0.763247 0.067956 0.451012 0.664257 0.323959 0.152446 -0.260975 -0.270856 -0.664096 -0.733709 0.151031 -0.186175 -0.972542 0.438485 0.087493 -0.254912 -0.008739 0.059862 0.133738 0.663114 -0.699905 0.150753 0.531708 -0.185661 -0.053332 0.535334 -0.200986 -0.183594 -0.432051 0.561445 -0.436789 0.615374 0.020377 0.491936 0.225009 -0.694143 -0.642278 -0.083118 0.040462 -0.494911 -0.559107 -0.462879 -0.040719 0.115196 -0.461304 0.651883 1.421905 -0.629386 -0.828671 0.897626 0.738873 0.213614 0.359851 0.245728 0.740462 -0.065101 -0.533218 -0.308188 -0.414042 0.345220 -0.391427 0.248068 -0.188731 0.501169 0.189854 -0.415320 1.105508 -0.292386 -0.380390 0.585474 0.257928 -0.533276 -0.677857 0.584147 1.039480 0.964911 0.360695 0.991009 -0.226302 -0.504736 0.169270 -0.119107 0.034738 -0.542678 -0.050064 0.005915 0.164908 -0.294514 -0.401902 -0.319577 -0.431960 -0.435633 0.291174 0.217437 0.418221 0.184593 0.233190 -0.050029 0.928965 -0.033938 0.054514 -0.896042 0.357770 0.329549 0.208046 -0.734202 -0.078218 0.025195 -0.145390 0.420797 -0.016118 0.429966 0.015584 -0.036836 0.161392 -0.044006 -0.054973 0.095151 -0.592501 -0.028562 -0.175551 0.432949 0.116004 0.550211 1.034255 0.600218 0.349313 0.384803 -0.038928 0.065826 0.067193 -0.259753 -0.114818 0.551051 0.489038 0.612542 0.697879 0.376179 0.796449 0.554914 -0.019115 0.793500 0.012101 1.381389 -0.492972 -0.344132 -0.132029 0.360306 0.728282 0.968492 0.008718 -0.015464 0.487325 0.424146 -0.228036 -0.760627 0.093641 -0.163717 0.129210 0.459450 0.399501 -0.259195 0.017616 0.838813 -0.178012 -1.029936 0.560901 0.207385 0.526927 -0.042085 0.205381 -0.003822 0.585224 -0.520144 0.229146 0.522806 0.492182 -0.824353 -0.141510 0.165280 0.704775 -0.370146 0.732738 -0.932470 0.224809 0.266484 0.419387 -0.132018 0.336919 -0.467874 -0.575726 0.457613 -0.042474 -0.161760 0.649612 0.174084 -0.663528 0.180488 -0.442960 -0.375490 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.293734 0.008888 0.301888 -0.291274 -0.252095 -0.227809 0.533486 0.147420 -0.002968 -0.570169 0.216138 -0.254656 -0.546984 0.269480 0.180404 -0.441203 0.015513 -0.031860 -0.324195 0.001487 0.007968 0.122769 0.054318 -0.008048 0.275287 -0.021348 -0.130509 0.647734 0.407214 -0.323967 0.105788 0.022347 0.196666 0.368086 -0.248495 0.199356 0.090053 0.686319 -0.269136 0.396847 -0.133906 -0.099715 0.626899 -0.094841 -0.440298 -0.674191 -0.524177 0.292631 -0.684651 -0.189303 0.226708 0.305235 -0.051906 -0.361680 0.182494 0.669714 -0.726621 0.213010 0.166674 -0.143322 -0.082227 0.017570 -0.422326 -0.278195 -0.000401 -0.241244 -0.083652 -0.360949 -0.187195 0.066838 0.097685 -0.192794 1.070829 0.000929 0.028250 0.443184 0.288438 -0.175421 0.347896 0.128133 -0.175691 -0.175640 0.173867 0.120690 0.517535 -0.257704 -0.149558 -0.506575 -0.518770 -0.350418 0.301853 -0.652645 0.070421 0.389868 -0.416706 0.533087 0.025118 -0.542617 -0.261087 0.129577 0.376835 -0.043177 0.431772 0.194436 0.279903 -0.070050 -0.268012 -0.457750 -0.516022 -0.387920 0.137594 -0.201880 -0.814176 0.063638 0.006112 0.007809 0.284483 -0.019817 0.197496 0.197535 0.246900 0.833285 0.437903 -0.111473 -0.094618 0.632580 -0.103218 -0.253232 -0.218527 0.368192 -0.055938 0.516452 -0.056137 0.184308 0.425201 -0.686650 0.001595 -0.213218 -0.116810 -0.030632 -0.280833 -0.151969 0.044566 0.089946 -0.156527 -0.254496 0.753000 -0.122587 -0.351329 0.465203 0.701845 0.546965 -0.125908 0.152726 0.553530 -0.127292 -0.206834 -0.277797 -0.223927 0.306488 0.229207 0.117731 -0.329897 0.231779 0.065956 -0.911348 0.947139 -0.244682 -0.013649 0.665462 -0.005869 -0.334383 -0.615054 0.639333 0.815953 0.713871 0.028669 0.540808 -0.063150 -0.484093 0.155495 0.479920 0.090168 -0.612684 -0.221446 0.278131 -0.089340 -0.181069 -0.268179 -0.422516 -0.020463 -0.128558 0.145854 -0.022003 0.053051 -0.118546 0.195586 -0.412229 0.295459 -0.156842 0.057170 -0.712082 0.129097 -0.007798 0.083577 -0.566525 0.303528 0.120225 -0.085349 0.195270 -0.032833 0.051372 0.093417 -0.109400 0.192236 -0.281402 -0.234109 -0.131021 -0.642217 -0.129146 0.162569 0.034717 0.218843 0.255839 0.906891 0.059384 0.030363 0.384036 0.019077 0.190177 -0.403790 -0.108476 -0.338540 0.404678 0.200909 0.165412 0.284254 -0.025157 0.393457 0.272049 -0.010514 0.339849 0.585132 0.619952 0.416624 -0.444541 0.207050 0.041756 0.348632 0.396799 0.133229 0.010053 0.364163 0.535130 -0.034959 -0.663790 -0.214430 -0.123908 -0.250484 0.989745 -0.224201 -0.329110 0.215936 0.423344 -0.130515 -0.584143 0.073575 0.079946 0.212792 -0.179238 0.092520 -0.007936 0.496994 -0.336445 0.076804 -0.031879 0.267662 -0.382668 -0.158408 0.026153 0.087604 0.121080 0.301937 -0.764779 -0.333518 -0.033229 0.392058 0.008253 0.314215 -0.050043 -0.175753 0.046142 -0.017272 -0.127913 -0.059406 -0.122998 -0.365793 -0.127447 -0.547093 -0.245038 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.184567 -0.645030 1.165642 -3.173515 -3.303817 0.529142 0.643304 -3.121692 -1.054819 2.856414 1.112803 -1.458449 -0.591115 3.339163 -0.190038 -1.886981 0.463399 -2.793533 0.078232 -0.854351 -0.894144 2.205278 -1.275992 -0.627542 0.502433 -0.641962 -0.482994 1.731977 -0.050768 -0.955445 -0.866231 -2.157474 -0.392413 4.868544 2.081064 -0.909891 -1.111861 7.307984 -1.839421 3.244878 -4.693756 -3.565600 4.015323 -1.238731 -0.350970 -3.570710 -1.792713 2.693906 0.561800 -1.323866 1.079751 -0.425149 0.974964 -1.448902 -0.710171 2.207728 -4.150513 1.877268 2.115248 -2.339953 -2.187429 -1.540740 -0.225697 1.297628 -3.603214 -2.929654 1.482074 0.610384 -0.912560 0.296979 -2.131172 -3.835804 3.318066 2.056986 -1.581358 0.063521 -0.044744 -3.043195 2.913268 -0.727028 -4.658437 -1.565332 -0.780487 -2.359117 2.937353 -0.122416 3.559747 -6.899825 2.416165 -7.406846 1.296022 -3.408965 2.543315 4.670804 -2.624582 2.315963 1.716759 3.405219 2.752289 -1.114722 3.597685 1.828009 1.012282 2.171270 3.392563 2.756634 -1.199936 -2.034320 -2.256488 -2.870967 1.198217 -1.441545 -5.285244 2.614243 -1.413953 -0.771381 -1.233766 0.995652 -0.961942 4.571802 -4.981216 -1.450866 1.627045 -1.215882 1.801302 3.154800 -1.397186 0.723600 -2.393493 3.434805 -1.353749 2.930459 -0.716598 3.337541 -2.264718 -2.451550 -4.136254 0.987822 2.230702 -3.966961 -4.631129 -5.135524 -0.988837 0.971887 -2.672013 4.948928 7.473606 -3.936380 -3.739258 4.590378 1.263727 -0.646808 3.100929 0.621739 5.065332 -1.827354 -0.969152 -1.508211 -1.413689 0.162369 2.043580 0.195174 -1.728346 2.735334 -0.857054 -2.451184 5.544143 -0.234701 -2.857254 0.281412 0.328640 -1.133251 -3.146401 4.067953 -1.130876 3.160349 -0.331989 5.109441 -1.149569 -1.785868 1.727307 -2.810288 -0.807132 -2.462967 0.073825 -0.104156 3.031271 -2.768937 -2.467057 -0.752361 -2.416520 -2.182192 2.691028 0.399071 0.754157 1.783398 1.096776 3.643211 5.032742 0.201632 -0.137414 -3.441960 2.549087 3.063025 0.194700 -3.414647 -1.857996 -1.650079 -1.230849 -0.112213 0.282401 3.162291 -2.801249 -0.774606 0.635155 0.485446 1.073943 1.801970 -5.435448 1.956467 -0.146275 2.163868 1.262904 4.227152 2.961477 4.199949 2.536537 0.274204 -0.557893 -0.305892 -1.920349 0.459322 1.270921 1.147356 2.398484 3.762593 3.198674 2.135670 3.984200 1.855673 1.315849 4.218909 -0.099306 6.475920 -2.144290 -0.465266 -0.012340 0.224572 4.203165 6.594196 0.265761 -1.033958 2.233699 -0.556015 -3.066888 -3.091085 0.556807 -0.787397 0.462163 0.940025 2.265991 -0.308685 -1.661088 5.967469 -0.749300 -6.963363 3.278856 1.700737 2.541278 3.091791 0.020840 1.775466 1.859882 -1.743371 3.308499 4.109918 2.758844 -3.696004 -1.102068 0.414361 2.374340 1.393477 2.739581 -5.761065 1.797524 2.185215 4.263536 0.504234 2.893134 -3.435694 -0.828779 2.348173 -0.901528 -0.031595 1.684137 2.607005 -2.676999 1.110847 -3.597031 -1.051249 +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.162991 -0.098917 0.171901 -0.747262 -0.849928 0.097143 -0.153624 -0.421603 -0.170257 0.023206 0.283110 -0.302784 -0.299096 0.984482 -0.172888 -0.662572 -0.123211 -0.293758 -0.030160 0.167446 -0.115147 0.560046 -0.247728 0.036516 0.172806 -0.023955 -0.281448 0.230967 0.432291 -0.420828 -0.331945 -0.358598 -0.149769 0.827597 0.234021 0.033940 0.032190 1.458560 -0.089843 0.739333 -0.865156 -0.609702 0.589933 -0.210694 -0.050516 -0.861539 -0.607332 0.476668 -0.430979 -0.080708 0.466776 -0.010769 -0.043777 -0.154809 0.285591 0.316896 -1.064931 0.758774 0.468686 -0.084451 0.018842 -0.266716 -0.319212 -0.061747 -0.262836 -0.472874 0.024780 0.311899 -0.325537 -0.132143 -0.154360 -0.591025 1.233140 0.362539 -0.426611 0.218553 0.214300 -0.561557 0.553551 -0.794769 -0.999509 -0.162013 0.029667 -0.040346 0.779028 0.091273 0.443774 -1.223980 0.357690 -1.333642 0.305103 -0.747556 0.355482 1.006254 -0.725857 0.360493 0.469516 0.191235 0.759541 0.300324 0.761401 0.341406 0.030694 0.429140 0.392708 0.335878 -0.182380 -0.236769 -0.400530 -0.758543 -0.046770 -0.107438 -1.344941 0.370030 0.014992 0.427413 -0.198126 0.275154 0.031638 0.350911 -0.854772 -0.186064 0.262383 -0.203248 0.339343 0.739290 -0.243851 0.012079 -0.610151 0.698235 -0.465267 0.554808 -0.168508 0.556539 -0.227709 -0.803565 -0.982732 0.071642 0.232222 -0.586538 -0.769034 -0.869686 -0.065899 0.127461 -0.475799 0.732608 1.467985 -0.810606 -0.730914 1.083675 0.381016 0.225572 0.698317 0.128059 0.843560 -0.112908 -0.354086 -0.260575 -0.504848 -0.181413 -0.245523 0.265674 -0.359907 0.354414 -0.070499 -0.935950 0.912849 -0.035910 -0.635768 -0.208968 0.063967 -0.514622 -0.576092 0.857871 0.001430 0.672471 0.025630 1.056123 -0.195970 -0.538239 0.340370 -0.396005 0.012465 -0.465592 -0.145532 0.144803 0.333424 -0.717752 -0.392579 -0.039559 -0.294561 -0.621941 0.287521 0.268940 0.096197 0.383132 0.334692 0.588691 1.053595 0.080875 0.160700 -0.738222 0.475064 0.336577 -0.239993 -0.931275 -0.023423 -0.246117 -0.152049 0.332717 -0.035772 0.307036 -0.281576 -0.280338 -0.042134 -0.110221 0.479641 0.366561 -0.422234 0.111565 -0.136986 0.471167 0.385326 0.571047 0.753864 0.884428 0.582646 0.314128 -0.051436 0.094544 0.211167 -0.022617 0.191632 0.224568 0.490857 0.661824 0.734834 0.311511 0.680170 0.549458 0.126704 0.827313 0.134247 1.376028 -0.197946 -0.314023 -0.057466 0.107688 0.806200 1.296634 -0.491217 0.244996 0.440812 0.159296 -0.208656 -0.598428 0.250401 -0.192164 -0.375239 0.440998 0.194924 0.059540 -0.210360 0.935964 -0.287394 -1.076473 0.617271 0.214083 0.569851 0.190296 0.281138 0.059560 0.371649 -0.690142 0.583408 0.737547 0.586867 -0.615412 -0.412806 0.051634 0.430851 0.330351 0.760678 -0.580550 0.285209 0.549357 0.715430 0.072672 0.151958 -0.467265 -0.617479 0.411421 -0.201685 -0.149343 0.091431 0.205264 -0.327749 0.022843 -0.280928 -0.726324 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 2.512791 -0.901712 1.543468 -4.311055 -4.516006 0.775138 1.243450 -3.698954 -1.145843 3.453194 1.449740 -1.602429 -1.174518 4.725145 -0.182413 -2.211425 0.584006 -4.165897 0.143425 -0.413419 -1.005182 3.093526 -1.694131 -0.496070 0.766637 -0.488286 -0.646641 2.647664 0.435331 -1.374375 -1.250083 -2.705097 -0.963867 5.925582 2.534828 -1.116619 -1.042563 10.150367 -3.844733 4.748394 -6.111552 -4.729194 5.334326 -1.503618 -1.235994 -5.351361 -2.542422 3.390386 0.347134 -1.932689 1.830887 -0.522659 1.282067 -1.611912 -0.607041 3.052398 -5.979911 2.206930 2.711091 -2.337941 -2.458205 -2.068827 -0.160812 1.527809 -5.195683 -3.538468 1.891486 -0.190284 -1.303592 -0.050635 -2.515679 -4.507961 4.534687 2.621389 -1.980339 0.139383 0.103489 -4.606389 3.774627 -1.303653 -6.352491 -1.702728 -1.375558 -3.694975 4.114915 -0.526282 4.359956 -8.884258 3.045971 -9.509885 1.289228 -4.794407 2.869389 6.072080 -3.494165 3.113895 2.112701 4.711847 3.718543 -1.624876 4.518938 2.674170 1.564324 2.882035 4.409363 3.823925 -1.919790 -2.503059 -3.558008 -3.719401 1.492716 -2.098977 -7.847533 3.131263 -1.425407 -1.330344 -1.313639 1.058240 -1.472648 6.159765 -6.121720 -0.525631 1.664128 -1.383599 1.847956 4.656038 -1.674910 0.633838 -2.840623 4.416190 -1.913502 4.456764 -0.880901 4.060282 -3.136198 -2.855088 -4.829476 1.117172 2.592975 -4.660218 -5.641752 -7.167225 -1.144689 1.141861 -3.179153 5.994076 10.128082 -5.234132 -5.088152 5.973599 1.614456 -0.404335 3.753633 0.553969 6.283221 -1.855124 -1.627906 -2.059466 -2.030856 -0.235215 3.335034 0.575131 -1.905181 3.201065 -1.421106 -4.239824 7.764234 0.057953 -3.646959 0.151522 0.433378 -2.091601 -4.742583 5.790532 -1.870298 4.187192 -0.333263 6.343158 -1.105859 -1.920180 2.247705 -3.869450 -0.618497 -4.429902 -0.519504 -0.005619 3.576928 -3.336115 -2.892502 -1.660572 -2.559386 -3.026668 3.221288 -0.619990 1.066177 2.236347 1.682199 4.353222 6.719694 0.154592 -0.182203 -4.645216 3.223441 3.801904 -0.055332 -5.102932 -2.142971 -2.084991 -1.550018 0.344265 0.202808 3.818539 -3.769326 -1.167730 0.898493 0.873289 1.324328 2.446552 -8.446722 2.268489 -0.135556 2.996478 2.024875 5.056993 3.838241 5.666312 3.195515 0.913171 -0.664322 0.103423 -2.786971 0.261927 1.730990 1.285122 3.023460 5.309958 4.295320 2.747965 4.693450 2.894345 1.387366 5.272927 0.511551 8.861165 -2.315273 -1.513757 0.056844 0.639155 4.993206 8.305413 0.709394 -0.776546 2.792556 -0.425957 -3.946398 -4.096047 0.921368 -1.278997 0.852915 1.774821 2.660336 -0.275419 -1.776574 7.443705 -1.220987 -9.505082 3.780251 1.950008 3.502261 3.789505 0.357768 2.270397 2.475951 -2.713445 5.086046 5.518748 3.164586 -4.257599 -1.367426 0.644689 3.013864 2.291266 3.563348 -8.316397 2.473788 2.251612 5.361984 0.811970 4.552688 -4.242046 -1.127171 2.956624 -1.371588 0.032364 1.879510 3.387103 -3.049616 1.269562 -5.517556 -1.611976 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = 0.157416 0.149792 0.292924 -0.106877 0.050928 -0.001839 0.387327 -0.286591 -0.188772 0.294574 0.169053 -0.330711 -0.054113 0.108114 -0.057935 -0.082212 0.317393 0.264855 -0.173825 -0.272603 -0.243867 -0.151214 -0.078554 -0.441643 0.161731 -0.079765 0.315240 0.168070 -0.309102 0.042593 -0.011930 -0.108786 0.382883 0.704311 0.185198 0.065487 -0.356100 0.461599 0.230686 0.493890 -0.558753 -0.240059 0.700150 -0.084141 0.114187 -0.554300 -0.078738 0.442759 0.105343 -0.426829 -0.306117 -0.184879 0.084097 -0.644301 -0.493954 0.609812 -0.305039 0.071629 0.326923 -0.559907 -0.700223 -0.073603 0.357663 -0.011632 -0.184366 -0.275946 -0.008404 -0.005890 -0.163930 0.274426 -0.610127 -0.573389 0.306375 0.034586 -0.083715 0.104698 -0.393009 0.023354 0.098412 0.281967 -0.155127 -0.415981 0.263548 0.046236 0.068794 0.228123 0.331720 -0.837034 -0.094036 -0.766604 0.376560 -0.298550 0.563942 0.407568 -0.050203 0.437167 0.041148 -0.258180 -0.356364 0.232848 0.314251 -0.155707 0.164301 -0.134751 0.442317 0.282664 -0.245077 -0.667652 -0.070651 -0.243578 0.234448 0.225059 -0.086603 0.193639 -0.765616 0.159274 -0.116669 0.197753 -0.026321 0.094287 -0.331511 -0.237138 0.371740 -0.219033 0.589532 0.360366 0.104606 0.246143 -0.111752 0.210963 0.088361 -0.039685 -0.155952 0.431512 0.128344 -0.650450 -0.188771 0.015002 0.297788 -0.322784 -0.635475 -0.633887 -0.264460 0.221613 -0.335257 0.068732 0.666189 -0.141041 -0.310821 0.166504 0.241014 0.198294 0.342145 0.257999 0.983015 -0.740757 0.386116 0.178823 0.251839 0.489200 0.349727 -0.500283 -0.431972 0.487868 -0.134752 -0.259734 0.703518 -0.154851 0.109439 0.664759 0.014264 0.098275 -0.449698 0.385767 0.317327 0.437895 -0.244092 0.826750 -0.529819 -0.320695 0.085508 -0.034438 -0.233182 -0.044871 0.208473 -0.223125 0.635899 -0.358168 -0.514552 0.194608 -0.205468 0.135841 0.593731 -0.048302 -0.153572 -0.102877 -0.414721 0.051653 -0.076263 -0.371576 -0.027548 -0.429778 -0.100780 0.296384 0.398552 -0.389675 -0.199263 -0.317214 -0.242802 -0.141328 0.113606 0.324602 -0.165401 0.029742 0.446820 -0.266893 -0.060401 -0.242403 -0.170591 0.211975 -0.049310 -0.152552 -0.056207 0.870138 0.448035 0.296421 -0.197331 -0.024683 -0.032406 -0.300424 -0.547841 0.011508 -0.100781 0.452655 0.243480 -0.231604 0.147426 0.190780 0.251616 -0.488998 0.097607 0.455694 0.210042 0.398912 -0.333361 0.178144 0.320124 -0.311325 0.499426 0.427352 0.108697 -0.691403 0.230256 -0.279160 -0.315346 -0.501929 -0.225461 0.096043 -0.323898 0.405305 0.527486 -0.074445 -0.303402 0.966854 -0.065143 -0.881183 0.580658 0.132046 0.146214 0.417950 -0.273057 0.367184 0.462042 0.451808 -0.192253 0.182063 0.599990 -0.672561 0.025277 -0.078024 0.379013 0.084605 -0.188981 -1.027184 -0.066571 0.131507 0.474832 0.054269 0.431384 -0.346023 0.346652 -0.123170 0.011757 0.015293 -0.018772 0.430055 0.197140 -0.287399 -0.728784 0.469391 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.186235 -1.238544 1.702468 -4.755226 -4.781883 1.052440 0.125629 -3.768325 -1.285299 3.640354 1.337613 -1.428524 -1.181743 4.952954 -0.451745 -2.876516 0.014112 -3.979918 0.372083 -0.482616 -1.174528 3.453673 -1.934434 -0.067872 0.846129 -0.821294 -0.837301 2.211454 0.686509 -1.609473 -1.097899 -3.002876 -1.588710 6.153208 2.710303 -0.941066 -0.719507 10.231796 -2.511558 4.536585 -5.580351 -5.063800 4.744160 -1.525740 -0.603243 -3.797880 -2.135005 3.412559 -0.770693 -1.245184 2.388076 -0.510657 1.301000 -1.238588 -0.062573 1.849427 -6.082932 2.651134 2.766683 -2.169581 -2.244120 -2.164660 -0.580436 1.442744 -4.480756 -3.461484 1.804397 0.864063 -1.405594 -0.540148 -1.871316 -4.318807 4.549605 2.910368 -2.087096 0.360403 0.690239 -4.118483 3.918526 -2.123230 -6.947519 -1.744777 -1.435987 -4.332755 4.735926 -0.159866 4.513147 -8.596822 3.945980 -9.524104 1.292801 -4.166500 2.800739 6.710524 -3.756507 3.038010 2.789139 5.045184 3.861316 -1.715219 4.789611 2.490381 0.599108 3.758055 4.045101 3.353206 -2.076194 -2.073545 -3.644228 -4.077308 1.120933 -2.497028 -6.979068 3.194096 -0.747793 -0.384249 -1.518850 1.460834 -1.774165 5.432615 -6.960665 -1.289847 1.389691 -1.447370 1.912768 4.017372 -1.692382 0.593618 -2.821851 4.780944 -2.861647 3.953649 -0.947855 4.328050 -2.534628 -1.520174 -5.436936 1.310845 2.659323 -4.643273 -5.715373 -6.664006 -1.417780 1.105175 -3.198117 7.489630 10.031674 -5.405991 -4.996862 6.670636 0.611981 -0.289489 4.108135 0.846322 5.115819 -1.183993 -2.477032 -2.609127 -2.745656 -0.522989 1.901594 1.237870 -1.615515 3.604438 -1.103590 -1.740291 6.592808 0.022834 -4.359079 -1.728662 0.811948 -2.720752 -4.089975 5.434684 -2.273390 3.912288 0.346945 6.809067 -1.023688 -2.231039 2.165374 -4.300632 -0.523116 -4.023354 -0.578973 -0.015195 3.031803 -3.741523 -3.007203 -1.449267 -2.273354 -3.591226 2.677173 0.963823 1.298078 2.739247 2.092121 5.463779 7.211523 0.664539 -0.391503 -4.402133 3.436535 3.472310 -0.636032 -4.172110 -2.000276 -1.694953 -1.546637 1.103571 0.218764 3.772242 -4.008660 -1.067613 0.193682 1.063624 1.758551 3.057747 -8.233033 2.256169 0.014524 2.992747 2.735575 4.565117 3.959463 5.870250 3.797907 1.334928 -0.944887 0.444389 -1.581819 0.043924 1.895126 1.707079 3.225595 5.446993 4.881933 3.015951 4.789524 3.778921 1.321673 5.475399 -0.541028 8.865186 -2.165450 -1.257594 -0.332170 1.322485 5.125135 8.160448 -0.642505 0.209589 3.125312 -0.170731 -3.344172 -4.041166 1.639494 -1.536555 1.447385 0.748014 2.618034 -0.113379 -1.836518 7.032873 -1.456107 -8.723429 3.940178 2.125850 3.937744 3.445217 0.888044 1.801043 2.097322 -3.690007 5.467338 5.693259 3.075551 -4.420365 -0.602161 0.761087 3.149858 1.885395 4.520239 -6.349337 2.354340 2.193699 4.825522 0.894949 3.576976 -4.053244 -2.114174 3.438218 -2.033454 -0.172003 2.174580 2.943333 -2.907961 1.835845 -4.097332 -2.811298 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.390411 -0.026616 1.102660 -2.025827 -2.299178 -0.121272 0.849525 -1.103674 -0.436281 1.121048 0.739503 -0.941300 -0.750484 2.548065 -0.416977 -1.194481 -0.207038 -1.413813 -0.314694 -0.292688 -0.212550 1.646464 -0.538731 0.004782 0.632191 -0.327959 -0.435766 1.426045 0.373828 -0.815972 -0.075475 -1.022165 -0.075209 2.374525 0.455590 -0.225837 -0.325399 4.156669 -1.826380 2.158327 -2.488509 -2.036124 2.343569 -0.548347 -0.353090 -2.862637 -1.752839 1.428608 -0.434840 -0.640913 0.895809 0.301457 0.303340 -0.872648 0.358700 1.201834 -2.925042 1.201884 1.176180 -1.173646 -0.826787 -0.586096 -0.641569 0.197964 -1.674207 -1.428887 0.259614 0.067292 -0.523027 0.009961 -0.279940 -1.625362 2.492569 0.735353 -0.719979 0.727965 0.562128 -1.922036 1.867484 -1.237899 -2.483158 -0.743315 -0.095396 -1.126783 1.792079 -0.146618 1.508111 -3.493794 0.687208 -3.506654 0.863224 -2.201765 0.852681 2.649631 -1.570482 1.657590 0.990258 1.055206 1.608064 0.014155 1.971455 1.243403 1.167469 1.532163 1.514859 1.556907 -1.068268 -1.272855 -1.964724 -1.993946 0.579039 -0.936975 -3.437507 1.087335 0.144137 -0.462265 -0.216267 0.094077 -0.086243 2.622485 -2.220890 0.551614 1.280942 -0.563937 0.073452 2.008018 -0.606214 -0.159515 -1.392216 1.898453 -1.121640 2.094682 -0.105443 1.655923 -1.074838 -1.826183 -1.761436 0.201554 0.343155 -1.614154 -2.024209 -2.775433 -0.299414 0.592967 -1.308691 1.759109 4.259156 -2.050214 -2.423775 2.750442 1.656031 -0.027360 1.086270 0.455959 2.463629 -0.430723 -1.224091 -1.266890 -1.317024 0.327166 1.739397 0.669928 -1.043477 1.448620 -0.362489 -2.979272 3.348541 -0.379401 -1.445227 0.031231 0.482428 -1.389723 -1.700558 2.485847 -0.081431 2.311011 -0.507341 2.833395 -0.514868 -1.330573 0.760580 -1.561571 -0.031410 -2.057325 -0.183670 0.499985 1.134219 -1.447923 -1.210032 -0.944950 -1.175547 -1.418079 1.027715 -0.966215 0.534923 0.784080 0.880538 1.443992 2.658212 0.058099 0.132096 -2.166448 1.311415 1.127220 0.141248 -2.996927 -0.311001 -0.552109 -0.594292 0.203439 -0.029083 1.264178 -1.055868 -0.377311 0.299148 -0.481222 0.109817 0.613847 -2.901633 0.595269 -0.361547 1.716387 0.797512 1.773351 2.506705 2.165802 1.299832 1.075866 -0.328233 -0.085488 -0.708026 0.348797 0.569404 0.182718 1.355713 2.470259 1.981193 1.010123 2.199716 1.573267 0.322938 2.277321 0.177960 3.710569 -0.634683 -0.875201 0.006447 0.756505 2.098435 3.384524 0.557380 -0.139879 1.364406 0.331548 -1.221701 -1.688509 0.347131 -0.553616 -0.055056 1.665437 0.996899 -0.561486 -0.192502 2.737794 -0.585529 -3.530400 1.459428 0.706657 1.596943 0.726717 0.426109 0.557051 1.442566 -1.287276 1.853466 1.937807 1.370592 -2.083228 -1.196162 0.289088 1.238376 1.499513 2.026490 -3.881341 0.620410 0.966203 2.002770 -0.357697 2.101467 -1.576311 -1.022629 1.323879 -0.404514 -0.458777 0.714667 0.692580 -1.487489 0.519766 -1.887642 -1.287742 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.350688 -1.183942 1.639523 -3.618463 -3.953418 0.513355 0.546363 -3.261779 -0.953915 2.809600 1.325000 -1.687164 -0.753391 4.725698 -0.368906 -2.185896 0.088046 -2.010270 0.270445 -0.622347 -0.676778 2.883353 -1.444750 -0.139461 0.602505 -0.870346 -0.407231 2.285963 0.166183 -0.856187 -0.456690 -2.585154 -0.859670 4.877669 2.027216 0.194148 -1.175335 8.185861 -3.103535 5.097348 -5.241219 -4.151301 4.242023 -1.112615 -0.292234 -3.988068 -2.679055 2.713619 -0.634691 -1.443826 1.644778 -0.225267 1.190383 -1.225525 0.176818 1.736890 -4.504428 1.611296 2.255256 -2.834164 -1.967985 -1.553350 -0.948564 1.297831 -4.576710 -2.882766 1.071200 0.699665 -0.835956 -0.014791 -1.464347 -3.602206 3.728416 1.855132 -1.778328 0.324079 0.634076 -3.107873 3.251038 -1.393343 -5.488178 -1.653975 -0.989508 -2.970293 3.012969 0.331554 4.284314 -7.170892 2.669820 -7.804041 1.693013 -3.645126 2.286349 5.287457 -3.154382 2.780621 2.324765 3.993439 3.392727 -0.702452 3.582656 2.472704 0.731172 2.839614 3.887354 3.135624 -1.666606 -2.393775 -3.295199 -3.623274 1.450160 -2.235799 -6.069323 2.364572 -0.583387 -0.352450 -1.551337 1.171889 -0.759887 4.783287 -5.450022 0.175702 1.841979 -1.164706 1.160743 3.273673 -1.348589 0.490254 -2.457287 3.605594 -2.426145 3.554453 -0.534083 3.652587 -2.672117 -2.062187 -4.074438 0.999870 1.776695 -3.862094 -4.432307 -5.959673 -1.062033 2.039155 -2.649257 5.043097 8.243317 -4.584643 -4.244510 5.038097 1.593251 -0.910530 2.799190 0.816696 4.818060 -1.167884 -1.893134 -2.313678 -2.303570 0.257825 3.171862 0.985913 -2.036853 3.231226 -1.200931 -4.152334 6.676574 -0.405450 -3.363827 -1.432803 0.775910 -1.884714 -2.954574 4.581049 -2.489895 3.608026 -1.170736 5.369445 -0.987249 -1.786453 1.581475 -4.246809 -0.800700 -3.369568 -0.104059 0.095209 3.094779 -3.197204 -2.475606 -1.724725 -2.794811 -2.521047 2.316883 -0.659512 0.781679 2.130589 1.465426 4.433136 5.588643 0.772421 -0.386165 -3.631929 2.760828 2.935682 0.100515 -4.287457 -1.522412 -1.712493 -1.347930 -0.541857 0.267505 3.151266 -3.303151 -0.530462 -0.155377 0.148837 0.953396 2.095898 -6.340830 1.795985 0.087177 3.151786 2.010399 3.853537 3.490423 4.876576 3.054815 1.307418 -0.894676 -0.186168 -1.738597 0.991528 1.859329 0.507423 2.486631 4.537099 3.880991 2.424823 4.343423 2.669351 1.487704 4.506999 -0.177649 7.142057 -1.667606 -0.787647 -0.021598 1.218186 4.219860 6.825173 0.498931 -0.073067 2.465675 -0.486446 -3.128334 -3.022435 0.933142 -0.937956 0.186904 1.792169 2.265521 -0.189310 -1.525047 5.768375 -0.953683 -7.337411 3.122496 1.525644 2.931364 2.935711 0.438357 1.435897 2.049234 -2.333842 4.280976 4.461878 2.679563 -3.832719 -1.383056 0.496623 2.320323 3.603480 3.573658 -6.415464 2.231843 2.162444 4.263173 -0.158130 3.559672 -3.604339 -1.213024 2.541266 -1.658731 -0.283692 1.546656 2.025404 -2.024957 1.075015 -3.970301 -2.330323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.454617 -0.316077 1.865494 -3.914650 -3.757273 0.028447 1.704044 -2.656592 -1.061296 3.380379 1.140325 -1.705198 -1.543953 4.308321 -0.559723 -2.095015 0.030212 -3.422220 -0.369048 -0.651051 -0.857413 2.782818 -1.239670 -0.528792 1.046684 -0.550663 -0.347514 2.545865 0.234582 -1.423365 -0.274751 -2.244064 -0.317138 4.954673 1.588863 -0.654450 -1.087340 7.969561 -3.484309 4.298218 -5.079469 -4.295351 4.786751 -1.153014 -0.515537 -4.823986 -2.033335 3.085313 -0.501254 -1.559294 1.385389 0.141287 0.937120 -1.999060 -0.254605 2.426882 -5.229528 2.161088 2.392578 -2.392154 -2.310308 -1.424789 -0.415886 1.047625 -3.711338 -3.050330 0.910073 -0.295272 -1.351912 0.071304 -1.579382 -3.214720 3.610665 1.778791 -1.368143 0.810329 0.177794 -3.368583 3.334369 -2.146959 -4.862790 -1.683576 -0.545679 -2.806316 3.238455 0.017608 3.294327 -7.002421 1.896454 -7.234236 1.402759 -3.797065 2.087907 5.166084 -2.451896 3.199778 1.594012 2.684546 2.741820 -0.980118 3.574330 2.234713 2.038332 2.765263 3.294240 3.278631 -2.203898 -2.661344 -3.429830 -3.356048 1.206345 -1.808239 -5.744358 2.507630 -0.629681 -0.942865 -0.566121 0.442153 -1.060541 4.919722 -5.173377 0.009842 1.836895 -1.155093 1.045216 3.606283 -1.058983 0.138656 -2.192577 3.537455 -1.646558 3.799807 -0.296438 3.585784 -2.102994 -2.473498 -3.343280 0.774315 1.533233 -3.434926 -4.333953 -5.854374 -0.989299 0.979322 -2.724277 4.584924 8.054733 -3.899601 -4.521045 4.978552 1.603103 -0.222902 2.371369 0.749810 4.789380 -1.353941 -1.809497 -1.871801 -1.979197 0.677715 3.942934 0.662300 -2.184305 3.091409 -1.153496 -3.628708 5.172430 0.004966 -2.675211 -0.415460 0.696151 -2.347306 -3.418001 4.500051 -1.583172 4.081693 -0.822296 5.552444 -1.190249 -1.989156 1.640034 -3.601345 -0.366924 -3.808471 -0.451814 0.484489 2.523847 -2.943341 -2.469786 -1.827947 -1.996114 -2.600237 2.723742 -1.772951 0.788683 1.504589 1.363582 3.930785 4.940413 -0.249512 -0.004196 -3.854560 2.668132 2.564353 0.491225 -4.923534 -1.448603 -1.251130 -1.474344 0.741392 0.070681 2.981002 -2.651592 -0.588854 1.046248 -0.038521 0.267858 1.418460 -6.310713 1.571522 -0.235319 2.853073 1.784025 4.178644 3.648989 4.308134 2.250095 1.498882 -0.937451 -0.255293 -2.085209 0.439240 1.125109 0.578539 2.709713 4.409801 3.671528 2.213662 4.316712 2.764754 0.224951 4.470837 -0.144208 6.672291 -1.880208 -1.332990 0.320238 1.067476 3.986773 6.149001 0.540216 -0.973401 2.727552 -0.213750 -2.816093 -2.813521 0.659120 -1.163607 0.633000 2.299531 2.418127 -0.788627 -0.863794 5.872301 -1.208137 -7.347798 3.100615 1.648770 3.172674 2.259282 0.331815 1.573570 2.423559 -2.200094 3.697563 4.062315 2.578068 -3.899477 -1.293439 0.676498 2.547906 2.581075 3.211390 -7.536011 0.988540 1.704864 4.222311 0.036278 4.307066 -3.285346 -1.189635 2.490777 -0.832817 -0.157628 1.320081 2.124647 -2.511908 1.089524 -3.979874 -1.418107 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.004715 -0.407366 0.767712 -1.297765 -1.568074 -0.168556 1.361595 -1.446721 -0.514403 1.470250 0.399456 -0.901601 -0.959893 1.629839 0.135158 -0.718329 0.332858 -1.662442 -0.167145 -0.617189 -0.437077 1.108806 -0.481803 -0.325467 0.407218 -0.120655 -0.188062 1.311469 -0.091872 -0.669416 -0.063695 -1.117696 0.265029 2.396411 0.810903 -0.138577 -0.996178 3.913247 -1.500912 2.234737 -2.864683 -1.840051 2.459949 -0.734295 -0.261403 -2.631200 -0.821817 1.699445 0.070818 -1.150503 0.254961 0.206882 0.334518 -1.114958 -0.495069 1.618807 -2.271756 0.933860 1.061186 -1.600002 -1.352090 -0.628357 -0.333826 0.674610 -2.089245 -1.643347 0.525648 -0.501063 -0.700521 0.587710 -1.049077 -1.734225 1.442930 0.763255 -0.802676 0.154090 -0.125567 -1.194734 1.602836 -0.304268 -2.138590 -0.973266 -0.315300 -0.884645 1.101839 0.017072 1.498995 -3.566634 0.526138 -3.709212 0.862644 -2.039917 1.228724 2.254122 -1.192056 1.719704 0.532542 1.071807 1.234591 -0.731272 1.594647 0.945415 1.220913 1.069888 1.871704 1.496639 -0.689194 -1.407237 -1.506138 -1.405384 1.007482 -0.721162 -2.577897 1.260159 -0.684726 -0.398220 -0.261005 0.581816 -0.328779 2.345590 -2.435090 0.067582 1.245854 -0.595547 0.838393 1.858714 -0.846427 0.236467 -1.205402 1.626333 -0.360222 2.026557 -0.148652 1.749251 -0.905299 -1.581759 -1.622030 0.292409 0.951931 -1.870900 -2.198048 -2.941105 -0.383463 0.513781 -1.494030 1.811651 3.949823 -1.913440 -1.890451 2.103165 0.884315 -0.224431 0.873750 0.263449 2.890014 -1.052906 -0.441926 -0.599555 -0.613094 0.628182 2.569500 0.050485 -1.361945 1.350894 -0.441886 -2.297848 2.684714 -0.099330 -1.184533 0.479790 0.010832 -0.368437 -1.700698 2.052279 -0.636369 1.950795 -0.792878 2.213690 -0.562757 -0.823445 0.890687 -1.399923 -0.401573 -1.388146 -0.075085 0.131467 1.511154 -1.583079 -1.148014 -0.891132 -1.491450 -0.948432 1.506038 -0.613964 0.204244 0.639166 0.693459 1.790508 2.181337 -0.136722 -0.058219 -2.056097 1.305090 1.367832 0.639208 -2.174824 -0.931399 -0.885132 -0.806871 -0.156928 0.121483 1.544560 -1.201779 -0.185467 0.612764 -0.106074 -0.068184 0.587545 -2.861073 0.795083 0.192874 1.302495 0.674785 2.333343 1.603813 1.852280 1.021636 0.393891 -0.442493 -0.409389 -1.520423 0.460267 0.313381 0.285139 1.211794 1.547808 1.675286 0.828748 2.304296 0.654877 0.361989 2.254571 0.298062 3.197265 -1.286363 -0.341646 0.365332 0.093899 1.985622 3.037795 0.643575 -0.837785 1.287633 -0.421477 -1.737325 -1.260112 -0.158035 -0.412392 0.207311 1.460857 1.046216 -0.509295 -0.538320 3.021453 -0.494228 -3.872030 1.535740 0.812627 1.197177 1.497126 -0.069088 0.984295 1.350256 -0.661620 1.497737 1.893645 1.376512 -1.928972 -1.079162 0.149331 1.019882 1.382140 1.203510 -4.144007 0.229069 0.946614 2.332999 -0.016404 1.891287 -1.877087 -0.150240 1.120981 -0.423766 -0.000624 0.826244 1.329096 -1.182983 0.221515 -2.416854 -0.089553 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 3.489746 -1.004715 1.539510 -4.918048 -3.658342 0.595317 1.983698 -5.158870 -1.615103 4.614631 1.859962 -2.669337 -1.319380 4.241182 0.169921 -2.523775 1.562142 -4.154857 -0.185005 -1.035317 -1.669406 2.552793 -1.949475 -1.870903 0.714446 -0.532368 0.207629 3.174642 0.122203 -1.647515 -1.459038 -3.198185 -0.287893 7.618229 3.390223 -1.069323 -2.276224 10.325292 -3.117832 5.187516 -7.391510 -4.688213 7.130203 -1.898407 -0.854955 -5.992120 -1.866196 4.604960 0.566441 -3.013441 0.877188 -1.008785 1.758583 -3.325451 -2.249999 4.470286 -5.654831 2.215395 3.712363 -3.710171 -4.444322 -2.460387 0.941121 2.273417 -6.292603 -4.954538 2.444626 -0.688667 -2.058611 0.704799 -4.859109 -5.851741 4.067362 2.832431 -2.193782 -0.194674 -1.589892 -4.295588 3.929533 -0.013434 -6.148513 -2.665908 -0.981307 -3.754424 3.923821 -0.356276 5.224385 -10.535463 2.971196 -11.188267 1.667224 -5.099084 4.360899 6.894350 -3.516299 3.786808 1.561578 4.734934 2.807424 -1.925006 5.065375 2.171323 1.841435 2.237534 6.104598 4.098778 -1.972891 -4.046879 -3.139009 -4.198381 2.128927 -1.851612 -7.840605 4.246002 -3.948257 -1.548635 -1.843403 1.521594 -1.793747 6.621767 -7.371538 -1.937338 2.128049 -1.897828 3.451643 5.429147 -1.696680 1.315540 -3.055670 4.661088 -0.840766 4.409264 -1.092473 5.346652 -3.035894 -3.739471 -5.064588 1.316145 3.949220 -5.908484 -7.345782 -8.233662 -1.820791 1.071099 -4.153323 7.200740 10.625874 -5.242128 -5.668487 6.175395 1.003633 -0.844888 4.469641 0.630260 8.853431 -3.995796 -0.230100 -1.356275 -1.100769 0.891721 3.857223 -1.033477 -3.561609 4.178894 -2.500543 -3.478390 7.947518 0.673276 -3.273531 1.529488 0.174487 -1.404784 -5.816429 6.306692 -2.525710 5.481821 -0.903481 8.003190 -2.161984 -2.158759 2.908931 -3.569416 -1.398626 -3.872196 -0.396694 -0.528708 5.226482 -3.795770 -3.935334 -1.714363 -3.122769 -2.688702 5.533401 0.092203 0.619289 2.016079 0.731997 5.206510 6.484626 -0.917208 -0.165105 -5.206975 3.811264 5.418752 1.163198 -4.494436 -3.409347 -3.096876 -2.385045 -0.323030 0.438781 5.489229 -4.566155 -1.176580 1.926804 1.501236 1.097734 2.108726 -9.383225 3.242888 -0.114368 2.299162 1.956268 7.745974 3.490414 5.955150 2.790813 -0.235135 -0.956432 -0.635954 -4.885258 0.282565 1.026458 2.189339 3.693619 4.725057 4.453856 3.529225 6.087222 1.797705 1.311996 6.629872 0.332804 8.783415 -3.308591 -0.581776 0.860098 -0.538049 6.204126 9.155521 0.545690 -2.962702 3.320142 -1.254805 -5.463101 -5.019293 -0.085545 -1.062920 0.228043 1.565574 3.196013 -0.351099 -2.796911 10.112643 -1.205426 -11.272614 5.065755 2.353262 3.680530 5.368635 -0.823900 3.191065 3.057286 -1.866517 4.317538 5.723913 4.240213 -5.288871 -0.711701 0.802279 3.891997 1.995748 2.681050 -9.737767 2.536137 2.861857 7.477360 1.508702 5.045955 -5.011316 0.677220 2.894261 -0.979370 0.945118 1.636202 4.734075 -3.556318 0.586722 -7.005312 0.247019 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 1.680543 -0.496385 0.524259 -2.740148 -2.278674 1.337530 -1.189536 -2.328825 -0.485513 1.183912 1.229728 -0.454744 0.653766 2.372746 -0.526576 -1.348849 0.163869 -2.171966 0.230691 0.187402 -0.402036 1.296646 -1.135124 -0.453880 -0.119737 -0.395023 -0.241085 0.593333 0.336100 -0.741587 -1.705363 -1.199459 -1.244488 3.196643 1.835793 -1.233949 0.358564 4.733603 -0.591633 1.051997 -2.142245 -2.043655 1.914119 -0.700448 -0.588384 -1.074369 -1.315886 1.250185 0.276798 -0.311404 1.355858 -1.157674 0.844348 -0.254592 -0.381116 0.700564 -2.782036 1.123622 1.409825 -0.062184 -0.932890 -1.422733 0.784863 0.822817 -1.926833 -1.587870 1.703634 1.214615 -0.434634 -0.732389 -1.372645 -2.962145 2.924261 1.661034 -0.915758 -0.307221 0.094394 -3.211657 1.795520 -0.489015 -3.669030 -0.426099 -0.866718 -2.547300 2.978783 -0.724897 2.340559 -4.237816 2.554207 -5.061541 0.155038 -1.856497 1.545407 3.276796 -2.526673 0.385971 1.525385 4.018505 1.853420 -0.523433 2.731595 1.093110 -0.590402 1.216207 2.191242 1.343771 -0.637238 -0.308553 -1.145720 -2.200361 0.085125 -1.100151 -4.407673 1.784869 -0.868095 -0.536594 -1.463403 0.637025 -0.929804 3.059907 -3.212235 -1.590477 0.039436 -0.668634 1.135724 2.024646 -0.829769 0.731971 -1.392523 2.412102 -1.355552 1.047518 -0.786634 1.792711 -1.753337 -0.586643 -3.205405 1.063498 1.881360 -2.623012 -3.289521 -2.950616 -0.704201 0.190379 -1.323262 4.507533 4.563938 -2.527086 -2.668589 3.313007 0.574551 -0.459533 3.350218 0.253398 2.806035 -0.994774 -0.622180 -1.142155 -1.092988 -1.210910 -1.833824 0.046644 0.020190 1.514216 -0.727429 -0.097822 4.562044 0.278206 -2.197513 -0.065302 0.407848 -1.507993 -2.517592 2.919818 -0.130726 1.617859 1.443955 3.882760 -0.793970 -1.082133 1.173856 -1.124385 -0.222062 -1.709255 -0.342012 -0.333622 2.011203 -1.235114 -1.639817 0.085492 -0.641187 -1.681507 1.570142 2.368933 1.006270 1.560452 0.519206 1.778925 4.030723 0.258345 0.032853 -1.753771 1.577217 2.626984 -1.096815 -1.296976 -1.292679 -1.378240 -0.362101 0.393890 0.159044 2.279131 -2.580704 -1.168402 -0.144852 1.222519 1.701725 1.768314 -4.528147 1.450523 -0.791484 0.994360 1.152964 2.349318 1.731389 3.272499 2.092132 -0.324021 -0.022578 0.466493 -0.615869 -0.708073 0.991554 1.665092 1.564818 3.173774 1.992598 1.877222 1.846360 1.941339 1.279101 2.681835 -0.138203 4.458336 -0.737372 -0.318214 -0.786706 0.170290 2.895562 4.709119 -0.704785 0.398734 0.926371 0.245844 -1.652834 -2.825931 0.968713 -0.643751 0.711465 -1.047448 1.226029 0.592839 -1.549774 3.737444 -0.274821 -4.067874 2.001602 0.937689 1.848935 2.309370 0.021146 1.086899 0.507471 -1.720423 3.159163 3.013442 1.675172 -1.897250 0.131987 0.471342 2.009411 -0.807119 2.100433 -1.453366 2.768155 1.176344 2.305135 1.093133 1.160098 -2.148681 -0.684678 1.522892 -0.981277 0.215495 1.160904 2.010623 -2.119816 0.927284 -1.931715 -1.589013 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.717895 -0.404276 1.533044 -4.401227 -4.348913 1.234769 -0.420130 -4.181462 -1.167330 2.741946 1.951187 -1.508006 -0.206037 4.087757 -0.903009 -2.330228 0.214151 -3.598351 0.038086 -1.169904 -0.957618 2.495606 -1.774840 -0.734933 0.309241 -0.920636 -0.468050 1.919342 0.601653 -1.699016 -1.603767 -2.422610 -1.033720 5.904048 2.760162 -1.669647 -0.632846 8.776743 -1.714228 2.138883 -5.401702 -4.085006 4.642444 -1.436446 -0.703046 -4.193041 -2.645947 3.014516 0.153162 -0.706731 1.617474 -1.152565 1.267763 -1.402836 -0.871051 2.331805 -5.352867 2.638605 2.726237 -2.229195 -2.565943 -1.942450 0.612397 1.305449 -3.430225 -3.438388 2.423766 1.400637 -1.059196 -0.219791 -2.528291 -4.934378 4.444359 2.286683 -1.494105 -0.014618 -0.129893 -4.334462 3.476072 -0.958929 -5.937628 -1.583231 -0.689828 -3.503737 4.038916 -0.614087 3.998676 -8.167894 3.082230 -9.141656 0.951635 -3.776569 3.047906 5.432370 -3.906465 2.208310 2.420196 4.382874 3.416797 -0.953805 4.720686 1.767121 0.710619 2.628552 4.092794 2.791538 -1.048295 -1.538151 -2.694082 -4.060719 0.866660 -1.579116 -7.179766 3.319275 -1.980520 -1.479417 -2.187189 0.958921 -0.986943 5.744108 -5.566701 -1.941617 1.469187 -1.388412 1.965385 4.090598 -1.510387 1.021791 -2.797870 4.110124 -2.178860 3.118464 -1.000689 3.807895 -2.203785 -3.523785 -5.819990 1.377992 2.906372 -4.834067 -5.674569 -5.498452 -1.179876 0.324176 -3.023955 6.460029 8.974520 -4.854122 -5.166756 5.774744 1.865502 -0.800240 4.935626 0.722263 6.416578 -2.176649 -1.220712 -2.007899 -2.008660 -0.363846 -0.567473 0.049699 -1.242450 3.118432 -0.813401 -2.176029 7.343831 -0.164244 -3.653710 1.080645 0.933850 -1.847611 -4.373837 4.850325 0.419841 4.051383 1.044984 6.726236 -1.698058 -2.569643 1.986141 -2.328579 -0.650758 -2.413024 -0.159724 -0.419238 3.760300 -2.521421 -3.022089 -0.914578 -2.453565 -2.791906 3.257848 2.460685 1.596727 2.468042 0.995657 2.958137 6.784962 0.266375 0.268274 -4.099789 3.015809 4.536066 0.059906 -4.041687 -2.323852 -2.319462 -1.183870 0.253076 0.272303 4.368434 -3.409771 -1.206347 0.320132 1.133029 2.016158 2.475359 -6.795939 2.537270 -1.380437 2.307127 1.469776 5.020076 3.730751 5.537194 3.327377 0.187079 -0.360284 -0.192011 -1.115019 -0.418324 1.599449 2.192969 3.015346 4.969453 3.934727 3.161729 4.477238 2.578326 1.711760 5.322029 -0.307639 8.326093 -2.912248 -0.395908 -0.893541 0.448090 5.228419 8.420126 0.163560 -0.860697 2.275639 0.101540 -3.302226 -5.253136 1.031349 -0.892905 0.703427 0.340265 2.965350 0.068071 -2.410890 7.295750 -0.677026 -8.091447 4.366281 1.782475 3.066661 3.386875 0.061989 1.548213 2.065189 -2.594786 4.075491 5.250896 3.436891 -4.429939 -0.962600 0.719917 3.857783 -0.062144 3.573092 -6.144252 3.610592 2.691664 4.789786 0.916261 3.001770 -4.245987 -1.533855 2.960599 -1.214819 0.076039 2.606259 3.339830 -4.005861 1.478649 -3.819099 -1.799267 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = 3.236381 -0.942977 3.398221 -8.377891 -5.509189 0.789509 2.787302 -6.799482 -2.171528 5.942115 3.002875 -3.602154 -2.068661 6.513714 -1.051833 -4.695949 1.409555 -2.768982 -0.814797 -1.831849 -1.880155 3.559963 -2.658272 -3.418071 1.582247 -2.415783 1.461572 5.864337 0.849679 -1.068613 -0.834624 -4.382860 -0.392928 10.976089 3.966684 -0.450872 -2.989598 14.453494 -4.959585 7.641407 -10.233853 -7.423661 11.435300 -2.036188 -1.378176 -10.258642 -4.736222 5.387464 -1.066364 -3.502494 0.790442 -1.762807 3.441503 -5.609224 -2.552000 6.319054 -8.284353 2.009137 5.239913 -6.657771 -6.965459 -2.834596 1.617541 2.557104 -8.612925 -6.618645 2.522954 -0.188347 -2.416631 0.576266 -5.942822 -7.986486 8.276385 3.662632 -2.471444 1.164808 -1.590552 -7.007043 5.208662 0.169928 -8.531584 -4.414073 -0.093948 -5.754493 5.580503 -0.186917 8.405819 -14.722490 3.410563 -15.211632 2.953492 -7.054210 6.125941 9.658380 -4.664307 6.793556 3.078234 5.832466 2.549241 -1.217745 7.291055 3.335953 3.292340 3.460964 8.431991 5.780102 -3.967348 -7.257348 -5.809622 -6.413847 2.441690 -3.700558 -13.717182 5.230571 -5.376053 -1.949924 -2.819688 0.964831 -1.966748 10.477485 -9.851865 0.056838 3.573181 -2.800780 3.429048 7.403172 -0.692797 1.045173 -3.115105 6.297716 -2.526841 5.564838 -1.231892 7.791888 -4.348913 -5.494702 -5.837820 1.637055 4.152979 -7.461804 -9.805979 -10.349950 -3.790769 3.636557 -4.924723 8.647408 15.636550 -6.992294 -9.798694 8.220976 2.516144 -0.632376 6.119009 2.446780 12.230563 -5.651490 -0.843163 -3.721741 -1.626120 2.844291 6.313145 -1.446071 -5.244405 7.645065 -4.069102 -6.134671 13.225223 -0.678170 -3.599298 2.418725 1.384566 -3.917200 -7.971664 9.619183 -3.002241 10.357506 -2.158935 13.041828 -4.329583 -4.036221 2.523017 -5.974288 -2.333276 -6.990170 0.553910 -0.788789 7.330939 -5.043351 -6.376402 -3.238895 -4.376285 -3.044465 8.426519 -2.072561 0.874991 2.180933 -0.508874 7.113053 8.483342 -1.523293 -0.919001 -7.322242 5.012169 7.172145 1.517889 -8.604160 -4.221912 -3.204923 -3.227340 -0.952502 0.794186 7.889730 -5.975037 -0.914073 2.070240 0.997428 0.556596 1.490743 -13.862894 4.262805 -0.739901 3.899497 2.314905 10.599128 7.755570 8.676052 2.826349 1.600542 -0.963679 -1.743821 -6.369988 0.697201 2.175190 2.886868 5.119358 8.861000 5.776101 5.648609 8.539315 3.814993 2.521874 9.069473 0.160265 13.051113 -3.941228 -2.283441 1.319226 0.372792 8.533283 12.681682 2.261192 -3.396233 4.821858 -0.526954 -6.885456 -9.124471 0.466980 -1.068219 -0.531311 4.793882 6.289291 -0.844999 -3.747468 14.412645 -0.951311 -16.152647 7.338093 3.324020 5.664107 6.331961 -1.481968 3.960179 5.522129 -1.237617 5.781183 7.271100 5.748082 -9.100248 -0.454607 1.625107 6.055296 3.925228 3.908126 -15.144308 3.541896 3.436748 10.626221 0.955786 9.753918 -6.527143 0.908869 3.747167 -1.141638 0.751775 1.620540 4.785152 -5.032504 0.979340 -10.435809 -0.814600 +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.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +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.084720 -0.136996 0.364287 -0.632961 -0.706511 0.018957 0.144361 -0.295462 -0.104661 -0.182050 0.304377 -0.243683 -0.352723 0.769639 -0.049070 -0.585740 -0.071636 -0.064370 -0.105927 0.023972 -0.027186 0.438107 -0.159376 0.023451 0.197265 -0.153965 -0.156797 0.525450 0.303483 -0.227831 -0.062963 -0.301330 -0.061673 0.733834 0.112730 0.220645 -0.010139 1.281746 -0.303238 0.802678 -0.685893 -0.536947 0.697284 -0.180476 -0.192859 -0.895021 -0.730678 0.379214 -0.532504 -0.165394 0.391667 0.073828 0.120024 -0.224430 0.262369 0.404580 -0.920230 0.370042 0.348818 -0.364996 -0.092793 -0.155134 -0.444119 -0.080387 -0.363302 -0.390143 -0.008046 0.129418 -0.152569 -0.042906 0.006871 -0.512748 1.269565 0.220218 -0.262832 0.305045 0.356900 -0.498272 0.540993 -0.248538 -0.801503 -0.256622 0.000538 -0.140174 0.698179 -0.057096 0.424545 -1.059058 0.059218 -1.086907 0.393391 -0.732788 0.260541 0.803315 -0.654476 0.519632 0.443973 0.104909 0.352491 0.190127 0.631160 0.303061 0.191028 0.459277 0.521955 0.231846 -0.283587 -0.449700 -0.616851 -0.676920 0.133780 -0.356115 -1.295984 0.235608 0.078164 0.181973 -0.121886 0.147145 0.122796 0.550281 -0.502592 0.493148 0.448247 -0.189150 0.049417 0.656199 -0.186577 -0.090582 -0.428508 0.617919 -0.500740 0.604176 -0.123256 0.498931 -0.058866 -0.682581 -0.587894 0.010312 0.076009 -0.416168 -0.624011 -0.657820 -0.100973 0.368353 -0.339219 0.334559 1.334862 -0.656685 -0.711165 0.870455 0.640504 0.208917 0.326903 0.253551 0.717775 -0.079761 -0.421177 -0.505673 -0.506133 0.089642 0.215802 0.257025 -0.358386 0.511452 -0.052468 -1.149334 1.328213 -0.280219 -0.484605 0.106599 0.088438 -0.508115 -0.551019 0.837464 0.234041 0.765832 -0.105814 0.934168 -0.167157 -0.531953 0.167100 -0.263787 -0.015460 -0.635229 -0.073203 0.204099 0.236275 -0.550583 -0.434837 -0.289992 -0.328835 -0.395719 0.272403 -0.041983 0.106138 0.265357 0.271804 0.282311 0.851708 0.098637 -0.010178 -0.699397 0.397255 0.235158 -0.064045 -0.888188 0.046973 -0.099224 -0.138076 0.083916 0.036633 0.325382 -0.224461 -0.125224 -0.025530 -0.253181 0.104766 0.225936 -0.768762 0.055132 0.064504 0.420034 0.327031 0.453633 0.973002 0.674627 0.433585 0.448443 -0.046195 0.104017 -0.143613 0.040919 0.130152 0.244676 0.379076 0.670326 0.634841 0.257865 0.655848 0.563016 0.310971 0.687112 0.266525 1.190139 0.075035 -0.371270 0.046037 0.244102 0.694512 1.031164 0.005475 0.241674 0.428702 0.301188 -0.238902 -0.704393 0.135372 -0.142247 -0.252454 0.791679 0.202081 -0.095613 -0.101911 0.820686 -0.177827 -1.014058 0.405322 0.207634 0.487677 0.144125 0.199529 0.087890 0.444573 -0.463226 0.547424 0.503433 0.474306 -0.694459 -0.362644 0.068585 0.270411 0.519908 0.690635 -0.874913 0.080620 0.262726 0.657398 -0.095954 0.424363 -0.409562 -0.388711 0.337016 -0.221828 -0.168610 0.116838 0.042432 -0.357430 0.010555 -0.564027 -0.616202 +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.471836 -0.526784 1.796056 -3.885105 -2.763411 0.618010 0.941741 -2.948020 -0.803294 2.443520 1.478542 -1.256831 -1.075890 3.664585 -0.623472 -2.322900 0.631515 -2.247096 -0.190047 -0.766101 -0.730637 2.007418 -1.234165 -1.091712 0.874897 -1.123884 0.259948 2.718290 0.388272 -1.158594 -0.510136 -1.955358 -0.707037 4.917874 1.746294 -0.200152 -0.728822 7.115596 -2.483420 3.548097 -4.616609 -3.747794 5.160567 -0.992605 -0.987776 -4.132227 -2.082837 2.330141 -0.915403 -1.111826 1.042755 -0.770220 1.473602 -2.066478 -0.705826 2.568290 -4.651935 1.255286 2.176484 -2.636236 -2.919245 -1.559341 0.347586 0.980513 -3.508601 -2.795689 1.514977 0.166709 -1.272875 0.111399 -2.049521 -3.434167 4.169842 1.602085 -1.002520 0.623191 -0.083855 -3.288206 2.739134 -0.766250 -4.332366 -1.815615 -0.216889 -2.745629 3.124122 -0.231862 3.728853 -6.883309 1.775921 -7.233424 1.456042 -3.255362 2.675932 4.513320 -2.728611 3.041047 1.781073 3.150990 1.495310 -0.791387 3.652308 1.653550 1.318381 2.101138 3.948539 2.639621 -1.885002 -2.875358 -3.109678 -3.136872 0.993776 -1.847658 -6.361609 2.306586 -2.034757 -0.717558 -1.158508 0.480777 -0.914473 4.989493 -4.525060 0.479279 1.391782 -1.128485 1.327087 3.356764 -0.518753 0.450086 -1.452783 3.320066 -1.824703 2.781863 -0.635401 3.453111 -1.653160 -2.575984 -3.071097 0.685743 1.778349 -3.528012 -4.387602 -4.978298 -1.547893 1.613564 -2.122118 4.593083 7.520334 -3.375607 -4.703019 4.295496 1.391426 -0.210115 3.076602 1.032428 5.118300 -2.181701 -0.983714 -2.003757 -1.131108 0.924855 2.353720 -0.038836 -1.768225 3.296938 -1.245762 -2.865483 6.601104 -0.178210 -2.131365 0.640112 0.601606 -2.284953 -3.881269 4.435867 -0.700850 4.465064 -0.427856 6.217341 -1.737076 -2.113322 1.274008 -2.821447 -0.778131 -3.473468 -0.180504 -0.094829 3.139762 -2.353170 -2.772081 -1.912031 -1.773710 -1.742731 3.345675 -0.576643 0.934723 1.258592 0.220832 3.204810 4.549067 -0.351215 -0.347688 -3.568489 2.211990 3.420732 0.492731 -4.168930 -1.569175 -1.371552 -1.259906 0.042375 0.264465 3.486925 -2.806590 -0.631526 0.671569 0.632803 0.499359 1.130461 -7.022534 1.703253 -0.238722 1.812102 1.425726 4.419155 3.834948 4.056546 1.699284 0.870371 -0.569025 -0.429486 -2.371250 -0.083037 1.086264 1.632660 2.324528 4.525945 3.074672 2.600587 3.810743 2.460782 1.006868 4.207944 0.143439 6.398509 -1.708713 -1.014857 0.165242 0.699225 4.070907 5.965734 0.540749 -0.844251 2.274647 0.296532 -2.845850 -4.325431 0.444354 -0.883147 0.440296 1.958210 2.617673 -0.297656 -1.574725 6.430712 -0.464937 -7.390420 3.316654 1.462397 2.768637 2.576616 -0.263447 1.166481 2.399450 -1.597462 3.164364 3.433592 2.622206 -3.915657 -0.152090 0.723311 2.979198 1.577664 2.617250 -6.675917 1.823956 1.586205 4.473801 0.635125 4.285289 -2.925909 -0.251362 1.748366 -0.979382 0.166230 1.309184 1.968241 -2.536612 0.847846 -4.565856 -1.060161 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 1.680543 -0.496385 0.524259 -2.740148 -2.278674 1.337530 -1.189536 -2.328825 -0.485513 1.183912 1.229728 -0.454744 0.653766 2.372746 -0.526576 -1.348849 0.163869 -2.171966 0.230691 0.187402 -0.402036 1.296646 -1.135124 -0.453880 -0.119737 -0.395023 -0.241085 0.593333 0.336100 -0.741587 -1.705363 -1.199459 -1.244488 3.196643 1.835793 -1.233949 0.358564 4.733603 -0.591633 1.051997 -2.142245 -2.043655 1.914119 -0.700448 -0.588384 -1.074369 -1.315886 1.250185 0.276798 -0.311404 1.355858 -1.157674 0.844348 -0.254592 -0.381116 0.700564 -2.782036 1.123622 1.409825 -0.062184 -0.932890 -1.422733 0.784863 0.822817 -1.926833 -1.587870 1.703634 1.214615 -0.434634 -0.732389 -1.372645 -2.962145 2.924261 1.661034 -0.915758 -0.307221 0.094394 -3.211657 1.795520 -0.489015 -3.669030 -0.426099 -0.866718 -2.547300 2.978783 -0.724897 2.340559 -4.237816 2.554207 -5.061541 0.155038 -1.856497 1.545407 3.276796 -2.526673 0.385971 1.525385 4.018505 1.853420 -0.523433 2.731595 1.093110 -0.590402 1.216207 2.191242 1.343771 -0.637238 -0.308553 -1.145720 -2.200361 0.085125 -1.100151 -4.407673 1.784869 -0.868095 -0.536594 -1.463403 0.637025 -0.929804 3.059907 -3.212235 -1.590477 0.039436 -0.668634 1.135724 2.024646 -0.829769 0.731971 -1.392523 2.412102 -1.355552 1.047518 -0.786634 1.792711 -1.753337 -0.586643 -3.205405 1.063498 1.881360 -2.623012 -3.289521 -2.950616 -0.704201 0.190379 -1.323262 4.507533 4.563938 -2.527086 -2.668589 3.313007 0.574551 -0.459533 3.350218 0.253398 2.806035 -0.994774 -0.622180 -1.142155 -1.092988 -1.210910 -1.833824 0.046644 0.020190 1.514216 -0.727429 -0.097822 4.562044 0.278206 -2.197513 -0.065302 0.407848 -1.507993 -2.517592 2.919818 -0.130726 1.617859 1.443955 3.882760 -0.793970 -1.082133 1.173856 -1.124385 -0.222062 -1.709255 -0.342012 -0.333622 2.011203 -1.235114 -1.639817 0.085492 -0.641187 -1.681507 1.570142 2.368933 1.006270 1.560452 0.519206 1.778925 4.030723 0.258345 0.032853 -1.753771 1.577217 2.626984 -1.096815 -1.296976 -1.292679 -1.378240 -0.362101 0.393890 0.159044 2.279131 -2.580704 -1.168402 -0.144852 1.222519 1.701725 1.768314 -4.528147 1.450523 -0.791484 0.994360 1.152964 2.349318 1.731389 3.272499 2.092132 -0.324021 -0.022578 0.466493 -0.615869 -0.708073 0.991554 1.665092 1.564818 3.173774 1.992598 1.877222 1.846360 1.941339 1.279101 2.681835 -0.138203 4.458336 -0.737372 -0.318214 -0.786706 0.170290 2.895562 4.709119 -0.704785 0.398734 0.926371 0.245844 -1.652834 -2.825931 0.968713 -0.643751 0.711465 -1.047448 1.226029 0.592839 -1.549774 3.737444 -0.274821 -4.067874 2.001602 0.937689 1.848935 2.309370 0.021146 1.086899 0.507471 -1.720423 3.159163 3.013442 1.675172 -1.897250 0.131987 0.471342 2.009411 -0.807119 2.100433 -1.453366 2.768155 1.176344 2.305135 1.093133 1.160098 -2.148681 -0.684678 1.522892 -0.981277 0.215495 1.160904 2.010623 -2.119816 0.927284 -1.931715 -1.589013 +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) = 2.234117 -0.103848 3.869153 -7.529220 -6.824808 -0.051076 1.521139 -4.357760 -1.852979 7.320589 1.567701 -3.116823 -2.236562 9.025269 -2.321016 -4.100400 -0.959006 -5.918453 -0.660159 -1.319704 -1.442039 5.452603 -2.229954 -0.874963 2.156485 -1.473203 -0.348138 3.656913 -0.179319 -2.523439 -0.103999 -4.124756 -0.817881 8.798734 2.511592 -0.868616 -1.697822 13.349809 -5.827718 7.825176 -9.202657 -8.605831 7.843201 -1.725378 0.333304 -7.748503 -3.549235 5.223250 -1.105391 -1.711823 2.588109 0.456068 1.158881 -3.595738 0.369098 2.851071 -9.740205 4.794070 4.064706 -4.058202 -3.908317 -2.512263 -0.769476 1.531290 -5.619254 -5.192606 1.112753 1.158930 -2.984715 -0.050807 -1.930606 -5.058842 5.920883 3.112819 -2.292962 2.021377 0.885055 -5.532347 6.013047 -6.564080 -8.416449 -3.018778 -0.416180 -5.410254 5.900660 1.303484 5.752873 -12.019974 4.651096 -11.963231 2.647287 -6.096064 3.363912 9.136085 -3.940909 5.645219 3.271821 4.990274 5.785998 -0.903356 6.247088 4.339957 3.348166 5.463650 5.262615 5.951532 -4.359872 -4.595345 -5.957901 -6.213034 1.211165 -3.617792 -9.147623 4.120095 -0.166782 -1.205310 -1.138036 0.371987 -2.196489 7.969331 -11.143415 -1.264348 2.952805 -1.954289 1.416384 5.180826 -1.500136 -0.047392 -3.754797 6.294187 -3.687282 5.752788 -0.195328 6.384562 -4.137255 -3.912765 -6.562007 1.453940 2.127716 -5.740539 -7.428919 -10.402377 -2.206541 2.315418 -4.657738 9.448883 13.854797 -6.542465 -8.404110 9.023303 2.329313 -0.557229 4.867009 1.794507 7.114485 -1.738592 -3.873027 -3.584227 -3.917126 1.329081 5.602018 1.763057 -3.794354 5.886310 -1.715881 -5.325394 7.163408 -0.199928 -4.733352 -3.662010 1.938730 -5.315426 -4.608714 7.553088 -4.289215 7.164348 -1.912578 10.323563 -2.616108 -3.959588 2.508147 -9.132426 -0.406603 -6.367543 -0.535974 0.410163 4.329668 -5.949432 -4.458367 -2.761990 -3.522911 -4.874668 4.536334 -4.384791 1.412480 2.589755 2.494090 8.729933 8.657795 -0.392198 0.424836 -6.386258 4.608966 4.265230 1.032560 -9.539249 -1.923061 -1.588196 -2.556643 1.954487 0.090219 4.643965 -4.497326 -0.861865 1.588619 -0.445168 0.733943 2.246913 -9.254887 2.448268 -1.072637 5.697890 3.330686 6.876249 6.595738 7.596425 3.988768 2.992617 -1.985124 -1.187504 -1.629555 1.157878 2.915345 0.120305 4.839500 8.668461 6.579597 3.897304 7.585424 6.159996 -0.666462 7.843185 -1.530805 11.317022 -3.950263 -2.116654 0.094047 2.661874 6.819635 10.723316 -0.617147 -1.325858 5.244004 -0.262553 -3.924070 -4.015869 1.727482 -2.305129 1.078504 3.333319 4.931624 -1.559298 -1.049509 9.843554 -2.121206 -11.812055 5.733718 2.986745 5.954022 2.867600 0.813339 1.972860 3.987855 -4.507589 5.986881 6.919664 4.243065 -7.186771 -2.113684 1.300789 4.985856 5.470516 6.233233 -12.130215 2.102356 3.413146 6.938258 -0.375811 7.046627 -5.355345 -3.555809 4.397849 -1.360218 -0.760165 2.488882 3.072937 -4.114208 2.553460 -5.155235 -3.795381 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.915881 -0.746751 1.712473 -3.186215 -3.023074 -0.113769 2.614830 -1.637038 -0.843300 2.328064 0.499310 -1.196199 -2.656961 3.917215 -0.543398 -1.760888 -0.166037 -2.960808 -0.396769 -0.365936 -0.780154 2.193487 -0.913025 -0.452109 1.064027 -0.469432 -0.025875 3.011061 0.728409 -1.136730 0.129998 -1.775098 -0.312925 3.777465 1.042049 -0.233284 -0.870164 7.965667 -4.426831 4.907909 -4.214562 -3.845311 4.691169 -0.769482 -1.208001 -4.865117 -2.017434 2.452227 -2.147734 -1.240038 1.141263 0.352052 0.594159 -1.774553 -0.048595 2.696588 -5.275965 1.706146 1.725631 -1.718302 -1.867855 -1.060554 -0.336741 0.739704 -3.099961 -2.269640 0.422879 -1.473317 -1.430188 0.021250 -0.995008 -1.960429 3.472766 1.485936 -0.880436 0.903732 0.281556 -2.651859 2.550321 -2.540869 -4.566893 -1.406244 -0.425003 -2.493261 2.600991 0.442739 2.367432 -5.544894 0.787366 -6.044846 1.120093 -3.775983 1.387639 4.561213 -1.757708 3.847756 1.147513 1.529621 1.936398 -0.977397 2.510200 1.835414 2.252597 2.380958 2.334185 3.009594 -2.317380 -2.374322 -3.937230 -2.386568 0.770629 -1.679081 -5.686300 1.764483 -0.088211 0.092897 -0.019373 0.781793 -1.243365 3.697279 -3.735793 2.175015 1.195589 -0.841905 0.733051 3.419711 -0.557729 -0.120694 -1.285481 2.700646 -1.297209 3.893683 -0.051786 2.805507 -1.558903 -1.515852 -2.054526 0.570208 0.998712 -2.224196 -3.124437 -5.063137 -1.003192 1.199924 -2.004981 3.452287 7.506920 -3.089753 -3.844617 3.716003 1.118627 1.077826 1.440240 0.746258 3.890750 -0.782032 -1.677437 -1.419753 -1.510374 0.779077 5.158611 0.718638 -1.790148 2.693240 -0.946073 -3.266840 4.308133 0.112909 -1.823804 -0.828739 0.596994 -2.325112 -3.334462 4.349393 -1.764820 4.197114 -0.756473 4.332909 -0.959752 -1.364896 1.091896 -3.239099 -0.142585 -4.501410 -0.492428 0.326786 1.669001 -2.590954 -1.894018 -2.686451 -1.335039 -2.025203 2.054930 -1.825360 0.453736 0.892663 1.133445 3.565223 3.875490 -0.397363 -0.120795 -3.905320 1.989322 1.399033 -0.109296 -5.304303 -0.896483 -0.441198 -1.254175 1.255707 0.015536 1.929674 -2.558420 -0.260764 0.524539 -0.083411 -0.202884 0.905536 -6.407315 0.886709 0.231273 2.708770 2.263633 3.026131 3.769850 3.523990 1.442519 2.551492 -1.005401 -0.172930 -1.642562 0.311684 0.985528 0.138007 2.070178 3.807757 2.766080 1.559636 3.273346 2.644569 -0.542530 3.236256 0.643199 6.114142 -1.308873 -2.363013 0.510133 1.107225 2.683416 4.387907 0.841214 -0.087111 2.437479 -0.212939 -1.833095 -2.448694 0.639795 -1.164056 0.834216 3.986599 2.176565 -0.783332 -0.269861 4.215962 -1.121715 -6.914931 2.119732 1.385610 2.679881 1.451387 0.314028 1.200316 2.841458 -1.843449 3.770145 3.295241 1.665348 -2.966989 -0.876186 0.620066 1.818417 2.844685 2.416047 -7.758863 0.161690 0.927470 3.037487 0.053078 5.080502 -2.649721 -1.048639 1.835418 -1.198129 -0.089964 0.807562 1.411558 -1.431125 0.960471 -3.911401 -1.646762 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = 0.161459 0.170744 0.467715 -0.750559 -0.931859 -0.040060 0.189044 -0.355340 -0.166020 0.209592 0.303646 -0.269016 -0.296336 0.886379 -0.287096 -0.524320 -0.216464 -0.619904 -0.210068 -0.200446 -0.072537 0.584837 -0.176775 0.036348 0.252525 -0.152861 -0.217416 0.446623 0.172404 -0.511517 -0.020471 -0.318422 0.012102 0.831766 0.077756 -0.109503 -0.022955 1.461585 -0.368021 0.389054 -0.884540 -0.785162 0.800064 -0.232146 -0.104509 -1.112929 -0.652413 0.511820 -0.171634 -0.028449 0.336196 0.144592 -0.041524 -0.314910 0.176418 0.381673 -1.199268 0.667623 0.414839 -0.389290 -0.271479 -0.176664 -0.252190 -0.097014 -0.191078 -0.502641 0.105464 0.211551 -0.247062 0.031499 0.035247 -0.547153 1.131828 0.197415 -0.145539 0.366292 0.271792 -0.607745 0.698426 -0.639334 -0.858867 -0.256791 0.143299 -0.207010 0.690463 -0.054873 0.356547 -1.224894 0.193916 -1.194212 0.306906 -0.769149 0.269581 0.849362 -0.605593 0.594502 0.428864 0.098425 0.602244 0.157749 0.803300 0.317158 0.479658 0.623325 0.401096 0.396876 -0.286830 -0.322731 -0.687214 -0.832417 0.115656 -0.181659 -1.287131 0.397348 0.125954 -0.159345 -0.083188 -0.007931 0.146047 0.830771 -0.770806 0.116186 0.532919 -0.193978 -0.015098 0.700248 -0.217088 -0.087034 -0.556317 0.686946 -0.487921 0.723826 -0.013942 0.543505 -0.132587 -1.005534 -0.826521 0.017469 0.055389 -0.559838 -0.681793 -0.781752 -0.036719 0.123907 -0.487143 0.551596 1.560072 -0.745692 -0.951936 1.054357 0.824308 0.060430 0.490942 0.207860 0.912246 -0.093726 -0.525417 -0.411268 -0.539615 0.160377 0.045698 0.274102 -0.296494 0.489713 0.074798 -1.052273 1.163241 -0.254042 -0.537312 0.303253 0.216448 -0.566630 -0.619550 0.785136 0.607985 0.941950 0.050842 1.090276 -0.244818 -0.636036 0.219752 -0.355994 0.060648 -0.573898 -0.040707 0.178306 0.322760 -0.480732 -0.435165 -0.277291 -0.457244 -0.548494 0.315212 -0.106561 0.320141 0.296810 0.311534 0.208818 1.041088 0.018537 0.144062 -0.859957 0.440842 0.384125 0.136548 -1.163966 -0.046382 -0.143535 -0.152527 0.257173 -0.032652 0.435189 -0.105273 -0.125069 0.106912 -0.252618 0.090190 0.194600 -0.610416 0.098353 -0.294326 0.600179 0.150156 0.593672 1.058741 0.774755 0.486886 0.431427 -0.044067 -0.024769 0.105842 -0.031981 0.149062 0.203256 0.517075 0.833043 0.749434 0.374811 0.831970 0.619760 0.057388 0.863826 0.034654 1.459726 -0.439944 -0.304256 -0.139691 0.344058 0.807451 1.257797 0.084081 -0.017337 0.470824 0.303305 -0.262117 -0.737522 0.137422 -0.181359 -0.084007 0.626013 0.435686 -0.220966 -0.033340 0.948604 -0.196027 -1.139958 0.627278 0.225011 0.555893 0.034123 0.214027 0.016784 0.583634 -0.547443 0.438855 0.674474 0.572909 -0.832746 -0.498046 0.115545 0.620869 0.137644 0.836665 -1.243578 0.257487 0.445605 0.615912 -0.191869 0.539931 -0.562065 -0.634532 0.513258 -0.054753 -0.236542 0.458613 0.187810 -0.674537 0.181636 -0.440141 -0.545054 +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.900154 0.410376 0.944478 -1.679234 -2.182548 0.556717 -0.521046 -1.269132 -0.418409 0.822857 0.732138 -0.107232 -0.153255 1.486493 -0.855385 -0.979199 -0.553051 -1.934124 -0.088209 -0.778289 -0.300993 1.102046 -0.646022 0.178187 0.159845 -0.521339 -0.412408 0.492929 0.217492 -1.090599 -0.369677 -0.805907 -0.544114 1.860524 0.784937 -0.867818 0.190997 3.209905 -0.279090 -0.349809 -1.734792 -1.870704 1.252828 -0.530142 -0.139906 -1.494119 -0.888282 0.956163 -0.048165 0.555708 0.936321 -0.257139 0.206640 -0.117600 0.067583 0.231831 -2.414690 1.530180 0.811149 -0.660788 -0.635819 -0.577552 0.018850 0.128892 -0.070294 -0.983483 0.908771 1.092194 -0.311797 -0.224052 -0.085450 -1.397888 1.889135 0.634639 -0.162902 0.253146 0.481871 -1.453149 1.408180 -1.221531 -2.337947 -0.419874 -0.017594 -1.172418 1.638006 -0.242641 0.934314 -2.606265 1.159521 -2.963022 0.202822 -1.087757 0.694070 1.677168 -1.384321 0.721505 1.267321 1.056131 1.542581 -0.267405 1.852784 0.450101 0.447043 1.570708 0.812178 0.753666 -0.300780 0.084433 -1.243256 -1.735389 0.006638 -0.342683 -2.429005 1.112864 0.087817 -0.727851 -0.726409 0.032444 -0.048592 2.025792 -1.911509 -0.710885 0.576688 -0.389087 0.218903 1.158933 -0.513743 0.251529 -0.976834 1.536914 -1.413894 1.200468 -0.194339 1.149485 -0.161137 -1.653068 -2.628363 0.492563 0.721553 -1.503366 -1.641149 -1.380687 -0.188175 -0.194713 -1.003756 2.237782 3.314213 -1.898425 -2.108604 2.342862 1.119640 -0.272352 1.875196 0.379797 1.698278 -0.083891 -1.186907 -0.952482 -1.259690 -0.229245 -1.280344 0.526978 0.164266 1.097654 0.433137 -0.303262 2.164502 -0.405665 -1.644148 0.551748 0.638743 -1.070333 -1.307425 1.248707 1.641407 1.409051 1.181609 2.411600 -0.537468 -1.278334 0.408260 -0.676863 0.150237 -0.627621 -0.021221 0.038878 0.789461 -0.671841 -0.928791 -0.390651 -0.837676 -1.305661 0.563791 1.181835 1.122017 1.133023 0.618234 0.424814 2.912252 0.415043 0.230754 -1.482805 1.011493 1.269268 0.098133 -1.761168 -0.628169 -0.470609 -0.185752 0.811432 0.011345 1.419119 -0.529020 -0.284999 -0.095228 0.151380 0.793724 1.108421 -1.604487 0.584654 -0.907616 1.068582 0.290448 1.197940 1.712308 2.111343 1.497375 0.520564 -0.029577 0.130210 0.951034 -0.566111 0.753080 0.860626 1.121746 1.963198 1.656930 1.190040 1.572595 1.492929 0.361221 1.844626 -0.592846 3.344143 -1.622124 -0.172644 -0.935098 0.873509 1.786744 2.934865 -0.026994 0.123016 0.740835 0.553546 -0.512859 -1.961441 0.785453 -0.416940 0.715264 -0.013360 1.470518 -0.058400 -0.610544 2.060360 -0.274497 -2.323818 1.647493 0.572373 1.166193 0.415164 0.441355 -0.105469 0.699634 -1.435860 1.332463 2.017571 1.193765 -1.700147 -0.480492 0.352553 1.777226 -0.983776 1.908280 -1.901457 1.267613 1.024073 0.975406 -0.000539 0.823087 -1.542696 -1.645665 1.426918 -0.414564 -0.293618 1.720568 0.883939 -1.804331 0.959828 -0.392904 -1.200242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.942097 -0.666516 2.257920 -5.669420 -5.746413 1.133117 0.183353 -3.772978 -1.478944 4.216956 1.560069 -1.364761 -1.867470 5.759592 -1.201995 -3.387791 -0.635399 -4.569966 0.187783 -0.525160 -1.266030 3.928123 -2.121588 -0.050152 1.047704 -1.040609 -0.790806 2.516620 1.057464 -1.897960 -0.923452 -3.210791 -1.777935 6.431672 2.747729 -1.147076 -0.538969 11.134956 -3.404652 4.701441 -6.067123 -5.973352 5.268108 -1.440887 -0.526993 -4.900455 -2.448412 3.596731 -1.591492 -0.836042 2.885863 -0.502540 1.496602 -1.326124 0.296215 1.710729 -7.196880 3.385428 3.053926 -2.257857 -2.159305 -2.117416 -0.569911 1.413030 -3.912564 -3.529042 1.517650 1.026293 -1.520293 -1.022435 -1.488451 -4.120904 5.391306 2.917041 -1.954336 0.753243 0.881397 -4.603339 4.236854 -3.817370 -7.726792 -1.799969 -1.181874 -4.502816 5.113299 0.191367 4.559568 -8.932425 3.875800 -9.949971 1.362678 -4.202682 2.573250 7.127393 -3.623966 3.511796 3.223440 4.322595 4.399955 -1.521790 5.012829 2.598238 1.206428 4.452180 3.625385 3.903156 -2.733875 -2.184938 -4.533670 -4.625967 0.746972 -2.490737 -7.794509 3.323049 -0.081110 -0.318242 -1.403193 0.922587 -1.831283 5.829505 -7.283740 -0.824237 1.329784 -1.440899 1.618074 4.313409 -1.298924 0.465518 -2.629425 4.974252 -3.565889 4.466907 -0.705726 4.666741 -2.396063 -2.054206 -5.795609 1.598179 2.438911 -4.532254 -5.617875 -7.029035 -1.457726 1.058858 -3.323853 7.572178 10.974821 -5.874130 -5.967556 7.214919 0.855077 -0.109330 4.293069 1.102804 5.046553 -0.724175 -3.273790 -2.978439 -3.456246 -0.475901 2.617302 1.661462 -1.601421 4.159123 -1.056737 -2.035408 6.010002 0.071478 -4.685824 -2.204637 1.267461 -3.771284 -4.143441 5.628576 -1.993844 4.550488 0.616391 7.598501 -1.322806 -2.663086 1.928177 -4.992524 -0.270077 -4.713169 -0.721641 0.475037 2.683842 -3.928170 -3.090463 -1.994875 -1.997268 -4.181199 2.679439 -0.043033 1.548370 2.969131 2.130993 5.795682 7.823420 0.664016 -0.288083 -4.653279 3.652566 3.104336 -0.706517 -5.769882 -2.035276 -1.397917 -1.578361 2.194923 0.071779 3.914292 -3.745627 -0.890752 0.289265 0.652578 1.748490 3.171140 -8.206664 2.097793 -0.369544 3.614828 2.930025 4.554665 4.599161 6.671683 3.988387 2.466584 -1.131468 0.513964 -0.624697 -0.220683 2.321495 1.343273 3.633515 6.315820 5.292155 3.378543 5.145359 4.739588 0.674768 5.747023 -1.170288 9.638396 -2.608774 -1.843046 -0.536959 2.145615 5.202140 8.345967 -0.780782 0.430121 3.376855 -0.000794 -2.864110 -4.149106 2.349381 -1.780925 1.684723 1.597703 3.645036 -0.091134 -1.704549 7.106804 -1.744023 -9.156677 4.308274 2.249542 4.592364 2.840467 1.182975 1.467374 2.377857 -4.101094 5.921802 6.259472 3.201337 -4.921108 -0.718929 1.047902 3.666183 2.100806 5.160852 -7.542743 1.969923 2.287731 4.667145 0.551135 4.691508 -4.329057 -3.005770 3.878593 -1.945229 -0.264546 2.223675 2.617809 -3.063066 2.251329 -3.659735 -3.399785 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.591124 -0.430594 1.024434 -2.508695 -2.493166 0.238824 0.678011 -1.323846 -0.632902 1.375970 0.670669 -0.722288 -1.387287 2.645706 -0.263573 -1.642753 -0.154253 -2.019547 -0.097921 -0.033278 -0.571959 1.771858 -0.823800 0.021221 0.714804 -0.323310 -0.501655 1.530139 0.860931 -1.048993 -0.298194 -1.301099 -0.646130 2.831667 0.906097 -0.361839 -0.161357 5.389046 -1.849593 2.577557 -2.581220 -2.572710 2.703617 -0.666943 -0.606293 -2.638324 -1.365513 1.698383 -1.347391 -0.566999 1.360479 0.057722 0.509562 -0.794417 0.289348 1.266238 -3.595738 1.510461 1.390970 -0.829339 -0.867397 -0.897895 -0.573461 0.310376 -1.773951 -1.598400 0.478754 -0.139173 -0.822034 -0.402119 -0.593224 -1.655525 2.865453 1.284534 -0.815832 0.634153 0.506970 -2.064222 1.919966 -1.637140 -3.431165 -0.832857 -0.439667 -1.780280 2.474579 -0.094175 1.778653 -4.021934 1.192755 -4.402857 0.682748 -2.292338 1.070036 3.406109 -1.717909 1.989129 1.236494 1.313737 1.569326 -0.602801 2.269834 1.186995 0.733889 1.961729 1.599362 1.685158 -1.385299 -1.214249 -2.309856 -2.013670 0.390376 -1.111285 -3.858977 1.387569 0.003367 0.044855 -0.229673 0.524789 -0.750286 2.441776 -2.741313 0.416148 0.757995 -0.671533 0.635817 2.363255 -0.578946 -0.073002 -1.272260 2.280505 -1.396211 2.361360 -0.365959 2.036711 -0.746592 -1.165790 -2.168763 0.389893 0.858057 -1.818580 -2.468540 -3.160488 -0.551070 0.390972 -1.478583 3.000637 5.169159 -2.529915 -2.608154 3.313602 0.590935 0.549609 1.514741 0.484133 2.414633 -0.300209 -1.507835 -1.306404 -1.526612 -0.080651 1.605371 0.801503 -0.928420 1.745769 -0.471643 -1.472830 3.002117 0.027443 -1.901036 -0.682723 0.429380 -1.785134 -2.217829 2.928745 -0.545735 2.420790 0.205603 3.390210 -0.434849 -1.289395 0.973405 -1.762303 0.017151 -2.597269 -0.537098 0.414929 0.898197 -1.770811 -1.411605 -1.176602 -0.683738 -1.870991 1.138180 -0.168222 0.584148 1.091876 1.091247 2.291633 3.379539 0.084965 -0.062041 -2.529023 1.595841 1.123834 -0.414988 -2.916261 -0.539692 -0.390333 -0.759432 1.165129 -0.016941 1.499985 -1.608215 -0.478066 0.269541 0.149455 0.520300 1.220835 -4.044619 0.740394 0.071171 1.571881 1.566275 1.982821 2.493587 2.745073 1.567289 1.444899 -0.524178 0.454438 -0.685533 -0.143844 0.625442 0.760433 1.616156 2.659924 2.400388 1.305913 2.289241 2.107855 0.118679 2.522638 0.055423 4.480927 -0.631434 -1.265998 0.058755 0.858898 2.281223 3.579149 -0.280961 0.277525 1.689863 0.272883 -1.209688 -2.075660 0.820387 -0.875667 0.512426 1.503496 1.149641 -0.286783 -0.445411 3.135778 -0.938993 -4.368775 1.720585 0.993247 2.076857 1.016898 0.668619 0.660377 1.463786 -1.995514 2.710899 2.581068 1.431496 -2.100056 -0.402609 0.440536 1.421437 1.149191 2.298596 -3.795120 0.402365 0.830945 2.151711 0.307264 2.300214 -1.713308 -1.307403 1.582428 -0.895309 -0.184092 0.713441 0.984688 -1.334338 0.798183 -1.964150 -1.583075 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 1.061549 -0.073924 1.612824 -3.210509 -3.515300 0.629037 0.070583 -2.140457 -0.802548 1.652504 1.170283 -0.678150 -0.836971 3.237415 -0.943320 -1.861124 -0.546241 -2.787595 -0.163319 -0.853132 -0.576425 2.111095 -1.118095 -0.019905 0.598699 -0.835268 -0.513646 1.696667 0.546404 -1.423011 -0.346779 -1.633272 -0.868859 3.631747 1.376372 -0.874411 -0.086597 6.386256 -1.924051 1.694863 -3.392119 -3.448534 3.143903 -0.896057 -0.618622 -3.107064 -1.946801 1.924832 -0.919874 0.030000 1.553284 -0.261771 0.751031 -0.790508 0.105134 1.154050 -4.367221 2.068837 1.666178 -1.520807 -1.386631 -1.082246 -0.294931 0.418811 -1.610772 -1.979466 1.136653 0.831938 -0.673332 -0.460308 -0.513458 -2.445547 3.491965 1.329173 -0.576310 0.632680 0.668020 -2.768220 2.542340 -1.774884 -4.353249 -1.073397 -0.333924 -2.507601 2.978607 -0.242739 2.316392 -5.095864 1.730231 -5.668741 0.712894 -2.497059 1.376484 3.702600 -2.462733 2.055935 1.959642 2.133861 2.283306 -0.629304 3.063902 1.174318 0.914193 2.696633 2.087903 1.937816 -1.259979 -0.956155 -2.730336 -2.876212 0.421887 -1.374234 -4.833997 1.933744 -0.049397 -0.887550 -0.984334 0.317155 -0.558532 3.831839 -3.420169 0.048412 1.119640 -0.810716 0.430909 2.496632 -0.762307 0.138502 -1.639527 2.779377 -2.228437 2.642944 -0.381856 2.490292 -0.802324 -2.124824 -3.595798 0.773986 1.179406 -2.630514 -3.135307 -3.440863 -0.657669 0.367325 -1.858302 3.954308 6.372170 -3.401471 -3.814361 4.143368 1.638199 -0.017644 2.623511 0.787303 3.205499 -0.382539 -2.030949 -1.901485 -2.158760 0.009459 0.322856 0.859938 -0.571819 2.366256 -0.066418 -1.657347 4.565076 -0.439792 -2.637985 0.071078 0.988271 -2.151697 -2.666231 3.100602 0.869207 2.962010 0.908189 4.449088 -0.884940 -1.963652 0.927876 -2.021825 -0.040753 -2.388149 -0.250235 0.188303 1.482435 -1.692210 -1.880550 -1.332184 -1.320873 -2.250377 1.485039 0.690345 1.369076 1.702943 1.088900 1.848863 4.755937 0.380316 0.084919 -2.886977 1.967674 2.126652 -0.004966 -3.670465 -1.018504 -0.709231 -0.708381 1.111169 0.096991 2.477303 -1.781686 -0.419254 0.052342 0.240143 0.876519 1.685136 -4.548135 1.147447 -0.763002 2.092252 1.323196 2.530878 3.241503 3.743480 2.241481 1.441185 -0.465179 0.226261 0.108069 -0.438176 1.191214 1.187531 2.071936 3.802876 3.012924 2.054195 3.011515 2.744751 0.605159 3.348512 -0.451371 5.883599 -1.756933 -0.995757 -0.724433 1.434742 3.162450 5.044098 0.246350 0.158289 1.792495 0.578602 -1.438347 -3.239085 1.200364 -0.855865 1.008429 1.197588 2.241233 -0.247800 -0.923841 4.056536 -0.730225 -5.103532 2.645032 1.232210 2.437557 1.117416 0.649260 0.471958 1.620677 -2.320387 3.063984 3.526841 1.990688 -3.102563 -0.716185 0.649767 2.544297 0.396857 3.169186 -4.598462 1.608448 1.370218 2.397186 0.015974 2.628903 -2.634499 -2.063202 2.248483 -0.962757 -0.302446 2.008829 1.384530 -2.566902 1.421878 -1.981634 -2.061481 +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.092244 -0.183776 0.138003 -0.667687 -0.715512 0.099628 -0.204628 -0.345898 -0.140475 -0.183851 0.239326 -0.267891 -0.357939 0.828616 -0.093109 -0.717916 -0.096087 -0.150063 -0.023772 0.171639 -0.128000 0.447490 -0.221480 0.027764 0.181774 -0.046807 -0.257233 0.257116 0.543017 -0.393995 -0.312823 -0.309239 -0.164176 0.781637 0.199576 0.113737 0.090755 1.377405 0.091313 0.673158 -0.704781 -0.519032 0.558298 -0.200491 -0.130689 -0.663490 -0.538057 0.426404 -0.659833 -0.015949 0.456327 -0.005746 -0.051327 -0.155953 0.279238 0.341871 -1.010504 0.728311 0.407254 -0.025275 0.034915 -0.263896 -0.363836 -0.114425 -0.167479 -0.426725 0.028746 0.283421 -0.362080 -0.127651 -0.142584 -0.516676 1.290905 0.358913 -0.389657 0.237676 0.243385 -0.426245 0.466587 -0.632930 -0.925206 -0.170701 0.052181 -0.011425 0.811302 0.067783 0.362481 -1.123606 0.283027 -1.231023 0.300528 -0.718846 0.360710 0.952121 -0.767670 0.373719 0.433882 0.104155 0.567799 0.264755 0.723731 0.229226 -0.064297 0.380610 0.369761 0.184251 -0.136818 -0.227629 -0.338090 -0.672306 -0.096955 -0.131909 -1.296047 0.314687 -0.055355 0.549172 -0.168776 0.343020 0.001053 0.165085 -0.726558 -0.120884 0.203546 -0.201589 0.389518 0.690351 -0.232273 -0.004135 -0.529232 0.675894 -0.424895 0.456214 -0.217801 0.506211 -0.033342 -0.696693 -0.942982 0.022302 0.249504 -0.504516 -0.748200 -0.691166 -0.103473 0.122695 -0.404190 0.711940 1.366019 -0.707016 -0.622815 1.008383 0.238076 0.399891 0.690389 0.150604 0.750097 -0.112599 -0.300150 -0.249202 -0.437153 -0.165071 -0.441850 0.234351 -0.337934 0.333351 -0.025966 -0.660311 0.845310 -0.057318 -0.565800 -0.217623 0.017808 -0.490711 -0.599599 0.846215 0.071618 0.643819 0.106180 1.009333 -0.182104 -0.560170 0.327418 -0.243661 0.012107 -0.424124 -0.166237 0.095468 0.245096 -0.703165 -0.406266 -0.043703 -0.189648 -0.542082 0.259904 0.536148 0.056665 0.324040 0.317395 0.520333 0.977580 0.063287 0.129159 -0.742700 0.417780 0.299765 -0.285682 -0.741465 0.046145 -0.160705 -0.142473 0.378131 -0.011246 0.246779 -0.265759 -0.283745 -0.086206 -0.040335 0.496752 0.351064 -0.462925 0.083212 -0.024944 0.304498 0.443441 0.509580 0.758958 0.760469 0.516444 0.292674 -0.025920 0.146298 0.219874 -0.085307 0.122341 0.368741 0.428706 0.547945 0.674492 0.251705 0.588314 0.538601 0.120219 0.744055 0.236923 1.295131 -0.091460 -0.335183 -0.028514 0.051523 0.753033 1.181020 -0.594194 0.313193 0.446908 0.255199 -0.113710 -0.696884 0.198867 -0.189186 -0.362239 0.439917 0.061038 0.049071 -0.192812 0.867073 -0.264015 -0.987087 0.567992 0.210308 0.504902 0.131172 0.263689 -0.006411 0.358547 -0.730604 0.524288 0.620691 0.532060 -0.547137 -0.252317 0.037265 0.382853 0.209794 0.680053 -0.320798 0.201684 0.476750 0.676509 0.197432 0.016169 -0.362271 -0.610030 0.322092 -0.259507 -0.126043 0.048732 0.150299 -0.277598 0.000523 -0.241078 -0.756852 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 1.680543 -0.496385 0.524259 -2.740148 -2.278674 1.337530 -1.189536 -2.328825 -0.485513 1.183912 1.229728 -0.454744 0.653766 2.372746 -0.526576 -1.348849 0.163869 -2.171966 0.230691 0.187402 -0.402036 1.296646 -1.135124 -0.453880 -0.119737 -0.395023 -0.241085 0.593333 0.336100 -0.741587 -1.705363 -1.199459 -1.244488 3.196643 1.835793 -1.233949 0.358564 4.733603 -0.591633 1.051997 -2.142245 -2.043655 1.914119 -0.700448 -0.588384 -1.074369 -1.315886 1.250185 0.276798 -0.311404 1.355858 -1.157674 0.844348 -0.254592 -0.381116 0.700564 -2.782036 1.123622 1.409825 -0.062184 -0.932890 -1.422733 0.784863 0.822817 -1.926833 -1.587870 1.703634 1.214615 -0.434634 -0.732389 -1.372645 -2.962145 2.924261 1.661034 -0.915758 -0.307221 0.094394 -3.211657 1.795520 -0.489015 -3.669030 -0.426099 -0.866718 -2.547300 2.978783 -0.724897 2.340559 -4.237816 2.554207 -5.061541 0.155038 -1.856497 1.545407 3.276796 -2.526673 0.385971 1.525385 4.018505 1.853420 -0.523433 2.731595 1.093110 -0.590402 1.216207 2.191242 1.343771 -0.637238 -0.308553 -1.145720 -2.200361 0.085125 -1.100151 -4.407673 1.784869 -0.868095 -0.536594 -1.463403 0.637025 -0.929804 3.059907 -3.212235 -1.590477 0.039436 -0.668634 1.135724 2.024646 -0.829769 0.731971 -1.392523 2.412102 -1.355552 1.047518 -0.786634 1.792711 -1.753337 -0.586643 -3.205405 1.063498 1.881360 -2.623012 -3.289521 -2.950616 -0.704201 0.190379 -1.323262 4.507533 4.563938 -2.527086 -2.668589 3.313007 0.574551 -0.459533 3.350218 0.253398 2.806035 -0.994774 -0.622180 -1.142155 -1.092988 -1.210910 -1.833824 0.046644 0.020190 1.514216 -0.727429 -0.097822 4.562044 0.278206 -2.197513 -0.065302 0.407848 -1.507993 -2.517592 2.919818 -0.130726 1.617859 1.443955 3.882760 -0.793970 -1.082133 1.173856 -1.124385 -0.222062 -1.709255 -0.342012 -0.333622 2.011203 -1.235114 -1.639817 0.085492 -0.641187 -1.681507 1.570142 2.368933 1.006270 1.560452 0.519206 1.778925 4.030723 0.258345 0.032853 -1.753771 1.577217 2.626984 -1.096815 -1.296976 -1.292679 -1.378240 -0.362101 0.393890 0.159044 2.279131 -2.580704 -1.168402 -0.144852 1.222519 1.701725 1.768314 -4.528147 1.450523 -0.791484 0.994360 1.152964 2.349318 1.731389 3.272499 2.092132 -0.324021 -0.022578 0.466493 -0.615869 -0.708073 0.991554 1.665092 1.564818 3.173774 1.992598 1.877222 1.846360 1.941339 1.279101 2.681835 -0.138203 4.458336 -0.737372 -0.318214 -0.786706 0.170290 2.895562 4.709119 -0.704785 0.398734 0.926371 0.245844 -1.652834 -2.825931 0.968713 -0.643751 0.711465 -1.047448 1.226029 0.592839 -1.549774 3.737444 -0.274821 -4.067874 2.001602 0.937689 1.848935 2.309370 0.021146 1.086899 0.507471 -1.720423 3.159163 3.013442 1.675172 -1.897250 0.131987 0.471342 2.009411 -0.807119 2.100433 -1.453366 2.768155 1.176344 2.305135 1.093133 1.160098 -2.148681 -0.684678 1.522892 -0.981277 0.215495 1.160904 2.010623 -2.119816 0.927284 -1.931715 -1.589013 +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.084720 -0.136996 0.364287 -0.632961 -0.706511 0.018957 0.144361 -0.295462 -0.104661 -0.182050 0.304377 -0.243683 -0.352723 0.769639 -0.049070 -0.585740 -0.071636 -0.064370 -0.105927 0.023972 -0.027186 0.438107 -0.159376 0.023451 0.197265 -0.153965 -0.156797 0.525450 0.303483 -0.227831 -0.062963 -0.301330 -0.061673 0.733834 0.112730 0.220645 -0.010139 1.281746 -0.303238 0.802678 -0.685893 -0.536947 0.697284 -0.180476 -0.192859 -0.895021 -0.730678 0.379214 -0.532504 -0.165394 0.391667 0.073828 0.120024 -0.224430 0.262369 0.404580 -0.920230 0.370042 0.348818 -0.364996 -0.092793 -0.155134 -0.444119 -0.080387 -0.363302 -0.390143 -0.008046 0.129418 -0.152569 -0.042906 0.006871 -0.512748 1.269565 0.220218 -0.262832 0.305045 0.356900 -0.498272 0.540993 -0.248538 -0.801503 -0.256622 0.000538 -0.140174 0.698179 -0.057096 0.424545 -1.059058 0.059218 -1.086907 0.393391 -0.732788 0.260541 0.803315 -0.654476 0.519632 0.443973 0.104909 0.352491 0.190127 0.631160 0.303061 0.191028 0.459277 0.521955 0.231846 -0.283587 -0.449700 -0.616851 -0.676920 0.133780 -0.356115 -1.295984 0.235608 0.078164 0.181973 -0.121886 0.147145 0.122796 0.550281 -0.502592 0.493148 0.448247 -0.189150 0.049417 0.656199 -0.186577 -0.090582 -0.428508 0.617919 -0.500740 0.604176 -0.123256 0.498931 -0.058866 -0.682581 -0.587894 0.010312 0.076009 -0.416168 -0.624011 -0.657820 -0.100973 0.368353 -0.339219 0.334559 1.334862 -0.656685 -0.711165 0.870455 0.640504 0.208917 0.326903 0.253551 0.717775 -0.079761 -0.421177 -0.505673 -0.506133 0.089642 0.215802 0.257025 -0.358386 0.511452 -0.052468 -1.149334 1.328213 -0.280219 -0.484605 0.106599 0.088438 -0.508115 -0.551019 0.837464 0.234041 0.765832 -0.105814 0.934168 -0.167157 -0.531953 0.167100 -0.263787 -0.015460 -0.635229 -0.073203 0.204099 0.236275 -0.550583 -0.434837 -0.289992 -0.328835 -0.395719 0.272403 -0.041983 0.106138 0.265357 0.271804 0.282311 0.851708 0.098637 -0.010178 -0.699397 0.397255 0.235158 -0.064045 -0.888188 0.046973 -0.099224 -0.138076 0.083916 0.036633 0.325382 -0.224461 -0.125224 -0.025530 -0.253181 0.104766 0.225936 -0.768762 0.055132 0.064504 0.420034 0.327031 0.453633 0.973002 0.674627 0.433585 0.448443 -0.046195 0.104017 -0.143613 0.040919 0.130152 0.244676 0.379076 0.670326 0.634841 0.257865 0.655848 0.563016 0.310971 0.687112 0.266525 1.190139 0.075035 -0.371270 0.046037 0.244102 0.694512 1.031164 0.005475 0.241674 0.428702 0.301188 -0.238902 -0.704393 0.135372 -0.142247 -0.252454 0.791679 0.202081 -0.095613 -0.101911 0.820686 -0.177827 -1.014058 0.405322 0.207634 0.487677 0.144125 0.199529 0.087890 0.444573 -0.463226 0.547424 0.503433 0.474306 -0.694459 -0.362644 0.068585 0.270411 0.519908 0.690635 -0.874913 0.080620 0.262726 0.657398 -0.095954 0.424363 -0.409562 -0.388711 0.337016 -0.221828 -0.168610 0.116838 0.042432 -0.357430 0.010555 -0.564027 -0.616202 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = -0.125002 0.065323 0.317828 -0.474450 -0.563755 -0.130714 0.335773 -0.105951 -0.100388 -0.248039 0.261314 -0.251950 -0.479060 0.530526 -0.021881 -0.493459 -0.091787 -0.186648 -0.234697 -0.040896 -0.036022 0.320686 -0.060459 0.000756 0.241904 -0.057454 -0.181853 0.506638 0.342935 -0.372391 0.033537 -0.154258 0.117902 0.537984 -0.060961 0.124830 -0.002888 0.959811 -0.268032 0.437770 -0.521828 -0.375423 0.664549 -0.158359 -0.231310 -0.916304 -0.563504 0.382439 -0.502438 -0.125123 0.270719 0.197502 -0.012669 -0.309058 0.190835 0.507262 -0.859465 0.454551 0.300756 -0.280737 -0.092182 -0.048854 -0.394543 -0.182813 -0.039823 -0.343617 -0.078076 -0.080922 -0.192419 0.016126 0.045982 -0.314984 1.099305 0.073974 -0.102236 0.370218 0.231898 -0.300479 0.450692 -0.281436 -0.479228 -0.211975 0.163386 0.118191 0.515697 -0.087133 0.080297 -0.787738 -0.250444 -0.722296 0.325550 -0.634392 0.158925 0.547790 -0.467167 0.509301 0.227145 -0.396060 0.182542 0.197700 0.503751 0.099337 0.408641 0.356290 0.289032 0.135184 -0.236472 -0.385497 -0.527236 -0.557721 0.111917 -0.130526 -0.977462 0.200048 0.059367 0.062076 0.086325 0.002098 0.207276 0.366344 -0.167101 0.492250 0.456269 -0.143605 0.000674 0.637365 -0.127647 -0.156828 -0.358280 0.449931 -0.267240 0.597300 -0.043993 0.366849 0.203192 -0.893031 -0.385105 -0.085394 -0.034535 -0.258110 -0.411924 -0.416931 0.029255 0.106901 -0.311190 -0.018622 1.044234 -0.442991 -0.582348 0.683501 0.700642 0.313024 0.123111 0.175568 0.679746 -0.088136 -0.333249 -0.296273 -0.394479 0.218716 0.219154 0.179736 -0.364509 0.331743 0.051778 -1.067583 0.872480 -0.210259 -0.270700 0.442886 0.063189 -0.402955 -0.533953 0.616606 0.635391 0.737072 -0.024989 0.720641 -0.145710 -0.527477 0.161474 0.098929 0.044652 -0.492597 -0.136407 0.281666 0.062304 -0.360357 -0.306218 -0.321516 -0.206029 -0.327046 0.222494 -0.114607 0.105494 0.102799 0.219667 -0.093303 0.579275 -0.056371 0.092934 -0.686720 0.280640 0.104469 0.103678 -0.861572 0.112863 -0.015763 -0.118599 0.248815 -0.028565 0.216291 0.075214 -0.080593 0.150983 -0.311528 -0.036000 0.039924 -0.399424 -0.044954 -0.007078 0.284502 0.177456 0.398593 0.858927 0.413100 0.227505 0.440008 -0.028563 0.088641 -0.089625 -0.053901 -0.091561 0.236752 0.340945 0.379530 0.490765 0.143319 0.581896 0.373220 0.037625 0.557892 0.297731 0.918589 0.011954 -0.365646 0.087285 0.169523 0.528063 0.716782 0.040163 0.010135 0.378936 0.346752 -0.103022 -0.593356 -0.003008 -0.118028 -0.268699 0.875638 0.116267 -0.197355 0.049258 0.623907 -0.189430 -0.768867 0.346192 0.140967 0.367850 -0.102582 0.169359 -0.009084 0.479272 -0.384306 0.196384 0.302999 0.418924 -0.565933 -0.368235 0.056826 0.269992 0.238475 0.516823 -0.917449 -0.154905 0.212341 0.489573 -0.112462 0.351900 -0.275788 -0.385464 0.241317 -0.010942 -0.144713 0.085517 -0.031721 -0.392142 -0.048563 -0.405094 -0.348743 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = -0.094754 0.139906 0.405335 -0.597451 -0.702736 -0.248341 0.504448 -0.096086 -0.104645 -0.054371 0.273983 -0.395710 -0.456007 0.812756 -0.099447 -0.497493 -0.122729 -0.321299 -0.318861 -0.048167 -0.009178 0.494939 -0.048565 0.002862 0.332902 -0.043672 -0.216052 0.592353 0.285560 -0.445324 0.071656 -0.181273 0.203614 0.656064 -0.153599 0.075488 -0.046825 1.182057 -0.518221 0.644336 -0.698208 -0.507598 0.836917 -0.170442 -0.213762 -1.199671 -0.738818 0.477320 -0.348668 -0.229831 0.256800 0.314833 -0.099255 -0.438930 0.247477 0.598725 -1.071114 0.511092 0.370486 -0.333699 -0.180554 -0.067517 -0.404015 -0.201092 -0.232429 -0.443399 -0.112182 -0.122947 -0.253023 0.085871 0.073813 -0.396713 1.172938 0.081547 -0.142400 0.488027 0.266951 -0.482541 0.612371 -0.467846 -0.531352 -0.236091 0.217555 0.058915 0.572925 -0.092161 0.166126 -0.996997 -0.196567 -0.837861 0.389989 -0.847256 0.173058 0.738272 -0.515109 0.658931 0.205754 -0.283691 0.337140 0.291164 0.629870 0.275774 0.613220 0.419428 0.354889 0.324538 -0.352134 -0.519469 -0.672717 -0.705917 0.176310 -0.171923 -1.196181 0.246668 0.132951 -0.063338 0.157080 -0.060044 0.237622 0.618567 -0.372616 0.509839 0.615974 -0.168453 -0.103661 0.775962 -0.168232 -0.226550 -0.512192 0.560309 -0.250235 0.749193 0.020676 0.431938 -0.051766 -1.041487 -0.374086 -0.136391 -0.134144 -0.338676 -0.503997 -0.687222 0.036987 0.167483 -0.401615 0.044788 1.293959 -0.492576 -0.752188 0.852255 0.936156 0.253822 0.116428 0.173257 0.877547 -0.135203 -0.399168 -0.340012 -0.423572 0.303745 0.482430 0.237126 -0.484719 0.366490 -0.012284 -1.497585 1.121702 -0.239602 -0.269315 0.420571 0.119388 -0.510896 -0.610577 0.828649 0.545704 0.973028 -0.218245 0.882027 -0.177467 -0.593709 0.233098 -0.119433 0.066957 -0.709850 -0.123582 0.315296 0.189187 -0.442389 -0.357402 -0.359545 -0.345679 -0.409817 0.281297 -0.455232 0.137197 0.064799 0.286428 0.022196 0.651814 -0.121220 0.157318 -0.870362 0.333526 0.173214 0.157703 -1.175132 0.163767 -0.058581 -0.161688 0.165666 -0.067565 0.212661 0.015532 -0.128875 0.219044 -0.422486 -0.131161 -0.060429 -0.540324 -0.030651 -0.135900 0.498604 0.163504 0.510065 1.086615 0.467904 0.252433 0.494744 -0.044487 -0.010393 -0.212239 0.076567 -0.085614 0.110367 0.424994 0.599859 0.586408 0.168922 0.736522 0.446909 -0.036833 0.700650 0.325868 1.128100 -0.024577 -0.439007 0.104813 0.208190 0.642926 0.949823 0.174353 -0.085257 0.479413 0.359305 -0.221046 -0.592745 -0.071112 -0.155542 -0.342653 1.012966 0.113924 -0.338249 0.160450 0.770013 -0.215448 -0.983859 0.389763 0.149365 0.456952 -0.099654 0.179182 0.054305 0.659804 -0.412549 0.251890 0.349474 0.484917 -0.688030 -0.562174 0.062818 0.352794 0.449261 0.637910 -1.314415 -0.063936 0.300697 0.618472 -0.233518 0.574403 -0.337733 -0.417187 0.304619 0.049758 -0.247003 0.103329 -0.004795 -0.510549 -0.031027 -0.579999 -0.420855 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 1.114772 -2.223830 0.756977 -2.060505 -1.883913 0.711805 -0.924756 -1.428235 -0.425642 0.582701 0.616371 -0.894405 -0.535429 2.223935 0.541710 -2.014337 0.837428 -0.487466 0.768929 -0.125579 -0.255722 1.144701 -0.381735 -0.382522 0.218614 -0.636713 -0.724768 1.283057 1.481930 -0.298430 -0.597690 -1.285723 -1.035231 2.863932 1.184647 -0.127044 -0.404788 5.035533 0.103038 2.734296 -2.262407 -1.826632 2.565192 -0.886652 -0.300118 -0.700552 -1.573039 1.743148 -1.215456 -1.190184 1.014460 -0.173204 1.153324 -0.884909 -0.711849 0.989692 -2.619654 0.693099 0.934669 -1.071700 -0.812052 -0.695314 -0.799248 1.115542 -2.434755 -1.774378 1.012105 0.553580 -1.033145 -0.570757 -1.048463 -1.857620 2.957916 1.450640 -0.972644 0.094533 1.093572 -1.266585 1.886871 0.320767 -3.642072 -1.029793 -1.601466 -2.608653 2.831618 -0.504938 2.875027 -4.434245 2.680124 -5.081029 1.357774 -2.319171 1.486801 3.450433 -2.685417 1.578175 1.639723 3.284497 1.653678 -0.572771 2.756514 1.317618 -0.654485 1.719100 2.777650 0.748062 -0.541826 -0.912831 -1.451355 -1.819731 0.458967 -2.097256 -3.838305 1.769882 -0.573459 0.713907 -0.720771 1.473688 -0.896064 1.951114 -3.102338 0.110403 0.706294 -0.813457 0.941437 1.703998 -1.440868 0.108460 -1.342744 2.855107 -1.655835 1.378095 0.062598 2.266744 -0.824680 -0.113273 -2.322420 1.015740 1.583295 -2.355533 -3.167102 -3.007344 -0.555449 0.956011 -1.533554 4.226326 4.861174 -2.165636 -1.723016 2.938069 -0.194088 0.264245 2.375127 0.458689 2.768541 -0.740496 -1.394726 -1.440960 -1.258155 -0.064990 -0.458064 0.616886 -0.584740 2.133904 -0.629848 -0.511515 4.429650 -0.467117 -1.995279 -1.020547 0.187792 -1.137301 -2.228556 2.781445 -1.192325 1.505251 0.658978 3.528885 0.359312 -1.212718 1.415297 -1.554252 -0.739098 -1.353526 0.014417 -0.502386 1.181916 -2.100814 -1.860001 -0.958089 -1.226561 -1.327828 1.485781 2.293921 0.801210 1.904657 1.010998 2.735251 3.088562 0.757420 -0.491905 -2.545554 1.439136 2.032136 -0.957391 -0.751728 -0.986301 -0.838442 -0.287619 0.170686 0.430346 2.099925 -2.602009 -1.036045 -0.605438 1.185039 1.088296 1.666911 -4.573102 0.845929 1.422761 1.284409 1.785154 2.627992 2.078482 2.551835 1.691004 0.753054 -0.422060 0.943354 -1.215159 -0.279199 0.478940 1.524633 1.190989 2.057851 2.132305 1.512721 2.632946 1.827228 1.260077 2.528668 0.286516 3.978598 -0.207079 -0.863252 0.058377 0.201738 2.954704 4.257907 -0.497841 0.684287 1.665989 0.031946 -1.626795 -2.626850 0.815113 -0.607186 0.794185 0.177489 0.659153 0.680346 -1.361992 2.958590 -0.216705 -4.667842 2.368526 1.053546 1.875920 2.751816 0.397202 1.268200 0.356414 -2.015848 2.486456 2.758421 1.184167 -2.213541 0.434306 0.394352 1.338054 0.854116 2.348408 -1.612216 1.497770 1.000390 2.330141 0.776898 0.536269 -2.078656 -1.289352 1.304018 -1.811246 -0.058667 0.735288 0.778299 -1.436599 0.472247 -1.987774 -1.581508 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = -0.032439 0.101608 0.326526 -0.478038 -0.545097 -0.185388 0.400313 -0.086708 -0.094532 -0.021539 0.190210 -0.281589 -0.351555 0.666921 -0.096113 -0.394461 -0.103900 -0.298334 -0.254282 -0.019059 -0.016068 0.406758 -0.044197 -0.001191 0.269867 -0.032107 -0.167166 0.430397 0.148521 -0.384207 0.053983 -0.164649 0.153338 0.529585 -0.115308 0.095647 -0.060507 0.951116 -0.358892 0.555436 -0.594941 -0.450207 0.648814 -0.153852 -0.125395 -0.963460 -0.550854 0.387466 -0.202947 -0.198945 0.186224 0.246532 -0.120541 -0.356470 0.192043 0.441025 -0.852604 0.411505 0.295729 -0.269787 -0.159231 -0.064367 -0.313322 -0.178982 -0.179409 -0.357975 -0.092472 -0.064553 -0.231313 0.094400 0.058644 -0.309407 0.927229 0.085412 -0.112271 0.387133 0.211848 -0.355791 0.489413 -0.436460 -0.432951 -0.199918 0.169710 0.061377 0.449680 -0.034906 0.145909 -0.807662 -0.088905 -0.679106 0.312460 -0.669426 0.141588 0.593149 -0.368442 0.537197 0.187223 -0.187610 0.278631 0.250825 0.506161 0.237304 0.466015 0.348042 0.287719 0.245617 -0.280042 -0.413564 -0.523195 -0.563518 0.147182 -0.124264 -0.931239 0.199060 0.127521 -0.007314 0.106721 -0.003848 0.199356 0.449282 -0.404903 0.364076 0.498503 -0.134979 -0.066802 0.578563 -0.135788 -0.180696 -0.426313 0.443562 -0.214947 0.589664 0.023420 0.351958 -0.057074 -0.802678 -0.299811 -0.118306 -0.109901 -0.280269 -0.406550 -0.570955 0.019602 0.187782 -0.335882 0.086337 1.040092 -0.406186 -0.594862 0.680881 0.745538 0.187177 0.091720 0.151147 0.674817 -0.096676 -0.332196 -0.236558 -0.329762 0.248982 0.327104 0.192353 -0.391665 0.305679 -0.009106 -1.190717 0.898676 -0.203213 -0.222457 0.321209 0.080795 -0.414527 -0.460638 0.635854 0.413401 0.787339 -0.179938 0.706894 -0.146070 -0.435944 0.168651 -0.168567 0.050161 -0.563780 -0.073114 0.211486 0.159848 -0.395936 -0.289211 -0.249157 -0.315969 -0.329281 0.236185 -0.392766 0.110344 0.059893 0.225707 0.076409 0.516261 -0.098100 0.116583 -0.684150 0.272017 0.121697 0.136087 -0.923696 0.118863 -0.042210 -0.131992 0.144202 -0.047118 0.157841 0.022314 -0.088334 0.180176 -0.336345 -0.110493 -0.045470 -0.343057 -0.058881 -0.095533 0.417441 0.119147 0.412180 0.854236 0.382865 0.198811 0.387606 -0.041680 -0.015878 -0.160877 0.057573 -0.067038 0.091481 0.340030 0.457172 0.479479 0.140743 0.602356 0.364849 -0.020898 0.571274 0.241626 0.907206 -0.071728 -0.349315 0.084579 0.177932 0.520062 0.740498 0.084497 -0.040203 0.384258 0.255088 -0.183701 -0.404398 -0.045849 -0.121991 -0.289648 0.786899 0.125020 -0.249150 0.122488 0.622764 -0.179029 -0.789271 0.314881 0.126033 0.375988 -0.061028 0.154261 0.062492 0.530057 -0.308621 0.180552 0.284933 0.396904 -0.563882 -0.452491 0.051542 0.286242 0.353656 0.520347 -1.004140 -0.040872 0.249169 0.493140 -0.212429 0.417698 -0.274036 -0.332932 0.249171 0.042764 -0.198645 0.117750 0.011741 -0.359572 -0.052414 -0.462372 -0.326620 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.087516 0.047972 0.139402 -0.179481 -0.124929 -0.137694 0.370424 0.098109 -0.029918 -0.308899 0.109781 -0.126130 -0.335691 0.190382 0.103389 -0.238347 0.015729 -0.184962 -0.225238 0.081195 -0.017057 0.095854 0.030971 -0.010041 0.176040 0.066516 -0.115196 0.302059 0.150466 -0.317362 0.009990 0.015311 0.129796 0.204565 -0.155000 0.098634 0.034571 0.394090 -0.121712 0.248493 -0.115329 -0.066169 0.335800 -0.083067 -0.217833 -0.454032 -0.236713 0.216979 -0.241947 -0.172385 0.124413 0.189859 -0.133603 -0.229961 0.093431 0.402934 -0.453323 0.183896 0.129721 -0.001857 -0.034008 0.003514 -0.206851 -0.214414 0.060163 -0.161199 -0.060512 -0.246883 -0.168390 0.053680 0.023274 -0.104763 0.601399 0.029060 0.027003 0.258776 0.114714 -0.085914 0.213500 -0.083327 -0.085443 -0.081786 0.106887 0.153908 0.296652 -0.125450 -0.155829 -0.295992 -0.260545 -0.196690 0.145418 -0.391467 0.028264 0.232502 -0.150907 0.291936 -0.006853 -0.362666 -0.124671 0.121304 0.230036 -0.032255 0.263373 0.099071 0.128964 -0.051192 -0.162570 -0.238462 -0.261873 -0.231743 0.087036 -0.016510 -0.409263 0.066890 0.029014 0.032798 0.195451 0.023856 0.143547 0.015932 0.066983 0.385651 0.252249 -0.059485 -0.014928 0.388532 -0.064663 -0.160235 -0.191237 0.198814 0.015944 0.339432 -0.017022 0.099897 0.244671 -0.452161 0.029625 -0.149329 -0.073149 -0.029802 -0.154599 -0.138363 0.075896 0.017356 -0.143454 -0.121804 0.428473 -0.080955 -0.176888 0.291082 0.458373 0.326275 -0.098774 0.052822 0.337147 -0.075724 -0.116649 -0.033652 -0.116016 0.154298 0.038898 0.061231 -0.207194 0.082037 0.033607 -0.590233 0.494015 -0.087101 -0.003063 0.481790 -0.039606 -0.191288 -0.376775 0.331360 0.537450 0.418391 0.063502 0.304861 -0.020579 -0.215766 0.116561 0.306964 0.077610 -0.367103 -0.157829 0.154494 -0.068191 -0.127961 -0.122899 -0.188245 -0.020729 -0.119773 0.097215 -0.072334 0.037304 -0.072978 0.123088 -0.251508 0.152075 -0.141081 0.077435 -0.423989 0.084521 -0.045843 0.059879 -0.332203 0.169844 0.054013 -0.051247 0.208850 -0.048503 -0.003804 0.108912 -0.078971 0.193663 -0.164644 -0.140965 -0.086073 -0.186760 -0.141986 0.074313 0.029635 0.102627 0.177283 0.462622 0.038218 0.000321 0.200017 0.000230 0.141850 -0.251388 -0.115267 -0.275780 0.252636 0.143799 -0.004110 0.174872 -0.019368 0.249782 0.119819 -0.064953 0.221926 0.348312 0.347197 0.197298 -0.281699 0.140443 -0.008119 0.206373 0.183641 -0.036194 -0.013656 0.208519 0.261871 -0.034376 -0.251679 -0.123939 -0.082272 -0.211783 0.556423 -0.127782 -0.156596 0.138602 0.253954 -0.127081 -0.338490 0.041161 0.041643 0.148402 -0.096189 0.088040 0.044946 0.293934 -0.188606 -0.019676 -0.006316 0.193214 -0.198515 -0.124598 0.015609 0.058748 -0.009507 0.177267 -0.423230 -0.208200 0.004164 0.220549 -0.015364 0.105578 -0.021382 -0.098516 0.033912 0.057554 -0.059128 -0.025611 -0.024911 -0.169289 -0.147425 -0.310051 -0.058479 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.153835 -0.023838 0.713442 -1.156347 -0.939425 -0.119332 0.801235 -0.470291 -0.209445 0.733966 0.325090 -0.387627 -0.597378 1.044425 -0.056149 -0.778701 -0.018584 -0.823740 -0.300923 -0.114190 -0.167733 0.765558 -0.254870 -0.198046 0.490390 -0.239581 -0.041136 0.931894 0.013703 -0.440803 0.123808 -0.557048 0.034395 1.380909 0.151062 0.111524 -0.279030 2.067951 -0.872148 1.251371 -1.243310 -1.264230 1.500189 -0.314569 -0.257212 -1.426031 -0.530768 0.835400 -0.162348 -0.621101 0.375623 0.220597 0.277151 -0.788947 0.006078 0.775707 -1.505138 0.366148 0.610751 -0.797129 -0.749055 -0.288029 -0.270794 0.153007 -0.945777 -0.837245 0.128181 -0.213627 -0.419516 0.068775 -0.185733 -0.840430 1.508443 0.451823 -0.268110 0.534365 0.238313 -0.924706 1.001230 -0.380703 -1.123262 -0.575520 -0.006758 -0.670259 0.975397 -0.114050 0.815885 -1.877204 0.319716 -1.713420 0.599026 -1.096233 0.542372 1.367278 -0.597755 1.126624 0.456064 0.560840 0.389385 -0.242545 1.066691 0.565473 0.848457 0.807561 0.881036 0.738954 -0.859982 -1.059930 -1.178648 -1.005033 0.452923 -0.652513 -1.745369 0.575418 -0.023187 -0.262269 0.117612 -0.055082 -0.127672 1.412941 -1.396139 0.469421 0.761091 -0.321177 0.067588 0.994902 -0.191657 -0.197267 -0.456516 1.029059 -0.512535 1.055855 -0.016874 0.994462 -0.372697 -0.579986 -0.471381 0.045991 0.181051 -0.807164 -1.097007 -1.452448 -0.288065 0.608517 -0.687519 0.901567 2.257849 -0.915631 -1.311043 1.324438 0.737848 0.063461 0.305094 0.362213 1.179806 -0.388369 -0.604981 -0.693887 -0.505037 0.540393 1.383367 0.275387 -0.720823 1.033812 -0.332009 -1.230513 1.714463 -0.236885 -0.518714 0.229524 0.182953 -0.902859 -0.978431 1.281874 -0.062682 1.447899 -0.307573 1.666864 -0.411344 -0.639452 0.334744 -0.871139 -0.130743 -1.422256 -0.143029 0.297886 0.520327 -0.846228 -0.734051 -0.644996 -0.560177 -0.600813 0.772635 -0.943102 0.218950 0.190023 0.309808 0.914805 1.157296 -0.155505 -0.171675 -1.156353 0.677989 0.446517 0.194228 -1.338578 -0.272249 -0.168155 -0.408752 0.312348 -0.000276 0.747356 -0.486566 -0.095761 0.443601 -0.226111 -0.310325 0.099514 -1.857807 0.190217 0.155799 0.776543 0.404797 1.121718 1.422865 1.025248 0.430342 0.594594 -0.190235 -0.029545 -0.905518 0.080909 0.076456 0.340262 0.753452 1.242709 1.007544 0.546813 1.305853 0.925236 0.113749 1.235180 0.084652 1.804849 -0.250159 -0.616567 0.284250 0.410481 1.089797 1.480259 0.252521 -0.178267 0.871266 0.265632 -0.730869 -0.772288 0.113293 -0.335743 0.144757 1.044922 0.648514 -0.385480 -0.050262 1.615286 -0.306841 -2.024766 0.708338 0.425661 0.965844 0.486885 0.082348 0.475182 0.822587 -0.494699 0.870719 0.821878 0.722077 -1.281308 -0.277123 0.225025 0.654001 0.689702 0.903922 -2.147318 -0.078674 0.214120 1.195452 -0.098447 1.357855 -0.764087 -0.228542 0.602341 -0.159076 -0.123923 0.286189 0.332886 -0.663555 0.169641 -1.402404 -0.309447 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.133662 0.088820 0.300427 -0.435229 -0.449277 -0.048178 0.216604 -0.143419 -0.111469 0.062040 0.125962 -0.061253 -0.193788 0.444466 -0.109256 -0.319889 -0.128699 -0.520845 -0.207547 -0.099087 -0.078378 0.313571 -0.089947 0.002229 0.207440 -0.079250 -0.124918 0.250688 -0.061021 -0.461941 0.046215 -0.185091 0.006158 0.485401 -0.023438 0.003988 -0.038569 0.862642 -0.097697 0.171360 -0.466229 -0.518801 0.502082 -0.200857 -0.080066 -0.578733 -0.254280 0.341650 0.049218 -0.081185 0.147367 0.151055 -0.131982 -0.279238 0.053270 0.214082 -0.702771 0.335744 0.248683 -0.240135 -0.275706 -0.099495 -0.120888 -0.145945 -0.047757 -0.311264 0.101421 0.059567 -0.204276 0.055662 0.053182 -0.293674 0.691539 0.143586 0.049239 0.293202 0.162326 -0.246912 0.432679 -0.325486 -0.457305 -0.196528 0.114670 -0.154423 0.422275 -0.048648 0.147869 -0.706975 0.180762 -0.646384 0.165379 -0.443152 0.143987 0.471021 -0.245468 0.446463 0.253088 0.067768 0.199988 0.051833 0.496810 0.105362 0.303014 0.422561 0.245539 0.122356 -0.204836 -0.215412 -0.446683 -0.496228 0.134071 -0.109251 -0.651584 0.278965 0.103180 -0.132813 -0.002902 0.064431 0.120049 0.413996 -0.531181 0.123881 0.377863 -0.119838 -0.036953 0.369855 -0.135822 -0.127310 -0.331553 0.372499 -0.282589 0.448560 0.024150 0.326359 0.070136 -0.474740 -0.366177 -0.062213 0.004951 -0.327793 -0.370225 -0.393023 -0.009193 0.143698 -0.326335 0.406225 0.943486 -0.429116 -0.537268 0.600692 0.564623 0.104883 0.185036 0.155888 0.497410 -0.043166 -0.358092 -0.170372 -0.280981 0.211982 -0.175456 0.170869 -0.162088 0.328685 0.083240 -0.480044 0.803045 -0.189836 -0.258291 0.402895 0.136461 -0.359583 -0.430644 0.400187 0.614264 0.646004 0.170348 0.648752 -0.135935 -0.279892 0.109136 -0.139740 0.029824 -0.416585 -0.030956 0.017501 0.128804 -0.246965 -0.257358 -0.184301 -0.324565 -0.301080 0.205976 -0.024123 0.252517 0.125837 0.164856 0.017431 0.588796 -0.032329 0.039858 -0.577435 0.251285 0.177102 0.137305 -0.534305 -0.043550 -0.008859 -0.098258 0.253360 -0.017406 0.254790 0.007144 -0.029144 0.141236 -0.083617 -0.068443 0.056018 -0.317728 -0.061988 -0.096766 0.332756 0.070460 0.372024 0.670280 0.411831 0.230312 0.258904 -0.037807 0.050162 -0.038130 -0.141189 -0.085325 0.312857 0.326086 0.379811 0.464656 0.237130 0.544844 0.357854 0.014389 0.535372 0.037614 0.890385 -0.289080 -0.248457 -0.049028 0.231818 0.484455 0.621298 -0.010386 0.010460 0.317136 0.226275 -0.190606 -0.384901 0.061680 -0.110407 0.003031 0.359597 0.271841 -0.146411 0.018165 0.566076 -0.140743 -0.700307 0.334456 0.135605 0.366835 0.020077 0.151426 0.065090 0.391635 -0.298115 0.159356 0.347121 0.346595 -0.544154 -0.167294 0.101577 0.413678 -0.135306 0.495095 -0.665130 0.133029 0.178653 0.309598 -0.144885 0.233408 -0.313975 -0.330880 0.303278 -0.004921 -0.112919 0.395327 0.130686 -0.373815 0.049515 -0.353582 -0.218363 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 1.973054 -2.078674 4.075068 -8.169218 -9.049554 2.373421 -1.718264 -7.328284 -1.780884 3.448213 3.920138 -1.863065 -0.374109 7.724720 -1.343275 -5.388700 -0.740932 -2.835525 0.301671 -2.485102 -0.975599 4.807068 -3.236139 -0.809625 0.599536 -3.286656 -0.432040 4.528820 0.974523 -1.227062 -1.123813 -5.127461 -2.547886 10.335769 4.686175 -0.088284 -1.384094 15.886294 -3.470306 5.505155 -9.556657 -8.638002 8.510514 -2.684730 -1.055890 -6.745278 -6.260822 4.594207 -1.753003 -1.265705 3.536018 -1.606365 4.114172 -2.144737 -0.136338 2.050410 -8.591846 2.909981 4.562181 -6.864508 -4.420797 -2.827131 -1.300843 2.851765 -6.956102 -5.421579 3.441776 4.025500 -0.215764 -1.370389 -1.895997 -8.692818 10.518469 3.455700 -2.501177 0.900792 2.116814 -7.182555 6.775444 0.289022 -11.725219 -3.656680 -1.489688 -7.184050 7.156765 -0.620686 9.039002 -14.503596 5.510329 -16.255645 3.454535 -5.786762 4.773386 9.313796 -7.934867 4.782086 6.489021 8.679469 6.114624 -1.638714 7.998553 3.615688 0.890543 6.461978 7.873151 4.553120 -2.629810 -3.881425 -6.936293 -8.258996 2.487202 -5.693697 -13.942594 5.328764 -1.232480 -1.946221 -4.654247 1.429276 -0.759345 11.535667 -9.657220 0.984648 4.080383 -2.485668 1.498582 5.989436 -2.697390 1.148755 -3.929642 7.195565 -7.161277 5.491791 -1.306048 7.580314 -3.116680 -4.057511 -9.917800 3.034265 4.131749 -8.273600 -9.001294 -8.855619 -2.462436 4.027396 -4.788291 10.073007 16.897205 -10.001224 -10.164170 10.054205 4.483725 -2.188017 7.299369 2.926974 9.497153 -2.191776 -4.477888 -6.780165 -5.671118 0.786311 1.399620 1.909078 -2.268293 7.871358 -1.174870 -5.963467 16.093918 -2.474044 -7.407604 0.075961 2.927434 -4.739724 -6.148093 8.227002 0.533918 7.353726 0.776062 11.882279 -3.210798 -4.793333 2.000853 -6.229900 -2.163584 -5.099547 0.356755 -0.003441 5.910316 -4.924254 -5.540063 -3.114396 -5.689274 -4.658651 4.952531 2.808466 3.054174 5.165287 1.825748 5.694606 12.855029 2.594175 -1.568538 -6.653607 5.655760 6.978385 -0.106571 -7.480650 -4.280958 -3.318349 -1.877271 -0.614429 1.115246 8.249288 -5.744068 -0.764233 -1.148248 0.710945 2.618859 4.627731 -13.208453 3.787276 -0.556532 5.796584 3.096613 7.628995 8.679628 11.059078 6.903876 2.762726 -0.913618 -0.124474 -1.302053 0.001223 3.903851 3.630334 5.341330 10.673401 8.016559 6.022308 8.831174 6.357314 5.458441 9.579891 -1.577755 15.649423 -3.775168 -1.288176 -1.590356 3.514162 9.509351 14.893669 1.817261 1.107810 4.328176 1.079513 -5.645903 -9.517607 3.374557 -1.316029 2.097690 2.721044 6.698906 0.382142 -4.613397 11.989177 -0.858243 -14.108221 7.266760 3.162466 6.426962 5.707132 0.636809 2.366465 3.219521 -4.341820 8.670607 9.475092 5.691343 -9.786258 -1.835447 1.631241 6.174968 3.239833 8.010448 -10.600064 5.871567 3.652499 7.866020 -0.477624 6.135658 -8.287344 -3.254759 5.755425 -3.609879 -0.304437 4.899311 3.643848 -6.294979 3.064146 -7.176777 -5.562561 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 1.642593 -0.308173 1.419497 -3.269726 -2.538438 -0.091015 0.821530 -3.171389 -1.210388 3.063043 1.112796 -1.759590 -1.870231 2.052302 -0.458837 -2.799740 0.338864 -1.299181 -0.817554 -1.573395 -0.900016 1.133780 -0.875205 -2.203335 0.701263 -1.001723 0.998138 2.236012 0.982808 -0.659379 -0.383871 -2.015954 0.720287 5.101537 1.853217 0.006244 -1.899765 6.024242 -0.595411 2.402237 -5.337989 -4.026771 5.359523 -1.278340 0.057415 -4.289917 -0.888394 3.049116 -1.329648 -1.504794 -0.291723 -0.466945 1.436578 -3.380380 -1.795711 2.771699 -3.791841 2.441121 2.274330 -3.340534 -3.404355 -1.258864 0.697744 1.636118 -2.472333 -3.344758 0.989468 0.256208 -2.043910 0.668959 -2.743241 -3.477795 4.012552 1.154949 -1.217653 0.448144 -1.234241 -1.892373 2.444043 -0.373850 -3.507790 -2.403337 0.616660 -1.148025 2.031026 0.582976 3.172925 -7.103485 1.095443 -6.915035 2.055858 -2.524152 3.092253 3.742282 -2.658616 3.172130 1.024477 1.430932 1.381004 -0.921727 3.133803 0.885365 2.208538 1.238919 3.206379 2.113645 -1.430180 -3.357489 -1.866316 -2.908976 1.008701 -1.564795 -5.612813 2.601949 -2.661929 0.088999 -0.915059 0.292155 -0.753601 3.669235 -5.439865 -1.361514 1.815178 -1.286118 2.643211 2.835609 -0.851601 0.891333 -1.063904 2.861382 -0.682339 1.774601 -0.272303 3.899377 -0.698969 -3.136020 -3.516385 1.175609 2.517994 -3.467634 -4.643172 -4.375876 -1.629272 0.992581 -2.498690 3.584292 6.750557 -2.895921 -4.470899 3.341573 -0.151704 -0.078829 3.191667 1.109983 5.670747 -3.031742 0.082549 -0.861352 -0.490260 2.135072 2.650730 -1.097156 -3.197725 3.526391 -1.397360 -1.594903 2.794014 -0.132508 -1.370115 0.296407 0.472483 -1.603910 -2.847388 3.395205 -1.291282 4.293874 -1.043193 5.533053 -2.849083 -2.352067 1.273688 -2.999246 -1.520113 -1.502579 0.140178 -0.205209 3.321743 -3.263216 -2.803293 -1.175033 -2.023782 -1.200744 4.444803 -0.217157 -0.014482 0.760701 -0.087406 3.848409 3.487215 -1.104933 -0.339645 -3.239813 2.231187 3.361074 1.540150 -3.826855 -2.436085 -1.696285 -1.608707 0.645184 0.381698 3.607234 -1.508110 -0.381004 1.411893 0.111411 0.418170 0.309768 -4.334784 1.688592 0.058171 1.447104 0.665103 5.527625 2.992500 3.613210 1.073432 0.290200 -0.347074 -1.556929 -1.700841 0.139294 0.645653 1.282373 2.482552 3.131170 2.633393 2.109971 4.520169 1.520531 0.108307 4.486953 -0.224735 5.485422 -3.273523 -0.364617 0.649967 -0.179210 4.140948 5.763829 -0.210172 -2.208294 2.428078 -0.406854 -2.335949 -3.508727 -0.239797 -0.624638 0.135090 2.307697 3.286022 -0.530340 -1.844866 6.468655 -0.465484 -6.976756 4.293812 1.592788 2.661351 2.624206 -1.364564 1.443754 2.222750 -0.648141 1.483940 3.202695 2.740733 -4.373173 -0.595888 0.475580 3.122970 1.215252 1.338998 -5.792568 0.446403 2.129115 5.062467 0.740801 3.120600 -3.492441 -0.197759 1.293060 -0.268578 0.822311 0.672376 2.079994 -2.287467 0.028780 -3.650651 0.051161 +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.517362 -0.265378 0.326097 -0.433318 -0.872838 -0.062023 0.333529 -0.996836 -0.259540 0.438396 0.311912 -0.571255 -0.367626 0.816526 0.076666 -0.404092 0.155114 -0.336410 -0.025940 -0.488981 -0.144233 0.477285 -0.235343 -0.169904 0.038713 -0.098833 -0.144702 0.478877 -0.057748 -0.266569 -0.115580 -0.634154 0.308836 1.244347 0.511916 0.232149 -0.706436 1.743536 -0.254553 1.084467 -1.818450 -0.872438 1.122511 -0.441463 0.118332 -1.480697 -0.663446 0.884439 0.123124 -0.581638 0.005523 0.053529 0.138833 -0.496622 -0.231479 0.766182 -0.924321 0.645221 0.542753 -1.182675 -0.604673 -0.236863 -0.387369 0.393866 -0.958566 -0.897584 0.216505 0.198417 -0.287245 0.477058 -0.578525 -1.133178 0.898946 0.243875 -0.609757 -0.048875 -0.047177 -0.291785 0.822610 0.037928 -0.987631 -0.557982 -0.048891 0.057461 0.304169 0.208193 0.910352 -1.925043 0.181873 -2.021154 0.694173 -0.976874 0.767648 0.886865 -0.824829 0.692362 0.430220 0.306418 0.946830 -0.054885 0.788233 0.476653 0.482095 0.404556 1.123308 0.568763 0.040449 -0.678405 -0.515199 -0.862366 0.605978 -0.263560 -1.310068 0.631298 -0.494819 0.041166 -0.441949 0.455406 0.201346 1.005292 -1.307161 -0.154105 0.883599 -0.325572 0.617661 0.906332 -0.615970 0.290385 -0.807067 0.770828 -0.277732 0.875425 -0.105010 0.932731 -0.383231 -1.440263 -1.291871 0.216531 0.581992 -1.146853 -1.167558 -1.397676 -0.119638 0.449319 -0.856338 0.619983 1.953917 -1.140336 -0.908697 0.987147 0.742124 -0.384139 0.612337 0.184703 1.845540 -0.703101 -0.042842 -0.279891 -0.368904 0.393324 0.920042 -0.043957 -0.869523 0.665539 -0.062975 -1.848467 1.533985 -0.284790 -0.735249 0.442448 -0.042506 0.169377 -0.606297 0.848775 -0.107854 0.888588 -0.670544 0.994311 -0.429290 -0.568781 0.428155 -0.679544 -0.400874 -0.004437 0.133458 0.009606 1.041288 -1.009411 -0.573726 -0.220509 -1.221639 -0.372844 0.832885 0.011163 0.018821 0.466169 0.302512 0.804147 1.151697 0.140984 0.024350 -0.996093 0.705547 0.866808 0.558686 -1.114642 -0.558667 -0.742883 -0.365816 -0.488941 0.129561 0.893507 -0.384553 -0.036852 0.151460 -0.295563 0.194879 0.332067 -0.575938 0.407068 0.059570 0.700571 0.119590 1.320704 0.769459 1.026932 0.700948 0.016594 -0.152941 -0.462567 -0.463401 0.428817 0.273192 0.075084 0.597522 0.539516 0.861705 0.364398 1.357347 0.018346 0.574724 1.302034 0.158506 1.633913 -0.935861 0.220199 0.110015 -0.099601 1.186756 1.858494 0.242129 -0.461524 0.553820 -0.317325 -0.937879 -0.688379 -0.167070 -0.028337 -0.346114 0.852358 0.623737 -0.117715 -0.544774 1.657549 -0.128454 -1.840076 0.999148 0.360766 0.421987 0.868608 -0.106821 0.411959 0.609349 -0.176624 0.384915 0.982569 0.919415 -1.185902 -1.004400 -0.046941 0.503991 0.929567 0.601385 -1.892678 0.283452 0.836061 1.386125 -0.203441 0.394236 -1.163750 -0.139918 0.556599 -0.196080 -0.048144 0.515573 0.672135 -0.582795 -0.105421 -1.061529 -0.061151 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.351564 -0.141803 0.734354 -0.962075 -0.553418 0.082942 0.617500 -0.528794 -0.137870 0.816299 0.188095 -0.115086 -0.691949 0.728424 -0.150376 -0.694873 0.275969 -0.923493 -0.050608 -0.154311 -0.186404 0.499511 -0.232756 -0.310599 0.384926 -0.284106 0.136415 0.760833 -0.098615 -0.269597 -0.135011 -0.495622 -0.123235 1.309858 0.332405 0.031889 -0.174302 1.830561 -0.626567 1.201900 -1.181379 -1.196829 1.190836 -0.300758 -0.086588 -1.086738 -0.163741 0.627874 -0.443613 -0.345641 0.391555 -0.073214 0.359686 -0.632874 -0.048921 0.714398 -1.422914 0.387669 0.445975 -0.501488 -0.598670 -0.378531 -0.127681 0.226064 -0.573033 -0.652325 0.386709 -0.072407 -0.614819 0.209409 -0.381269 -0.714727 1.060882 0.469661 -0.252579 0.289816 0.291520 -0.777182 0.795750 -0.593259 -1.049754 -0.534542 -0.093879 -0.627286 1.002795 -0.019741 0.715014 -1.742720 0.389174 -1.572597 0.576769 -0.920119 0.599296 1.183587 -0.465860 0.947155 0.439832 0.595951 0.144592 -0.410632 0.933199 0.567189 0.577053 0.529256 0.888358 0.536353 -0.723685 -0.936449 -0.908482 -0.584189 0.172885 -0.623084 -1.350776 0.447596 -0.255396 0.042888 0.018125 0.047131 -0.377778 0.981818 -1.519728 0.143426 0.387617 -0.290894 0.390726 0.743593 -0.186974 0.027233 -0.191692 1.068056 -0.449734 0.738269 -0.158952 0.904394 -0.202029 -0.436964 -0.622367 0.059548 0.438529 -0.741938 -1.151579 -1.280666 -0.442299 0.496377 -0.417515 1.178828 1.914317 -0.615698 -1.054092 1.092435 0.082228 0.177669 0.591084 0.370013 0.809696 -0.458190 -0.323886 -0.573106 -0.175985 0.293721 1.020653 0.115214 -0.513704 0.956285 -0.192686 -0.328128 0.980247 -0.124265 -0.434325 -0.147095 -0.001260 -0.779724 -0.786776 1.106633 -0.407061 1.084982 -0.157096 1.548637 -0.500214 -0.625881 0.197139 -0.922552 -0.012487 -1.073839 -0.110006 0.131168 0.474907 -0.958014 -0.774286 -0.567014 -0.296919 -0.322259 0.759463 -0.569824 0.116167 0.147075 0.204022 1.243235 1.015640 -0.167115 -0.135412 -0.907550 0.536820 0.436752 0.150757 -1.060178 -0.208739 -0.088861 -0.358662 0.387002 0.081749 0.654270 -0.564949 -0.264754 0.394303 -0.050999 -0.161780 0.201580 -1.731480 0.175525 0.361541 0.334909 0.466481 0.934003 1.065729 0.823205 0.344066 0.227326 -0.144440 -0.072818 -0.689629 -0.046364 0.213122 0.348368 0.466716 1.011528 0.762116 0.377942 0.901289 0.912745 0.014559 1.012505 0.103992 1.345054 -0.371594 -0.382887 0.227933 0.117023 0.975496 1.097933 -0.093695 -0.078939 0.754135 0.191574 -0.480174 -0.693205 0.101741 -0.430269 0.307308 0.734713 0.661802 -0.316976 -0.217794 1.453639 -0.185329 -1.769960 0.658178 0.472177 0.777120 0.611503 -0.027069 0.302561 0.568872 -0.555953 0.875915 0.549809 0.592928 -0.930737 -0.056057 0.152714 0.536485 0.427601 0.595692 -1.615537 -0.238981 0.196074 1.144141 0.338437 1.097069 -0.625072 -0.151887 0.320113 -0.354274 -0.017668 0.246481 0.559759 -0.542263 0.165269 -1.101836 -0.213373 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.021491 0.210896 0.532841 -1.137925 -1.428271 -0.077759 0.504561 -0.518883 -0.197767 0.252823 0.691092 -0.639763 -0.434526 1.550185 -0.204219 -0.651853 -0.126631 -0.629713 -0.271727 0.101790 0.019272 0.923985 -0.256584 0.082251 0.257670 0.022048 -0.400810 0.760819 0.401338 -0.518870 -0.281378 -0.417737 0.056529 1.120035 0.157283 -0.173201 -0.055668 2.006602 -1.219603 1.177698 -1.271562 -0.764307 1.108743 -0.216608 -0.237276 -1.927216 -1.342225 0.753384 -0.203385 -0.490422 0.707762 0.175050 0.163572 -0.322752 0.430914 0.777826 -1.582083 0.723328 0.722024 -0.425200 -0.043956 -0.183970 -0.453002 0.039830 -0.721379 -0.707903 -0.011613 -0.019538 -0.101406 -0.171506 -0.093825 -1.007640 1.659190 0.271969 -0.486687 0.406707 0.359594 -1.265012 1.066003 -0.811499 -1.250544 -0.195777 -0.027086 -0.203095 0.973336 -0.203495 0.591098 -1.731929 0.002168 -1.747476 0.512221 -1.247183 0.300007 1.313379 -0.878741 0.583389 0.522674 0.116147 1.064883 0.382491 1.024516 0.671008 0.727243 0.641207 0.724738 0.823529 -0.575835 -0.625272 -1.068291 -1.248999 0.298020 -0.302519 -2.015850 0.527826 0.251893 -0.273839 -0.046474 -0.164775 0.259860 1.350846 -0.647530 0.534874 0.758283 -0.253109 -0.076730 1.399716 -0.329599 -0.101630 -0.888390 0.966941 -0.593185 1.259082 -0.032310 0.755704 -0.600960 -1.536152 -0.879966 0.155878 0.071311 -0.776386 -0.920515 -1.461763 0.133758 0.152315 -0.699156 0.335986 2.141287 -1.125765 -1.279832 1.500842 1.455119 -0.074901 0.462403 0.119272 1.514443 -0.221851 -0.626505 -0.672601 -0.895066 -0.035045 0.993264 0.433588 -0.572173 0.571663 -0.220534 -2.611965 1.977238 -0.150437 -0.807779 0.444940 0.262582 -0.747858 -0.934624 1.350791 0.363464 1.130027 -0.247781 1.441639 -0.223580 -0.785632 0.464346 -0.326969 0.079838 -1.109204 -0.284372 0.644197 0.540729 -0.635037 -0.477474 -0.496070 -0.556390 -0.864579 0.405488 -0.777832 0.271676 0.453248 0.500277 0.248141 1.417662 0.087103 0.247961 -1.118866 0.697524 0.451972 -0.035666 -1.886041 -0.029079 -0.471247 -0.198217 0.101171 -0.142720 0.584311 -0.347427 -0.343952 0.222529 -0.580170 0.123092 0.299195 -1.146710 0.206296 -0.363428 0.996529 0.332567 0.845773 1.349257 1.247696 0.808996 0.647899 -0.104647 0.106313 -0.355462 0.160698 0.186677 -0.041351 0.758493 1.200222 0.994990 0.453400 1.142273 0.701985 0.250559 1.190585 0.263607 1.860151 0.066695 -0.521362 0.011464 0.319900 1.099925 1.844584 0.347855 -0.040665 0.586052 0.272287 -0.603261 -0.837200 0.230233 -0.272282 -0.467316 1.208223 0.406095 -0.188165 -0.099283 1.325500 -0.374853 -1.681077 0.644666 0.231067 0.843151 0.316373 0.318851 0.317463 0.667973 -0.684430 0.948849 1.007865 0.844841 -1.018104 -1.028220 0.115370 0.501736 0.935489 1.130994 -2.203722 0.295213 0.589068 1.052641 -0.347518 1.068623 -0.838003 -0.555194 0.699742 -0.043026 -0.291238 0.075627 0.257208 -0.856677 0.077857 -0.940008 -0.703824 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.011040 -0.168722 0.150644 -0.284681 -0.207464 0.051895 0.100898 -0.111530 -0.035902 -0.161934 0.098036 -0.052237 -0.124780 0.382404 0.044034 -0.264991 0.030106 -0.063398 -0.049247 0.147738 -0.012484 0.190108 -0.074571 0.010759 0.093812 -0.035459 -0.058427 0.208094 0.000267 -0.131399 -0.090279 -0.143968 -0.082337 0.343261 0.053869 0.202162 0.000000 0.606387 -0.072455 0.576561 -0.269824 -0.238526 0.263752 -0.100442 -0.090989 -0.323415 -0.299358 0.166191 -0.142062 -0.188541 0.193939 0.021109 -0.014385 -0.097909 0.133234 0.176759 -0.395030 0.055447 0.142265 -0.078510 -0.037395 -0.107544 -0.195500 -0.085054 -0.254686 -0.167745 0.019155 0.037468 -0.116561 0.007759 -0.021223 -0.260250 0.610723 0.181374 -0.128670 0.130656 0.205461 -0.223492 0.245807 -0.081832 -0.375575 -0.113425 -0.081574 -0.114814 0.393714 -0.034838 0.215969 -0.487258 0.157058 -0.500000 0.174110 -0.383498 0.119198 0.419455 -0.249063 0.238614 0.220377 0.236263 0.065162 0.100161 0.295822 0.181312 -0.033649 0.181367 0.325408 0.033212 -0.168037 -0.240898 -0.269674 -0.285196 0.094381 -0.215460 -0.586195 0.084452 0.059282 0.181066 -0.064922 0.200365 0.037729 0.137022 -0.360063 0.261054 0.187463 -0.088079 0.050855 0.275229 -0.106351 -0.059281 -0.225946 0.305183 -0.220966 0.255556 -0.083785 0.204120 -0.071693 -0.109020 -0.162364 -0.032418 0.048250 -0.177936 -0.320629 -0.349875 -0.073929 0.313095 -0.147300 0.287705 0.600996 -0.272310 -0.243951 0.394728 0.289611 0.139158 0.111813 0.125107 0.263740 -0.039210 -0.182209 -0.189492 -0.184066 -0.002217 -0.033277 0.121313 -0.153229 0.243178 -0.073668 -0.518100 0.816887 -0.142873 -0.209948 0.041558 -0.023485 -0.249292 -0.280241 0.436349 0.011016 0.350422 -0.027588 0.432548 -0.036583 -0.127212 0.077354 -0.168313 -0.000120 -0.415124 -0.039575 0.005724 0.117434 -0.314651 -0.217633 -0.078066 -0.164851 -0.155085 0.130436 -0.008704 0.028615 0.104748 0.139886 0.213212 0.366235 0.038294 -0.049605 -0.321938 0.178386 0.069647 -0.107789 -0.252491 0.057401 -0.032603 -0.058655 0.014430 0.031609 0.086849 -0.193593 -0.090037 -0.014105 -0.066154 0.018871 0.114580 -0.413680 -0.048704 0.143902 0.162204 0.211968 0.188262 0.443736 0.281667 0.191326 0.150512 -0.021759 0.122688 -0.244241 -0.005840 -0.004460 0.210120 0.143261 0.243663 0.276203 0.096849 0.268498 0.276132 0.221765 0.297722 0.224965 0.520127 0.173383 -0.220503 0.071719 0.071886 0.317585 0.412031 -0.114669 0.240000 0.205143 0.127712 -0.162084 -0.230277 0.046158 -0.083862 -0.161293 0.322870 0.009936 0.000000 -0.043680 0.383474 -0.092490 -0.489731 0.083176 0.100402 0.234993 0.182128 0.106051 0.148144 0.189735 -0.197475 0.299478 0.186275 0.206587 -0.281087 -0.086263 0.023881 0.042617 0.250577 0.305815 -0.229840 0.071399 0.052529 0.324288 -0.016617 0.105693 -0.143433 -0.070435 0.118688 -0.155179 -0.065968 0.039746 0.066849 -0.046389 -0.086659 -0.390666 -0.285098 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.082550 0.032112 0.321247 -0.473947 -0.489123 -0.122776 0.487630 -0.111810 -0.085095 -0.065880 0.258300 -0.232701 -0.279901 0.624699 0.010557 -0.299417 -0.008135 -0.261698 -0.218813 0.062213 0.021570 0.385437 -0.056257 0.004139 0.217882 -0.017047 -0.149808 0.493467 0.044584 -0.273113 0.034253 -0.166986 0.089767 0.491065 -0.051872 0.105444 -0.067212 0.886577 -0.556567 0.676780 -0.499822 -0.341895 0.616781 -0.139550 -0.192168 -0.925350 -0.618355 0.337272 -0.095004 -0.332269 0.233316 0.178023 0.025008 -0.281936 0.173417 0.450315 -0.712057 0.155680 0.293781 -0.290817 -0.124707 -0.052732 -0.305107 -0.125004 -0.355391 -0.314994 -0.062310 -0.170311 -0.072362 0.024130 0.034657 -0.362212 0.860143 0.099581 -0.100384 0.309826 0.217892 -0.472209 0.481731 -0.170223 -0.438060 -0.180571 0.008308 -0.076097 0.450793 -0.148199 0.207974 -0.743825 -0.111061 -0.661315 0.280639 -0.634971 0.101182 0.558217 -0.319046 0.457750 0.204143 -0.024379 0.175933 0.171988 0.442084 0.267124 0.400301 0.328648 0.401046 0.255741 -0.338596 -0.445306 -0.578953 -0.513155 0.250362 -0.236757 -0.894045 0.182738 0.151657 -0.151654 0.069883 -0.033856 0.185213 0.578520 -0.228936 0.600652 0.484166 -0.124684 -0.156895 0.591524 -0.117715 -0.182232 -0.386072 0.408040 -0.244827 0.638748 0.000258 0.336565 -0.130495 -0.629387 -0.105497 -0.072812 -0.100672 -0.265234 -0.372419 -0.580168 0.036835 0.253193 -0.293855 0.006347 0.949862 -0.419207 -0.544565 0.619612 0.832280 0.085204 -0.043631 0.141543 0.606348 -0.075535 -0.347445 -0.330137 -0.371080 0.188462 0.540530 0.184888 -0.331313 0.334086 -0.100126 -1.322207 1.187570 -0.197167 -0.245831 0.434856 0.072702 -0.385316 -0.479531 0.640452 0.350785 0.678638 -0.179016 0.632661 -0.066060 -0.310539 0.139876 -0.082336 0.031140 -0.686748 -0.094861 0.260579 0.146823 -0.283087 -0.273059 -0.310985 -0.280882 -0.294064 0.222175 -0.526370 0.112757 0.096560 0.207004 -0.022781 0.487154 -0.046444 0.031811 -0.565867 0.282816 0.107059 0.093185 -0.817352 0.076525 -0.068168 -0.113226 0.009222 -0.025319 0.213507 -0.086869 -0.072337 0.189038 -0.316619 -0.192542 0.011457 -0.609203 -0.031582 0.001034 0.393561 0.143745 0.363314 0.780905 0.396093 0.206134 0.384839 -0.061508 0.090647 -0.432393 0.061178 -0.072457 0.091017 0.307191 0.463462 0.446332 0.167927 0.545751 0.341339 0.166985 0.508070 0.284136 0.790667 0.179332 -0.368942 0.135953 0.200812 0.479415 0.637671 0.280755 0.003057 0.321818 0.208461 -0.296942 -0.370709 -0.000440 -0.106958 -0.234870 0.792256 0.118936 -0.182395 0.071904 0.591466 -0.169020 -0.784678 0.182725 0.127673 0.386065 0.079477 0.150877 0.202944 0.437577 -0.203192 0.327913 0.289106 0.358480 -0.520043 -0.411340 0.065253 0.147760 0.481227 0.501670 -1.076151 -0.024234 0.101031 0.477218 -0.253893 0.529902 -0.277558 -0.128831 0.248100 0.011603 -0.144696 0.059434 0.025383 -0.330887 -0.072035 -0.639982 -0.231301 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.013939 0.228768 0.572650 -1.153324 -1.521803 -0.060729 0.382025 -0.571554 -0.207762 0.264501 0.689883 -0.638048 -0.478713 1.543092 -0.280054 -0.729888 -0.198931 -0.562535 -0.246934 -0.007560 0.002286 0.922807 -0.275079 0.085239 0.248876 -0.050555 -0.386522 0.754229 0.488593 -0.502727 -0.250745 -0.453364 0.055480 1.163668 0.188400 -0.153536 -0.060228 2.064563 -1.105100 1.081592 -1.358326 -0.859114 1.132079 -0.223870 -0.192932 -1.950802 -1.338649 0.760315 -0.351820 -0.363735 0.710425 0.161506 0.188571 -0.317217 0.440507 0.729424 -1.635481 0.850400 0.719242 -0.515642 -0.057997 -0.184424 -0.491221 0.062889 -0.622325 -0.722204 -0.014306 0.115584 -0.125692 -0.162633 -0.065696 -1.003581 1.737615 0.251556 -0.507027 0.415208 0.386695 -1.201775 1.067494 -0.884978 -1.316414 -0.232328 0.037597 -0.158363 0.967767 -0.131312 0.623256 -1.789245 0.001430 -1.823766 0.555908 -1.218148 0.337493 1.308301 -0.951854 0.615649 0.589680 0.029738 1.145502 0.389583 1.053815 0.648402 0.734966 0.696713 0.692466 0.818091 -0.524420 -0.603179 -1.070097 -1.293916 0.242421 -0.290952 -2.077830 0.536375 0.235982 -0.193955 -0.099626 -0.163400 0.271729 1.343220 -0.718365 0.462443 0.767872 -0.264176 -0.028842 1.366246 -0.333195 -0.061998 -0.864204 0.992367 -0.675410 1.225095 -0.035094 0.799491 -0.521301 -1.643755 -1.072279 0.188477 0.102339 -0.804015 -0.947230 -1.421617 0.097680 0.152953 -0.708035 0.356420 2.224130 -1.183384 -1.353619 1.532426 1.389044 -0.068324 0.573738 0.166156 1.539465 -0.211281 -0.653472 -0.716454 -0.934167 -0.003261 0.918533 0.449079 -0.581648 0.628753 -0.149257 -2.516063 1.845566 -0.200447 -0.860314 0.354901 0.292907 -0.764529 -0.888669 1.320184 0.406030 1.160678 -0.241423 1.499178 -0.290436 -0.895107 0.433808 -0.399869 0.061948 -0.984825 -0.240889 0.637260 0.554384 -0.699285 -0.509079 -0.498199 -0.596280 -0.876760 0.414088 -0.658641 0.280827 0.496189 0.496175 0.310442 1.499702 0.132824 0.249149 -1.140453 0.713715 0.478458 -0.002610 -1.962312 -0.056887 -0.464889 -0.203161 0.144525 -0.124195 0.626037 -0.291274 -0.311735 0.158260 -0.603995 0.200339 0.333058 -1.041050 0.230240 -0.393520 1.021246 0.320238 0.864621 1.399942 1.313153 0.857427 0.689671 -0.095482 0.041996 -0.133126 0.164742 0.279777 -0.049673 0.776230 1.251427 1.037935 0.474982 1.189266 0.751698 0.236081 1.234228 0.179737 1.958303 -0.107813 -0.474337 -0.050257 0.366849 1.139248 1.938363 0.298662 -0.027601 0.605305 0.297691 -0.530231 -0.930211 0.267316 -0.263966 -0.445687 1.224211 0.509709 -0.190211 -0.140554 1.357642 -0.357127 -1.692642 0.757887 0.246874 0.843684 0.255443 0.316312 0.207009 0.680798 -0.734781 0.922181 1.060703 0.873371 -1.097434 -1.051476 0.117648 0.586012 0.905671 1.172797 -2.186568 0.284364 0.671987 1.065292 -0.341002 1.043151 -0.893734 -0.697331 0.734492 -0.076064 -0.311145 0.143189 0.229959 -0.888539 0.134208 -0.814169 -0.797815 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.166092 0.234113 0.879940 -1.417931 -1.990876 -0.071659 0.277131 -0.993493 -0.357003 0.523122 0.741611 -0.780827 -0.780552 1.704508 -0.475973 -1.172905 -0.366380 -0.549396 -0.274518 -0.547221 -0.137406 1.035011 -0.383126 -0.078690 0.314679 -0.392554 -0.304565 1.002442 0.602894 -0.543628 -0.059266 -0.763660 0.193051 1.770912 0.397203 0.003495 -0.328633 2.822534 -0.864579 1.151094 -2.137145 -1.552441 1.737858 -0.401282 -0.063794 -2.477596 -1.441568 1.074774 -0.728572 -0.189287 0.639722 0.176651 0.325279 -0.633680 0.299114 0.899167 -2.129794 1.354878 0.878221 -1.268570 -0.482749 -0.266974 -0.692438 0.230318 -0.623854 -1.094303 0.049500 0.517848 -0.330398 0.068008 -0.174944 -1.310599 2.359131 0.308990 -0.626168 0.526089 0.430511 -1.082202 1.341106 -1.024534 -1.783990 -0.622162 0.272837 -0.068823 1.087170 0.145535 1.035966 -2.617658 0.059768 -2.665123 0.939305 -1.449718 0.714376 1.606790 -1.305739 1.117450 0.901330 -0.133075 1.442291 0.309014 1.425421 0.684542 1.026001 1.058296 0.967175 0.991734 -0.497972 -0.925577 -1.323449 -1.671131 0.304631 -0.414744 -2.698289 0.796241 0.004594 -0.018155 -0.316726 -0.067379 0.325868 1.723327 -1.425557 0.277501 1.132215 -0.426900 0.271014 1.479997 -0.456042 0.085173 -0.963963 1.323716 -0.968036 1.404827 -0.044353 1.287067 -0.342350 -2.311125 -1.890087 0.324751 0.347970 -1.240952 -1.428129 -1.703898 -0.132056 0.440163 -1.011802 0.695182 3.153701 -1.649272 -1.938771 1.926005 1.439247 -0.104449 1.012075 0.459393 2.161995 -0.439437 -0.785614 -0.951874 -1.101902 0.416093 1.105840 0.430322 -0.943639 1.180583 0.014074 -2.594500 1.995411 -0.507408 -1.146784 0.354592 0.374305 -0.864051 -0.994104 1.530503 0.592753 1.728276 -0.406487 2.132562 -0.685518 -1.405832 0.425973 -0.894874 -0.159749 -0.808630 -0.007952 0.583591 0.885977 -1.205754 -0.885045 -0.642014 -1.090352 -0.981932 0.826697 -0.459459 0.334087 0.682938 0.498143 0.800131 2.049856 0.207363 0.171623 -1.576040 0.984386 0.798074 0.344936 -2.547181 -0.341170 -0.530772 -0.372326 0.195844 -0.001668 1.076676 -0.232075 -0.152642 0.127754 -0.747376 0.311254 0.433790 -1.052114 0.403825 -0.371591 1.292142 0.293800 1.420060 1.937155 1.777990 1.091958 0.878846 -0.136456 -0.296064 0.207095 0.272622 0.578860 0.051053 1.044570 1.649527 1.410018 0.704011 1.850169 1.006777 0.314434 1.776467 -0.051590 2.782321 -0.934381 -0.364515 -0.125964 0.533268 1.660723 2.720560 0.267926 -0.226481 0.922642 0.311175 -0.624127 -1.444192 0.286539 -0.260706 -0.396160 1.634344 1.128859 -0.325221 -0.379157 2.064606 -0.322450 -2.413585 1.419494 0.486446 1.039422 0.331995 0.200745 0.064124 1.022601 -0.846727 0.907645 1.470984 1.245535 -1.832178 -1.255540 0.166195 1.051704 1.010961 1.466558 -2.846220 0.213052 1.104906 1.575106 -0.398830 1.288003 -1.404566 -1.087172 1.002579 -0.160621 -0.355076 0.547334 0.326712 -1.225310 0.317256 -0.884058 -1.000782 +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&) = 0.838845 -0.238592 0.688676 -1.277597 -1.045914 -0.298877 1.522310 -1.368261 -0.555868 1.389729 0.582834 -1.061481 -0.519275 1.246641 0.386232 -0.739806 0.533033 -1.096048 -0.439998 -0.663746 -0.334702 0.775584 -0.313650 -0.813530 0.367050 -0.319143 0.019847 1.458148 -0.577217 -0.276324 0.147249 -0.925279 0.594599 2.371647 0.679645 -0.048972 -1.140574 2.985441 -1.545131 2.083001 -2.361147 -1.558604 2.682243 -0.644288 -0.306434 -2.304569 -0.985783 1.474422 0.729366 -1.448236 -0.127188 0.178986 0.594070 -1.484797 -0.801132 1.836667 -1.581748 0.255248 1.022820 -2.003048 -1.676715 -0.459083 -0.219434 0.741846 -2.229309 -1.669624 0.465225 -0.500182 -0.299003 0.648966 -1.228275 -1.934000 1.598043 0.694267 -0.476663 0.230439 -0.360462 -1.183722 1.478507 0.714719 -1.447979 -1.112679 -0.177920 -0.694240 0.832315 -0.142210 1.728219 -3.318473 0.278474 -3.183207 1.044225 -1.789513 1.255538 1.870462 -0.801145 1.634726 0.323843 1.067813 0.513053 -0.609322 1.440547 0.776557 1.329487 0.756011 2.041304 1.420439 -0.854549 -1.918563 -1.314443 -1.232824 1.285230 -0.906403 -2.341176 1.295531 -0.961974 -0.944421 -0.199590 0.170276 -0.122165 2.666701 -1.914001 0.255079 1.500037 -0.630186 0.601028 1.594713 -0.604088 0.141270 -1.044966 1.348138 0.011862 1.676498 -0.064982 1.732623 -1.058020 -1.531777 -0.853889 0.344206 0.825756 -1.900491 -2.085611 -2.490764 -0.403306 1.013704 -1.403903 1.398687 3.346206 -1.515495 -1.784794 1.664927 1.448030 -0.550143 0.461011 0.410864 3.004294 -1.422476 -0.122700 -0.634153 -0.330515 1.134459 2.819934 -0.327282 -1.575311 1.616517 -0.692714 -2.460605 3.292052 -0.337889 -0.720756 1.371350 0.018896 -0.194737 -1.544707 1.934720 -0.269992 2.078645 -0.980001 2.268358 -0.708845 -0.708277 0.777585 -1.056055 -0.785113 -1.481290 0.185182 0.155792 1.620044 -1.177058 -1.265011 -0.781217 -1.583376 -0.553634 1.871741 -1.151819 0.131032 0.345539 0.178730 1.337808 1.611140 -0.333824 -0.284390 -1.779689 1.196577 1.430163 0.867152 -1.832558 -1.030543 -0.759300 -0.752960 -0.714811 0.185600 1.724696 -1.116623 -0.023735 0.931127 -0.210816 -0.544164 0.104993 -2.719437 0.858620 0.348465 1.064303 0.227639 2.539054 1.660960 1.486434 0.594805 0.143165 -0.386030 -0.479440 -2.385980 0.607815 0.047185 0.390028 1.155425 1.526837 1.169259 0.896001 2.442848 0.373354 0.716385 2.030797 0.271939 2.535474 -0.695393 -0.244669 0.636404 -0.095300 2.020371 2.748904 1.063658 -1.401294 1.192565 -0.466695 -2.000767 -1.186639 -0.418867 -0.187805 -0.068570 1.564520 1.137031 -0.577329 -0.600311 3.110513 -0.181402 -3.614849 1.359082 0.895064 1.079330 1.687031 -0.533745 1.368590 1.320100 0.142633 0.948242 1.453630 1.391633 -2.148996 -0.771458 0.208652 0.834373 1.373445 0.828146 -4.072584 0.186329 0.808466 2.468287 -0.269186 2.092514 -1.732057 0.626619 0.865700 0.124772 0.160790 0.523173 1.100548 -1.459431 0.168090 -2.679504 0.526416 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.504544 0.144445 0.469524 -1.216620 -1.256160 -0.500464 0.559171 -0.371121 -0.372804 0.794889 0.345849 -0.886339 -0.869827 1.274616 -0.286472 -1.239982 -0.160877 -0.838893 -0.620076 -0.243930 -0.115218 0.891194 0.041848 -0.528353 0.659568 -0.123065 -0.101033 0.868370 0.967560 -0.910838 0.002155 -0.429129 0.489732 1.362757 -0.050108 -0.260674 -0.370602 2.276133 -0.264894 0.749677 -1.639357 -1.231455 2.024624 -0.408044 -0.149204 -1.878507 -0.696896 1.213662 -0.645587 -0.468431 0.032849 0.377875 -0.059726 -1.358994 -0.285404 1.151795 -1.949468 1.526254 0.700877 -0.537115 -0.746897 -0.328355 -0.116967 0.022612 -0.275571 -1.179943 -0.083794 -0.189136 -1.183617 0.052380 -0.462622 -0.550360 2.029732 0.249179 -0.272272 0.617051 -0.293578 -0.577172 1.008432 -1.223417 -1.061848 -0.694594 0.467323 0.150197 0.808995 0.055789 0.510969 -2.409546 0.139017 -2.019333 0.810840 -1.194990 0.766910 1.474349 -1.059393 1.394611 0.114508 -0.320116 0.757098 0.323654 1.357815 0.299606 1.202609 0.616269 0.365844 0.692244 -0.635984 -0.921325 -0.651070 -1.184417 0.159427 -0.141074 -2.279435 0.810976 -0.300973 0.276876 0.395979 -0.120141 0.114172 0.904088 -1.594590 -0.257551 0.800242 -0.383076 0.561915 1.227545 -0.313453 -0.177179 -0.847895 1.141504 -0.152072 0.948892 0.163201 1.153067 -0.221904 -1.806749 -0.887763 0.054836 0.260849 -0.860195 -1.381658 -1.488069 -0.110682 -0.191343 -1.048263 0.884618 2.353940 -0.803335 -1.536505 1.479176 0.484666 0.494129 0.836767 0.124556 1.950924 -0.691440 -0.478721 -0.002396 -0.426934 0.853657 0.644190 -0.024535 -1.180848 0.782113 -0.339920 -1.345781 0.691367 0.022511 -0.371293 0.141072 0.217485 -0.926307 -1.150889 1.312237 0.328362 1.770028 -0.302168 2.076809 -0.706677 -1.088649 0.727331 -0.699191 -0.226189 -0.920638 -0.111656 0.261710 0.652030 -1.141295 -0.791802 -0.416224 -0.542671 -0.821064 1.233879 -0.366952 0.164434 0.142070 0.336234 0.978708 1.018662 -0.621948 0.281964 -1.621408 0.636095 0.846270 0.442206 -2.034358 -0.257041 -0.267678 -0.440414 0.923099 -0.175565 0.625043 -0.019763 -0.375959 0.562417 -0.289598 0.068003 -0.145143 -0.858447 0.128848 -0.213550 0.760430 0.111140 1.731224 1.431815 0.841060 0.191216 0.631529 -0.105276 -0.256000 -0.078910 0.023570 -0.153683 0.212920 0.967483 1.136045 1.069020 0.540315 1.738638 0.745573 -0.738856 1.426082 0.212317 2.129414 -1.087094 -0.735695 0.116333 0.153775 1.461598 2.036068 -0.312991 -0.816332 1.031103 0.279252 -0.272552 -1.031553 -0.151947 -0.396211 -0.285828 1.256499 0.607887 -0.290920 -0.000103 1.842361 -0.437007 -2.285861 1.651336 0.390470 1.137189 0.091893 -0.075862 0.262022 1.094620 -0.795883 -0.011067 1.021892 0.953568 -1.263351 -0.594422 0.052021 1.133002 0.282161 0.925373 -2.039900 -0.054080 1.081060 1.550824 -0.068889 0.919707 -0.825138 -0.935773 0.358677 0.232467 -0.020330 0.144864 0.036607 -1.002684 -0.043164 -0.789857 -0.299721 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = 0.071269 -0.906874 1.027712 -2.109580 -1.598189 -0.449525 -0.198264 -0.728017 -0.013817 0.492995 1.027961 -1.312285 -0.869457 2.511596 0.263108 -1.274115 0.165391 -0.393024 0.525686 0.522333 0.440682 1.000338 -0.278265 -0.234298 0.369926 0.008818 -0.919285 1.107872 1.369278 -0.726642 -0.360167 -0.744834 0.020768 1.822412 -0.241517 -0.323041 -0.462888 3.498049 -1.221332 2.165734 -1.915786 -1.398246 2.300607 -0.734323 -0.444025 -2.276305 -1.785368 1.209136 -0.927794 -1.101161 0.498512 0.708559 0.575599 -1.372579 -0.391166 0.899767 -2.955473 0.829084 1.411498 -0.752912 0.088974 0.000000 -0.858366 0.274589 -1.413989 -0.863312 0.070380 -0.585962 -0.811706 -0.494552 -0.240827 -0.920141 2.945696 0.941726 -0.402850 1.191938 1.192922 -1.626360 2.019328 -0.958957 -2.243656 -0.745157 -0.791045 -1.119859 2.035337 -0.346200 1.410591 -2.506217 1.079054 -3.108909 1.202522 -2.561676 0.355826 2.657515 -1.927772 1.474809 1.464187 1.083418 1.648354 0.316242 1.977245 1.603810 0.521742 1.326647 1.590251 1.143408 -0.860590 -0.851498 -1.589541 -1.802672 0.115393 -1.244451 -3.360687 1.111124 0.171251 -0.048258 0.327115 0.049319 0.155135 2.096198 -1.516628 0.991618 1.249640 -0.499009 -0.608329 2.180933 -0.520623 -0.926597 -1.365047 1.833632 -1.244295 1.588034 1.036908 1.531721 -0.783081 -1.540477 -0.911148 0.097319 -0.250352 -1.739090 -1.536976 -2.384110 0.166567 0.562257 -0.658738 1.642744 3.608914 -1.380219 -1.648168 2.306285 1.415410 -0.029988 1.505641 0.586685 2.486788 -0.039623 -1.603846 -1.388785 -1.528552 0.364585 0.953967 0.780631 -0.556364 1.365523 -0.336320 -2.637207 3.169034 -0.326837 -0.906646 0.241579 0.425680 -1.922515 -2.061965 1.894105 0.070394 2.016664 -0.123364 2.760289 0.447135 -0.949153 1.290404 -0.785029 -0.109132 -1.497480 -0.299434 0.703848 0.562478 -1.324162 -1.144434 -1.214779 -0.871452 -0.949993 1.354204 -0.525564 0.777539 1.348248 0.321492 1.104446 1.836113 -0.285229 0.145557 -2.080469 0.997833 0.780545 -0.611342 -2.429280 -0.006061 -0.783796 0.062255 0.568286 -0.096617 1.698285 -1.364407 -0.979297 0.286184 -0.129936 -0.067396 -0.007728 -2.733216 0.157066 0.210391 1.808074 1.335041 1.696488 1.858787 1.925088 0.658455 1.575980 -0.660702 0.753180 -0.740768 -0.115702 -0.323681 0.437528 0.990607 1.905744 1.497475 1.318922 2.086438 1.530745 0.088017 2.142933 -0.004776 2.491757 0.318683 -1.250417 0.498713 0.468512 2.313320 2.916621 0.255020 0.058272 1.262114 0.258457 -1.134337 -1.762444 0.206787 0.007375 -0.446662 1.758037 0.927570 0.385444 -0.181496 1.685871 -0.071900 -3.241707 1.429711 0.555892 1.389149 0.965118 0.565731 0.513920 1.024359 -1.001133 1.294422 1.479534 1.205721 -2.193054 -0.466597 0.651957 1.289941 1.286372 2.221036 -2.906193 0.405591 0.714767 1.068206 -0.240495 1.606596 -1.571593 -1.280644 1.037705 -0.355778 -0.543358 -0.338600 -0.173589 -1.419262 -0.026549 -1.134349 -1.059208 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.293318 -0.386180 0.903218 -1.689062 -1.688687 0.601195 -0.246733 -1.189196 -0.239636 0.220238 0.871089 -0.103309 -0.045053 1.502212 -0.194075 -1.067527 -0.118959 -0.800808 -0.002785 -0.260967 -0.134258 0.930040 -0.629491 -0.002096 0.178762 -0.623519 -0.190336 0.952509 0.097815 -0.477013 -0.320678 -0.866497 -0.720570 1.890030 0.765301 -0.028938 0.037102 3.090235 -0.749125 0.964594 -1.450378 -1.548372 1.492033 -0.485725 -0.469729 -1.148999 -1.317302 0.757536 -0.301189 -0.227105 0.985465 -0.332250 0.748483 -0.245132 0.165675 0.404970 -1.810767 0.326044 0.811668 -0.998558 -0.680870 -0.524592 -0.261713 0.286480 -1.134577 -0.910364 0.806346 0.706790 0.043361 -0.438045 -0.142469 -1.691019 2.325060 0.749914 -0.263374 0.300886 0.679316 -1.615312 1.359018 0.146534 -2.302112 -0.592767 -0.385801 -1.594094 1.698100 -0.413916 1.535699 -2.596703 1.051465 -2.956486 0.553063 -1.171114 0.773166 1.780738 -1.496456 0.845872 1.378926 1.760512 0.902589 -0.311436 1.658572 0.627291 0.045847 1.326467 1.505170 0.638916 -0.648630 -0.604367 -1.541412 -1.642806 0.442357 -1.168827 -2.765469 0.945190 -0.015330 -0.562536 -0.805877 0.248103 -0.073540 2.220862 -1.527807 0.634572 0.744612 -0.439388 0.022117 1.260146 -0.459229 0.036197 -0.740883 1.446562 -1.572901 1.141068 -0.337637 1.280116 -0.365578 -0.591832 -1.666487 0.459737 0.670717 -1.474152 -1.634148 -1.486273 -0.366906 0.791734 -0.815944 1.980508 3.259138 -1.892630 -1.919899 2.007718 1.262716 -0.226192 1.298884 0.584669 1.592215 -0.255110 -1.045676 -1.459895 -1.197537 -0.015884 -0.287052 0.537639 -0.088860 1.476754 -0.100301 -1.109873 3.759180 -0.585173 -1.436281 0.483586 0.608628 -1.119884 -1.410919 1.653677 0.820781 1.441639 0.660085 2.359505 -0.482968 -0.890507 0.337642 -0.735118 -0.232626 -1.365711 -0.095381 0.049931 0.860641 -0.683461 -1.041286 -0.727612 -0.905076 -0.916644 0.711536 0.746698 0.807578 0.974849 0.390649 0.549309 2.613338 0.582387 -0.297853 -1.347539 1.029974 1.173636 -0.257537 -1.258713 -0.610850 -0.489152 -0.226043 0.094924 0.174604 1.505202 -1.118309 -0.242758 -0.251486 0.206430 0.407684 0.945975 -2.865271 0.518285 -0.076502 0.993903 0.696604 1.194839 1.904826 2.108081 1.368312 0.607644 -0.110482 0.357174 -0.381336 -0.315309 0.536779 1.104837 0.991223 2.050527 1.538326 1.161597 1.538830 1.429770 1.210292 1.728157 -0.089893 3.069256 -0.244057 -0.498511 -0.369655 0.772129 1.765384 2.678849 0.350748 0.595852 0.803330 0.597350 -0.995941 -1.997689 0.790195 -0.324353 0.479915 0.541855 1.125969 0.121788 -0.806408 2.153202 -0.176356 -2.614282 1.122695 0.537991 1.283407 1.007382 0.315450 0.466312 0.570277 -1.026589 1.846355 1.713212 1.085346 -1.798168 -0.137417 0.369796 1.138883 0.201397 1.680098 -1.828095 1.224989 0.414416 1.275519 -0.039315 1.146005 -1.434820 -0.656954 1.098352 -0.799846 -0.115261 1.075083 0.640387 -1.305812 0.593188 -1.518056 -1.163274 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = 0.153763 0.143190 0.471341 -0.690238 -0.745612 -0.009689 0.354271 -0.279843 -0.140578 0.161116 0.319842 -0.118927 -0.183400 0.677871 -0.113327 -0.376930 -0.135611 -0.770264 -0.270081 -0.147744 -0.064732 0.477536 -0.160659 0.032493 0.225378 -0.117031 -0.178023 0.456418 -0.102755 -0.554950 0.017997 -0.271788 -0.048227 0.717138 0.043457 -0.120951 -0.033100 1.278296 -0.468497 0.266822 -0.630337 -0.683332 0.737141 -0.252932 -0.196850 -0.860994 -0.520343 0.478534 0.164252 -0.203221 0.320508 0.158032 0.000819 -0.313129 0.079389 0.335918 -0.970185 0.308902 0.385580 -0.386687 -0.372711 -0.132449 -0.126257 -0.074992 -0.272146 -0.441796 0.231558 0.019361 -0.103566 -0.028360 0.055381 -0.572381 0.942444 0.204173 0.058426 0.345836 0.260250 -0.599503 0.697408 -0.243576 -0.744851 -0.237333 0.023290 -0.444687 0.646909 -0.220042 0.313894 -1.045892 0.237590 -1.012897 0.212964 -0.644839 0.180562 0.697994 -0.396280 0.543651 0.392995 0.296985 0.336007 -0.029740 0.719688 0.218082 0.466696 0.621906 0.471074 0.293350 -0.369420 -0.319387 -0.773308 -0.767933 0.279257 -0.278232 -1.011711 0.438485 0.172560 -0.469142 -0.044433 -0.036761 0.144555 0.920541 -0.583283 0.351072 0.546074 -0.167472 -0.168255 0.647886 -0.212366 -0.146839 -0.457651 0.566659 -0.464802 0.737934 0.032382 0.477785 -0.045183 -0.621734 -0.479224 0.023537 0.053693 -0.519213 -0.546289 -0.648186 0.024193 0.174111 -0.456706 0.556529 1.397552 -0.689792 -0.838640 0.890510 0.954539 -0.019705 0.241921 0.186536 0.788163 -0.077385 -0.542891 -0.415176 -0.497166 0.214766 0.034800 0.271861 -0.146696 0.513014 0.045786 -0.864860 1.460939 -0.254551 -0.450605 0.685593 0.271365 -0.509815 -0.685404 0.649893 0.862157 0.848581 0.279006 0.946995 -0.155110 -0.376668 0.178569 -0.120425 0.038694 -0.723799 -0.095361 0.131848 0.248297 -0.201612 -0.355536 -0.382312 -0.458061 -0.457050 0.274239 -0.146440 0.427302 0.252199 0.250993 -0.092507 0.960803 0.043739 0.018627 -0.788466 0.402461 0.332993 0.149429 -0.788827 -0.135546 -0.110862 -0.117816 0.218108 -0.034262 0.494207 -0.141787 -0.073230 0.189385 -0.115294 -0.130145 0.160451 -0.863990 0.023298 -0.169819 0.545189 0.119831 0.533275 0.960643 0.709221 0.442116 0.369510 -0.061290 0.141179 -0.249509 -0.183115 -0.064701 0.409405 0.489068 0.702609 0.670941 0.407067 0.784160 0.523446 0.168373 0.774918 0.030833 1.297016 -0.229877 -0.338262 -0.100109 0.371896 0.710814 0.988053 0.270735 -0.007805 0.409193 0.319311 -0.413872 -0.646305 0.152970 -0.169578 0.123501 0.493707 0.434504 -0.187861 -0.037853 0.842190 -0.179246 -1.084925 0.416416 0.185977 0.560583 0.183911 0.196796 0.199616 0.478896 -0.405352 0.460780 0.598107 0.491120 -0.790181 -0.260692 0.169266 0.556080 -0.095653 0.749519 -1.222442 0.305525 0.185182 0.459562 -0.237284 0.569317 -0.555406 -0.353732 0.508805 -0.047672 -0.138115 0.549651 0.246788 -0.674398 0.160694 -0.674315 -0.287265 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.133895 0.189269 0.611800 -0.881344 -0.995304 -0.099911 0.378845 -0.316905 -0.181494 0.157407 0.355023 -0.228201 -0.340838 0.869459 -0.202523 -0.610157 -0.245677 -0.853572 -0.362658 -0.293892 -0.109100 0.616202 -0.184345 0.024625 0.363332 -0.211589 -0.236599 0.626326 0.084669 -0.728848 0.108842 -0.342589 0.003599 0.963675 -0.016396 -0.116869 -0.025193 1.709952 -0.441978 0.250485 -0.851859 -0.930851 1.046450 -0.329314 -0.260904 -1.123137 -0.673673 0.630167 -0.085610 -0.104528 0.357630 0.273012 -0.053960 -0.491699 0.126710 0.468576 -1.360410 0.593295 0.489842 -0.538064 -0.512814 -0.173555 -0.251533 -0.155930 -0.224194 -0.598219 0.231834 0.085970 -0.246801 0.012418 0.113025 -0.648563 1.341505 0.224112 0.060632 0.546307 0.345349 -0.651188 0.872640 -0.412159 -0.938794 -0.358213 0.192205 -0.452202 0.840331 -0.207145 0.368722 -1.396926 0.221083 -1.306395 0.331850 -0.873937 0.283310 0.938285 -0.640606 0.825823 0.480950 0.171772 0.445138 0.019687 0.970952 0.227521 0.651163 0.824138 0.517447 0.356011 -0.416714 -0.433043 -0.958396 -1.000542 0.263435 -0.324217 -1.398912 0.548624 0.157318 -0.454022 -0.016554 -0.034895 0.184737 1.095117 -0.777376 0.376026 0.728232 -0.237067 -0.160131 0.825877 -0.266523 -0.218857 -0.588993 0.761050 -0.580833 0.901924 0.032232 0.648796 0.063798 -0.961717 -0.760925 -0.038502 0.032741 -0.655915 -0.736761 -0.763823 -0.018720 0.174813 -0.588675 0.695321 1.874672 -0.858066 -1.128186 1.192405 1.111952 0.136625 0.406063 0.283417 1.056286 -0.109311 -0.690796 -0.531153 -0.614669 0.378303 -0.053059 0.346867 -0.281120 0.659992 0.132408 -0.993360 1.655049 -0.361846 -0.538856 0.732142 0.355351 -0.694100 -0.882104 0.882316 1.139640 1.216828 0.292168 1.287758 -0.265770 -0.662488 0.245942 -0.190319 0.043105 -0.832538 -0.094329 0.153226 0.293389 -0.355232 -0.509793 -0.488124 -0.570623 -0.589061 0.372227 -0.024222 0.509529 0.272831 0.329594 -0.055830 1.228491 0.003289 0.071741 -1.125578 0.500567 0.449979 0.230675 -1.131352 -0.099010 -0.068876 -0.183900 0.359046 -0.036974 0.593598 -0.093602 -0.087317 0.205356 -0.170941 -0.104187 0.141779 -1.003609 0.044633 -0.255482 0.669292 0.168710 0.716331 1.363640 0.854558 0.518817 0.534466 -0.062873 0.081885 -0.095598 -0.202401 -0.063010 0.529120 0.641370 0.937219 0.899429 0.491587 1.042146 0.715076 0.078939 1.032403 0.053273 1.769232 -0.435766 -0.450821 -0.136621 0.472251 0.951731 1.356001 0.248167 -0.049641 0.604912 0.501684 -0.402242 -0.980857 0.135363 -0.215750 0.110388 0.724539 0.508549 -0.338254 0.009968 1.112441 -0.226167 -1.402184 0.662600 0.254467 0.703306 0.046465 0.249737 0.086795 0.732555 -0.623411 0.473945 0.726479 0.643958 -1.065340 -0.346524 0.203396 0.808373 -0.140436 0.976376 -1.519125 0.317126 0.336093 0.626103 -0.246911 0.675586 -0.664765 -0.638551 0.619903 -0.059426 -0.229794 0.698766 0.223039 -0.903491 0.243494 -0.721170 -0.504234 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = -0.004679 -1.474520 0.750106 -1.888874 -1.376878 0.850309 -0.665013 -1.429023 -0.177086 -0.203661 0.784071 -0.226253 0.011626 1.869505 0.174365 -1.547363 0.253213 0.415830 0.373798 0.250411 -0.106049 0.956898 -0.751323 -0.186503 0.214256 -0.864773 0.012284 1.250116 0.419014 0.252037 -0.492921 -1.124534 -1.112921 2.365725 1.083541 0.797896 0.042707 3.682211 -0.551228 2.634733 -1.519850 -1.593745 1.746762 -0.482539 -0.647450 -0.622709 -1.678800 0.599749 -1.292909 -0.532268 1.096769 -0.631983 1.145436 -0.278453 0.323579 0.487952 -1.719051 -0.195699 0.826790 -1.070064 -0.660952 -0.829174 -0.649681 0.409472 -2.218684 -0.966171 0.718034 0.878359 -0.084324 -0.528944 -0.402767 -1.949849 3.057631 1.178135 -0.806770 0.234745 0.935462 -1.771438 1.257203 0.813267 -2.797990 -0.829658 -0.780679 -2.067861 2.239324 -0.283010 2.426069 -3.148707 1.541241 -3.612488 0.911223 -1.519485 1.168673 2.524397 -2.162491 1.078310 1.665628 2.922780 0.595407 -0.271884 1.794728 1.010834 -0.879244 1.223754 2.242615 0.593394 -0.813094 -1.186127 -1.506441 -1.549033 0.463767 -2.027899 -3.672984 0.770687 -0.360066 0.497239 -1.152608 0.932694 -0.492320 2.037190 -2.137382 1.044276 0.548489 -0.591763 0.423181 1.234765 -0.489876 0.063814 -0.701873 1.833048 -1.827740 0.841770 -0.738936 1.605420 -0.820970 0.479006 -1.623549 0.454163 0.917598 -1.632488 -2.233452 -1.928295 -0.958914 1.792674 -0.644904 2.731664 3.667402 -2.004927 -1.853884 2.232095 0.457950 0.154393 1.611535 0.873994 1.456261 -0.407845 -0.926593 -1.922509 -1.118314 -0.175457 -0.093444 0.505950 -0.447787 1.902315 -0.638385 -1.050615 4.875016 -0.698273 -1.592826 -0.899832 0.342773 -1.385792 -1.528083 2.514011 -1.010043 1.572007 0.016938 2.815268 -0.508153 -0.879169 0.409557 -1.575784 -0.566011 -1.928570 -0.014998 -0.281697 1.145412 -1.461144 -1.511175 -0.625691 -0.812743 -0.780406 1.011531 1.180025 0.331503 1.047889 0.388843 1.871751 2.712548 0.689975 -0.758521 -1.353339 1.164112 1.397263 -0.915495 -0.904151 -0.460456 -0.474853 -0.374732 -0.431769 0.438313 1.491442 -2.105315 -0.410024 -0.738636 0.494292 0.725202 1.172637 -4.234261 0.735664 0.736480 0.789141 1.453469 1.320565 2.199877 2.265427 1.422141 0.602044 -0.155106 0.446028 -1.096598 0.061044 0.863819 1.332091 0.874965 2.514802 1.675237 1.209677 1.463818 1.845541 1.940642 1.826806 0.428232 3.321914 0.700913 -0.750087 0.021054 0.597208 2.070215 3.071323 -0.138684 1.336916 1.063484 0.548345 -1.220428 -2.372351 0.816075 -0.381209 0.177653 0.692124 0.652241 0.352269 -1.102631 2.616430 -0.110549 -3.179929 1.066186 0.766512 1.467616 1.605143 0.225646 0.765918 0.576648 -1.164392 2.640750 1.716858 1.042494 -1.878524 0.313722 0.295078 0.707035 1.462123 1.733402 -1.006138 1.368778 0.259156 1.952702 0.411243 1.112385 -1.276235 -0.247038 0.822342 -1.488650 -0.054754 0.424498 0.547520 -0.710140 0.411533 -2.207322 -1.904017 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = -0.099450 0.153153 0.526885 -0.864375 -0.932622 -0.186327 0.581406 -0.322738 -0.121732 0.043206 0.516064 -0.508722 -0.496513 1.088179 -0.151369 -0.596784 -0.056184 -0.333584 -0.318882 -0.077058 0.030672 0.622902 -0.119631 -0.115120 0.350379 -0.113253 -0.212045 0.806064 0.337760 -0.419325 -0.014281 -0.279661 0.210119 0.940898 -0.024892 0.069027 -0.115322 1.496722 -0.900521 0.903809 -1.065952 -0.661805 1.173949 -0.183879 -0.289476 -1.654971 -1.065579 0.572011 -0.381159 -0.374309 0.350483 0.184569 0.154023 -0.533783 0.222699 0.837022 -1.314483 0.519465 0.519544 -0.569723 -0.252279 -0.087229 -0.388508 -0.093784 -0.451505 -0.612652 -0.065310 -0.095244 -0.195316 0.015930 -0.042923 -0.718969 1.526571 0.109489 -0.240799 0.488155 0.220659 -0.864841 0.792019 -0.436913 -0.766232 -0.334011 0.205602 -0.007128 0.677344 -0.131858 0.425449 -1.388405 -0.299268 -1.262662 0.555628 -1.003663 0.339115 0.908904 -0.734073 0.727813 0.344291 -0.202002 0.516486 0.337888 0.821127 0.415204 0.754912 0.449186 0.608279 0.547729 -0.477083 -0.705262 -0.879922 -0.928589 0.270769 -0.297527 -1.695723 0.348760 0.010635 -0.227880 0.056497 -0.196595 0.290423 1.098269 -0.425949 0.698057 0.755420 -0.220988 -0.103560 1.071438 -0.147341 -0.210184 -0.582415 0.714542 -0.399906 0.928742 -0.036908 0.640570 -0.221865 -1.422582 -0.501564 -0.038157 -0.065897 -0.596448 -0.733476 -1.011722 0.025721 0.262027 -0.518669 0.032795 1.695060 -0.744207 -1.110040 1.041598 1.266666 0.094550 0.271971 0.232310 1.281502 -0.324792 -0.395371 -0.552101 -0.557848 0.355774 0.890283 0.195911 -0.616884 0.554569 -0.117713 -2.152118 1.666919 -0.263949 -0.389064 0.606805 0.184065 -0.627255 -0.785583 1.069222 0.586232 1.201124 -0.358791 1.214895 -0.354460 -0.787820 0.289975 -0.194737 -0.036925 -0.862006 -0.157958 0.469178 0.390050 -0.528095 -0.494705 -0.514090 -0.453872 -0.481153 0.505911 -0.685925 0.165309 0.150443 0.207704 0.032597 0.891838 -0.112337 0.183493 -0.976510 0.475647 0.393803 0.206030 -1.642559 0.035425 -0.263794 -0.197386 0.078382 -0.059152 0.513852 -0.123963 -0.162283 0.281956 -0.537220 -0.113279 -0.036370 -0.890975 0.102799 -0.233184 0.638378 0.186516 0.795951 1.302402 0.783936 0.339937 0.569649 -0.064436 -0.096809 -0.382482 0.141564 0.027708 0.081758 0.578278 0.929707 0.719270 0.328660 0.989564 0.547256 0.170743 0.955726 0.346887 1.424732 -0.013995 -0.468878 0.146046 0.219083 0.889384 1.339335 0.392325 -0.180090 0.546189 0.368596 -0.402128 -0.848129 0.012458 -0.155942 -0.444905 1.333642 0.350977 -0.287525 -0.024948 1.162338 -0.193067 -1.397086 0.605033 0.200955 0.614254 0.051869 0.120717 0.168865 0.745973 -0.385148 0.471193 0.567863 0.717881 -0.970835 -0.797857 0.095741 0.474402 0.771611 0.758501 -1.914131 0.048474 0.389876 0.919676 -0.289984 0.948299 -0.576464 -0.358850 0.365104 0.043132 -0.223504 0.070788 0.053209 -0.723567 -0.026406 -0.896910 -0.389158 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = -0.068031 0.121147 0.514963 -0.860232 -0.894169 -0.166707 0.574812 -0.333956 -0.128214 0.053623 0.490443 -0.466097 -0.468017 1.073047 -0.160736 -0.566332 -0.025417 -0.346625 -0.281294 -0.055975 0.020657 0.622988 -0.130109 -0.126433 0.353228 -0.118351 -0.204079 0.783478 0.294958 -0.396497 -0.022147 -0.296241 0.179205 0.938460 0.006118 0.064142 -0.121495 1.487589 -0.876735 0.915205 -1.063458 -0.650101 1.154423 -0.196722 -0.270991 -1.639936 -1.040789 0.547226 -0.349958 -0.356053 0.337120 0.146031 0.169893 -0.518607 0.204483 0.810026 -1.283829 0.494140 0.517979 -0.552484 -0.241756 -0.113961 -0.386073 -0.110949 -0.458573 -0.600664 -0.058939 -0.082914 -0.193574 0.022986 -0.066907 -0.688633 1.475464 0.130062 -0.241370 0.461855 0.202286 -0.875046 0.758062 -0.445531 -0.769178 -0.344416 0.176928 -0.011347 0.675979 -0.130032 0.438287 -1.372665 -0.267885 -1.265783 0.525766 -0.990046 0.347418 0.911147 -0.715985 0.719985 0.351902 -0.156995 0.497265 0.329723 0.807425 0.433229 0.702245 0.441720 0.613435 0.543241 -0.455770 -0.687085 -0.836895 -0.871712 0.251016 -0.292081 -1.664171 0.341190 -0.002876 -0.216840 0.021015 -0.168411 0.262346 1.081502 -0.443911 0.673029 0.728295 -0.224802 -0.095260 1.025819 -0.132796 -0.211267 -0.585548 0.700279 -0.403764 0.915103 -0.065982 0.644772 -0.248832 -1.394001 -0.490526 -0.057263 -0.063062 -0.599337 -0.748760 -1.008118 0.004716 0.261527 -0.508199 0.051190 1.651626 -0.740081 -1.084159 1.027291 1.223988 0.089430 0.278866 0.240531 1.215479 -0.302683 -0.391424 -0.539704 -0.542355 0.324098 0.852028 0.174247 -0.603278 0.550316 -0.130952 -2.100636 1.651651 -0.248720 -0.392961 0.569796 0.155031 -0.621725 -0.767351 1.057383 0.528507 1.167391 -0.371756 1.198041 -0.338602 -0.757113 0.270058 -0.224102 -0.027190 -0.847495 -0.127644 0.447652 0.379604 -0.537297 -0.514263 -0.475202 -0.432808 -0.467150 0.515267 -0.684272 0.145487 0.161253 0.196548 0.065525 0.867194 -0.121631 0.187438 -0.921905 0.480094 0.391954 0.200833 -1.621984 0.027742 -0.239349 -0.204221 0.064312 -0.031995 0.510823 -0.141170 -0.157157 0.287836 -0.506822 -0.105427 -0.010196 -0.875327 0.109666 -0.221960 0.603149 0.186430 0.780867 1.252299 0.765891 0.313595 0.547191 -0.076696 -0.095605 -0.382469 0.145692 0.053537 0.064234 0.557305 0.921026 0.721546 0.329952 0.949572 0.553287 0.193691 0.932281 0.345697 1.384265 -0.024806 -0.468433 0.155626 0.217312 0.884085 1.293935 0.391586 -0.166629 0.532413 0.335900 -0.398283 -0.816589 0.030304 -0.142356 -0.437878 1.284735 0.357409 -0.267248 -0.038667 1.162707 -0.198038 -1.377261 0.600505 0.219243 0.614346 0.054472 0.135630 0.177500 0.729170 -0.360446 0.486954 0.558873 0.709030 -0.939376 -0.789798 0.098476 0.448399 0.782942 0.749283 -1.857513 0.052325 0.376956 0.910368 -0.277994 0.926344 -0.545476 -0.338547 0.348527 0.039254 -0.209884 0.078397 0.061804 -0.691097 -0.033480 -0.876936 -0.369115 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = 0.019847 0.138613 0.432025 -0.837156 -0.901423 -0.116649 0.379106 -0.397346 -0.141141 0.181633 0.457646 -0.466666 -0.389064 1.080143 -0.220755 -0.563237 -0.081543 -0.349727 -0.246347 -0.057774 0.001489 0.608031 -0.151812 -0.138011 0.292457 -0.101056 -0.191395 0.609558 0.279008 -0.402868 -0.087741 -0.309306 0.157659 0.917081 0.059007 0.039057 -0.138828 1.415280 -0.730699 0.830440 -1.111402 -0.699882 1.051314 -0.183664 -0.158184 -1.504308 -0.917610 0.544707 -0.257071 -0.313315 0.298542 0.100513 0.116485 -0.477974 0.174973 0.682180 -1.211726 0.582920 0.512877 -0.511546 -0.245132 -0.121339 -0.276957 -0.037696 -0.413761 -0.597755 -0.042804 0.052997 -0.229745 0.001677 -0.105360 -0.706818 1.362116 0.146290 -0.280706 0.390764 0.129248 -0.801568 0.723298 -0.584382 -0.784315 -0.305161 0.200995 0.006871 0.597275 -0.011996 0.479358 -1.356117 -0.110364 -1.276543 0.503078 -0.874738 0.370233 0.879071 -0.681760 0.616225 0.362312 -0.073268 0.641456 0.349863 0.785102 0.418436 0.617901 0.407533 0.543033 0.559540 -0.394982 -0.590690 -0.723343 -0.883671 0.201366 -0.214510 -1.574186 0.370739 -0.027761 -0.116243 -0.036388 -0.130414 0.236732 0.979432 -0.620379 0.368530 0.636581 -0.208737 0.013573 0.943463 -0.140088 -0.129874 -0.570121 0.663280 -0.391759 0.785528 -0.036218 0.636998 -0.311166 -1.310285 -0.618991 0.020364 0.007758 -0.640699 -0.731853 -1.024320 -0.001694 0.243240 -0.525415 0.209202 1.604146 -0.759704 -1.062854 0.993979 1.049531 0.009308 0.407938 0.201610 1.217083 -0.326751 -0.330766 -0.433025 -0.501416 0.271808 0.683189 0.158717 -0.577426 0.509000 -0.128734 -1.892282 1.396502 -0.183202 -0.414284 0.392352 0.174883 -0.574193 -0.666529 0.946749 0.377946 1.076893 -0.338506 1.167133 -0.383510 -0.705542 0.287134 -0.358114 -0.073140 -0.682880 -0.113861 0.364596 0.446783 -0.573430 -0.455427 -0.363698 -0.466765 -0.492054 0.516261 -0.568653 0.144921 0.196553 0.162900 0.222247 0.882616 -0.093281 0.194408 -0.860143 0.469170 0.432139 0.163854 -1.532412 -0.052608 -0.317466 -0.189985 0.106791 -0.056191 0.511873 -0.150612 -0.160741 0.231748 -0.445093 0.024986 0.010287 -0.652278 0.128733 -0.288484 0.638766 0.161207 0.802239 1.098592 0.829481 0.359000 0.465225 -0.068154 -0.158242 -0.204329 0.140360 0.108799 0.032968 0.569586 0.892383 0.689222 0.354232 0.944937 0.503143 0.138854 0.942649 0.200154 1.370114 -0.197800 -0.363158 0.086045 0.179581 0.867644 1.336805 0.199369 -0.168523 0.491803 0.233609 -0.380504 -0.709231 0.072633 -0.137994 -0.437271 1.077968 0.420341 -0.179087 -0.109816 1.136224 -0.181065 -1.318989 0.667781 0.196880 0.594845 0.104512 0.100565 0.158018 0.647964 -0.360761 0.437277 0.626787 0.704339 -0.917126 -0.757156 0.088625 0.517718 0.696910 0.710992 -1.654395 0.159784 0.473226 0.879739 -0.248742 0.794572 -0.593886 -0.381099 0.363410 0.041688 -0.185656 0.091276 0.112808 -0.626159 -0.015157 -0.730173 -0.379193 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 0.184712 0.132727 0.366470 -1.394625 -1.320273 -0.157755 0.390063 -0.684431 -0.304633 0.444132 0.653414 -0.852309 -0.641161 1.702548 -0.250287 -0.990332 -0.068168 -0.688673 -0.345033 0.133196 -0.141903 0.939996 -0.302434 -0.323589 0.463976 0.019139 -0.362909 0.766936 0.686419 -0.755021 -0.360290 -0.498120 0.177800 1.541948 0.218464 -0.103786 -0.176793 2.303149 -0.942662 1.276650 -1.703695 -1.034330 1.657754 -0.316660 -0.267104 -2.042269 -1.141419 0.982394 -0.501053 -0.523879 0.473214 0.094987 0.096580 -0.813159 0.154095 1.123812 -1.920205 1.176657 0.939685 -0.462595 -0.374440 -0.323000 -0.268110 0.004762 -0.663062 -1.038379 -0.046569 -0.020897 -0.565802 -0.144858 -0.462456 -1.122362 2.047582 0.406852 -0.555414 0.528828 -0.081617 -1.224311 1.055847 -1.135884 -1.312114 -0.416971 0.304388 -0.002055 1.054487 0.057115 0.724021 -2.227872 0.036222 -2.162461 0.659275 -1.352889 0.701663 1.603731 -1.123856 0.855880 0.417148 -0.030040 1.097201 0.480096 1.280530 0.541560 0.767047 0.528860 0.767438 0.933603 -0.593835 -0.838813 -0.863561 -1.327533 0.176336 -0.182838 -2.392179 0.747498 -0.288308 0.078407 -0.019385 -0.055401 0.106920 1.231435 -1.157515 -0.029080 0.702292 -0.356067 0.406545 1.575368 -0.239503 -0.131569 -0.945307 1.070066 -0.374436 1.128776 -0.131364 1.083808 -0.528148 -1.864374 -1.117034 0.086218 0.243552 -1.111138 -1.309506 -1.754031 -0.026629 0.080899 -0.928301 0.767432 2.515827 -1.202427 -1.563801 1.686089 1.098478 0.221377 0.899066 0.164140 1.983808 -0.628226 -0.341888 -0.368346 -0.669029 0.224503 0.760631 0.136665 -0.994802 0.647848 -0.354028 -2.352401 1.638681 0.108052 -0.662435 0.272995 0.188238 -0.893772 -1.207888 1.557835 0.176075 1.559651 -0.362357 1.923425 -0.588710 -1.026481 0.702496 -0.517721 -0.150880 -1.022408 -0.366115 0.492040 0.722710 -1.005904 -0.691944 -0.385800 -0.475602 -0.943406 0.928309 -0.473859 0.118387 0.315983 0.270157 0.674755 1.412214 -0.315448 0.383917 -1.381172 0.785777 0.791451 0.041233 -2.161354 -0.176706 -0.571191 -0.373332 0.494421 -0.150689 0.796052 -0.403059 -0.406904 0.461400 -0.372528 0.347746 0.101906 -1.049669 0.317269 -0.446380 0.839189 0.446661 1.453887 1.381152 1.363523 0.551327 0.562591 -0.157574 -0.157873 -0.295429 0.082171 0.058247 0.191616 1.000999 1.277114 1.107437 0.596786 1.451075 0.716218 -0.064559 1.558247 0.286564 2.155920 -0.331160 -0.590386 0.204659 0.035253 1.417351 2.174247 -0.259130 -0.380622 0.838131 0.207056 -0.611488 -1.045929 0.127656 -0.290407 -0.705741 1.308372 0.466298 -0.147823 -0.254467 1.914592 -0.425676 -2.156672 1.189251 0.359003 1.027263 0.264735 0.143684 0.319520 0.923595 -0.772795 0.722144 1.125889 1.124664 -1.264919 -0.912595 0.142215 0.894528 0.862910 1.018387 -2.178253 0.286284 0.852184 1.478510 -0.025759 0.996311 -0.873994 -0.607064 0.538429 0.097570 -0.124822 -0.098449 0.339542 -0.887589 -0.036755 -1.005069 -0.555843 +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.147865 -0.200360 0.718572 -2.125613 -1.713112 -0.208378 1.196884 -1.039775 -0.491423 1.452494 0.774387 -1.088581 -0.692757 2.502777 0.004970 -1.139890 0.113412 -1.077107 -0.387390 0.361734 -0.188847 1.597233 -0.499415 -0.410336 0.718871 -0.072191 -0.302568 1.406134 0.130851 -0.573866 -0.099078 -0.999642 0.017698 2.322583 0.455444 0.120073 -0.591133 3.489532 -2.229734 2.950473 -2.368877 -1.790163 2.533165 -0.473405 -0.352243 -2.649534 -1.452853 1.438270 0.009147 -1.492321 0.645197 0.204714 0.557296 -1.222461 0.118763 1.373361 -2.337586 0.587632 1.346594 -1.165271 -0.952708 -0.516037 -0.405641 0.378868 -2.280740 -1.489886 -0.082720 -0.504244 -0.471346 -0.240330 -0.624053 -1.627062 2.315017 0.826698 -0.812149 0.689437 0.014618 -1.987490 1.691345 -0.909706 -2.044887 -0.782433 -0.227016 -1.104962 1.510386 -0.046820 1.722942 -3.310503 0.660897 -3.149298 0.962182 -1.910303 0.903857 2.611080 -1.109226 1.520314 0.688960 1.262303 1.238215 0.037482 1.681329 1.228430 1.110186 1.153905 1.633568 1.734281 -1.501795 -1.787979 -1.780042 -1.775900 0.893901 -1.080928 -3.097838 1.083797 -0.070584 -0.379868 0.030145 -0.078230 -0.227185 2.506012 -2.214531 0.659582 1.140405 -0.540000 0.165382 1.980567 -0.300299 -0.315568 -1.163107 1.602731 -0.739175 1.929109 -0.043084 1.797310 -1.474641 -1.079024 -0.644207 0.241802 0.258348 -1.586706 -1.866928 -3.084144 -0.308101 0.949928 -1.313251 1.514264 3.724654 -1.834133 -2.209504 2.401557 1.378041 -0.200136 0.520669 0.359090 2.312006 -0.704145 -0.914050 -1.016871 -1.070134 0.535326 2.901483 0.407034 -1.490675 1.461177 -1.071299 -3.340495 3.192704 0.069371 -1.055252 -0.137434 0.331928 -1.456913 -1.615664 2.394882 -1.198556 2.183622 -1.052603 2.703822 -0.530603 -0.792802 0.869612 -1.749076 -0.400073 -2.494672 -0.414226 0.639656 1.124385 -1.466775 -1.075227 -0.893457 -0.898776 -1.334824 1.408806 -2.138888 0.153307 0.523979 0.503761 1.850332 1.898480 -0.306400 -0.135792 -1.717348 1.290118 0.974512 0.058184 -2.670835 -0.514324 -0.697695 -0.712808 0.187550 -0.109001 1.295994 -1.233913 -0.301689 0.760995 -0.416049 -0.200081 0.248496 -3.061515 0.562138 0.036894 1.576537 0.867149 2.057594 1.919747 2.031935 0.798899 1.018690 -0.486060 -0.030029 -1.820349 0.475554 0.229127 0.027062 1.427611 2.254178 1.749221 1.071774 2.219620 1.300061 0.349170 2.202550 0.169241 2.931233 0.102344 -1.059230 0.650819 0.515252 1.926371 2.770618 0.365314 -0.434568 1.349601 -0.134814 -1.588441 -0.905835 0.328257 -0.520282 -0.366752 1.759767 0.871361 -0.280165 -0.276787 2.817859 -0.680642 -3.513264 1.239679 0.691424 1.798928 1.076595 0.203887 1.184594 1.241164 -0.721741 1.756465 1.738216 1.309370 -1.975121 -0.881990 0.330334 0.865457 2.268909 1.601779 -3.808520 0.288737 0.576328 2.231809 -0.395327 2.351358 -1.324233 -0.097931 1.002572 -0.082593 -0.107567 -0.194872 0.567753 -0.882971 0.092160 -2.469603 -0.555722 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = 0.045324 -0.004201 0.120314 -0.218727 -0.041056 -0.073310 0.314573 -0.037510 -0.037428 -0.026292 0.080506 -0.070965 -0.137579 0.286460 0.006045 -0.131900 0.070197 -0.192766 -0.147634 0.087900 0.002564 0.144567 -0.000467 -0.130710 0.169104 0.011174 -0.030083 0.192234 -0.123479 -0.223832 0.001997 -0.059928 0.097991 0.258996 -0.065785 0.149467 -0.097698 0.328861 -0.181732 0.399780 -0.323343 -0.197485 0.375155 -0.086696 -0.071701 -0.480724 -0.190339 0.161773 0.102390 -0.254793 -0.024835 0.047180 -0.065550 -0.276326 -0.020277 0.304819 -0.335946 0.039419 0.136969 -0.133905 -0.163210 -0.027650 -0.036437 -0.138417 -0.128117 -0.194775 -0.036287 -0.113407 -0.160383 0.091765 -0.060338 -0.171490 0.426020 0.064733 0.004683 0.173209 -0.030740 -0.181694 0.185197 -0.127691 -0.080888 -0.144438 0.086025 0.075968 0.141309 -0.000710 0.087065 -0.366642 -0.055934 -0.265808 0.168417 -0.282610 0.127335 0.211629 -0.065140 0.271356 0.046616 -0.027423 -0.032940 0.148336 0.219352 0.102126 0.195979 0.047821 0.209918 0.076898 -0.174492 -0.275504 -0.188942 -0.187942 0.137651 -0.055192 -0.399645 0.077818 -0.050218 -0.018814 0.061781 0.023092 0.117466 0.186065 -0.244882 0.218933 0.243731 -0.059309 -0.008458 0.246167 0.011142 -0.137904 -0.174847 0.142149 -0.018808 0.224457 -0.013130 0.170206 -0.051987 -0.330891 0.099742 -0.120354 -0.075649 -0.172569 -0.199859 -0.310318 -0.002421 0.209870 -0.164158 0.029319 0.399007 -0.126319 -0.255990 0.201803 0.423415 0.065990 -0.032853 0.085203 0.332936 -0.162185 -0.037193 -0.004100 -0.023115 0.212339 0.169737 -0.033189 -0.238414 0.142789 -0.079347 -0.675611 0.589837 -0.071119 0.028451 0.333464 -0.030193 -0.175907 -0.239290 0.259190 0.202744 0.432830 -0.148879 0.325010 -0.128277 -0.099073 0.064402 -0.077556 -0.050933 -0.314958 -0.029196 0.030325 0.099001 -0.191434 -0.152322 -0.087339 -0.152340 -0.054995 0.245259 -0.329247 0.012002 -0.064465 -0.037537 0.006655 0.070204 -0.163878 0.042851 -0.259980 0.097923 0.076708 0.119864 -0.393278 0.021415 -0.050092 -0.069961 0.050082 -0.008386 0.106341 -0.006644 -0.018397 0.202334 -0.128258 -0.158510 -0.140904 -0.112578 -0.089918 0.003993 0.103817 0.016925 0.287926 0.336255 0.107067 -0.083181 0.098886 -0.028703 -0.046878 -0.321681 0.004846 -0.145457 0.114162 0.146725 0.123139 0.147424 0.075667 0.290855 0.096852 0.056042 0.262848 0.195420 0.291735 0.017608 -0.189065 0.159750 -0.013083 0.236650 0.200325 0.013921 -0.068253 0.163921 0.062776 -0.158803 -0.073570 -0.067455 -0.024320 -0.233537 0.434205 0.073846 -0.053632 0.012728 0.370538 -0.049820 -0.412989 0.130390 0.058349 0.173594 0.040155 0.002966 0.162309 0.270577 0.034038 -0.014209 0.040254 0.231986 -0.275716 -0.185164 0.025900 0.105839 0.200182 0.118671 -0.465253 -0.019231 0.034535 0.285424 -0.107842 0.197237 -0.079456 0.068820 -0.009921 0.087380 -0.021510 0.012257 0.028927 -0.077085 -0.172441 -0.410316 0.093398 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = -0.010685 0.018482 0.092441 -0.112601 -0.046326 -0.078772 0.257451 0.066599 -0.031530 -0.206238 0.037703 -0.038055 -0.220984 0.132240 0.062687 -0.157004 0.010004 -0.177272 -0.157459 0.087005 -0.023067 0.066019 0.019068 -0.011922 0.124729 0.055695 -0.072097 0.153688 0.007019 -0.256919 0.000716 -0.004669 0.079037 0.134907 -0.102570 0.114250 0.000491 0.258791 -0.004950 0.211042 -0.103371 -0.082940 0.196868 -0.077311 -0.102265 -0.301545 -0.102108 0.152543 -0.078748 -0.139916 0.061222 0.125297 -0.146932 -0.163604 0.053982 0.236736 -0.296537 0.122475 0.082977 0.008544 -0.036369 -0.007052 -0.129178 -0.176641 0.062862 -0.108682 -0.044774 -0.142148 -0.152530 0.068206 0.014248 -0.054194 0.396799 0.043033 0.028197 0.173203 0.074449 -0.009703 0.137186 -0.119234 -0.053126 -0.065968 0.067331 0.131708 0.192147 -0.045068 -0.109466 -0.197152 -0.108134 -0.126551 0.095481 -0.253571 0.018328 0.150208 -0.041711 0.207577 0.013706 -0.217067 -0.097532 0.102017 0.152351 -0.015523 0.146162 0.073517 0.088386 -0.068704 -0.107470 -0.158040 -0.154140 -0.146429 0.066455 0.010259 -0.232346 0.043040 0.042124 0.079488 0.119528 0.073557 0.110701 -0.067321 -0.062361 0.220147 0.173939 -0.038730 0.012154 0.213598 -0.043857 -0.112063 -0.144723 0.123064 0.004416 0.216373 -0.005509 0.066334 0.169228 -0.265369 0.036829 -0.119066 -0.053330 -0.020296 -0.101359 -0.103080 0.044216 0.071046 -0.110468 -0.033756 0.279790 -0.056373 -0.096081 0.186025 0.306854 0.218759 -0.081432 0.048264 0.188465 -0.038358 -0.088120 0.030567 -0.060314 0.112300 -0.060342 0.040234 -0.142747 0.062673 0.026899 -0.379853 0.332161 -0.070450 0.000000 0.331040 -0.052534 -0.131916 -0.228538 0.186209 0.358838 0.289756 0.050581 0.197940 -0.013457 -0.093406 0.057870 0.150445 0.052220 -0.245684 -0.084105 0.055903 -0.049195 -0.129985 -0.083055 -0.082510 -0.049238 -0.076347 0.076009 -0.071062 0.023567 -0.048390 0.077967 -0.121651 0.083276 -0.103722 0.041433 -0.272849 0.057130 -0.062019 0.051109 -0.185777 0.107950 0.048979 -0.035650 0.166102 -0.025838 -0.026144 0.094017 -0.037144 0.144351 -0.106258 -0.108563 -0.059550 -0.013282 -0.147915 0.077739 0.024848 0.057469 0.119285 0.290061 0.020579 -0.013615 0.122396 -0.005354 0.099145 -0.171868 -0.095083 -0.204424 0.191414 0.092329 -0.054376 0.121869 -0.014750 0.176140 0.081972 -0.037609 0.153543 0.228800 0.224417 0.088450 -0.194262 0.103419 -0.000841 0.137993 0.078342 -0.100464 0.026635 0.140171 0.145822 -0.025521 -0.083808 -0.078100 -0.053373 -0.165880 0.354194 -0.061013 -0.079744 0.091874 0.170309 -0.095969 -0.220519 0.019377 0.033523 0.107019 -0.046684 0.072841 0.054844 0.199654 -0.101136 -0.050181 -0.012355 0.138210 -0.139499 -0.075510 0.010895 0.035344 -0.032099 0.121229 -0.212209 -0.143342 0.001471 0.140913 -0.033073 0.007073 -0.007360 -0.057204 0.020159 0.045300 -0.036308 0.018507 0.000000 -0.049597 -0.143913 -0.210486 -0.015533 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = -0.039109 0.124912 0.565512 -0.846201 -0.922996 -0.276316 0.807000 -0.239005 -0.169748 0.346436 0.329379 -0.495851 -0.542473 1.138437 -0.126715 -0.539438 -0.102316 -0.550267 -0.353679 -0.051534 -0.033254 0.699124 -0.110152 -0.050271 0.400212 -0.068444 -0.184327 0.820404 0.108750 -0.443252 0.120641 -0.337763 0.210477 0.927209 -0.069986 0.073992 -0.193846 1.668829 -1.023127 1.139879 -1.060289 -0.828622 1.183721 -0.219016 -0.199333 -1.635202 -0.892101 0.660838 -0.208787 -0.469699 0.307030 0.344644 0.013323 -0.591743 0.225630 0.759694 -1.352927 0.485524 0.511677 -0.562717 -0.356106 -0.124990 -0.406638 -0.074542 -0.636728 -0.615787 -0.116435 -0.241459 -0.277970 0.100984 -0.006163 -0.571115 1.301128 0.175658 -0.225875 0.533369 0.268335 -0.757801 0.834450 -0.603049 -0.815063 -0.350835 0.123099 -0.179544 0.688005 -0.066755 0.446946 -1.404734 -0.056165 -1.238652 0.499676 -1.090032 0.247932 1.045193 -0.520249 0.916053 0.282370 -0.005256 0.511931 0.201386 0.767432 0.524835 0.856727 0.593724 0.590036 0.647175 -0.608963 -0.791458 -1.002855 -0.882976 0.340741 -0.354215 -1.530517 0.370752 0.184532 -0.197839 0.167090 -0.097139 0.159926 1.049984 -0.756254 0.719696 0.768931 -0.224429 -0.138382 0.987685 -0.192495 -0.240892 -0.596271 0.730496 -0.345095 1.066228 0.067300 0.660633 -0.358072 -1.071196 -0.361885 -0.064117 -0.107566 -0.508380 -0.701721 -1.171145 -0.029324 0.379679 -0.554926 0.246562 1.788070 -0.723648 -1.053688 1.082692 1.106673 0.093943 0.083845 0.227308 1.130696 -0.200660 -0.540575 -0.490968 -0.545313 0.406306 1.224132 0.291357 -0.661342 0.612834 -0.180790 -1.974064 1.516649 -0.235174 -0.390037 0.365622 0.172565 -0.682231 -0.770118 1.115639 0.183996 1.251071 -0.435771 1.164689 -0.236695 -0.602384 0.283246 -0.558253 0.025124 -1.119310 -0.132077 0.392702 0.381477 -0.618058 -0.481940 -0.564528 -0.530834 -0.541322 0.466535 -1.008327 0.153983 0.128503 0.347319 0.403717 0.863464 -0.145766 0.092074 -1.056938 0.499339 0.252952 0.219384 -1.593743 0.042716 -0.133360 -0.267379 0.126775 -0.064193 0.387697 -0.189197 -0.107980 0.334661 -0.505346 -0.273978 -0.032770 -1.046933 0.044964 -0.097002 0.794497 0.262414 0.751575 1.306648 0.741134 0.342178 0.643923 -0.147929 -0.056615 -0.534518 0.196452 0.032321 -0.039245 0.580905 0.934651 0.779148 0.303261 1.016358 0.619748 -0.012735 0.938790 0.266964 1.468153 -0.069234 -0.551853 0.199499 0.335121 0.820738 1.223899 0.395164 -0.168356 0.637735 0.242021 -0.474082 -0.563372 -0.020756 -0.230248 -0.272231 1.306016 0.368107 -0.403235 0.146473 1.089957 -0.292391 -1.496178 0.483652 0.248829 0.682743 0.105060 0.173001 0.261784 0.832818 -0.403462 0.559256 0.592712 0.593997 -0.938962 -0.699791 0.119397 0.418546 0.875501 0.807962 -2.073728 -0.056403 0.315080 0.872998 -0.357117 1.100926 -0.567503 -0.342688 0.460136 0.023088 -0.249563 0.117165 0.107758 -0.578547 0.017957 -0.991094 -0.418490 +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.058400 -0.029923 0.735655 -1.105990 -0.821295 -0.422988 1.752247 -0.287210 -0.312961 1.212234 0.173905 -0.580944 -1.041181 1.261578 0.092492 -0.578582 0.094707 -1.114918 -0.470257 -0.012543 -0.235100 0.773619 -0.145478 -0.328904 0.607239 -0.023404 0.037053 1.364145 -0.293965 -0.455906 0.362140 -0.537232 0.287982 1.310143 0.032417 0.145546 -0.538969 2.404513 -1.952726 2.091912 -1.470266 -1.375442 1.960188 -0.303279 -0.300175 -2.118536 -0.582354 1.045923 -0.159053 -1.026795 0.201574 0.461611 0.191412 -1.097256 -0.101620 1.301822 -1.753286 0.311786 0.674967 -0.859974 -0.873932 -0.224543 -0.264641 0.167907 -1.297691 -0.906473 -0.155509 -0.973126 -0.546159 0.193816 -0.343464 -0.561480 1.225733 0.385635 -0.197681 0.606636 0.006109 -0.867882 0.996255 -0.660037 -1.075679 -0.639450 -0.050407 -0.633251 0.781165 0.036521 0.725903 -1.905322 0.074893 -1.686461 0.599429 -1.425587 0.386634 1.468937 -0.175354 1.610261 0.090464 0.286578 0.279965 -0.351180 0.767583 0.719054 1.399577 0.773764 0.910183 1.120827 -1.200079 -1.422095 -1.548133 -0.808369 0.640621 -0.654456 -1.680452 0.566851 0.034931 -0.284835 0.484625 -0.068027 -0.284379 1.413139 -1.406832 1.246026 0.812858 -0.308226 0.029080 1.277676 -0.108620 -0.309447 -0.402275 0.860234 -0.128968 1.603589 0.153318 1.041685 -0.556058 -0.632425 0.143043 -0.014212 0.035531 -0.593294 -0.951594 -1.908797 -0.252166 0.706307 -0.759432 0.673375 2.441903 -0.827731 -1.327817 1.168317 0.812251 0.123738 -0.274097 0.290423 1.365564 -0.409637 -0.588583 -0.454446 -0.430126 0.796730 2.994564 0.177409 -1.077119 1.038972 -0.557283 -1.977231 1.538207 0.020911 -0.268532 0.274194 0.091212 -0.904745 -1.191629 1.511102 -0.800404 1.729288 -0.729097 1.467018 -0.312464 -0.385660 0.383818 -1.282752 -0.081695 -2.016679 -0.292658 0.428087 0.529901 -0.899418 -0.668225 -1.134507 -0.562371 -0.596075 0.927647 -2.025265 0.006908 -0.027392 0.345294 1.307076 0.826799 -0.485723 -0.150669 -1.398322 0.679445 0.194728 0.388485 -1.982418 -0.215711 -0.032058 -0.563212 0.424103 -0.045753 0.601549 -0.553063 0.032470 0.796021 -0.393877 -0.766505 -0.138937 -2.230710 0.104108 0.372497 0.971409 0.607359 1.237394 1.419190 0.897011 0.107082 0.860164 -0.436782 -0.053103 -1.488236 0.230262 -0.013992 -0.159337 0.779812 1.127154 0.915182 0.417011 1.376082 0.793649 -0.365027 1.152474 0.240583 1.707265 -0.072709 -0.859858 0.665273 0.385030 0.862569 1.093094 0.599464 -0.505970 1.005953 -0.076169 -0.849575 -0.258413 -0.101728 -0.430727 0.118410 1.956451 0.741666 -0.585469 0.234280 1.546481 -0.497962 -2.453320 0.503421 0.483957 1.024819 0.451736 0.015930 0.714087 1.186173 -0.288285 0.965195 0.805761 0.590351 -1.165410 -0.425550 0.244701 0.402156 1.444675 0.696138 -3.435112 -0.545083 0.013203 1.251277 -0.259603 2.178382 -0.779029 0.099482 0.516008 -0.004478 -0.006141 -0.064295 0.341678 -0.411923 0.027415 -1.891518 0.032509 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = 0.042409 0.158323 0.383278 -0.480685 -0.545723 -0.116871 0.316075 -0.082796 -0.073388 -0.067014 0.212729 -0.186044 -0.334541 0.497773 -0.084130 -0.418986 -0.144111 -0.506317 -0.298812 -0.143849 -0.054772 0.309143 -0.059531 0.022327 0.237737 -0.072164 -0.149931 0.416232 0.136538 -0.516118 0.032364 -0.128112 0.088368 0.543909 -0.110632 -0.026900 0.029612 0.978700 -0.215345 0.176380 -0.453997 -0.492774 0.617671 -0.173625 -0.208081 -0.729109 -0.410790 0.407794 -0.187619 -0.089214 0.241941 0.245245 -0.138977 -0.336655 0.125947 0.408261 -0.897221 0.430359 0.260951 -0.222756 -0.252853 -0.070391 -0.192969 -0.160957 -0.007090 -0.354500 0.104452 -0.030907 -0.238877 0.062672 0.082597 -0.372492 0.928260 0.102097 0.037940 0.390030 0.256205 -0.318514 0.527495 -0.294968 -0.467044 -0.185070 0.182692 -0.116511 0.543488 -0.138759 0.057817 -0.790648 -0.020461 -0.686179 0.241241 -0.608366 0.142352 0.530923 -0.382656 0.515722 0.211357 -0.125823 0.181772 0.078041 0.576665 0.086930 0.469286 0.412093 0.277958 0.124616 -0.260514 -0.297214 -0.577033 -0.613135 0.125691 -0.132997 -0.854576 0.277282 0.093199 -0.173935 0.107680 -0.014667 0.163341 0.484260 -0.374379 0.292687 0.458918 -0.131140 -0.059551 0.580466 -0.181333 -0.149206 -0.352275 0.473907 -0.248076 0.545458 0.026225 0.315864 0.173480 -0.701112 -0.417534 -0.074745 0.000507 -0.303371 -0.419747 -0.408134 0.029720 0.072174 -0.335079 0.296600 1.096925 -0.402281 -0.617545 0.690226 0.729320 0.235235 0.199845 0.148985 0.694274 -0.116050 -0.347550 -0.250225 -0.314385 0.249818 -0.081691 0.202685 -0.211734 0.336145 0.127327 -0.689418 0.930420 -0.231753 -0.235893 0.561529 0.160662 -0.410196 -0.580785 0.570876 0.839804 0.781293 0.203390 0.762847 -0.171567 -0.460594 0.177256 0.055100 0.081561 -0.523815 -0.128063 0.133072 0.131086 -0.240585 -0.285797 -0.315987 -0.295317 -0.318614 0.197553 0.016397 0.271525 0.068978 0.227398 -0.142291 0.673112 -0.054530 0.099706 -0.778635 0.252478 0.190413 0.135515 -0.688727 0.059339 -0.021813 -0.094428 0.290032 -0.058093 0.245977 0.029378 -0.107936 0.163566 -0.179367 -0.094832 0.003138 -0.506136 -0.061963 -0.121218 0.341551 0.116893 0.412510 0.896609 0.411437 0.276030 0.312990 -0.001933 0.073217 -0.083333 -0.158344 -0.157405 0.379867 0.360770 0.430802 0.473592 0.187048 0.607406 0.394059 -0.055774 0.587680 0.186696 1.011885 -0.165675 -0.308382 -0.042600 0.190255 0.533767 0.767306 0.044774 -0.026795 0.387490 0.407786 -0.161823 -0.602725 -0.027831 -0.158869 -0.044678 0.588966 0.171767 -0.267045 0.090459 0.623123 -0.142725 -0.798098 0.330135 0.114434 0.363622 -0.034320 0.131738 0.011922 0.485815 -0.424881 0.179548 0.315720 0.391093 -0.592944 -0.227102 0.090453 0.443981 -0.152891 0.522560 -0.893303 0.060305 0.200055 0.391508 -0.089259 0.339447 -0.342413 -0.400099 0.305994 -0.015863 -0.162180 0.343388 0.113778 -0.538061 0.062703 -0.438890 -0.307341 +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.577930 -0.223035 0.566126 -1.787912 -1.847960 0.634107 -0.445922 -1.098041 -0.301384 -0.008912 0.904873 -0.355837 -0.241206 1.670785 -0.197720 -1.208433 -0.072070 -1.389533 0.002762 0.045362 -0.262651 1.037602 -0.666038 0.186566 0.189653 -0.233155 -0.573476 0.795927 0.831325 -0.925748 -0.858186 -0.679897 -0.795003 1.958150 0.812872 -0.680981 0.507783 3.470316 -0.523347 0.627846 -1.186467 -1.176089 1.278664 -0.455295 -0.735625 -1.071906 -1.297711 0.923935 -0.749607 0.064133 1.359596 -0.334623 0.358537 -0.019586 0.308413 0.754215 -2.400960 1.123585 0.919544 0.029821 -0.208583 -0.738171 -0.229011 0.041166 -0.714825 -0.970668 0.898126 0.529351 -0.299259 -0.574736 -0.396794 -1.660839 2.454016 0.960615 -0.484667 0.230815 0.596610 -1.862112 1.354802 -0.540057 -2.487889 -0.249634 -0.419324 -1.386559 2.271706 -0.662099 0.975988 -2.683541 1.026206 -3.147410 0.195412 -1.565248 0.774712 2.218594 -1.860015 0.552377 1.107721 1.451902 1.134251 -0.224738 1.936002 0.496479 -0.143144 1.195603 1.213060 0.605958 -0.478886 -0.138945 -1.184432 -1.636336 0.001576 -0.683864 -2.955969 1.036397 -0.165805 -0.285674 -0.591897 0.387998 -0.322158 1.702186 -1.300941 -0.167614 0.291553 -0.448498 0.452185 1.751264 -0.613959 0.132272 -1.119237 1.774048 -1.175401 1.273719 -0.570349 1.096521 -0.286752 -1.092959 -2.210835 0.380300 0.900860 -1.440358 -1.937712 -1.580813 -0.196918 -0.190278 -0.890571 2.385600 3.336010 -1.795085 -1.723075 2.552870 0.918182 0.375556 1.842659 0.216387 1.790859 -0.248146 -0.923884 -1.051584 -1.201762 -0.747111 -1.326544 0.517880 0.054710 0.892482 -0.007673 -0.586003 3.124635 -0.101140 -1.627942 0.357283 0.364190 -1.139125 -1.909057 2.056895 0.999544 1.252167 1.244308 2.534958 -0.228959 -1.169897 0.814010 -0.010550 0.178656 -1.353046 -0.496598 0.168111 0.707018 -0.737856 -1.011698 -0.429853 -0.279310 -1.352959 0.523906 1.773799 0.810299 1.041709 0.793826 0.423305 2.924760 0.346635 0.188414 -1.664997 1.049285 1.273655 -0.696099 -1.261702 -0.263511 -0.527250 -0.198595 0.701451 -0.014208 1.203437 -1.220123 -0.765058 -0.171937 0.463036 1.030270 1.261773 -2.903705 0.662165 -0.391499 0.627618 0.983193 1.164634 1.750346 2.030295 1.541201 0.385996 -0.015483 0.729098 -0.036494 -0.626811 0.382269 1.324869 1.062740 1.856621 1.609355 1.024941 1.262524 1.480378 0.676368 1.744451 0.312833 3.279952 -0.063307 -0.610504 -0.523848 0.368076 1.852504 3.018665 -0.393206 0.558445 0.852198 0.778001 -0.707047 -2.311182 0.677221 -0.553768 0.311126 0.128615 0.417193 0.100536 -0.640196 2.178301 -0.435729 -2.566364 1.212421 0.568510 1.250346 0.806982 0.529178 0.274836 0.575635 -1.806704 1.973834 1.871410 1.153855 -1.264442 -0.093696 0.270010 1.211393 -0.546130 1.801194 -1.322333 1.274416 0.717494 1.317679 0.617896 0.658261 -1.188470 -1.166116 1.135372 -0.753444 -0.157601 0.851516 0.899515 -1.584563 0.663267 -1.029320 -1.491173 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.066093 0.160574 0.413667 -0.538618 -0.603892 -0.099331 0.334250 -0.124966 -0.089272 -0.023622 0.241242 -0.178822 -0.315464 0.550385 -0.092774 -0.424541 -0.147214 -0.575984 -0.303026 -0.149423 -0.058590 0.353127 -0.081741 0.025104 0.243190 -0.083543 -0.160547 0.438144 0.093231 -0.541089 0.030569 -0.161118 0.063994 0.596685 -0.083502 -0.046607 0.018057 1.071242 -0.273154 0.200348 -0.504399 -0.547311 0.662154 -0.195274 -0.212771 -0.779789 -0.446394 0.435535 -0.123499 -0.114989 0.265719 0.235977 -0.115650 -0.343172 0.120834 0.407401 -0.941721 0.420413 0.294575 -0.262968 -0.285253 -0.085149 -0.186059 -0.149129 -0.060338 -0.383776 0.133355 -0.021883 -0.219778 0.046555 0.079907 -0.424886 0.962039 0.125915 0.043302 0.394193 0.265554 -0.385329 0.579061 -0.294522 -0.538173 -0.201691 0.156901 -0.186030 0.582289 -0.159641 0.110959 -0.868052 0.030467 -0.774395 0.243627 -0.635940 0.154739 0.582035 -0.398136 0.538499 0.254730 -0.045456 0.218678 0.059086 0.624491 0.116058 0.484411 0.467792 0.325846 0.162517 -0.290979 -0.311556 -0.635522 -0.664533 0.160594 -0.166477 -0.914489 0.318766 0.112178 -0.238774 0.080847 -0.019575 0.165028 0.587658 -0.428640 0.314120 0.491647 -0.142778 -0.083277 0.613299 -0.193584 -0.153706 -0.385093 0.508254 -0.299691 0.602135 0.028331 0.358777 0.135530 -0.708607 -0.443790 -0.057580 0.011161 -0.356652 -0.459047 -0.469749 0.029605 0.094967 -0.370574 0.358472 1.193615 -0.473193 -0.682349 0.753290 0.798675 0.192088 0.214922 0.161462 0.736195 -0.112185 -0.398203 -0.291556 -0.361420 0.251135 -0.061116 0.223277 -0.205784 0.382723 0.115263 -0.747487 1.067538 -0.244037 -0.286698 0.605060 0.188158 -0.443793 -0.621068 0.605709 0.872268 0.820794 0.225293 0.825105 -0.173995 -0.459162 0.183427 0.021832 0.075707 -0.581272 -0.125791 0.137263 0.158898 -0.240810 -0.309271 -0.339785 -0.337710 -0.356922 0.219475 -0.015624 0.311731 0.107921 0.239697 -0.137078 0.753087 -0.036694 0.086814 -0.806555 0.290890 0.225276 0.142815 -0.731704 0.022340 -0.040350 -0.102254 0.285315 -0.055264 0.303822 -0.003876 -0.104593 0.174182 -0.172531 -0.105056 0.034705 -0.594578 -0.046977 -0.134979 0.393663 0.121377 0.450413 0.939302 0.484709 0.318448 0.334727 -0.013868 0.089250 -0.119346 -0.168576 -0.144111 0.398436 0.398455 0.499524 0.528848 0.237286 0.663003 0.433072 -0.012804 0.644717 0.161746 1.102640 -0.184038 -0.324637 -0.055522 0.232925 0.586969 0.837033 0.091458 -0.023890 0.404747 0.403684 -0.217627 -0.631532 0.007402 -0.166307 -0.012531 0.589547 0.230040 -0.260109 0.067812 0.687707 -0.154787 -0.882067 0.358396 0.132557 0.415135 0.008182 0.149141 0.049859 0.500625 -0.435138 0.241779 0.382722 0.424135 -0.652156 -0.241390 0.109231 0.481200 -0.146540 0.585371 -0.988908 0.111359 0.203749 0.418169 -0.121839 0.396736 -0.396425 -0.404163 0.356756 -0.022753 -0.162773 0.396087 0.144173 -0.583264 0.084391 -0.500605 -0.313571 +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.609350 -0.255041 0.554204 -1.783769 -1.809506 0.653727 -0.452515 -1.109259 -0.307866 0.001505 0.879252 -0.313212 -0.212711 1.655652 -0.207087 -1.177981 -0.041302 -1.402574 0.040351 0.066446 -0.272665 1.037688 -0.676516 0.175253 0.192502 -0.238253 -0.565509 0.773341 0.788523 -0.902920 -0.866052 -0.696477 -0.825917 1.955711 0.843882 -0.685865 0.501610 3.461183 -0.499562 0.639241 -1.183974 -1.164385 1.259139 -0.468138 -0.717139 -1.056871 -1.272921 0.899150 -0.718406 0.082390 1.346233 -0.373161 0.374408 -0.004410 0.290197 0.727219 -2.370306 1.098260 0.917978 0.047060 -0.198060 -0.764903 -0.226575 0.024001 -0.721893 -0.958679 0.904497 0.541681 -0.297517 -0.567680 -0.420779 -1.630503 2.402908 0.981189 -0.485238 0.204515 0.578237 -1.872317 1.320845 -0.548676 -2.490835 -0.260039 -0.447998 -1.390778 2.270341 -0.660272 0.988826 -2.667801 1.057589 -3.150531 0.165550 -1.551631 0.783015 2.220837 -1.841927 0.544548 1.115331 1.496910 1.115031 -0.232903 1.922299 0.514503 -0.195811 1.188137 1.218217 0.601470 -0.457573 -0.120768 -1.141406 -1.579459 -0.018178 -0.678418 -2.924416 1.028827 -0.179316 -0.274633 -0.627379 0.416183 -0.350235 1.685419 -1.318903 -0.192642 0.264428 -0.452312 0.460485 1.705645 -0.599414 0.131190 -1.122371 1.759786 -1.179259 1.260080 -0.599423 1.100723 -0.313719 -1.064377 -2.199798 0.361194 0.903695 -1.443247 -1.952997 -1.577209 -0.217922 -0.190778 -0.880101 2.403996 3.292577 -1.790959 -1.697193 2.538563 0.875503 0.370436 1.849553 0.224608 1.724836 -0.226037 -0.919937 -1.039187 -1.186269 -0.778787 -1.364798 0.496216 0.068315 0.888230 -0.020913 -0.534521 3.109366 -0.085911 -1.631838 0.320273 0.335156 -1.133595 -1.890825 2.045056 0.941819 1.218433 1.231343 2.518104 -0.213101 -1.139190 0.794093 -0.039915 0.188392 -1.338535 -0.466285 0.146585 0.696572 -0.747057 -1.031255 -0.390965 -0.258246 -1.338957 0.533262 1.775452 0.790477 1.052518 0.782670 0.456233 2.900116 0.337341 0.192359 -1.610392 1.053731 1.271807 -0.701296 -1.241126 -0.271194 -0.502806 -0.205430 0.687382 0.012949 1.200408 -1.237329 -0.759932 -0.166056 0.493434 1.038123 1.287947 -2.888057 0.669033 -0.380276 0.592388 0.983107 1.149550 1.700243 2.012250 1.514858 0.363538 -0.027743 0.730303 -0.036481 -0.622683 0.408098 1.307345 1.041767 1.847940 1.611632 1.026233 1.222532 1.486409 0.699316 1.721006 0.311643 3.239485 -0.074118 -0.610059 -0.514267 0.366306 1.847204 2.973265 -0.393945 0.571906 0.838422 0.745305 -0.703202 -2.279642 0.695066 -0.540183 0.318152 0.079708 0.423626 0.120812 -0.653916 2.178669 -0.440701 -2.546539 1.207894 0.586798 1.250439 0.809586 0.544092 0.283471 0.558832 -1.782002 1.989595 1.862420 1.145004 -1.232982 -0.085637 0.272745 1.185391 -0.534799 1.791977 -1.265715 1.278267 0.704573 1.308371 0.629886 0.636305 -1.157482 -1.145813 1.118795 -0.757321 -0.143981 0.859125 0.908110 -1.552093 0.656193 -1.009346 -1.471130 +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.639968 -0.334943 0.558880 -1.829558 -1.916280 0.755725 -0.696260 -1.244456 -0.321146 0.090136 0.875908 -0.289525 -0.136304 1.731026 -0.271880 -1.252617 -0.110283 -1.283919 0.126091 0.024093 -0.280842 1.074055 -0.735798 0.194181 0.133173 -0.323509 -0.535737 0.693585 0.784507 -0.818788 -0.889354 -0.787346 -0.920300 2.029399 0.954747 -0.612130 0.477424 3.566694 -0.375370 0.702591 -1.304016 -1.314506 1.219602 -0.472891 -0.618762 -0.957714 -1.270493 0.886893 -0.750414 0.143811 1.371227 -0.448646 0.428129 0.066305 0.313132 0.563469 -2.348425 1.128253 0.919881 -0.055000 -0.219654 -0.796303 -0.224836 0.122966 -0.798112 -0.969138 0.933440 0.773025 -0.283995 -0.603282 -0.410613 -1.709354 2.446928 1.031630 -0.568837 0.147046 0.625019 -1.853241 1.338670 -0.589622 -2.661644 -0.284111 -0.481422 -1.489918 2.280984 -0.546981 1.187376 -2.779138 1.276113 -3.322605 0.212951 -1.488077 0.842717 2.283246 -1.920647 0.517731 1.264159 1.720193 1.279089 -0.239341 1.962003 0.570397 -0.335110 1.266960 1.265430 0.631650 -0.427411 -0.092975 -1.142761 -1.658412 -0.033746 -0.756321 -3.015555 1.052959 -0.166945 -0.138817 -0.774422 0.498146 -0.378915 1.712271 -1.578049 -0.334740 0.231725 -0.464339 0.533990 1.622138 -0.624448 0.214747 -1.109625 1.809557 -1.342321 1.175234 -0.605376 1.172245 -0.395614 -0.928944 -2.416927 0.464144 0.987583 -1.532333 -2.014265 -1.637556 -0.297110 -0.044844 -0.894748 2.628013 3.421013 -1.927351 -1.769837 2.595428 0.730281 0.269021 2.016590 0.275244 1.720330 -0.207136 -0.967176 -1.120914 -1.247036 -0.817220 -1.460745 0.546810 0.091009 0.992406 -0.021631 -0.400654 3.132528 -0.137876 -1.764350 0.044580 0.384931 -1.157476 -1.796949 2.032961 0.722615 1.191943 1.215231 2.595416 -0.268074 -1.148677 0.765926 -0.313016 0.112517 -1.254683 -0.398378 0.059874 0.796201 -0.863949 -1.059909 -0.340419 -0.368691 -1.376540 0.541992 1.907300 0.806369 1.168177 0.781568 0.719879 3.055794 0.467396 0.112474 -1.577610 1.099599 1.341325 -0.765172 -1.208001 -0.362686 -0.563951 -0.203676 0.643952 0.040710 1.272295 -1.330719 -0.732362 -0.322523 0.532083 1.178014 1.394646 -2.884147 0.721954 -0.368621 0.692357 1.020820 1.169725 1.699620 2.186656 1.652255 0.370520 -0.026649 0.681274 0.133153 -0.579645 0.579323 1.296893 1.065888 1.977387 1.677373 1.106013 1.279603 1.567442 0.813326 1.791293 0.160189 3.388734 -0.214265 -0.533098 -0.599561 0.437220 1.912252 3.144810 -0.502969 0.699027 0.842035 0.684485 -0.721106 -2.306651 0.806342 -0.537977 0.360793 -0.046476 0.562499 0.214205 -0.776652 2.236692 -0.409173 -2.609336 1.308183 0.608043 1.288886 0.912138 0.540465 0.261827 0.500392 -1.820480 2.094824 2.006255 1.164153 -1.331998 -0.057051 0.276629 1.252292 -0.460431 1.874394 -1.125714 1.418878 0.789374 1.346878 0.621650 0.591496 -1.270542 -1.230344 1.194081 -0.873895 -0.154532 0.930038 0.928698 -1.498215 0.724160 -0.950135 -1.636357 +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*) = 0.670173 -0.699023 0.840881 -2.620081 -2.894053 1.109999 -1.360669 -1.911058 -0.467461 -0.023840 1.216230 -0.445702 -0.341567 2.496527 -0.471125 -2.079727 -0.277325 -1.123926 0.348011 -0.116840 -0.412111 1.523760 -1.098254 0.253705 0.184074 -0.711063 -0.684139 1.060415 1.464991 -0.854924 -1.128758 -1.277332 -1.349595 3.007577 1.466399 -0.505842 0.604623 5.219762 -0.226562 1.200317 -2.095912 -2.047062 1.839249 -0.678152 -0.766766 -1.392460 -1.946402 1.197583 -1.762019 0.447130 1.942418 -0.704683 0.820360 0.108310 0.559675 0.658653 -3.319321 1.761660 1.301885 -0.443298 -0.270757 -1.137654 -0.642991 0.248693 -1.124677 -1.381057 1.152890 1.463113 -0.411196 -0.870257 -0.508264 -2.378453 3.846048 1.432678 -1.010472 0.240243 1.018580 -2.410381 1.819495 -0.835009 -3.986199 -0.572684 -0.573393 -1.945123 3.208839 -0.501479 1.972402 -4.111441 1.763714 -4.954713 0.549774 -2.060429 1.338209 3.307780 -3.028722 0.882420 2.036746 2.267576 1.961694 -0.229037 2.780529 0.835780 -0.643831 1.901718 1.825349 0.871295 -0.482838 -0.253531 -1.608625 -2.404403 -0.166353 -1.226049 -4.593364 1.414951 -0.301024 0.323932 -1.313373 0.837112 -0.519405 2.312636 -2.387006 -0.388700 0.371204 -0.715223 0.909562 2.165449 -0.861409 0.370880 -1.478399 2.616694 -2.206338 1.529724 -0.938755 1.854926 -0.427520 -1.424502 -3.820347 0.714561 1.438382 -2.212012 -2.942425 -2.246062 -0.620303 0.222027 -1.229037 3.642881 5.050167 -2.917951 -2.639917 3.717042 0.725578 0.470773 3.059753 0.605708 2.400638 -0.234199 -1.436240 -1.845044 -1.899964 -1.048674 -1.969271 0.834185 -0.058760 1.651487 0.014607 -0.571496 4.270379 -0.382848 -2.645971 -0.523185 0.561862 -1.710387 -2.335608 2.920059 0.653446 1.759058 1.414803 3.805964 -0.535112 -1.896977 0.960305 -0.825709 0.002928 -1.524876 -0.395150 0.082887 1.159238 -1.568980 -1.650475 -0.489653 -0.628125 -1.916789 0.820339 2.912542 0.973671 1.777069 1.070874 1.440876 4.443443 0.841912 0.034650 -2.204551 1.624292 1.904995 -1.111453 -1.910561 -0.532398 -0.740921 -0.341720 0.829722 0.184197 1.866220 -1.849938 -0.911440 -0.752500 0.639622 1.894182 2.074757 -3.927305 1.097969 -0.362336 1.032143 1.552731 1.669743 2.576966 3.270165 2.431350 0.741447 -0.049173 0.789150 0.646629 -0.629311 1.156835 1.723126 1.502383 2.980566 2.512683 1.589737 1.905602 2.380379 1.324387 2.615791 0.118057 5.002579 -0.482923 -0.712865 -0.851259 0.748325 2.818226 4.672425 -0.851815 1.203544 1.276702 0.984334 -0.847834 -3.502881 1.267830 -0.691775 0.386747 0.184945 0.966631 0.362292 -1.260558 3.262108 -0.536115 -3.752126 2.099678 0.931628 1.852636 1.173404 0.775486 0.118312 0.733717 -2.642783 3.013482 2.923052 1.691186 -2.110921 -0.149318 0.371755 1.782510 -0.190479 2.755068 -1.406165 1.877617 1.281709 2.061985 0.877227 0.777786 -1.864386 -2.002844 1.688267 -1.448006 -0.267621 1.236560 1.075916 -1.955605 1.070932 -1.119041 -2.722853 +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.590646 -0.031683 0.794988 -2.021746 -2.630068 0.698903 -1.123250 -1.489190 -0.428156 0.140167 0.960533 -0.457652 -0.643060 1.939438 -0.726513 -1.795434 -0.565151 -1.093900 0.098647 -0.476994 -0.383152 1.196242 -0.812408 0.206310 0.169903 -0.559456 -0.589007 0.701954 1.385666 -1.002134 -0.789470 -0.972750 -0.729068 2.334219 1.012991 -0.508987 0.396703 4.026902 0.104340 0.338176 -2.043661 -1.878685 1.494808 -0.542973 -0.343153 -1.641037 -1.389164 1.128466 -1.574009 0.689286 1.449145 -0.371407 0.394080 -0.042586 0.469339 0.538056 -2.934661 2.165135 1.052074 -0.517940 -0.203165 -0.743833 -0.540089 0.157247 -0.105501 -1.174523 0.751126 1.381089 -0.556426 -0.524511 -0.280318 -1.740485 3.159918 0.875929 -0.765743 0.328674 0.731482 -1.541702 1.489914 -1.457552 -3.030360 -0.467516 0.031787 -0.848592 2.266595 -0.076948 1.194022 -3.258548 1.034349 -3.834124 0.569641 -1.537936 1.033215 2.349051 -2.301942 0.774406 1.575858 0.729968 1.944296 0.046319 2.209353 0.473401 0.014318 1.552300 1.013613 0.702055 -0.215595 -0.076183 -1.234263 -2.102704 -0.326851 -0.463309 -3.531734 1.161838 -0.177195 0.403741 -0.900596 0.433403 -0.129615 1.582552 -1.967419 -0.729295 0.452344 -0.537230 0.856744 1.744781 -0.679172 0.378950 -1.172223 2.002737 -1.706456 1.244754 -0.549976 1.473428 0.080067 -2.120400 -3.535245 0.597428 1.081507 -1.712849 -2.170673 -1.630720 -0.327589 -0.160491 -1.112472 2.466058 4.088973 -2.335223 -2.295624 2.934895 0.707797 0.394371 2.559231 0.473234 2.183330 -0.218291 -1.128955 -1.210689 -1.554143 -0.586779 -1.633057 0.678487 -0.198205 1.237410 0.374218 -0.613200 2.287509 -0.342679 -2.056411 -0.196840 0.522576 -1.312534 -1.648156 1.951462 1.189792 1.558664 1.147912 3.023187 -0.689186 -1.881399 0.710528 -0.589819 0.075390 -0.641768 -0.287865 0.249336 0.864614 -1.360504 -1.186370 -0.388928 -0.653396 -1.606681 0.641594 2.206432 0.816796 1.369321 0.834857 0.970047 3.541463 0.605939 0.300622 -1.913837 1.257395 1.378502 -0.494623 -2.087597 -0.445175 -0.614879 -0.262877 1.089518 0.031742 1.442102 -0.784050 -0.617889 -0.472073 0.133944 1.581734 1.474680 -1.884200 0.727262 -0.644516 0.991212 0.910177 1.428519 2.100473 2.642662 1.940885 0.735351 0.006012 0.310320 1.398266 -0.553583 0.941747 1.141081 1.305338 2.160932 2.005349 1.167712 1.747776 1.781221 0.517577 2.202502 -0.201474 4.066457 -1.235397 -0.387128 -0.848732 0.633445 2.223210 3.792264 -0.899963 0.625340 1.033896 0.830030 -0.308554 -2.699342 0.956478 -0.529880 0.143532 0.454099 1.139849 0.151870 -0.915824 2.526975 -0.456358 -2.806834 2.023871 0.664941 1.383983 0.458886 0.599943 -0.339779 0.723558 -2.168659 1.796226 2.347460 1.504775 -1.859469 -0.537539 0.271481 1.759067 -0.498150 2.183643 -1.449697 1.152766 1.428588 1.560317 0.540641 0.497493 -1.645278 -2.150440 1.430895 -0.863827 -0.313296 1.166132 0.762733 -1.713433 0.865238 -0.262315 -2.103381 +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.319662 -0.143354 0.159469 -0.608133 -0.503415 0.276415 -0.130661 -0.361043 -0.119352 -0.054543 0.248472 -0.009892 -0.041267 0.550913 -0.019518 -0.396608 0.023891 -0.654410 -0.011844 0.133427 -0.122010 0.340397 -0.238607 0.058521 0.077119 -0.030886 -0.202925 0.184754 0.100010 -0.437415 -0.355636 -0.239249 -0.340104 0.674334 0.293490 -0.188457 0.183715 1.204297 -0.028366 0.278578 -0.355249 -0.420795 0.367971 -0.202680 -0.244540 -0.243588 -0.311778 0.325950 -0.070999 -0.049459 0.457314 -0.139529 0.006313 -0.006645 0.067305 0.225420 -0.810992 0.326280 0.306859 0.130543 -0.099330 -0.300626 -0.017072 -0.068740 -0.233113 -0.329856 0.365710 0.166815 -0.178275 -0.168265 -0.171489 -0.565019 0.820383 0.423437 -0.117457 0.062662 0.195406 -0.595549 0.451688 -0.209029 -0.857137 -0.082582 -0.208812 -0.521960 0.847915 -0.235810 0.302329 -0.909528 0.525918 -1.075501 0.005820 -0.540335 0.266963 0.786316 -0.540831 0.183208 0.394014 0.662788 0.279804 -0.095638 0.687894 0.153136 -0.176687 0.412583 0.453907 0.103487 -0.175377 -0.013102 -0.355737 -0.521265 0.021647 -0.220600 -0.925211 0.371015 -0.044914 -0.035851 -0.214623 0.277423 -0.133698 0.430957 -0.609558 -0.130990 0.056889 -0.153250 0.206279 0.542032 -0.223586 0.025898 -0.423438 0.612349 -0.383854 0.414261 -0.220031 0.351573 -0.075768 -0.186710 -0.680161 0.082646 0.337621 -0.500752 -0.693293 -0.549007 -0.079066 0.005387 -0.323901 1.019852 1.120408 -0.598866 -0.506265 0.882532 0.291542 0.179695 0.618314 0.072159 0.526165 -0.070534 -0.323636 -0.246473 -0.356723 -0.300576 -0.763046 0.162917 0.071650 0.291603 -0.010840 -0.025649 1.191505 -0.021106 -0.554574 0.199692 0.060011 -0.399786 -0.701986 0.683531 0.385472 0.421420 0.562131 0.870847 -0.032763 -0.261245 0.280899 0.000667 0.080554 -0.536889 -0.177051 -0.068047 0.218008 -0.282131 -0.355207 -0.060859 -0.095462 -0.464135 0.191871 0.710126 0.304052 0.354578 0.278642 0.175445 0.992663 0.083949 0.037658 -0.567531 0.356224 0.408259 -0.283327 -0.229710 -0.090342 -0.149926 -0.062367 0.315910 0.003910 0.371096 -0.458617 -0.278556 -0.020916 0.266111 0.337610 0.462204 -0.961454 0.138306 -0.054961 0.151157 0.366275 0.393944 0.544877 0.665572 0.503242 0.057147 -0.008845 0.346051 -0.128084 -0.320166 0.029963 0.615778 0.352746 0.520493 0.553304 0.360092 0.405729 0.517846 0.265592 0.593537 0.162649 1.112533 0.005725 -0.250423 -0.159748 0.096779 0.639055 0.936189 -0.309325 0.288424 0.292627 0.244438 -0.278598 -0.683458 0.234958 -0.208971 0.112889 -0.086495 0.102051 0.097707 -0.223991 0.757130 -0.177337 -0.887313 0.355684 0.211984 0.449781 0.363168 0.214981 0.190657 0.180985 -0.617288 0.666352 0.624802 0.398445 -0.392051 0.093291 0.099758 0.398684 -0.360932 0.616175 -0.223871 0.486608 0.185001 0.426839 0.250537 0.068113 -0.362146 -0.332693 0.374854 -0.272863 -0.020209 0.365392 0.390515 -0.448800 0.147579 -0.423533 -0.450703 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.025061 -0.016745 0.242502 -0.335102 -0.412198 0.012249 0.050210 -0.170257 -0.075899 -0.079283 0.120764 -0.085637 -0.249328 0.422068 -0.106942 -0.363228 -0.109079 -0.119148 -0.088202 -0.036608 -0.039349 0.236298 -0.085565 0.011647 0.115183 -0.097034 -0.074831 0.212019 0.093532 -0.222190 -0.021425 -0.186456 0.000000 0.411245 0.048397 0.175444 -0.040329 0.707579 0.005448 0.389099 -0.481440 -0.414679 0.356779 -0.127413 -0.005978 -0.560397 -0.310305 0.243643 -0.253655 -0.039175 0.181626 0.062990 -0.039893 -0.150617 0.142706 0.169487 -0.563500 0.336414 0.179937 -0.234938 -0.077191 -0.077288 -0.243185 -0.083817 -0.037632 -0.229474 -0.019610 0.175925 -0.177149 0.050979 0.032741 -0.250743 0.736657 0.111957 -0.128613 0.191535 0.208128 -0.148052 0.305098 -0.336691 -0.439596 -0.167153 0.076778 0.049574 0.349485 0.075607 0.186109 -0.601614 0.076088 -0.601794 0.247891 -0.379758 0.148931 0.397854 -0.295777 0.324658 0.285002 -0.059175 0.242975 0.157849 0.360855 0.146353 0.142236 0.285496 0.232486 0.076159 -0.121698 -0.225131 -0.318848 -0.408011 0.042342 -0.108317 -0.671196 0.131751 0.079360 0.210617 -0.076669 0.126323 0.126726 0.173114 -0.456401 0.152418 0.280735 -0.101373 0.083425 0.296155 -0.110513 -0.029924 -0.246253 0.335357 -0.304820 0.308750 -0.033794 0.280039 0.056421 -0.480369 -0.429978 -0.003665 0.041500 -0.229012 -0.332648 -0.342471 -0.057367 0.245418 -0.221633 0.211316 0.770579 -0.376106 -0.414218 0.476290 0.358812 0.121870 0.216918 0.172291 0.395783 -0.034201 -0.250999 -0.198134 -0.269564 0.104379 -0.038612 0.150695 -0.215846 0.305626 0.053396 -0.594305 0.572893 -0.203260 -0.271987 0.079848 0.037050 -0.287099 -0.237472 0.367238 0.243574 0.472809 -0.031261 0.532410 -0.150560 -0.314751 0.048292 -0.230558 0.001652 -0.247322 0.004017 0.065764 0.129324 -0.394117 -0.237987 -0.109993 -0.265331 -0.220840 0.162115 -0.019390 0.073544 0.149682 0.145169 0.208402 0.481243 0.052252 0.015050 -0.411624 0.216507 0.082877 0.038631 -0.531625 0.013458 -0.039608 -0.074375 0.144447 0.019392 0.153963 0.002786 -0.030614 -0.003999 -0.191262 0.066613 0.107540 -0.108388 -0.052849 0.016738 0.269480 0.121304 0.266747 0.552358 0.388454 0.244547 0.257303 -0.018085 0.002133 0.092563 -0.010002 0.076478 0.144331 0.220076 0.297694 0.365248 0.130179 0.417960 0.321731 0.106413 0.414104 0.084438 0.695308 -0.175979 -0.171384 -0.011836 0.159450 0.393010 0.558411 -0.136750 0.148268 0.247944 0.157510 -0.064955 -0.308971 0.077577 -0.076482 -0.174686 0.455885 0.220737 -0.048237 -0.053686 0.454582 -0.102691 -0.536288 0.285139 0.114430 0.261966 0.029995 0.118636 -0.010862 0.273923 -0.253440 0.172963 0.280353 0.300237 -0.443007 -0.244313 0.035281 0.218410 0.182643 0.396279 -0.430476 0.000000 0.218134 0.347830 -0.095358 0.132114 -0.260061 -0.319457 0.205895 -0.095986 -0.113709 0.168513 0.032454 -0.156262 -0.028404 -0.206163 -0.339233 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.011040 -0.168722 0.150644 -0.284681 -0.207464 0.051895 0.100898 -0.111530 -0.035902 -0.161934 0.098036 -0.052237 -0.124780 0.382404 0.044034 -0.264991 0.030106 -0.063398 -0.049247 0.147738 -0.012484 0.190108 -0.074571 0.010759 0.093812 -0.035459 -0.058427 0.208094 0.000267 -0.131399 -0.090279 -0.143968 -0.082337 0.343261 0.053869 0.202162 0.000000 0.606387 -0.072455 0.576561 -0.269824 -0.238526 0.263752 -0.100442 -0.090989 -0.323415 -0.299358 0.166191 -0.142062 -0.188541 0.193939 0.021109 -0.014385 -0.097909 0.133234 0.176759 -0.395030 0.055447 0.142265 -0.078510 -0.037395 -0.107544 -0.195500 -0.085054 -0.254686 -0.167745 0.019155 0.037468 -0.116561 0.007759 -0.021223 -0.260250 0.610723 0.181374 -0.128670 0.130656 0.205461 -0.223492 0.245807 -0.081832 -0.375575 -0.113425 -0.081574 -0.114814 0.393714 -0.034838 0.215969 -0.487258 0.157058 -0.500000 0.174110 -0.383498 0.119198 0.419455 -0.249063 0.238614 0.220377 0.236263 0.065162 0.100161 0.295822 0.181312 -0.033649 0.181367 0.325408 0.033212 -0.168037 -0.240898 -0.269674 -0.285196 0.094381 -0.215460 -0.586195 0.084452 0.059282 0.181066 -0.064922 0.200365 0.037729 0.137022 -0.360063 0.261054 0.187463 -0.088079 0.050855 0.275229 -0.106351 -0.059281 -0.225946 0.305183 -0.220966 0.255556 -0.083785 0.204120 -0.071693 -0.109020 -0.162364 -0.032418 0.048250 -0.177936 -0.320629 -0.349875 -0.073929 0.313095 -0.147300 0.287705 0.600996 -0.272310 -0.243951 0.394728 0.289611 0.139158 0.111813 0.125107 0.263740 -0.039210 -0.182209 -0.189492 -0.184066 -0.002217 -0.033277 0.121313 -0.153229 0.243178 -0.073668 -0.518100 0.816887 -0.142873 -0.209948 0.041558 -0.023485 -0.249292 -0.280241 0.436349 0.011016 0.350422 -0.027588 0.432548 -0.036583 -0.127212 0.077354 -0.168313 -0.000120 -0.415124 -0.039575 0.005724 0.117434 -0.314651 -0.217633 -0.078066 -0.164851 -0.155085 0.130436 -0.008704 0.028615 0.104748 0.139886 0.213212 0.366235 0.038294 -0.049605 -0.321938 0.178386 0.069647 -0.107789 -0.252491 0.057401 -0.032603 -0.058655 0.014430 0.031609 0.086849 -0.193593 -0.090037 -0.014105 -0.066154 0.018871 0.114580 -0.413680 -0.048704 0.143902 0.162204 0.211968 0.188262 0.443736 0.281667 0.191326 0.150512 -0.021759 0.122688 -0.244241 -0.005840 -0.004460 0.210120 0.143261 0.243663 0.276203 0.096849 0.268498 0.276132 0.221765 0.297722 0.224965 0.520127 0.173383 -0.220503 0.071719 0.071886 0.317585 0.412031 -0.114669 0.240000 0.205143 0.127712 -0.162084 -0.230277 0.046158 -0.083862 -0.161293 0.322870 0.009936 0.000000 -0.043680 0.383474 -0.092490 -0.489731 0.083176 0.100402 0.234993 0.182128 0.106051 0.148144 0.189735 -0.197475 0.299478 0.186275 0.206587 -0.281087 -0.086263 0.023881 0.042617 0.250577 0.305815 -0.229840 0.071399 0.052529 0.324288 -0.016617 0.105693 -0.143433 -0.070435 0.118688 -0.155179 -0.065968 0.039746 0.066849 -0.046389 -0.086659 -0.390666 -0.285098 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.082550 0.032112 0.321247 -0.473947 -0.489123 -0.122776 0.487630 -0.111810 -0.085095 -0.065880 0.258300 -0.232701 -0.279901 0.624699 0.010557 -0.299417 -0.008135 -0.261698 -0.218813 0.062213 0.021570 0.385437 -0.056257 0.004139 0.217882 -0.017047 -0.149808 0.493467 0.044584 -0.273113 0.034253 -0.166986 0.089767 0.491065 -0.051872 0.105444 -0.067212 0.886577 -0.556567 0.676780 -0.499822 -0.341895 0.616781 -0.139550 -0.192168 -0.925350 -0.618355 0.337272 -0.095004 -0.332269 0.233316 0.178023 0.025008 -0.281936 0.173417 0.450315 -0.712057 0.155680 0.293781 -0.290817 -0.124707 -0.052732 -0.305107 -0.125004 -0.355391 -0.314994 -0.062310 -0.170311 -0.072362 0.024130 0.034657 -0.362212 0.860143 0.099581 -0.100384 0.309826 0.217892 -0.472209 0.481731 -0.170223 -0.438060 -0.180571 0.008308 -0.076097 0.450793 -0.148199 0.207974 -0.743825 -0.111061 -0.661315 0.280639 -0.634971 0.101182 0.558217 -0.319046 0.457750 0.204143 -0.024379 0.175933 0.171988 0.442084 0.267124 0.400301 0.328648 0.401046 0.255741 -0.338596 -0.445306 -0.578953 -0.513155 0.250362 -0.236757 -0.894045 0.182738 0.151657 -0.151654 0.069883 -0.033856 0.185213 0.578520 -0.228936 0.600652 0.484166 -0.124684 -0.156895 0.591524 -0.117715 -0.182232 -0.386072 0.408040 -0.244827 0.638748 0.000258 0.336565 -0.130495 -0.629387 -0.105497 -0.072812 -0.100672 -0.265234 -0.372419 -0.580168 0.036835 0.253193 -0.293855 0.006347 0.949862 -0.419207 -0.544565 0.619612 0.832280 0.085204 -0.043631 0.141543 0.606348 -0.075535 -0.347445 -0.330137 -0.371080 0.188462 0.540530 0.184888 -0.331313 0.334086 -0.100126 -1.322207 1.187570 -0.197167 -0.245831 0.434856 0.072702 -0.385316 -0.479531 0.640452 0.350785 0.678638 -0.179016 0.632661 -0.066060 -0.310539 0.139876 -0.082336 0.031140 -0.686748 -0.094861 0.260579 0.146823 -0.283087 -0.273059 -0.310985 -0.280882 -0.294064 0.222175 -0.526370 0.112757 0.096560 0.207004 -0.022781 0.487154 -0.046444 0.031811 -0.565867 0.282816 0.107059 0.093185 -0.817352 0.076525 -0.068168 -0.113226 0.009222 -0.025319 0.213507 -0.086869 -0.072337 0.189038 -0.316619 -0.192542 0.011457 -0.609203 -0.031582 0.001034 0.393561 0.143745 0.363314 0.780905 0.396093 0.206134 0.384839 -0.061508 0.090647 -0.432393 0.061178 -0.072457 0.091017 0.307191 0.463462 0.446332 0.167927 0.545751 0.341339 0.166985 0.508070 0.284136 0.790667 0.179332 -0.368942 0.135953 0.200812 0.479415 0.637671 0.280755 0.003057 0.321818 0.208461 -0.296942 -0.370709 -0.000440 -0.106958 -0.234870 0.792256 0.118936 -0.182395 0.071904 0.591466 -0.169020 -0.784678 0.182725 0.127673 0.386065 0.079477 0.150877 0.202944 0.437577 -0.203192 0.327913 0.289106 0.358480 -0.520043 -0.411340 0.065253 0.147760 0.481227 0.501670 -1.076151 -0.024234 0.101031 0.477218 -0.253893 0.529902 -0.277558 -0.128831 0.248100 0.011603 -0.144696 0.059434 0.025383 -0.330887 -0.072035 -0.639982 -0.231301 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.464757 -0.363532 0.259390 -1.323355 -0.829053 0.500753 -0.047415 -0.776184 -0.156796 -0.154054 0.644917 -0.068501 -0.243222 0.699720 0.125990 -0.989989 0.308594 -0.900452 0.003122 0.154882 -0.213462 0.580263 -0.441937 -0.257240 0.353408 -0.258235 -0.309865 0.777381 0.647652 -0.632870 -0.597461 -0.425809 -0.540667 1.581708 0.538146 -0.305404 0.321475 2.384757 -0.094515 0.353869 -0.776601 -0.796602 1.366184 -0.383425 -0.861371 -0.625632 -0.578558 0.564116 -0.483813 -0.219537 0.678873 -0.464806 0.504169 -0.380578 -0.184014 0.937960 -1.613508 0.386130 0.642388 -0.064194 -0.513579 -0.586170 0.063902 -0.033446 -0.634425 -0.815535 0.736330 0.085229 -0.347613 -0.367510 -0.516797 -1.256831 2.144744 0.808934 -0.260212 0.224455 0.069485 -1.491117 0.791238 0.338566 -1.540657 -0.399747 -0.183020 -0.928518 1.608186 -0.685185 0.849960 -2.036738 0.535231 -2.242838 0.243368 -1.054545 0.921288 1.568842 -1.413884 0.581598 0.675544 1.203055 0.161955 -0.382118 1.560343 0.152000 -0.097608 0.601930 0.948152 0.289610 -0.422581 -0.360802 -0.693051 -0.939839 0.130287 -0.539203 -2.436832 0.725938 -0.677178 -0.193292 -0.265478 0.235576 -0.299079 1.406582 -0.874213 -0.044795 0.196013 -0.371436 0.501839 1.270999 -0.198844 -0.059316 -0.546064 1.275561 -0.632080 0.693743 -0.612020 0.902837 -0.071059 -0.543100 -1.032940 0.039866 0.658295 -1.215139 -1.575593 -1.018470 -0.295648 0.026391 -0.578173 1.617328 2.358469 -1.121897 -1.266932 1.648289 0.437837 0.426866 1.276181 0.235080 1.341939 -0.573084 -0.308123 -0.688370 -0.409994 -0.200950 -0.789100 0.003385 -0.108532 0.686164 -0.210449 -0.047127 2.574881 -0.020808 -0.802679 0.754884 0.025162 -0.848357 -1.671667 1.535210 0.890069 1.216330 0.843448 2.011925 -0.372574 -0.848977 0.610610 0.358356 -0.164568 -1.166201 -0.367294 0.069027 0.477664 -0.514797 -0.905073 -0.295663 0.016045 -0.697900 0.784091 1.439851 0.478656 0.464348 0.141451 0.198737 1.724632 -0.093672 -0.079510 -1.142965 0.676788 1.068277 -0.512699 -0.583039 -0.355475 -0.389630 -0.213492 0.609048 0.053437 1.108376 -0.913849 -0.539336 0.128007 0.591581 0.558858 0.600989 -2.635729 0.519829 -0.048132 -0.052558 0.619203 1.168404 1.300899 1.240462 0.583870 0.080668 0.105092 0.467136 -0.690126 -0.593289 -0.030007 1.418778 0.765957 1.297208 1.047253 0.836763 0.933253 0.975419 0.721474 1.297688 0.465079 2.276386 0.069457 -0.610499 -0.031109 -0.014524 1.429392 1.961025 -0.236069 0.241616 0.641884 0.684119 -0.638797 -1.905829 0.348781 -0.322973 0.240956 0.193739 0.212962 0.127460 -0.622775 1.949172 -0.166108 -2.145855 1.019329 0.454328 0.923424 0.687629 0.144199 0.401309 0.580130 -0.976256 1.294695 1.110551 0.962620 -1.010291 0.283576 0.221426 0.940283 -0.719675 0.965565 -0.774789 0.740061 0.222586 1.204975 0.775123 0.633900 -0.654261 -0.308779 0.470678 -0.473836 0.079332 0.431549 0.612241 -1.094888 0.257866 -1.343918 -0.483498 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = 0.615739 -0.596664 1.021379 -1.875035 -0.603069 -0.326366 2.241597 -1.403325 -0.789827 2.658410 0.403435 -1.289936 -1.099850 1.847111 0.303226 -0.975814 0.774179 -0.502128 -0.516410 0.241050 -0.856555 0.943935 -0.613847 -1.396222 1.045982 -0.170060 0.706675 2.079546 -0.698072 0.328818 0.225212 -1.239455 0.307927 3.235486 0.843839 0.385822 -1.196501 3.779219 -2.849669 4.183077 -2.640278 -2.221473 3.921601 -0.589281 -0.179991 -2.422182 -0.624428 2.071848 -0.271331 -2.563286 -0.089444 -0.011873 1.011896 -2.467409 -0.916285 2.272052 -2.407196 -0.159374 1.643367 -2.119500 -2.685237 -0.712430 0.259444 0.694995 -3.420102 -2.101936 -0.051278 -1.271101 -0.778105 0.260998 -2.069533 -2.035097 1.756814 0.856927 -0.787000 0.676396 -0.726873 -1.478261 1.560282 0.303712 -1.849494 -1.587064 -0.307765 -1.969555 1.528026 0.462997 2.323263 -4.166745 0.898031 -3.826052 1.295559 -2.183088 1.636931 3.114732 -0.621570 2.585369 0.379254 1.814475 -0.200707 -0.531142 1.602132 1.045259 1.249589 0.844274 2.517355 2.132397 -2.392015 -3.399324 -2.195465 -1.323239 1.348150 -1.493533 -2.820307 1.315005 -1.455217 0.052655 0.145508 0.229748 -1.020342 2.831860 -3.471183 1.219653 1.191058 -0.790262 1.096443 1.976963 -0.053124 -0.107655 -0.608809 1.619015 -0.150322 1.527590 -0.138886 2.500484 -1.468598 -0.181200 0.125342 0.345835 0.953678 -1.761069 -2.675315 -4.056430 -1.066628 1.792555 -1.526562 2.103410 4.152752 -1.439452 -2.165438 1.948661 -0.026173 0.244982 0.482015 0.822091 3.064751 -1.805385 -0.200005 -0.720593 -0.207021 1.511262 4.290497 -0.548935 -2.438203 2.520253 -1.579457 -2.006110 3.612854 0.237212 -0.386409 -0.055069 0.219341 -1.137955 -1.923367 3.068338 -2.890988 2.688527 -1.797376 3.535928 -1.050791 -0.373692 0.818263 -2.807437 -0.824218 -3.242164 -0.279436 -0.130983 1.751765 -2.091005 -1.824525 -1.137783 -0.787521 -0.665605 2.968548 -2.900910 -0.440188 -0.002737 -0.256557 2.940703 1.035410 -1.136253 -0.674805 -2.054580 1.243252 1.179369 0.329194 -2.559367 -1.097880 -0.658947 -1.258788 0.006018 0.268313 1.834274 -2.093706 -0.014313 1.646758 0.011740 -0.949363 -0.223315 -4.310939 0.888510 0.852584 1.009910 1.357370 3.409527 2.050225 1.942548 0.019812 1.002078 -0.728764 -0.408097 -3.859234 0.784114 -0.068184 0.790598 1.521760 1.926166 1.528821 1.231545 2.030255 0.692154 0.347290 2.586842 0.661337 2.638979 -0.171564 -1.082015 1.645638 0.107627 2.133766 2.089711 0.187816 -1.421616 1.710673 -0.891263 -2.445390 -0.664387 -0.145991 -0.516870 -0.230958 2.000001 1.441023 -0.479435 -0.559309 4.244220 -0.773607 -4.962503 1.440807 1.082644 2.031966 2.152495 -0.475901 2.239800 1.578450 0.471747 1.688310 1.536909 1.473077 -2.745515 0.404804 0.479701 0.960109 2.920949 0.553524 -5.493853 -0.463400 -0.050873 3.208687 0.010532 3.449828 -1.509305 1.501431 0.543579 -0.262917 0.582367 -0.680937 1.408910 -0.123171 -0.071558 -4.313898 0.632327 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 2.556613 -0.570688 2.563294 -4.161997 -3.522614 -0.062804 3.089961 -4.339203 -2.127811 7.078450 1.885613 -3.517004 -1.530266 4.713632 -0.677455 -2.183449 1.319405 0.144131 -0.713747 -0.926167 -1.810335 2.128632 -1.715722 -3.683568 1.792337 -0.839847 1.376217 4.474381 -1.542496 1.904119 -0.005034 -2.829098 0.999804 8.011201 2.647656 -0.561488 -2.595186 10.047954 -7.039397 7.506158 -7.384873 -6.857905 10.115303 -1.142326 0.669125 -6.124784 -2.965226 4.758616 -0.375932 -4.869667 -0.627526 -0.875231 2.948651 -5.321752 -2.778696 4.889612 -6.599038 0.581863 3.871011 -6.143100 -6.990402 -1.204697 1.296680 2.267983 -7.706797 -5.104142 0.084474 -0.640101 -0.562779 0.489939 -4.851190 -5.808984 4.725584 1.299771 -1.690215 0.975219 -1.672195 -4.349765 3.923653 0.809591 -5.877170 -3.455155 -0.553277 -4.917959 3.223751 1.418059 7.596357 -10.908818 3.100343 -11.201625 3.297881 -4.952254 3.955889 7.325746 -3.155623 5.371289 1.882902 5.316094 1.652612 -0.054598 4.516127 3.354267 2.668533 1.982231 5.850455 6.184149 -4.548497 -7.106001 -5.141246 -3.960243 2.562153 -3.117792 -8.847431 3.490021 -3.641269 0.381521 -0.780481 -0.188865 -1.406730 8.757772 -8.490394 1.922154 2.882390 -1.731972 2.407417 4.476263 -0.267936 0.272415 -1.579934 3.992257 -1.044874 2.723760 0.368990 6.018663 -4.794838 -3.142281 -2.196434 2.121085 2.660212 -5.141674 -6.598569 -10.082708 -1.848901 4.943484 -3.716943 4.288494 11.434368 -4.549465 -6.316010 4.717386 0.607879 -1.716474 3.549353 2.056396 9.359847 -4.536922 -0.427992 -1.791444 -1.061085 2.959013 8.497801 -1.648350 -5.070838 6.033109 -2.986799 -6.132567 10.216478 0.137541 -1.313402 0.444101 1.189646 -2.081100 -4.056017 7.144244 -5.618739 6.356002 -3.782886 8.770891 -2.765749 -2.138716 1.896401 -6.995993 -2.605805 -5.548517 0.338934 -0.368755 5.340881 -4.652287 -4.371338 -2.269954 -3.258069 -1.807742 7.731191 -4.689720 -0.189629 1.239399 -1.366744 5.455167 3.337693 -1.991426 -1.333739 -5.023109 2.694521 4.034868 0.149733 -8.211917 -3.561440 -2.745931 -2.184755 -1.182705 0.870325 5.548075 -4.713294 -0.086959 3.213161 -0.198336 -0.907769 -0.299867 -7.819075 2.948962 0.390909 3.896855 2.410506 8.959495 5.368971 6.559572 0.474551 2.601053 -1.318280 -2.193316 -6.663793 1.876756 1.132021 1.684317 3.520096 5.673428 3.343783 3.788113 4.612749 1.360850 2.027969 6.739588 0.943558 8.081586 -2.817491 -1.574705 2.739158 0.416267 5.793257 7.075147 0.694492 -3.905871 2.807208 -2.686236 -5.987961 -2.512682 0.346836 -0.479224 -0.803293 3.855092 5.624508 -0.247355 -2.388239 10.091340 -0.769957 -13.164844 5.077136 2.263757 4.331442 6.292608 -1.578998 4.705408 3.395951 2.458776 4.467418 5.541590 3.828774 -7.750690 -0.184382 1.282092 3.934275 6.170630 1.873717 -14.077003 1.563104 1.158344 7.020770 -0.694305 8.693056 -5.459398 2.421392 1.528162 -1.175030 0.759658 -0.673220 3.302537 -1.439746 0.730964 -9.457155 0.749566 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 0.215357 -0.173267 0.701175 -1.464293 -1.726052 0.023410 0.204792 -0.948690 -0.325872 0.431618 0.621680 -0.711046 -0.513682 1.799150 -0.270836 -1.127786 -0.147582 -0.493059 -0.124947 -0.209595 -0.152297 1.107589 -0.430109 -0.047211 0.376721 -0.357111 -0.345606 0.979359 0.528694 -0.438960 -0.177254 -0.790426 -0.087854 1.824868 0.452292 0.036816 -0.209879 3.004159 -0.837834 1.546333 -1.850142 -1.396582 1.664115 -0.423229 -0.218586 -1.976904 -1.445802 0.962589 -0.639158 -0.318881 0.692544 0.085085 0.322441 -0.556911 0.324799 0.842426 -2.022448 0.993048 0.870160 -0.956928 -0.465828 -0.450670 -0.676775 0.145868 -1.097939 -1.052879 0.156782 0.418713 -0.336032 -0.024551 -0.266029 -1.325320 2.260151 0.575239 -0.686299 0.481723 0.476964 -1.285122 1.278938 -0.721323 -1.899082 -0.592273 -0.006683 -0.522275 1.365375 -0.022762 1.244933 -2.649922 0.478726 -2.740058 0.784921 -1.581056 0.770706 1.933785 -1.422123 1.102311 0.898843 0.657261 1.236119 0.200539 1.502314 0.824138 0.557839 1.038034 1.160729 0.956627 -0.557955 -0.920237 -1.225694 -1.499058 0.316613 -0.678210 -2.765405 0.779605 -0.055246 0.060865 -0.380006 0.225537 0.050697 1.700494 -1.570682 0.272031 0.943182 -0.462385 0.278396 1.433085 -0.483264 -0.014475 -1.063487 1.429928 -0.945989 1.327660 -0.221829 1.275787 -0.658448 -1.567754 -1.650851 0.197264 0.378962 -1.285457 -1.606650 -1.828157 -0.277529 0.579356 -0.941484 1.230203 3.135563 -1.610172 -1.737882 2.043540 1.144957 0.048467 1.054314 0.433707 1.904102 -0.380772 -0.788812 -1.000966 -1.000393 0.169213 0.787681 0.447243 -0.837893 1.122980 -0.206561 -2.194952 2.549228 -0.412950 -1.174708 -0.037145 0.279931 -0.931297 -1.164024 1.843605 0.011268 1.639970 -0.380143 2.171524 -0.469745 -1.160654 0.538868 -1.024226 -0.157073 -1.183613 -0.029369 0.347151 0.892204 -1.232227 -0.985241 -0.499475 -0.928806 -0.993163 0.795847 -0.148873 0.284183 0.686037 0.576836 1.095264 2.056592 0.188873 0.062875 -1.543944 0.999186 0.893469 -0.023620 -2.092456 -0.234396 -0.446925 -0.399968 0.035267 0.060847 0.976954 -0.724190 -0.305098 0.014608 -0.375548 0.386620 0.560270 -1.788778 0.483388 -0.172185 1.125006 0.580822 1.332157 1.890219 1.686073 1.066796 0.721573 -0.159730 -0.077105 -0.241565 0.289714 0.533717 0.260055 0.971464 1.765913 1.454977 0.736142 1.636121 1.121589 0.533805 1.705042 0.180805 2.804815 -0.433988 -0.537069 -0.028266 0.442183 1.694792 2.710768 0.145590 0.059372 0.970629 0.300552 -0.798127 -1.481299 0.305817 -0.309387 -0.324865 1.240186 0.712764 -0.256538 -0.369956 2.109658 -0.356330 -2.520103 1.225544 0.550831 1.113840 0.564211 0.292357 0.295061 0.977125 -0.965540 1.280669 1.438789 1.126697 -1.621740 -0.904641 0.163420 0.870373 1.109195 1.502751 -2.321951 0.503812 0.906815 1.614767 -0.165925 1.165493 -1.175465 -0.854686 0.918992 -0.375629 -0.333129 0.433560 0.405887 -1.065422 0.317004 -1.169988 -1.167274 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.829502 -0.054142 0.741522 -1.459864 -1.428062 0.215936 0.079493 -1.411749 -0.561190 1.249475 0.680683 -1.081523 -0.714529 1.573464 -0.523117 -1.196841 0.105218 -0.252875 -0.183769 -0.446734 -0.492212 0.633427 -0.538140 -0.889491 0.391193 -0.355568 0.189384 1.185443 0.507865 0.051808 -0.418974 -0.749253 0.181916 2.534843 0.899979 -0.309714 -0.271530 3.328835 -1.049285 1.582293 -2.264452 -1.958320 2.660105 -0.338009 -0.063987 -1.903696 -1.077238 1.352165 -1.189223 -0.525610 0.221856 -0.391139 0.568317 -1.234528 -0.536718 1.534931 -2.619104 1.289108 1.039261 -1.187785 -1.464540 -0.561812 0.177327 0.409043 -1.245180 -1.498386 0.236126 0.420291 -0.661622 0.152090 -1.279960 -1.730995 2.323343 0.501000 -0.702765 0.274138 -0.240687 -1.301845 1.159623 -0.539774 -2.038288 -0.858474 0.118846 -0.889409 1.532108 0.351271 1.689615 -3.378641 0.687243 -3.577920 0.911148 -1.674668 1.297771 2.255393 -1.687881 1.353065 0.692094 0.953104 0.824246 0.201248 1.697509 0.717316 0.542317 0.629866 1.501582 1.358256 -0.833456 -1.476557 -1.147670 -1.428833 0.139626 -0.612187 -3.275614 0.973037 -1.175282 0.598886 -0.417097 0.156341 -0.381185 1.931019 -2.426649 -0.196800 0.565439 -0.533064 1.130278 1.544167 -0.245178 0.332173 -0.681827 1.586438 -0.434722 0.701942 -0.221857 1.609120 -0.779767 -1.874044 -1.910745 0.600268 1.028559 -1.535760 -2.304579 -2.534773 -0.613270 0.769196 -1.045422 1.715832 3.588992 -1.371001 -2.064934 1.927519 0.132772 0.118557 1.982957 0.566632 2.886618 -1.276360 -0.105101 -0.517595 -0.485131 0.390104 0.716286 -0.442689 -1.250914 1.501285 -0.409357 -1.278164 2.428476 -0.038783 -0.776628 -0.063727 0.171551 -0.846353 -1.472310 2.287179 -0.697267 1.973152 -0.445223 2.962891 -1.008108 -1.439597 0.706192 -1.479486 -0.453432 -1.055528 -0.037861 -0.090021 1.482125 -1.654317 -1.444451 -0.394303 -0.616382 -0.792616 2.011189 0.263600 0.065095 0.542728 -0.072615 1.503653 1.707565 -0.525175 0.059041 -1.770706 0.845623 1.486862 -0.068260 -2.571330 -0.673085 -0.797955 -0.528716 0.248629 0.199850 1.493999 -1.195285 -0.368154 0.529763 -0.051305 0.578261 0.314393 -1.983693 0.927392 -0.273046 0.771020 0.813596 2.458645 1.872972 1.957432 0.529459 0.586491 -0.150758 -0.558470 -0.674905 0.178356 0.593529 0.776293 1.077998 1.792157 1.132945 1.017790 1.430220 0.896393 0.314802 2.079637 0.441152 2.905324 -1.120596 -0.324681 0.260966 -0.030767 1.964348 2.858645 -0.577358 -0.768117 0.932504 -0.158491 -1.000953 -1.722364 0.046443 -0.302709 -0.387517 1.100410 1.309976 -0.086826 -0.746631 3.038138 -0.180795 -3.558775 1.897644 0.736099 1.115916 1.250023 -0.388571 0.615792 1.102657 -0.308496 1.217164 1.739909 1.337773 -2.093110 -0.262478 0.243505 1.482923 0.905462 0.898784 -3.079922 0.588593 0.926628 2.177739 0.389284 1.723732 -1.535794 -0.357004 0.539670 -0.440513 0.057903 0.076533 0.966120 -0.968359 0.340849 -1.791653 -0.644769 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.184567 -0.645030 1.165642 -3.173515 -3.303817 0.529142 0.643304 -3.121692 -1.054819 2.856414 1.112803 -1.458449 -0.591115 3.339163 -0.190038 -1.886981 0.463399 -2.793533 0.078232 -0.854351 -0.894144 2.205278 -1.275992 -0.627542 0.502433 -0.641962 -0.482994 1.731977 -0.050768 -0.955445 -0.866231 -2.157474 -0.392413 4.868544 2.081064 -0.909891 -1.111861 7.307984 -1.839421 3.244878 -4.693756 -3.565600 4.015323 -1.238731 -0.350970 -3.570710 -1.792713 2.693906 0.561800 -1.323866 1.079751 -0.425149 0.974964 -1.448902 -0.710171 2.207728 -4.150513 1.877268 2.115248 -2.339953 -2.187429 -1.540740 -0.225697 1.297628 -3.603214 -2.929654 1.482074 0.610384 -0.912560 0.296979 -2.131172 -3.835804 3.318066 2.056986 -1.581358 0.063521 -0.044744 -3.043195 2.913268 -0.727028 -4.658437 -1.565332 -0.780487 -2.359117 2.937353 -0.122416 3.559747 -6.899825 2.416165 -7.406846 1.296022 -3.408965 2.543315 4.670804 -2.624582 2.315963 1.716759 3.405219 2.752289 -1.114722 3.597685 1.828009 1.012282 2.171270 3.392563 2.756634 -1.199936 -2.034320 -2.256488 -2.870967 1.198217 -1.441545 -5.285244 2.614243 -1.413953 -0.771381 -1.233766 0.995652 -0.961942 4.571802 -4.981216 -1.450866 1.627045 -1.215882 1.801302 3.154800 -1.397186 0.723600 -2.393493 3.434805 -1.353749 2.930459 -0.716598 3.337541 -2.264718 -2.451550 -4.136254 0.987822 2.230702 -3.966961 -4.631129 -5.135524 -0.988837 0.971887 -2.672013 4.948928 7.473606 -3.936380 -3.739258 4.590378 1.263727 -0.646808 3.100929 0.621739 5.065332 -1.827354 -0.969152 -1.508211 -1.413689 0.162369 2.043580 0.195174 -1.728346 2.735334 -0.857054 -2.451184 5.544143 -0.234701 -2.857254 0.281412 0.328640 -1.133251 -3.146401 4.067953 -1.130876 3.160349 -0.331989 5.109441 -1.149569 -1.785868 1.727307 -2.810288 -0.807132 -2.462967 0.073825 -0.104156 3.031271 -2.768937 -2.467057 -0.752361 -2.416520 -2.182192 2.691028 0.399071 0.754157 1.783398 1.096776 3.643211 5.032742 0.201632 -0.137414 -3.441960 2.549087 3.063025 0.194700 -3.414647 -1.857996 -1.650079 -1.230849 -0.112213 0.282401 3.162291 -2.801249 -0.774606 0.635155 0.485446 1.073943 1.801970 -5.435448 1.956467 -0.146275 2.163868 1.262904 4.227152 2.961477 4.199949 2.536537 0.274204 -0.557893 -0.305892 -1.920349 0.459322 1.270921 1.147356 2.398484 3.762593 3.198674 2.135670 3.984200 1.855673 1.315849 4.218909 -0.099306 6.475920 -2.144290 -0.465266 -0.012340 0.224572 4.203165 6.594196 0.265761 -1.033958 2.233699 -0.556015 -3.066888 -3.091085 0.556807 -0.787397 0.462163 0.940025 2.265991 -0.308685 -1.661088 5.967469 -0.749300 -6.963363 3.278856 1.700737 2.541278 3.091791 0.020840 1.775466 1.859882 -1.743371 3.308499 4.109918 2.758844 -3.696004 -1.102068 0.414361 2.374340 1.393477 2.739581 -5.761065 1.797524 2.185215 4.263536 0.504234 2.893134 -3.435694 -0.828779 2.348173 -0.901528 -0.031595 1.684137 2.607005 -2.676999 1.110847 -3.597031 -1.051249 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = 0.162991 -0.098917 0.171901 -0.747262 -0.849928 0.097143 -0.153624 -0.421603 -0.170257 0.023206 0.283110 -0.302784 -0.299096 0.984482 -0.172888 -0.662572 -0.123211 -0.293758 -0.030160 0.167446 -0.115147 0.560046 -0.247728 0.036516 0.172806 -0.023955 -0.281448 0.230967 0.432291 -0.420828 -0.331945 -0.358598 -0.149769 0.827597 0.234021 0.033940 0.032190 1.458560 -0.089843 0.739333 -0.865156 -0.609702 0.589933 -0.210694 -0.050516 -0.861539 -0.607332 0.476668 -0.430979 -0.080708 0.466776 -0.010769 -0.043777 -0.154809 0.285591 0.316896 -1.064931 0.758774 0.468686 -0.084451 0.018842 -0.266716 -0.319212 -0.061747 -0.262836 -0.472874 0.024780 0.311899 -0.325537 -0.132143 -0.154360 -0.591025 1.233140 0.362539 -0.426611 0.218553 0.214300 -0.561557 0.553551 -0.794769 -0.999509 -0.162013 0.029667 -0.040346 0.779028 0.091273 0.443774 -1.223980 0.357690 -1.333642 0.305103 -0.747556 0.355482 1.006254 -0.725857 0.360493 0.469516 0.191235 0.759541 0.300324 0.761401 0.341406 0.030694 0.429140 0.392708 0.335878 -0.182380 -0.236769 -0.400530 -0.758543 -0.046770 -0.107438 -1.344941 0.370030 0.014992 0.427413 -0.198126 0.275154 0.031638 0.350911 -0.854772 -0.186064 0.262383 -0.203248 0.339343 0.739290 -0.243851 0.012079 -0.610151 0.698235 -0.465267 0.554808 -0.168508 0.556539 -0.227709 -0.803565 -0.982732 0.071642 0.232222 -0.586538 -0.769034 -0.869686 -0.065899 0.127461 -0.475799 0.732608 1.467985 -0.810606 -0.730914 1.083675 0.381016 0.225572 0.698317 0.128059 0.843560 -0.112908 -0.354086 -0.260575 -0.504848 -0.181413 -0.245523 0.265674 -0.359907 0.354414 -0.070499 -0.935950 0.912849 -0.035910 -0.635768 -0.208968 0.063967 -0.514622 -0.576092 0.857871 0.001430 0.672471 0.025630 1.056123 -0.195970 -0.538239 0.340370 -0.396005 0.012465 -0.465592 -0.145532 0.144803 0.333424 -0.717752 -0.392579 -0.039559 -0.294561 -0.621941 0.287521 0.268940 0.096197 0.383132 0.334692 0.588691 1.053595 0.080875 0.160700 -0.738222 0.475064 0.336577 -0.239993 -0.931275 -0.023423 -0.246117 -0.152049 0.332717 -0.035772 0.307036 -0.281576 -0.280338 -0.042134 -0.110221 0.479641 0.366561 -0.422234 0.111565 -0.136986 0.471167 0.385326 0.571047 0.753864 0.884428 0.582646 0.314128 -0.051436 0.094544 0.211167 -0.022617 0.191632 0.224568 0.490857 0.661824 0.734834 0.311511 0.680170 0.549458 0.126704 0.827313 0.134247 1.376028 -0.197946 -0.314023 -0.057466 0.107688 0.806200 1.296634 -0.491217 0.244996 0.440812 0.159296 -0.208656 -0.598428 0.250401 -0.192164 -0.375239 0.440998 0.194924 0.059540 -0.210360 0.935964 -0.287394 -1.076473 0.617271 0.214083 0.569851 0.190296 0.281138 0.059560 0.371649 -0.690142 0.583408 0.737547 0.586867 -0.615412 -0.412806 0.051634 0.430851 0.330351 0.760678 -0.580550 0.285209 0.549357 0.715430 0.072672 0.151958 -0.467265 -0.617479 0.411421 -0.201685 -0.149343 0.091431 0.205264 -0.327749 0.022843 -0.280928 -0.726324 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 2.512791 -0.901712 1.543468 -4.311055 -4.516006 0.775138 1.243450 -3.698954 -1.145843 3.453194 1.449740 -1.602429 -1.174518 4.725145 -0.182413 -2.211425 0.584006 -4.165897 0.143425 -0.413419 -1.005182 3.093526 -1.694131 -0.496070 0.766637 -0.488286 -0.646641 2.647664 0.435331 -1.374375 -1.250083 -2.705097 -0.963867 5.925582 2.534828 -1.116619 -1.042563 10.150367 -3.844733 4.748394 -6.111552 -4.729194 5.334326 -1.503618 -1.235994 -5.351361 -2.542422 3.390386 0.347134 -1.932689 1.830887 -0.522659 1.282067 -1.611912 -0.607041 3.052398 -5.979911 2.206930 2.711091 -2.337941 -2.458205 -2.068827 -0.160812 1.527809 -5.195683 -3.538468 1.891486 -0.190284 -1.303592 -0.050635 -2.515679 -4.507961 4.534687 2.621389 -1.980339 0.139383 0.103489 -4.606389 3.774627 -1.303653 -6.352491 -1.702728 -1.375558 -3.694975 4.114915 -0.526282 4.359956 -8.884258 3.045971 -9.509885 1.289228 -4.794407 2.869389 6.072080 -3.494165 3.113895 2.112701 4.711847 3.718543 -1.624876 4.518938 2.674170 1.564324 2.882035 4.409363 3.823925 -1.919790 -2.503059 -3.558008 -3.719401 1.492716 -2.098977 -7.847533 3.131263 -1.425407 -1.330344 -1.313639 1.058240 -1.472648 6.159765 -6.121720 -0.525631 1.664128 -1.383599 1.847956 4.656038 -1.674910 0.633838 -2.840623 4.416190 -1.913502 4.456764 -0.880901 4.060282 -3.136198 -2.855088 -4.829476 1.117172 2.592975 -4.660218 -5.641752 -7.167225 -1.144689 1.141861 -3.179153 5.994076 10.128082 -5.234132 -5.088152 5.973599 1.614456 -0.404335 3.753633 0.553969 6.283221 -1.855124 -1.627906 -2.059466 -2.030856 -0.235215 3.335034 0.575131 -1.905181 3.201065 -1.421106 -4.239824 7.764234 0.057953 -3.646959 0.151522 0.433378 -2.091601 -4.742583 5.790532 -1.870298 4.187192 -0.333263 6.343158 -1.105859 -1.920180 2.247705 -3.869450 -0.618497 -4.429902 -0.519504 -0.005619 3.576928 -3.336115 -2.892502 -1.660572 -2.559386 -3.026668 3.221288 -0.619990 1.066177 2.236347 1.682199 4.353222 6.719694 0.154592 -0.182203 -4.645216 3.223441 3.801904 -0.055332 -5.102932 -2.142971 -2.084991 -1.550018 0.344265 0.202808 3.818539 -3.769326 -1.167730 0.898493 0.873289 1.324328 2.446552 -8.446722 2.268489 -0.135556 2.996478 2.024875 5.056993 3.838241 5.666312 3.195515 0.913171 -0.664322 0.103423 -2.786971 0.261927 1.730990 1.285122 3.023460 5.309958 4.295320 2.747965 4.693450 2.894345 1.387366 5.272927 0.511551 8.861165 -2.315273 -1.513757 0.056844 0.639155 4.993206 8.305413 0.709394 -0.776546 2.792556 -0.425957 -3.946398 -4.096047 0.921368 -1.278997 0.852915 1.774821 2.660336 -0.275419 -1.776574 7.443705 -1.220987 -9.505082 3.780251 1.950008 3.502261 3.789505 0.357768 2.270397 2.475951 -2.713445 5.086046 5.518748 3.164586 -4.257599 -1.367426 0.644689 3.013864 2.291266 3.563348 -8.316397 2.473788 2.251612 5.361984 0.811970 4.552688 -4.242046 -1.127171 2.956624 -1.371588 0.032364 1.879510 3.387103 -3.049616 1.269562 -5.517556 -1.611976 +PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = 0.157416 0.149792 0.292924 -0.106877 0.050928 -0.001839 0.387327 -0.286591 -0.188772 0.294574 0.169053 -0.330711 -0.054113 0.108114 -0.057935 -0.082212 0.317393 0.264855 -0.173825 -0.272603 -0.243867 -0.151214 -0.078554 -0.441643 0.161731 -0.079765 0.315240 0.168070 -0.309102 0.042593 -0.011930 -0.108786 0.382883 0.704311 0.185198 0.065487 -0.356100 0.461599 0.230686 0.493890 -0.558753 -0.240059 0.700150 -0.084141 0.114187 -0.554300 -0.078738 0.442759 0.105343 -0.426829 -0.306117 -0.184879 0.084097 -0.644301 -0.493954 0.609812 -0.305039 0.071629 0.326923 -0.559907 -0.700223 -0.073603 0.357663 -0.011632 -0.184366 -0.275946 -0.008404 -0.005890 -0.163930 0.274426 -0.610127 -0.573389 0.306375 0.034586 -0.083715 0.104698 -0.393009 0.023354 0.098412 0.281967 -0.155127 -0.415981 0.263548 0.046236 0.068794 0.228123 0.331720 -0.837034 -0.094036 -0.766604 0.376560 -0.298550 0.563942 0.407568 -0.050203 0.437167 0.041148 -0.258180 -0.356364 0.232848 0.314251 -0.155707 0.164301 -0.134751 0.442317 0.282664 -0.245077 -0.667652 -0.070651 -0.243578 0.234448 0.225059 -0.086603 0.193639 -0.765616 0.159274 -0.116669 0.197753 -0.026321 0.094287 -0.331511 -0.237138 0.371740 -0.219033 0.589532 0.360366 0.104606 0.246143 -0.111752 0.210963 0.088361 -0.039685 -0.155952 0.431512 0.128344 -0.650450 -0.188771 0.015002 0.297788 -0.322784 -0.635475 -0.633887 -0.264460 0.221613 -0.335257 0.068732 0.666189 -0.141041 -0.310821 0.166504 0.241014 0.198294 0.342145 0.257999 0.983015 -0.740757 0.386116 0.178823 0.251839 0.489200 0.349727 -0.500283 -0.431972 0.487868 -0.134752 -0.259734 0.703518 -0.154851 0.109439 0.664759 0.014264 0.098275 -0.449698 0.385767 0.317327 0.437895 -0.244092 0.826750 -0.529819 -0.320695 0.085508 -0.034438 -0.233182 -0.044871 0.208473 -0.223125 0.635899 -0.358168 -0.514552 0.194608 -0.205468 0.135841 0.593731 -0.048302 -0.153572 -0.102877 -0.414721 0.051653 -0.076263 -0.371576 -0.027548 -0.429778 -0.100780 0.296384 0.398552 -0.389675 -0.199263 -0.317214 -0.242802 -0.141328 0.113606 0.324602 -0.165401 0.029742 0.446820 -0.266893 -0.060401 -0.242403 -0.170591 0.211975 -0.049310 -0.152552 -0.056207 0.870138 0.448035 0.296421 -0.197331 -0.024683 -0.032406 -0.300424 -0.547841 0.011508 -0.100781 0.452655 0.243480 -0.231604 0.147426 0.190780 0.251616 -0.488998 0.097607 0.455694 0.210042 0.398912 -0.333361 0.178144 0.320124 -0.311325 0.499426 0.427352 0.108697 -0.691403 0.230256 -0.279160 -0.315346 -0.501929 -0.225461 0.096043 -0.323898 0.405305 0.527486 -0.074445 -0.303402 0.966854 -0.065143 -0.881183 0.580658 0.132046 0.146214 0.417950 -0.273057 0.367184 0.462042 0.451808 -0.192253 0.182063 0.599990 -0.672561 0.025277 -0.078024 0.379013 0.084605 -0.188981 -1.027184 -0.066571 0.131507 0.474832 0.054269 0.431384 -0.346023 0.346652 -0.123170 0.011757 0.015293 -0.018772 0.430055 0.197140 -0.287399 -0.728784 0.469391 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.186235 -1.238544 1.702468 -4.755226 -4.781883 1.052440 0.125629 -3.768325 -1.285299 3.640354 1.337613 -1.428524 -1.181743 4.952954 -0.451745 -2.876516 0.014112 -3.979918 0.372083 -0.482616 -1.174528 3.453673 -1.934434 -0.067872 0.846129 -0.821294 -0.837301 2.211454 0.686509 -1.609473 -1.097899 -3.002876 -1.588710 6.153208 2.710303 -0.941066 -0.719507 10.231796 -2.511558 4.536585 -5.580351 -5.063800 4.744160 -1.525740 -0.603243 -3.797880 -2.135005 3.412559 -0.770693 -1.245184 2.388076 -0.510657 1.301000 -1.238588 -0.062573 1.849427 -6.082932 2.651134 2.766683 -2.169581 -2.244120 -2.164660 -0.580436 1.442744 -4.480756 -3.461484 1.804397 0.864063 -1.405594 -0.540148 -1.871316 -4.318807 4.549605 2.910368 -2.087096 0.360403 0.690239 -4.118483 3.918526 -2.123230 -6.947519 -1.744777 -1.435987 -4.332755 4.735926 -0.159866 4.513147 -8.596822 3.945980 -9.524104 1.292801 -4.166500 2.800739 6.710524 -3.756507 3.038010 2.789139 5.045184 3.861316 -1.715219 4.789611 2.490381 0.599108 3.758055 4.045101 3.353206 -2.076194 -2.073545 -3.644228 -4.077308 1.120933 -2.497028 -6.979068 3.194096 -0.747793 -0.384249 -1.518850 1.460834 -1.774165 5.432615 -6.960665 -1.289847 1.389691 -1.447370 1.912768 4.017372 -1.692382 0.593618 -2.821851 4.780944 -2.861647 3.953649 -0.947855 4.328050 -2.534628 -1.520174 -5.436936 1.310845 2.659323 -4.643273 -5.715373 -6.664006 -1.417780 1.105175 -3.198117 7.489630 10.031674 -5.405991 -4.996862 6.670636 0.611981 -0.289489 4.108135 0.846322 5.115819 -1.183993 -2.477032 -2.609127 -2.745656 -0.522989 1.901594 1.237870 -1.615515 3.604438 -1.103590 -1.740291 6.592808 0.022834 -4.359079 -1.728662 0.811948 -2.720752 -4.089975 5.434684 -2.273390 3.912288 0.346945 6.809067 -1.023688 -2.231039 2.165374 -4.300632 -0.523116 -4.023354 -0.578973 -0.015195 3.031803 -3.741523 -3.007203 -1.449267 -2.273354 -3.591226 2.677173 0.963823 1.298078 2.739247 2.092121 5.463779 7.211523 0.664539 -0.391503 -4.402133 3.436535 3.472310 -0.636032 -4.172110 -2.000276 -1.694953 -1.546637 1.103571 0.218764 3.772242 -4.008660 -1.067613 0.193682 1.063624 1.758551 3.057747 -8.233033 2.256169 0.014524 2.992747 2.735575 4.565117 3.959463 5.870250 3.797907 1.334928 -0.944887 0.444389 -1.581819 0.043924 1.895126 1.707079 3.225595 5.446993 4.881933 3.015951 4.789524 3.778921 1.321673 5.475399 -0.541028 8.865186 -2.165450 -1.257594 -0.332170 1.322485 5.125135 8.160448 -0.642505 0.209589 3.125312 -0.170731 -3.344172 -4.041166 1.639494 -1.536555 1.447385 0.748014 2.618034 -0.113379 -1.836518 7.032873 -1.456107 -8.723429 3.940178 2.125850 3.937744 3.445217 0.888044 1.801043 2.097322 -3.690007 5.467338 5.693259 3.075551 -4.420365 -0.602161 0.761087 3.149858 1.885395 4.520239 -6.349337 2.354340 2.193699 4.825522 0.894949 3.576976 -4.053244 -2.114174 3.438218 -2.033454 -0.172003 2.174580 2.943333 -2.907961 1.835845 -4.097332 -2.811298 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.390411 -0.026616 1.102660 -2.025827 -2.299178 -0.121272 0.849525 -1.103674 -0.436281 1.121048 0.739503 -0.941300 -0.750484 2.548065 -0.416977 -1.194481 -0.207038 -1.413813 -0.314694 -0.292688 -0.212550 1.646464 -0.538731 0.004782 0.632191 -0.327959 -0.435766 1.426045 0.373828 -0.815972 -0.075475 -1.022165 -0.075209 2.374525 0.455590 -0.225837 -0.325399 4.156669 -1.826380 2.158327 -2.488509 -2.036124 2.343569 -0.548347 -0.353090 -2.862637 -1.752839 1.428608 -0.434840 -0.640913 0.895809 0.301457 0.303340 -0.872648 0.358700 1.201834 -2.925042 1.201884 1.176180 -1.173646 -0.826787 -0.586096 -0.641569 0.197964 -1.674207 -1.428887 0.259614 0.067292 -0.523027 0.009961 -0.279940 -1.625362 2.492569 0.735353 -0.719979 0.727965 0.562128 -1.922036 1.867484 -1.237899 -2.483158 -0.743315 -0.095396 -1.126783 1.792079 -0.146618 1.508111 -3.493794 0.687208 -3.506654 0.863224 -2.201765 0.852681 2.649631 -1.570482 1.657590 0.990258 1.055206 1.608064 0.014155 1.971455 1.243403 1.167469 1.532163 1.514859 1.556907 -1.068268 -1.272855 -1.964724 -1.993946 0.579039 -0.936975 -3.437507 1.087335 0.144137 -0.462265 -0.216267 0.094077 -0.086243 2.622485 -2.220890 0.551614 1.280942 -0.563937 0.073452 2.008018 -0.606214 -0.159515 -1.392216 1.898453 -1.121640 2.094682 -0.105443 1.655923 -1.074838 -1.826183 -1.761436 0.201554 0.343155 -1.614154 -2.024209 -2.775433 -0.299414 0.592967 -1.308691 1.759109 4.259156 -2.050214 -2.423775 2.750442 1.656031 -0.027360 1.086270 0.455959 2.463629 -0.430723 -1.224091 -1.266890 -1.317024 0.327166 1.739397 0.669928 -1.043477 1.448620 -0.362489 -2.979272 3.348541 -0.379401 -1.445227 0.031231 0.482428 -1.389723 -1.700558 2.485847 -0.081431 2.311011 -0.507341 2.833395 -0.514868 -1.330573 0.760580 -1.561571 -0.031410 -2.057325 -0.183670 0.499985 1.134219 -1.447923 -1.210032 -0.944950 -1.175547 -1.418079 1.027715 -0.966215 0.534923 0.784080 0.880538 1.443992 2.658212 0.058099 0.132096 -2.166448 1.311415 1.127220 0.141248 -2.996927 -0.311001 -0.552109 -0.594292 0.203439 -0.029083 1.264178 -1.055868 -0.377311 0.299148 -0.481222 0.109817 0.613847 -2.901633 0.595269 -0.361547 1.716387 0.797512 1.773351 2.506705 2.165802 1.299832 1.075866 -0.328233 -0.085488 -0.708026 0.348797 0.569404 0.182718 1.355713 2.470259 1.981193 1.010123 2.199716 1.573267 0.322938 2.277321 0.177960 3.710569 -0.634683 -0.875201 0.006447 0.756505 2.098435 3.384524 0.557380 -0.139879 1.364406 0.331548 -1.221701 -1.688509 0.347131 -0.553616 -0.055056 1.665437 0.996899 -0.561486 -0.192502 2.737794 -0.585529 -3.530400 1.459428 0.706657 1.596943 0.726717 0.426109 0.557051 1.442566 -1.287276 1.853466 1.937807 1.370592 -2.083228 -1.196162 0.289088 1.238376 1.499513 2.026490 -3.881341 0.620410 0.966203 2.002770 -0.357697 2.101467 -1.576311 -1.022629 1.323879 -0.404514 -0.458777 0.714667 0.692580 -1.487489 0.519766 -1.887642 -1.287742 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.350688 -1.183942 1.639523 -3.618463 -3.953418 0.513355 0.546363 -3.261779 -0.953915 2.809600 1.325000 -1.687164 -0.753391 4.725698 -0.368906 -2.185896 0.088046 -2.010270 0.270445 -0.622347 -0.676778 2.883353 -1.444750 -0.139461 0.602505 -0.870346 -0.407231 2.285963 0.166183 -0.856187 -0.456690 -2.585154 -0.859670 4.877669 2.027216 0.194148 -1.175335 8.185861 -3.103535 5.097348 -5.241219 -4.151301 4.242023 -1.112615 -0.292234 -3.988068 -2.679055 2.713619 -0.634691 -1.443826 1.644778 -0.225267 1.190383 -1.225525 0.176818 1.736890 -4.504428 1.611296 2.255256 -2.834164 -1.967985 -1.553350 -0.948564 1.297831 -4.576710 -2.882766 1.071200 0.699665 -0.835956 -0.014791 -1.464347 -3.602206 3.728416 1.855132 -1.778328 0.324079 0.634076 -3.107873 3.251038 -1.393343 -5.488178 -1.653975 -0.989508 -2.970293 3.012969 0.331554 4.284314 -7.170892 2.669820 -7.804041 1.693013 -3.645126 2.286349 5.287457 -3.154382 2.780621 2.324765 3.993439 3.392727 -0.702452 3.582656 2.472704 0.731172 2.839614 3.887354 3.135624 -1.666606 -2.393775 -3.295199 -3.623274 1.450160 -2.235799 -6.069323 2.364572 -0.583387 -0.352450 -1.551337 1.171889 -0.759887 4.783287 -5.450022 0.175702 1.841979 -1.164706 1.160743 3.273673 -1.348589 0.490254 -2.457287 3.605594 -2.426145 3.554453 -0.534083 3.652587 -2.672117 -2.062187 -4.074438 0.999870 1.776695 -3.862094 -4.432307 -5.959673 -1.062033 2.039155 -2.649257 5.043097 8.243317 -4.584643 -4.244510 5.038097 1.593251 -0.910530 2.799190 0.816696 4.818060 -1.167884 -1.893134 -2.313678 -2.303570 0.257825 3.171862 0.985913 -2.036853 3.231226 -1.200931 -4.152334 6.676574 -0.405450 -3.363827 -1.432803 0.775910 -1.884714 -2.954574 4.581049 -2.489895 3.608026 -1.170736 5.369445 -0.987249 -1.786453 1.581475 -4.246809 -0.800700 -3.369568 -0.104059 0.095209 3.094779 -3.197204 -2.475606 -1.724725 -2.794811 -2.521047 2.316883 -0.659512 0.781679 2.130589 1.465426 4.433136 5.588643 0.772421 -0.386165 -3.631929 2.760828 2.935682 0.100515 -4.287457 -1.522412 -1.712493 -1.347930 -0.541857 0.267505 3.151266 -3.303151 -0.530462 -0.155377 0.148837 0.953396 2.095898 -6.340830 1.795985 0.087177 3.151786 2.010399 3.853537 3.490423 4.876576 3.054815 1.307418 -0.894676 -0.186168 -1.738597 0.991528 1.859329 0.507423 2.486631 4.537099 3.880991 2.424823 4.343423 2.669351 1.487704 4.506999 -0.177649 7.142057 -1.667606 -0.787647 -0.021598 1.218186 4.219860 6.825173 0.498931 -0.073067 2.465675 -0.486446 -3.128334 -3.022435 0.933142 -0.937956 0.186904 1.792169 2.265521 -0.189310 -1.525047 5.768375 -0.953683 -7.337411 3.122496 1.525644 2.931364 2.935711 0.438357 1.435897 2.049234 -2.333842 4.280976 4.461878 2.679563 -3.832719 -1.383056 0.496623 2.320323 3.603480 3.573658 -6.415464 2.231843 2.162444 4.263173 -0.158130 3.559672 -3.604339 -1.213024 2.541266 -1.658731 -0.283692 1.546656 2.025404 -2.024957 1.075015 -3.970301 -2.330323 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.437785 -0.324993 1.863235 -3.909291 -3.749800 0.020046 1.689327 -2.640323 -1.062192 3.366484 1.139660 -1.718566 -1.529127 4.372674 -0.566559 -2.074230 0.021530 -3.429280 -0.369953 -0.644142 -0.851418 2.799446 -1.237221 -0.503141 1.051567 -0.539938 -0.367279 2.531190 0.214312 -1.452359 -0.269009 -2.237868 -0.330676 4.931452 1.575379 -0.649229 -1.080659 7.960767 -3.534978 4.335747 -5.075461 -4.278970 4.759941 -1.143242 -0.509973 -4.809285 -2.078410 3.080726 -0.502431 -1.546659 1.400253 0.153806 0.905003 -1.978596 -0.220783 2.417190 -5.239934 2.169471 2.391171 -2.371886 -2.286375 -1.413294 -0.425566 1.015781 -3.705254 -3.039759 0.904261 -0.290660 -1.349057 0.058077 -1.559472 -3.202032 3.556125 1.772207 -1.347838 0.817102 0.189727 -3.351069 3.340011 -2.194775 -4.858203 -1.670719 -0.550648 -2.831218 3.233029 0.037807 3.276364 -6.978316 1.908154 -7.210863 1.388646 -3.797187 2.064741 5.158808 -2.441511 3.191357 1.596623 2.673959 2.764504 -0.949355 3.559616 2.239697 2.008279 2.777260 3.299099 3.278221 -2.205006 -2.635995 -3.437027 -3.357961 1.202190 -1.818170 -5.691517 2.502314 -0.604260 -0.963478 -0.574253 0.455799 -1.055336 4.891995 -5.153417 0.035286 1.830431 -1.148843 1.015320 3.609217 -1.059418 0.116883 -2.221744 3.523138 -1.659662 3.813899 -0.293314 3.571315 -2.099961 -2.482633 -3.340866 0.764452 1.511030 -3.428051 -4.309681 -5.860645 -0.972859 0.969465 -2.728784 4.615700 8.041312 -3.905130 -4.508906 4.982254 1.643044 -0.213516 2.363384 0.742605 4.780791 -1.329280 -1.830309 -1.867405 -2.006565 0.665106 3.884182 0.685052 -2.167380 3.070487 -1.134251 -3.671836 5.201340 0.005736 -2.682637 -0.443756 0.723710 -2.341527 -3.406609 4.493537 -1.582803 4.064187 -0.817177 5.528116 -1.169700 -1.977255 1.647770 -3.623845 -0.354007 -3.803325 -0.464352 0.461120 2.510897 -2.925384 -2.451652 -1.842890 -2.000892 -2.613137 2.692917 -1.773405 0.801384 1.508775 1.380975 3.908287 4.947156 -0.238171 0.028057 -3.862032 2.662931 2.565145 0.497157 -4.948860 -1.410786 -1.243213 -1.466715 0.734991 0.061741 2.958125 -2.666450 -0.586619 1.029886 -0.036692 0.273394 1.422879 -6.275088 1.558293 -0.257095 2.867388 1.809697 4.152064 3.640359 4.301250 2.256958 1.511187 -0.956611 -0.247686 -2.058326 0.445054 1.120096 0.568306 2.706503 4.397961 3.671922 2.208411 4.305038 2.762445 0.211818 4.459781 -0.135427 6.660196 -1.848256 -1.333221 0.308408 1.075195 3.970078 6.136484 0.526567 -0.958862 2.732575 -0.216468 -2.808468 -2.799147 0.668674 -1.167540 0.609091 2.303618 2.394552 -0.783166 -0.849712 5.840212 -1.216993 -7.320674 3.086258 1.641440 3.168468 2.228901 0.358912 1.564088 2.416592 -2.229833 3.686140 4.060835 2.570414 -3.882239 -1.303404 0.672057 2.540495 2.630432 3.226400 -7.540690 1.030150 1.709862 4.192197 0.010359 4.276424 -3.270962 -1.216736 2.487948 -0.836979 -0.168562 1.332374 2.112944 -2.507237 1.095429 -3.950683 -1.442358 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 1.004715 -0.407366 0.767712 -1.297765 -1.568074 -0.168556 1.361595 -1.446721 -0.514403 1.470250 0.399456 -0.901601 -0.959893 1.629839 0.135158 -0.718329 0.332858 -1.662442 -0.167145 -0.617189 -0.437077 1.108806 -0.481803 -0.325467 0.407218 -0.120655 -0.188062 1.311469 -0.091872 -0.669416 -0.063695 -1.117696 0.265029 2.396411 0.810903 -0.138577 -0.996178 3.913247 -1.500912 2.234737 -2.864683 -1.840051 2.459949 -0.734295 -0.261403 -2.631200 -0.821817 1.699445 0.070818 -1.150503 0.254961 0.206882 0.334518 -1.114958 -0.495069 1.618807 -2.271756 0.933860 1.061186 -1.600002 -1.352090 -0.628357 -0.333826 0.674610 -2.089245 -1.643347 0.525648 -0.501063 -0.700521 0.587710 -1.049077 -1.734225 1.442930 0.763255 -0.802676 0.154090 -0.125567 -1.194734 1.602836 -0.304268 -2.138590 -0.973266 -0.315300 -0.884645 1.101839 0.017072 1.498995 -3.566634 0.526138 -3.709212 0.862644 -2.039917 1.228724 2.254122 -1.192056 1.719704 0.532542 1.071807 1.234591 -0.731272 1.594647 0.945415 1.220913 1.069888 1.871704 1.496639 -0.689194 -1.407237 -1.506138 -1.405384 1.007482 -0.721162 -2.577897 1.260159 -0.684726 -0.398220 -0.261005 0.581816 -0.328779 2.345590 -2.435090 0.067582 1.245854 -0.595547 0.838393 1.858714 -0.846427 0.236467 -1.205402 1.626333 -0.360222 2.026557 -0.148652 1.749251 -0.905299 -1.581759 -1.622030 0.292409 0.951931 -1.870900 -2.198048 -2.941105 -0.383463 0.513781 -1.494030 1.811651 3.949823 -1.913440 -1.890451 2.103165 0.884315 -0.224431 0.873750 0.263449 2.890014 -1.052906 -0.441926 -0.599555 -0.613094 0.628182 2.569500 0.050485 -1.361945 1.350894 -0.441886 -2.297848 2.684714 -0.099330 -1.184533 0.479790 0.010832 -0.368437 -1.700698 2.052279 -0.636369 1.950795 -0.792878 2.213690 -0.562757 -0.823445 0.890687 -1.399923 -0.401573 -1.388146 -0.075085 0.131467 1.511154 -1.583079 -1.148014 -0.891132 -1.491450 -0.948432 1.506038 -0.613964 0.204244 0.639166 0.693459 1.790508 2.181337 -0.136722 -0.058219 -2.056097 1.305090 1.367832 0.639208 -2.174824 -0.931399 -0.885132 -0.806871 -0.156928 0.121483 1.544560 -1.201779 -0.185467 0.612764 -0.106074 -0.068184 0.587545 -2.861073 0.795083 0.192874 1.302495 0.674785 2.333343 1.603813 1.852280 1.021636 0.393891 -0.442493 -0.409389 -1.520423 0.460267 0.313381 0.285139 1.211794 1.547808 1.675286 0.828748 2.304296 0.654877 0.361989 2.254571 0.298062 3.197265 -1.286363 -0.341646 0.365332 0.093899 1.985622 3.037795 0.643575 -0.837785 1.287633 -0.421477 -1.737325 -1.260112 -0.158035 -0.412392 0.207311 1.460857 1.046216 -0.509295 -0.538320 3.021453 -0.494228 -3.872030 1.535740 0.812627 1.197177 1.497126 -0.069088 0.984295 1.350256 -0.661620 1.497737 1.893645 1.376512 -1.928972 -1.079162 0.149331 1.019882 1.382140 1.203510 -4.144007 0.229069 0.946614 2.332999 -0.016404 1.891287 -1.877087 -0.150240 1.120981 -0.423766 -0.000624 0.826244 1.329096 -1.182983 0.221515 -2.416854 -0.089553 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 3.489746 -1.004715 1.539510 -4.918048 -3.658342 0.595317 1.983698 -5.158870 -1.615103 4.614631 1.859962 -2.669337 -1.319380 4.241182 0.169921 -2.523775 1.562142 -4.154857 -0.185005 -1.035317 -1.669406 2.552793 -1.949475 -1.870903 0.714446 -0.532368 0.207629 3.174642 0.122203 -1.647515 -1.459038 -3.198185 -0.287893 7.618229 3.390223 -1.069323 -2.276224 10.325292 -3.117832 5.187516 -7.391510 -4.688213 7.130203 -1.898407 -0.854955 -5.992120 -1.866196 4.604960 0.566441 -3.013441 0.877188 -1.008785 1.758583 -3.325451 -2.249999 4.470286 -5.654831 2.215395 3.712363 -3.710171 -4.444322 -2.460387 0.941121 2.273417 -6.292603 -4.954538 2.444626 -0.688667 -2.058611 0.704799 -4.859109 -5.851741 4.067362 2.832431 -2.193782 -0.194674 -1.589892 -4.295588 3.929533 -0.013434 -6.148513 -2.665908 -0.981307 -3.754424 3.923821 -0.356276 5.224385 -10.535463 2.971196 -11.188267 1.667224 -5.099084 4.360899 6.894350 -3.516299 3.786808 1.561578 4.734934 2.807424 -1.925006 5.065375 2.171323 1.841435 2.237534 6.104598 4.098778 -1.972891 -4.046879 -3.139009 -4.198381 2.128927 -1.851612 -7.840605 4.246002 -3.948257 -1.548635 -1.843403 1.521594 -1.793747 6.621767 -7.371538 -1.937338 2.128049 -1.897828 3.451643 5.429147 -1.696680 1.315540 -3.055670 4.661088 -0.840766 4.409264 -1.092473 5.346652 -3.035894 -3.739471 -5.064588 1.316145 3.949220 -5.908484 -7.345782 -8.233662 -1.820791 1.071099 -4.153323 7.200740 10.625874 -5.242128 -5.668487 6.175395 1.003633 -0.844888 4.469641 0.630260 8.853431 -3.995796 -0.230100 -1.356275 -1.100769 0.891721 3.857223 -1.033477 -3.561609 4.178894 -2.500543 -3.478390 7.947518 0.673276 -3.273531 1.529488 0.174487 -1.404784 -5.816429 6.306692 -2.525710 5.481821 -0.903481 8.003190 -2.161984 -2.158759 2.908931 -3.569416 -1.398626 -3.872196 -0.396694 -0.528708 5.226482 -3.795770 -3.935334 -1.714363 -3.122769 -2.688702 5.533401 0.092203 0.619289 2.016079 0.731997 5.206510 6.484626 -0.917208 -0.165105 -5.206975 3.811264 5.418752 1.163198 -4.494436 -3.409347 -3.096876 -2.385045 -0.323030 0.438781 5.489229 -4.566155 -1.176580 1.926804 1.501236 1.097734 2.108726 -9.383225 3.242888 -0.114368 2.299162 1.956268 7.745974 3.490414 5.955150 2.790813 -0.235135 -0.956432 -0.635954 -4.885258 0.282565 1.026458 2.189339 3.693619 4.725057 4.453856 3.529225 6.087222 1.797705 1.311996 6.629872 0.332804 8.783415 -3.308591 -0.581776 0.860098 -0.538049 6.204126 9.155521 0.545690 -2.962702 3.320142 -1.254805 -5.463101 -5.019293 -0.085545 -1.062920 0.228043 1.565574 3.196013 -0.351099 -2.796911 10.112643 -1.205426 -11.272614 5.065755 2.353262 3.680530 5.368635 -0.823900 3.191065 3.057286 -1.866517 4.317538 5.723913 4.240213 -5.288871 -0.711701 0.802279 3.891997 1.995748 2.681050 -9.737767 2.536137 2.861857 7.477360 1.508702 5.045955 -5.011316 0.677220 2.894261 -0.979370 0.945118 1.636202 4.734075 -3.556318 0.586722 -7.005312 0.247019 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 1.596386 -0.540966 0.512966 -2.713354 -2.241309 1.295526 -1.263124 -2.247479 -0.489996 1.114435 1.226403 -0.521585 0.727899 2.694512 -0.560755 -1.244921 0.120460 -2.207265 0.226166 0.221945 -0.372062 1.379782 -1.122879 -0.325629 -0.095324 -0.341398 -0.339913 0.519961 0.234745 -0.886556 -1.676652 -1.168478 -1.312177 3.080537 1.768377 -1.207843 0.391969 4.689636 -0.844977 1.239645 -2.122209 -1.961749 1.780067 -0.651586 -0.560566 -1.000861 -1.541258 1.227250 0.270913 -0.248231 1.430177 -1.095078 0.683765 -0.152274 -0.212007 0.652104 -2.834067 1.165536 1.402792 0.039156 -0.813226 -1.365262 0.736465 0.663597 -1.896416 -1.535013 1.674576 1.237679 -0.420360 -0.798524 -1.273095 -2.898706 2.651565 1.628115 -0.814231 -0.273358 0.154058 -3.124086 1.823729 -0.728095 -3.646093 -0.361814 -0.891565 -2.671810 2.951656 -0.623906 2.250741 -4.117290 2.612706 -4.944678 0.084477 -1.857107 1.429575 3.240413 -2.474748 0.343865 1.538440 3.965569 1.966838 -0.369616 2.658027 1.118033 -0.740666 1.276188 2.215537 1.341718 -0.642778 -0.181812 -1.181704 -2.209922 0.064349 -1.149804 -4.143466 1.758290 -0.740989 -0.639663 -1.504064 0.705253 -0.903775 2.921274 -3.112435 -1.463257 0.007116 -0.637384 0.986249 2.039318 -0.831940 0.623109 -1.538355 2.340520 -1.421070 1.117979 -0.771014 1.720364 -1.738167 -0.632319 -3.193335 1.014183 1.770347 -2.588635 -3.168160 -2.981971 -0.621999 0.141092 -1.345799 4.661413 4.496834 -2.554728 -2.607895 3.331515 0.774253 -0.412600 3.310290 0.217373 2.763094 -0.871472 -0.726239 -1.120176 -1.229826 -1.273955 -2.127581 0.160406 0.104814 1.409605 -0.631205 -0.313463 4.706593 0.282055 -2.234639 -0.206786 0.545642 -1.479097 -2.460631 2.887247 -0.128885 1.530327 1.469549 3.761124 -0.691227 -1.022626 1.212538 -1.236884 -0.157475 -1.683528 -0.404702 -0.450468 1.946456 -1.145330 -1.549147 0.010778 -0.665081 -1.746010 1.416015 2.366663 1.069775 1.581385 0.606172 1.666436 4.064440 0.315051 0.194114 -1.791131 1.551212 2.630946 -1.067155 -1.423611 -1.103592 -1.338654 -0.323959 0.361883 0.114346 2.164749 -2.654994 -1.157226 -0.226660 1.231665 1.729404 1.790411 -4.350022 1.384376 -0.900360 1.065932 1.281320 2.216417 1.688244 3.238078 2.126449 -0.262497 -0.118376 0.504530 -0.481450 -0.679006 0.966488 1.613927 1.548770 3.114577 1.994569 1.850968 1.787986 1.929797 1.213438 2.626559 -0.094299 4.397858 -0.577611 -0.319373 -0.845856 0.208883 2.812087 4.646531 -0.773028 0.471428 0.951487 0.232256 -1.614711 -2.754063 1.016486 -0.663415 0.591920 -1.027015 1.108154 0.620144 -1.479364 3.576998 -0.319104 -3.932254 1.929820 0.901037 1.827906 2.157462 0.156627 1.039491 0.472639 -1.869120 3.102050 3.006039 1.636899 -1.811061 0.082160 0.449137 1.972353 -0.560335 2.175484 -1.476762 2.976204 1.201336 2.154567 0.963539 1.006889 -2.076764 -0.820186 1.508746 -1.002087 0.160825 1.222367 1.952109 -2.096461 0.956809 -1.785758 -1.710269 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.717895 -0.404276 1.533044 -4.401227 -4.348913 1.234769 -0.420130 -4.181462 -1.167330 2.741946 1.951187 -1.508006 -0.206037 4.087757 -0.903009 -2.330228 0.214151 -3.598351 0.038086 -1.169904 -0.957618 2.495606 -1.774840 -0.734933 0.309241 -0.920636 -0.468050 1.919342 0.601653 -1.699016 -1.603767 -2.422610 -1.033720 5.904048 2.760162 -1.669647 -0.632846 8.776743 -1.714228 2.138883 -5.401702 -4.085006 4.642444 -1.436446 -0.703046 -4.193041 -2.645947 3.014516 0.153162 -0.706731 1.617474 -1.152565 1.267763 -1.402836 -0.871051 2.331805 -5.352867 2.638605 2.726237 -2.229195 -2.565943 -1.942450 0.612397 1.305449 -3.430225 -3.438388 2.423766 1.400637 -1.059196 -0.219791 -2.528291 -4.934378 4.444359 2.286683 -1.494105 -0.014618 -0.129893 -4.334462 3.476072 -0.958929 -5.937628 -1.583231 -0.689828 -3.503737 4.038916 -0.614087 3.998676 -8.167894 3.082230 -9.141656 0.951635 -3.776569 3.047906 5.432370 -3.906465 2.208310 2.420196 4.382874 3.416797 -0.953805 4.720686 1.767121 0.710619 2.628552 4.092794 2.791538 -1.048295 -1.538151 -2.694082 -4.060719 0.866660 -1.579116 -7.179766 3.319275 -1.980520 -1.479417 -2.187189 0.958921 -0.986943 5.744108 -5.566701 -1.941617 1.469187 -1.388412 1.965385 4.090598 -1.510387 1.021791 -2.797870 4.110124 -2.178860 3.118464 -1.000689 3.807895 -2.203785 -3.523785 -5.819990 1.377992 2.906372 -4.834067 -5.674569 -5.498452 -1.179876 0.324176 -3.023955 6.460029 8.974520 -4.854122 -5.166756 5.774744 1.865502 -0.800240 4.935626 0.722263 6.416578 -2.176649 -1.220712 -2.007899 -2.008660 -0.363846 -0.567473 0.049699 -1.242450 3.118432 -0.813401 -2.176029 7.343831 -0.164244 -3.653710 1.080645 0.933850 -1.847611 -4.373837 4.850325 0.419841 4.051383 1.044984 6.726236 -1.698058 -2.569643 1.986141 -2.328579 -0.650758 -2.413024 -0.159724 -0.419238 3.760300 -2.521421 -3.022089 -0.914578 -2.453565 -2.791906 3.257848 2.460685 1.596727 2.468042 0.995657 2.958137 6.784962 0.266375 0.268274 -4.099789 3.015809 4.536066 0.059906 -4.041687 -2.323852 -2.319462 -1.183870 0.253076 0.272303 4.368434 -3.409771 -1.206347 0.320132 1.133029 2.016158 2.475359 -6.795939 2.537270 -1.380437 2.307127 1.469776 5.020076 3.730751 5.537194 3.327377 0.187079 -0.360284 -0.192011 -1.115019 -0.418324 1.599449 2.192969 3.015346 4.969453 3.934727 3.161729 4.477238 2.578326 1.711760 5.322029 -0.307639 8.326093 -2.912248 -0.395908 -0.893541 0.448090 5.228419 8.420126 0.163560 -0.860697 2.275639 0.101540 -3.302226 -5.253136 1.031349 -0.892905 0.703427 0.340265 2.965350 0.068071 -2.410890 7.295750 -0.677026 -8.091447 4.366281 1.782475 3.066661 3.386875 0.061989 1.548213 2.065189 -2.594786 4.075491 5.250896 3.436891 -4.429939 -0.962600 0.719917 3.857783 -0.062144 3.573092 -6.144252 3.610592 2.691664 4.789786 0.916261 3.001770 -4.245987 -1.533855 2.960599 -1.214819 0.076039 2.606259 3.339830 -4.005861 1.478649 -3.819099 -1.799267 +PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = 3.219550 -0.951894 3.395962 -8.372532 -5.501716 0.781108 2.772585 -6.783213 -2.172424 5.928220 3.002210 -3.615522 -2.053835 6.578067 -1.058669 -4.675163 1.400873 -2.776042 -0.815701 -1.824940 -1.874160 3.576590 -2.655823 -3.392421 1.587129 -2.405058 1.441806 5.849662 0.829408 -1.097607 -0.828881 -4.376664 -0.406466 10.952868 3.953201 -0.445651 -2.982917 14.444700 -5.010254 7.678936 -10.229846 -7.407280 11.408489 -2.026415 -1.372612 -10.243940 -4.781296 5.382877 -1.067541 -3.489859 0.805306 -1.750288 3.409387 -5.588760 -2.518178 6.309363 -8.294759 2.017520 5.238506 -6.637503 -6.941526 -2.823102 1.607862 2.525260 -8.606841 -6.608073 2.517142 -0.183734 -2.413776 0.563039 -5.922912 -7.973798 8.221846 3.656049 -2.451138 1.171580 -1.578619 -6.989529 5.214304 0.122112 -8.526996 -4.401216 -0.098917 -5.779395 5.575078 -0.166719 8.387855 -14.698385 3.422263 -15.188259 2.939380 -7.054332 6.102774 9.651104 -4.653922 6.785135 3.080845 5.821878 2.571925 -1.186982 7.276341 3.340938 3.262287 3.472961 8.436850 5.779692 -3.968456 -7.232000 -5.816819 -6.415759 2.437534 -3.710488 -13.664340 5.225256 -5.350632 -1.970538 -2.827820 0.978476 -1.961542 10.449758 -9.831905 0.082282 3.566717 -2.794530 3.399153 7.406106 -0.693231 1.023401 -3.144271 6.283399 -2.539945 5.578930 -1.228768 7.777418 -4.345879 -5.503838 -5.835406 1.627192 4.130776 -7.454929 -9.781707 -10.356221 -3.774329 3.626700 -4.929231 8.678184 15.623129 -6.997823 -9.786555 8.224677 2.556084 -0.622990 6.111024 2.439575 12.221975 -5.626830 -0.863975 -3.717345 -1.653487 2.831682 6.254394 -1.423318 -5.227480 7.624143 -4.049858 -6.177799 13.254133 -0.677400 -3.606723 2.390428 1.412125 -3.911421 -7.960271 9.612668 -3.001873 10.340000 -2.153816 13.017500 -4.309035 -4.024320 2.530753 -5.996788 -2.320358 -6.985024 0.541372 -0.812158 7.317989 -5.025394 -6.358268 -3.253837 -4.381064 -3.057366 8.395694 -2.073015 0.887692 2.185119 -0.491481 7.090555 8.490085 -1.511952 -0.886749 -7.329714 5.006969 7.172938 1.523821 -8.629487 -4.184094 -3.197006 -3.219711 -0.958903 0.785246 7.866854 -5.989895 -0.911838 2.053879 0.999257 0.562132 1.495163 -13.827269 4.249575 -0.761676 3.913811 2.340576 10.572548 7.746941 8.669168 2.833212 1.612847 -0.982838 -1.736213 -6.343104 0.703014 2.170177 2.876635 5.116148 8.849160 5.776495 5.643359 8.527640 3.812685 2.508742 9.058418 0.169046 13.039017 -3.909275 -2.283673 1.307396 0.380510 8.516588 12.669164 2.247543 -3.381694 4.826881 -0.529672 -6.877831 -9.110097 0.476534 -1.072152 -0.555220 4.797969 6.265716 -0.839538 -3.733386 14.380556 -0.960168 -16.125523 7.323736 3.316689 5.659901 6.301579 -1.454872 3.950698 5.515163 -1.267357 5.769760 7.269619 5.740427 -9.083010 -0.464573 1.620665 6.047884 3.974585 3.923136 -15.148987 3.583506 3.441746 10.596108 0.929867 9.723276 -6.512760 0.881767 3.744337 -1.145800 0.740841 1.632833 4.773450 -5.027833 0.985245 -10.406617 -0.838851 +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.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.084720 -0.136996 0.364287 -0.632961 -0.706511 0.018957 0.144361 -0.295462 -0.104661 -0.182050 0.304377 -0.243683 -0.352723 0.769639 -0.049070 -0.585740 -0.071636 -0.064370 -0.105927 0.023972 -0.027186 0.438107 -0.159376 0.023451 0.197265 -0.153965 -0.156797 0.525450 0.303483 -0.227831 -0.062963 -0.301330 -0.061673 0.733834 0.112730 0.220645 -0.010139 1.281746 -0.303238 0.802678 -0.685893 -0.536947 0.697284 -0.180476 -0.192859 -0.895021 -0.730678 0.379214 -0.532504 -0.165394 0.391667 0.073828 0.120024 -0.224430 0.262369 0.404580 -0.920230 0.370042 0.348818 -0.364996 -0.092793 -0.155134 -0.444119 -0.080387 -0.363302 -0.390143 -0.008046 0.129418 -0.152569 -0.042906 0.006871 -0.512748 1.269565 0.220218 -0.262832 0.305045 0.356900 -0.498272 0.540993 -0.248538 -0.801503 -0.256622 0.000538 -0.140174 0.698179 -0.057096 0.424545 -1.059058 0.059218 -1.086907 0.393391 -0.732788 0.260541 0.803315 -0.654476 0.519632 0.443973 0.104909 0.352491 0.190127 0.631160 0.303061 0.191028 0.459277 0.521955 0.231846 -0.283587 -0.449700 -0.616851 -0.676920 0.133780 -0.356115 -1.295984 0.235608 0.078164 0.181973 -0.121886 0.147145 0.122796 0.550281 -0.502592 0.493148 0.448247 -0.189150 0.049417 0.656199 -0.186577 -0.090582 -0.428508 0.617919 -0.500740 0.604176 -0.123256 0.498931 -0.058866 -0.682581 -0.587894 0.010312 0.076009 -0.416168 -0.624011 -0.657820 -0.100973 0.368353 -0.339219 0.334559 1.334862 -0.656685 -0.711165 0.870455 0.640504 0.208917 0.326903 0.253551 0.717775 -0.079761 -0.421177 -0.505673 -0.506133 0.089642 0.215802 0.257025 -0.358386 0.511452 -0.052468 -1.149334 1.328213 -0.280219 -0.484605 0.106599 0.088438 -0.508115 -0.551019 0.837464 0.234041 0.765832 -0.105814 0.934168 -0.167157 -0.531953 0.167100 -0.263787 -0.015460 -0.635229 -0.073203 0.204099 0.236275 -0.550583 -0.434837 -0.289992 -0.328835 -0.395719 0.272403 -0.041983 0.106138 0.265357 0.271804 0.282311 0.851708 0.098637 -0.010178 -0.699397 0.397255 0.235158 -0.064045 -0.888188 0.046973 -0.099224 -0.138076 0.083916 0.036633 0.325382 -0.224461 -0.125224 -0.025530 -0.253181 0.104766 0.225936 -0.768762 0.055132 0.064504 0.420034 0.327031 0.453633 0.973002 0.674627 0.433585 0.448443 -0.046195 0.104017 -0.143613 0.040919 0.130152 0.244676 0.379076 0.670326 0.634841 0.257865 0.655848 0.563016 0.310971 0.687112 0.266525 1.190139 0.075035 -0.371270 0.046037 0.244102 0.694512 1.031164 0.005475 0.241674 0.428702 0.301188 -0.238902 -0.704393 0.135372 -0.142247 -0.252454 0.791679 0.202081 -0.095613 -0.101911 0.820686 -0.177827 -1.014058 0.405322 0.207634 0.487677 0.144125 0.199529 0.087890 0.444573 -0.463226 0.547424 0.503433 0.474306 -0.694459 -0.362644 0.068585 0.270411 0.519908 0.690635 -0.874913 0.080620 0.262726 0.657398 -0.095954 0.424363 -0.409562 -0.388711 0.337016 -0.221828 -0.168610 0.116838 0.042432 -0.357430 0.010555 -0.564027 -0.616202 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = 1.455005 -0.535700 1.793798 -3.879746 -2.755938 0.609609 0.927023 -2.931751 -0.804190 2.429625 1.477877 -1.270199 -1.061064 3.728939 -0.630308 -2.302115 0.622834 -2.254156 -0.190952 -0.759192 -0.724642 2.024045 -1.231716 -1.066061 0.879779 -1.113160 0.240182 2.703616 0.368001 -1.187588 -0.504394 -1.949162 -0.720575 4.894653 1.732811 -0.194931 -0.722141 7.106803 -2.534089 3.585626 -4.612602 -3.731413 5.133757 -0.982833 -0.982213 -4.117525 -2.127911 2.325554 -0.916580 -1.099191 1.057618 -0.757701 1.441485 -2.046015 -0.672004 2.558598 -4.662341 1.263669 2.175077 -2.615968 -2.895312 -1.547847 0.337907 0.948669 -3.502517 -2.785117 1.509165 0.171322 -1.270020 0.098172 -2.029611 -3.421480 4.115303 1.595501 -0.982215 0.629964 -0.071922 -3.270692 2.744776 -0.814066 -4.327778 -1.802758 -0.221859 -2.770531 3.118697 -0.211663 3.710890 -6.859204 1.787621 -7.210051 1.441930 -3.255484 2.652765 4.506044 -2.718226 3.032626 1.783684 3.140403 1.517993 -0.760624 3.637595 1.658535 1.288328 2.113135 3.953398 2.639211 -1.886110 -2.850010 -3.116875 -3.138784 0.989620 -1.857588 -6.308767 2.301270 -2.009335 -0.738172 -1.166640 0.494423 -0.909267 4.961766 -4.505100 0.504723 1.385318 -1.122235 1.297192 3.359699 -0.519187 0.428314 -1.481950 3.305750 -1.837807 2.795956 -0.632277 3.438641 -1.650126 -2.585120 -3.068684 0.675880 1.756146 -3.521136 -4.363330 -4.984569 -1.531453 1.603707 -2.126625 4.623859 7.506914 -3.381135 -4.690880 4.299198 1.431366 -0.200729 3.068617 1.025223 5.109712 -2.157040 -1.004526 -1.999361 -1.158476 0.912246 2.294969 -0.016084 -1.751300 3.276015 -1.226517 -2.908611 6.630014 -0.177440 -2.138791 0.611815 0.629165 -2.279174 -3.869876 4.429353 -0.700482 4.447557 -0.422737 6.193014 -1.716528 -2.101421 1.281744 -2.843947 -0.765214 -3.468322 -0.193042 -0.118198 3.126812 -2.335213 -2.753947 -1.926974 -1.778489 -1.755632 3.314850 -0.577097 0.947424 1.262779 0.238225 3.182312 4.555810 -0.339874 -0.315435 -3.575961 2.206789 3.421524 0.498663 -4.194257 -1.531358 -1.363635 -1.252277 0.035974 0.255526 3.464049 -2.821448 -0.629291 0.655208 0.634632 0.504895 1.134880 -6.986909 1.690023 -0.260497 1.826416 1.451398 4.392575 3.826319 4.049661 1.706148 0.882676 -0.588184 -0.421879 -2.344367 -0.077224 1.081251 1.622427 2.321318 4.514106 3.075066 2.595336 3.799069 2.458473 0.993735 4.196889 0.152220 6.386413 -1.676760 -1.015089 0.153412 0.706944 4.054211 5.953216 0.527100 -0.829712 2.279670 0.293815 -2.838225 -4.311057 0.453909 -0.887080 0.416387 1.962297 2.594098 -0.292196 -1.560643 6.398623 -0.473794 -7.363296 3.302297 1.455067 2.764431 2.546234 -0.236351 1.157000 2.392484 -1.627202 3.152941 3.432112 2.614552 -3.898419 -0.162055 0.718870 2.971787 1.627021 2.632260 -6.680596 1.865565 1.591203 4.443687 0.609206 4.254647 -2.911525 -0.278464 1.745536 -0.983544 0.155296 1.321477 1.956538 -2.531941 0.853751 -4.536665 -1.084413 +PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 1.596386 -0.540966 0.512966 -2.713354 -2.241309 1.295526 -1.263124 -2.247479 -0.489996 1.114435 1.226403 -0.521585 0.727899 2.694512 -0.560755 -1.244921 0.120460 -2.207265 0.226166 0.221945 -0.372062 1.379782 -1.122879 -0.325629 -0.095324 -0.341398 -0.339913 0.519961 0.234745 -0.886556 -1.676652 -1.168478 -1.312177 3.080537 1.768377 -1.207843 0.391969 4.689636 -0.844977 1.239645 -2.122209 -1.961749 1.780067 -0.651586 -0.560566 -1.000861 -1.541258 1.227250 0.270913 -0.248231 1.430177 -1.095078 0.683765 -0.152274 -0.212007 0.652104 -2.834067 1.165536 1.402792 0.039156 -0.813226 -1.365262 0.736465 0.663597 -1.896416 -1.535013 1.674576 1.237679 -0.420360 -0.798524 -1.273095 -2.898706 2.651565 1.628115 -0.814231 -0.273358 0.154058 -3.124086 1.823729 -0.728095 -3.646093 -0.361814 -0.891565 -2.671810 2.951656 -0.623906 2.250741 -4.117290 2.612706 -4.944678 0.084477 -1.857107 1.429575 3.240413 -2.474748 0.343865 1.538440 3.965569 1.966838 -0.369616 2.658027 1.118033 -0.740666 1.276188 2.215537 1.341718 -0.642778 -0.181812 -1.181704 -2.209922 0.064349 -1.149804 -4.143466 1.758290 -0.740989 -0.639663 -1.504064 0.705253 -0.903775 2.921274 -3.112435 -1.463257 0.007116 -0.637384 0.986249 2.039318 -0.831940 0.623109 -1.538355 2.340520 -1.421070 1.117979 -0.771014 1.720364 -1.738167 -0.632319 -3.193335 1.014183 1.770347 -2.588635 -3.168160 -2.981971 -0.621999 0.141092 -1.345799 4.661413 4.496834 -2.554728 -2.607895 3.331515 0.774253 -0.412600 3.310290 0.217373 2.763094 -0.871472 -0.726239 -1.120176 -1.229826 -1.273955 -2.127581 0.160406 0.104814 1.409605 -0.631205 -0.313463 4.706593 0.282055 -2.234639 -0.206786 0.545642 -1.479097 -2.460631 2.887247 -0.128885 1.530327 1.469549 3.761124 -0.691227 -1.022626 1.212538 -1.236884 -0.157475 -1.683528 -0.404702 -0.450468 1.946456 -1.145330 -1.549147 0.010778 -0.665081 -1.746010 1.416015 2.366663 1.069775 1.581385 0.606172 1.666436 4.064440 0.315051 0.194114 -1.791131 1.551212 2.630946 -1.067155 -1.423611 -1.103592 -1.338654 -0.323959 0.361883 0.114346 2.164749 -2.654994 -1.157226 -0.226660 1.231665 1.729404 1.790411 -4.350022 1.384376 -0.900360 1.065932 1.281320 2.216417 1.688244 3.238078 2.126449 -0.262497 -0.118376 0.504530 -0.481450 -0.679006 0.966488 1.613927 1.548770 3.114577 1.994569 1.850968 1.787986 1.929797 1.213438 2.626559 -0.094299 4.397858 -0.577611 -0.319373 -0.845856 0.208883 2.812087 4.646531 -0.773028 0.471428 0.951487 0.232256 -1.614711 -2.754063 1.016486 -0.663415 0.591920 -1.027015 1.108154 0.620144 -1.479364 3.576998 -0.319104 -3.932254 1.929820 0.901037 1.827906 2.157462 0.156627 1.039491 0.472639 -1.869120 3.102050 3.006039 1.636899 -1.811061 0.082160 0.449137 1.972353 -0.560335 2.175484 -1.476762 2.976204 1.201336 2.154567 0.963539 1.006889 -2.076764 -0.820186 1.508746 -1.002087 0.160825 1.222367 1.952109 -2.096461 0.956809 -1.785758 -1.710269 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 2.149960 -0.148429 3.857860 -7.502427 -6.787443 -0.093080 1.447552 -4.276415 -1.857462 7.251111 1.564376 -3.183664 -2.162429 9.347035 -2.355195 -3.996472 -1.002415 -5.953752 -0.664684 -1.285160 -1.412065 5.535740 -2.217709 -0.746712 2.180898 -1.419579 -0.446967 3.583541 -0.280673 -2.668408 -0.075288 -4.093775 -0.885571 8.682628 2.444175 -0.842510 -1.664417 13.305842 -6.081062 8.012823 -9.182621 -8.523925 7.709148 -1.676516 0.361122 -7.674995 -3.774607 5.200315 -1.111276 -1.648649 2.662428 0.518664 0.998298 -3.493420 0.538207 2.802612 -9.792236 4.835984 4.057672 -3.956863 -3.788653 -2.454792 -0.817874 1.372070 -5.588836 -5.139749 1.083695 1.181994 -2.970441 -0.116942 -1.831056 -4.995403 5.648188 3.079899 -2.191436 2.055239 0.944719 -5.444775 6.041257 -6.803160 -8.393512 -2.954493 -0.441027 -5.534764 5.873534 1.404476 5.663055 -11.899448 4.709595 -11.846367 2.576726 -6.096674 3.248080 9.099702 -3.888983 5.603113 3.284876 4.937338 5.899415 -0.749539 6.173521 4.364880 3.197902 5.523632 5.286910 5.949478 -4.365412 -4.468604 -5.993885 -6.222596 1.190389 -3.667445 -8.883415 4.093516 -0.039676 -1.308379 -1.178696 0.440216 -2.170460 7.830698 -11.043615 -1.137128 2.920484 -1.923039 1.266908 5.195499 -1.502307 -0.156254 -3.900629 6.222605 -3.752801 5.823249 -0.179708 6.312215 -4.122085 -3.958441 -6.549937 1.404626 2.016703 -5.706162 -7.307559 -10.433731 -2.124338 2.266131 -4.680275 9.602764 13.787693 -6.570107 -8.343416 9.041811 2.529014 -0.510296 4.827081 1.758483 7.071543 -1.615290 -3.977086 -3.562248 -4.053964 1.266036 5.308261 1.876819 -3.709730 5.781699 -1.619657 -5.541034 7.307956 -0.196078 -4.770479 -3.803495 2.076525 -5.286530 -4.551753 7.520518 -4.287374 7.076817 -1.886983 10.201926 -2.513364 -3.900082 2.546829 -9.244924 -0.342017 -6.341816 -0.598664 0.293317 4.264921 -5.859649 -4.367697 -2.836704 -3.546804 -4.939170 4.382207 -4.387062 1.475985 2.610689 2.581056 8.617443 8.691512 -0.335493 0.586097 -6.423618 4.582961 4.269191 1.062220 -9.665884 -1.733974 -1.548611 -2.518500 1.922480 0.045521 4.529584 -4.571616 -0.850689 1.506811 -0.436021 0.761622 2.269010 -9.076762 2.382120 -1.181513 5.769462 3.459043 6.743349 6.552592 7.562004 4.023085 3.054142 -2.080922 -1.149467 -1.495136 1.186945 2.890278 0.069141 4.823451 8.609264 6.581568 3.871050 7.527051 6.148454 -0.732125 7.787909 -1.486901 11.256545 -3.790501 -2.117812 0.034897 2.700467 6.736160 10.660728 -0.685390 -1.253164 5.269120 -0.276140 -3.885947 -3.944001 1.775255 -2.324793 0.958959 3.353753 4.813749 -1.531993 -0.979099 9.683108 -2.165489 -11.676435 5.661936 2.950093 5.932992 2.715693 0.948820 1.925451 3.953023 -4.656286 5.929767 6.912262 4.204793 -7.100581 -2.163511 1.278583 4.948799 5.717300 6.308284 -12.153611 2.310405 3.438138 6.787690 -0.505406 6.893419 -5.283428 -3.691318 4.383702 -1.381028 -0.814835 2.550345 3.014424 -4.090852 2.582985 -5.009278 -3.916638 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.882218 -0.764584 1.707956 -3.175498 -3.008128 -0.130570 2.585395 -1.604500 -0.845093 2.300274 0.497980 -1.222935 -2.627308 4.045922 -0.557070 -1.719317 -0.183401 -2.974927 -0.398579 -0.352118 -0.768165 2.226741 -0.908127 -0.400808 1.073792 -0.447983 -0.065407 2.981712 0.687867 -1.194718 0.141483 -1.762706 -0.340001 3.731023 1.015082 -0.222841 -0.856802 7.948080 -4.528169 4.982968 -4.206547 -3.812549 4.637548 -0.749938 -1.196874 -4.835714 -2.107583 2.443053 -2.150088 -1.214768 1.170990 0.377090 0.529926 -1.733625 0.019049 2.677204 -5.296777 1.722911 1.722818 -1.677767 -1.819989 -1.037566 -0.356100 0.676016 -3.087794 -2.248497 0.411256 -1.464092 -1.424479 -0.005204 -0.955188 -1.935053 3.363688 1.472768 -0.839825 0.917277 0.305421 -2.616830 2.561605 -2.636501 -4.557718 -1.380530 -0.434942 -2.543065 2.590141 0.483135 2.331505 -5.496683 0.810765 -5.998101 1.091868 -3.776227 1.341306 4.546660 -1.736938 3.830914 1.152735 1.508447 1.981765 -0.915870 2.480773 1.845383 2.192492 2.404951 2.343903 3.008773 -2.319596 -2.323626 -3.951624 -2.390392 0.762319 -1.698943 -5.580617 1.753851 -0.037368 0.051670 -0.035637 0.809085 -1.232954 3.641826 -3.695874 2.225903 1.182661 -0.829406 0.673260 3.425580 -0.558597 -0.164239 -1.343813 2.672013 -1.323416 3.921868 -0.045538 2.776568 -1.552835 -1.534123 -2.049698 0.550482 0.954307 -2.210445 -3.075893 -5.075679 -0.970311 1.180209 -2.013995 3.513839 7.480078 -3.100810 -3.820339 3.723407 1.198507 1.096599 1.424269 0.731848 3.873574 -0.732711 -1.719060 -1.410961 -1.565109 0.753859 5.041108 0.764143 -1.756298 2.651396 -0.907583 -3.353096 4.365953 0.114449 -1.838655 -0.885333 0.652111 -2.313553 -3.311678 4.336364 -1.764084 4.162102 -0.746235 4.284255 -0.918655 -1.341094 1.107369 -3.284099 -0.116750 -4.491119 -0.517504 0.280047 1.643102 -2.555040 -1.857750 -2.716337 -1.344597 -2.051004 1.993280 -1.826268 0.479138 0.901036 1.168232 3.520227 3.888976 -0.374680 -0.056291 -3.920264 1.978921 1.400618 -0.097433 -5.354957 -0.820848 -0.425364 -1.238918 1.242904 -0.002343 1.883921 -2.588136 -0.256294 0.491815 -0.079752 -0.191812 0.914374 -6.336065 0.860250 0.187722 2.737399 2.314975 2.972970 3.752592 3.510221 1.456246 2.576102 -1.043720 -0.157715 -1.588794 0.323311 0.975501 0.117541 2.063758 3.784078 2.766868 1.549134 3.249996 2.639952 -0.568795 3.214146 0.660761 6.089951 -1.244968 -2.363476 0.486473 1.122662 2.650026 4.362872 0.813917 -0.058034 2.447526 -0.218374 -1.817846 -2.419947 0.658905 -1.171922 0.786398 3.994772 2.129415 -0.772411 -0.241697 4.151783 -1.139428 -6.860683 2.091019 1.370949 2.671469 1.390624 0.368221 1.181353 2.827525 -1.902928 3.747300 3.292280 1.650039 -2.932513 -0.896117 0.611183 1.803594 2.943398 2.446067 -7.768221 0.244910 0.937467 2.977260 0.001240 5.019219 -2.620954 -1.102843 1.829760 -1.206453 -0.111832 0.832147 1.388152 -1.421783 0.972281 -3.853018 -1.695264 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = 0.161459 0.170744 0.467715 -0.750559 -0.931859 -0.040060 0.189044 -0.355340 -0.166020 0.209592 0.303646 -0.269016 -0.296336 0.886379 -0.287096 -0.524320 -0.216464 -0.619904 -0.210068 -0.200446 -0.072537 0.584837 -0.176775 0.036348 0.252525 -0.152861 -0.217416 0.446623 0.172404 -0.511517 -0.020471 -0.318422 0.012102 0.831766 0.077756 -0.109503 -0.022955 1.461585 -0.368021 0.389054 -0.884540 -0.785162 0.800064 -0.232146 -0.104509 -1.112929 -0.652413 0.511820 -0.171634 -0.028449 0.336196 0.144592 -0.041524 -0.314910 0.176418 0.381673 -1.199268 0.667623 0.414839 -0.389290 -0.271479 -0.176664 -0.252190 -0.097014 -0.191078 -0.502641 0.105464 0.211551 -0.247062 0.031499 0.035247 -0.547153 1.131828 0.197415 -0.145539 0.366292 0.271792 -0.607745 0.698426 -0.639334 -0.858867 -0.256791 0.143299 -0.207010 0.690463 -0.054873 0.356547 -1.224894 0.193916 -1.194212 0.306906 -0.769149 0.269581 0.849362 -0.605593 0.594502 0.428864 0.098425 0.602244 0.157749 0.803300 0.317158 0.479658 0.623325 0.401096 0.396876 -0.286830 -0.322731 -0.687214 -0.832417 0.115656 -0.181659 -1.287131 0.397348 0.125954 -0.159345 -0.083188 -0.007931 0.146047 0.830771 -0.770806 0.116186 0.532919 -0.193978 -0.015098 0.700248 -0.217088 -0.087034 -0.556317 0.686946 -0.487921 0.723826 -0.013942 0.543505 -0.132587 -1.005534 -0.826521 0.017469 0.055389 -0.559838 -0.681793 -0.781752 -0.036719 0.123907 -0.487143 0.551596 1.560072 -0.745692 -0.951936 1.054357 0.824308 0.060430 0.490942 0.207860 0.912246 -0.093726 -0.525417 -0.411268 -0.539615 0.160377 0.045698 0.274102 -0.296494 0.489713 0.074798 -1.052273 1.163241 -0.254042 -0.537312 0.303253 0.216448 -0.566630 -0.619550 0.785136 0.607985 0.941950 0.050842 1.090276 -0.244818 -0.636036 0.219752 -0.355994 0.060648 -0.573898 -0.040707 0.178306 0.322760 -0.480732 -0.435165 -0.277291 -0.457244 -0.548494 0.315212 -0.106561 0.320141 0.296810 0.311534 0.208818 1.041088 0.018537 0.144062 -0.859957 0.440842 0.384125 0.136548 -1.163966 -0.046382 -0.143535 -0.152527 0.257173 -0.032652 0.435189 -0.105273 -0.125069 0.106912 -0.252618 0.090190 0.194600 -0.610416 0.098353 -0.294326 0.600179 0.150156 0.593672 1.058741 0.774755 0.486886 0.431427 -0.044067 -0.024769 0.105842 -0.031981 0.149062 0.203256 0.517075 0.833043 0.749434 0.374811 0.831970 0.619760 0.057388 0.863826 0.034654 1.459726 -0.439944 -0.304256 -0.139691 0.344058 0.807451 1.257797 0.084081 -0.017337 0.470824 0.303305 -0.262117 -0.737522 0.137422 -0.181359 -0.084007 0.626013 0.435686 -0.220966 -0.033340 0.948604 -0.196027 -1.139958 0.627278 0.225011 0.555893 0.034123 0.214027 0.016784 0.583634 -0.547443 0.438855 0.674474 0.572909 -0.832746 -0.498046 0.115545 0.620869 0.137644 0.836665 -1.243578 0.257487 0.445605 0.615912 -0.191869 0.539931 -0.562065 -0.634532 0.513258 -0.054753 -0.236542 0.458613 0.187810 -0.674537 0.181636 -0.440141 -0.545054 +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.900154 0.410376 0.944478 -1.679234 -2.182548 0.556717 -0.521046 -1.269132 -0.418409 0.822857 0.732138 -0.107232 -0.153255 1.486493 -0.855385 -0.979199 -0.553051 -1.934124 -0.088209 -0.778289 -0.300993 1.102046 -0.646022 0.178187 0.159845 -0.521339 -0.412408 0.492929 0.217492 -1.090599 -0.369677 -0.805907 -0.544114 1.860524 0.784937 -0.867818 0.190997 3.209905 -0.279090 -0.349809 -1.734792 -1.870704 1.252828 -0.530142 -0.139906 -1.494119 -0.888282 0.956163 -0.048165 0.555708 0.936321 -0.257139 0.206640 -0.117600 0.067583 0.231831 -2.414690 1.530180 0.811149 -0.660788 -0.635819 -0.577552 0.018850 0.128892 -0.070294 -0.983483 0.908771 1.092194 -0.311797 -0.224052 -0.085450 -1.397888 1.889135 0.634639 -0.162902 0.253146 0.481871 -1.453149 1.408180 -1.221531 -2.337947 -0.419874 -0.017594 -1.172418 1.638006 -0.242641 0.934314 -2.606265 1.159521 -2.963022 0.202822 -1.087757 0.694070 1.677168 -1.384321 0.721505 1.267321 1.056131 1.542581 -0.267405 1.852784 0.450101 0.447043 1.570708 0.812178 0.753666 -0.300780 0.084433 -1.243256 -1.735389 0.006638 -0.342683 -2.429005 1.112864 0.087817 -0.727851 -0.726409 0.032444 -0.048592 2.025792 -1.911509 -0.710885 0.576688 -0.389087 0.218903 1.158933 -0.513743 0.251529 -0.976834 1.536914 -1.413894 1.200468 -0.194339 1.149485 -0.161137 -1.653068 -2.628363 0.492563 0.721553 -1.503366 -1.641149 -1.380687 -0.188175 -0.194713 -1.003756 2.237782 3.314213 -1.898425 -2.108604 2.342862 1.119640 -0.272352 1.875196 0.379797 1.698278 -0.083891 -1.186907 -0.952482 -1.259690 -0.229245 -1.280344 0.526978 0.164266 1.097654 0.433137 -0.303262 2.164502 -0.405665 -1.644148 0.551748 0.638743 -1.070333 -1.307425 1.248707 1.641407 1.409051 1.181609 2.411600 -0.537468 -1.278334 0.408260 -0.676863 0.150237 -0.627621 -0.021221 0.038878 0.789461 -0.671841 -0.928791 -0.390651 -0.837676 -1.305661 0.563791 1.181835 1.122017 1.133023 0.618234 0.424814 2.912252 0.415043 0.230754 -1.482805 1.011493 1.269268 0.098133 -1.761168 -0.628169 -0.470609 -0.185752 0.811432 0.011345 1.419119 -0.529020 -0.284999 -0.095228 0.151380 0.793724 1.108421 -1.604487 0.584654 -0.907616 1.068582 0.290448 1.197940 1.712308 2.111343 1.497375 0.520564 -0.029577 0.130210 0.951034 -0.566111 0.753080 0.860626 1.121746 1.963198 1.656930 1.190040 1.572595 1.492929 0.361221 1.844626 -0.592846 3.344143 -1.622124 -0.172644 -0.935098 0.873509 1.786744 2.934865 -0.026994 0.123016 0.740835 0.553546 -0.512859 -1.961441 0.785453 -0.416940 0.715264 -0.013360 1.470518 -0.058400 -0.610544 2.060360 -0.274497 -2.323818 1.647493 0.572373 1.166193 0.415164 0.441355 -0.105469 0.699634 -1.435860 1.332463 2.017571 1.193765 -1.700147 -0.480492 0.352553 1.777226 -0.983776 1.908280 -1.901457 1.267613 1.024073 0.975406 -0.000539 0.823087 -1.542696 -1.645665 1.426918 -0.414564 -0.293618 1.720568 0.883939 -1.804331 0.959828 -0.392904 -1.200242 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.925266 -0.675432 2.255662 -5.664061 -5.738940 1.124716 0.168635 -3.756709 -1.479841 4.203060 1.559404 -1.378129 -1.852644 5.823945 -1.208831 -3.367005 -0.644081 -4.577026 0.186878 -0.518252 -1.260035 3.944750 -2.119139 -0.024502 1.052586 -1.029885 -0.810572 2.501945 1.037193 -1.926954 -0.917710 -3.204594 -1.791473 6.408451 2.734245 -1.141854 -0.532288 11.126162 -3.455321 4.738970 -6.063115 -5.956971 5.241297 -1.431115 -0.521430 -4.885754 -2.493487 3.592144 -1.592669 -0.823407 2.900727 -0.490021 1.464486 -1.305660 0.330036 1.701038 -7.207286 3.393811 3.052520 -2.237589 -2.135372 -2.105922 -0.579591 1.381186 -3.906480 -3.518471 1.511839 1.030906 -1.517438 -1.035662 -1.468541 -4.108217 5.336767 2.910458 -1.934031 0.760016 0.893330 -4.585824 4.242496 -3.865186 -7.722205 -1.787112 -1.186843 -4.527718 5.107874 0.211565 4.541605 -8.908320 3.887500 -9.926599 1.348566 -4.202804 2.550084 7.120116 -3.613581 3.503375 3.226051 4.312008 4.422639 -1.491027 4.998115 2.603223 1.176376 4.464177 3.630244 3.902745 -2.734983 -2.159590 -4.540867 -4.627879 0.742817 -2.500668 -7.741667 3.317733 -0.055689 -0.338856 -1.411325 0.936233 -1.826077 5.801779 -7.263780 -0.798793 1.323320 -1.434649 1.588179 4.316344 -1.299359 0.443746 -2.658592 4.959936 -3.578992 4.480999 -0.702602 4.652271 -2.393029 -2.063342 -5.793195 1.588316 2.416708 -4.525378 -5.593603 -7.035305 -1.441285 1.049001 -3.328360 7.602954 10.961400 -5.879659 -5.955417 7.218621 0.895017 -0.099944 4.285084 1.095599 5.037965 -0.699515 -3.294602 -2.974043 -3.483613 -0.488510 2.558551 1.684214 -1.584496 4.138200 -1.037493 -2.078536 6.038912 0.072247 -4.693249 -2.232934 1.295020 -3.765505 -4.132049 5.622061 -1.993476 4.532982 0.621510 7.574174 -1.302257 -2.651184 1.935914 -5.015023 -0.257159 -4.708024 -0.734179 0.451668 2.670893 -3.910213 -3.072329 -2.009818 -2.002047 -4.194099 2.648613 -0.043487 1.561071 2.973318 2.148387 5.773184 7.830164 0.675358 -0.255831 -4.660751 3.647365 3.105129 -0.700586 -5.795209 -1.997458 -1.389999 -1.570733 2.188522 0.062839 3.891415 -3.760485 -0.888517 0.272904 0.654408 1.754026 3.175559 -8.171039 2.084564 -0.391320 3.629142 2.955696 4.528085 4.590532 6.664799 3.995250 2.478888 -1.150628 0.521572 -0.597813 -0.214869 2.316481 1.333040 3.630305 6.303980 5.292549 3.373293 5.133684 4.737279 0.661636 5.735968 -1.161507 9.626300 -2.576822 -1.843278 -0.548789 2.153333 5.185445 8.333450 -0.794430 0.444660 3.381879 -0.003511 -2.856485 -4.134732 2.358935 -1.784858 1.660813 1.601789 3.621461 -0.085673 -1.690467 7.074715 -1.752880 -9.129553 4.293918 2.242212 4.588158 2.810085 1.210071 1.457892 2.370891 -4.130833 5.910380 6.257991 3.193683 -4.903870 -0.728895 1.043461 3.658771 2.150162 5.175862 -7.547422 2.011532 2.292729 4.637032 0.525216 4.660866 -4.314674 -3.032872 3.875764 -1.949391 -0.275480 2.235968 2.606106 -3.058395 2.257234 -3.630543 -3.424037 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.591124 -0.430594 1.024434 -2.508695 -2.493166 0.238824 0.678011 -1.323846 -0.632902 1.375970 0.670669 -0.722288 -1.387287 2.645706 -0.263573 -1.642753 -0.154253 -2.019547 -0.097921 -0.033278 -0.571959 1.771858 -0.823800 0.021221 0.714804 -0.323310 -0.501655 1.530139 0.860931 -1.048993 -0.298194 -1.301099 -0.646130 2.831667 0.906097 -0.361839 -0.161357 5.389046 -1.849593 2.577557 -2.581220 -2.572710 2.703617 -0.666943 -0.606293 -2.638324 -1.365513 1.698383 -1.347391 -0.566999 1.360479 0.057722 0.509562 -0.794417 0.289348 1.266238 -3.595738 1.510461 1.390970 -0.829339 -0.867397 -0.897895 -0.573461 0.310376 -1.773951 -1.598400 0.478754 -0.139173 -0.822034 -0.402119 -0.593224 -1.655525 2.865453 1.284534 -0.815832 0.634153 0.506970 -2.064222 1.919966 -1.637140 -3.431165 -0.832857 -0.439667 -1.780280 2.474579 -0.094175 1.778653 -4.021934 1.192755 -4.402857 0.682748 -2.292338 1.070036 3.406109 -1.717909 1.989129 1.236494 1.313737 1.569326 -0.602801 2.269834 1.186995 0.733889 1.961729 1.599362 1.685158 -1.385299 -1.214249 -2.309856 -2.013670 0.390376 -1.111285 -3.858977 1.387569 0.003367 0.044855 -0.229673 0.524789 -0.750286 2.441776 -2.741313 0.416148 0.757995 -0.671533 0.635817 2.363255 -0.578946 -0.073002 -1.272260 2.280505 -1.396211 2.361360 -0.365959 2.036711 -0.746592 -1.165790 -2.168763 0.389893 0.858057 -1.818580 -2.468540 -3.160488 -0.551070 0.390972 -1.478583 3.000637 5.169159 -2.529915 -2.608154 3.313602 0.590935 0.549609 1.514741 0.484133 2.414633 -0.300209 -1.507835 -1.306404 -1.526612 -0.080651 1.605371 0.801503 -0.928420 1.745769 -0.471643 -1.472830 3.002117 0.027443 -1.901036 -0.682723 0.429380 -1.785134 -2.217829 2.928745 -0.545735 2.420790 0.205603 3.390210 -0.434849 -1.289395 0.973405 -1.762303 0.017151 -2.597269 -0.537098 0.414929 0.898197 -1.770811 -1.411605 -1.176602 -0.683738 -1.870991 1.138180 -0.168222 0.584148 1.091876 1.091247 2.291633 3.379539 0.084965 -0.062041 -2.529023 1.595841 1.123834 -0.414988 -2.916261 -0.539692 -0.390333 -0.759432 1.165129 -0.016941 1.499985 -1.608215 -0.478066 0.269541 0.149455 0.520300 1.220835 -4.044619 0.740394 0.071171 1.571881 1.566275 1.982821 2.493587 2.745073 1.567289 1.444899 -0.524178 0.454438 -0.685533 -0.143844 0.625442 0.760433 1.616156 2.659924 2.400388 1.305913 2.289241 2.107855 0.118679 2.522638 0.055423 4.480927 -0.631434 -1.265998 0.058755 0.858898 2.281223 3.579149 -0.280961 0.277525 1.689863 0.272883 -1.209688 -2.075660 0.820387 -0.875667 0.512426 1.503496 1.149641 -0.286783 -0.445411 3.135778 -0.938993 -4.368775 1.720585 0.993247 2.076857 1.016898 0.668619 0.660377 1.463786 -1.995514 2.710899 2.581068 1.431496 -2.100056 -0.402609 0.440536 1.421437 1.149191 2.298596 -3.795120 0.402365 0.830945 2.151711 0.307264 2.300214 -1.713308 -1.307403 1.582428 -0.895309 -0.184092 0.713441 0.984688 -1.334338 0.798183 -1.964150 -1.583075 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 1.044718 -0.082841 1.610565 -3.205150 -3.507827 0.620636 0.055865 -2.124188 -0.803445 1.638609 1.169618 -0.691518 -0.822145 3.301769 -0.950156 -1.840338 -0.554922 -2.794655 -0.164224 -0.846224 -0.570430 2.127722 -1.115646 0.005745 0.603582 -0.824543 -0.533412 1.681993 0.526133 -1.452005 -0.341037 -1.627075 -0.882397 3.608526 1.362889 -0.869189 -0.079916 6.377462 -1.974720 1.732392 -3.388111 -3.432153 3.117092 -0.886284 -0.613059 -3.092363 -1.991876 1.920245 -0.921051 0.042635 1.568148 -0.249252 0.718915 -0.770044 0.138956 1.144358 -4.377627 2.077220 1.664772 -1.500539 -1.362698 -1.070752 -0.304611 0.386967 -1.604688 -1.968894 1.130841 0.836551 -0.670477 -0.473535 -0.493548 -2.432859 3.437426 1.322589 -0.556004 0.639453 0.679953 -2.750706 2.547982 -1.822700 -4.348661 -1.060540 -0.338893 -2.532503 2.973181 -0.222541 2.298429 -5.071759 1.741931 -5.645368 0.698782 -2.497181 1.353318 3.695323 -2.452348 2.047513 1.962253 2.123274 2.305989 -0.598540 3.049188 1.179303 0.884141 2.708629 2.092762 1.937405 -1.261087 -0.930807 -2.737533 -2.878124 0.417732 -1.384165 -4.781155 1.928428 -0.023976 -0.908164 -0.992466 0.330801 -0.553326 3.804113 -3.400209 0.073856 1.113176 -0.804466 0.401014 2.499566 -0.762741 0.116730 -1.668693 2.765061 -2.241540 2.657036 -0.378732 2.475823 -0.799290 -2.133959 -3.593385 0.764123 1.157203 -2.623638 -3.111035 -3.447134 -0.641229 0.357468 -1.862809 3.985084 6.358750 -3.407000 -3.802222 4.147070 1.678140 -0.008258 2.615525 0.780098 3.196911 -0.357879 -2.051761 -1.897089 -2.186127 -0.003150 0.264104 0.882690 -0.554894 2.345334 -0.047173 -1.700475 4.593985 -0.439022 -2.645410 0.042781 1.015830 -2.145917 -2.654839 3.094087 0.869575 2.944503 0.913308 4.424761 -0.864392 -1.951751 0.935612 -2.044325 -0.027835 -2.383003 -0.262773 0.164934 1.469485 -1.674253 -1.862416 -1.347127 -1.325652 -2.263278 1.454213 0.689891 1.381777 1.707130 1.106293 1.826365 4.762680 0.391658 0.117171 -2.894449 1.962473 2.127444 0.000966 -3.695792 -0.980687 -0.701314 -0.700753 1.104768 0.088052 2.454427 -1.796544 -0.417019 0.035980 0.241973 0.882055 1.689555 -4.512510 1.134217 -0.784777 2.106566 1.348867 2.504298 3.232874 3.736596 2.248344 1.453490 -0.484339 0.233868 0.134952 -0.432362 1.186201 1.177298 2.068726 3.791037 3.013319 2.048944 2.999840 2.742442 0.592026 3.337457 -0.442590 5.871503 -1.724980 -0.995989 -0.736264 1.442460 3.145755 5.031581 0.232702 0.172827 1.797518 0.575885 -1.430722 -3.224711 1.209919 -0.859797 0.984520 1.201674 2.217658 -0.242339 -0.909759 4.024446 -0.739081 -5.076408 2.630676 1.224880 2.433351 1.087035 0.676356 0.462476 1.613710 -2.350127 3.052561 3.525360 1.983033 -3.085325 -0.726151 0.645326 2.536886 0.446214 3.184197 -4.603142 1.650058 1.375216 2.367072 -0.009945 2.598261 -2.620116 -2.090303 2.245654 -0.966919 -0.313380 2.021122 1.372828 -2.562231 1.427783 -1.952443 -2.085732 +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.092244 -0.183776 0.138003 -0.667687 -0.715512 0.099628 -0.204628 -0.345898 -0.140475 -0.183851 0.239326 -0.267891 -0.357939 0.828616 -0.093109 -0.717916 -0.096087 -0.150063 -0.023772 0.171639 -0.128000 0.447490 -0.221480 0.027764 0.181774 -0.046807 -0.257233 0.257116 0.543017 -0.393995 -0.312823 -0.309239 -0.164176 0.781637 0.199576 0.113737 0.090755 1.377405 0.091313 0.673158 -0.704781 -0.519032 0.558298 -0.200491 -0.130689 -0.663490 -0.538057 0.426404 -0.659833 -0.015949 0.456327 -0.005746 -0.051327 -0.155953 0.279238 0.341871 -1.010504 0.728311 0.407254 -0.025275 0.034915 -0.263896 -0.363836 -0.114425 -0.167479 -0.426725 0.028746 0.283421 -0.362080 -0.127651 -0.142584 -0.516676 1.290905 0.358913 -0.389657 0.237676 0.243385 -0.426245 0.466587 -0.632930 -0.925206 -0.170701 0.052181 -0.011425 0.811302 0.067783 0.362481 -1.123606 0.283027 -1.231023 0.300528 -0.718846 0.360710 0.952121 -0.767670 0.373719 0.433882 0.104155 0.567799 0.264755 0.723731 0.229226 -0.064297 0.380610 0.369761 0.184251 -0.136818 -0.227629 -0.338090 -0.672306 -0.096955 -0.131909 -1.296047 0.314687 -0.055355 0.549172 -0.168776 0.343020 0.001053 0.165085 -0.726558 -0.120884 0.203546 -0.201589 0.389518 0.690351 -0.232273 -0.004135 -0.529232 0.675894 -0.424895 0.456214 -0.217801 0.506211 -0.033342 -0.696693 -0.942982 0.022302 0.249504 -0.504516 -0.748200 -0.691166 -0.103473 0.122695 -0.404190 0.711940 1.366019 -0.707016 -0.622815 1.008383 0.238076 0.399891 0.690389 0.150604 0.750097 -0.112599 -0.300150 -0.249202 -0.437153 -0.165071 -0.441850 0.234351 -0.337934 0.333351 -0.025966 -0.660311 0.845310 -0.057318 -0.565800 -0.217623 0.017808 -0.490711 -0.599599 0.846215 0.071618 0.643819 0.106180 1.009333 -0.182104 -0.560170 0.327418 -0.243661 0.012107 -0.424124 -0.166237 0.095468 0.245096 -0.703165 -0.406266 -0.043703 -0.189648 -0.542082 0.259904 0.536148 0.056665 0.324040 0.317395 0.520333 0.977580 0.063287 0.129159 -0.742700 0.417780 0.299765 -0.285682 -0.741465 0.046145 -0.160705 -0.142473 0.378131 -0.011246 0.246779 -0.265759 -0.283745 -0.086206 -0.040335 0.496752 0.351064 -0.462925 0.083212 -0.024944 0.304498 0.443441 0.509580 0.758958 0.760469 0.516444 0.292674 -0.025920 0.146298 0.219874 -0.085307 0.122341 0.368741 0.428706 0.547945 0.674492 0.251705 0.588314 0.538601 0.120219 0.744055 0.236923 1.295131 -0.091460 -0.335183 -0.028514 0.051523 0.753033 1.181020 -0.594194 0.313193 0.446908 0.255199 -0.113710 -0.696884 0.198867 -0.189186 -0.362239 0.439917 0.061038 0.049071 -0.192812 0.867073 -0.264015 -0.987087 0.567992 0.210308 0.504902 0.131172 0.263689 -0.006411 0.358547 -0.730604 0.524288 0.620691 0.532060 -0.547137 -0.252317 0.037265 0.382853 0.209794 0.680053 -0.320798 0.201684 0.476750 0.676509 0.197432 0.016169 -0.362271 -0.610030 0.322092 -0.259507 -0.126043 0.048732 0.150299 -0.277598 0.000523 -0.241078 -0.756852 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 1.596386 -0.540966 0.512966 -2.713354 -2.241309 1.295526 -1.263124 -2.247479 -0.489996 1.114435 1.226403 -0.521585 0.727899 2.694512 -0.560755 -1.244921 0.120460 -2.207265 0.226166 0.221945 -0.372062 1.379782 -1.122879 -0.325629 -0.095324 -0.341398 -0.339913 0.519961 0.234745 -0.886556 -1.676652 -1.168478 -1.312177 3.080537 1.768377 -1.207843 0.391969 4.689636 -0.844977 1.239645 -2.122209 -1.961749 1.780067 -0.651586 -0.560566 -1.000861 -1.541258 1.227250 0.270913 -0.248231 1.430177 -1.095078 0.683765 -0.152274 -0.212007 0.652104 -2.834067 1.165536 1.402792 0.039156 -0.813226 -1.365262 0.736465 0.663597 -1.896416 -1.535013 1.674576 1.237679 -0.420360 -0.798524 -1.273095 -2.898706 2.651565 1.628115 -0.814231 -0.273358 0.154058 -3.124086 1.823729 -0.728095 -3.646093 -0.361814 -0.891565 -2.671810 2.951656 -0.623906 2.250741 -4.117290 2.612706 -4.944678 0.084477 -1.857107 1.429575 3.240413 -2.474748 0.343865 1.538440 3.965569 1.966838 -0.369616 2.658027 1.118033 -0.740666 1.276188 2.215537 1.341718 -0.642778 -0.181812 -1.181704 -2.209922 0.064349 -1.149804 -4.143466 1.758290 -0.740989 -0.639663 -1.504064 0.705253 -0.903775 2.921274 -3.112435 -1.463257 0.007116 -0.637384 0.986249 2.039318 -0.831940 0.623109 -1.538355 2.340520 -1.421070 1.117979 -0.771014 1.720364 -1.738167 -0.632319 -3.193335 1.014183 1.770347 -2.588635 -3.168160 -2.981971 -0.621999 0.141092 -1.345799 4.661413 4.496834 -2.554728 -2.607895 3.331515 0.774253 -0.412600 3.310290 0.217373 2.763094 -0.871472 -0.726239 -1.120176 -1.229826 -1.273955 -2.127581 0.160406 0.104814 1.409605 -0.631205 -0.313463 4.706593 0.282055 -2.234639 -0.206786 0.545642 -1.479097 -2.460631 2.887247 -0.128885 1.530327 1.469549 3.761124 -0.691227 -1.022626 1.212538 -1.236884 -0.157475 -1.683528 -0.404702 -0.450468 1.946456 -1.145330 -1.549147 0.010778 -0.665081 -1.746010 1.416015 2.366663 1.069775 1.581385 0.606172 1.666436 4.064440 0.315051 0.194114 -1.791131 1.551212 2.630946 -1.067155 -1.423611 -1.103592 -1.338654 -0.323959 0.361883 0.114346 2.164749 -2.654994 -1.157226 -0.226660 1.231665 1.729404 1.790411 -4.350022 1.384376 -0.900360 1.065932 1.281320 2.216417 1.688244 3.238078 2.126449 -0.262497 -0.118376 0.504530 -0.481450 -0.679006 0.966488 1.613927 1.548770 3.114577 1.994569 1.850968 1.787986 1.929797 1.213438 2.626559 -0.094299 4.397858 -0.577611 -0.319373 -0.845856 0.208883 2.812087 4.646531 -0.773028 0.471428 0.951487 0.232256 -1.614711 -2.754063 1.016486 -0.663415 0.591920 -1.027015 1.108154 0.620144 -1.479364 3.576998 -0.319104 -3.932254 1.929820 0.901037 1.827906 2.157462 0.156627 1.039491 0.472639 -1.869120 3.102050 3.006039 1.636899 -1.811061 0.082160 0.449137 1.972353 -0.560335 2.175484 -1.476762 2.976204 1.201336 2.154567 0.963539 1.006889 -2.076764 -0.820186 1.508746 -1.002087 0.160825 1.222367 1.952109 -2.096461 0.956809 -1.785758 -1.710269 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = -0.084720 -0.136996 0.364287 -0.632961 -0.706511 0.018957 0.144361 -0.295462 -0.104661 -0.182050 0.304377 -0.243683 -0.352723 0.769639 -0.049070 -0.585740 -0.071636 -0.064370 -0.105927 0.023972 -0.027186 0.438107 -0.159376 0.023451 0.197265 -0.153965 -0.156797 0.525450 0.303483 -0.227831 -0.062963 -0.301330 -0.061673 0.733834 0.112730 0.220645 -0.010139 1.281746 -0.303238 0.802678 -0.685893 -0.536947 0.697284 -0.180476 -0.192859 -0.895021 -0.730678 0.379214 -0.532504 -0.165394 0.391667 0.073828 0.120024 -0.224430 0.262369 0.404580 -0.920230 0.370042 0.348818 -0.364996 -0.092793 -0.155134 -0.444119 -0.080387 -0.363302 -0.390143 -0.008046 0.129418 -0.152569 -0.042906 0.006871 -0.512748 1.269565 0.220218 -0.262832 0.305045 0.356900 -0.498272 0.540993 -0.248538 -0.801503 -0.256622 0.000538 -0.140174 0.698179 -0.057096 0.424545 -1.059058 0.059218 -1.086907 0.393391 -0.732788 0.260541 0.803315 -0.654476 0.519632 0.443973 0.104909 0.352491 0.190127 0.631160 0.303061 0.191028 0.459277 0.521955 0.231846 -0.283587 -0.449700 -0.616851 -0.676920 0.133780 -0.356115 -1.295984 0.235608 0.078164 0.181973 -0.121886 0.147145 0.122796 0.550281 -0.502592 0.493148 0.448247 -0.189150 0.049417 0.656199 -0.186577 -0.090582 -0.428508 0.617919 -0.500740 0.604176 -0.123256 0.498931 -0.058866 -0.682581 -0.587894 0.010312 0.076009 -0.416168 -0.624011 -0.657820 -0.100973 0.368353 -0.339219 0.334559 1.334862 -0.656685 -0.711165 0.870455 0.640504 0.208917 0.326903 0.253551 0.717775 -0.079761 -0.421177 -0.505673 -0.506133 0.089642 0.215802 0.257025 -0.358386 0.511452 -0.052468 -1.149334 1.328213 -0.280219 -0.484605 0.106599 0.088438 -0.508115 -0.551019 0.837464 0.234041 0.765832 -0.105814 0.934168 -0.167157 -0.531953 0.167100 -0.263787 -0.015460 -0.635229 -0.073203 0.204099 0.236275 -0.550583 -0.434837 -0.289992 -0.328835 -0.395719 0.272403 -0.041983 0.106138 0.265357 0.271804 0.282311 0.851708 0.098637 -0.010178 -0.699397 0.397255 0.235158 -0.064045 -0.888188 0.046973 -0.099224 -0.138076 0.083916 0.036633 0.325382 -0.224461 -0.125224 -0.025530 -0.253181 0.104766 0.225936 -0.768762 0.055132 0.064504 0.420034 0.327031 0.453633 0.973002 0.674627 0.433585 0.448443 -0.046195 0.104017 -0.143613 0.040919 0.130152 0.244676 0.379076 0.670326 0.634841 0.257865 0.655848 0.563016 0.310971 0.687112 0.266525 1.190139 0.075035 -0.371270 0.046037 0.244102 0.694512 1.031164 0.005475 0.241674 0.428702 0.301188 -0.238902 -0.704393 0.135372 -0.142247 -0.252454 0.791679 0.202081 -0.095613 -0.101911 0.820686 -0.177827 -1.014058 0.405322 0.207634 0.487677 0.144125 0.199529 0.087890 0.444573 -0.463226 0.547424 0.503433 0.474306 -0.694459 -0.362644 0.068585 0.270411 0.519908 0.690635 -0.874913 0.080620 0.262726 0.657398 -0.095954 0.424363 -0.409562 -0.388711 0.337016 -0.221828 -0.168610 0.116838 0.042432 -0.357430 0.010555 -0.564027 -0.616202 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = -0.125002 0.065323 0.317828 -0.474450 -0.563755 -0.130714 0.335773 -0.105951 -0.100388 -0.248039 0.261314 -0.251950 -0.479060 0.530526 -0.021881 -0.493459 -0.091787 -0.186648 -0.234697 -0.040896 -0.036022 0.320686 -0.060459 0.000756 0.241904 -0.057454 -0.181853 0.506638 0.342935 -0.372391 0.033537 -0.154258 0.117902 0.537984 -0.060961 0.124830 -0.002888 0.959811 -0.268032 0.437770 -0.521828 -0.375423 0.664549 -0.158359 -0.231310 -0.916304 -0.563504 0.382439 -0.502438 -0.125123 0.270719 0.197502 -0.012669 -0.309058 0.190835 0.507262 -0.859465 0.454551 0.300756 -0.280737 -0.092182 -0.048854 -0.394543 -0.182813 -0.039823 -0.343617 -0.078076 -0.080922 -0.192419 0.016126 0.045982 -0.314984 1.099305 0.073974 -0.102236 0.370218 0.231898 -0.300479 0.450692 -0.281436 -0.479228 -0.211975 0.163386 0.118191 0.515697 -0.087133 0.080297 -0.787738 -0.250444 -0.722296 0.325550 -0.634392 0.158925 0.547790 -0.467167 0.509301 0.227145 -0.396060 0.182542 0.197700 0.503751 0.099337 0.408641 0.356290 0.289032 0.135184 -0.236472 -0.385497 -0.527236 -0.557721 0.111917 -0.130526 -0.977462 0.200048 0.059367 0.062076 0.086325 0.002098 0.207276 0.366344 -0.167101 0.492250 0.456269 -0.143605 0.000674 0.637365 -0.127647 -0.156828 -0.358280 0.449931 -0.267240 0.597300 -0.043993 0.366849 0.203192 -0.893031 -0.385105 -0.085394 -0.034535 -0.258110 -0.411924 -0.416931 0.029255 0.106901 -0.311190 -0.018622 1.044234 -0.442991 -0.582348 0.683501 0.700642 0.313024 0.123111 0.175568 0.679746 -0.088136 -0.333249 -0.296273 -0.394479 0.218716 0.219154 0.179736 -0.364509 0.331743 0.051778 -1.067583 0.872480 -0.210259 -0.270700 0.442886 0.063189 -0.402955 -0.533953 0.616606 0.635391 0.737072 -0.024989 0.720641 -0.145710 -0.527477 0.161474 0.098929 0.044652 -0.492597 -0.136407 0.281666 0.062304 -0.360357 -0.306218 -0.321516 -0.206029 -0.327046 0.222494 -0.114607 0.105494 0.102799 0.219667 -0.093303 0.579275 -0.056371 0.092934 -0.686720 0.280640 0.104469 0.103678 -0.861572 0.112863 -0.015763 -0.118599 0.248815 -0.028565 0.216291 0.075214 -0.080593 0.150983 -0.311528 -0.036000 0.039924 -0.399424 -0.044954 -0.007078 0.284502 0.177456 0.398593 0.858927 0.413100 0.227505 0.440008 -0.028563 0.088641 -0.089625 -0.053901 -0.091561 0.236752 0.340945 0.379530 0.490765 0.143319 0.581896 0.373220 0.037625 0.557892 0.297731 0.918589 0.011954 -0.365646 0.087285 0.169523 0.528063 0.716782 0.040163 0.010135 0.378936 0.346752 -0.103022 -0.593356 -0.003008 -0.118028 -0.268699 0.875638 0.116267 -0.197355 0.049258 0.623907 -0.189430 -0.768867 0.346192 0.140967 0.367850 -0.102582 0.169359 -0.009084 0.479272 -0.384306 0.196384 0.302999 0.418924 -0.565933 -0.368235 0.056826 0.269992 0.238475 0.516823 -0.917449 -0.154905 0.212341 0.489573 -0.112462 0.351900 -0.275788 -0.385464 0.241317 -0.010942 -0.144713 0.085517 -0.031721 -0.392142 -0.048563 -0.405094 -0.348743 +PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 1.437279 -0.418312 1.742363 -2.319332 -1.882332 -0.006431 0.721848 -1.385935 -0.912436 2.807759 1.445544 -2.187705 -2.384602 -0.330874 -0.025401 -1.870453 1.289913 -0.203355 0.166956 -1.469103 -1.043928 0.127550 -0.578241 -3.021652 1.185939 -0.904011 0.087860 3.183104 1.150743 1.564215 0.409087 -0.929120 1.043643 4.829947 1.161677 -1.272127 -0.741573 4.830709 -1.307046 1.481617 -2.878974 -3.771042 6.381515 -0.316620 0.740270 -2.052692 -0.342009 2.727586 -3.659178 -1.545498 -0.956380 -0.602375 2.447142 -3.529671 -3.188509 2.950467 -4.876645 0.644530 1.364561 -3.748945 -4.187036 0.475012 0.027480 1.517730 -1.094859 -2.922896 -0.148931 -0.335635 -0.439339 0.294512 -2.184400 -1.758482 2.912644 0.523015 0.514067 0.803480 -0.344934 -1.265573 1.813918 0.544865 -2.806204 -2.156639 -0.367638 -2.554522 2.485726 0.336254 3.416370 -4.526367 1.094475 -5.685112 2.112458 -1.945949 1.903106 3.355621 -2.145942 3.446833 0.952648 0.514666 0.013698 -0.123186 3.187549 1.122816 2.317824 1.314961 2.791721 2.501503 -1.788517 -2.928182 -2.300762 -1.804006 0.085970 -1.775559 -4.285730 2.023972 -2.745284 0.737956 0.739755 -0.235814 -0.679571 3.589545 -2.943569 0.330496 1.084255 -0.833133 1.270313 1.177976 0.215836 -0.935993 0.834248 2.983109 -0.131816 0.337366 1.338275 3.556675 0.053580 -2.682847 -1.318353 1.726404 1.603692 -2.579917 -3.782446 -3.858325 -0.556968 1.287210 -1.650876 2.210455 5.753395 -0.652182 -2.889331 2.237177 -1.576384 -0.476108 3.013939 1.508146 4.482330 -2.439042 -0.383407 -0.918351 -0.492460 1.636751 3.261724 -1.506932 -2.449239 3.463209 -0.692960 0.525068 1.847312 -0.045693 0.589319 1.113850 -0.072690 -1.509857 -2.332662 2.723107 -0.570251 3.715777 -0.152549 5.023708 -0.777091 -3.130664 1.356773 -1.312848 -1.938539 -1.083181 0.393425 0.324148 0.797975 -2.210049 -2.843842 -1.969774 -0.210833 -0.947561 4.674440 0.781774 0.396160 1.182012 -1.364639 1.260288 0.188487 -1.567370 -0.367605 -3.005557 0.989268 1.243298 -0.027441 -3.309677 -2.426974 -0.827949 -0.550039 1.576063 1.086777 4.022473 -0.934726 0.070074 2.174873 0.633024 -0.726916 -0.734850 -3.537171 1.712854 1.704479 0.657344 1.093106 5.397466 3.194522 2.450683 -1.709209 1.899197 -0.835078 -0.504730 -2.151324 -0.748835 -0.051388 1.335078 1.201847 1.753238 1.145350 2.412876 2.892599 1.766563 -0.148537 3.534716 0.153264 2.685683 -2.068008 -1.051631 2.375398 -0.208323 3.050273 2.483221 0.056593 -2.668555 1.325573 -1.024169 -2.183042 -2.163997 0.290492 -0.152811 0.422584 1.766086 3.042109 0.309421 -1.285650 4.119811 0.821984 -6.608012 4.101602 1.273138 1.658446 2.372365 -1.539950 1.744759 1.450050 0.848926 1.837726 2.459066 1.172706 -4.678566 0.779173 1.278865 3.116425 0.243776 0.999306 -5.111416 -1.024260 -0.293814 2.421472 0.944885 3.944339 -3.200461 -0.583302 0.039891 -1.435408 -0.285852 -0.344932 0.438893 -1.691823 1.134807 -3.368606 0.785428 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = 1.491469 -1.212379 1.639039 -3.639273 -1.515094 -0.461370 3.369611 -2.696637 -1.645298 5.265850 0.740712 -2.583178 -2.891528 3.338264 0.590868 -2.281935 1.250700 -1.457764 -0.582701 0.340240 -1.937839 1.572160 -1.254936 -3.017999 1.881252 -0.374234 1.027469 3.704744 0.035045 0.756096 0.053475 -2.490688 0.611317 6.352333 1.948151 0.023215 -1.988615 7.903703 -4.906367 7.222662 -4.519678 -5.031991 7.816180 -1.255265 -0.194592 -3.517431 -0.228050 4.275469 -1.623614 -4.314156 0.176874 0.044222 2.096088 -4.679574 -2.127106 4.105576 -5.133650 1.027488 3.083699 -3.201315 -4.483598 -1.858188 -0.098410 1.734050 -5.721739 -4.012997 -0.025496 -2.098163 -2.204114 -0.042906 -4.315819 -3.334850 3.970491 1.900890 -1.502966 1.144330 -1.288246 -2.383517 2.919429 -0.196878 -4.211710 -2.765992 -0.775721 -3.127391 3.477820 1.398008 4.198214 -8.184085 1.575246 -8.023046 2.529223 -4.190011 3.286999 6.332395 -1.865888 4.897362 0.938347 3.467469 0.139921 -1.239074 3.514453 2.053353 2.226596 1.914673 4.373165 4.241428 -4.339538 -5.986471 -3.845933 -2.297413 1.826943 -2.291203 -5.358025 2.836580 -3.045022 0.530920 0.370369 0.614366 -2.704300 4.617495 -7.246046 0.982696 1.604858 -1.529750 3.157336 3.466336 -0.331259 0.150624 -0.833194 3.582572 -0.166949 2.599161 -0.221481 5.046267 -2.073160 -0.671463 -0.962554 1.218822 2.514077 -3.702836 -5.565534 -7.715445 -1.943231 2.747908 -2.989024 4.418610 8.264991 -2.704604 -3.561886 4.184234 -1.757352 1.292438 2.037082 1.459542 5.805591 -3.249577 -0.407154 -0.669550 -0.572246 2.326874 7.326543 -0.958125 -4.622498 4.502137 -2.374743 -1.306179 4.293274 0.822562 -1.151745 -1.793596 0.173796 -2.608900 -3.940631 5.885080 -5.866956 4.406715 -2.613401 7.239033 -1.865041 -1.158605 2.157492 -4.882035 -1.366559 -5.833303 -0.549899 -0.026895 2.901688 -4.546671 -3.670090 -1.967069 -0.596827 -1.704784 5.691082 -4.058090 -0.894862 0.509327 -0.171289 5.797487 2.364233 -2.179975 -1.143844 -4.179047 2.356418 2.188401 0.084915 -4.892588 -2.267647 -1.122242 -2.331961 1.374414 0.502049 3.557307 -3.702842 -0.448374 3.130721 0.524047 -0.949394 0.212314 -7.547577 1.900169 2.190787 1.672807 3.076125 6.791642 3.458857 3.957348 0.328426 2.165107 -1.525875 -0.326348 -6.157324 1.253106 0.030728 1.868686 3.048640 3.973159 3.159046 2.520199 4.027340 1.646946 -0.348024 5.068964 0.963891 5.321158 -1.183960 -2.104572 2.970243 0.103443 4.450024 4.372030 -0.842585 -3.082188 3.442485 -1.862367 -4.024956 -0.874657 -0.001371 -1.147755 0.132860 3.115489 2.883922 -0.381612 -1.235550 8.159572 -1.813087 -9.662287 3.384113 2.346529 4.297594 4.146699 -0.948548 3.730408 2.690653 0.107978 3.590377 3.459469 2.766064 -5.015236 1.212915 0.946783 2.315574 4.540492 1.000392 -9.488615 -1.092522 0.406760 5.916099 1.119853 5.463508 -3.117567 1.447974 1.013362 -0.835622 1.427828 -1.411550 2.920348 -0.688134 0.424558 -6.946617 0.807371 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 3.806460 -3.366066 4.283030 -10.412800 -5.099756 -1.178793 6.810751 -6.963308 -4.021864 13.335583 2.165910 -7.134663 -7.303751 9.726281 1.282243 -6.663659 2.649882 -4.546308 -0.597172 0.575470 -4.277224 4.646870 -3.241282 -7.053361 4.426878 -0.976586 1.615005 8.843601 1.780849 0.921138 -0.160000 -6.555416 1.251841 16.256365 4.714016 -0.732003 -5.160732 21.739416 -11.221352 17.707003 -12.435011 -13.372193 19.867519 -3.408374 -0.752380 -9.748391 -1.344441 10.994938 -4.940017 -9.998015 0.773155 0.523892 5.093398 -11.660727 -5.637089 9.795090 -14.577576 4.051992 8.184315 -7.757708 -10.431103 -4.490726 -0.172128 4.827244 -13.927641 -9.762223 0.293896 -4.960419 -6.198013 -0.777201 -10.249277 -8.144629 10.655753 5.665048 -3.838696 3.263485 -2.500279 -6.307172 8.199352 -2.148220 -12.028677 -6.941510 -2.327044 -8.599880 9.497111 3.397293 11.054042 -21.181200 5.200954 -21.497065 6.532538 -11.281210 8.084887 17.019839 -5.857078 12.454052 3.215924 8.794386 2.526043 -3.428381 9.735590 5.816401 5.438422 5.886107 10.960596 11.241362 -10.380875 -13.846782 -9.703206 -6.839009 3.938925 -6.004393 -14.910639 7.851819 -7.185161 1.085257 0.985894 1.611219 -6.935809 11.636733 -18.690101 0.966923 3.982005 -3.962610 7.468432 9.511502 -1.184899 0.152058 -2.829958 9.921909 -1.368812 7.177464 0.439376 13.065909 -5.413225 -2.417202 -4.110858 3.389124 6.101241 -10.158432 -14.197199 -20.045491 -4.618267 5.876696 -7.698784 13.114105 22.349129 -7.576878 -9.927223 11.839405 -4.264830 3.318184 6.819306 3.506090 15.442115 -7.398439 -2.311765 -2.188568 -2.499504 5.328464 17.337287 -1.495913 -10.585165 11.479273 -5.916593 -2.554134 9.879158 1.926752 -3.815906 -5.497508 0.942684 -7.737708 -10.995657 14.838434 -13.975616 11.436686 -5.645003 18.950225 -4.150443 -3.629104 6.311638 -13.241540 -3.570904 -13.965677 -1.519959 -0.116760 7.376572 -11.716061 -9.208522 -5.282683 -1.900159 -5.299025 13.864582 -8.860246 -1.228649 2.592969 0.137506 15.516859 7.487870 -5.114969 -2.526588 -11.430718 6.108440 6.393296 -0.118332 -13.041203 -5.717446 -3.363311 -5.491167 4.509784 0.861098 9.549572 -9.905885 -1.763676 7.190438 1.652568 -1.303109 0.945866 -20.105913 4.982968 4.911416 5.416545 8.226429 17.358454 8.985282 11.009865 1.620306 6.207068 -3.974156 -0.392345 -13.525804 2.258373 0.395277 4.447224 8.128647 10.747891 8.776144 7.142368 11.436614 5.358073 -1.906562 13.368056 1.124423 14.864698 -3.526207 -5.449168 6.671659 0.631574 12.061165 13.359927 -1.887560 -7.333226 9.291415 -4.654680 -9.889574 -4.289639 0.537023 -2.886837 0.880715 7.795140 7.848824 -0.485014 -3.188092 20.327934 -4.338119 -25.176991 9.836942 6.037773 11.111412 10.313586 -1.879891 8.481102 6.978130 -1.608127 9.375333 9.978662 7.272985 -13.255491 3.263986 2.592847 7.129677 10.666055 4.150110 -23.627498 -1.804756 2.152420 14.395938 3.077120 13.965918 -8.628599 1.344814 3.567630 -2.343216 2.783836 -3.025677 7.038852 -2.514990 1.545628 -15.842292 0.699591 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.363055 -0.272962 0.429709 -0.386004 -0.497593 -0.172926 -0.099399 0.199864 -0.097755 0.181945 0.030169 -0.333562 -0.440473 0.607748 -0.148099 -0.604181 0.087637 -0.232158 -0.006225 -0.188058 0.181780 0.221408 0.423693 -0.188766 0.108237 -0.127600 -0.246328 0.371772 0.837419 -0.336364 0.160409 -0.016909 0.193585 0.181322 -0.225754 -0.370428 -0.172377 0.762537 0.201253 0.276473 -0.333248 -0.266593 0.724190 -0.164813 0.074624 -0.623643 -0.550677 0.613551 -0.362788 -0.398725 0.055392 0.400978 0.137718 -0.546792 -0.485820 0.320595 -0.765430 0.564281 -0.015974 -0.028694 0.139735 0.204514 -0.216312 0.243809 0.248943 -0.403167 -0.087177 -0.074821 -0.731201 -0.238285 -0.004242 0.301796 0.880681 -0.067739 0.048790 0.224378 0.408431 0.187922 0.480284 -0.618827 -0.483647 -0.214311 -0.375364 -0.091862 0.484165 -0.190372 0.164742 -0.793688 0.375155 -0.676031 0.588272 -0.521076 0.015378 0.478259 -0.453397 0.553118 0.174961 -0.113865 0.445366 0.191297 0.637367 0.241031 0.345764 0.461453 0.195546 -0.022561 -0.165430 -0.074316 -0.375961 -0.383554 -0.014072 -0.275475 -0.824872 0.430786 0.343372 0.186227 0.389747 -0.104773 0.009507 0.076589 -0.459385 0.325577 0.336029 -0.100404 -0.175112 0.313723 -0.328454 -0.127809 -0.266500 0.620237 -0.253204 0.362804 0.733525 0.366817 0.162835 -0.726133 -0.019231 0.323604 0.013492 -0.076933 -0.372114 -0.493417 0.244853 -0.270542 -0.425195 0.372548 0.736575 0.051991 -0.224713 0.350581 0.253597 0.195274 0.247323 -0.051689 0.701547 -0.027093 -0.774052 0.030453 -0.426164 0.518387 -0.017305 0.184748 -0.054132 0.510022 -0.047132 -0.488820 0.101041 -0.254450 -0.238876 0.108805 0.095207 -0.404816 -0.328966 0.227321 0.396698 0.288411 0.288941 0.792091 0.426997 -0.445819 0.311233 -0.108879 -0.045976 -0.134851 0.140640 0.044964 -0.145851 -0.442259 -0.305635 -0.422195 -0.203817 -0.233371 0.292773 -0.109199 0.422124 0.433055 0.271390 0.313152 0.187300 0.024446 0.115296 -0.751126 0.065251 0.233707 0.095855 -0.657960 -0.072210 -0.001154 0.152223 0.524496 -0.098798 0.209799 -0.083491 -0.325840 -0.022626 -0.136432 -0.070944 0.092370 -0.115756 -0.276521 0.368872 0.553424 0.113939 0.652695 0.551687 0.130349 0.086098 0.687514 -0.088137 0.374717 0.018870 -0.213993 -0.165402 -0.007755 0.291845 0.177801 0.277129 0.222528 0.869929 0.424439 -0.447742 0.297252 -0.061788 0.491044 -0.246662 -0.406078 -0.119546 0.228667 0.553359 0.699737 0.100490 -0.186599 0.454818 0.052218 0.200668 -0.369684 0.116806 -0.145515 0.262668 0.569070 0.318675 0.224948 0.069319 0.049173 -0.092846 -0.850707 0.755635 0.132214 0.429422 0.333068 0.117505 0.210156 -0.010152 -0.429540 -0.342558 0.475740 0.135796 -0.442474 -0.002308 0.081912 0.417205 -0.067941 0.612369 -0.769054 -0.130038 0.430579 0.240928 -0.234809 0.128886 -0.413781 -0.875285 0.299166 0.043916 -0.026122 0.089537 -0.371626 -0.562783 -0.087678 0.226932 -0.054221 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = 1.513859 -1.074223 1.720027 -3.687217 -3.547846 0.709445 -0.375952 -3.467886 -1.610206 4.035954 1.402133 -2.072106 -0.768042 4.869844 -0.722875 -2.850513 -0.076017 -0.765033 -0.000336 -0.418432 -1.574820 2.445314 -1.844391 -1.498364 1.361326 -0.974445 0.137513 2.009013 0.017665 -0.116410 -0.582526 -2.704657 -0.640127 6.209217 2.413325 -0.039248 -0.912296 8.606171 -2.902744 5.145214 -4.966302 -5.283779 5.731564 -1.144427 0.350494 -2.285584 -2.144311 3.463194 -1.963914 -1.797221 1.443224 -0.666724 1.496298 -2.527053 -0.413081 1.971255 -5.671623 2.398636 2.993864 -3.063441 -3.454568 -1.804966 -0.346909 0.953222 -3.787389 -3.393069 0.655162 1.536463 -0.965942 -0.700442 -2.572039 -4.352022 4.868359 1.853000 -1.592276 0.900716 -0.147068 -2.620690 3.251190 -1.688025 -5.895049 -2.352381 -0.293709 -3.396083 3.740376 1.777616 4.730981 -8.228851 3.405185 -8.796167 2.408187 -3.220913 3.211252 6.267142 -3.696099 3.430897 2.784821 4.015282 2.707862 -0.143545 4.204208 1.643245 -0.043817 2.855246 3.514314 3.640100 -2.907781 -3.402705 -3.611602 -3.782622 1.146421 -2.113872 -5.725564 2.824240 -1.813464 1.157257 -1.524197 1.086792 -1.479331 4.287775 -7.031193 -0.599674 1.541964 -1.448913 2.717777 3.179126 -0.817885 0.602139 -2.102021 3.803736 -2.603756 1.933996 -0.830646 4.667381 -2.118193 -2.131552 -4.587221 1.544150 2.495684 -4.471796 -5.346519 -6.837789 -1.391626 2.420921 -3.134772 6.155280 9.186052 -4.666582 -4.467152 5.392737 0.138688 0.364687 4.226003 1.571447 5.487282 -2.167246 -1.440650 -1.738162 -2.155032 0.853222 1.388783 0.312132 -2.718859 4.312926 -0.887015 -1.294173 6.264104 0.014227 -3.101275 -2.428636 1.475005 -2.400356 -2.781370 5.270834 -2.607844 3.546378 -0.774944 7.305896 -2.136753 -2.268604 1.743140 -5.209223 -1.478111 -3.514157 -0.418082 -0.493269 3.308818 -4.240017 -3.256210 -1.005208 -1.797324 -2.672337 3.550998 0.294070 0.415583 1.916493 0.417572 4.992048 5.196171 -0.046672 -0.446008 -4.161280 2.323185 3.018367 -0.625716 -5.033757 -1.877825 -1.675335 -1.610514 0.943776 0.401693 3.585845 -3.786284 -0.464921 0.791617 0.385565 1.459888 1.676223 -5.282778 2.048703 0.064534 2.573360 2.962268 5.287753 4.079708 5.654822 2.553491 2.079241 -1.114377 -0.459332 -1.496831 0.782689 1.505146 2.335609 3.229028 4.351353 4.071367 2.905327 3.724998 2.312827 1.078176 5.412504 -0.172734 7.632143 -2.019176 -0.674569 0.590313 1.020903 4.998123 6.523882 -2.025654 -0.843125 2.916420 -1.055394 -2.843531 -2.845959 1.504313 -0.990067 -0.177375 1.240429 3.253018 0.221800 -2.185242 7.227205 -1.459761 -8.326168 4.380982 2.001845 3.932982 3.126495 0.203611 1.989572 1.965077 -1.742408 4.112652 4.834173 3.608322 -5.192487 0.393333 0.646209 3.442236 3.396931 3.261376 -6.401721 2.070947 2.043012 4.295874 0.380880 3.134468 -3.809597 -1.272162 1.823581 -1.835174 0.325681 0.827027 2.391392 -1.107374 1.479509 -4.068164 -2.242234 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = 2.021883 -2.281104 2.613180 -5.564420 -4.041787 0.136223 0.191437 -3.947236 -1.665506 5.297189 1.549633 -2.964720 -2.768450 5.839618 -0.034895 -4.161505 0.253793 -1.662199 0.512500 0.102709 -1.463396 2.789221 -2.019354 -1.965448 1.622292 -0.881682 -0.059480 3.455451 1.657599 -0.254757 -0.790455 -3.434076 -0.695003 7.889847 2.252794 -0.368056 -1.563650 11.847143 -4.043260 7.265144 -6.254912 -6.871672 8.204436 -1.810737 -0.225058 -4.140376 -2.339732 4.740785 -3.637471 -3.141698 1.667036 0.190352 2.094701 -4.161102 -1.289143 3.006185 -8.391815 2.737645 4.009936 -3.362456 -3.827968 -1.973117 -0.666026 1.751934 -5.623726 -4.361605 0.975064 -0.168964 -2.416903 -0.737863 -3.448937 -4.631778 6.685240 3.084412 -1.980842 1.831374 0.920654 -3.714154 4.865720 -2.004767 -7.588807 -3.141748 -1.515270 -5.088352 5.888066 1.309715 5.681745 -10.229388 4.669391 -11.298806 3.080748 -5.697330 3.457761 8.817387 -4.810739 5.434468 3.490589 5.445522 3.156766 -1.407589 5.621814 3.346246 0.897269 3.920706 5.200354 4.474846 -4.159296 -4.812836 -5.314772 -4.714495 1.120807 -3.904875 -8.923973 3.816569 -1.987980 1.229432 -0.571720 1.219595 -2.397023 5.843844 -9.529426 0.439116 2.064883 -1.882393 2.538568 4.987812 -1.313626 -0.174782 -2.425670 5.628550 -2.879636 3.324319 0.398885 6.018327 -2.617111 -1.645225 -4.613687 1.741425 2.773063 -5.503974 -6.861514 -8.932741 -1.863670 2.942143 -3.360749 8.291040 12.202768 -4.947337 -5.555434 6.990086 -0.977472 0.981350 5.273662 2.058051 7.283741 -2.298675 -2.655775 -2.734596 -2.778831 1.236537 3.302360 0.748893 -3.466971 5.878466 -1.742626 -0.979616 7.051357 -0.036365 -3.341870 -3.171011 1.366592 -4.323078 -4.763911 7.228539 -4.716735 5.720739 -0.899416 9.469802 -1.483095 -2.461348 2.880680 -6.820556 -1.424510 -5.677204 -0.892332 -0.272896 3.526985 -5.779498 -4.372097 -2.721285 -1.932989 -3.147189 5.483351 -0.677921 0.730957 2.686805 0.981842 7.426813 6.277076 -0.829637 -0.841156 -6.113386 3.390395 3.463307 -1.366181 -6.285817 -2.145732 -1.890777 -1.816390 2.033795 0.394616 5.026852 -5.368239 -1.385929 1.415789 1.065897 0.724675 1.555774 -9.392317 2.174571 1.278006 3.717539 4.652730 7.060726 5.412588 6.681016 2.681426 3.379929 -1.590510 0.380945 -3.499862 0.505310 0.962754 2.831061 3.851187 5.817166 4.970047 3.858624 5.452754 4.198369 0.314724 7.027918 -0.032552 9.225957 -1.624808 -2.289148 1.552332 1.214822 6.458232 8.249664 -1.991462 -0.660466 4.346291 -0.945932 -4.078026 -4.143479 1.192040 -1.321869 0.357689 2.744045 3.895960 0.125957 -1.899247 8.803497 -1.527119 -11.716287 5.031484 2.762207 5.121619 4.622232 0.207599 2.804528 2.810037 -2.611414 5.544370 5.652164 3.822906 -6.846880 1.449082 1.477465 4.280006 4.125021 4.338355 -9.027619 1.242059 1.917573 5.837430 1.168031 5.304418 -4.896527 -1.696116 2.753666 -2.366908 0.379282 0.017919 2.800685 -2.094209 1.438049 -5.780268 -2.747488 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.002425 -0.206199 0.619634 -1.201936 -1.411656 0.090941 -0.052675 -0.672143 -0.218589 0.029255 0.494824 -0.432177 -0.425034 1.432074 -0.269154 -1.025789 -0.236235 -0.224474 -0.088616 -0.129762 -0.095755 0.871831 -0.355688 0.051348 0.328734 -0.370066 -0.279828 0.781360 0.557037 -0.388277 -0.103251 -0.614669 -0.209960 1.390812 0.303333 0.182456 -0.010759 2.412861 -0.442495 1.123873 -1.323412 -1.136949 1.233451 -0.335492 -0.230466 -1.411897 -1.206085 0.665825 -0.826723 -0.066735 0.649842 0.058659 0.235606 -0.356727 0.401832 0.499242 -1.664474 0.806237 0.645859 -0.690899 -0.283047 -0.352701 -0.637153 -0.031875 -0.671629 -0.731873 0.104610 0.486103 -0.275560 -0.122141 0.000753 -0.942327 2.053084 0.435374 -0.475082 0.485507 0.564642 -0.951944 0.980277 -0.595460 -1.583083 -0.461470 0.038873 -0.475990 1.220638 -0.026091 0.934239 -2.005127 0.419497 -2.099645 0.613795 -1.198621 0.544506 1.518898 -1.261744 0.893288 0.862417 0.501713 0.899626 0.247643 1.221198 0.578914 0.272924 0.938405 0.853790 0.560102 -0.419653 -0.632051 -1.031386 -1.251391 0.146287 -0.621758 -2.309594 0.533785 0.089029 0.215344 -0.356670 0.240627 0.090646 1.186704 -1.190861 0.418622 0.707586 -0.352142 0.125429 1.051439 -0.346818 -0.084557 -0.781755 1.141917 -0.984000 0.967016 -0.207391 0.966032 -0.283432 -1.122402 -1.372404 0.102845 0.216794 -0.905770 -1.199304 -1.229457 -0.255612 0.536283 -0.649542 0.990619 2.500922 -1.293205 -1.404718 1.660192 0.896599 0.211431 0.890200 0.440785 1.286343 -0.119392 -0.793399 -0.924567 -0.912656 0.105104 0.138346 0.473940 -0.533685 0.928014 -0.056532 -1.564685 2.144351 -0.445933 -0.979473 -0.140924 0.288057 -0.920845 -0.918252 1.447237 0.248357 1.335016 -0.117895 1.762494 -0.359027 -0.993603 0.327534 -0.766205 -0.067664 -0.952815 -0.036784 0.227443 0.547638 -0.968274 -0.798267 -0.419352 -0.651132 -0.799310 0.496875 0.176426 0.293550 0.582139 0.475876 0.740052 1.712468 0.235179 0.005590 -1.226220 0.748365 0.632874 -0.126317 -1.586361 -0.062644 -0.226402 -0.262207 0.163064 0.072471 0.706247 -0.505812 -0.219889 -0.159934 -0.275568 0.378554 0.496742 -1.408208 0.273183 -0.110331 0.849244 0.546394 0.867017 1.663750 1.351921 0.879962 0.724479 -0.086502 0.049341 0.085508 0.095262 0.439107 0.377761 0.738348 1.444315 1.223768 0.602904 1.203757 1.079123 0.484860 1.317096 0.167427 2.328859 -0.259993 -0.525670 -0.112653 0.513456 1.320543 2.090081 -0.021203 0.364399 0.766651 0.460565 -0.436982 -1.351192 0.353532 -0.253018 -0.230215 0.997329 0.525961 -0.155701 -0.266136 1.540141 -0.279154 -1.862274 0.944787 0.402662 0.912679 0.256719 0.348950 0.058750 0.764719 -0.925124 1.050693 1.099779 0.843986 -1.297494 -0.587692 0.153906 0.734908 0.747932 1.324227 -1.471009 0.448655 0.630210 1.128830 -0.126757 0.751614 -0.836730 -0.886155 0.719704 -0.430772 -0.320247 0.416157 0.162949 -0.774792 0.259198 -0.789868 -1.221039 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = 0.666977 -0.700824 0.858516 -1.741871 -1.228364 0.295696 0.472677 -1.168460 -0.557630 2.004374 -0.075874 -0.129650 -0.949443 0.505135 0.138445 -1.641356 -0.227983 -1.271738 0.020200 -0.377343 -0.699495 0.912396 -0.670628 -0.427113 0.562738 -0.687553 0.388271 1.031919 -0.014424 -0.224207 0.282405 -1.293038 -0.388141 2.464957 0.916101 0.384862 -0.602020 3.538322 0.229329 1.697717 -1.675973 -2.752722 2.148205 -0.613070 -0.136390 -0.526148 0.947049 1.405434 -0.726807 -0.787774 0.505383 -0.056877 0.745887 -1.042787 -0.511870 0.386874 -1.746525 0.457746 0.804486 -1.508775 -1.834635 -0.742631 -0.113020 0.970908 -1.740528 -1.339820 0.588391 0.163087 -0.913069 0.041301 -0.535551 -1.100072 2.049135 1.219766 -0.609130 0.415502 0.279254 -0.767188 1.257269 -0.032353 -2.371814 -1.145778 -0.399783 -1.827759 1.735998 0.149558 1.861836 -3.070967 1.785722 -3.210821 0.776753 -0.925856 1.173082 2.505147 -1.020435 1.850807 0.911553 2.246562 0.256779 -1.595994 1.627442 0.682189 0.511888 1.711379 1.262761 0.956817 -1.367637 -1.674444 -1.526078 -1.262220 0.713788 -1.337958 -2.535146 1.124664 -0.314203 0.757751 -0.035099 0.610633 -1.054733 1.720735 -3.701109 -0.597859 0.501979 -0.556138 0.968991 0.583315 -0.270643 0.191931 0.056210 1.912015 -0.921137 0.945911 -0.009647 1.925340 -0.326223 1.504192 -1.244550 0.594070 1.089485 -1.320350 -1.969188 -2.068998 -1.163087 1.398956 -1.037307 3.057537 3.572059 -1.509832 -1.800158 2.024109 -1.405058 0.039387 0.983514 0.733459 0.947839 -0.497330 -1.077615 -0.991521 -0.520434 0.612677 1.832255 0.368783 -0.998213 2.235302 -0.752297 1.894459 1.091257 -0.212222 -1.116960 -1.360269 0.076826 -1.454442 -1.243609 1.501669 -1.773250 1.833173 0.000921 2.762021 -0.662010 -0.548914 0.371599 -2.325033 -0.620475 -2.032393 0.017744 -0.131968 0.816791 -1.848904 -1.282252 -0.647990 -0.692181 -1.004521 1.447944 0.025852 0.250893 0.585865 0.482326 3.407771 1.963566 -0.085889 -1.269121 -1.364979 1.156601 0.662121 -0.164611 -0.302161 -1.277696 -0.062071 -0.871441 1.082234 0.164338 1.441181 -1.307637 0.215454 0.262575 0.583660 -0.152469 0.735016 -3.796672 0.596805 1.178600 0.943231 1.041929 1.928177 1.535014 1.844787 0.826568 0.770092 -0.322944 0.106268 -1.350665 -0.178124 0.660598 1.100031 1.198539 1.920595 1.718515 1.211163 2.079766 1.842008 0.158230 1.947603 -0.826243 2.925662 -1.252226 -0.721932 0.405433 0.940468 1.658415 2.102614 -0.614537 0.296207 1.495341 -0.065443 -1.188483 -1.090875 0.508611 -0.648688 1.540110 0.172013 1.544677 -0.268813 -0.451429 2.662971 -0.491555 -3.327013 1.382390 1.038335 1.711625 1.465843 -0.133737 0.873836 0.837436 -0.950757 1.975220 1.746879 0.753219 -2.131288 1.131115 0.479278 1.250152 0.110880 1.306023 -1.445285 -0.482249 0.083959 1.893061 0.679974 1.818232 -1.370293 -0.316483 1.290934 -1.028537 0.213721 0.707668 0.951051 -0.370254 0.706659 -1.973700 -0.795853 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 2.402706 -1.484120 2.316981 -3.934682 -1.477864 -1.137433 0.854617 -1.791929 -1.466639 2.986614 0.016157 -2.451070 -2.705093 4.130433 -0.984337 -2.739685 0.970107 -1.416929 0.872034 0.447399 -0.770754 1.943812 -0.071063 -1.689015 2.086860 -0.415242 -0.025749 3.419679 3.202760 -0.788242 0.011602 -2.215458 1.613518 5.864123 1.203912 -1.620467 -1.234726 8.234167 -1.929883 5.600655 -1.859268 -3.289725 6.572230 -0.943909 -1.260492 -4.071817 -2.326793 3.879989 -3.234817 -3.241864 0.894374 0.949674 1.210672 -4.016323 -2.569796 3.935308 -6.280811 2.158124 2.640308 -0.724306 -1.275906 -1.054223 -1.300351 0.487043 -2.706446 -3.404862 -0.234803 -1.839610 -3.821886 -0.623220 -2.591032 -1.069943 5.813289 1.804512 -1.473580 1.788010 1.055281 -2.293428 2.986711 -2.232261 -4.377003 -2.534478 -2.312205 -1.634757 4.851945 -0.047403 2.332205 -6.746404 2.060261 -6.735521 2.093409 -4.768231 2.238889 6.303553 -4.228712 4.891784 1.364653 2.779448 0.793298 -1.268576 4.909212 3.123105 0.092418 2.348391 3.829236 2.793368 -2.677223 -3.938396 -3.568779 -2.110178 0.794626 -2.786859 -7.006249 2.428365 -1.515068 0.682014 0.572163 0.205278 -2.728492 3.123358 -6.238473 0.503810 1.043947 -1.326218 0.859132 4.060199 -0.284480 -1.343211 -1.364268 4.559742 -0.475052 1.871179 1.799845 4.163613 -0.947413 -2.803175 -1.387350 0.129133 1.646070 -3.129214 -5.140844 -6.737338 -1.042575 -0.003871 -2.582062 3.971942 8.070424 -1.427730 -2.361988 4.791010 -0.149909 1.513950 3.365011 1.313073 5.206913 -1.665146 -3.389459 -0.699952 -2.741378 2.284891 3.137700 0.088167 -2.285816 4.180384 -1.559776 -1.252045 1.991117 -0.233526 -1.438710 -0.597496 -0.544559 -3.089004 -4.478253 5.202310 -3.187274 3.308826 -1.402691 7.081489 1.309622 -3.095923 1.759985 -3.313175 -0.435188 -5.189580 0.197362 -0.328583 1.605655 -4.933313 -3.388889 -1.319211 0.511913 -2.183922 4.638945 -2.171047 0.490522 0.791291 1.121225 4.907947 3.015370 -2.408212 0.980614 -4.524599 1.781303 2.065977 -0.068070 -5.608254 -0.607453 -0.588430 -1.689912 1.871412 -1.153171 1.884923 -3.917077 -1.230555 1.963358 -0.169996 -0.941862 0.568551 -6.609627 1.379873 2.007920 1.953781 3.967194 5.648621 4.171361 3.168742 0.252133 3.134286 -1.197589 0.692268 -4.810613 0.605106 -0.396561 1.747227 2.581312 3.482170 3.229872 2.498357 3.788356 3.241321 -0.701859 4.611349 1.038990 5.094805 0.752093 -2.945380 1.897130 0.207859 4.638827 5.284721 -0.166008 -1.997834 3.986944 -1.204601 -1.698534 -3.240863 1.126962 -0.579065 0.202826 4.018656 2.147207 0.467086 0.066127 5.182359 -2.662816 -8.510958 3.204404 2.620467 2.952947 2.697931 0.090145 3.147365 1.955119 -1.341630 1.975306 2.934345 2.769127 -4.613856 2.259265 0.880900 2.221580 2.948720 2.721299 -8.536605 -1.168137 0.725956 4.434460 1.066386 3.973151 -2.699819 -1.590266 2.496123 0.589165 0.535128 -1.580836 2.009816 -2.220998 0.282231 -2.591497 -0.093598 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = 0.229877 -0.293136 0.469577 -0.836771 -0.706926 -0.049961 0.457526 -0.855107 -0.507810 0.591871 0.569024 -0.606581 -0.271861 1.128630 -0.027447 -0.811350 0.171596 0.689217 -0.283775 -0.101933 -0.293476 0.538361 -0.368747 -0.699255 0.587070 -0.307633 0.103534 1.036130 0.050237 0.316639 -0.024732 -0.581380 0.179367 1.733099 0.321766 0.288472 -0.346163 2.150589 -1.231631 1.423891 -1.230088 -1.286952 2.041916 -0.303672 -0.085620 -1.145803 -1.170363 0.833295 -0.552011 -0.948037 0.074569 -0.122292 0.484256 -1.089141 -0.107904 1.072095 -1.523663 0.114808 0.874022 -1.176589 -1.239175 -0.354470 -0.146922 -0.146701 -1.271747 -1.076177 -0.029753 0.138254 0.021568 0.031758 -0.805153 -1.446242 1.780329 0.212639 -0.326353 0.522811 -0.071383 -1.019008 0.886800 0.555441 -1.219177 -0.805356 0.156219 -0.481233 0.892610 0.310997 1.321949 -2.328119 0.329274 -2.251352 0.873701 -1.171617 1.015697 1.639965 -1.325338 1.161232 0.733867 1.055366 0.154854 0.257981 1.274782 0.465720 0.229706 0.452382 1.144998 0.870811 -0.956341 -1.437138 -1.184971 -1.084660 0.642766 -0.814454 -2.271108 0.593900 -0.739887 0.000148 -0.311840 0.006146 0.066211 1.585326 -1.558288 0.827657 0.936907 -0.433499 0.475638 1.038764 -0.116350 -0.124106 -0.642559 0.953599 -0.554709 0.497132 -0.257759 1.253559 -0.606731 -1.166452 -0.555497 0.142816 0.358157 -1.265270 -1.459346 -1.767033 -0.265905 1.043465 -0.743663 0.538606 2.485550 -1.108531 -1.291207 1.267013 0.682585 0.123772 0.849208 0.609782 1.931200 -0.939684 -0.136849 -0.523186 -0.405154 0.729873 0.406255 -0.177594 -1.133974 1.224986 -0.355720 -1.601850 2.934602 -0.441392 -0.422924 0.178444 0.440330 -0.587016 -0.758845 1.766560 -0.354373 1.478363 -0.675872 1.935537 -0.696107 -0.690339 0.351532 -1.127668 -0.643451 -1.307862 -0.029364 -0.101216 0.983789 -1.086968 -1.033393 -0.504359 -0.551943 -0.366951 1.335887 -0.400176 -0.007547 0.190854 -0.120378 0.404813 0.973646 -0.234632 -0.144903 -1.219938 0.525240 0.887280 -0.094225 -1.823902 -0.315807 -0.550377 -0.403127 -0.327944 0.163559 1.066576 -0.767383 -0.107035 0.375620 -0.231318 -0.090191 -0.089738 -1.352275 0.468793 -0.091282 0.567245 0.594053 1.661081 1.729180 1.294972 0.281209 0.614095 0.036811 -0.321748 -1.208818 0.514340 -0.005524 0.882223 0.830044 1.052207 0.949881 0.755326 0.935044 0.338105 0.856370 1.590564 0.776713 2.083784 0.045940 -0.415725 0.508586 0.112705 1.412835 1.625998 0.186297 -0.270657 0.682470 -0.091209 -0.983445 -0.972382 0.050644 -0.043749 -0.803204 1.098710 0.684711 -0.179498 -0.524614 2.197900 -0.254929 -2.447245 1.087168 0.451732 0.994126 0.833332 -0.123587 0.784354 0.920887 0.228090 0.909948 0.910318 1.167583 -1.704663 -0.124499 0.156310 0.881458 1.368348 0.621347 -2.284145 0.672370 0.335405 1.423117 -0.215731 1.073162 -0.912307 0.247126 0.112771 -0.307794 0.098718 -0.108359 0.469014 -0.334336 -0.073495 -1.947891 -0.344430 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = 0.110427 0.049811 0.283285 -0.428798 -0.445289 -0.055109 0.160641 -0.141017 -0.106409 0.033641 0.103597 -0.084332 -0.210119 0.459645 -0.117487 -0.361223 -0.134832 -0.425082 -0.184968 -0.096232 -0.081500 0.312946 -0.089232 -0.001428 0.216643 -0.096584 -0.121369 0.249360 0.011095 -0.427139 0.047595 -0.190480 0.005129 0.497411 -0.024942 0.043113 -0.031087 0.879542 -0.036866 0.212319 -0.476752 -0.519672 0.506449 -0.194354 -0.073265 -0.556309 -0.265840 0.329420 -0.061659 -0.043984 0.140812 0.149929 -0.136168 -0.282642 0.074875 0.210558 -0.711839 0.373437 0.241159 -0.235014 -0.258562 -0.111299 -0.158329 -0.153652 -0.048050 -0.310447 0.073338 0.096497 -0.235714 0.063152 0.052271 -0.273277 0.732122 0.148570 0.010092 0.302412 0.173414 -0.216629 0.409326 -0.348979 -0.466044 -0.206248 0.137040 -0.121400 0.432384 -0.012573 0.167336 -0.720901 0.181355 -0.659568 0.187716 -0.457120 0.166636 0.499769 -0.297953 0.463112 0.256245 0.052614 0.211622 0.081457 0.499704 0.112640 0.264146 0.409942 0.236125 0.114833 -0.182019 -0.225127 -0.413508 -0.485457 0.096019 -0.116202 -0.694965 0.257430 0.078749 -0.031982 -0.012211 0.098354 0.104163 0.357627 -0.558986 0.094292 0.361350 -0.126576 0.001761 0.356294 -0.134733 -0.123734 -0.330852 0.386662 -0.283935 0.410658 0.004148 0.334490 0.070030 -0.476324 -0.411379 -0.075627 0.006372 -0.321737 -0.392114 -0.388541 -0.040598 0.161142 -0.313278 0.419293 0.951285 -0.419772 -0.528904 0.609583 0.486109 0.153505 0.227995 0.169290 0.488424 -0.044989 -0.340905 -0.175127 -0.268087 0.208450 -0.202862 0.169350 -0.193352 0.326757 0.081800 -0.449159 0.747402 -0.194575 -0.256257 0.281741 0.120250 -0.366959 -0.412076 0.431440 0.521089 0.654942 0.119872 0.662866 -0.148736 -0.318357 0.114051 -0.188555 0.020650 -0.388514 -0.017545 0.002133 0.133001 -0.305860 -0.277104 -0.159559 -0.310951 -0.295317 0.208805 0.035858 0.213015 0.119616 0.168497 0.096961 0.580672 -0.033917 0.043207 -0.585358 0.247106 0.181065 0.109857 -0.545794 -0.013985 0.004392 -0.106801 0.247922 -0.006891 0.226852 -0.004565 -0.038398 0.101331 -0.083424 -0.021430 0.055151 -0.298034 -0.050553 -0.082509 0.315551 0.099847 0.368358 0.686944 0.399482 0.224154 0.263735 -0.033053 0.023909 0.018563 -0.108765 -0.053651 0.298719 0.314886 0.392244 0.467909 0.219619 0.531472 0.373761 0.004529 0.532765 0.055872 0.902761 -0.290974 -0.249605 -0.042035 0.214465 0.491313 0.649715 -0.071817 0.037881 0.333880 0.234446 -0.153255 -0.413103 0.051563 -0.108624 -0.036248 0.370807 0.233882 -0.150624 0.019076 0.570616 -0.136783 -0.695564 0.357573 0.141566 0.356719 -0.007746 0.150145 0.025594 0.404728 -0.327451 0.155891 0.333254 0.341777 -0.537827 -0.165687 0.088423 0.406423 -0.081119 0.491219 -0.588146 0.120788 0.208216 0.334812 -0.110347 0.196626 -0.287816 -0.367408 0.279113 -0.031657 -0.126417 0.355434 0.101144 -0.341383 0.047610 -0.312229 -0.287725 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.164755 -0.367254 0.404479 -0.858344 -0.931777 0.010513 -0.123693 -0.339062 -0.184565 0.166182 0.103339 -0.287791 -0.460129 1.081990 -0.178177 -0.910084 -0.134387 -0.290253 -0.004153 -0.045519 -0.147086 0.614331 -0.171301 -0.022936 0.340374 -0.270774 -0.223456 0.493463 0.558126 -0.398059 -0.011089 -0.458545 -0.177514 1.015353 0.139098 0.145928 -0.041917 2.045484 -0.022554 0.919047 -0.972571 -0.997611 0.963597 -0.301219 -0.142708 -0.878797 -0.630549 0.592938 -0.669204 -0.063621 0.378060 0.158688 0.025353 -0.426827 0.138980 0.365835 -1.337887 0.741003 0.408364 -0.332191 -0.242770 -0.289665 -0.469350 -0.039852 -0.444942 -0.586928 0.093279 0.266503 -0.569892 -0.075314 -0.048338 -0.416443 1.525453 0.420316 -0.330636 0.420188 0.430530 -0.445850 0.659921 -0.694760 -1.307413 -0.402582 -0.014160 -0.476457 0.983970 0.084483 0.734098 -1.582808 0.689939 -1.669145 0.487855 -0.955487 0.445137 1.270573 -0.901464 0.851922 0.576697 0.527330 0.650283 0.062463 0.971999 0.473561 0.086408 0.798727 0.534812 0.362926 -0.302740 -0.438580 -0.649181 -0.790233 -0.011275 -0.449865 -1.710407 0.450489 0.052108 0.473154 -0.110422 0.390828 -0.129940 0.594838 -1.249562 0.098346 0.407565 -0.280745 0.249177 0.670257 -0.292109 -0.116502 -0.545965 0.921132 -0.638118 0.643743 -0.036497 0.760248 -0.136169 -0.569765 -0.950124 0.024838 0.196493 -0.612010 -0.948732 -0.995274 -0.256274 0.400826 -0.528661 1.160752 2.018538 -0.911148 -0.924821 1.210176 0.173229 0.423436 0.725591 0.307761 0.857374 -0.061676 -0.659518 -0.454542 -0.540371 0.186756 -0.152167 0.356518 -0.363038 0.716798 -0.054412 -0.604308 1.294363 -0.268576 -0.649475 -0.381834 0.120648 -0.741270 -0.729127 1.075307 -0.043285 0.989864 0.111582 1.371495 -0.137562 -0.684082 0.320197 -0.826564 -0.060076 -0.735157 0.012452 -0.038327 0.322216 -0.934873 -0.640790 -0.260915 -0.448917 -0.589082 0.410032 0.355762 0.248712 0.408272 0.400233 1.013908 1.244685 0.077323 -0.013931 -1.075225 0.501551 0.408841 -0.184397 -1.052237 -0.076692 -0.011376 -0.217353 0.423157 0.050050 0.440626 -0.433691 -0.222164 -0.140401 -0.001571 0.316970 0.350021 -1.102006 0.080928 0.153688 0.634992 0.548555 0.723439 1.163924 0.961228 0.521472 0.585294 -0.107580 0.112481 0.126580 -0.076094 0.260329 0.390339 0.539460 0.966470 0.913451 0.463676 0.930777 0.869997 0.053497 0.937279 0.135164 1.851248 -0.340455 -0.551204 -0.029994 0.324138 0.974701 1.507110 -0.394189 0.317474 0.721749 0.285793 -0.181714 -0.974301 0.244924 -0.245365 0.011419 0.578713 0.394229 -0.074091 -0.113060 1.054596 -0.270747 -1.613085 0.811310 0.350679 0.723800 0.209941 0.298229 0.045456 0.559975 -0.835612 0.732149 0.897646 0.534168 -0.890031 -0.183072 0.121300 0.656872 0.311724 0.957247 -0.832069 0.290505 0.497693 0.802852 0.081641 0.400920 -0.621243 -0.835106 0.490134 -0.378005 -0.200261 0.339216 0.065001 -0.469443 0.150706 -0.442628 -0.908626 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.843338 -1.446888 1.089664 -2.487105 -2.836957 0.509920 -0.510579 -1.111548 -0.528330 1.305843 0.511005 -0.636614 -0.985775 3.044083 -0.202745 -2.193218 0.089571 -1.279453 0.497118 0.071901 -0.239537 1.670500 -0.398467 -0.017732 0.458905 -0.659289 -0.647291 1.383222 1.613155 -0.615305 -0.322921 -1.321260 -0.992585 2.532180 0.897131 -0.395561 -0.180776 5.989765 -1.057239 2.744660 -2.429449 -2.572531 2.433617 -0.729998 -0.505156 -2.120459 -1.814606 1.725839 -1.080212 -0.799329 1.447445 0.093574 1.004649 -0.720006 -0.157518 0.860890 -3.271406 1.308864 1.012573 -0.648325 -0.273684 -0.701485 -0.883246 0.816399 -2.006817 -1.541367 0.753561 0.257893 -1.206338 -0.968986 -0.475561 -1.172407 3.508080 1.326699 -0.954169 0.441543 1.233382 -1.816105 1.916417 -1.368733 -4.414783 -0.879573 -1.320826 -2.679693 2.829234 -0.309970 2.648580 -4.455662 2.793022 -5.237656 1.202432 -2.382149 1.035067 3.575094 -2.300829 1.788858 1.727065 2.882444 2.182189 -0.714193 2.607969 1.737521 -0.120689 2.454942 1.786540 1.418506 -1.105967 -0.848710 -1.996543 -1.959288 0.190374 -1.719491 -4.641144 1.558436 0.418632 0.571297 -0.324853 0.821378 -0.902592 2.491061 -3.161611 0.628183 0.626447 -0.702360 0.484811 1.962757 -0.949838 -0.019140 -1.214529 2.693973 -2.002616 2.037077 0.272706 2.152064 -1.020917 -0.548828 -2.092995 0.904453 1.033104 -1.711080 -2.607021 -3.287500 -0.476256 0.790243 -1.474563 3.846375 5.630932 -2.825582 -2.362495 3.122202 -0.042304 0.445597 1.923577 0.454005 2.253208 -0.026652 -2.217287 -1.470848 -1.832110 0.001246 0.593213 1.086321 -0.186706 2.206826 -0.632452 -1.289422 4.092901 -0.384510 -2.251998 -1.072229 0.445651 -1.904758 -2.120900 2.798971 -0.896351 1.625889 1.148783 3.654882 0.348786 -1.277590 1.050242 -2.363372 -0.245939 -2.373069 -0.077853 0.066825 0.912988 -2.126318 -1.592207 -1.134434 -1.062371 -1.743833 1.023630 0.715515 1.143029 1.797559 1.236336 3.208151 3.837741 0.710687 -0.374491 -2.575717 1.457766 1.269621 -0.991275 -2.479308 -0.955917 -0.359911 -0.362569 1.127467 0.082984 1.784947 -2.064328 -0.854193 -0.571544 0.476294 0.899203 1.680447 -4.778194 0.475938 0.950658 2.113717 1.767290 2.039512 2.324333 3.269086 1.818999 1.690386 -0.472724 1.088958 -0.421742 -0.546316 1.039842 0.848534 1.473273 2.909601 2.390414 1.728327 2.541800 2.429190 0.434257 2.259747 -0.024706 4.953103 -0.360162 -1.588294 -0.238271 1.043952 2.561174 4.189606 -0.394948 0.925309 1.773649 0.201948 -0.859736 -2.609863 1.290754 -0.810502 1.209102 0.823622 1.690367 0.531930 -0.756016 2.505991 -0.770372 -5.068605 2.142530 1.000505 2.244844 1.767079 0.835553 0.879042 0.533667 -2.273229 3.088900 3.407752 1.138985 -2.088831 -0.061881 0.448922 1.619686 0.815179 2.730087 -2.887867 1.257879 1.055090 1.982868 0.287262 1.810687 -2.392140 -1.988275 1.696162 -1.365075 -0.133576 0.884467 0.352006 -1.547335 0.689745 -1.445154 -1.994105 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.340260 -0.423309 0.651018 -0.782317 -0.918983 -0.099564 0.003894 0.069893 -0.099915 0.188833 0.206169 -0.377669 -0.442750 1.048237 -0.107125 -0.827598 0.103704 -0.437561 0.003292 -0.159467 0.168127 0.556546 0.273846 -0.048197 0.238876 -0.240008 -0.396085 0.673080 0.880747 -0.442551 0.105542 -0.188005 -0.061658 0.578342 -0.176482 -0.399616 -0.067594 1.614745 -0.143065 0.636975 -0.575248 -0.556816 1.031938 -0.273337 -0.111259 -0.872083 -0.955522 0.748084 -0.456305 -0.443645 0.385520 0.421222 0.257557 -0.544145 -0.259845 0.430631 -1.281339 0.550933 0.158838 -0.143269 0.048861 0.044779 -0.409093 0.197687 -0.180693 -0.567760 0.092888 -0.025360 -0.674947 -0.324382 0.059580 -0.051617 1.369261 0.162941 -0.035550 0.388206 0.715387 -0.325762 0.846657 -0.562701 -1.040143 -0.305098 -0.503114 -0.602237 1.008540 -0.413238 0.507580 -1.380714 0.637136 -1.315303 0.673999 -0.980216 0.139324 1.059913 -0.834028 0.804980 0.478095 0.400393 0.635845 0.120090 1.063412 0.488495 0.382941 0.825092 0.528883 0.161518 -0.387832 -0.220166 -0.807298 -0.743370 0.075688 -0.607308 -1.495585 0.587332 0.455848 0.001389 0.313269 -0.016846 -0.030504 0.666036 -0.715491 0.634299 0.556554 -0.213488 -0.294174 0.676152 -0.480279 -0.227378 -0.555500 1.045432 -0.638397 0.776253 0.578339 0.609693 -0.047665 -0.740189 -0.302111 0.290773 0.036595 -0.363733 -0.758822 -0.872025 0.168877 -0.088390 -0.565708 0.849953 1.540351 -0.373069 -0.620310 0.942416 0.586684 0.259662 0.442482 0.058983 0.949656 0.024621 -1.081246 -0.431941 -0.699816 0.400169 -0.002786 0.442255 -0.049027 0.762634 -0.077152 -0.836381 1.231443 -0.408663 -0.586107 0.088800 0.242656 -0.729556 -0.723916 0.809545 0.485460 0.671295 0.395574 1.321158 0.429142 -0.635441 0.455403 -0.266427 0.018713 -0.687617 0.069238 0.121014 -0.025078 -0.565239 -0.564507 -0.647192 -0.379130 -0.484408 0.298318 0.012140 0.605658 0.638168 0.508891 0.430544 0.815822 0.192445 0.046860 -1.158137 0.311474 0.422677 -0.100097 -0.943012 -0.021104 -0.014311 0.100313 0.480858 -0.036778 0.440039 -0.416667 -0.474893 -0.115168 -0.074545 -0.020958 0.321613 -1.088426 -0.169413 0.357881 0.793103 0.353350 0.773170 1.132400 0.522376 0.433827 0.854632 -0.110123 0.558490 -0.171646 -0.216933 -0.065896 0.223120 0.476700 0.730417 0.701095 0.415942 1.129920 0.829941 -0.169206 0.646800 0.077626 1.269247 -0.078361 -0.650411 -0.173184 0.435780 0.939746 1.316612 0.287023 0.080142 0.686787 0.328348 -0.064048 -0.860359 0.242469 -0.277101 0.370162 0.673319 0.315327 0.099606 0.035673 0.501511 -0.155361 -1.458695 0.875533 0.236835 0.756855 0.494891 0.332255 0.289399 0.210506 -0.824808 0.269313 0.798149 0.323019 -0.746914 -0.086728 0.153349 0.579077 0.090251 1.102363 -1.195320 0.168389 0.463744 0.501549 -0.218602 0.461511 -0.598273 -1.058786 0.532816 -0.254322 -0.181436 0.322545 -0.282339 -0.873746 0.095837 -0.247918 -0.504384 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.509935 -0.846739 0.790598 -1.117269 -1.070732 0.089192 -0.072327 -0.278363 -0.170606 0.895035 0.028894 -0.382454 -0.525784 1.365754 -0.115492 -1.127903 0.165736 -0.321054 0.269480 -0.019019 0.042211 0.815028 0.071988 -0.115317 0.268553 -0.423958 -0.174444 0.745137 0.713424 -0.046228 0.078709 -0.615163 -0.309020 1.113715 0.204048 -0.055611 -0.306875 2.300846 -0.127149 1.755483 -1.090850 -1.206993 1.254643 -0.325252 0.142361 -0.864383 -0.719630 0.924595 -0.571682 -0.724058 0.509684 0.280589 0.544583 -0.620210 -0.258375 0.264328 -1.424050 0.438262 0.252761 -0.450971 -0.164946 -0.217744 -0.524124 0.588179 -0.995775 -0.773172 0.070980 0.182482 -0.886313 -0.273284 -0.158228 -0.264263 1.545403 0.570537 -0.519828 0.280858 0.846969 -0.482365 0.999178 -0.766238 -1.634236 -0.549503 -0.845407 -1.071578 1.305797 -0.117704 1.265899 -2.040059 1.363577 -2.047436 0.926423 -1.158479 0.441890 1.713887 -0.902301 1.097090 0.780658 1.342600 0.877079 -0.181655 1.252241 0.986047 0.188587 1.072185 0.947178 0.513364 -0.723271 -0.701241 -0.997267 -0.838491 0.154119 -1.072375 -1.916239 0.645236 0.445277 0.569479 0.134706 0.295530 -0.468080 0.849327 -1.997779 0.360046 0.492126 -0.333208 0.071512 0.564433 -0.529620 -0.054944 -0.485826 1.464099 -0.929499 0.796371 0.491719 1.051211 -0.629930 0.066012 -0.526892 0.495143 0.339743 -0.606357 -1.269368 -1.630442 -0.295896 0.619434 -0.678280 1.676444 2.171850 -0.677586 -0.827438 1.279221 -0.181151 0.107964 0.672992 0.255032 0.831294 -0.033893 -1.223837 -0.725291 -0.733585 0.356743 0.902759 0.563476 -0.353858 1.322749 -0.478655 -0.515215 1.272725 -0.421347 -0.905708 -1.110665 0.109957 -1.025899 -0.623952 1.220551 -1.182995 0.796017 -0.123830 1.825556 0.313833 -0.564538 0.455064 -1.556100 -0.155168 -1.166212 0.214524 0.003673 0.312479 -1.353854 -0.885059 -0.597541 -0.573954 -0.615689 0.593795 -0.500083 0.362557 0.829849 0.647211 2.028710 1.116782 0.323591 -0.345445 -1.148896 0.593562 0.449877 -0.332320 -0.935754 -0.276601 -0.070602 -0.129073 0.398049 0.098800 0.581303 -0.998660 -0.458362 -0.231373 0.014460 0.069399 0.614389 -1.890761 0.011124 0.857367 1.085319 0.719822 1.065856 1.209499 0.966719 0.683216 0.924842 -0.248328 0.463163 -0.544388 0.110467 0.430324 0.048870 0.580432 1.237202 1.016276 0.572918 1.405792 1.308374 0.039818 0.932684 -0.157521 1.642965 -0.198095 -0.719721 0.022914 0.586764 1.192992 1.714474 -0.041348 0.368610 0.988372 0.001083 -0.360791 -0.635529 0.451054 -0.427345 0.571891 0.558859 0.632705 0.180802 -0.155730 1.023840 -0.249158 -2.124535 1.020296 0.492172 1.103190 1.097797 0.294957 0.591333 0.190860 -0.903674 0.936222 1.152032 0.362037 -1.054991 0.112473 0.185440 0.500496 0.916043 1.299462 -1.282736 0.039547 0.497145 1.050444 -0.053278 0.877365 -0.827097 -0.952314 0.726156 -0.656439 -0.158293 0.184626 -0.092096 -0.463850 0.186921 -0.678053 -0.812609 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = 0.155721 -0.028981 0.279945 -0.455264 -0.388322 0.084876 0.024347 -0.303457 -0.095057 0.032093 0.191293 -0.074327 -0.115990 0.432659 -0.099969 -0.348714 -0.068172 -0.312798 -0.141770 -0.080101 -0.062184 0.191568 -0.128274 -0.124014 0.082472 -0.131699 0.009309 0.238938 -0.064483 -0.272303 -0.078850 -0.219315 -0.037112 0.568198 0.145507 0.087959 -0.067853 0.815432 -0.056080 0.311612 -0.528715 -0.521339 0.509560 -0.177318 -0.059329 -0.483290 -0.286094 0.305987 -0.051954 -0.122170 0.139368 -0.015357 0.026771 -0.262788 -0.030235 0.209219 -0.588527 0.250120 0.243727 -0.297462 -0.292623 -0.137013 -0.029545 0.008406 -0.160344 -0.322202 0.163758 0.182840 -0.172172 0.024752 -0.092693 -0.451419 0.772943 0.170722 -0.030119 0.157566 0.112348 -0.290605 0.386808 -0.149313 -0.523834 -0.218632 0.043583 -0.209178 0.432104 0.004836 0.312594 -0.771588 0.231743 -0.795137 0.222720 -0.380879 0.232770 0.449789 -0.336330 0.343467 0.303802 0.273168 0.185571 0.047019 0.453959 0.124739 0.143108 0.297682 0.413505 0.115094 -0.177108 -0.271333 -0.381729 -0.493996 0.117394 -0.214722 -0.775135 0.281266 -0.050879 -0.016971 -0.169985 0.118132 0.060937 0.421673 -0.605706 0.092860 0.289452 -0.127577 0.103743 0.341321 -0.134431 0.009615 -0.233091 0.365506 -0.298925 0.283969 -0.028371 0.365108 -0.000809 -0.370886 -0.457142 0.085908 0.176825 -0.387945 -0.476085 -0.438632 -0.103436 0.286814 -0.288204 0.511794 0.915090 -0.436544 -0.562935 0.509600 0.438361 0.023468 0.351701 0.192959 0.577616 -0.177709 -0.203249 -0.206526 -0.233398 0.157838 -0.197615 0.048460 -0.182386 0.431644 -0.008730 -0.434067 0.917960 -0.173196 -0.270972 0.290210 0.108558 -0.327902 -0.401619 0.436670 0.378692 0.573679 0.134869 0.710255 -0.251107 -0.266887 0.087797 -0.231678 -0.073130 -0.325588 -0.008929 -0.046310 0.285823 -0.316360 -0.318476 -0.140061 -0.323889 -0.208452 0.340923 0.116774 0.176040 0.165562 0.050834 0.164233 0.611994 0.002365 -0.020618 -0.471676 0.263665 0.307892 0.073771 -0.448841 -0.159869 -0.128351 -0.088825 0.122472 0.042822 0.370172 -0.165035 -0.046663 0.067064 -0.029362 0.040400 0.107949 -0.434057 0.024787 -0.030155 0.280490 0.124991 0.466507 0.584358 0.516533 0.266095 0.149337 -0.032046 -0.005958 -0.099365 -0.124464 0.026467 0.342706 0.303689 0.433322 0.379425 0.273921 0.530888 0.347268 0.173523 0.542946 0.035572 0.829055 -0.237717 -0.139101 -0.042904 0.140872 0.525544 0.710339 -0.092404 0.051466 0.266419 0.149363 -0.235367 -0.451737 0.078443 -0.081322 -0.024404 0.314637 0.360266 -0.013334 -0.168981 0.669743 -0.053677 -0.753480 0.362953 0.155822 0.341930 0.235615 0.000569 0.134505 0.278274 -0.195406 0.263532 0.389951 0.362928 -0.575765 -0.099010 0.097982 0.386922 -0.020348 0.389135 -0.527665 0.234800 0.188585 0.428562 -0.047437 0.223933 -0.414296 -0.171130 0.241964 -0.092446 -0.009506 0.300124 0.204538 -0.322881 0.016109 -0.425228 -0.228700 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.039374 -0.574476 0.163633 -0.471866 -0.215704 0.267328 -0.244204 -0.367844 -0.014576 -0.225807 0.132578 -0.074190 0.048653 0.620722 0.079169 -0.457943 0.126323 0.289889 0.114887 0.262630 -0.010053 0.206953 -0.190357 -0.089165 0.025810 -0.197642 0.073040 0.272612 0.025641 0.140605 -0.254146 -0.309434 -0.311839 0.658990 0.303943 0.434832 0.005979 0.987331 0.030249 1.128128 -0.415088 -0.401723 0.381452 -0.125275 -0.114874 -0.108767 -0.491579 0.135008 -0.390402 -0.252750 0.280468 -0.190308 0.186444 -0.082637 0.143486 0.122245 -0.422319 -0.111241 0.180551 -0.161975 -0.111097 -0.288086 -0.216134 0.059034 -0.719462 -0.244113 0.142310 0.310652 -0.141169 -0.049225 -0.173567 -0.554827 0.956467 0.398203 -0.336492 0.039440 0.321759 -0.422409 0.290537 0.170887 -0.747466 -0.217571 -0.268996 -0.476066 0.687695 0.014739 0.704383 -0.863164 0.550234 -0.996319 0.299280 -0.523018 0.335567 0.764925 -0.602512 0.281330 0.451850 0.981160 0.096925 0.088543 0.449566 0.383402 -0.442797 0.193578 0.730243 0.064047 -0.205582 -0.408506 -0.299463 -0.384084 0.085202 -0.599663 -1.093247 0.116024 -0.102798 0.483075 -0.371779 0.485609 -0.147158 0.263387 -0.810816 0.268449 0.112874 -0.165566 0.234407 0.275704 -0.174745 0.048770 -0.240809 0.519497 -0.435130 0.099303 -0.247458 0.384130 -0.349707 0.299132 -0.401686 0.087445 0.277626 -0.382402 -0.690548 -0.611141 -0.345314 0.741828 -0.135522 0.857246 0.935801 -0.444880 -0.375377 0.561150 0.050359 0.141205 0.474667 0.267099 0.353569 -0.155028 -0.141795 -0.432265 -0.199776 -0.125422 -0.219028 0.094749 -0.205341 0.517742 -0.264442 -0.412488 1.490526 -0.221720 -0.383114 -0.462699 -0.044416 -0.385155 -0.369257 0.817645 -0.612340 0.432385 -0.137502 0.771900 -0.142546 -0.151352 0.105447 -0.610900 -0.149420 -0.586366 0.036720 -0.210041 0.400111 -0.616286 -0.466803 -0.003360 -0.250442 -0.131338 0.316833 0.350711 -0.054044 0.236423 0.117024 0.764158 0.645143 0.158983 -0.217890 -0.357325 0.293445 0.337446 -0.378219 -0.131302 -0.019396 -0.132483 -0.099167 -0.240165 0.165517 0.241359 -0.701521 -0.181749 -0.268380 0.119877 0.243591 0.300246 -1.053829 0.111910 0.337192 0.182325 0.493822 0.338622 0.609715 0.548703 0.368055 0.067579 -0.029176 0.113657 -0.423544 0.091411 0.236197 0.375614 0.158308 0.601800 0.379634 0.227548 0.324687 0.513519 0.603522 0.450185 0.312076 0.821686 0.366335 -0.224061 0.082900 0.040108 0.560537 0.825673 -0.304739 0.555684 0.294436 0.110593 -0.325385 -0.511202 0.130921 -0.102709 -0.179214 0.207795 0.014537 0.148104 -0.289232 0.715756 -0.015097 -0.846199 0.163714 0.208904 0.351654 0.567638 0.021750 0.292748 0.154102 -0.271888 0.738684 0.355456 0.261322 -0.438584 0.093932 0.031323 0.034968 0.596633 0.402888 0.066015 0.403853 0.079149 0.632747 0.169167 0.110371 -0.270472 0.049196 0.110492 -0.485738 -0.023204 -0.022797 0.173872 0.038988 -0.065999 -0.681125 -0.652628 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = 1.623678 0.318188 1.323778 -3.465805 -0.864638 -0.911446 5.033084 -2.587556 -2.264502 6.398540 0.494659 -2.901532 -3.063509 3.232338 0.188065 -1.648013 1.145657 -2.341559 -1.453185 -1.234147 -1.937124 1.340637 -0.848559 -3.804838 1.730690 -0.720450 1.468728 3.507556 -1.367862 0.848579 0.869724 -2.216171 1.908980 6.061795 1.754208 -0.105396 -3.312486 6.949964 -5.908598 6.919761 -5.240344 -5.868934 8.808759 -0.867826 -0.113428 -5.406471 -0.254557 4.027653 0.623532 -4.205010 -1.317748 0.075721 1.424741 -5.287896 -2.920191 5.013789 -4.566443 1.044534 2.675440 -4.550228 -5.779479 -1.606625 1.234185 1.897897 -5.491506 -3.913365 -0.311663 -2.645091 -2.192204 0.851655 -4.776414 -3.364194 2.327163 1.790198 -0.709996 0.938488 -2.787002 -1.753819 2.392917 -0.303941 -2.721589 -2.821446 0.327697 -1.868900 1.493091 2.341832 4.170245 -8.091381 0.193357 -7.061504 2.381542 -3.771267 3.454550 5.021390 0.271307 5.248202 -0.040099 1.672848 -0.311946 -1.221911 2.776934 1.673234 4.004191 1.451308 4.202607 5.174674 -4.327727 -6.675471 -3.329889 -1.831218 2.337346 -1.584653 -4.241583 2.826557 -3.838624 -1.911283 0.499532 -0.051666 -2.601714 4.587587 -6.963631 -0.046394 1.961057 -1.484394 3.333971 3.036430 0.358600 0.550454 -0.499817 2.636216 1.143604 3.044994 -0.006027 4.802375 -2.405177 -2.048501 -0.204338 1.341850 2.191131 -3.763737 -5.012979 -7.586960 -2.163238 2.992983 -3.218738 3.383229 7.814206 -2.113262 -3.923105 3.197180 -0.461458 1.050169 1.200624 1.358045 7.176133 -4.066156 0.707179 0.656759 0.439397 3.597617 9.968153 -1.895188 -5.083803 4.200189 -2.651640 -2.302497 2.725422 0.137995 -0.226199 -0.607977 0.267352 -1.934580 -3.754980 5.217878 -5.653560 5.355662 -3.711113 6.393872 -2.893516 -0.985383 1.898479 -5.843212 -2.204969 -5.673193 0.435030 -0.809659 3.707030 -3.892025 -3.407369 -2.051973 -1.329992 -1.309909 6.229036 -7.177858 -1.075035 -0.333638 -0.869902 5.257476 1.212226 -2.793711 -0.999695 -4.184774 1.904345 2.819099 2.131392 -6.259440 -2.572499 -1.148302 -2.544409 0.641386 0.304261 3.337080 -2.497401 0.424747 3.947483 -0.306353 -1.718415 -0.956493 -5.745627 2.148692 1.394104 1.818105 1.369540 7.655851 3.241999 3.151187 -0.696735 1.698639 -1.365506 -1.941349 -6.682497 1.777499 0.066820 0.662855 3.090080 3.748782 2.192859 2.507800 4.993517 0.609540 -1.293128 4.490978 0.539880 4.865950 -2.275025 -1.838612 3.009603 -0.431918 3.794672 4.297091 1.164805 -5.265645 3.377871 -3.023910 -4.314181 -0.271068 -0.730812 -0.927044 -0.368894 4.789724 4.311819 -1.018394 -1.082676 8.594947 -1.394516 -9.977641 3.695137 2.412355 3.770474 4.064887 -2.190416 3.838538 3.994501 1.816453 1.829879 3.126977 2.764773 -5.351361 0.552206 0.624264 2.545976 4.779758 -0.535839 -12.017041 -0.776371 0.946479 6.281395 0.347475 6.957160 -3.106429 2.580483 0.704072 0.717402 1.368362 -0.993095 3.405483 -0.926374 0.192442 -7.470410 2.672691 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.483503 0.420282 0.637910 -1.152109 -1.099703 -0.108457 0.471337 -1.113581 -0.668778 1.348147 0.340107 -1.099377 -1.164484 1.270941 -0.634276 -1.093145 -0.249628 -0.482593 -0.425876 -0.969316 -0.416567 0.554697 -0.248598 -0.894979 0.377927 -0.511352 0.265143 1.039136 0.541070 -0.009341 0.210812 -0.619978 0.707049 2.039236 0.609312 -0.026964 -0.600229 2.479268 -0.800606 1.359503 -2.175222 -2.048620 2.487594 -0.195704 0.007490 -2.173239 -0.597938 1.172796 -1.113889 -0.195704 -0.244262 -0.073875 0.193522 -1.296128 -0.588856 1.480735 -2.250153 1.626480 0.656356 -1.407843 -1.372322 -0.423963 0.049509 0.345764 -0.589863 -1.245817 -0.180048 0.244339 -0.977913 0.480664 -0.968757 -0.980912 1.803682 0.279133 -0.516322 0.338270 -0.498931 -0.420913 0.827653 -1.006274 -1.188150 -0.830868 0.578919 0.083589 0.740452 0.857845 1.002578 -2.747697 -0.156484 -2.514073 0.928635 -1.246773 1.124579 1.491560 -0.911315 1.499990 0.314714 -0.308309 0.572385 0.149245 1.212953 0.355231 1.173343 0.703633 0.937207 1.259936 -0.739549 -1.469691 -0.831047 -1.075240 0.201924 -0.229604 -2.317187 0.657399 -1.064955 0.206475 -0.098722 -0.063129 -0.340714 1.168216 -2.260143 -0.546897 0.596340 -0.425303 1.156770 0.957791 0.020433 0.428579 -0.361954 1.216613 -0.055375 0.719563 -0.052782 1.350717 -0.250800 -2.116299 -1.567761 0.494577 0.646397 -1.127035 -1.730923 -1.934435 -0.708334 0.585420 -0.908286 1.043504 2.797462 -0.828442 -1.786797 1.508875 0.027218 0.404267 1.350316 0.545685 2.466541 -1.097639 -0.040011 -0.073967 -0.290651 0.957182 1.619759 -0.498020 -1.441265 1.211221 -0.178175 -0.938770 0.436081 -0.340216 -0.530335 -0.440192 0.041044 -0.782130 -0.965846 1.576812 -0.700321 1.980760 -0.944040 2.346453 -1.168226 -1.453480 0.483849 -1.717055 -0.503210 -0.720804 0.253676 -0.142445 1.168611 -1.650784 -1.195487 -0.383120 -0.476920 -0.665390 1.732847 -0.837799 -0.104873 0.223991 -0.037676 1.598269 1.042159 -0.705125 0.044534 -1.503793 0.584428 1.182654 0.802909 -2.720416 -0.450830 -0.465734 -0.592565 0.497063 0.056651 1.022335 -0.333786 0.088504 0.598841 -0.552988 0.264839 -0.023116 -0.859001 0.770331 -0.246415 0.598761 0.269992 2.163090 1.609316 1.151293 0.141682 0.728495 -0.118640 -0.927092 -0.247510 0.472376 0.686164 0.080876 0.971195 1.510898 0.854313 0.781522 1.700233 0.771761 -0.450987 1.627417 0.065969 2.222579 -1.583189 -0.172576 0.217880 0.114174 1.459214 2.281670 -0.212784 -1.283446 0.999446 -0.368359 -0.457236 -1.146968 -0.290045 -0.311449 -0.381734 1.727226 1.407980 -0.388642 -0.342369 2.586675 -0.152293 -2.724020 1.859731 0.771057 0.844345 0.420816 -0.644766 0.157751 1.458904 -0.173858 0.212483 1.253994 1.094518 -1.880738 -0.506255 0.048076 1.335513 1.017537 0.497553 -3.105885 -0.139642 1.065455 1.990804 0.112957 1.593358 -1.140885 -0.608446 0.446058 0.161930 -0.014918 0.135034 0.675329 -0.829997 0.306220 -1.102124 -0.294676 +PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = 1.461279 -0.398454 1.812996 -2.753643 -1.738857 -0.516066 3.157682 -3.416733 -1.869778 5.346359 1.292031 -2.487863 -0.644751 3.431386 -0.332134 -1.238077 0.830826 1.201834 -1.103330 -0.594311 -1.320544 1.584252 -1.217780 -2.945012 1.535810 -0.720415 1.587403 3.343209 -1.818029 1.876015 0.549694 -2.287469 1.155922 5.827279 1.625518 0.481817 -2.619649 6.299447 -5.724137 6.125224 -5.251247 -4.545350 7.391965 -0.943155 0.676095 -4.919517 -2.488181 3.444059 0.740365 -4.648045 -1.067353 -0.399767 2.007972 -4.518698 -1.827431 3.478909 -3.824946 -0.680903 3.176181 -5.296313 -5.791989 -0.948303 1.194615 1.267542 -6.383042 -3.913976 -0.217106 -0.781846 -0.001176 0.657869 -3.913268 -4.771363 2.847109 0.566358 -1.268825 1.047158 -1.654783 -3.023533 2.906106 1.792059 -3.284267 -2.951124 0.069207 -3.039531 1.501485 1.569278 5.188327 -7.859977 1.842276 -7.312913 2.643167 -3.404179 3.244838 5.077095 -1.839250 4.307108 1.417733 4.185839 0.504328 0.048966 3.037790 2.050287 2.229645 1.256342 4.467746 4.434632 -3.989851 -6.128065 -4.192943 -3.109581 2.968099 -2.617485 -5.952811 2.459642 -2.905137 -0.921699 -0.844069 -0.339066 -0.668096 6.592059 -6.693712 2.258487 3.032195 -1.394260 1.617730 3.111573 -0.062257 0.224080 -1.386242 2.375026 -0.787713 1.863175 0.169342 4.593244 -3.707940 -1.963807 -0.386361 1.242259 1.562677 -3.956046 -4.591272 -7.442709 -1.549902 3.936342 -2.823889 2.321897 7.667304 -3.163212 -4.523871 3.038523 1.118973 -1.168835 1.650166 1.809359 6.967449 -3.795756 0.001382 -1.233319 -0.513671 3.334714 6.453384 -1.388252 -4.488191 4.814826 -2.562302 -5.367048 8.217406 -0.645158 -0.716936 0.527890 1.491975 -1.325675 -2.195588 5.237009 -4.578914 4.967442 -3.976708 6.149978 -2.576679 -0.684106 0.935065 -6.131074 -2.383547 -4.724900 0.445353 -0.837656 4.400459 -3.426546 -3.211463 -1.730986 -2.609982 -0.817921 5.822890 -5.511198 -0.457676 0.306442 -1.214958 3.715833 1.850614 -1.543140 -1.177776 -3.374645 1.923381 3.027219 0.927496 -5.996603 -2.613731 -2.272676 -1.936809 -1.845124 0.568597 4.062181 -3.310631 0.401471 2.444906 -0.712640 -1.619741 -0.930149 -5.473406 2.039068 -0.118216 2.880235 1.310809 6.675845 4.319061 4.311377 0.292228 1.856137 -0.554724 -2.016625 -6.207059 2.403568 0.396404 1.164096 2.867583 3.767148 2.542161 2.816576 3.510298 0.134336 1.984727 5.215418 0.965862 5.490345 -1.374818 -0.929211 2.326134 0.475393 4.158165 4.597616 1.937949 -2.965952 2.181493 -2.365600 -4.925509 -1.277240 -0.156761 -0.108934 -1.569490 3.391135 3.936925 -0.679572 -1.735020 7.986438 -0.814802 -9.035326 3.346346 1.615921 3.409078 4.274131 -1.379279 4.169313 2.995121 2.734131 2.589963 3.234693 3.240943 -6.111503 -0.212078 0.802950 2.710901 5.856154 0.802136 -10.988845 1.330111 0.640318 5.552035 -1.514836 6.239476 -3.738241 2.935318 0.919436 -0.167667 0.935961 -0.716442 2.715844 -0.365829 -0.166861 -7.987034 1.111980 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = 1.948524 0.612147 1.756591 -2.125563 -0.890471 -0.978649 6.101634 -3.136473 -2.512425 6.273515 1.092941 -2.294407 -3.685319 2.360272 -0.171000 -1.035035 1.286877 1.489172 -1.637272 -1.523036 -2.061231 0.658966 -1.111921 -3.653711 1.922351 -0.498338 1.999868 5.147001 -1.417603 2.915653 0.729581 -1.995660 2.065468 5.980852 1.530844 -0.328468 -2.928039 7.664354 -8.741046 6.280917 -6.281075 -6.305357 11.238388 -0.920410 -0.716043 -9.298934 -2.734939 3.942623 0.315736 -4.843840 -1.622912 -0.351641 2.016471 -5.384489 -2.673634 6.236922 -5.574864 -0.338340 3.288360 -6.893742 -8.216328 -1.017828 1.710819 0.733448 -7.257567 -4.267479 -0.359058 -3.406808 -0.317386 1.260008 -6.048566 -4.462768 2.856370 0.159997 -0.939849 1.115392 -2.553320 -2.557171 2.368787 3.723726 -2.698914 -3.148841 0.558643 -2.094508 1.233508 1.788550 5.862291 -9.286318 -1.082552 -9.151154 2.191958 -4.942458 3.685168 5.064454 -1.728843 6.144923 0.673851 2.984596 -1.192630 -0.717072 3.025148 2.842399 4.620669 0.659020 5.626421 5.856021 -4.330230 -8.357692 -5.386728 -2.290290 2.849760 -2.025675 -9.199848 2.427337 -5.054242 -2.072533 -0.130883 -0.829915 -1.066019 7.525957 -7.177949 4.863199 3.023282 -1.512301 2.642498 4.760382 0.309626 0.383689 -0.737345 2.228143 0.491111 3.359114 -0.087777 4.617134 -3.761975 -4.715828 -0.078523 1.012160 2.038607 -3.616730 -4.859728 -8.518423 -1.686807 4.696511 -2.784010 -1.036176 9.022007 -2.589007 -5.579309 2.511094 0.143319 -0.205993 1.585199 1.841034 10.732224 -4.733156 1.010997 0.060151 0.382620 3.910141 8.726458 -2.449857 -5.149916 4.574666 -2.222814 -7.334159 8.261803 -1.375044 0.181009 3.329287 1.178721 -0.808462 -3.988088 6.604292 -5.384808 6.363016 -5.239846 6.145609 -2.966041 -1.040487 0.897924 -7.990056 -2.087753 -6.178982 0.436072 -1.478850 5.800353 -3.292491 -3.526729 -3.405170 -3.018486 -0.308845 8.387760 -8.862480 -0.984914 -0.446457 -1.352216 2.492071 0.688715 -2.608322 -1.186230 -5.013612 1.604230 4.310157 1.337332 -9.610803 -2.611168 -1.989374 -2.263065 -2.712725 0.623351 4.071117 -2.242021 0.453203 3.853518 -0.821584 -2.346719 -1.439998 -6.252783 2.159212 0.178171 3.027356 1.264143 9.219169 5.457631 3.773238 -0.788131 2.969334 0.633927 -4.003658 -8.508518 2.224686 -0.552524 2.269779 2.791164 3.681114 2.124092 2.512419 2.895846 -1.063252 1.399250 5.104367 3.492346 6.563345 -2.102079 -2.533832 3.082563 -0.328005 3.640746 5.137032 4.424033 -4.466688 2.148204 -2.568520 -6.234307 -2.685112 -0.908435 -0.029021 -2.505666 6.669738 6.029313 -1.400661 -1.456362 11.065848 -1.269692 -12.664838 3.644278 1.742758 3.240638 6.090397 -1.828489 4.243061 4.696667 5.392657 2.029248 2.923600 3.344093 -7.577505 0.742834 0.767895 3.084747 6.149605 -1.510255 -16.978225 1.485353 0.290338 8.141215 -0.699533 9.245724 -3.319852 5.300191 0.295550 0.041417 1.561449 -1.187488 4.171725 -0.377578 -0.690602 -11.442420 2.959268 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = 0.330437 0.055430 0.681142 -0.900196 -0.605618 -0.217130 1.062819 -0.701517 -0.446550 1.367799 0.197749 -0.718930 -0.949257 0.992414 -0.128408 -0.708435 0.015997 -0.540188 -0.378217 -0.293656 -0.387551 0.562949 -0.239076 -0.666454 0.558963 -0.204163 0.270877 1.147811 -0.091934 0.061033 0.311883 -0.587481 0.381829 1.636078 0.323430 0.185544 -0.540575 2.046769 -1.527285 1.798124 -1.661997 -1.598776 2.236944 -0.246595 -0.109382 -1.644554 -0.312175 1.112278 -0.608580 -0.902435 -0.046430 0.145306 0.311177 -1.246361 -0.389415 1.240041 -1.786782 0.567081 0.673537 -1.165472 -1.318358 -0.278199 -0.017368 0.284910 -1.166080 -1.093823 -0.140632 -0.460541 -0.590922 0.276874 -0.827926 -0.836547 1.171025 0.261604 -0.315737 0.450489 -0.274622 -0.457983 0.891444 -0.392842 -0.919433 -0.815642 0.140595 -0.599148 0.687250 0.516597 0.934473 -2.220066 0.135606 -1.938922 0.834350 -1.111601 0.779065 1.393493 -0.429495 1.505595 0.251613 0.255164 0.165029 -0.232210 0.907057 0.535836 1.080212 0.669137 1.025893 1.171945 -1.172682 -1.640734 -1.292524 -0.850107 0.585677 -0.593360 -1.726378 0.587595 -0.646101 0.013558 0.232627 -0.130084 -0.344726 1.379704 -1.993299 0.562383 0.660712 -0.336151 0.591461 0.946025 -0.017265 0.001388 -0.246414 0.931658 -0.149880 0.870925 0.073738 1.225490 -0.435581 -0.839313 -0.376765 0.259917 0.381613 -0.878193 -1.254480 -2.042293 -0.439880 0.834122 -0.801144 0.864214 2.363765 -0.721930 -1.403962 1.126070 0.094021 0.221346 0.414077 0.450793 1.763743 -0.825021 -0.273533 -0.302550 -0.262315 0.963439 2.158307 -0.170297 -1.249794 1.260485 -0.398096 -1.074034 1.176161 -0.131562 -0.288366 -0.102141 0.152144 -0.708241 -0.838869 1.428577 -0.940262 1.602443 -0.950815 1.848615 -0.705054 -0.623971 0.368726 -1.781803 -0.416184 -1.442191 -0.155954 -0.043722 0.766670 -1.270011 -0.868576 -0.782516 -0.442797 -0.482562 1.482658 -1.529441 -0.071405 0.030986 -0.010586 1.379709 0.655116 -0.562227 -0.232275 -1.288600 0.555428 0.665852 0.456471 -1.976180 -0.451861 -0.291092 -0.573669 0.406119 0.033259 0.886490 -0.629308 0.125882 0.793925 -0.299965 -0.405611 -0.147427 -1.588101 0.380148 0.240917 0.655477 0.546031 1.776401 1.325266 0.963244 0.059413 0.838273 -0.219924 -0.426535 -1.288851 0.397619 0.145343 0.262899 0.841369 1.147192 0.814383 0.602677 1.268511 0.624366 -0.206884 1.397640 0.221922 1.636076 -0.679946 -0.484775 0.587669 0.274639 1.077948 1.281671 0.042962 -0.840882 0.928262 -0.337857 -0.904335 -0.422770 -0.121641 -0.356340 -0.147004 1.456374 0.961096 -0.384640 -0.145371 2.212837 -0.323902 -2.542674 1.037320 0.581282 0.951192 0.639609 -0.305896 0.667023 1.064883 -0.013472 0.534181 0.865813 0.828267 -1.633016 -0.009780 0.192150 0.804960 1.378763 0.399107 -3.161827 -0.423853 0.272727 1.684303 -0.105721 1.847274 -0.877225 0.063421 0.340049 -0.020801 0.138538 -0.054664 0.628047 -0.276974 0.185496 -1.846376 0.111531 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.784417 -0.139030 0.776854 -1.455384 -0.779581 -0.169936 1.364356 -1.259832 -0.710645 1.444395 0.433366 -1.025390 -1.248755 1.485996 -0.298959 -1.026638 0.496969 0.083363 -0.431601 -0.318559 -0.760347 0.538053 -0.518591 -1.062365 0.763564 -0.282949 0.472476 1.711040 0.297043 0.213847 -0.229230 -0.820073 0.350118 2.729212 0.684476 -0.120222 -0.627259 3.613094 -1.688291 2.399943 -2.449750 -1.900870 3.522876 -0.477821 -0.355389 -3.128578 -1.246048 1.534800 -0.864589 -1.117565 -0.086677 -0.242273 0.463522 -1.827845 -0.632613 2.254653 -2.669131 0.758664 1.319920 -1.576026 -2.167229 -0.702126 0.320941 0.024195 -2.098266 -1.709050 0.151864 -0.541287 -0.854253 0.469467 -1.976206 -1.791918 2.039685 0.543181 -0.739605 0.563278 -0.506345 -1.318441 1.056700 0.231736 -1.651686 -1.154949 0.274352 -0.857703 1.506945 0.308090 1.800567 -3.807908 0.156386 -3.803791 0.785868 -2.319684 1.588494 2.579119 -1.367187 2.146873 0.425852 0.934942 -0.030849 0.101918 1.693806 0.971097 1.024948 0.398773 2.073607 1.562686 -1.187037 -2.487822 -1.487502 -1.189065 0.394846 -0.687588 -3.779715 0.983071 -1.794606 0.180949 -0.276917 0.364666 -0.569217 2.150727 -2.710189 0.729131 0.925559 -0.721066 1.258326 2.072984 -0.135024 0.141004 -0.804573 1.497957 -0.093608 1.177315 -0.455972 1.788575 -0.936439 -1.941219 -1.170536 0.072780 0.948509 -1.455522 -2.545870 -2.933285 -0.943188 1.045742 -1.124525 1.120705 3.813796 -1.157547 -2.167903 1.812127 0.032626 0.679432 1.510528 0.722681 3.636571 -1.654521 0.205735 -0.323398 -0.034027 0.863528 1.464034 -0.735581 -1.774097 1.638910 -0.736296 -2.057136 3.140807 -0.301497 -0.370542 0.635924 0.149018 -0.757921 -2.007931 2.946002 -1.426136 2.645045 -1.208954 3.096395 -1.120801 -1.126434 0.650785 -2.067998 -0.336372 -1.946751 0.073720 -0.484511 1.925214 -1.698621 -1.744414 -0.683976 -0.783353 -0.465038 2.704208 -1.070554 -0.301158 0.047378 -0.140715 1.545083 1.206162 -0.977697 0.025300 -2.206194 0.900513 1.657538 0.179479 -3.097270 -0.521034 -0.607570 -0.878393 -0.322871 0.296643 1.378782 -1.224784 -0.368002 0.998106 -0.053915 -0.030784 -0.082392 -2.764012 0.864001 -0.124891 0.661566 0.869738 3.084730 2.377634 1.571833 0.113740 0.678884 0.045656 -0.953713 -2.102852 0.432070 0.067962 1.075730 1.115363 1.622424 1.215441 0.893663 1.308089 0.380771 0.355766 2.164233 1.290739 3.012908 -0.766033 -0.922718 0.821154 -0.321937 1.928334 2.745944 0.359987 -1.039170 1.205701 -0.191193 -1.658380 -2.008503 -0.331487 -0.237607 -0.906422 1.993569 1.388159 -0.542923 -0.543168 4.046178 -0.495048 -4.429904 1.687444 0.788156 1.275980 1.625158 -0.346212 1.103170 1.766492 0.433097 1.028545 1.247921 1.446679 -2.457934 -0.013412 0.244481 1.300899 1.508292 0.244652 -4.630030 0.492735 0.589613 3.056669 0.429944 2.460678 -1.125060 0.714994 0.343524 -0.287229 0.241789 -0.235275 1.410376 -0.646606 -0.195831 -3.219939 -0.034171 +PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = 7.262028 -0.949371 6.058425 -8.004377 -3.685918 -1.022466 13.006828 -10.541072 -6.043533 20.215695 2.275286 -7.218187 -5.215000 6.709004 -0.966902 -2.568168 3.704198 0.510176 -2.403033 -2.910856 -5.257580 3.229865 -3.818526 -11.147887 4.277197 -2.160557 6.529048 12.359223 -6.605784 8.299149 2.313159 -7.362573 3.799939 18.604513 6.577492 -0.215885 -9.274020 21.308686 -20.221340 18.645549 -16.613208 -17.435005 25.807071 -2.611787 2.015099 -15.692375 -4.322358 11.659484 0.774277 -14.959944 -5.028219 -1.860591 7.526011 -15.226581 -9.469879 12.736177 -14.078768 -2.856066 8.833917 -17.260553 -20.695910 -2.774731 5.916292 6.879994 -20.362165 -12.389140 -0.344103 -5.827172 -0.998915 2.934958 -14.499638 -12.745130 4.950188 2.581635 -2.783583 1.574117 -6.683932 -7.464518 8.103275 5.274370 -10.093269 -9.659739 -1.618837 -12.470545 3.882419 5.933309 17.939423 -23.598986 6.067725 -23.138168 7.626054 -11.143062 9.788937 15.301262 -2.168720 15.766143 3.039574 13.065151 0.282223 -3.264571 8.121279 7.353983 9.928253 3.793754 14.204966 15.399942 -13.207582 -19.572862 -14.194170 -7.133799 8.394967 -8.425960 -17.353602 8.221554 -10.597307 -2.555504 -1.273805 -1.616414 -5.154241 20.135341 -22.939631 8.139963 6.992426 -4.019227 6.517331 8.949957 0.461546 1.331146 -0.868181 7.141942 -0.304910 6.384257 2.247210 14.905038 -12.259959 -4.219467 0.273042 5.871047 6.823823 -11.680018 -14.572477 -24.571994 -5.727839 13.240027 -8.542523 8.134937 24.934180 -7.870308 -13.215573 7.281181 -2.237352 -3.262475 5.111861 5.464089 21.460272 -12.255174 0.773901 -1.991385 0.314473 10.557010 26.046799 -5.959033 -13.820815 16.288018 -8.752249 -9.651720 19.579393 -0.376812 -0.456040 1.042225 3.218682 -3.765600 -8.630138 16.577960 -18.949440 15.638245 -11.876377 18.359935 -7.623985 -0.771656 2.885066 -21.289344 -7.852857 -15.987647 1.863968 -3.796090 13.566100 -11.381326 -10.146248 -7.395416 -7.230615 -1.882778 20.382786 -18.967033 -1.960084 1.018851 -4.835742 14.420314 2.891139 -6.183899 -5.138873 -11.016976 5.620370 8.496119 3.240608 -18.797749 -10.820338 -6.343677 -6.330009 -3.932532 2.544488 13.615080 -11.009932 2.112257 10.128092 -0.102638 -6.414747 -2.962119 -19.917409 6.986383 2.581428 8.257762 4.425004 22.503140 11.945274 13.066284 -1.508342 6.191431 -2.639867 -7.224511 -20.876159 6.160612 1.662065 2.732786 7.980836 10.784929 6.147595 9.029310 10.574287 1.126320 3.432279 15.196823 2.789857 14.893031 -7.351982 -4.156551 8.691127 0.951640 11.350100 10.961831 7.038765 -12.051966 6.518367 -10.499436 -15.841271 -2.644760 -0.333498 -0.759736 -1.067402 11.782426 15.426424 -1.569707 -5.537496 24.657901 -1.812643 -31.783907 10.584493 5.797314 10.226372 16.652230 -6.320256 14.144268 9.410321 10.925997 8.726383 10.791066 7.793578 -18.791817 2.749084 3.365144 8.584347 16.329102 -0.305304 -39.278075 1.496262 0.147961 17.127723 -2.746682 23.936070 -12.637080 10.777342 2.403756 -1.324222 3.981429 -2.400126 10.167847 0.247406 1.039965 -26.558997 7.351497 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 1.761193 -0.214243 1.391883 -2.199798 -1.162084 -0.082540 2.345462 -2.538339 -1.319073 3.876643 0.712825 -1.802728 -1.351412 1.911926 -0.435243 -1.120495 0.753861 -0.206808 -0.595201 -0.679946 -1.177531 0.773539 -0.912207 -2.537617 0.955312 -0.541196 1.299927 2.806812 -0.748270 1.342861 0.071310 -1.617088 0.797171 4.603391 1.598630 -0.194875 -1.701929 5.397673 -3.863346 3.966706 -3.984748 -3.927640 5.898828 -0.669159 0.155828 -3.773923 -1.300034 2.719274 -0.666378 -2.802876 -0.806272 -0.548245 1.487955 -3.407175 -1.996539 3.194703 -3.911156 0.288094 2.069481 -3.383108 -4.325025 -0.885967 1.198585 1.296323 -3.978886 -2.959846 0.150526 -0.893213 -0.729784 0.668419 -3.317742 -3.098357 2.212771 0.762767 -0.798113 0.435889 -1.376905 -1.971906 1.948560 0.598066 -2.666116 -2.140595 -0.119179 -2.453845 1.583698 1.172786 3.751510 -5.815644 1.234185 -5.796968 1.740149 -2.930304 2.445604 3.804958 -1.316184 3.492445 0.760955 2.635898 0.285534 -0.451614 2.314418 1.534368 2.036299 0.830154 3.277855 3.203182 -2.650316 -4.133651 -2.933985 -1.920110 1.413299 -1.730120 -4.823643 1.944191 -2.641078 -0.165657 -0.450159 -0.131212 -1.164216 4.249892 -5.203902 1.241186 1.443890 -0.996622 1.856924 2.429188 -0.061191 0.421205 -0.521411 2.065213 -0.090749 1.431606 0.171185 3.381075 -2.380683 -1.875751 -0.966137 1.239498 1.790474 -2.819879 -3.858222 -5.463824 -1.377615 2.508285 -2.005973 2.385557 6.092645 -1.886347 -3.338682 2.248565 -0.319703 -0.185968 2.043216 1.234900 5.269413 -2.911277 0.268501 -0.449722 -0.035346 2.032242 4.418214 -1.427680 -3.091522 3.540558 -1.736448 -2.126250 4.529643 -0.046647 -0.364127 0.278647 0.542948 -1.156855 -2.460502 4.201688 -3.436843 3.863717 -2.173749 4.786007 -1.959185 -0.929959 0.910358 -4.256004 -1.540492 -3.336867 0.252597 -0.811967 3.133278 -2.873284 -2.601134 -1.433389 -1.389298 -0.660226 4.662715 -2.890709 -0.370364 0.324677 -0.893343 3.175043 1.339129 -1.531586 -0.712866 -2.914412 1.400005 2.359417 0.593822 -4.547222 -2.149453 -1.469616 -1.399390 -0.434586 0.566768 3.092290 -2.522543 0.072012 2.115996 0.050088 -0.775847 -0.414003 -4.549005 1.669609 0.260550 1.572246 1.199281 5.233154 3.096528 3.089139 -0.093538 1.202931 -0.476711 -1.559592 -3.984100 1.040251 0.463367 1.016406 1.938947 2.708617 1.590138 2.025801 2.575836 0.699745 0.589382 3.704294 0.942610 4.011440 -1.785585 -0.941156 1.656644 -0.039207 3.026025 3.373677 0.839631 -2.526226 1.672302 -1.783965 -3.139421 -1.562235 -0.199530 -0.308050 -0.483942 2.713183 3.159530 -0.386290 -1.320235 5.960891 -0.400386 -7.297395 2.819766 1.428304 2.316681 3.417468 -1.404713 2.728813 2.324353 1.632075 2.018938 2.589309 2.081827 -4.228831 0.409280 0.695667 2.288819 3.034108 0.269986 -8.184649 0.560546 0.536691 4.202434 -0.048999 4.848205 -2.862096 1.705617 0.559754 -0.360814 0.811114 -0.401388 2.364597 -0.550385 0.245851 -5.503624 0.976209 +PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = 6.012211 -0.885045 5.309061 -7.005262 -6.924752 -0.153284 6.629426 -10.035741 -5.092712 17.057552 3.974734 -6.810734 0.211642 11.483735 -1.673828 -3.239817 1.662360 1.212549 -2.000569 -1.361169 -4.133147 4.930675 -4.150462 -8.282123 4.099555 -1.716552 3.860427 8.510209 -6.477641 5.197798 0.216853 -6.688558 2.493340 16.761256 5.921040 -0.971032 -5.514027 20.801066 -17.506724 16.452923 -14.384821 -15.527322 20.330031 -2.620926 2.486246 -9.294464 -6.150907 9.986076 1.848301 -11.614676 -0.917117 -1.676563 6.063937 -11.152434 -4.893763 8.848044 -12.950682 0.429725 8.637548 -12.856979 -15.355315 -3.824597 2.494035 4.343396 -17.340196 -10.691930 0.410622 0.401057 0.627605 0.679843 -10.407616 -13.662290 10.004937 1.858626 -3.495854 1.944248 -4.068842 -9.442371 8.843518 2.431833 -12.671708 -7.604435 -0.880651 -9.787686 5.499915 5.273559 16.256033 -23.088586 7.423390 -23.350518 7.769526 -9.356098 8.946141 15.756591 -7.715109 10.921834 4.895677 15.319270 4.017003 -0.252118 9.336612 6.583950 4.213569 4.296764 11.093985 14.340977 -11.448879 -15.313558 -12.172754 -8.567610 7.466027 -6.210796 -16.464978 7.408332 -6.805418 -0.059663 -2.742211 -1.302859 -2.874675 19.309582 -20.245064 4.121189 6.992700 -3.585596 5.749553 7.951364 -0.879588 1.698520 -4.057314 7.668723 -2.874132 4.332150 0.083792 12.988118 -12.237155 -5.761274 -4.606913 5.080464 5.781156 -12.313849 -13.601503 -22.958876 -3.132443 11.991145 -8.415754 9.344611 23.752062 -11.076756 -12.454315 9.776545 2.552197 -4.217043 7.284712 4.523516 18.409058 -9.947672 -0.563778 -3.041159 -2.371532 6.895432 16.452433 -3.033361 -11.049193 13.322462 -5.422215 -11.537284 23.576021 0.324894 -3.763429 -1.234534 4.243839 -3.842160 -5.839299 15.411489 -12.390870 10.886440 -9.104589 18.596123 -7.044791 -2.505180 3.287253 -17.551859 -6.219114 -13.040526 0.398501 -0.866684 12.511603 -10.367236 -8.852974 -3.814067 -6.634298 -3.579412 15.018278 -11.180871 -0.558040 2.157385 -2.819190 11.719715 7.806069 -3.364671 -3.426056 -9.530315 5.017150 8.392361 -0.108712 -18.022672 -7.899781 -6.513758 -4.941560 -3.783893 1.492769 11.435497 -11.502680 0.422056 6.786739 -1.229007 -2.416633 -0.457676 -14.693462 6.279081 -0.344431 8.603592 5.529293 18.064055 11.361094 14.976431 2.711674 5.242351 -2.777343 -5.160388 -14.287231 6.605778 2.914342 4.490788 8.351084 12.303106 7.619089 7.957864 8.631979 1.366432 5.392028 14.769993 1.799273 17.719079 -5.826418 -1.077060 5.178261 2.060844 12.631479 14.087111 1.126918 -8.420700 5.712319 -7.322050 -12.806115 -1.937921 1.094025 -0.959284 -1.984163 6.345239 12.033913 -0.789898 -5.475234 21.701692 -2.792215 -26.271006 10.174780 5.161189 10.203975 13.511728 -3.432932 10.974051 6.793713 6.136894 10.804575 12.100159 9.809052 -16.253735 0.697794 2.176458 8.586219 15.345219 4.172510 -29.942056 5.139039 3.070926 13.333868 -3.145537 16.527982 -12.042727 6.056616 2.584440 -2.303574 2.915751 -0.674873 8.069130 -1.602173 2.444706 -19.937326 1.371508 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = 4.937717 -0.992165 4.618426 -6.259295 -5.486773 0.889288 3.723183 -7.573145 -3.617026 12.460398 3.189205 -5.917565 -2.107565 5.826817 -1.477138 -3.113216 2.263972 0.078107 -0.334998 -2.878524 -3.319229 2.594011 -3.012046 -7.580105 2.558875 -2.487063 2.724003 7.376318 -2.914758 5.562810 0.306092 -4.911960 2.017161 14.098452 5.530702 -1.355341 -4.174751 15.953652 -10.098227 11.246025 -10.863381 -12.779914 16.641144 -1.538001 2.775614 -6.574547 -3.299158 7.936000 -2.547524 -7.451882 -1.682789 -2.248682 6.014729 -8.950162 -6.207909 7.013736 -11.130592 0.850325 5.485090 -10.727129 -12.132203 -2.262223 1.781629 4.936443 -11.009274 -8.170046 0.143915 0.800249 -0.606083 0.784293 -8.418608 -8.957575 6.279723 2.238310 -1.846336 0.821760 -2.697424 -5.648030 6.106853 1.446176 -9.788779 -5.948717 -1.486409 -8.359891 5.251623 3.970353 12.844259 -17.136211 5.393168 -18.554925 6.243682 -6.803167 6.966725 11.617537 -5.131237 8.802536 3.974705 9.714176 2.524047 -0.256885 7.827228 5.121399 4.141536 3.795368 9.630855 10.329081 -7.447724 -10.870502 -8.081214 -6.022011 3.717709 -5.336193 -12.298231 5.796685 -6.909865 0.540591 -1.859530 -0.363897 -3.351956 13.356791 -15.393574 1.156394 3.975194 -2.798682 5.262300 4.348907 -0.268383 1.213472 -0.899981 7.121754 -1.988667 2.086120 1.006312 10.590298 -6.852268 -4.963839 -4.657347 5.304670 5.581766 -9.220747 -11.747695 -16.293689 -3.354350 8.212555 -5.943356 8.222470 17.977180 -6.187098 -9.150244 7.457053 -1.746991 -2.780531 7.555485 4.082040 13.882143 -7.750226 -0.392793 -2.324372 -1.702704 4.874583 12.714519 -3.395512 -8.095959 10.837166 -3.704304 -3.998731 12.871638 -0.354112 -2.149945 -2.290806 1.876574 -3.636141 -5.552799 11.077079 -9.564626 8.691384 -5.294072 14.993151 -5.025393 -4.280471 3.197953 -11.705200 -5.097752 -7.559345 1.728731 -1.321009 8.314781 -8.629818 -8.054108 -3.112130 -3.725529 -2.807459 12.699183 -5.851237 -0.252911 3.011091 -2.920620 8.991888 4.388011 -2.936648 -2.547300 -7.364747 3.632571 6.272342 0.609908 -12.237268 -6.884872 -4.610457 -3.266063 -0.917061 2.234536 10.036605 -7.525594 0.355994 5.323389 0.032914 -1.099630 -0.007535 -11.610539 5.776120 2.076904 5.096245 3.774493 15.067575 8.663527 10.485816 0.258236 4.416755 -2.451567 -3.505935 -9.393482 3.030075 2.944268 2.674565 5.376411 9.272338 5.127100 7.036428 7.669494 2.834011 2.758483 11.112636 0.309460 11.615222 -6.058628 -0.774297 4.543235 0.838373 9.838810 10.641874 1.319533 -7.610034 4.239728 -5.939463 -9.027473 -3.145688 1.135136 -0.610455 0.117971 4.432622 10.187489 0.520815 -4.909063 16.220864 -0.463885 -20.615270 9.587717 4.218539 7.139837 10.372139 -3.968211 7.590112 4.738174 4.205285 7.827099 9.257436 5.896336 -13.218673 0.601001 2.158422 7.399179 8.964342 2.539776 -20.537162 2.262920 1.646785 10.190778 -0.314482 12.617655 -9.941444 2.541589 1.688305 -3.084020 1.190962 -0.449602 5.751366 -2.146989 2.942729 -13.716943 1.414067 +PE-benchmarks/cut-vertices.cpp__main = 4.800740 -1.899701 5.070003 -8.429675 -9.246657 0.210193 -0.268269 -7.992092 -3.494334 9.184152 3.072767 -7.375164 -3.542126 11.005085 -3.975201 -8.045853 0.372652 1.972401 -0.003918 -2.912495 -3.936004 5.367237 -3.733984 -6.045357 4.838583 -3.557337 0.686885 7.660136 3.467624 2.506157 -1.108335 -5.724248 1.208484 17.256491 4.575620 -0.817377 -1.647474 22.794440 -5.988449 11.594796 -13.699223 -14.133092 18.015449 -2.382608 1.712295 -8.932828 -7.067207 8.637330 -9.954444 -2.880033 0.986481 -1.497352 3.559205 -9.106461 -2.079770 8.215832 -17.774009 8.197769 6.785915 -8.655404 -10.140523 -4.287746 -1.893503 1.391626 -8.248953 -9.824661 0.019156 5.072990 -4.182822 1.129249 -7.408424 -10.027237 14.975738 3.107599 -4.702768 3.657421 -0.165450 -6.974392 7.508397 -4.786368 -13.552202 -6.728347 1.960480 -5.169101 9.793537 4.968102 12.462710 -22.219691 5.699492 -23.076862 7.797205 -11.310629 9.497719 16.722016 -12.480141 11.043690 6.014247 7.618969 6.341191 3.124877 12.364868 5.639447 2.498820 5.146129 8.322168 9.711199 -5.918327 -10.167385 -7.883336 -8.905150 0.339945 -4.195341 -20.187523 5.858631 -7.435406 6.264894 -2.682775 1.883568 -2.791443 11.907212 -18.475364 -1.664795 4.916981 -3.934966 7.624591 7.674533 -1.604296 0.723828 -5.002048 10.978923 -4.374145 2.676292 -1.806416 11.895520 -5.943679 -11.896648 -12.954774 2.602605 5.392340 -11.173144 -15.654788 -17.223509 -4.276351 6.524632 -7.091038 11.564907 24.310533 -8.932303 -12.003035 13.384019 -1.308689 2.356465 13.645290 5.042187 16.638780 -7.674593 -1.339978 -3.771263 -3.025758 3.719565 3.352513 -1.519377 -9.583165 10.436599 -1.253410 -5.553419 14.620326 -1.302429 -4.794283 -6.452418 2.090910 -6.023375 -7.378710 16.197499 -7.266549 12.566558 -5.429582 20.402396 -6.746138 -10.225574 4.667879 -12.663842 -3.601019 -7.155274 1.240404 -1.193505 8.955889 -13.191343 -10.487172 -1.602972 -3.992485 -5.071560 12.013723 2.315728 -0.487464 3.295383 -0.505298 11.783018 9.991713 -2.694748 0.545982 -12.291818 4.903903 8.097264 -1.614624 -17.608289 -3.271641 -3.868089 -3.929746 1.295706 2.057323 8.699403 -7.725486 -2.177856 2.493407 -0.584946 3.821234 1.232444 -10.372009 6.001197 -1.007993 5.270065 6.157277 15.401823 14.418790 12.215687 3.057540 5.245738 -1.450074 -4.523498 -1.998143 3.950495 4.528276 4.617173 6.914598 12.452481 8.891618 6.402456 8.561394 5.924394 1.777177 14.286405 2.876881 19.648839 -8.178972 -2.087060 2.578614 0.549803 13.764079 17.957721 -4.421605 -4.443871 7.096497 -1.393568 -5.698906 -9.385381 1.089867 -1.499766 -3.664869 6.001813 7.271361 -1.299564 -4.387132 19.711409 -1.735833 -22.695187 13.413050 4.931298 8.272457 5.999693 -1.275492 3.148222 7.997754 -2.532844 8.403608 10.202952 9.140319 -14.497255 -1.914789 1.385599 10.149993 8.765110 6.626343 -17.888085 3.942139 6.646360 12.933874 2.098307 9.015774 -9.083412 -4.667337 2.131853 -4.572800 -0.993883 0.457721 4.752332 -4.440380 3.656345 -10.252373 -6.617048 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/program-wish-womens-day.cpp__main = 3.892793 2.587473 3.727559 -7.737040 -2.858729 -1.323231 8.179237 -5.092062 -4.337880 13.999628 -1.006148 -3.666570 -5.433185 4.832257 -1.502987 -3.676883 1.551433 -5.729011 -3.802793 -3.319682 -5.501485 2.190064 -1.432856 -7.876043 3.237245 -2.420758 4.033446 7.263081 -3.826309 1.179091 2.857696 -5.006015 2.849256 12.290512 2.945324 0.969384 -5.188889 12.159818 -9.096629 11.787085 -11.693987 -9.998971 15.107224 -2.159099 1.640604 -13.464655 0.776054 7.182432 0.545031 -6.444756 -3.693903 -0.768957 2.166927 -9.865485 -4.178154 8.638934 -7.394578 2.108425 5.360349 -8.065134 -11.056633 -3.089301 3.222780 3.619193 -10.256898 -9.199433 -1.479411 -3.548320 -4.735137 3.400012 -10.136979 -4.745736 1.827174 3.758822 -1.862516 1.085235 -5.721909 -2.904987 3.213009 -3.244432 -4.200115 -6.535451 2.172351 -3.168969 2.522004 3.794213 7.895306 -13.670509 1.386707 -12.210706 2.274837 -6.985123 6.662810 9.350792 3.541073 9.278577 -0.617561 1.690378 -0.634992 -3.125873 4.324340 2.916485 8.693223 1.872315 8.285492 8.861918 -8.283415 -13.780516 -4.995353 -3.826958 3.722656 -3.293318 -7.983660 5.707758 -6.612652 -2.751490 0.360704 0.509400 -5.756578 8.312779 -14.933021 -1.975424 3.544440 -2.954740 5.472773 4.531927 0.505315 1.436428 1.344284 3.240204 3.376474 6.015278 0.567035 9.525803 -5.280209 -3.781030 -1.403784 0.945541 4.327893 -6.517973 -9.882474 -12.867863 -5.162985 4.757052 -5.766537 7.394970 15.274286 -3.145998 -8.595351 4.440844 -2.731030 0.410961 2.468685 2.972640 11.633263 -7.895373 0.907963 1.154592 1.680317 7.269792 19.973140 -5.086327 -10.153420 9.327350 -6.230181 -1.401212 1.272243 1.007441 0.823368 -0.293143 -0.517276 -2.707798 -5.681164 9.462133 -12.816788 12.339321 -7.506339 12.363917 -6.474999 -1.980314 3.142343 -12.675902 -2.501251 -10.234307 0.851012 -0.887155 7.184032 -6.965806 -7.125969 -4.161289 -3.681444 -1.089909 12.859427 -14.977487 -1.967805 -2.068587 -1.755351 14.656847 3.242000 -6.016221 -0.721632 -6.714750 6.243921 5.620638 5.801943 -10.841860 -6.036255 -0.793771 -5.906358 1.208691 0.910449 5.830457 -3.918175 2.084268 8.016605 -1.620577 -5.333326 -1.199784 -11.175757 3.853598 0.921639 3.474510 1.430055 14.246368 5.185770 4.941145 -1.868339 2.129696 -2.975307 -5.230394 -11.377894 3.955262 0.339063 -1.114302 6.039648 5.971512 3.495399 5.290567 9.297382 3.032094 -3.847596 8.550324 -0.153882 7.543114 -7.184728 -1.939157 4.950243 -0.687163 7.086893 7.762252 2.285170 -10.377820 6.787341 -5.418322 -7.621554 -2.105287 -3.091824 -1.983060 -0.654179 8.339834 8.995414 -3.020016 -1.275608 16.608692 -1.965279 -16.914288 6.334494 3.717392 5.596582 6.953651 -5.005466 6.386135 7.128156 3.736820 1.681700 4.847401 4.028743 -9.314721 2.060204 2.013603 5.050613 8.272911 -0.568333 -22.856707 -4.322950 1.971301 12.157735 0.542674 15.777413 -5.570046 4.965930 2.935199 2.490579 2.384867 -1.914184 5.470678 -1.736359 1.097654 -12.687912 5.620825 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.133554 0.225849 0.081124 -0.152031 -0.374814 0.051664 0.096664 -0.008954 -0.203924 -0.155946 0.083310 0.077559 -0.076886 0.433739 -0.121620 -0.046659 -0.269195 -0.268867 -0.308310 -0.334843 -0.289376 0.250867 0.078206 -0.373671 0.308392 -0.196874 -0.109804 0.316534 -0.325261 -0.257543 0.210569 -0.103739 0.014274 0.448468 -0.179248 0.422360 0.164887 0.368807 -0.034208 0.174752 -0.462119 -0.343026 0.626318 -0.145070 0.181243 -0.620625 -0.317470 0.167065 -0.019097 -0.102967 -0.139305 -0.109298 -0.233586 -0.208623 0.156204 0.162730 -0.324186 0.282646 0.209686 -0.151068 -0.240859 -0.003740 -0.113517 -0.239015 0.017127 -0.571298 -0.397745 0.168299 -0.080869 0.056778 -0.226201 -0.056076 0.511194 0.115016 -0.002423 0.169015 -0.207961 -0.028416 0.028070 -0.449950 -0.112022 -0.242210 0.444587 0.145099 0.144965 0.049886 0.124018 -0.227942 -0.209454 -0.401627 -0.057539 -0.243324 0.253703 0.377139 -0.183094 0.190977 0.113334 -0.128121 0.141430 0.373323 0.270834 -0.102971 0.255409 0.031299 0.065109 0.022785 -0.330760 -0.368821 0.022107 -0.383030 0.116337 -0.011574 -0.447117 0.234546 -0.098280 -0.014852 -0.086786 0.268957 0.069734 0.249737 -0.462776 0.058448 0.233771 -0.079224 0.083577 -0.026840 0.042460 -0.125469 -0.022453 -0.033278 0.029250 0.188188 -0.054131 0.315468 -0.065777 -0.441603 -0.236208 -0.293176 -0.159438 -0.339900 -0.309092 -0.270702 -0.038865 0.163256 -0.243163 0.069897 0.696105 -0.228784 -0.328399 0.163771 0.516801 0.126209 0.183429 0.192340 0.228299 -0.154015 -0.104627 0.046523 -0.176680 0.215978 0.113751 -0.252750 -0.099302 0.126070 0.093830 -0.432760 0.466667 0.009854 0.051886 0.409104 -0.030085 -0.208746 -0.084300 0.280713 0.339919 0.684698 -0.241198 0.541187 -0.348979 -0.204684 0.288975 -0.215778 0.082084 -0.228669 -0.065002 0.026367 0.007814 -0.260091 -0.267730 0.038775 -0.199192 -0.079980 0.335393 -0.169498 0.071179 -0.138561 -0.057534 0.004966 0.238001 -0.297028 0.256296 -0.219812 0.389148 0.306100 0.272924 -0.508698 -0.090717 -0.011359 -0.185596 0.262403 -0.009096 0.115864 0.105624 0.225349 0.319814 -0.312229 -0.231008 -0.005087 0.027023 0.021132 -0.289010 0.016422 0.034954 0.372279 0.500450 0.090944 -0.172193 0.292063 -0.247033 -0.265532 0.042917 0.107376 -0.163687 0.118385 0.391396 0.181860 0.327333 0.343364 0.278587 0.228806 0.013425 0.515968 0.137034 0.450188 -0.535133 0.111803 0.053506 0.147856 0.457648 0.387176 0.015048 -0.193507 0.240528 -0.011945 -0.070353 -0.283948 -0.179450 0.012739 -0.302723 0.370159 0.143623 -0.044099 0.046941 0.593565 -0.069926 -0.168467 0.270597 -0.113406 0.224092 -0.073307 -0.053020 0.023392 0.461665 -0.035664 -0.211448 0.082475 0.376519 -0.370305 -0.234596 0.043187 0.311474 0.207984 0.287935 -0.456239 0.004260 0.027365 0.194165 -0.193095 0.195873 -0.049715 -0.191911 0.147307 0.197602 -0.105851 0.071006 -0.127992 -0.159158 -0.018122 -0.402426 0.008836 +PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 1.429402 0.519020 1.818515 -2.503555 -1.334377 -0.503260 3.270273 -2.778492 -1.821895 5.703456 0.601894 -2.448608 -1.771606 2.259610 -0.326086 -1.426751 0.486437 -1.015523 -1.162972 -1.438686 -1.421105 1.083989 -0.884110 -2.996521 1.207215 -0.647779 1.805116 2.772752 -1.322391 1.283877 0.984464 -2.034038 1.756074 5.328490 1.736175 0.170973 -2.752796 5.686099 -4.403785 5.107949 -5.118094 -5.222015 6.930521 -0.740107 0.154088 -4.708129 -0.372574 3.601766 -0.061683 -3.573682 -1.285998 -0.084100 1.512682 -4.438556 -2.660476 3.645377 -4.111239 0.841822 2.393028 -4.621232 -5.416443 -1.023764 1.472528 1.899002 -4.417467 -3.208922 -0.332138 -1.434647 -1.194653 0.977892 -3.626905 -3.200341 2.191580 0.862392 -0.939328 0.690255 -2.189042 -1.296269 2.308059 0.160561 -2.536938 -2.770682 0.313970 -2.156926 1.029424 2.033817 3.937674 -6.918179 0.994570 -6.190838 2.463660 -2.765208 2.889169 4.096525 -0.516828 4.254295 0.439492 1.963903 0.158847 -1.199127 2.271563 1.333220 3.312506 1.426949 3.444228 4.370723 -3.671047 -5.503828 -3.269913 -2.359604 2.395147 -1.568941 -3.977894 2.247397 -2.962224 -0.843063 0.064649 -0.519299 -1.614818 4.315198 -6.338469 0.237058 2.023846 -1.187589 2.577172 2.493298 0.166442 0.951164 -0.263663 2.253035 0.190399 2.154003 0.431700 4.156651 -2.368786 -1.942405 -0.762913 1.597954 1.896527 -3.040022 -4.112859 -6.836195 -1.765712 2.859698 -2.650206 2.517646 6.879823 -2.056633 -4.077883 2.624127 -0.322475 -0.239704 1.408539 1.377488 6.103670 -3.444150 0.184489 -0.123000 -0.020597 3.395311 7.906301 -1.597300 -4.024758 4.396530 -2.232408 -1.909446 3.033528 -0.142943 -0.502106 -0.367317 0.669177 -1.577897 -2.509297 4.071707 -4.164318 4.139456 -3.352065 5.514465 -2.767363 -1.090832 1.006629 -5.935406 -2.132471 -4.132713 0.238914 -0.680655 3.817087 -3.642716 -2.841529 -1.592237 -1.706102 -1.014802 5.102667 -5.790738 -0.622397 0.073209 -0.881199 4.712949 1.157231 -2.047730 -1.259163 -3.352288 1.305930 2.585132 2.099646 -5.282172 -2.657044 -1.692831 -2.076942 0.033975 0.312347 3.265892 -2.284173 0.735430 3.072319 -0.837711 -1.412938 -0.762384 -5.154841 1.948411 0.594247 2.133527 0.924827 6.380481 2.906174 3.252577 -0.172214 1.785330 -0.737998 -2.170763 -4.929613 1.412528 0.616885 0.531782 2.690418 2.810818 2.129388 2.291539 3.889287 0.567987 -0.590379 4.240994 0.028455 4.243859 -2.596882 -0.751081 2.122584 0.370126 3.306006 3.807862 1.220238 -4.096714 2.508323 -2.743528 -3.553551 -1.087135 -0.541305 -0.616643 0.006214 3.511409 4.336684 -0.968487 -1.156041 7.163798 -0.894296 -8.270653 3.559527 1.876153 2.921063 3.538633 -1.978444 3.039267 3.042902 1.866901 1.530118 3.001756 2.664893 -5.211388 0.596590 0.512639 2.746519 4.176359 0.217802 -10.216460 -0.547927 0.771111 4.927038 -0.420144 6.202895 -3.331141 1.932310 0.876331 0.312282 0.919343 -0.428561 2.812129 0.037054 0.246572 -6.149640 1.824105 +PE-benchmarks/naive-algorithm.cpp__main = 0.754696 -0.130665 0.362078 -1.208468 -0.825102 0.228722 0.130083 -0.916192 -0.472812 0.815090 0.314790 -0.653561 -0.590370 1.126352 -0.177540 -1.000122 0.149763 -0.869255 -0.140387 -0.057255 -0.520930 0.560470 -0.463541 -0.530236 0.383616 -0.106007 0.025236 0.678029 0.505320 -0.341486 -0.494224 -0.596726 -0.076161 1.953077 0.704387 -0.344784 -0.068105 2.727772 -0.418844 1.186020 -1.364241 -1.378851 1.753492 -0.345563 -0.350253 -1.064152 -0.387865 1.101030 -0.843019 -0.373942 0.392213 -0.236754 0.122397 -0.850535 -0.358874 1.173936 -2.105304 1.127336 0.817406 -0.255683 -0.944884 -0.720018 0.200643 0.135174 -0.787960 -1.053684 0.363733 0.039663 -0.814098 0.017006 -1.092532 -1.197980 1.638574 0.770949 -0.535149 0.215975 -0.229128 -0.904870 0.838964 -0.635706 -1.572534 -0.566778 -0.020807 -0.742414 1.496964 0.180476 0.900338 -2.521592 0.739144 -2.616041 0.431931 -1.391355 1.046926 1.975938 -1.137101 1.008117 0.420712 0.866327 0.438417 -0.210811 1.408560 0.355295 0.219428 0.573104 1.024853 0.873352 -0.703400 -0.911792 -0.700312 -0.976683 0.042969 -0.321125 -2.124227 0.825048 -0.939642 0.348992 -0.194625 0.418355 -0.681319 0.835681 -1.986170 -0.685664 0.160566 -0.452427 1.187438 1.271290 -0.272217 0.299528 -0.644151 1.360656 -0.200620 0.713681 -0.408308 1.174622 -0.394030 -0.945476 -1.464240 0.293522 0.939802 -1.161482 -1.905084 -1.933299 -0.532645 0.137137 -0.860526 1.948512 2.707997 -0.951634 -1.287561 1.760561 -0.271815 0.708537 1.548953 0.273423 1.900708 -0.856785 -0.096834 -0.102186 -0.258776 0.008509 -0.113747 -0.228657 -0.755868 0.945255 -0.343804 0.178940 1.334945 0.145980 -0.743434 -0.321285 0.003844 -0.800235 -1.485184 1.884907 -0.521238 1.288649 0.127057 2.293017 -0.632621 -0.891661 0.742000 -0.976441 -0.167847 -1.200898 -0.271354 -0.267511 0.967308 -1.321535 -1.094717 -0.137600 -0.067840 -0.822330 1.221063 0.578979 0.058137 0.369471 0.267239 1.352156 1.471184 -0.470776 0.093394 -1.517264 0.633194 1.095036 -0.184791 -1.354449 -0.362207 -0.452892 -0.505594 0.698451 0.055558 0.857332 -1.037518 -0.477146 0.482501 0.308080 0.617392 0.484841 -2.000842 0.655097 -0.064818 0.239494 0.834379 1.741514 1.211537 1.287536 0.540888 0.245456 -0.069380 -0.040399 -0.624534 -0.167848 0.205779 0.954913 0.904670 1.081678 1.056483 0.707346 1.029703 0.792952 -0.153292 1.515666 0.471965 2.247930 -0.564745 -0.449337 0.175691 -0.157445 1.472696 2.095238 -0.783321 -0.423257 0.933638 -0.067705 -0.657403 -1.369553 0.041259 -0.449823 -0.084856 0.430151 0.542395 -0.124564 -0.450113 2.383035 -0.436780 -2.620950 1.317822 0.656413 0.995891 0.872602 -0.110260 0.491865 0.872499 -0.825479 1.038239 1.260984 1.034080 -1.222877 0.301802 0.119973 1.085669 0.098596 0.695043 -1.667944 0.412977 0.649072 1.604283 0.777545 0.879753 -0.849332 -0.405289 0.444799 -0.355963 0.115968 0.132323 1.045017 -0.564004 0.246520 -1.255963 -0.532756 +PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 2.717964 0.451971 2.870468 -3.336894 -2.276096 -1.036712 7.134546 -4.481946 -2.748264 8.533827 1.368243 -4.099420 -3.709897 4.662280 -0.435621 -1.830128 1.042462 -0.573829 -1.890867 -1.504359 -2.741911 1.894443 -1.546353 -5.088508 2.404659 -0.891367 2.677667 6.649472 -1.824404 2.934509 1.434673 -3.209350 2.820803 8.648560 2.621441 -0.390915 -3.915792 11.065807 -10.395786 9.664271 -8.222149 -7.825373 14.578890 -1.375850 -0.969990 -9.066225 -2.655298 6.112792 -0.428267 -6.787634 -1.942416 -0.130931 2.868088 -7.346734 -4.061853 7.382242 -7.764582 0.488129 4.227107 -7.731344 -9.768378 -1.768780 1.614926 2.789150 -9.287397 -5.563092 -0.553103 -3.848805 -0.901288 1.227134 -6.729381 -5.908451 5.718031 0.830472 -1.733183 1.363165 -3.394920 -2.989090 3.981192 1.735240 -4.542023 -4.370991 0.416625 -3.653415 1.886092 3.212632 7.368101 -12.176078 0.024700 -11.980573 4.149893 -6.249833 4.706315 7.329853 -1.907060 8.702580 0.886525 3.367098 0.151446 -0.815975 4.067559 3.348895 6.358213 2.097791 6.384429 8.436810 -6.454970 -10.361448 -7.527675 -3.670224 4.163416 -2.321839 -9.465078 3.775009 -5.457453 -0.972997 -0.036065 -0.267607 -2.130787 9.788653 -8.871531 5.022498 3.764990 -1.921026 3.957663 5.589505 0.181561 1.020710 -0.898826 3.559695 0.231178 4.229859 0.532779 6.891171 -4.945062 -4.634357 -0.624461 2.317951 2.814965 -5.363893 -6.773128 -12.367739 -2.651939 5.490026 -4.448070 1.926448 12.912114 -3.920766 -6.934785 4.267764 1.315670 0.340780 2.038484 2.338067 12.577682 -6.292707 0.321234 -0.451177 -0.120524 5.391701 14.968702 -2.557186 -6.916808 6.895413 -3.285041 -7.635552 10.544550 -0.063026 -0.654190 2.544911 1.266420 -1.882243 -5.781478 8.736493 -5.642498 8.381859 -6.537734 10.043295 -4.171074 -1.440518 1.765052 -8.261215 -3.215181 -8.693489 0.571410 -0.701233 6.681657 -5.455014 -4.749412 -3.937317 -3.145716 -1.450978 9.719372 -9.324336 -1.013535 0.027846 -1.934500 5.004724 1.991259 -3.382944 -1.989995 -6.865524 2.223513 4.654001 2.113337 -11.123443 -4.351095 -2.711579 -3.270217 -1.067231 0.678718 5.554125 -4.476432 0.981531 5.350580 -1.186287 -2.682021 -1.414466 -9.855896 3.170739 0.930116 3.893777 1.960746 11.409268 7.071682 5.783324 -0.336332 4.849268 -1.342150 -3.487786 -9.974774 3.089795 0.679822 1.940646 4.370281 5.982972 3.513390 3.841179 5.287001 -0.665096 0.256928 7.215318 2.417401 9.196680 -3.972950 -2.817115 3.763552 0.740308 5.992910 6.705434 3.573915 -7.065447 3.627861 -4.467598 -7.271150 -2.194314 -0.734332 -0.630893 -0.601807 8.098641 6.781998 -1.245414 -1.940642 13.415971 -1.598619 -16.424809 5.366197 2.915866 5.147125 6.840001 -2.819583 5.970861 6.519122 4.816330 3.415907 5.003368 4.837057 -9.663513 0.554828 1.029612 4.223303 7.977251 0.324399 -21.933201 -0.316984 0.985523 9.125187 -1.213063 12.266999 -5.476039 4.353072 1.147247 0.339058 1.713755 -0.914970 4.861593 -0.560138 0.697996 -13.706866 3.233374 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = 1.398096 -0.146633 1.461832 -1.018942 -0.489502 -0.739997 4.454118 -1.428943 -1.205665 3.557423 0.342855 -1.501281 -2.244170 1.862004 0.214858 -0.661744 0.784212 -0.316856 -0.890711 -0.141931 -1.480626 0.761715 -0.642832 -2.166805 1.616836 -0.058276 1.073805 3.785045 -1.121982 1.472364 0.749935 -1.271076 1.096706 3.710223 0.771365 -0.148861 -1.372326 5.397855 -6.208332 4.896463 -3.293644 -3.293337 7.084946 -0.676251 -0.853172 -4.193341 -1.207203 2.856985 -1.038230 -3.423129 -0.492693 0.266720 1.191523 -3.433598 -1.492838 4.094334 -4.318950 -0.195533 1.876425 -3.041198 -4.489861 -0.756042 0.307169 0.606908 -4.401839 -2.617056 -0.280161 -2.742209 -0.304161 0.633800 -3.297433 -2.339884 2.353395 0.262742 -0.474535 0.941922 -1.187583 -1.338327 1.848488 1.268393 -1.891176 -2.080175 -0.062771 -2.023524 1.252629 1.215728 2.798967 -5.442711 -0.388837 -5.247055 1.813574 -3.480942 1.889043 3.491511 -0.704448 4.430781 0.236323 1.284279 -0.763970 -0.744306 1.795282 1.828952 2.948639 0.917356 2.882476 3.893425 -3.496459 -5.161096 -4.099317 -1.152834 1.922627 -1.343227 -4.612328 1.522665 -2.429162 -0.216034 0.688788 -0.273432 -1.043214 4.645443 -3.816956 4.079589 1.692687 -0.822280 1.552351 2.834777 0.061393 -0.116872 -0.424852 1.612760 0.172869 2.283224 0.116045 2.962540 -1.989410 -1.988440 0.640547 0.538878 1.062062 -2.117399 -2.885118 -5.926989 -0.833066 2.627520 -1.904979 0.445474 5.926749 -1.567494 -2.893589 1.802830 0.391391 0.981492 0.249648 1.056942 5.445537 -2.651463 -0.034339 -0.213205 0.053570 2.420705 6.888918 -0.959737 -3.147369 3.098479 -1.187966 -3.527722 5.524239 0.058620 0.044408 1.674736 0.466908 -0.709583 -2.859217 4.552482 -2.504887 3.757640 -2.938805 4.340955 -1.365073 -0.321820 0.760588 -3.989518 -1.085666 -4.951608 -0.346041 -0.264102 2.296724 -2.431953 -2.093613 -2.501303 -0.962716 -0.473416 4.560919 -4.599962 -0.526222 -0.377035 -0.663792 1.858064 0.592588 -1.718853 -0.934010 -3.502139 0.943152 1.596341 0.427233 -5.472318 -1.479055 -0.613834 -1.479584 -0.096412 0.325796 2.187691 -2.171012 0.330710 2.778524 -0.310097 -1.887237 -0.746365 -4.962061 0.982374 1.034419 1.394377 1.524751 5.048850 3.582347 2.103830 -0.458882 2.592489 -0.537214 -1.075283 -5.577070 1.355800 -0.409902 1.512809 1.794379 2.366463 1.489861 1.284282 1.591223 -0.289571 0.159524 3.060374 2.321458 3.974102 -0.956215 -1.935695 2.190768 0.313633 2.380906 2.006057 1.588663 -2.764605 1.734124 -1.691887 -3.460159 -0.618313 -0.408450 -0.484732 -0.488075 4.217434 2.403590 -0.915097 -0.407219 6.210557 -1.049883 -7.883103 1.720052 1.354380 2.338323 2.975533 -0.803681 2.915159 2.967334 2.186598 1.832160 1.664006 2.095250 -4.233858 0.961010 0.586015 1.425480 3.995186 -0.132193 -10.946975 -0.898454 -0.233964 4.257786 -0.386634 6.090087 -1.904226 2.332461 0.135050 -0.174279 0.965473 -0.646489 2.294753 0.026636 0.370230 -7.075487 1.649985 +PE-benchmarks/kmp-algorithm.cpp__main = 1.012409 -0.144074 0.572468 -1.375136 -1.013446 0.122032 0.902938 -1.256883 -0.658086 1.381164 0.468059 -0.983724 -0.978028 1.606886 -0.199447 -1.080797 0.260968 -0.780917 -0.285966 -0.070389 -0.785092 0.722561 -0.595990 -0.948634 0.623105 -0.154725 0.199746 1.453373 0.404918 -0.011360 -0.404182 -0.831789 0.136785 2.617091 0.881440 -0.457161 -0.300704 3.803714 -1.617244 2.097285 -1.985052 -1.899523 3.283166 -0.472711 -0.575068 -1.935771 -0.844410 1.603235 -0.916335 -1.016732 0.260929 -0.246120 0.393479 -1.432171 -0.639149 1.921309 -2.835973 1.056597 1.184221 -0.877705 -1.815271 -0.869021 0.229123 0.313204 -1.761946 -1.524518 0.319540 -0.443169 -0.755425 0.066855 -1.713027 -1.739602 2.343864 0.764565 -0.693920 0.350557 -0.470304 -1.243434 1.173591 -0.320770 -1.973551 -0.886840 -0.000276 -1.041712 1.668298 0.416239 1.586424 -3.573172 0.545170 -3.773988 0.769177 -2.088280 1.410355 2.622604 -1.415147 1.897774 0.510118 1.146966 0.436937 -0.134181 1.767759 0.758430 0.828569 0.707273 1.612893 1.686570 -1.260185 -1.883316 -1.551864 -1.238807 0.396623 -0.471704 -3.221664 1.130570 -1.438688 0.323005 -0.214768 0.468694 -0.784513 1.930372 -2.492783 0.271424 0.508795 -0.599114 1.463536 1.890532 -0.269193 0.313437 -0.771183 1.621988 -0.192464 1.128853 -0.388092 1.721525 -0.909285 -1.483866 -1.436550 0.437522 1.123489 -1.626257 -2.437138 -3.039608 -0.709890 0.663203 -1.220099 1.830272 3.914456 -1.324461 -1.858942 2.089288 0.055814 0.824634 1.674942 0.465538 3.195511 -1.426497 -0.069485 -0.167822 -0.278761 0.407787 1.298733 -0.420635 -1.334278 1.445031 -0.554331 -0.966282 2.837150 0.161963 -0.773851 0.261161 0.123293 -0.861104 -2.139620 2.817864 -0.816874 2.137130 -0.510077 3.198783 -0.913363 -0.961598 0.893685 -1.441603 -0.384389 -2.113053 -0.204855 -0.271626 1.540222 -1.683994 -1.476293 -0.606616 -0.355763 -0.909565 2.144404 -0.127740 -0.020091 0.360398 0.056579 1.410511 1.637990 -0.737819 -0.052772 -2.219911 0.816711 1.508810 -0.182053 -2.522704 -0.701017 -0.656641 -0.744250 0.478210 0.128832 1.314979 -1.475970 -0.427926 0.938153 0.238365 0.363575 0.354425 -2.941053 0.899562 0.002356 0.591544 1.041562 2.747272 2.044639 1.793686 0.508064 0.858243 -0.190210 -0.303804 -1.633566 0.167605 0.218366 1.236686 1.240642 1.716109 1.333283 1.017274 1.309246 0.546335 0.016169 2.110531 0.949754 3.238494 -0.839958 -0.862543 0.503885 -0.083409 2.010077 2.674752 -0.312586 -1.017003 1.157545 -0.412519 -1.400923 -1.590989 0.002653 -0.452672 -0.206460 1.347598 1.031458 -0.179949 -0.607033 3.633469 -0.577644 -4.251781 1.679156 0.864356 1.441103 1.532875 -0.278488 1.078184 1.567743 -0.235593 1.415397 1.661306 1.468513 -2.113302 0.293450 0.223367 1.381026 0.858774 0.716363 -4.011292 0.459166 0.691954 2.443913 0.618961 2.092574 -1.278312 0.078864 0.498983 -0.350608 0.274850 0.035041 1.454910 -0.683443 0.336805 -2.767409 -0.250902 +PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = 5.936995 0.334205 1.544050 -4.387359 -0.738736 -1.173399 9.435343 -7.398459 -5.501534 14.166248 2.003976 -5.957755 -2.330110 4.848217 0.228450 -1.856215 3.636320 2.790323 -2.536314 -1.983234 -4.845109 0.841852 -2.214910 -8.814479 2.517838 -1.511620 3.734300 6.961581 -5.974799 5.555640 0.454238 -4.085657 3.875831 12.279721 4.517871 -1.918870 -6.927072 12.824883 -14.021339 13.176729 -9.061604 -8.980490 17.206855 -1.508944 1.936273 -8.626071 -3.631274 7.316330 5.591412 -10.594217 -4.068948 -1.834605 4.213433 -10.432243 -6.453589 10.712644 -6.211954 -1.978352 6.470052 -11.453829 -13.717102 -2.129223 4.103481 3.953028 -14.204666 -9.027527 -0.104876 -2.986863 0.322737 2.083835 -12.918391 -10.877383 3.527704 2.338102 -1.812076 0.538916 -6.626409 -4.644489 4.240530 5.740319 -5.744553 -5.972549 0.300784 -4.324023 1.193113 5.001280 12.249873 -16.471250 2.539522 -15.941037 4.920484 -7.535169 7.989783 10.523679 0.876061 9.046187 1.027279 7.568199 -1.495304 -0.365468 5.327334 3.564771 4.852883 0.428610 8.826074 10.853782 -8.655842 -14.587999 -6.915784 -2.988503 5.870655 -2.440589 -9.134679 6.447094 -9.646532 -2.263551 -1.181912 0.219041 -3.132782 13.126851 -13.084602 2.079619 5.103420 -3.322016 6.981832 6.336514 0.861701 1.983926 -2.348127 3.650021 2.606878 3.422045 -0.136386 9.706391 -8.775091 -4.524368 0.273588 3.750510 5.588838 -9.300291 -10.254756 -14.838069 -3.651564 9.296656 -6.669711 5.691533 15.562583 -5.732975 -6.451642 4.145117 -0.203162 -1.518727 3.225125 3.415758 17.969863 -10.817913 3.775467 1.238685 2.177842 7.205399 16.840716 -5.793874 -10.628935 9.674868 -5.282515 -6.305158 14.768887 -0.314406 0.169808 4.324643 1.905446 1.142649 -5.299503 11.247883 -12.587747 9.730006 -7.859358 13.022119 -5.756001 0.382153 2.801757 -10.575269 -6.023360 -10.085889 2.975349 -2.859881 10.392937 -6.038816 -7.092534 -2.210773 -5.619475 -0.425771 14.945615 -10.791056 -2.365646 -0.334107 -4.971975 8.908253 1.760294 -4.531224 -3.079669 -7.534160 3.894193 5.736157 0.933595 -12.543137 -6.997598 -3.826042 -4.283443 -4.709258 1.389592 8.652721 -7.600866 0.967405 7.207813 -0.223733 -3.628476 -2.672658 -8.452427 5.487896 1.344222 4.234438 1.805789 16.509980 6.937998 8.522723 -1.036811 1.967668 -1.912361 -4.914753 -16.220239 6.173423 -0.087731 3.423140 5.702686 6.083238 1.864537 5.714474 7.031448 -4.032588 3.947833 9.223008 2.517055 9.888840 -4.067313 -2.028558 6.226073 -2.568699 8.428501 8.153671 2.733090 -11.182450 4.085320 -8.440157 -11.885572 -0.117757 -1.099762 0.291859 -4.238054 7.533066 10.641981 -0.659201 -5.000038 18.223887 -1.533254 -21.416123 6.993122 4.556350 6.363626 13.039963 -4.987768 11.454610 6.380686 10.493813 3.437531 7.047649 6.911064 -12.475774 2.216913 1.583480 4.409454 9.976865 -2.775144 -26.615796 1.666826 2.533488 12.799861 -1.785052 14.259503 -7.894418 10.102999 1.078250 1.551470 3.879342 -2.966605 7.882187 -1.917056 0.701112 -17.223569 7.334706 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 1.529158 0.180952 0.529312 -1.509468 -0.915960 0.012461 1.184105 -2.129189 -1.273106 2.689659 0.719698 -1.650082 -0.923297 1.583363 -0.437536 -1.220906 0.492747 0.353228 -0.567291 -0.803368 -1.107926 0.329845 -0.634432 -2.003329 0.503914 -0.552415 0.708093 1.679030 -0.247352 0.804012 -0.304760 -0.998554 0.836707 3.466799 1.331982 -0.574238 -1.149388 3.888241 -2.298626 2.596983 -2.728138 -2.479012 4.168104 -0.397471 0.210979 -2.437994 -1.196575 1.885621 -0.193924 -1.545134 -0.560343 -0.632802 0.821223 -2.314929 -1.360940 2.744691 -2.623104 0.979191 1.549196 -2.340780 -2.888189 -0.743102 0.791810 0.781186 -2.416903 -2.334746 0.176434 0.082816 -0.564652 0.516964 -2.934525 -2.755938 2.196969 0.659212 -0.751286 0.165021 -1.324152 -1.272977 1.195498 0.383250 -2.015161 -1.402703 0.405706 -0.670169 1.090366 1.173455 2.632540 -4.577150 0.525513 -4.608196 1.286507 -2.144576 2.181912 2.860564 -0.996181 2.106400 0.515470 1.279514 0.231777 0.182466 1.884530 0.678770 0.997902 0.312800 2.070255 2.292567 -1.586220 -2.966786 -1.428069 -1.278114 0.748267 -0.435932 -3.449387 1.573282 -2.508204 0.179321 -0.544358 0.217052 -0.716713 2.772106 -3.441271 -0.339133 0.977585 -0.855251 2.168986 1.880574 0.009720 0.759144 -0.792860 1.535452 0.324670 0.732594 -0.314437 2.383087 -1.496557 -2.347627 -1.618491 0.994978 1.675067 -2.406182 -3.098214 -3.459866 -1.032868 1.617534 -1.645584 2.038157 4.459516 -1.600095 -2.200653 1.825814 -0.135518 0.167161 2.103195 0.870240 4.743700 -2.620147 0.797818 0.131970 0.178648 1.318066 2.271685 -1.375686 -2.428535 2.261165 -0.822354 -1.198086 3.144285 -0.145050 -0.482942 0.641497 0.308548 -0.200288 -1.695246 3.080760 -2.057893 2.728752 -1.287142 3.902776 -1.734389 -1.091902 0.887657 -2.260180 -1.206461 -1.764832 0.529482 -0.640295 2.565672 -2.021242 -2.036959 -0.338675 -1.082627 -0.517387 3.569617 -0.781145 -0.380111 0.240298 -0.859922 2.267867 1.407158 -1.094388 -0.271577 -2.291345 1.069842 1.956602 0.178974 -3.556090 -1.403766 -1.064560 -0.954416 -0.401918 0.308167 2.186718 -1.727564 -0.117932 1.299429 -0.080039 0.147456 -0.179954 -1.964035 1.511802 -0.167989 0.802880 0.654510 4.082397 2.212498 2.372761 0.193727 0.464246 -0.240432 -1.238881 -2.382939 1.040029 0.443290 1.122113 1.544919 1.923731 0.814021 1.449434 1.982647 -0.160366 0.636809 2.639808 0.696702 3.333161 -1.599896 -0.313987 0.900722 -0.641815 2.546595 3.208115 -0.285602 -2.329252 1.191215 -1.327903 -2.089271 -1.382578 -0.293957 -0.135595 -1.102488 1.876217 2.413691 -0.159275 -1.324871 4.753408 -0.268221 -5.231671 2.474083 1.228919 1.480157 2.533247 -1.184665 1.856493 1.757201 1.300848 0.883251 2.101105 1.999758 -3.130003 0.202145 0.288657 1.721773 1.609249 -0.047154 -5.561167 0.615342 1.326909 3.408877 0.207275 2.803923 -2.086193 1.067280 0.438840 0.146038 0.695539 -0.364316 1.871357 -1.124691 0.369068 -3.217175 0.629552 +PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 4.065672 -1.462912 2.971607 -6.274863 -1.815593 -1.004487 4.624174 -4.650761 -2.936206 9.069637 0.599024 -4.096003 -3.682906 6.076246 -0.406388 -3.052415 2.213664 -3.232078 0.038539 0.262331 -2.118495 2.780547 -1.522640 -4.544164 2.573786 -0.212233 1.496594 5.180526 0.335846 0.427984 -0.432670 -3.964056 1.638482 9.955601 3.045595 -1.655933 -3.640077 13.168518 -7.369529 10.095288 -7.106887 -7.658620 12.050922 -1.814091 -0.225471 -7.920379 -2.478317 6.444196 -1.293262 -6.483714 -0.263269 0.123982 2.442616 -7.325520 -4.443313 7.035231 -9.501139 1.989205 5.079653 -3.852936 -6.116626 -2.367775 1.329008 2.582862 -7.664964 -5.989976 0.495837 -3.933469 -4.052350 0.191669 -6.691279 -4.618245 5.119537 3.092672 -2.113077 1.617788 -1.732984 -4.500878 4.864468 -2.203126 -6.600960 -4.342253 -2.249127 -4.891390 5.389249 1.680371 6.335231 -12.328423 4.099457 -12.014726 3.344433 -7.442025 4.684245 9.952075 -3.346012 7.549021 1.593318 6.396282 1.439386 -2.350964 6.106196 4.505867 2.895235 2.715837 7.087200 6.831464 -6.165021 -8.088492 -5.998851 -3.654877 2.534576 -4.045023 -9.926433 4.738940 -4.361756 -0.799483 0.152524 0.040805 -4.291088 6.881833 -12.254197 0.619500 2.179518 -2.325131 3.405533 6.268031 -0.406364 -0.112007 -2.031927 5.808371 -0.059057 4.187036 1.380825 7.515969 -4.452461 -3.300617 -1.669020 1.746072 3.574604 -6.275981 -8.563130 -12.835778 -2.578960 2.599194 -4.503794 7.582494 13.483313 -3.515713 -5.971006 6.658043 -0.980499 1.090517 4.637300 1.948923 10.335600 -4.818726 -1.748748 -0.523166 -1.530084 3.706432 9.250350 -1.567385 -5.556419 7.130556 -4.170829 -2.551207 5.413621 0.957417 -1.741506 -1.724720 0.339433 -4.096853 -6.726199 9.236093 -8.776044 7.167206 -3.668114 10.922694 -1.412368 -2.055868 2.920271 -9.255487 -2.280666 -8.842067 -0.397609 -1.258181 5.282660 -7.163022 -5.413558 -3.258451 -1.206524 -2.819627 8.923328 -7.015491 -0.327256 1.117932 0.063079 8.973961 4.001561 -3.911536 -0.334069 -6.873259 3.294400 4.521212 0.702917 -9.500892 -3.314885 -2.607920 -3.249125 1.438358 -0.306255 5.407550 -6.749705 -1.286372 4.855531 0.600922 -1.641728 0.036022 -11.812999 3.113599 1.887969 3.631903 4.808142 10.791292 5.299316 6.277440 0.318768 2.940037 -1.970656 -1.078546 -9.332728 1.435859 -0.102237 1.947966 4.612654 5.408021 4.671906 4.417592 6.417379 3.092286 -1.073341 8.042184 1.299244 8.571602 -1.244895 -3.475759 3.816045 -0.260788 7.069722 7.700952 0.932051 -5.121436 5.450306 -4.151626 -5.791836 -3.277379 0.608204 -1.309420 -0.008884 5.690442 5.539601 -0.200689 -1.643672 11.477496 -2.799226 -15.676650 5.624526 3.886232 5.726685 6.964345 -1.439217 6.089443 4.231098 0.265887 4.510906 5.574782 4.633490 -7.844526 2.523171 1.531929 4.380953 6.295651 2.360863 -17.100089 -0.010105 1.303175 8.412519 1.206963 9.578404 -5.315498 1.656844 2.599347 0.249703 1.797811 -1.982308 5.258214 -1.678351 0.028968 -9.520294 1.959722 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.052020 -0.129463 0.184309 -0.435108 -0.493908 0.094090 -0.128372 -0.256583 -0.088337 -0.138606 0.155193 -0.119800 -0.253008 0.533475 -0.091732 -0.491380 -0.093235 -0.064786 -0.018495 0.048574 -0.071797 0.280742 -0.148126 0.022812 0.103910 -0.097787 -0.119412 0.196446 0.260482 -0.226499 -0.154402 -0.238259 -0.108431 0.533182 0.145710 0.173309 0.021902 0.921758 0.096178 0.493787 -0.526460 -0.436095 0.372351 -0.143461 -0.042371 -0.490305 -0.366365 0.273157 -0.433654 -0.005271 0.295202 -0.008276 -0.009485 -0.101190 0.191026 0.179248 -0.664581 0.438709 0.238062 -0.143357 -0.014559 -0.157456 -0.277317 -0.065058 -0.098948 -0.273767 0.022143 0.265127 -0.224542 -0.034073 -0.041996 -0.353130 0.911399 0.220050 -0.241375 0.163071 0.234131 -0.232448 0.329011 -0.388638 -0.636227 -0.159397 0.028824 -0.011688 0.520861 0.081635 0.284960 -0.762257 0.201196 -0.834148 0.255833 -0.458369 0.234565 0.584815 -0.480041 0.295228 0.365031 0.080568 0.350273 0.170178 0.470579 0.173120 -0.024920 0.303804 0.295635 0.086315 -0.101746 -0.196060 -0.290338 -0.473766 -0.029175 -0.144841 -0.875624 0.181669 0.013386 0.382390 -0.157007 0.241860 0.048618 0.131975 -0.564511 0.025603 0.199018 -0.134235 0.225520 0.391729 -0.155304 0.012468 -0.312593 0.452844 -0.374157 0.299708 -0.125069 0.350109 0.021620 -0.453540 -0.643039 0.034014 0.157980 -0.324173 -0.487127 -0.436441 -0.102515 0.227750 -0.256516 0.446873 0.944850 -0.492976 -0.452062 0.638805 0.221151 0.213832 0.428362 0.169731 0.468385 -0.054269 -0.249072 -0.233755 -0.319254 -0.041178 -0.254132 0.176533 -0.219927 0.322412 0.020961 -0.491266 0.658713 -0.150820 -0.397131 -0.112165 0.021705 -0.341256 -0.336212 0.521666 0.099081 0.466555 0.042936 0.683223 -0.157160 -0.379656 0.133726 -0.258268 -0.008005 -0.272674 -0.046158 0.041888 0.177476 -0.510009 -0.299294 -0.060681 -0.220046 -0.314131 0.181290 0.281811 0.055017 0.235655 0.197428 0.370832 0.669496 0.097282 0.025769 -0.479715 0.281997 0.168737 -0.128566 -0.511545 0.009837 -0.088070 -0.087638 0.204076 0.026562 0.189497 -0.142005 -0.125156 -0.091147 -0.091770 0.270438 0.239357 -0.266490 0.014073 0.037308 0.248757 0.263721 0.322852 0.577326 0.532395 0.365589 0.236864 -0.014689 0.067876 0.162204 -0.041091 0.133468 0.244969 0.267658 0.382752 0.456340 0.174845 0.433231 0.404587 0.162129 0.501407 0.124477 0.881686 -0.122726 -0.200144 -0.035299 0.110508 0.505432 0.771001 -0.342858 0.268186 0.296585 0.180431 -0.071529 -0.456108 0.148769 -0.112637 -0.214813 0.371370 0.158698 0.030565 -0.147092 0.579943 -0.141070 -0.665439 0.371446 0.149478 0.330496 0.109468 0.161727 -0.013214 0.246575 -0.428363 0.340605 0.407161 0.359083 -0.451223 -0.188589 0.031315 0.252154 0.185022 0.478306 -0.258964 0.104350 0.297452 0.451899 0.053644 0.041840 -0.292744 -0.408205 0.236583 -0.209270 -0.101675 0.119199 0.083203 -0.159849 -0.005147 -0.192484 -0.521505 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.185792 -0.655046 0.404500 -0.842044 -0.686949 0.325162 -0.380984 -0.465060 -0.124084 -0.006783 0.152081 -0.028318 -0.164533 0.803225 0.023049 -0.852557 -0.003120 -0.138062 0.148812 0.038882 -0.133425 0.460752 -0.263772 0.015204 0.166617 -0.375939 -0.106406 0.440161 0.299146 -0.181290 -0.128411 -0.508218 -0.521078 1.015611 0.360233 0.243187 0.041920 1.810647 0.198521 0.934879 -0.615531 -0.874335 0.729332 -0.301158 -0.182172 -0.130468 -0.477598 0.441223 -0.605914 -0.134326 0.517227 -0.069843 0.270643 -0.191567 0.084060 0.081381 -0.971143 0.230400 0.314109 -0.322839 -0.282254 -0.361495 -0.352237 0.115493 -0.654899 -0.471920 0.327296 0.430627 -0.341781 -0.222707 -0.081941 -0.609209 1.375724 0.583389 -0.268743 0.217138 0.570875 -0.456292 0.621180 -0.043544 -1.334887 -0.383793 -0.362930 -0.929397 1.144485 -0.086376 0.907820 -1.435274 0.972303 -1.614883 0.396528 -0.726817 0.458020 1.223264 -0.886519 0.636780 0.772259 1.175882 0.345540 -0.190339 0.936442 0.376910 -0.356475 0.783741 0.817364 0.110897 -0.336332 -0.367712 -0.673509 -0.722494 0.088745 -0.797035 -1.464095 0.451263 0.030624 0.405471 -0.345098 0.545724 -0.286372 0.568670 -1.270918 0.199377 0.239213 -0.275554 0.236767 0.446178 -0.333568 -0.015782 -0.372850 0.940085 -0.857009 0.419062 -0.155661 0.725462 -0.092420 0.271427 -0.866082 0.183352 0.416307 -0.649337 -1.000692 -0.794770 -0.380726 0.629400 -0.398184 1.538969 1.756333 -0.845979 -0.725602 1.113845 -0.017845 0.291108 0.774128 0.365304 0.538684 -0.020546 -0.675871 -0.686162 -0.544730 -0.012283 -0.531773 0.377200 -0.102556 0.882924 -0.117161 0.136359 1.688662 -0.348513 -0.781549 -0.499178 0.153414 -0.707523 -0.701588 0.999977 -0.227363 0.705546 0.344026 1.341537 -0.054663 -0.416209 0.240563 -0.739252 -0.137621 -0.800612 0.012403 -0.238868 0.309850 -0.776672 -0.680622 -0.268545 -0.380624 -0.470062 0.347407 0.784878 0.295830 0.552039 0.360551 0.985488 1.287507 0.327549 -0.307424 -0.825829 0.509999 0.493006 -0.411733 -0.245594 -0.172036 -0.033637 -0.145267 0.231933 0.160683 0.547701 -0.791825 -0.222563 -0.336775 0.323819 0.355088 0.604311 -1.600616 0.142155 0.436076 0.424691 0.686180 0.591310 1.019993 0.950343 0.691318 0.397132 -0.092567 0.367554 -0.185410 -0.175161 0.266931 0.743555 0.441794 0.941857 0.863901 0.524106 0.775873 0.955950 0.519045 0.833106 0.059006 1.620345 0.000231 -0.429072 -0.097753 0.374244 0.946453 1.352724 -0.384999 0.658364 0.622039 0.309761 -0.356951 -0.983761 0.404546 -0.255507 0.298033 0.125464 0.307821 0.135582 -0.347474 1.027948 -0.157519 -1.432372 0.600804 0.370505 0.729382 0.634090 0.262304 0.239806 0.249080 -0.806727 0.976868 0.838242 0.417514 -0.844154 0.344012 0.164848 0.482908 0.168441 0.942132 -0.217135 0.478117 0.210080 0.717853 0.231504 0.222503 -0.556102 -0.541276 0.510346 -0.685340 -0.075901 0.423538 0.204265 -0.335080 0.234739 -0.653771 -0.934729 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/snake-ladder.cpp__main = 0.381309 -0.163225 1.938438 -3.409305 -1.925648 -1.059324 3.374870 -1.866456 -1.290047 2.071066 1.114914 -2.607789 -3.246204 3.160835 -0.150794 -2.267141 0.737297 -1.133586 -1.010520 -0.689586 -0.980624 1.532124 -0.551525 -2.219869 1.842859 -0.644775 0.346991 4.348627 1.760853 -0.240114 0.544261 -1.556087 1.369190 5.196760 0.870069 -0.233641 -1.202805 7.117842 -4.203400 4.713506 -3.891908 -3.455923 7.182098 -0.961431 -1.284730 -5.776691 -2.656652 3.212322 -3.176407 -2.247320 0.124099 0.450302 1.383553 -3.991021 -1.347787 4.895059 -5.756703 1.990536 2.461802 -2.708209 -2.958744 -1.142873 -0.889180 0.258531 -3.128173 -3.277264 -0.297433 -2.032969 -2.012360 0.404299 -2.596348 -2.227901 5.012219 0.810825 -0.822501 1.713524 -0.585346 -2.525088 2.550902 -0.419668 -3.013685 -2.328398 0.293901 -1.149141 3.186091 0.191190 2.215072 -6.681344 -1.131507 -6.159648 2.071093 -4.575250 2.407357 4.771757 -2.819898 4.630257 0.502752 0.153622 -0.123162 -0.136650 3.326873 1.445711 2.906456 1.694805 3.514543 2.961283 -2.819332 -4.629579 -3.450254 -2.300397 1.129298 -1.763779 -6.558863 1.953878 -2.404493 -0.658448 0.452100 -0.310913 -1.180237 4.204733 -3.623358 2.494581 2.115304 -1.292522 1.354671 3.940403 -0.107670 -0.506346 -1.259135 3.148866 -0.087138 3.128718 -0.207455 3.749130 -0.453939 -4.461235 -1.307066 0.127599 1.036626 -2.665676 -4.474483 -5.205842 -1.304068 1.012901 -2.222394 1.519316 7.266376 -1.941485 -3.944244 3.996111 1.219182 2.002754 1.719297 1.387948 5.828401 -2.415525 -0.845481 -1.153466 -1.184773 2.461976 5.238880 -0.871872 -3.765352 3.243151 -1.249616 -4.107958 4.363154 -0.274717 -0.787809 0.690152 0.077889 -2.548568 -4.283026 5.541604 -1.365265 5.192597 -2.205431 6.050282 -1.473270 -2.902244 1.535619 -2.141563 -0.578483 -4.472842 -0.291753 0.589580 1.922483 -3.201537 -3.312065 -2.284283 -0.282784 -1.458055 4.464892 -2.931303 -0.323392 0.118076 0.199292 2.138404 2.288164 -2.287153 0.189999 -4.317879 1.862731 2.305039 1.221696 -6.591615 -0.618666 -0.522178 -1.752383 0.912994 0.210369 2.730964 -1.857848 -0.415608 2.513120 -0.765241 -0.983516 -0.294384 -6.141202 1.557530 0.596321 1.113346 1.996430 5.277767 4.792514 2.530938 -0.176797 2.389644 -0.812496 -0.640945 -4.016775 0.828885 -0.096045 1.184255 2.449762 3.704945 2.744158 1.870633 3.761822 1.968891 -0.449873 4.198701 2.000791 5.197632 -0.575386 -2.285747 1.987736 0.237122 3.928991 4.546345 1.290716 -2.891617 3.002773 -0.061847 -2.225032 -3.517037 -0.614157 -0.728331 -0.759424 5.384151 1.899867 -1.250529 -0.215963 6.504807 -1.260852 -7.748578 3.177128 1.941305 2.938122 1.373344 -0.637726 1.759043 3.534411 -0.568935 1.930982 2.315070 2.581118 -4.346203 -0.565262 0.644420 2.238568 3.455852 1.503183 -9.576287 -1.080193 0.782364 5.010060 0.442041 4.953711 -2.160699 -0.101447 0.930430 0.235927 0.429742 -0.811578 1.518653 -2.415809 0.127381 -4.983383 0.004340 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.834093 -7.632923 4.076862 -9.743813 -6.726352 1.796373 -3.313165 -5.734253 -1.256451 2.460802 4.005515 -3.906228 -2.292484 9.679084 1.223468 -7.549880 2.468681 2.076630 2.771865 -0.130431 0.524467 3.876035 -1.825681 -2.623505 0.817049 -3.406884 -0.754961 6.158281 5.938722 1.120880 -1.465899 -4.583933 -3.517582 10.460038 3.567478 0.370470 -2.115842 17.978465 -2.957532 11.394589 -8.558495 -7.265150 10.907063 -2.661239 -1.796088 -5.622057 -8.103365 4.902633 -6.884010 -4.057522 2.912920 -0.940309 6.253195 -4.522030 -2.211416 3.477868 -9.738725 1.056360 4.594083 -5.384184 -2.517223 -2.123005 -2.872886 3.946910 -9.230976 -5.506221 2.799053 1.535220 -2.871071 -2.930134 -3.449727 -6.919195 13.058753 4.979554 -2.814061 1.846777 4.793597 -7.313382 7.455342 1.838453 -12.928243 -4.527255 -5.075753 -9.690321 10.279455 -1.916312 11.424645 -15.573794 8.174256 -18.136560 5.993631 -8.390172 4.245844 13.302180 -10.371428 6.747015 7.246148 11.851555 4.554288 -1.209033 9.402755 6.204560 -1.590903 6.264533 10.735604 3.930444 -4.100858 -5.849374 -6.691382 -7.105568 1.127407 -9.721118 -17.150807 6.037766 -2.050930 1.328075 -2.563862 2.966051 -2.804988 9.572150 -10.302266 3.742124 3.526352 -3.155221 1.131180 6.590536 -2.661380 -0.502171 -3.682218 9.776990 -7.696284 4.931582 0.957357 8.760750 -3.954389 -0.566649 -6.489690 3.592573 3.621661 -7.735712 -10.873172 -10.913145 -2.932204 5.162105 -2.987104 12.695786 17.928531 -7.771144 -8.623144 10.401706 0.705742 0.058932 8.647406 3.130370 10.145726 -2.265830 -5.702703 -8.035730 -5.494300 1.133343 1.692175 2.100303 -2.254495 9.813910 -3.434744 -4.706999 17.538876 -2.918137 -6.331660 -4.362574 2.413340 -7.594545 -7.964196 10.772141 -5.883711 7.790596 0.092162 13.923305 0.125663 -4.920016 3.531209 -7.722808 -3.155384 -7.336205 0.794686 -0.022925 4.161747 -7.644136 -7.894035 -5.246307 -3.848977 -3.986324 6.755978 2.999807 2.483998 6.634340 2.245465 9.708968 10.578291 2.046417 -2.785804 -8.003280 5.543447 7.020383 -4.061075 -6.678724 -2.982676 -3.002183 -1.119036 -0.555052 1.665341 8.925730 -9.543991 -3.423020 -2.345011 2.494508 2.405609 4.169199 -18.718776 3.460971 3.826836 5.649407 6.545145 9.022741 8.913482 9.791476 4.679912 5.023471 -1.249715 2.614096 -5.361194 -0.760431 2.580460 3.902604 4.321536 10.703193 7.629032 6.825228 9.591918 8.373835 5.274498 9.072682 -0.033386 13.822383 2.224852 -4.479710 1.160886 2.491930 10.431878 15.374792 0.728826 2.665146 6.203355 0.255675 -5.528670 -11.073641 3.102267 -1.639967 1.223304 4.513734 5.062864 2.174178 -5.027950 10.773883 -0.301365 -16.966816 8.054141 3.830190 7.377084 9.116685 0.713204 3.511195 2.587343 -5.538468 10.064839 9.093494 4.236470 -9.999395 1.956897 2.257741 5.421617 6.564723 9.144058 -8.251994 4.733048 2.746573 8.556482 1.744795 6.637954 -7.768068 -3.900733 4.266976 -5.569859 -0.519213 0.371089 0.919951 -5.419095 0.994579 -8.066324 -6.598379 +PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = 0.578027 -1.402407 2.293298 -3.212804 -3.021713 -1.165609 1.194516 0.068631 -0.485629 2.709194 0.866744 -2.287370 -3.057988 3.799736 0.359373 -2.294607 0.631890 -2.007907 0.702005 -0.092274 0.481434 1.848585 0.607927 -0.552778 0.928227 -0.037458 -1.692960 2.772789 3.091826 -1.177983 0.782216 -0.990294 0.386728 2.334627 -0.731235 -1.564929 -1.255357 6.055904 -2.974957 3.856598 -3.112239 -2.718661 4.698698 -1.008004 -0.299154 -4.450884 -2.279454 3.052887 -1.957460 -2.560465 0.743876 2.008054 1.436487 -2.836389 -1.625251 2.117637 -5.168695 1.757572 1.536138 -1.421283 -0.041640 0.739200 -1.542809 1.409153 -1.798114 -1.908115 -0.511920 -2.287946 -2.182177 -1.044181 -0.297304 0.371127 3.485760 0.904141 -0.217558 1.820283 2.020807 -1.373480 3.335426 -2.899136 -3.695364 -1.333970 -2.152829 -2.362028 3.007632 -0.673233 2.059906 -4.302096 1.838138 -4.712223 2.406927 -3.857526 0.019918 4.231120 -1.759000 3.529730 1.498213 0.459704 2.781187 -0.363892 3.100187 2.645604 2.504277 3.056287 1.997240 2.293566 -2.227410 -1.611531 -3.501901 -2.308236 0.382001 -2.132249 -4.248878 2.234613 1.301554 -0.285701 2.164942 -0.634207 -0.582376 3.049091 -2.558148 2.542288 1.905716 -0.720844 -1.297826 3.136196 -1.076017 -1.517373 -1.445168 3.411053 -1.629468 3.563672 3.094471 2.797054 -0.748577 -2.401186 -0.005752 1.060208 -0.412960 -1.749417 -2.097689 -4.523262 0.751791 -0.071572 -1.727981 2.431841 5.947120 -1.391054 -2.346481 3.301449 1.197576 0.163983 0.921030 0.380213 3.655802 0.290051 -3.834444 -1.666559 -2.630203 1.649499 5.161194 1.579813 -1.036577 2.814313 -0.765012 -3.466862 1.926772 -0.289966 -1.322475 -0.234077 0.634048 -3.081188 -2.993945 2.382181 -0.922703 2.669451 0.026528 4.287587 1.962291 -1.655142 2.129291 -2.007882 -0.043829 -2.916854 -0.393764 1.604160 -0.346973 -2.262475 -1.722085 -3.399074 -0.983319 -1.941463 1.968426 -3.293789 1.597970 2.421810 1.290272 2.972342 1.888009 -0.414046 0.054745 -3.806003 1.372368 0.455250 -0.239945 -4.641492 -0.421277 -0.372951 0.101716 2.388439 -0.317670 2.438382 -1.713508 -1.321150 1.026543 -0.412014 -1.171345 0.233276 -4.661211 -0.220629 1.784970 3.583422 2.070086 3.255066 2.809758 2.386294 0.482401 4.147531 -1.493866 1.843331 -1.662562 -0.402870 -0.523845 -0.670084 1.688837 2.351093 2.322930 1.900933 4.260275 2.795243 -1.862659 2.816802 -0.727547 3.296766 -0.218680 -2.837707 1.060736 1.413494 3.049401 3.549715 1.414781 -0.996653 2.649994 -0.356642 -1.192855 -1.652294 0.690023 -0.722840 1.211979 3.773030 2.178688 0.361628 0.411146 1.564649 -0.590672 -5.996642 2.951085 1.138097 2.788068 1.822864 1.068835 1.311526 1.097199 -2.025167 1.534484 2.976306 0.982835 -3.177993 -0.360295 1.165900 1.914611 2.378861 3.681483 -7.355610 -1.337341 0.880545 1.345321 -0.848586 4.001728 -2.647362 -3.067974 2.057214 -0.452338 -0.678548 -0.590924 -1.035832 -2.356739 0.358505 -1.201559 -0.497003 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = 0.132076 0.235345 0.691094 -1.031371 -1.310948 -0.026432 0.302638 -0.507796 -0.206275 0.275609 0.504746 -0.337156 -0.375276 1.141237 -0.320888 -0.679869 -0.288360 -0.789807 -0.295367 -0.309701 -0.071537 0.756863 -0.252823 0.060691 0.291472 -0.237970 -0.264158 0.680697 0.185400 -0.628193 0.002429 -0.442729 -0.009911 1.106888 0.128123 -0.142099 -0.056050 1.941738 -0.666465 0.490930 -1.151820 -1.046321 1.101585 -0.307477 -0.185295 -1.490085 -0.940643 0.688482 -0.176777 -0.118698 0.509823 0.190437 0.091974 -0.397860 0.233048 0.494838 -1.522375 0.733695 0.574257 -0.658485 -0.394172 -0.187376 -0.336365 -0.026941 -0.346546 -0.663713 0.192747 0.239675 -0.177233 -0.038468 0.079396 -0.832206 1.530347 0.232502 -0.145881 0.478051 0.409975 -0.877950 0.994459 -0.620592 -1.190835 -0.351517 0.131203 -0.409649 0.903422 -0.150155 0.546228 -1.634777 0.209787 -1.622597 0.441228 -0.978856 0.329181 1.078782 -0.792455 0.772888 0.630694 0.182918 0.789676 0.119393 1.051919 0.410898 0.702161 0.878201 0.619167 0.553868 -0.445926 -0.478538 -1.067852 -1.181173 0.257718 -0.350881 -1.721950 0.571851 0.213778 -0.402603 -0.136647 -0.099776 0.230903 1.313024 -0.882416 0.384742 0.779275 -0.257033 -0.123891 0.987940 -0.303156 -0.111034 -0.678424 0.893880 -0.747658 1.033901 0.015899 0.756332 -0.146478 -1.272702 -1.042430 0.108702 0.097436 -0.770630 -0.860731 -1.023993 -0.012687 0.220057 -0.652671 0.649472 2.129018 -1.075576 -1.328545 1.371329 1.248287 -0.034700 0.562185 0.296349 1.261305 -0.126087 -0.752705 -0.692876 -0.805382 0.256256 0.278714 0.412035 -0.351036 0.753971 0.085253 -1.519094 1.783148 -0.384426 -0.753537 0.584032 0.382864 -0.751754 -0.851202 1.020600 0.939928 1.231907 0.128119 1.448302 -0.329530 -0.812897 0.261339 -0.388379 0.038946 -0.834972 -0.084110 0.315222 0.441692 -0.514115 -0.555429 -0.515630 -0.672274 -0.714913 0.405451 -0.233555 0.490587 0.436941 0.393407 0.128179 1.466526 0.126833 0.108705 -1.135098 0.618244 0.514220 0.198843 -1.519785 -0.154204 -0.232981 -0.187518 0.268558 -0.041424 0.701975 -0.162908 -0.125350 0.135336 -0.355095 0.033323 0.282559 -1.026788 0.146614 -0.346434 0.875791 0.191344 0.795443 1.446563 1.139556 0.731115 0.627104 -0.072299 0.022366 0.019925 -0.068050 0.185291 0.307845 0.717385 1.168399 1.012519 0.552504 1.168894 0.814214 0.202114 1.170737 -0.012993 1.969671 -0.489543 -0.403110 -0.192126 0.533877 1.081216 1.687065 0.324581 -0.017512 0.608858 0.430617 -0.450082 -1.040839 0.250630 -0.231124 -0.004548 0.894585 0.691152 -0.275374 -0.106422 1.267630 -0.244091 -1.573001 0.787474 0.280281 0.781413 0.145719 0.271203 0.088815 0.715673 -0.675411 0.688816 0.950958 0.765956 -1.194912 -0.641542 0.191252 0.817904 0.217061 1.135786 -1.858964 0.363417 0.508634 0.801314 -0.332096 0.870367 -0.861807 -0.752942 0.747102 -0.107904 -0.280355 0.644194 0.252636 -0.970826 0.283348 -0.723599 -0.674204 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 1.538812 -2.910478 2.102230 -4.642690 -4.230440 2.704357 -3.122815 -4.069643 -0.737832 0.512605 1.718287 0.396079 0.419237 3.033031 -0.114231 -4.011395 -0.261250 -1.141268 0.790164 -1.018149 -0.881052 1.928100 -2.148873 -0.158942 0.074963 -2.591659 0.284622 2.126465 0.922615 -0.509548 -1.278030 -3.006071 -3.356643 5.941328 3.300170 0.354074 0.336560 9.650055 1.012203 2.243225 -3.384552 -4.952531 3.799728 -1.637002 -1.252583 0.323254 -2.206667 1.973314 -2.422012 0.288613 2.779372 -1.743321 2.548997 -0.402396 -0.141257 -0.103513 -4.338961 0.805726 1.881324 -2.610754 -2.591455 -2.404246 -0.350981 1.500244 -3.658591 -2.562516 3.359199 3.308057 -0.542537 -1.483663 -1.058536 -4.889976 6.603991 3.109179 -0.974999 0.084209 2.076512 -3.448464 3.274954 1.999103 -7.735079 -2.127041 -1.792517 -6.282438 5.681812 -0.940754 5.520311 -8.070235 5.399208 -9.680986 1.339085 -2.603087 3.066246 5.769370 -5.260736 2.476971 4.522273 7.779128 1.813647 -2.267856 5.015127 1.252622 -2.179490 4.061015 4.738792 0.750308 -1.297235 -1.316763 -3.427264 -4.222460 0.685823 -4.426511 -7.907141 2.966788 -1.036910 0.233530 -3.356681 2.447365 -1.621823 5.039233 -6.430244 0.016098 0.860940 -1.516531 1.745293 2.286158 -1.769878 0.935604 -1.438922 4.688479 -5.065421 1.585249 -1.650666 4.064014 -0.464270 1.765681 -6.301184 1.883833 3.610364 -4.453261 -5.853417 -3.489574 -2.435384 2.793646 -2.059413 9.120537 9.538833 -5.526140 -4.943510 5.795633 -0.287372 0.178916 5.548410 2.027534 3.561324 -0.769887 -2.782583 -4.309708 -2.877583 -0.566018 -4.238711 1.298025 0.316866 5.032495 -0.378713 3.023577 10.050594 -1.737799 -4.692799 -1.421926 1.656404 -3.121896 -4.044282 4.860184 0.231310 3.379019 3.215749 7.365615 -1.597021 -2.211607 0.988452 -3.267627 -1.200183 -3.265003 0.185486 -1.667774 2.902415 -2.755359 -3.696415 -1.367883 -2.349939 -2.335790 2.376798 6.634005 2.164753 3.325038 1.264431 4.026649 8.371094 2.257859 -1.971640 -3.718176 3.035882 4.230244 -1.846363 -0.399834 -2.433665 -1.034985 -0.821621 0.530884 1.099098 4.555598 -4.618704 -0.876006 -2.146779 2.730915 2.574018 3.945355 -10.159329 2.074259 1.146732 1.781260 2.962339 3.555774 4.875332 6.253831 4.533500 0.799524 -0.154090 1.422584 -0.328152 -1.464646 2.180558 4.909191 2.526442 6.000473 4.607649 3.693509 4.003389 4.744598 3.991061 4.828442 -0.638425 9.513281 -1.331727 -1.034132 -1.626220 2.076464 5.420958 8.261405 -1.049640 2.990944 2.565967 1.745090 -2.604984 -6.920944 2.603368 -1.162713 2.957159 -1.185993 3.098839 1.034024 -3.287522 6.583613 -0.274331 -7.885066 3.828519 1.982896 3.797683 4.121447 0.520550 1.207376 0.835820 -3.880507 6.117591 5.447606 2.544687 -4.956509 2.371403 1.005896 3.588723 -1.100119 4.646277 -1.104725 4.442834 1.234168 3.935892 1.703137 1.582995 -4.201525 -2.140956 3.044184 -4.003788 0.286301 3.711602 2.329376 -3.088693 2.319132 -3.904303 -4.605882 +PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = 0.372479 0.253039 0.756456 -1.066601 -1.267473 0.226871 0.179598 -0.638574 -0.217178 0.362560 0.556235 -0.051642 -0.133959 0.883354 -0.302281 -0.529824 -0.251563 -1.267973 -0.249763 -0.438848 -0.116388 0.663702 -0.334799 0.099612 0.174040 -0.307198 -0.223048 0.606765 -0.120597 -0.722375 -0.064457 -0.454183 -0.256275 1.129230 0.313740 -0.416139 0.052763 1.976215 -0.601856 -0.011512 -0.928818 -1.101728 0.971513 -0.356340 -0.284003 -1.072527 -0.715275 0.643125 0.200311 -0.016997 0.591649 0.011371 0.200458 -0.232839 0.037322 0.329036 -1.448380 0.516716 0.523864 -0.598186 -0.547997 -0.256321 -0.044339 0.049421 -0.295795 -0.621590 0.580840 0.305840 -0.030634 -0.132115 0.053134 -0.958854 1.285033 0.336527 0.096986 0.313642 0.412468 -1.007121 1.027093 -0.269382 -1.327933 -0.319435 -0.084769 -0.925691 1.039595 -0.391093 0.562331 -1.591002 0.520810 -1.704753 0.201592 -0.794259 0.317707 0.988010 -0.715258 0.623633 0.742982 0.695519 0.621774 -0.261977 1.127991 0.280940 0.537890 1.030370 0.719563 0.442087 -0.435859 -0.227005 -1.127736 -1.155149 0.315758 -0.450897 -1.513699 0.706599 0.190562 -0.862958 -0.288287 -0.104670 0.097750 1.574839 -0.894154 0.281160 0.637226 -0.243035 -0.193484 0.871327 -0.330516 -0.025972 -0.577012 0.916712 -0.877734 0.994493 -0.024429 0.712943 -0.032386 -0.875991 -1.105297 0.236716 0.296896 -0.871171 -0.908854 -0.863412 -0.029645 0.103780 -0.632287 1.113025 2.120783 -1.144550 -1.345508 1.379700 1.231867 -0.204637 0.696759 0.285725 1.124959 -0.076046 -0.848580 -0.767371 -0.831087 0.115168 -0.284694 0.387929 0.064496 0.829661 0.189164 -0.710886 2.106511 -0.396315 -0.888648 0.949874 0.477633 -0.721391 -0.995933 0.869415 1.398321 1.066463 0.726816 1.477890 -0.264307 -0.652925 0.213874 -0.171808 0.075003 -0.843842 -0.089961 0.137559 0.433286 -0.190913 -0.570371 -0.553499 -0.631767 -0.713805 0.366445 0.251992 0.788240 0.580948 0.371612 -0.149803 1.724159 0.239859 0.000000 -1.047978 0.629922 0.687519 0.180398 -1.055677 -0.368549 -0.235981 -0.118324 0.341091 -0.002970 0.944856 -0.331218 -0.108130 0.113998 -0.010992 0.031953 0.515175 -1.495874 0.230773 -0.376465 0.753383 0.164013 0.755004 1.325253 1.241745 0.859294 0.454196 -0.051266 0.230427 -0.063020 -0.386068 0.175194 0.683716 0.718517 1.218773 1.020596 0.742533 1.099862 0.897337 0.385153 1.151941 -0.183402 2.044977 -0.583633 -0.299666 -0.409816 0.643100 1.094830 1.647646 0.458877 0.040552 0.510888 0.482669 -0.564454 -1.226092 0.397794 -0.261904 0.517188 0.361894 0.882710 -0.171739 -0.256377 1.285277 -0.173595 -1.592845 0.757220 0.322271 0.799620 0.370620 0.259322 0.184364 0.535602 -0.709341 0.884093 1.113587 0.724198 -1.189402 -0.261496 0.278555 0.982622 -0.482935 1.190959 -1.698342 0.683664 0.324431 0.605132 -0.220690 0.847498 -0.987605 -0.680335 0.892598 -0.212491 -0.167503 1.080120 0.506977 -1.209231 0.501352 -0.798348 -0.522756 +PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.023238 -1.979104 0.202676 -0.976594 -1.239882 0.572560 0.549478 -3.854437 -1.084973 2.243399 0.776380 -1.381328 -0.152714 1.293028 1.007592 -0.795431 1.583025 1.309383 0.529556 -1.306163 -0.791410 0.484121 -1.003403 -1.366147 -0.473045 -0.793938 0.589709 1.199591 -0.935745 1.500725 -0.795336 -2.195779 0.375982 4.172564 2.569057 0.956601 -2.735349 4.732853 -0.579802 4.215055 -4.476402 -2.388045 3.219742 -1.124021 0.866544 -2.393306 -1.384545 2.124830 1.503566 -2.859086 -0.675480 -0.998578 1.575996 -1.492636 -1.593702 1.928237 -0.521669 -0.549704 1.553177 -4.079040 -2.779409 -1.192917 -0.094845 2.118310 -5.334791 -2.740820 1.179163 0.869304 -0.041560 1.386894 -3.415824 -4.489974 1.157178 1.393505 -2.209309 -1.164786 -0.738322 -1.308970 1.692958 3.491432 -3.117065 -1.835431 -1.161176 -1.098672 0.663706 0.747168 4.564909 -6.023206 1.852319 -6.721073 1.804207 -2.334111 3.216662 3.069207 -2.100685 1.603391 1.489785 4.300967 1.404571 -1.043177 2.128924 1.673389 -0.204708 0.328464 4.635837 1.830106 -0.192828 -2.959557 -0.915638 -1.680201 2.326088 -1.857053 -3.520938 1.936174 -2.979220 -0.102653 -2.339254 2.112272 -0.515334 3.484142 -4.920584 -1.085552 2.076548 -1.222191 2.873805 1.817382 -1.632632 1.634234 -1.632040 2.165749 -0.477120 1.202315 -0.886172 3.091097 -2.330123 -1.147867 -2.934468 1.306705 2.932195 -3.931887 -4.323667 -4.315548 -1.484615 2.816978 -2.107962 2.806276 5.271451 -3.194035 -1.731266 2.049705 -0.273518 -1.740222 2.225870 0.857078 5.488615 -3.166983 1.220925 -0.787278 0.065822 0.965382 3.061851 -1.153804 -2.772465 2.648167 -1.368232 -2.976937 5.738259 -1.128574 -1.921318 -0.009717 -0.235259 1.357229 -1.336116 2.960922 -4.167223 1.919087 -2.472826 2.885470 -1.400093 -0.350282 1.132605 -2.963420 -2.149659 -0.448568 1.325608 -1.252323 4.280525 -2.983944 -2.326917 -0.057812 -3.550819 -0.098722 3.482599 0.405941 -0.674821 1.394918 0.104924 3.643503 2.871733 0.677696 -1.172443 -1.917080 2.109549 3.124698 0.738944 -1.101984 -2.592321 -2.693724 -1.271128 -3.449987 0.966826 3.301762 -2.728412 -0.150770 -0.010181 0.274646 0.604017 1.184240 -3.541229 2.218943 1.191631 1.274402 0.592774 4.569692 1.480755 3.262667 1.909596 -1.267308 -0.146632 -1.455677 -3.905516 2.085546 1.130896 0.906090 1.352254 1.583391 1.818722 1.585780 3.339727 -0.930470 3.614645 3.569902 0.652914 4.171070 -1.643421 1.128667 0.955569 -1.209750 3.437825 5.314818 1.267078 -1.275348 1.226151 -2.195148 -4.172758 -1.724018 -0.521019 0.282936 -0.928596 0.814183 2.137731 0.267667 -2.819363 5.689755 0.042832 -6.174413 2.536088 1.288793 1.199688 5.143991 -1.324838 2.857997 1.057673 1.307083 2.301765 2.974502 2.347733 -3.524679 -1.318753 -0.150094 0.868641 3.434878 0.273034 -4.536166 1.991057 1.749671 4.826998 0.168594 1.314171 -3.617192 2.175005 1.182818 -1.377564 0.683101 0.634501 3.023421 -0.844482 -0.572728 -4.875039 0.607748 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.573474 -10.753702 5.378449 -15.617563 -9.940471 8.469891 -6.353579 -14.541226 -3.147301 6.399434 6.005037 -0.430236 2.467342 12.008212 1.694299 -9.643848 3.177211 -2.238954 3.435113 -1.224756 -2.538495 5.949014 -7.187500 -3.103050 -0.372064 -7.044908 2.085457 6.774845 -1.405792 1.765101 -4.790752 -10.055901 -10.283727 20.123425 11.947188 1.782683 -2.471265 29.509475 -3.596148 15.590984 -12.598563 -15.105094 13.459801 -4.678781 -2.847538 -1.049216 -7.719993 6.490073 -2.001179 -4.984122 6.876969 -6.865007 10.041359 -2.866853 -2.424203 1.389025 -10.432304 -3.073186 7.544609 -9.779482 -9.539042 -7.745941 1.076583 7.124886 -19.001406 -8.597165 10.320448 7.070670 -0.224714 -4.508412 -7.494470 -18.175641 15.177276 11.272637 -4.000025 -1.223026 4.177203 -14.048240 10.646058 9.457725 -23.621463 -6.894400 -8.299887 -22.130031 16.401307 -2.321418 21.523428 -26.602742 18.121912 -31.682916 4.693439 -8.553060 10.180414 20.041647 -13.512611 7.191191 13.272291 29.902321 4.783228 -8.032228 14.533059 7.017593 -7.242579 10.503718 19.811528 6.158357 -6.683529 -8.363367 -10.934600 -11.694787 5.006758 -16.281177 -22.793920 10.407206 -5.793167 -2.910293 -11.262419 7.756355 -7.501671 18.405148 -21.873539 -0.076416 2.889333 -5.223127 5.835180 7.902814 -4.499205 3.416291 -4.388452 14.142044 -13.797416 5.934741 -4.918659 14.313828 -7.293073 9.195833 -14.625494 7.003008 11.807052 -15.717498 -19.518579 -16.771802 -8.485929 11.660117 -6.258058 29.089280 29.599951 -17.213770 -14.822926 17.113604 -0.879604 -2.839334 15.399403 5.833571 13.222077 -5.216432 -6.025152 -13.000696 -7.080077 -1.586903 -3.367038 2.077156 -0.932093 16.930537 -5.748162 4.148272 34.613409 -4.268559 -13.538460 -6.298976 4.960278 -9.221961 -12.673320 16.891513 -9.912250 10.005466 4.914888 22.083973 -4.625544 -3.375400 3.741628 -14.813667 -5.929237 -13.678444 1.049354 -5.600263 11.930967 -9.204199 -12.271427 -5.001314 -7.746808 -6.382213 9.905824 10.943649 4.712497 10.021118 2.569736 16.159258 23.534982 6.051431 -7.399803 -9.710402 10.169790 14.466748 -5.733329 -1.665646 -9.310418 -5.876462 -3.677474 -3.384804 3.720544 16.019216 -18.587060 -2.931413 -4.411967 8.615347 5.916455 11.233215 -36.131591 8.396599 4.933705 6.355777 10.209692 13.894671 12.210143 20.350884 12.480372 0.796334 -1.274364 3.268875 -10.838448 -2.234817 6.589436 12.609768 8.011304 18.872630 13.389205 12.735107 13.227067 12.536225 14.710406 15.579417 -1.973004 26.409571 1.113649 -2.879682 -1.213672 4.132976 16.662848 25.353143 0.309355 6.573998 8.228677 -0.114188 -13.426272 -17.860063 7.619726 -3.402157 7.115980 -2.777160 10.634228 3.910401 -12.039768 22.861670 -0.985659 -27.810334 10.318414 6.747261 12.590803 18.907632 -0.269123 8.774570 2.299214 -7.725713 22.025385 17.210442 7.892452 -15.918197 7.463632 3.340984 9.264137 4.823464 12.097696 -8.587522 15.054281 2.001464 14.859677 5.067709 9.400558 -14.070600 0.651232 8.650617 -11.766036 2.070555 7.373722 9.959764 -7.220764 4.817948 -18.364666 -9.856393 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.373684 -0.724186 0.465286 -1.044313 -0.775927 0.785714 -0.705531 -0.913534 -0.111174 -0.143177 0.441291 0.266833 0.242833 0.630073 0.080920 -0.803291 0.035257 -0.381532 0.192200 -0.013978 -0.180656 0.316698 -0.524888 -0.027903 -0.078280 -0.519140 0.054631 0.414317 -0.075084 -0.146320 -0.445397 -0.632352 -0.888415 1.303328 0.788394 0.145387 0.178057 2.059613 0.227053 0.587575 -0.548725 -1.010063 0.671885 -0.377255 -0.370452 0.266519 -0.470885 0.354386 -0.281964 -0.078854 0.729631 -0.483374 0.562122 0.041224 -0.027446 -0.071719 -0.859841 -0.120728 0.401620 -0.423341 -0.518448 -0.547771 -0.003380 0.306067 -0.867707 -0.485822 0.881316 0.728217 0.008402 -0.386230 -0.234775 -1.237035 1.557236 0.787459 -0.150851 -0.033819 0.570863 -0.898982 0.728554 0.674080 -1.738626 -0.382190 -0.565795 -1.552183 1.421915 -0.341588 1.221867 -1.655889 1.318811 -2.101985 0.217672 -0.581817 0.612604 1.238494 -1.079291 0.373109 1.088132 2.053001 0.230387 -0.531626 1.097897 0.277294 -0.701492 0.847090 1.222805 0.026813 -0.313670 -0.240397 -0.815560 -0.932406 0.211569 -1.051530 -1.730145 0.649061 -0.174471 -0.019129 -0.833775 0.644089 -0.357027 1.101122 -1.347035 0.170294 0.131942 -0.309201 0.316927 0.506626 -0.404523 0.213238 -0.281085 1.009208 -1.162646 0.312989 -0.407428 0.797193 -0.095304 0.694763 -1.242367 0.439603 0.845530 -0.990666 -1.265533 -0.728515 -0.505325 0.806765 -0.389384 2.134855 2.045855 -1.211674 -0.987731 1.233080 0.155168 -0.002657 1.174972 0.463806 0.682109 -0.155233 -0.594484 -0.978602 -0.624036 -0.293369 -1.259043 0.294263 0.266196 1.122217 -0.100250 0.664816 2.767532 -0.406067 -1.054280 0.008635 0.304397 -0.708123 -0.994451 1.088878 0.278068 0.655112 0.978104 1.595096 -0.262297 -0.294783 0.173426 -0.495812 -0.232134 -0.879147 -0.032095 -0.425424 0.613943 -0.488452 -0.797864 -0.261381 -0.484389 -0.457956 0.458312 1.603047 0.558253 0.764059 0.222171 0.668552 1.907369 0.569707 -0.512454 -0.743189 0.655360 0.888284 -0.583678 0.244346 -0.553561 -0.262964 -0.097800 0.059855 0.268431 1.037846 -1.174658 -0.235752 -0.475499 0.708857 0.533967 0.942261 -2.426932 0.369601 0.359665 0.325211 0.732993 0.681313 1.054514 1.444045 1.064693 0.074751 -0.015470 0.524375 -0.366787 -0.504822 0.367244 1.351333 0.518917 1.248700 0.941514 0.839350 0.769109 1.064607 1.149953 1.025742 -0.039070 2.026782 0.037831 -0.248361 -0.346428 0.418389 1.174031 1.700443 -0.287293 0.906258 0.469821 0.433540 -0.693779 -1.481567 0.635136 -0.244844 0.676984 -0.389060 0.622906 0.357040 -0.803062 1.409679 -0.018368 -1.689234 0.582833 0.420298 0.814468 1.137169 0.132338 0.434915 0.057404 -0.781022 1.538534 1.158427 0.558255 -1.049204 0.684665 0.273572 0.693481 -0.449017 1.011917 0.010772 1.128160 0.051588 0.769306 0.426339 0.243278 -0.925367 -0.229750 0.681861 -0.954212 0.113582 0.856534 0.655557 -0.627730 0.431573 -1.071082 -0.975015 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.188196 -0.029943 0.196066 -0.739970 -0.817435 0.075024 -0.075220 -0.370090 -0.170065 -0.001233 0.290776 -0.266092 -0.315016 0.885884 -0.142201 -0.640919 -0.128783 -0.465822 -0.101317 0.119076 -0.133547 0.520558 -0.231354 0.035883 0.195386 -0.008550 -0.293180 0.252739 0.394939 -0.540881 -0.302734 -0.315425 -0.133741 0.809035 0.182771 -0.046336 0.061969 1.438421 -0.082767 0.532241 -0.772545 -0.598460 0.614604 -0.230495 -0.118846 -0.806269 -0.532901 0.504953 -0.356195 -0.072939 0.458934 0.033890 -0.086548 -0.196662 0.232378 0.356202 -1.093480 0.752309 0.465423 -0.055830 -0.050543 -0.249968 -0.256987 -0.098155 -0.164544 -0.479233 0.095285 0.227460 -0.331814 -0.132248 -0.135444 -0.584096 1.207320 0.347900 -0.304605 0.258138 0.198787 -0.541282 0.577720 -0.719798 -0.946351 -0.157907 0.059958 -0.093676 0.798239 0.007844 0.336839 -1.185486 0.322480 -1.270057 0.254306 -0.734107 0.329655 0.953939 -0.678991 0.384231 0.425689 0.138131 0.656157 0.222047 0.784892 0.244463 0.109191 0.457152 0.364691 0.281030 -0.198256 -0.202803 -0.441206 -0.765947 -0.021100 -0.080883 -1.260696 0.415347 0.008824 0.268545 -0.133952 0.231550 0.040671 0.382507 -0.766761 -0.162118 0.281524 -0.197986 0.294148 0.764529 -0.250002 -0.023091 -0.592360 0.682557 -0.423567 0.586966 -0.144038 0.528971 -0.093504 -0.804049 -0.929301 0.046833 0.230714 -0.577371 -0.738103 -0.782399 -0.022967 0.031530 -0.490291 0.749146 1.463782 -0.776558 -0.732939 1.074932 0.458802 0.266184 0.655884 0.111418 0.861789 -0.121729 -0.369620 -0.226818 -0.485631 -0.128746 -0.376100 0.257261 -0.297542 0.338890 -0.011109 -0.776705 0.937024 -0.032781 -0.591170 0.036847 0.097926 -0.511488 -0.668297 0.813471 0.307544 0.707216 0.203547 1.054563 -0.185353 -0.527804 0.353866 -0.208752 0.040604 -0.493004 -0.190603 0.134827 0.279909 -0.592847 -0.373868 -0.096745 -0.270081 -0.617740 0.277543 0.360988 0.182363 0.344943 0.330150 0.380995 1.063477 0.041902 0.171709 -0.802050 0.454940 0.343168 -0.187384 -0.847292 -0.034478 -0.211241 -0.142049 0.426180 -0.057650 0.335329 -0.224804 -0.276142 0.029536 -0.053929 0.406533 0.332625 -0.480924 0.081369 -0.160900 0.425670 0.352133 0.580969 0.779729 0.839625 0.555163 0.298299 -0.042403 0.149811 0.168136 -0.141223 0.067027 0.362527 0.510593 0.605905 0.725797 0.324752 0.693814 0.528911 0.062265 0.829280 0.139839 1.388544 -0.218573 -0.334452 -0.078911 0.113101 0.796776 1.239063 -0.449876 0.180705 0.448282 0.236879 -0.214333 -0.657028 0.221170 -0.206355 -0.269812 0.404008 0.190492 0.013154 -0.171472 0.923405 -0.290583 -1.074144 0.601464 0.203990 0.569530 0.156724 0.278459 0.060185 0.393158 -0.711198 0.521092 0.712839 0.584262 -0.620236 -0.322758 0.077120 0.501342 0.065667 0.748660 -0.621415 0.284289 0.491960 0.647816 0.091735 0.147534 -0.466689 -0.614546 0.426130 -0.159219 -0.128288 0.192271 0.239228 -0.432567 0.049316 -0.310209 -0.629104 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 1.188973 -3.122764 1.553332 -3.439661 -2.773958 2.257994 -2.625481 -2.476957 -0.457709 0.680813 0.823933 0.566119 0.389770 2.532872 0.301331 -3.005925 0.191429 -0.835040 1.253320 -0.110414 -0.537595 1.569385 -1.346239 0.192423 -0.003462 -1.864768 -0.169360 1.423250 0.775952 -0.078356 -0.799249 -2.242192 -3.147138 3.963883 2.338423 0.227300 0.345595 7.145499 0.753550 2.746339 -1.738739 -3.473545 2.314572 -1.164205 -0.795008 1.391930 -1.398620 1.447103 -1.654499 -0.386573 2.439988 -1.069745 2.159492 0.059721 -0.222956 -0.672902 -2.919674 -0.162112 1.049604 -1.314999 -1.290264 -1.612838 -0.589102 1.448930 -3.246293 -1.631862 2.367493 2.164533 -0.563700 -1.696774 -0.541183 -2.862873 4.362917 2.677021 -0.793612 -0.036468 2.317668 -2.248599 2.422482 1.328901 -6.075860 -1.374555 -2.582179 -5.743863 4.724575 -0.895874 4.468679 -5.576662 5.235494 -6.917595 1.053283 -1.936397 1.855492 4.708055 -3.532216 1.716224 3.610990 7.003668 1.394292 -2.077482 3.704211 1.399510 -2.443591 3.495039 3.675375 0.426655 -1.316604 -0.710969 -2.746343 -2.698177 0.513160 -3.962103 -5.211617 2.197902 0.059435 0.572073 -2.110594 2.134742 -1.882104 3.236785 -5.092228 0.449778 0.192568 -1.051086 0.838535 1.221679 -1.451716 0.458900 -0.890026 3.773809 -4.128953 1.210774 -0.669590 2.942206 -0.659647 3.235473 -3.672610 1.653850 2.527866 -2.942101 -4.088168 -2.894768 -1.708460 2.360543 -1.393696 7.707977 6.753489 -3.759201 -2.768145 4.217755 -1.079452 0.199457 3.644111 1.335682 1.518946 0.125413 -2.968314 -3.360228 -2.407067 -0.739043 -2.814832 1.573017 0.864342 3.944156 -0.608430 3.239467 7.328544 -1.244961 -3.783667 -2.352048 1.085678 -2.595867 -2.745519 3.471484 -1.354291 1.583569 2.716724 5.261309 0.109104 -0.949692 0.864474 -3.020424 -0.809740 -3.023942 0.111600 -1.418172 1.412314 -2.212341 -2.643563 -1.249595 -1.390272 -1.841812 1.182619 4.502343 1.831388 2.987824 1.331743 4.069313 5.911401 2.171543 -1.916190 -2.538980 2.131493 2.600718 -2.199235 0.764128 -1.669728 -0.411770 -0.336877 0.654157 0.817700 3.071914 -4.273439 -0.882042 -1.986097 2.514651 1.805704 3.435541 -8.389475 1.188508 2.012088 1.587233 2.930756 2.170731 3.131178 4.447739 3.467664 1.116034 -0.410414 2.100549 -0.928635 -1.212831 1.600976 3.536100 1.684998 4.259775 3.405300 2.769952 2.793037 4.006854 2.961742 3.069058 -0.752051 6.404190 0.080346 -1.207162 -1.058589 1.865848 3.711598 5.481250 -1.003210 3.040846 2.077990 0.934131 -1.905399 -4.316604 2.474553 -1.068111 2.979315 -1.544122 1.901260 1.313475 -2.267700 3.913919 -0.332718 -5.755492 2.361362 1.551236 3.056532 3.782233 0.921327 1.407104 -0.199948 -3.274916 5.053078 4.164755 1.258826 -3.197879 2.733862 0.882620 2.087345 -0.368183 3.847422 -0.027229 3.090709 0.347323 2.337532 1.316799 1.006397 -2.783020 -1.777374 2.488996 -3.489262 0.197637 2.411550 1.346249 -1.674833 1.802861 -2.668522 -3.573711 +PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 1.144167 -2.992278 1.571460 -3.708695 -3.058939 2.753090 -3.142026 -3.172579 -0.393025 -0.141355 1.319774 0.848709 1.166294 2.734483 0.081317 -2.842015 0.017580 -0.785835 1.207750 -0.153753 -0.556577 1.583731 -1.848647 0.319579 -0.191254 -2.079077 -0.059313 1.366339 0.229117 -0.135745 -1.291540 -2.399389 -3.519312 4.459589 2.805993 0.363649 0.715500 7.620605 0.696120 2.341606 -1.815793 -3.544340 2.150457 -1.222702 -1.153414 1.408382 -2.064221 1.049043 -1.390850 0.136588 2.741265 -1.660725 2.168054 0.546921 0.208612 -0.808573 -2.976978 -0.421785 1.305159 -1.465397 -1.473820 -1.956700 -0.412507 1.149107 -3.457232 -1.571466 2.968097 2.953432 0.119499 -1.678279 -0.490487 -3.942377 4.997776 2.844381 -0.758209 -0.146767 2.386057 -3.163640 2.536909 2.081424 -6.539277 -1.308971 -2.324857 -6.053735 5.058641 -1.104728 4.795335 -5.856500 5.270543 -7.506931 0.722795 -1.993044 2.087302 4.759114 -4.182055 1.359945 4.108195 7.869792 1.420865 -1.906693 3.967898 1.380068 -3.022510 3.437343 4.180672 0.364643 -0.993529 -0.525975 -2.881561 -3.159003 0.564628 -4.090801 -6.084922 2.221123 -0.268591 0.053919 -3.109141 2.374684 -1.589906 4.047282 -4.932213 0.479849 0.263091 -1.108974 0.797137 1.502787 -1.452926 0.619097 -1.147448 3.757354 -4.599178 1.079344 -1.378038 2.905969 -0.830982 2.964971 -4.647817 1.551174 2.778174 -3.504893 -4.431838 -2.711134 -1.903260 2.735262 -1.296541 8.047715 7.334764 -4.477196 -3.369631 4.639327 -0.051119 -0.105332 4.358603 1.613741 1.903556 -0.007589 -2.690418 -3.891705 -2.596560 -1.268674 -4.381298 1.506781 1.213816 3.951915 -0.353765 2.749576 9.503465 -1.528439 -4.142219 -1.522806 1.319578 -2.580005 -3.147612 3.939364 -0.222311 1.925293 3.112834 5.546389 -0.438815 -1.144941 0.640312 -2.638274 -0.813470 -3.051875 0.152068 -1.663067 2.022086 -1.854809 -2.819017 -0.929229 -1.700493 -1.877451 1.170576 5.799288 2.049479 3.055957 1.142688 3.159949 6.965749 2.448296 -1.827324 -2.519802 2.349168 3.217000 -2.386480 0.729136 -1.746158 -0.734981 -0.336767 -0.066297 0.945437 3.475481 -4.592530 -0.847452 -2.343595 2.671521 2.241390 3.719716 -8.958211 1.572743 1.262219 1.463156 2.907091 2.019345 3.695530 5.156189 4.017477 0.605071 -0.163720 1.884813 -0.704490 -1.338516 1.898400 4.230611 1.750431 4.956953 3.631230 3.076375 2.568759 4.112679 4.133186 3.477666 -0.509892 7.378502 0.216884 -0.926292 -1.485394 1.869258 4.113299 6.320957 -0.799724 3.560575 1.789443 1.377521 -2.286019 -5.350030 2.668813 -0.896017 2.679328 -1.818712 2.018302 1.341802 -2.760536 4.592246 -0.148266 -5.880080 2.222581 1.545279 2.959149 3.824914 0.878070 1.286770 0.019184 -3.257226 5.807920 4.374557 1.687782 -3.551939 2.487002 0.918688 2.374409 -0.798086 4.060545 0.283791 4.371153 0.362106 2.493231 1.390317 0.845457 -3.105986 -1.478375 2.637804 -3.723814 0.113599 3.053016 1.936074 -2.146315 2.012467 -3.154359 -4.202404 +PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 4.677960 -0.838961 2.554983 -2.213672 0.100611 -0.653051 7.350351 -4.737294 -3.464001 11.150853 0.140398 -3.454497 -3.244487 3.450450 0.062349 -1.010941 1.976085 -0.168871 -1.224578 -0.238797 -3.834885 1.187903 -2.088993 -5.899046 3.002250 -0.088173 3.505179 6.240171 -4.160966 4.482940 0.667800 -3.530058 1.827348 9.306316 3.327726 -0.540977 -3.768462 11.665057 -12.681815 11.184929 -6.829634 -9.235280 14.214012 -1.434741 0.151136 -5.023665 -0.650453 6.493926 -1.115218 -8.010178 -1.687991 -0.597888 2.779462 -7.832833 -4.290344 7.648426 -8.636642 -0.525211 4.442825 -6.959717 -11.046590 -2.537060 2.635383 2.503333 -10.020474 -6.364124 -0.130753 -4.081963 -1.215264 1.415930 -8.804994 -6.210292 3.307331 1.250753 -1.494797 0.836596 -3.766454 -2.231131 3.778542 2.139340 -5.024036 -4.844518 -0.855841 -6.254663 2.655364 4.407376 8.321035 -12.204549 3.430373 -11.807874 3.970756 -6.546550 5.270663 8.969729 -1.584870 8.508590 0.916509 7.549224 -1.061787 -2.317154 3.925823 3.397453 3.623203 1.501572 6.288065 8.208129 -7.979286 -10.829175 -7.599324 -2.281827 4.158152 -3.230054 -7.762375 3.923500 -6.122258 0.841999 0.316935 0.434452 -3.935670 8.345372 -12.989293 4.921095 2.424730 -1.957564 5.454107 4.740330 0.001367 1.120191 -0.600986 3.653975 0.927160 2.996695 0.108854 7.305523 -6.422158 -1.041763 0.266260 2.572081 4.234745 -5.797239 -7.694639 -13.793207 -2.514038 6.979129 -4.541128 5.298130 13.126244 -2.996325 -4.870122 3.765263 -3.043140 0.644417 2.725553 2.413212 11.335917 -6.485906 1.154028 0.719944 1.046679 4.753763 12.115768 -3.083206 -7.355840 7.657998 -3.516826 -1.320898 9.746115 1.179246 -0.191972 -0.884314 1.248670 -1.262193 -4.252813 10.238719 -11.517724 6.667984 -6.077702 9.767192 -3.771350 0.560927 1.946206 -11.704541 -3.517800 -10.348269 -0.522184 -2.455553 6.702982 -6.904248 -5.070842 -3.573268 -2.301732 -0.927151 10.575516 -8.409222 -1.790171 -0.407154 -2.107447 8.012493 1.041226 -3.840609 -2.123680 -6.975672 2.112650 3.952320 -0.225345 -9.798367 -4.623828 -2.424807 -3.585636 -0.675570 1.052371 5.470033 -7.029652 0.592879 5.973755 0.742069 -2.977187 -1.089670 -10.177782 3.145982 2.114589 3.210923 4.563596 11.639174 5.475751 5.705310 -0.600306 3.589795 -1.514993 -3.278184 -11.726774 3.711554 0.074268 3.648014 4.160742 4.168731 2.979833 3.484868 3.157535 -0.373847 0.673800 7.410503 3.436154 7.789218 -3.400874 -2.589795 4.874844 -0.047759 5.549621 3.858528 -0.112079 -6.373025 3.680211 -5.855316 -7.747507 1.010799 -0.540055 -1.204880 -0.848796 5.676597 6.637933 -0.988033 -2.307320 13.528695 -2.323886 -17.291568 4.559904 3.410906 5.472748 9.247617 -2.747658 7.404454 5.105192 5.424211 4.887749 4.662539 4.504025 -8.516138 4.415021 1.298896 3.796251 8.519902 -1.156879 -20.455110 0.222418 -0.007840 8.824061 0.055390 11.282492 -5.121897 6.248003 -0.026515 -1.459906 3.159030 -1.838581 6.556436 1.737806 1.016838 -14.656529 3.789086 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.421310 -0.002789 1.327421 -1.353993 -1.178420 0.039968 1.381258 -2.049493 -1.199169 4.029419 0.090975 -1.513033 -1.837562 1.576646 -0.464893 -1.449200 -0.114349 -0.683590 -0.377638 -0.864542 -1.311908 0.823075 -0.795928 -1.534439 0.877577 -0.497475 1.029662 1.974483 -0.284257 1.041792 0.439045 -1.461411 0.581686 3.773860 1.418002 0.077129 -1.062558 4.688780 -3.106226 3.672288 -3.304391 -4.108055 4.452613 -0.379133 0.157938 -2.105634 0.138280 2.575166 -1.853588 -1.784055 -0.074569 -0.096405 0.846723 -2.384511 -1.148006 2.401259 -3.994805 1.443563 1.315844 -2.611357 -3.413724 -0.840656 0.375667 1.209360 -2.569632 -2.401330 -0.131071 -0.319264 -1.219684 0.600091 -2.417699 -1.989324 2.010246 0.632698 -1.062491 0.361996 -0.743148 -0.329664 1.684102 -0.865977 -2.405939 -1.746345 -0.053287 -1.863437 1.494680 1.883947 2.562312 -4.889800 1.350455 -4.602982 1.775352 -2.165875 1.974116 3.244639 -0.921958 2.961121 0.754737 1.690345 0.481913 -1.025317 1.856806 1.001809 1.557006 1.451054 1.970375 2.715483 -2.664888 -3.418804 -2.608702 -1.569490 1.067227 -1.189588 -3.171002 1.296961 -1.794736 1.094184 0.212136 0.024940 -1.459875 2.486681 -5.517526 0.295430 0.669876 -0.705502 2.376226 1.628638 -0.122951 0.811716 -0.061016 2.178335 -0.322353 1.175504 0.105718 2.761711 -1.308615 -0.983745 -1.670853 1.303017 1.753280 -1.985093 -3.041904 -4.742267 -1.294362 2.127501 -1.678440 2.985177 5.325658 -1.507500 -2.488786 2.317977 -1.867743 0.462727 1.795120 0.997056 3.795779 -1.991288 -0.296722 -0.332289 -0.314461 1.657902 4.128278 -0.563084 -2.563916 3.037172 -0.673435 0.528166 1.440553 0.033358 -0.950851 -1.810608 0.346916 -1.051792 -1.388549 3.225949 -3.851257 2.510079 -1.794953 4.173970 -1.621162 -1.092702 0.760970 -4.706818 -1.068225 -2.907501 -0.250921 -0.634764 2.163087 -3.340882 -1.945644 -1.248900 -0.822830 -1.023219 3.341941 -2.379162 -0.346357 0.374692 -0.078729 4.474104 1.484409 -0.969663 -0.893966 -2.765339 1.030354 1.403632 0.404878 -3.715361 -1.460697 -0.842170 -1.281410 0.920592 0.180422 1.989623 -2.006605 0.319200 1.419657 -0.147788 -0.239837 0.247533 -3.446502 1.280506 0.795677 1.351794 1.606882 3.957019 2.186615 2.442276 0.532487 1.606134 -0.484238 -1.147099 -2.329368 1.091375 0.959246 0.866724 1.728511 2.190707 1.572162 1.390178 2.054492 1.119671 -0.505837 3.020648 0.305493 3.432741 -2.293574 -0.569707 1.050880 0.541851 2.222699 2.535542 -1.158374 -1.831369 1.812857 -1.524721 -1.856567 -0.543608 -0.036383 -0.904579 0.265539 1.926741 2.638118 -0.486214 -0.771406 4.834441 -0.721067 -5.761664 2.478337 1.435490 1.948342 2.315068 -0.937634 1.546579 1.695228 0.258489 1.521734 2.327934 1.669042 -3.448235 1.061484 0.347978 1.926241 2.638002 0.551390 -6.374137 -0.720545 0.724932 3.466685 0.347282 3.601833 -2.238639 0.243693 0.768789 -0.654769 0.614947 -0.135048 1.988262 0.114792 1.004874 -3.595470 0.037566 +PE-benchmarks/floyd-warshall.cpp__main = 1.181259 -0.283452 0.572426 -0.872239 -0.296762 -0.030403 1.308849 -1.089901 -0.767978 1.959104 0.107101 -0.798533 -0.912216 1.110333 -0.063972 -0.681566 0.416792 -0.449344 -0.262078 0.073443 -0.920202 0.459063 -0.555075 -1.165935 0.777494 -0.010487 0.494479 1.398761 -0.376589 0.455174 -0.194107 -0.818670 0.197246 2.417861 0.785249 -0.249529 -0.501562 3.330977 -2.229372 2.392253 -1.630517 -2.091498 3.173878 -0.443198 -0.203558 -1.256663 -0.339546 1.570257 -0.788386 -1.408451 0.001526 -0.161764 0.371277 -1.666645 -0.740168 1.885114 -2.597204 0.536405 1.106528 -1.049653 -2.166864 -0.803104 0.376155 0.242289 -1.865703 -1.553358 0.157132 -0.680055 -0.674454 0.264358 -1.942693 -1.504984 1.509190 0.578343 -0.469131 0.328756 -0.607654 -0.760192 0.999930 -0.056774 -1.583685 -1.043438 -0.123147 -1.293233 1.309191 0.771652 1.656615 -3.158468 0.892198 -3.156535 0.817194 -1.902015 1.335984 2.497068 -0.919017 1.950612 0.359133 1.579110 -0.045804 -0.373303 1.379152 0.722684 0.580481 0.496283 1.445648 1.605870 -1.597037 -2.149349 -1.588481 -0.766192 0.577412 -0.619941 -2.393975 0.993345 -1.415403 0.530282 0.010034 0.410182 -0.934383 1.593496 -3.040152 0.663622 0.453358 -0.537437 1.467611 1.432333 -0.171848 0.208600 -0.512883 1.279420 0.066375 0.841120 -0.260947 1.694348 -1.132553 -0.720495 -0.678586 0.391483 1.093627 -1.459207 -2.189783 -3.086513 -0.608985 1.176848 -1.135295 1.793660 3.480610 -0.894464 -1.288675 1.509785 -0.613574 0.694469 1.215263 0.533937 2.701259 -1.395377 0.119185 0.124621 0.067351 0.684467 1.451661 -0.564035 -1.550540 1.600497 -0.606599 -0.105428 2.394148 0.280814 -0.357300 -0.212264 0.140522 -0.591845 -1.470241 2.721933 -1.965842 1.767822 -0.818342 2.706052 -0.828324 -0.355197 0.690290 -2.199429 -0.524892 -2.342028 -0.273289 -0.545432 1.411075 -1.806883 -1.375899 -0.637889 -0.331164 -0.536987 2.277466 -0.768428 -0.277357 0.060777 -0.151666 1.799476 0.884992 -0.886668 -0.184778 -1.996749 0.645709 1.070307 -0.306209 -2.281521 -0.751981 -0.468289 -0.803458 0.331480 0.217969 1.169037 -1.626803 -0.223288 1.198636 0.339835 -0.160028 0.069282 -2.485227 0.701790 0.341000 0.531274 1.276211 2.639491 1.609821 1.448444 0.135117 0.731136 -0.267609 -0.455146 -2.139451 0.481119 -0.013240 1.244328 1.063252 1.099245 1.009734 0.803074 0.846546 0.351178 0.042139 1.914534 1.050909 2.427250 -0.749434 -0.779182 0.896144 -0.130965 1.623410 1.524044 -0.632474 -1.074508 1.061906 -0.822450 -1.475443 -0.486374 -0.087878 -0.428891 -0.313289 1.189726 1.124859 -0.246694 -0.504643 3.311876 -0.650170 -4.074355 1.293704 0.866640 1.358645 1.824478 -0.353311 1.375898 1.310981 0.381488 1.294205 1.243807 1.239058 -1.876266 0.915951 0.272396 1.088391 1.302862 0.174602 -3.984149 0.213226 0.299685 2.172756 0.469882 2.052350 -1.088046 0.733040 0.123765 -0.482724 0.556785 -0.226081 1.536041 0.011124 0.248661 -2.975715 0.239552 +PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = 5.702476 0.588176 2.228928 -5.462946 -0.611499 -1.806126 10.566406 -7.103417 -5.448504 15.314608 1.668525 -6.192251 -3.748138 5.476331 0.222382 -2.280398 4.005240 0.452049 -3.028256 -1.993056 -4.851131 1.463538 -2.147511 -9.110136 3.162679 -1.255737 4.001003 7.264596 -5.408904 4.844494 0.719330 -4.430962 4.209659 12.949385 4.253377 -1.615293 -7.385263 13.961494 -15.278406 14.004900 -10.329734 -10.489162 18.499302 -1.775445 1.283841 -10.623793 -2.767370 7.989653 4.586430 -10.850377 -4.044737 -1.355058 4.119665 -11.587958 -6.776758 11.549048 -7.852113 -1.110649 6.714596 -11.259355 -14.309152 -2.464850 4.282295 4.201951 -14.261746 -9.541379 -0.045284 -4.356465 -1.235001 2.583782 -12.808300 -10.181688 4.053582 2.546870 -1.799334 1.139234 -6.874173 -5.133729 4.854341 4.092826 -5.716332 -6.372825 0.429481 -4.750026 1.734527 4.918838 11.728546 -17.287953 2.484780 -16.154574 5.062994 -8.327493 7.964831 11.055767 0.996374 10.125821 0.362577 7.336474 -1.452475 -1.252799 5.533250 4.249410 6.627348 0.746659 9.273405 11.421194 -9.536094 -15.505929 -7.598558 -3.105919 5.741902 -3.116123 -10.133745 6.642481 -9.739833 -2.850416 -0.170506 -0.310475 -3.909192 13.351335 -14.592926 2.137556 5.212240 -3.347275 6.889655 7.071028 0.861838 1.533707 -1.939739 4.442811 2.990110 4.558024 0.216235 10.301842 -8.489262 -4.735889 0.836440 3.458669 5.386328 -9.101775 -10.662814 -16.170662 -3.972864 8.912831 -6.747528 6.274012 16.737366 -5.205809 -7.535767 4.782144 -0.892102 -0.990328 2.916419 3.318910 18.218562 -10.774678 3.539982 1.281194 2.365537 7.711083 19.238450 -5.657063 -11.489287 9.997254 -5.977030 -6.614430 12.964106 0.307015 0.468747 2.813385 1.586332 -0.418784 -6.281663 11.894807 -13.909522 10.816387 -8.601176 13.583850 -6.100286 0.013498 3.148331 -11.952820 -5.699776 -11.740230 2.121571 -2.350566 10.135820 -6.901200 -7.313882 -3.030703 -5.125369 -0.679693 15.631755 -13.165554 -2.532796 -0.841532 -4.347888 10.506168 1.679959 -5.590650 -2.970857 -8.464729 4.297510 5.931887 2.061299 -13.768199 -7.053811 -3.606237 -4.929345 -3.399717 1.204031 8.739997 -7.336516 0.743686 8.448432 -0.327152 -4.521295 -3.038269 -10.551403 5.245211 1.783714 4.338571 2.247023 17.361101 6.827721 8.294569 -1.570273 1.979805 -2.328119 -5.185093 -16.953468 5.766621 -0.376764 2.831838 5.974361 6.789243 2.421361 5.698433 7.985481 -2.604652 1.996896 9.891665 2.660676 9.726392 -4.590681 -3.029901 6.878219 -2.381538 8.463137 8.192086 2.391779 -11.831933 5.135718 -8.131208 -11.907116 -0.189363 -1.526320 -0.404424 -3.290488 8.789707 10.743451 -1.481719 -4.096031 19.064530 -1.828108 -22.817736 7.216003 4.808999 7.171011 12.553847 -5.148724 11.287580 7.047489 9.496523 3.563070 6.757354 6.746196 -12.438158 2.011793 1.823540 4.855934 10.698176 -2.831374 -28.175621 0.431568 2.069907 13.746074 -1.068130 15.532798 -7.813999 9.711059 0.971942 1.832859 4.028319 -3.112581 8.345432 -2.001926 0.420652 -18.046937 7.762674 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 0.233610 -0.072105 0.762994 -1.221388 -0.427824 -0.482177 2.032881 -0.635588 -0.577482 1.330916 0.356994 -0.880780 -1.019791 1.478936 0.120459 -0.572575 0.373924 -0.583745 -0.584530 -0.106654 -0.336666 0.744694 -0.214857 -0.979649 0.842183 -0.100727 0.292570 1.733946 -0.297091 0.115536 0.382587 -0.641101 0.514951 1.894281 0.168753 0.248245 -0.907399 2.441186 -2.714456 2.636554 -1.963442 -1.662357 3.315379 -0.370771 -0.506030 -2.637952 -0.866962 1.266574 -0.225775 -1.603100 -0.174500 0.247922 0.494312 -1.768811 -0.526963 1.885736 -2.005931 0.026883 0.971827 -1.629568 -1.886720 -0.323156 0.152368 0.210201 -2.030601 -1.332775 -0.170373 -1.235855 -0.510981 0.258008 -1.169614 -1.226179 1.513678 0.327816 -0.189825 0.692131 -0.479119 -1.042661 1.121173 0.264159 -0.833583 -1.014631 0.093929 -0.827559 0.761743 0.241061 1.191618 -2.824730 -0.209777 -2.246265 0.952000 -1.662187 0.876085 1.692581 -0.383699 2.020430 0.093493 0.419729 -0.095231 -0.166414 1.033764 0.795115 1.591695 0.566807 1.613331 1.625038 -1.567988 -2.479071 -1.779410 -0.915257 0.965726 -1.008251 -2.511670 0.772856 -0.896816 -0.840202 0.371636 -0.288517 -0.314896 2.232258 -1.827543 1.593331 1.062345 -0.431443 0.262827 1.523694 0.041467 -0.360213 -0.456203 0.916827 0.020307 1.448919 0.074680 1.490360 -0.884903 -1.064650 0.409818 0.031635 0.165064 -1.117121 -1.439994 -2.693854 -0.387987 1.077416 -0.990861 0.500529 2.795386 -0.794117 -1.786315 1.190530 1.012373 0.296249 -0.030781 0.490019 2.564946 -1.093584 -0.221878 -0.406635 -0.197464 1.303942 3.404858 -0.300444 -1.631837 1.436044 -0.981723 -2.738410 2.700972 -0.153165 -0.019977 0.685324 0.193047 -0.901877 -1.436394 2.064270 -0.960531 2.243435 -1.509146 2.110860 -0.743170 -0.433018 0.507650 -1.969227 -0.664783 -2.388188 -0.247682 -0.002750 0.925689 -1.149126 -1.043801 -1.204853 -0.564356 -0.424449 2.144353 -2.921970 -0.141239 -0.203979 -0.180768 0.998873 0.469142 -0.893992 -0.211510 -1.636677 0.706008 1.069393 0.595647 -2.670983 -0.513903 -0.336904 -0.732926 0.087247 0.062484 1.118080 -0.891441 0.077392 1.288427 -0.337026 -0.962454 -0.509277 -2.573132 0.369684 0.303248 0.931796 0.583561 2.449438 1.764934 0.980216 -0.246542 1.045667 -0.383593 -0.434182 -2.712227 0.530147 -0.247652 0.262907 1.018728 1.545135 0.931889 0.714710 1.554793 0.552410 -0.044790 1.636144 0.721279 1.844684 -0.117303 -1.034780 1.059088 0.186860 1.323612 1.432383 0.962775 -1.176062 1.112827 -0.366930 -1.602794 -0.536040 -0.256264 -0.308419 -0.493751 2.306269 1.017882 -0.534815 -0.071759 2.947122 -0.422974 -3.557577 0.920304 0.633140 1.272670 1.000382 -0.348763 1.232104 1.518412 0.475653 0.740283 0.759888 1.008613 -1.987203 -0.198960 0.306341 0.711869 2.160156 0.369194 -4.609508 -0.235476 0.012469 2.299579 -0.333967 2.792103 -0.882572 0.875325 0.210249 0.208474 0.252993 -0.314374 0.799109 -0.425150 -0.207956 -3.254403 0.588198 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 1.681754 0.052265 0.610097 -2.000844 -1.087626 0.100293 1.205915 -2.185316 -1.258266 2.838033 0.753402 -1.672571 -1.129823 1.982728 -0.376953 -1.455585 0.675043 -0.437234 -0.534157 -0.547178 -1.184422 0.622919 -0.775977 -1.919193 0.629487 -0.423364 0.584893 1.716593 0.052683 0.485368 -0.641699 -1.148717 0.559752 3.856998 1.462267 -0.755745 -0.996966 4.710533 -2.538761 2.897714 -2.928890 -2.774574 4.372871 -0.506232 -0.090317 -2.668645 -1.143708 2.107107 -0.468703 -1.574431 -0.147357 -0.668003 0.809343 -2.348082 -1.279302 2.955819 -3.284035 1.267218 1.729535 -1.882201 -2.830424 -1.036318 0.829822 0.810465 -2.603672 -2.517645 0.459069 -0.129738 -0.940356 0.408410 -3.058989 -2.904147 2.547454 1.024917 -0.905325 0.221907 -1.215560 -1.792902 1.478992 -0.063183 -2.498875 -1.380242 0.180169 -1.129149 1.753652 0.934346 2.641304 -5.079244 0.903501 -5.158524 1.180859 -2.597681 2.289549 3.460876 -1.295327 2.211378 0.548453 1.770186 0.443746 -0.100207 2.264004 0.943216 1.027004 0.474814 2.338475 2.439437 -1.798819 -2.984161 -1.616364 -1.453894 0.592236 -0.649507 -4.026773 1.770875 -2.553355 0.114585 -0.452909 0.336280 -1.096079 2.896405 -3.926759 -0.566838 0.815748 -0.926186 2.325960 2.353105 -0.154063 0.710519 -0.953396 2.041864 0.249390 1.108356 -0.468108 2.577614 -1.592183 -2.231392 -1.888673 0.965864 1.891700 -2.583811 -3.554292 -3.992751 -1.114251 1.350211 -1.754618 2.832594 5.130885 -1.750374 -2.466050 2.423449 -0.375047 0.457829 2.459312 0.766665 4.904291 -2.594020 0.666480 0.035696 0.086407 0.931288 2.133826 -1.205377 -2.405400 2.293050 -1.003359 -0.967495 3.269089 0.124953 -0.748191 0.190294 0.229058 -0.660884 -2.283999 3.639491 -2.388747 2.890763 -1.006519 4.367345 -1.679652 -1.215900 1.197931 -2.403443 -0.993089 -2.398425 0.167375 -0.565585 2.576125 -2.274888 -2.200396 -0.441073 -0.844109 -0.836075 3.629840 -0.597120 -0.302679 0.341877 -0.493757 2.732699 1.944513 -1.185154 -0.164929 -2.705303 1.316799 2.166944 -0.036316 -3.654459 -1.374858 -1.101867 -1.081695 0.029671 0.253468 2.262429 -2.086881 -0.487214 1.436577 0.211328 0.325840 0.121681 -3.060067 1.581470 -0.092549 0.781259 1.072770 4.293212 2.281638 2.637946 0.444492 0.336328 -0.309677 -0.960348 -2.578468 0.766509 0.404466 1.344364 1.704493 2.272299 1.167482 1.544016 2.140711 0.360154 0.371091 2.946584 0.889953 3.768856 -1.445873 -0.654849 0.918692 -0.701769 2.799400 3.668824 -0.661096 -2.150620 1.505635 -1.113911 -2.206486 -1.726542 -0.196507 -0.427377 -0.827941 1.757682 2.208455 -0.212378 -1.267447 5.180411 -0.465275 -5.844131 2.550130 1.343204 1.833173 2.696890 -1.012353 1.922389 1.805149 0.598831 1.459319 2.335269 2.084809 -3.038039 0.330527 0.356434 1.873402 1.477246 0.205374 -5.622702 0.719970 1.302694 3.737140 0.722647 2.931986 -2.126469 0.825459 0.569005 -0.072527 0.719425 -0.336867 2.233954 -1.314187 0.431072 -3.493423 0.371786 +PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = 0.447703 0.067722 0.861118 -1.167069 -1.295464 0.148489 0.106815 -0.803473 -0.318527 0.527067 0.959363 -0.865068 -0.583368 0.457088 -0.329211 -0.779595 0.333097 -0.120176 -0.073199 -0.800761 -0.110113 0.377967 -0.253721 -0.953533 0.430073 -0.541094 -0.226817 1.376004 0.418199 0.280600 0.102818 -0.332073 0.342995 1.926903 0.439676 -0.422292 -0.148780 2.132123 -0.794295 0.235019 -1.433161 -1.461223 2.427707 -0.171265 0.038074 -1.409983 -1.204265 0.900148 -1.199096 -0.346647 -0.180485 -0.345832 0.969429 -1.146308 -0.889018 1.230095 -2.158106 0.410615 0.612938 -1.584307 -1.340373 0.190590 -0.087684 0.262779 -0.275383 -1.122810 0.021068 0.317234 0.105918 0.052705 -0.472523 -1.046828 1.696586 0.108489 0.240665 0.400492 0.025789 -1.055835 0.967860 0.198180 -1.308269 -0.777116 0.014267 -0.869681 1.049824 -0.193262 1.425537 -2.054314 0.179325 -2.432107 0.902121 -0.961501 0.733479 1.226696 -1.283276 1.147034 0.747218 0.131401 0.402226 0.428146 1.526119 0.459579 0.892427 0.697659 1.206800 0.830174 -0.441256 -0.792608 -1.084584 -1.150385 0.125300 -0.804227 -2.418763 0.769521 -0.808817 -0.204931 -0.108737 -0.438400 0.289298 2.111646 -0.695378 0.603956 0.785724 -0.335273 -0.039288 0.837535 0.043766 -0.416292 -0.206153 1.182333 -0.563926 0.449446 0.325480 1.313494 -0.063783 -2.207497 -0.903213 0.555028 0.347055 -1.265670 -1.515144 -1.289789 -0.033869 0.513941 -0.688550 0.459755 2.595476 -0.742881 -1.668754 1.256053 0.872820 -0.527364 1.309802 0.651599 2.092713 -0.849326 -0.446802 -0.783443 -0.693401 0.669515 0.545925 -0.425785 -0.721231 1.318949 -0.022487 -1.397108 2.350715 -0.414427 -0.175919 1.163139 0.230606 -0.706539 -1.106119 1.233583 1.156776 1.757368 0.144143 2.099359 -0.464521 -1.618109 0.496475 0.130129 -0.645651 -0.316094 0.258090 0.272799 0.495274 -0.676421 -1.171105 -0.780876 -0.419250 -0.511181 1.598766 0.434822 0.523457 0.689246 -0.487465 -0.464655 0.730038 -0.367564 0.111613 -1.260178 0.494406 0.903746 0.262026 -1.970896 -0.679163 -0.539357 -0.038963 0.210648 0.358923 1.765355 -0.248705 -0.024554 0.624410 -0.145298 -0.059774 -0.131275 -1.158388 0.702672 -0.023696 0.502543 0.120408 1.909219 1.806095 1.284047 -0.308925 0.890240 -0.197534 -0.253463 -0.386739 -0.328668 0.164768 0.504655 0.605987 1.255459 0.684775 1.142138 1.337184 0.911698 0.585668 1.596394 0.148140 1.736938 -0.746030 -0.301846 0.423234 0.165242 1.537508 1.714826 0.616043 -0.901081 0.393575 0.058516 -0.755340 -1.670820 0.233002 0.112067 -0.111352 1.111733 1.288354 0.111308 -0.638868 1.721149 0.439732 -2.585025 1.757830 0.422324 0.680784 0.595126 -0.398606 0.425976 0.770242 0.200724 0.687615 1.204234 0.817543 -2.039980 -0.592343 0.447161 1.415532 0.162344 0.934114 -2.354647 0.340888 0.216651 0.979659 -0.150631 1.554683 -1.422626 -0.568583 0.238643 -0.354644 -0.354128 0.304547 -0.026175 -1.329093 0.492996 -1.255045 -0.017356 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = 0.403361 0.065361 0.711270 -0.949771 -0.391695 -0.322929 1.240606 -0.779974 -0.444784 1.534594 0.209973 -0.879406 -0.846880 1.064183 -0.164658 -0.621825 0.113352 -0.501673 -0.518551 -0.329807 -0.355338 0.451599 -0.186776 -1.012851 0.569960 -0.222832 0.496668 1.259253 -0.294566 0.164045 0.340003 -0.571747 0.596957 1.777773 0.315809 0.236808 -0.722799 1.946470 -1.747748 1.995468 -1.845080 -1.665957 2.582374 -0.259556 -0.105283 -1.842114 -0.386040 1.163892 -0.419601 -1.127378 -0.352351 0.125317 0.342876 -1.608351 -0.651352 1.456130 -1.747383 0.436354 0.726734 -1.343144 -1.632939 -0.300403 0.230846 0.381867 -1.401204 -1.223740 -0.136724 -0.577520 -0.675094 0.424906 -1.046008 -0.972866 1.191944 0.197962 -0.250238 0.468837 -0.527472 -0.549056 0.900692 -0.234638 -0.723206 -0.936677 0.259586 -0.606360 0.556776 0.582395 1.073325 -2.359439 0.052432 -1.972623 0.931423 -1.185680 0.888354 1.359133 -0.402088 1.656214 0.074758 0.407217 0.018955 -0.141935 0.860311 0.601007 1.284282 0.449595 1.243386 1.306381 -1.249650 -1.934602 -1.283772 -0.844314 0.682905 -0.680587 -1.892881 0.651394 -0.901349 -0.145252 0.205730 -0.212046 -0.360737 1.603692 -2.153112 0.618259 0.768994 -0.358602 0.605247 0.967684 0.032455 0.009720 -0.200325 0.834471 0.105419 0.768565 0.148702 1.307211 -0.677650 -0.930515 -0.152564 0.281519 0.395176 -0.971779 -1.375103 -2.242519 -0.535031 1.023569 -0.840038 0.841974 2.347937 -0.561611 -1.557725 0.946219 0.257853 0.116104 0.422221 0.496362 2.085352 -1.142748 -0.004363 -0.181816 -0.029601 1.247540 2.465880 -0.463490 -1.499661 1.378072 -0.605850 -1.405338 1.423252 -0.086286 -0.009113 0.065573 0.146256 -0.717218 -0.910538 1.566823 -1.098011 1.876815 -1.257225 1.969266 -0.942627 -0.579346 0.379536 -1.971559 -0.570003 -1.514057 -0.080233 -0.159442 1.050480 -1.300659 -0.983291 -0.784668 -0.544546 -0.293365 1.865612 -1.886800 -0.174098 -0.163584 -0.263206 1.432989 0.409378 -0.837299 -0.205224 -1.322189 0.532283 0.907971 0.666850 -2.171056 -0.578502 -0.399455 -0.640078 0.170236 0.081883 1.023251 -0.751313 0.148630 1.004284 -0.317734 -0.602454 -0.452067 -1.705069 0.441977 0.164748 0.679662 0.449138 2.103346 1.383454 0.887693 -0.195335 0.716275 -0.251913 -0.718120 -1.667040 0.509202 0.073650 0.188818 0.874864 1.266263 0.660162 0.640561 1.399351 0.515305 -0.264485 1.484659 0.301796 1.526465 -0.742061 -0.451216 0.737956 0.121123 1.165431 1.332616 0.206059 -1.182370 0.948998 -0.466647 -1.085890 -0.406389 -0.351109 -0.287301 -0.267058 1.652085 1.067406 -0.455213 -0.168594 2.466897 -0.203937 -2.757963 1.096650 0.609040 0.948252 0.790730 -0.618838 0.861742 1.230642 0.348032 0.390859 0.749896 0.873839 -1.775457 -0.059661 0.219254 0.891419 1.598252 0.162638 -3.514986 -0.317175 0.276600 1.909622 -0.160940 2.099856 -0.957175 0.443326 0.171107 0.161584 0.256816 -0.171508 0.723070 -0.336774 0.056371 -2.193596 0.382202 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = 4.878658 -3.525819 3.345423 -8.708402 -4.664012 0.413379 6.292720 -10.217217 -4.987962 14.433259 3.597281 -7.101493 -1.265694 11.046219 0.288940 -4.158441 2.971261 1.250852 -1.447629 1.120920 -3.954055 4.774003 -4.164830 -8.446686 3.474022 -1.284607 3.769442 8.781754 -3.635218 5.612141 -1.031418 -6.866096 1.030991 17.020154 6.749394 0.612377 -5.656482 20.116453 -16.417153 20.092248 -13.236991 -13.143644 20.111296 -2.654146 0.257811 -9.277877 -5.869392 9.558993 -0.254310 -12.747538 -0.619539 -2.364857 6.442929 -10.853120 -4.941513 9.648202 -11.556789 -0.976943 8.694617 -10.911550 -13.870125 -4.680935 2.592590 5.065828 -19.426903 -10.746855 0.380359 -2.072754 -1.023770 -0.234703 -11.999900 -13.450858 10.389585 3.882304 -4.915028 1.210553 -4.519109 -9.614380 7.921094 3.758983 -11.822752 -7.076959 -2.383911 -10.445419 7.127287 4.172774 15.802509 -22.673280 7.121792 -22.663768 6.795150 -10.224140 9.228635 16.554926 -7.048464 10.391434 3.974522 16.427458 2.488211 -1.003400 8.879653 7.011405 3.078228 3.506126 13.124327 12.846903 -11.171574 -15.984099 -10.530194 -7.767402 6.999306 -8.062658 -18.091768 7.344887 -8.281954 0.087158 -2.886074 0.835160 -4.836889 16.889529 -19.994300 4.272788 5.048365 -3.798948 6.879955 8.960178 -0.903599 1.614680 -3.720733 8.081168 -1.838999 5.029466 -0.900295 13.051995 -12.283677 -1.735123 -2.726718 4.858864 6.628392 -11.759144 -14.589966 -22.375096 -4.755382 11.166288 -7.798503 11.491654 22.130335 -9.350930 -11.302267 10.189751 -0.391153 -1.947817 6.787614 4.005591 18.092351 -9.947725 0.158574 -3.091223 -1.829182 5.380961 17.037395 -3.479415 -11.744656 12.602184 -8.204565 -10.557863 22.447130 1.103912 -3.824576 -3.783689 2.507642 -4.879875 -7.992253 16.886211 -17.507393 11.236437 -9.443893 18.353774 -6.167062 -1.281811 4.401500 -17.008614 -6.412657 -15.106205 -0.373658 -1.994546 12.133134 -10.999306 -9.167704 -3.837382 -4.915764 -3.890652 15.979640 -10.946335 -1.917547 2.143202 -2.220115 14.519888 6.993979 -3.988846 -3.617598 -9.224090 6.061355 9.238835 -1.149878 -14.489007 -7.573845 -6.321252 -5.393989 -3.434436 1.642385 11.004207 -12.999675 -0.566882 6.062476 0.833428 -1.550787 0.387139 -20.051277 6.715096 2.211339 6.928331 6.922666 18.374171 9.680773 13.155145 2.340410 4.352557 -2.719646 -3.565788 -17.722741 5.936075 2.254027 4.139009 8.086101 12.475217 7.483290 8.027808 9.154440 2.613983 5.271624 14.233394 3.246062 15.657051 -1.807727 -3.411912 6.373698 0.616425 12.367879 13.952484 0.778604 -6.738217 6.396279 -7.138118 -13.538057 -2.923666 0.717917 -1.592217 -2.661514 6.627908 9.098930 0.232256 -5.738905 22.654993 -2.983287 -26.347661 8.801521 5.501965 10.584805 14.437680 -3.743630 12.131994 6.470083 4.877499 11.396626 10.759904 8.396888 -14.610613 1.708078 2.199365 6.368925 16.199307 3.125505 -25.857742 4.760150 1.920931 16.133485 -0.646438 15.526169 -10.114914 7.829237 2.447226 -2.423236 3.786896 -3.444191 8.610525 -0.841841 0.829978 -21.638254 0.919937 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.753825 -1.679879 2.838668 -4.407225 -2.671945 -1.022791 4.325875 -1.978243 -1.142404 -0.434383 2.266813 -2.980154 -3.265176 4.077121 0.763717 -3.444332 1.745982 0.872783 -1.109765 -0.073850 -0.905870 2.029082 -0.952196 -2.488825 2.751895 -1.262256 0.178021 6.947635 2.584930 0.737124 0.462150 -1.869536 0.743457 6.948143 0.952535 0.606693 -0.484771 9.773601 -5.902793 6.901543 -3.996533 -3.096429 9.349212 -1.373803 -3.093421 -6.811835 -5.684299 3.289559 -5.991132 -2.745151 1.290520 0.194155 2.943355 -4.555399 -0.406518 6.619670 -7.343436 0.767279 3.207890 -3.638041 -3.362277 -1.713125 -2.645415 -0.717310 -4.979683 -3.934248 -0.176560 -2.401384 -0.883770 0.212637 -2.728402 -3.841591 8.947104 1.167530 -1.155618 2.639603 0.612067 -4.839431 3.372185 2.451198 -4.518685 -3.290475 -0.010500 -2.278939 5.589123 -1.423929 3.571473 -8.784565 -2.071046 -8.500103 3.010966 -6.820144 3.151341 6.941056 -5.624899 5.982891 1.347783 1.025114 -1.360709 0.277346 4.628928 2.003737 2.595069 2.006523 5.402573 2.998461 -3.535719 -6.361911 -5.053335 -3.051199 1.517085 -3.765879 -10.445359 1.982229 -2.893370 -0.414981 0.026529 -0.034390 -0.833179 6.559711 -1.846506 6.607447 3.451529 -1.914683 0.735657 5.753626 -0.440422 -1.396436 -2.224760 4.456715 -1.203952 4.417680 -1.691980 4.761044 -0.824024 -5.629860 -1.272654 -0.617113 0.898466 -3.304757 -6.324449 -5.945520 -1.617097 2.340775 -2.319090 0.845900 9.669747 -3.027800 -5.207383 5.588320 3.564367 3.095626 1.830688 2.366495 6.822299 -2.748367 -1.237242 -3.634294 -1.964161 2.363475 5.508855 -0.761683 -4.619422 4.649955 -1.825442 -7.636180 11.666360 -1.070940 -1.252977 2.196047 0.090644 -3.516387 -6.036220 8.882160 0.044154 6.855334 -2.697440 8.132565 -1.647583 -4.298765 1.741494 -0.846099 -0.659837 -6.943022 -0.667167 1.580624 2.087863 -3.647239 -5.075058 -3.366254 -0.192383 -1.396920 5.126203 -1.726719 -0.624012 0.219041 0.443767 0.902100 3.541944 -2.124077 -0.017621 -5.707039 2.581302 2.964728 0.129121 -7.890685 0.169991 -0.022822 -2.047745 -0.500789 1.164712 3.604131 -3.294931 -0.978385 2.454916 -0.936690 -1.263009 0.090431 -10.701367 2.039462 1.366042 0.715615 3.272702 5.798050 7.892034 3.204320 0.109090 3.303302 -0.809677 0.114500 -6.215107 1.102090 -0.193299 2.697479 2.684408 5.308325 3.921314 1.976400 3.756509 3.196168 1.979006 5.122583 4.742494 7.307472 2.412257 -3.715363 2.928642 0.436722 5.569022 6.031239 2.598836 -1.653804 3.696648 1.783786 -3.048298 -6.598839 -0.776542 -0.707031 -1.715109 7.442525 0.676933 -2.090926 -0.428723 8.553787 -1.280925 -10.007144 3.141057 2.477023 3.838943 1.652052 -0.095278 2.241366 4.628976 -1.005096 4.452519 2.306747 3.511693 -5.415096 -0.954157 0.850004 1.715780 5.551162 2.836452 -10.773910 -0.814939 0.109991 6.534382 0.710741 6.372039 -2.073723 0.566007 0.426112 -1.118215 0.131379 -1.304520 0.884386 -3.271680 0.088463 -7.905011 -1.769203 +PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/dfs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = 0.029498 -0.291471 0.373654 -0.703349 -0.734100 -0.002555 0.231887 -0.500421 -0.220910 0.166706 0.414805 -0.435952 -0.230410 1.066832 -0.022729 -0.681756 0.044345 0.264016 -0.111805 0.097167 -0.153916 0.604224 -0.264530 -0.215386 0.466234 -0.200332 -0.160238 0.722027 0.190829 -0.077669 -0.041169 -0.418023 -0.030949 1.169516 0.156648 0.273473 -0.062756 1.748950 -0.726136 1.234615 -0.916653 -0.824739 1.284509 -0.225372 -0.183598 -0.822662 -0.925244 0.574250 -0.534811 -0.526853 0.317380 -0.010569 0.258698 -0.557551 0.180797 0.696709 -1.256554 0.259835 0.582486 -0.667541 -0.558628 -0.229095 -0.414827 -0.151295 -0.823606 -0.696861 -0.047424 0.183278 -0.095187 -0.089475 -0.263178 -0.902479 1.615288 0.238470 -0.342847 0.448778 0.194578 -0.723682 0.718538 -0.018151 -1.040526 -0.486930 0.073902 -0.368492 0.814835 0.123202 0.897842 -1.646059 0.275263 -1.612676 0.668329 -0.942226 0.619700 1.268891 -1.007316 0.816082 0.612977 0.596186 0.356941 0.328779 0.991611 0.388159 0.087363 0.514381 0.709646 0.553622 -0.608906 -0.839164 -0.879773 -0.858676 0.363445 -0.494416 -1.720950 0.376973 -0.245995 0.323155 -0.142938 0.154189 0.114456 1.052110 -0.972311 0.654521 0.637126 -0.287632 0.227564 0.864629 -0.129677 -0.187085 -0.593230 0.817271 -0.604179 0.541840 -0.218475 0.849455 -0.380164 -0.802141 -0.560730 -0.006236 0.127790 -0.846208 -0.978170 -1.224736 -0.137486 0.718565 -0.556120 0.592172 1.929113 -0.933083 -0.929035 1.136378 0.666404 0.192922 0.561270 0.388625 1.210647 -0.425651 -0.367760 -0.568200 -0.490725 0.340134 0.333733 0.165474 -0.679251 0.764183 -0.129440 -1.394710 2.244333 -0.266832 -0.505027 0.057641 0.243850 -0.531724 -0.679552 1.286240 -0.033664 1.059478 -0.386046 1.477195 -0.349080 -0.620508 0.318814 -0.603446 -0.294672 -0.988300 -0.096821 0.106874 0.510659 -0.818733 -0.667134 -0.322005 -0.444570 -0.456569 0.662776 -0.049065 0.087499 0.249491 0.067756 0.470997 0.924585 -0.019614 -0.084108 -0.990512 0.439258 0.465864 -0.222315 -1.290137 -0.062231 -0.291848 -0.246739 -0.027677 0.053466 0.616269 -0.579846 -0.134735 0.090195 -0.200157 0.091615 0.101914 -1.081354 0.223942 0.020838 0.510093 0.530998 0.934688 1.334192 0.982870 0.379736 0.594227 -0.080782 -0.027962 -0.566775 0.294170 0.083212 0.571208 0.601511 0.933903 0.838475 0.493928 0.743022 0.457143 0.598349 1.116830 0.469322 1.675277 0.046522 -0.431940 0.258821 0.219935 1.072222 1.310888 -0.117926 0.068522 0.567436 0.164352 -0.574590 -0.767042 0.180488 -0.123511 -0.497558 0.862580 0.303625 -0.052250 -0.291387 1.427741 -0.235054 -1.683409 0.746614 0.297457 0.752744 0.389892 0.180811 0.395132 0.655313 -0.266379 0.738888 0.721412 0.828376 -1.136892 -0.272385 0.091293 0.536663 0.946993 0.785118 -1.444658 0.347891 0.313830 0.958598 -0.154826 0.667905 -0.583361 -0.202143 0.236476 -0.329913 -0.116160 0.016120 0.139932 -0.304602 0.064400 -1.178753 -0.568766 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = 1.622370 -0.872151 1.858371 -3.829670 -4.003734 0.840960 -0.864231 -3.848789 -1.677331 4.285408 1.531994 -2.304586 -0.847736 5.118207 -1.109750 -3.115322 -0.362499 -0.651856 0.014415 -0.844382 -1.546893 2.524021 -1.899019 -1.553088 1.228674 -1.188542 0.206190 2.006235 0.317263 -0.034411 -0.602250 -2.790179 -0.522329 6.509590 2.618382 -0.073672 -0.919865 8.903553 -2.726699 5.022855 -5.510716 -5.727200 5.900553 -1.076138 0.501160 -2.598171 -2.320059 3.555456 -2.379314 -1.465585 1.416522 -0.800583 1.538863 -2.513075 -0.447854 1.987460 -6.078154 2.975481 2.980825 -3.369039 -3.563871 -1.805064 -0.275186 1.149892 -3.607042 -3.549361 0.652464 2.083475 -1.106169 -0.602191 -2.573058 -4.568681 5.243886 1.771225 -1.807283 0.824298 -0.157086 -2.629258 3.374929 -2.082964 -6.181845 -2.412173 -0.089381 -3.283041 3.758922 2.060354 4.944844 -8.654660 3.457562 -9.253729 2.618156 -3.224258 3.404729 6.341767 -4.078815 3.445911 2.973792 3.926278 3.173186 -0.008257 4.408443 1.679465 0.063313 2.990318 3.524965 3.811640 -2.805571 -3.368333 -3.631065 -4.121035 1.026312 -2.088750 -6.264586 2.850538 -1.947473 1.386877 -1.718911 0.990121 -1.413388 4.479709 -7.529660 -1.055098 1.542196 -1.463784 2.959325 3.199562 -0.832071 0.890281 -2.095350 4.043938 -2.781371 1.794472 -0.786155 4.800112 -2.165515 -2.717872 -5.375014 1.829216 2.670446 -4.668814 -5.590237 -7.020600 -1.532966 2.472837 -3.205222 6.403662 9.623755 -4.858066 -4.921841 5.642782 0.038848 0.179517 4.833190 1.661553 5.938401 -2.334889 -1.443812 -1.853551 -2.299182 0.918975 1.299935 0.251680 -2.812588 4.487270 -0.734119 -1.346337 6.020171 -0.147346 -3.347595 -2.786623 1.556646 -2.478774 -2.664006 5.331913 -2.657892 3.778590 -0.896801 7.685923 -2.475981 -2.770782 1.743901 -5.670659 -1.599386 -3.115658 -0.290063 -0.542302 3.635309 -4.581471 -3.389689 -0.947864 -1.980206 -2.807914 3.736496 0.556817 0.490804 2.105645 0.398695 5.386678 5.565830 0.021090 -0.398400 -4.294346 2.376853 3.367256 -0.472902 -5.589804 -1.989936 -1.930560 -1.596206 0.982870 0.381256 3.810815 -3.774631 -0.423786 0.564395 0.176290 1.826756 1.774370 -5.049166 2.284848 -0.257797 2.777528 2.883448 5.542279 4.331764 5.987583 2.774562 2.158214 -1.017504 -0.827523 -0.849320 0.909418 1.982848 2.175817 3.358557 4.760072 4.150159 3.072206 4.013217 2.537488 1.047244 5.694879 -0.438236 8.099649 -2.681179 -0.374487 0.292610 1.121543 5.234034 7.213629 -2.211588 -0.951693 2.950083 -1.078094 -2.679475 -3.236232 1.511363 -1.021971 -0.219105 1.357487 3.664887 0.240834 -2.366428 7.526002 -1.291531 -8.543357 4.907179 2.074028 3.896282 3.081030 -0.003141 1.700705 2.096135 -1.884663 4.059211 5.193978 3.796306 -5.556794 0.127508 0.597767 3.855202 3.454331 3.454314 -6.629906 2.247672 2.494817 4.560818 0.364207 3.239940 -4.169361 -1.740907 1.991823 -1.870037 0.213370 1.003200 2.429089 -1.361838 1.694970 -3.780268 -2.610618 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = 0.841580 -0.352297 1.228709 -1.904153 -1.530640 -0.073739 1.227412 -1.742399 -0.903987 2.471877 0.592426 -1.333757 -0.927673 2.479441 -0.403959 -1.353144 0.140570 -0.471685 -0.329366 -0.344781 -0.827927 1.282692 -0.774389 -1.244336 1.031587 -0.525442 0.403941 1.973580 -0.298877 0.315564 0.156353 -1.392307 0.241813 3.503714 1.023775 0.147364 -0.832912 4.695000 -2.646755 3.489256 -3.102950 -3.055427 4.048183 -0.608060 0.053424 -2.514448 -1.287996 2.039702 -1.153469 -1.530265 0.240184 -0.117271 0.860402 -2.093263 -0.542306 2.002144 -3.497305 1.008806 1.585233 -2.144109 -2.423140 -0.876008 -0.155029 0.479249 -2.579959 -2.119262 0.013567 0.007645 -0.735602 0.185762 -1.694176 -2.151857 2.574311 0.723618 -0.807772 0.724515 -0.338725 -1.463597 1.805511 -0.642490 -2.601831 -1.583460 0.028574 -1.620844 1.759712 0.992323 2.507414 -4.680753 1.013487 -4.572150 1.564779 -2.327747 1.770595 3.334523 -1.644824 2.578325 1.054030 1.775444 0.846045 -0.107026 2.135362 1.220764 0.992955 1.362916 2.165055 2.352797 -2.038771 -2.805726 -2.335476 -1.820684 0.949374 -1.279589 -3.711968 1.354299 -1.258390 0.339100 -0.315539 0.156244 -0.749118 2.949027 -4.049811 0.766755 1.233966 -0.789862 1.266846 1.808152 -0.227857 0.112230 -0.947224 2.002477 -0.859738 1.359096 -0.233137 2.619682 -1.422648 -1.660056 -1.528505 0.598831 1.012911 -2.231948 -2.925891 -4.170769 -0.889364 1.739400 -1.668992 2.446086 4.992741 -2.041245 -2.694470 2.618594 0.256871 0.331513 1.626280 0.992172 3.366461 -1.528158 -0.597223 -0.873320 -0.786001 1.247618 2.681100 -0.217249 -2.165156 2.563806 -0.754660 -1.847914 3.566873 -0.158983 -1.072911 -0.782302 0.546807 -1.358700 -1.705742 3.309343 -1.967728 2.685031 -1.523034 4.026154 -1.332556 -1.237827 0.799568 -3.425744 -0.845550 -2.584686 -0.110072 -0.196745 1.860649 -2.534430 -1.970004 -0.972401 -1.006570 -1.094297 2.688295 -1.626194 -0.066754 0.515805 -0.014862 2.796263 1.979824 -0.676670 -0.344950 -2.405835 1.222030 1.601479 0.210634 -3.788335 -0.970214 -0.755347 -1.069655 0.277941 0.276257 1.952902 -1.904953 -0.031978 1.083237 -0.236845 -0.123263 0.231330 -3.317539 1.047202 0.189714 1.396727 1.392568 3.356459 2.748662 2.553277 0.650909 1.387087 -0.551291 -0.704219 -1.994935 0.888614 0.651790 0.843767 1.703694 2.571010 1.958827 1.427587 2.169623 1.215025 0.362230 2.970962 0.515140 3.794908 -1.180199 -0.697457 0.874456 0.542408 2.615118 3.122963 -0.170115 -1.154841 1.702797 -0.716535 -1.859059 -1.291284 0.231459 -0.529772 -0.374110 1.958952 1.865643 -0.389337 -0.769364 4.436561 -0.701619 -5.058324 2.248685 1.197092 2.088778 1.637118 -0.279327 1.389828 1.716951 -0.183399 1.858672 2.164330 1.906689 -3.163121 -0.039313 0.390544 1.706721 2.729936 1.288634 -5.361035 0.302701 0.823202 3.014664 -0.114467 2.907734 -1.930187 -0.039751 0.719202 -0.558077 0.237078 0.095002 1.324342 -0.590664 0.570646 -3.269460 -0.504072 +PE-benchmarks/dfs.cpp__main = 0.697355 -0.227964 0.989883 -1.778610 -1.915683 -0.318916 -0.126888 -0.929084 -0.447509 0.441823 0.323171 -1.304530 -1.341478 2.564584 -1.048542 -2.168200 -0.197517 -0.106838 -0.138051 -0.392386 -0.712544 1.326881 -0.562451 -0.571013 1.329059 -0.581565 -0.357035 1.412898 1.830166 -0.713113 -0.415639 -0.883351 0.189577 3.101272 0.259877 -0.099371 0.268292 4.740405 -0.135619 1.777541 -2.616226 -2.218232 3.038063 -0.573984 -0.201131 -2.498793 -1.672916 1.513113 -3.051749 0.527824 0.729311 0.133212 -0.216423 -1.546653 0.508400 1.904761 -4.309873 2.927952 1.220721 -0.537620 -0.920279 -1.051556 -1.082431 -0.783040 -0.248033 -1.775265 -0.040580 1.041229 -1.718216 0.460189 -0.889738 -1.367740 3.948724 0.675303 -1.104654 1.270737 0.469333 -1.274613 1.382689 -2.388405 -2.448435 -1.151556 1.078110 0.243480 2.485153 0.706671 1.126441 -4.156082 0.333182 -4.014951 1.333408 -2.877105 1.775772 3.378456 -2.984491 2.305565 0.968399 -0.149208 1.366961 1.033092 2.678567 0.886890 0.547380 0.960119 0.914608 1.165109 -0.605410 -1.423693 -1.125603 -1.711667 -0.751740 -0.161273 -4.460288 0.809519 -1.165873 1.826775 -0.187919 0.647132 -0.327767 1.149435 -3.026337 -0.611812 0.960210 -0.804609 1.526411 2.036693 -0.465845 -0.164178 -1.591079 2.406650 -0.790653 0.941116 -0.866893 1.878963 -0.283748 -3.648861 -3.286766 -0.481312 0.600787 -1.768306 -3.062897 -2.624938 -0.755653 0.214896 -1.277248 2.040281 4.721449 -1.556411 -2.322151 3.157763 0.186032 1.847517 2.889307 0.857887 2.938665 -1.068490 -0.370783 -0.633615 -0.583107 0.376882 -1.124387 0.090931 -1.765431 1.281133 0.353753 -1.370486 1.994515 -0.316649 -1.008299 -1.211059 0.076732 -1.512787 -1.805577 3.459423 -0.046795 2.883173 -0.741467 4.011122 -1.284120 -2.809062 1.004972 -1.646228 0.115549 -1.198735 -0.073452 0.042023 1.133809 -2.818190 -2.055500 -0.112777 -0.387543 -1.176224 1.625186 1.504728 -0.174492 0.276615 0.572832 1.986205 2.396782 -0.696736 0.972341 -2.976798 0.981537 1.350515 -0.351187 -3.939777 0.520700 -0.133431 -0.780684 1.063342 0.221930 0.765913 -0.821175 -0.907031 0.235121 -0.355922 1.238181 0.286034 -1.281886 0.677677 -0.709071 0.555690 1.315260 2.304065 3.352360 1.723038 0.725120 0.937709 -0.036029 -0.761549 0.990251 0.509507 0.666873 1.012392 1.283454 2.183027 2.021829 0.553431 1.511674 1.617225 -0.462263 2.588343 1.260401 4.254706 -1.536139 -0.860580 0.150772 -0.115806 2.669220 3.796726 -1.669666 -0.216493 1.786041 0.959866 0.030482 -2.667984 -0.106641 -0.519209 -1.323102 1.764600 0.283005 -0.862880 -0.176069 3.589659 -0.650421 -3.707205 2.560703 0.907918 1.396174 -0.365006 0.418927 -0.544593 2.081982 -1.933389 1.066188 1.353006 1.969162 -2.169209 -0.928983 0.044683 1.898767 0.978880 1.663839 -2.510683 0.297240 1.867452 2.542850 0.952758 0.764141 -0.866464 -2.193853 0.322196 -0.693129 -0.602455 0.252345 0.527408 -1.270800 0.463726 -0.815332 -2.248445 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/dfs.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/dfs.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = 4.076218 1.068201 5.855980 -8.883242 -3.735401 -2.387926 10.612254 -8.882767 -3.853824 15.836398 3.664074 -7.084509 -2.344025 8.627585 -1.601366 -2.974175 3.599500 -0.554879 -3.192277 -3.650702 -2.615833 3.858607 -2.352837 -8.689288 3.446631 -2.713241 5.665440 9.051165 -5.212773 2.581073 2.059676 -5.943083 4.604210 14.819698 3.790379 1.847909 -8.854105 14.319699 -14.008002 15.528636 -15.802224 -12.064759 19.203913 -2.086650 2.030405 -16.648368 -4.185840 8.573221 4.406876 -11.133648 -3.984098 -1.037557 5.534397 -13.135576 -6.357879 10.064275 -7.837673 -1.678407 7.560339 -13.922609 -14.284649 -3.139994 4.147161 4.537714 -16.373818 -10.228353 0.235162 -3.281949 -2.542184 4.261010 -10.417732 -10.537114 5.291278 1.341302 -2.535573 2.126637 -5.993314 -8.561436 6.726180 2.355371 -6.426925 -7.983947 1.489033 -4.649914 1.521658 3.105548 12.936615 -19.771723 1.886220 -17.394238 6.733864 -8.322341 8.899223 11.543124 -2.743549 11.210449 1.219624 8.542934 0.694009 -0.761554 7.231843 6.360521 9.173555 1.584680 12.584616 12.033637 -9.093845 -16.450771 -8.538780 -7.738808 7.342011 -5.051136 -13.929512 6.038814 -8.706007 -6.187487 -1.884769 -2.439642 -1.666533 16.898395 -16.448382 2.222026 8.388118 -3.597654 3.739395 7.421699 0.844864 1.292617 -2.431586 5.807540 0.465112 6.264900 0.613194 11.675943 -9.823723 -8.187466 0.087874 1.955675 3.589731 -9.896433 -12.298386 -19.115812 -4.802899 9.363988 -7.033452 4.226919 17.726584 -6.426830 -12.684727 6.542827 4.187481 -5.447790 3.168825 3.742725 18.023630 -11.114390 2.032012 -1.950388 0.989501 10.233546 22.618650 -5.400963 -13.043884 11.955138 -8.765047 -16.077482 15.935671 -0.811627 0.155929 2.034522 1.875415 -3.985009 -6.441501 12.093649 -12.095327 14.873718 -12.321872 15.783407 -8.032353 -2.981224 2.471609 -14.732722 -5.522652 -11.300483 2.251062 -0.258487 12.823835 -7.955850 -9.006861 -5.324190 -7.237282 -0.652302 15.435324 -19.056877 -1.901765 -0.796202 -3.815788 10.398737 3.695275 -5.667431 -1.919520 -7.579203 5.131075 8.770507 7.372580 -15.531650 -6.942720 -6.210161 -6.001271 -6.226416 1.509643 10.988989 -6.608821 1.051770 7.820579 -2.763303 -6.024678 -3.780800 -14.570514 5.690820 -0.815655 6.587029 0.367073 17.961494 8.947038 9.359013 -1.171589 1.493458 -2.007839 -7.120114 -16.820371 6.383564 1.789863 -0.913936 6.723014 9.631827 5.747448 7.066682 12.251012 0.850068 1.713920 12.439907 0.516573 11.492031 -5.951933 -0.880502 6.463523 0.065271 10.198738 12.115538 8.229313 -11.530400 6.035254 -5.804419 -12.188404 -3.418356 -3.202308 -0.111874 -3.709871 9.702626 10.797952 -3.501876 -3.604053 20.443073 -1.065183 -22.487584 8.983003 3.743561 7.327535 10.302490 -5.999875 8.770901 8.940583 7.075220 4.996387 6.754528 8.297568 -13.489088 -2.940860 1.945073 7.425639 14.951742 0.442194 -29.579193 2.369093 3.189119 15.328179 -2.823523 18.447226 -9.242259 8.595037 1.541652 1.609347 2.396334 -1.549963 6.766746 -2.748104 -2.111216 -19.547718 6.200967 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 3.275296 0.719565 4.172721 -5.626737 -3.810599 -0.929231 6.894955 -6.526795 -3.456091 11.846899 2.364628 -5.476602 -2.715105 6.890616 -1.382706 -2.311509 1.425016 -1.108266 -2.023811 -2.642427 -2.809536 3.020918 -2.153334 -6.264086 2.775776 -1.735006 3.371665 6.775450 -3.105233 3.028943 1.246100 -4.433379 3.170975 11.620429 3.692894 0.022161 -5.185797 12.884756 -11.306517 11.889844 -10.949949 -10.627768 15.217768 -1.523484 1.277907 -10.037591 -2.691506 7.239668 0.472776 -7.653870 -1.815082 -0.716944 3.898540 -8.888856 -4.461246 7.594606 -8.728552 1.158401 5.345454 -9.619192 -10.700481 -2.650543 2.086181 3.634788 -10.995165 -7.416786 -0.246087 -1.616151 -1.945384 1.811649 -7.811702 -7.930595 5.473255 1.242640 -2.309534 1.478596 -3.808307 -5.040326 5.450543 0.600358 -6.385233 -5.472792 0.541418 -4.545339 2.754847 3.914651 9.209004 -15.707868 1.641609 -14.452900 5.473516 -6.637207 6.479855 9.519922 -2.913881 8.681124 1.787761 6.254066 1.440405 -0.592579 5.890508 4.264754 6.200977 2.733370 8.194138 9.852606 -7.639212 -11.860484 -7.511629 -5.485300 4.893296 -3.399481 -10.411767 4.653718 -6.233053 -2.318474 -0.867189 -1.149252 -2.610189 11.915373 -13.703144 1.777648 4.917046 -2.542649 4.664517 5.387276 0.144986 1.621973 -1.558653 5.319867 -0.409222 4.039815 0.240998 8.949918 -6.386472 -5.574592 -2.253666 2.988934 3.745962 -7.523875 -9.523330 -15.221734 -3.346775 6.688259 -5.652073 4.911329 14.957343 -5.299933 -8.841975 6.245935 0.972311 -1.573314 3.874472 3.023287 13.548531 -7.559697 0.514841 -1.198228 -0.510322 6.349111 16.044859 -3.115446 -8.927311 8.810750 -4.343642 -8.112435 10.526111 -0.414936 -1.496933 -0.917124 1.711223 -3.224600 -5.113817 9.959691 -8.997547 9.233114 -7.908618 12.849277 -5.807169 -2.837386 2.417906 -11.913061 -3.967602 -8.789738 0.988646 -0.675024 8.469016 -7.407014 -6.577667 -3.300712 -3.964860 -1.998912 11.270778 -11.619099 -1.139455 0.465198 -2.125236 8.552619 3.541529 -3.763657 -1.882746 -6.802291 3.356322 6.075407 3.394888 -12.912203 -5.150059 -4.112285 -4.140063 -1.599179 0.937967 7.555925 -5.669774 0.771915 5.673860 -1.876244 -2.756264 -1.314349 -10.607033 4.492568 0.326288 4.848516 2.198722 13.555261 7.585630 7.861778 0.327974 3.434665 -1.854415 -4.404042 -10.721107 4.548172 2.049902 0.895926 5.590600 8.295098 4.853491 5.230807 7.934957 1.104744 0.691147 9.679654 0.742356 10.147018 -5.444978 -0.992824 4.187912 0.854451 8.096404 9.362548 3.277080 -8.304264 4.776915 -4.946292 -8.278239 -1.788826 -0.917625 -0.982011 -1.350008 6.985406 8.542349 -1.622558 -2.894080 15.984031 -1.700431 -17.825741 7.420131 3.603971 6.493307 7.701425 -3.722436 6.536343 6.322097 4.054938 4.848605 6.608345 6.237141 -11.064647 -0.952422 1.205368 5.839441 10.465163 1.132184 -22.606408 0.887156 2.299393 11.072013 -1.355753 12.823847 -7.469821 4.068045 1.613577 -0.094095 1.786972 -0.793270 5.938030 -1.689464 0.748958 -13.938850 2.818215 +PE-benchmarks/tug-of-war.cpp__main = 0.901934 0.034920 0.998614 -1.727865 -1.157073 -0.152904 1.406380 -1.528344 -0.787390 2.160026 0.649041 -1.342045 -0.828723 2.007828 -0.380308 -0.975548 0.373448 -0.683682 -0.495570 -0.414384 -0.696850 0.902900 -0.576174 -1.373559 0.797839 -0.363914 0.506059 1.713857 -0.175140 0.176005 -0.076106 -1.044740 0.553497 3.092608 0.875536 -0.155481 -0.849365 3.808925 -2.247577 2.775723 -2.659593 -2.450290 3.690743 -0.499141 -0.049940 -2.617274 -0.992427 1.814749 -0.483373 -1.467331 -0.048953 -0.181609 0.681776 -2.070943 -0.826617 2.102985 -2.811965 0.875875 1.400942 -1.711757 -2.217237 -0.874576 0.260421 0.476966 -2.267526 -1.900609 0.130970 -0.277683 -0.845600 0.387707 -1.845612 -2.000027 2.170376 0.582865 -0.657796 0.528388 -0.660241 -1.571577 1.459199 -0.338372 -1.930939 -1.264829 0.181542 -0.993513 1.437054 0.614421 1.954840 -4.134294 0.436246 -3.922463 1.208931 -2.142742 1.662998 2.780832 -1.323119 2.147940 0.517255 1.381667 0.461272 0.037257 1.887220 1.019242 1.267873 0.740271 2.031016 2.096024 -1.635225 -2.576714 -1.706347 -1.515060 0.793028 -0.758319 -3.273935 1.212784 -1.527115 -0.244686 -0.240673 0.022292 -0.663496 2.622913 -3.236243 0.212832 1.102112 -0.706912 1.266263 1.754994 -0.148086 0.267836 -0.801321 1.708852 -0.171888 1.199387 -0.249150 2.159256 -1.289676 -1.894187 -1.163552 0.459976 0.985024 -1.925405 -2.747631 -3.619629 -0.813171 1.186221 -1.439563 1.692358 4.093524 -1.415266 -2.308726 2.135739 0.457670 0.231182 1.479999 0.707682 3.423534 -1.747442 0.006580 -0.347579 -0.271607 1.109846 2.538885 -0.650304 -2.041600 1.957188 -0.891276 -1.955484 2.964261 -0.046275 -0.600723 -0.075730 0.240383 -1.098321 -1.819869 2.939922 -1.467994 2.540353 -1.369174 3.563145 -1.333703 -1.151565 0.836962 -2.309465 -0.639442 -2.235787 0.034556 -0.118778 1.912377 -1.981753 -1.829307 -0.666057 -0.722039 -0.766378 2.628924 -1.669239 -0.171653 0.204765 -0.186609 1.916710 1.446334 -0.995606 -0.082858 -2.101581 0.978646 1.652277 0.508133 -3.258487 -0.875740 -0.859365 -0.978849 0.032642 0.225447 1.719897 -1.462789 -0.224463 1.271708 -0.266977 -0.211662 -0.050358 -2.873881 1.047766 -0.076758 0.941628 0.822061 3.244742 2.255351 1.961647 0.280165 0.744812 -0.371750 -0.767841 -2.189587 0.727912 0.386771 0.649091 1.439242 2.154329 1.461865 1.215658 1.965630 0.720840 0.080003 2.531629 0.632663 3.064323 -1.106919 -0.541537 0.850280 0.036738 2.313705 2.852824 0.243429 -1.614779 1.373551 -0.624166 -1.721800 -1.206505 -0.240042 -0.383472 -0.507328 1.720591 1.562770 -0.463324 -0.620899 4.086877 -0.528948 -4.481789 1.956841 0.970325 1.669195 1.574961 -0.617017 1.311681 1.725175 0.167006 1.387081 1.680831 1.703765 -2.553840 -0.318655 0.282926 1.557525 1.946484 0.689935 -4.878292 0.384010 0.797611 2.856830 0.137487 2.645830 -1.649085 0.394586 0.450270 -0.145692 0.289361 -0.069457 1.456241 -0.841421 0.162976 -3.110678 0.066273 +PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 2.379834 -1.078941 2.052453 -3.858133 -1.351763 -0.992336 2.909836 -3.150805 -2.011335 5.165940 1.084192 -3.839089 -2.274252 4.381004 0.125901 -1.784918 1.880572 -0.535086 0.036810 0.428431 -1.748554 1.447352 -0.897762 -3.927539 2.149011 -0.203608 0.784997 3.845958 1.123966 0.742852 -0.305160 -2.588745 2.261688 7.426189 1.954292 -1.356739 -2.365190 9.577430 -4.982651 7.500289 -3.584021 -5.088802 9.313027 -1.293771 -0.710597 -4.355124 -2.073183 5.074612 -1.224447 -5.649301 -0.382355 0.283765 2.152265 -5.913937 -3.854625 5.644668 -6.435029 1.254771 3.863930 -3.211006 -4.530009 -1.668801 -0.226203 1.845779 -5.654551 -4.403603 -0.194212 -2.192105 -2.851793 -0.490248 -5.105269 -3.454498 6.348384 1.561538 -1.462135 1.596254 -1.213389 -2.857859 3.429880 -0.021445 -4.779037 -3.032824 -1.448745 -2.295720 3.998821 1.409168 4.746736 -9.147560 1.555780 -9.076694 3.296772 -5.537140 3.818938 7.385798 -3.465216 5.605001 1.377980 4.397698 0.380392 -0.039599 5.153781 2.683601 1.517205 1.722831 5.116267 5.019678 -4.497735 -6.396789 -4.297125 -2.669851 2.197996 -1.791844 -7.149653 3.453441 -3.918928 0.095988 0.224472 0.333779 -2.701349 5.124583 -7.304275 1.148199 2.163445 -1.790287 2.994763 4.986349 -0.147290 -0.147158 -1.386553 4.329685 0.170997 2.282069 1.079364 5.686888 -2.323399 -3.479053 -0.988189 1.306823 2.626799 -4.940825 -6.497501 -9.152988 -1.449145 2.397435 -3.522216 3.691193 10.152557 -2.403797 -3.106802 4.813317 -0.031546 1.433899 3.533844 1.702413 8.805427 -4.185734 -0.964385 0.133489 -1.300469 3.305064 6.872857 -1.474879 -4.592985 4.839768 -2.147825 -2.624128 5.759671 0.445648 -1.016162 0.013881 0.097496 -2.532522 -5.790500 7.047560 -4.705053 4.406972 -2.707318 9.056947 -0.784965 -2.119457 2.613821 -3.195254 -1.760567 -6.447981 0.330741 -0.381709 3.905678 -5.089380 -4.334897 -1.158312 -0.582652 -1.808051 6.752565 -3.963549 -0.391589 0.789311 -0.833140 4.754442 2.213496 -3.147405 -0.351120 -5.717475 1.764284 2.707513 0.017760 -6.949485 -2.312380 -2.240343 -2.229322 0.714628 -0.342026 3.989136 -4.636296 -1.071517 3.710157 -0.120173 -1.216445 -0.376184 -7.397181 2.414047 2.099716 2.368943 3.629792 8.448116 4.492459 4.715041 -0.090503 2.931078 -1.741822 -0.325662 -7.442126 1.636266 -0.757246 2.659282 3.515073 4.061483 3.400127 3.545042 4.558362 0.616250 -0.011902 6.213804 1.600544 6.133186 -0.723651 -2.639586 3.345428 -0.498820 6.097648 5.766811 0.062357 -5.070195 3.786929 -3.051794 -4.274064 -1.962089 0.418555 -0.331090 -0.657240 4.436205 3.954117 0.803093 -1.477368 8.637855 -2.379736 -11.895173 4.412281 2.651751 4.386201 5.432173 -1.156419 4.978233 3.121664 1.303965 2.903549 4.045298 4.037763 -6.341790 1.483816 0.936119 3.293265 4.197616 1.412996 -12.593748 -0.025515 0.863267 5.748248 0.826150 5.401985 -4.272584 1.394614 1.518588 0.156221 1.392577 -2.151260 3.656163 -1.634449 -0.093166 -6.843135 1.918158 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.052020 -0.129463 0.184309 -0.435108 -0.493908 0.094090 -0.128372 -0.256583 -0.088337 -0.138606 0.155193 -0.119800 -0.253008 0.533475 -0.091732 -0.491380 -0.093235 -0.064786 -0.018495 0.048574 -0.071797 0.280742 -0.148126 0.022812 0.103910 -0.097787 -0.119412 0.196446 0.260482 -0.226499 -0.154402 -0.238259 -0.108431 0.533182 0.145710 0.173309 0.021902 0.921758 0.096178 0.493787 -0.526460 -0.436095 0.372351 -0.143461 -0.042371 -0.490305 -0.366365 0.273157 -0.433654 -0.005271 0.295202 -0.008276 -0.009485 -0.101190 0.191026 0.179248 -0.664581 0.438709 0.238062 -0.143357 -0.014559 -0.157456 -0.277317 -0.065058 -0.098948 -0.273767 0.022143 0.265127 -0.224542 -0.034073 -0.041996 -0.353130 0.911399 0.220050 -0.241375 0.163071 0.234131 -0.232448 0.329011 -0.388638 -0.636227 -0.159397 0.028824 -0.011688 0.520861 0.081635 0.284960 -0.762257 0.201196 -0.834148 0.255833 -0.458369 0.234565 0.584815 -0.480041 0.295228 0.365031 0.080568 0.350273 0.170178 0.470579 0.173120 -0.024920 0.303804 0.295635 0.086315 -0.101746 -0.196060 -0.290338 -0.473766 -0.029175 -0.144841 -0.875624 0.181669 0.013386 0.382390 -0.157007 0.241860 0.048618 0.131975 -0.564511 0.025603 0.199018 -0.134235 0.225520 0.391729 -0.155304 0.012468 -0.312593 0.452844 -0.374157 0.299708 -0.125069 0.350109 0.021620 -0.453540 -0.643039 0.034014 0.157980 -0.324173 -0.487127 -0.436441 -0.102515 0.227750 -0.256516 0.446873 0.944850 -0.492976 -0.452062 0.638805 0.221151 0.213832 0.428362 0.169731 0.468385 -0.054269 -0.249072 -0.233755 -0.319254 -0.041178 -0.254132 0.176533 -0.219927 0.322412 0.020961 -0.491266 0.658713 -0.150820 -0.397131 -0.112165 0.021705 -0.341256 -0.336212 0.521666 0.099081 0.466555 0.042936 0.683223 -0.157160 -0.379656 0.133726 -0.258268 -0.008005 -0.272674 -0.046158 0.041888 0.177476 -0.510009 -0.299294 -0.060681 -0.220046 -0.314131 0.181290 0.281811 0.055017 0.235655 0.197428 0.370832 0.669496 0.097282 0.025769 -0.479715 0.281997 0.168737 -0.128566 -0.511545 0.009837 -0.088070 -0.087638 0.204076 0.026562 0.189497 -0.142005 -0.125156 -0.091147 -0.091770 0.270438 0.239357 -0.266490 0.014073 0.037308 0.248757 0.263721 0.322852 0.577326 0.532395 0.365589 0.236864 -0.014689 0.067876 0.162204 -0.041091 0.133468 0.244969 0.267658 0.382752 0.456340 0.174845 0.433231 0.404587 0.162129 0.501407 0.124477 0.881686 -0.122726 -0.200144 -0.035299 0.110508 0.505432 0.771001 -0.342858 0.268186 0.296585 0.180431 -0.071529 -0.456108 0.148769 -0.112637 -0.214813 0.371370 0.158698 0.030565 -0.147092 0.579943 -0.141070 -0.665439 0.371446 0.149478 0.330496 0.109468 0.161727 -0.013214 0.246575 -0.428363 0.340605 0.407161 0.359083 -0.451223 -0.188589 0.031315 0.252154 0.185022 0.478306 -0.258964 0.104350 0.297452 0.451899 0.053644 0.041840 -0.292744 -0.408205 0.236583 -0.209270 -0.101675 0.119199 0.083203 -0.159849 -0.005147 -0.192484 -0.521505 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.185792 -0.655046 0.404500 -0.842044 -0.686949 0.325162 -0.380984 -0.465060 -0.124084 -0.006783 0.152081 -0.028318 -0.164533 0.803225 0.023049 -0.852557 -0.003120 -0.138062 0.148812 0.038882 -0.133425 0.460752 -0.263772 0.015204 0.166617 -0.375939 -0.106406 0.440161 0.299146 -0.181290 -0.128411 -0.508218 -0.521078 1.015611 0.360233 0.243187 0.041920 1.810647 0.198521 0.934879 -0.615531 -0.874335 0.729332 -0.301158 -0.182172 -0.130468 -0.477598 0.441223 -0.605914 -0.134326 0.517227 -0.069843 0.270643 -0.191567 0.084060 0.081381 -0.971143 0.230400 0.314109 -0.322839 -0.282254 -0.361495 -0.352237 0.115493 -0.654899 -0.471920 0.327296 0.430627 -0.341781 -0.222707 -0.081941 -0.609209 1.375724 0.583389 -0.268743 0.217138 0.570875 -0.456292 0.621180 -0.043544 -1.334887 -0.383793 -0.362930 -0.929397 1.144485 -0.086376 0.907820 -1.435274 0.972303 -1.614883 0.396528 -0.726817 0.458020 1.223264 -0.886519 0.636780 0.772259 1.175882 0.345540 -0.190339 0.936442 0.376910 -0.356475 0.783741 0.817364 0.110897 -0.336332 -0.367712 -0.673509 -0.722494 0.088745 -0.797035 -1.464095 0.451263 0.030624 0.405471 -0.345098 0.545724 -0.286372 0.568670 -1.270918 0.199377 0.239213 -0.275554 0.236767 0.446178 -0.333568 -0.015782 -0.372850 0.940085 -0.857009 0.419062 -0.155661 0.725462 -0.092420 0.271427 -0.866082 0.183352 0.416307 -0.649337 -1.000692 -0.794770 -0.380726 0.629400 -0.398184 1.538969 1.756333 -0.845979 -0.725602 1.113845 -0.017845 0.291108 0.774128 0.365304 0.538684 -0.020546 -0.675871 -0.686162 -0.544730 -0.012283 -0.531773 0.377200 -0.102556 0.882924 -0.117161 0.136359 1.688662 -0.348513 -0.781549 -0.499178 0.153414 -0.707523 -0.701588 0.999977 -0.227363 0.705546 0.344026 1.341537 -0.054663 -0.416209 0.240563 -0.739252 -0.137621 -0.800612 0.012403 -0.238868 0.309850 -0.776672 -0.680622 -0.268545 -0.380624 -0.470062 0.347407 0.784878 0.295830 0.552039 0.360551 0.985488 1.287507 0.327549 -0.307424 -0.825829 0.509999 0.493006 -0.411733 -0.245594 -0.172036 -0.033637 -0.145267 0.231933 0.160683 0.547701 -0.791825 -0.222563 -0.336775 0.323819 0.355088 0.604311 -1.600616 0.142155 0.436076 0.424691 0.686180 0.591310 1.019993 0.950343 0.691318 0.397132 -0.092567 0.367554 -0.185410 -0.175161 0.266931 0.743555 0.441794 0.941857 0.863901 0.524106 0.775873 0.955950 0.519045 0.833106 0.059006 1.620345 0.000231 -0.429072 -0.097753 0.374244 0.946453 1.352724 -0.384999 0.658364 0.622039 0.309761 -0.356951 -0.983761 0.404546 -0.255507 0.298033 0.125464 0.307821 0.135582 -0.347474 1.027948 -0.157519 -1.432372 0.600804 0.370505 0.729382 0.634090 0.262304 0.239806 0.249080 -0.806727 0.976868 0.838242 0.417514 -0.844154 0.344012 0.164848 0.482908 0.168441 0.942132 -0.217135 0.478117 0.210080 0.717853 0.231504 0.222503 -0.556102 -0.541276 0.510346 -0.685340 -0.075901 0.423538 0.204265 -0.335080 0.234739 -0.653771 -0.934729 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = 1.031440 -0.349306 1.690052 -1.846929 -0.865332 -0.527016 3.016425 -1.739007 -1.169657 4.134234 0.518670 -1.724616 -0.826329 2.428538 0.071542 -0.880231 0.749523 -0.555939 -0.729070 -0.273522 -1.135299 1.214188 -0.798723 -2.156192 1.529458 -0.427978 1.123338 2.594278 -1.800365 1.076147 0.711757 -1.661735 0.926111 4.244042 1.047706 0.276536 -1.683020 4.806446 -4.342860 5.062149 -3.321787 -3.727334 5.580573 -0.720978 0.127589 -2.693510 -0.764797 2.733993 0.135727 -3.247643 -0.363907 0.135828 1.346386 -3.424737 -1.407826 2.703519 -3.313959 -0.189107 2.007894 -3.218675 -3.983827 -0.987978 0.233708 0.888841 -4.148610 -2.555506 -0.173366 -1.205128 -0.515305 0.519729 -2.565924 -2.656955 2.161410 0.736302 -0.595410 0.963047 -0.971030 -1.633399 2.148385 0.477195 -2.307567 -2.265377 -0.177826 -2.279563 1.493739 1.243314 3.258367 -5.486808 1.088955 -4.959834 2.134068 -2.590073 2.161641 3.868558 -0.930489 3.632755 0.697916 2.602747 -0.109266 -0.591322 2.120243 1.559170 1.959456 1.255036 2.952243 3.445615 -3.344523 -4.592733 -3.218509 -1.695189 2.024929 -1.713288 -3.154273 1.676786 -1.819147 -0.444442 0.105321 -0.168792 -1.175385 4.034572 -4.854913 1.561124 1.930655 -0.982884 1.394175 1.942500 -0.036062 0.019991 -0.708729 1.998422 -0.295891 1.675922 0.010978 3.356543 -2.302247 -0.909870 0.041046 0.714852 1.118161 -2.571456 -3.377143 -5.744599 -1.085389 2.789477 -2.115653 2.118581 5.502488 -1.833620 -2.804316 2.350986 0.609361 -0.097722 0.707969 1.261559 4.036272 -2.395994 -0.276450 -0.677656 -0.271696 2.405945 5.785951 -0.721429 -3.120488 3.570508 -1.573178 -2.420737 4.760887 -0.068489 -0.434022 -0.216102 0.645056 -1.371328 -1.897299 3.854798 -3.028123 3.104571 -2.708165 4.678681 -1.681930 -0.603402 0.846768 -4.471480 -1.387988 -4.197678 -0.010507 -0.225489 2.540796 -2.854447 -2.437129 -1.407105 -1.253029 -0.729679 3.719899 -4.333955 -0.466934 -0.035685 -0.524503 3.237633 1.052609 -1.384174 -0.892906 -2.702877 1.112085 1.562075 0.769025 -4.034421 -1.568865 -0.880624 -1.598607 -0.302620 0.416138 2.361525 -2.524272 0.302406 2.389377 -0.469439 -1.542619 -0.503220 -4.619531 1.210542 0.906786 1.701000 1.436716 4.567981 2.926468 2.561967 -0.012157 1.661012 -0.912422 -1.031547 -4.700139 1.475010 0.160642 0.946272 2.010169 2.579625 1.989647 1.605412 2.476618 0.634387 0.284062 3.375750 0.698443 3.529034 -0.850731 -0.935812 2.028138 0.502877 2.908372 2.566668 0.824385 -2.502310 2.108119 -1.664397 -3.096569 -0.198981 -0.148228 -0.486106 -0.196767 2.460110 2.511036 -0.804468 -0.686969 5.596593 -0.977410 -6.492752 2.119667 1.506696 2.679734 2.733159 -0.847376 2.811680 2.264806 1.261787 2.115047 2.005723 2.231063 -3.975722 0.464212 0.508023 1.629238 4.099679 0.687003 -7.844297 -0.247964 0.144273 3.609030 -0.500388 4.689015 -2.299648 1.672668 0.392176 -0.311424 0.635937 -0.352544 1.929313 0.042578 0.382452 -5.560969 0.967398 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = 6.346800 -1.750802 3.973297 -5.784863 -1.695412 -0.722006 9.312716 -7.396338 -4.576813 16.407655 0.982922 -6.300514 -4.629868 8.897666 -0.270217 -2.941600 2.983355 -2.054207 -1.371517 -0.298921 -5.039432 3.131578 -3.095187 -8.466379 4.195177 -0.507204 4.359893 9.046632 -4.508307 4.499613 0.266093 -5.691229 2.660591 14.937559 5.366778 -0.995900 -5.785079 19.587209 -17.751887 18.567015 -12.769385 -14.407782 21.910662 -2.137012 -0.949408 -10.291652 -2.727072 10.061445 -1.666099 -11.302839 -1.652209 -1.026275 4.287311 -11.445139 -6.392897 12.053954 -14.064748 1.338462 7.047109 -10.291696 -15.562426 -4.177802 3.399827 4.465834 -15.213109 -9.347733 0.017155 -5.149340 -3.248307 1.364662 -12.118173 -9.618505 8.318349 3.267596 -3.274210 1.376823 -5.306510 -4.941529 6.307327 0.114443 -8.957015 -7.012993 -1.423492 -8.630545 5.245320 6.017644 12.995652 -20.218670 4.957206 -20.102774 6.269967 -10.905789 8.234715 14.320455 -3.530824 12.883794 1.586175 11.683716 0.672900 -2.802280 7.018880 6.354876 6.149204 2.828961 10.889814 13.557856 -11.290465 -16.240893 -10.881567 -4.642410 5.439040 -4.825217 -14.425184 6.284225 -8.825402 1.483287 0.008732 1.014365 -6.309872 13.052088 -18.923242 4.761709 3.437845 -3.193062 8.270567 9.069205 -0.053571 1.707194 -1.697658 6.868240 0.809425 5.940840 0.005634 11.435274 -10.158583 -3.956733 -1.749030 3.857119 6.268220 -9.377295 -12.657961 -22.216086 -4.437041 9.680505 -7.243313 9.915035 21.468160 -5.485612 -9.461892 7.632575 -2.304489 0.753928 5.613533 3.297807 19.207406 -9.851089 0.996499 0.269428 0.454017 6.378350 20.596161 -4.041101 -10.646087 11.201670 -6.018380 -5.685095 15.328494 2.325518 -1.460418 -2.194991 1.250872 -3.390486 -9.053562 15.743264 -16.645938 10.919120 -9.552641 16.592275 -5.823077 -1.301171 3.951303 -17.203955 -5.004145 -15.419779 -0.659126 -2.380524 11.164341 -10.981046 -8.083115 -5.239789 -3.997745 -2.763964 15.985399 -13.476344 -2.368357 0.200437 -2.383149 14.592123 3.726339 -5.758936 -2.439896 -11.297326 3.806008 7.643112 0.470337 -16.426916 -6.526677 -4.232176 -5.504717 -0.798408 1.077081 8.285229 -10.933272 0.027583 8.563069 0.653564 -2.749283 -0.888141 -17.570640 5.265342 2.902398 6.007130 6.776079 18.597788 8.549884 9.652709 -0.163299 5.412714 -3.207812 -5.266426 -16.723259 4.741127 1.249856 4.002234 6.867010 8.650338 5.620053 5.800268 7.065433 0.697719 -0.276325 11.613944 4.245993 13.008176 -4.926255 -4.412124 6.721201 -0.283639 9.650171 10.046334 -0.373191 -9.517375 6.719553 -8.215675 -11.618837 -1.349242 -0.350120 -2.113004 -0.529214 9.651350 10.518330 -0.951768 -3.592125 21.224270 -3.474965 -27.874360 8.280177 5.439832 8.740085 13.853159 -4.001782 10.437544 8.162546 6.223580 7.665856 8.090346 7.538122 -13.715073 4.530646 1.691822 6.259590 13.565821 0.493097 -31.681384 1.193930 1.529343 14.379178 0.969978 17.573003 -8.078614 7.902004 1.139810 -1.711911 3.740596 -2.735591 9.058407 0.958190 1.312691 -20.991296 4.213078 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 1.560050 -0.481726 0.899114 -1.579294 -0.620956 -0.023634 1.707260 -1.609490 -0.959547 2.982525 0.255593 -1.337442 -1.185387 2.195779 -0.170050 -1.042574 0.665605 -0.845646 -0.252153 0.062763 -1.159575 0.823658 -0.757428 -1.681323 1.011614 -0.109699 0.696414 1.971927 -0.455247 0.499540 -0.325459 -1.245197 0.343388 3.556387 1.211089 -0.372630 -0.870721 4.928661 -3.229838 3.890326 -2.805616 -3.098345 4.681027 -0.577080 -0.420187 -2.339358 -0.772909 2.251358 -0.949135 -2.009252 0.040602 -0.283448 0.684750 -2.362123 -1.144925 2.784895 -3.718326 0.911060 1.596712 -1.647502 -3.019944 -1.172985 0.518046 0.611977 -2.877422 -2.130656 0.223823 -0.866626 -1.110176 0.301513 -2.634225 -2.176473 2.500273 0.997566 -0.846047 0.414413 -0.870185 -1.356114 1.482494 -0.498305 -2.371876 -1.474841 -0.261867 -1.755650 1.884634 1.066036 2.563992 -4.751757 1.180376 -4.823288 1.259522 -2.830221 1.939226 3.580828 -1.332290 2.818529 0.488682 2.427633 0.272309 -0.468551 1.999996 1.367974 1.061032 0.711505 2.392230 2.658726 -2.231764 -3.221005 -2.212960 -1.179191 0.758588 -0.934238 -3.753218 1.423667 -1.979014 0.679735 -0.076137 0.546272 -1.450102 2.513881 -4.227369 0.624605 0.627193 -0.789637 2.047109 2.290092 -0.190608 0.344675 -0.730880 1.953958 0.056436 1.409137 -0.336096 2.489591 -1.904367 -1.347911 -1.122829 0.617860 1.521440 -2.149346 -3.241361 -4.769104 -1.028081 1.694099 -1.635759 2.720711 5.115626 -1.333807 -2.179941 2.271957 -0.489380 0.755013 1.850906 0.721638 4.231269 -2.072888 0.131872 0.020425 -0.007089 0.938646 3.084249 -0.782267 -2.179453 2.299670 -1.091242 -0.946121 3.504171 0.501677 -0.597344 -0.510684 0.089356 -1.018721 -2.432915 3.881366 -3.025297 2.595066 -1.523341 4.085717 -1.243511 -0.765290 1.071119 -3.299610 -0.754577 -3.351589 -0.274175 -0.532800 2.312154 -2.653081 -2.029338 -0.940171 -0.626834 -0.854746 3.355002 -1.746691 -0.427202 0.164908 -0.192877 3.135442 1.416484 -1.280610 -0.196254 -2.845567 0.976615 1.806834 -0.189046 -3.629473 -1.081275 -0.797839 -1.184597 0.271512 0.259814 1.693553 -2.441393 -0.386243 1.711146 0.320759 -0.100305 0.134285 -3.997091 1.132690 0.495100 1.029183 1.733203 3.995762 2.237547 2.190029 0.214152 1.035689 -0.596299 -0.866603 -3.123034 0.700956 0.270285 1.292481 1.551659 2.003488 1.510857 1.212528 1.550630 0.599634 -0.148423 2.709521 1.282841 3.424770 -1.037550 -1.134493 1.258088 -0.223107 2.436942 2.752384 -0.678348 -1.671904 1.663707 -1.257716 -2.203275 -0.989829 -0.073685 -0.614096 -0.254007 1.968478 1.866384 -0.270196 -0.749172 4.855756 -0.865423 -6.168695 2.001655 1.283800 1.974721 2.742504 -0.606052 1.952531 1.915408 0.524758 1.894298 1.869739 1.835441 -2.856564 0.915175 0.339241 1.536894 2.309036 0.474073 -6.196458 0.395738 0.607740 3.298775 0.725970 3.305644 -1.638496 1.062660 0.314701 -0.571782 0.659393 -0.400877 2.068289 -0.160027 0.308529 -4.218249 0.293281 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.834093 -7.632923 4.076862 -9.743813 -6.726352 1.796373 -3.313165 -5.734253 -1.256451 2.460802 4.005515 -3.906228 -2.292484 9.679084 1.223468 -7.549880 2.468681 2.076630 2.771865 -0.130431 0.524467 3.876035 -1.825681 -2.623505 0.817049 -3.406884 -0.754961 6.158281 5.938722 1.120880 -1.465899 -4.583933 -3.517582 10.460038 3.567478 0.370470 -2.115842 17.978465 -2.957532 11.394589 -8.558495 -7.265150 10.907063 -2.661239 -1.796088 -5.622057 -8.103365 4.902633 -6.884010 -4.057522 2.912920 -0.940309 6.253195 -4.522030 -2.211416 3.477868 -9.738725 1.056360 4.594083 -5.384184 -2.517223 -2.123005 -2.872886 3.946910 -9.230976 -5.506221 2.799053 1.535220 -2.871071 -2.930134 -3.449727 -6.919195 13.058753 4.979554 -2.814061 1.846777 4.793597 -7.313382 7.455342 1.838453 -12.928243 -4.527255 -5.075753 -9.690321 10.279455 -1.916312 11.424645 -15.573794 8.174256 -18.136560 5.993631 -8.390172 4.245844 13.302180 -10.371428 6.747015 7.246148 11.851555 4.554288 -1.209033 9.402755 6.204560 -1.590903 6.264533 10.735604 3.930444 -4.100858 -5.849374 -6.691382 -7.105568 1.127407 -9.721118 -17.150807 6.037766 -2.050930 1.328075 -2.563862 2.966051 -2.804988 9.572150 -10.302266 3.742124 3.526352 -3.155221 1.131180 6.590536 -2.661380 -0.502171 -3.682218 9.776990 -7.696284 4.931582 0.957357 8.760750 -3.954389 -0.566649 -6.489690 3.592573 3.621661 -7.735712 -10.873172 -10.913145 -2.932204 5.162105 -2.987104 12.695786 17.928531 -7.771144 -8.623144 10.401706 0.705742 0.058932 8.647406 3.130370 10.145726 -2.265830 -5.702703 -8.035730 -5.494300 1.133343 1.692175 2.100303 -2.254495 9.813910 -3.434744 -4.706999 17.538876 -2.918137 -6.331660 -4.362574 2.413340 -7.594545 -7.964196 10.772141 -5.883711 7.790596 0.092162 13.923305 0.125663 -4.920016 3.531209 -7.722808 -3.155384 -7.336205 0.794686 -0.022925 4.161747 -7.644136 -7.894035 -5.246307 -3.848977 -3.986324 6.755978 2.999807 2.483998 6.634340 2.245465 9.708968 10.578291 2.046417 -2.785804 -8.003280 5.543447 7.020383 -4.061075 -6.678724 -2.982676 -3.002183 -1.119036 -0.555052 1.665341 8.925730 -9.543991 -3.423020 -2.345011 2.494508 2.405609 4.169199 -18.718776 3.460971 3.826836 5.649407 6.545145 9.022741 8.913482 9.791476 4.679912 5.023471 -1.249715 2.614096 -5.361194 -0.760431 2.580460 3.902604 4.321536 10.703193 7.629032 6.825228 9.591918 8.373835 5.274498 9.072682 -0.033386 13.822383 2.224852 -4.479710 1.160886 2.491930 10.431878 15.374792 0.728826 2.665146 6.203355 0.255675 -5.528670 -11.073641 3.102267 -1.639967 1.223304 4.513734 5.062864 2.174178 -5.027950 10.773883 -0.301365 -16.966816 8.054141 3.830190 7.377084 9.116685 0.713204 3.511195 2.587343 -5.538468 10.064839 9.093494 4.236470 -9.999395 1.956897 2.257741 5.421617 6.564723 9.144058 -8.251994 4.733048 2.746573 8.556482 1.744795 6.637954 -7.768068 -3.900733 4.266976 -5.569859 -0.519213 0.371089 0.919951 -5.419095 0.994579 -8.066324 -6.598379 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.578027 -1.402407 2.293298 -3.212804 -3.021713 -1.165609 1.194516 0.068631 -0.485629 2.709194 0.866744 -2.287370 -3.057988 3.799736 0.359373 -2.294607 0.631890 -2.007907 0.702005 -0.092274 0.481434 1.848585 0.607927 -0.552778 0.928227 -0.037458 -1.692960 2.772789 3.091826 -1.177983 0.782216 -0.990294 0.386728 2.334627 -0.731235 -1.564929 -1.255357 6.055904 -2.974957 3.856598 -3.112239 -2.718661 4.698698 -1.008004 -0.299154 -4.450884 -2.279454 3.052887 -1.957460 -2.560465 0.743876 2.008054 1.436487 -2.836389 -1.625251 2.117637 -5.168695 1.757572 1.536138 -1.421283 -0.041640 0.739200 -1.542809 1.409153 -1.798114 -1.908115 -0.511920 -2.287946 -2.182177 -1.044181 -0.297304 0.371127 3.485760 0.904141 -0.217558 1.820283 2.020807 -1.373480 3.335426 -2.899136 -3.695364 -1.333970 -2.152829 -2.362028 3.007632 -0.673233 2.059906 -4.302096 1.838138 -4.712223 2.406927 -3.857526 0.019918 4.231120 -1.759000 3.529730 1.498213 0.459704 2.781187 -0.363892 3.100187 2.645604 2.504277 3.056287 1.997240 2.293566 -2.227410 -1.611531 -3.501901 -2.308236 0.382001 -2.132249 -4.248878 2.234613 1.301554 -0.285701 2.164942 -0.634207 -0.582376 3.049091 -2.558148 2.542288 1.905716 -0.720844 -1.297826 3.136196 -1.076017 -1.517373 -1.445168 3.411053 -1.629468 3.563672 3.094471 2.797054 -0.748577 -2.401186 -0.005752 1.060208 -0.412960 -1.749417 -2.097689 -4.523262 0.751791 -0.071572 -1.727981 2.431841 5.947120 -1.391054 -2.346481 3.301449 1.197576 0.163983 0.921030 0.380213 3.655802 0.290051 -3.834444 -1.666559 -2.630203 1.649499 5.161194 1.579813 -1.036577 2.814313 -0.765012 -3.466862 1.926772 -0.289966 -1.322475 -0.234077 0.634048 -3.081188 -2.993945 2.382181 -0.922703 2.669451 0.026528 4.287587 1.962291 -1.655142 2.129291 -2.007882 -0.043829 -2.916854 -0.393764 1.604160 -0.346973 -2.262475 -1.722085 -3.399074 -0.983319 -1.941463 1.968426 -3.293789 1.597970 2.421810 1.290272 2.972342 1.888009 -0.414046 0.054745 -3.806003 1.372368 0.455250 -0.239945 -4.641492 -0.421277 -0.372951 0.101716 2.388439 -0.317670 2.438382 -1.713508 -1.321150 1.026543 -0.412014 -1.171345 0.233276 -4.661211 -0.220629 1.784970 3.583422 2.070086 3.255066 2.809758 2.386294 0.482401 4.147531 -1.493866 1.843331 -1.662562 -0.402870 -0.523845 -0.670084 1.688837 2.351093 2.322930 1.900933 4.260275 2.795243 -1.862659 2.816802 -0.727547 3.296766 -0.218680 -2.837707 1.060736 1.413494 3.049401 3.549715 1.414781 -0.996653 2.649994 -0.356642 -1.192855 -1.652294 0.690023 -0.722840 1.211979 3.773030 2.178688 0.361628 0.411146 1.564649 -0.590672 -5.996642 2.951085 1.138097 2.788068 1.822864 1.068835 1.311526 1.097199 -2.025167 1.534484 2.976306 0.982835 -3.177993 -0.360295 1.165900 1.914611 2.378861 3.681483 -7.355610 -1.337341 0.880545 1.345321 -0.848586 4.001728 -2.647362 -3.067974 2.057214 -0.452338 -0.678548 -0.590924 -1.035832 -2.356739 0.358505 -1.201559 -0.497003 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.525543 -2.913573 2.096613 -4.636733 -4.221264 2.692124 -3.109727 -4.062477 -0.736092 0.508410 1.716751 0.382607 0.413092 3.040617 -0.109916 -4.009951 -0.256522 -1.113829 0.787275 -1.007358 -0.876145 1.927075 -2.142860 -0.166104 0.077721 -2.585920 0.287611 2.131264 0.927910 -0.497305 -1.274864 -3.002865 -3.342399 5.935352 3.291934 0.369388 0.327950 9.634443 0.999377 2.274492 -3.389833 -4.941695 3.804982 -1.632746 -1.249052 0.305774 -2.217412 1.971866 -2.430216 0.273793 2.770044 -1.737483 2.548499 -0.411825 -0.137298 -0.093121 -4.329778 0.800890 1.882039 -2.614358 -2.585489 -2.399156 -0.359644 1.499729 -3.669829 -2.562046 3.339764 3.296614 -0.543968 -1.478738 -1.061467 -4.884171 6.606547 3.101990 -0.984485 0.087796 2.070769 -3.444321 3.269387 1.996521 -7.719046 -2.127820 -1.786874 -6.259443 5.668462 -0.931931 5.520384 -8.064262 5.379831 -9.668352 1.349376 -2.607751 3.064576 5.766405 -5.257085 2.479780 4.511164 7.760423 1.811873 -2.250597 5.003112 1.259522 -2.172412 4.045259 4.738732 0.756040 -1.300078 -1.333393 -3.422030 -4.216834 0.688449 -4.425033 -7.909773 2.957704 -1.038558 0.248854 -3.349213 2.444712 -1.615838 5.029141 -6.420888 0.030343 0.866615 -1.515734 1.745010 2.288756 -1.765623 0.931568 -1.439091 4.680173 -5.052077 1.583893 -1.647648 4.062871 -0.476002 1.755941 -6.280408 1.878928 3.599675 -4.445112 -5.846781 -3.497007 -2.434194 2.803991 -2.056790 9.089488 9.525188 -5.515508 -4.937090 5.783672 -0.283654 0.180838 5.532019 2.026633 3.565029 -0.775982 -2.771185 -4.304018 -2.870941 -0.557540 -4.196874 1.292640 0.295991 5.027857 -0.391077 2.976356 10.042297 -1.734640 -4.678840 -1.433013 1.649377 -3.118907 -4.034891 4.864634 0.201066 3.381842 3.180441 7.356002 -1.598971 -2.209746 0.988636 -3.275416 -1.204849 -3.267451 0.186033 -1.659246 2.904477 -2.764641 -3.693630 -1.366291 -2.349602 -2.328506 2.382176 6.596602 2.146637 3.313909 1.259325 4.035455 8.345936 2.248882 -1.969370 -3.713180 3.032426 4.221544 -1.843690 -0.415712 -2.425602 -1.036818 -0.824315 0.517246 1.098376 4.544254 -4.614643 -0.875111 -2.141358 2.714370 2.565995 3.929202 -10.142012 2.070473 1.152128 1.783585 2.961396 3.557350 4.872773 6.242514 4.519795 0.803386 -0.156148 1.412097 -0.342392 -1.446724 2.177777 4.887366 2.522555 5.993857 4.598643 3.682923 4.001931 4.733604 3.987159 4.822967 -0.626798 9.493316 -1.315419 -1.037673 -1.609756 2.067325 5.414746 8.251545 -1.046855 2.983683 2.565739 1.736527 -2.605019 -6.903496 2.592516 -1.158635 2.930862 -1.159210 3.087801 1.031252 -3.281035 6.579234 -0.274741 -7.879645 3.821331 1.979715 3.793543 4.117438 0.514960 1.211634 0.840626 -3.865113 6.107396 5.433247 2.542769 -4.951968 2.354839 1.001583 3.572309 -1.057631 4.634143 -1.114692 4.426602 1.234885 3.944676 1.695075 1.589139 -4.192940 -2.126548 3.031155 -3.995219 0.285668 3.682911 2.317628 -3.072417 2.303346 -3.910478 -4.600856 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.023238 -1.979104 0.202676 -0.976594 -1.239882 0.572560 0.549478 -3.854437 -1.084973 2.243399 0.776380 -1.381328 -0.152714 1.293028 1.007592 -0.795431 1.583025 1.309383 0.529556 -1.306163 -0.791410 0.484121 -1.003403 -1.366147 -0.473045 -0.793938 0.589709 1.199591 -0.935745 1.500725 -0.795336 -2.195779 0.375982 4.172564 2.569057 0.956601 -2.735349 4.732853 -0.579802 4.215055 -4.476402 -2.388045 3.219742 -1.124021 0.866544 -2.393306 -1.384545 2.124830 1.503566 -2.859086 -0.675480 -0.998578 1.575996 -1.492636 -1.593702 1.928237 -0.521669 -0.549704 1.553177 -4.079040 -2.779409 -1.192917 -0.094845 2.118310 -5.334791 -2.740820 1.179163 0.869304 -0.041560 1.386894 -3.415824 -4.489974 1.157178 1.393505 -2.209309 -1.164786 -0.738322 -1.308970 1.692958 3.491432 -3.117065 -1.835431 -1.161176 -1.098672 0.663706 0.747168 4.564909 -6.023206 1.852319 -6.721073 1.804207 -2.334111 3.216662 3.069207 -2.100685 1.603391 1.489785 4.300967 1.404571 -1.043177 2.128924 1.673389 -0.204708 0.328464 4.635837 1.830106 -0.192828 -2.959557 -0.915638 -1.680201 2.326088 -1.857053 -3.520938 1.936174 -2.979220 -0.102653 -2.339254 2.112272 -0.515334 3.484142 -4.920584 -1.085552 2.076548 -1.222191 2.873805 1.817382 -1.632632 1.634234 -1.632040 2.165749 -0.477120 1.202315 -0.886172 3.091097 -2.330123 -1.147867 -2.934468 1.306705 2.932195 -3.931887 -4.323667 -4.315548 -1.484615 2.816978 -2.107962 2.806276 5.271451 -3.194035 -1.731266 2.049705 -0.273518 -1.740222 2.225870 0.857078 5.488615 -3.166983 1.220925 -0.787278 0.065822 0.965382 3.061851 -1.153804 -2.772465 2.648167 -1.368232 -2.976937 5.738259 -1.128574 -1.921318 -0.009717 -0.235259 1.357229 -1.336116 2.960922 -4.167223 1.919087 -2.472826 2.885470 -1.400093 -0.350282 1.132605 -2.963420 -2.149659 -0.448568 1.325608 -1.252323 4.280525 -2.983944 -2.326917 -0.057812 -3.550819 -0.098722 3.482599 0.405941 -0.674821 1.394918 0.104924 3.643503 2.871733 0.677696 -1.172443 -1.917080 2.109549 3.124698 0.738944 -1.101984 -2.592321 -2.693724 -1.271128 -3.449987 0.966826 3.301762 -2.728412 -0.150770 -0.010181 0.274646 0.604017 1.184240 -3.541229 2.218943 1.191631 1.274402 0.592774 4.569692 1.480755 3.262667 1.909596 -1.267308 -0.146632 -1.455677 -3.905516 2.085546 1.130896 0.906090 1.352254 1.583391 1.818722 1.585780 3.339727 -0.930470 3.614645 3.569902 0.652914 4.171070 -1.643421 1.128667 0.955569 -1.209750 3.437825 5.314818 1.267078 -1.275348 1.226151 -2.195148 -4.172758 -1.724018 -0.521019 0.282936 -0.928596 0.814183 2.137731 0.267667 -2.819363 5.689755 0.042832 -6.174413 2.536088 1.288793 1.199688 5.143991 -1.324838 2.857997 1.057673 1.307083 2.301765 2.974502 2.347733 -3.524679 -1.318753 -0.150094 0.868641 3.434878 0.273034 -4.536166 1.991057 1.749671 4.826998 0.168594 1.314171 -3.617192 2.175005 1.182818 -1.377564 0.683101 0.634501 3.023421 -0.844482 -0.572728 -4.875039 0.607748 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.573474 -10.753702 5.378449 -15.617563 -9.940471 8.469891 -6.353579 -14.541226 -3.147301 6.399434 6.005037 -0.430236 2.467342 12.008212 1.694299 -9.643848 3.177211 -2.238954 3.435113 -1.224756 -2.538495 5.949014 -7.187500 -3.103050 -0.372064 -7.044908 2.085457 6.774845 -1.405792 1.765101 -4.790752 -10.055901 -10.283727 20.123425 11.947188 1.782683 -2.471265 29.509475 -3.596148 15.590984 -12.598563 -15.105094 13.459801 -4.678781 -2.847538 -1.049216 -7.719993 6.490073 -2.001179 -4.984122 6.876969 -6.865007 10.041359 -2.866853 -2.424203 1.389025 -10.432304 -3.073186 7.544609 -9.779482 -9.539042 -7.745941 1.076583 7.124886 -19.001406 -8.597165 10.320448 7.070670 -0.224714 -4.508412 -7.494470 -18.175641 15.177276 11.272637 -4.000025 -1.223026 4.177203 -14.048240 10.646058 9.457725 -23.621463 -6.894400 -8.299887 -22.130031 16.401307 -2.321418 21.523428 -26.602742 18.121912 -31.682916 4.693439 -8.553060 10.180414 20.041647 -13.512611 7.191191 13.272291 29.902321 4.783228 -8.032228 14.533059 7.017593 -7.242579 10.503718 19.811528 6.158357 -6.683529 -8.363367 -10.934600 -11.694787 5.006758 -16.281177 -22.793920 10.407206 -5.793167 -2.910293 -11.262419 7.756355 -7.501671 18.405148 -21.873539 -0.076416 2.889333 -5.223127 5.835180 7.902814 -4.499205 3.416291 -4.388452 14.142044 -13.797416 5.934741 -4.918659 14.313828 -7.293073 9.195833 -14.625494 7.003008 11.807052 -15.717498 -19.518579 -16.771802 -8.485929 11.660117 -6.258058 29.089280 29.599951 -17.213770 -14.822926 17.113604 -0.879604 -2.839334 15.399403 5.833571 13.222077 -5.216432 -6.025152 -13.000696 -7.080077 -1.586903 -3.367038 2.077156 -0.932093 16.930537 -5.748162 4.148272 34.613409 -4.268559 -13.538460 -6.298976 4.960278 -9.221961 -12.673320 16.891513 -9.912250 10.005466 4.914888 22.083973 -4.625544 -3.375400 3.741628 -14.813667 -5.929237 -13.678444 1.049354 -5.600263 11.930967 -9.204199 -12.271427 -5.001314 -7.746808 -6.382213 9.905824 10.943649 4.712497 10.021118 2.569736 16.159258 23.534982 6.051431 -7.399803 -9.710402 10.169790 14.466748 -5.733329 -1.665646 -9.310418 -5.876462 -3.677474 -3.384804 3.720544 16.019216 -18.587060 -2.931413 -4.411967 8.615347 5.916455 11.233215 -36.131591 8.396599 4.933705 6.355777 10.209692 13.894671 12.210143 20.350884 12.480372 0.796334 -1.274364 3.268875 -10.838448 -2.234817 6.589436 12.609768 8.011304 18.872630 13.389205 12.735107 13.227067 12.536225 14.710406 15.579417 -1.973004 26.409571 1.113649 -2.879682 -1.213672 4.132976 16.662848 25.353143 0.309355 6.573998 8.228677 -0.114188 -13.426272 -17.860063 7.619726 -3.402157 7.115980 -2.777160 10.634228 3.910401 -12.039768 22.861670 -0.985659 -27.810334 10.318414 6.747261 12.590803 18.907632 -0.269123 8.774570 2.299214 -7.725713 22.025385 17.210442 7.892452 -15.918197 7.463632 3.340984 9.264137 4.823464 12.097696 -8.587522 15.054281 2.001464 14.859677 5.067709 9.400558 -14.070600 0.651232 8.650617 -11.766036 2.070555 7.373722 9.959764 -7.220764 4.817948 -18.364666 -9.856393 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.373684 -0.724186 0.465286 -1.044313 -0.775927 0.785714 -0.705531 -0.913534 -0.111174 -0.143177 0.441291 0.266833 0.242833 0.630073 0.080920 -0.803291 0.035257 -0.381532 0.192200 -0.013978 -0.180656 0.316698 -0.524888 -0.027903 -0.078280 -0.519140 0.054631 0.414317 -0.075084 -0.146320 -0.445397 -0.632352 -0.888415 1.303328 0.788394 0.145387 0.178057 2.059613 0.227053 0.587575 -0.548725 -1.010063 0.671885 -0.377255 -0.370452 0.266519 -0.470885 0.354386 -0.281964 -0.078854 0.729631 -0.483374 0.562122 0.041224 -0.027446 -0.071719 -0.859841 -0.120728 0.401620 -0.423341 -0.518448 -0.547771 -0.003380 0.306067 -0.867707 -0.485822 0.881316 0.728217 0.008402 -0.386230 -0.234775 -1.237035 1.557236 0.787459 -0.150851 -0.033819 0.570863 -0.898982 0.728554 0.674080 -1.738626 -0.382190 -0.565795 -1.552183 1.421915 -0.341588 1.221867 -1.655889 1.318811 -2.101985 0.217672 -0.581817 0.612604 1.238494 -1.079291 0.373109 1.088132 2.053001 0.230387 -0.531626 1.097897 0.277294 -0.701492 0.847090 1.222805 0.026813 -0.313670 -0.240397 -0.815560 -0.932406 0.211569 -1.051530 -1.730145 0.649061 -0.174471 -0.019129 -0.833775 0.644089 -0.357027 1.101122 -1.347035 0.170294 0.131942 -0.309201 0.316927 0.506626 -0.404523 0.213238 -0.281085 1.009208 -1.162646 0.312989 -0.407428 0.797193 -0.095304 0.694763 -1.242367 0.439603 0.845530 -0.990666 -1.265533 -0.728515 -0.505325 0.806765 -0.389384 2.134855 2.045855 -1.211674 -0.987731 1.233080 0.155168 -0.002657 1.174972 0.463806 0.682109 -0.155233 -0.594484 -0.978602 -0.624036 -0.293369 -1.259043 0.294263 0.266196 1.122217 -0.100250 0.664816 2.767532 -0.406067 -1.054280 0.008635 0.304397 -0.708123 -0.994451 1.088878 0.278068 0.655112 0.978104 1.595096 -0.262297 -0.294783 0.173426 -0.495812 -0.232134 -0.879147 -0.032095 -0.425424 0.613943 -0.488452 -0.797864 -0.261381 -0.484389 -0.457956 0.458312 1.603047 0.558253 0.764059 0.222171 0.668552 1.907369 0.569707 -0.512454 -0.743189 0.655360 0.888284 -0.583678 0.244346 -0.553561 -0.262964 -0.097800 0.059855 0.268431 1.037846 -1.174658 -0.235752 -0.475499 0.708857 0.533967 0.942261 -2.426932 0.369601 0.359665 0.325211 0.732993 0.681313 1.054514 1.444045 1.064693 0.074751 -0.015470 0.524375 -0.366787 -0.504822 0.367244 1.351333 0.518917 1.248700 0.941514 0.839350 0.769109 1.064607 1.149953 1.025742 -0.039070 2.026782 0.037831 -0.248361 -0.346428 0.418389 1.174031 1.700443 -0.287293 0.906258 0.469821 0.433540 -0.693779 -1.481567 0.635136 -0.244844 0.676984 -0.389060 0.622906 0.357040 -0.803062 1.409679 -0.018368 -1.689234 0.582833 0.420298 0.814468 1.137169 0.132338 0.434915 0.057404 -0.781022 1.538534 1.158427 0.558255 -1.049204 0.684665 0.273572 0.693481 -0.449017 1.011917 0.010772 1.128160 0.051588 0.769306 0.426339 0.243278 -0.925367 -0.229750 0.681861 -0.954212 0.113582 0.856534 0.655557 -0.627730 0.431573 -1.071082 -0.975015 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.188196 -0.029943 0.196066 -0.739970 -0.817435 0.075024 -0.075220 -0.370090 -0.170065 -0.001233 0.290776 -0.266092 -0.315016 0.885884 -0.142201 -0.640919 -0.128783 -0.465822 -0.101317 0.119076 -0.133547 0.520558 -0.231354 0.035883 0.195386 -0.008550 -0.293180 0.252739 0.394939 -0.540881 -0.302734 -0.315425 -0.133741 0.809035 0.182771 -0.046336 0.061969 1.438421 -0.082767 0.532241 -0.772545 -0.598460 0.614604 -0.230495 -0.118846 -0.806269 -0.532901 0.504953 -0.356195 -0.072939 0.458934 0.033890 -0.086548 -0.196662 0.232378 0.356202 -1.093480 0.752309 0.465423 -0.055830 -0.050543 -0.249968 -0.256987 -0.098155 -0.164544 -0.479233 0.095285 0.227460 -0.331814 -0.132248 -0.135444 -0.584096 1.207320 0.347900 -0.304605 0.258138 0.198787 -0.541282 0.577720 -0.719798 -0.946351 -0.157907 0.059958 -0.093676 0.798239 0.007844 0.336839 -1.185486 0.322480 -1.270057 0.254306 -0.734107 0.329655 0.953939 -0.678991 0.384231 0.425689 0.138131 0.656157 0.222047 0.784892 0.244463 0.109191 0.457152 0.364691 0.281030 -0.198256 -0.202803 -0.441206 -0.765947 -0.021100 -0.080883 -1.260696 0.415347 0.008824 0.268545 -0.133952 0.231550 0.040671 0.382507 -0.766761 -0.162118 0.281524 -0.197986 0.294148 0.764529 -0.250002 -0.023091 -0.592360 0.682557 -0.423567 0.586966 -0.144038 0.528971 -0.093504 -0.804049 -0.929301 0.046833 0.230714 -0.577371 -0.738103 -0.782399 -0.022967 0.031530 -0.490291 0.749146 1.463782 -0.776558 -0.732939 1.074932 0.458802 0.266184 0.655884 0.111418 0.861789 -0.121729 -0.369620 -0.226818 -0.485631 -0.128746 -0.376100 0.257261 -0.297542 0.338890 -0.011109 -0.776705 0.937024 -0.032781 -0.591170 0.036847 0.097926 -0.511488 -0.668297 0.813471 0.307544 0.707216 0.203547 1.054563 -0.185353 -0.527804 0.353866 -0.208752 0.040604 -0.493004 -0.190603 0.134827 0.279909 -0.592847 -0.373868 -0.096745 -0.270081 -0.617740 0.277543 0.360988 0.182363 0.344943 0.330150 0.380995 1.063477 0.041902 0.171709 -0.802050 0.454940 0.343168 -0.187384 -0.847292 -0.034478 -0.211241 -0.142049 0.426180 -0.057650 0.335329 -0.224804 -0.276142 0.029536 -0.053929 0.406533 0.332625 -0.480924 0.081369 -0.160900 0.425670 0.352133 0.580969 0.779729 0.839625 0.555163 0.298299 -0.042403 0.149811 0.168136 -0.141223 0.067027 0.362527 0.510593 0.605905 0.725797 0.324752 0.693814 0.528911 0.062265 0.829280 0.139839 1.388544 -0.218573 -0.334452 -0.078911 0.113101 0.796776 1.239063 -0.449876 0.180705 0.448282 0.236879 -0.214333 -0.657028 0.221170 -0.206355 -0.269812 0.404008 0.190492 0.013154 -0.171472 0.923405 -0.290583 -1.074144 0.601464 0.203990 0.569530 0.156724 0.278459 0.060185 0.393158 -0.711198 0.521092 0.712839 0.584262 -0.620236 -0.322758 0.077120 0.501342 0.065667 0.748660 -0.621415 0.284289 0.491960 0.647816 0.091735 0.147534 -0.466689 -0.614546 0.426130 -0.159219 -0.128288 0.192271 0.239228 -0.432567 0.049316 -0.310209 -0.629104 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 1.188973 -3.122764 1.553332 -3.439661 -2.773958 2.257994 -2.625481 -2.476957 -0.457709 0.680813 0.823933 0.566119 0.389770 2.532872 0.301331 -3.005925 0.191429 -0.835040 1.253320 -0.110414 -0.537595 1.569385 -1.346239 0.192423 -0.003462 -1.864768 -0.169360 1.423250 0.775952 -0.078356 -0.799249 -2.242192 -3.147138 3.963883 2.338423 0.227300 0.345595 7.145499 0.753550 2.746339 -1.738739 -3.473545 2.314572 -1.164205 -0.795008 1.391930 -1.398620 1.447103 -1.654499 -0.386573 2.439988 -1.069745 2.159492 0.059721 -0.222956 -0.672902 -2.919674 -0.162112 1.049604 -1.314999 -1.290264 -1.612838 -0.589102 1.448930 -3.246293 -1.631862 2.367493 2.164533 -0.563700 -1.696774 -0.541183 -2.862873 4.362917 2.677021 -0.793612 -0.036468 2.317668 -2.248599 2.422482 1.328901 -6.075860 -1.374555 -2.582179 -5.743863 4.724575 -0.895874 4.468679 -5.576662 5.235494 -6.917595 1.053283 -1.936397 1.855492 4.708055 -3.532216 1.716224 3.610990 7.003668 1.394292 -2.077482 3.704211 1.399510 -2.443591 3.495039 3.675375 0.426655 -1.316604 -0.710969 -2.746343 -2.698177 0.513160 -3.962103 -5.211617 2.197902 0.059435 0.572073 -2.110594 2.134742 -1.882104 3.236785 -5.092228 0.449778 0.192568 -1.051086 0.838535 1.221679 -1.451716 0.458900 -0.890026 3.773809 -4.128953 1.210774 -0.669590 2.942206 -0.659647 3.235473 -3.672610 1.653850 2.527866 -2.942101 -4.088168 -2.894768 -1.708460 2.360543 -1.393696 7.707977 6.753489 -3.759201 -2.768145 4.217755 -1.079452 0.199457 3.644111 1.335682 1.518946 0.125413 -2.968314 -3.360228 -2.407067 -0.739043 -2.814832 1.573017 0.864342 3.944156 -0.608430 3.239467 7.328544 -1.244961 -3.783667 -2.352048 1.085678 -2.595867 -2.745519 3.471484 -1.354291 1.583569 2.716724 5.261309 0.109104 -0.949692 0.864474 -3.020424 -0.809740 -3.023942 0.111600 -1.418172 1.412314 -2.212341 -2.643563 -1.249595 -1.390272 -1.841812 1.182619 4.502343 1.831388 2.987824 1.331743 4.069313 5.911401 2.171543 -1.916190 -2.538980 2.131493 2.600718 -2.199235 0.764128 -1.669728 -0.411770 -0.336877 0.654157 0.817700 3.071914 -4.273439 -0.882042 -1.986097 2.514651 1.805704 3.435541 -8.389475 1.188508 2.012088 1.587233 2.930756 2.170731 3.131178 4.447739 3.467664 1.116034 -0.410414 2.100549 -0.928635 -1.212831 1.600976 3.536100 1.684998 4.259775 3.405300 2.769952 2.793037 4.006854 2.961742 3.069058 -0.752051 6.404190 0.080346 -1.207162 -1.058589 1.865848 3.711598 5.481250 -1.003210 3.040846 2.077990 0.934131 -1.905399 -4.316604 2.474553 -1.068111 2.979315 -1.544122 1.901260 1.313475 -2.267700 3.913919 -0.332718 -5.755492 2.361362 1.551236 3.056532 3.782233 0.921327 1.407104 -0.199948 -3.274916 5.053078 4.164755 1.258826 -3.197879 2.733862 0.882620 2.087345 -0.368183 3.847422 -0.027229 3.090709 0.347323 2.337532 1.316799 1.006397 -2.783020 -1.777374 2.488996 -3.489262 0.197637 2.411550 1.346249 -1.674833 1.802861 -2.668522 -3.573711 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 1.144167 -2.992278 1.571460 -3.708695 -3.058939 2.753090 -3.142026 -3.172579 -0.393025 -0.141355 1.319774 0.848709 1.166294 2.734483 0.081317 -2.842015 0.017580 -0.785835 1.207750 -0.153753 -0.556577 1.583731 -1.848647 0.319579 -0.191254 -2.079077 -0.059313 1.366339 0.229117 -0.135745 -1.291540 -2.399389 -3.519312 4.459589 2.805993 0.363649 0.715500 7.620605 0.696120 2.341606 -1.815793 -3.544340 2.150457 -1.222702 -1.153414 1.408382 -2.064221 1.049043 -1.390850 0.136588 2.741265 -1.660725 2.168054 0.546921 0.208612 -0.808573 -2.976978 -0.421785 1.305159 -1.465397 -1.473820 -1.956700 -0.412507 1.149107 -3.457232 -1.571466 2.968097 2.953432 0.119499 -1.678279 -0.490487 -3.942377 4.997776 2.844381 -0.758209 -0.146767 2.386057 -3.163640 2.536909 2.081424 -6.539277 -1.308971 -2.324857 -6.053735 5.058641 -1.104728 4.795335 -5.856500 5.270543 -7.506931 0.722795 -1.993044 2.087302 4.759114 -4.182055 1.359945 4.108195 7.869792 1.420865 -1.906693 3.967898 1.380068 -3.022510 3.437343 4.180672 0.364643 -0.993529 -0.525975 -2.881561 -3.159003 0.564628 -4.090801 -6.084922 2.221123 -0.268591 0.053919 -3.109141 2.374684 -1.589906 4.047282 -4.932213 0.479849 0.263091 -1.108974 0.797137 1.502787 -1.452926 0.619097 -1.147448 3.757354 -4.599178 1.079344 -1.378038 2.905969 -0.830982 2.964971 -4.647817 1.551174 2.778174 -3.504893 -4.431838 -2.711134 -1.903260 2.735262 -1.296541 8.047715 7.334764 -4.477196 -3.369631 4.639327 -0.051119 -0.105332 4.358603 1.613741 1.903556 -0.007589 -2.690418 -3.891705 -2.596560 -1.268674 -4.381298 1.506781 1.213816 3.951915 -0.353765 2.749576 9.503465 -1.528439 -4.142219 -1.522806 1.319578 -2.580005 -3.147612 3.939364 -0.222311 1.925293 3.112834 5.546389 -0.438815 -1.144941 0.640312 -2.638274 -0.813470 -3.051875 0.152068 -1.663067 2.022086 -1.854809 -2.819017 -0.929229 -1.700493 -1.877451 1.170576 5.799288 2.049479 3.055957 1.142688 3.159949 6.965749 2.448296 -1.827324 -2.519802 2.349168 3.217000 -2.386480 0.729136 -1.746158 -0.734981 -0.336767 -0.066297 0.945437 3.475481 -4.592530 -0.847452 -2.343595 2.671521 2.241390 3.719716 -8.958211 1.572743 1.262219 1.463156 2.907091 2.019345 3.695530 5.156189 4.017477 0.605071 -0.163720 1.884813 -0.704490 -1.338516 1.898400 4.230611 1.750431 4.956953 3.631230 3.076375 2.568759 4.112679 4.133186 3.477666 -0.509892 7.378502 0.216884 -0.926292 -1.485394 1.869258 4.113299 6.320957 -0.799724 3.560575 1.789443 1.377521 -2.286019 -5.350030 2.668813 -0.896017 2.679328 -1.818712 2.018302 1.341802 -2.760536 4.592246 -0.148266 -5.880080 2.222581 1.545279 2.959149 3.824914 0.878070 1.286770 0.019184 -3.257226 5.807920 4.374557 1.687782 -3.551939 2.487002 0.918688 2.374409 -0.798086 4.060545 0.283791 4.371153 0.362106 2.493231 1.390317 0.845457 -3.105986 -1.478375 2.637804 -3.723814 0.113599 3.053016 1.936074 -2.146315 2.012467 -3.154359 -4.202404 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = 4.221705 0.433579 3.755537 -3.783391 -0.203033 -1.557783 8.681483 -5.818661 -3.994750 10.919661 1.562295 -4.149185 -3.051630 2.207759 -0.492771 -1.372969 3.493557 2.890048 -2.550310 -2.213575 -3.724245 0.126080 -2.045156 -7.023008 2.969997 -0.856593 5.078870 6.841786 -3.492666 4.581067 0.441517 -3.532690 3.492581 11.155426 3.246283 -0.678889 -5.552623 9.716271 -9.224065 8.679803 -8.021983 -7.009905 13.390901 -1.481406 2.019199 -9.526001 -2.263602 6.886222 0.322096 -8.968896 -3.151447 -1.305094 4.087462 -10.022509 -5.358785 8.847595 -6.567960 -1.781573 5.889070 -8.455947 -11.473600 -2.032656 4.427870 1.877975 -10.047810 -7.587844 0.131171 -3.516610 -0.793671 3.137949 -10.306794 -8.765985 1.864180 0.600344 -2.006815 1.412206 -4.659972 -5.174190 3.831186 5.220736 -3.809996 -6.026321 0.480298 -4.283079 2.556234 2.402342 7.187191 -13.326974 1.153997 -12.196768 3.705350 -6.643128 6.961986 8.648599 -1.881135 8.069780 0.569558 5.357168 -3.081521 -1.687763 4.727209 2.957262 5.037869 -0.438644 8.106339 7.030831 -7.621475 -12.501775 -6.289518 -3.386670 4.458954 -3.730381 -8.027969 4.140922 -8.300235 -2.306718 -0.803853 -1.187831 -2.764472 10.054821 -11.407399 3.024133 5.003031 -2.910542 5.089338 5.734597 0.462850 1.273272 -1.010765 3.888131 1.654157 2.107620 -0.529780 8.046807 -4.736138 -5.004368 0.620955 1.727780 4.524896 -5.953358 -9.618353 -12.482573 -3.804633 4.834237 -4.497590 1.844308 11.572644 -2.853047 -6.373402 3.365253 -1.268539 -0.200158 3.196176 3.430461 12.764418 -9.337728 3.276930 -0.191941 2.087664 6.593178 11.364951 -5.499274 -9.138045 8.971111 -5.150914 -4.772918 10.235075 -0.476875 1.275527 2.946575 1.639004 -0.856212 -4.278814 9.828792 -9.340075 8.499334 -6.702586 10.698481 -5.530149 -1.248650 1.228498 -8.675814 -3.417551 -7.724092 1.002813 -1.735465 8.373452 -6.101523 -7.018844 -2.956540 -2.350661 0.860952 12.367766 -9.696346 -2.640299 -1.491679 -2.988808 5.449992 0.572218 -5.165437 -1.148784 -5.436957 2.798529 4.705524 2.830560 -9.942241 -4.746979 -3.726229 -4.295060 -3.340333 1.712025 7.213676 -5.145657 0.171791 7.107149 -1.036389 -4.415565 -2.882360 -9.600002 4.191884 -0.182080 1.572946 1.979922 13.339550 6.920453 5.629803 -1.802509 0.936412 -0.509143 -4.514861 -13.697581 3.997637 -0.711089 3.246930 4.265700 2.660229 2.769063 3.744249 4.070568 -2.040056 2.095587 8.516223 4.176938 6.510733 -2.385691 -0.906581 5.950285 -1.947607 6.239331 5.020076 4.161241 -7.910146 3.819259 -4.703522 -8.289605 -2.725846 -2.375179 0.111771 -2.940358 5.890967 7.305949 -2.984102 -2.860237 14.868889 -1.730164 -15.900456 5.482256 3.148157 4.988831 8.603769 -4.045012 8.294899 5.210334 7.407113 3.344828 3.532982 5.713099 -9.793776 1.466993 1.369186 4.466478 8.214785 -2.350077 -21.359052 -0.250244 -0.116276 10.261011 -0.200293 11.565343 -5.747332 7.930061 -0.087559 0.266203 3.092804 -2.834365 6.754867 -0.042861 -1.894696 -15.004846 5.795525 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = 1.384773 -0.152690 1.078350 -2.050593 -0.550637 -0.314514 2.258135 -1.914296 -1.241940 3.064754 0.448847 -1.554221 -2.042603 1.344009 -0.122945 -1.382741 0.972839 -0.392035 -0.758429 -0.477445 -1.491207 0.377974 -0.795641 -2.216513 1.166640 -0.332172 1.170062 2.314138 0.195119 0.472419 -0.257389 -1.314226 0.769528 4.274822 1.295363 -0.260303 -1.274779 4.605214 -2.251937 3.261043 -2.870895 -2.863664 4.759014 -0.676938 0.083326 -2.901195 -0.251166 2.646317 -1.318244 -2.245001 -0.340206 -0.371785 1.018647 -3.235068 -1.551553 3.241761 -3.333976 0.967970 1.958517 -1.951820 -3.285541 -1.238903 0.765240 0.550747 -2.783571 -2.772896 0.224656 -1.016300 -1.574474 0.715035 -3.374900 -2.562165 2.090947 0.882733 -0.925175 0.630379 -1.308291 -1.617365 1.428119 0.251272 -2.108930 -1.844773 0.233167 -1.263262 2.075459 0.827121 2.052678 -5.173639 0.385875 -4.937048 1.197263 -2.758071 2.562939 3.668812 -1.289166 2.983848 0.233047 1.412452 -0.667125 -0.588423 2.265232 0.805804 1.513628 0.400667 2.713587 2.117433 -2.344364 -3.806171 -1.854920 -1.309125 0.751203 -0.978364 -3.438483 1.613110 -2.899350 0.168386 -0.077813 0.343054 -1.577726 2.508182 -4.405134 -0.030497 1.045918 -1.074289 2.562559 2.360560 -0.058026 0.438114 -0.486014 2.139632 0.504202 1.123180 -0.628673 2.936917 -0.705777 -1.783942 -1.098553 0.479512 1.950975 -2.174614 -3.964790 -4.214455 -1.574472 1.098174 -1.742262 2.163181 4.894273 -1.211913 -2.294289 2.295153 -1.350193 1.237244 1.957873 1.049611 4.313932 -2.880301 0.804588 0.085577 0.410825 1.593579 2.865742 -1.522096 -3.136647 2.664354 -1.327405 -0.289355 2.294786 0.271831 -0.171193 -0.198784 0.032347 -1.108726 -2.490486 3.877238 -3.074620 3.222367 -1.420584 4.554697 -1.858203 -1.243893 1.096481 -2.314630 -0.659072 -2.863967 -0.065178 -0.456809 2.341332 -2.754046 -2.675932 -0.851787 -0.159649 -0.500411 4.065062 -1.625078 -0.848352 -0.241032 -0.396908 2.765863 1.219851 -1.898812 -0.134635 -2.665397 1.324345 1.720365 0.563447 -3.321709 -1.240337 -0.849791 -1.579172 0.485254 0.479833 2.232946 -1.776009 -0.409423 2.200656 0.211152 -0.481551 -0.253063 -3.858161 1.423085 0.442228 0.159242 1.427343 4.600722 2.483877 2.074875 -0.229204 0.448638 -0.425709 -0.955924 -3.609142 0.715335 -0.116739 1.617248 1.730412 1.651218 1.546510 1.327935 2.003162 0.399821 -0.196267 3.198394 1.407475 3.186131 -1.222518 -0.892215 1.790323 -0.738295 2.642054 2.673879 -0.450517 -2.350382 1.951712 -0.862428 -2.169458 -1.524628 -0.659521 -0.525823 -0.579928 1.977487 1.884642 -0.801800 -0.866128 5.502015 -0.946636 -5.856004 2.374153 1.379991 2.138571 2.399870 -1.057072 2.107485 1.990709 0.629134 1.526372 1.663743 1.968538 -3.069412 0.612420 0.447826 1.815377 1.839367 -0.225002 -6.001603 -0.453196 0.429431 3.983929 1.166143 3.025543 -1.759831 1.284483 0.225756 -0.279361 1.000253 -0.810417 2.333058 -0.684612 -0.244781 -4.265714 0.927795 +PE-benchmarks/n-queen-problem.cpp__main = 0.329389 -0.021552 0.337330 -0.557350 -0.150635 -0.124626 0.585028 -0.398426 -0.287312 0.410195 0.111962 -0.363396 -0.663340 0.384267 -0.071584 -0.497625 0.210871 -0.196948 -0.272041 -0.104463 -0.357165 0.079478 -0.159038 -0.572725 0.357373 -0.086414 0.240390 0.623328 0.140415 -0.113537 -0.082238 -0.298283 0.258056 1.098999 0.232711 0.046814 -0.265942 1.229145 -0.309590 0.781116 -0.801271 -0.718872 1.247403 -0.234932 -0.048469 -0.950319 -0.143189 0.683832 -0.548052 -0.434949 -0.063526 -0.030549 0.104797 -0.885766 -0.332349 0.925103 -1.040263 0.479760 0.488164 -0.421299 -0.733857 -0.317847 0.043636 -0.059581 -0.375872 -0.709758 0.025031 -0.215801 -0.565905 0.270253 -0.761317 -0.569809 0.910141 0.213426 -0.182678 0.281606 -0.249325 -0.320859 0.371940 -0.158868 -0.504591 -0.507531 0.205418 -0.020148 0.632530 0.195184 0.322684 -1.329281 -0.077939 -1.239979 0.364714 -0.822180 0.636036 0.897345 -0.420483 0.852041 0.066597 -0.019336 -0.218660 0.020300 0.634994 0.134153 0.435549 0.096934 0.650259 0.352287 -0.484194 -0.931647 -0.426485 -0.375500 0.083326 -0.146259 -1.044824 0.380686 -0.701985 0.225372 0.008342 0.164727 -0.255713 0.402022 -1.032106 0.061531 0.350072 -0.284032 0.658151 0.655866 -0.038981 0.036542 -0.214571 0.569941 0.123780 0.343124 -0.195724 0.716316 0.078155 -0.836037 -0.399503 -0.018763 0.420782 -0.506886 -1.029968 -0.932280 -0.362242 0.244582 -0.459433 0.442629 1.293740 -0.281069 -0.637497 0.640709 -0.085591 0.531585 0.526491 0.317366 1.122531 -0.697080 0.176587 0.072691 0.084818 0.450218 0.347678 -0.384478 -0.834955 0.648341 -0.208736 -0.300159 0.617462 -0.003687 -0.011440 0.200434 -0.085695 -0.370009 -0.729406 1.003194 -0.267499 0.995031 -0.271499 1.226017 -0.520617 -0.490352 0.258063 -0.372659 -0.087679 -0.648449 -0.030295 -0.076169 0.487367 -0.789952 -0.734395 -0.189631 -0.048428 -0.121962 1.022378 -0.213327 -0.212519 -0.106256 -0.074673 0.522400 0.342630 -0.553657 0.092512 -0.808402 0.335541 0.392706 0.217939 -0.979211 -0.172337 -0.108832 -0.383147 0.289492 0.137095 0.481960 -0.252174 -0.132088 0.589566 -0.042763 -0.099509 -0.108998 -0.682910 0.202855 0.107696 -0.030082 0.337212 1.144969 0.803775 0.445400 -0.108901 0.156664 -0.089706 -0.226854 -0.700711 0.050043 -0.127770 0.507450 0.436558 0.328008 0.427178 0.251263 0.581488 0.200170 -0.134606 0.833355 0.507038 0.890394 -0.358531 -0.311285 0.443559 -0.212887 0.743563 0.710210 -0.286310 -0.514945 0.553097 -0.016124 -0.364359 -0.532100 -0.238969 -0.128847 -0.314910 0.761395 0.401202 -0.251624 -0.148652 1.401086 -0.247768 -1.433960 0.649469 0.361303 0.515144 0.376585 -0.213017 0.370478 0.635689 0.024177 0.206447 0.315274 0.584522 -0.798088 0.020759 0.102580 0.489842 0.298198 0.022965 -1.361637 -0.242030 0.195424 1.030096 0.313695 0.573621 -0.378530 0.126133 0.004270 -0.011619 0.197999 -0.129552 0.490884 -0.243263 -0.179461 -0.939043 0.134425 +PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.022134 0.710268 0.099097 -0.807674 -1.110188 0.350557 -1.109632 -0.014775 -0.698048 0.160289 -0.685885 0.543737 -0.153030 0.244649 -1.239874 -0.499402 -0.923850 -0.270574 -0.846470 -0.372280 -0.760219 0.288193 0.144037 -1.044381 0.692201 -0.873617 -0.186393 0.877013 -0.213466 -0.241137 0.613147 -0.160282 -0.135455 0.985855 -0.477762 0.424085 0.874153 0.519223 0.423071 -0.120807 -0.523192 -0.783169 1.030970 -0.379989 0.633171 -1.143078 -0.475006 -0.038872 -0.886636 0.409627 -0.606696 -0.797647 -0.963815 -0.082794 0.594331 -0.126440 -0.754777 0.676481 0.388079 0.006621 -0.313773 -0.337391 -0.058594 -0.342801 0.484710 -0.852727 -1.135789 0.707481 -0.136025 -0.026490 -0.444796 0.233820 0.617037 -0.012297 0.328111 0.202984 -0.447232 -0.225516 -0.324286 -1.019911 -0.200442 -0.493163 1.004741 0.218370 0.555465 0.239526 -0.155497 -0.270818 -0.303929 -0.391056 -0.616980 -0.189250 0.454935 0.340253 -0.111475 -0.047922 0.301629 -0.215330 0.357166 0.802881 0.404424 -0.469887 0.348930 -0.132652 -0.039459 0.246880 -0.204829 -0.602724 0.387263 -0.582020 -0.008198 0.049777 -0.649183 0.407850 0.149504 0.295978 -0.531985 -0.133555 -0.410305 0.244743 -1.098407 -0.407045 0.281833 -0.329967 -0.283792 -0.713453 -0.003106 -0.431154 0.580718 -0.624452 0.030963 -0.298312 -0.049857 0.633147 -0.160459 -0.587380 -0.999085 -0.819195 -0.321591 -0.489127 -0.389033 0.055740 -0.627159 -0.246231 -0.227672 0.047436 1.413066 -0.279939 -0.252687 0.101876 0.085694 0.320557 0.643072 0.580880 0.208116 0.064475 -0.588134 -0.062417 -0.572851 0.524245 -0.583845 -0.992830 -0.306469 0.511357 0.193734 -0.379972 -0.398921 -0.123054 0.346497 0.175507 0.072379 0.060503 -0.310536 0.609110 -0.128005 1.325805 0.362600 1.015601 -0.728175 -0.404630 0.827006 -0.066776 0.647429 -0.116731 -0.266304 0.076586 -0.111471 0.049660 -0.380036 0.399638 0.278787 -0.000527 0.593084 0.168421 0.123264 -0.442414 -0.210710 0.706675 0.504060 -0.770201 0.852849 -0.120850 1.061783 0.744554 0.408972 -1.207594 -0.458186 0.243804 -0.313337 0.262352 0.146268 -0.323913 0.733471 0.536769 0.479150 -0.828337 -0.445250 0.799227 0.543642 0.007760 -1.170837 -0.100688 0.156743 0.528630 0.768676 -0.060660 -0.357502 0.670687 -0.567648 -0.697379 1.095925 0.084540 -0.008554 0.182020 0.881281 0.745572 0.667480 0.694304 -0.000701 0.441520 -0.139289 1.121050 -0.293094 0.799665 -1.129230 0.329915 -0.567084 0.111795 0.882158 0.211568 -0.300297 -0.337896 0.093708 0.233638 0.423530 -0.944896 -0.511720 0.095732 -0.532541 0.451263 0.247682 0.070447 0.379617 1.272089 -0.065485 -0.028704 0.196332 -0.536052 0.287757 -0.424466 -0.072406 -0.289198 0.479165 -0.145501 -0.867412 0.399916 0.399095 -0.766104 -0.011469 0.190495 0.493387 -0.470506 0.737424 -0.143553 0.202883 -0.118975 0.207004 -0.046420 0.241031 0.082690 -0.738272 0.676897 0.530641 -0.325345 -0.235991 -0.559808 -0.490217 0.412189 -0.453961 -0.294118 +PE-benchmarks/birthday-paradox.cpp__main = 0.160624 0.222781 0.152964 -0.240902 -0.359392 0.126326 -0.456745 -0.148240 -0.176832 -0.056207 -0.154119 0.067942 -0.253344 0.126837 -0.491898 -0.373386 -0.315535 -0.090565 -0.209815 -0.275267 -0.211737 0.006382 0.008744 -0.312882 0.137128 -0.289520 0.035354 0.161203 0.125771 -0.174561 0.051320 -0.081891 0.068994 0.437628 -0.016030 0.172366 0.187302 0.345656 0.527313 -0.096715 -0.451277 -0.452885 0.339665 -0.119164 0.228149 -0.484685 -0.075455 0.099825 -0.594501 0.350428 -0.143597 -0.211841 -0.325456 -0.128683 0.087799 0.073203 -0.535540 0.653922 0.072306 -0.064096 -0.118611 -0.134793 -0.041499 -0.134438 0.487447 -0.293631 -0.217316 0.480235 -0.344196 0.181025 -0.150350 -0.007432 0.564254 -0.001709 -0.015787 0.080696 -0.059872 0.110542 -0.035445 -0.629106 -0.178657 -0.207622 0.425949 0.352574 0.250311 0.267034 -0.085406 -0.340006 -0.087741 -0.371560 0.024550 -0.155895 0.256223 0.129799 -0.240367 0.129217 0.163653 -0.349371 0.181478 0.320764 0.247596 -0.142989 0.112443 -0.005528 -0.005070 -0.050187 0.085767 -0.132589 0.152062 -0.260756 -0.209187 0.141158 -0.468220 0.088466 -0.122127 0.461412 -0.205765 0.093111 -0.031444 -0.189024 -0.628308 -0.397819 0.074884 -0.107533 0.247691 -0.136308 -0.033636 0.050999 0.087135 0.041681 -0.042261 -0.167889 -0.061227 0.211222 0.213353 -0.652612 -0.759141 -0.137441 0.079288 -0.171909 -0.325251 -0.006132 -0.249670 -0.019961 -0.110389 0.181463 0.569488 -0.089304 -0.263028 0.168261 -0.067481 0.250123 0.555809 0.240857 0.286021 -0.117277 -0.051372 0.074341 -0.094194 0.175525 -0.620597 -0.299098 -0.187795 0.222812 0.228758 0.040804 -0.348081 -0.142915 0.006982 -0.038430 -0.069196 -0.079892 -0.080084 0.194067 0.209342 0.520441 0.115906 0.519628 -0.413743 -0.446146 0.141130 -0.162449 0.149256 0.256794 0.029034 -0.081386 0.093776 -0.355292 -0.260729 0.191779 -0.012407 -0.011768 0.301269 0.420059 -0.002727 -0.062606 -0.055966 0.347404 0.284978 -0.230363 0.296505 -0.219324 0.240504 0.267485 0.202011 -0.552010 -0.067037 0.034542 -0.083226 0.279544 0.074826 -0.029027 0.292787 0.086417 0.056862 -0.273690 0.134571 0.184335 0.538574 -0.019361 -0.328465 -0.062997 0.019675 0.298062 0.384204 0.085767 -0.030342 0.133196 -0.053746 -0.337476 0.704728 -0.047471 0.145585 0.137836 0.227735 0.180421 0.190637 0.131320 0.157001 0.253037 -0.167256 0.404679 -0.036904 0.442238 -0.713275 0.164037 -0.226231 -0.026703 0.365455 0.353186 -0.479081 -0.065069 0.116247 0.152878 0.327444 -0.442487 -0.175809 -0.004607 -0.258004 0.267621 0.243535 -0.012771 0.006366 0.503416 0.033837 -0.140021 0.368249 -0.028647 0.028749 -0.211487 -0.103683 -0.305581 0.255488 -0.180060 -0.360369 0.148400 0.257756 -0.359930 -0.118806 0.008595 0.353674 -0.297102 0.204435 0.066840 -0.028377 0.271610 0.243575 0.124780 -0.137902 -0.105515 -0.505005 0.132240 0.083309 -0.107747 0.106120 -0.059735 -0.187378 0.060613 0.154940 -0.273748 +PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/edit-distance.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.022933 0.090411 0.506092 -1.101433 -0.959595 -0.190387 0.712006 -0.421791 -0.223023 0.329462 0.483811 -0.493887 -0.803814 1.136523 -0.116401 -0.832808 0.016603 -0.568111 -0.272446 -0.044878 -0.121698 0.777642 -0.204966 -0.236406 0.564276 -0.137355 -0.273641 0.895476 0.460279 -0.605218 0.026956 -0.429937 0.154633 1.235967 0.060445 0.121330 -0.218165 1.845373 -0.884457 1.071113 -1.386432 -0.946175 1.527938 -0.268165 -0.325557 -1.811698 -0.810510 0.754811 -0.543424 -0.443874 0.365106 0.123684 0.252137 -0.747270 0.111973 1.036698 -1.605125 0.726745 0.676240 -0.684532 -0.421046 -0.167234 -0.404083 -0.113764 -0.463046 -0.823152 -0.098325 -0.212998 -0.434557 -0.038527 -0.207942 -0.722626 1.692568 0.282812 -0.304279 0.570592 0.021111 -0.883897 0.838701 -0.699010 -0.948289 -0.522678 0.270472 -0.002522 0.779441 -0.011371 0.546036 -1.739200 -0.256951 -1.587239 0.644895 -1.044533 0.588574 1.166767 -0.752353 0.974939 0.401385 -0.341099 0.541298 0.171475 1.031126 0.373730 0.835670 0.594620 0.615934 0.679147 -0.633292 -0.861579 -0.922385 -0.948166 0.272735 -0.273818 -1.808381 0.485201 -0.201684 -0.081217 0.153018 -0.171100 0.131260 1.131708 -0.775416 0.494160 0.730717 -0.297157 0.150143 1.203911 -0.041968 -0.295964 -0.580191 0.869491 -0.453025 1.077818 -0.142700 0.941763 -0.097481 -1.505902 -0.567654 -0.107176 0.016703 -0.824114 -0.959399 -1.268184 -0.068667 0.219589 -0.698435 0.295086 2.067329 -0.953680 -1.301616 1.277061 0.971346 0.255863 0.374581 0.285012 1.374707 -0.431674 -0.437115 -0.516649 -0.559840 0.496290 1.170699 0.168606 -0.831529 0.694018 -0.185901 -1.902587 1.381744 -0.112726 -0.453134 0.469559 0.128193 -0.784007 -0.958510 1.138677 0.393708 1.415178 -0.399907 1.532356 -0.473778 -0.911749 0.403096 -0.379611 -0.143782 -0.999471 -0.254423 0.516714 0.329625 -0.791172 -0.625387 -0.607185 -0.368100 -0.640733 0.742997 -0.779580 0.111965 0.160932 0.167303 0.417779 0.987368 -0.258709 0.160899 -1.101712 0.617860 0.429175 0.255200 -1.837350 -0.095121 -0.243025 -0.349644 0.498223 -0.070259 0.700884 -0.126415 -0.125279 0.484535 -0.420900 -0.064457 -0.004890 -1.045058 0.152871 -0.117033 0.565218 0.319955 1.116216 1.296117 0.951686 0.238470 0.680325 -0.160534 -0.109512 -0.436242 0.070633 -0.003206 0.212728 0.767699 0.988442 0.957174 0.467479 1.233101 0.686938 0.037644 1.204076 0.257146 1.667158 -0.247152 -0.622648 0.329912 0.209353 1.059192 1.414565 0.117545 -0.308355 0.775254 0.310613 -0.445874 -0.882287 0.136660 -0.231758 -0.405615 1.456232 0.517089 -0.247823 -0.127621 1.550444 -0.339113 -1.793718 0.939528 0.334731 0.856444 0.017861 0.189292 0.204733 0.863256 -0.540697 0.501320 0.750984 0.911036 -1.167184 -0.680666 0.144004 0.650249 0.821450 0.827018 -2.150858 -0.203609 0.428282 1.167805 -0.115878 1.105174 -0.592738 -0.455175 0.390381 0.050193 -0.134979 0.030041 0.077606 -0.675676 -0.019398 -1.016092 -0.205647 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 5.785706 -3.812585 7.424719 -15.351004 -7.717408 -4.028834 3.031404 -2.187254 -5.716431 15.282964 2.701207 -16.038291 -16.605709 12.725099 -1.230010 -11.662663 8.021692 -4.970136 3.514554 -3.090605 -3.575501 3.415354 3.214447 -9.520059 5.647610 0.739302 -7.467191 12.129119 21.199596 -4.664911 3.257343 -2.218453 5.916240 18.691208 0.452509 -11.686794 -5.137171 23.494057 -5.208803 13.236437 -13.068525 -7.018364 25.849275 -2.579256 0.183021 -19.098978 -6.378557 17.925744 -12.897667 -13.489197 -1.542471 5.189675 7.492355 -18.699595 -16.633111 18.812514 -25.266443 11.248973 9.540894 -5.560851 -6.257683 5.530608 -0.688385 7.660551 -5.379321 -14.806461 -3.930463 -10.329368 -13.524780 -3.307392 -10.656659 -1.096496 14.354783 2.306182 -4.017701 7.794206 1.370907 -4.773935 11.009043 -11.602910 -12.691653 -6.646753 -6.633550 -9.735687 16.438021 -2.448086 8.576746 -22.360501 6.344125 -22.580778 9.890311 -17.634005 6.146867 21.363891 -9.073655 14.741701 0.808544 -4.437256 7.325012 0.576168 17.566325 6.685430 9.235876 8.629723 11.953663 10.459829 -8.090124 -10.990449 -10.374691 -8.393474 -0.886436 -4.963801 -17.572874 13.276130 -7.716639 2.755318 9.848543 -2.816709 -8.582975 11.059617 -10.542448 -0.726982 3.941692 -4.526218 1.670173 16.315595 -1.549719 -4.628793 -3.113676 17.294921 1.942066 9.267748 14.016291 15.517427 1.465144 -17.286007 -1.733943 6.268900 3.463181 -9.736847 -15.473466 -22.865342 0.501810 -6.998815 -10.488842 12.908365 26.756024 -0.533292 -9.674453 15.313114 -3.073977 5.083144 10.959455 1.541510 24.909508 -9.070606 -9.743884 -1.327406 -5.775876 10.135646 17.551699 -2.135378 -9.238718 13.186674 -5.829635 -7.421532 -0.257168 3.284441 -0.898980 3.902397 -1.483094 -9.542062 -17.094379 13.594685 -6.073318 14.153830 0.699155 25.511018 8.978996 -14.964166 11.622430 -0.781123 -2.275302 -5.048061 -1.468988 4.078596 -0.723928 -12.294152 -11.848915 -10.253787 4.231393 -8.730287 16.793230 -6.297826 4.652754 7.768207 -0.246138 13.781760 1.946209 -10.106337 4.243575 -18.658305 4.424516 6.515862 0.486056 -19.099236 -4.624342 -4.326503 -1.667899 12.750815 -1.931607 14.540052 -10.155780 -6.224691 10.762756 1.448088 -1.580403 -1.566585 -17.591366 5.174999 5.894310 7.506785 10.538775 25.453648 11.845186 9.742252 -5.439098 14.944049 -5.930430 4.466552 -13.391581 -4.254381 -4.703778 2.399616 9.467585 3.956588 6.981606 10.567369 17.654180 7.016444 -10.496124 16.774964 -1.882699 10.279202 -2.870173 -8.998109 9.904545 -2.780721 15.409953 16.418888 -1.093171 -15.242440 13.111734 -5.493487 -5.873851 -13.060151 1.194900 -1.994095 2.639722 13.293339 7.960646 1.478618 -1.002524 13.074540 -2.477030 -29.589818 20.090209 7.656515 9.717724 10.613650 0.538038 9.221718 5.017516 -5.083729 0.002912 13.356039 6.580298 -17.076841 4.062979 6.434505 13.711231 3.856807 10.185395 -35.083875 -9.805244 2.686039 10.561686 3.982872 15.016633 -10.217904 -10.960438 8.973891 3.050115 -0.924041 -9.990465 0.196604 -11.703590 -0.009107 -4.145187 6.233468 +PE-benchmarks/edit-distance.cpp__main = 1.872998 -2.212474 2.587059 -7.501572 -4.539652 -1.814694 -0.995113 0.257602 -2.438583 4.741829 1.589269 -8.070453 -8.370857 6.867915 0.052104 -6.721709 3.124942 -3.513182 2.470060 -1.060123 -0.797624 1.990452 1.967621 -3.894082 2.392885 0.772187 -5.900458 4.846864 13.058533 -3.377631 1.248479 -0.387607 2.547615 7.685557 -0.668154 -6.208234 -1.222139 11.553880 -0.974712 4.659986 -5.298728 -3.331087 11.754542 -1.340307 -1.053018 -7.754388 -3.268710 8.012531 -8.249016 -4.544201 0.057944 3.360692 2.673689 -7.868151 -7.571550 8.173402 -13.496412 7.736639 4.011062 -0.663090 -0.613688 2.801944 -1.930030 3.121474 0.099872 -5.756115 -2.239919 -4.838268 -6.952212 -2.848070 -3.384718 1.399392 8.584882 1.675146 -1.285805 4.211192 1.816911 -1.468701 5.351264 -7.559729 -6.606817 -2.127740 -3.377512 -3.368693 8.786692 -1.319944 2.896888 -9.482878 2.734167 -10.272188 4.811011 -8.616441 1.795098 10.265365 -5.874753 6.203835 0.804054 -3.726916 5.233787 0.752160 8.894224 2.676849 3.867351 5.093533 4.225432 4.596896 -2.549189 -2.553947 -4.009840 -4.182787 -1.744767 -1.663378 -8.622317 6.360933 -2.460640 1.579793 5.557014 -1.278146 -3.855942 2.846579 -2.986568 -1.680252 1.029705 -1.848385 0.386296 7.562862 -1.244750 -2.753730 -2.102124 8.795567 0.545048 4.887321 7.367300 6.640343 1.905842 -9.534568 -2.137710 3.135905 0.693495 -4.678899 -6.457465 -9.887683 1.716281 -5.000519 -4.584386 6.377789 12.561867 -0.073259 -4.037884 8.500832 -0.942844 3.818445 6.262685 0.011544 10.979883 -2.351020 -5.958942 -0.114225 -3.954965 3.361040 5.064575 0.325405 -2.778325 4.589613 -1.531770 -2.246408 -2.600802 1.656335 -1.262718 0.371165 -1.001802 -5.925583 -8.819742 5.762705 0.223603 5.684122 2.392346 11.500358 5.805382 -8.164916 6.812881 1.126635 -0.887899 -1.242885 -1.570341 2.647160 -2.396910 -5.714219 -4.933011 -5.032138 3.345672 -5.551333 5.847388 -0.226567 3.214674 5.100224 1.046353 4.939382 1.525174 -4.281085 2.673021 -9.514485 1.406576 3.129643 -0.875542 -8.864080 -0.911341 -1.656767 0.343628 8.488736 -1.374432 6.201485 -3.977102 -3.872545 4.230066 1.062233 1.105270 0.002776 -6.972624 1.926709 2.985455 3.676754 5.585620 10.831898 5.104268 4.185820 -2.200593 8.364482 -2.698846 3.788874 -2.898182 -3.586406 -2.632672 1.207657 4.425269 1.673746 3.681161 5.023290 8.858001 4.811938 -6.894765 7.382581 -1.265187 5.242716 -0.583711 -4.864398 3.793787 -1.054852 7.529182 8.754279 -1.749272 -6.316010 6.344657 -1.923589 -0.865811 -7.000315 0.920076 -1.147315 1.353041 6.012915 2.142159 1.496429 0.119431 4.147882 -0.956164 -12.705386 10.275896 3.647451 4.514545 3.240670 1.210413 2.120748 2.376962 -5.448685 -0.137578 6.849126 2.836465 -7.009299 2.026455 2.947399 7.109331 0.024376 6.577462 -12.758332 -4.226417 2.291553 2.969710 2.718695 4.760771 -4.232946 -8.814725 4.186178 1.295247 -1.442568 -4.660479 -1.493008 -6.228687 0.586509 1.515874 0.829298 +PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = 0.413088 -0.300708 0.761988 -0.868349 -0.650938 -0.039198 1.252923 -0.398843 -0.181474 1.371677 -0.125893 -0.111644 -1.087136 0.826753 -0.014751 -0.610300 0.316070 -1.080887 -0.030409 -0.003077 -0.280204 0.541661 -0.211154 -0.272508 0.413746 -0.167865 0.299380 0.942561 -0.330387 -0.038929 0.029251 -0.599789 -0.048362 1.264445 0.341965 0.137114 -0.384229 2.325577 -1.189574 2.150406 -1.399582 -1.504395 1.285923 -0.272897 -0.063333 -1.467949 0.193009 0.758468 -0.409866 -0.688614 0.336357 0.115942 0.337326 -0.711351 -0.094561 0.795934 -1.425353 0.194210 0.387506 -0.510838 -0.678159 -0.412372 -0.183128 0.459675 -1.222730 -0.636000 0.191464 -0.614966 -0.742354 0.371659 -0.446381 -0.459921 0.795936 0.586563 -0.439919 0.238497 0.299079 -0.832946 0.767150 -0.767703 -1.337007 -0.558325 -0.331762 -0.720634 0.914556 0.113027 0.884356 -1.905857 0.547280 -1.765119 0.580279 -1.103554 0.491570 1.433011 -0.089789 1.287722 0.250776 0.838717 0.162825 -0.743084 0.706939 0.919730 0.841700 0.571031 0.848727 0.981718 -1.021300 -1.261570 -1.155380 -0.362039 0.299639 -0.696830 -1.481729 0.365430 -0.046983 0.396190 0.294997 0.212785 -0.670068 1.039908 -1.972101 0.411034 0.317206 -0.276552 0.488869 0.711539 -0.184760 0.080536 -0.006338 1.091951 -0.227738 1.011594 -0.010094 0.939518 -0.621364 0.242873 -0.193590 0.105196 0.455289 -0.494163 -1.085153 -1.839829 -0.586610 0.874277 -0.398421 1.144994 2.202067 -0.666892 -1.051632 0.983094 -0.453723 0.166420 0.142767 0.328889 0.573571 -0.362191 -0.383512 -0.466429 -0.028767 0.343461 2.641066 0.191622 -0.724050 1.081899 -0.478539 -0.551256 0.658366 0.013620 -0.353255 -0.687186 -0.207552 -0.805948 -0.744324 1.256218 -1.615539 1.120587 -0.557624 1.378716 -0.337695 -0.281300 0.149201 -1.723387 0.041537 -1.642588 -0.087841 0.205812 0.563535 -1.253261 -0.722446 -0.748733 -0.387340 -0.319929 0.760245 -1.545019 -0.136464 0.041790 0.382946 2.171463 0.946567 -0.251902 -0.400083 -0.937911 0.559866 0.027024 0.027345 -1.240305 -0.270597 0.059243 -0.511879 0.432122 0.072711 0.402025 -0.761869 -0.173409 0.473824 -0.116712 -0.483140 0.189715 -2.240577 0.110688 0.816903 0.722218 0.669718 0.878969 0.982814 0.915298 0.264429 0.468342 -0.267297 -0.045487 -1.199907 0.173501 0.403754 -0.152386 0.394288 1.132288 0.722557 0.221197 0.870517 0.967199 -0.268431 0.865817 0.149945 1.420000 -0.324533 -0.653146 0.510872 0.187456 0.734663 0.935799 0.023968 -0.017717 0.863378 -0.149317 -0.599194 -0.147239 0.022655 -0.552076 0.552381 1.038855 0.802550 -0.459838 0.023864 1.316648 -0.344346 -2.221393 0.350879 0.553826 0.841125 0.858211 -0.061211 0.554610 0.694971 -0.401727 1.383582 0.708372 0.340585 -0.779369 -0.129534 0.147725 0.195967 1.103965 0.455719 -2.278184 -0.704608 -0.014834 1.209481 0.345594 1.864873 -0.789277 0.121064 0.385335 -0.481423 0.016350 -0.020467 0.628488 -0.071123 0.131008 -1.470028 -0.146163 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = 0.701722 -1.642375 2.569906 -4.484148 -3.902673 0.137323 2.749846 -2.693848 -0.966917 4.570793 0.678929 -1.385512 -1.952810 5.360441 -0.344912 -2.464798 0.437613 -2.091146 0.286698 0.112150 -0.635256 3.348836 -1.339897 -0.756802 1.363665 -1.177833 0.428857 3.578062 -0.798262 0.357958 0.166221 -2.973612 -0.794862 5.503685 1.813928 0.764579 -1.638369 9.377734 -5.260753 8.529117 -5.917804 -5.802140 5.484705 -1.101283 -0.266533 -5.604756 -2.363245 2.774072 -0.916039 -2.727184 1.641209 -0.097981 2.037329 -2.129172 0.378893 2.112744 -5.268616 0.371502 2.305282 -3.398609 -2.556689 -1.652493 -1.212601 1.691153 -6.421187 -2.896374 0.429423 -0.494460 -1.224812 0.170397 -1.276292 -3.076375 4.269695 2.308384 -2.132495 1.011081 1.259847 -4.473263 3.528704 -2.036146 -6.003394 -2.291905 -1.479056 -3.982566 3.772862 0.459125 5.518770 -8.021092 2.918571 -8.050365 2.329868 -4.310084 2.130995 6.320886 -2.268535 4.400050 2.258905 5.014524 2.475459 -1.374825 3.360652 4.333851 1.987950 3.209656 4.289541 4.359472 -3.621010 -4.524909 -4.696336 -3.061067 1.781339 -3.730993 -7.385978 1.934138 0.187911 0.262046 -0.571185 0.737200 -1.759319 6.028220 -7.141094 2.183692 2.094914 -1.295651 0.638410 3.087254 -0.768270 -0.083467 -1.512641 4.229032 -2.561585 4.112128 -0.235030 4.322043 -3.999148 0.061326 -1.974034 0.864718 1.165439 -3.194743 -4.612564 -7.531874 -2.082680 4.000271 -2.248068 4.813569 9.255341 -4.320785 -5.115824 5.003674 0.722208 -0.687777 1.483248 1.575867 3.486157 -0.966319 -2.513259 -3.291574 -2.057079 0.808429 8.687452 1.211146 -2.935403 4.613709 -2.416879 -5.338105 6.901629 -0.536324 -2.765390 -3.284228 0.454013 -3.493521 -2.817774 5.651206 -6.072245 4.673907 -3.030573 6.072741 -1.195410 -1.373712 0.921371 -7.217283 -0.759255 -6.196254 0.090524 0.643574 2.964103 -4.411645 -3.098045 -2.474504 -2.552337 -2.262342 3.059754 -5.434975 -0.006600 1.473022 1.405612 7.420570 4.851958 0.057178 -1.460107 -3.444226 2.954364 1.733087 -0.154594 -5.758402 -1.432994 -0.721370 -1.853522 -0.251669 0.505074 2.775936 -3.928848 -0.416378 0.705215 -0.579509 -0.794441 1.372409 -9.044771 1.443219 1.628169 4.023150 2.641539 3.895937 4.553863 4.962186 2.124432 2.550541 -1.302171 -0.372237 -4.049230 1.669417 2.530944 -0.780421 2.426771 6.208217 3.977706 2.247381 4.425823 4.082847 1.219129 4.407505 -0.077817 7.017895 -0.532273 -2.341423 1.339486 1.896493 3.991974 5.993512 1.307224 0.472587 3.231584 -0.787640 -3.415538 -1.834907 1.100688 -1.426407 0.976165 3.722954 3.205292 -0.899963 -0.760837 6.088031 -1.220288 -8.800976 2.318361 2.105235 3.975414 3.341398 0.290640 2.512969 2.683432 -1.497958 6.034081 4.174776 2.058847 -4.422180 -1.358410 0.788883 1.344220 6.472193 3.539167 -8.852143 0.202327 0.720019 5.021795 -0.446406 6.795164 -3.517636 -0.056961 2.397095 -1.954859 -0.313029 0.249406 1.789456 -0.984797 0.965561 -5.886931 -2.359284 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = 1.107685 -0.774485 2.283564 -4.508125 -4.673467 0.432048 1.430759 -3.090650 -1.010256 4.725788 0.998183 -1.338668 -1.020436 4.877245 -0.914249 -2.501851 -0.288556 -1.998290 0.280118 -0.036512 -0.555343 3.613940 -1.565629 -0.357208 0.934855 -1.115290 0.113032 2.439124 -0.415708 0.265505 -0.103753 -3.076325 -0.738436 5.279795 2.055650 0.337895 -1.537749 8.296404 -3.511795 6.367507 -5.748037 -5.440487 4.501404 -1.044290 0.498895 -5.294173 -2.117606 2.723743 0.277596 -2.234248 1.704479 -0.145922 1.993223 -1.575808 0.375079 1.003396 -4.541733 1.048474 2.406328 -3.385592 -2.086253 -1.536020 -1.097154 2.021594 -5.482578 -2.850379 0.268273 0.795750 -0.753356 -0.110973 -0.985535 -3.414494 4.457637 2.179465 -2.591040 0.684338 1.046053 -4.279618 3.570468 -2.390870 -5.776675 -1.890597 -1.281566 -3.155181 3.243489 0.466987 5.186151 -7.511906 3.290067 -7.757744 2.147561 -3.543899 2.086070 5.858881 -2.305183 3.254394 2.651906 4.815091 3.745098 -0.922023 3.565919 3.840771 1.882728 3.265858 3.493396 4.127011 -2.920102 -3.641225 -3.972198 -3.639932 1.528949 -2.802146 -6.995621 2.098167 0.594709 0.160680 -1.036074 0.267535 -1.127470 5.941680 -7.256945 0.224860 2.125842 -1.193660 0.673875 2.746250 -0.877501 0.342389 -1.789799 4.024160 -2.908534 3.574978 -0.054812 4.169801 -4.230554 -0.603150 -3.035641 1.340836 1.278728 -3.435704 -4.378111 -6.876298 -1.663555 3.288220 -2.475226 4.311716 8.548149 -4.533289 -4.952352 5.175911 0.980699 -1.733008 1.981995 1.311951 3.488128 -0.746848 -2.625220 -3.164302 -2.459071 0.480413 7.079833 1.465656 -2.564614 4.276280 -2.207835 -4.914885 5.609358 -0.601184 -3.341909 -2.935734 0.607616 -3.233658 -2.054330 4.716439 -5.085843 3.947552 -2.673556 5.940345 -1.259153 -1.574585 0.870635 -6.574094 -0.784351 -4.834261 0.405217 1.063148 3.011428 -4.248889 -2.668148 -1.360331 -2.782952 -2.736599 2.659532 -4.772262 0.259434 2.039156 1.480360 6.875356 5.062345 0.622697 -1.287703 -2.742380 3.074147 1.730714 -0.244132 -5.169585 -1.996117 -1.334430 -1.605499 -0.250058 0.302038 2.916800 -3.072044 -0.282234 0.444783 -0.883503 0.021312 1.773581 -6.827021 1.589404 0.648977 4.284718 1.629538 3.777111 3.983965 5.325803 2.862032 2.162691 -0.921137 -0.566401 -2.510809 1.678179 2.751172 -0.986268 2.638278 5.996537 4.140800 2.451840 4.565119 3.851262 1.523369 4.561106 -1.249068 6.901068 -1.676340 -1.547711 0.592926 2.161219 4.125955 6.520683 1.027454 0.294165 2.703851 -0.873635 -3.251696 -1.450189 1.624067 -1.091869 0.783442 2.299813 3.581984 -0.428714 -1.095030 5.895529 -1.175948 -7.628119 2.763753 1.843430 3.895521 3.254343 0.470812 2.186324 2.002901 -1.388979 5.197316 4.490411 2.345210 -4.575352 -1.850431 0.755061 1.782237 5.120445 3.926699 -7.411435 0.644851 1.524154 4.718856 -0.841769 5.555959 -3.670978 -0.844428 3.043334 -1.370585 -0.541885 0.676501 1.605517 -1.261437 1.149248 -4.495268 -2.381627 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.341827 -0.113628 0.980208 -1.715398 -1.918482 -0.010206 0.683843 -1.035479 -0.403120 1.458037 0.417227 -0.582397 -0.705083 2.005160 -0.465343 -1.097904 -0.206557 -0.884229 -0.081103 -0.147894 -0.210819 1.395878 -0.508678 -0.118274 0.500186 -0.406466 -0.097335 1.050167 0.038744 -0.262608 0.031687 -1.072478 -0.097196 2.011286 0.553742 0.149842 -0.514966 3.343133 -1.302812 2.268015 -2.350490 -2.091657 1.879314 -0.457261 0.115215 -2.473495 -1.029726 1.121949 -0.240688 -0.648572 0.637449 0.124333 0.486373 -0.750950 0.262826 0.635243 -2.141037 0.838273 0.951376 -1.265192 -0.738613 -0.512438 -0.593797 0.446395 -1.599434 -1.132310 0.010898 0.273054 -0.482967 0.081679 -0.243492 -1.192448 2.042067 0.681449 -0.846172 0.507394 0.474133 -1.491859 1.432625 -1.291821 -2.160160 -0.754482 -0.161098 -0.787347 1.286587 0.222192 1.640476 -2.955588 0.884218 -2.944435 0.909892 -1.563948 0.759391 2.194540 -0.992482 1.452676 0.983733 1.105304 1.435363 -0.065257 1.471219 1.313208 0.964897 1.289918 1.192339 1.456126 -1.023424 -1.351936 -1.588491 -1.509975 0.476957 -0.854137 -2.843358 0.792757 0.252021 0.146777 -0.261274 0.089641 -0.180108 2.081919 -2.558645 0.270255 1.004503 -0.467998 0.225846 1.246340 -0.361338 0.001395 -0.851415 1.555569 -1.094424 1.542288 -0.001460 1.561651 -1.203295 -1.021538 -1.344006 0.307586 0.319721 -1.269230 -1.633183 -2.495597 -0.499583 1.068192 -1.005862 1.372397 3.475084 -1.743824 -2.038460 2.100556 0.783622 -0.332803 0.778007 0.544890 1.580616 -0.273205 -1.062268 -1.103314 -1.004639 0.363296 2.326783 0.585465 -1.072245 1.527684 -0.548669 -2.341689 2.124442 -0.343895 -1.210009 -0.705910 0.256541 -1.293054 -0.929665 1.842295 -1.141920 1.824592 -0.914388 2.352368 -0.558865 -0.918933 0.349197 -2.202325 -0.171020 -1.724546 0.101593 0.470878 1.018014 -1.648726 -1.042897 -0.630976 -1.107145 -1.084042 0.985205 -1.652917 0.174383 0.690821 0.607854 2.193805 2.002679 0.115082 -0.235085 -1.386580 1.133769 0.617310 0.103681 -2.473441 -0.508116 -0.395234 -0.589353 0.155204 0.066787 1.013492 -0.803564 -0.128347 0.244459 -0.554271 -0.005048 0.522313 -2.099630 0.424049 0.069864 1.627613 0.569107 1.451966 1.866426 1.956692 1.016679 0.999530 -0.315897 -0.259163 -0.575588 0.519950 0.869254 -0.293993 1.053477 2.172713 1.646166 0.842538 1.847350 1.465331 0.334291 1.840124 -0.254783 2.871309 -0.816749 -0.699996 0.178186 0.804041 1.662080 2.569513 0.303124 0.038427 1.120017 -0.074173 -0.992818 -0.803259 0.486068 -0.431367 0.025097 1.371766 1.320062 -0.332632 -0.265636 2.250531 -0.492936 -2.933377 1.209407 0.674856 1.448958 0.809140 0.281505 0.550317 1.053102 -0.724048 1.661399 1.627759 1.042312 -1.835570 -1.000123 0.262673 0.850144 1.775207 1.600523 -3.082039 0.114924 0.757137 1.776722 -0.398780 1.994988 -1.377205 -0.690090 1.108113 -0.388965 -0.329156 0.379268 0.487551 -0.686775 0.347266 -1.517034 -1.014010 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = 0.244547 -0.019224 0.525490 -0.678768 -1.081487 0.118199 0.178546 -0.596327 -0.261733 0.856754 0.056996 -0.384062 -0.921381 0.910869 -0.315765 -0.805136 -0.327555 -0.484780 -0.096976 -0.445566 -0.195408 0.456239 -0.197166 -0.075704 0.123419 -0.297554 0.113912 0.621875 0.284097 -0.123557 0.132604 -0.454823 0.086096 1.060219 0.382501 0.198767 -0.200519 2.001190 -0.500683 1.297453 -1.448156 -1.462853 0.994874 -0.077386 -0.046189 -1.238982 -0.115343 0.661836 -0.940241 -0.048979 0.229677 0.046295 0.083116 -0.364237 -0.038583 0.543023 -1.439038 0.900604 0.208941 -0.659605 -0.515154 -0.195249 -0.158778 0.342055 -0.556868 -0.592930 -0.047870 0.142292 -0.615114 0.234196 -0.144084 -0.426381 1.139696 0.303741 -0.480849 0.141009 0.171853 -0.352598 0.592647 -0.879543 -1.316847 -0.396535 0.034113 -0.306841 0.630981 0.434695 0.685559 -1.650718 0.386762 -1.706778 0.530290 -0.701291 0.451606 1.024423 -0.543587 0.880658 0.395367 0.230450 0.642258 -0.279908 0.664803 0.426457 0.527986 0.715535 0.435333 0.752461 -0.522711 -0.627383 -0.800631 -0.733483 0.113239 -0.368978 -1.623394 0.244093 -0.067055 0.669218 0.043244 0.200631 -0.266494 0.683320 -1.677864 -0.070291 0.195082 -0.176381 0.571454 0.516306 -0.113119 0.288557 -0.069457 0.901214 -0.391983 0.588020 0.051850 0.679828 -0.189092 -0.424211 -1.015157 0.374630 0.406915 -0.428559 -0.846619 -1.304825 -0.456732 0.638457 -0.415679 1.014699 2.035800 -0.828696 -1.196067 0.995150 -0.352950 0.090148 0.652925 0.295500 0.895298 -0.262494 -0.429687 -0.367379 -0.388198 0.323628 1.381143 0.149127 -0.552048 0.825034 -0.040112 -0.503518 0.324270 -0.223695 -0.604764 -0.769587 -0.015939 -0.600805 -0.439527 0.824239 -0.848749 1.028092 -0.296092 1.227314 -0.449064 -0.732491 0.163913 -1.535185 -0.136999 -0.644398 -0.018189 0.025217 0.583898 -1.142446 -0.528428 -0.461543 -0.459046 -0.531976 0.565694 -0.408040 0.059934 0.310049 0.338948 1.668828 1.161948 -0.039024 -0.241494 -0.881800 0.420356 0.309236 0.107946 -1.395276 -0.216182 -0.184473 -0.287573 0.550274 -0.027191 0.433303 -0.406995 0.074689 -0.081900 -0.290217 0.189520 0.313432 -1.078068 0.267718 0.184645 0.778492 0.487735 0.789820 0.971915 1.039359 0.455691 0.651057 -0.086770 -0.246724 0.085470 0.148924 0.718921 -0.113090 0.487121 1.083574 0.628675 0.371042 0.959881 0.885695 -0.215323 0.859482 -0.124384 1.687968 -0.842462 -0.214077 -0.032077 0.378727 0.649156 1.437972 -0.381524 0.031644 0.631805 -0.056175 -0.107653 -0.614139 0.051981 -0.386139 0.238606 0.938303 0.880959 -0.195582 -0.104887 1.071228 -0.123461 -1.691619 0.819217 0.413493 0.488972 0.297886 -0.144944 -0.022242 0.666603 -0.573491 0.812731 1.077720 0.423654 -0.945439 -0.319858 0.039678 0.601071 0.755723 0.651325 -1.617890 -0.238996 0.455495 0.936649 0.110179 1.201585 -0.932430 -0.666963 0.548534 -0.376750 -0.139840 0.236489 0.272528 -0.219486 0.323593 -0.543748 -0.684681 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.102031 0.058570 1.103195 -1.672878 -1.660705 -0.202625 1.306393 -0.771019 -0.366166 0.813565 0.732325 -0.657126 -0.829072 1.639009 -0.106113 -0.963783 -0.042041 -0.892136 -0.396435 -0.273618 -0.080052 1.251189 -0.348504 -0.170963 0.645011 -0.401493 -0.194451 1.636004 0.152422 -0.387491 0.361283 -0.800462 0.113471 1.881817 0.272800 0.100015 -0.401465 2.968584 -1.843492 1.846764 -1.833829 -1.583716 2.244431 -0.417816 -0.498998 -2.593318 -1.416863 1.082543 -0.375733 -0.843562 0.598851 0.265802 0.704869 -0.940910 0.124745 1.210429 -2.131973 0.397863 0.929425 -1.445294 -0.861560 -0.290283 -0.682922 0.164189 -1.479163 -1.123911 -0.009994 -0.377719 -0.150548 -0.005065 -0.093739 -1.162931 2.262996 0.426782 -0.399257 0.730489 0.405376 -1.597676 1.469445 -0.270843 -1.658395 -0.810936 -0.117792 -0.877432 1.300815 -0.356780 1.210103 -2.634622 -0.010264 -2.469535 0.866164 -1.615149 0.615661 1.860245 -1.024047 1.559391 0.750063 0.502317 0.638855 -0.184424 1.436447 0.882566 1.327227 1.307011 1.326453 1.213482 -1.195280 -1.513400 -1.874797 -1.480583 0.813355 -1.034425 -2.741696 0.735948 0.151476 -0.748429 0.050956 -0.353929 0.068298 2.503501 -1.270722 1.386570 1.288438 -0.448257 -0.310365 1.546000 -0.201973 -0.341694 -0.773882 1.406309 -0.937642 1.847663 -0.026204 1.429288 -0.627063 -1.407339 -0.580765 0.103319 0.009697 -1.102798 -1.423812 -2.018672 -0.270785 0.804658 -0.930123 0.560899 3.186540 -1.492107 -2.035165 1.971273 1.677102 -0.147877 0.171984 0.558197 1.737252 -0.331068 -1.136518 -1.351146 -1.130955 0.746598 2.597854 0.445658 -1.026463 1.479948 -0.482317 -2.859361 3.027419 -0.498691 -0.943734 0.635479 0.331299 -1.275348 -1.356588 1.874919 0.193024 2.039268 -0.711145 2.245490 -0.414815 -1.063077 0.359418 -1.005143 -0.165030 -2.047326 -0.117974 0.764659 0.648057 -0.981631 -1.051569 -1.109118 -0.805035 -0.941945 1.007193 -1.789714 0.362558 0.473431 0.491414 0.786352 1.684568 -0.101284 -0.235810 -1.484898 1.024977 0.654266 0.442623 -2.482714 -0.317190 -0.251993 -0.532799 0.075803 0.039530 1.196991 -0.592871 0.010577 0.580771 -0.676149 -0.543844 0.261230 -2.772225 0.417485 0.079312 1.237987 0.458338 1.443113 2.185191 1.519201 0.650078 1.201562 -0.297004 0.008897 -1.323745 0.317122 0.329652 0.106457 1.065969 2.007762 1.535020 0.871807 1.867191 1.344431 0.525161 1.721611 0.190838 2.580164 -0.082039 -0.914156 0.376325 0.877176 1.575755 2.166376 1.145470 -0.324047 1.099346 0.348419 -1.076246 -1.321182 0.244259 -0.364627 0.082017 1.991781 1.017610 -0.556672 -0.061761 2.215802 -0.425177 -2.809822 1.003196 0.638113 1.372321 0.491618 0.232044 0.637809 1.240611 -0.544757 1.376355 1.295983 1.053633 -1.898756 -0.877978 0.318269 0.759378 1.575780 1.549168 -3.730123 -0.144953 0.269669 1.668153 -0.579282 2.308467 -1.132155 -0.365145 0.976726 -0.107322 -0.273639 0.354169 0.219717 -1.152647 0.298864 -2.018175 -0.526268 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.139511 0.448700 2.253521 -3.106159 -3.970101 -0.654329 1.003830 -1.470387 -0.694180 1.586859 0.775203 -1.737584 -2.352654 3.601626 -1.433649 -2.891757 -1.003216 -1.267212 -0.673196 -1.553052 -0.427589 2.434114 -0.610150 -0.236059 1.446116 -1.229702 -0.392698 2.701431 1.868754 -1.107795 0.731969 -1.533588 0.595520 4.011629 0.277596 0.153172 -0.423423 6.637902 -1.535601 2.648086 -4.466390 -4.001820 4.367576 -0.757304 -0.405418 -5.280386 -2.492671 2.224992 -3.000056 0.317999 0.942867 0.800215 0.319547 -2.001405 0.623681 2.165670 -5.541529 3.371673 1.524406 -2.514934 -1.555916 -0.789379 -1.677316 -0.072417 -1.163685 -2.347795 -0.267120 0.792711 -1.707383 0.688873 0.066932 -1.667137 5.217806 0.657149 -1.239367 1.825486 1.082426 -2.075838 2.647195 -2.923585 -3.591102 -1.686181 1.115898 -0.398538 2.730342 0.451065 1.939073 -5.727618 0.083775 -5.288466 2.001097 -3.506093 1.636914 3.974004 -3.068205 3.583826 1.505985 -0.460927 2.325018 0.404608 3.279253 1.587094 2.644680 2.628931 1.566823 2.209342 -1.406654 -2.386658 -2.924357 -3.129842 0.155039 -1.140275 -6.234468 1.220151 -0.081137 0.554712 0.053313 -0.182384 0.053186 3.479228 -3.930790 0.556133 2.243087 -0.958416 0.486907 2.695582 -0.582697 -0.280194 -1.673240 3.256293 -1.782512 2.792445 -0.138939 2.756238 -0.528083 -4.455647 -3.701463 -0.040443 0.175243 -2.079990 -3.287484 -3.643969 -1.005642 1.002622 -1.813519 1.874069 7.027730 -2.755709 -4.415936 4.383383 1.783147 0.840976 2.219185 1.299999 3.781364 -0.700168 -1.960627 -2.126630 -1.883110 1.528400 2.795853 0.882255 -2.323490 2.619929 0.113723 -3.991569 3.020244 -1.233490 -1.888573 -0.804344 0.548905 -2.665898 -2.230114 3.840790 0.311561 4.656121 -1.497753 5.029119 -1.565849 -3.697717 0.792472 -3.063303 -0.019487 -2.372151 0.182987 0.947361 1.488480 -3.237616 -2.403857 -1.485431 -1.657430 -1.995644 1.891516 -1.315055 0.481804 0.805427 1.244674 2.896121 3.842757 -0.376492 0.345476 -3.796566 1.802596 1.540381 0.928442 -6.012466 0.035397 -0.180535 -1.104744 1.097494 0.081091 1.674787 -0.451665 -0.228426 0.352289 -1.537017 0.296105 0.416529 -3.192995 0.874550 -0.692298 2.411919 0.944799 2.874711 5.020862 2.880027 1.422102 2.362982 -0.257456 -1.077686 0.710455 0.800959 1.502649 -0.070013 2.046380 4.179166 3.146706 1.282368 3.689961 3.123939 -0.462521 3.634245 0.173648 6.189826 -2.441577 -1.346037 -0.050763 1.462585 3.356743 5.527063 0.316008 -0.539332 2.570650 1.236660 -0.526782 -3.528220 0.082050 -0.843860 -0.325343 3.833480 1.954795 -1.639768 0.184001 4.406595 -0.679826 -5.338687 3.232201 1.306970 2.220186 -0.460772 0.399637 -0.586436 3.134414 -2.327267 1.787962 2.574628 2.221220 -3.844261 -2.201191 0.339058 2.551982 2.269566 3.185932 -6.072188 -0.348988 2.079284 3.419800 -0.344527 3.392916 -2.179424 -3.011762 1.799153 -0.450293 -1.161700 1.135669 0.189585 -2.471772 1.030346 -1.716286 -2.755755 +PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = 0.845917 -0.211018 1.565016 -3.938279 -3.993789 -0.161295 1.784437 -2.079284 -1.041102 3.780681 0.840520 -1.594760 -1.905443 4.260409 -0.504106 -2.456527 -0.268375 -2.626169 -0.232511 0.210812 -0.800115 3.122232 -1.202247 -0.279432 1.241702 -0.330253 -0.486358 2.204987 0.574237 -0.958296 -0.158954 -2.286099 -0.300317 4.458718 1.278883 -0.200464 -1.047648 7.367481 -3.181812 4.941319 -4.756194 -4.303459 4.202100 -0.955130 -0.068964 -4.853102 -1.488779 2.881029 -0.551009 -1.831445 1.610766 0.411494 1.010890 -1.788891 0.355193 1.781272 -4.736221 2.115840 2.369290 -2.029056 -1.554943 -1.251857 -1.023102 1.120321 -3.709195 -2.701779 -0.060003 -0.368661 -1.305969 -0.290337 -1.074393 -2.499584 3.922223 1.851359 -1.979261 1.040098 0.403062 -3.293664 3.063088 -3.057426 -4.702715 -1.458634 -0.557085 -1.982008 3.026367 0.347444 3.269420 -6.405489 1.997715 -6.446065 1.591992 -3.411933 1.717035 5.231741 -1.892313 2.991771 1.595218 2.234469 3.144406 -0.691879 3.211317 2.582228 2.136230 2.735455 2.335890 3.474603 -2.576307 -2.890402 -3.241769 -3.129800 0.989345 -1.567500 -5.562129 2.061191 0.235728 0.256794 0.009258 0.151277 -1.046852 4.174583 -5.425467 -0.169502 1.642064 -1.045249 1.000017 3.202281 -0.740450 -0.070567 -1.868411 3.409089 -1.736493 3.621210 -0.098144 3.518719 -2.596280 -1.623965 -2.591472 0.724894 1.012610 -2.783572 -3.678089 -5.833968 -0.929234 1.419622 -2.475521 3.506851 7.481869 -3.765759 -4.115751 4.846136 0.752412 -0.281708 1.568212 0.706573 3.486851 -0.737541 -2.126391 -1.876239 -2.093029 0.469976 5.596671 1.206720 -2.514844 2.952412 -1.600389 -3.980063 3.335529 0.234672 -2.595489 -1.849025 0.420484 -2.809163 -2.554649 4.142861 -3.296194 3.604825 -1.590894 5.138784 -0.909945 -1.716256 1.417678 -4.349255 -0.309118 -4.203245 -0.507845 1.278586 1.956652 -3.474117 -2.053936 -1.433906 -1.655015 -2.860201 2.211060 -3.554995 0.197901 1.400879 1.548923 5.135292 4.278996 -0.150596 -0.378838 -3.142753 2.611797 1.246142 -0.148242 -4.874335 -1.238952 -0.907335 -1.502415 1.266618 -0.124930 2.162442 -2.031708 -0.512868 1.087998 -0.618048 0.195789 1.280189 -5.256157 1.147714 0.307546 3.225489 1.738987 3.507429 3.257849 4.251839 2.116581 2.063457 -0.928129 -0.061431 -1.842830 0.817500 1.386458 -0.434822 2.611073 4.321817 3.672705 1.852584 4.004983 2.997605 -0.089521 4.046561 -0.567414 6.014643 -1.330295 -1.812889 0.779336 1.357920 3.456620 5.367214 -0.079843 -0.426810 2.696026 -0.425561 -2.343672 -1.384198 1.091897 -1.218014 0.294086 2.436183 2.343926 -0.649563 -0.460482 5.048006 -1.584314 -6.596024 2.617521 1.528019 3.440429 1.880003 0.729998 1.544842 2.067696 -2.084317 3.804745 3.819863 2.216549 -3.524766 -1.486425 0.633394 1.791227 3.538164 3.264114 -6.691604 -0.169025 1.482143 3.956134 -0.169730 4.395200 -2.758019 -1.350386 2.474584 -0.652285 -0.347180 0.159902 1.311498 -1.356925 0.831895 -3.353591 -1.682116 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = -0.111362 -0.614984 1.242058 -1.966772 -2.481512 -0.291536 2.362455 -0.726547 -0.419529 1.361420 0.529948 -0.794505 -1.872116 2.659739 0.191748 -1.267627 0.083472 -1.116395 -0.376546 0.037158 -0.280846 1.455738 -0.448265 -0.139121 0.817088 -0.312573 -0.100058 2.482541 0.154198 -0.314188 0.379694 -1.066147 -0.006880 2.282623 0.355072 0.321542 -0.564351 5.381344 -3.541757 4.164331 -2.788802 -2.782667 3.096768 -0.472184 -1.061364 -3.942951 -1.632668 1.471334 -1.048934 -1.368264 0.885559 0.496820 0.784400 -1.173738 0.234303 1.938939 -2.998188 0.326219 1.083064 -1.453202 -1.004210 -0.475606 -0.905118 0.428152 -2.978477 -1.340554 -0.095726 -1.409617 -0.465151 -0.009484 -0.301111 -1.233603 2.911763 0.815888 -0.723538 0.845718 0.594703 -2.412740 1.716443 -0.509574 -3.214253 -0.961474 -0.441991 -1.335745 1.741989 -0.256360 2.280992 -3.905528 0.339356 -4.061591 1.047575 -2.583468 0.714307 2.940572 -1.228949 2.555797 0.737885 1.249727 1.143684 -0.630895 1.555293 1.991584 1.672840 1.538456 1.647161 2.292555 -1.768363 -2.116163 -2.843614 -1.559281 0.954836 -1.422727 -4.534094 0.849028 0.263803 0.021243 0.352273 0.257176 -0.428847 3.224665 -2.058482 2.605637 1.276858 -0.558951 -0.016366 2.346068 -0.334516 -0.360364 -0.728896 1.804409 -0.923320 2.780057 -0.028865 1.774286 -1.395020 -0.760194 -0.409454 0.158507 0.234040 -1.106871 -1.777087 -3.529877 -0.523932 1.710983 -1.098051 0.982017 5.141426 -2.392779 -2.815792 2.334656 1.224994 0.163438 -0.040272 0.598506 2.221081 -0.363382 -1.311001 -1.494445 -1.152171 0.755862 5.199975 0.686238 -1.409848 1.884023 -0.868582 -4.306141 4.173354 -0.312425 -1.074598 0.011332 0.199846 -1.593236 -2.141923 2.968771 -1.504890 2.756463 -0.989052 2.630782 -0.324960 -0.904687 0.553848 -2.481726 -0.128621 -3.510351 -0.350430 0.871557 1.228904 -1.567724 -1.228822 -1.944763 -1.305366 -1.152698 1.148425 -2.557685 0.114642 0.441917 0.840469 2.350912 2.650041 -0.133149 -0.526522 -2.372792 1.280063 0.377659 -0.177665 -3.717853 -0.347853 -0.129799 -0.807043 0.348468 0.032849 1.112362 -1.416867 -0.089433 0.406513 -0.590822 -0.739635 0.407979 -4.778679 0.405465 0.763857 2.237352 1.385138 1.681411 2.863895 2.518430 0.835435 1.952900 -0.519711 0.240516 -2.096333 0.447215 0.842363 -0.430611 1.220504 2.933158 1.827841 0.822674 2.129396 1.698075 0.269721 1.932960 0.812993 4.154360 0.263758 -1.842103 0.786108 0.907599 1.666813 3.017328 1.342121 0.184146 1.564444 0.206753 -1.379918 -1.550018 0.274782 -0.673934 0.326631 3.281687 1.474766 -0.725776 0.080079 2.562989 -0.756228 -4.825017 0.834168 0.825717 1.767872 0.966652 0.314338 1.015948 1.859552 -0.869031 3.138364 2.233274 1.001071 -1.999370 -1.280102 0.372871 0.525703 3.002386 1.653380 -5.707676 -0.177065 0.081069 2.114048 -0.291268 4.164581 -1.978212 -0.194031 1.146919 -0.785634 -0.212407 -0.002831 0.421353 -0.786798 0.314052 -3.185813 -1.028229 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 0.258999 -0.787202 2.983365 -5.462571 -4.875098 -0.226478 3.174924 -2.878383 -1.254081 4.803460 1.467038 -2.143556 -2.400446 5.747876 -0.217243 -3.108811 0.049816 -2.703328 -0.388291 -0.029531 -0.749961 4.087685 -1.524054 -0.559357 1.696198 -1.038581 -0.131628 4.141465 -0.061463 -0.354226 0.530253 -3.230105 -0.478636 6.287106 1.746835 0.581914 -1.720788 9.655611 -5.679984 7.993899 -6.190722 -5.704177 6.294116 -1.233786 -0.429300 -6.494814 -2.948535 3.701069 -1.034344 -3.183110 2.188485 0.550477 2.353269 -2.685095 0.491245 2.657004 -6.033869 1.203285 3.041633 -4.046899 -2.625618 -1.532935 -1.802531 1.686608 -6.174421 -3.609213 -0.046179 -0.865341 -1.046765 -0.293068 -1.210595 -3.692377 5.352534 2.316383 -2.316976 1.576058 1.147003 -4.622591 4.431788 -2.202755 -6.061874 -2.486970 -1.317731 -3.944143 4.254758 0.072272 4.961440 -8.645461 2.215490 -8.482439 2.650639 -4.747126 2.210147 6.910913 -2.476006 4.546224 2.453095 3.737587 2.966913 -1.345897 4.091798 3.636776 3.024344 4.036821 4.520099 4.576046 -4.246248 -5.038471 -5.403192 -4.262528 2.205043 -3.741644 -7.370009 2.509325 0.456650 -0.778490 -0.149307 -0.136623 -1.402616 6.791132 -6.758517 2.249131 2.909528 -1.494352 0.356091 4.163433 -0.891530 -0.392484 -2.119816 4.641739 -2.923951 5.191191 -0.147284 4.988524 -3.444167 -1.370575 -2.303249 1.029747 1.063541 -3.630764 -5.031645 -7.866433 -1.634547 3.206076 -3.044461 4.370111 10.020084 -4.873292 -5.741377 6.253658 2.059795 -0.710848 1.131742 1.564504 4.493806 -1.024513 -3.275328 -3.900164 -3.197554 1.420162 9.367718 1.643560 -3.555184 5.051483 -2.486416 -6.404554 7.015847 -0.517286 -3.410240 -2.102656 0.838509 -4.073258 -3.421417 6.046675 -4.677082 5.196540 -2.944740 7.102541 -1.224129 -2.229282 1.450060 -6.183355 -0.694303 -6.720663 -0.515240 1.764597 2.645725 -4.441242 -3.285475 -2.932009 -2.456480 -3.253730 3.296820 -6.323729 0.302886 1.811765 1.911155 6.574776 5.448038 0.042344 -1.216990 -4.075041 3.608958 1.829050 0.367487 -6.533645 -1.562325 -0.980207 -2.092431 0.415150 0.236964 3.442193 -3.396587 -0.234259 1.512345 -1.224198 -0.937860 1.569014 -9.311278 1.657334 1.268158 4.313043 2.611625 4.715955 5.189512 5.454797 2.695280 3.184138 -1.517708 -0.006155 -4.358309 1.576196 1.887857 -0.433756 3.352045 6.380941 4.937518 2.674986 5.662692 4.494311 1.052556 5.393141 -0.424948 7.564216 -0.363794 -2.545969 1.511180 2.426929 4.693529 6.762276 1.549080 -0.484332 3.832223 -0.363367 -3.826286 -2.272311 1.329245 -1.612424 0.782304 4.358509 3.313104 -1.209730 -0.624678 7.093987 -1.794999 -9.146560 2.926976 2.248824 4.761216 3.051706 0.685477 2.657551 2.854281 -2.160153 5.591364 4.662111 2.802857 -5.415654 -1.617962 0.999828 1.831756 6.485927 4.519136 -10.365496 -0.515129 0.995181 5.684856 -0.901714 7.076495 -3.699074 -0.737663 3.224313 -1.232700 -0.436756 0.213691 1.494452 -1.960787 1.179094 -6.110318 -2.123658 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = 0.225633 -0.114166 0.517428 -0.691385 -0.916897 0.039449 0.405392 -0.477610 -0.219809 0.854297 0.020913 -0.313501 -0.845833 0.896811 -0.192186 -0.697745 -0.190560 -0.525478 -0.111587 -0.272658 -0.210684 0.436559 -0.192967 -0.126269 0.192968 -0.233806 0.139630 0.640740 0.094389 -0.137555 0.120277 -0.464736 0.051049 1.015233 0.306096 0.222326 -0.262117 1.938035 -0.659165 1.430391 -1.337057 -1.350584 1.024142 -0.130065 -0.061520 -1.206187 -0.090268 0.657606 -0.688931 -0.243932 0.221118 0.100325 0.110221 -0.461621 -0.042588 0.540779 -1.280101 0.636891 0.268616 -0.612931 -0.538792 -0.220097 -0.154120 0.317113 -0.729183 -0.580705 -0.019069 -0.056907 -0.567383 0.202983 -0.196640 -0.427156 1.015199 0.347021 -0.400520 0.196778 0.160808 -0.432471 0.591105 -0.740242 -1.235107 -0.419368 -0.020864 -0.385542 0.616934 0.349150 0.702288 -1.580369 0.401729 -1.617527 0.497223 -0.744587 0.420368 1.042999 -0.399143 0.926775 0.336003 0.359136 0.519542 -0.309781 0.608047 0.491693 0.546588 0.630537 0.512416 0.762646 -0.596097 -0.732102 -0.838219 -0.644049 0.169310 -0.418082 -1.488100 0.288311 -0.044885 0.525903 0.078638 0.224396 -0.301707 0.732722 -1.582084 0.116851 0.263069 -0.193710 0.468151 0.547812 -0.124422 0.166398 -0.086882 0.803746 -0.334663 0.653041 0.045044 0.699287 -0.277168 -0.216886 -0.713007 0.269473 0.356735 -0.427062 -0.812016 -1.341708 -0.421993 0.685690 -0.430474 0.949384 1.950027 -0.793698 -1.098615 0.887482 -0.242178 0.105099 0.443102 0.287870 0.812210 -0.267830 -0.384588 -0.346708 -0.302623 0.350826 1.525907 0.156173 -0.582548 0.833470 -0.157696 -0.627609 0.528471 -0.148764 -0.473857 -0.625885 -0.006021 -0.601191 -0.502317 0.864306 -0.901242 1.008914 -0.330166 1.157433 -0.396896 -0.524951 0.167433 -1.465048 -0.118943 -0.846036 -0.046680 0.046690 0.553917 -1.035570 -0.518487 -0.503628 -0.476242 -0.446866 0.578295 -0.641521 0.007987 0.210644 0.296572 1.578168 1.040962 -0.076083 -0.239603 -0.862404 0.440164 0.222607 0.068184 -1.265671 -0.235076 -0.118994 -0.323390 0.464916 0.004710 0.408649 -0.460249 0.041139 0.049261 -0.211112 0.004428 0.220874 -1.217256 0.181554 0.288056 0.780405 0.512666 0.786887 0.913363 0.983284 0.376440 0.589397 -0.154253 -0.179551 -0.227408 0.140344 0.533066 -0.084177 0.471391 1.008950 0.619280 0.322003 0.916399 0.789868 -0.199327 0.815839 -0.047285 1.547920 -0.621683 -0.338430 0.118617 0.315503 0.621262 1.246915 -0.255224 0.029716 0.653012 -0.064650 -0.254845 -0.447181 0.056678 -0.355902 0.231368 0.921702 0.799159 -0.220370 -0.070337 1.059938 -0.187141 -1.719810 0.636629 0.385193 0.559496 0.388865 -0.096910 0.148179 0.632444 -0.459486 0.879727 0.941063 0.393213 -0.879747 -0.266968 0.085040 0.473964 0.835239 0.553081 -1.668816 -0.247156 0.305412 0.905501 0.096266 1.250725 -0.860071 -0.408409 0.472662 -0.360517 -0.073889 0.162163 0.299355 -0.147485 0.221710 -0.754240 -0.509458 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.050182 0.105972 0.780265 -1.170066 -1.226961 -0.006837 0.554006 -0.598752 -0.245393 0.109331 0.613865 -0.357479 -0.428596 1.154730 -0.260339 -0.685174 -0.078443 -0.761176 -0.267228 -0.369377 -0.029850 0.822552 -0.250743 -0.079116 0.425024 -0.372586 -0.258505 1.086839 0.259117 -0.501732 0.132841 -0.455619 -0.015399 1.325796 0.209650 -0.139529 -0.023837 2.181314 -0.974317 0.684575 -1.199650 -1.000375 1.506099 -0.330668 -0.498957 -1.757627 -1.239177 0.630666 -0.433684 -0.129982 0.451704 0.034743 0.363062 -0.517045 0.087113 0.872297 -1.733851 0.545448 0.599652 -0.820005 -0.523180 -0.257576 -0.416375 -0.174012 -0.560204 -0.747342 0.205165 0.047717 -0.119472 0.000257 0.003087 -0.843513 1.796944 0.254858 -0.097024 0.508546 0.329910 -1.197043 0.989202 -0.203106 -1.227161 -0.519485 0.050844 -0.568356 1.089109 -0.394116 0.657095 -1.843830 -0.056377 -1.812645 0.454333 -1.169409 0.468315 1.220140 -1.055264 0.988310 0.630649 0.264259 0.427636 0.039755 1.191208 0.434105 0.708141 0.944358 0.873784 0.606441 -0.531696 -0.664614 -1.165449 -1.076479 0.359349 -0.587289 -2.136684 0.524244 -0.017834 -0.649129 -0.166146 -0.184779 0.172931 1.733984 -0.627278 0.855657 0.842683 -0.315490 -0.249737 1.102038 -0.161850 -0.237223 -0.698952 1.028006 -0.763351 1.194623 -0.170690 0.872121 -0.157763 -1.501514 -0.835118 -0.024990 0.014910 -0.856285 -1.096484 -1.083847 -0.142119 0.259622 -0.609031 0.542539 2.266406 -1.075019 -1.522445 1.513095 1.453634 0.057509 0.543681 0.415812 1.333365 -0.191094 -0.805393 -0.934492 -0.849907 0.365784 0.547044 0.228932 -0.423205 0.869672 -0.010976 -1.798826 2.483046 -0.473393 -0.753230 0.833155 0.276222 -0.874232 -1.126190 1.327448 1.063643 1.494584 -0.035927 1.673565 -0.319551 -1.018355 0.249153 -0.250960 -0.000151 -1.099962 -0.030717 0.362855 0.412107 -0.497791 -0.828470 -0.655486 -0.487314 -0.669652 0.635726 -0.291583 0.483686 0.425153 0.316977 -0.049899 1.430031 -0.064763 0.076037 -1.147045 0.656637 0.739503 0.318798 -1.820089 -0.080588 -0.147426 -0.246735 0.122003 0.068500 0.903557 -0.341579 -0.082264 0.243872 -0.345877 -0.099947 0.296815 -1.750297 0.335342 -0.305520 0.634281 0.252042 0.928733 1.714618 1.029403 0.488674 0.737482 -0.084418 0.036757 -0.406484 -0.021219 0.248966 0.392246 0.716620 1.446390 1.092008 0.680166 1.185835 1.006985 0.470436 1.220890 0.282879 2.063436 -0.237328 -0.555912 -0.050308 0.588687 1.236653 1.745009 0.751607 -0.135055 0.671083 0.532069 -0.520996 -1.491744 0.167919 -0.205588 0.018550 1.239740 0.640234 -0.354746 -0.114051 1.571001 -0.181417 -1.846689 0.901233 0.444958 0.831500 0.068084 0.226212 0.157041 0.948155 -0.597893 0.840259 0.942049 0.846487 -1.305552 -0.659118 0.209115 0.797328 0.469093 1.224595 -2.262155 0.319589 0.342238 1.021461 -0.303306 1.235848 -0.753732 -0.607842 0.655726 -0.089019 -0.263739 0.623025 0.176175 -1.183868 0.307207 -1.093979 -0.588015 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.164558 0.400619 1.986635 -3.012388 -3.549159 -0.709399 0.944894 -1.136910 -0.634409 0.698060 0.794687 -1.591511 -2.292526 3.272426 -1.249783 -2.832134 -0.768567 -1.510948 -0.731892 -1.345406 -0.507042 2.207179 -0.553252 -0.259254 1.603309 -1.052421 -0.647014 2.661135 2.236388 -1.576074 0.503034 -1.246205 0.477563 3.832043 0.081357 -0.200592 -0.019093 6.450656 -1.118901 1.774072 -3.780204 -3.324987 4.278998 -0.856532 -0.854581 -4.844473 -2.524519 2.091480 -3.248626 0.663899 1.005561 0.770732 0.082998 -1.999436 0.582626 2.437283 -5.607090 3.506024 1.553867 -1.790439 -1.330358 -0.896674 -1.648019 -0.638336 -0.507550 -2.254133 -0.044637 0.533246 -1.796008 0.550181 -0.032884 -1.477157 5.294433 0.685068 -0.868167 1.949793 0.958022 -2.083229 2.418038 -2.677042 -3.292142 -1.563485 1.267597 -0.226091 3.030496 0.006802 1.304967 -5.360578 -0.268740 -4.964400 1.610385 -3.616228 1.614578 3.878828 -3.300939 3.443585 1.258193 -0.900733 1.817191 0.504550 3.376701 1.135257 2.336459 2.383909 1.369559 1.706117 -1.071966 -1.940656 -2.539654 -2.840070 -0.171977 -0.820429 -6.039413 1.274808 -0.392942 0.347718 0.129624 -0.056393 0.035812 3.026990 -2.970223 0.537956 2.043527 -0.977074 0.488507 2.893562 -0.582053 -0.538707 -1.866336 3.121913 -1.487158 2.731379 -0.446925 2.511528 0.088628 -4.834580 -3.643425 -0.462416 0.136438 -2.007660 -3.308093 -2.999987 -0.805379 0.202223 -1.742668 1.809813 6.625943 -2.480433 -4.072662 4.381388 1.955748 1.542960 2.368268 1.163849 3.702695 -0.668397 -1.756223 -1.820656 -1.707365 1.261030 1.105730 0.693462 -2.032084 2.120954 0.363655 -3.353460 3.145433 -1.004711 -1.659530 -0.016941 0.451238 -2.573800 -2.749648 3.911551 1.574434 4.560514 -0.727753 4.923823 -1.371063 -3.783247 0.983393 -1.721810 0.248877 -2.209119 -0.049619 0.865562 1.074946 -2.737001 -2.425612 -1.348520 -1.103592 -1.935609 1.751880 0.005247 0.573944 0.628281 1.210908 1.733067 3.731028 -0.650404 0.768841 -3.945012 1.669011 1.643680 0.760081 -5.599616 0.364937 0.089444 -1.020993 1.441114 0.099835 1.528604 -0.304229 -0.508806 0.508614 -1.086716 0.485228 0.396143 -3.123438 0.792291 -0.895469 1.674890 1.021348 2.719811 4.947621 2.419541 1.148440 2.082858 -0.185715 -0.708136 0.860999 0.277100 0.918584 0.609116 1.962361 3.703944 3.067037 1.149582 3.268109 2.925398 -0.635779 3.440496 0.725580 6.023108 -2.047500 -1.549420 -0.074908 1.088915 3.349886 5.223582 0.088426 -0.561724 2.512499 1.708515 -0.251876 -4.062287 -0.053774 -0.789949 -0.449211 3.543300 1.250834 -1.669155 0.288248 4.278227 -0.762557 -4.984861 3.150089 1.253707 2.088173 -0.917570 0.604759 -0.794149 3.153434 -2.655548 1.504293 2.213633 2.241723 -3.387622 -1.882427 0.350403 2.594205 1.186594 3.040494 -5.271019 -0.178163 1.961595 3.118883 0.127775 2.661163 -1.671679 -3.115147 1.493969 -0.332020 -1.060370 1.187531 0.183790 -2.799966 0.929021 -1.420164 -2.641412 +PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/sudoku.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 2.455588 0.158232 1.909126 -3.620007 -1.339820 -1.061816 4.786881 -2.733538 -1.871230 7.055889 0.748277 -3.132938 -2.040380 4.768690 -0.483082 -1.154654 1.286977 -3.421519 -1.199270 0.298208 -1.869624 2.124174 -1.201937 -3.183489 2.168914 0.477019 1.201886 3.522953 -2.107920 -0.158055 -0.193069 -2.186795 1.185505 6.245624 1.778636 -0.939169 -2.336416 7.385051 -7.387667 7.479558 -5.875973 -4.885195 7.703323 -1.003671 0.575048 -5.612961 -1.099882 4.601664 0.119535 -4.423306 -0.032044 0.122573 1.147913 -4.953856 -1.918466 5.013100 -6.163052 1.744051 3.487180 -2.791250 -4.756161 -1.563669 1.096546 1.238334 -5.247232 -4.405392 -0.047769 -2.435382 -2.086411 0.713755 -4.755621 -3.676644 1.868142 1.407701 -1.154352 1.060889 -2.353092 -3.181395 3.276021 -2.861079 -3.357760 -2.676711 -0.142261 -2.882751 2.563086 1.915556 3.515637 -8.008788 1.395558 -7.410250 2.115645 -4.584420 2.959050 5.953099 -0.784982 4.654514 -0.027392 2.663684 1.260578 -0.552956 2.959114 2.630220 3.312357 1.164244 4.009029 5.324203 -4.676453 -5.907331 -3.898991 -2.245408 1.741270 -1.570629 -4.461588 3.053660 -2.876118 -0.689739 0.494868 -0.361816 -2.273581 5.171286 -7.515362 0.594768 1.699588 -1.257644 2.604180 4.067620 -0.133300 0.062154 -1.757871 2.929643 0.862937 3.285057 -0.004520 4.777542 -3.723445 -3.086879 -0.719669 0.993716 2.125221 -3.769606 -5.248178 -9.114803 -1.304130 1.748972 -3.542551 4.407548 7.701385 -2.480139 -4.270372 3.895683 0.347172 0.235731 1.788677 0.865656 6.453582 -3.770584 0.172782 0.274509 -0.250578 2.313012 7.905349 -1.418791 -4.881807 4.054094 -2.559073 -4.131179 4.005767 1.885375 -0.548860 -0.676837 0.528663 -2.052125 -3.573506 5.940196 -5.825735 4.610665 -3.516210 6.720128 -2.404366 -0.930943 2.155082 -6.304747 -0.914561 -5.643329 -1.020649 0.055932 3.607894 -4.283593 -3.165345 -2.009708 -1.040825 -1.833011 5.879650 -6.593889 -0.928789 -0.191525 -0.259918 5.720174 1.886815 -2.996924 0.505228 -4.096056 2.381920 2.522798 1.252058 -7.377018 -2.064647 -1.553516 -2.491741 0.953437 0.134354 3.279791 -3.789212 -0.452650 4.399204 -0.119421 -1.430212 -0.498341 -5.889775 1.825349 0.155437 2.375960 2.605660 7.077570 2.969363 3.746332 -0.143986 1.383080 -1.808663 -1.667251 -6.054260 1.668579 0.047808 0.393666 3.200291 3.527734 2.702851 2.002185 3.713740 1.106968 -1.564132 5.170284 1.036116 4.460509 -1.830695 -1.392632 2.887219 -0.312826 4.047415 3.842331 -0.442965 -4.506696 3.264523 -2.634974 -4.176288 0.140802 -0.409032 -1.223664 -0.795729 3.570939 3.176524 -1.129268 -0.721238 8.186732 -1.928567 -9.377279 3.294973 2.193558 3.949772 3.595422 -0.997766 3.956231 2.963479 0.568193 2.789552 3.170033 3.202164 -4.563669 -0.193478 0.875559 2.466226 5.648664 0.688609 -12.256362 -0.552406 1.070283 5.841934 0.214371 6.524463 -3.113428 1.893082 0.758324 0.442981 1.379843 -1.233049 3.477845 -0.844335 0.297858 -6.742869 1.877340 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = 0.866898 -0.237860 1.505269 -2.081186 -0.997355 -0.601974 3.458500 -1.146238 -0.915488 3.832533 0.083540 -1.184627 -1.858141 2.189744 0.199286 -0.969568 0.610388 -1.969532 -0.601612 0.077550 -1.011274 1.375838 -0.613889 -1.312666 1.366540 -0.116400 0.655112 2.671724 -1.382160 0.272960 0.612962 -1.474732 0.414959 3.411810 0.751119 0.107025 -1.335841 4.767568 -4.246089 4.832366 -3.191556 -3.519497 4.546045 -0.686649 -0.169750 -3.538144 -0.285992 2.462666 -0.129580 -2.627108 0.192512 0.460782 0.922206 -2.665857 -0.817471 2.600164 -3.478866 0.246357 1.610991 -2.311433 -2.970124 -0.897178 -0.095608 0.761429 -3.631294 -2.239416 -0.151365 -1.923913 -1.100053 0.473025 -2.035745 -1.552014 1.363591 1.020954 -0.650559 0.884051 -0.490656 -1.620528 1.937687 -0.708644 -2.158932 -1.726503 -0.501145 -2.107552 1.742704 0.647248 2.384974 -4.648665 0.690139 -4.110169 1.358054 -2.746368 1.410134 3.427694 -0.091724 3.280245 0.290158 1.840555 0.047202 -1.227832 1.675773 1.788408 2.295600 1.454846 2.488831 2.967844 -3.017886 -3.817950 -2.933411 -1.245108 1.426375 -1.586487 -3.051977 1.389544 -0.993593 -0.545688 0.729820 -0.161302 -1.431609 3.318076 -4.648400 1.647510 1.307062 -0.786050 0.965945 1.968369 -0.130857 -0.259042 -0.542833 1.943160 -0.114621 2.391551 0.072723 2.719560 -1.930044 -0.468094 0.265880 0.332578 0.825945 -1.695844 -2.729565 -5.010484 -0.994458 2.051919 -1.723810 2.149134 4.844654 -1.566935 -2.601359 2.338572 -0.161008 0.243017 0.010462 0.811178 2.800739 -1.419831 -0.766010 -0.715075 -0.421034 1.651308 6.121036 -0.153602 -2.605442 2.784361 -1.480301 -2.166717 2.639881 0.245727 -0.534243 -0.566341 0.130278 -1.633055 -2.102773 3.447161 -3.696377 2.886379 -2.140897 3.659450 -0.901250 -0.385307 0.829010 -4.500952 -0.504326 -4.200459 -0.478136 0.151109 1.703461 -2.522300 -1.876319 -1.785307 -0.991092 -1.021739 3.005864 -5.049099 -0.396278 -0.038488 0.312161 3.865993 1.293360 -1.258090 -0.652957 -2.406446 1.430871 0.865421 0.680957 -3.795865 -1.055367 -0.204745 -1.477880 0.474129 0.209844 1.673182 -1.896277 0.103431 2.248553 -0.224235 -1.541186 -0.095690 -4.869170 0.727427 1.195541 1.771356 1.517473 3.542372 2.368946 2.017407 0.074884 1.562988 -0.889176 -0.597350 -4.167433 0.899706 0.100900 0.217830 1.679256 2.466179 1.887803 1.102809 2.383195 1.398459 -0.570280 2.671328 0.661622 2.943573 -0.558427 -1.489350 1.804679 0.592499 2.038992 2.024222 0.706274 -1.731765 2.146461 -1.061669 -2.512125 -0.050267 -0.087477 -0.914136 0.317098 2.654727 2.068776 -1.002299 -0.010109 4.561628 -1.162891 -5.664070 1.321898 1.371420 2.415011 2.211505 -0.294849 2.192571 1.900591 0.325238 2.176787 1.717900 1.381871 -2.896715 0.252766 0.588629 0.938348 3.568234 0.737368 -7.333974 -1.031806 -0.144835 3.464390 -0.056297 4.626029 -1.628350 1.251049 0.794170 -0.164787 0.519290 -0.406763 1.680979 -0.191246 0.354346 -4.580065 0.780341 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.476200 -0.254680 2.103361 -3.077252 -0.924712 -0.643324 3.501151 -3.142875 -1.430525 5.304644 1.152048 -2.489569 -1.119846 3.138657 -0.495751 -1.544717 1.688345 -0.486482 -0.895314 -0.752288 -0.980346 1.260455 -0.847913 -3.277895 1.788995 -0.655630 1.915450 3.301882 -1.872110 1.065823 0.151238 -1.575325 1.052764 5.779334 1.570682 0.617693 -2.614223 5.599732 -4.683437 6.178898 -5.651569 -3.967679 6.680019 -0.770187 0.776791 -5.291851 -1.506932 3.201964 0.312746 -3.862016 -0.864742 -0.615498 1.888923 -4.472385 -2.062083 4.071753 -3.886547 -0.016608 2.807397 -4.192041 -4.844124 -0.698018 1.121991 1.437588 -5.096616 -3.809284 0.228263 -0.982759 -1.048100 1.530571 -4.046786 -4.160697 2.691413 0.970734 -0.974832 1.038868 -1.815038 -3.284287 2.658226 -0.192150 -2.598808 -2.942990 0.688608 -2.108143 1.519795 1.618413 4.437757 -7.358158 0.721978 -6.566306 2.761042 -3.558193 3.373923 4.588931 -1.185116 4.120007 0.591066 2.935371 0.476607 0.199897 2.770166 2.422954 2.497546 0.399401 4.131652 3.823352 -3.584627 -6.009431 -3.073893 -1.914188 1.767583 -2.325293 -5.256119 2.526139 -3.452613 -0.554053 -0.591598 -0.336398 -0.765827 5.735021 -6.224844 0.749714 2.203628 -0.898781 1.979427 2.986892 0.231816 0.501861 -0.982672 2.535202 0.307295 1.810513 -0.179607 4.382195 -3.312529 -2.438015 -0.522032 0.794014 1.900707 -3.557293 -4.733388 -6.881560 -2.149350 2.874118 -2.520608 2.770279 6.354100 -2.123753 -4.265460 2.571993 0.984575 -0.719774 1.799490 1.545460 5.879295 -4.305294 0.889967 -0.717224 0.610879 3.206572 6.985372 -1.913843 -4.408470 4.510969 -2.338164 -4.777099 5.747383 0.340734 0.020810 0.386428 0.453669 -1.414618 -2.613169 4.842037 -4.546200 5.144988 -4.290461 5.977879 -3.261841 -1.412471 1.086599 -5.318791 -1.393123 -4.051456 0.508008 -0.529666 4.098477 -3.950232 -3.426938 -1.209729 -2.060555 -0.211261 5.577355 -5.317747 -0.938364 -0.380554 -1.405944 4.670215 1.285340 -2.184280 -0.396315 -3.073186 2.054960 2.686976 1.889491 -5.733529 -2.163674 -1.962162 -2.042986 -1.523937 0.605487 3.703666 -3.177454 -0.077171 2.967399 -0.519033 -1.292280 -1.031543 -5.550577 1.935483 0.246118 1.819074 1.366656 6.359319 3.604907 3.318590 -0.656783 0.460371 -0.591283 -2.772785 -5.697917 2.059740 0.733758 0.678785 2.218023 3.820977 2.013588 1.916089 3.329438 0.586437 0.847612 4.893127 0.766460 3.967790 -1.932806 -0.626681 2.470411 -0.346923 4.096872 3.817681 1.138562 -3.736317 2.313462 -1.718136 -3.964383 -1.422349 -0.813119 -0.290081 -1.027226 3.345942 3.364256 -1.044232 -1.457995 7.563518 -0.264189 -8.262092 3.310462 1.571703 2.819356 3.698433 -1.571440 3.462253 2.845965 1.716894 1.985984 2.106862 3.044561 -5.020968 -0.839498 0.658845 2.263975 5.072510 -0.013713 -9.870763 0.168621 0.789384 5.757407 -0.092121 5.911280 -3.057778 2.761802 0.321850 0.125750 0.766786 -0.979380 2.547520 -0.769772 -0.501110 -6.730671 1.387872 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = 0.489070 -0.261146 0.897659 -1.477147 -0.387491 -0.538428 2.489202 -0.758202 -0.684496 2.141410 0.304462 -1.059920 -1.427608 1.386174 0.409661 -0.884267 0.673155 -1.048098 -0.602893 0.247608 -0.776655 0.855128 -0.405822 -1.235101 1.224811 0.022938 0.353403 2.054825 -0.400596 0.015096 0.334381 -0.884213 0.470669 2.637262 0.402352 0.104131 -0.809211 3.223177 -2.939478 3.243750 -1.959902 -1.954702 3.681493 -0.517612 -0.487483 -2.146100 -0.300797 1.859433 -0.602983 -2.112775 0.082858 0.283180 0.725659 -2.258640 -0.712021 2.364054 -2.575891 0.183071 1.336998 -1.393784 -2.104439 -0.617760 -0.097009 0.242392 -2.351579 -1.800134 -0.157992 -1.634834 -0.803576 0.220593 -1.665235 -1.340894 1.675824 0.646733 -0.375841 0.836898 -0.621710 -1.187341 1.368110 -0.026997 -1.305865 -1.339098 -0.114412 -1.236364 1.413505 0.299432 1.365353 -3.377650 0.112138 -2.921392 1.125217 -2.012318 1.268105 2.588082 -0.525079 2.433337 0.074977 0.779082 -0.435160 -0.641256 1.443998 0.814635 1.545321 0.777678 1.774090 1.858485 -2.235571 -2.900234 -2.046583 -0.925349 1.091915 -1.040195 -2.266503 1.063549 -1.174147 -0.228719 0.689729 -0.165804 -0.875472 2.266808 -2.540133 1.357784 1.030431 -0.624449 0.873867 1.816504 0.009835 -0.386966 -0.490072 1.424717 0.153022 1.614915 -0.149804 2.049375 -0.831228 -0.743631 0.417149 0.042340 0.593418 -1.396410 -2.142024 -3.400024 -0.569945 1.092605 -1.321539 1.253920 3.477438 -0.987789 -1.731089 1.748937 0.162958 0.679106 0.098095 0.589524 2.450480 -1.420645 -0.250681 -0.381019 -0.174587 1.381640 3.838741 -0.386741 -2.130521 1.896059 -1.055161 -1.585352 2.463316 0.347602 -0.138591 0.276157 0.058010 -1.119459 -1.805247 2.654115 -1.709705 2.302537 -1.374874 2.930349 -0.770246 -0.527806 0.829042 -1.942927 -0.524899 -3.108152 -0.598655 0.264371 0.939962 -1.728217 -1.473580 -1.304657 -0.192805 -0.675325 2.407541 -2.688590 -0.354222 -0.244859 -0.037845 1.876520 0.663646 -1.236343 -0.335702 -1.990635 0.942587 0.743732 0.358585 -2.573880 -0.640712 -0.235565 -1.078406 0.662544 0.109685 1.354676 -1.367168 -0.062244 1.855007 -0.082334 -1.080133 -0.330099 -3.489039 0.558761 0.826857 0.611374 1.227103 2.848549 1.821650 1.263394 -0.257903 1.106514 -0.613783 -0.151975 -3.345363 0.512759 -0.455371 0.810064 1.332368 1.431854 1.325702 0.825879 1.660235 0.719829 -0.282742 2.108659 0.921093 2.108376 0.018986 -1.220873 1.584842 0.083168 1.702331 1.322723 0.122637 -1.480657 1.593954 -0.513888 -1.791776 -0.337624 -0.244994 -0.586529 -0.177089 2.085208 0.892305 -0.688264 -0.099039 3.541105 -0.866726 -4.156832 1.147375 0.976957 1.783945 1.289963 -0.273230 1.681298 1.534371 0.123933 1.282664 1.039252 1.305395 -2.143214 0.399030 0.405381 0.800011 2.245037 0.430683 -5.009559 -0.977574 -0.164898 2.585008 0.182011 3.000658 -0.977616 0.928139 0.230286 -0.015742 0.520685 -0.632677 1.068655 -0.287284 0.042039 -3.598090 0.794052 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = 0.489071 -0.261146 0.897659 -1.477147 -0.387491 -0.538428 2.489203 -0.758202 -0.684497 2.141409 0.304462 -1.059920 -1.427610 1.386174 0.409661 -0.884267 0.673155 -1.048098 -0.602893 0.247608 -0.776655 0.855128 -0.405822 -1.235101 1.224811 0.022938 0.353404 2.054826 -0.400595 0.015097 0.334381 -0.884214 0.470669 2.637262 0.402352 0.104130 -0.809211 3.223179 -2.939480 3.243751 -1.959902 -1.954702 3.681495 -0.517612 -0.487484 -2.146102 -0.300798 1.859434 -0.602985 -2.112775 0.082858 0.283180 0.725659 -2.258641 -0.712021 2.364056 -2.575892 0.183071 1.336998 -1.393784 -2.104439 -0.617761 -0.097010 0.242392 -2.351579 -1.800134 -0.157992 -1.634835 -0.803576 0.220593 -1.665236 -1.340894 1.675825 0.646733 -0.375841 0.836898 -0.621710 -1.187341 1.368110 -0.026996 -1.305865 -1.339098 -0.114412 -1.236364 1.413506 0.299432 1.365352 -3.377650 0.112137 -2.921393 1.125216 -2.012320 1.268105 2.588082 -0.525079 2.433339 0.074976 0.779081 -0.435160 -0.641256 1.443998 0.814636 1.545323 0.777678 1.774091 1.858485 -2.235571 -2.900234 -2.046584 -0.925349 1.091914 -1.040195 -2.266505 1.063549 -1.174147 -0.228719 0.689728 -0.165804 -0.875472 2.266808 -2.540132 1.357787 1.030431 -0.624449 0.873868 1.816505 0.009835 -0.386966 -0.490072 1.424717 0.153022 1.614916 -0.149804 2.049375 -0.831228 -0.743633 0.417149 0.042340 0.593418 -1.396409 -2.142025 -3.400024 -0.569945 1.092604 -1.321539 1.253919 3.477439 -0.987789 -1.731089 1.748937 0.162959 0.679107 0.098095 0.589524 2.450481 -1.420645 -0.250681 -0.381019 -0.174587 1.381639 3.838742 -0.386742 -2.130521 1.896060 -1.055161 -1.585353 2.463317 0.347602 -0.138591 0.276158 0.058010 -1.119459 -1.805248 2.654116 -1.709704 2.302538 -1.374874 2.930349 -0.770246 -0.527806 0.829041 -1.942926 -0.524898 -3.108153 -0.598655 0.264370 0.939963 -1.728217 -1.473580 -1.304658 -0.192805 -0.675325 2.407541 -2.688590 -0.354222 -0.244859 -0.037844 1.876519 0.663646 -1.236343 -0.335702 -1.990636 0.942587 0.743732 0.358585 -2.573881 -0.640712 -0.235565 -1.078406 0.662543 0.109686 1.354676 -1.367168 -0.062244 1.855007 -0.082334 -1.080133 -0.330098 -3.489041 0.558761 0.826857 0.611374 1.227103 2.848549 1.821651 1.263394 -0.257903 1.106515 -0.613783 -0.151974 -3.345364 0.512759 -0.455370 0.810064 1.332368 1.431854 1.325702 0.825878 1.660235 0.719829 -0.282743 2.108659 0.921094 2.108377 0.018986 -1.220874 1.584842 0.083168 1.702331 1.322723 0.122639 -1.480657 1.593954 -0.513888 -1.791776 -0.337626 -0.244995 -0.586529 -0.177089 2.085211 0.892304 -0.688265 -0.099039 3.541105 -0.866726 -4.156833 1.147375 0.976958 1.783945 1.289963 -0.273230 1.681298 1.534372 0.123933 1.282665 1.039251 1.305394 -2.143214 0.399030 0.405381 0.800010 2.245037 0.430682 -5.009562 -0.977574 -0.164898 2.585008 0.182011 3.000660 -0.977616 0.928139 0.230286 -0.015742 0.520685 -0.632677 1.068655 -0.287284 0.042039 -3.598091 0.794051 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = 0.858473 -0.212758 1.070711 -2.291656 -0.309801 -0.771355 3.713376 -1.212882 -1.246586 3.370881 0.253779 -1.292492 -2.504074 1.597251 0.572622 -1.378202 0.965686 -1.513931 -0.920177 0.027957 -1.118002 1.080537 -0.590419 -1.963546 1.579609 -0.023602 0.749921 2.851479 -0.264816 0.322930 0.467813 -1.380910 0.712178 3.754268 0.680082 0.184004 -1.634980 4.658550 -4.510696 4.288602 -3.088087 -3.318284 5.395320 -0.696028 -0.786455 -3.955446 -0.389590 2.593216 -0.789523 -3.051744 -0.195574 0.323376 1.013433 -3.350163 -1.242791 3.537240 -3.698248 0.182935 1.895579 -2.213384 -3.329282 -0.944727 0.465458 0.487199 -3.462992 -2.590116 -0.175662 -2.656589 -1.257771 0.453360 -2.793629 -1.914275 1.664236 1.116934 -0.477259 1.021581 -1.209714 -1.713600 1.774956 0.171589 -1.686797 -1.936629 -0.161633 -1.643942 1.682152 0.633967 2.078942 -4.832232 0.155003 -4.135984 1.312808 -2.920744 1.925749 3.510139 -0.356797 3.525282 0.015040 1.221604 -0.662678 -1.521348 1.901860 1.286147 2.592196 0.953950 2.723329 2.764743 -3.206405 -4.251660 -2.843393 -1.248407 1.554824 -1.752554 -3.526368 1.571085 -1.980271 -1.202981 0.883083 -0.445477 -1.530549 3.008036 -4.077597 1.707157 1.342454 -0.915029 1.432195 2.689343 0.083581 -0.404523 -0.425865 1.878539 0.437277 2.623786 -0.130132 2.953609 -1.306599 -1.140251 0.733159 0.214449 1.023197 -2.025068 -3.050099 -4.892580 -1.017889 1.511630 -1.796486 1.545924 5.077631 -1.280593 -2.645835 2.245924 -0.424700 1.051368 0.199220 0.799034 3.878127 -2.157859 -0.063449 -0.188918 0.015390 2.086736 5.613019 -0.767073 -3.113582 2.744288 -1.892545 -1.741269 2.451759 0.243776 -0.030240 -0.026783 0.159425 -1.690154 -2.599000 3.816978 -3.463998 3.467782 -2.117829 3.682022 -1.279277 -0.484063 1.088556 -3.671943 -0.993230 -4.653546 -0.775570 -0.084876 1.639128 -2.507170 -2.040727 -2.211020 -0.317546 -0.868274 3.719169 -4.850531 -0.642208 -0.438705 0.065211 2.855647 0.822695 -1.817479 -0.503509 -2.862655 1.414372 1.383342 0.873642 -3.966170 -1.143324 -0.482310 -1.630694 0.804119 0.144524 2.019968 -1.620521 -0.025791 2.759623 0.001823 -1.627891 -0.588056 -5.104914 0.887373 1.042418 0.946176 1.522360 4.385458 2.298586 1.746333 -0.506847 1.349446 -0.488182 -0.664536 -4.969142 0.682897 -0.687846 0.905864 1.901304 1.767577 1.768232 1.245763 2.588007 1.076562 -0.681572 2.954286 1.453481 2.896297 0.002571 -2.021795 2.309486 -0.099880 2.061325 1.894988 0.848786 -2.163760 2.298493 -1.098437 -2.696183 -0.723401 -0.421517 -0.831351 -0.361368 3.321674 1.747445 -1.133613 -0.213936 5.240091 -1.213733 -6.329353 1.684537 1.398621 2.516618 2.194220 -0.717220 2.434934 2.277230 0.506293 1.731403 1.478791 1.676356 -3.077127 0.858433 0.596632 1.274242 3.309081 0.012687 -7.577663 -1.067266 -0.266156 4.004794 0.422630 4.606678 -1.387009 1.754407 0.299490 0.161729 0.941199 -1.017302 1.910681 -0.191866 -0.279783 -5.333818 1.531408 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = 0.821308 -0.029483 0.835401 -1.071773 -0.580254 -0.157414 1.533755 -1.067079 -0.778871 2.372530 -0.033320 -0.929613 -1.596425 1.068444 -0.091505 -0.945791 0.090450 -0.991822 -0.357490 -0.323775 -0.861641 0.647233 -0.447576 -0.968677 0.748173 -0.161580 0.532723 1.526671 -0.094174 0.374352 0.354998 -0.926217 0.373133 2.397859 0.750449 0.083143 -0.747970 3.260488 -2.419565 2.724587 -2.200907 -2.566725 3.172702 -0.335663 -0.274073 -2.027696 0.035722 1.749101 -1.208218 -1.323578 -0.013353 0.114354 0.413976 -1.699602 -0.734552 1.947919 -2.837738 0.906127 0.920294 -1.514283 -2.144570 -0.573652 0.147410 0.586886 -1.763030 -1.572910 -0.146880 -0.869311 -1.012202 0.395949 -1.634202 -1.032311 1.283577 0.567197 -0.565018 0.391853 -0.536782 -0.265314 1.108365 -0.681278 -1.414165 -1.149469 -0.084483 -1.170191 1.092722 1.007190 1.418334 -3.178031 0.569412 -2.883879 1.014465 -1.747995 1.168718 2.175247 -0.304943 2.204819 0.267807 0.699057 0.069876 -0.793904 1.168153 0.734726 1.343424 0.987995 1.411964 1.789185 -1.844567 -2.389009 -1.807424 -0.887564 0.726762 -0.772298 -2.219742 0.877197 -1.153270 0.391521 0.416846 0.047922 -1.039174 1.524328 -3.328458 0.649600 0.468471 -0.479380 1.395045 1.392410 -0.043348 0.255921 -0.133105 1.393168 -0.020331 1.337887 0.046259 1.794623 -0.726947 -0.739435 -0.631412 0.562879 0.954645 -1.161924 -1.928048 -3.175937 -0.797655 1.217065 -1.143946 1.778294 3.549048 -0.882915 -1.653145 1.582083 -1.025198 0.706649 0.740548 0.569261 2.527744 -1.164812 -0.303841 -0.114103 -0.189976 1.117568 3.141236 -0.321452 -1.749635 1.850665 -0.594863 -0.071681 0.941073 0.089304 -0.492033 -0.817450 0.062478 -0.868430 -1.370077 2.296157 -2.433409 1.904634 -1.224171 2.613979 -0.870348 -0.586281 0.592510 -2.962038 -0.530910 -2.424099 -0.335847 -0.369180 1.157877 -2.088923 -1.248384 -1.078508 -0.406866 -0.751565 2.231727 -2.151798 -0.266932 0.098052 0.095224 2.769629 0.825256 -0.863090 -0.490113 -2.037531 0.760580 0.830559 0.407258 -2.638185 -0.789604 -0.309830 -0.927035 0.842802 0.077378 1.149628 -1.185831 0.170098 1.243121 -0.046713 -0.423638 0.080861 -2.680061 0.652732 0.703489 0.805919 1.112681 2.630342 1.451541 1.336597 0.121438 1.188271 -0.353675 -0.563287 -1.998873 0.517359 0.287721 0.529695 1.152885 1.350927 1.109670 0.814343 1.473333 0.849846 -0.621065 1.892225 0.515295 2.162644 -1.154406 -0.892343 0.927538 0.303756 1.360412 1.461163 -0.475596 -1.249000 1.363026 -0.891308 -1.325916 -0.409090 -0.108208 -0.682907 0.103789 1.810922 1.500149 -0.455116 -0.247408 3.283295 -0.655158 -4.016656 1.421315 0.976142 1.384193 1.362805 -0.452130 1.094253 1.344409 0.021222 0.932699 1.344579 1.012684 -2.139620 0.693883 0.271725 1.061484 1.813345 0.280247 -4.636609 -0.793748 0.266988 2.475373 0.285638 2.646152 -1.181287 0.289477 0.485237 -0.239503 0.423480 -0.195372 1.324140 0.065579 0.455609 -2.673249 0.282093 +PE-benchmarks/sudoku.cpp__main = 0.934181 -0.143265 0.753065 -1.727415 -0.843986 -0.122133 1.165709 -1.185619 -0.756254 2.244395 0.142367 -1.135637 -1.848465 1.563034 -0.187921 -1.340277 0.272761 -1.465683 -0.393653 -0.203818 -1.091067 0.705617 -0.594133 -1.132378 0.887679 -0.182677 0.377567 1.420575 0.460289 -0.408078 -0.211648 -1.004874 0.216002 2.969155 0.921199 -0.178000 -0.553741 3.842868 -1.453619 2.638995 -2.223695 -2.511897 3.138213 -0.485699 -0.033139 -1.675961 0.254013 2.024100 -1.437878 -1.033471 0.339366 -0.010524 0.320653 -1.879507 -0.683782 2.023820 -3.028968 1.675109 1.210961 -0.882921 -1.813750 -0.991442 -0.004830 0.458465 -1.488821 -1.900569 0.166585 -0.488297 -1.739459 0.249612 -1.891200 -1.311371 1.828156 0.942145 -0.715121 0.514263 -0.566684 -0.758297 1.216190 -1.395045 -1.954149 -1.071363 0.117490 -0.969447 1.866021 0.876240 1.210485 -3.724359 0.572443 -3.608151 0.865336 -1.998331 1.588253 2.804434 -0.887725 2.156895 0.267993 0.745437 0.267753 -0.474522 1.754824 0.610109 1.046771 0.895320 1.584428 1.540026 -1.624149 -2.199075 -1.366207 -1.046327 0.159828 -0.504518 -2.273182 1.206400 -1.511536 0.677933 0.196106 0.540784 -1.381872 1.205318 -3.653401 -0.609795 0.303924 -0.651443 1.988563 1.648545 -0.190454 0.281568 -0.425661 1.868395 0.105849 1.153775 -0.412267 2.069623 -0.207839 -1.035151 -1.513438 0.404434 1.407533 -1.507730 -2.733602 -3.118095 -1.057834 0.576381 -1.388356 2.633811 3.890220 -1.091281 -1.656653 2.223403 -1.316460 1.238597 1.588244 0.558448 2.615153 -1.480553 -0.002817 0.094008 -0.127703 0.721426 1.922071 -0.449185 -1.984923 1.636290 -0.496262 0.471655 0.507072 0.498948 -0.637422 -1.211155 -0.100977 -1.215541 -1.934050 2.642191 -2.275456 2.155098 -0.598615 3.417677 -1.131876 -1.140046 1.080089 -1.960678 -0.130233 -2.113709 -0.368634 -0.192965 1.190534 -2.327783 -1.686540 -0.657306 -0.002741 -0.993586 2.355161 -0.759047 -0.381457 0.107854 0.253658 2.859891 1.493159 -1.119214 0.015983 -2.244191 1.100160 1.001296 0.223457 -2.415303 -0.643595 -0.308992 -1.092582 1.411409 0.125313 1.252554 -1.254665 -0.368677 1.305041 0.329383 0.176052 0.331850 -2.655422 0.813620 0.596558 0.377358 1.453754 2.922762 1.606021 1.622054 0.277329 0.622468 -0.590877 -0.353414 -1.529530 0.237916 0.195839 1.020088 1.362066 1.634623 1.455299 0.890301 1.784150 1.044726 -0.906061 2.301840 0.477927 2.672114 -1.345178 -0.800830 0.922629 -0.183409 1.919811 2.200879 -1.478458 -1.350682 1.723015 -0.382261 -1.080532 -0.795037 -0.138377 -0.803013 0.091208 1.266652 1.144030 -0.400406 -0.389544 3.675968 -0.896074 -4.093542 1.819396 1.076456 1.731232 1.242339 -0.352092 0.943386 1.349984 -0.839429 1.255190 1.541687 1.263856 -1.949059 0.423113 0.295321 1.380167 1.055785 0.424216 -3.690837 -0.602368 0.639422 2.716091 1.145236 1.734228 -1.204873 -0.240053 0.506546 -0.423643 0.506383 -0.228410 1.514745 -0.650964 0.361674 -2.167478 -0.073597 +PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.875290 1.035828 2.009121 -2.165498 -0.793428 -0.690368 4.594624 -2.663752 -2.216467 5.409097 0.098026 -2.471805 -3.477065 1.740476 -0.688897 -1.384267 0.386727 -1.588304 -1.314348 -2.448764 -1.655495 0.584511 -0.711434 -3.409698 1.219383 -0.712974 2.335056 3.746612 -0.274271 1.716817 1.231182 -1.895534 2.275353 5.339252 1.710126 -0.009110 -3.334740 6.239536 -5.285583 4.774806 -5.591568 -6.034867 8.796628 -0.626546 -0.671133 -6.519081 -0.300396 3.778806 -1.560971 -3.197777 -1.828133 -0.005436 1.250087 -4.914392 -3.245799 5.018409 -5.442684 1.501454 2.068869 -5.015948 -6.262244 -1.021838 2.340156 2.098965 -3.849805 -3.287421 -0.360641 -2.653151 -1.952871 1.613548 -4.367335 -3.048786 2.599366 0.681207 -0.805559 0.607011 -2.642608 -0.474690 1.989867 0.039198 -1.864450 -2.941425 0.757673 -1.673239 0.625838 2.544573 3.354756 -7.314449 -0.425677 -5.956756 2.471987 -3.622746 3.018613 3.599342 0.094331 5.626826 -0.131184 -0.055857 -0.260661 -1.618256 1.959523 1.304025 5.088788 1.130515 3.308003 4.604441 -3.654340 -6.300134 -3.982675 -1.887231 2.025129 -1.473632 -4.982144 2.104616 -3.870902 -1.351170 0.479871 -0.742870 -2.017657 3.894492 -6.288897 1.476950 1.707564 -1.126209 3.189853 3.142638 0.362867 1.275860 0.373100 2.131724 0.934052 2.822996 0.606688 4.043803 -1.857832 -3.301075 -0.879488 1.651971 2.150593 -2.694677 -4.133699 -6.945403 -2.082546 2.529692 -2.546260 1.464632 7.520288 -1.229808 -4.231662 2.075792 -0.400871 1.164186 1.583060 1.382692 7.770522 -3.837232 0.741864 0.551720 0.713005 3.877056 9.645534 -2.142002 -4.273097 4.423943 -2.383292 -1.805471 1.871811 -0.360053 0.093858 0.378710 0.349806 -1.426364 -3.326106 4.726977 -3.830560 5.301471 -3.783462 5.436284 -3.242699 -1.329080 0.867647 -6.343862 -2.414481 -4.673951 0.350366 -1.315739 3.829751 -4.000985 -2.909429 -2.793392 -1.390641 -0.632009 6.158685 -6.774568 -0.904359 -0.419268 -1.113809 4.290129 0.436833 -2.658355 -1.113363 -4.433006 1.027226 3.126509 2.775560 -6.719429 -2.762514 -1.479521 -2.233621 0.675148 0.327388 3.086252 -1.819996 0.913471 3.563369 -0.885384 -1.616630 -1.169760 -5.482710 1.940953 0.607382 1.683449 0.647505 7.321325 3.581757 2.607920 -0.778323 2.582772 -0.691967 -2.814715 -5.175002 1.356006 0.698684 0.287574 2.531592 2.592512 1.630493 1.974620 3.818880 0.487777 -1.772292 4.007159 0.881765 4.588107 -3.793945 -1.499967 2.196608 0.064010 2.919003 3.466795 2.172014 -4.930517 2.612068 -2.956770 -3.286213 -1.823303 -1.063143 -0.731409 -0.013579 5.698376 5.090918 -1.364896 -0.901785 7.837989 -0.745448 -9.800596 3.802421 1.984768 2.538325 3.605809 -2.572314 2.651266 4.277012 2.458875 0.638941 2.558339 2.471076 -5.362581 0.945619 0.455855 3.014213 3.796505 -0.962280 -12.868573 -1.123488 0.877560 5.669407 0.067681 7.691882 -3.201575 2.223233 0.577707 0.629609 1.088267 -0.378887 3.459496 0.161526 -0.036639 -7.348823 2.497530 +PE-benchmarks/optimized-naive-algorithm.cpp__main = 1.031473 -1.466750 1.405680 -4.703208 -3.164358 -1.394450 -0.135561 0.497293 -1.554641 2.752581 0.927194 -4.997198 -5.928875 4.632594 0.369755 -4.441408 1.495980 -2.960261 1.431663 -0.375550 -0.436592 1.718045 1.097899 -2.159919 1.757261 0.741490 -4.325971 3.325560 8.487982 -2.316917 0.886150 -0.215374 1.247161 4.480194 -0.944425 -3.774427 -0.511310 7.974361 -1.849834 2.903475 -3.651549 -2.851886 7.870425 -1.063598 -1.044156 -5.174032 -2.064681 4.955529 -5.805822 -2.487735 0.253128 2.627095 1.188399 -4.819219 -4.031608 5.172016 -9.648221 5.400774 2.512681 -0.238446 -0.372509 1.616251 -1.755794 1.518866 0.074923 -3.561192 -1.554694 -3.544826 -4.353159 -1.743764 -1.742261 1.226500 5.821959 1.214346 -0.595566 3.046853 1.458141 -0.933947 3.707238 -5.438944 -4.244714 -1.164596 -1.913070 -2.084144 5.725749 -0.633057 1.563896 -5.938595 1.585235 -6.369243 2.971267 -6.140022 0.731422 6.740427 -3.739801 4.355798 0.652484 -2.574317 3.786157 0.468592 5.603306 1.910714 3.166683 3.722313 2.123015 3.083436 -1.849942 -1.432695 -3.033587 -2.712922 -1.281487 -1.120861 -6.115327 3.936217 -0.955411 0.928241 4.054452 -0.889543 -2.142202 1.886469 -2.075775 -0.123650 0.750413 -1.057057 0.000444 4.944249 -0.999731 -2.179095 -1.745252 5.621753 0.187673 4.009095 4.599399 4.061162 0.942318 -6.257385 -1.381341 1.714130 -0.148139 -3.009095 -3.722844 -6.255717 1.448343 -2.915264 -2.758381 3.966500 8.397379 -0.268657 -2.728779 5.836657 -0.513839 2.987402 3.700877 -0.089311 6.792281 -0.751778 -4.105182 -0.140715 -2.625606 1.748138 3.148022 0.817594 -1.887994 2.423072 -0.640248 -1.713126 -1.363219 1.125237 -0.957906 -0.401867 -0.519866 -4.276504 -5.674052 4.100513 0.207398 4.222543 1.504373 6.948836 3.772999 -4.835982 4.619457 0.205857 -0.401726 -1.551033 -1.520427 1.937891 -2.139431 -3.727658 -2.856077 -3.937708 2.060594 -3.895336 3.491083 -0.516109 2.137501 3.397639 1.166243 2.923417 1.144391 -2.615557 1.612773 -6.596973 1.092447 1.743904 -1.024856 -6.353233 -0.143658 -0.648226 0.383286 6.049844 -0.770003 3.795495 -2.112708 -2.549539 2.673954 0.882957 0.709742 0.000367 -4.355208 0.825665 1.794064 2.679434 3.698086 6.436642 3.527330 2.452795 -1.254398 5.934181 -1.722016 2.641496 -1.264915 -2.213659 -1.809462 0.622213 2.805962 1.468290 2.604536 3.025703 5.586474 3.683202 -4.905404 4.718688 -0.310629 3.916257 -0.604086 -3.828927 2.346035 -0.181532 4.664423 5.293876 -1.416137 -3.417738 4.032763 -0.822431 -0.519204 -3.949025 0.373688 -0.991536 0.622499 4.260862 0.879460 0.600519 0.585525 2.586216 -0.538008 -8.250381 6.305935 2.282153 3.157140 1.430482 1.245123 0.717694 2.117470 -4.047171 0.263529 4.274886 1.583841 -4.233611 0.941248 1.979528 4.573156 0.193041 4.603068 -8.101281 -2.628332 1.603774 1.750337 1.601477 3.085480 -2.338300 -6.119682 2.476796 0.585473 -1.139991 -2.704664 -1.301849 -3.975255 0.625769 0.624530 -0.268755 +PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = 2.938836 0.029200 2.482505 -3.851513 -0.900030 -1.186180 6.796043 -4.289045 -2.870423 9.715580 0.875911 -3.245987 -2.582333 2.823634 0.191675 -1.382216 2.098660 -0.630919 -1.802225 -0.607201 -2.760017 1.542832 -1.638094 -4.771800 2.526576 -0.252332 2.979087 4.761377 -2.950827 2.105461 0.874614 -3.188022 2.075869 8.375536 2.453782 -0.106069 -4.396956 8.302596 -8.070119 8.424343 -7.010972 -6.462458 10.516801 -1.363085 0.816184 -7.050108 -0.432342 5.759859 1.583597 -7.573614 -1.935324 -0.373053 2.922333 -7.442306 -3.966922 6.183600 -5.333391 -1.027154 4.593811 -6.673565 -8.802518 -1.497246 2.830621 2.414362 -8.742768 -5.894534 -0.232382 -3.526664 -1.266572 1.480689 -6.890022 -5.872055 2.060805 1.322782 -1.743611 1.200322 -3.710652 -3.605506 3.592851 1.898944 -3.529157 -4.420142 -0.202716 -4.313509 1.908959 2.033078 6.210652 -10.508313 2.218949 -9.371033 3.061396 -4.759253 4.785272 7.055551 -0.231922 6.505417 0.404040 4.738238 -0.941994 -1.994169 3.633054 2.515596 4.512307 1.154116 5.833247 6.325472 -6.552499 -9.441751 -5.391206 -2.997011 4.102598 -2.914645 -5.887407 3.728397 -4.962386 -1.381723 0.343057 -0.783896 -2.545657 8.107662 -9.835280 1.901481 3.431595 -2.020843 3.515563 4.684804 0.371403 0.492393 -0.793008 3.202510 0.824069 3.201662 0.309069 6.676404 -4.555009 -1.536756 1.145957 1.580814 3.003271 -4.849297 -6.668873 -10.765283 -2.661193 4.340198 -4.138573 3.489313 9.981932 -3.129536 -5.380410 3.500448 -1.135602 -0.802206 1.184811 2.074017 9.177126 -6.084853 0.938178 -0.358935 0.755108 5.087500 12.241235 -2.878241 -6.981580 6.824800 -4.484810 -3.866373 7.105664 0.724849 0.131531 1.008609 1.066680 -1.626703 -3.841277 6.972393 -8.459558 6.610382 -5.325232 8.402303 -3.597171 -0.105993 1.573608 -7.851707 -2.887431 -7.578529 0.010341 -0.718091 5.772434 -4.992190 -4.501589 -2.637647 -2.397851 -0.847292 8.985505 -9.686972 -1.496896 -0.596037 -1.805980 6.963774 1.014792 -3.702862 -1.809735 -4.614727 2.755671 3.113223 2.032110 -7.187573 -4.345148 -2.671363 -3.499360 -0.884850 0.668069 5.529986 -4.351321 0.589555 5.615839 -0.322286 -3.460505 -1.719560 -8.874373 2.824571 1.012175 2.859615 1.891131 10.135760 4.193458 4.984824 -0.909843 1.813252 -1.345264 -2.750033 -10.790088 2.693583 -0.439271 1.599654 4.019824 3.442703 3.038765 3.443164 4.754446 -0.338202 0.591119 6.871413 1.300083 5.603228 -2.416617 -1.849236 4.656465 -0.294207 4.913524 4.093926 1.915337 -5.944015 3.604280 -4.133457 -7.017491 -0.423681 -0.847138 -0.660188 -0.749724 4.501334 5.867616 -1.560423 -1.891547 11.329011 -1.855920 -13.104001 4.260033 2.618099 4.913953 6.687054 -2.446309 6.737130 3.921317 4.416810 3.041408 3.853930 4.063042 -7.636945 1.249490 1.311485 3.325318 6.873467 -0.474276 -16.667459 -1.018530 -0.157140 8.041960 -0.615810 9.807768 -4.626219 5.490305 1.079159 0.482095 2.283652 -1.961847 4.734231 0.273174 -0.645338 -11.683334 4.472861 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = 1.416107 0.176760 1.581404 -2.242690 -0.468064 -0.938218 4.210394 -1.729161 -1.263594 4.678238 0.266266 -1.806292 -2.059284 2.053656 -0.016590 -0.828487 0.920898 -1.682925 -1.114541 -0.261771 -1.285536 1.090353 -0.634645 -2.474921 1.583518 -0.065046 1.321832 3.075938 -1.175011 0.585436 0.658843 -1.554794 1.238095 4.263201 0.887261 -0.037138 -2.107843 5.052469 -5.346309 5.003705 -4.054794 -3.801033 6.277126 -0.754594 -0.298716 -4.851716 -0.632369 3.087910 -0.010956 -3.617448 -0.804514 0.276846 1.105367 -4.055999 -1.833019 3.988753 -4.095844 0.173812 2.168487 -3.147290 -4.339352 -0.871450 1.000084 1.053372 -4.169065 -3.042789 -0.215108 -2.454246 -1.322120 0.912888 -3.295260 -2.405438 1.747084 0.745233 -0.616831 0.968078 -1.691428 -1.732048 2.090052 -0.204067 -1.661552 -2.278618 0.082990 -2.014560 1.231976 1.129440 2.773856 -5.533831 0.471419 -4.696953 1.743113 -3.333659 2.161448 3.641707 0.014920 4.129231 -0.109853 1.603078 -0.314881 -1.016894 1.870717 1.663401 3.359055 0.851497 3.038665 3.572132 -3.535617 -5.011685 -3.233435 -1.491058 1.885536 -1.456562 -3.837721 1.858598 -2.301761 -0.983204 0.736273 -0.559817 -1.431969 4.128097 -5.026800 1.916276 1.782137 -0.964607 1.542689 2.976124 0.135559 -0.087540 -0.482607 1.793629 0.637799 2.586791 0.284636 3.358252 -2.299648 -1.754499 0.649329 0.532483 1.164913 -2.340966 -3.358960 -5.941320 -1.218770 2.200428 -2.205904 1.813155 5.806068 -1.331061 -3.163746 2.043003 0.005733 0.325384 0.332052 0.978066 5.125838 -2.840312 0.184415 -0.102178 0.289245 2.757709 7.283592 -1.222270 -3.698280 3.339954 -2.051039 -2.890351 3.356420 0.418593 0.203714 0.496536 0.328344 -1.399697 -2.736468 4.235586 -3.957857 4.113350 -3.042162 4.450407 -1.862054 -0.397110 0.986645 -4.490407 -1.145276 -4.738797 -0.325844 -0.228943 2.625547 -2.804861 -2.298353 -1.978587 -1.181231 -0.647922 4.635011 -5.947216 -0.701979 -0.553595 -0.622092 3.698275 0.516494 -2.222521 -0.548930 -3.306180 1.450317 1.646983 1.383743 -5.111853 -1.792285 -0.900715 -1.839963 0.209390 0.239995 2.492234 -2.080242 0.239930 3.244069 -0.360577 -2.051446 -1.054329 -5.016161 1.110722 0.663435 1.682616 1.181825 5.244995 2.672258 2.147441 -0.661344 1.465498 -0.837633 -1.519145 -5.419075 1.265052 -0.310206 0.423727 2.126726 2.344566 1.649604 1.483064 2.877884 0.561060 -0.721809 3.463175 1.093050 3.155629 -1.380714 -1.706520 2.417308 0.008624 2.517069 2.201351 1.036645 -3.269264 2.269750 -1.782091 -3.356556 -0.394850 -0.643375 -0.683119 -0.346666 3.861197 2.810981 -1.173883 -0.382640 6.063533 -1.050404 -7.400593 2.107197 1.475843 2.626942 2.818901 -1.191543 3.023615 2.736410 1.598167 1.432690 1.723215 2.004099 -3.893685 0.345747 0.695609 1.690483 3.913452 -0.142044 -9.966716 -1.029023 0.047212 4.505542 -0.241021 5.784512 -2.134078 2.304947 0.449004 0.459908 1.012224 -0.827945 2.377503 -0.260826 -0.088231 -6.197141 2.129439 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 0.946554 0.677122 1.711727 -3.120264 -1.830876 -0.804556 3.343957 -2.732418 -1.806564 4.893067 1.170251 -2.785451 -2.208742 3.226666 -0.417213 -1.787854 0.599937 -0.471498 -1.525291 -1.574568 -1.267527 1.283787 -0.776444 -3.101031 1.287086 -0.801459 1.442179 3.237958 -0.478563 0.855833 0.754958 -1.920387 1.996187 5.502981 1.430921 0.035996 -2.775183 6.261689 -4.675618 5.377111 -5.541576 -4.866411 7.774207 -0.831987 -0.064813 -6.037359 -1.637229 3.604687 -0.166567 -3.496697 -1.284461 -0.029143 1.450115 -4.651304 -2.362429 4.033884 -4.107517 1.143876 2.672223 -4.603726 -5.237627 -1.133941 1.157936 1.393248 -4.906962 -3.356426 -0.365885 -1.505855 -1.246384 0.879933 -3.624593 -3.606897 3.124380 0.813904 -0.875650 1.071700 -2.126821 -2.269254 2.423646 0.604231 -2.856031 -2.602457 0.795319 -1.493972 1.331814 1.618632 4.019019 -7.542519 0.061641 -7.155655 2.310096 -3.289310 3.037703 4.502704 -1.532918 4.418774 0.421359 1.571180 0.281814 -0.336550 2.734207 1.649906 3.533519 1.233784 4.141143 4.541596 -3.345607 -5.839204 -3.191679 -2.801298 2.198062 -1.537063 -5.313816 2.330423 -3.263433 -1.729210 -0.246396 -0.286782 -1.181218 5.060349 -5.454127 0.479027 2.578231 -1.348213 2.323577 3.151159 0.116233 0.615775 -0.812465 2.379667 0.221256 2.439255 0.132077 4.182430 -2.046564 -3.306599 -1.010596 1.165212 1.549393 -3.257215 -4.453275 -6.771357 -1.746448 2.522686 -2.691771 1.565713 7.410643 -2.393223 -4.775096 3.084060 0.812476 0.021437 1.625887 1.425739 7.272332 -3.734628 0.378324 -0.239048 -0.248984 3.389928 7.597545 -1.726088 -4.359663 3.901115 -2.291048 -4.457513 4.546962 -0.550916 -0.443366 0.269490 0.754915 -1.878722 -3.161610 4.552022 -3.318053 5.171325 -3.645623 5.853540 -2.957082 -1.796945 1.279860 -4.934636 -1.886646 -3.994532 0.479057 -0.369331 3.979812 -3.239111 -3.153478 -1.731071 -1.750808 -1.097433 5.559040 -5.429544 -0.614569 -0.004195 -0.751631 3.005872 1.697943 -2.238226 -0.626314 -3.633388 1.583225 3.328702 2.196774 -6.396129 -2.171922 -1.819131 -2.066755 -0.467096 0.332733 3.378534 -1.920731 0.350626 3.110155 -1.187275 -1.268965 -1.014954 -4.981710 2.040080 -0.080619 2.106137 0.861104 6.934628 3.854224 3.391583 -0.248097 1.720499 -0.551091 -2.314228 -5.148220 1.427514 0.343466 0.827266 2.835225 3.494718 2.398971 2.422947 4.373052 0.336731 -0.206349 4.530920 0.653851 5.131497 -2.061215 -1.069880 2.087128 0.034669 3.734393 5.146697 2.027142 -4.324120 2.622116 -2.098122 -3.766453 -2.055228 -0.833910 -0.405250 -0.866265 4.403149 3.991837 -1.183064 -1.083144 7.838988 -0.892392 -8.958762 3.784832 1.723672 3.081376 3.424985 -1.938364 2.898650 3.748307 1.899311 1.766389 3.048809 3.010555 -5.655999 -0.436054 0.482211 2.931033 4.516587 0.329433 -10.981908 0.240824 1.095898 5.579861 -0.462654 6.219611 -3.235720 1.869149 0.834319 0.491626 0.697301 -0.573555 2.694133 -1.108525 -0.339251 -6.654337 1.586843 +PE-benchmarks/finite-automata-algorithm.cpp__main = 0.140122 0.216339 0.706301 -1.141025 -0.918968 -0.357608 1.130964 -0.621338 -0.440451 0.889579 0.450369 -0.855118 -0.831977 1.325942 -0.180847 -0.755414 0.082238 -0.391171 -0.532375 -0.330447 -0.270399 0.669676 -0.204454 -0.632140 0.557543 -0.206252 0.115889 1.180745 0.143927 -0.176071 0.179231 -0.544685 0.541169 1.679431 0.184117 0.041436 -0.570492 2.288971 -1.379119 1.653045 -1.685595 -1.360837 2.269663 -0.323598 -0.214404 -2.266489 -0.977245 1.098371 -0.378154 -0.852707 -0.017306 0.217257 0.238654 -1.291222 -0.264711 1.350556 -1.758859 0.649580 0.845367 -1.147340 -1.158805 -0.332932 -0.139910 0.062472 -1.171639 -1.037968 -0.146700 -0.418401 -0.479117 0.274017 -0.704075 -1.030047 1.618130 0.258558 -0.305524 0.612615 -0.186354 -0.927400 0.972792 -0.283113 -1.031945 -0.735686 0.308404 -0.239343 0.814364 0.201881 0.925199 -2.356076 -0.184349 -2.166361 0.761732 -1.432523 0.771490 1.559667 -0.770770 1.454667 0.254487 0.084232 0.287567 0.174045 1.088089 0.602255 1.188401 0.572467 1.160438 1.171909 -0.945129 -1.606175 -1.174055 -1.083416 0.532920 -0.452660 -2.107195 0.651205 -0.575736 -0.393679 0.056638 -0.082818 -0.080074 1.530793 -1.370112 0.554777 1.013286 -0.425986 0.385525 1.288723 -0.111322 -0.077724 -0.611949 0.972434 -0.157493 1.135998 -0.024747 1.200317 -0.466988 -1.593540 -0.523655 0.067576 0.203937 -0.928309 -1.381398 -1.936160 -0.348771 0.609598 -0.853703 0.338609 2.551403 -0.864951 -1.569616 1.347269 0.940642 0.273526 0.452616 0.447095 2.143033 -0.849764 -0.241831 -0.349461 -0.384570 0.873641 1.883320 -0.179271 -1.271143 1.083604 -0.474367 -2.146723 1.889272 -0.301949 -0.312444 0.402782 0.193764 -0.819925 -1.181373 1.675889 -0.223498 1.845062 -0.926823 1.936537 -0.724872 -0.885583 0.439683 -1.058094 -0.264992 -1.420530 0.013251 0.201865 0.937050 -1.042557 -0.995072 -0.625770 -0.578252 -0.536790 1.364532 -1.446152 -0.044740 0.047734 0.100184 0.616745 0.877863 -0.580984 0.051650 -1.438942 0.607671 0.813699 0.556945 -2.304915 -0.256088 -0.364028 -0.561795 0.027159 0.053196 0.839185 -0.403438 -0.073239 0.829789 -0.576544 -0.359708 -0.219333 -1.515980 0.397042 -0.118502 0.764022 0.334431 1.799565 1.692079 1.029082 0.129436 0.730640 -0.155351 -0.459111 -1.231769 0.353020 0.024107 0.249685 0.890012 1.212880 0.979936 0.598236 1.430326 0.480151 -0.054940 1.466396 0.485619 1.943821 -0.392404 -0.611114 0.528509 0.152696 1.301229 1.803372 0.579753 -0.920097 0.932158 -0.094317 -0.913162 -0.951244 -0.234732 -0.207518 -0.471457 1.739797 0.856247 -0.540541 -0.074384 2.247170 -0.369715 -2.624899 1.067135 0.501136 0.995731 0.583038 -0.214337 0.616661 1.314255 0.022201 0.617833 0.862454 1.012846 -1.660079 -0.578020 0.148304 0.835368 1.299774 0.594043 -3.292407 -0.033221 0.455041 1.660411 -0.228177 1.733787 -0.875250 0.033748 0.384558 0.120721 -0.065712 -0.035172 0.551141 -0.664060 -0.103663 -1.818507 -0.041719 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = 5.501691 0.306086 2.260896 -4.427411 -0.302911 -1.382955 10.248411 -7.015658 -5.246131 14.120943 1.807803 -6.135360 -2.942424 4.519690 0.657299 -1.339449 4.724591 2.236828 -2.604704 -1.944724 -5.424864 0.689550 -2.323851 -9.287257 3.107750 -1.436203 4.121968 6.956531 -6.223111 5.088210 0.773809 -4.258473 4.317368 12.934457 4.523430 -1.712893 -7.229544 13.336307 -12.877551 14.300314 -8.981124 -8.660426 17.497387 -1.617574 2.205950 -8.473182 -2.405688 8.027681 4.857310 -11.301514 -3.945706 -1.746566 4.421488 -11.153153 -7.184820 11.441001 -5.835833 -2.044849 6.772457 -11.681619 -14.134699 -2.232441 3.965293 3.921472 -14.395589 -8.784355 -0.041168 -3.430909 -0.300022 2.357217 -13.313881 -10.479772 3.164052 2.775347 -1.852254 0.932275 -6.762402 -4.124593 4.278725 6.082442 -5.912162 -6.516892 0.302541 -4.995803 1.633154 4.924965 12.002677 -16.893290 2.086172 -16.776963 5.420691 -7.626556 8.435985 11.204333 1.277966 9.837181 0.794061 6.486180 -2.615083 -0.420758 5.487386 3.078706 4.782909 0.596461 9.589282 11.072486 -9.332144 -15.645596 -6.878002 -2.770584 5.986287 -2.055679 -6.844430 6.492632 -10.725655 -1.674205 -0.630246 1.013279 -3.865216 12.110341 -12.516329 1.328176 5.293250 -3.592364 8.211886 6.669814 1.038697 2.277480 -1.984692 4.209034 2.621029 3.549518 -0.452496 10.239649 -6.960768 -3.904036 0.610495 3.370690 5.902697 -8.957552 -10.810060 -15.573788 -4.164569 9.013858 -6.852769 6.131938 16.034122 -5.499521 -5.836755 4.422219 -1.564930 -0.055815 2.933471 3.655770 17.981750 -11.718356 4.423188 1.486065 2.542478 7.651694 18.733621 -5.918877 -11.215150 10.251993 -5.126583 -4.339753 14.091711 0.088726 0.327338 3.980737 1.765130 0.982386 -6.374036 11.318980 -12.170296 9.354903 -7.680468 14.143619 -6.168831 0.067746 2.972799 -8.633511 -5.703455 -10.531502 3.051422 -2.532167 10.322236 -6.386509 -7.645647 -2.154431 -4.875061 -0.245229 14.869270 -10.448595 -2.676010 -0.656073 -4.965960 9.049908 1.424304 -5.039683 -3.391880 -7.995293 3.396744 4.829835 1.745679 -11.391781 -6.919426 -3.578198 -4.888951 -3.803251 1.488398 8.564953 -7.617139 0.948477 8.033581 -0.317886 -4.115955 -2.691766 -10.429983 5.519467 2.244154 3.177557 2.628186 17.205771 7.029518 8.431842 -1.389081 2.039800 -2.474155 -4.308353 -17.389807 6.007958 -0.524985 4.257973 5.752703 5.493544 2.341777 5.892748 7.424871 -4.972570 3.270151 9.426847 2.614307 9.206280 -4.375320 -2.039184 7.027721 -2.783557 8.549775 7.779790 3.107789 -12.719443 4.845118 -8.634363 -12.139331 -0.537729 -1.271425 0.043642 -3.216987 7.267616 10.802283 -0.808355 -4.798257 19.100542 -2.058611 -22.273178 7.209514 4.689882 7.026582 13.183033 -5.008075 11.972542 6.372147 9.932530 3.664574 6.826018 7.437352 -12.524948 2.751404 1.492297 4.456335 9.681381 -3.154225 -27.258618 -0.201648 1.796507 12.545025 -0.968342 14.357261 -7.751802 10.279715 0.911484 0.996957 3.819935 -3.033114 8.724693 -1.101077 0.593265 -17.854750 8.598013 +PE-benchmarks/subset-sum-problem.cpp__main = 1.431534 0.138773 0.878361 -1.905982 -0.530748 -0.355598 2.458944 -2.030998 -1.341222 3.462777 0.591451 -1.907473 -1.732239 1.562699 -0.075180 -1.089222 1.058371 -0.297620 -0.898511 -0.778406 -1.542036 0.279236 -0.656266 -2.634521 0.979624 -0.563008 1.084359 2.214462 -0.547830 0.629849 0.007027 -1.223548 1.207459 4.172164 1.336496 -0.437617 -1.641157 4.458572 -2.770170 3.740757 -2.893155 -2.905156 5.182615 -0.568609 0.263959 -2.720927 -0.416862 2.554352 -0.056805 -2.475049 -0.770552 -0.417233 1.061825 -3.329854 -1.946045 3.494316 -2.660240 0.729568 1.861049 -2.779015 -3.680579 -0.998605 0.775760 0.978480 -3.250849 -2.753796 0.148331 -0.774584 -1.219432 0.724694 -3.557418 -2.746270 2.102464 0.919947 -0.663937 0.489128 -1.689560 -1.294948 1.382470 0.653479 -2.013629 -1.817941 0.408630 -1.063143 1.374266 1.226294 2.746706 -5.279852 0.155202 -5.157075 1.522476 -2.531953 2.590910 3.440029 -0.498869 3.033538 0.153699 1.258668 -0.637121 -0.120308 2.087966 0.687294 1.674269 0.411527 2.791461 2.691048 -2.388655 -4.177046 -1.791423 -1.133787 1.088244 -0.542889 -2.829146 1.848045 -3.158092 -0.101974 -0.090626 0.440879 -1.378617 2.993145 -3.997694 -0.272007 1.268313 -1.075753 2.715155 2.177807 0.141936 0.665869 -0.496087 1.843506 0.766640 1.119668 -0.396853 3.005040 -1.022430 -1.823443 -0.888806 0.825213 1.920587 -2.498402 -3.717084 -4.208126 -1.507878 1.895163 -1.965428 2.284793 5.058917 -1.431041 -2.140482 1.988682 -0.809551 0.792008 1.633472 1.081626 5.127791 -3.294831 1.132872 0.366891 0.560301 2.018061 4.332873 -1.697178 -3.340939 2.736607 -1.146929 -0.706791 2.926282 0.128999 -0.100953 0.505497 0.138786 -0.542062 -2.462131 3.575249 -2.890414 3.283658 -1.684264 4.733342 -2.060606 -1.032217 1.158040 -1.921016 -1.120422 -2.803748 0.577951 -0.500118 2.695569 -2.350694 -2.576368 -0.635173 -0.827967 -0.400717 4.322817 -1.956798 -0.738720 -0.197779 -0.986281 2.785373 1.050052 -1.800627 -0.525253 -2.760768 1.213283 1.694216 0.741014 -3.525318 -1.611940 -0.858419 -1.496743 -0.013451 0.419142 2.429584 -1.833556 -0.070052 2.241012 -0.002350 -0.651739 -0.511134 -3.310405 1.590479 0.608036 0.512571 1.020882 5.002176 2.434729 2.301186 -0.315459 0.530144 -0.712497 -1.175220 -3.993237 1.183531 -0.010834 1.447453 1.802909 2.112830 1.077143 1.632972 2.602751 -0.385940 0.125423 3.047238 0.849800 3.206180 -1.734539 -0.735887 1.771815 -0.824368 2.810134 2.977020 -0.099619 -3.434429 1.832581 -1.515736 -2.687626 -1.026840 -0.628076 -0.338590 -0.625462 2.312515 2.679616 -0.455174 -1.143919 5.741270 -0.665054 -6.345798 2.539746 1.483880 2.142736 2.979026 -1.473830 2.582073 2.140747 1.513202 1.099265 1.992655 2.131809 -3.489381 0.450249 0.418045 1.757952 1.964856 -0.524568 -6.973644 -0.373695 0.800486 4.017541 0.604325 3.481065 -2.144152 1.786515 0.337281 0.134247 1.014495 -0.673177 2.405580 -1.116198 0.193957 -4.424182 1.636508 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = 6.174929 0.357635 2.913865 -5.074289 -0.039036 -1.924877 12.631705 -7.595939 -5.727507 14.844859 2.238083 -6.909094 -4.103876 4.949643 1.328042 -2.245781 5.804009 1.017721 -2.701798 -2.330368 -5.893206 0.931837 -2.448602 -10.281862 3.812095 -1.567894 4.687859 9.185863 -6.193437 5.120719 1.156603 -4.710392 4.598742 14.227202 4.769150 -0.993455 -8.005398 15.508141 -15.690001 16.338672 -10.118537 -10.113170 20.798371 -1.930183 1.264361 -10.231738 -1.952401 9.021229 3.555557 -11.950369 -3.538171 -1.450282 4.854014 -12.496903 -7.745171 13.363769 -7.265130 -1.983513 7.362379 -12.975656 -15.902673 -3.220932 3.217180 4.039623 -15.970722 -9.903781 0.298939 -5.372700 -0.989778 3.422188 -15.169621 -10.413938 4.335607 3.041850 -1.263267 1.151731 -7.322452 -4.357764 4.700334 6.227660 -6.470117 -7.453461 0.511688 -4.082382 1.925303 5.201852 12.785536 -19.138403 0.814993 -18.573131 6.292941 -9.409132 9.301165 12.732645 0.827641 11.840400 0.307537 6.389106 -3.301354 -1.130378 6.337849 3.351267 6.132695 0.692394 11.110764 12.527380 -10.206038 -17.980882 -8.074207 -2.996722 6.553293 -2.142635 -8.888099 7.245334 -12.312318 -3.258822 -0.385812 0.726456 -3.988954 13.010867 -13.372360 2.564234 5.743073 -3.712692 9.030674 7.606530 1.084086 2.539295 -2.159092 5.033563 3.585276 5.645401 -0.787182 11.476034 -7.448223 -6.190764 0.797454 2.906908 6.528737 -9.921290 -12.258318 -17.987963 -4.211468 9.728697 -7.579444 5.782130 17.760914 -5.762821 -6.638700 5.345558 -0.793942 0.293431 2.751208 3.501298 19.875570 -12.565469 4.701120 2.215534 3.084070 8.571569 21.701480 -6.497944 -13.009696 11.316892 -6.185314 -5.779133 14.982744 0.615814 0.507981 4.392657 0.886430 0.504600 -8.130453 13.402248 -12.644895 11.327839 -9.115547 15.799748 -6.464164 -0.398161 3.739716 -9.815058 -5.833113 -13.204413 2.654228 -2.146078 10.972868 -7.421622 -8.875520 -4.136680 -4.828347 -0.253335 16.354470 -13.300266 -3.106424 -0.995458 -4.840752 9.191818 1.889763 -5.785980 -3.333958 -9.680076 3.946763 5.881346 3.091003 -13.033028 -7.088339 -3.561417 -5.838164 -4.190025 1.718307 9.468776 -8.087052 0.815061 9.294613 0.099665 -4.903287 -2.438013 -12.788004 5.979408 3.422752 3.026619 3.010181 19.239190 7.530246 8.644242 -1.738992 2.211664 -2.604361 -4.158833 -20.086970 6.496743 -0.615375 4.426514 6.058846 6.060575 3.205923 6.238498 8.785465 -4.345309 2.038288 10.410957 3.810990 10.375604 -4.808883 -2.539357 8.068553 -2.760940 9.695538 8.237847 4.091494 -14.617368 5.623808 -8.894231 -12.869690 -0.813709 -2.509600 -0.248572 -3.997510 8.717712 10.513052 -1.655099 -4.605765 21.684228 -2.463435 -25.391075 7.752350 5.116618 7.405154 13.984328 -5.582991 11.761582 8.000762 9.377872 4.242561 6.883734 8.451620 -12.565345 3.324570 1.704426 5.018664 11.121749 -3.469339 -30.484634 -0.456104 2.547898 14.680906 0.018464 16.804823 -7.992872 11.291950 0.276982 1.050725 4.409949 -3.230322 9.651688 -1.239236 0.162022 -20.407297 9.248612 +PE-benchmarks/partition-problem.cpp__main = 1.586157 0.196126 0.895522 -1.862966 -0.443425 -0.377324 2.580228 -2.167723 -1.453059 3.561155 0.594142 -2.000137 -1.994474 1.415773 -0.006557 -1.327361 1.130653 -0.417268 -0.861808 -0.992572 -1.663708 0.202587 -0.669026 -2.781404 1.022560 -0.626488 1.202950 2.446336 -0.395353 0.644196 0.103581 -1.264462 1.253201 4.291755 1.424526 -0.268488 -1.739371 4.659798 -2.885031 3.779018 -3.035978 -3.206794 5.609492 -0.578458 0.166862 -2.741164 -0.063223 2.677738 -0.509041 -2.344649 -0.754286 -0.410550 1.059522 -3.458477 -2.091832 3.693129 -2.829536 0.942964 1.852898 -2.992727 -3.987280 -1.142733 0.681511 1.025673 -3.223094 -2.889089 0.197269 -0.941296 -1.412085 0.937365 -3.864688 -2.588189 2.220482 0.917736 -0.543598 0.440048 -1.847017 -0.998373 1.311450 0.593530 -2.052324 -1.947666 0.540790 -0.735189 1.289982 1.444264 2.788150 -5.532655 -0.052595 -5.355772 1.653847 -2.616419 2.753554 3.534736 -0.564263 3.286941 0.067022 1.045911 -0.746568 -0.286623 2.166254 0.533040 1.787335 0.427776 2.859077 2.815161 -2.385882 -4.410906 -1.818497 -1.111468 1.077205 -0.411756 -2.997162 1.931826 -3.515416 -0.162511 -0.072168 0.435622 -1.399465 2.815503 -4.203402 -0.376615 1.172358 -1.050639 3.046992 2.134929 0.184828 0.843175 -0.390016 1.928818 0.958715 1.279666 -0.442155 3.149038 -0.867106 -2.207960 -1.072772 0.814222 2.116995 -2.604622 -3.872623 -4.408981 -1.536577 1.942697 -2.036065 2.277883 5.197703 -1.414587 -2.177292 2.055602 -1.035049 0.896759 1.745167 1.029259 5.354589 -3.409647 1.233555 0.645874 0.711232 2.170550 4.502549 -1.833797 -3.584404 2.850540 -1.188622 -0.376207 2.486158 0.227059 -0.086437 0.373863 -0.051604 -0.520380 -2.609608 3.686532 -2.939470 3.493716 -1.805626 4.908236 -2.145177 -1.165083 1.259326 -2.144438 -1.188451 -2.931726 0.530417 -0.544432 2.743093 -2.570318 -2.715353 -0.905188 -0.749371 -0.389362 4.515794 -2.082055 -0.809670 -0.222354 -0.993064 2.872755 1.096684 -1.884083 -0.548990 -2.975866 1.221534 1.870885 1.006697 -3.609747 -1.667094 -0.848327 -1.626534 0.084273 0.438205 2.543930 -1.769998 -0.020772 2.328255 0.142646 -0.597358 -0.402400 -3.328516 1.679925 0.821134 0.358895 1.041863 5.293520 2.334128 2.281050 -0.377256 0.525249 -0.671987 -1.188030 -4.071867 1.200044 0.057361 1.528147 1.802378 2.038688 1.149155 1.682305 2.774933 -0.313293 -0.218959 3.139856 0.910605 3.338329 -2.098980 -0.653823 1.829455 -0.821102 2.909327 2.968092 -0.221816 -3.760829 1.898108 -1.599191 -2.596747 -1.061451 -0.848419 -0.385806 -0.713921 2.370442 2.659487 -0.524091 -1.160736 6.055438 -0.679037 -6.684066 2.747590 1.537131 2.067559 3.008425 -1.630005 2.316749 2.350197 1.339537 0.984450 2.014188 2.259608 -3.415950 0.714903 0.415287 1.951101 1.932130 -0.661235 -7.117253 -0.461136 1.037501 4.279496 0.891601 3.644436 -2.159649 1.774270 0.200963 0.120175 1.138446 -0.642072 2.533751 -1.035207 0.174786 -4.521033 1.700978 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 10.956568 -5.066277 7.256161 -12.255946 -8.879726 1.966309 7.822432 -18.901807 -8.017969 28.079585 6.049125 -11.689534 2.827318 16.913680 -2.447125 -4.851030 3.725393 4.146053 -1.126398 -0.950994 -6.245387 6.998058 -7.195583 -15.865110 4.623784 -3.795128 7.871139 13.935841 -11.210610 12.988053 -0.514353 -11.829597 2.573818 28.559293 12.427498 0.274882 -10.174617 32.802087 -27.513673 30.001624 -23.475894 -25.284348 33.657501 -3.956661 4.874685 -13.220867 -10.505851 15.462745 1.888578 -20.527141 -3.813030 -5.286495 12.224152 -18.315783 -10.778694 14.001160 -19.954603 -2.962806 13.406699 -22.758200 -26.622278 -6.242211 6.014111 11.057885 -31.160977 -17.843707 0.711783 2.302021 1.114807 0.707422 -18.984883 -22.966688 15.574504 4.459133 -6.877578 0.654390 -7.634093 -14.333975 13.409113 5.883312 -19.870389 -12.723798 -3.923198 -19.211114 8.620207 9.828069 30.510018 -36.786072 16.035306 -38.003579 13.263846 -15.294693 15.191393 25.278647 -11.166549 17.039063 8.654019 31.535425 6.861300 -0.267704 14.317927 12.430220 4.959052 6.150248 20.922446 22.902157 -17.837249 -25.314039 -18.212493 -13.367520 11.907456 -13.550076 -29.378753 12.488749 -13.057211 1.898573 -6.752787 -0.093865 -6.358894 31.279661 -36.786051 7.328630 8.998044 -5.703515 10.416268 11.041601 -1.194413 3.730623 -4.472623 12.307533 -4.752553 4.818275 1.391435 22.324795 -23.749899 -4.669053 -6.227134 11.161340 11.353844 -21.091145 -23.439927 -37.867912 -7.378780 22.401642 -12.980104 20.485980 37.259122 -15.474770 -19.484158 14.299007 -0.403618 -9.118234 13.604331 7.942762 30.536903 -17.140093 0.101591 -5.525590 -2.898678 10.583310 28.215835 -6.657490 -18.548935 23.609261 -12.052207 -15.590980 38.834781 1.106149 -5.724162 -7.237603 5.752607 -6.337580 -10.097964 26.458507 -29.253865 17.671563 -16.391714 30.612417 -11.603742 -2.021485 5.438619 -32.119639 -13.090024 -21.391787 2.365283 -4.451565 22.261922 -18.710760 -15.131691 -5.197295 -11.708537 -5.048555 27.630901 -17.715240 -1.815545 5.177038 -7.000401 25.787493 9.981422 -5.203995 -7.364774 -14.208818 8.805198 15.456483 -1.293827 -26.000544 -16.097822 -12.127888 -7.695510 -8.269810 3.843036 20.887783 -21.884411 1.172708 9.239176 0.832673 -2.938993 -0.340641 -28.691727 11.881607 2.278078 14.593774 9.023904 31.095366 16.583935 23.727631 3.419653 7.197899 -5.133986 -9.206406 -25.471418 11.122479 6.732888 4.879278 12.686903 21.630212 10.800885 14.912917 14.766452 3.685319 10.507257 24.244647 1.790504 25.274632 -9.394571 -2.427076 9.186874 2.807653 21.045719 22.354489 2.214634 -12.709459 8.164206 -15.165853 -22.882788 -3.332554 2.611096 -0.950812 -2.560028 9.233469 20.550011 2.139271 -11.639309 35.891630 -1.934839 -43.982226 16.865897 8.840655 16.379476 25.798495 -8.315068 20.432921 9.387638 12.911382 18.001902 19.202133 13.860594 -27.150509 2.115000 4.303789 13.149585 26.529303 5.512831 -44.852678 10.398987 4.104024 23.605940 -4.446658 26.944130 -20.640411 12.638580 3.875297 -4.809237 5.577979 -2.878608 13.559278 -0.708399 4.223695 -34.412651 2.254175 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.058238 -0.995212 1.001013 -1.481574 -1.105866 0.334024 0.434156 -2.467628 -0.893726 3.065174 0.946403 -1.400554 0.748250 2.480824 -0.209324 -0.877211 0.439353 1.365561 -0.187835 0.052772 -0.675801 0.916203 -0.939782 -1.921763 0.688705 -0.684295 1.024247 1.574994 -1.565587 1.609783 -0.105619 -1.524589 0.220582 3.714953 1.461366 0.624295 -1.115790 3.854010 -2.916121 4.176303 -2.833154 -3.020656 3.976888 -0.539581 0.611116 -0.957827 -1.493229 1.774105 0.299599 -2.678623 -0.290094 -0.724265 1.578657 -2.259753 -0.958879 1.383582 -2.039815 -0.645198 1.712836 -2.965980 -3.236809 -0.859244 0.393002 1.072207 -4.063396 -2.246047 0.126263 0.818939 0.287954 0.050824 -2.120479 -3.309994 2.751352 0.491856 -1.018206 0.290768 -0.634242 -1.952403 1.780671 1.247947 -2.629185 -1.737751 -0.341473 -2.246996 1.279235 1.230715 3.983393 -4.844151 2.125430 -4.881275 2.016517 -1.674947 2.146204 3.300340 -2.018629 2.000923 1.461675 4.400797 0.665498 0.327284 2.031495 1.470962 -0.052636 0.747904 2.784135 2.538580 -2.293553 -3.351985 -2.274755 -1.941857 1.711827 -1.942784 -3.784715 1.399633 -1.583238 0.651046 -1.126622 0.226227 -0.460694 4.005226 -4.696114 0.963137 1.469639 -0.784416 1.282068 1.226922 -0.202133 0.425811 -0.778517 1.670445 -1.030475 0.114301 -0.150393 2.833658 -2.896095 -0.230022 -0.870663 1.193898 1.322999 -2.816667 -3.082469 -4.619359 -1.005786 3.376115 -1.587615 2.598342 4.637006 -2.211253 -2.482976 1.932271 0.440110 -1.241008 1.797155 1.250385 3.609043 -2.282432 0.018385 -1.097274 -0.458931 1.492021 2.664807 -0.706585 -2.412030 3.147126 -1.371052 -2.474886 6.205658 -0.219564 -0.877211 -0.863709 0.858485 -0.834560 -0.847998 3.283578 -3.215281 2.227472 -2.173167 4.186097 -1.672954 -0.404049 0.556949 -3.934813 -1.774774 -2.594087 0.328489 -0.552407 2.959595 -2.514623 -2.083667 -0.368953 -1.695648 -0.454334 3.314914 -1.640109 -0.243372 0.582799 -0.953709 3.109328 1.577090 -0.410880 -1.049053 -1.634098 1.079658 1.990586 -0.379009 -2.830321 -1.756578 -1.593592 -0.936552 -1.467072 0.531168 2.611950 -2.951589 0.112808 0.743009 -0.081868 -0.288798 -0.060149 -3.396967 1.384321 0.304755 1.765014 1.276942 3.722194 2.423286 3.117501 0.685051 0.843635 -0.543823 -1.109118 -3.262842 1.658422 0.846602 1.126442 1.636294 2.882930 1.517568 1.858931 1.811650 0.430285 2.080281 3.217265 0.372668 3.463008 -0.699699 -0.021576 1.107713 0.424508 2.950261 3.107462 -0.185258 -1.031378 1.091128 -1.471546 -2.821985 -0.443484 0.316746 -0.039916 -0.715764 0.859160 2.287838 0.296013 -1.628365 4.656226 -0.201386 -5.174916 2.072457 1.080850 2.119263 3.157179 -0.937372 2.566191 1.122744 1.561939 2.372836 2.264800 2.094972 -3.619125 0.167992 0.430814 1.590031 3.692018 0.987341 -4.659510 1.645692 0.564375 3.017199 -0.703201 2.779940 -2.559416 1.638380 0.348252 -0.831665 0.651246 -0.323751 1.456706 -0.024278 0.357580 -4.451767 -0.231649 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 2.077929 -1.385689 2.295539 -3.249967 -2.068499 -0.034056 2.142574 -4.846724 -2.117819 6.965654 1.891144 -3.243238 0.772085 4.895435 -0.467150 -1.682128 1.004191 2.177154 -0.943606 -0.439489 -1.494392 1.785826 -1.718019 -4.467536 1.726349 -1.311083 2.319396 3.853072 -3.161601 3.152065 0.312463 -3.042920 1.192083 7.811921 2.690370 0.891435 -2.775400 7.782241 -7.003523 8.210813 -6.126856 -6.380013 9.113904 -1.185838 1.146596 -3.239515 -3.005114 4.038229 0.540009 -5.691308 -1.123536 -1.057785 3.223029 -5.581899 -2.435829 3.651756 -4.565062 -1.013530 3.761842 -6.479847 -7.217743 -1.707691 1.069024 2.064129 -8.165050 -4.942584 0.018822 0.606395 0.336005 0.489423 -4.726068 -6.489258 5.021630 0.723193 -1.648532 0.954860 -1.880325 -4.062040 3.732762 2.440820 -4.765215 -3.868064 -0.257500 -4.252195 2.356005 2.468084 7.597790 -10.063654 3.327977 -9.745111 4.047201 -3.713239 4.380514 6.653735 -3.722291 4.760117 2.298773 7.808584 0.856224 0.327335 4.015005 2.873166 1.249252 1.455812 5.771079 5.611584 -5.061732 -7.510224 -4.896363 -3.861817 3.656582 -3.959614 -7.487160 3.077914 -3.596775 0.098190 -1.769169 -0.279414 -1.088132 8.578676 -9.308415 2.239300 3.428421 -1.700580 2.434364 2.808979 -0.246574 0.628039 -1.507303 3.221716 -1.343946 0.832951 -0.065473 6.031052 -5.625312 -1.571652 -1.171939 2.239374 2.480587 -5.654526 -6.366757 -9.654696 -2.030908 6.252280 -3.423673 4.410258 9.445739 -4.110022 -5.499953 3.834969 1.212705 -2.304590 3.149657 2.566866 7.908044 -5.006590 0.233450 -1.900854 -0.734853 3.876691 6.871880 -1.929137 -5.616457 6.559416 -3.043986 -5.539310 11.596098 -0.311393 -1.181623 -1.112009 1.818415 -1.897070 -2.004153 6.829195 -6.375353 5.246673 -4.923681 8.528085 -3.667393 -1.058162 1.206279 -8.064654 -3.574790 -5.600035 0.558553 -0.865156 6.012590 -4.962017 -4.458351 -1.393941 -3.205709 -0.829035 7.415191 -5.047276 -0.670445 0.675343 -1.981996 5.808446 2.661134 -1.678041 -1.765733 -3.611513 2.271439 4.236138 0.285660 -6.864827 -3.593579 -3.036249 -2.236569 -2.787707 1.072751 5.532518 -5.452252 0.399771 2.562987 -0.498313 -1.436454 -0.787706 -7.023222 2.937572 0.327251 3.527223 2.331457 8.270751 5.084070 5.889312 0.673027 1.871641 -1.221329 -2.709811 -7.332702 3.436946 1.261383 1.872840 3.561346 5.719031 3.054839 3.743768 4.143834 0.775139 3.235449 6.728308 0.934451 6.715502 -1.597997 -0.262066 2.734754 0.745845 5.929101 6.024965 0.603180 -3.388465 2.558467 -3.140921 -5.853102 -0.943676 0.045225 -0.103004 -1.484045 2.719663 4.938335 -0.204929 -2.835211 9.898005 -0.588406 -10.907537 4.416898 2.376661 4.440483 5.993763 -2.287438 5.286340 2.914616 3.564538 4.292325 4.327256 4.303305 -7.594548 0.145902 1.012218 3.496919 7.842799 1.580498 -11.396761 2.639694 1.040590 6.482914 -1.580196 6.673880 -5.157309 3.668654 0.558952 -0.905326 1.538497 -0.900907 3.078036 -0.531904 0.546653 -9.427493 0.450745 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = 0.447703 0.067722 0.861118 -1.167069 -1.295464 0.148489 0.106815 -0.803473 -0.318527 0.527067 0.959363 -0.865068 -0.583368 0.457088 -0.329211 -0.779595 0.333097 -0.120176 -0.073199 -0.800761 -0.110113 0.377967 -0.253721 -0.953533 0.430073 -0.541094 -0.226817 1.376004 0.418199 0.280600 0.102818 -0.332073 0.342995 1.926903 0.439676 -0.422292 -0.148780 2.132123 -0.794295 0.235019 -1.433161 -1.461223 2.427707 -0.171265 0.038074 -1.409983 -1.204265 0.900148 -1.199096 -0.346647 -0.180485 -0.345832 0.969429 -1.146308 -0.889018 1.230095 -2.158106 0.410615 0.612938 -1.584307 -1.340373 0.190590 -0.087684 0.262779 -0.275383 -1.122810 0.021068 0.317234 0.105918 0.052705 -0.472523 -1.046828 1.696586 0.108489 0.240665 0.400492 0.025789 -1.055835 0.967860 0.198180 -1.308269 -0.777116 0.014267 -0.869681 1.049824 -0.193262 1.425537 -2.054314 0.179325 -2.432107 0.902121 -0.961501 0.733479 1.226696 -1.283276 1.147034 0.747218 0.131401 0.402226 0.428146 1.526119 0.459579 0.892427 0.697659 1.206800 0.830174 -0.441256 -0.792608 -1.084584 -1.150385 0.125300 -0.804227 -2.418763 0.769521 -0.808817 -0.204931 -0.108737 -0.438400 0.289298 2.111646 -0.695378 0.603956 0.785724 -0.335273 -0.039288 0.837535 0.043766 -0.416292 -0.206153 1.182333 -0.563926 0.449446 0.325480 1.313494 -0.063783 -2.207497 -0.903213 0.555028 0.347055 -1.265670 -1.515144 -1.289789 -0.033869 0.513941 -0.688550 0.459755 2.595476 -0.742881 -1.668754 1.256053 0.872820 -0.527364 1.309802 0.651599 2.092713 -0.849326 -0.446802 -0.783443 -0.693401 0.669515 0.545925 -0.425785 -0.721231 1.318949 -0.022487 -1.397108 2.350715 -0.414427 -0.175919 1.163139 0.230606 -0.706539 -1.106119 1.233583 1.156776 1.757368 0.144143 2.099359 -0.464521 -1.618109 0.496475 0.130129 -0.645651 -0.316094 0.258090 0.272799 0.495274 -0.676421 -1.171105 -0.780876 -0.419250 -0.511181 1.598766 0.434822 0.523457 0.689246 -0.487465 -0.464655 0.730038 -0.367564 0.111613 -1.260178 0.494406 0.903746 0.262026 -1.970896 -0.679163 -0.539357 -0.038963 0.210648 0.358923 1.765355 -0.248705 -0.024554 0.624410 -0.145298 -0.059774 -0.131275 -1.158388 0.702672 -0.023696 0.502543 0.120408 1.909219 1.806095 1.284047 -0.308925 0.890240 -0.197534 -0.253463 -0.386739 -0.328668 0.164768 0.504655 0.605987 1.255459 0.684775 1.142138 1.337184 0.911698 0.585668 1.596394 0.148140 1.736938 -0.746030 -0.301846 0.423234 0.165242 1.537508 1.714826 0.616043 -0.901081 0.393575 0.058516 -0.755340 -1.670820 0.233002 0.112067 -0.111352 1.111733 1.288354 0.111308 -0.638868 1.721149 0.439732 -2.585025 1.757830 0.422324 0.680784 0.595126 -0.398606 0.425976 0.770242 0.200724 0.687615 1.204234 0.817543 -2.039980 -0.592343 0.447161 1.415532 0.162344 0.934114 -2.354647 0.340888 0.216651 0.979659 -0.150631 1.554683 -1.422626 -0.568583 0.238643 -0.354644 -0.354128 0.304547 -0.026175 -1.329093 0.492996 -1.255045 -0.017356 +PE-benchmarks/boruvkas-algorithm.cpp__main = 1.130960 -1.596244 3.030433 -4.491358 -3.205222 -0.387420 3.681988 -3.909973 -1.784652 3.587329 2.366964 -3.555615 -1.527642 4.913906 -0.142493 -2.862864 1.488729 1.117465 -0.853286 -0.479693 -1.350377 2.276094 -1.567096 -3.860339 2.390444 -1.483005 1.163602 6.414280 -0.017671 2.255744 0.355503 -2.806026 0.976230 8.419028 2.273435 0.347927 -1.704108 10.816687 -7.420904 8.092933 -6.008355 -5.678372 10.706660 -1.427854 -1.077634 -6.398980 -5.333037 4.215115 -3.616212 -4.326775 0.136432 -0.608359 3.592087 -5.502679 -1.853949 6.120932 -7.731794 0.259160 3.837331 -5.779325 -5.932006 -1.791724 -0.913478 1.078877 -7.063157 -4.992690 -0.055928 -0.798337 -0.313040 0.358070 -4.106015 -5.563248 8.041245 1.179169 -1.521308 1.838452 -0.570410 -5.011942 4.085441 2.101835 -5.638976 -3.937505 -0.379909 -3.987525 4.632643 0.518898 6.595520 -10.646257 0.920109 -10.692744 3.917007 -6.465862 4.051020 7.737817 -5.231615 6.245198 2.200592 4.805068 0.340501 0.405002 5.020739 3.012687 2.534798 2.229586 6.215631 5.082380 -4.530868 -7.365047 -5.785760 -3.938083 2.511683 -4.201770 -10.891916 3.008324 -3.518463 0.059047 -0.987911 -0.206178 -1.112220 8.721921 -6.230822 5.290363 3.629457 -1.981632 1.683294 5.050026 -0.430819 -0.442332 -2.035070 4.534933 -1.585097 3.404353 -0.675095 6.154788 -3.788590 -4.916918 -1.943208 1.223383 2.008188 -5.104802 -7.223979 -8.900792 -1.937816 4.648987 -3.297796 3.245367 11.452674 -4.077122 -6.233863 5.505151 2.608985 0.416879 3.234733 2.723907 8.673967 -4.083459 -0.905765 -3.178159 -1.766830 3.134844 7.212019 -1.419095 -5.451363 6.349305 -2.585544 -7.289873 12.898155 -0.677275 -1.542281 0.646999 0.934336 -3.129747 -5.153626 9.204409 -3.385654 6.991199 -3.938425 9.494708 -2.753634 -3.329591 1.750675 -4.904539 -2.291132 -6.997938 0.117399 0.476354 4.407003 -4.908907 -5.369586 -2.842064 -1.991461 -1.564717 7.102798 -3.399426 -0.470243 0.974498 -0.846340 3.917751 3.620147 -2.027863 -0.935618 -5.667368 2.812893 4.027171 0.103332 -9.035358 -2.208243 -1.713160 -2.250609 -1.491781 1.344042 5.357912 -4.861854 -0.345455 2.812792 -0.671219 -1.227548 -0.110240 -10.263349 2.920005 0.954424 2.684523 3.054391 8.001351 7.597552 5.394424 0.457477 3.203144 -1.252115 -1.423565 -6.900073 2.196305 0.962149 2.206086 3.435586 6.482249 3.969249 3.407492 4.572688 2.662292 2.720515 6.709738 3.066710 8.240752 -0.272605 -2.571526 2.986891 0.823123 6.582075 7.040349 2.118768 -2.930392 3.376472 -0.921868 -4.950995 -4.858696 -0.081127 -0.450139 -1.418907 6.190697 3.598673 -1.027993 -1.916242 10.252848 -0.852509 -12.418536 4.615760 2.771757 4.609488 4.392226 -1.270056 4.037564 4.320898 1.267661 5.108450 4.176546 4.209784 -7.459118 -0.671306 1.193207 3.189747 7.009099 2.773963 -13.228920 0.987163 0.808324 7.192778 -0.439912 7.827050 -4.410322 1.747465 0.828778 -1.327468 0.654172 -0.924035 2.197458 -2.418676 0.808946 -9.466987 -0.886840 +PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 4.465901 0.444023 4.470332 -5.574017 -2.112456 -1.627625 9.811749 -7.157013 -5.112086 13.719433 1.407921 -5.547238 -3.656052 5.722412 -0.661728 -2.090110 2.653283 -0.727541 -2.667559 -2.974029 -3.392055 2.434073 -2.100428 -8.169046 3.262176 -1.505616 4.738919 8.067248 -5.018022 5.624111 2.288757 -4.801201 3.928215 12.563399 3.839468 0.220605 -7.827960 13.285038 -13.740885 13.762946 -12.053871 -11.780397 18.672109 -1.865350 0.373432 -12.055065 -2.375355 8.104141 1.217048 -9.955999 -3.469237 -0.402477 4.348947 -11.057929 -6.227547 9.883879 -9.071799 -0.524373 6.105619 -12.830282 -14.800609 -2.350634 4.066203 4.295124 -13.260950 -8.157449 -0.556991 -4.517708 -1.720293 3.148381 -10.893154 -9.465696 4.636620 2.119338 -2.048751 1.723065 -5.155051 -4.543018 5.550830 3.039528 -5.395368 -6.855323 0.786008 -5.560086 2.205142 4.720541 10.736681 -17.223308 1.987951 -16.044479 6.274643 -7.555183 7.384039 9.845862 -0.768366 11.079071 0.920477 6.018590 -0.452475 -2.287721 5.154116 4.596587 8.272088 2.484382 9.467004 11.163554 -9.288717 -15.848916 -9.087245 -4.288717 6.151857 -4.679378 -10.913314 5.870483 -9.224793 -3.114931 -0.099848 -1.392843 -2.987024 13.289847 -14.813609 3.201261 5.490094 -2.873837 5.341024 6.359645 0.508266 1.937565 -0.974174 4.752806 1.805656 5.190095 0.971876 10.462857 -7.617243 -4.756047 0.279634 3.205536 4.578826 -7.510887 -9.806476 -17.046450 -4.254051 7.958255 -6.100612 4.786483 16.049689 -4.583124 -9.773857 5.214684 0.629886 -1.240853 2.386420 3.566548 16.031997 -9.859277 1.972221 -0.951454 1.653781 8.879157 20.713381 -4.227043 -10.108366 11.336452 -6.020947 -7.912545 12.220296 -0.173737 -0.206409 1.966534 1.785329 -2.825837 -5.847590 10.971185 -10.961034 11.587396 -10.254322 13.633005 -6.768718 -1.317200 1.967740 -14.843745 -5.513312 -11.336816 1.562722 -2.502444 9.499454 -8.459473 -7.037676 -4.778868 -4.637372 -1.240354 14.386112 -15.995596 -1.817769 -0.473034 -3.010625 10.299807 1.769780 -5.113548 -2.911090 -7.833095 3.477904 6.922880 4.752088 -13.828278 -6.478740 -3.279840 -4.927195 -2.663890 1.243836 8.751922 -6.607727 1.630205 7.662893 -1.597682 -4.859223 -2.629054 -13.359818 4.587349 1.330242 5.229606 2.181623 16.882578 7.993560 7.396455 -1.109407 3.917802 -2.185028 -5.908084 -15.996113 4.680170 1.068340 1.026263 5.950827 7.488122 3.840213 5.318863 8.176839 0.281313 0.897462 10.503477 1.481109 9.836929 -5.069785 -2.566149 5.869474 0.106141 8.451019 8.345181 4.849658 -10.255606 5.433589 -6.608140 -10.275247 -1.739932 -1.454630 -0.890713 -1.610200 9.316606 10.592661 -2.457431 -2.776015 19.341112 -1.803240 -22.043526 7.208933 4.874008 6.965129 10.483241 -4.669579 8.961300 7.627660 7.233637 4.060346 6.122089 6.147500 -13.061894 1.378575 1.660964 5.554488 12.075681 -1.065129 -27.791157 -0.346062 1.491441 13.764407 -1.916190 16.950612 -7.693126 8.102388 1.521244 0.901179 2.679229 -1.603397 7.072352 -0.808339 0.813101 -18.471396 5.423747 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 1.363204 -0.138997 0.995081 -1.995575 -1.058787 -0.063416 1.626988 -1.872439 -1.151845 2.479998 0.573090 -1.412378 -0.989643 2.028374 -0.271993 -1.166663 0.650003 -0.858119 -0.514950 -0.371424 -0.896838 0.907721 -0.715035 -1.699358 0.860247 -0.301635 0.650280 1.944968 -0.243504 0.538190 -0.231025 -1.195565 0.445793 3.611983 1.142300 -0.353437 -1.147474 4.481568 -2.579528 3.159506 -2.956410 -2.770823 4.417923 -0.608806 -0.378120 -2.891365 -1.033091 2.096848 -0.599858 -1.780547 -0.069497 -0.296463 0.776334 -2.367503 -1.124558 2.650272 -3.293796 0.856845 1.673812 -2.027702 -2.941311 -1.034166 0.713484 0.622785 -2.763541 -2.180107 0.315668 -0.667739 -0.944348 0.495309 -2.647358 -2.602034 2.355583 1.028482 -0.782751 0.493770 -0.866546 -1.803765 1.612387 -0.033714 -2.219234 -1.479443 0.098838 -1.465190 1.840074 0.659135 2.380771 -4.857780 0.839621 -4.823692 1.285312 -2.571945 2.031076 3.299531 -1.325708 2.535893 0.500780 1.738852 0.322791 -0.362885 2.100202 1.131067 1.383182 0.782220 2.433561 2.393176 -1.933137 -3.201913 -1.999184 -1.470680 0.862898 -1.047705 -3.861392 1.623061 -2.281709 -0.248256 -0.241407 0.172497 -0.949970 2.946028 -3.734519 0.085076 1.004107 -0.842135 1.696779 2.237832 -0.208814 0.455688 -0.883157 1.956865 0.151445 1.470542 -0.314905 2.571892 -1.607981 -1.775330 -1.236712 0.600162 1.465415 -2.176526 -3.235918 -4.222761 -1.067951 1.224395 -1.632686 2.378337 4.788665 -1.517012 -2.652437 2.408492 0.186811 0.488567 1.779482 0.762965 4.166127 -2.277118 0.275945 -0.356443 0.048542 1.211588 2.749074 -0.834428 -2.149356 2.459381 -1.220825 -1.513428 3.586414 0.131568 -0.666726 0.288581 0.234425 -1.163818 -2.330270 3.538598 -1.886768 3.037743 -1.438044 4.157402 -1.531107 -1.053640 0.986554 -2.826442 -0.868605 -2.847183 -0.000914 -0.561321 2.251877 -2.359203 -2.085989 -0.857605 -0.712343 -0.882479 3.290157 -1.720828 -0.205377 0.229739 -0.190031 2.478736 1.654976 -1.208268 -0.183258 -2.552934 1.151791 2.119938 0.435994 -3.417870 -1.145058 -0.823874 -1.140151 0.044761 0.272215 2.088219 -2.010192 -0.335173 1.533667 0.072937 -0.167684 0.036804 -3.944641 1.259543 0.022283 0.941544 1.104563 4.063968 2.452569 2.198220 0.312841 0.716652 -0.395042 -0.875386 -3.089103 0.565149 0.300954 1.008990 1.646769 2.246949 1.476047 1.376207 2.050813 0.809562 0.178670 2.931428 0.883010 3.532057 -1.007989 -0.894099 1.016592 -0.222981 2.682637 3.230678 0.140633 -1.809059 1.610994 -0.824148 -2.141953 -1.660319 -0.218056 -0.503791 -0.501935 1.860294 1.850619 -0.512079 -0.773012 5.102432 -0.622038 -5.676123 2.138794 1.321056 1.911142 2.321244 -0.717238 1.785677 1.960264 0.307241 1.644989 1.932913 1.848686 -2.960850 0.297081 0.378872 1.707759 1.933030 0.495977 -5.646766 0.491188 0.829617 3.606241 0.428170 3.314505 -1.813183 0.926264 0.572269 -0.174314 0.474933 -0.155082 1.940942 -0.900174 0.327717 -3.998814 0.208068 +PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 22.313355 4.552728 0.841592 -1.345012 1.386705 -2.227945 22.418107 -19.264645 -18.022837 40.313318 6.404202 -13.917918 0.155119 8.282550 -0.892591 -2.772127 9.450663 19.300874 -6.545929 -7.846419 -13.473638 -2.781273 -5.459585 -28.644920 5.901647 -3.624308 10.645673 15.292845 -25.562842 25.133023 -0.298010 -7.844411 13.829271 28.725625 11.854240 -12.135196 -16.654364 30.618848 -44.655643 26.196022 -17.422865 -26.729653 49.022454 -2.790382 8.251906 -11.236935 -10.222770 16.353422 22.186381 -27.321680 -13.053123 -6.789267 11.478601 -26.126944 -18.509509 28.817248 -13.642075 -7.815644 15.245259 -34.772591 -42.082840 -5.632638 13.010438 7.991265 -37.933858 -22.172378 -0.052311 -2.383181 10.347961 6.214115 -38.803488 -32.550206 7.719627 2.206053 -0.840950 -0.920159 -19.097585 -10.923841 8.529255 29.013007 -15.077695 -14.172461 2.077698 -5.797462 -1.870173 16.654852 38.958065 -41.353783 6.672378 -46.050254 13.611805 -16.485375 20.793630 26.734592 -0.167364 19.449408 3.396689 26.228620 -6.262870 1.560308 12.871519 9.235407 5.851010 -3.762185 19.851238 33.282329 -21.818314 -40.546895 -16.699382 -2.278676 15.758630 -2.683675 -22.189721 16.871321 -29.332354 -6.617482 -4.690931 -1.848179 -4.808843 38.359761 -32.004926 5.067426 13.558959 -7.414989 21.009775 11.451580 2.506901 7.354745 -5.310204 5.450955 11.049383 1.337983 -0.511166 22.372727 -28.083194 -17.261042 1.313211 12.386241 15.532146 -27.572234 -24.488416 -38.285671 -4.341836 33.210461 -15.935844 6.656491 39.072270 -16.051356 -12.401291 4.815615 -1.928349 -9.951392 10.773451 8.953156 52.740626 -32.280155 16.455720 9.104512 9.904766 18.020057 35.702647 -18.825230 -26.041795 24.101669 -8.523040 -9.912846 47.065823 -2.288042 3.281216 19.074485 6.692060 11.713782 -6.475199 27.832184 -32.574147 17.668313 -21.320892 31.682555 -15.745968 2.997457 5.530764 -27.713195 -19.955033 -23.117886 11.554221 -8.369689 30.620083 -12.730281 -17.322584 -2.993183 -15.647798 3.154689 43.750705 -21.103658 -6.146004 -1.809880 -18.654418 13.849848 0.993998 -11.087713 -10.613292 -17.332766 5.007983 16.997718 -4.981982 -36.916816 -19.154058 -9.842823 -8.099509 -19.754633 4.533505 22.318228 -20.154058 2.810855 20.023223 -1.907515 -9.916153 -8.853491 -3.905661 14.992572 1.955291 11.294608 3.380460 46.785831 16.014951 24.501577 -4.129727 3.152870 -1.438068 -17.434594 -45.115152 19.926415 -1.117780 16.056293 12.608295 12.340906 -2.171239 13.630152 10.485447 -20.785983 18.195846 21.488402 11.071499 25.346024 -12.312756 -0.256429 14.731973 -10.035035 21.064382 18.583546 3.951736 -34.803608 3.832053 -27.591993 -32.341874 7.392132 -3.412762 4.134310 -16.831555 13.641665 34.075926 -0.365830 -16.376689 49.042184 -2.197266 -60.552635 16.984239 12.338918 13.351348 44.550510 -15.808756 32.320872 13.774550 43.065340 8.915643 19.927393 19.847308 -35.110902 11.330149 3.158062 12.163500 24.203247 -13.082679 -70.651062 13.245834 9.003736 30.762520 -6.995706 35.532792 -21.541467 35.133673 -2.943301 4.129228 12.361581 -6.855664 22.703714 -6.177760 4.524552 -46.381253 24.618661 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 4.865388 0.664345 0.263734 -1.290905 -0.522742 0.119738 3.512473 -4.678127 -3.820814 7.735365 1.771229 -3.336684 -0.162116 2.590470 -0.369498 -1.664479 1.969248 3.506942 -1.222938 -1.714681 -2.927317 -0.333799 -1.476084 -6.098156 1.151809 -0.968210 2.048371 3.277260 -4.069013 4.683453 -0.875691 -1.908835 2.544350 7.259820 3.143004 -2.670896 -3.040040 8.181929 -8.136690 5.702595 -4.399003 -6.121712 10.756656 -0.751686 1.154715 -2.583121 -2.586813 3.839627 3.115417 -5.067153 -2.079911 -1.878130 2.412198 -5.469493 -3.927082 6.483070 -4.251544 -0.238879 3.522530 -6.755032 -8.630475 -1.815308 2.730735 1.711897 -7.587993 -4.959801 0.496491 0.198005 1.372062 1.036696 -8.477469 -7.575677 3.430138 1.186447 -0.683398 -0.224128 -3.880967 -2.890498 2.152490 5.365041 -4.490237 -3.087485 0.488788 -1.454231 1.061309 3.366965 8.416087 -10.178421 1.796310 -11.459881 3.055664 -4.183152 5.093240 6.779334 -1.599000 4.157432 1.166460 5.754022 -0.734534 0.387710 3.776244 1.803902 0.712561 -0.491073 4.760308 6.963931 -4.303427 -8.217699 -3.310179 -1.329347 2.751148 -0.644905 -6.363111 3.936100 -6.840013 -0.706609 -1.508742 0.243739 -1.480478 7.701047 -7.393113 -0.258135 2.494921 -1.840443 5.460876 3.224522 0.205958 2.025596 -1.570200 2.268363 1.890555 0.382824 -0.738235 5.189321 -5.508067 -4.467568 -1.766630 2.853405 4.106103 -6.462514 -6.566173 -8.671402 -1.349694 6.414294 -3.686667 3.132565 9.768053 -3.988926 -3.491066 2.462143 -0.554864 -1.180998 4.151227 1.961594 12.026243 -7.130995 3.452163 1.704989 1.713100 3.111754 5.611452 -4.026328 -5.362817 5.312216 -1.772326 -1.371441 10.352597 -0.431426 -0.176511 3.373771 1.233895 1.670730 -2.621736 6.953494 -6.117038 4.218905 -3.587863 8.221650 -3.811300 -0.608441 1.792222 -5.673281 -4.151018 -4.790957 2.107893 -1.975554 6.952486 -3.531274 -4.391020 -0.306949 -2.927207 -0.040220 9.341388 -2.087769 -1.127809 0.158374 -3.524596 3.480144 1.777366 -2.348796 -1.886168 -4.540923 1.334799 4.662304 -1.362207 -7.986685 -3.946470 -2.482719 -1.819088 -3.335132 0.988418 5.074659 -4.902898 -0.068908 3.842442 -0.029678 -0.643730 -1.056554 -2.232395 3.680905 0.184548 2.046153 1.373706 10.505130 4.090602 6.000321 -0.124304 0.500267 -0.162281 -3.405507 -8.556836 3.465695 0.193865 4.251400 3.131772 3.329143 0.330574 3.262148 2.836349 -3.402042 3.649653 5.319021 2.555806 7.008638 -2.739293 -0.053225 2.652316 -2.405003 5.523611 6.022564 -0.225949 -6.946033 1.384778 -5.231625 -6.463764 -0.498713 -0.592069 0.519552 -3.512016 2.723073 6.957233 0.125203 -3.949233 11.529475 -0.555407 -13.729718 4.690350 2.938872 3.194671 9.415072 -3.352508 6.311002 3.275569 7.369149 2.658331 5.087344 4.873175 -7.727482 2.512806 0.554147 3.402467 4.274941 -1.963105 -13.935894 3.463812 2.665456 7.256493 -0.265865 7.010458 -4.960725 6.177640 -0.362502 0.292136 2.446310 -1.175306 5.269824 -1.876236 1.121022 -9.486820 3.859745 +PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.746260 -0.279731 2.284362 -5.221593 -3.479953 -1.303928 1.981084 -2.895340 -2.507635 6.499644 1.703429 -5.936937 -5.489484 5.329513 -0.608681 -3.501112 1.677028 -2.170918 0.425187 -0.671638 -1.606012 1.728735 -0.101177 -3.608002 1.789215 0.541598 -1.317700 4.461714 5.719296 -0.996964 0.013828 -1.816893 2.740972 7.774160 1.456633 -3.791692 -2.264070 10.482506 -4.397034 6.053122 -5.725699 -4.544517 10.679984 -1.195032 -0.536368 -7.498294 -2.501361 6.773669 -3.769278 -5.220041 -0.411075 1.202925 2.108052 -6.609341 -5.310645 7.050876 -9.662043 4.724284 4.410197 -2.717397 -3.500272 0.259299 0.320252 2.704270 -3.623897 -5.338527 -0.989598 -3.688279 -4.363963 -0.991947 -5.219034 -2.539062 6.212760 1.322908 -1.955119 2.116640 -0.931660 -2.330492 4.486057 -3.605508 -5.534950 -2.643596 -1.701334 -2.729656 5.189804 0.807038 3.782240 -9.926182 1.688467 -10.260822 3.568841 -6.776347 3.134576 8.276828 -3.851167 5.986824 0.953130 -0.023423 2.973121 0.085606 6.219455 2.591955 3.700729 2.917362 4.552004 5.506076 -3.825735 -5.143550 -4.689444 -3.957983 0.908706 -1.121044 -7.918601 4.769236 -3.800775 0.760800 2.188273 -0.691196 -2.811695 5.069137 -6.446582 -0.302360 1.666666 -1.733452 2.679926 6.956113 -0.515043 -0.369754 -1.846329 5.872394 0.551262 3.770064 3.654833 6.122556 -1.072774 -6.811264 -2.446994 2.533901 2.455197 -4.839822 -6.474530 -10.096034 -0.314855 -1.067639 -4.244610 4.523481 11.638176 -2.116646 -4.359682 6.350606 -0.622060 1.635460 5.005858 0.815039 11.262867 -4.021149 -2.556293 0.243704 -2.447572 3.272768 7.599603 -1.172601 -4.292990 4.814604 -2.012771 -3.489826 1.877598 1.239604 -1.445279 1.257255 0.073397 -3.260666 -6.880288 6.391879 -3.005513 5.687234 -1.124314 10.082049 0.837509 -4.359183 4.301327 -2.443699 -1.282133 -4.041642 -0.646337 0.752922 2.480918 -5.363917 -4.184638 -3.034381 0.373955 -3.568700 7.249976 -3.095211 1.032371 2.542971 -0.230962 5.059203 2.478419 -3.833418 0.912143 -7.390266 1.998741 3.351492 0.367220 -8.845772 -2.401176 -2.874318 -1.465109 3.862735 -1.058411 5.262321 -4.122769 -1.883089 4.187331 -0.140985 -0.048477 -0.213865 -6.885632 2.659905 1.149284 3.274794 3.818168 10.007890 4.705202 5.280287 -0.385159 5.247108 -1.879709 0.555461 -5.280518 -0.189212 -0.992677 1.591016 4.249891 3.269449 3.388005 4.318547 6.267650 1.638793 -2.972555 7.207817 0.082657 6.660702 -2.359154 -2.914111 3.046166 -0.673429 6.552481 7.588891 -0.422513 -6.281529 4.432910 -3.117422 -3.533168 -4.205033 0.245020 -0.803799 -0.232553 5.791214 4.314791 0.907142 -1.121653 7.856602 -1.887232 -12.865636 7.170958 2.902095 4.253234 4.710987 -0.673397 3.957436 3.441015 -0.823375 1.234231 5.880300 3.924259 -7.183549 1.132148 1.636993 5.285647 2.680982 3.044665 -15.350620 -1.926683 2.109893 5.665880 1.086023 6.824509 -5.127148 -2.449558 3.153254 1.095820 0.485269 -3.021967 2.543636 -3.487941 0.392442 -4.341154 1.836602 +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.040987 0.287801 0.488232 -0.703035 -1.110376 -0.006245 -0.015829 -0.418437 -0.192597 0.042207 0.386577 -0.377175 -0.510774 0.800269 -0.343259 -0.718486 -0.383539 -0.435707 -0.248100 -0.418713 -0.054079 0.529007 -0.153233 0.086704 0.187187 -0.226005 -0.246696 0.513564 0.530304 -0.506141 0.038709 -0.267127 0.106862 0.843887 0.095685 -0.067777 0.054755 1.468982 -0.180489 0.169229 -0.935994 -0.842008 0.816170 -0.165518 -0.164162 -1.152232 -0.700659 0.533096 -0.659243 0.180491 0.369264 0.149707 -0.034945 -0.249676 0.204878 0.461725 -1.356332 0.968309 0.349814 -0.492449 -0.227789 -0.085361 -0.337764 -0.072606 0.097866 -0.507506 0.034081 0.348490 -0.278734 0.031367 0.130287 -0.532771 1.401299 0.085829 -0.197141 0.367968 0.311769 -0.421720 0.692563 -0.662659 -0.888809 -0.244222 0.273626 -0.023359 0.687349 0.017124 0.251928 -1.247794 -0.026225 -1.221233 0.404101 -0.708522 0.284324 0.753110 -0.791676 0.575870 0.467715 -0.309557 0.647892 0.187562 0.831158 0.132806 0.536636 0.695353 0.287293 0.310359 -0.210071 -0.258572 -0.697357 -0.954314 0.063891 -0.128924 -1.434449 0.340166 0.084080 0.024174 -0.051788 -0.078452 0.243413 0.711857 -0.649054 0.092277 0.505414 -0.174148 0.093174 0.734969 -0.203632 0.018667 -0.471038 0.757326 -0.540370 0.670565 0.006778 0.517993 0.180144 -1.317562 -1.121348 0.127742 0.100629 -0.504342 -0.650643 -0.612486 -0.033174 0.041847 -0.457159 0.421806 1.642033 -0.762023 -1.044151 1.117303 0.747867 0.152146 0.636120 0.230590 1.050742 -0.107800 -0.557304 -0.465797 -0.651824 0.217894 -0.040878 0.279633 -0.306236 0.495361 0.248173 -0.959774 0.889502 -0.360966 -0.627296 0.292473 0.228874 -0.552618 -0.588573 0.715054 0.872196 0.985377 0.132662 1.138584 -0.322789 -0.928125 0.214384 -0.218205 0.022799 -0.332335 -0.074830 0.240408 0.276856 -0.545702 -0.417795 -0.340861 -0.405101 -0.606222 0.280314 0.210955 0.359752 0.358180 0.341312 0.127604 1.142809 0.068660 0.126344 -0.939550 0.398982 0.413624 0.200996 -1.290782 -0.000725 -0.186038 -0.108452 0.410061 -0.082014 0.463261 0.061733 -0.068289 -0.024790 -0.387631 0.253524 0.241128 -0.441643 0.149777 -0.337299 0.554516 0.136126 0.591062 1.181887 0.808946 0.557892 0.569203 0.039146 -0.061156 0.457190 -0.071199 0.252333 0.249802 0.540322 0.823916 0.736708 0.385003 0.902737 0.674686 0.010035 0.896847 0.003934 1.587443 -0.592151 -0.203884 -0.260951 0.397384 0.810790 1.410407 -0.039793 -0.029722 0.467271 0.412871 -0.049624 -1.011786 0.105648 -0.206639 -0.103092 0.819584 0.487870 -0.223630 -0.058055 0.918059 -0.132550 -1.078051 0.807570 0.225068 0.461605 -0.138896 0.151040 -0.225209 0.626208 -0.691010 0.291094 0.759975 0.607695 -0.929850 -0.525939 0.068194 0.741271 0.017694 0.898152 -1.224475 0.121148 0.570659 0.635832 -0.160088 0.479054 -0.635376 -0.925767 0.565390 -0.069624 -0.288866 0.471286 0.075986 -0.771206 0.263676 -0.208690 -0.720817 +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.025781 -0.254039 1.162714 -1.726869 -1.369535 -0.815126 0.399474 -0.294522 -0.054668 0.794446 0.841908 -1.519003 -1.459450 2.047551 0.202581 -1.023017 0.012341 -1.035460 0.210797 0.103396 0.380157 0.770086 -0.033766 -0.135828 0.413221 0.227144 -0.874446 1.220081 1.466423 -0.974168 -0.007121 -0.407228 0.512297 1.440438 -0.537967 -0.729044 -0.412871 2.865886 -1.502598 1.559170 -1.589242 -1.228882 2.164821 -0.531346 -0.490725 -2.399850 -1.277291 1.369098 -1.224512 -0.874797 0.378794 1.098492 0.247554 -1.468717 -0.524118 1.261403 -3.156028 1.290921 1.167515 -0.528331 0.103177 0.255825 -0.770258 0.180341 -0.649603 -0.769901 -0.111487 -1.192428 -1.053916 -0.210058 -0.142617 -0.323621 2.172815 0.585525 -0.110945 1.252399 1.029156 -1.058376 1.908638 -1.417180 -1.544360 -0.604628 -0.586454 -0.777827 1.747740 -0.335616 0.420632 -1.890069 0.331114 -2.247867 0.999523 -2.423410 0.005303 2.129508 -1.357761 1.527459 0.836444 -0.229312 1.272062 0.040328 1.595668 1.227065 1.249154 1.273002 1.087613 1.092989 -0.966204 -0.776284 -1.566247 -1.488732 0.012247 -0.839383 -2.345066 0.928236 0.244595 -0.399412 0.982447 -0.410291 0.071364 1.626375 -0.968165 0.920036 1.102898 -0.357686 -0.674763 2.122735 -0.396971 -0.922072 -1.080746 1.663284 -0.601735 1.725023 1.296118 1.173135 -0.144998 -2.004551 -0.595301 0.054808 -0.391462 -1.150943 -1.112586 -2.047889 0.348057 -0.184725 -0.556729 1.068977 2.969307 -0.701413 -1.359201 2.001109 1.237141 0.244615 1.038197 0.366031 2.291904 0.010472 -1.543373 -0.981049 -1.380874 0.591251 1.544814 0.661006 -0.550917 1.046603 -0.021383 -2.058236 1.475393 -0.151506 -0.530907 0.534869 0.326351 -1.724282 -1.941000 1.457064 0.500435 1.845248 -0.004444 2.308050 0.572293 -1.106865 1.292157 -0.339248 0.241999 -1.281275 -0.519303 0.932589 0.138304 -1.056604 -0.881615 -1.488282 -0.402880 -0.899284 1.174420 -1.074379 0.765958 0.993523 0.502406 0.685476 1.273794 -0.684167 0.418310 -2.108320 0.723128 0.405635 -0.045628 -2.582805 0.294550 -0.499686 0.051815 1.096773 -0.298634 1.324055 -0.805789 -0.841119 0.744783 -0.401434 -0.467061 -0.265031 -2.217418 0.054106 0.111056 1.531016 1.163855 1.506000 1.580356 1.213766 0.274988 1.666815 -0.708522 0.702231 -0.624940 -0.226843 -0.558011 0.150826 0.857251 1.306412 1.121205 0.957585 1.893212 1.363594 -0.931191 1.752734 0.004035 1.722231 0.103332 -1.120279 0.530421 0.425338 1.761058 2.155934 0.309853 -0.643426 1.281452 0.292126 -0.675213 -1.438135 -0.226881 -0.150501 -0.156551 2.018037 0.784713 -0.081313 0.399423 1.156721 -0.140414 -2.661556 1.227979 0.527978 1.037378 0.354940 0.423247 0.186505 1.099541 -1.069469 0.584454 1.084012 0.911240 -1.812340 -0.404028 0.579049 1.227476 0.866564 1.865664 -3.500252 -0.493333 0.587171 0.727799 -0.179914 1.779872 -1.293235 -1.503495 0.966068 0.065714 -0.556076 -0.377866 -0.233987 -1.572479 0.117241 -0.617532 -0.557314 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = 4.523357 1.250705 3.991150 -2.955457 -0.737385 -1.366176 9.917675 -5.719991 -3.119357 12.040017 0.841062 -4.536866 -4.427093 3.213543 -1.681066 -0.197839 2.428813 -0.070903 -2.130292 -2.476873 -3.218877 0.614620 -1.543238 -6.678515 2.365985 -0.764789 4.954151 7.640697 -3.465483 4.176929 1.094030 -3.224305 3.849835 9.896305 3.252355 -1.005830 -5.248091 11.045861 -11.714140 9.825052 -9.694501 -8.049593 15.450274 -1.321267 0.486010 -11.393730 -2.675695 6.644806 0.327354 -7.833622 -3.780122 -1.018893 3.169218 -9.287697 -5.780166 9.593082 -8.317415 -0.263786 4.821664 -8.776716 -11.529611 -1.585032 4.441631 3.489799 -9.760741 -6.639592 -0.009213 -4.968624 -1.754828 3.345020 -9.208113 -6.982585 2.824294 0.019085 -1.846243 0.792514 -4.860158 -3.210567 3.855617 1.856873 -3.466847 -5.398550 0.835686 -4.604576 0.994625 3.713162 7.763692 -12.973714 0.195512 -11.485510 4.371594 -7.470943 5.810661 7.261898 -0.221311 10.204936 -0.030894 3.656222 -1.168958 -0.885494 3.582585 3.552704 8.176259 0.231966 7.066167 8.543300 -6.992949 -11.757963 -8.099672 -2.941347 4.272815 -2.089907 -8.788249 3.974896 -7.429341 -0.839661 -0.256741 -1.228524 -2.704966 10.266934 -11.903532 5.542093 4.049178 -2.205814 4.894940 6.606830 0.517308 2.073810 -0.405294 3.343164 1.763577 4.089794 0.871852 7.450666 -6.202685 -5.752079 -0.095636 2.483807 3.966196 -5.481256 -8.011830 -13.444702 -3.553408 5.882069 -4.477319 1.683706 13.411921 -2.608913 -6.960442 2.756290 0.336226 -0.190081 2.857785 2.804287 14.576166 -8.386412 2.513620 0.338235 2.170915 6.691420 16.965627 -4.888883 -8.245579 8.244431 -4.137376 -7.246930 9.962306 0.201121 1.028956 4.056503 1.249982 -0.644293 -5.585030 9.928285 -7.959343 10.013441 -7.832910 10.401257 -5.676363 -0.972184 1.067817 -10.449636 -3.226089 -8.353824 1.385978 -2.154317 8.670332 -6.207331 -5.756845 -4.116208 -3.785103 0.435765 11.849925 -11.172027 -1.924339 -1.129697 -3.673556 6.589259 0.012992 -5.071311 -1.782718 -7.484736 2.035041 4.829865 3.558428 -12.382696 -5.305025 -3.609598 -3.905192 -2.669229 1.173526 6.462452 -5.413342 0.892331 6.744124 -1.442355 -3.994744 -2.929586 -10.008040 3.796235 -0.019379 3.426040 1.234776 12.745645 7.562711 5.567044 -1.698341 3.694551 -1.143814 -5.647955 -11.465699 4.037709 0.839153 1.028347 3.996582 4.723577 2.147665 3.632744 4.512558 -1.791310 0.180494 7.798243 2.941912 8.342812 -6.066775 -1.856389 4.656504 -0.842382 6.031473 5.251954 4.976635 -9.142837 3.365209 -5.836504 -8.003660 -2.463341 -2.132741 -0.391256 -1.370164 9.777421 8.661886 -2.164247 -2.506306 14.333218 -1.024972 -17.844692 5.845917 3.069701 4.440419 8.372161 -4.394641 7.232513 7.524041 7.278343 2.199508 4.152448 4.962687 -9.762478 0.542163 1.125202 4.710319 8.286178 -2.131127 -26.406144 -0.793558 0.959784 10.127198 -1.167841 14.925737 -6.363967 6.771671 0.413745 0.714530 2.454413 -1.555671 6.872775 0.050903 -0.130845 -15.688331 5.689765 +PE-benchmarks/z-algorithm-linear-time.cpp__main = 1.205667 -1.729862 1.460728 -5.314427 -3.701663 -1.517162 -0.658269 0.450975 -1.612875 2.970690 1.248275 -5.690224 -6.331359 5.350402 0.385798 -4.864777 1.754040 -3.076784 1.779570 -0.020124 -0.426695 1.946890 1.219950 -2.199580 1.871227 0.992405 -5.056522 3.468581 9.686695 -2.859673 0.642679 -0.199646 1.340285 4.967175 -0.995123 -4.530944 -0.297176 8.822955 -1.672125 3.159138 -3.678375 -2.553816 8.247096 -1.177295 -1.017202 -5.369875 -2.504874 5.554502 -6.247484 -2.892188 0.536539 2.868767 1.359993 -5.158208 -4.444577 5.578510 -10.492093 6.045340 2.980946 0.221264 0.179885 1.872478 -2.159775 1.639927 0.120105 -3.971413 -1.680485 -3.751852 -4.835377 -2.264863 -1.912601 1.328445 6.544638 1.342686 -0.825478 3.348778 1.800330 -1.305108 4.206476 -6.167885 -4.978814 -1.105031 -2.404871 -2.295427 6.638542 -0.980564 1.649393 -6.460942 2.008063 -7.230056 3.190638 -6.770742 0.754614 7.675924 -4.528900 4.427798 0.869347 -2.567830 4.432913 0.809364 6.455292 2.168300 2.889071 4.079682 2.371815 3.263763 -1.884221 -1.201378 -3.174941 -3.127072 -1.504772 -1.050343 -6.702618 4.469141 -0.941386 1.350635 4.396132 -0.879208 -2.301010 2.121398 -2.107312 -0.479512 0.742233 -1.178506 -0.101542 5.706944 -1.175313 -2.508218 -2.189138 6.369887 0.111115 4.198509 5.209029 4.476913 1.099329 -6.959422 -1.694842 1.890516 -0.087218 -3.438124 -4.191010 -6.885844 1.801881 -3.634730 -3.098051 4.578270 9.220957 -0.446024 -2.754383 6.691620 -0.558077 3.081657 4.385437 -0.202842 7.490749 -0.788561 -4.764813 -0.202318 -3.257722 1.627280 2.738836 1.011474 -1.891972 2.501205 -0.566144 -2.049997 -1.362062 1.445169 -1.265733 -0.226158 -0.575148 -4.643364 -6.384888 4.433494 0.372408 4.299696 2.036203 7.877989 4.589041 -5.442002 5.306193 0.985889 -0.175256 -1.424572 -1.719768 2.351623 -2.409198 -4.000244 -3.111118 -3.985906 2.413513 -4.482674 3.709342 0.219763 2.524847 3.990087 1.342812 3.077231 1.552709 -2.850570 2.017874 -7.188425 1.286750 1.788901 -1.506524 -6.778502 -0.071391 -0.927186 0.536988 6.687362 -1.047163 4.230709 -2.573263 -3.108851 2.798747 1.031837 1.023372 0.191546 -4.635792 0.969456 1.902444 2.997703 4.332219 6.973955 3.752019 2.987269 -1.175765 6.467049 -1.959564 3.315531 -1.286019 -2.522703 -2.147735 0.882902 3.149622 1.603678 2.956039 3.494489 6.076228 3.913405 -5.145457 5.358819 -0.470451 4.330776 -0.317128 -4.111756 2.515946 -0.329019 5.391118 6.118295 -1.935042 -3.687941 4.396931 -0.854561 -0.568594 -4.425371 0.635321 -1.006014 0.578705 4.279430 0.724235 1.054927 0.541552 2.589939 -0.766365 -8.863389 6.979642 2.465618 3.500121 1.651517 1.624907 0.978928 1.950271 -4.703621 0.382587 4.939278 1.874478 -4.597804 0.978554 2.215756 5.027443 -0.030063 5.404457 -8.597690 -2.788971 1.850241 1.749631 1.805146 2.912005 -2.723415 -7.054240 2.991905 0.678715 -1.260591 -3.233280 -1.485021 -4.705149 0.711585 1.226064 -0.400941 +PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 0.364364 -0.011917 0.630741 -1.884845 -0.444999 -0.682565 2.936578 -0.454660 -0.680176 1.544505 0.296276 -1.076385 -2.133544 1.909540 0.437854 -1.027004 0.696348 -1.938614 -0.704369 0.381534 -0.563623 1.002691 -0.262160 -1.028328 1.092652 0.326369 0.040768 2.149711 0.388384 -0.618178 0.079758 -0.711614 0.473290 2.270409 0.235324 -0.161169 -0.882486 3.376040 -3.589423 3.329612 -2.522395 -1.705872 4.186230 -0.523610 -1.205975 -3.959096 -0.697371 1.753904 -0.548024 -1.833753 0.209325 0.423212 0.404983 -2.063620 -0.616575 2.862457 -2.925246 0.633307 1.312511 -0.895699 -1.611447 -0.617065 0.095821 0.183833 -2.426669 -1.628388 -0.150147 -2.533188 -1.200686 0.137607 -1.595410 -1.039539 1.774617 0.855899 -0.373577 0.797292 -0.755041 -1.448985 1.273494 -0.598450 -1.034452 -0.987263 -0.086032 -0.774453 1.448671 -0.155870 0.819861 -3.587404 -0.612044 -2.980009 0.675656 -2.500952 0.936463 2.347449 -0.206090 2.385116 -0.386970 -0.197447 -0.161467 -0.774441 1.254711 1.333280 2.207723 0.604116 2.089767 2.199708 -1.853013 -3.033265 -1.848652 -0.828900 0.744687 -0.825539 -3.268352 1.085009 -1.040202 -0.913846 0.919661 -0.249605 -0.905544 2.295182 -1.667582 1.518467 0.783693 -0.553916 0.646330 2.533139 -0.010567 -0.515796 -0.652148 1.305191 0.559070 2.530744 -0.118311 1.732973 -0.823637 -1.490137 0.509883 -0.178138 0.389051 -1.097533 -1.904851 -3.572747 -0.413262 0.317428 -1.271234 0.660996 3.403552 -0.762990 -2.261009 1.806000 0.642517 1.146620 -0.139844 0.188698 3.281794 -1.133537 -0.238404 -0.109660 -0.182076 0.965268 4.577081 -0.328543 -1.945340 1.257139 -1.409890 -3.409682 2.151443 0.588281 -0.064348 0.950887 -0.256478 -1.355103 -2.601791 2.816972 -1.314935 2.616230 -1.619968 2.474194 -0.545165 -0.549277 1.035642 -1.739879 -0.263175 -3.366875 -0.833940 0.473899 0.735595 -1.383786 -1.179908 -1.665959 -0.020178 -0.925409 2.717987 -3.723564 -0.351807 -0.317461 0.283063 1.363003 0.672610 -1.452882 0.104670 -2.265493 1.079727 1.354761 0.574534 -3.441852 -0.414955 -0.131281 -1.041678 0.970594 -0.083279 1.026732 -0.832964 -0.318888 2.021979 -0.065358 -0.942287 -0.309225 -3.816925 0.400587 0.588462 0.638479 0.998733 3.196877 1.632051 0.912778 -0.357860 1.113221 -0.504157 -0.091331 -3.684063 0.064137 -0.658996 0.263725 1.297604 1.699569 1.256325 0.613834 1.907676 0.957916 -0.965182 1.798430 1.224655 2.144933 0.264819 -1.904240 1.486372 -0.164597 1.443128 1.909387 0.646010 -1.517881 1.625702 -0.262620 -2.019804 -0.872389 -0.365244 -0.696010 -0.311033 2.964015 0.701454 -0.759500 0.226583 3.751063 -0.954364 -4.705455 0.933276 0.881215 1.676292 1.065875 -0.155278 1.395169 1.821320 -0.209705 1.049020 0.884019 1.057946 -1.998020 0.057925 0.390224 0.577430 2.296814 0.307320 -5.772663 -0.953563 -0.039950 3.194211 0.419616 3.655415 -0.618499 0.910883 0.357341 0.459573 0.445304 -0.786621 1.074168 -0.659497 -0.363008 -4.020688 0.902707 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.182160 0.152729 0.362538 -0.699634 -0.316787 -0.228938 0.535815 -0.405921 -0.250636 0.223702 0.216230 -0.598777 -0.812201 0.678291 -0.216088 -0.662420 0.043779 -0.373759 -0.386992 -0.279623 -0.163449 0.159368 -0.045909 -0.656973 0.321798 -0.121685 0.178812 0.787950 0.463707 -0.264190 0.014587 -0.205794 0.475562 1.080305 0.147011 0.058291 -0.267682 1.216175 -0.548241 0.768422 -1.219460 -0.787986 1.628382 -0.196064 -0.317578 -1.596161 -0.455123 0.651336 -0.857056 -0.199573 -0.166907 0.039627 0.056876 -0.972573 -0.372149 1.176112 -1.347552 0.871482 0.433769 -0.529822 -0.684308 -0.228343 0.032243 -0.022404 -0.216433 -0.727567 -0.081399 -0.295783 -0.705981 0.317492 -0.590415 -0.469890 1.332348 0.093668 -0.159525 0.343702 -0.349271 -0.346722 0.421872 -0.459564 -0.364994 -0.508616 0.438659 0.259153 0.541945 0.177570 0.214569 -1.474574 -0.490705 -1.257715 0.484220 -0.907242 0.562482 0.720301 -0.600450 0.927189 -0.090277 -0.553639 -0.006607 0.151618 0.602813 0.202709 0.817984 0.093822 0.676061 0.529747 -0.342854 -0.991942 -0.413142 -0.506833 0.013524 -0.131567 -1.629021 0.358366 -0.703166 0.110038 0.099367 -0.082982 -0.090393 0.602458 -0.765670 0.156180 0.385744 -0.237677 0.507314 0.820197 0.008197 0.010398 -0.235990 0.550009 0.233972 0.512337 -0.077724 0.671225 0.059373 -1.488424 -0.536016 0.000406 0.246384 -0.486050 -0.950231 -0.997608 -0.297576 0.114324 -0.458245 0.212828 1.350106 -0.209171 -1.099198 0.683300 0.358013 0.510862 0.575017 0.264027 1.522867 -0.704429 0.150282 0.031399 -0.004875 0.601808 0.741677 -0.444529 -0.911632 0.566975 -0.225875 -1.170288 0.558293 0.000653 0.039249 0.409331 -0.136417 -0.526446 -0.862512 1.020144 0.156556 1.314579 -0.551454 1.256635 -0.667016 -0.835217 0.299515 -0.478359 -0.171212 -0.509988 -0.095633 0.069183 0.505300 -0.792607 -0.688699 -0.349085 -0.086908 -0.200848 1.206760 -0.500940 -0.159569 -0.145649 -0.110929 0.418331 0.342001 -0.706501 0.250958 -0.936271 0.325583 0.759949 0.501439 -1.622686 -0.108526 -0.145869 -0.343625 0.376359 0.058802 0.516365 -0.074962 -0.089679 0.605749 -0.254508 -0.038303 -0.258180 -0.652672 0.234245 -0.125585 0.090837 0.184013 1.331311 0.942688 0.347622 -0.220899 0.317634 -0.063476 -0.465556 -0.496797 0.013115 -0.019827 0.182083 0.497062 0.684178 0.369787 0.244916 0.875255 0.431131 -0.414579 0.851571 0.465044 0.993636 -0.520921 -0.350101 0.328152 -0.165068 0.798752 1.110161 -0.131688 -0.727936 0.589429 0.111196 -0.262221 -0.878118 -0.388641 -0.142779 -0.417702 1.319364 0.440065 -0.335649 -0.044042 1.520649 -0.090647 -1.549568 0.858051 0.381330 0.415126 0.039330 -0.376221 0.079691 0.891966 -0.092507 -0.067495 0.315676 0.616676 -0.954512 -0.298357 0.080918 0.625103 0.503916 0.128736 -1.733997 -0.281098 0.430608 1.276712 0.212274 0.918670 -0.402019 -0.104243 -0.000955 0.270787 0.109798 -0.135331 0.275912 -0.559244 -0.152840 -0.884389 0.029811 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.143857 -0.194004 2.482695 -3.529444 -1.697245 -0.579363 5.094709 -3.775252 -2.207068 8.519668 1.050311 -3.091718 -2.081686 2.973616 -0.238388 -1.305622 1.805190 -1.039137 -1.051512 -0.825821 -2.099408 1.442257 -1.426860 -4.817449 2.076010 -0.518633 2.211314 4.752708 -2.730790 2.587398 0.545427 -2.717758 1.751232 7.698965 2.458495 -0.635456 -3.225558 8.841672 -7.894523 7.483872 -6.864270 -7.134638 10.403706 -1.114731 0.654071 -6.120065 -1.064751 4.930350 0.344620 -5.802260 -1.595179 -0.580965 2.985693 -6.356589 -3.891328 5.581764 -6.264704 -0.303260 3.567365 -6.022501 -7.848588 -1.274634 1.931153 2.596956 -7.673996 -5.131371 -0.106276 -2.245480 -0.984333 1.163129 -5.734468 -4.805534 2.885469 1.243347 -1.086704 0.839378 -2.676176 -3.635279 3.433110 1.237207 -4.305080 -3.760656 -0.499410 -4.521364 2.283578 1.950843 6.982509 -9.793285 2.704220 -9.830249 3.160462 -4.659765 3.889294 6.589114 -1.458801 5.855716 0.767853 5.388447 0.299359 -1.292075 3.674215 3.457465 3.844041 1.334750 5.490394 6.445252 -5.347727 -7.847771 -4.982151 -2.677585 2.925908 -2.904876 -7.374757 3.370617 -4.327970 -0.502965 0.227292 -0.918119 -2.197459 8.175038 -9.331515 1.952050 2.608717 -1.596643 2.900935 3.639275 0.157003 0.223744 -0.439341 3.355406 0.465831 2.450390 0.768695 5.978390 -5.071712 -2.302139 -0.095824 2.085450 2.733831 -4.678865 -6.202361 -10.262452 -1.952801 5.057779 -3.532436 3.580310 10.050446 -3.054138 -5.639150 3.378471 -1.132259 -1.502716 2.253488 1.918555 8.478444 -4.998476 0.387886 -0.543546 0.238559 3.878427 10.560572 -2.442030 -5.670859 6.149352 -3.418305 -3.707642 7.165131 0.594258 0.035026 0.411483 0.633257 -1.936770 -3.763430 6.712020 -7.505478 5.846720 -4.433184 7.987891 -3.058496 -1.079658 1.637928 -8.026690 -2.716680 -6.308907 0.230804 -0.537232 5.245964 -4.768242 -4.195337 -2.495320 -2.498908 -1.050320 8.421424 -7.300760 -0.855549 0.193060 -1.745314 6.358195 1.233006 -3.080521 -1.688888 -4.427305 2.296114 3.348107 0.947731 -7.879292 -4.050132 -2.281394 -2.547155 -0.631009 0.897644 5.289647 -4.348580 0.330537 4.788752 -0.027594 -2.572867 -1.220414 -7.799640 2.662990 1.298135 3.265700 2.063328 9.354948 4.298386 5.172641 -0.958038 2.192955 -1.305135 -2.748220 -8.312940 1.972627 0.518028 1.061133 3.248797 4.635054 2.501588 3.323652 4.338092 0.962617 0.683695 6.118462 1.228008 5.748852 -2.997837 -1.744134 3.810193 -0.008458 4.832725 4.712080 1.264558 -5.230534 2.850933 -3.677968 -6.085509 -0.830024 -0.333014 -0.572015 -0.244556 4.093159 6.036856 -0.790208 -1.840849 10.104159 -0.896360 -12.890857 4.421844 2.483207 4.239928 6.501092 -2.458376 5.487916 3.339126 3.810662 3.917100 4.367668 3.278084 -7.185698 0.776531 1.375636 3.504593 6.131288 0.140964 -14.799546 0.049479 0.228498 7.009797 -0.342099 9.281782 -4.933751 3.977765 0.705157 -0.441072 1.553474 -1.279848 3.856148 -0.537410 0.501954 -9.803732 3.157146 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.946951 0.021195 0.725402 -1.333354 -1.062988 0.112624 0.480443 -1.298958 -0.577041 1.537718 0.513623 -0.996466 -0.824813 1.225461 -0.435304 -1.021276 0.202375 -0.489529 -0.251322 -0.426665 -0.550026 0.496152 -0.480368 -1.116268 0.447928 -0.291326 0.356403 1.241109 0.270206 0.188464 -0.308882 -0.726985 0.332201 2.472396 0.862147 -0.324508 -0.397604 3.087579 -1.220310 1.577836 -2.160332 -2.013667 2.717785 -0.332490 -0.066997 -1.902752 -0.697143 1.386512 -1.045113 -0.712128 0.028325 -0.332286 0.575725 -1.441495 -0.759245 1.673362 -2.552238 1.112084 0.978532 -1.163665 -1.636177 -0.575799 0.304222 0.474837 -1.238620 -1.503832 0.197976 0.099215 -0.745932 0.286728 -1.456616 -1.530305 1.955320 0.489715 -0.582063 0.246970 -0.441484 -1.158948 1.061514 -0.454250 -1.723870 -0.919574 0.129619 -0.810090 1.344073 0.457828 1.566846 -3.155535 0.608018 -3.303645 0.883664 -1.616170 1.284452 2.108067 -1.348517 1.449951 0.469084 0.967574 0.553595 -0.046248 1.529126 0.737956 0.777419 0.500370 1.429570 1.410476 -0.993302 -1.624911 -1.115851 -1.172301 0.212378 -0.569603 -2.981079 0.949156 -1.312622 0.421989 -0.215542 0.010490 -0.539331 1.814473 -2.594873 -0.190821 0.510705 -0.505998 1.228981 1.376769 -0.160190 0.322439 -0.453709 1.459068 -0.132581 0.647268 -0.141916 1.601065 -0.835142 -1.706016 -1.490623 0.593141 1.043283 -1.443198 -2.225338 -2.570722 -0.634050 0.792055 -1.008520 1.574195 3.312208 -1.071936 -1.929562 1.659736 -0.215256 0.161309 1.723784 0.539063 2.710338 -1.368671 0.058074 -0.268016 -0.225202 0.573987 1.128840 -0.601425 -1.370918 1.524534 -0.495658 -0.793179 1.818207 0.052561 -0.506942 -0.070250 0.060273 -0.817487 -1.413792 2.200734 -1.074615 1.871295 -0.575283 2.806291 -1.066657 -1.227786 0.654497 -1.685625 -0.475607 -1.207606 -0.059487 -0.123716 1.463141 -1.677508 -1.409250 -0.439377 -0.464549 -0.641131 2.149236 -0.258609 -0.068089 0.333461 -0.148329 1.684259 1.286628 -0.742995 -0.011988 -1.651545 0.765942 1.349510 0.091340 -2.504805 -0.770823 -0.705048 -0.601196 0.358968 0.205314 1.442313 -1.122342 -0.284655 0.844881 -0.017156 0.245241 0.130284 -1.979806 0.870197 -0.091601 0.644788 0.744161 2.537735 1.658855 1.680046 0.242941 0.504871 -0.148129 -0.669451 -1.004735 0.197530 0.470730 0.651656 1.023738 1.584483 0.964506 0.924898 1.375288 0.816746 0.045948 1.955411 0.498042 2.438777 -1.156665 -0.358567 0.475174 -0.115712 1.772241 2.386031 -0.463345 -1.033049 0.941249 -0.356837 -1.020462 -1.385832 -0.089527 -0.321268 -0.275770 1.148023 1.392446 -0.195397 -0.637153 3.040702 -0.206076 -3.503977 1.766585 0.779989 1.097613 1.291720 -0.564447 0.772294 1.091292 -0.038119 1.107101 1.505124 1.227635 -1.980112 -0.070295 0.262214 1.396987 0.897594 0.552234 -3.224431 0.285868 0.740659 2.175544 0.459725 1.841477 -1.430665 -0.045730 0.375069 -0.293722 0.216666 -0.044792 1.076843 -0.787892 0.295047 -1.860968 -0.163253 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 5.662083 -3.111922 3.677610 -9.454588 -6.777243 1.823411 3.147540 -10.494209 -5.078231 14.439641 2.644931 -6.138420 -4.697469 10.600121 -0.891706 -6.459891 1.113945 -2.661255 -0.396752 -0.507831 -5.581246 5.050077 -4.946652 -6.729899 3.384321 -2.067285 2.633122 7.639461 -0.363263 2.616732 -1.433879 -7.594816 -0.708578 17.792526 7.961626 -0.283409 -4.026931 24.046261 -11.557629 17.198977 -13.635959 -15.519545 18.973450 -2.932157 0.969576 -7.391011 -2.994019 10.610850 -5.384259 -8.328220 1.718765 -2.464490 5.219258 -9.047854 -4.203414 8.483044 -15.381740 4.738993 8.088424 -8.987471 -12.315558 -5.624264 1.177661 5.134811 -14.494796 -10.644372 1.411541 0.721953 -4.085418 -1.030605 -11.151141 -11.626405 11.293079 5.253363 -5.045662 1.000753 -3.332246 -6.423613 7.858877 -1.994449 -14.710235 -6.698282 -1.882472 -10.357004 9.234840 5.936021 13.910004 -23.266106 8.234917 -24.500916 6.213362 -9.820188 9.702535 17.318548 -7.382979 11.102482 5.373267 13.081308 4.441594 -2.523784 10.218042 5.071181 1.955567 6.337016 11.158751 11.571458 -10.006275 -12.820946 -10.399014 -8.147942 4.232590 -5.943605 -16.690044 7.945617 -8.019286 3.376261 -2.953011 3.003725 -6.817916 12.639044 -22.724437 -0.070287 2.657443 -3.904841 10.140238 8.750961 -1.444378 2.879597 -3.093077 9.954718 -3.647498 5.081538 -1.801245 13.512871 -7.181113 -2.769056 -9.123932 5.530093 8.759250 -11.864808 -15.571089 -20.902467 -5.555051 8.279998 -8.438670 16.929934 24.958947 -10.669937 -11.066487 12.786088 -5.619817 2.058651 10.297074 4.043026 16.903528 -8.286181 -1.448947 -2.473131 -3.122186 3.478068 11.668930 -1.822568 -10.112770 12.285935 -4.653515 -0.403210 13.884004 1.644079 -6.571009 -8.305338 2.321171 -5.842207 -9.086809 16.389684 -15.529519 10.639307 -4.851450 20.057790 -6.371640 -3.681106 5.134686 -16.531745 -4.675431 -12.606321 -0.940304 -2.520212 10.121076 -12.726467 -9.366910 -3.399948 -3.464707 -6.130419 13.948447 -3.775312 -0.896841 3.885667 -0.314478 17.384929 10.866924 -2.707063 -3.129457 -11.305824 6.563577 8.332425 -1.533793 -14.138258 -7.361829 -4.957306 -5.529362 2.721272 1.378813 10.573761 -11.718575 -0.731086 4.651266 2.426522 2.112595 3.610714 -18.479812 6.669210 2.880713 5.755989 8.572716 17.467852 9.957483 14.459173 4.667657 5.339022 -3.207328 -2.086597 -10.331543 3.452267 3.782638 6.020096 8.705198 12.265515 9.366152 8.282716 9.977318 4.932749 1.967957 14.745734 0.816006 18.857388 -6.647527 -2.922964 4.122501 1.476791 12.747895 15.470980 -4.938701 -5.516914 7.824546 -5.903354 -10.298659 -5.132802 2.548035 -3.159914 0.499131 5.151240 9.885104 0.961288 -6.179770 22.469111 -4.139986 -26.318335 11.254711 6.194901 11.168566 12.214447 -2.195212 8.575416 5.850896 -1.090653 11.462701 12.941404 8.468601 -14.304805 3.529706 2.106373 8.497996 10.787145 4.653771 -22.877851 2.927030 3.720810 15.090321 2.593921 11.974665 -10.488539 1.303357 4.182256 -4.390891 3.416864 -0.548667 9.246523 -1.611458 3.554364 -16.005737 -1.943014 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/graph-coloring.cpp__main = 6.019375 -4.598558 5.337405 -10.435858 -6.899546 -0.270445 -0.118338 -6.898880 -4.216570 8.439313 1.287829 -6.479138 -5.312814 11.579889 -2.966973 -8.176782 1.860392 -1.650512 2.342375 0.201831 -3.296313 6.003550 -1.843727 -4.849460 5.005165 -2.484496 -0.371327 8.782414 7.312160 -0.020101 -0.357042 -6.552954 1.662907 17.146438 5.315544 -3.006999 -2.163758 24.460612 -5.144742 15.220888 -7.907088 -11.080899 18.218045 -2.467652 -1.674629 -8.742154 -7.059425 10.082656 -9.471613 -7.119312 2.878386 0.047346 4.532872 -8.985553 -5.403334 9.193345 -17.228152 5.911972 6.946808 -4.857040 -6.194365 -3.392311 -3.324557 2.660251 -9.091849 -9.975358 -0.085267 0.003393 -7.367342 -2.211750 -7.004707 -6.090706 17.048663 4.679448 -4.895243 3.493750 2.059198 -6.567338 7.926892 -4.826346 -14.588032 -6.610441 -4.697602 -7.015804 12.891456 1.636640 10.699366 -20.805928 7.719762 -21.760879 6.533268 -11.694799 7.624670 17.950275 -12.427500 12.293767 5.483786 10.272898 4.493456 -1.377901 13.718138 7.379635 -0.791343 7.318626 10.423905 8.601868 -6.900665 -10.201578 -9.937931 -7.373369 2.176500 -7.102519 -20.759817 7.141753 -4.929863 4.651429 -1.014106 2.300177 -6.556575 10.445458 -18.300465 0.813242 2.641041 -3.749526 4.686320 9.639391 -1.306743 -1.495693 -3.740313 12.691781 -3.814136 4.249376 2.419298 12.388820 -4.338913 -6.752774 -7.841845 2.653138 5.891232 -10.135373 -15.031323 -18.731298 -3.599076 3.405841 -7.817940 13.877360 24.605186 -7.192618 -8.588192 14.140164 -1.762181 3.178601 11.155480 4.043941 15.071155 -5.246780 -7.646525 -3.409046 -6.920092 4.373461 6.722233 0.298364 -6.797532 11.875420 -3.601604 -3.000299 10.922750 -0.605794 -5.964823 -4.584246 -0.156267 -7.444671 -10.822796 15.576016 -9.374179 9.655622 -3.416102 20.662403 0.815194 -8.844807 4.657610 -10.916728 -2.929504 -12.195655 0.903608 -1.461942 5.812893 -13.446865 -9.699181 -2.657166 -0.714186 -6.925601 12.040319 -0.697515 1.385729 4.023557 1.893619 14.692329 10.266200 -3.651754 0.582470 -12.477109 5.382643 6.925200 -2.204901 -14.969803 -3.765333 -2.621043 -4.317497 3.854605 -1.161343 7.279092 -11.315072 -2.395694 2.979491 0.765766 0.966590 3.399294 -17.748080 5.223614 4.550110 5.873141 10.062083 15.685869 12.790393 11.679862 2.801592 8.291162 -2.874083 0.689386 -9.466071 2.113984 2.111548 5.484477 7.551106 11.699395 9.709830 7.867654 10.271293 8.480666 1.335220 13.735571 1.830796 17.706718 -1.580301 -6.214471 3.823569 1.590515 13.655346 16.656787 -2.695314 -3.722585 9.452496 -3.386047 -5.866293 -9.472649 4.404247 -2.020612 0.603071 8.118411 6.805888 2.011883 -2.848415 16.523897 -5.490947 -24.433093 11.099894 6.792141 9.051045 8.679390 0.208736 7.761993 5.130980 -3.961147 8.435368 10.936449 7.920542 -13.827960 4.523761 2.320446 7.600419 8.232630 8.429324 -20.661934 0.413524 3.234044 12.596069 2.621367 9.781793 -8.755087 -4.751829 6.409656 -1.900511 0.883936 -2.045932 5.451002 -5.148979 2.900387 -8.690358 -3.575180 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = 0.457320 -0.588292 0.599386 -1.308188 -0.902043 0.195451 0.393535 -0.863377 -0.416374 1.331083 -0.005193 -0.112565 -0.690337 0.374626 0.159488 -1.252679 -0.152815 -0.854563 -0.006999 -0.201779 -0.500017 0.659199 -0.490095 -0.370368 0.427935 -0.482127 0.278837 0.788603 0.008404 -0.197317 0.152628 -0.951483 -0.241290 1.835763 0.650818 0.358501 -0.471130 2.656708 0.209513 1.330633 -1.243906 -1.990882 1.660157 -0.485042 -0.141437 -0.469686 0.624712 1.054386 -0.571755 -0.683111 0.376933 -0.063147 0.550782 -0.804361 -0.361772 0.341321 -1.251301 0.290943 0.646904 -1.146974 -1.372648 -0.532467 -0.104824 0.694685 -1.317354 -1.015916 0.441633 0.120646 -0.651429 0.012624 -0.408509 -0.875784 1.709972 0.891105 -0.445031 0.344979 0.209653 -0.628140 0.943694 0.091194 -1.779921 -0.863168 -0.259175 -1.251538 1.309852 0.077836 1.395524 -2.304079 1.258525 -2.445294 0.617916 -0.715607 0.881653 1.894787 -0.877841 1.386455 0.674957 1.673656 0.156089 -1.090630 1.221448 0.517121 0.346450 1.217013 0.967445 0.673419 -1.001669 -1.301204 -1.134572 -0.983430 0.581800 -0.978888 -2.094544 0.862519 -0.250959 0.668386 -0.038469 0.512554 -0.685396 1.284241 -2.661547 -0.336656 0.447948 -0.420878 0.706222 0.498361 -0.204551 0.106952 0.003932 1.417725 -0.663328 0.715120 0.002554 1.449696 -0.230376 1.083151 -0.883287 0.421802 0.786096 -1.006586 -1.451514 -1.519233 -0.822579 1.098484 -0.798620 2.179245 2.669325 -1.147954 -1.352560 1.483607 -0.924740 0.038363 0.711978 0.553792 0.802036 -0.414372 -0.769129 -0.708984 -0.383530 0.438199 1.290652 0.247554 -0.806924 1.664925 -0.606072 1.195414 1.027986 -0.170578 -0.789105 -0.885210 0.048469 -1.081583 -0.983881 1.140837 -1.203633 1.434039 -0.012867 2.065300 -0.512406 -0.383500 0.283090 -1.588196 -0.511311 -1.538977 0.009087 -0.067081 0.622352 -1.356137 -0.947635 -0.463028 -0.557080 -0.730250 1.126285 0.148504 0.169559 0.412371 0.306121 2.433346 1.428189 -0.091735 -0.954806 -1.037898 0.866217 0.492707 -0.176217 -0.227739 -0.974106 -0.080703 -0.643697 0.763698 0.118382 1.092811 -0.970697 0.158049 0.184609 0.405911 -0.142540 0.483897 -2.804048 0.397129 0.891082 0.713781 0.780535 1.485930 1.194999 1.392244 0.585006 0.585873 -0.221490 0.094520 -1.098541 -0.155116 0.424488 0.881505 0.916437 1.393779 1.276335 0.909542 1.592781 1.304502 0.197028 1.485652 -0.538078 2.205669 -0.850953 -0.590339 0.356240 0.666497 1.284212 1.583041 -0.432856 0.301839 1.096428 -0.026648 -0.935304 -0.866226 0.358694 -0.435207 1.020835 0.240554 1.124174 -0.162779 -0.359892 2.018309 -0.368429 -2.510274 1.020094 0.752970 1.297719 1.114081 -0.110974 0.712525 0.655508 -0.655424 1.502319 1.275235 0.610405 -1.631357 0.787855 0.362968 0.918976 0.083818 0.958675 -0.979693 -0.338644 0.058243 1.445652 0.488115 1.312864 -1.034076 -0.150439 0.931951 -0.790025 0.184236 0.469433 0.707856 -0.267763 0.417177 -1.565261 -0.627685 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = 0.110427 0.049811 0.283285 -0.428798 -0.445289 -0.055109 0.160641 -0.141017 -0.106409 0.033641 0.103597 -0.084332 -0.210119 0.459645 -0.117487 -0.361223 -0.134832 -0.425082 -0.184968 -0.096232 -0.081500 0.312946 -0.089232 -0.001428 0.216643 -0.096584 -0.121369 0.249360 0.011095 -0.427139 0.047595 -0.190480 0.005129 0.497411 -0.024942 0.043113 -0.031087 0.879542 -0.036866 0.212319 -0.476752 -0.519672 0.506449 -0.194354 -0.073265 -0.556309 -0.265840 0.329420 -0.061659 -0.043984 0.140812 0.149929 -0.136168 -0.282642 0.074875 0.210558 -0.711839 0.373437 0.241159 -0.235014 -0.258562 -0.111299 -0.158329 -0.153652 -0.048050 -0.310447 0.073338 0.096497 -0.235714 0.063152 0.052271 -0.273277 0.732122 0.148570 0.010092 0.302412 0.173414 -0.216629 0.409326 -0.348979 -0.466044 -0.206248 0.137040 -0.121400 0.432384 -0.012573 0.167336 -0.720901 0.181355 -0.659568 0.187716 -0.457120 0.166636 0.499769 -0.297953 0.463112 0.256245 0.052614 0.211622 0.081457 0.499704 0.112640 0.264146 0.409942 0.236125 0.114833 -0.182019 -0.225127 -0.413508 -0.485457 0.096019 -0.116202 -0.694965 0.257430 0.078749 -0.031982 -0.012211 0.098354 0.104163 0.357627 -0.558986 0.094292 0.361350 -0.126576 0.001761 0.356294 -0.134733 -0.123734 -0.330852 0.386662 -0.283935 0.410658 0.004148 0.334490 0.070030 -0.476324 -0.411379 -0.075627 0.006372 -0.321737 -0.392114 -0.388541 -0.040598 0.161142 -0.313278 0.419293 0.951285 -0.419772 -0.528904 0.609583 0.486109 0.153505 0.227995 0.169290 0.488424 -0.044989 -0.340905 -0.175127 -0.268087 0.208450 -0.202862 0.169350 -0.193352 0.326757 0.081800 -0.449159 0.747402 -0.194575 -0.256257 0.281741 0.120250 -0.366959 -0.412076 0.431440 0.521089 0.654942 0.119872 0.662866 -0.148736 -0.318357 0.114051 -0.188555 0.020650 -0.388514 -0.017545 0.002133 0.133001 -0.305860 -0.277104 -0.159559 -0.310951 -0.295317 0.208805 0.035858 0.213015 0.119616 0.168497 0.096961 0.580672 -0.033917 0.043207 -0.585358 0.247106 0.181065 0.109857 -0.545794 -0.013985 0.004392 -0.106801 0.247922 -0.006891 0.226852 -0.004565 -0.038398 0.101331 -0.083424 -0.021430 0.055151 -0.298034 -0.050553 -0.082509 0.315551 0.099847 0.368358 0.686944 0.399482 0.224154 0.263735 -0.033053 0.023909 0.018563 -0.108765 -0.053651 0.298719 0.314886 0.392244 0.467909 0.219619 0.531472 0.373761 0.004529 0.532765 0.055872 0.902761 -0.290974 -0.249605 -0.042035 0.214465 0.491313 0.649715 -0.071817 0.037881 0.333880 0.234446 -0.153255 -0.413103 0.051563 -0.108624 -0.036248 0.370807 0.233882 -0.150624 0.019076 0.570616 -0.136783 -0.695564 0.357573 0.141566 0.356719 -0.007746 0.150145 0.025594 0.404728 -0.327451 0.155891 0.333254 0.341777 -0.537827 -0.165687 0.088423 0.406423 -0.081119 0.491219 -0.588146 0.120788 0.208216 0.334812 -0.110347 0.196626 -0.287816 -0.367408 0.279113 -0.031657 -0.126417 0.355434 0.101144 -0.341383 0.047610 -0.312229 -0.287725 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.164755 -0.367254 0.404479 -0.858344 -0.931777 0.010513 -0.123693 -0.339062 -0.184565 0.166182 0.103339 -0.287791 -0.460129 1.081990 -0.178177 -0.910084 -0.134387 -0.290253 -0.004153 -0.045519 -0.147086 0.614331 -0.171301 -0.022936 0.340374 -0.270774 -0.223456 0.493463 0.558126 -0.398059 -0.011089 -0.458545 -0.177514 1.015353 0.139098 0.145928 -0.041917 2.045484 -0.022554 0.919047 -0.972571 -0.997611 0.963597 -0.301219 -0.142708 -0.878797 -0.630549 0.592938 -0.669204 -0.063621 0.378060 0.158688 0.025353 -0.426827 0.138980 0.365835 -1.337887 0.741003 0.408364 -0.332191 -0.242770 -0.289665 -0.469350 -0.039852 -0.444942 -0.586928 0.093279 0.266503 -0.569892 -0.075314 -0.048338 -0.416443 1.525453 0.420316 -0.330636 0.420188 0.430530 -0.445850 0.659921 -0.694760 -1.307413 -0.402582 -0.014160 -0.476457 0.983970 0.084483 0.734098 -1.582808 0.689939 -1.669145 0.487855 -0.955487 0.445137 1.270573 -0.901464 0.851922 0.576697 0.527330 0.650283 0.062463 0.971999 0.473561 0.086408 0.798727 0.534812 0.362926 -0.302740 -0.438580 -0.649181 -0.790233 -0.011275 -0.449865 -1.710407 0.450489 0.052108 0.473154 -0.110422 0.390828 -0.129940 0.594838 -1.249562 0.098346 0.407565 -0.280745 0.249177 0.670257 -0.292109 -0.116502 -0.545965 0.921132 -0.638118 0.643743 -0.036497 0.760248 -0.136169 -0.569765 -0.950124 0.024838 0.196493 -0.612010 -0.948732 -0.995274 -0.256274 0.400826 -0.528661 1.160752 2.018538 -0.911148 -0.924821 1.210176 0.173229 0.423436 0.725591 0.307761 0.857374 -0.061676 -0.659518 -0.454542 -0.540371 0.186756 -0.152167 0.356518 -0.363038 0.716798 -0.054412 -0.604308 1.294363 -0.268576 -0.649475 -0.381834 0.120648 -0.741270 -0.729127 1.075307 -0.043285 0.989864 0.111582 1.371495 -0.137562 -0.684082 0.320197 -0.826564 -0.060076 -0.735157 0.012452 -0.038327 0.322216 -0.934873 -0.640790 -0.260915 -0.448917 -0.589082 0.410032 0.355762 0.248712 0.408272 0.400233 1.013908 1.244685 0.077323 -0.013931 -1.075225 0.501551 0.408841 -0.184397 -1.052237 -0.076692 -0.011376 -0.217353 0.423157 0.050050 0.440626 -0.433691 -0.222164 -0.140401 -0.001571 0.316970 0.350021 -1.102006 0.080928 0.153688 0.634992 0.548555 0.723439 1.163924 0.961228 0.521472 0.585294 -0.107580 0.112481 0.126580 -0.076094 0.260329 0.390339 0.539460 0.966470 0.913451 0.463676 0.930777 0.869997 0.053497 0.937279 0.135164 1.851248 -0.340455 -0.551204 -0.029994 0.324138 0.974701 1.507110 -0.394189 0.317474 0.721749 0.285793 -0.181714 -0.974301 0.244924 -0.245365 0.011419 0.578713 0.394229 -0.074091 -0.113060 1.054596 -0.270747 -1.613085 0.811310 0.350679 0.723800 0.209941 0.298229 0.045456 0.559975 -0.835612 0.732149 0.897646 0.534168 -0.890031 -0.183072 0.121300 0.656872 0.311724 0.957247 -0.832069 0.290505 0.497693 0.802852 0.081641 0.400920 -0.621243 -0.835106 0.490134 -0.378005 -0.200261 0.339216 0.065001 -0.469443 0.150706 -0.442628 -0.908626 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 0.843338 -1.446888 1.089664 -2.487105 -2.836957 0.509920 -0.510579 -1.111548 -0.528330 1.305843 0.511005 -0.636614 -0.985775 3.044083 -0.202745 -2.193218 0.089571 -1.279453 0.497118 0.071901 -0.239537 1.670500 -0.398467 -0.017732 0.458905 -0.659289 -0.647291 1.383222 1.613155 -0.615305 -0.322921 -1.321260 -0.992585 2.532180 0.897131 -0.395561 -0.180776 5.989765 -1.057239 2.744660 -2.429449 -2.572531 2.433617 -0.729998 -0.505156 -2.120459 -1.814606 1.725839 -1.080212 -0.799329 1.447445 0.093574 1.004649 -0.720006 -0.157518 0.860890 -3.271406 1.308864 1.012573 -0.648325 -0.273684 -0.701485 -0.883246 0.816399 -2.006817 -1.541367 0.753561 0.257893 -1.206338 -0.968986 -0.475561 -1.172407 3.508080 1.326699 -0.954169 0.441543 1.233382 -1.816105 1.916417 -1.368733 -4.414783 -0.879573 -1.320826 -2.679693 2.829234 -0.309970 2.648580 -4.455662 2.793022 -5.237656 1.202432 -2.382149 1.035067 3.575094 -2.300829 1.788858 1.727065 2.882444 2.182189 -0.714193 2.607969 1.737521 -0.120689 2.454942 1.786540 1.418506 -1.105967 -0.848710 -1.996543 -1.959288 0.190374 -1.719491 -4.641144 1.558436 0.418632 0.571297 -0.324853 0.821378 -0.902592 2.491061 -3.161611 0.628183 0.626447 -0.702360 0.484811 1.962757 -0.949838 -0.019140 -1.214529 2.693973 -2.002616 2.037077 0.272706 2.152064 -1.020917 -0.548828 -2.092995 0.904453 1.033104 -1.711080 -2.607021 -3.287500 -0.476256 0.790243 -1.474563 3.846375 5.630932 -2.825582 -2.362495 3.122202 -0.042304 0.445597 1.923577 0.454005 2.253208 -0.026652 -2.217287 -1.470848 -1.832110 0.001246 0.593213 1.086321 -0.186706 2.206826 -0.632452 -1.289422 4.092901 -0.384510 -2.251998 -1.072229 0.445651 -1.904758 -2.120900 2.798971 -0.896351 1.625889 1.148783 3.654882 0.348786 -1.277590 1.050242 -2.363372 -0.245939 -2.373069 -0.077853 0.066825 0.912988 -2.126318 -1.592207 -1.134434 -1.062371 -1.743833 1.023630 0.715515 1.143029 1.797559 1.236336 3.208151 3.837741 0.710687 -0.374491 -2.575717 1.457766 1.269621 -0.991275 -2.479308 -0.955917 -0.359911 -0.362569 1.127467 0.082984 1.784947 -2.064328 -0.854193 -0.571544 0.476294 0.899203 1.680447 -4.778194 0.475938 0.950658 2.113717 1.767290 2.039512 2.324333 3.269086 1.818999 1.690386 -0.472724 1.088958 -0.421742 -0.546316 1.039842 0.848534 1.473273 2.909601 2.390414 1.728327 2.541800 2.429190 0.434257 2.259747 -0.024706 4.953103 -0.360162 -1.588294 -0.238271 1.043952 2.561174 4.189606 -0.394948 0.925309 1.773649 0.201948 -0.859736 -2.609863 1.290754 -0.810502 1.209102 0.823622 1.690367 0.531930 -0.756016 2.505991 -0.770372 -5.068605 2.142530 1.000505 2.244844 1.767079 0.835553 0.879042 0.533667 -2.273229 3.088900 3.407752 1.138985 -2.088831 -0.061881 0.448922 1.619686 0.815179 2.730087 -2.887867 1.257879 1.055090 1.982868 0.287262 1.810687 -2.392140 -1.988275 1.696162 -1.365075 -0.133576 0.884467 0.352006 -1.547335 0.689745 -1.445154 -1.994105 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.340260 -0.423309 0.651018 -0.782317 -0.918983 -0.099564 0.003894 0.069893 -0.099915 0.188833 0.206169 -0.377669 -0.442750 1.048237 -0.107125 -0.827598 0.103704 -0.437561 0.003292 -0.159467 0.168127 0.556546 0.273846 -0.048197 0.238876 -0.240008 -0.396085 0.673080 0.880747 -0.442551 0.105542 -0.188005 -0.061658 0.578342 -0.176482 -0.399616 -0.067594 1.614745 -0.143065 0.636975 -0.575248 -0.556816 1.031938 -0.273337 -0.111259 -0.872083 -0.955522 0.748084 -0.456305 -0.443645 0.385520 0.421222 0.257557 -0.544145 -0.259845 0.430631 -1.281339 0.550933 0.158838 -0.143269 0.048861 0.044779 -0.409093 0.197687 -0.180693 -0.567760 0.092888 -0.025360 -0.674947 -0.324382 0.059580 -0.051617 1.369261 0.162941 -0.035550 0.388206 0.715387 -0.325762 0.846657 -0.562701 -1.040143 -0.305098 -0.503114 -0.602237 1.008540 -0.413238 0.507580 -1.380714 0.637136 -1.315303 0.673999 -0.980216 0.139324 1.059913 -0.834028 0.804980 0.478095 0.400393 0.635845 0.120090 1.063412 0.488495 0.382941 0.825092 0.528883 0.161518 -0.387832 -0.220166 -0.807298 -0.743370 0.075688 -0.607308 -1.495585 0.587332 0.455848 0.001389 0.313269 -0.016846 -0.030504 0.666036 -0.715491 0.634299 0.556554 -0.213488 -0.294174 0.676152 -0.480279 -0.227378 -0.555500 1.045432 -0.638397 0.776253 0.578339 0.609693 -0.047665 -0.740189 -0.302111 0.290773 0.036595 -0.363733 -0.758822 -0.872025 0.168877 -0.088390 -0.565708 0.849953 1.540351 -0.373069 -0.620310 0.942416 0.586684 0.259662 0.442482 0.058983 0.949656 0.024621 -1.081246 -0.431941 -0.699816 0.400169 -0.002786 0.442255 -0.049027 0.762634 -0.077152 -0.836381 1.231443 -0.408663 -0.586107 0.088800 0.242656 -0.729556 -0.723916 0.809545 0.485460 0.671295 0.395574 1.321158 0.429142 -0.635441 0.455403 -0.266427 0.018713 -0.687617 0.069238 0.121014 -0.025078 -0.565239 -0.564507 -0.647192 -0.379130 -0.484408 0.298318 0.012140 0.605658 0.638168 0.508891 0.430544 0.815822 0.192445 0.046860 -1.158137 0.311474 0.422677 -0.100097 -0.943012 -0.021104 -0.014311 0.100313 0.480858 -0.036778 0.440039 -0.416667 -0.474893 -0.115168 -0.074545 -0.020958 0.321613 -1.088426 -0.169413 0.357881 0.793103 0.353350 0.773170 1.132400 0.522376 0.433827 0.854632 -0.110123 0.558490 -0.171646 -0.216933 -0.065896 0.223120 0.476700 0.730417 0.701095 0.415942 1.129920 0.829941 -0.169206 0.646800 0.077626 1.269247 -0.078361 -0.650411 -0.173184 0.435780 0.939746 1.316612 0.287023 0.080142 0.686787 0.328348 -0.064048 -0.860359 0.242469 -0.277101 0.370162 0.673319 0.315327 0.099606 0.035673 0.501511 -0.155361 -1.458695 0.875533 0.236835 0.756855 0.494891 0.332255 0.289399 0.210506 -0.824808 0.269313 0.798149 0.323019 -0.746914 -0.086728 0.153349 0.579077 0.090251 1.102363 -1.195320 0.168389 0.463744 0.501549 -0.218602 0.461511 -0.598273 -1.058786 0.532816 -0.254322 -0.181436 0.322545 -0.282339 -0.873746 0.095837 -0.247918 -0.504384 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.509935 -0.846739 0.790598 -1.117269 -1.070732 0.089192 -0.072327 -0.278363 -0.170606 0.895035 0.028894 -0.382454 -0.525784 1.365754 -0.115492 -1.127903 0.165736 -0.321054 0.269480 -0.019019 0.042211 0.815028 0.071988 -0.115317 0.268553 -0.423958 -0.174444 0.745137 0.713424 -0.046228 0.078709 -0.615163 -0.309020 1.113715 0.204048 -0.055611 -0.306875 2.300846 -0.127149 1.755483 -1.090850 -1.206993 1.254643 -0.325252 0.142361 -0.864383 -0.719630 0.924595 -0.571682 -0.724058 0.509684 0.280589 0.544583 -0.620210 -0.258375 0.264328 -1.424050 0.438262 0.252761 -0.450971 -0.164946 -0.217744 -0.524124 0.588179 -0.995775 -0.773172 0.070980 0.182482 -0.886313 -0.273284 -0.158228 -0.264263 1.545403 0.570537 -0.519828 0.280858 0.846969 -0.482365 0.999178 -0.766238 -1.634236 -0.549503 -0.845407 -1.071578 1.305797 -0.117704 1.265899 -2.040059 1.363577 -2.047436 0.926423 -1.158479 0.441890 1.713887 -0.902301 1.097090 0.780658 1.342600 0.877079 -0.181655 1.252241 0.986047 0.188587 1.072185 0.947178 0.513364 -0.723271 -0.701241 -0.997267 -0.838491 0.154119 -1.072375 -1.916239 0.645236 0.445277 0.569479 0.134706 0.295530 -0.468080 0.849327 -1.997779 0.360046 0.492126 -0.333208 0.071512 0.564433 -0.529620 -0.054944 -0.485826 1.464099 -0.929499 0.796371 0.491719 1.051211 -0.629930 0.066012 -0.526892 0.495143 0.339743 -0.606357 -1.269368 -1.630442 -0.295896 0.619434 -0.678280 1.676444 2.171850 -0.677586 -0.827438 1.279221 -0.181151 0.107964 0.672992 0.255032 0.831294 -0.033893 -1.223837 -0.725291 -0.733585 0.356743 0.902759 0.563476 -0.353858 1.322749 -0.478655 -0.515215 1.272725 -0.421347 -0.905708 -1.110665 0.109957 -1.025899 -0.623952 1.220551 -1.182995 0.796017 -0.123830 1.825556 0.313833 -0.564538 0.455064 -1.556100 -0.155168 -1.166212 0.214524 0.003673 0.312479 -1.353854 -0.885059 -0.597541 -0.573954 -0.615689 0.593795 -0.500083 0.362557 0.829849 0.647211 2.028710 1.116782 0.323591 -0.345445 -1.148896 0.593562 0.449877 -0.332320 -0.935754 -0.276601 -0.070602 -0.129073 0.398049 0.098800 0.581303 -0.998660 -0.458362 -0.231373 0.014460 0.069399 0.614389 -1.890761 0.011124 0.857367 1.085319 0.719822 1.065856 1.209499 0.966719 0.683216 0.924842 -0.248328 0.463163 -0.544388 0.110467 0.430324 0.048870 0.580432 1.237202 1.016276 0.572918 1.405792 1.308374 0.039818 0.932684 -0.157521 1.642965 -0.198095 -0.719721 0.022914 0.586764 1.192992 1.714474 -0.041348 0.368610 0.988372 0.001083 -0.360791 -0.635529 0.451054 -0.427345 0.571891 0.558859 0.632705 0.180802 -0.155730 1.023840 -0.249158 -2.124535 1.020296 0.492172 1.103190 1.097797 0.294957 0.591333 0.190860 -0.903674 0.936222 1.152032 0.362037 -1.054991 0.112473 0.185440 0.500496 0.916043 1.299462 -1.282736 0.039547 0.497145 1.050444 -0.053278 0.877365 -0.827097 -0.952314 0.726156 -0.656439 -0.158293 0.184626 -0.092096 -0.463850 0.186921 -0.678053 -0.812609 +PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = 0.457320 -0.588292 0.599386 -1.308188 -0.902043 0.195451 0.393535 -0.863377 -0.416374 1.331083 -0.005193 -0.112565 -0.690337 0.374626 0.159488 -1.252679 -0.152815 -0.854563 -0.006999 -0.201779 -0.500017 0.659199 -0.490095 -0.370368 0.427935 -0.482127 0.278837 0.788603 0.008404 -0.197317 0.152628 -0.951483 -0.241290 1.835763 0.650818 0.358501 -0.471130 2.656708 0.209513 1.330633 -1.243906 -1.990882 1.660157 -0.485042 -0.141437 -0.469686 0.624712 1.054386 -0.571755 -0.683111 0.376933 -0.063147 0.550782 -0.804361 -0.361772 0.341321 -1.251301 0.290943 0.646904 -1.146974 -1.372648 -0.532467 -0.104824 0.694685 -1.317354 -1.015916 0.441633 0.120646 -0.651429 0.012624 -0.408509 -0.875784 1.709972 0.891105 -0.445031 0.344979 0.209653 -0.628140 0.943694 0.091194 -1.779921 -0.863168 -0.259175 -1.251538 1.309852 0.077836 1.395524 -2.304079 1.258525 -2.445294 0.617916 -0.715607 0.881653 1.894787 -0.877841 1.386455 0.674957 1.673656 0.156089 -1.090630 1.221448 0.517121 0.346450 1.217013 0.967445 0.673419 -1.001669 -1.301204 -1.134572 -0.983430 0.581800 -0.978888 -2.094544 0.862519 -0.250959 0.668386 -0.038469 0.512554 -0.685396 1.284241 -2.661547 -0.336656 0.447948 -0.420878 0.706222 0.498361 -0.204551 0.106952 0.003932 1.417725 -0.663328 0.715120 0.002554 1.449696 -0.230376 1.083151 -0.883287 0.421802 0.786096 -1.006586 -1.451514 -1.519233 -0.822579 1.098484 -0.798620 2.179245 2.669325 -1.147954 -1.352560 1.483607 -0.924740 0.038363 0.711978 0.553792 0.802036 -0.414372 -0.769129 -0.708984 -0.383530 0.438199 1.290652 0.247554 -0.806924 1.664925 -0.606072 1.195414 1.027986 -0.170578 -0.789105 -0.885210 0.048469 -1.081583 -0.983881 1.140837 -1.203633 1.434039 -0.012867 2.065300 -0.512406 -0.383500 0.283090 -1.588196 -0.511311 -1.538977 0.009087 -0.067081 0.622352 -1.356137 -0.947635 -0.463028 -0.557080 -0.730250 1.126285 0.148504 0.169559 0.412371 0.306121 2.433346 1.428189 -0.091735 -0.954806 -1.037898 0.866217 0.492707 -0.176217 -0.227739 -0.974106 -0.080703 -0.643697 0.763698 0.118382 1.092811 -0.970697 0.158049 0.184609 0.405911 -0.142540 0.483897 -2.804048 0.397129 0.891082 0.713781 0.780535 1.485930 1.194999 1.392244 0.585006 0.585873 -0.221490 0.094520 -1.098541 -0.155116 0.424488 0.881505 0.916437 1.393779 1.276335 0.909542 1.592781 1.304502 0.197028 1.485652 -0.538078 2.205669 -0.850953 -0.590339 0.356240 0.666497 1.284212 1.583041 -0.432856 0.301839 1.096428 -0.026648 -0.935304 -0.866226 0.358694 -0.435207 1.020835 0.240554 1.124174 -0.162779 -0.359892 2.018309 -0.368429 -2.510274 1.020094 0.752970 1.297719 1.114081 -0.110974 0.712525 0.655508 -0.655424 1.502319 1.275235 0.610405 -1.631357 0.787855 0.362968 0.918976 0.083818 0.958675 -0.979693 -0.338644 0.058243 1.445652 0.488115 1.312864 -1.034076 -0.150439 0.931951 -0.790025 0.184236 0.469433 0.707856 -0.267763 0.417177 -1.565261 -0.627685 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = 0.110427 0.049811 0.283285 -0.428798 -0.445289 -0.055109 0.160641 -0.141017 -0.106409 0.033641 0.103597 -0.084332 -0.210119 0.459645 -0.117487 -0.361223 -0.134832 -0.425082 -0.184968 -0.096232 -0.081500 0.312946 -0.089232 -0.001428 0.216643 -0.096584 -0.121369 0.249360 0.011095 -0.427139 0.047595 -0.190480 0.005129 0.497411 -0.024942 0.043113 -0.031087 0.879542 -0.036866 0.212319 -0.476752 -0.519672 0.506449 -0.194354 -0.073265 -0.556309 -0.265840 0.329420 -0.061659 -0.043984 0.140812 0.149929 -0.136168 -0.282642 0.074875 0.210558 -0.711839 0.373437 0.241159 -0.235014 -0.258562 -0.111299 -0.158329 -0.153652 -0.048050 -0.310447 0.073338 0.096497 -0.235714 0.063152 0.052271 -0.273277 0.732122 0.148570 0.010092 0.302412 0.173414 -0.216629 0.409326 -0.348979 -0.466044 -0.206248 0.137040 -0.121400 0.432384 -0.012573 0.167336 -0.720901 0.181355 -0.659568 0.187716 -0.457120 0.166636 0.499769 -0.297953 0.463112 0.256245 0.052614 0.211622 0.081457 0.499704 0.112640 0.264146 0.409942 0.236125 0.114833 -0.182019 -0.225127 -0.413508 -0.485457 0.096019 -0.116202 -0.694965 0.257430 0.078749 -0.031982 -0.012211 0.098354 0.104163 0.357627 -0.558986 0.094292 0.361350 -0.126576 0.001761 0.356294 -0.134733 -0.123734 -0.330852 0.386662 -0.283935 0.410658 0.004148 0.334490 0.070030 -0.476324 -0.411379 -0.075627 0.006372 -0.321737 -0.392114 -0.388541 -0.040598 0.161142 -0.313278 0.419293 0.951285 -0.419772 -0.528904 0.609583 0.486109 0.153505 0.227995 0.169290 0.488424 -0.044989 -0.340905 -0.175127 -0.268087 0.208450 -0.202862 0.169350 -0.193352 0.326757 0.081800 -0.449159 0.747402 -0.194575 -0.256257 0.281741 0.120250 -0.366959 -0.412076 0.431440 0.521089 0.654942 0.119872 0.662866 -0.148736 -0.318357 0.114051 -0.188555 0.020650 -0.388514 -0.017545 0.002133 0.133001 -0.305860 -0.277104 -0.159559 -0.310951 -0.295317 0.208805 0.035858 0.213015 0.119616 0.168497 0.096961 0.580672 -0.033917 0.043207 -0.585358 0.247106 0.181065 0.109857 -0.545794 -0.013985 0.004392 -0.106801 0.247922 -0.006891 0.226852 -0.004565 -0.038398 0.101331 -0.083424 -0.021430 0.055151 -0.298034 -0.050553 -0.082509 0.315551 0.099847 0.368358 0.686944 0.399482 0.224154 0.263735 -0.033053 0.023909 0.018563 -0.108765 -0.053651 0.298719 0.314886 0.392244 0.467909 0.219619 0.531472 0.373761 0.004529 0.532765 0.055872 0.902761 -0.290974 -0.249605 -0.042035 0.214465 0.491313 0.649715 -0.071817 0.037881 0.333880 0.234446 -0.153255 -0.413103 0.051563 -0.108624 -0.036248 0.370807 0.233882 -0.150624 0.019076 0.570616 -0.136783 -0.695564 0.357573 0.141566 0.356719 -0.007746 0.150145 0.025594 0.404728 -0.327451 0.155891 0.333254 0.341777 -0.537827 -0.165687 0.088423 0.406423 -0.081119 0.491219 -0.588146 0.120788 0.208216 0.334812 -0.110347 0.196626 -0.287816 -0.367408 0.279113 -0.031657 -0.126417 0.355434 0.101144 -0.341383 0.047610 -0.312229 -0.287725 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = 0.126868 -0.252417 0.415012 -1.246820 -1.064440 -0.127961 0.461902 -0.756597 -0.310827 0.423018 0.689124 -0.858910 -0.324884 1.778193 -0.109722 -0.939788 0.145110 0.033929 -0.265193 0.212804 -0.164357 0.953463 -0.343881 -0.502538 0.689873 -0.154037 -0.265751 1.030548 0.409367 -0.322434 -0.210187 -0.545610 0.114279 1.765758 0.197313 0.168722 -0.169538 2.492668 -1.283333 1.774382 -1.581358 -1.101518 2.054619 -0.317109 -0.341433 -1.637857 -1.436218 0.901219 -0.543975 -0.843271 0.335789 -0.030699 0.325549 -1.007400 0.118271 1.270984 -1.917497 0.576929 0.969351 -0.805331 -0.793081 -0.361791 -0.345400 -0.154497 -1.240881 -1.134043 -0.063454 0.059337 -0.312752 -0.134971 -0.565004 -1.378512 2.289477 0.368864 -0.526646 0.644404 -0.048064 -1.362440 1.073819 -0.338314 -1.373448 -0.652274 0.246391 -0.377533 1.112998 0.106767 1.233174 -2.493244 0.219252 -2.372504 0.902199 -1.469753 0.958641 1.865795 -1.456378 1.124332 0.621338 0.714650 0.714829 0.588356 1.466539 0.634998 0.410454 0.522961 1.048496 1.019673 -0.848774 -1.223014 -1.105263 -1.283635 0.458323 -0.558267 -2.689387 0.669642 -0.543529 0.184606 -0.128661 0.041876 0.130588 1.691683 -1.330527 0.605794 0.893992 -0.421556 0.346040 1.513393 -0.143706 -0.296935 -0.971095 1.146656 -0.555578 0.893357 -0.285117 1.256534 -0.811722 -1.555945 -0.758035 -0.035447 0.163032 -1.345366 -1.509471 -1.992403 -0.146698 0.711889 -0.903510 0.842210 2.765471 -1.280078 -1.549409 1.677492 1.160865 0.209238 0.909120 0.398932 2.099632 -0.839164 -0.297912 -0.617992 -0.578787 0.492040 0.752490 0.045948 -1.139190 0.915131 -0.408133 -2.503478 3.018787 -0.110676 -0.570567 0.232442 0.305703 -0.835641 -1.196163 1.953708 -0.096471 1.722681 -0.705959 2.205931 -0.640595 -0.970814 0.656517 -0.791143 -0.432810 -1.408642 -0.237203 0.260714 0.896231 -1.112875 -0.941761 -0.423567 -0.575639 -0.729635 1.167990 -0.377435 0.074925 0.237619 0.009436 0.665084 1.262075 -0.318695 0.144175 -1.468942 0.693464 0.932352 -0.173728 -2.202974 -0.142914 -0.595452 -0.405104 0.009969 -0.012733 0.964752 -0.844156 -0.336383 0.375875 -0.288257 0.168398 -0.046236 -1.589164 0.426250 -0.284723 0.763270 0.647041 1.618277 1.793925 1.396100 0.383638 0.674682 -0.143054 -0.226887 -0.915704 0.408434 0.034671 0.574648 0.981631 1.489237 1.149552 0.738505 1.264403 0.604542 0.559243 1.702933 0.662655 2.361436 0.009525 -0.652472 0.432541 0.073173 1.621878 2.135261 -0.088329 -0.284123 0.855281 0.177993 -0.910525 -1.157688 0.120649 -0.182772 -0.883259 1.357521 0.386735 -0.117142 -0.395915 2.248630 -0.330796 -2.551848 1.221176 0.413270 1.117653 0.510487 0.111794 0.625178 1.065687 -0.386384 0.950952 1.057090 1.276132 -1.571943 -0.671855 0.138927 0.892379 1.406165 1.016319 -2.385334 0.607028 0.626073 1.597293 -0.147381 1.157903 -0.847403 -0.194716 0.284403 -0.165494 -0.112568 -0.166371 0.282880 -0.692913 -0.014671 -1.726120 -0.577997 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = -0.245918 -0.023666 0.332390 -0.607996 -0.308350 -0.286022 0.815732 -0.049226 -0.067452 -0.291638 0.378420 -0.392194 -0.490942 0.643695 0.145784 -0.448613 0.177939 -0.143909 -0.363755 0.068622 0.037339 0.359890 0.008178 -0.268575 0.453716 -0.055000 -0.145834 0.862733 0.273623 -0.370515 0.127858 -0.094383 0.265485 0.694310 -0.197861 0.222286 -0.100577 0.986113 -0.780627 0.812846 -0.600183 -0.279681 1.170827 -0.160835 -0.512682 -1.222865 -0.816447 0.395924 -0.399830 -0.495858 0.092084 0.190086 0.140278 -0.676033 0.028468 0.990885 -0.941910 0.105037 0.390380 -0.429050 -0.338498 -0.030516 -0.316224 -0.282429 -0.412495 -0.489987 -0.114246 -0.488447 -0.197529 0.048326 -0.087800 -0.441921 1.299446 0.059012 -0.002174 0.523773 0.015979 -0.626363 0.502768 0.133538 -0.276924 -0.363874 0.228135 0.045077 0.507798 -0.266830 0.200601 -0.959700 -0.562876 -0.729687 0.446633 -0.832040 0.306238 0.630551 -0.542253 0.750596 0.059147 -0.327914 -0.164459 0.239053 0.593732 0.150765 0.622215 0.198212 0.547229 0.271252 -0.460519 -0.759075 -0.658734 -0.520658 0.333341 -0.320108 -1.291561 0.208850 -0.210137 -0.275220 0.239637 -0.163523 0.234901 0.803194 0.057651 0.984808 0.646250 -0.184704 -0.163411 0.889362 0.018688 -0.399666 -0.379629 0.446685 -0.076702 0.726957 -0.101465 0.477848 0.043168 -1.028372 0.189936 -0.277200 -0.203865 -0.388591 -0.530408 -0.631328 0.012358 0.248845 -0.344817 -0.232568 1.130186 -0.350060 -0.750463 0.641867 1.098942 0.349372 -0.098091 0.212948 0.971715 -0.378967 -0.171056 -0.359807 -0.239606 0.538379 0.808805 -0.029961 -0.615088 0.382984 -0.191551 -1.755090 1.630415 -0.183106 0.016596 0.879474 0.034601 -0.488266 -0.830208 0.909009 0.687420 1.118886 -0.353045 0.891173 -0.249544 -0.556658 0.253143 0.232275 -0.108560 -0.900910 -0.200875 0.347936 0.138021 -0.274042 -0.442526 -0.516980 -0.155860 -0.191610 0.541920 -0.588938 0.039088 -0.144368 -0.003644 -0.321117 0.314507 -0.365804 0.102861 -0.796783 0.274054 0.289030 0.241168 -1.146993 0.149517 -0.059891 -0.196159 0.060601 -0.021271 0.377304 -0.079619 -0.089678 0.435576 -0.335616 -0.367669 -0.295475 -0.992446 0.005555 0.009759 0.174590 0.182147 0.690337 1.086914 0.266305 -0.146076 0.447740 -0.062328 -0.008630 -0.840588 0.041783 -0.338125 0.311024 0.402595 0.543220 0.446351 0.204458 0.712071 0.314003 0.157305 0.654403 0.625436 0.874797 0.393682 -0.577355 0.409009 0.025419 0.640014 0.693580 0.436582 -0.272748 0.479494 0.410845 -0.357338 -0.759365 -0.193885 -0.076993 -0.450155 1.337421 -0.016371 -0.304446 0.086380 0.944725 -0.131875 -1.115459 0.356781 0.168767 0.451763 -0.075547 0.023407 0.254748 0.740461 -0.127977 0.177613 0.132098 0.537884 -0.702425 -0.428755 0.081441 0.248841 0.622401 0.384157 -1.505633 -0.162630 0.018277 0.758192 -0.153981 0.788344 -0.178488 0.064468 0.012593 0.147346 -0.077076 -0.141813 -0.096591 -0.518196 -0.217151 -1.057946 0.023138 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.746676 -0.931564 1.920222 -4.460661 -4.440600 0.774158 -0.620126 -3.846447 -1.782602 4.015155 1.751234 -2.400084 -1.138629 5.518201 -0.945632 -3.556194 -0.258226 -1.438879 -0.130794 -0.625692 -1.773087 2.874105 -2.075213 -1.495173 1.589077 -1.070627 -0.194144 2.367487 0.818999 -0.778200 -0.853460 -2.911456 -0.761613 7.099992 2.598699 -0.491265 -0.646089 10.139130 -2.873535 4.889490 -5.567914 -5.836838 6.500608 -1.360634 -0.010420 -2.901959 -2.603320 3.980251 -2.691070 -1.464807 1.905824 -0.661766 1.465256 -2.760808 -0.334972 2.488950 -7.005437 3.450285 3.442966 -3.016260 -3.619570 -2.092004 -0.460282 0.832636 -3.605234 -3.919410 0.954422 1.755868 -1.352367 -0.885365 -2.739230 -4.907727 6.091088 2.143237 -1.731252 1.189368 -0.053153 -3.216326 3.807557 -2.277540 -6.836267 -2.503299 -0.064959 -3.621263 4.675312 1.591172 4.863960 -9.445004 3.540214 -10.104824 2.515332 -3.934325 3.624281 7.200500 -4.654791 3.832418 3.094280 3.940824 3.268672 -0.135614 5.143322 1.613333 0.174708 3.365268 3.728261 3.885310 -2.981041 -3.391510 -4.000203 -4.536935 0.943395 -2.105321 -7.057257 3.342974 -2.071637 1.126453 -1.599187 1.135106 -1.573466 4.849615 -7.486047 -1.010536 1.692405 -1.663465 3.060802 4.045865 -1.050751 0.606801 -2.616396 4.570292 -2.924255 2.463323 -1.049525 5.177232 -1.884049 -3.226979 -5.834348 1.589791 2.839437 -5.102659 -6.197690 -7.357273 -1.426148 1.917337 -3.603847 7.050824 10.718369 -5.368153 -5.336353 6.584048 0.434058 0.832193 5.216634 1.637260 6.500021 -2.366300 -1.756075 -1.987105 -2.602946 0.725393 0.525859 0.452859 -2.850936 4.560309 -0.690271 -1.304086 6.899826 0.059173 -3.672947 -2.190345 1.660184 -2.912645 -3.709573 6.119280 -1.710765 4.317077 -0.161491 8.513200 -2.390267 -3.134841 2.207366 -4.965638 -1.369281 -3.800572 -0.692193 -0.362917 3.518249 -4.588523 -3.702459 -1.189962 -1.799446 -3.331515 3.847779 1.394069 0.764379 2.234891 0.735587 4.995269 6.427575 -0.122061 -0.125331 -5.131287 2.732467 3.636161 -0.746352 -5.885350 -1.911392 -1.827838 -1.745259 1.627349 0.322340 4.078984 -3.971214 -0.811248 0.839319 0.553725 2.030527 2.042612 -6.085732 2.351920 -0.361823 2.735995 3.300687 5.947220 4.949215 6.415981 3.070139 2.307180 -1.086269 -0.321157 -1.006926 0.417137 1.551623 2.954920 3.790918 5.074333 4.802017 3.303917 4.374289 2.901341 0.891531 6.272072 -0.059444 9.197772 -2.474841 -0.940114 0.320217 1.085226 5.859461 7.947507 -2.423146 -0.924925 3.398242 -0.556373 -2.876376 -4.097576 1.654220 -1.234052 -0.132953 1.435929 3.386093 0.083458 -2.339907 8.234840 -1.686819 -9.413684 5.232346 2.245375 4.436628 3.022205 0.410627 1.770286 2.437443 -2.726442 4.559658 5.598766 4.202678 -5.792185 0.279717 0.752547 4.277385 2.779017 4.003667 -7.034021 2.440243 2.599227 4.873219 0.783336 3.288316 -4.261314 -2.167707 2.265146 -1.960924 0.221248 1.212711 2.679746 -2.017817 1.825337 -4.129144 -2.893896 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = 0.082222 -0.164656 0.198893 -0.362966 -0.224229 0.049208 0.118918 -0.226499 -0.048932 0.039612 0.123627 -0.120375 -0.012130 0.528009 -0.030562 -0.223702 0.041636 -0.072312 -0.072973 0.119208 0.011790 0.221574 -0.086951 -0.108837 0.074673 -0.070616 0.034893 0.222169 -0.163035 -0.058090 -0.092792 -0.196993 -0.030249 0.454971 0.107864 0.218717 -0.106189 0.651414 -0.218821 0.750567 -0.460649 -0.364439 0.395039 -0.110154 -0.013484 -0.463744 -0.376570 0.199331 0.043929 -0.296401 0.094896 -0.018156 0.029914 -0.209609 0.049775 0.188390 -0.396867 0.000373 0.186431 -0.219138 -0.176127 -0.133900 -0.086874 0.009713 -0.451933 -0.242052 0.032410 0.093862 -0.119843 0.061721 -0.100783 -0.383413 0.606708 0.180985 -0.155008 0.108845 0.130625 -0.341514 0.305528 -0.094264 -0.402464 -0.169442 -0.076648 -0.190111 0.347505 0.028131 0.394660 -0.638386 0.252015 -0.630499 0.235511 -0.415683 0.178778 0.467722 -0.252010 0.282989 0.228534 0.463376 0.144094 0.147791 0.314450 0.304690 0.030865 0.152188 0.463644 0.173524 -0.222047 -0.366597 -0.305450 -0.350619 0.160887 -0.292328 -0.718086 0.132666 0.009648 0.099065 -0.145598 0.167494 0.033323 0.349587 -0.590784 0.222078 0.256646 -0.103574 0.039308 0.268552 -0.102938 -0.022793 -0.246347 0.310011 -0.208224 0.234107 -0.038709 0.283797 -0.313115 -0.124439 -0.153773 0.030519 0.067102 -0.281907 -0.411542 -0.550555 -0.131636 0.469710 -0.193961 0.379962 0.689800 -0.303896 -0.385321 0.387472 0.384630 -0.037498 0.168163 0.158922 0.415062 -0.152903 -0.129636 -0.202123 -0.150729 0.084643 0.168762 0.043706 -0.250672 0.349234 -0.184537 -0.759954 1.013082 -0.150311 -0.185437 0.000507 0.008334 -0.281920 -0.257932 0.509107 -0.190237 0.462825 -0.211713 0.538152 -0.148412 -0.102700 0.070167 -0.438019 -0.080382 -0.457635 0.033714 -0.045627 0.313357 -0.382059 -0.280872 -0.056416 -0.300041 -0.125106 0.296088 -0.259837 0.012776 0.098390 0.057029 0.379781 0.364522 -0.010616 -0.060411 -0.312710 0.215034 0.207321 -0.028572 -0.408469 -0.045131 -0.132401 -0.088676 -0.146326 0.056781 0.191964 -0.304948 -0.071892 0.028540 -0.102786 -0.034483 0.044839 -0.481817 0.010075 0.075524 0.291695 0.166161 0.344153 0.480143 0.368217 0.173777 0.109353 -0.047536 -0.030875 -0.373389 0.098993 0.074368 0.101235 0.185980 0.413368 0.270327 0.166902 0.379821 0.286251 0.268965 0.392999 0.163969 0.563298 0.077047 -0.168304 0.090700 0.073212 0.403927 0.552837 -0.018859 0.134383 0.214315 0.016099 -0.295789 -0.184338 0.015193 -0.060029 -0.194602 0.352256 0.159073 0.000420 -0.097103 0.540819 -0.039689 -0.642566 0.148130 0.126044 0.278908 0.319229 -0.008766 0.260523 0.239294 -0.044373 0.335925 0.241463 0.253672 -0.407559 -0.180310 0.041521 0.106266 0.456199 0.293367 -0.447869 0.207713 0.104858 0.453263 -0.109114 0.270811 -0.262165 0.059449 0.122035 -0.110435 -0.044634 0.043181 0.136855 -0.076770 -0.101532 -0.548670 -0.235824 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = 7.955824 -3.177625 4.477924 -10.968207 -6.260029 0.526263 2.838254 -10.386341 -5.972086 15.230771 1.652879 -6.913757 -5.652414 12.083427 -2.287171 -6.882840 1.931650 -3.964649 0.955121 0.421724 -5.066838 5.689275 -3.521430 -7.091572 4.023056 -1.428067 2.368655 8.204030 2.905654 1.315089 -1.468481 -8.284485 1.799113 19.112283 8.287804 -2.927018 -5.192975 26.219332 -11.048184 18.418918 -11.354889 -15.064525 20.656298 -2.897975 -0.775952 -9.961114 -4.396831 12.348764 -5.066702 -11.021027 1.903547 -1.231533 5.376591 -10.676719 -7.199752 10.579902 -16.900019 5.347980 8.934388 -7.363391 -10.540351 -5.067247 0.851275 5.824375 -14.037155 -11.524086 0.676156 -1.949161 -7.182950 -2.314537 -11.874189 -9.651783 13.648272 5.685307 -5.652609 1.387232 -2.461847 -6.707889 8.598476 -4.174723 -15.493241 -7.150020 -4.964041 -9.186345 10.728306 4.826753 13.644284 -24.228072 9.139978 -25.042062 6.442212 -11.487092 9.381305 18.751070 -8.696828 12.073888 5.034084 14.089443 4.897047 -3.951163 12.360144 7.306620 0.747073 6.701899 12.308585 12.274577 -10.151531 -13.678351 -11.224813 -7.929038 4.740668 -6.907594 -19.072324 9.070690 -7.533403 2.738075 -2.054031 1.928762 -8.676940 12.410307 -24.281762 -0.718597 2.035768 -4.022273 8.863404 11.013250 -1.151866 1.489842 -2.949783 11.480419 -2.547188 5.422900 1.785586 14.560990 -7.724363 -4.491915 -7.545063 5.417586 9.273108 -12.297400 -16.384318 -23.631063 -4.822420 6.043453 -9.561217 16.540921 27.009079 -9.518825 -9.850052 13.689293 -5.264665 1.721268 10.890830 3.651845 19.050829 -8.219691 -4.885869 -1.058355 -5.552290 5.163730 13.366055 -1.521136 -9.447531 13.505838 -6.113066 -0.967557 9.989222 1.780092 -6.601505 -6.087346 0.927538 -6.679424 -11.722526 16.857948 -17.101469 9.268534 -5.048124 21.673940 -2.604799 -4.832911 5.364810 -16.022044 -4.653164 -15.293944 -0.115509 -2.742396 10.209395 -14.531964 -9.464985 -2.925723 -2.336057 -7.272992 15.780722 -7.274028 -0.007870 3.840127 0.586662 19.224984 10.855528 -4.522189 -1.510038 -12.552852 6.605171 8.594389 -0.976036 -16.402195 -7.741513 -5.297931 -6.046120 3.579784 -1.279537 9.609600 -13.237798 -1.492338 5.972934 1.629956 0.515620 3.666950 -19.977355 6.645304 4.626506 7.403692 10.268354 19.787852 9.686013 15.054208 4.004376 7.232836 -3.855537 -1.223096 -14.041414 3.215209 2.368971 5.662804 9.516915 12.350491 9.919550 9.330424 11.602709 5.977427 0.832918 15.735399 0.796689 18.556326 -4.470111 -5.405715 4.902543 1.036923 13.998702 16.746165 -3.930665 -7.512900 9.530063 -8.000572 -10.068054 -5.804434 4.403144 -2.808095 1.393492 7.787315 11.580311 2.866839 -5.234095 21.516268 -6.812840 -29.472658 11.541340 7.363126 11.402253 14.487428 -2.099346 11.410254 4.847856 -0.280026 10.008088 13.716551 9.116627 -15.209308 6.203088 2.442190 8.347749 10.813419 5.380400 -27.915655 1.588321 3.482387 15.966246 2.547621 13.156859 -11.582712 0.744045 6.716365 -1.266248 4.121113 -2.770930 10.331966 -2.910077 2.760785 -13.950208 0.708062 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.057188 -0.124583 0.184027 -0.448449 -0.525744 0.102886 -0.164865 -0.275453 -0.093735 -0.134276 0.161898 -0.125558 -0.264496 0.543746 -0.108314 -0.514810 -0.107957 -0.060302 -0.010246 0.035089 -0.078920 0.286835 -0.157524 0.024815 0.100135 -0.105382 -0.125282 0.189345 0.294365 -0.232137 -0.164485 -0.248109 -0.114236 0.550337 0.160534 0.165864 0.026105 0.949183 0.120227 0.473232 -0.551551 -0.454429 0.377076 -0.146163 -0.034770 -0.499274 -0.368862 0.281547 -0.469646 0.021942 0.307260 -0.016533 -0.004684 -0.095024 0.196015 0.173612 -0.687395 0.483136 0.246800 -0.148274 -0.008071 -0.162631 -0.283106 -0.057894 -0.076395 -0.282409 0.024398 0.295739 -0.233241 -0.042550 -0.045982 -0.362258 0.936843 0.223223 -0.255201 0.160549 0.234578 -0.230773 0.333324 -0.421522 -0.665082 -0.161648 0.040094 0.000200 0.530814 0.096314 0.292240 -0.786642 0.206622 -0.869063 0.261805 -0.457977 0.247404 0.597511 -0.505991 0.292966 0.381400 0.062264 0.385611 0.174969 0.485970 0.168707 -0.029637 0.314597 0.287592 0.091332 -0.089011 -0.183441 -0.286215 -0.491077 -0.047529 -0.133762 -0.900824 0.191998 0.005368 0.406429 -0.171034 0.245098 0.047061 0.127779 -0.582198 -0.010091 0.192820 -0.138174 0.248933 0.400354 -0.159837 0.025544 -0.317334 0.465892 -0.391576 0.297768 -0.130831 0.364203 0.033893 -0.488963 -0.703039 0.046272 0.174859 -0.339749 -0.502892 -0.439879 -0.105655 0.211575 -0.265887 0.464794 0.974959 -0.517015 -0.471662 0.661198 0.202161 0.219103 0.469263 0.172557 0.486929 -0.055125 -0.252840 -0.237638 -0.333558 -0.051367 -0.284507 0.181140 -0.222192 0.328133 0.033290 -0.472297 0.624601 -0.148057 -0.419603 -0.136285 0.027408 -0.346759 -0.337107 0.523690 0.104943 0.468737 0.055316 0.705727 -0.170850 -0.407368 0.139136 -0.265772 -0.009702 -0.245153 -0.046852 0.045748 0.183525 -0.528153 -0.305155 -0.055994 -0.221995 -0.330901 0.184031 0.325268 0.057323 0.253036 0.201815 0.388648 0.703260 0.107576 0.034380 -0.489798 0.292061 0.180822 -0.133641 -0.533595 0.000898 -0.096282 -0.089159 0.226194 0.026164 0.202181 -0.136084 -0.128939 -0.104157 -0.090757 0.305985 0.257505 -0.244367 0.024885 0.023343 0.254663 0.268619 0.334567 0.581605 0.561419 0.387128 0.242704 -0.013090 0.061163 0.218374 -0.046354 0.153792 0.246820 0.279451 0.395722 0.472888 0.183542 0.446025 0.415715 0.155128 0.519869 0.106783 0.915929 -0.159790 -0.191469 -0.051413 0.113062 0.522487 0.808896 -0.371475 0.271369 0.302178 0.183483 -0.057402 -0.481299 0.163861 -0.114669 -0.216760 0.366268 0.177295 0.038623 -0.163487 0.596634 -0.144686 -0.677080 0.405001 0.153769 0.337548 0.101456 0.166501 -0.035433 0.244993 -0.454492 0.345205 0.433545 0.373505 -0.465158 -0.196604 0.031621 0.275521 0.171953 0.493539 -0.251352 0.109801 0.326352 0.461489 0.066041 0.029618 -0.309794 -0.447758 0.249339 -0.216999 -0.103165 0.127119 0.085514 -0.171505 0.007680 -0.159340 -0.547660 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.195562 -0.616264 0.413270 -0.830208 -0.683291 0.305970 -0.344119 -0.449351 -0.123633 0.015920 0.148668 -0.029143 -0.170208 0.793294 0.007325 -0.826178 -0.005644 -0.176400 0.134962 0.024794 -0.131084 0.459073 -0.253572 0.012994 0.170948 -0.365178 -0.106365 0.436630 0.279400 -0.196015 -0.118671 -0.496224 -0.495569 0.996739 0.342880 0.217726 0.035074 1.778713 0.175607 0.899820 -0.618258 -0.867035 0.726654 -0.298823 -0.171762 -0.169209 -0.468279 0.443572 -0.569210 -0.131440 0.502700 -0.057142 0.256490 -0.200875 0.076669 0.090360 -0.972965 0.241774 0.310834 -0.319896 -0.282472 -0.351303 -0.340767 0.107670 -0.624755 -0.469256 0.320949 0.412284 -0.343328 -0.205790 -0.078282 -0.590777 1.339574 0.563708 -0.253224 0.221302 0.557474 -0.454748 0.619686 -0.074334 -1.300604 -0.378699 -0.346846 -0.899243 1.117766 -0.088518 0.873386 -1.411561 0.940325 -1.579262 0.387977 -0.723087 0.443695 1.195278 -0.854639 0.636053 0.749386 1.126788 0.346438 -0.184249 0.923216 0.375568 -0.312443 0.773299 0.793992 0.119496 -0.334498 -0.362174 -0.670039 -0.711722 0.086905 -0.765802 -1.429953 0.447683 0.038871 0.369991 -0.325535 0.516594 -0.273497 0.574389 -1.248828 0.193912 0.249872 -0.270005 0.219429 0.444463 -0.327365 -0.020620 -0.373154 0.923111 -0.832619 0.429808 -0.141689 0.711585 -0.091544 0.223787 -0.846445 0.173814 0.397981 -0.636012 -0.980170 -0.788262 -0.363725 0.599339 -0.398976 1.491822 1.727546 -0.824540 -0.723083 1.095062 0.012365 0.278351 0.750785 0.355856 0.539235 -0.020902 -0.669090 -0.664917 -0.534288 -0.000135 -0.501289 0.368761 -0.103437 0.864872 -0.107199 0.106067 1.640139 -0.342414 -0.760068 -0.457489 0.152202 -0.697349 -0.690878 0.976480 -0.189358 0.705679 0.335536 1.320001 -0.055819 -0.416069 0.234567 -0.721778 -0.122344 -0.787138 0.015318 -0.222812 0.302166 -0.757120 -0.668414 -0.269984 -0.379990 -0.463218 0.344750 0.728780 0.298194 0.536048 0.356289 0.949535 1.258764 0.309326 -0.285314 -0.819485 0.501151 0.479788 -0.379692 -0.275736 -0.168144 -0.029576 -0.143876 0.237010 0.154431 0.537916 -0.756469 -0.217838 -0.307876 0.301561 0.329184 0.581905 -1.547767 0.132843 0.409691 0.427748 0.655410 0.587400 1.008658 0.926261 0.670835 0.393813 -0.093138 0.351533 -0.178443 -0.172792 0.256678 0.713601 0.437936 0.923878 0.849592 0.511329 0.771634 0.937497 0.485584 0.821640 0.053077 1.588752 -0.026339 -0.422421 -0.097841 0.371857 0.929965 1.324249 -0.355901 0.620343 0.613310 0.305036 -0.348112 -0.955218 0.389992 -0.251704 0.295914 0.137845 0.317728 0.117046 -0.326760 1.011020 -0.158110 -1.409207 0.594719 0.363647 0.717418 0.608862 0.259015 0.232791 0.256674 -0.786202 0.942159 0.819348 0.415403 -0.833565 0.313920 0.164387 0.484481 0.153867 0.927322 -0.263922 0.456989 0.212643 0.701779 0.213041 0.237693 -0.550058 -0.540407 0.506130 -0.652782 -0.079694 0.430594 0.204468 -0.348457 0.231244 -0.637469 -0.897066 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = 0.082222 -0.164656 0.198893 -0.362966 -0.224229 0.049208 0.118918 -0.226499 -0.048932 0.039612 0.123627 -0.120375 -0.012130 0.528009 -0.030562 -0.223702 0.041636 -0.072312 -0.072973 0.119208 0.011790 0.221574 -0.086951 -0.108837 0.074673 -0.070616 0.034893 0.222169 -0.163035 -0.058090 -0.092792 -0.196993 -0.030249 0.454971 0.107864 0.218717 -0.106189 0.651414 -0.218821 0.750567 -0.460649 -0.364439 0.395039 -0.110154 -0.013484 -0.463744 -0.376570 0.199331 0.043929 -0.296401 0.094896 -0.018156 0.029914 -0.209609 0.049775 0.188390 -0.396867 0.000373 0.186431 -0.219138 -0.176127 -0.133900 -0.086874 0.009713 -0.451933 -0.242052 0.032410 0.093862 -0.119843 0.061721 -0.100783 -0.383413 0.606708 0.180985 -0.155008 0.108845 0.130625 -0.341514 0.305528 -0.094264 -0.402464 -0.169442 -0.076648 -0.190111 0.347505 0.028131 0.394660 -0.638386 0.252015 -0.630499 0.235511 -0.415683 0.178778 0.467722 -0.252010 0.282989 0.228534 0.463376 0.144094 0.147791 0.314450 0.304690 0.030865 0.152188 0.463644 0.173524 -0.222047 -0.366597 -0.305450 -0.350619 0.160887 -0.292328 -0.718086 0.132666 0.009648 0.099065 -0.145598 0.167494 0.033323 0.349587 -0.590784 0.222078 0.256646 -0.103574 0.039308 0.268552 -0.102938 -0.022793 -0.246347 0.310011 -0.208224 0.234107 -0.038709 0.283797 -0.313115 -0.124439 -0.153773 0.030519 0.067102 -0.281907 -0.411542 -0.550555 -0.131636 0.469710 -0.193961 0.379962 0.689800 -0.303896 -0.385321 0.387472 0.384630 -0.037498 0.168163 0.158922 0.415062 -0.152903 -0.129636 -0.202123 -0.150729 0.084643 0.168762 0.043706 -0.250672 0.349234 -0.184537 -0.759954 1.013082 -0.150311 -0.185437 0.000507 0.008334 -0.281920 -0.257932 0.509107 -0.190237 0.462825 -0.211713 0.538152 -0.148412 -0.102700 0.070167 -0.438019 -0.080382 -0.457635 0.033714 -0.045627 0.313357 -0.382059 -0.280872 -0.056416 -0.300041 -0.125106 0.296088 -0.259837 0.012776 0.098390 0.057029 0.379781 0.364522 -0.010616 -0.060411 -0.312710 0.215034 0.207321 -0.028572 -0.408469 -0.045131 -0.132401 -0.088676 -0.146326 0.056781 0.191964 -0.304948 -0.071892 0.028540 -0.102786 -0.034483 0.044839 -0.481817 0.010075 0.075524 0.291695 0.166161 0.344153 0.480143 0.368217 0.173777 0.109353 -0.047536 -0.030875 -0.373389 0.098993 0.074368 0.101235 0.185980 0.413368 0.270327 0.166902 0.379821 0.286251 0.268965 0.392999 0.163969 0.563298 0.077047 -0.168304 0.090700 0.073212 0.403927 0.552837 -0.018859 0.134383 0.214315 0.016099 -0.295789 -0.184338 0.015193 -0.060029 -0.194602 0.352256 0.159073 0.000420 -0.097103 0.540819 -0.039689 -0.642566 0.148130 0.126044 0.278908 0.319229 -0.008766 0.260523 0.239294 -0.044373 0.335925 0.241463 0.253672 -0.407559 -0.180310 0.041521 0.106266 0.456199 0.293367 -0.447869 0.207713 0.104858 0.453263 -0.109114 0.270811 -0.262165 0.059449 0.122035 -0.110435 -0.044634 0.043181 0.136855 -0.076770 -0.101532 -0.548670 -0.235824 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 4.576751 -1.898064 3.413320 -6.829793 -3.449961 -1.201132 0.214278 -3.617808 -2.167737 3.512216 0.599380 -4.343494 -2.819609 8.901308 -3.242305 -3.999211 1.686576 -2.307381 1.715244 1.310640 -0.842237 4.116895 -0.080281 -2.448726 3.159166 -0.637523 -0.449211 5.330240 6.039540 -1.553504 -1.331096 -3.508832 2.597283 9.857902 2.744090 -3.581261 -1.099772 14.353597 -3.631898 9.568115 -3.312389 -4.145240 10.367993 -1.125374 -2.595857 -8.404035 -6.875541 5.806924 -4.809512 -4.629977 2.216696 0.508505 1.809994 -5.362094 -3.477529 7.128480 -10.879338 4.346759 4.314172 0.139479 -0.579096 -2.171997 -2.122566 0.537044 -4.343756 -5.683342 -0.304060 -1.459278 -6.151248 -1.512349 -4.266044 -2.611506 11.224920 2.685754 -3.493727 2.145818 1.528110 -5.570618 4.701486 -5.196076 -7.728544 -3.362600 -3.735343 -1.658441 8.165930 -0.484022 4.260472 -11.778784 2.959017 -11.726590 3.203725 -8.476644 3.966791 10.433698 -8.334826 6.837022 2.235972 5.071517 3.103517 -0.091867 8.701182 5.897966 -0.946856 2.948175 6.427637 5.078044 -3.184590 -5.490002 -5.298259 -3.826165 0.747940 -3.655048 -14.033324 3.778251 -2.552661 1.285909 -0.465557 0.308625 -4.104873 5.865540 -9.405002 0.377827 1.187003 -2.084654 1.355153 7.876100 -0.535139 -1.703676 -3.343780 7.623917 -0.909752 2.916537 2.160109 6.388767 -3.497486 -7.581682 -3.855116 0.145394 2.894670 -5.597059 -9.093655 -11.824019 -1.384578 -0.825951 -4.588609 6.198720 13.847479 -2.939341 -4.348309 8.557696 2.069167 2.091554 6.889676 1.581334 9.999143 -3.059176 -5.265637 -1.063126 -5.068585 2.406993 3.676546 -0.011332 -3.207404 5.756461 -2.629705 -6.144303 5.387828 -0.095110 -3.176809 -0.288376 -1.246516 -4.539047 -7.944723 9.988191 -4.492511 4.997443 -2.858893 12.160223 2.067526 -6.268140 2.848741 -4.629906 -0.324616 -8.266573 0.747471 -0.489408 3.774861 -8.088640 -5.466871 -0.522972 0.693546 -4.192918 7.208006 -2.690336 0.872300 1.399200 1.847293 7.479894 6.086791 -3.604665 3.147114 -7.522030 2.988907 4.661478 -0.562565 -11.524632 -0.626484 -1.841604 -2.610230 1.648123 -2.368326 2.380168 -7.145076 -2.748748 2.389983 -0.977694 0.129053 1.680685 -10.203042 2.911185 1.506228 3.487461 6.134883 9.091102 7.488736 5.956542 1.278940 4.554660 -1.591140 0.415744 -6.793608 1.653939 0.555183 1.860385 4.329626 7.269648 5.375385 4.007376 5.754966 5.177230 0.082036 7.639188 2.543969 9.564575 1.473986 -4.656510 1.940999 -0.278752 8.287800 10.931072 -0.043707 -3.256267 5.937935 -1.902374 -2.416670 -6.576133 2.649021 -0.835089 -1.046704 7.092184 2.993986 1.561604 -0.458875 8.906223 -4.619665 -14.206201 5.532600 4.078244 4.432574 4.402189 0.340123 5.178902 3.023680 -2.446161 3.533661 5.423310 5.304592 -6.927433 1.644029 0.894279 3.370016 5.486545 4.895670 -14.796214 0.282073 2.535393 8.101111 1.486390 6.014548 -4.509157 -3.059704 4.321984 1.645139 0.512977 -2.639169 3.763758 -4.682618 0.592677 -3.389991 -1.025550 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.164755 -0.367254 0.404479 -0.858344 -0.931777 0.010513 -0.123693 -0.339062 -0.184565 0.166182 0.103339 -0.287791 -0.460129 1.081990 -0.178177 -0.910084 -0.134387 -0.290253 -0.004153 -0.045519 -0.147086 0.614331 -0.171301 -0.022936 0.340374 -0.270774 -0.223456 0.493463 0.558126 -0.398059 -0.011089 -0.458545 -0.177514 1.015353 0.139098 0.145928 -0.041917 2.045484 -0.022554 0.919047 -0.972571 -0.997611 0.963597 -0.301219 -0.142708 -0.878797 -0.630549 0.592938 -0.669204 -0.063621 0.378060 0.158688 0.025353 -0.426827 0.138980 0.365835 -1.337887 0.741003 0.408364 -0.332191 -0.242770 -0.289665 -0.469350 -0.039852 -0.444942 -0.586928 0.093279 0.266503 -0.569892 -0.075314 -0.048338 -0.416443 1.525453 0.420316 -0.330636 0.420188 0.430530 -0.445850 0.659921 -0.694760 -1.307413 -0.402582 -0.014160 -0.476457 0.983970 0.084483 0.734098 -1.582808 0.689939 -1.669145 0.487855 -0.955487 0.445137 1.270573 -0.901464 0.851922 0.576697 0.527330 0.650283 0.062463 0.971999 0.473561 0.086408 0.798727 0.534812 0.362926 -0.302740 -0.438580 -0.649181 -0.790233 -0.011275 -0.449865 -1.710407 0.450489 0.052108 0.473154 -0.110422 0.390828 -0.129940 0.594838 -1.249562 0.098346 0.407565 -0.280745 0.249177 0.670257 -0.292109 -0.116502 -0.545965 0.921132 -0.638118 0.643743 -0.036497 0.760248 -0.136169 -0.569765 -0.950124 0.024838 0.196493 -0.612010 -0.948732 -0.995274 -0.256274 0.400826 -0.528661 1.160752 2.018538 -0.911148 -0.924821 1.210176 0.173229 0.423436 0.725591 0.307761 0.857374 -0.061676 -0.659518 -0.454542 -0.540371 0.186756 -0.152167 0.356518 -0.363038 0.716798 -0.054412 -0.604308 1.294363 -0.268576 -0.649475 -0.381834 0.120648 -0.741270 -0.729127 1.075307 -0.043285 0.989864 0.111582 1.371495 -0.137562 -0.684082 0.320197 -0.826564 -0.060076 -0.735157 0.012452 -0.038327 0.322216 -0.934873 -0.640790 -0.260915 -0.448917 -0.589082 0.410032 0.355762 0.248712 0.408272 0.400233 1.013908 1.244685 0.077323 -0.013931 -1.075225 0.501551 0.408841 -0.184397 -1.052237 -0.076692 -0.011376 -0.217353 0.423157 0.050050 0.440626 -0.433691 -0.222164 -0.140401 -0.001571 0.316970 0.350021 -1.102006 0.080928 0.153688 0.634992 0.548555 0.723439 1.163924 0.961228 0.521472 0.585294 -0.107580 0.112481 0.126580 -0.076094 0.260329 0.390339 0.539460 0.966470 0.913451 0.463676 0.930777 0.869997 0.053497 0.937279 0.135164 1.851248 -0.340455 -0.551204 -0.029994 0.324138 0.974701 1.507110 -0.394189 0.317474 0.721749 0.285793 -0.181714 -0.974301 0.244924 -0.245365 0.011419 0.578713 0.394229 -0.074091 -0.113060 1.054596 -0.270747 -1.613085 0.811310 0.350679 0.723800 0.209941 0.298229 0.045456 0.559975 -0.835612 0.732149 0.897646 0.534168 -0.890031 -0.183072 0.121300 0.656872 0.311724 0.957247 -0.832069 0.290505 0.497693 0.802852 0.081641 0.400920 -0.621243 -0.835106 0.490134 -0.378005 -0.200261 0.339216 0.065001 -0.469443 0.150706 -0.442628 -0.908626 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.843338 -1.446888 1.089664 -2.487105 -2.836957 0.509920 -0.510579 -1.111548 -0.528330 1.305843 0.511005 -0.636614 -0.985775 3.044083 -0.202745 -2.193218 0.089571 -1.279453 0.497118 0.071901 -0.239537 1.670500 -0.398467 -0.017732 0.458905 -0.659289 -0.647291 1.383222 1.613155 -0.615305 -0.322921 -1.321260 -0.992585 2.532180 0.897131 -0.395561 -0.180776 5.989765 -1.057239 2.744660 -2.429449 -2.572531 2.433617 -0.729998 -0.505156 -2.120459 -1.814606 1.725839 -1.080212 -0.799329 1.447445 0.093574 1.004649 -0.720006 -0.157518 0.860890 -3.271406 1.308864 1.012573 -0.648325 -0.273684 -0.701485 -0.883246 0.816399 -2.006817 -1.541367 0.753561 0.257893 -1.206338 -0.968986 -0.475561 -1.172407 3.508080 1.326699 -0.954169 0.441543 1.233382 -1.816105 1.916417 -1.368733 -4.414783 -0.879573 -1.320826 -2.679693 2.829234 -0.309970 2.648580 -4.455662 2.793022 -5.237656 1.202432 -2.382149 1.035067 3.575094 -2.300829 1.788858 1.727065 2.882444 2.182189 -0.714193 2.607969 1.737521 -0.120689 2.454942 1.786540 1.418506 -1.105967 -0.848710 -1.996543 -1.959288 0.190374 -1.719491 -4.641144 1.558436 0.418632 0.571297 -0.324853 0.821378 -0.902592 2.491061 -3.161611 0.628183 0.626447 -0.702360 0.484811 1.962757 -0.949838 -0.019140 -1.214529 2.693973 -2.002616 2.037077 0.272706 2.152064 -1.020917 -0.548828 -2.092995 0.904453 1.033104 -1.711080 -2.607021 -3.287500 -0.476256 0.790243 -1.474563 3.846375 5.630932 -2.825582 -2.362495 3.122202 -0.042304 0.445597 1.923577 0.454005 2.253208 -0.026652 -2.217287 -1.470848 -1.832110 0.001246 0.593213 1.086321 -0.186706 2.206826 -0.632452 -1.289422 4.092901 -0.384510 -2.251998 -1.072229 0.445651 -1.904758 -2.120900 2.798971 -0.896351 1.625889 1.148783 3.654882 0.348786 -1.277590 1.050242 -2.363372 -0.245939 -2.373069 -0.077853 0.066825 0.912988 -2.126318 -1.592207 -1.134434 -1.062371 -1.743833 1.023630 0.715515 1.143029 1.797559 1.236336 3.208151 3.837741 0.710687 -0.374491 -2.575717 1.457766 1.269621 -0.991275 -2.479308 -0.955917 -0.359911 -0.362569 1.127467 0.082984 1.784947 -2.064328 -0.854193 -0.571544 0.476294 0.899203 1.680447 -4.778194 0.475938 0.950658 2.113717 1.767290 2.039512 2.324333 3.269086 1.818999 1.690386 -0.472724 1.088958 -0.421742 -0.546316 1.039842 0.848534 1.473273 2.909601 2.390414 1.728327 2.541800 2.429190 0.434257 2.259747 -0.024706 4.953103 -0.360162 -1.588294 -0.238271 1.043952 2.561174 4.189606 -0.394948 0.925309 1.773649 0.201948 -0.859736 -2.609863 1.290754 -0.810502 1.209102 0.823622 1.690367 0.531930 -0.756016 2.505991 -0.770372 -5.068605 2.142530 1.000505 2.244844 1.767079 0.835553 0.879042 0.533667 -2.273229 3.088900 3.407752 1.138985 -2.088831 -0.061881 0.448922 1.619686 0.815179 2.730087 -2.887867 1.257879 1.055090 1.982868 0.287262 1.810687 -2.392140 -1.988275 1.696162 -1.365075 -0.133576 0.884467 0.352006 -1.547335 0.689745 -1.445154 -1.994105 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.340260 -0.423309 0.651018 -0.782317 -0.918983 -0.099564 0.003894 0.069893 -0.099915 0.188833 0.206169 -0.377669 -0.442750 1.048237 -0.107125 -0.827598 0.103704 -0.437561 0.003292 -0.159467 0.168127 0.556546 0.273846 -0.048197 0.238876 -0.240008 -0.396085 0.673080 0.880747 -0.442551 0.105542 -0.188005 -0.061658 0.578342 -0.176482 -0.399616 -0.067594 1.614745 -0.143065 0.636975 -0.575248 -0.556816 1.031938 -0.273337 -0.111259 -0.872083 -0.955522 0.748084 -0.456305 -0.443645 0.385520 0.421222 0.257557 -0.544145 -0.259845 0.430631 -1.281339 0.550933 0.158838 -0.143269 0.048861 0.044779 -0.409093 0.197687 -0.180693 -0.567760 0.092888 -0.025360 -0.674947 -0.324382 0.059580 -0.051617 1.369261 0.162941 -0.035550 0.388206 0.715387 -0.325762 0.846657 -0.562701 -1.040143 -0.305098 -0.503114 -0.602237 1.008540 -0.413238 0.507580 -1.380714 0.637136 -1.315303 0.673999 -0.980216 0.139324 1.059913 -0.834028 0.804980 0.478095 0.400393 0.635845 0.120090 1.063412 0.488495 0.382941 0.825092 0.528883 0.161518 -0.387832 -0.220166 -0.807298 -0.743370 0.075688 -0.607308 -1.495585 0.587332 0.455848 0.001389 0.313269 -0.016846 -0.030504 0.666036 -0.715491 0.634299 0.556554 -0.213488 -0.294174 0.676152 -0.480279 -0.227378 -0.555500 1.045432 -0.638397 0.776253 0.578339 0.609693 -0.047665 -0.740189 -0.302111 0.290773 0.036595 -0.363733 -0.758822 -0.872025 0.168877 -0.088390 -0.565708 0.849953 1.540351 -0.373069 -0.620310 0.942416 0.586684 0.259662 0.442482 0.058983 0.949656 0.024621 -1.081246 -0.431941 -0.699816 0.400169 -0.002786 0.442255 -0.049027 0.762634 -0.077152 -0.836381 1.231443 -0.408663 -0.586107 0.088800 0.242656 -0.729556 -0.723916 0.809545 0.485460 0.671295 0.395574 1.321158 0.429142 -0.635441 0.455403 -0.266427 0.018713 -0.687617 0.069238 0.121014 -0.025078 -0.565239 -0.564507 -0.647192 -0.379130 -0.484408 0.298318 0.012140 0.605658 0.638168 0.508891 0.430544 0.815822 0.192445 0.046860 -1.158137 0.311474 0.422677 -0.100097 -0.943012 -0.021104 -0.014311 0.100313 0.480858 -0.036778 0.440039 -0.416667 -0.474893 -0.115168 -0.074545 -0.020958 0.321613 -1.088426 -0.169413 0.357881 0.793103 0.353350 0.773170 1.132400 0.522376 0.433827 0.854632 -0.110123 0.558490 -0.171646 -0.216933 -0.065896 0.223120 0.476700 0.730417 0.701095 0.415942 1.129920 0.829941 -0.169206 0.646800 0.077626 1.269247 -0.078361 -0.650411 -0.173184 0.435780 0.939746 1.316612 0.287023 0.080142 0.686787 0.328348 -0.064048 -0.860359 0.242469 -0.277101 0.370162 0.673319 0.315327 0.099606 0.035673 0.501511 -0.155361 -1.458695 0.875533 0.236835 0.756855 0.494891 0.332255 0.289399 0.210506 -0.824808 0.269313 0.798149 0.323019 -0.746914 -0.086728 0.153349 0.579077 0.090251 1.102363 -1.195320 0.168389 0.463744 0.501549 -0.218602 0.461511 -0.598273 -1.058786 0.532816 -0.254322 -0.181436 0.322545 -0.282339 -0.873746 0.095837 -0.247918 -0.504384 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 0.181584 0.116770 0.970841 -1.749591 -2.235472 0.114019 -0.139122 -1.096607 -0.408783 0.448686 0.770675 -0.589273 -0.607496 1.876626 -0.639122 -1.385892 -0.526808 -0.701521 -0.213910 -0.628547 -0.179554 1.235380 -0.523852 0.022331 0.425784 -0.605189 -0.381293 1.034857 0.771796 -0.692912 -0.034194 -0.872966 -0.179494 2.003928 0.471280 -0.108210 -0.080657 3.374146 -0.665491 0.791762 -2.054640 -1.854848 1.850969 -0.489658 -0.222868 -2.195440 -1.561306 1.021440 -0.941989 0.163917 0.796932 0.066027 0.352397 -0.563205 0.370627 0.646734 -2.479677 1.438466 0.950385 -1.188868 -0.624179 -0.442012 -0.624409 0.044737 -0.596977 -1.114824 0.274456 0.816161 -0.347034 -0.145729 0.004249 -1.360895 2.646415 0.475358 -0.482623 0.662838 0.608780 -1.359331 1.454113 -1.006029 -2.224761 -0.674680 0.255548 -0.658910 1.533129 -0.000683 1.224086 -2.887788 0.531394 -3.010421 0.772576 -1.492097 0.794240 1.950183 -1.724298 1.247615 1.220801 0.471902 1.477693 0.190593 1.796379 0.667693 0.736064 1.465692 1.020453 0.925872 -0.522280 -0.710240 -1.498873 -1.891830 0.187527 -0.693182 -3.144206 0.918847 0.062920 -0.199578 -0.531723 0.014897 0.181796 2.002848 -1.730990 0.219254 1.051228 -0.484366 0.134557 1.445830 -0.452684 -0.025184 -1.042613 1.561576 -1.405556 1.394924 -0.162514 1.413978 -0.258637 -2.038935 -2.243301 0.282300 0.355487 -1.415381 -1.650132 -1.646178 -0.285967 0.401080 -1.012068 1.360167 3.617124 -1.918989 -2.266450 2.362538 1.349601 0.048537 1.447249 0.600087 2.028202 -0.217244 -1.158695 -1.237695 -1.341114 0.304605 0.080756 0.596163 -0.648818 1.332890 0.109032 -1.900006 2.538595 -0.645455 -1.420651 0.103790 0.609640 -1.266595 -1.244462 1.759058 0.889283 1.956715 0.062352 2.520122 -0.673982 -1.567224 0.424757 -1.067748 -0.118040 -1.013107 0.004315 0.333492 0.834466 -1.159737 -1.082707 -0.680762 -0.996352 -1.205466 0.776673 0.246263 0.643663 0.885894 0.603693 0.747092 2.569003 0.306393 0.121408 -1.741298 1.067786 1.092913 0.156288 -2.509295 -0.322623 -0.410191 -0.359474 0.411990 0.048877 1.259991 -0.431240 -0.195284 -0.111266 -0.407622 0.538181 0.675033 -1.680624 0.510915 -0.565682 1.300406 0.479267 1.387313 2.310334 2.036105 1.268859 1.018233 -0.070434 -0.137858 0.542306 0.015343 0.698516 0.478533 1.171617 2.122905 1.763913 1.017124 1.871319 1.493788 0.459035 1.991038 -0.142549 3.441476 -1.014406 -0.535538 -0.399400 0.851010 1.893140 3.095350 0.223418 0.140541 1.032158 0.614395 -0.566290 -2.050025 0.546807 -0.330480 -0.064280 1.260628 1.191253 -0.305795 -0.429348 2.250056 -0.339257 -2.638479 1.654303 0.572220 1.284620 0.204881 0.398103 -0.093193 1.124210 -1.263672 1.268008 1.752385 1.275935 -2.021041 -0.912442 0.278514 1.461180 0.567001 1.890476 -2.499698 0.758854 1.058512 1.481033 -0.284453 1.218070 -1.413534 -1.488141 1.184788 -0.399222 -0.431341 0.950159 0.341001 -1.465317 0.584822 -0.849241 -1.509009 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 0.479661 0.189763 1.383623 -2.754091 -3.681274 0.196785 -0.413399 -1.677108 -0.634093 1.045214 1.147821 -0.981823 -0.962732 3.140982 -1.077657 -2.155933 -0.831280 -1.301639 -0.159861 -0.724957 -0.315122 2.045272 -0.809786 0.116727 0.581353 -0.734291 -0.760552 1.276566 1.343830 -1.208876 -0.276480 -1.408809 -0.342895 2.980614 0.792302 -0.393987 -0.168831 5.217937 -0.932562 1.344383 -3.338721 -2.815933 2.634590 -0.773733 -0.049185 -3.436893 -2.251282 1.745295 -1.258694 0.157700 1.401422 0.138716 0.518893 -0.750120 0.598721 0.798910 -3.811282 2.557922 1.552280 -1.566175 -0.610340 -0.653903 -1.004578 0.298739 -0.805937 -1.745305 0.328116 1.339248 -0.690566 -0.434719 -0.076712 -1.988373 3.954038 0.793274 -0.972238 0.899667 0.922830 -2.023439 2.285757 -2.322410 -3.616572 -0.900557 0.245876 -0.840406 2.325376 0.152745 1.897551 -4.469881 1.093734 -4.764456 1.233611 -2.256318 1.154396 3.117062 -2.509425 1.710614 1.905579 0.602416 2.889330 0.439454 2.761330 1.178694 1.097817 2.253836 1.347771 1.588690 -0.750143 -0.879928 -2.163815 -2.939202 0.115873 -0.755406 -4.649562 1.563123 0.311720 0.072725 -0.752719 0.064268 0.215261 2.826646 -2.866167 -0.150954 1.470821 -0.724657 0.377506 2.296091 -0.803121 0.061380 -1.728988 2.435884 -2.191917 2.212594 -0.079291 2.241483 -0.613660 -3.219736 -3.664623 0.614966 0.648498 -2.208728 -2.495432 -2.809133 -0.253198 0.343241 -1.730440 2.248816 5.551870 -3.073544 -3.345802 3.698102 1.840698 -0.046845 2.328149 0.721423 3.111746 -0.235086 -1.880057 -1.689823 -2.174055 0.203080 0.302986 1.082588 -0.988842 1.942550 0.109047 -3.010611 3.164360 -0.666483 -2.370429 -0.209477 0.901041 -1.913591 -1.779933 2.533781 0.973604 2.651484 0.141993 3.884519 -0.874292 -2.308101 0.808826 -1.747427 -0.097939 -1.356499 -0.065393 0.708658 1.228956 -1.955525 -1.497283 -0.889144 -1.559758 -2.083992 1.076880 0.234507 0.958439 1.580232 1.032891 1.611087 4.013914 0.595490 0.324345 -2.628628 1.725354 1.496011 0.033887 -3.919991 -0.638452 -0.754525 -0.520077 0.942735 -0.026475 1.856619 -0.656872 -0.458561 -0.165910 -0.632638 1.094081 1.222919 -2.029200 0.697408 -0.848827 2.269239 0.776853 2.163446 3.141048 3.359404 2.163355 1.618715 -0.246243 -0.088790 1.200294 0.009291 1.155967 0.406281 1.891478 3.149853 2.785382 1.528698 2.954534 2.217562 0.406743 3.078436 -0.549974 5.203545 -1.819250 -0.802088 -0.662972 1.264184 2.935906 4.831612 -0.084244 0.198639 1.589319 0.678012 -0.806418 -2.669447 1.094047 -0.560291 -0.116830 1.691188 1.932233 -0.197166 -0.738749 3.300883 -0.702763 -4.025865 2.669346 0.833686 2.108608 0.453208 0.805400 -0.097106 1.424012 -2.132018 1.952220 2.940953 1.988076 -2.952958 -1.584430 0.430268 2.209529 0.915566 3.019551 -3.762041 1.041383 1.909143 2.215644 -0.432280 1.697278 -2.292218 -2.580063 1.977182 -0.583352 -0.635943 1.298730 0.523968 -2.118550 0.892055 -0.855521 -2.306329 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = 0.132076 0.235345 0.691094 -1.031371 -1.310948 -0.026432 0.302638 -0.507796 -0.206275 0.275609 0.504746 -0.337156 -0.375276 1.141237 -0.320888 -0.679869 -0.288360 -0.789807 -0.295367 -0.309701 -0.071537 0.756863 -0.252823 0.060691 0.291472 -0.237970 -0.264158 0.680697 0.185400 -0.628193 0.002429 -0.442729 -0.009911 1.106888 0.128123 -0.142099 -0.056050 1.941738 -0.666465 0.490930 -1.151820 -1.046321 1.101585 -0.307477 -0.185295 -1.490085 -0.940643 0.688482 -0.176777 -0.118698 0.509823 0.190437 0.091974 -0.397860 0.233048 0.494838 -1.522375 0.733695 0.574257 -0.658485 -0.394172 -0.187376 -0.336365 -0.026941 -0.346546 -0.663713 0.192747 0.239675 -0.177233 -0.038468 0.079396 -0.832206 1.530347 0.232502 -0.145881 0.478051 0.409975 -0.877950 0.994459 -0.620592 -1.190835 -0.351517 0.131203 -0.409649 0.903422 -0.150155 0.546228 -1.634777 0.209787 -1.622597 0.441228 -0.978856 0.329181 1.078782 -0.792455 0.772888 0.630694 0.182918 0.789676 0.119393 1.051919 0.410898 0.702161 0.878201 0.619167 0.553868 -0.445926 -0.478538 -1.067852 -1.181173 0.257718 -0.350881 -1.721950 0.571851 0.213778 -0.402603 -0.136647 -0.099776 0.230903 1.313024 -0.882416 0.384742 0.779275 -0.257033 -0.123891 0.987940 -0.303156 -0.111034 -0.678424 0.893880 -0.747658 1.033901 0.015899 0.756332 -0.146478 -1.272702 -1.042430 0.108702 0.097436 -0.770630 -0.860731 -1.023993 -0.012687 0.220057 -0.652671 0.649472 2.129018 -1.075576 -1.328545 1.371329 1.248287 -0.034700 0.562185 0.296349 1.261305 -0.126087 -0.752705 -0.692876 -0.805382 0.256256 0.278714 0.412035 -0.351036 0.753971 0.085253 -1.519094 1.783148 -0.384426 -0.753537 0.584032 0.382864 -0.751754 -0.851202 1.020600 0.939928 1.231907 0.128119 1.448302 -0.329530 -0.812897 0.261339 -0.388379 0.038946 -0.834972 -0.084110 0.315222 0.441692 -0.514115 -0.555429 -0.515630 -0.672274 -0.714913 0.405451 -0.233555 0.490587 0.436941 0.393407 0.128179 1.466526 0.126833 0.108705 -1.135098 0.618244 0.514220 0.198843 -1.519785 -0.154204 -0.232981 -0.187518 0.268558 -0.041424 0.701975 -0.162908 -0.125350 0.135336 -0.355095 0.033323 0.282559 -1.026788 0.146614 -0.346434 0.875791 0.191344 0.795443 1.446563 1.139556 0.731115 0.627104 -0.072299 0.022366 0.019925 -0.068050 0.185291 0.307845 0.717385 1.168399 1.012519 0.552504 1.168894 0.814214 0.202114 1.170737 -0.012993 1.969671 -0.489543 -0.403110 -0.192126 0.533877 1.081216 1.687065 0.324581 -0.017512 0.608858 0.430617 -0.450082 -1.040839 0.250630 -0.231124 -0.004548 0.894585 0.691152 -0.275374 -0.106422 1.267630 -0.244091 -1.573001 0.787474 0.280281 0.781413 0.145719 0.271203 0.088815 0.715673 -0.675411 0.688816 0.950958 0.765956 -1.194912 -0.641542 0.191252 0.817904 0.217061 1.135786 -1.858964 0.363417 0.508634 0.801314 -0.332096 0.870367 -0.861807 -0.752942 0.747102 -0.107904 -0.280355 0.644194 0.252636 -0.970826 0.283348 -0.723599 -0.674204 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.509935 -0.846739 0.790598 -1.117269 -1.070732 0.089192 -0.072327 -0.278363 -0.170606 0.895035 0.028894 -0.382454 -0.525784 1.365754 -0.115492 -1.127903 0.165736 -0.321054 0.269480 -0.019019 0.042211 0.815028 0.071988 -0.115317 0.268553 -0.423958 -0.174444 0.745137 0.713424 -0.046228 0.078709 -0.615163 -0.309020 1.113715 0.204048 -0.055611 -0.306875 2.300846 -0.127149 1.755483 -1.090850 -1.206993 1.254643 -0.325252 0.142361 -0.864383 -0.719630 0.924595 -0.571682 -0.724058 0.509684 0.280589 0.544583 -0.620210 -0.258375 0.264328 -1.424050 0.438262 0.252761 -0.450971 -0.164946 -0.217744 -0.524124 0.588179 -0.995775 -0.773172 0.070980 0.182482 -0.886313 -0.273284 -0.158228 -0.264263 1.545403 0.570537 -0.519828 0.280858 0.846969 -0.482365 0.999178 -0.766238 -1.634236 -0.549503 -0.845407 -1.071578 1.305797 -0.117704 1.265899 -2.040059 1.363577 -2.047436 0.926423 -1.158479 0.441890 1.713887 -0.902301 1.097090 0.780658 1.342600 0.877079 -0.181655 1.252241 0.986047 0.188587 1.072185 0.947178 0.513364 -0.723271 -0.701241 -0.997267 -0.838491 0.154119 -1.072375 -1.916239 0.645236 0.445277 0.569479 0.134706 0.295530 -0.468080 0.849327 -1.997779 0.360046 0.492126 -0.333208 0.071512 0.564433 -0.529620 -0.054944 -0.485826 1.464099 -0.929499 0.796371 0.491719 1.051211 -0.629930 0.066012 -0.526892 0.495143 0.339743 -0.606357 -1.269368 -1.630442 -0.295896 0.619434 -0.678280 1.676444 2.171850 -0.677586 -0.827438 1.279221 -0.181151 0.107964 0.672992 0.255032 0.831294 -0.033893 -1.223837 -0.725291 -0.733585 0.356743 0.902759 0.563476 -0.353858 1.322749 -0.478655 -0.515215 1.272725 -0.421347 -0.905708 -1.110665 0.109957 -1.025899 -0.623952 1.220551 -1.182995 0.796017 -0.123830 1.825556 0.313833 -0.564538 0.455064 -1.556100 -0.155168 -1.166212 0.214524 0.003673 0.312479 -1.353854 -0.885059 -0.597541 -0.573954 -0.615689 0.593795 -0.500083 0.362557 0.829849 0.647211 2.028710 1.116782 0.323591 -0.345445 -1.148896 0.593562 0.449877 -0.332320 -0.935754 -0.276601 -0.070602 -0.129073 0.398049 0.098800 0.581303 -0.998660 -0.458362 -0.231373 0.014460 0.069399 0.614389 -1.890761 0.011124 0.857367 1.085319 0.719822 1.065856 1.209499 0.966719 0.683216 0.924842 -0.248328 0.463163 -0.544388 0.110467 0.430324 0.048870 0.580432 1.237202 1.016276 0.572918 1.405792 1.308374 0.039818 0.932684 -0.157521 1.642965 -0.198095 -0.719721 0.022914 0.586764 1.192992 1.714474 -0.041348 0.368610 0.988372 0.001083 -0.360791 -0.635529 0.451054 -0.427345 0.571891 0.558859 0.632705 0.180802 -0.155730 1.023840 -0.249158 -2.124535 1.020296 0.492172 1.103190 1.097797 0.294957 0.591333 0.190860 -0.903674 0.936222 1.152032 0.362037 -1.054991 0.112473 0.185440 0.500496 0.916043 1.299462 -1.282736 0.039547 0.497145 1.050444 -0.053278 0.877365 -0.827097 -0.952314 0.726156 -0.656439 -0.158293 0.184626 -0.092096 -0.463850 0.186921 -0.678053 -0.812609 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = 0.372479 0.253039 0.756456 -1.066601 -1.267473 0.226871 0.179598 -0.638574 -0.217178 0.362560 0.556235 -0.051642 -0.133959 0.883354 -0.302281 -0.529824 -0.251563 -1.267973 -0.249763 -0.438848 -0.116388 0.663702 -0.334799 0.099612 0.174040 -0.307198 -0.223048 0.606765 -0.120597 -0.722375 -0.064457 -0.454183 -0.256275 1.129230 0.313740 -0.416139 0.052763 1.976215 -0.601856 -0.011512 -0.928818 -1.101728 0.971513 -0.356340 -0.284003 -1.072527 -0.715275 0.643125 0.200311 -0.016997 0.591649 0.011371 0.200458 -0.232839 0.037322 0.329036 -1.448380 0.516716 0.523864 -0.598186 -0.547997 -0.256321 -0.044339 0.049421 -0.295795 -0.621590 0.580840 0.305840 -0.030634 -0.132115 0.053134 -0.958854 1.285033 0.336527 0.096986 0.313642 0.412468 -1.007121 1.027093 -0.269382 -1.327933 -0.319435 -0.084769 -0.925691 1.039595 -0.391093 0.562331 -1.591002 0.520810 -1.704753 0.201592 -0.794259 0.317707 0.988010 -0.715258 0.623633 0.742982 0.695519 0.621774 -0.261977 1.127991 0.280940 0.537890 1.030370 0.719563 0.442087 -0.435859 -0.227005 -1.127736 -1.155149 0.315758 -0.450897 -1.513699 0.706599 0.190562 -0.862958 -0.288287 -0.104670 0.097750 1.574839 -0.894154 0.281160 0.637226 -0.243035 -0.193484 0.871327 -0.330516 -0.025972 -0.577012 0.916712 -0.877734 0.994493 -0.024429 0.712943 -0.032386 -0.875991 -1.105297 0.236716 0.296896 -0.871171 -0.908854 -0.863412 -0.029645 0.103780 -0.632287 1.113025 2.120783 -1.144550 -1.345508 1.379700 1.231867 -0.204637 0.696759 0.285725 1.124959 -0.076046 -0.848580 -0.767371 -0.831087 0.115168 -0.284694 0.387929 0.064496 0.829661 0.189164 -0.710886 2.106511 -0.396315 -0.888648 0.949874 0.477633 -0.721391 -0.995933 0.869415 1.398321 1.066463 0.726816 1.477890 -0.264307 -0.652925 0.213874 -0.171808 0.075003 -0.843842 -0.089961 0.137559 0.433286 -0.190913 -0.570371 -0.553499 -0.631767 -0.713805 0.366445 0.251992 0.788240 0.580948 0.371612 -0.149803 1.724159 0.239859 0.000000 -1.047978 0.629922 0.687519 0.180398 -1.055677 -0.368549 -0.235981 -0.118324 0.341091 -0.002970 0.944856 -0.331218 -0.108130 0.113998 -0.010992 0.031953 0.515175 -1.495874 0.230773 -0.376465 0.753383 0.164013 0.755004 1.325253 1.241745 0.859294 0.454196 -0.051266 0.230427 -0.063020 -0.386068 0.175194 0.683716 0.718517 1.218773 1.020596 0.742533 1.099862 0.897337 0.385153 1.151941 -0.183402 2.044977 -0.583633 -0.299666 -0.409816 0.643100 1.094830 1.647646 0.458877 0.040552 0.510888 0.482669 -0.564454 -1.226092 0.397794 -0.261904 0.517188 0.361894 0.882710 -0.171739 -0.256377 1.285277 -0.173595 -1.592845 0.757220 0.322271 0.799620 0.370620 0.259322 0.184364 0.535602 -0.709341 0.884093 1.113587 0.724198 -1.189402 -0.261496 0.278555 0.982622 -0.482935 1.190959 -1.698342 0.683664 0.324431 0.605132 -0.220690 0.847498 -0.987605 -0.680335 0.892598 -0.212491 -0.167503 1.080120 0.506977 -1.209231 0.501352 -0.798348 -0.522756 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.505831 -2.912229 2.062124 -4.596553 -4.212682 2.699506 -3.157283 -4.038797 -0.729430 0.474537 1.706435 0.393830 0.452908 3.005987 -0.102551 -3.985204 -0.278271 -1.070354 0.801882 -0.994731 -0.870446 1.912944 -2.138104 -0.132597 0.054634 -2.574507 0.268542 2.094510 0.945511 -0.474393 -1.270757 -2.988733 -3.350175 5.875191 3.283341 0.360743 0.350090 9.556091 1.022056 2.216280 -3.316643 -4.888822 3.733052 -1.616534 -1.246935 0.383730 -2.211516 1.936647 -2.416565 0.293498 2.773970 -1.733859 2.543726 -0.359023 -0.122682 -0.144616 -4.264403 0.778161 1.860325 -2.584999 -2.547611 -2.381538 -0.357349 1.497153 -3.661169 -2.523549 3.321105 3.305818 -0.498821 -1.506148 -1.030364 -4.849321 6.549067 3.086311 -0.985301 0.071362 2.072212 -3.415418 3.230021 2.024911 -7.691523 -2.094225 -1.800322 -6.258372 5.636691 -0.932263 5.493234 -7.978490 5.379280 -9.598416 1.310930 -2.567924 3.039859 5.717087 -5.241490 2.423833 4.503279 7.754789 1.822225 -2.244465 4.960359 1.237858 -2.214959 4.036132 4.693590 0.739375 -1.269316 -1.272797 -3.392479 -4.198802 0.678626 -4.408829 -7.844518 2.929038 -1.008055 0.243449 -3.355152 2.439378 -1.608122 4.994107 -6.345531 0.030698 0.836314 -1.499803 1.717616 2.255986 -1.764722 0.930518 -1.426975 4.637113 -5.046895 1.551024 -1.640264 4.019794 -0.470812 1.806640 -6.259683 1.883849 3.583933 -4.415233 -5.787555 -3.435374 -2.415647 2.783310 -2.041211 9.050457 9.440207 -5.496813 -4.884088 5.742893 -0.304678 0.173910 5.508153 2.013104 3.507008 -0.736611 -2.775152 -4.293218 -2.884482 -0.590782 -4.236747 1.306544 0.331733 4.980944 -0.385821 3.017363 9.999634 -1.726758 -4.677756 -1.454582 1.651088 -3.084966 -3.994611 4.814908 0.200268 3.310844 3.202488 7.287570 -1.560939 -2.175679 0.985255 -3.236613 -1.198753 -3.220861 0.181602 -1.668762 2.879659 -2.711987 -3.649046 -1.340158 -2.327247 -2.323893 2.330713 6.638341 2.149428 3.321715 1.257694 3.987674 8.319690 2.272719 -1.968246 -3.664438 3.007141 4.197322 -1.864411 -0.349457 -2.412707 -1.030667 -0.801916 0.503967 1.092553 4.511946 -4.606359 -0.864961 -2.173459 2.725316 2.583929 3.936698 -10.096098 2.068316 1.143708 1.775955 2.955879 3.499206 4.825871 6.221549 4.528123 0.801641 -0.157875 1.435898 -0.298458 -1.439232 2.180625 4.874531 2.502421 5.958782 4.569387 3.667880 3.949154 4.703087 3.992653 4.774980 -0.639202 9.440061 -1.289723 -1.020786 -1.631320 2.070931 5.369582 8.203596 -1.036502 3.012510 2.527505 1.734095 -2.584494 -6.878010 2.605063 -1.137963 2.941640 -1.219493 3.050380 1.051944 -3.267849 6.501296 -0.266645 -7.791870 3.783085 1.960937 3.763166 4.090375 0.528938 1.202777 0.797385 -3.854006 6.093531 5.421366 2.510602 -4.901779 2.368327 0.996905 3.537610 -1.073440 4.614566 -1.035743 4.447714 1.218350 3.878613 1.678678 1.539843 -4.160671 -2.129671 3.031936 -3.995114 0.284912 3.670510 2.294631 -3.044787 2.317486 -3.850244 -4.614651 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.013021 -1.972513 0.186226 -0.961073 -1.253406 0.580438 0.508430 -3.844745 -1.082668 2.211969 0.776527 -1.376217 -0.126269 1.283621 1.004294 -0.791230 1.556719 1.332717 0.533885 -1.301355 -0.788827 0.481111 -1.003653 -1.341355 -0.488033 -0.789413 0.570436 1.176948 -0.918562 1.503725 -0.794898 -2.191702 0.372651 4.143834 2.563795 0.952452 -2.717952 4.697378 -0.560009 4.170925 -4.439448 -2.365564 3.179617 -1.116796 0.867106 -2.355614 -1.394880 2.107796 1.511174 -2.843288 -0.666029 -0.993899 1.569051 -1.458725 -1.580032 1.894816 -0.496208 -0.549536 1.544500 -4.066603 -2.756804 -1.180856 -0.094927 2.112163 -5.324576 -2.721898 1.166298 0.888568 -0.011777 1.365706 -3.389384 -4.477631 1.145788 1.383621 -2.211898 -1.168940 -0.732683 -1.294835 1.674874 3.499158 -3.113067 -1.815091 -1.163890 -1.095726 0.652126 0.750474 4.548666 -5.980498 1.854303 -6.692018 1.781480 -2.317720 3.206436 3.041435 -2.102870 1.569560 1.495974 4.292723 1.427504 -1.028674 2.112475 1.658344 -0.229900 0.332309 4.608431 1.820566 -0.170697 -2.915013 -0.905817 -1.689632 2.319157 -1.844875 -3.500357 1.920822 -2.953702 -0.107054 -2.349969 2.108993 -0.499857 3.469813 -4.877879 -1.082608 2.065494 -1.213049 2.853471 1.806464 -1.636966 1.632108 -1.633523 2.142820 -0.485052 1.186129 -0.880028 3.067485 -2.321102 -1.137158 -2.940891 1.312224 2.922543 -3.922883 -4.290253 -4.278303 -1.469801 2.807763 -2.109307 2.785263 5.237328 -3.196373 -1.712227 2.035906 -0.265132 -1.743109 2.222292 0.854229 5.467707 -3.141051 1.209514 -0.783858 0.042472 0.945560 3.014720 -1.139323 -2.751273 2.622137 -1.359395 -2.971150 5.734612 -1.130811 -1.930433 -0.009753 -0.229290 1.373154 -1.316828 2.933821 -4.138377 1.885594 -2.448453 2.857541 -1.381068 -0.338656 1.133903 -2.935548 -2.145804 -0.414966 1.320866 -1.260500 4.270614 -2.951964 -2.299991 -0.039740 -3.546542 -0.104142 3.451855 0.446919 -0.664144 1.407231 0.104063 3.601310 2.874896 0.696900 -1.165651 -1.897467 2.097289 3.115570 0.728468 -1.074283 -2.584735 -2.694723 -1.253949 -3.451751 0.961949 3.287684 -2.719918 -0.143587 -0.034039 0.276566 0.622811 1.191266 -3.503373 2.215360 1.175828 1.281431 0.589423 4.539872 1.469421 3.266721 1.927555 -1.260212 -0.148971 -1.439029 -3.859670 2.087695 1.134149 0.907665 1.349151 1.569466 1.808898 1.582182 3.318227 -0.943597 3.622109 3.552813 0.644468 4.162292 -1.639299 1.138205 0.932776 -1.201688 3.421397 5.305687 1.271155 -1.249810 1.203820 -2.186630 -4.159505 -1.722855 -0.507697 0.299541 -0.926533 0.781762 2.121890 0.283762 -2.812703 5.650312 0.048351 -6.127377 2.522375 1.277320 1.185870 5.121068 -1.311614 2.850870 1.034921 1.307878 2.292717 2.979732 2.339493 -3.507637 -1.320299 -0.150724 0.858156 3.418034 0.272193 -4.495559 2.018139 1.748518 4.786605 0.148992 1.278595 -3.606252 2.157425 1.193493 -1.377448 0.679361 0.638007 3.009322 -0.836954 -0.560526 -4.833817 0.585482 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.556438 -10.770580 5.323739 -15.539192 -9.854573 8.474772 -6.384288 -14.510400 -3.131523 6.392635 5.972926 -0.411524 2.506058 11.927410 1.715170 -9.582727 3.198507 -2.163916 3.468343 -1.203787 -2.528391 5.897559 -7.171040 -3.101364 -0.402948 -7.028268 2.104723 6.724450 -1.411796 1.835490 -4.791549 -10.024950 -10.286813 20.034822 11.946780 1.782240 -2.466878 29.358883 -3.569917 15.557232 -12.510974 -15.017731 13.368913 -4.649364 -2.830216 -0.939265 -7.663067 6.431551 -1.989383 -4.971769 6.844190 -6.885463 10.052074 -2.821663 -2.436780 1.343016 -10.305876 -3.135543 7.501510 -9.734099 -9.497824 -7.730821 1.098969 7.141294 -18.992610 -8.541783 10.302465 7.055793 -0.192607 -4.514242 -7.500034 -18.113935 15.044427 11.251178 -3.999912 -1.270206 4.147179 -13.996527 10.569483 9.510302 -23.537788 -6.861609 -8.321024 -22.108091 16.326620 -2.312939 21.493603 -26.474682 18.104245 -31.562385 4.656798 -8.474052 10.150858 19.960682 -13.457381 7.119574 13.226266 29.899052 4.740824 -8.044010 14.445769 6.997419 -7.298130 10.437674 19.764516 6.132690 -6.648360 -8.322833 -10.854486 -11.603105 4.987266 -16.259885 -22.664381 10.361270 -5.803880 -2.890349 -11.259446 7.752708 -7.523749 18.325732 -21.791981 -0.103005 2.825125 -5.202307 5.836710 7.827673 -4.475786 3.431779 -4.335571 14.072993 -13.746039 5.858996 -4.919582 14.256159 -7.304698 9.294530 -14.550742 7.005886 11.799944 -15.658270 -19.449763 -16.700355 -8.484163 11.637172 -6.203789 29.028681 29.431343 -17.137465 -14.722921 17.009591 -0.979110 -2.855437 15.356975 5.806760 13.121947 -5.199982 -5.971256 -12.962155 -7.029091 -1.620011 -3.352000 2.049671 -0.901345 16.871423 -5.762144 4.248450 34.473001 -4.235242 -13.491535 -6.366246 4.935528 -9.160666 -12.597881 16.815391 -10.015301 9.894565 4.890568 21.965554 -4.593907 -3.313482 3.720758 -14.794012 -5.932001 -13.611551 1.058587 -5.612753 11.902093 -9.158884 -12.225419 -4.963587 -7.693051 -6.331937 9.867733 10.944726 4.672393 9.997999 2.543762 16.157157 23.427029 6.052660 -7.409496 -9.609367 10.125502 14.430538 -5.753855 -1.559848 -9.302550 -5.865424 -3.662080 -3.424026 3.724230 15.969281 -18.584718 -2.921826 -4.431354 8.637181 5.920324 11.222184 -36.068474 8.400415 4.953554 6.298307 10.194988 13.826118 12.089842 20.271726 12.434614 0.751794 -1.270569 3.265039 -10.836391 -2.214727 6.595878 12.560148 7.954354 18.799403 13.312130 12.695324 13.131323 12.474171 14.703436 15.484819 -1.982454 26.253521 1.158426 -2.841666 -1.203913 4.098654 16.576540 25.232042 0.307948 6.573288 8.174848 -0.157612 -13.395855 -17.779618 7.608518 -3.382764 7.121580 -2.851666 10.584821 3.933918 -12.035447 22.758142 -0.965783 -27.684804 10.255870 6.725628 12.530051 18.901119 -0.289094 8.767654 2.234584 -7.671523 21.991269 17.147543 7.828045 -15.820993 7.500855 3.325461 9.192885 4.834867 12.015075 -8.460631 15.032215 1.965042 14.797056 5.086877 9.351193 -14.009379 0.709573 8.600233 -11.760647 2.089914 7.315178 9.938050 -7.149474 4.807652 -18.302776 -9.813301 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.860553 -7.614704 4.138319 -9.828058 -6.811838 1.790601 -3.284727 -5.769569 -1.274850 2.460864 4.034731 -3.925332 -2.343617 9.764624 1.193974 -7.624907 2.444503 1.995414 2.732138 -0.155579 0.509651 3.923694 -1.842417 -2.636263 0.852167 -3.426847 -0.768934 6.208905 5.944565 1.038178 -1.468088 -4.618300 -3.507331 10.562958 3.568729 0.380788 -2.124096 18.141519 -2.960877 11.432076 -8.665286 -7.368363 11.011072 -2.696835 -1.808226 -5.748657 -8.156556 4.969826 -6.908620 -4.065102 2.940184 -0.919742 6.232042 -4.582442 -2.203734 3.532612 -9.883634 1.140881 4.640441 -5.433660 -2.566735 -2.142629 -2.895923 3.923022 -9.222287 -5.570738 2.816715 1.560580 -2.923394 -2.912515 -3.450740 -6.983924 13.217336 5.002849 -2.814206 1.900373 4.821631 -7.355538 7.534146 1.765008 -13.015302 -4.569400 -5.041123 -9.693850 10.361237 -1.913073 11.451069 -15.718586 8.190848 -18.271643 6.039159 -8.478390 4.284928 13.387618 -10.432419 6.831983 7.295097 11.839063 4.595199 -1.186664 9.498640 6.221967 -1.530809 6.329253 10.786687 3.949092 -4.132605 -5.897556 -6.768316 -7.203773 1.139641 -9.735700 -17.296300 6.087015 -2.049629 1.328792 -2.570091 2.979535 -2.778985 9.636433 -10.408625 3.757475 3.596413 -3.179445 1.145257 6.667181 -2.686307 -0.515631 -3.738837 9.851539 -7.746265 5.004079 0.956335 8.825741 -3.929028 -0.691111 -6.582866 3.586032 3.634280 -7.800189 -10.955748 -10.988287 -2.939997 5.191952 -3.048087 12.764835 18.112640 -7.848200 -8.733464 10.510975 0.807408 0.088244 8.705065 3.165262 10.260237 -2.292051 -5.751191 -8.064233 -5.540133 1.176712 1.650727 2.119874 -2.297822 9.881603 -3.414854 -4.808657 17.674185 -2.955996 -6.375606 -4.288779 2.432221 -7.662451 -8.044955 10.853472 -5.764698 7.921184 0.117096 14.059707 0.078778 -4.994591 3.551160 -7.748959 -3.153027 -7.395543 0.789172 -0.017541 4.196471 -7.709435 -7.951347 -5.278234 -3.909024 -4.034643 6.809624 3.010523 2.520562 6.653921 2.267289 9.719616 10.690185 2.035154 -2.769525 -8.117214 5.590224 7.060793 -4.031551 -6.799018 -2.990516 -3.011593 -1.137880 -0.502772 1.665114 8.977519 -9.537431 -3.433097 -2.319422 2.468638 2.405597 4.175195 -18.756998 3.450231 3.806600 5.704264 6.559211 9.106747 9.046681 9.873556 4.721546 5.067101 -1.252971 2.608336 -5.350206 -0.786326 2.571586 3.962562 4.382859 10.772889 7.709689 6.864197 9.699346 8.441457 5.273006 9.179117 -0.018232 13.991232 2.157690 -4.518331 1.152679 2.520974 10.530157 15.505978 0.706409 2.663697 6.265110 0.303631 -5.551544 -11.160880 3.107072 -1.659404 1.205193 4.602537 5.121750 2.148734 -5.034595 10.894808 -0.321484 -17.104153 8.131418 3.856436 7.440202 9.118857 0.728485 3.512330 2.663795 -5.594665 10.085208 9.155364 4.312325 -10.109688 1.915254 2.273521 5.505159 6.543436 9.226543 -8.375823 4.749157 2.794757 8.632082 1.730600 6.676573 -7.833982 -3.968852 4.313671 -5.572534 -0.537450 0.436135 0.945550 -5.491249 0.995864 -8.125134 -6.644071 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.593027 -1.404421 2.324413 -3.250047 -3.030501 -1.172545 1.243208 0.047197 -0.490980 2.746436 0.878507 -2.298397 -3.091595 3.831996 0.356320 -2.312400 0.655080 -2.048291 0.690646 -0.102811 0.478090 1.864615 0.603310 -0.580748 0.949197 -0.047209 -1.676536 2.809428 3.074305 -1.194739 0.779601 -1.002718 0.390922 2.387630 -0.723062 -1.561222 -1.275564 6.128025 -3.009078 3.912941 -3.175828 -2.763609 4.764066 -1.021127 -0.303863 -4.520516 -2.287217 3.083770 -1.964704 -2.582557 0.742707 2.004375 1.446479 -2.881580 -1.637418 2.164764 -5.224830 1.769219 1.556222 -1.448596 -0.075370 0.723833 -1.544779 1.415469 -1.815516 -1.942044 -0.493101 -2.302392 -2.217216 -1.022665 -0.325119 0.337788 3.530373 0.918901 -0.216726 1.833509 2.020359 -1.407162 3.373677 -2.917091 -3.721195 -1.362888 -2.146127 -2.372305 3.035856 -0.678761 2.088757 -4.379502 1.839226 -4.774883 2.440929 -3.892749 0.039871 4.278202 -1.771715 3.579002 1.504636 0.473219 2.771581 -0.375318 3.138642 2.668651 2.544553 3.066076 2.040346 2.313740 -2.259883 -1.668303 -3.533041 -2.323006 0.395452 -2.151808 -4.306156 2.261622 1.275757 -0.290627 2.172508 -0.633792 -0.592054 3.091691 -2.621104 2.547552 1.933090 -0.735073 -1.278235 3.168215 -1.076165 -1.517337 -1.455415 3.451363 -1.635348 3.598165 3.088060 2.836470 -0.760635 -2.439003 -0.017264 1.057119 -0.399973 -1.776672 -2.150035 -4.583047 0.736257 -0.054342 -1.740204 2.466647 6.024350 -1.409374 -2.394326 3.339600 1.217520 0.164307 0.937281 0.389702 3.706633 0.255565 -3.833181 -1.682378 -2.619239 1.677611 5.214272 1.569866 -1.066030 2.856937 -0.773223 -3.507128 1.971984 -0.295577 -1.325048 -0.215770 0.635270 -3.111824 -3.031565 2.429302 -0.929886 2.730606 0.004174 4.347028 1.931883 -1.682882 2.133131 -2.043437 -0.049722 -2.967220 -0.391192 1.617229 -0.325080 -2.305137 -1.761017 -3.428108 -1.002530 -1.947055 2.012112 -3.341424 1.596950 2.415774 1.293978 3.015850 1.912285 -0.432866 0.050329 -3.848296 1.396408 0.477371 -0.223723 -4.700499 -0.434186 -0.379917 0.081041 2.395189 -0.313576 2.469764 -1.726243 -1.331055 1.055543 -0.420942 -1.191209 0.228297 -4.719571 -0.215010 1.793583 3.592359 2.075922 3.305483 2.850211 2.405798 0.476135 4.149731 -1.492408 1.824327 -1.713019 -0.407460 -0.525477 -0.662417 1.706785 2.387933 2.350396 1.916383 4.307210 2.822975 -1.863923 2.858871 -0.717996 3.343621 -0.233184 -2.854292 1.081524 1.412528 3.088579 3.592622 1.416341 -1.024401 2.684264 -0.356476 -1.217152 -1.674383 0.680676 -0.743490 1.207457 3.826165 2.211370 0.341899 0.399122 1.633888 -0.598647 -6.078514 2.981964 1.154567 2.817261 1.852098 1.057201 1.323274 1.134530 -2.035269 1.555222 2.988701 1.009279 -3.221638 -0.371573 1.170449 1.943165 2.399613 3.701128 -7.436089 -1.355475 0.891199 1.404895 -0.834676 4.056398 -2.677285 -3.059962 2.058278 -0.453800 -0.678354 -0.581774 -1.014778 -2.383937 0.348870 -1.263332 -0.481909 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.373684 -0.724186 0.465286 -1.044313 -0.775927 0.785714 -0.705531 -0.913534 -0.111174 -0.143177 0.441291 0.266833 0.242833 0.630073 0.080920 -0.803291 0.035257 -0.381532 0.192200 -0.013978 -0.180656 0.316698 -0.524888 -0.027903 -0.078280 -0.519140 0.054631 0.414317 -0.075084 -0.146320 -0.445397 -0.632352 -0.888415 1.303328 0.788394 0.145387 0.178057 2.059613 0.227053 0.587575 -0.548725 -1.010063 0.671885 -0.377255 -0.370452 0.266519 -0.470885 0.354386 -0.281964 -0.078854 0.729631 -0.483374 0.562122 0.041224 -0.027446 -0.071719 -0.859841 -0.120728 0.401620 -0.423341 -0.518448 -0.547771 -0.003380 0.306067 -0.867707 -0.485822 0.881316 0.728217 0.008402 -0.386230 -0.234775 -1.237035 1.557236 0.787459 -0.150851 -0.033819 0.570863 -0.898982 0.728554 0.674080 -1.738626 -0.382190 -0.565795 -1.552183 1.421915 -0.341588 1.221867 -1.655889 1.318811 -2.101985 0.217672 -0.581817 0.612604 1.238494 -1.079291 0.373109 1.088132 2.053001 0.230387 -0.531626 1.097897 0.277294 -0.701492 0.847090 1.222805 0.026813 -0.313670 -0.240397 -0.815560 -0.932406 0.211569 -1.051530 -1.730145 0.649061 -0.174471 -0.019129 -0.833775 0.644089 -0.357027 1.101122 -1.347035 0.170294 0.131942 -0.309201 0.316927 0.506626 -0.404523 0.213238 -0.281085 1.009208 -1.162646 0.312989 -0.407428 0.797193 -0.095304 0.694763 -1.242367 0.439603 0.845530 -0.990666 -1.265533 -0.728515 -0.505325 0.806765 -0.389384 2.134855 2.045855 -1.211674 -0.987731 1.233080 0.155168 -0.002657 1.174972 0.463806 0.682109 -0.155233 -0.594484 -0.978602 -0.624036 -0.293369 -1.259043 0.294263 0.266196 1.122217 -0.100250 0.664816 2.767532 -0.406067 -1.054280 0.008635 0.304397 -0.708123 -0.994451 1.088878 0.278068 0.655112 0.978104 1.595096 -0.262297 -0.294783 0.173426 -0.495812 -0.232134 -0.879147 -0.032095 -0.425424 0.613943 -0.488452 -0.797864 -0.261381 -0.484389 -0.457956 0.458312 1.603047 0.558253 0.764059 0.222171 0.668552 1.907369 0.569707 -0.512454 -0.743189 0.655360 0.888284 -0.583678 0.244346 -0.553561 -0.262964 -0.097800 0.059855 0.268431 1.037846 -1.174658 -0.235752 -0.475499 0.708857 0.533967 0.942261 -2.426932 0.369601 0.359665 0.325211 0.732993 0.681313 1.054514 1.444045 1.064693 0.074751 -0.015470 0.524375 -0.366787 -0.504822 0.367244 1.351333 0.518917 1.248700 0.941514 0.839350 0.769109 1.064607 1.149953 1.025742 -0.039070 2.026782 0.037831 -0.248361 -0.346428 0.418389 1.174031 1.700443 -0.287293 0.906258 0.469821 0.433540 -0.693779 -1.481567 0.635136 -0.244844 0.676984 -0.389060 0.622906 0.357040 -0.803062 1.409679 -0.018368 -1.689234 0.582833 0.420298 0.814468 1.137169 0.132338 0.434915 0.057404 -0.781022 1.538534 1.158427 0.558255 -1.049204 0.684665 0.273572 0.693481 -0.449017 1.011917 0.010772 1.128160 0.051588 0.769306 0.426339 0.243278 -0.925367 -0.229750 0.681861 -0.954212 0.113582 0.856534 0.655557 -0.627730 0.431573 -1.071082 -0.975015 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.224958 -0.248863 0.314390 -1.112463 -1.226751 0.227214 -0.321132 -0.690315 -0.247555 0.134847 0.383784 -0.345301 -0.397247 1.276308 -0.209361 -1.009012 -0.190167 -0.377440 0.020014 0.119936 -0.204329 0.766622 -0.406892 0.043182 0.226630 -0.172859 -0.314144 0.390016 0.589393 -0.487379 -0.388679 -0.594019 -0.331114 1.279529 0.436772 0.084472 0.032922 2.193642 -0.056102 0.994924 -1.200639 -1.019044 0.901381 -0.321279 -0.101938 -0.987682 -0.744515 0.673717 -0.694848 -0.068299 0.683324 -0.068613 0.101302 -0.214973 0.331914 0.346260 -1.468615 0.955233 0.647065 -0.284740 -0.125889 -0.418577 -0.433627 0.038287 -0.495716 -0.686069 0.147272 0.514947 -0.416396 -0.231221 -0.210682 -0.888890 1.759217 0.579815 -0.575482 0.283330 0.357651 -0.778422 0.806102 -0.875006 -1.560254 -0.314068 -0.038056 -0.354819 1.176459 0.108106 0.809938 -1.829809 0.676004 -2.028450 0.446160 -0.981004 0.569730 1.480167 -1.081665 0.584952 0.775184 0.549392 0.997087 0.188441 1.125384 0.459734 -0.028554 0.750866 0.658308 0.470079 -0.308273 -0.382057 -0.668048 -1.090822 -0.021652 -0.350692 -1.930436 0.577070 -0.019117 0.556486 -0.361719 0.419635 -0.080932 0.655852 -1.363306 -0.238733 0.344821 -0.314877 0.496785 0.953554 -0.350746 0.057826 -0.735324 1.055706 -0.805140 0.739937 -0.258783 0.888357 -0.265819 -0.806576 -1.466400 0.187090 0.441377 -0.894657 -1.168633 -1.204797 -0.221982 0.307019 -0.661004 1.292409 2.217147 -1.232339 -1.109012 1.566208 0.330457 0.279241 1.058013 0.267055 1.114655 -0.145960 -0.584930 -0.543020 -0.746677 -0.200838 -0.316650 0.405565 -0.445137 0.700655 -0.105823 -0.862189 1.389716 -0.117940 -0.984160 -0.427102 0.153887 -0.781512 -0.836519 1.221118 -0.099435 0.958670 0.134717 1.602856 -0.307471 -0.759763 0.436921 -0.705648 -0.058683 -0.714469 -0.164798 0.123460 0.499183 -1.023496 -0.637839 -0.142726 -0.445097 -0.865231 0.447071 0.549382 0.194527 0.611374 0.463704 1.001910 1.634514 0.209761 0.051914 -1.039821 0.716875 0.550393 -0.360641 -1.123939 -0.165432 -0.310086 -0.245464 0.468759 0.008048 0.585817 -0.533882 -0.329515 -0.144258 -0.011517 0.675799 0.623586 -1.000293 0.245152 -0.059340 0.664256 0.618159 0.845107 1.116659 1.358318 0.901451 0.468083 -0.089108 0.163053 0.255839 -0.073155 0.366124 0.461284 0.715489 1.086762 1.113136 0.548834 1.018233 0.910392 0.293816 1.217399 0.053591 2.078683 -0.341380 -0.425448 -0.117034 0.269357 1.191438 1.898898 -0.648226 0.418104 0.677066 0.249793 -0.358054 -1.001474 0.442727 -0.292047 -0.247364 0.481917 0.416526 0.094904 -0.388800 1.415264 -0.369761 -1.654306 0.926258 0.367475 0.872720 0.394463 0.363432 0.100496 0.482344 -1.012883 0.991199 1.144057 0.796615 -0.994480 -0.339573 0.121735 0.684788 0.389605 1.127769 -0.778461 0.441970 0.691135 1.033382 0.174562 0.314294 -0.751737 -0.862442 0.662733 -0.435037 -0.167250 0.259791 0.326431 -0.494470 0.178655 -0.488961 -1.084695 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 0.012152 -1.286717 0.700098 -1.734861 -1.455827 0.547197 -0.284125 -1.248509 -0.289915 0.549390 0.399237 -0.346003 -0.192476 1.942873 0.075655 -1.426722 0.047101 0.361725 0.370749 0.344463 -0.176617 1.212644 -0.694957 -0.038425 0.305862 -0.696140 0.016276 1.040559 0.200911 0.384761 -0.176376 -1.251486 -0.859717 2.166799 0.950670 0.926543 -0.279033 3.479106 -0.600988 3.112337 -1.736938 -1.819389 1.569515 -0.441162 -0.168149 -0.935777 -1.239168 0.744564 -0.936392 -0.739957 0.906410 -0.297479 0.895313 -0.339367 0.423890 0.210488 -1.548132 -0.035492 0.806904 -1.185608 -0.611666 -0.762159 -0.853605 0.511693 -2.412056 -0.948573 0.198749 0.709905 -0.226261 -0.307849 -0.289582 -1.475636 2.504404 1.146396 -1.089254 0.274834 0.863712 -1.398722 1.200078 0.043766 -2.596026 -0.821020 -0.780444 -1.697049 1.834965 0.122232 2.379247 -2.958831 1.671592 -3.272617 0.942382 -1.452366 0.974813 2.567813 -1.578606 1.228656 1.474668 2.625001 0.920963 -0.238364 1.503496 1.289866 -0.523275 1.338769 1.866939 0.920816 -0.970322 -1.384718 -1.434071 -1.402906 0.530287 -1.784004 -3.139783 0.635112 0.060224 0.866979 -0.848538 0.896438 -0.543216 1.704464 -2.710601 0.682230 0.616007 -0.548113 0.430248 0.917498 -0.437358 0.050401 -0.714554 1.716214 -1.627624 0.981604 -0.459362 1.623079 -1.237312 0.720190 -1.332175 0.417853 0.656620 -1.349069 -1.958177 -2.253369 -0.968377 1.942143 -0.724578 2.391193 3.428756 -1.890464 -1.632639 2.150067 0.022950 -0.043615 1.083537 0.795925 1.039669 -0.145303 -1.103743 -1.661420 -1.099815 -0.045920 1.193133 0.685077 -0.813151 1.853115 -0.840338 -1.273770 3.593393 -0.579428 -1.544031 -1.712622 0.181921 -1.371176 -0.983963 2.256799 -2.184823 1.451660 -0.733270 2.475315 -0.333708 -0.609809 0.330752 -2.430957 -0.503339 -2.006109 0.138479 -0.108869 1.053496 -1.861715 -1.317662 -0.443645 -0.945363 -0.928367 0.901086 -0.191985 0.029811 0.980305 0.610558 2.779648 2.259514 0.607138 -0.849551 -1.132947 1.185372 0.848055 -0.751807 -1.099723 -0.451247 -0.338043 -0.530380 -0.369109 0.358957 1.073879 -1.808387 -0.191855 -0.556664 0.125154 0.476194 1.055380 -3.460711 0.596800 0.883311 1.191275 1.310458 1.199035 1.873030 2.090561 1.311755 0.841970 -0.297395 0.242005 -1.067463 0.511968 1.041790 0.510958 0.854964 2.333458 1.715293 1.013087 1.523379 1.797950 1.464598 1.703749 0.072911 2.961083 0.351146 -0.778851 0.241441 0.801752 1.773899 2.687643 -0.231750 1.159595 1.135075 0.049389 -1.189310 -1.316681 0.771660 -0.408862 0.094474 0.756031 0.747227 0.188624 -0.730287 2.321785 -0.342531 -2.953234 0.921476 0.781957 1.502540 1.469961 0.335284 0.818864 0.624377 -0.952243 2.423363 1.666523 0.842074 -1.764847 0.021788 0.244002 0.422141 2.173304 1.719404 -1.269677 0.715803 0.341268 1.912589 0.054065 1.313507 -1.143227 -0.315985 0.963672 -1.252157 -0.192194 0.157217 0.387407 -0.124856 0.335342 -1.948154 -1.801017 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 1.228666 -2.966625 1.589009 -3.392542 -2.759969 2.180959 -2.477112 -2.414323 -0.455981 0.773220 0.810377 0.562752 0.367428 2.493881 0.237569 -2.899574 0.181189 -0.989714 1.197771 -0.167171 -0.528068 1.563250 -1.305421 0.183594 0.013865 -1.821630 -0.169140 1.409009 0.695754 -0.137376 -0.760160 -2.194372 -3.044663 3.888404 2.268969 0.124704 0.317733 7.017745 0.660484 2.606111 -1.750672 -3.444876 2.303967 -1.154874 -0.752636 1.235135 -1.361680 1.456683 -1.505796 -0.375228 2.381675 -1.018835 2.102807 0.022378 -0.252578 -0.637099 -2.927287 -0.116471 1.036660 -1.303683 -1.291277 -1.571987 -0.542851 1.417819 -3.125891 -1.621360 2.342053 2.091233 -0.569689 -1.628654 -0.526490 -2.789241 4.217348 2.597999 -0.731509 -0.019879 2.263905 -2.243239 2.416960 1.204407 -5.938621 -1.354154 -2.517795 -5.623059 4.617118 -0.904337 4.331007 -5.482010 5.107572 -6.775136 1.019023 -1.921649 1.797948 4.595945 -3.403945 1.713347 3.519447 6.807294 1.398881 -2.052855 3.651278 1.394996 -2.266239 3.453393 3.581816 0.462039 -1.309484 -0.688884 -2.732829 -2.655295 0.506002 -3.836732 -5.074857 2.183685 0.093009 0.428867 -2.032347 2.017411 -1.830274 3.260971 -5.004463 0.427654 0.235789 -1.028828 0.768489 1.214843 -1.426869 0.439596 -0.891626 3.705827 -4.031372 1.254406 -0.613249 2.886736 -0.657399 3.043641 -3.593992 1.615780 2.454135 -2.888996 -4.005968 -2.869653 -1.640164 2.240148 -1.397148 7.518772 6.638436 -3.673587 -2.758677 4.142649 -0.957294 0.147126 3.550444 1.297776 1.521488 0.124026 -2.941404 -3.275197 -2.365445 -0.690314 -2.691180 1.539288 0.860740 3.871969 -0.568641 3.116231 7.134316 -1.220589 -3.697770 -2.184772 1.081029 -2.555184 -2.702208 3.377276 -1.202284 1.584312 2.681934 5.175121 0.104318 -0.949056 0.840255 -2.951500 -0.748319 -2.970097 0.123674 -1.353513 1.382061 -2.134024 -2.594640 -1.255340 -1.388451 -1.814562 1.172120 4.275326 1.841062 2.923918 1.314707 3.925527 5.796371 2.098538 -1.827263 -2.513378 2.096267 2.547845 -2.070223 0.641909 -1.654432 -0.395826 -0.331350 0.673963 0.792618 3.032931 -4.131650 -0.863005 -1.869900 2.424771 1.701435 3.345661 -8.177174 1.151280 1.905552 1.600474 2.806812 2.155265 3.085805 4.351636 3.385763 1.102775 -0.412843 2.035748 -0.900726 -1.202776 1.560462 3.414827 1.669694 4.188419 3.348137 2.718908 2.776438 3.932984 2.827583 3.023384 -0.776414 6.277705 -0.027034 -1.180260 -1.059147 1.856674 3.645670 5.367526 -0.885497 2.887908 2.042893 0.914660 -1.870408 -4.201449 2.416363 -1.052819 2.970835 -1.494358 1.941939 1.238973 -2.184585 3.846339 -0.335088 -5.662958 2.337106 1.523764 3.008767 3.681300 0.908163 1.379257 -0.169341 -3.192116 4.914153 4.089389 1.250585 -3.155791 2.612021 0.880844 2.093835 -0.425782 3.788391 -0.216671 3.006357 0.357964 2.273227 1.241892 1.068340 -2.759329 -1.773865 2.472518 -3.358338 0.182179 2.440303 1.347385 -1.728827 1.789008 -2.603351 -3.422407 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 1.098373 -3.181147 1.530579 -3.769015 -3.080420 2.847707 -3.321806 -3.252120 -0.395658 -0.246882 1.337323 0.852482 1.196442 2.787799 0.155625 -2.969742 0.029483 -0.600768 1.276254 -0.085325 -0.567468 1.595035 -1.899558 0.330666 -0.212892 -2.132404 -0.059236 1.383413 0.321762 -0.062723 -1.339586 -2.460133 -3.644647 4.553980 2.892545 0.487183 0.747344 7.780177 0.803646 2.516938 -1.807280 -3.583493 2.164399 -1.234437 -1.201804 1.592940 -2.112492 1.038231 -1.564931 0.121157 2.812876 -1.723704 2.238441 0.592912 0.245295 -0.854047 -2.969485 -0.477923 1.322310 -1.482380 -1.473442 -2.007263 -0.467998 1.189137 -3.608835 -1.585540 2.999581 3.045514 0.128239 -1.760584 -0.508489 -4.035019 5.173657 2.941273 -0.835649 -0.167930 2.452260 -3.175450 2.546632 2.228680 -6.710137 -1.334302 -2.405019 -6.203573 5.189326 -1.093470 4.967830 -5.976066 5.430398 -7.685157 0.765287 -2.012577 2.157711 4.898230 -4.337722 1.363745 4.222308 8.115273 1.421378 -1.935810 4.033882 1.391048 -3.236562 3.490147 4.297187 0.326608 -1.003789 -0.554004 -2.900745 -3.213893 0.574851 -4.244760 -6.254680 2.239555 -0.306909 0.224886 -3.206984 2.516266 -1.652628 4.025248 -5.045633 0.505852 0.212713 -1.136394 0.880374 1.511504 -1.483767 0.643522 -1.147843 3.841780 -4.721032 1.028853 -1.445650 2.975559 -0.841626 3.196806 -4.745668 1.599253 2.867661 -3.572491 -4.533900 -2.748255 -1.986794 2.884807 -1.294019 8.280349 7.479186 -4.585100 -3.385264 4.733354 -0.195562 -0.048067 4.473832 1.660417 1.902474 -0.005626 -2.725403 -3.997674 -2.649504 -1.328740 -4.525134 1.549119 1.217822 4.042275 -0.403871 2.890691 9.745403 -1.559065 -4.249776 -1.728644 1.326630 -2.630948 -3.198804 4.055735 -0.412395 1.925691 3.151158 5.653842 -0.433830 -1.145242 0.669125 -2.730497 -0.888265 -3.119508 0.139567 -1.741166 2.062919 -1.952010 -2.879594 -0.921981 -1.707231 -1.912287 1.184525 6.066666 2.038745 3.136201 1.164073 3.339838 7.109158 2.538829 -1.935442 -2.550394 2.394237 3.283080 -2.542423 0.871616 -1.766972 -0.756793 -0.343893 -0.094195 0.976306 3.525198 -4.767483 -0.870389 -2.485082 2.778579 2.367646 3.830459 -9.217919 1.619397 1.389170 1.452946 3.056637 2.039746 3.752061 5.277738 4.120030 0.621751 -0.161595 1.961334 -0.739107 -1.347487 1.952155 4.373107 1.770369 5.049632 3.703134 3.140595 2.591733 4.204662 4.298897 3.535940 -0.483486 7.535887 0.344223 -0.958072 -1.485977 1.883082 4.195863 6.464208 -0.938603 3.746411 1.832180 1.398284 -2.332029 -5.487830 2.741697 -0.914630 2.689898 -1.879418 1.974031 1.432684 -2.862808 4.677542 -0.145347 -5.996533 2.253405 1.579382 3.019442 3.950954 0.894467 1.322919 -0.017635 -3.356361 5.981019 4.470072 1.699360 -3.606208 2.630096 0.921336 2.367534 -0.721727 4.135645 0.506237 4.477587 0.351250 2.573582 1.477356 0.775405 -3.138633 -1.482566 2.660815 -3.883136 0.131134 3.020377 1.936669 -2.081849 2.030582 -3.236067 -4.387467 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = 0.291944 0.010135 0.424753 -0.747325 0.015701 -0.317755 1.435181 -0.526526 -0.334673 0.895520 0.146962 -0.424432 -0.759029 0.602190 0.181892 -0.540113 0.573557 -0.698071 -0.347115 -0.086679 -0.148087 0.344740 -0.041960 -0.719296 0.638440 -0.043484 0.292026 1.019394 -0.357179 -0.140002 0.260017 -0.176538 0.248843 1.137242 0.075297 0.558029 -0.674189 1.265847 -1.217904 1.494874 -1.292864 -0.922759 1.933335 -0.205776 -0.140407 -1.503110 -0.046637 0.741983 0.044546 -0.983921 -0.186986 0.115857 0.208500 -1.087973 -0.476247 1.178525 -1.026802 -0.023145 0.529975 -1.110577 -1.184561 -0.150027 0.051716 0.157406 -1.157117 -0.844056 -0.069162 -0.854123 -0.388965 0.611241 -0.845200 -0.571946 0.836293 0.388394 0.064777 0.465955 -0.571289 -0.589019 0.593506 -0.283750 -0.308590 -0.693635 0.308153 -0.046544 0.131632 0.363148 0.822931 -1.528548 -0.353163 -1.317364 0.643919 -0.953031 0.776919 0.903694 0.134796 1.268755 -0.060050 0.054076 -0.092278 -0.115174 0.575795 0.405127 1.017240 0.198939 0.948287 0.780772 -0.941960 -1.659294 -0.836426 -0.225290 0.443267 -0.533621 -1.172443 0.609341 -0.886023 -0.297815 0.257001 -0.134370 -0.044552 1.128986 -1.112109 0.512061 0.495102 -0.047411 0.324640 0.718069 0.151690 0.039572 -0.141676 0.509000 0.313800 0.846338 0.007372 0.931590 -0.432657 -0.749170 0.379429 -0.057069 0.224571 -0.642296 -0.821252 -1.599992 -0.438976 0.690999 -0.592069 0.263136 1.332542 -0.329257 -0.955884 0.532521 0.565464 0.100101 -0.141337 0.270933 1.290544 -0.984284 0.226836 0.059021 0.389604 0.966717 2.278130 -0.339258 -1.173771 0.928777 -0.620461 -1.418322 1.045445 0.184035 0.191676 0.475147 -0.123655 -0.488969 -0.880720 1.014771 -0.524402 1.541993 -1.113067 1.203007 -0.677369 -0.238774 0.310695 -0.968785 -0.202887 -1.381330 -0.020975 -0.006862 0.624850 -0.944853 -0.663760 -0.688400 -0.352410 -0.082796 1.186962 -1.966815 -0.213409 -0.282578 -0.205129 0.770884 0.039948 -0.623664 -0.148366 -0.889369 0.512633 0.387701 0.837753 -1.335699 -0.364613 -0.208350 -0.495096 -0.102626 0.053086 0.804511 -0.367998 0.084604 0.944707 -0.099031 -0.528274 -0.350167 -1.395619 0.176508 0.391518 0.302006 0.312842 1.575137 0.903310 0.412605 -0.467122 0.157282 -0.096835 -0.529853 -1.776893 0.290769 -0.133194 0.240107 0.478253 0.817092 0.495686 0.275652 1.079368 0.311539 -0.106746 1.056396 0.313130 0.839503 -0.454909 -0.424772 0.754504 0.003646 0.778802 0.501114 0.388115 -1.066672 0.640148 -0.224064 -1.037167 -0.180521 -0.448350 -0.144582 -0.208730 1.297432 0.489717 -0.379632 -0.039293 1.762416 -0.089022 -2.136613 0.588317 0.317292 0.651299 0.683294 -0.236834 0.734618 0.950523 0.122489 0.213072 0.230511 0.740869 -1.107348 -0.116606 0.170335 0.361726 1.047693 -0.071666 -2.455794 -0.459013 0.084129 1.329505 0.055831 1.594198 -0.403680 0.766279 0.021121 0.232549 0.118158 -0.238059 0.345222 -0.058437 -0.290650 -1.818520 0.655118 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.622693 0.249907 0.743881 -1.137921 -0.295406 -0.267571 1.147493 -1.174395 -0.315305 1.202119 0.366866 -0.748254 -0.691068 0.435193 -0.365026 -0.636525 0.487560 -0.230503 -0.559187 -0.651571 -0.183441 -0.024455 -0.099679 -1.691264 0.498174 -0.572236 0.941200 1.275185 -0.499219 0.403370 0.112582 -0.444017 0.882501 1.976219 0.446282 0.481594 -1.012428 1.567938 -0.609984 1.261214 -2.072271 -1.722280 2.807748 -0.368186 0.272826 -2.126865 -0.309330 0.934849 -0.305697 -0.904812 -0.868423 -0.256788 0.604134 -1.946254 -1.134182 1.485105 -1.084824 0.327961 0.680782 -1.855158 -1.874043 -0.451531 0.381631 0.513753 -1.019503 -1.322441 0.009299 -0.064529 -0.832564 0.943528 -1.355685 -1.125750 1.526584 0.291676 -0.090110 0.401194 -0.932282 -0.873327 0.604619 0.029203 -0.455564 -1.066350 0.831838 0.331977 0.200026 0.526679 1.432958 -2.460209 -0.565639 -2.211691 1.096990 -1.063439 1.365411 1.024263 -0.505995 1.595451 0.001631 0.216735 -0.183715 0.359311 0.903060 0.547653 1.540977 -0.174918 1.531877 0.973017 -0.645822 -2.144123 -0.652583 -0.595591 0.362019 -0.576781 -2.401297 0.768462 -1.629829 -0.043565 -0.306560 -0.246063 -0.050503 1.858690 -1.981426 -0.122007 0.933684 -0.314356 0.797729 0.667968 0.145170 0.357465 0.087401 0.603244 0.462324 0.285667 -0.024094 1.411593 -0.515353 -1.852157 -0.372029 0.243794 0.662505 -1.153541 -1.706017 -1.640491 -0.937328 1.120826 -0.705789 0.040698 1.958904 -0.310376 -1.540405 0.472816 0.377865 -0.319100 0.745269 0.690109 2.298040 -1.826383 0.846502 0.112636 0.634540 1.562909 2.465178 -1.167961 -1.910462 1.428387 -0.774529 -1.752421 1.136221 -0.108554 0.452307 0.629040 -0.217538 -0.679275 -0.945976 1.384378 -0.697335 2.405719 -1.564906 1.997461 -1.683436 -0.889218 0.339927 -0.814435 -0.617692 -0.890233 0.693687 -0.097634 1.561831 -1.422084 -1.381141 -0.202388 -0.812347 0.325281 2.383967 -1.601220 -0.490422 -0.410276 -0.894702 0.829642 0.112212 -1.113365 -0.113454 -1.018047 0.640319 1.052614 1.297914 -2.034694 -0.916919 -0.583975 -0.669530 -0.464369 0.381773 1.419299 -0.118231 0.069653 1.141622 -0.448925 -0.440014 -0.765617 -0.845188 0.569677 0.173113 0.331619 -0.182259 2.550743 1.444192 0.779567 -0.654221 -0.135270 -0.089162 -1.395840 -1.621293 0.374593 0.226127 0.042982 0.695562 1.650692 0.401164 0.647807 1.679001 0.298042 0.073740 1.610166 0.130368 1.336892 -1.468100 -0.033656 0.695721 -0.371702 1.512133 1.557026 0.552539 -1.776979 0.659651 -0.276346 -1.102986 -0.757236 -0.789965 0.099578 -0.458735 1.684744 1.471732 -0.427604 -0.503864 2.760898 0.311798 -2.800403 1.296797 0.464893 0.788554 1.025784 -1.178806 0.772702 1.357366 0.983272 0.074304 0.373851 0.990023 -1.898772 -0.909161 0.224161 1.027301 0.960499 -0.508461 -2.731867 -0.242513 0.523399 2.203630 0.173466 2.044226 -1.103486 1.020208 -0.147691 0.308786 0.349290 -0.127978 0.650127 -0.795343 -0.388343 -2.135150 0.835189 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = 0.428723 0.078307 0.817677 -1.254969 -0.152217 -0.526402 2.088012 -0.577062 -0.387484 1.375130 -0.006113 -0.658685 -1.549794 0.565616 -0.002481 -0.793682 0.384683 -1.101486 -0.587068 -0.289393 -0.440092 0.370622 -0.132343 -1.235557 0.797282 -0.257576 0.645903 1.667769 -0.055178 0.072801 0.452408 -0.632906 0.690573 1.907056 0.238831 0.327652 -0.940501 2.153722 -1.618843 2.053216 -2.062003 -1.731649 3.184008 -0.424910 -0.395645 -2.779378 0.034856 1.252055 -0.635808 -1.151514 -0.456192 0.234626 0.459352 -1.992319 -0.917171 1.869644 -1.843347 0.428241 0.760393 -1.344056 -1.694276 -0.441370 0.130655 0.401427 -1.400809 -1.307453 -0.116762 -1.272709 -1.115921 0.657733 -1.311348 -0.623924 1.303180 0.464526 -0.163266 0.624910 -0.686162 -0.606107 0.792310 -0.201129 -0.521315 -1.135285 0.367738 -0.273191 0.635686 0.317049 0.863570 -2.515011 -0.525689 -2.036815 0.873735 -1.479172 1.002509 1.374464 -0.059310 2.203507 -0.217290 -0.283913 -0.417631 -0.523071 0.846189 0.745116 1.990457 0.364527 1.436353 1.317868 -1.247600 -2.396376 -1.307827 -0.515207 0.528781 -0.639859 -2.363638 0.733869 -1.225447 -0.378585 0.463003 -0.234757 -0.593439 1.627666 -2.087788 0.791462 0.811812 -0.420022 0.674464 1.154346 0.131652 -0.132439 0.040272 0.853424 0.436575 1.227761 0.058625 1.470675 -0.315410 -1.087508 0.205832 -0.020401 0.418120 -0.836499 -1.529827 -2.199058 -0.778217 0.811135 -0.846339 0.382197 2.413880 -0.312945 -1.698759 0.851236 0.006784 0.576903 0.063675 0.544263 2.076510 -1.210466 0.128181 -0.064139 0.310854 1.486000 3.447943 -0.625243 -1.778852 1.480577 -0.868632 -1.379753 0.688922 -0.064043 0.307726 0.501870 -0.255190 -0.990547 -1.418515 1.695691 -1.076481 2.409502 -1.487627 1.999984 -1.048425 -0.627772 0.375508 -1.848131 -0.399002 -1.937994 0.000171 -0.038665 0.810695 -1.428535 -1.184203 -1.019971 -0.334878 -0.144196 2.236994 -2.564287 -0.430870 -0.461844 -0.264217 1.435904 0.148904 -1.215555 -0.219977 -1.461282 0.708887 0.789210 1.024083 -2.289283 -0.675107 -0.037278 -0.875205 0.542984 0.186782 1.015550 -0.370546 0.138020 1.500611 -0.237122 -0.944703 -0.597404 -2.193979 0.312234 0.602071 0.372786 0.318308 2.428403 1.480983 0.562817 -0.612087 0.705713 -0.189845 -0.726846 -2.216485 0.233853 -0.153066 0.108673 0.847941 1.360801 0.729089 0.485066 1.673217 0.750585 -0.682201 1.421144 0.435776 1.435908 -0.867315 -0.951788 1.098251 -0.036642 1.153318 1.171065 0.695123 -1.455904 1.204653 -0.255066 -1.186755 -0.581682 -0.535752 -0.313234 -0.115443 2.292598 1.085810 -0.730436 0.035225 2.933114 -0.304334 -3.224358 1.012759 0.728380 1.087409 0.665904 -0.672656 0.857511 1.579722 0.309912 0.291108 0.405168 0.779341 -1.815279 -0.071614 0.316660 0.740415 1.387280 -0.263554 -3.976151 -1.161689 0.061473 2.468105 0.246799 2.731115 -0.706560 0.662042 0.107986 0.353181 0.376858 -0.267096 0.825682 -0.425123 -0.189521 -2.621462 0.899923 +PE-benchmarks/ugly-numbers.cpp__main = 0.194266 0.171875 0.398657 -0.571757 -0.259086 -0.197164 0.357214 -0.430765 -0.192206 0.185259 0.154779 -0.515297 -0.700333 0.403801 -0.306338 -0.621176 -0.021822 -0.201570 -0.362782 -0.418765 -0.140742 0.028763 -0.020014 -0.699270 0.262063 -0.240582 0.300286 0.689532 0.385072 -0.127067 0.088968 -0.189234 0.519789 1.007674 0.148311 0.156205 -0.277251 0.970194 -0.141525 0.501586 -1.127144 -0.793768 1.427262 -0.176185 -0.155176 -1.355797 -0.304170 0.550900 -0.888467 -0.053849 -0.300415 0.001208 0.067031 -0.958270 -0.432986 0.976901 -1.132822 0.840482 0.322226 -0.619043 -0.699950 -0.192965 0.038226 0.020818 0.000811 -0.663221 -0.074750 -0.038311 -0.692838 0.421369 -0.533759 -0.384147 1.242257 0.013784 -0.117450 0.309472 -0.336382 -0.170234 0.322382 -0.383333 -0.262164 -0.538839 0.535164 0.366130 0.378940 0.275837 0.219268 -1.259010 -0.477169 -1.069096 0.524604 -0.699495 0.577832 0.522684 -0.575378 0.890518 -0.056164 -0.582631 -0.057346 0.202117 0.521203 0.078519 0.773098 0.045161 0.540077 0.348828 -0.216384 -0.860721 -0.300353 -0.443673 -0.035873 -0.090057 -1.447691 0.288095 -0.744795 0.225227 0.007301 -0.078952 -0.028300 0.460088 -0.848017 0.003040 0.388168 -0.211055 0.519516 0.542749 0.036869 0.089584 -0.094312 0.459232 0.209536 0.246371 -0.043663 0.618768 0.172121 -1.414438 -0.607450 0.032726 0.255525 -0.433041 -0.875455 -0.715118 -0.371693 0.207478 -0.372524 0.156943 1.151508 -0.118286 -0.986601 0.491416 0.221800 0.403226 0.623139 0.336025 1.282413 -0.720630 0.226271 0.042805 0.094834 0.706574 0.502792 -0.505429 -0.878300 0.610835 -0.112085 -0.749135 0.248860 -0.129547 0.113877 0.316273 -0.136359 -0.452358 -0.624757 0.792107 0.210939 1.272396 -0.519832 1.162581 -0.771304 -0.857577 0.167337 -0.495432 -0.198722 -0.213164 0.070935 -0.034269 0.518114 -0.803473 -0.689869 -0.218566 -0.146745 -0.044027 1.110429 -0.252456 -0.176300 -0.174553 -0.221591 0.432109 0.238559 -0.658992 0.187942 -0.776692 0.250145 0.647451 0.591732 -1.390838 -0.160535 -0.125637 -0.310091 0.298139 0.113108 0.514114 0.022988 0.001972 0.498747 -0.287330 -0.031923 -0.315031 -0.317861 0.217104 -0.123906 0.032786 0.048077 1.177987 0.911616 0.277184 -0.271701 0.235895 0.000826 -0.594692 -0.188317 0.043555 0.082437 0.154802 0.407008 0.612759 0.263637 0.217981 0.827604 0.389364 -0.363123 0.775971 0.305263 0.853003 -0.755690 -0.156722 0.247686 -0.141427 0.740720 0.963699 -0.131270 -0.715910 0.505628 0.115970 -0.087637 -0.826447 -0.422789 -0.065862 -0.378441 1.183892 0.517722 -0.329435 -0.084191 1.356232 0.040145 -1.249664 0.879816 0.350757 0.294835 -0.046831 -0.480762 -0.036421 0.843017 0.006697 -0.225043 0.219601 0.561547 -0.918031 -0.321279 0.065657 0.662126 0.312242 0.012530 -1.364746 -0.326130 0.455168 1.130343 0.183675 0.725873 -0.419306 -0.162367 -0.052147 0.248537 0.096868 -0.030546 0.224388 -0.513365 -0.116418 -0.593088 0.025828 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 6.881539 1.037054 2.552279 -3.426250 -0.613879 -1.403658 10.428289 -8.201183 -6.100491 16.446174 2.217155 -6.425381 -2.114195 4.370893 -0.115345 -1.036596 3.914390 3.828584 -2.981864 -2.805934 -5.760060 0.361121 -2.581977 -10.315450 3.180005 -1.526400 4.894040 7.489269 -7.674121 6.930841 0.981213 -4.484961 5.035329 13.782902 5.040682 -2.459912 -7.308903 13.581056 -15.110546 13.200327 -9.455902 -10.364502 18.969702 -1.745532 3.266031 -7.941700 -2.719667 8.646272 5.444851 -11.908448 -4.870480 -1.969993 4.887510 -12.123189 -7.713999 11.204041 -6.858900 -2.118090 7.260862 -12.869643 -16.069577 -2.442837 4.640804 4.003666 -14.909668 -9.875802 -0.295149 -2.630684 0.958638 2.731060 -14.264540 -11.767227 3.326395 1.394293 -1.584275 0.729916 -7.471985 -4.461775 4.714784 6.974870 -6.305105 -7.034379 0.717937 -4.893329 1.027009 6.240585 13.189069 -17.773606 2.680750 -17.757974 5.843223 -7.459078 8.994961 11.687699 0.022340 10.368801 1.304493 8.309229 -2.460343 -0.246447 5.916855 3.263148 5.055471 0.453345 9.150305 12.075773 -10.125629 -16.121883 -8.049914 -3.279082 6.966435 -2.137450 -8.510805 6.862322 -10.895197 -1.792437 -1.257886 -0.301888 -3.319985 14.417633 -14.810922 2.322090 6.086630 -3.616793 8.257426 5.904065 0.945360 2.591552 -2.086104 3.937078 2.768964 2.307963 -0.029860 10.884738 -8.978476 -5.277372 0.041514 4.339688 6.358887 -10.103837 -11.400874 -16.817264 -3.681577 10.316232 -7.342982 4.886148 16.808663 -6.174694 -6.730273 4.185016 -1.065741 -1.807630 3.893664 4.136845 18.995736 -12.273203 4.313208 1.815913 2.537550 8.606329 17.585590 -6.866793 -11.857716 11.161872 -4.818750 -4.770650 15.785989 -0.217330 0.496470 4.541278 2.545014 1.564485 -4.673236 11.817941 -12.614150 9.597528 -8.660173 14.682173 -6.879380 0.119461 2.593075 -11.255254 -6.360256 -10.278945 3.224298 -2.887671 11.539073 -6.983780 -8.121180 -2.275220 -5.536743 0.019587 16.370298 -10.870301 -2.660347 -0.571666 -5.802960 8.401759 1.140896 -5.366023 -3.749975 -7.807156 3.367652 5.790085 1.287030 -13.724043 -7.927919 -4.516438 -4.851482 -5.075615 1.775473 9.687332 -8.325558 1.438331 8.773916 -0.839080 -4.659562 -3.218251 -7.694500 6.116827 1.343001 4.163384 2.073239 18.251542 7.912842 9.555249 -1.469769 2.695499 -2.049681 -5.820149 -17.228855 7.045404 -0.235847 4.859416 6.250169 5.572735 2.284429 6.220724 6.446824 -5.378433 4.452398 10.557192 2.869339 10.447852 -5.746427 -0.869783 7.075114 -2.344042 9.306750 7.762686 2.687215 -13.211866 4.093216 -9.813919 -12.705877 0.905817 -1.492418 0.539710 -4.047954 6.877612 12.085828 -1.146873 -5.421099 20.000669 -2.017230 -22.923876 8.141572 4.945260 7.018080 14.198559 -5.690464 12.603882 6.804282 12.315506 3.986651 7.772470 8.093112 -14.052521 2.931838 1.636200 5.734852 10.614468 -3.122564 -29.563100 1.322790 2.347377 12.719419 -2.275388 15.144746 -9.064481 10.935632 0.509672 1.166104 4.469964 -2.885930 9.000338 -1.063791 0.954550 -18.689293 8.674838 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = 1.539813 0.133747 0.593674 -1.310660 -0.590179 0.051535 1.288746 -2.238254 -1.414570 2.868485 0.778083 -1.815686 -0.770018 1.337287 -0.213344 -1.176704 0.759275 0.788863 -0.649576 -0.951988 -1.328934 0.010838 -0.706247 -2.553067 0.614848 -0.594460 1.061713 1.707654 -0.564773 1.182515 -0.224985 -1.072075 1.134836 3.893891 1.532339 -0.486760 -1.340478 4.009274 -2.059561 2.775666 -2.663636 -2.716098 4.694918 -0.467074 0.274171 -1.901063 -0.834457 2.163236 -0.318628 -1.920708 -0.861295 -0.756533 1.025456 -2.836599 -1.912744 2.928002 -2.493535 0.810778 1.726298 -2.662551 -3.540858 -0.920303 1.037135 0.863323 -2.610034 -2.359816 0.169482 0.028126 -0.481149 0.548968 -3.400809 -3.006540 2.263050 0.665766 -0.619472 0.177187 -1.717957 -1.010582 1.124126 1.135955 -2.110195 -1.722924 0.511824 -0.797811 1.064020 1.482112 2.963846 -4.933922 0.500530 -5.095628 1.581179 -2.012569 2.581266 3.155738 -1.205606 2.407814 0.500778 1.431856 -0.333029 0.103514 1.976155 0.336771 0.824558 0.183095 2.318233 2.526854 -1.858639 -3.413773 -1.426573 -1.264404 1.047916 -0.380529 -3.087239 1.718747 -3.162651 0.302221 -0.632643 0.352884 -0.964879 2.592955 -3.582802 -0.574469 1.096768 -0.990975 2.776795 1.738992 0.074921 1.011053 -0.607824 1.551343 0.477683 0.336973 -0.439648 2.716041 -1.311308 -2.181556 -1.582615 1.156698 2.011060 -2.634498 -3.480210 -3.885858 -1.175423 1.906324 -1.804765 2.013810 4.687461 -1.623587 -2.150867 1.758529 -0.429024 0.423544 2.315037 1.052910 5.043655 -3.121766 1.170224 0.439413 0.446645 1.701619 2.373081 -1.802003 -2.670559 2.649005 -0.907848 -0.335082 3.354578 -0.130736 -0.318524 0.665710 0.370606 -0.143217 -1.857926 3.220965 -1.917969 2.573515 -1.353409 4.340748 -2.115668 -1.128438 0.958473 -2.275520 -1.539821 -1.815737 0.582461 -0.866006 2.932726 -2.230110 -2.374593 -0.212317 -0.908634 -0.338897 3.869903 -0.453369 -0.566550 0.132029 -1.201430 2.101233 1.136425 -1.357608 -0.579104 -2.383819 0.767320 2.159144 0.297983 -3.299879 -1.664911 -1.250665 -1.144313 -0.453763 0.443066 2.390859 -2.024614 -0.027013 1.694625 -0.065275 0.068606 -0.331527 -2.182370 1.730095 0.129257 0.487778 0.794492 4.654953 2.296769 2.538604 -0.029063 0.500759 -0.268613 -1.351724 -2.850553 0.992607 0.243619 1.777742 1.686524 1.569751 0.887339 1.593878 1.931386 -0.621604 0.688330 2.841682 0.823703 3.406093 -1.630128 -0.040293 1.241802 -0.841407 2.814654 3.208061 -0.307617 -2.908120 1.302005 -1.745484 -2.290922 -1.472464 -0.441638 -0.046271 -1.031858 1.692153 2.635924 -0.150886 -1.584812 5.310928 -0.377973 -5.687242 2.820723 1.363095 1.642247 2.966945 -1.525265 2.176318 1.920400 1.678222 0.986450 2.229735 2.332566 -3.464255 0.792989 0.212789 2.004914 1.613020 -0.341509 -5.699413 0.605629 1.206745 3.401876 0.419849 2.874152 -2.278087 1.476172 0.094098 -0.023263 0.900291 -0.479982 2.204217 -0.638499 0.264890 -3.698549 1.048235 +PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 9.401359 -2.044466 5.170889 -5.771445 -2.187595 -1.422141 7.361975 -10.080394 -5.754480 21.062138 2.652740 -9.275251 -2.107992 10.285866 -0.512443 -3.027956 4.119372 1.084065 -1.225273 1.339355 -6.514231 2.775888 -3.749686 -11.042362 5.403561 0.151398 5.212321 9.443952 -4.307381 6.876526 -0.884353 -6.556744 4.467738 19.577620 6.507074 -3.981253 -5.539112 22.838215 -20.681971 21.053408 -12.374117 -14.285075 24.689115 -2.721299 0.555288 -9.151376 -4.360255 13.351669 -2.185298 -15.683791 -1.778257 -1.118247 5.902129 -15.043320 -8.554695 14.766060 -17.467116 1.123011 9.878477 -10.576059 -17.910523 -4.588779 3.189863 4.597897 -17.466481 -12.903819 -0.034412 -4.976380 -2.835980 1.066933 -16.503443 -13.503104 12.116232 2.590989 -4.406039 2.228911 -5.542549 -7.109668 8.653329 2.169627 -11.196499 -8.899036 -2.481361 -9.950940 8.175637 6.663379 14.396152 -24.931564 7.988282 -25.227397 8.447213 -13.602396 10.644344 18.808108 -8.147251 13.144834 2.811438 16.422615 0.298314 -1.522740 10.673821 7.737556 3.379217 2.533009 13.204832 16.389922 -14.332343 -19.366891 -11.817517 -6.574839 6.889173 -5.340015 -17.283251 8.350654 -11.914836 3.500616 0.111759 0.320748 -6.688333 17.086302 -22.816759 3.994105 4.924420 -4.125030 10.476762 11.405859 -0.691437 1.735767 -2.978284 9.436943 1.189978 3.786570 1.158449 14.461191 -12.402226 -6.599977 -2.547534 5.118239 8.614880 -12.671117 -16.872425 -27.888285 -4.005954 9.324732 -9.137289 13.109564 25.411539 -6.535121 -9.400368 9.997079 -4.589892 0.703770 9.210151 4.471290 24.214889 -13.507532 1.067318 0.162310 -0.491067 7.938293 17.909463 -5.740210 -13.661936 14.100453 -6.365845 -6.088185 20.362412 3.215594 -1.688403 -0.634010 1.973355 -2.915270 -9.715817 19.773898 -19.558777 10.465639 -10.356384 22.727495 -5.565124 -2.442709 5.376693 -17.613521 -6.069148 -17.594475 -1.001352 -2.426733 13.606535 -13.415358 -10.735116 -3.005225 -3.390188 -2.965118 20.939117 -10.902343 -2.360243 0.678467 -3.742202 16.584745 4.693451 -7.672532 -1.927263 -13.855445 4.522697 8.785332 -2.129835 -19.853489 -8.261225 -6.499573 -6.200732 -0.882599 0.981032 11.322615 -14.911358 -1.346907 10.048160 0.743858 -3.463245 -1.446577 -19.075845 7.123373 3.020128 6.068188 9.676630 23.611750 9.672040 12.417292 0.247563 5.213964 -3.527688 -4.275878 -21.647534 6.716207 -0.028786 7.565778 8.703921 9.204239 6.661397 7.666918 6.336382 -1.100141 1.602413 16.053503 6.887023 15.136640 -4.452693 -3.960489 8.536584 -1.138538 13.805268 12.232209 -4.032107 -12.340195 7.542410 -10.173542 -14.324995 -0.684602 -0.575901 -2.024377 -2.876506 6.975306 10.708668 -0.146430 -4.935649 26.026450 -4.481032 -32.213785 10.547246 6.701074 10.353111 17.548182 -4.769385 14.745380 6.646143 8.264249 9.375945 9.910370 10.889954 -17.262284 6.540296 2.448684 8.430871 14.763821 1.208188 -34.794512 1.632300 1.908608 16.832658 1.071747 17.590704 -11.406096 8.631172 1.374665 -1.944022 5.241628 -4.802657 11.570744 -0.166382 1.941540 -24.142124 4.985187 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.170818 -0.123729 0.335818 -0.491957 -0.470620 0.063122 -0.090383 -0.224273 -0.084196 -0.114844 0.056689 -0.067148 -0.228241 0.521350 -0.197406 -0.523370 -0.110831 -0.303696 -0.059054 -0.142229 -0.107204 0.316204 -0.136623 0.011687 0.223030 -0.229757 -0.090189 0.305223 0.204416 -0.330038 -0.034531 -0.239594 -0.123897 0.676695 0.087681 0.080146 0.098337 1.168178 0.223703 0.311882 -0.507402 -0.600737 0.527362 -0.198266 -0.128709 -0.452020 -0.343086 0.279718 -0.486868 0.193498 0.230440 0.034624 -0.107892 -0.215870 0.124336 0.228731 -0.923958 0.509182 0.187102 -0.149232 -0.216864 -0.253293 -0.252211 -0.211548 -0.037098 -0.324963 0.156783 0.321521 -0.370642 0.119807 0.016275 -0.297620 0.977336 0.262654 -0.108028 0.280187 0.315625 -0.272016 0.381678 -0.378637 -0.670558 -0.256937 0.099886 -0.211652 0.709221 -0.013557 0.262570 -0.904025 0.309487 -0.906868 0.204786 -0.609723 0.297964 0.709105 -0.604561 0.530310 0.368631 0.251355 0.183297 0.073055 0.648962 0.177053 0.028013 0.449670 0.341736 0.038076 -0.099305 -0.196988 -0.350665 -0.466516 -0.082891 -0.229311 -1.013126 0.197675 -0.041874 0.240656 -0.145335 0.282296 -0.035968 0.280007 -0.768068 -0.018369 0.253369 -0.173734 0.158810 0.330241 -0.169674 -0.057877 -0.355012 0.598985 -0.387137 0.304732 -0.169923 0.366675 0.088214 -0.472015 -0.746785 -0.106555 0.123198 -0.359498 -0.660461 -0.396378 -0.230558 0.213433 -0.250907 0.743583 1.133890 -0.424995 -0.575180 0.785947 0.232017 0.355819 0.575562 0.261595 0.452079 -0.044573 -0.338730 -0.299218 -0.257238 0.065357 -0.626364 0.149599 -0.152920 0.397448 0.139506 -0.104437 0.865204 -0.283451 -0.372989 -0.066266 0.028611 -0.460606 -0.488424 0.681900 0.354551 0.720741 0.153145 0.887921 -0.187637 -0.536950 0.119941 -0.329979 0.074236 -0.371032 0.052887 -0.127434 0.185798 -0.533022 -0.484074 -0.068248 -0.221959 -0.290665 0.238856 0.535731 0.173528 0.181667 0.242605 0.363564 0.769953 -0.008696 0.058789 -0.668658 0.270987 0.315070 -0.031587 -0.550876 0.100722 0.072528 -0.120070 0.242775 0.086939 0.209353 -0.195455 -0.135783 -0.082812 0.015135 0.204778 0.218699 -0.569491 0.051623 -0.039557 0.169427 0.266485 0.358009 0.871001 0.414214 0.295565 0.215607 0.013929 0.015331 0.195687 -0.097023 0.148990 0.423678 0.263076 0.566995 0.538966 0.216563 0.456493 0.611558 0.091887 0.561511 0.194773 1.114804 -0.309147 -0.248116 -0.120755 0.185626 0.615467 0.892106 -0.273488 0.242727 0.408858 0.371015 -0.021198 -0.754081 0.042950 -0.151061 -0.018483 0.293313 0.135330 -0.170280 -0.025782 0.718066 -0.089518 -0.801661 0.464958 0.235981 0.335814 -0.016673 0.157611 -0.115186 0.460154 -0.553939 0.333138 0.364119 0.360300 -0.541081 -0.073305 0.057397 0.444104 -0.109718 0.584680 -0.286185 0.207149 0.288423 0.469500 0.137693 0.085306 -0.238925 -0.558964 0.251538 -0.247282 -0.186281 0.414282 0.132035 -0.384212 0.135102 -0.234671 -0.635568 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.104741 -0.271414 0.242012 -0.497552 -0.379842 0.199372 -0.226334 -0.372462 -0.072218 -0.167441 0.184122 -0.066277 -0.124986 0.468525 -0.043315 -0.521425 -0.031610 -0.029699 -0.024776 -0.005248 -0.080051 0.163894 -0.180842 -0.115539 0.057456 -0.209590 0.029604 0.263728 0.128239 -0.145297 -0.171887 -0.275023 -0.182941 0.677528 0.250163 0.237414 0.007328 0.991515 0.154768 0.515667 -0.502908 -0.526833 0.496032 -0.177424 -0.114717 -0.273356 -0.346616 0.262452 -0.419850 -0.051934 0.242418 -0.110671 0.107677 -0.190275 0.039036 0.181514 -0.611071 0.246680 0.230874 -0.252868 -0.225542 -0.221687 -0.137756 0.024682 -0.256469 -0.317782 0.195688 0.328266 -0.213893 -0.033407 -0.134109 -0.518983 1.011897 0.282460 -0.158560 0.125109 0.222182 -0.285049 0.348537 -0.029791 -0.707893 -0.247681 -0.030327 -0.298978 0.621095 0.029408 0.464177 -0.886980 0.356900 -0.991406 0.276883 -0.439310 0.333385 0.611653 -0.570414 0.344557 0.422595 0.474590 0.161324 0.041550 0.521020 0.145614 -0.142083 0.299536 0.531553 0.028198 -0.136087 -0.289607 -0.340003 -0.499404 0.031255 -0.364172 -1.002044 0.250224 -0.140145 0.294452 -0.292909 0.314469 -0.040789 0.290609 -0.709269 0.092753 0.188906 -0.163902 0.258855 0.340664 -0.170451 0.058570 -0.217731 0.483337 -0.416441 0.174922 -0.161473 0.417769 0.028727 -0.178554 -0.644385 0.109230 0.300736 -0.424381 -0.634144 -0.436761 -0.234787 0.422017 -0.241933 0.747768 1.038246 -0.498168 -0.539900 0.600309 0.184370 0.182269 0.555831 0.259200 0.539090 -0.181861 -0.185366 -0.323068 -0.250487 0.037267 -0.453979 0.069736 -0.181649 0.510824 -0.035025 -0.203239 1.078491 -0.211343 -0.373521 -0.035287 0.059533 -0.379834 -0.447045 0.609805 0.119753 0.551341 0.158089 0.837831 -0.262239 -0.340456 0.109828 -0.316073 -0.112997 -0.341802 -0.008630 -0.133666 0.317266 -0.487136 -0.426933 -0.094445 -0.267114 -0.204638 0.347681 0.532640 0.103013 0.233738 0.084296 0.404992 0.752861 0.092780 -0.094782 -0.501304 0.296726 0.367833 -0.135645 -0.303500 -0.117699 -0.115272 -0.096602 0.096455 0.106828 0.369602 -0.359545 -0.113805 -0.124137 0.084593 0.242426 0.248564 -0.684620 0.081601 0.127182 0.185103 0.324404 0.455034 0.657016 0.598125 0.364862 0.133386 -0.013175 0.059053 -0.048553 -0.121136 0.129891 0.492318 0.276785 0.511950 0.431739 0.281175 0.482894 0.471872 0.332740 0.563162 0.136909 0.964209 -0.086611 -0.165265 -0.043131 0.097841 0.606370 0.865349 -0.321094 0.299877 0.317942 0.218785 -0.194398 -0.661829 0.131671 -0.102302 -0.056888 0.261339 0.248383 0.068930 -0.276385 0.754835 -0.039442 -0.837780 0.394326 0.201125 0.361378 0.328328 0.015700 0.098704 0.233747 -0.352095 0.455746 0.433162 0.365974 -0.578147 0.052921 0.078479 0.340670 0.067981 0.432891 -0.167118 0.300145 0.202735 0.538215 0.146652 0.082713 -0.393636 -0.222813 0.209501 -0.313628 -0.002391 0.223103 0.193169 -0.233535 0.027002 -0.432150 -0.504859 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.052020 -0.129463 0.184309 -0.435108 -0.493908 0.094090 -0.128372 -0.256583 -0.088337 -0.138606 0.155193 -0.119800 -0.253008 0.533475 -0.091732 -0.491380 -0.093235 -0.064786 -0.018495 0.048574 -0.071797 0.280742 -0.148126 0.022812 0.103910 -0.097787 -0.119412 0.196446 0.260482 -0.226499 -0.154402 -0.238259 -0.108431 0.533182 0.145710 0.173309 0.021902 0.921758 0.096178 0.493787 -0.526460 -0.436095 0.372351 -0.143461 -0.042371 -0.490305 -0.366365 0.273157 -0.433654 -0.005271 0.295202 -0.008276 -0.009485 -0.101190 0.191026 0.179248 -0.664581 0.438709 0.238062 -0.143357 -0.014559 -0.157456 -0.277317 -0.065058 -0.098948 -0.273767 0.022143 0.265127 -0.224542 -0.034073 -0.041996 -0.353130 0.911399 0.220050 -0.241375 0.163071 0.234131 -0.232448 0.329011 -0.388638 -0.636227 -0.159397 0.028824 -0.011688 0.520861 0.081635 0.284960 -0.762257 0.201196 -0.834148 0.255833 -0.458369 0.234565 0.584815 -0.480041 0.295228 0.365031 0.080568 0.350273 0.170178 0.470579 0.173120 -0.024920 0.303804 0.295635 0.086315 -0.101746 -0.196060 -0.290338 -0.473766 -0.029175 -0.144841 -0.875624 0.181669 0.013386 0.382390 -0.157007 0.241860 0.048618 0.131975 -0.564511 0.025603 0.199018 -0.134235 0.225520 0.391729 -0.155304 0.012468 -0.312593 0.452844 -0.374157 0.299708 -0.125069 0.350109 0.021620 -0.453540 -0.643039 0.034014 0.157980 -0.324173 -0.487127 -0.436441 -0.102515 0.227750 -0.256516 0.446873 0.944850 -0.492976 -0.452062 0.638805 0.221151 0.213832 0.428362 0.169731 0.468385 -0.054269 -0.249072 -0.233755 -0.319254 -0.041178 -0.254132 0.176533 -0.219927 0.322412 0.020961 -0.491266 0.658713 -0.150820 -0.397131 -0.112165 0.021705 -0.341256 -0.336212 0.521666 0.099081 0.466555 0.042936 0.683223 -0.157160 -0.379656 0.133726 -0.258268 -0.008005 -0.272674 -0.046158 0.041888 0.177476 -0.510009 -0.299294 -0.060681 -0.220046 -0.314131 0.181290 0.281811 0.055017 0.235655 0.197428 0.370832 0.669496 0.097282 0.025769 -0.479715 0.281997 0.168737 -0.128566 -0.511545 0.009837 -0.088070 -0.087638 0.204076 0.026562 0.189497 -0.142005 -0.125156 -0.091147 -0.091770 0.270438 0.239357 -0.266490 0.014073 0.037308 0.248757 0.263721 0.322852 0.577326 0.532395 0.365589 0.236864 -0.014689 0.067876 0.162204 -0.041091 0.133468 0.244969 0.267658 0.382752 0.456340 0.174845 0.433231 0.404587 0.162129 0.501407 0.124477 0.881686 -0.122726 -0.200144 -0.035299 0.110508 0.505432 0.771001 -0.342858 0.268186 0.296585 0.180431 -0.071529 -0.456108 0.148769 -0.112637 -0.214813 0.371370 0.158698 0.030565 -0.147092 0.579943 -0.141070 -0.665439 0.371446 0.149478 0.330496 0.109468 0.161727 -0.013214 0.246575 -0.428363 0.340605 0.407161 0.359083 -0.451223 -0.188589 0.031315 0.252154 0.185022 0.478306 -0.258964 0.104350 0.297452 0.451899 0.053644 0.041840 -0.292744 -0.408205 0.236583 -0.209270 -0.101675 0.119199 0.083203 -0.159849 -0.005147 -0.192484 -0.521505 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.185792 -0.655046 0.404500 -0.842044 -0.686949 0.325162 -0.380984 -0.465060 -0.124084 -0.006783 0.152081 -0.028318 -0.164533 0.803225 0.023049 -0.852557 -0.003120 -0.138062 0.148812 0.038882 -0.133425 0.460752 -0.263772 0.015204 0.166617 -0.375939 -0.106406 0.440161 0.299146 -0.181290 -0.128411 -0.508218 -0.521078 1.015611 0.360233 0.243187 0.041920 1.810647 0.198521 0.934879 -0.615531 -0.874335 0.729332 -0.301158 -0.182172 -0.130468 -0.477598 0.441223 -0.605914 -0.134326 0.517227 -0.069843 0.270643 -0.191567 0.084060 0.081381 -0.971143 0.230400 0.314109 -0.322839 -0.282254 -0.361495 -0.352237 0.115493 -0.654899 -0.471920 0.327296 0.430627 -0.341781 -0.222707 -0.081941 -0.609209 1.375724 0.583389 -0.268743 0.217138 0.570875 -0.456292 0.621180 -0.043544 -1.334887 -0.383793 -0.362930 -0.929397 1.144485 -0.086376 0.907820 -1.435274 0.972303 -1.614883 0.396528 -0.726817 0.458020 1.223264 -0.886519 0.636780 0.772259 1.175882 0.345540 -0.190339 0.936442 0.376910 -0.356475 0.783741 0.817364 0.110897 -0.336332 -0.367712 -0.673509 -0.722494 0.088745 -0.797035 -1.464095 0.451263 0.030624 0.405471 -0.345098 0.545724 -0.286372 0.568670 -1.270918 0.199377 0.239213 -0.275554 0.236767 0.446178 -0.333568 -0.015782 -0.372850 0.940085 -0.857009 0.419062 -0.155661 0.725462 -0.092420 0.271427 -0.866082 0.183352 0.416307 -0.649337 -1.000692 -0.794770 -0.380726 0.629400 -0.398184 1.538969 1.756333 -0.845979 -0.725602 1.113845 -0.017845 0.291108 0.774128 0.365304 0.538684 -0.020546 -0.675871 -0.686162 -0.544730 -0.012283 -0.531773 0.377200 -0.102556 0.882924 -0.117161 0.136359 1.688662 -0.348513 -0.781549 -0.499178 0.153414 -0.707523 -0.701588 0.999977 -0.227363 0.705546 0.344026 1.341537 -0.054663 -0.416209 0.240563 -0.739252 -0.137621 -0.800612 0.012403 -0.238868 0.309850 -0.776672 -0.680622 -0.268545 -0.380624 -0.470062 0.347407 0.784878 0.295830 0.552039 0.360551 0.985488 1.287507 0.327549 -0.307424 -0.825829 0.509999 0.493006 -0.411733 -0.245594 -0.172036 -0.033637 -0.145267 0.231933 0.160683 0.547701 -0.791825 -0.222563 -0.336775 0.323819 0.355088 0.604311 -1.600616 0.142155 0.436076 0.424691 0.686180 0.591310 1.019993 0.950343 0.691318 0.397132 -0.092567 0.367554 -0.185410 -0.175161 0.266931 0.743555 0.441794 0.941857 0.863901 0.524106 0.775873 0.955950 0.519045 0.833106 0.059006 1.620345 0.000231 -0.429072 -0.097753 0.374244 0.946453 1.352724 -0.384999 0.658364 0.622039 0.309761 -0.356951 -0.983761 0.404546 -0.255507 0.298033 0.125464 0.307821 0.135582 -0.347474 1.027948 -0.157519 -1.432372 0.600804 0.370505 0.729382 0.634090 0.262304 0.239806 0.249080 -0.806727 0.976868 0.838242 0.417514 -0.844154 0.344012 0.164848 0.482908 0.168441 0.942132 -0.217135 0.478117 0.210080 0.717853 0.231504 0.222503 -0.556102 -0.541276 0.510346 -0.685340 -0.075901 0.423538 0.204265 -0.335080 0.234739 -0.653771 -0.934729 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = 0.168914 -0.188646 0.246101 -0.672249 -0.669971 -0.023772 -0.068672 -0.147223 -0.147915 0.038685 0.161736 -0.303795 -0.386452 0.782513 -0.084761 -0.674254 -0.032210 -0.355441 -0.046442 0.032708 -0.096799 0.445612 -0.068912 -0.049221 0.260940 -0.070612 -0.319630 0.330916 0.553893 -0.464180 -0.097980 -0.239621 -0.092893 0.705542 0.026303 -0.078873 0.025644 1.344174 0.023534 0.504111 -0.625114 -0.554773 0.735450 -0.226397 -0.089253 -0.632688 -0.472346 0.515369 -0.474471 -0.120347 0.306511 0.164807 -0.039342 -0.364161 0.046035 0.357712 -1.070350 0.651566 0.344596 -0.084492 -0.108506 -0.135659 -0.302307 -0.056486 -0.131431 -0.472005 0.033799 0.107363 -0.449631 -0.127159 -0.072946 -0.296375 1.105708 0.281876 -0.172819 0.344233 0.285408 -0.329802 0.538076 -0.634777 -0.828623 -0.214438 -0.018469 -0.220920 0.786781 -0.039619 0.354223 -1.091243 0.396610 -1.106877 0.335238 -0.730981 0.268177 0.928470 -0.640085 0.546080 0.345341 0.130369 0.515484 0.192501 0.792602 0.251532 0.157809 0.504329 0.347529 0.206729 -0.205951 -0.223487 -0.433582 -0.627265 -0.056655 -0.204748 -1.130658 0.421604 0.039917 0.282242 0.047896 0.212172 -0.035289 0.301777 -0.713602 -0.020568 0.288916 -0.194658 0.154021 0.598970 -0.259855 -0.150253 -0.483735 0.712141 -0.368221 0.508476 0.065418 0.531275 -0.005855 -0.632501 -0.651826 0.043995 0.126150 -0.472927 -0.679332 -0.701090 -0.013225 0.028356 -0.450853 0.768419 1.350895 -0.527338 -0.607978 0.940681 0.278971 0.357080 0.554512 0.122752 0.746978 -0.077475 -0.475182 -0.211184 -0.406268 0.070839 -0.317053 0.257151 -0.276340 0.400049 -0.017341 -0.506869 0.758207 -0.090739 -0.417861 -0.077936 0.087076 -0.545650 -0.635764 0.745267 0.241824 0.709898 0.204421 1.027310 0.002022 -0.543656 0.368674 -0.237170 0.002878 -0.447865 -0.101308 0.065965 0.099521 -0.574769 -0.421312 -0.219340 -0.202481 -0.521480 0.297910 0.329426 0.226051 0.334094 0.307510 0.434120 0.777952 -0.015090 0.128706 -0.857366 0.345280 0.301338 -0.164405 -0.724464 0.004564 -0.057204 -0.088811 0.470849 -0.021204 0.311997 -0.231714 -0.279339 0.028898 0.035500 0.251250 0.216247 -0.549809 0.012157 0.051327 0.410259 0.366157 0.608993 0.804879 0.603858 0.331210 0.428129 -0.077970 0.203138 0.095421 -0.165769 -0.033915 0.332694 0.423220 0.515223 0.635085 0.311742 0.723314 0.571162 -0.103117 0.719761 0.119833 1.180030 -0.193079 -0.433431 0.002882 0.131238 0.750671 1.058617 -0.353243 0.109419 0.512698 0.234235 -0.132667 -0.637028 0.170290 -0.197720 -0.098240 0.401585 0.123650 -0.010734 -0.064967 0.710288 -0.207410 -1.067121 0.661135 0.220190 0.553461 0.150522 0.260750 0.066341 0.368891 -0.689976 0.352338 0.600923 0.413585 -0.601806 -0.134073 0.117159 0.510056 0.036755 0.730764 -0.566380 0.158248 0.393873 0.513804 0.085540 0.133625 -0.372102 -0.700267 0.345725 -0.181444 -0.158403 0.145825 0.030356 -0.440766 0.060145 -0.219705 -0.546293 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = 1.100534 -0.382617 0.838317 -0.408558 -0.121752 -0.136593 1.409786 -1.459778 -0.783826 2.762828 0.561595 -1.190117 -0.084324 1.364483 0.066395 -0.280892 0.756213 1.181191 -0.452600 0.019130 -1.064101 0.191878 -0.578267 -1.642227 0.882263 -0.144847 0.940586 1.594785 -1.484482 1.197163 0.040157 -0.809238 0.607399 2.761498 0.793187 -0.044063 -0.826731 2.630285 -2.937768 3.067330 -1.847346 -1.825162 3.762151 -0.375767 0.301964 -0.892309 -0.735025 1.840314 -0.029545 -2.572647 -0.472629 -0.363522 0.982670 -2.251986 -1.063844 2.031094 -1.817134 -0.577575 1.417507 -2.300174 -3.395866 -0.474639 0.576411 0.394841 -2.921184 -1.861486 -0.013484 -0.397651 0.211593 0.358714 -2.311443 -2.502177 1.713769 0.032587 -0.510335 0.425601 -0.887227 -0.998845 1.140394 1.411843 -1.283475 -1.437952 -0.000198 -1.475408 0.867979 0.976652 2.350755 -3.642917 0.804155 -3.566503 1.408219 -1.591833 1.711812 2.387081 -1.106946 1.956840 0.518639 2.327058 -0.571843 0.207983 1.394834 0.688596 0.451969 0.133063 2.084433 2.119441 -2.191579 -3.321608 -1.878836 -1.008463 1.345674 -0.866700 -2.183076 1.015562 -1.914206 0.740538 -0.207033 0.074906 -0.429952 3.006680 -2.901627 1.369438 1.177483 -0.633700 1.439407 1.400377 0.023431 0.207443 -0.472555 1.068681 -0.029912 0.034205 -0.180991 2.033600 -1.582569 -0.741498 0.048953 0.527036 1.061669 -1.768442 -2.307886 -3.735642 -0.628124 2.087057 -1.256684 1.291483 3.251434 -1.061511 -1.527650 1.069304 0.038072 -0.238250 0.933682 0.892618 3.541110 -2.355744 0.516458 -0.255440 0.217240 1.506142 2.567379 -1.026554 -2.123095 2.227116 -0.821715 -1.630482 4.780983 0.161867 0.009678 0.669310 0.534915 0.068969 -1.053940 2.654225 -1.993191 1.792422 -1.714032 3.281838 -1.214169 -0.225618 0.501771 -2.074422 -1.049970 -2.190441 0.012533 -0.367155 2.134517 -1.644542 -1.636243 -0.501207 -0.913069 0.025718 3.184003 -1.467364 -0.414781 -0.136677 -1.008970 1.568477 0.451658 -0.976680 -0.558215 -1.686288 0.503868 1.261741 -0.214644 -2.414397 -1.113673 -1.002120 -0.861698 -0.906647 0.369767 1.789745 -2.095318 0.054356 1.377382 -0.077366 -0.766689 -0.533215 -2.384876 0.928734 0.287696 0.844514 1.130049 3.461519 1.918639 1.738182 -0.141839 0.702324 -0.486614 -0.860029 -3.637838 1.136597 -0.166885 1.569759 1.153401 1.131081 0.801980 1.072190 0.601759 -0.882126 1.084022 2.307155 1.243104 2.080275 -0.473136 -0.198469 1.383501 -0.195808 1.966329 1.484733 -0.312744 -1.613584 0.836634 -1.257781 -2.380422 -0.125716 -0.260676 -0.021777 -0.712903 0.978712 1.589337 -0.155606 -0.944287 3.959240 -0.412959 -4.439588 1.390649 0.744928 1.390177 2.650786 -0.720827 2.352056 1.145108 2.074147 1.225073 1.135017 1.807204 -2.950913 0.705280 0.299872 1.114665 2.434990 0.038180 -5.137114 0.450801 0.001462 2.385583 -0.269636 2.590325 -1.578803 2.039099 -0.139112 -0.511903 0.711336 -0.600271 1.488364 0.210974 0.019637 -4.302874 0.875035 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = 4.600317 0.103961 3.028009 -3.212057 -2.285154 -0.233175 3.341341 -6.530338 -3.435237 11.368941 1.324222 -4.930996 -2.335607 4.270684 -1.260473 -2.735818 0.866257 0.814565 -1.134637 -2.012559 -3.310523 1.268294 -2.166973 -6.101451 2.250743 -1.170475 3.503760 5.178102 -1.470778 3.679741 0.391587 -3.686017 2.977039 10.765960 4.033822 -1.017185 -3.539658 11.645631 -9.153493 9.158585 -8.852854 -9.514853 13.452510 -1.142048 1.219250 -6.372769 -1.698146 6.907528 -2.527319 -6.427221 -1.733764 -1.164058 3.162313 -7.802437 -4.575878 7.411590 -9.353516 2.491842 4.694100 -7.761478 -10.314930 -2.166536 2.339222 2.998945 -7.867931 -7.081647 -0.214210 -0.800020 -1.818196 1.667179 -8.387256 -7.249302 6.417502 0.969921 -2.584518 0.834957 -3.523249 -2.673698 4.237509 0.415793 -5.843518 -5.115068 0.335504 -4.462992 3.071103 4.746799 7.676309 -13.827385 3.067958 -13.617236 4.878687 -5.979248 6.291574 8.683427 -3.876739 7.384992 1.829164 5.913993 0.653578 -0.898273 5.452628 3.022648 3.396965 1.869173 6.479437 8.138411 -6.886060 -10.193103 -6.132895 -4.254541 3.422003 -2.328202 -9.574542 4.095856 -6.921733 2.015656 -0.536616 -0.538848 -2.958028 8.758398 -13.674479 0.387841 2.719719 -2.209725 6.589193 4.944086 0.023240 2.215277 -0.774909 4.987807 0.075789 1.508842 0.383021 7.825399 -5.433782 -5.230198 -3.892481 3.569065 4.963317 -6.618322 -8.937896 -13.214572 -3.224913 5.354131 -4.768874 5.986800 13.734795 -3.926247 -7.153569 5.178908 -2.949186 -0.116073 5.752908 2.953925 13.252683 -7.519305 1.052285 -0.163490 -0.208290 5.094513 9.635530 -3.517530 -7.676335 8.064022 -2.787460 -2.418771 7.721754 0.530358 -1.285484 -1.319761 1.360256 -1.554269 -3.843499 9.185025 -9.071519 7.031272 -5.995176 12.144605 -5.095262 -2.878087 1.878705 -10.271451 -3.775377 -6.825620 0.058490 -1.789947 7.713991 -7.761059 -5.868938 -1.925734 -2.702722 -1.490135 11.388429 -6.006127 -1.287427 0.599295 -2.261670 9.091345 2.869930 -3.669294 -1.582232 -6.952832 2.532558 5.567091 0.729968 -11.402036 -4.981704 -3.804118 -3.391451 -0.193741 0.677366 6.757093 -6.142412 0.448572 4.595833 -0.535428 -1.085110 -0.713397 -7.659194 4.314339 0.673894 3.214931 3.485204 12.799858 5.605278 6.988295 0.368877 3.057932 -1.135202 -4.200307 -8.306939 3.733555 1.809990 3.165338 4.709731 5.604135 3.520351 4.315062 4.449944 0.038802 0.609791 8.840096 1.884882 8.911249 -6.116668 -0.744795 3.469656 0.052641 6.894951 7.609307 -1.743902 -7.076154 3.881693 -5.131969 -6.540343 -1.939408 -0.652037 -0.972308 -1.249269 4.464263 7.699802 -0.733470 -3.247700 14.394206 -1.450873 -16.459049 7.439220 3.608981 4.982088 7.904501 -3.535718 6.001560 4.533339 4.123826 3.520437 5.951654 5.748055 -10.265855 2.347209 1.040235 5.853451 7.356647 0.411174 -18.585033 0.430133 2.263416 9.641957 0.339893 9.806137 -6.771265 3.225276 1.205866 -0.833307 2.392525 -1.328677 5.959013 -0.277782 1.411891 -11.494344 2.108416 +PE-benchmarks/aho-corasick-algorithm.cpp__main = 1.180732 -4.787627 2.544808 -8.594197 -5.313153 -1.588778 -0.003777 -0.476370 -2.896414 4.796279 1.309277 -7.692181 -10.147604 7.216908 1.675442 -9.382609 3.071137 -3.029688 2.361278 -0.170740 -1.920742 3.253000 0.734026 -3.972382 3.817537 0.047434 -5.755963 7.237139 13.858840 -2.616213 1.484106 -1.737472 0.977207 10.128738 0.020795 -4.078466 -0.252527 16.641784 -2.660761 8.387839 -6.192651 -6.241609 14.530298 -2.003222 -2.497349 -6.477223 -2.803686 8.560430 -13.328454 -4.718602 1.924855 3.277213 3.398924 -8.183391 -5.516241 9.239189 -16.276440 8.023204 4.644156 -1.464384 -2.280361 1.124618 -4.120371 2.718617 -2.707094 -7.191042 -1.923344 -5.012942 -7.238378 -2.953741 -3.759951 0.318129 12.450935 3.212317 -2.207364 5.096382 2.859886 -2.417626 6.292796 -6.201363 -9.613609 -3.362676 -3.341486 -5.448984 11.827453 -0.876777 4.738090 -12.753459 3.610844 -13.993350 5.652047 -10.481068 3.175196 14.120019 -8.959467 8.759067 1.804311 -0.679144 4.189052 -0.928141 10.283575 3.274763 3.135952 6.979337 5.296123 5.105203 -4.698144 -5.053801 -6.102272 -4.919653 -1.439736 -4.022049 -13.347266 6.633962 -2.875860 4.811643 5.813203 0.515658 -5.048383 4.022621 -6.323533 0.595760 1.160712 -2.470830 2.153983 8.272523 -1.676554 -3.149291 -2.295158 11.165854 -0.652239 6.315963 5.311830 8.553045 1.705785 -6.659332 -3.593652 2.872256 1.608216 -5.664759 -8.669828 -11.401349 0.152330 -2.221925 -4.803972 9.775291 16.593592 -2.058542 -5.582825 11.254881 -4.284442 6.285700 6.895774 1.071146 10.736733 -2.232279 -6.687495 -1.982423 -4.420907 2.680639 5.884004 1.301312 -4.633263 6.374592 -2.011371 0.527031 0.783554 1.719468 -2.668678 -4.035465 -1.077093 -7.731965 -10.057861 9.497072 -3.748815 8.062927 1.688078 14.114577 4.812140 -8.557143 7.376164 -1.465811 -1.436467 -5.404195 -2.856056 2.774320 -2.576466 -8.247573 -6.446325 -6.481215 3.570322 -6.685797 7.014703 2.319756 2.340897 5.152771 2.403990 8.983879 3.865814 -4.019225 0.692330 -11.521172 2.994588 3.315557 -3.316319 -9.274641 -0.841625 -0.387312 -0.857754 9.763368 -0.567745 6.884275 -6.106761 -4.110887 3.418160 2.465645 1.456929 1.298972 -12.926435 2.422856 5.334899 3.173409 8.688579 11.699282 7.589445 5.376743 -1.097226 9.623704 -2.865308 4.493402 -4.558956 -2.958825 -1.717301 3.564596 5.357699 4.289325 5.938921 5.370791 9.528346 7.538852 -5.964037 9.094275 1.035913 9.191496 0.079878 -6.904757 4.842178 0.202007 8.887491 10.000414 -4.363957 -3.371477 8.123963 -0.556782 -1.865715 -8.404073 1.003400 -2.459728 1.911943 6.800343 1.002057 0.406946 0.116917 7.577213 -1.757701 -16.176424 10.639466 4.902689 6.733735 3.676765 1.788714 2.247290 3.835909 -7.998099 4.258516 7.839808 3.223123 -8.316334 3.837181 3.207717 7.170941 2.095877 7.981751 -11.748106 -5.087324 1.825415 5.728810 4.566679 5.859021 -4.013261 -8.843427 4.180681 -2.023017 -0.966992 -4.706715 -1.206719 -5.641819 1.788554 -2.109353 -3.001078 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 1.172363 -1.358089 0.977463 -3.128717 -3.002538 0.774985 -1.335729 -1.263233 -0.611012 0.914375 0.927772 -0.874400 -0.801610 2.947886 -0.158088 -2.703672 0.104988 -1.750114 0.422884 0.000251 -0.457524 1.741764 -0.605903 -0.173009 0.549088 -0.602845 -1.150700 1.187475 2.205570 -1.370154 -0.819700 -1.276594 -1.373613 3.184232 0.999958 -1.017735 0.282709 5.996702 0.015457 1.590043 -2.203623 -2.468705 2.798830 -0.930115 -0.454133 -1.077279 -1.626061 2.041502 -1.551964 -0.474287 1.728869 -0.030708 0.841534 -0.918841 -0.291901 0.786615 -3.956114 1.949328 1.388470 -0.333452 -0.643283 -0.815267 -0.572223 0.745885 -1.345895 -1.930760 1.097346 0.854980 -1.335972 -1.288125 -0.657117 -1.819206 3.954441 1.644332 -0.674342 0.679430 1.252738 -1.975030 2.345543 -1.507349 -4.421277 -0.798149 -1.123153 -2.849294 3.722266 -0.633563 2.448084 -4.837151 3.031287 -5.483134 1.048754 -2.470705 1.303579 4.132992 -2.927344 1.667790 1.952404 2.798114 2.368478 -0.323107 3.529094 1.122316 -0.237769 2.454432 1.997082 1.021141 -0.941705 -0.424926 -1.929563 -2.635555 -0.166004 -1.648787 -4.614484 2.234122 -0.012129 0.469459 -0.439235 0.943357 -0.940210 2.212290 -3.332555 -0.567451 0.506155 -0.840852 0.753703 2.248935 -1.278687 -0.141643 -1.596121 3.283281 -2.171325 1.782472 0.192013 2.455983 -0.477441 -0.788790 -3.158269 1.080495 1.451770 -2.473879 -3.255055 -3.064226 -0.306086 0.031068 -1.829254 4.961072 5.860370 -2.664004 -2.615079 4.041826 0.117966 0.749778 3.105347 0.409600 2.854863 -0.290779 -2.198388 -1.491651 -1.924481 -0.409034 -1.844339 1.150843 -0.205364 2.156614 -0.339793 0.184181 3.827781 -0.153722 -2.420445 -0.943727 0.745550 -2.249420 -2.832108 3.038902 0.242784 2.072238 1.982617 4.595942 0.234402 -1.822740 1.648660 -1.252353 -0.250992 -1.908691 -0.450558 -0.100697 0.723233 -1.901157 -1.857733 -1.087211 -0.708316 -2.314032 1.244003 2.692022 1.462431 2.157092 1.272493 2.344592 4.154361 0.645779 -0.037527 -3.158486 1.651060 1.967062 -1.364073 -1.663588 -0.874626 -0.589952 -0.219887 1.817141 0.062935 2.184160 -2.201086 -1.335486 -0.433390 1.303849 1.562099 1.875191 -4.459879 0.718799 0.509118 1.709609 1.906669 2.648872 2.710158 3.333441 2.114077 1.388508 -0.383441 1.413242 0.140141 -1.119969 0.386789 1.940086 1.812179 2.822823 2.757128 1.977480 2.932454 2.736864 0.302345 3.024047 -0.292598 5.196432 -0.702046 -1.475551 -0.497401 0.768892 3.324310 4.918656 -1.248446 0.834127 1.954012 0.717611 -1.086795 -3.184989 1.488730 -0.965048 1.094315 -0.095582 1.062607 0.644091 -1.121668 3.118804 -0.648436 -4.908238 2.928050 1.066959 2.612102 1.929779 0.958244 0.761259 0.565394 -3.155561 2.764308 3.432595 1.475894 -2.495146 0.643210 0.707712 2.379421 -0.603149 3.256866 -1.732410 1.767327 1.346608 1.978615 0.909958 0.768394 -2.175897 -2.681597 1.888495 -1.550922 -0.242030 1.084294 0.688577 -2.211300 1.041409 -1.133009 -2.354336 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.147862 -0.394331 0.580052 -1.019268 -0.935795 0.364739 -0.120076 -0.591272 -0.107739 -0.132138 0.454138 -0.026223 -0.055943 0.900103 0.023222 -0.750992 -0.048358 -0.499499 -0.049993 -0.053209 -0.102747 0.536684 -0.368032 0.087450 0.154767 -0.370976 -0.133502 0.651101 0.076993 -0.367367 -0.208613 -0.499246 -0.524372 1.177842 0.382173 0.078776 0.143487 2.054870 -0.286560 0.724763 -0.646966 -0.911333 0.865553 -0.327061 -0.421668 -0.443471 -0.794602 0.476818 -0.332269 -0.167743 0.700189 -0.091935 0.314879 -0.149174 0.193301 0.263963 -1.185879 0.115237 0.447888 -0.437819 -0.415789 -0.380893 -0.263960 0.057345 -0.754873 -0.529386 0.558872 0.357342 -0.061608 -0.239463 -0.020943 -1.022568 1.589572 0.563192 -0.124472 0.280947 0.624965 -0.922450 0.869844 0.250491 -1.457167 -0.350061 -0.311261 -1.148272 1.301408 -0.372598 0.875151 -1.598254 0.776562 -1.795181 0.313744 -0.887426 0.434113 1.243449 -0.987761 0.619133 0.845598 1.269997 0.326156 -0.247885 1.088785 0.363580 -0.107517 0.871173 1.011667 0.208359 -0.447383 -0.408889 -1.015477 -1.017117 0.273288 -0.858431 -1.748845 0.553125 0.059827 -0.220266 -0.425471 0.355359 -0.109893 1.179971 -0.986728 0.539856 0.453958 -0.288690 0.007805 0.794463 -0.379473 -0.043813 -0.496530 1.002721 -0.961629 0.710160 -0.250151 0.724130 -0.102018 -0.036367 -0.962383 0.183271 0.423352 -0.812496 -1.067916 -0.843191 -0.277885 0.591629 -0.460686 1.452838 2.087744 -1.082083 -1.054154 1.328959 0.727576 0.131571 0.760074 0.386648 0.874203 -0.094650 -0.716036 -0.933784 -0.711304 -0.055851 -0.537095 0.422047 0.005536 0.926310 -0.035392 -0.403226 2.621052 -0.442925 -0.878357 0.279545 0.330447 -0.763391 -1.028375 1.209323 0.569845 0.950168 0.588219 1.506558 -0.179814 -0.506327 0.248074 -0.347265 -0.057005 -1.088387 -0.115081 -0.087910 0.454975 -0.457425 -0.699112 -0.460191 -0.510802 -0.555549 0.343589 0.776553 0.523753 0.551528 0.383788 0.339594 1.678741 0.371212 -0.253499 -1.011538 0.613279 0.657025 -0.317924 -0.468651 -0.207677 -0.160864 -0.134835 0.091548 0.122540 0.777968 -0.808248 -0.236054 -0.225046 0.244781 0.215310 0.618985 -2.101319 0.224188 0.149947 0.527284 0.603396 0.632349 1.365697 1.190615 0.893387 0.363171 -0.041188 0.419181 -0.416322 -0.291717 0.178291 0.967105 0.564331 1.206717 0.976507 0.645875 0.882847 0.990866 0.764364 1.030742 0.173560 1.994915 0.131743 -0.448554 -0.207988 0.462740 1.098150 1.633239 0.059540 0.600093 0.586410 0.558375 -0.607928 -1.350986 0.403336 -0.274835 0.352246 0.280373 0.410095 -0.009195 -0.372944 1.283958 -0.142666 -1.644141 0.512626 0.343648 0.796735 0.668001 0.260268 0.317081 0.402213 -0.819640 1.239338 0.952554 0.592673 -1.044318 0.160348 0.222869 0.626719 -0.050507 1.093799 -0.819520 0.762236 0.131137 0.769515 0.111626 0.546175 -0.772637 -0.411482 0.666669 -0.645343 -0.115488 0.696106 0.415491 -0.768650 0.345406 -1.071716 -0.926077 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 0.690792 -2.623987 1.099208 -2.985188 -2.230537 1.600649 -1.827537 -2.217205 -0.348546 0.612562 0.593213 -0.084561 0.109524 2.753280 0.117114 -2.616851 0.188343 0.050403 0.977967 0.323704 -0.512319 1.525152 -1.301068 -0.073595 0.229602 -1.414833 0.047945 1.312549 0.678877 0.341848 -0.850133 -2.007070 -2.248193 3.786680 1.953570 0.890902 0.127651 6.228710 0.219631 3.822689 -2.205650 -3.093706 2.254710 -0.832218 -0.521979 0.252810 -1.471432 1.143159 -1.913539 -0.480847 1.839155 -0.928539 1.531540 -0.238307 0.306503 -0.086818 -2.728181 0.081653 1.120129 -1.220369 -1.144255 -1.570927 -0.778978 1.029258 -3.436266 -1.523264 1.415449 1.816950 -0.649811 -0.889911 -0.713960 -2.699550 4.086241 2.333822 -1.399107 0.160210 1.681557 -2.260918 1.917000 0.506703 -4.951002 -1.236711 -1.617679 -4.008408 3.853622 -0.144947 4.037805 -5.016788 3.907496 -5.980330 1.139045 -2.182966 1.863635 4.432152 -3.162247 1.696602 2.759301 5.612904 1.367887 -1.053257 2.982728 1.723839 -1.879074 2.346794 3.247051 0.909498 -1.197966 -1.387092 -2.099230 -2.286173 0.290268 -3.170116 -5.150284 1.457861 -0.360201 1.413220 -1.827443 2.030717 -1.550201 2.554837 -4.818915 0.139987 0.263826 -0.954015 1.169585 1.306972 -1.035626 0.372555 -0.943403 3.200774 -2.987999 0.934502 -0.974587 2.598552 -1.405986 2.233567 -3.219551 1.012973 1.943044 -2.558843 -3.758954 -3.192405 -1.811911 2.669749 -1.111731 6.009272 5.949323 -3.126995 -2.572137 3.717038 -1.005748 0.369632 3.147617 1.276758 1.612504 -0.315149 -1.743926 -2.730727 -1.605945 -0.686044 -1.101351 1.083562 -0.297050 3.140745 -0.934956 1.108936 6.088730 -0.859662 -2.810673 -2.974439 0.501907 -2.279317 -2.176558 3.734360 -2.795924 1.986916 0.690666 4.563707 -0.489894 -1.080474 0.772921 -3.470325 -0.747903 -2.835320 0.112740 -1.015470 1.726876 -2.731037 -2.407257 -0.630969 -1.206611 -1.502482 1.376689 2.771899 0.650240 1.982527 1.003534 4.458103 4.614930 1.335137 -1.385810 -2.170809 1.886659 2.082453 -1.943185 -0.344853 -1.016001 -0.511369 -0.625394 -0.005789 0.735220 2.170732 -3.714288 -0.776502 -1.495753 1.567474 1.616361 2.385596 -6.741225 1.192174 1.496192 1.393791 2.633166 2.016740 2.943997 3.733094 2.610150 0.762761 -0.344198 0.925598 -1.030634 -0.158142 1.657800 2.258542 1.354829 3.887631 2.803635 1.976554 2.231202 3.310025 2.437481 2.820841 -0.065665 5.425297 0.263083 -1.075904 -0.289123 1.066302 3.180783 4.918547 -1.296164 2.485774 1.880012 0.572773 -1.744105 -3.286426 1.615697 -0.846541 1.239655 -0.466104 1.155484 0.705132 -1.730984 3.873047 -0.311076 -5.052535 1.851850 1.352146 2.452216 2.937526 0.526372 1.131285 0.481519 -2.458499 4.469827 3.125612 1.263919 -2.732152 1.441524 0.559609 1.394200 1.365661 2.889512 -0.324950 2.279555 0.551786 2.752957 1.234010 1.198753 -2.088258 -1.034660 1.668891 -2.843028 -0.078847 1.098644 1.186889 -0.783256 1.130303 -2.718940 -3.424665 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = -0.151781 -0.829111 0.798468 -1.576338 -1.568536 0.355732 0.118526 -1.024773 -0.182873 0.139987 0.722908 -0.461522 0.009703 2.116447 -0.051647 -0.947705 0.087984 0.226024 0.173944 0.289904 0.094550 1.228133 -0.524299 0.086048 0.246200 -0.520682 -0.177993 1.168551 0.099415 0.254907 -0.213699 -0.939113 -0.590127 1.758235 0.648319 0.554693 -0.151041 3.035375 -1.370756 2.715632 -1.567108 -1.246250 1.434411 -0.339390 -0.315157 -1.638728 -1.994906 0.571424 -0.513410 -0.726818 0.929544 -0.199852 0.812998 -0.185598 0.600254 0.460459 -1.540769 -0.150930 0.775697 -1.046782 -0.268396 -0.528270 -0.856668 0.242717 -2.137641 -0.781795 0.150800 0.491643 0.174422 -0.285010 -0.075746 -1.477785 2.332005 0.743295 -0.844543 0.324936 0.907890 -1.795724 1.259288 0.093607 -2.184617 -0.573059 -0.670703 -1.336478 1.589667 -0.242659 1.918482 -2.537855 0.932402 -2.786169 0.814035 -1.580423 0.631886 2.128460 -1.520416 0.952620 1.282876 2.023404 0.988288 0.206986 1.348342 1.325195 -0.128478 1.101574 1.749213 0.962645 -0.835537 -1.150493 -1.520998 -1.426640 0.591497 -1.509615 -3.097374 0.498358 0.297896 0.055712 -0.757719 0.424163 -0.047895 2.100689 -1.558020 1.338169 0.896280 -0.443837 -0.196601 1.216028 -0.420109 -0.105688 -0.961487 1.453591 -1.480401 1.271353 -0.361956 1.247856 -1.333743 -0.320965 -1.005019 0.271136 0.234849 -1.173589 -1.581895 -2.030853 -0.505044 1.503635 -0.630481 1.340738 3.007182 -1.717316 -1.631321 1.952959 1.293429 -0.286884 0.731533 0.623100 1.294214 -0.079184 -1.065983 -1.679123 -1.235952 -0.126522 1.280165 0.658511 -0.614382 1.427137 -0.661425 -2.835036 4.222203 -0.670044 -1.369318 -0.627355 0.306107 -1.173956 -1.008835 2.182775 -1.050765 1.400639 -0.761783 2.083045 -0.191446 -0.691712 0.279941 -1.598923 -0.245809 -1.903778 0.100995 0.252977 0.966993 -1.215260 -1.093807 -0.574319 -0.966014 -0.831038 0.639263 -0.681241 0.207263 0.881269 0.578650 1.430155 2.053047 0.575651 -0.418151 -1.080730 1.035321 0.825755 -0.501053 -1.726918 -0.153759 -0.436726 -0.320405 -0.778441 0.260290 0.965563 -1.463978 -0.270603 -0.414853 -0.331877 0.204814 0.812431 -3.015354 0.503010 0.299489 1.272461 0.917740 0.912053 1.995152 1.832114 1.211933 0.857444 -0.210835 0.223021 -1.076111 0.577570 0.861667 0.148479 0.743875 2.245106 1.480102 0.852128 1.326874 1.459166 1.529444 1.482721 0.384027 2.638114 0.698702 -0.741386 0.106359 0.763881 1.611930 2.546198 0.666673 0.890109 0.821432 0.234445 -1.146199 -1.376679 0.601443 -0.266002 -0.273636 1.213737 0.575249 0.033696 -0.510727 1.954346 -0.246188 -2.531535 0.639647 0.550929 1.245635 1.102283 0.400409 0.742705 0.700027 -0.698479 2.174074 1.405024 0.870942 -1.549123 -0.730189 0.194339 0.274147 2.237214 1.695378 -2.020406 0.919919 0.342019 1.605871 -0.419507 1.488254 -1.065586 -0.240326 0.870108 -0.872027 -0.359749 0.184746 0.250896 -0.586990 0.225612 -1.895469 -1.579078 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.169826 -0.118042 0.978372 -1.460780 -1.410760 -0.390341 1.485891 -0.403778 -0.401558 1.252771 0.214391 -0.635076 -1.187912 1.763818 -0.125467 -0.865432 -0.030756 -1.288746 -0.315839 -0.097886 -0.225934 1.211092 -0.182616 -0.107533 0.707124 -0.162224 -0.206215 1.390421 0.184787 -0.595280 0.419845 -0.765566 0.145838 1.587992 0.099547 -0.011843 -0.533648 3.085112 -1.870674 2.314335 -1.755971 -1.722577 2.057621 -0.394010 -0.281455 -2.396493 -0.869543 1.263957 -0.473235 -0.979808 0.506070 0.562940 0.280444 -1.031381 0.037380 1.108144 -2.160789 0.632598 0.795189 -0.974543 -0.723061 -0.264033 -0.583011 0.213870 -1.372770 -1.074142 -0.172176 -0.775863 -0.665943 0.031129 -0.174419 -0.585438 1.555083 0.510015 -0.380739 0.720882 0.379263 -1.057220 1.326455 -1.160338 -1.675648 -0.718366 -0.257075 -0.847272 1.155123 -0.003736 1.027355 -2.424125 0.283647 -2.267017 0.761811 -1.630045 0.430140 1.980092 -0.532322 1.749711 0.464846 0.344802 0.721888 -0.327959 1.210873 1.043146 1.296053 1.283430 1.011077 1.301823 -1.277090 -1.383803 -1.796177 -1.152831 0.635619 -0.828508 -2.133651 0.749314 0.371989 -0.225901 0.422847 -0.031731 -0.313012 1.730110 -1.683444 1.063468 0.984776 -0.391584 -0.110718 1.381783 -0.262246 -0.370569 -0.689412 1.297383 -0.614028 1.865932 0.284786 1.322397 -0.589808 -0.811823 -0.310977 0.069198 0.023359 -0.809703 -1.214095 -2.284363 -0.227874 0.553955 -0.993598 0.992998 3.067235 -1.223858 -1.603604 1.744373 0.874298 0.240205 -0.024047 0.352773 1.439295 -0.175855 -1.200653 -0.771618 -0.921339 0.757241 2.929729 0.553342 -1.019414 1.312723 -0.507893 -2.153994 1.694050 -0.171713 -0.761446 -0.136797 0.216468 -1.193881 -1.207215 1.679402 -0.682082 1.777838 -0.692503 1.931378 -0.097766 -0.687865 0.458284 -1.474483 -0.014949 -2.141670 -0.187773 0.521174 0.400511 -1.214048 -0.831697 -1.153354 -0.652871 -0.979788 0.850322 -2.047124 0.247471 0.349661 0.679108 1.537697 1.388752 -0.222368 -0.120181 -1.622055 0.902767 0.268561 0.286854 -2.364052 -0.227595 -0.031054 -0.579064 0.564137 -0.097653 0.713170 -0.696426 -0.050708 0.588205 -0.506449 -0.611906 0.201284 -2.403006 0.140212 0.377956 1.402355 0.775170 1.350967 1.739864 1.304431 0.506263 1.316436 -0.487860 0.103400 -1.216033 0.290504 0.130241 -0.141404 0.993532 1.563537 1.393711 0.631284 1.757655 1.233145 -0.286429 1.471587 0.091406 2.292772 -0.262133 -1.102427 0.475924 0.739396 1.221728 1.711774 0.611925 -0.289260 1.254539 -0.033773 -0.859329 -0.575486 0.243975 -0.528308 0.267907 1.883520 0.861668 -0.529999 0.222146 1.726670 -0.680078 -2.810777 0.843727 0.608959 1.338873 0.511810 0.340667 0.701604 1.141867 -0.725506 1.259663 1.260343 0.756798 -1.493143 -0.582542 0.293974 0.609183 1.631102 1.327164 -3.668951 -0.550501 0.276083 1.397894 -0.436316 2.235222 -1.015512 -0.527977 0.949977 -0.156535 -0.203537 0.176122 0.280006 -0.667639 0.235918 -1.649974 -0.426422 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.483306 -0.210412 0.672504 -1.938045 -2.009460 -0.490522 0.376963 -0.001021 -0.432190 0.708007 0.687031 -1.433867 -1.359962 2.356582 -0.180902 -1.684962 0.213172 -1.298864 -0.226612 0.014142 -0.047771 1.346421 0.221383 -0.396877 0.823382 0.096298 -1.196610 1.222601 2.172917 -1.356518 -0.133083 -0.337874 0.204883 1.672274 -0.293629 -1.012700 -0.082025 3.417476 -0.941810 1.221989 -1.783180 -1.117141 2.567968 -0.483024 -0.270445 -2.473017 -1.649832 1.724885 -1.096669 -0.848348 0.665999 0.746663 0.161500 -1.436017 -0.313600 1.600925 -3.191970 1.925550 0.993412 -0.137621 -0.161118 0.049251 -0.657894 0.143551 -0.319137 -1.497824 -0.170892 -0.513117 -1.315951 -0.592033 -0.346277 -0.486465 2.675197 0.405979 -0.322500 1.022594 0.488233 -1.167956 1.659873 -2.069011 -1.930070 -0.468830 -0.171613 -0.490445 1.897489 -0.435151 0.761298 -2.963794 0.565479 -2.803351 1.088516 -2.149660 0.532118 2.468410 -1.613854 1.526607 0.431909 -0.375883 1.742894 0.698429 2.240699 0.811579 1.316297 1.218260 0.748919 1.041430 -0.786201 -0.640273 -1.278384 -1.689121 -0.101784 -0.368945 -3.017439 1.378210 0.150384 0.068361 0.856825 -0.204661 -0.026778 1.312719 -1.136475 0.207841 0.911311 -0.474083 0.014456 2.093891 -0.694607 -0.657746 -1.372892 2.001593 -0.529218 1.779009 0.792706 1.489077 -0.288244 -2.629165 -1.038090 0.330259 0.065087 -1.240960 -1.675669 -2.311051 0.515951 -0.769262 -1.426779 1.380565 3.494641 -1.044011 -1.714104 2.444550 1.151304 0.759898 1.186544 -0.077084 2.643353 -0.422635 -1.356817 -0.345469 -1.142192 0.471877 0.531318 0.593522 -0.922486 0.849750 -0.294189 -2.465924 1.455199 0.128805 -0.771396 0.273433 0.330409 -1.468046 -1.919508 1.969191 0.811401 1.906143 0.379154 2.788112 0.365362 -1.685020 1.415133 -0.134432 -0.001742 -1.215217 -0.472344 0.768864 0.031807 -1.191646 -0.975310 -1.095014 -0.275983 -1.569066 0.996449 -0.219154 0.759256 0.909665 0.799529 0.700874 1.506070 -0.395218 0.733194 -2.531780 0.815757 0.883883 -0.210304 -2.772885 -0.031270 -0.355379 -0.103811 1.507003 -0.306373 1.012598 -0.460869 -1.009187 0.595450 -0.129321 0.317909 0.192434 -1.503424 0.076916 -0.033320 1.385530 0.752865 2.104136 1.998030 1.386190 0.448513 1.497226 -0.327083 0.618978 -0.127903 -0.410255 -0.452122 0.233290 1.255891 1.304342 1.501328 0.877079 2.300970 1.282134 -1.008916 1.913446 0.281661 2.681482 -0.399095 -1.402997 0.243018 0.172205 2.019134 2.820639 -0.215965 -0.672737 1.422685 0.411083 -0.404485 -1.529702 0.339146 -0.579956 -0.250284 1.560223 0.306483 -0.050330 0.046102 1.656097 -0.551991 -3.124006 2.150079 0.493668 1.613312 0.390905 0.618294 0.424655 0.950693 -1.768272 0.561379 1.715551 1.051001 -1.521081 -0.783207 0.372154 1.480113 0.372708 1.937884 -2.937887 0.106559 1.174689 1.331517 -0.019234 1.021696 -1.084991 -2.017785 0.857098 0.010282 -0.427988 -0.148073 -0.271907 -1.740637 0.121624 -0.527074 -0.723951 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.564091 -0.468013 0.786306 -0.885794 -0.728439 -0.150174 0.045538 -0.038748 -0.180834 0.305853 0.087954 -0.409060 -0.553936 1.089685 -0.293601 -0.842365 0.262727 -0.527732 0.073503 -0.226956 0.174662 0.528363 0.403059 -0.246581 0.311418 -0.327845 -0.182884 0.854208 1.011951 -0.442777 0.159503 -0.251663 0.157627 0.824118 -0.003227 -0.515658 -0.194273 1.789616 -0.047846 0.883928 -0.485074 -0.552148 1.323327 -0.247283 -0.221279 -1.083196 -1.012925 0.887034 -0.592983 -0.601487 0.304819 0.369086 0.356765 -0.769478 -0.606685 0.701633 -1.344691 0.558261 0.159078 -0.106006 0.043794 0.007447 -0.401212 0.300211 -0.116080 -0.725120 0.118050 -0.135509 -1.028756 -0.298939 -0.125788 0.048308 1.587508 0.162157 -0.056249 0.330029 0.683038 -0.310121 0.855653 -0.612679 -1.045739 -0.461695 -0.694106 -0.512151 1.107654 -0.478521 0.536891 -1.603150 0.621748 -1.424362 0.775502 -0.975260 0.209623 1.137161 -0.963225 1.045993 0.379434 0.496884 0.411910 -0.060595 1.231504 0.621243 0.296383 0.784240 0.780229 0.168882 -0.416791 -0.483486 -0.860834 -0.603028 0.151391 -0.770363 -1.753729 0.686565 0.271942 0.011346 0.282473 -0.052993 -0.294667 0.672709 -1.012363 0.563894 0.467035 -0.252400 -0.239911 0.726361 -0.383283 -0.223703 -0.405884 1.197419 -0.497249 0.669322 0.741854 0.765657 -0.008489 -0.862672 -0.215233 0.307603 0.214228 -0.372799 -0.994372 -1.119383 0.050892 -0.214419 -0.615251 0.928321 1.701985 -0.202233 -0.611592 0.954500 0.536181 0.242371 0.544194 0.080064 1.119608 -0.149131 -1.222313 -0.338090 -0.745150 0.675017 0.246693 0.277800 -0.072663 1.027758 -0.194818 -0.760714 0.897433 -0.437522 -0.534974 0.208954 0.080657 -0.764810 -0.887779 0.908189 0.289236 0.682166 0.232565 1.543065 0.547339 -0.850433 0.335662 -0.397015 -0.043509 -0.893595 0.247737 0.014161 0.047567 -0.838170 -0.730463 -0.621324 -0.239659 -0.465871 0.600998 -0.238197 0.589190 0.512645 0.512322 0.745973 0.772752 -0.022224 0.130473 -1.213024 0.326718 0.578056 0.090886 -1.152155 -0.130222 0.003001 -0.044744 0.469317 -0.187715 0.407283 -0.597096 -0.453685 0.002611 -0.133332 -0.182463 0.343432 -1.337075 -0.076189 0.577159 0.720824 0.460546 1.064074 1.186597 0.474892 0.265060 0.896048 -0.103386 0.463994 -0.613945 -0.216387 -0.056366 0.205484 0.512836 0.837147 0.709864 0.504333 1.285950 0.967082 -0.186762 0.723090 0.074600 1.234725 0.025848 -0.731880 -0.082511 0.374616 1.056543 1.431862 0.378959 -0.206764 0.875126 0.119404 -0.015029 -0.999004 0.338325 -0.311611 0.485071 0.992366 0.507135 0.193027 0.010383 0.630013 -0.349989 -1.777094 0.969383 0.408827 0.740306 0.687400 0.155558 0.513675 0.200780 -0.729454 0.126233 0.793143 0.371759 -0.889810 0.192317 0.144227 0.590422 0.168281 1.059381 -1.614018 -0.055941 0.425470 0.798002 -0.108498 0.662682 -0.711536 -0.989641 0.641153 -0.004396 -0.039601 0.200862 -0.115403 -1.006611 0.033777 -0.229247 -0.205223 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.255423 -0.164758 0.411249 -0.388028 0.338114 -0.196950 1.026201 -0.242301 -0.057637 0.785747 -0.003679 -0.127794 -0.661125 0.235180 0.082452 -0.105038 0.657642 -0.583372 -0.108213 -0.120193 -0.064555 0.075244 0.006249 -0.619800 0.374684 -0.113126 0.481816 0.566067 -0.429579 -0.075016 -0.010956 -0.101912 0.083280 0.718251 0.131559 0.103730 -0.434926 0.886867 -0.494836 1.103256 -0.923836 -0.562032 1.003141 -0.180637 -0.014049 -0.942308 0.258361 0.425854 -0.190200 -0.394965 -0.236292 -0.116975 0.173648 -0.847791 -0.341734 0.835509 -0.636525 -0.004184 0.216935 -0.310918 -0.565133 -0.301525 0.002059 0.153668 -0.255358 -0.473047 0.321618 -0.481620 -0.744557 0.529711 -0.660982 -0.308579 0.284763 0.247077 0.064715 0.103842 -0.140961 -0.353357 0.452097 -0.193148 -0.099948 -0.508505 0.067854 -0.073647 0.289509 -0.082648 0.406078 -1.067676 -0.049603 -0.726374 0.568182 -0.409758 0.255666 0.694309 0.054610 0.845769 -0.154740 0.206081 -0.573326 -0.362560 0.411233 0.376127 0.629806 -0.096115 0.685148 0.238507 -0.553279 -1.113589 -0.245523 0.235782 0.173279 -0.304436 -0.514513 0.383801 -0.637947 0.110042 0.267871 0.081984 -0.386920 0.358224 -1.067630 -0.073610 0.276344 -0.228552 0.508365 0.272952 0.108350 0.053144 0.037084 0.573229 0.198297 0.404633 -0.153615 0.590320 -0.225537 -0.267732 0.160581 -0.137978 0.241297 -0.225089 -0.835353 -0.931136 -0.370353 0.230370 0.033623 0.525327 0.853064 0.058444 -0.475986 0.344973 -0.209644 0.072186 0.089448 0.071209 0.522701 -0.648299 0.285281 -0.085490 0.583742 0.495565 1.178273 -0.362017 -0.529822 0.650736 -0.220910 -0.144657 0.091185 0.055921 0.227867 0.000916 -0.149212 -0.398101 -0.482205 0.677531 -0.721155 0.837335 -0.609326 0.698225 -0.475632 -0.290663 -0.032435 -0.696798 -0.096380 -0.840056 0.118549 0.204425 0.247786 -0.799490 -0.673163 -0.451791 -0.106930 0.135490 0.768589 -1.024447 -0.266921 -0.307844 0.021505 1.054804 -0.079079 -0.480111 -0.169810 -0.490326 0.306499 0.228210 0.261919 -0.692531 -0.189642 0.024953 -0.429460 0.044115 0.121944 0.351961 -0.212347 -0.179561 0.596458 -0.048008 -0.469830 -0.175644 -0.946408 0.089594 0.395086 -0.175738 0.083760 0.745479 0.283349 -0.101354 -0.448981 -0.177387 0.058472 -0.416202 -1.146158 -0.053721 -0.081325 -0.039374 0.077553 0.348113 0.245604 0.089953 0.537492 0.328171 -0.186587 0.427233 0.211150 0.219445 -0.103050 -0.238464 0.569825 -0.201550 0.410703 0.228286 -0.101922 -0.638439 0.558274 -0.212953 -0.331333 -0.029073 -0.333056 -0.415117 -0.051583 0.810515 0.396012 -0.402358 -0.166479 0.986083 -0.137969 -1.175910 0.342831 0.286833 0.345444 0.573066 -0.330596 0.178154 0.568813 -0.019882 0.226185 -0.130749 0.206001 -0.426053 0.038648 0.015752 0.262129 0.421095 0.021043 -1.015174 -0.677043 0.028826 1.009822 0.490039 0.889404 -0.273485 0.439500 -0.266882 -0.002898 0.093499 -0.087639 0.352484 -0.188209 -0.305052 -1.030562 0.556645 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.075721 0.150729 0.449381 -0.621083 -0.780945 -0.045979 0.124976 -0.230596 -0.116385 -0.056200 0.267428 -0.195375 -0.410227 0.608565 -0.182596 -0.603975 -0.237799 -0.506336 -0.261442 -0.242651 -0.100915 0.380996 -0.134427 0.034004 0.237214 -0.163719 -0.176927 0.432797 0.284107 -0.568385 0.000697 -0.232101 0.025998 0.724614 -0.006032 -0.018301 0.039314 1.274541 -0.082735 0.132978 -0.661668 -0.693054 0.718946 -0.223182 -0.178007 -0.833480 -0.474677 0.484545 -0.398881 0.049158 0.334663 0.198655 -0.090522 -0.329075 0.160910 0.379411 -1.100525 0.666772 0.333451 -0.334482 -0.272002 -0.120086 -0.262662 -0.130573 0.069298 -0.438751 0.143622 0.179263 -0.292373 0.023986 0.080243 -0.476976 1.193501 0.151747 -0.031616 0.408777 0.314960 -0.342323 0.612157 -0.452262 -0.723995 -0.249251 0.230360 -0.122396 0.672986 -0.064821 0.172957 -1.041016 0.066847 -1.000471 0.313771 -0.660207 0.242766 0.672278 -0.574773 0.582538 0.382188 -0.145689 0.376239 0.090076 0.732164 0.091080 0.445087 0.557833 0.314792 0.153236 -0.225042 -0.279076 -0.642159 -0.778146 0.061392 -0.148090 -1.110916 0.364388 0.069634 -0.048261 -0.010239 0.037893 0.166296 0.544937 -0.574935 0.174662 0.487218 -0.175436 0.052710 0.647741 -0.224924 -0.090378 -0.405378 0.607978 -0.438301 0.588228 -0.014590 0.456489 0.253332 -0.897370 -0.800848 -0.005255 0.103744 -0.441928 -0.573328 -0.474721 -0.021410 0.080123 -0.419374 0.479558 1.417139 -0.617349 -0.811471 0.894678 0.697502 0.263444 0.450272 0.221685 0.835151 -0.112709 -0.443751 -0.350314 -0.449677 0.233399 -0.269494 0.260365 -0.235807 0.467522 0.202921 -0.633632 0.953267 -0.286583 -0.419484 0.461172 0.214401 -0.503076 -0.634220 0.646079 0.930304 0.887471 0.287377 0.992537 -0.268339 -0.644697 0.191437 -0.053140 0.058072 -0.448079 -0.108534 0.134402 0.190417 -0.391467 -0.381269 -0.328795 -0.375743 -0.433982 0.248130 0.265554 0.322490 0.204078 0.268543 -0.009249 0.963906 0.031825 0.106832 -0.898096 0.352359 0.287324 0.121193 -0.856084 -0.010099 -0.056476 -0.116983 0.406952 -0.036324 0.375860 0.030351 -0.110619 0.076867 -0.177890 0.081937 0.137254 -0.497559 -0.007174 -0.165079 0.423622 0.169672 0.519793 1.041130 0.649844 0.442262 0.395818 -0.001279 0.050477 0.197658 -0.199203 -0.024104 0.454672 0.461099 0.587060 0.643408 0.285779 0.758936 0.539600 -0.018708 0.765592 0.089813 1.344375 -0.393019 -0.295556 -0.139094 0.270748 0.707437 1.067037 -0.088063 0.043743 0.464847 0.459836 -0.125257 -0.821364 0.085562 -0.179183 -0.027518 0.617176 0.343657 -0.228830 -0.023170 0.808325 -0.166686 -0.980597 0.555431 0.171423 0.462311 -0.042296 0.177865 -0.090334 0.523676 -0.594970 0.269760 0.518731 0.513957 -0.777527 -0.267636 0.112367 0.617153 -0.204443 0.694370 -0.924999 0.121601 0.357708 0.496901 -0.052893 0.318155 -0.494672 -0.646544 0.425921 -0.102556 -0.184306 0.467917 0.137962 -0.636862 0.147875 -0.342659 -0.510274 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.038465 0.107891 0.322831 -0.464446 -0.482946 -0.108720 0.338795 -0.091731 -0.099342 -0.062221 0.190867 -0.150353 -0.304016 0.478228 -0.049497 -0.373472 -0.102625 -0.479363 -0.264563 -0.074981 -0.060314 0.319783 -0.065787 0.003531 0.243965 -0.049991 -0.159840 0.386950 0.080664 -0.484171 0.046094 -0.146511 0.065556 0.511483 -0.080685 0.004607 -0.005301 0.922345 -0.224178 0.240189 -0.443044 -0.447904 0.600019 -0.188156 -0.191265 -0.710904 -0.382623 0.380561 -0.115757 -0.132804 0.202060 0.208435 -0.113431 -0.325691 0.097441 0.380264 -0.803455 0.359817 0.276164 -0.224493 -0.237795 -0.077074 -0.200510 -0.179702 -0.057443 -0.337828 0.062814 -0.068637 -0.205296 0.042266 0.055652 -0.320967 0.853187 0.117424 0.035167 0.357538 0.193215 -0.307116 0.475324 -0.267308 -0.443335 -0.193860 0.138738 -0.099213 0.493553 -0.126192 0.082374 -0.745340 -0.003401 -0.656475 0.210121 -0.559992 0.136415 0.516854 -0.325944 0.495290 0.205999 -0.097788 0.148195 0.083063 0.527651 0.089871 0.400509 0.401773 0.274576 0.128809 -0.252919 -0.294709 -0.521586 -0.539745 0.152030 -0.126600 -0.781978 0.270140 0.089469 -0.155273 0.083233 0.012748 0.153186 0.450086 -0.349525 0.307936 0.433297 -0.129706 -0.063253 0.526574 -0.145065 -0.170466 -0.358212 0.417635 -0.238878 0.546904 0.010656 0.328634 0.132054 -0.632980 -0.316984 -0.093975 -0.024523 -0.300759 -0.390117 -0.409262 0.029306 0.092871 -0.332074 0.257240 1.008860 -0.411508 -0.565076 0.653486 0.692465 0.209122 0.129468 0.145853 0.608700 -0.079708 -0.353496 -0.215828 -0.313382 0.235538 -0.028328 0.177701 -0.227651 0.317104 0.072195 -0.714777 0.920763 -0.191716 -0.233808 0.532667 0.125206 -0.390127 -0.544957 0.523381 0.730798 0.725392 0.147997 0.696987 -0.126133 -0.372574 0.159623 0.033440 0.056368 -0.523992 -0.107742 0.126368 0.096949 -0.235146 -0.274237 -0.275903 -0.268925 -0.317238 0.211501 -0.064288 0.233093 0.083890 0.199947 -0.115405 0.593267 -0.073445 0.074054 -0.681530 0.257560 0.162725 0.132932 -0.649529 0.035132 -0.005153 -0.105837 0.267228 -0.040777 0.242314 0.023461 -0.072319 0.188942 -0.154772 -0.108361 0.017150 -0.457354 -0.063617 -0.079118 0.311769 0.113058 0.397534 0.791768 0.387716 0.218604 0.320255 -0.030207 0.094857 -0.146433 -0.141195 -0.160092 0.338623 0.347236 0.385624 0.474222 0.201623 0.573022 0.361150 -0.008355 0.555815 0.178904 0.925248 -0.124581 -0.326788 0.009645 0.197686 0.509127 0.663355 0.055436 -0.025663 0.359551 0.320372 -0.188404 -0.501167 0.001779 -0.131143 -0.071402 0.566048 0.168481 -0.210965 0.071362 0.601126 -0.165514 -0.761365 0.311302 0.130352 0.377428 -0.025832 0.156022 0.063951 0.458089 -0.351009 0.175942 0.312598 0.375572 -0.552766 -0.220255 0.093583 0.379613 -0.066566 0.506572 -0.836246 0.038319 0.160345 0.374186 -0.124311 0.317824 -0.294661 -0.327696 0.283844 0.012992 -0.128345 0.295526 0.090639 -0.446520 0.019170 -0.444972 -0.236826 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = 0.131872 -0.071024 0.361751 -0.593071 -0.521704 -0.137927 0.087122 -0.163302 -0.069813 0.124177 0.212740 -0.242649 -0.303661 0.654510 -0.028849 -0.400148 -0.073462 -0.464675 -0.034755 0.026375 0.021359 0.333528 -0.084202 -0.020613 0.190173 -0.013610 -0.259996 0.282667 0.195999 -0.478320 -0.026216 -0.220484 0.030587 0.555263 -0.103455 -0.092108 -0.103403 1.082138 -0.168088 0.370397 -0.578673 -0.553986 0.649945 -0.268012 -0.091142 -0.719111 -0.369959 0.429092 -0.104531 -0.203320 0.149426 0.265787 -0.058945 -0.419496 -0.060983 0.245391 -0.954445 0.414656 0.385878 -0.220535 -0.124647 -0.040989 -0.220281 -0.075929 -0.148179 -0.311105 0.068166 -0.084893 -0.318507 -0.026966 0.011843 -0.251117 0.874245 0.245470 0.004517 0.408169 0.321208 -0.338258 0.604089 -0.464225 -0.623162 -0.235192 -0.054735 -0.230061 0.595521 -0.073867 0.235842 -0.785515 0.315104 -0.858355 0.280633 -0.704838 0.103140 0.708102 -0.422461 0.528027 0.393445 0.134052 0.405879 0.085899 0.628538 0.314734 0.290945 0.497448 0.350667 0.224223 -0.239434 -0.214300 -0.506757 -0.585861 0.058703 -0.209156 -0.864000 0.365351 0.127910 -0.063994 0.103412 0.060267 0.112982 0.501140 -0.593834 0.172292 0.437423 -0.148765 -0.132170 0.566125 -0.181459 -0.257119 -0.443257 0.521479 -0.357550 0.536592 0.249352 0.428377 -0.014025 -0.576749 -0.383533 -0.047372 -0.064967 -0.465022 -0.440846 -0.590367 0.057285 0.118322 -0.303612 0.529358 1.140355 -0.449136 -0.550647 0.740272 0.554003 0.091828 0.368473 0.185159 0.686479 0.013719 -0.520699 -0.270556 -0.423118 0.194869 -0.069386 0.251412 -0.158928 0.396205 0.051316 -0.616848 0.852474 -0.161843 -0.285869 0.323601 0.142536 -0.547794 -0.605910 0.484127 0.482801 0.716820 0.156455 0.826611 0.038295 -0.310381 0.293402 -0.171785 0.043403 -0.444005 -0.069029 0.121344 0.115116 -0.370189 -0.325960 -0.301835 -0.336676 -0.344026 0.333217 -0.067403 0.311385 0.312670 0.168098 0.167200 0.633957 -0.096614 0.080229 -0.719672 0.300645 0.181252 -0.006042 -0.699510 -0.005752 -0.105326 -0.029130 0.344509 -0.040089 0.409884 -0.155096 -0.193411 0.163639 -0.062927 -0.067482 0.012160 -0.501031 -0.067848 -0.024775 0.508021 0.254687 0.486495 0.677630 0.531378 0.226637 0.435921 -0.145742 0.188945 -0.061739 -0.160041 -0.164536 0.277822 0.351419 0.460642 0.523348 0.350638 0.673686 0.465112 -0.078736 0.671319 -0.009831 0.914645 -0.196383 -0.367276 0.044059 0.220418 0.667041 0.804247 -0.030900 0.002788 0.406293 0.180589 -0.257926 -0.477325 0.053840 -0.058654 -0.059429 0.479246 0.329064 -0.023141 0.026359 0.551674 -0.106779 -0.915086 0.443717 0.169660 0.436725 0.127352 0.217544 0.084742 0.409462 -0.368799 0.224305 0.432261 0.398785 -0.679987 -0.155398 0.183452 0.496782 -0.001509 0.683661 -0.832980 0.095220 0.241994 0.286686 -0.126586 0.333905 -0.442110 -0.493713 0.370104 -0.030737 -0.174320 0.213932 0.040109 -0.463460 0.012472 -0.293866 -0.286620 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.274249 -2.088891 1.297532 -2.901306 -1.970751 -0.036507 -1.213862 -1.344096 -0.122194 0.625717 1.252423 -1.493109 -0.956391 3.088232 0.476642 -2.054206 0.506390 0.222705 1.138127 0.443031 0.469392 1.041051 -0.463621 -0.522582 0.208281 -0.452495 -0.862489 1.400957 2.127796 -0.310951 -0.597892 -1.206002 -0.619248 2.696754 0.302814 -0.305212 -0.664302 5.090663 -0.727860 2.979296 -2.433067 -1.996712 3.005402 -1.011380 -0.462002 -2.002372 -2.232198 1.528151 -1.876052 -1.249231 0.698627 0.444543 1.314794 -1.628006 -0.837161 0.810278 -3.525161 0.824043 1.697976 -1.125442 -0.039654 -0.252335 -1.073318 0.849360 -2.158523 -1.236384 0.548372 -0.138705 -1.161819 -0.869495 -0.711432 -1.426185 3.922485 1.560905 -0.642848 1.134049 1.831293 -1.970060 2.528651 -0.457713 -3.607055 -1.181722 -1.583515 -2.339932 3.117451 -0.507490 2.652809 -3.813493 2.407757 -4.915875 1.706819 -3.107495 0.742942 3.927119 -3.012163 1.952312 2.334468 2.711283 1.943309 -0.025847 2.799940 2.144096 -0.256168 1.923508 2.701927 1.187308 -1.002278 -1.152574 -1.881613 -2.225825 -0.044795 -2.370736 -4.730065 1.747555 -0.167070 0.432473 -0.143509 0.689597 -0.398035 2.515660 -2.706789 0.960528 1.260259 -0.824200 -0.275370 2.371525 -0.840290 -0.787275 -1.506026 2.785209 -2.134513 1.617351 1.166108 2.334995 -0.968385 -0.876576 -1.769469 0.647130 0.377454 -2.400181 -2.656173 -3.113118 -0.288417 1.053689 -0.704840 3.401893 5.067772 -1.990936 -2.136279 3.112983 0.624815 0.045698 2.721291 0.924121 3.121679 -0.138128 -2.133182 -2.146846 -1.951926 0.258515 0.137718 0.942917 -0.424692 2.421504 -0.613085 -1.701803 4.407787 -0.678505 -1.590929 -0.744323 0.638275 -2.582480 -2.652615 2.688543 -0.916527 2.339891 0.273537 3.963420 0.667685 -1.263425 1.541136 -1.652937 -0.492343 -1.758858 -0.016839 0.355150 0.854744 -2.142931 -2.008274 -1.577503 -1.126009 -1.177275 1.960405 0.696270 1.023106 2.236770 0.554124 2.367122 2.836524 0.141463 -0.325803 -2.621551 1.477879 1.515162 -1.334536 -2.273231 -0.419103 -1.001663 0.053865 0.492851 0.223963 2.616008 -2.513775 -1.382514 -0.323804 0.565567 0.472713 0.672404 -4.538758 0.551224 0.884213 2.117619 2.117376 2.435513 2.325820 2.794024 1.156092 1.898879 -0.726435 1.186280 -0.978867 -0.422240 0.052995 1.037152 1.195722 2.702174 2.122513 2.033591 2.789958 2.380276 0.717728 2.797735 -0.217318 3.577342 0.532051 -1.528850 0.487046 0.657300 3.222099 4.289776 -0.038608 0.646640 1.790876 0.131932 -1.500807 -2.939738 0.630676 -0.107340 -0.036470 1.515504 1.456751 0.868921 -0.927725 2.434809 0.018873 -4.654173 2.247572 0.976452 1.970863 2.176173 0.601112 0.733635 0.898125 -1.628038 2.330568 2.387035 1.358169 -3.003810 0.354844 0.900816 1.812649 1.480324 3.033383 -2.583936 1.020742 0.947460 1.664230 0.286240 1.704534 -2.315756 -1.795936 1.411640 -1.221035 -0.495886 -0.233543 -0.072692 -1.751789 0.094074 -1.486020 -1.866511 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.175280 0.062579 0.436752 -0.664428 -0.703006 -0.044042 0.097594 -0.248128 -0.158754 0.062739 0.156477 -0.088027 -0.276948 0.588438 -0.195026 -0.579216 -0.236612 -0.651202 -0.244782 -0.270314 -0.157014 0.435148 -0.162559 -0.000284 0.320421 -0.227014 -0.170959 0.382702 0.107597 -0.638935 0.103463 -0.296264 -0.061541 0.786360 0.000924 -0.025773 0.006838 1.381642 0.045534 0.046881 -0.647847 -0.817364 0.788881 -0.306319 -0.162603 -0.649524 -0.340585 0.477644 -0.197982 0.090104 0.220910 0.193074 -0.140016 -0.410128 0.061524 0.259409 -1.080394 0.593221 0.354320 -0.381120 -0.461469 -0.194884 -0.195458 -0.198384 -0.009268 -0.468434 0.216442 0.218364 -0.334346 0.045177 0.089719 -0.417475 1.086299 0.233319 0.081655 0.451664 0.263670 -0.315731 0.606133 -0.402868 -0.764127 -0.332612 0.228391 -0.333168 0.697878 -0.064123 0.278715 -1.105605 0.327475 -1.047041 0.234747 -0.625653 0.290750 0.754014 -0.545926 0.707540 0.420110 0.153035 0.296216 -0.002366 0.803326 0.083560 0.352911 0.688081 0.335889 0.144040 -0.224239 -0.257269 -0.624440 -0.732854 0.095348 -0.216296 -1.046862 0.442947 0.047692 -0.137231 -0.068879 0.134854 0.084270 0.624247 -0.812326 0.058923 0.494689 -0.204327 0.012130 0.500029 -0.209325 -0.167420 -0.440894 0.603194 -0.485640 0.560617 -0.022523 0.530880 0.213911 -0.645846 -0.762344 -0.086353 0.077841 -0.531908 -0.629404 -0.471089 -0.104534 0.146124 -0.459735 0.785619 1.485216 -0.665459 -0.845096 0.947839 0.606492 0.260447 0.476374 0.276860 0.719288 -0.056834 -0.537033 -0.331755 -0.412152 0.317040 -0.531017 0.253008 -0.195319 0.529918 0.193449 -0.265788 1.083238 -0.300360 -0.422167 0.405276 0.251797 -0.560452 -0.671901 0.631000 0.921260 0.976349 0.352420 1.053450 -0.247330 -0.545942 0.174845 -0.222572 0.017358 -0.506343 -0.018009 -0.053780 0.188138 -0.377431 -0.452522 -0.272920 -0.430347 -0.447905 0.306225 0.380902 0.397318 0.214827 0.240273 0.091492 0.988089 -0.013545 0.045016 -0.908288 0.375470 0.373986 0.154836 -0.714431 -0.077516 0.041539 -0.160242 0.428022 0.012572 0.435509 -0.040411 -0.049802 0.089940 0.012696 0.039493 0.142200 -0.620664 0.005588 -0.161807 0.415856 0.168692 0.561894 1.055446 0.635398 0.376292 0.376566 -0.037970 0.045066 0.167467 -0.245929 -0.047349 0.578480 0.490228 0.670012 0.739945 0.394619 0.792307 0.612453 0.000000 0.820292 -0.002468 1.462732 -0.543991 -0.339563 -0.153507 0.360711 0.773718 1.050656 -0.093467 0.049379 0.516446 0.430840 -0.199240 -0.830609 0.121306 -0.165151 0.131749 0.392914 0.392187 -0.240703 -0.018319 0.885997 -0.174470 -1.065102 0.624561 0.234520 0.542935 -0.043598 0.217416 -0.047347 0.589856 -0.584720 0.273253 0.556569 0.498826 -0.841415 -0.097869 0.162857 0.736831 -0.359167 0.764120 -0.790210 0.274270 0.312090 0.453648 -0.068107 0.272922 -0.462233 -0.644318 0.456829 -0.108405 -0.169732 0.661837 0.171111 -0.640403 0.210502 -0.388607 -0.488801 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 0.834093 -7.632923 4.076862 -9.743813 -6.726352 1.796373 -3.313165 -5.734253 -1.256451 2.460802 4.005515 -3.906228 -2.292484 9.679084 1.223468 -7.549880 2.468681 2.076630 2.771865 -0.130431 0.524467 3.876035 -1.825681 -2.623505 0.817049 -3.406884 -0.754961 6.158281 5.938722 1.120880 -1.465899 -4.583933 -3.517582 10.460038 3.567478 0.370470 -2.115842 17.978465 -2.957532 11.394589 -8.558495 -7.265150 10.907063 -2.661239 -1.796088 -5.622057 -8.103365 4.902633 -6.884010 -4.057522 2.912920 -0.940309 6.253195 -4.522030 -2.211416 3.477868 -9.738725 1.056360 4.594083 -5.384184 -2.517223 -2.123005 -2.872886 3.946910 -9.230976 -5.506221 2.799053 1.535220 -2.871071 -2.930134 -3.449727 -6.919195 13.058753 4.979554 -2.814061 1.846777 4.793597 -7.313382 7.455342 1.838453 -12.928243 -4.527255 -5.075753 -9.690321 10.279455 -1.916312 11.424645 -15.573794 8.174256 -18.136560 5.993631 -8.390172 4.245844 13.302180 -10.371428 6.747015 7.246148 11.851555 4.554288 -1.209033 9.402755 6.204560 -1.590903 6.264533 10.735604 3.930444 -4.100858 -5.849374 -6.691382 -7.105568 1.127407 -9.721118 -17.150807 6.037766 -2.050930 1.328075 -2.563862 2.966051 -2.804988 9.572150 -10.302266 3.742124 3.526352 -3.155221 1.131180 6.590536 -2.661380 -0.502171 -3.682218 9.776990 -7.696284 4.931582 0.957357 8.760750 -3.954389 -0.566649 -6.489690 3.592573 3.621661 -7.735712 -10.873172 -10.913145 -2.932204 5.162105 -2.987104 12.695786 17.928531 -7.771144 -8.623144 10.401706 0.705742 0.058932 8.647406 3.130370 10.145726 -2.265830 -5.702703 -8.035730 -5.494300 1.133343 1.692175 2.100303 -2.254495 9.813910 -3.434744 -4.706999 17.538876 -2.918137 -6.331660 -4.362574 2.413340 -7.594545 -7.964196 10.772141 -5.883711 7.790596 0.092162 13.923305 0.125663 -4.920016 3.531209 -7.722808 -3.155384 -7.336205 0.794686 -0.022925 4.161747 -7.644136 -7.894035 -5.246307 -3.848977 -3.986324 6.755978 2.999807 2.483998 6.634340 2.245465 9.708968 10.578291 2.046417 -2.785804 -8.003280 5.543447 7.020383 -4.061075 -6.678724 -2.982676 -3.002183 -1.119036 -0.555052 1.665341 8.925730 -9.543991 -3.423020 -2.345011 2.494508 2.405609 4.169199 -18.718776 3.460971 3.826836 5.649407 6.545145 9.022741 8.913482 9.791476 4.679912 5.023471 -1.249715 2.614096 -5.361194 -0.760431 2.580460 3.902604 4.321536 10.703193 7.629032 6.825228 9.591918 8.373835 5.274498 9.072682 -0.033386 13.822383 2.224852 -4.479710 1.160886 2.491930 10.431878 15.374792 0.728826 2.665146 6.203355 0.255675 -5.528670 -11.073641 3.102267 -1.639967 1.223304 4.513734 5.062864 2.174178 -5.027950 10.773883 -0.301365 -16.966816 8.054141 3.830190 7.377084 9.116685 0.713204 3.511195 2.587343 -5.538468 10.064839 9.093494 4.236470 -9.999395 1.956897 2.257741 5.421617 6.564723 9.144058 -8.251994 4.733048 2.746573 8.556482 1.744795 6.637954 -7.768068 -3.900733 4.266976 -5.569859 -0.519213 0.371089 0.919951 -5.419095 0.994579 -8.066324 -6.598379 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.378149 -0.357822 0.400095 -0.595850 -0.489208 -0.200276 0.211871 0.023815 -0.028990 -0.894192 0.183007 -0.371159 -0.766371 0.594271 0.141524 -1.000985 -0.031860 0.313174 -0.240576 -0.022565 -0.091776 0.280192 -0.049901 -0.031236 0.467914 -0.258993 -0.176805 0.895973 0.929387 -0.347365 0.095502 -0.166503 0.041398 0.862483 -0.180311 0.469848 0.202608 1.527498 0.143103 0.777143 -0.393613 -0.414665 1.024573 -0.214298 -0.589257 -0.713641 -0.800945 0.403770 -1.588734 0.060088 0.383640 0.306195 -0.038525 -0.519737 0.347399 0.808604 -1.272935 0.584959 0.284164 -0.232086 -0.154000 -0.204307 -0.788696 -0.432836 -0.098444 -0.437872 -0.078224 -0.063801 -0.497107 0.077305 0.085585 -0.317561 1.938786 0.223248 -0.182206 0.673581 0.543508 -0.217257 0.469576 0.023859 -0.679050 -0.405847 0.291244 0.030682 1.065226 -0.175797 0.150464 -1.138105 -0.334176 -1.015405 0.526284 -1.080508 0.377958 0.994086 -1.088736 0.953637 0.296118 -0.395446 -0.198992 0.231287 0.801046 0.036446 0.189003 0.436356 0.512309 -0.129079 -0.245489 -0.654609 -0.622338 -0.620100 -0.052632 -0.472065 -1.663513 0.130733 -0.175336 0.592293 0.131246 0.345277 0.065089 0.143732 -0.218668 0.836236 0.511289 -0.269994 0.174157 0.817064 -0.207403 -0.311921 -0.402478 0.794660 -0.348514 0.549310 -0.297388 0.496206 0.571716 -0.836682 -0.608354 -0.341477 0.004299 -0.250959 -0.802611 -0.316075 -0.250288 0.315258 -0.250005 0.291076 1.522575 -0.396010 -0.651871 0.996996 0.457851 1.060723 0.391548 0.397072 0.772356 -0.156373 -0.356338 -0.559424 -0.354100 0.334342 -0.316082 0.217033 -0.553509 0.519385 0.110867 -0.724323 1.404289 -0.425898 -0.248377 0.130648 -0.034376 -0.668333 -0.928252 1.243436 0.660541 1.183263 -0.012415 1.174378 -0.207052 -0.956218 0.270567 0.190536 0.051747 -0.791519 -0.177927 0.136370 -0.003947 -0.712534 -0.677147 -0.423476 -0.049100 -0.275798 0.311139 0.741563 -0.015606 -0.019815 0.345857 0.091651 0.778121 -0.135672 0.040447 -1.175740 0.303746 0.217251 -0.133022 -0.814460 0.465962 0.256167 -0.210404 0.329404 0.092221 0.119154 -0.146137 -0.235075 -0.055423 -0.165852 0.105129 0.038674 -1.146702 -0.029016 0.313564 0.000000 0.602355 0.470217 1.530612 0.296471 0.198559 0.563611 0.029611 0.187005 -0.137024 -0.088558 -0.175652 0.752152 0.330535 0.570846 0.670749 0.065948 0.613519 0.724018 0.093263 0.684137 0.827505 1.399959 0.380900 -0.671646 0.212471 0.080302 0.787791 1.057171 -0.293461 0.343172 0.717607 0.853475 0.068928 -1.371598 -0.184595 -0.202330 -0.382891 1.214689 -0.361750 -0.416068 0.150570 0.917242 -0.190160 -1.113880 0.441493 0.264864 0.428472 -0.267839 0.209888 -0.213575 0.803531 -0.843413 0.360160 0.142326 0.463291 -0.701814 -0.052724 0.031597 0.303666 0.273142 0.649262 -0.518208 -0.254194 0.187413 0.797537 0.311079 0.190645 -0.070338 -0.617602 0.084971 -0.356374 -0.244862 -0.020188 -0.195535 -0.457021 -0.048457 -0.599950 -0.954504 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.388083 0.005690 0.371704 -0.350832 -0.320685 -0.277488 0.625498 0.174361 0.006553 -0.691479 0.275616 -0.326857 -0.655651 0.315227 0.219644 -0.535936 0.017350 0.016610 -0.379773 -0.027019 0.018313 0.141685 0.066069 -0.006757 0.325473 -0.047030 -0.149979 0.812416 0.540612 -0.346316 0.140812 0.031353 0.235876 0.445812 -0.297137 0.227725 0.119907 0.828828 -0.357197 0.458782 -0.144084 -0.105306 0.770243 -0.100684 -0.552976 -0.798406 -0.664867 0.339326 -0.886619 -0.205765 0.281870 0.365215 -0.020230 -0.427705 0.225331 0.814040 -0.869982 0.243188 0.194573 -0.193944 -0.097513 0.025777 -0.520041 -0.312047 -0.021488 -0.285431 -0.096612 -0.433882 -0.198751 0.066381 0.125497 -0.238994 1.295506 -0.013106 0.028268 0.533178 0.359768 -0.230660 0.418132 0.210588 -0.216546 -0.212198 0.209378 0.117017 0.625998 -0.328583 -0.162922 -0.609717 -0.655649 -0.425040 0.370644 -0.785670 0.087785 0.469754 -0.541704 0.641590 0.028922 -0.651134 -0.315605 0.138764 0.451663 -0.052395 0.526975 0.234743 0.343743 -0.070498 -0.321527 -0.557654 -0.636649 -0.468417 0.161306 -0.272592 -1.008119 0.070504 -0.005892 -0.016084 0.339468 -0.050942 0.226427 0.285821 0.349988 1.037664 0.525891 -0.135720 -0.130208 0.772240 -0.123005 -0.300288 -0.243128 0.449901 -0.076056 0.616479 -0.073012 0.223632 0.510525 -0.827077 -0.010150 -0.244602 -0.137970 -0.034077 -0.340657 -0.168265 0.044682 0.096246 -0.171880 -0.328076 0.910737 -0.144659 -0.436412 0.558263 0.833509 0.656367 -0.140733 0.187547 0.675218 -0.156937 -0.246405 -0.380586 -0.278465 0.371218 0.325724 0.143563 -0.392281 0.288148 0.078975 -1.088512 1.152132 -0.302760 -0.018211 0.776936 0.009686 -0.401872 -0.743892 0.790375 0.968325 0.855242 0.021365 0.655097 -0.079714 -0.614322 0.188037 0.589744 0.102818 -0.735017 -0.267226 0.352207 -0.102722 -0.198097 -0.329887 -0.535852 -0.010872 -0.145962 0.169135 -0.005650 0.062879 -0.141932 0.234793 -0.509088 0.366187 -0.174548 0.062415 -0.858492 0.153086 0.010275 0.094400 -0.693440 0.368721 0.143974 -0.101915 0.204992 -0.035165 0.077211 0.093216 -0.133486 0.208198 -0.339783 -0.275958 -0.154845 -0.851862 -0.122890 0.190845 0.038006 0.272634 0.301357 1.112500 0.072320 0.045023 0.471250 0.027221 0.220521 -0.481098 -0.112941 -0.383246 0.475766 0.237102 0.238675 0.338383 -0.028626 0.465896 0.335408 -0.001482 0.401951 0.703909 0.751797 0.526015 -0.527967 0.241594 0.055956 0.418845 0.502952 0.211127 0.004526 0.438827 0.664899 -0.038105 -0.857117 -0.259874 -0.147419 -0.278686 1.201595 -0.278597 -0.412232 0.257290 0.507689 -0.142031 -0.705350 0.091641 0.095420 0.248049 -0.223423 0.099079 -0.028863 0.596107 -0.414882 0.119132 -0.038387 0.310812 -0.463724 -0.186041 0.031239 0.105024 0.172139 0.362172 -0.948970 -0.396909 -0.044795 0.475774 0.022029 0.416596 -0.064271 -0.215269 0.054804 -0.038130 -0.158447 -0.085376 -0.163981 -0.471192 -0.121958 -0.659295 -0.321540 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.342997 -0.370979 0.732149 -1.908672 -1.535535 -0.591679 -0.176911 -0.544301 -0.094350 0.629585 0.962132 -1.349887 -1.060964 2.269926 0.112392 -1.099557 0.068442 -0.987999 0.407002 0.575774 0.343431 0.900659 -0.180518 -0.213976 0.343621 0.394642 -1.117699 0.677617 1.574195 -1.226653 -0.555168 -0.524714 0.290352 1.483269 -0.357479 -0.826053 -0.405043 2.973648 -0.963674 1.332262 -1.771740 -1.093289 1.982815 -0.689406 -0.312736 -2.387323 -1.330419 1.328624 -0.647576 -0.952541 0.432419 0.797937 0.178513 -1.330239 -0.516633 0.974848 -2.943106 1.453230 1.443005 -0.207765 0.372238 0.120846 -0.599866 0.160736 -0.563375 -0.832316 -0.030494 -0.779426 -1.034609 -0.533081 -0.362638 -0.617328 2.492895 0.784501 -0.314593 1.109343 0.790967 -1.340941 1.844268 -1.752994 -1.850540 -0.482901 -0.547638 -0.400992 1.720617 -0.252475 0.683070 -2.076238 0.762571 -2.641992 0.930935 -2.304245 0.202646 2.279938 -1.559937 1.128958 1.085555 0.108441 1.875042 0.438959 1.827563 1.277124 0.752323 1.060886 0.959544 1.087559 -0.621877 -0.395941 -1.163042 -1.645092 -0.132067 -0.436454 -2.705995 1.183765 0.137697 -0.055404 0.613252 -0.163603 0.233888 1.484044 -1.173373 0.187082 0.992932 -0.393596 -0.386512 2.259648 -0.461901 -0.870286 -1.403736 1.566983 -0.759516 1.539041 1.187297 1.292614 -0.463455 -2.207703 -0.987984 0.067992 -0.236175 -1.588247 -1.222309 -2.166340 0.542425 -0.340110 -0.764981 1.259501 3.095846 -1.146413 -1.359770 2.133757 1.310366 0.061652 1.507616 0.235735 2.536819 -0.057808 -1.394219 -0.662426 -1.400168 0.207748 0.537129 0.652283 -0.477697 0.804606 -0.139963 -2.360332 1.615003 0.119086 -0.730100 0.656888 0.314285 -1.652085 -1.991516 1.358348 0.636418 1.662337 0.235185 2.393713 0.529545 -0.927231 1.427921 -0.139445 0.087899 -0.953211 -0.508335 0.872708 0.312417 -1.105248 -0.763098 -0.966457 -0.557537 -1.104709 1.219417 -0.450134 0.786373 1.225570 0.315480 0.647678 1.552276 -0.548783 0.595641 -1.981109 0.859874 0.575036 -0.463659 -2.470080 -0.010262 -0.853955 0.117478 1.189001 -0.363091 1.445579 -0.796306 -1.063777 0.627197 -0.169558 0.098113 -0.117453 -1.441021 0.018366 -0.173806 1.631367 1.064703 1.675350 1.240058 1.712276 0.495444 1.407471 -0.631117 0.759066 -0.200380 -0.391920 -0.634797 0.289674 1.030857 1.247751 1.289717 1.145475 1.933789 1.100135 -0.627555 1.997901 -0.166788 2.051985 -0.106611 -1.115343 0.412373 0.170999 2.054306 2.549531 -0.183289 -0.408182 1.100095 0.089734 -0.800690 -1.309119 0.171961 0.006935 -0.604269 1.530025 0.860895 0.469476 -0.053604 1.330416 -0.268567 -2.742775 1.506224 0.417882 1.206490 0.590313 0.615679 0.334641 0.865035 -1.057144 0.644015 1.407074 1.234220 -1.793173 -0.602563 0.598148 1.395864 0.508480 1.946721 -2.764604 0.117645 0.949011 0.757150 -0.129307 1.165134 -1.438747 -1.541185 1.012814 0.146291 -0.441976 -0.448816 -0.076604 -1.453235 -0.139713 -0.373774 -0.552553 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.578027 -1.402407 2.293298 -3.212804 -3.021713 -1.165609 1.194516 0.068631 -0.485629 2.709194 0.866744 -2.287370 -3.057988 3.799736 0.359373 -2.294607 0.631890 -2.007907 0.702005 -0.092274 0.481434 1.848585 0.607927 -0.552778 0.928227 -0.037458 -1.692960 2.772789 3.091826 -1.177983 0.782216 -0.990294 0.386728 2.334627 -0.731235 -1.564929 -1.255357 6.055904 -2.974957 3.856598 -3.112239 -2.718661 4.698698 -1.008004 -0.299154 -4.450884 -2.279454 3.052887 -1.957460 -2.560465 0.743876 2.008054 1.436487 -2.836389 -1.625251 2.117637 -5.168695 1.757572 1.536138 -1.421283 -0.041640 0.739200 -1.542809 1.409153 -1.798114 -1.908115 -0.511920 -2.287946 -2.182177 -1.044181 -0.297304 0.371127 3.485760 0.904141 -0.217558 1.820283 2.020807 -1.373480 3.335426 -2.899136 -3.695364 -1.333970 -2.152829 -2.362028 3.007632 -0.673233 2.059906 -4.302096 1.838138 -4.712223 2.406927 -3.857526 0.019918 4.231120 -1.759000 3.529730 1.498213 0.459704 2.781187 -0.363892 3.100187 2.645604 2.504277 3.056287 1.997240 2.293566 -2.227410 -1.611531 -3.501901 -2.308236 0.382001 -2.132249 -4.248878 2.234613 1.301554 -0.285701 2.164942 -0.634207 -0.582376 3.049091 -2.558148 2.542288 1.905716 -0.720844 -1.297826 3.136196 -1.076017 -1.517373 -1.445168 3.411053 -1.629468 3.563672 3.094471 2.797054 -0.748577 -2.401186 -0.005752 1.060208 -0.412960 -1.749417 -2.097689 -4.523262 0.751791 -0.071572 -1.727981 2.431841 5.947120 -1.391054 -2.346481 3.301449 1.197576 0.163983 0.921030 0.380213 3.655802 0.290051 -3.834444 -1.666559 -2.630203 1.649499 5.161194 1.579813 -1.036577 2.814313 -0.765012 -3.466862 1.926772 -0.289966 -1.322475 -0.234077 0.634048 -3.081188 -2.993945 2.382181 -0.922703 2.669451 0.026528 4.287587 1.962291 -1.655142 2.129291 -2.007882 -0.043829 -2.916854 -0.393764 1.604160 -0.346973 -2.262475 -1.722085 -3.399074 -0.983319 -1.941463 1.968426 -3.293789 1.597970 2.421810 1.290272 2.972342 1.888009 -0.414046 0.054745 -3.806003 1.372368 0.455250 -0.239945 -4.641492 -0.421277 -0.372951 0.101716 2.388439 -0.317670 2.438382 -1.713508 -1.321150 1.026543 -0.412014 -1.171345 0.233276 -4.661211 -0.220629 1.784970 3.583422 2.070086 3.255066 2.809758 2.386294 0.482401 4.147531 -1.493866 1.843331 -1.662562 -0.402870 -0.523845 -0.670084 1.688837 2.351093 2.322930 1.900933 4.260275 2.795243 -1.862659 2.816802 -0.727547 3.296766 -0.218680 -2.837707 1.060736 1.413494 3.049401 3.549715 1.414781 -0.996653 2.649994 -0.356642 -1.192855 -1.652294 0.690023 -0.722840 1.211979 3.773030 2.178688 0.361628 0.411146 1.564649 -0.590672 -5.996642 2.951085 1.138097 2.788068 1.822864 1.068835 1.311526 1.097199 -2.025167 1.534484 2.976306 0.982835 -3.177993 -0.360295 1.165900 1.914611 2.378861 3.681483 -7.355610 -1.337341 0.880545 1.345321 -0.848586 4.001728 -2.647362 -3.067974 2.057214 -0.452338 -0.678548 -0.590924 -1.035832 -2.356739 0.358505 -1.201559 -0.497003 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.212297 -0.350610 0.507036 -1.029637 -1.025755 0.030756 0.165538 -0.595601 -0.187046 -0.113818 0.509019 -0.469513 -0.342614 1.237646 -0.015486 -0.860004 -0.070161 0.159459 -0.148351 0.015151 -0.003863 0.673227 -0.261183 -0.124119 0.276284 -0.322428 -0.128254 0.883188 0.378580 -0.118534 0.006279 -0.523850 -0.089814 1.215939 0.256276 0.431916 -0.143703 1.943137 -0.665469 1.425163 -1.118661 -0.874081 1.268769 -0.273890 -0.313322 -1.264663 -1.217545 0.552538 -0.714656 -0.414098 0.429532 0.043076 0.380322 -0.468429 0.254662 0.596480 -1.214117 0.302916 0.585713 -0.819946 -0.363733 -0.242454 -0.575667 0.042979 -0.961921 -0.652191 -0.024023 0.188823 -0.104109 -0.124483 -0.065133 -0.899318 1.905087 0.330722 -0.402635 0.429142 0.402830 -0.855682 0.829964 -0.011457 -1.239490 -0.482490 -0.043095 -0.470700 0.963564 -0.060425 0.978804 -1.734249 0.198096 -1.767543 0.662089 -1.040425 0.477047 1.270313 -1.070011 0.842463 0.682079 0.555514 0.498842 0.247193 0.928932 0.515968 0.237559 0.700137 0.988815 0.504977 -0.509340 -0.864912 -0.983953 -1.056499 0.371079 -0.790027 -2.105335 0.423611 -0.002611 0.141287 -0.301859 0.184741 0.129426 1.164155 -0.850243 0.864807 0.722920 -0.310677 0.012061 0.939964 -0.234779 -0.136499 -0.591274 0.883449 -0.776118 0.841255 -0.148397 0.892431 -0.344544 -0.763747 -0.733308 0.115124 0.126410 -0.760172 -0.998290 -1.136721 -0.259068 0.801606 -0.526360 0.614471 2.073293 -1.062610 -1.211365 1.267565 0.949599 0.114276 0.477089 0.441881 1.194701 -0.227678 -0.606926 -0.887422 -0.760976 0.298969 0.682492 0.293675 -0.659027 0.936620 -0.292642 -1.860633 2.385590 -0.422874 -0.704513 0.020700 0.223485 -0.793167 -0.826152 1.345802 -0.016850 1.244778 -0.398158 1.482315 -0.326749 -0.714169 0.253660 -0.670381 -0.246664 -1.053784 -0.039492 0.222366 0.541768 -0.810385 -0.721639 -0.482800 -0.595085 -0.550904 0.609943 -0.237700 0.133139 0.413304 0.262296 0.602370 1.242100 0.125889 -0.176534 -0.980821 0.636499 0.570349 -0.062002 -1.338642 -0.099705 -0.245587 -0.256628 -0.145216 0.102617 0.692592 -0.574808 -0.097841 -0.064697 -0.307784 0.092681 0.271286 -1.553988 0.240898 0.132000 0.729941 0.513855 0.856092 1.476689 1.113512 0.594084 0.695248 -0.119436 0.039884 -0.508654 0.200173 0.271928 0.317190 0.626525 1.267107 0.961582 0.550514 1.105719 0.843695 0.659052 1.123465 0.309045 1.832331 0.192952 -0.534929 0.146038 0.421527 1.134839 1.679236 0.222863 0.260986 0.654988 0.305669 -0.587677 -1.121174 0.205813 -0.156082 -0.332129 1.194715 0.409890 -0.093405 -0.267568 1.398901 -0.185216 -1.717292 0.681881 0.359118 0.814414 0.404886 0.148792 0.309082 0.694546 -0.485218 0.939140 0.850215 0.704307 -1.209960 -0.472596 0.142932 0.445371 1.134432 1.023419 -1.470781 0.318412 0.339476 1.122545 -0.250667 0.870844 -0.721269 -0.326572 0.497773 -0.331583 -0.173233 0.088100 0.045877 -0.533696 0.046544 -1.128929 -0.884662 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.242663 -0.108486 0.438540 -0.654372 -0.538291 0.160271 -0.076899 -0.504321 -0.108525 0.137284 0.238110 -0.093752 -0.332743 0.543262 -0.213378 -0.585647 -0.008450 -0.338402 -0.058399 -0.239291 -0.124118 0.225616 -0.210947 -0.232588 0.135357 -0.292545 0.107293 0.370830 0.112847 -0.267239 -0.166870 -0.331132 -0.125374 0.903318 0.308674 0.095984 -0.082587 1.289284 0.067583 0.427883 -0.883732 -0.799067 0.769706 -0.235936 -0.050221 -0.698419 -0.300233 0.416037 -0.491892 0.060887 0.230298 -0.142974 0.159387 -0.370673 -0.042327 0.347216 -0.936843 0.523494 0.314862 -0.413178 -0.365947 -0.277660 -0.112112 0.081019 -0.069805 -0.473780 0.313288 0.376692 -0.397860 0.094297 -0.248031 -0.616191 1.118526 0.278599 -0.124371 0.164638 0.186681 -0.395842 0.513066 -0.329732 -0.821822 -0.377451 0.107763 -0.224649 0.670507 0.054797 0.501689 -1.219218 0.281815 -1.273000 0.406919 -0.518321 0.423624 0.728399 -0.613144 0.544259 0.456787 0.289161 0.255671 -0.033400 0.699208 0.202641 0.171487 0.371426 0.581932 0.151333 -0.191115 -0.429866 -0.439297 -0.563161 -0.021298 -0.295513 -1.180112 0.401751 -0.273728 0.208634 -0.273011 0.206234 -0.070911 0.504851 -0.981644 -0.094803 0.298985 -0.221584 0.380840 0.450892 -0.158632 0.122193 -0.230368 0.649772 -0.461951 0.321984 -0.170742 0.597456 0.075952 -0.638719 -0.930673 0.128946 0.386930 -0.556619 -0.851037 -0.627431 -0.278035 0.290027 -0.307450 0.832295 1.379224 -0.595784 -0.827524 0.766127 0.231475 0.134134 0.751708 0.291341 0.789214 -0.322587 -0.175223 -0.364895 -0.210273 0.164846 -0.282352 0.011739 -0.265324 0.680559 0.065965 -0.223058 0.864303 -0.222548 -0.409886 0.072977 0.106339 -0.486959 -0.544013 0.684518 0.284455 0.795247 0.127884 1.099880 -0.473793 -0.599116 0.088661 -0.451810 -0.085826 -0.333841 0.043326 -0.015627 0.397280 -0.652359 -0.588353 -0.223083 -0.352833 -0.247500 0.523595 0.373884 0.140180 0.235113 0.093669 0.540153 0.914696 0.019821 -0.013713 -0.675461 0.405329 0.479062 0.050234 -0.725106 -0.228182 -0.142059 -0.185366 0.243607 0.119575 0.554918 -0.246598 -0.135876 0.024633 -0.000391 0.219404 0.250072 -0.666776 0.141405 0.002658 0.232420 0.235527 0.684350 0.788022 0.711398 0.359603 0.136791 0.008632 -0.132901 0.072270 -0.176578 0.218113 0.430253 0.369329 0.677498 0.564754 0.348383 0.704130 0.590431 0.175905 0.759795 0.017213 1.187261 -0.484895 -0.134069 -0.063251 0.122983 0.771813 1.090099 -0.299700 0.047779 0.448618 0.226388 -0.175886 -0.798460 0.124775 -0.187956 0.000714 0.451107 0.566541 -0.060670 -0.346978 1.046683 -0.067433 -1.131158 0.670174 0.271281 0.454709 0.318907 -0.037091 -0.024372 0.392044 -0.440135 0.441524 0.529022 0.511547 -0.791104 -0.095726 0.104808 0.603586 -0.035787 0.521850 -0.626844 0.165460 0.374837 0.743421 0.222388 0.330771 -0.588329 -0.384146 0.259841 -0.262587 -0.019230 0.394475 0.302531 -0.482571 0.083049 -0.443557 -0.406114 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.168894 -0.016191 0.166589 -0.151033 0.072782 -0.050535 0.176856 -0.104596 -0.044303 0.072924 -0.036915 -0.030451 -0.287436 0.106260 -0.091304 -0.194831 0.095497 -0.193912 -0.102846 -0.076281 -0.071799 -0.032410 -0.002213 -0.262358 0.127867 -0.064159 0.162515 0.116073 -0.087929 -0.168910 -0.039505 -0.063079 0.106213 0.322613 0.036835 0.144173 -0.135311 0.333147 0.187091 0.267353 -0.424798 -0.310542 0.364651 -0.113372 0.061994 -0.396569 0.098349 0.193555 -0.198217 -0.019323 -0.116189 -0.022007 -0.095737 -0.359841 -0.129549 0.276291 -0.358318 0.276209 0.084125 -0.113351 -0.216706 -0.116612 -0.007727 -0.062762 0.167477 -0.208799 0.060300 0.034716 -0.401612 0.253296 -0.214407 -0.099492 0.378616 0.072369 0.012541 0.100970 -0.053067 0.048788 0.118290 -0.299482 -0.062298 -0.218627 0.182235 0.215403 0.146588 0.129953 0.038702 -0.422685 -0.023369 -0.327184 0.224730 -0.197076 0.170234 0.194773 -0.061093 0.336038 0.005607 -0.155795 -0.133330 0.059842 0.189678 0.040635 0.182742 -0.035787 0.187917 -0.040030 -0.067886 -0.318322 -0.009364 -0.034377 -0.056057 0.022987 -0.302323 0.118180 -0.245244 0.280280 0.012877 0.139360 -0.028312 -0.117506 -0.523552 -0.155209 0.128432 -0.088271 0.296765 0.073390 0.002821 0.035991 -0.039311 0.183369 0.057104 0.040319 -0.055030 0.209582 0.126593 -0.375614 -0.198192 -0.073380 0.117141 -0.110624 -0.339072 -0.232418 -0.149407 0.132348 -0.077182 0.210678 0.364380 0.002306 -0.224121 0.134690 -0.014920 0.179558 0.208279 0.115265 0.284290 -0.251801 0.124650 0.108369 0.181168 0.227373 -0.094472 -0.171320 -0.263193 0.237381 0.029672 -0.047435 -0.045497 -0.045588 0.082801 0.081743 -0.103189 -0.162265 -0.162944 0.200622 0.055304 0.413558 -0.114191 0.364436 -0.285735 -0.216331 -0.017964 -0.220555 -0.024367 -0.073583 0.070190 -0.047943 0.122681 -0.409702 -0.275937 -0.017860 -0.099994 0.051561 0.348153 -0.057476 -0.097641 -0.105801 -0.047565 0.317784 0.033448 -0.221443 0.048358 -0.259308 0.092402 0.098151 0.164856 -0.319704 -0.037581 0.025335 -0.129009 0.172064 0.067639 0.093568 0.068808 -0.042041 0.196816 -0.060037 -0.045749 -0.098063 0.121890 -0.068621 0.074187 -0.067812 0.008774 0.342258 0.217882 0.016261 -0.141348 -0.046854 0.018418 -0.203195 -0.066161 -0.083308 -0.046667 0.121339 0.070166 0.025491 0.093882 0.007817 0.253550 0.135238 -0.143093 0.233418 0.113541 0.203894 -0.300419 -0.055250 0.133372 -0.106298 0.231780 0.171721 -0.318183 -0.154668 0.210739 0.014059 0.028022 -0.090740 -0.146647 -0.083577 -0.166716 0.340804 0.197684 -0.104547 -0.062350 0.414683 -0.030626 -0.382764 0.252728 0.115040 0.098664 0.060335 -0.124740 -0.036646 0.261529 -0.029071 -0.126617 -0.039014 0.184306 -0.248826 -0.047512 0.006359 0.206056 -0.039338 0.002499 -0.164771 -0.209870 0.152796 0.364188 0.160175 0.043558 -0.113354 -0.034323 -0.099480 0.033349 0.032736 0.063749 0.119064 -0.048437 -0.173658 -0.167622 0.078840 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 0.995937 -2.821458 1.614485 -3.817982 -3.047915 2.409120 -2.246825 -3.112387 -0.512838 0.777754 1.154165 0.583343 0.637071 2.756702 0.275430 -2.885302 0.025852 -1.027822 1.016009 -0.064134 -0.721742 1.819545 -1.895125 0.221083 0.065488 -1.925643 0.093533 1.634620 -0.000571 -0.021192 -0.996327 -2.570136 -3.259446 4.661844 2.747451 0.580296 0.354323 7.735643 0.010067 3.164046 -2.244260 -3.939227 2.549536 -1.203220 -1.021362 0.955774 -1.562947 1.361960 -1.366879 -0.338980 2.626826 -1.407779 2.209385 0.148091 0.239961 -0.519147 -3.106099 -0.399189 1.467475 -1.813460 -1.830145 -1.996706 -0.487738 1.326557 -4.022253 -1.778389 2.594437 2.312588 -0.042290 -1.464882 -0.665621 -3.835779 4.650280 2.929731 -0.991669 -0.010085 2.074106 -3.110673 2.633062 1.736864 -6.402568 -1.500409 -2.230980 -6.010951 4.856254 -0.819209 4.856787 -6.083406 5.060410 -7.488931 0.869818 -2.113799 2.162798 5.025359 -3.669410 1.779923 3.798196 7.540149 1.343375 -2.209690 3.789172 1.536939 -2.329069 3.506015 4.134239 0.881319 -1.567817 -1.213935 -3.102208 -3.113137 0.824836 -4.120499 -5.776361 2.183221 -0.271289 0.143460 -2.634139 2.186270 -1.808487 4.157695 -5.439176 0.485614 0.396325 -1.151411 1.003057 1.601962 -1.325194 0.554238 -1.032394 3.796916 -4.284210 1.464449 -1.357451 3.185987 -1.123960 3.252155 -4.171832 1.490684 2.698363 -3.429170 -4.468505 -3.306259 -2.069650 2.969618 -1.448716 7.865975 7.489912 -4.469174 -3.498029 4.720675 -0.520614 -0.095495 3.784444 1.613059 1.836531 -0.131610 -2.615185 -3.838761 -2.458418 -0.946139 -2.301076 1.507116 0.523796 4.116127 -0.745965 2.534089 8.679713 -1.236757 -3.970992 -2.092680 1.195750 -2.725226 -3.059278 4.087576 -1.467872 2.203712 2.309809 5.602470 -0.628338 -0.994611 0.738558 -3.372020 -0.869105 -3.644049 -0.029728 -1.331650 2.068214 -2.244316 -2.820714 -1.166453 -1.678795 -2.003661 1.447315 4.230786 1.648028 2.783824 1.242166 4.091396 6.624822 2.113069 -2.036635 -2.545440 2.505424 2.869535 -2.115564 0.378287 -1.815655 -0.655690 -0.675669 0.142450 0.899139 3.399167 -4.517449 -0.658234 -1.808921 2.415004 1.786446 3.466748 -9.303538 1.618335 1.564682 1.638743 2.979168 2.291679 3.574580 5.096243 3.790448 0.789158 -0.392329 1.672956 -1.356033 -0.950711 1.887525 3.737868 1.893479 4.990606 3.752788 2.968962 2.826458 4.142034 3.635357 3.607631 -0.605642 7.199362 0.125644 -1.107339 -0.955066 1.921905 3.986444 6.014313 -0.815715 3.103868 2.081446 1.050689 -2.552543 -4.646951 2.460699 -1.080644 2.694327 -1.386884 2.116828 0.973103 -2.480622 4.912865 -0.390999 -6.213788 2.162632 1.663599 3.217525 3.826893 0.779780 1.523492 0.296005 -3.109118 5.899886 4.340026 1.658978 -3.644166 2.388954 0.916049 2.160083 0.112672 3.896884 -0.671745 3.497776 0.233478 2.899427 1.325986 1.646484 -3.044919 -1.123173 2.620792 -3.577557 0.164884 2.601204 1.954031 -1.738316 1.973500 -3.694645 -3.839543 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.525543 -2.913573 2.096613 -4.636733 -4.221264 2.692124 -3.109727 -4.062477 -0.736092 0.508410 1.716751 0.382607 0.413092 3.040617 -0.109916 -4.009951 -0.256522 -1.113829 0.787275 -1.007358 -0.876145 1.927075 -2.142860 -0.166104 0.077721 -2.585920 0.287611 2.131264 0.927910 -0.497305 -1.274864 -3.002865 -3.342399 5.935352 3.291934 0.369388 0.327950 9.634443 0.999377 2.274492 -3.389833 -4.941695 3.804982 -1.632746 -1.249052 0.305774 -2.217412 1.971866 -2.430216 0.273793 2.770044 -1.737483 2.548499 -0.411825 -0.137298 -0.093121 -4.329778 0.800890 1.882039 -2.614358 -2.585489 -2.399156 -0.359644 1.499729 -3.669829 -2.562046 3.339764 3.296614 -0.543968 -1.478738 -1.061467 -4.884171 6.606547 3.101990 -0.984485 0.087796 2.070769 -3.444321 3.269387 1.996521 -7.719046 -2.127820 -1.786874 -6.259443 5.668462 -0.931931 5.520384 -8.064262 5.379831 -9.668352 1.349376 -2.607751 3.064576 5.766405 -5.257085 2.479780 4.511164 7.760423 1.811873 -2.250597 5.003112 1.259522 -2.172412 4.045259 4.738732 0.756040 -1.300078 -1.333393 -3.422030 -4.216834 0.688449 -4.425033 -7.909773 2.957704 -1.038558 0.248854 -3.349213 2.444712 -1.615838 5.029141 -6.420888 0.030343 0.866615 -1.515734 1.745010 2.288756 -1.765623 0.931568 -1.439091 4.680173 -5.052077 1.583893 -1.647648 4.062871 -0.476002 1.755941 -6.280408 1.878928 3.599675 -4.445112 -5.846781 -3.497007 -2.434194 2.803991 -2.056790 9.089488 9.525188 -5.515508 -4.937090 5.783672 -0.283654 0.180838 5.532019 2.026633 3.565029 -0.775982 -2.771185 -4.304018 -2.870941 -0.557540 -4.196874 1.292640 0.295991 5.027857 -0.391077 2.976356 10.042297 -1.734640 -4.678840 -1.433013 1.649377 -3.118907 -4.034891 4.864634 0.201066 3.381842 3.180441 7.356002 -1.598971 -2.209746 0.988636 -3.275416 -1.204849 -3.267451 0.186033 -1.659246 2.904477 -2.764641 -3.693630 -1.366291 -2.349602 -2.328506 2.382176 6.596602 2.146637 3.313909 1.259325 4.035455 8.345936 2.248882 -1.969370 -3.713180 3.032426 4.221544 -1.843690 -0.415712 -2.425602 -1.036818 -0.824315 0.517246 1.098376 4.544254 -4.614643 -0.875111 -2.141358 2.714370 2.565995 3.929202 -10.142012 2.070473 1.152128 1.783585 2.961396 3.557350 4.872773 6.242514 4.519795 0.803386 -0.156148 1.412097 -0.342392 -1.446724 2.177777 4.887366 2.522555 5.993857 4.598643 3.682923 4.001931 4.733604 3.987159 4.822967 -0.626798 9.493316 -1.315419 -1.037673 -1.609756 2.067325 5.414746 8.251545 -1.046855 2.983683 2.565739 1.736527 -2.605019 -6.903496 2.592516 -1.158635 2.930862 -1.159210 3.087801 1.031252 -3.281035 6.579234 -0.274741 -7.879645 3.821331 1.979715 3.793543 4.117438 0.514960 1.211634 0.840626 -3.865113 6.107396 5.433247 2.542769 -4.951968 2.354839 1.001583 3.572309 -1.057631 4.634143 -1.114692 4.426602 1.234885 3.944676 1.695075 1.589139 -4.192940 -2.126548 3.031155 -3.995219 0.285668 3.682911 2.317628 -3.072417 2.303346 -3.910478 -4.600856 +PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.745220 -1.062687 0.425896 -1.080983 -0.867524 0.853775 -0.622710 -1.563715 -0.307731 0.253369 0.533646 0.017670 0.229285 0.733301 0.292136 -0.848665 0.341712 -0.108375 0.292317 -0.305013 -0.338516 0.309804 -0.672460 -0.279013 -0.188310 -0.629908 0.165917 0.556346 -0.255390 0.130781 -0.561430 -0.972809 -0.776608 1.941325 1.226870 0.280872 -0.335852 2.704350 0.168154 1.191106 -1.259661 -1.324222 1.162511 -0.555298 -0.188679 -0.026790 -0.628377 0.703656 0.021234 -0.551658 0.526247 -0.654534 0.801693 -0.210157 -0.367215 0.267338 -0.815582 -0.229647 0.634247 -1.127759 -1.017107 -0.723192 0.030722 0.673424 -1.739590 -0.939569 1.093193 0.845119 0.014127 -0.110352 -0.882698 -1.968764 1.511992 0.980575 -0.489175 -0.288899 0.353236 -0.985706 0.940409 1.371030 -2.147128 -0.684228 -0.746081 -1.687613 1.402447 -0.172855 1.936411 -2.579689 1.579871 -3.148337 0.478781 -0.898704 1.171829 1.640039 -1.369870 0.596347 1.263142 2.702600 0.419759 -0.742981 1.373716 0.483561 -0.767132 0.823693 1.988828 0.302656 -0.268386 -0.695358 -0.865903 -1.119637 0.613757 -1.308799 -2.095806 0.974497 -0.780959 -0.089780 -1.239831 1.024568 -0.459237 1.598473 -2.095079 -0.102494 0.452204 -0.506807 0.858373 0.760540 -0.684821 0.518098 -0.534903 1.285196 -1.135126 0.450303 -0.559424 1.281312 -0.422043 0.489566 -1.718496 0.659061 1.378700 -1.650922 -1.950982 -1.378474 -0.741748 1.200578 -0.742227 2.566370 2.786335 -1.688628 -1.163409 1.457012 0.012867 -0.302119 1.532657 0.573572 1.631964 -0.744102 -0.276120 -1.003406 -0.531915 -0.103342 -0.800921 0.023110 -0.206603 1.493369 -0.294535 0.304399 3.561897 -0.569600 -1.315410 0.034594 0.259242 -0.317467 -1.162427 1.478741 -0.451483 0.878084 0.555992 1.941375 -0.489661 -0.300650 0.379415 -0.926527 -0.624842 -0.785640 0.210610 -0.709672 1.349204 -0.925290 -1.146985 -0.249614 -1.082062 -0.404749 1.054239 1.768216 0.412899 0.964308 0.204418 1.206306 2.288377 0.665761 -0.678349 -1.021205 0.970828 1.440892 -0.386960 0.164087 -1.010129 -0.736705 -0.314034 -0.581445 0.436474 1.589684 -1.605690 -0.234143 -0.464273 0.804081 0.638875 1.112214 -2.872740 0.772849 0.552307 0.454369 0.799174 1.466522 1.160663 1.902473 1.331010 -0.234756 -0.046489 0.229266 -1.024402 -0.128328 0.514806 1.505827 0.707889 1.356545 1.165412 1.070292 1.280122 0.741304 1.729512 1.572348 0.076088 2.589611 -0.290131 0.039710 -0.173993 0.119102 1.686457 2.501558 -0.062681 0.580370 0.639021 -0.013719 -1.406402 -1.722495 0.485245 -0.158877 0.510046 -0.330379 0.951640 0.403743 -1.299832 2.320292 0.009098 -2.646167 1.008646 0.622045 0.927230 2.010224 -0.139203 0.915921 0.193869 -0.485388 1.798738 1.610607 0.925609 -1.579598 0.489091 0.222600 0.819185 0.092699 0.919804 -0.718090 1.475265 0.355465 1.543218 0.479907 0.353426 -1.515734 0.203689 0.827744 -1.158783 0.274023 0.965276 1.203784 -0.751508 0.319885 -1.835170 -0.738499 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 2.080356 -3.651116 1.631131 -4.410222 -2.386954 2.674953 -1.404728 -4.967949 -1.067529 2.258217 1.535450 0.108105 0.748272 2.698137 0.953025 -2.722941 1.483612 -0.790549 1.029504 -0.806287 -1.114574 1.377101 -2.310096 -1.183335 -0.205625 -2.199039 1.081192 2.164573 -1.127319 0.639853 -1.442465 -3.347861 -3.011089 6.660338 4.058592 0.818314 -1.365417 9.080193 -0.401390 4.715365 -4.234532 -4.676393 4.316540 -1.689255 -0.809476 -0.200904 -1.634701 2.295382 0.119065 -2.097248 1.584822 -2.292932 3.162885 -1.233412 -1.478153 0.821855 -2.687645 -1.541255 2.323943 -3.644652 -3.859981 -2.544317 0.851674 2.446023 -6.600024 -3.056493 3.659855 1.877925 -0.187904 -0.667887 -3.061656 -6.163292 3.889921 3.632602 -1.374275 -0.750677 0.797982 -3.974255 3.142667 4.379114 -7.052381 -2.544507 -2.717691 -7.113288 4.797544 -0.830239 6.863654 -8.617041 5.808030 -10.180979 1.318766 -2.707813 3.797154 6.020673 -3.942566 2.453368 3.866117 9.808025 0.787165 -3.327542 4.434823 1.978493 -2.253778 2.927003 6.847640 1.608893 -1.849951 -2.977857 -3.171227 -3.377313 2.071891 -5.198750 -6.615686 3.356707 -2.685423 -1.140659 -3.753417 2.911222 -2.530493 5.838695 -7.431492 -0.336312 1.112676 -1.759620 2.404313 2.414466 -1.648200 1.358722 -1.245533 4.321718 -3.778921 1.713488 -1.790548 4.616836 -2.039267 3.327191 -4.442389 2.054198 4.311115 -5.195644 -6.557296 -5.256041 -3.049360 3.854193 -2.185284 9.339128 9.178958 -5.294386 -4.371651 4.885914 -0.851966 -1.049623 4.685315 1.903153 4.575347 -2.372825 -1.168388 -3.749760 -1.503603 -0.052465 -0.911760 0.020801 -0.633430 5.493113 -1.997642 2.086590 11.129007 -1.430409 -3.970653 -1.103949 1.183102 -2.013633 -4.100089 5.155897 -3.428468 3.232464 1.383187 6.667539 -1.672166 -0.647953 1.144405 -4.555411 -2.130321 -3.877785 0.524557 -2.399728 4.345389 -2.966802 -4.041204 -1.425629 -2.898787 -1.416878 3.739021 3.919383 1.241021 2.848379 0.613155 5.258828 7.136599 1.685621 -2.574586 -3.021306 3.283006 4.899519 -1.178047 0.543510 -3.452795 -2.109568 -1.445948 -1.662031 1.421708 5.390797 -6.007377 -0.707676 -1.056114 3.110136 1.497436 3.426270 -11.819445 2.834908 1.913602 1.457589 2.995017 4.992451 3.546289 6.125281 3.721481 -0.629092 -0.350406 0.668433 -4.531344 -0.613009 1.778361 4.524029 2.425517 5.112493 4.048575 3.882224 4.219484 3.204205 5.077703 5.063737 -0.285237 8.107766 -0.201974 -0.425441 -0.067913 0.719498 5.229663 7.762916 0.418922 1.662800 2.593484 -0.305811 -4.899597 -5.738412 1.823364 -0.878845 2.512425 -1.246477 3.393186 0.986638 -4.042383 7.838835 -0.167548 -9.174399 3.219152 2.220351 3.614073 6.721309 -0.530452 3.331312 0.763648 -1.726020 6.583575 5.215885 2.588828 -5.142055 2.645324 0.980797 2.810746 1.099670 3.012285 -2.984686 4.620924 0.373652 5.222842 1.893327 2.798678 -4.586691 1.264324 2.651570 -3.783633 1.025212 2.693718 3.913922 -2.064999 1.133329 -6.768788 -2.025068 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 2.023238 -1.979104 0.202676 -0.976594 -1.239882 0.572560 0.549478 -3.854437 -1.084973 2.243399 0.776380 -1.381328 -0.152714 1.293028 1.007592 -0.795431 1.583025 1.309383 0.529556 -1.306163 -0.791410 0.484121 -1.003403 -1.366147 -0.473045 -0.793938 0.589709 1.199591 -0.935745 1.500725 -0.795336 -2.195779 0.375982 4.172564 2.569057 0.956601 -2.735349 4.732853 -0.579802 4.215055 -4.476402 -2.388045 3.219742 -1.124021 0.866544 -2.393306 -1.384545 2.124830 1.503566 -2.859086 -0.675480 -0.998578 1.575996 -1.492636 -1.593702 1.928237 -0.521669 -0.549704 1.553177 -4.079040 -2.779409 -1.192917 -0.094845 2.118310 -5.334791 -2.740820 1.179163 0.869304 -0.041560 1.386894 -3.415824 -4.489974 1.157178 1.393505 -2.209309 -1.164786 -0.738322 -1.308970 1.692958 3.491432 -3.117065 -1.835431 -1.161176 -1.098672 0.663706 0.747168 4.564909 -6.023206 1.852319 -6.721073 1.804207 -2.334111 3.216662 3.069207 -2.100685 1.603391 1.489785 4.300967 1.404571 -1.043177 2.128924 1.673389 -0.204708 0.328464 4.635837 1.830106 -0.192828 -2.959557 -0.915638 -1.680201 2.326088 -1.857053 -3.520938 1.936174 -2.979220 -0.102653 -2.339254 2.112272 -0.515334 3.484142 -4.920584 -1.085552 2.076548 -1.222191 2.873805 1.817382 -1.632632 1.634234 -1.632040 2.165749 -0.477120 1.202315 -0.886172 3.091097 -2.330123 -1.147867 -2.934468 1.306705 2.932195 -3.931887 -4.323667 -4.315548 -1.484615 2.816978 -2.107962 2.806276 5.271451 -3.194035 -1.731266 2.049705 -0.273518 -1.740222 2.225870 0.857078 5.488615 -3.166983 1.220925 -0.787278 0.065822 0.965382 3.061851 -1.153804 -2.772465 2.648167 -1.368232 -2.976937 5.738259 -1.128574 -1.921318 -0.009717 -0.235259 1.357229 -1.336116 2.960922 -4.167223 1.919087 -2.472826 2.885470 -1.400093 -0.350282 1.132605 -2.963420 -2.149659 -0.448568 1.325608 -1.252323 4.280525 -2.983944 -2.326917 -0.057812 -3.550819 -0.098722 3.482599 0.405941 -0.674821 1.394918 0.104924 3.643503 2.871733 0.677696 -1.172443 -1.917080 2.109549 3.124698 0.738944 -1.101984 -2.592321 -2.693724 -1.271128 -3.449987 0.966826 3.301762 -2.728412 -0.150770 -0.010181 0.274646 0.604017 1.184240 -3.541229 2.218943 1.191631 1.274402 0.592774 4.569692 1.480755 3.262667 1.909596 -1.267308 -0.146632 -1.455677 -3.905516 2.085546 1.130896 0.906090 1.352254 1.583391 1.818722 1.585780 3.339727 -0.930470 3.614645 3.569902 0.652914 4.171070 -1.643421 1.128667 0.955569 -1.209750 3.437825 5.314818 1.267078 -1.275348 1.226151 -2.195148 -4.172758 -1.724018 -0.521019 0.282936 -0.928596 0.814183 2.137731 0.267667 -2.819363 5.689755 0.042832 -6.174413 2.536088 1.288793 1.199688 5.143991 -1.324838 2.857997 1.057673 1.307083 2.301765 2.974502 2.347733 -3.524679 -1.318753 -0.150094 0.868641 3.434878 0.273034 -4.536166 1.991057 1.749671 4.826998 0.168594 1.314171 -3.617192 2.175005 1.182818 -1.377564 0.683101 0.634501 3.023421 -0.844482 -0.572728 -4.875039 0.607748 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.573474 -10.753702 5.378449 -15.617563 -9.940471 8.469891 -6.353579 -14.541226 -3.147301 6.399434 6.005037 -0.430236 2.467342 12.008212 1.694299 -9.643848 3.177211 -2.238954 3.435113 -1.224756 -2.538495 5.949014 -7.187500 -3.103050 -0.372064 -7.044908 2.085457 6.774845 -1.405792 1.765101 -4.790752 -10.055901 -10.283727 20.123425 11.947188 1.782683 -2.471265 29.509475 -3.596148 15.590984 -12.598563 -15.105094 13.459801 -4.678781 -2.847538 -1.049216 -7.719993 6.490073 -2.001179 -4.984122 6.876969 -6.865007 10.041359 -2.866853 -2.424203 1.389025 -10.432304 -3.073186 7.544609 -9.779482 -9.539042 -7.745941 1.076583 7.124886 -19.001406 -8.597165 10.320448 7.070670 -0.224714 -4.508412 -7.494470 -18.175641 15.177276 11.272637 -4.000025 -1.223026 4.177203 -14.048240 10.646058 9.457725 -23.621463 -6.894400 -8.299887 -22.130031 16.401307 -2.321418 21.523428 -26.602742 18.121912 -31.682916 4.693439 -8.553060 10.180414 20.041647 -13.512611 7.191191 13.272291 29.902321 4.783228 -8.032228 14.533059 7.017593 -7.242579 10.503718 19.811528 6.158357 -6.683529 -8.363367 -10.934600 -11.694787 5.006758 -16.281177 -22.793920 10.407206 -5.793167 -2.910293 -11.262419 7.756355 -7.501671 18.405148 -21.873539 -0.076416 2.889333 -5.223127 5.835180 7.902814 -4.499205 3.416291 -4.388452 14.142044 -13.797416 5.934741 -4.918659 14.313828 -7.293073 9.195833 -14.625494 7.003008 11.807052 -15.717498 -19.518579 -16.771802 -8.485929 11.660117 -6.258058 29.089280 29.599951 -17.213770 -14.822926 17.113604 -0.879604 -2.839334 15.399403 5.833571 13.222077 -5.216432 -6.025152 -13.000696 -7.080077 -1.586903 -3.367038 2.077156 -0.932093 16.930537 -5.748162 4.148272 34.613409 -4.268559 -13.538460 -6.298976 4.960278 -9.221961 -12.673320 16.891513 -9.912250 10.005466 4.914888 22.083973 -4.625544 -3.375400 3.741628 -14.813667 -5.929237 -13.678444 1.049354 -5.600263 11.930967 -9.204199 -12.271427 -5.001314 -7.746808 -6.382213 9.905824 10.943649 4.712497 10.021118 2.569736 16.159258 23.534982 6.051431 -7.399803 -9.710402 10.169790 14.466748 -5.733329 -1.665646 -9.310418 -5.876462 -3.677474 -3.384804 3.720544 16.019216 -18.587060 -2.931413 -4.411967 8.615347 5.916455 11.233215 -36.131591 8.396599 4.933705 6.355777 10.209692 13.894671 12.210143 20.350884 12.480372 0.796334 -1.274364 3.268875 -10.838448 -2.234817 6.589436 12.609768 8.011304 18.872630 13.389205 12.735107 13.227067 12.536225 14.710406 15.579417 -1.973004 26.409571 1.113649 -2.879682 -1.213672 4.132976 16.662848 25.353143 0.309355 6.573998 8.228677 -0.114188 -13.426272 -17.860063 7.619726 -3.402157 7.115980 -2.777160 10.634228 3.910401 -12.039768 22.861670 -0.985659 -27.810334 10.318414 6.747261 12.590803 18.907632 -0.269123 8.774570 2.299214 -7.725713 22.025385 17.210442 7.892452 -15.918197 7.463632 3.340984 9.264137 4.823464 12.097696 -8.587522 15.054281 2.001464 14.859677 5.067709 9.400558 -14.070600 0.651232 8.650617 -11.766036 2.070555 7.373722 9.959764 -7.220764 4.817948 -18.364666 -9.856393 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.188196 -0.029943 0.196066 -0.739970 -0.817435 0.075024 -0.075220 -0.370090 -0.170065 -0.001233 0.290776 -0.266092 -0.315016 0.885884 -0.142201 -0.640919 -0.128783 -0.465822 -0.101317 0.119076 -0.133547 0.520558 -0.231354 0.035883 0.195386 -0.008550 -0.293180 0.252739 0.394939 -0.540881 -0.302734 -0.315425 -0.133741 0.809035 0.182771 -0.046336 0.061969 1.438421 -0.082767 0.532241 -0.772545 -0.598460 0.614604 -0.230495 -0.118846 -0.806269 -0.532901 0.504953 -0.356195 -0.072939 0.458934 0.033890 -0.086548 -0.196662 0.232378 0.356202 -1.093480 0.752309 0.465423 -0.055830 -0.050543 -0.249968 -0.256987 -0.098155 -0.164544 -0.479233 0.095285 0.227460 -0.331814 -0.132248 -0.135444 -0.584096 1.207320 0.347900 -0.304605 0.258138 0.198787 -0.541282 0.577720 -0.719798 -0.946351 -0.157907 0.059958 -0.093676 0.798239 0.007844 0.336839 -1.185486 0.322480 -1.270057 0.254306 -0.734107 0.329655 0.953939 -0.678991 0.384231 0.425689 0.138131 0.656157 0.222047 0.784892 0.244463 0.109191 0.457152 0.364691 0.281030 -0.198256 -0.202803 -0.441206 -0.765947 -0.021100 -0.080883 -1.260696 0.415347 0.008824 0.268545 -0.133952 0.231550 0.040671 0.382507 -0.766761 -0.162118 0.281524 -0.197986 0.294148 0.764529 -0.250002 -0.023091 -0.592360 0.682557 -0.423567 0.586966 -0.144038 0.528971 -0.093504 -0.804049 -0.929301 0.046833 0.230714 -0.577371 -0.738103 -0.782399 -0.022967 0.031530 -0.490291 0.749146 1.463782 -0.776558 -0.732939 1.074932 0.458802 0.266184 0.655884 0.111418 0.861789 -0.121729 -0.369620 -0.226818 -0.485631 -0.128746 -0.376100 0.257261 -0.297542 0.338890 -0.011109 -0.776705 0.937024 -0.032781 -0.591170 0.036847 0.097926 -0.511488 -0.668297 0.813471 0.307544 0.707216 0.203547 1.054563 -0.185353 -0.527804 0.353866 -0.208752 0.040604 -0.493004 -0.190603 0.134827 0.279909 -0.592847 -0.373868 -0.096745 -0.270081 -0.617740 0.277543 0.360988 0.182363 0.344943 0.330150 0.380995 1.063477 0.041902 0.171709 -0.802050 0.454940 0.343168 -0.187384 -0.847292 -0.034478 -0.211241 -0.142049 0.426180 -0.057650 0.335329 -0.224804 -0.276142 0.029536 -0.053929 0.406533 0.332625 -0.480924 0.081369 -0.160900 0.425670 0.352133 0.580969 0.779729 0.839625 0.555163 0.298299 -0.042403 0.149811 0.168136 -0.141223 0.067027 0.362527 0.510593 0.605905 0.725797 0.324752 0.693814 0.528911 0.062265 0.829280 0.139839 1.388544 -0.218573 -0.334452 -0.078911 0.113101 0.796776 1.239063 -0.449876 0.180705 0.448282 0.236879 -0.214333 -0.657028 0.221170 -0.206355 -0.269812 0.404008 0.190492 0.013154 -0.171472 0.923405 -0.290583 -1.074144 0.601464 0.203990 0.569530 0.156724 0.278459 0.060185 0.393158 -0.711198 0.521092 0.712839 0.584262 -0.620236 -0.322758 0.077120 0.501342 0.065667 0.748660 -0.621415 0.284289 0.491960 0.647816 0.091735 0.147534 -0.466689 -0.614546 0.426130 -0.159219 -0.128288 0.192271 0.239228 -0.432567 0.049316 -0.310209 -0.629104 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 1.188973 -3.122764 1.553332 -3.439661 -2.773958 2.257994 -2.625481 -2.476957 -0.457709 0.680813 0.823933 0.566119 0.389770 2.532872 0.301331 -3.005925 0.191429 -0.835040 1.253320 -0.110414 -0.537595 1.569385 -1.346239 0.192423 -0.003462 -1.864768 -0.169360 1.423250 0.775952 -0.078356 -0.799249 -2.242192 -3.147138 3.963883 2.338423 0.227300 0.345595 7.145499 0.753550 2.746339 -1.738739 -3.473545 2.314572 -1.164205 -0.795008 1.391930 -1.398620 1.447103 -1.654499 -0.386573 2.439988 -1.069745 2.159492 0.059721 -0.222956 -0.672902 -2.919674 -0.162112 1.049604 -1.314999 -1.290264 -1.612838 -0.589102 1.448930 -3.246293 -1.631862 2.367493 2.164533 -0.563700 -1.696774 -0.541183 -2.862873 4.362917 2.677021 -0.793612 -0.036468 2.317668 -2.248599 2.422482 1.328901 -6.075860 -1.374555 -2.582179 -5.743863 4.724575 -0.895874 4.468679 -5.576662 5.235494 -6.917595 1.053283 -1.936397 1.855492 4.708055 -3.532216 1.716224 3.610990 7.003668 1.394292 -2.077482 3.704211 1.399510 -2.443591 3.495039 3.675375 0.426655 -1.316604 -0.710969 -2.746343 -2.698177 0.513160 -3.962103 -5.211617 2.197902 0.059435 0.572073 -2.110594 2.134742 -1.882104 3.236785 -5.092228 0.449778 0.192568 -1.051086 0.838535 1.221679 -1.451716 0.458900 -0.890026 3.773809 -4.128953 1.210774 -0.669590 2.942206 -0.659647 3.235473 -3.672610 1.653850 2.527866 -2.942101 -4.088168 -2.894768 -1.708460 2.360543 -1.393696 7.707977 6.753489 -3.759201 -2.768145 4.217755 -1.079452 0.199457 3.644111 1.335682 1.518946 0.125413 -2.968314 -3.360228 -2.407067 -0.739043 -2.814832 1.573017 0.864342 3.944156 -0.608430 3.239467 7.328544 -1.244961 -3.783667 -2.352048 1.085678 -2.595867 -2.745519 3.471484 -1.354291 1.583569 2.716724 5.261309 0.109104 -0.949692 0.864474 -3.020424 -0.809740 -3.023942 0.111600 -1.418172 1.412314 -2.212341 -2.643563 -1.249595 -1.390272 -1.841812 1.182619 4.502343 1.831388 2.987824 1.331743 4.069313 5.911401 2.171543 -1.916190 -2.538980 2.131493 2.600718 -2.199235 0.764128 -1.669728 -0.411770 -0.336877 0.654157 0.817700 3.071914 -4.273439 -0.882042 -1.986097 2.514651 1.805704 3.435541 -8.389475 1.188508 2.012088 1.587233 2.930756 2.170731 3.131178 4.447739 3.467664 1.116034 -0.410414 2.100549 -0.928635 -1.212831 1.600976 3.536100 1.684998 4.259775 3.405300 2.769952 2.793037 4.006854 2.961742 3.069058 -0.752051 6.404190 0.080346 -1.207162 -1.058589 1.865848 3.711598 5.481250 -1.003210 3.040846 2.077990 0.934131 -1.905399 -4.316604 2.474553 -1.068111 2.979315 -1.544122 1.901260 1.313475 -2.267700 3.913919 -0.332718 -5.755492 2.361362 1.551236 3.056532 3.782233 0.921327 1.407104 -0.199948 -3.274916 5.053078 4.164755 1.258826 -3.197879 2.733862 0.882620 2.087345 -0.368183 3.847422 -0.027229 3.090709 0.347323 2.337532 1.316799 1.006397 -2.783020 -1.777374 2.488996 -3.489262 0.197637 2.411550 1.346249 -1.674833 1.802861 -2.668522 -3.573711 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 1.144167 -2.992278 1.571460 -3.708695 -3.058939 2.753090 -3.142026 -3.172579 -0.393025 -0.141355 1.319774 0.848709 1.166294 2.734483 0.081317 -2.842015 0.017580 -0.785835 1.207750 -0.153753 -0.556577 1.583731 -1.848647 0.319579 -0.191254 -2.079077 -0.059313 1.366339 0.229117 -0.135745 -1.291540 -2.399389 -3.519312 4.459589 2.805993 0.363649 0.715500 7.620605 0.696120 2.341606 -1.815793 -3.544340 2.150457 -1.222702 -1.153414 1.408382 -2.064221 1.049043 -1.390850 0.136588 2.741265 -1.660725 2.168054 0.546921 0.208612 -0.808573 -2.976978 -0.421785 1.305159 -1.465397 -1.473820 -1.956700 -0.412507 1.149107 -3.457232 -1.571466 2.968097 2.953432 0.119499 -1.678279 -0.490487 -3.942377 4.997776 2.844381 -0.758209 -0.146767 2.386057 -3.163640 2.536909 2.081424 -6.539277 -1.308971 -2.324857 -6.053735 5.058641 -1.104728 4.795335 -5.856500 5.270543 -7.506931 0.722795 -1.993044 2.087302 4.759114 -4.182055 1.359945 4.108195 7.869792 1.420865 -1.906693 3.967898 1.380068 -3.022510 3.437343 4.180672 0.364643 -0.993529 -0.525975 -2.881561 -3.159003 0.564628 -4.090801 -6.084922 2.221123 -0.268591 0.053919 -3.109141 2.374684 -1.589906 4.047282 -4.932213 0.479849 0.263091 -1.108974 0.797137 1.502787 -1.452926 0.619097 -1.147448 3.757354 -4.599178 1.079344 -1.378038 2.905969 -0.830982 2.964971 -4.647817 1.551174 2.778174 -3.504893 -4.431838 -2.711134 -1.903260 2.735262 -1.296541 8.047715 7.334764 -4.477196 -3.369631 4.639327 -0.051119 -0.105332 4.358603 1.613741 1.903556 -0.007589 -2.690418 -3.891705 -2.596560 -1.268674 -4.381298 1.506781 1.213816 3.951915 -0.353765 2.749576 9.503465 -1.528439 -4.142219 -1.522806 1.319578 -2.580005 -3.147612 3.939364 -0.222311 1.925293 3.112834 5.546389 -0.438815 -1.144941 0.640312 -2.638274 -0.813470 -3.051875 0.152068 -1.663067 2.022086 -1.854809 -2.819017 -0.929229 -1.700493 -1.877451 1.170576 5.799288 2.049479 3.055957 1.142688 3.159949 6.965749 2.448296 -1.827324 -2.519802 2.349168 3.217000 -2.386480 0.729136 -1.746158 -0.734981 -0.336767 -0.066297 0.945437 3.475481 -4.592530 -0.847452 -2.343595 2.671521 2.241390 3.719716 -8.958211 1.572743 1.262219 1.463156 2.907091 2.019345 3.695530 5.156189 4.017477 0.605071 -0.163720 1.884813 -0.704490 -1.338516 1.898400 4.230611 1.750431 4.956953 3.631230 3.076375 2.568759 4.112679 4.133186 3.477666 -0.509892 7.378502 0.216884 -0.926292 -1.485394 1.869258 4.113299 6.320957 -0.799724 3.560575 1.789443 1.377521 -2.286019 -5.350030 2.668813 -0.896017 2.679328 -1.818712 2.018302 1.341802 -2.760536 4.592246 -0.148266 -5.880080 2.222581 1.545279 2.959149 3.824914 0.878070 1.286770 0.019184 -3.257226 5.807920 4.374557 1.687782 -3.551939 2.487002 0.918688 2.374409 -0.798086 4.060545 0.283791 4.371153 0.362106 2.493231 1.390317 0.845457 -3.105986 -1.478375 2.637804 -3.723814 0.113599 3.053016 1.936074 -2.146315 2.012467 -3.154359 -4.202404 +PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = 6.000771 1.006950 2.266072 -2.761722 -0.378531 -1.471445 9.562497 -6.615358 -5.033080 13.914243 1.730062 -5.515749 -2.198067 3.195111 -0.060130 -0.913491 3.692812 3.148875 -2.561607 -2.292040 -5.278390 0.169564 -2.076474 -8.384679 3.021798 -1.262598 3.933312 6.565311 -6.160544 5.526771 0.875399 -3.555365 4.272551 11.627091 3.955864 -2.434725 -6.002108 12.152346 -13.429280 11.321416 -7.560795 -8.036715 15.870556 -1.396416 2.548254 -6.823983 -2.593113 7.428923 4.596897 -10.090950 -3.991998 -1.574520 4.020351 -10.343403 -6.344411 10.658383 -6.301003 -1.692640 6.133833 -10.672126 -13.356253 -1.812085 3.612698 3.062168 -12.474809 -8.678795 -0.266081 -2.263715 0.541176 2.580054 -12.481470 -9.855355 3.286410 1.158128 -1.398598 0.829107 -6.248529 -3.629446 3.870596 5.777949 -5.299559 -5.966649 0.670254 -4.019148 0.988706 4.921761 10.813391 -14.863823 2.772899 -14.780940 4.833729 -7.153243 7.712733 10.102898 0.672597 9.249940 0.813786 6.159244 -2.536797 0.108222 5.070953 2.468629 4.464943 0.212691 7.359106 9.797179 -8.674582 -13.740249 -6.951604 -2.277410 5.612731 -1.193585 -7.099990 5.742055 -9.476468 -0.850964 -0.534062 0.052873 -2.781690 12.169137 -11.667471 2.915593 5.232144 -3.146646 6.953331 6.149904 1.004060 1.886154 -1.913495 3.393337 2.716182 2.952964 -0.267321 9.104579 -7.017202 -5.062761 0.321313 3.128073 5.317428 -8.320238 -9.707265 -13.582134 -3.205730 8.540844 -6.292393 4.440895 15.144697 -5.278977 -4.913617 3.435289 -0.911258 -0.922967 2.909954 3.541103 16.691994 -10.662311 3.864160 1.488333 2.507309 7.377431 15.281951 -5.903154 -10.287597 9.260986 -3.638131 -3.661657 14.052286 -0.153223 0.746278 4.784106 1.886632 1.972673 -4.622084 10.530659 -10.933023 8.647344 -7.043442 12.617497 -5.481868 -0.056969 2.285757 -7.912547 -4.813589 -9.436906 2.889356 -2.283834 9.296315 -5.649713 -7.009146 -2.068204 -4.611371 0.264490 13.768114 -8.301138 -2.395675 -0.844602 -5.138791 7.394069 0.891406 -4.782908 -2.653757 -7.667658 3.043647 3.841786 0.748179 -11.962042 -6.341744 -3.297676 -4.173325 -4.042433 1.506470 8.029242 -7.103151 1.116217 7.660437 -0.687191 -4.125760 -2.922322 -6.609320 5.046616 1.362443 2.986814 1.876779 15.098907 6.853868 7.971486 -1.569007 1.942066 -1.907000 -4.514212 -14.783928 6.162729 -0.394207 4.470794 5.134138 4.279295 1.594917 4.957934 5.187128 -5.114827 3.947420 8.730196 2.736934 8.973111 -5.027334 -1.515265 6.312930 -2.419864 7.794904 5.929619 1.651576 -11.542497 3.600253 -7.885057 -10.617920 0.478764 -1.433188 0.430670 -3.777379 6.786775 9.938243 -1.177479 -4.392009 16.818208 -1.791238 -20.141389 6.676308 4.180959 5.735932 11.868324 -4.474882 10.728735 6.003756 10.368937 2.952852 6.438480 6.863254 -11.653230 2.439086 1.435550 4.439033 8.380374 -3.071334 -26.386101 -0.005698 1.928233 10.960088 -1.747812 13.010746 -7.303714 9.167243 0.494977 1.032566 3.724890 -2.609953 7.616627 -1.418629 0.960387 -15.823190 7.780485 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/shortest-common-supersequence.cpp__main = 1.558185 -0.070665 0.503449 -1.519016 -0.977045 0.604778 0.184626 -2.333554 -1.248651 2.274061 0.854640 -1.723192 -0.591932 1.450271 -0.280395 -1.610179 0.721921 0.598376 -0.240907 -0.956636 -1.323002 0.053155 -0.864687 -2.089519 0.347487 -0.719052 0.821362 1.236609 0.150708 0.958688 -0.765527 -1.090369 0.622859 4.014393 1.863876 -0.614704 -0.874548 4.592136 -0.939000 2.553274 -2.518321 -2.632293 3.995907 -0.386226 0.027765 -1.243276 -0.834164 2.012883 -0.961711 -1.174837 -0.248837 -1.085837 0.950756 -2.133659 -1.655582 2.669835 -2.774006 1.406792 1.549074 -1.992484 -2.882140 -1.170220 0.959331 0.929855 -2.109148 -2.056888 0.535922 0.754928 -0.729073 0.269492 -3.272944 -3.124804 2.752121 1.140341 -0.938380 -0.076538 -1.336178 -1.032159 1.039815 0.730420 -2.803838 -1.468027 0.299365 -0.978042 1.681182 1.336428 2.950722 -5.062815 1.132106 -5.544863 1.463512 -2.060759 2.733871 3.467082 -1.718238 1.959285 0.834727 1.613832 0.101443 0.025573 2.286223 0.160010 0.075064 0.322289 2.241377 2.218300 -1.411009 -2.651733 -1.017373 -1.414710 0.513852 -0.207924 -3.256276 1.661912 -3.222420 0.877906 -0.948831 0.898825 -1.279236 1.823159 -3.491985 -1.567188 0.552631 -1.028192 3.266552 1.939171 -0.100238 1.399126 -0.687433 2.026876 0.069245 0.301491 -0.862399 2.563126 -0.944190 -2.007923 -2.761954 1.294014 2.442596 -2.682612 -3.841916 -3.657638 -1.362200 1.474943 -1.713740 3.094544 5.122724 -1.885064 -2.012496 2.278886 -0.866635 0.853107 3.242724 0.948662 4.908236 -2.927430 1.126069 0.278135 0.280964 0.846576 0.975176 -1.546841 -1.998306 2.440478 -0.641855 0.961648 3.090540 -0.187430 -0.926211 -0.074512 0.223739 -0.275579 -2.247959 3.365523 -1.688729 2.129895 -0.490106 4.617823 -2.050708 -1.600142 1.176177 -1.917742 -1.330985 -1.511945 0.504647 -1.051278 2.922066 -2.409089 -2.463981 0.179195 -0.613501 -0.652475 3.179111 1.420400 -0.414061 0.553570 -0.859825 2.494787 1.993955 -0.901595 -0.427380 -2.618645 0.720753 2.306373 -0.214833 -2.650955 -1.444341 -1.336833 -1.010755 -0.019348 0.423868 2.195924 -2.350836 -0.412985 1.035171 0.227852 1.144970 0.397770 -2.678915 1.916824 0.148686 0.149610 1.120985 4.255053 2.181275 2.872463 0.604936 0.157690 -0.114152 -0.919204 -1.792624 0.522047 0.702027 2.173573 1.629410 1.611473 1.103610 1.585987 1.822206 -0.236246 0.714941 2.725480 0.641437 3.971545 -1.580757 0.085287 0.710196 -1.009077 2.976486 3.984427 -1.064387 -2.256989 1.378494 -1.393972 -1.777104 -2.418334 -0.130347 -0.244399 -0.771127 1.071709 2.324164 0.150824 -1.867957 5.213644 -0.359082 -5.637517 3.058370 1.373256 1.534612 2.960705 -1.301913 1.628924 1.696840 0.512030 1.455934 2.641241 2.402168 -3.115238 1.063869 0.028677 2.104302 0.746076 -0.002799 -4.289187 0.966688 1.550253 3.269195 1.215318 2.166497 -2.261385 0.578151 0.279071 -0.632050 0.628260 -0.189249 2.383322 -0.681695 0.533134 -2.911766 0.132951 +PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 0.922604 0.279846 1.215092 -0.777009 -0.078686 -0.735514 3.165638 -0.752948 -0.839872 2.785301 0.016946 -1.066723 -1.614665 0.869084 -0.007068 -0.403731 0.510772 -0.972091 -0.756776 -0.381569 -1.020084 0.471805 -0.310308 -1.537089 1.284967 -0.032941 0.784548 2.351316 -0.963508 0.545137 0.731071 -0.785055 0.981339 2.552273 0.340581 -0.168699 -0.995277 3.099362 -3.598041 2.799130 -2.072277 -2.332996 4.238893 -0.450477 -0.083161 -2.524518 -0.104078 2.019255 -0.687124 -2.028330 -0.445302 0.378469 0.557440 -2.608517 -1.095483 2.734502 -3.013702 0.349994 1.174128 -1.962765 -2.911585 -0.495090 0.214304 0.228261 -2.015454 -1.855921 -0.280886 -1.770795 -0.776653 0.743578 -2.034153 -1.117399 0.996991 0.115973 -0.078338 0.810974 -0.885453 -0.492908 1.228762 -0.041642 -0.829572 -1.528911 0.211997 -1.038005 0.836376 0.897487 1.139878 -3.276421 -0.257971 -2.683796 1.233756 -2.110727 1.262888 2.175763 -0.077019 2.959509 -0.118746 0.228269 -0.739715 -0.643375 1.163546 0.610909 2.209438 0.670516 1.515116 2.158508 -2.384420 -3.224515 -2.399282 -0.622285 1.127979 -0.633444 -1.937143 0.953831 -1.511405 -0.302452 0.840661 -0.483053 -0.849117 2.348206 -2.972115 1.877059 1.142985 -0.557340 1.071257 1.529756 0.133213 -0.157129 -0.180201 1.131378 0.484426 1.422606 0.118334 1.981215 -0.709968 -1.524726 0.447977 0.160499 0.626426 -1.231023 -1.973548 -3.542953 -0.550706 1.203211 -1.312234 0.665393 3.430018 -0.575513 -1.641854 1.202443 -0.070313 0.762601 0.068903 0.734538 2.888543 -1.669760 0.011578 0.080352 0.196762 1.919949 4.285150 -0.762380 -2.302751 2.064905 -0.602944 -1.148444 1.813868 0.145010 0.264458 0.663841 0.176296 -0.667358 -1.528237 2.627138 -1.613745 2.422949 -1.771682 2.803606 -1.045415 -0.489448 0.517268 -2.630314 -0.519642 -2.926083 -0.316315 -0.106007 1.074626 -1.815287 -1.499961 -1.517973 -0.276811 -0.280027 2.821562 -3.366007 -0.421900 -0.512353 -0.378239 1.607697 -0.007032 -1.519343 -0.307070 -2.197576 0.588192 0.661175 0.837095 -3.451861 -0.778831 -0.141889 -1.112253 0.628221 0.195677 1.320263 -1.055082 0.284601 2.241341 -0.362807 -1.506008 -0.710024 -2.625147 0.544353 0.603402 0.568198 0.939216 3.137368 2.088125 0.972809 -0.633845 1.438057 -0.508936 -0.716472 -3.232708 0.835226 -0.372900 0.714446 1.205187 1.094582 0.954660 0.678400 1.271743 0.198677 -0.695929 2.023545 1.154216 1.916677 -1.037374 -0.975798 1.584010 0.150765 1.460119 0.684810 0.566225 -2.258586 1.408778 -0.970823 -1.605128 0.023773 -0.544162 -0.483642 -0.189591 2.588333 1.486512 -0.978670 0.041525 3.719589 -0.777836 -4.381641 1.273250 0.998129 1.495954 1.209184 -0.602997 1.608074 1.896121 0.920629 0.637479 0.813635 1.303722 -2.449520 0.554076 0.383659 1.064762 2.210541 -0.187689 -6.606343 -1.347243 -0.133964 2.515163 -0.112296 3.545857 -1.110192 1.039960 -0.009486 0.163852 0.615986 -0.360420 1.423218 -0.071417 0.264267 -3.808127 1.372103 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.455486 0.309742 2.368479 -3.984443 -2.314207 -1.074935 4.054576 -4.085959 -2.895698 9.643846 1.366353 -4.504454 -4.597035 4.992698 -0.591645 -3.068164 1.609586 -1.546300 -0.795439 -1.976588 -1.989605 1.422416 -1.124101 -4.453019 1.386352 0.036403 1.631056 4.119660 0.287962 1.990164 -0.440270 -2.529204 2.683207 7.790024 2.143882 -2.049005 -4.465338 9.877992 -7.279887 7.624536 -9.193732 -8.142051 12.492814 -1.273860 -0.121965 -9.875772 -1.605863 5.812807 -1.382232 -5.324350 -1.627938 -0.093759 1.878917 -6.716443 -4.359521 6.633378 -8.371358 3.654252 4.361286 -5.865328 -8.203180 -1.392747 3.244578 2.754865 -6.350889 -4.640595 0.005154 -3.574435 -2.630165 1.358309 -7.234631 -5.719106 4.338922 1.797346 -2.098100 1.139161 -2.753869 -3.216768 3.894315 -0.726496 -4.476109 -3.442042 -0.142895 -2.699744 2.776725 2.766028 5.386112 -11.739381 1.415631 -11.793678 3.323231 -6.251282 3.959972 7.181206 -2.391078 6.072514 0.587126 1.943369 1.615972 -1.552358 4.088174 4.026701 4.953812 1.173947 5.925905 7.856265 -5.157779 -9.197708 -4.340498 -3.309177 1.764283 -2.270587 -9.403217 3.633835 -6.001859 -1.242067 0.772952 -0.669848 -2.516169 7.265262 -9.386490 -0.364264 2.286652 -1.737203 4.359143 6.073478 -0.120488 1.039489 -1.290818 4.322544 0.988025 3.248965 1.428048 5.808974 -4.366240 -6.251941 -2.632763 2.137400 2.789837 -4.913584 -6.586922 -11.908543 -2.215077 2.553701 -3.296831 3.790608 11.060321 -2.288674 -6.648025 4.583577 -0.944897 0.083505 4.508545 1.404116 12.992838 -5.825728 0.574406 0.323565 0.086106 3.393677 11.191951 -2.471122 -5.411337 5.298513 -3.820746 -4.779624 4.570158 0.395338 -0.570008 0.946360 0.389155 -2.460040 -5.751266 6.983975 -7.229247 7.183706 -4.992810 9.359797 -3.122088 -2.558545 2.823461 -9.055627 -2.750130 -5.100031 -0.269992 -0.734922 6.215839 -5.654388 -4.227591 -3.225248 -2.095986 -1.595837 10.333569 -8.231793 -0.689695 0.788337 -1.054485 6.749273 2.308804 -3.935778 -0.319046 -6.043907 2.075656 5.708394 1.737466 -10.271618 -3.126922 -3.216189 -2.406998 0.452137 0.043587 5.035325 -3.701935 -0.997454 5.259308 -0.755749 -0.843799 -1.263068 -7.665654 2.865032 0.089148 3.441814 2.266688 11.945898 4.035440 4.986515 -0.426128 2.557254 -0.983446 -3.061224 -7.975111 1.341957 0.526960 0.906246 3.576453 4.038726 2.612566 3.373486 4.877841 -0.076063 -2.280229 6.520020 1.667994 6.638530 -4.137611 -2.035285 3.077114 -0.961223 5.510845 7.711962 1.104499 -6.404258 3.674324 -4.271308 -5.918769 -3.201863 -1.311612 -0.837517 -1.309839 5.579708 7.045835 -0.832498 -1.512167 12.117685 -0.900832 -15.417932 6.104992 2.691307 3.967256 7.425956 -2.623750 4.300216 4.759907 3.659130 2.342555 4.468037 4.558263 -8.472596 1.189252 0.962475 4.744605 5.897116 0.150729 -18.012522 0.427412 2.362807 8.788809 0.848581 10.280019 -4.930933 3.102863 1.371355 0.574405 1.098237 -1.938121 5.245237 -1.282027 -1.035711 -10.372423 2.541134 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/boyer-moore-algorithm.cpp__main = 1.347513 -1.611968 1.477551 -5.066997 -3.468513 -1.471363 -0.243571 0.212851 -1.690488 3.599530 1.180860 -5.403727 -6.152869 5.283038 0.389205 -4.778188 1.740552 -2.951860 1.535445 -0.281114 -0.503414 1.885626 1.015365 -2.368583 1.790654 0.891366 -4.466771 3.400170 8.600428 -2.262247 0.551859 -0.342109 1.328732 4.970348 -0.857674 -4.182406 -0.737429 8.702052 -2.248695 3.473421 -4.371982 -3.273323 8.609662 -1.193061 -0.934322 -5.845370 -2.325775 5.362329 -5.770075 -2.913050 0.293167 2.609430 1.314166 -5.179629 -4.254352 5.495010 -10.233956 5.831333 2.971164 -0.408322 -0.760697 1.542069 -1.574910 1.650046 -0.425294 -3.831826 -1.481535 -3.729083 -4.488618 -1.794812 -2.315720 0.692436 6.169871 1.437573 -0.854074 3.153283 1.435889 -1.482363 4.088128 -5.592083 -4.767045 -1.264720 -2.093183 -2.289445 6.155927 -0.588766 1.970167 -6.823581 1.953496 -7.536628 3.141516 -6.665729 0.919693 7.456800 -4.236882 4.444936 0.796146 -2.174472 4.161484 0.481771 6.029036 2.455249 3.139688 3.730999 2.646595 3.733801 -2.150630 -2.012210 -3.105152 -2.997311 -1.333656 -1.280252 -6.999542 4.242061 -1.381602 0.950062 4.113068 -0.874938 -2.241904 2.560623 -2.695294 -0.491893 0.866230 -1.179256 0.234302 5.530417 -1.096402 -2.226369 -2.078036 6.059917 0.198467 4.094289 4.763671 4.414196 0.440636 -6.847558 -1.731996 1.811216 -0.020290 -3.452876 -4.213489 -7.248345 1.421837 -2.910463 -2.908495 4.431696 9.105386 -0.480430 -3.212052 6.338214 -0.622644 2.771266 4.285974 -0.085026 7.836744 -1.149477 -4.138673 -0.186346 -2.750986 1.651462 3.457306 0.751770 -2.115642 2.597986 -0.927739 -2.307956 -0.823550 1.276316 -1.090679 -0.288337 -0.511996 -4.483239 -6.159084 4.551913 -0.472339 4.598990 1.262503 7.733539 3.797121 -5.081875 5.010620 -0.336496 -0.468855 -1.636249 -1.644499 2.054055 -1.662213 -4.058338 -3.119709 -4.024079 1.919525 -4.088101 4.326060 -0.807554 2.180434 3.639160 1.178108 3.415245 1.518786 -2.871042 1.771637 -6.919153 1.302133 2.260281 -1.232475 -7.063671 -0.216540 -0.995560 0.348610 6.005242 -0.826763 4.185309 -2.489096 -2.931724 3.013142 0.908884 0.864308 -0.018295 -4.791796 1.010481 1.690417 3.031107 4.021923 7.361556 3.618067 2.928514 -1.183959 5.929078 -1.780312 2.592194 -1.824937 -2.216469 -1.843807 0.745948 3.014934 1.757533 2.800951 3.305477 5.798266 3.570434 -5.006991 5.221260 -0.153383 4.326341 -0.672819 -3.935991 2.522136 -0.386578 5.182791 6.142910 -1.629640 -3.712486 4.245214 -1.085339 -1.045715 -4.224737 0.323995 -1.012758 0.363247 4.237129 1.270444 0.706999 0.463449 3.442155 -0.569085 -9.373849 6.766449 2.423461 3.442926 2.194511 1.234836 1.047484 2.214049 -3.807120 0.604252 4.656825 2.001278 -4.855614 0.989974 2.080852 4.919235 0.613164 4.825670 -9.130071 -2.318152 1.900823 2.374217 1.757657 3.603107 -2.684172 -5.943756 2.635525 0.574432 -1.137997 -3.016511 -0.944701 -4.263966 0.425954 0.019810 -0.260034 +PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 0.974510 -0.182195 1.025232 -1.674658 -0.431014 -0.424681 2.603798 -1.172794 -0.686833 2.949831 0.292472 -0.974950 -1.180665 0.693509 0.319807 -1.044561 0.791045 -1.014723 -0.603380 0.122821 -0.833067 0.694573 -0.525371 -1.792903 1.152891 -0.184338 0.919513 2.028326 -0.626193 0.438736 0.272619 -1.128685 0.779470 3.150466 0.783448 0.053817 -1.153929 3.129881 -2.073350 2.913065 -2.178405 -2.433660 3.921299 -0.590384 -0.207991 -2.156273 0.489074 1.979350 0.063291 -2.456481 -0.275070 0.021152 1.316681 -2.705055 -1.418127 2.326131 -2.152853 -0.118525 1.416596 -1.891629 -2.693875 -0.788906 0.254319 0.941928 -2.717215 -2.071215 -0.008754 -1.393589 -0.876542 0.514484 -1.950163 -1.721028 2.311196 0.771844 -0.737823 0.615051 -1.002019 -1.652711 1.372685 0.491011 -1.358900 -1.626621 -0.131840 -1.021017 1.302751 0.136467 1.930754 -3.753618 0.358037 -3.299355 1.358929 -1.784979 1.720924 2.683595 -0.635850 2.469477 0.007136 1.593205 -0.566671 -1.073333 1.622313 0.958898 1.879162 0.486347 1.798553 2.033031 -2.304533 -3.393095 -1.805605 -0.882517 1.216740 -1.029376 -2.796934 1.213332 -1.487827 0.030965 0.571437 -0.422466 -1.026749 2.907837 -3.352443 0.479320 1.133053 -0.704710 1.248114 1.536171 0.117693 -0.033092 -0.037541 1.632469 0.435632 1.152263 -0.093255 2.411257 -1.398866 -0.386262 0.480222 0.351125 1.023397 -1.649167 -2.613680 -3.585296 -0.962973 1.521425 -1.370174 1.141794 3.513744 -0.887728 -1.957632 1.555881 -0.329723 -0.059156 0.290807 0.727638 2.398827 -1.980556 0.163126 -0.403742 0.327181 1.693681 4.883088 -0.837607 -2.512039 2.443947 -1.605884 -0.994836 2.111482 0.484398 0.066437 0.369070 -0.300869 -1.199731 -1.679962 2.600391 -2.268271 2.466090 -1.706317 3.421146 -1.259055 -0.577959 0.651796 -2.014772 -0.848300 -3.057913 -0.181639 0.631246 1.477610 -2.136998 -1.789348 -0.812876 -0.317378 -0.402172 3.018341 -3.093439 -0.642268 -0.378720 -0.408013 2.775959 0.479270 -1.519988 -0.780100 -1.531681 1.065482 0.770543 0.448461 -2.126835 -1.443797 -0.502174 -1.290531 0.426839 0.248254 1.809193 -1.412929 0.006574 2.197886 -0.099180 -1.313990 -0.475282 -3.881948 0.845388 1.051031 0.659050 0.732188 3.374538 1.725413 1.478337 -0.452007 0.638962 -0.547790 -0.619939 -3.897623 0.664141 -0.152758 0.700371 1.392053 1.758162 1.239474 0.974452 1.947362 0.802809 -0.045123 2.325631 0.462573 2.026290 -0.658783 -0.946535 1.840932 -0.015586 2.012549 1.522602 0.217216 -1.901697 1.558288 -0.718461 -2.011213 -0.163309 -0.360452 -0.411115 0.324250 1.645987 1.564398 -0.707336 -0.360774 3.974869 -0.661180 -4.461960 1.401249 1.184233 1.926290 1.979258 -0.875061 2.084880 1.436866 0.935123 1.467753 1.090434 1.440415 -2.435323 0.382256 0.487329 0.952759 1.831728 0.216179 -4.809474 -1.341860 -0.163704 2.968839 0.429638 3.430711 -1.370891 1.577828 0.284456 0.147560 0.766127 -0.755816 1.197322 -0.337093 -0.042408 -3.917704 1.378192 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.833056 -0.095744 0.930600 -2.125724 -1.017226 -0.254520 1.633393 -1.389924 -0.787863 2.124239 0.530244 -1.347866 -1.981174 1.682088 -0.158656 -1.394423 0.559155 -1.220527 -0.610238 -0.289619 -1.049753 0.721468 -0.606639 -1.614390 1.030746 -0.370585 0.502307 1.958143 0.716144 -0.193514 -0.260317 -1.083829 0.530859 3.494596 0.957756 -0.246723 -0.693608 4.209717 -1.907782 2.800542 -2.401922 -2.590687 3.948417 -0.600571 -0.264788 -2.456238 -0.270018 2.134497 -1.334498 -1.412609 0.191160 -0.123112 0.781507 -2.402520 -0.914895 2.572516 -3.123234 1.425883 1.468245 -1.296894 -2.118021 -1.188239 -0.087810 0.457532 -2.001703 -2.228482 0.189822 -0.662705 -1.685713 0.322034 -2.190762 -1.778431 2.672971 0.878065 -0.772699 0.678484 -0.704063 -1.598832 1.389889 -0.651543 -2.046236 -1.272263 0.235434 -0.736508 2.122193 0.500259 1.485913 -4.352698 -0.033151 -4.165826 1.061764 -2.417195 1.940896 3.110335 -1.406730 2.455324 0.264062 0.946332 -0.053905 -0.275236 2.152239 0.774404 1.491001 0.723854 2.106781 1.759667 -1.775361 -2.790552 -1.558897 -1.244828 0.363775 -0.669650 -3.247369 1.316047 -1.920153 0.096139 0.087363 0.288231 -1.295084 2.153777 -3.432315 -0.177363 0.803824 -0.832496 1.930784 2.066188 -0.150480 0.189124 -0.507691 2.097304 0.216423 1.342841 -0.606138 2.390143 -0.382974 -1.764231 -1.333677 0.316048 1.406913 -1.843898 -3.295087 -3.344652 -1.182272 0.740369 -1.475636 1.946880 4.351820 -1.176360 -2.062443 2.434032 -0.704432 1.189382 1.661158 0.764071 3.324118 -1.959624 0.259742 -0.142665 -0.071402 1.018451 2.568412 -0.815030 -2.495226 1.840475 -0.772670 -0.700105 1.654883 0.302211 -0.484747 -0.589611 -0.164868 -1.469767 -2.371091 3.266999 -1.994797 2.791504 -0.973356 4.017301 -1.440862 -1.518585 1.158054 -1.353904 -0.214690 -2.558335 -0.162649 0.162131 1.533171 -2.321677 -2.180750 -0.729010 0.003309 -0.845473 2.957419 -1.231581 -0.517333 -0.029727 0.034939 2.280434 1.531525 -1.447360 0.055138 -2.424392 1.279821 1.344894 0.411403 -3.046239 -0.749568 -0.470623 -1.230322 0.952313 0.288179 1.696457 -1.215689 -0.502767 1.635368 0.079456 -0.137964 0.073238 -3.309186 1.074863 0.497654 0.310833 1.255868 3.487799 2.215654 1.753466 0.067113 0.600084 -0.539341 -0.528767 -2.330927 0.475555 0.103509 1.088521 1.530212 2.217784 1.596335 1.099661 2.147433 1.030432 -0.489099 2.673656 0.920581 3.034433 -1.120114 -1.039933 1.236282 -0.339763 2.414801 2.741875 -0.704732 -1.779416 1.812184 -0.161168 -1.430447 -1.258822 -0.389810 -0.655580 -0.190350 1.852925 1.279353 -0.592553 -0.495245 4.420601 -0.858989 -4.733160 2.020121 1.187166 2.004793 1.436067 -0.645216 1.253803 1.746426 -0.371446 1.551244 1.535013 1.572992 -2.356462 -0.124838 0.361756 1.505285 1.370283 0.361540 -4.548077 -0.487893 0.593472 3.298014 1.130264 2.218659 -1.398669 0.237716 0.380256 -0.263718 0.603004 -0.451900 1.592855 -1.280295 0.129587 -2.978359 0.165155 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = 2.285720 0.763782 3.381409 -4.875385 -2.072817 -1.705849 7.358431 -4.205948 -2.550747 8.921538 2.002797 -3.818405 -3.765499 3.755024 -0.484124 -1.785347 2.051782 -1.393859 -2.477771 -1.667150 -2.487963 1.690897 -1.413434 -6.074090 3.150167 -1.300789 2.819242 6.188756 -1.644171 1.871419 0.905144 -3.121525 3.293197 9.466005 2.187176 -0.482618 -3.939818 9.140815 -8.839789 7.854335 -7.026480 -7.656051 12.507138 -1.533886 0.718762 -8.100048 -1.179772 5.829809 0.686918 -6.754580 -1.636732 -0.225233 3.775717 -8.431158 -3.915895 7.121230 -6.288971 0.343764 4.464399 -7.050347 -8.436681 -2.354078 0.900059 2.049827 -7.901202 -6.533598 -0.192423 -2.643872 -2.153188 1.690044 -6.464012 -5.947585 5.438754 0.750885 -1.297707 2.000554 -3.251862 -5.441168 4.120042 1.631125 -3.827586 -4.482112 0.893843 -1.953970 2.914831 1.668431 5.678866 -11.726074 -0.964630 -10.416300 3.898938 -5.506638 5.441249 7.207218 -2.439179 7.307774 0.477438 4.036523 -1.127572 -0.715847 5.043519 2.871678 6.220445 1.165142 6.293320 6.606676 -6.398988 -10.112709 -5.643887 -3.262682 3.503584 -2.549689 -7.880274 3.627452 -5.373875 -2.909297 0.255772 -1.687345 -2.245505 9.951336 -9.379341 2.042740 4.530659 -2.217473 3.459577 4.674724 0.401557 0.158784 -0.662393 4.229793 1.069812 3.214400 -0.439368 7.187177 -3.495057 -5.110884 0.115152 1.271886 2.774543 -5.624005 -8.068894 -10.328997 -2.735468 4.258221 -4.189761 1.246106 10.779100 -2.960256 -6.166434 4.424356 0.708545 -0.380422 1.999035 2.694841 9.833969 -6.744279 1.436046 -0.663168 0.517164 5.654221 12.882519 -3.346840 -8.254113 6.484685 -3.325781 -6.269578 7.364772 0.064184 0.378175 1.038953 0.604860 -3.066538 -4.454468 8.017671 -6.049833 8.044669 -5.837470 10.224530 -4.818478 -2.691829 1.940743 -5.254461 -2.181159 -7.697135 0.781453 1.145998 5.573665 -5.313225 -5.896955 -2.689071 -1.619015 -0.668518 9.722141 -9.953135 -1.716764 -1.049794 -1.853311 4.548425 1.575517 -4.496361 -0.805494 -5.045597 3.071509 3.519309 2.958570 -9.883017 -3.712245 -2.262018 -3.604938 -0.713850 1.065636 6.087326 -2.835331 0.099927 6.222283 -1.505829 -3.830889 -2.131447 -8.127366 3.172992 0.802820 2.288854 1.359262 10.802983 6.246507 4.782305 -1.388520 1.877583 -1.521923 -3.369288 -10.179846 3.475814 -0.059037 1.453819 4.266121 6.190589 3.501172 3.523350 6.082168 0.704887 0.372437 7.611748 1.919197 6.589903 -3.209298 -1.924338 4.790459 -0.318378 6.360239 5.681533 2.742687 -7.390492 4.043086 -2.344552 -6.111773 -0.750415 -1.569232 -0.545641 -0.963233 6.090920 5.931403 -2.244435 -1.556439 12.523722 -1.729656 -13.354564 5.084875 2.996891 5.650132 5.281779 -3.184001 5.704982 5.023746 4.146143 3.640300 3.465754 4.721398 -8.160143 -1.576469 1.303856 4.008885 6.919237 -0.331612 -17.489190 -1.206785 0.483569 8.849062 -0.061510 9.320524 -4.940359 4.443257 0.369715 0.737087 2.204078 -1.694670 4.203064 -3.022859 -0.302609 -11.365857 3.976493 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.442195 -0.128971 0.244726 -0.850629 -0.485296 0.116539 0.097329 -0.511603 -0.229752 0.167557 0.243631 -0.378331 -0.623785 0.706070 -0.114607 -0.735356 0.159035 -0.613228 -0.133033 0.042382 -0.352359 0.270366 -0.270679 -0.397107 0.295323 -0.077695 -0.022391 0.524881 0.558814 -0.403572 -0.446274 -0.329465 -0.048829 1.273735 0.402638 -0.188115 0.080616 1.742632 -0.085837 0.698179 -0.783509 -0.754283 1.121596 -0.260950 -0.265376 -0.731924 -0.250854 0.690673 -0.816642 -0.121260 0.353035 -0.158562 0.061845 -0.582002 -0.149698 0.880686 -1.411296 0.888867 0.510947 0.035958 -0.404402 -0.527287 -0.069916 -0.064472 -0.262356 -0.732241 0.264943 0.045172 -0.731919 0.031908 -0.709945 -0.708048 1.379080 0.482770 -0.329294 0.207715 -0.065436 -0.648803 0.497425 -0.522607 -0.978321 -0.331137 0.074249 -0.183526 1.154838 0.013348 0.329726 -1.585491 0.172363 -1.668648 0.253770 -0.999613 0.698869 1.239160 -0.875688 0.654699 0.229782 0.291721 0.144078 0.021825 0.972656 0.173331 0.132110 0.253317 0.676870 0.315697 -0.338403 -0.556035 -0.344993 -0.557577 -0.176001 -0.117923 -1.493749 0.488198 -0.662392 0.366644 -0.112825 0.352686 -0.410292 0.379361 -1.113725 -0.380321 0.089039 -0.304658 0.827010 0.885355 -0.190856 0.111477 -0.417638 0.922900 -0.053419 0.428155 -0.403147 0.717009 0.070566 -0.876948 -1.026347 0.045410 0.625787 -0.694462 -1.327685 -0.996509 -0.357126 -0.042804 -0.509523 1.110317 1.661921 -0.519067 -0.748461 1.147488 -0.158813 0.712905 1.064241 0.206888 1.170468 -0.582704 0.045507 -0.031175 -0.124299 -0.069074 -0.435304 -0.204868 -0.578215 0.480617 -0.091877 0.019769 0.772796 0.131992 -0.398259 -0.090152 -0.145918 -0.587467 -1.069174 1.277523 -0.077612 0.935391 0.218218 1.556049 -0.442243 -0.751402 0.510003 -0.111353 0.081177 -0.689304 -0.200075 -0.029440 0.459148 -0.870437 -0.800039 -0.060993 0.128362 -0.458788 0.839016 0.689083 -0.044375 0.148626 0.185351 0.637903 0.967956 -0.406050 0.235735 -1.005393 0.475465 0.615778 -0.156050 -0.900284 -0.077766 -0.163996 -0.317253 0.607965 0.084358 0.503786 -0.499922 -0.433125 0.340661 0.215100 0.433779 0.306364 -1.093318 0.326031 0.017031 -0.076065 0.588839 1.076146 0.865762 0.710757 0.270515 0.062165 -0.069602 0.051841 -0.289582 -0.187075 0.026775 0.735535 0.532000 0.695337 0.653982 0.348547 0.647149 0.579700 -0.135768 0.963441 0.512256 1.389805 -0.314159 -0.378726 0.162751 -0.243238 0.996121 1.305136 -0.754465 -0.204763 0.631300 0.256515 -0.237308 -0.942530 -0.055641 -0.293377 -0.179563 0.409945 0.157931 -0.091554 -0.250202 1.528941 -0.302767 -1.560169 0.802856 0.419462 0.635971 0.373745 -0.041438 0.188746 0.560808 -0.671444 0.626982 0.638861 0.668262 -0.663059 0.022844 0.090194 0.635049 -0.131176 0.385778 -0.802456 0.104852 0.421829 1.103844 0.709289 0.255566 -0.425734 -0.358411 0.175636 -0.236167 0.125669 0.018552 0.600680 -0.597378 0.047325 -0.663198 -0.397415 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = 1.274811 -0.205384 2.868793 -4.423004 -2.022166 -1.178960 5.208140 -4.038429 -2.091183 6.779913 1.482164 -3.460988 -1.869165 4.016597 -0.336912 -1.788711 1.396611 0.272700 -1.805834 -1.159974 -1.478410 1.860773 -1.204187 -3.878429 1.912746 -1.048062 2.463773 4.952689 -1.886154 1.492369 1.175199 -2.830628 1.930336 7.573800 1.911613 0.734934 -3.819234 7.689685 -6.502941 8.041163 -7.144506 -5.298446 9.406604 -1.238712 0.389200 -7.811998 -2.740141 4.561106 0.617966 -5.784858 -1.677808 -0.195857 2.793412 -6.411401 -2.865638 5.173766 -4.665987 -0.682677 3.960662 -6.574469 -6.853004 -1.096050 1.622154 2.022220 -7.962055 -5.066124 -0.309188 -2.144346 -1.018864 1.425876 -4.707681 -5.391249 3.640765 0.903664 -1.653727 1.513527 -2.327783 -4.034666 3.625855 1.788768 -3.532231 -4.008274 0.230295 -3.785924 2.066253 1.058774 5.879310 -9.721896 1.211465 -8.664937 3.135678 -4.609891 3.947356 6.149363 -1.536757 5.928509 0.784852 3.736553 -0.194590 -0.567921 3.422606 2.777031 4.189040 1.480595 6.058586 5.214372 -4.985066 -8.243725 -4.949718 -3.683686 3.563177 -3.537294 -7.193941 3.073160 -3.676720 -1.642658 -0.492182 -0.663870 -1.268140 8.250400 -7.587665 2.739173 3.984893 -1.879588 1.647803 4.312493 0.148845 0.151770 -1.291560 3.088632 -0.205791 3.167351 0.336729 5.849024 -3.981126 -2.511596 0.180495 1.174238 1.801216 -4.213421 -5.995704 -8.828743 -2.690305 4.306027 -3.429916 2.739256 9.224640 -3.239690 -6.181324 3.673203 1.608568 -1.232734 1.201921 2.295235 8.416382 -4.948939 0.083179 -1.956831 -0.323485 4.835813 10.825364 -2.214134 -6.164017 6.326499 -4.014372 -7.184265 8.868682 -0.471297 -0.317973 1.372868 1.167855 -2.255738 -3.624941 6.479967 -5.832093 7.256506 -5.339207 7.881849 -3.443272 -1.403620 1.119667 -6.663989 -2.479670 -6.028029 0.639609 -0.270927 5.400944 -4.169410 -4.437205 -2.531079 -3.042640 -0.768957 7.667163 -8.006420 -0.928134 -0.173863 -1.431872 5.549781 1.927773 -2.860802 -1.402728 -4.124590 2.815065 3.632369 2.534040 -7.370529 -3.211958 -2.345088 -2.880922 -2.051899 0.809962 5.155784 -3.817745 0.595483 3.842237 -1.230308 -2.888037 -1.590836 -8.642359 2.622542 0.248824 3.103302 1.292058 8.501894 5.391419 4.610839 -0.411096 1.985039 -1.224541 -2.757074 -8.546639 2.592069 0.446992 0.513042 3.534983 4.866682 3.058322 3.278369 5.397768 0.858920 1.458558 6.282897 0.843039 5.993706 -1.677962 -1.497079 3.420144 0.418731 5.034819 5.662446 3.200643 -4.581688 3.366793 -2.385163 -5.896040 -2.500380 -1.011626 -0.332377 -1.059363 5.502616 5.009782 -1.708719 -1.520187 9.882711 -0.895906 -11.181524 4.041843 2.275454 4.164016 4.895407 -2.220650 5.096268 4.223931 3.161445 2.764338 3.500172 3.596977 -7.374328 -0.760546 1.146002 3.015906 7.209516 0.902589 -14.588249 -0.129255 0.428189 7.536165 -1.509863 9.004715 -4.381997 3.831456 1.444369 0.491828 1.151473 -1.218790 3.013275 -1.255341 -0.649331 -9.923271 2.145082 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.501837 -0.150070 0.737828 -1.487119 -0.799387 -0.202849 1.069017 -1.030671 -0.514408 1.146629 0.472549 -0.938922 -0.659535 1.433025 -0.171149 -0.870989 0.367767 -0.407489 -0.451975 -0.117893 -0.430625 0.670871 -0.386345 -0.896428 0.625233 -0.226525 0.324481 1.349305 0.068675 -0.131310 -0.090286 -0.724190 0.305370 2.283282 0.519280 -0.012927 -0.576052 2.769910 -1.286862 2.005987 -1.898505 -1.384426 2.528510 -0.442186 -0.227682 -2.172156 -1.002154 1.279036 -0.454335 -1.093528 -0.021499 -0.077392 0.460750 -1.575452 -0.507496 1.618817 -1.999452 0.507660 1.123984 -1.102812 -1.447741 -0.563677 0.167615 0.154452 -1.660904 -1.430476 0.118350 -0.383322 -0.660296 0.310553 -1.224808 -1.492158 1.803878 0.515070 -0.526635 0.535375 -0.364136 -1.370445 1.094262 -0.100690 -1.360338 -0.971926 0.119317 -0.841630 1.299335 0.043246 1.288902 -2.937099 0.350217 -2.764870 0.741363 -1.737278 1.156498 2.106720 -1.047694 1.597417 0.316673 0.878164 0.134273 0.042188 1.393640 0.721698 0.865486 0.489716 1.603906 1.168377 -1.104396 -1.853362 -1.193965 -1.154737 0.527004 -0.785882 -2.630369 0.896673 -1.015848 -0.109523 -0.165672 0.119368 -0.395087 1.889918 -2.013147 0.405136 0.915682 -0.574300 0.662920 1.540038 -0.147314 -0.026205 -0.747902 1.262605 -0.131202 1.024894 -0.230004 1.539078 -0.808607 -1.281588 -0.676720 0.097037 0.596075 -1.263314 -2.042106 -2.341031 -0.681877 0.709774 -0.995132 1.257943 2.946984 -1.003217 -1.776596 1.621193 0.584922 0.299298 0.945488 0.562072 2.397104 -1.225291 -0.079753 -0.499300 -0.234240 0.807186 1.494986 -0.470042 -1.488942 1.460338 -0.825422 -1.769850 2.632776 -0.057547 -0.364931 0.382269 0.131709 -0.904548 -1.522094 2.243977 -0.834903 2.145032 -0.855292 2.569659 -0.860923 -0.864812 0.577314 -1.259651 -0.341855 -1.683445 -0.035252 -0.037959 1.298762 -1.334232 -1.401215 -0.512130 -0.537595 -0.520387 1.908201 -0.946703 -0.129389 0.076953 -0.047936 1.316142 1.123583 -0.815035 0.013145 -1.566041 0.870394 1.163669 0.335964 -2.150152 -0.488119 -0.505925 -0.727020 -0.057902 0.199846 1.239868 -1.092384 -0.259749 0.905383 -0.137790 -0.238017 -0.105655 -2.480946 0.673761 -0.092251 0.592585 0.640728 2.234069 1.816509 1.311459 0.132351 0.454887 -0.245775 -0.438447 -1.754693 0.336692 0.066189 0.572515 1.028119 1.468645 1.102831 0.825170 1.458192 0.671675 0.233485 1.852278 0.652800 2.233661 -0.353516 -0.642388 0.696727 -0.050406 1.701388 2.112804 0.228142 -0.870264 1.091526 -0.111940 -1.245360 -1.348816 -0.258842 -0.253545 -0.449199 1.424033 0.856257 -0.480557 -0.346120 2.866613 -0.368043 -3.152945 1.281183 0.704621 1.203337 1.013757 -0.316660 1.023666 1.305542 -0.011693 0.970228 1.059197 1.175732 -1.815776 -0.280280 0.271053 0.992818 1.295354 0.644016 -3.274660 0.180728 0.423370 2.149661 0.106665 1.882003 -1.031520 0.347268 0.416428 -0.028507 0.162261 -0.154561 0.871290 -0.754597 -0.116681 -2.307562 -0.068353 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.522647 0.013256 0.736461 -1.416613 -0.186198 -0.490184 2.281653 -0.424595 -0.360669 1.751471 0.024393 -0.535309 -1.417336 0.287866 0.313930 -0.883418 0.608214 -1.498348 -0.512212 0.128300 -0.514530 0.547253 -0.223807 -1.099681 0.914223 -0.043915 0.501753 1.514000 -0.077843 -0.254134 0.274884 -0.694658 0.583724 2.001868 0.303239 0.045709 -0.807564 2.083015 -1.112068 1.869252 -1.526522 -1.528936 2.618628 -0.442531 -0.436901 -2.079099 0.661071 1.347418 -0.122539 -1.480164 -0.116727 0.234118 0.725318 -1.913679 -0.946531 1.820483 -1.618292 0.191347 0.866926 -0.946569 -1.501427 -0.536996 0.043020 0.511542 -1.446281 -1.341439 -0.041811 -1.498791 -1.081125 0.472085 -1.128426 -0.674587 1.576376 0.711130 -0.431642 0.572837 -0.668146 -1.102976 0.866380 -0.180359 -0.661734 -1.074486 -0.007330 -0.354451 0.991662 -0.222063 0.752379 -2.316068 -0.235741 -1.860065 0.740725 -1.349913 1.023427 1.693976 -0.085890 1.850836 -0.330197 0.219924 -0.581742 -1.015317 1.031049 0.605202 1.793889 0.351359 1.077442 1.170953 -1.484489 -2.235514 -1.077376 -0.406218 0.611960 -0.559487 -1.811438 0.753958 -0.873812 -0.176978 0.792961 -0.353014 -0.822570 1.577528 -1.938246 0.214980 0.703070 -0.470719 0.726743 1.196700 0.149183 -0.241081 0.060808 1.152251 0.563907 1.239239 -0.083504 1.521226 -0.495649 -0.394650 0.587583 -0.096857 0.502113 -0.810266 -1.673837 -2.141418 -0.698736 0.548950 -0.874821 0.562473 2.200868 -0.328486 -1.350000 1.089937 -0.223801 0.371186 -0.183660 0.373167 1.280496 -1.147587 0.031367 -0.188246 0.325192 1.170730 3.812532 -0.501998 -1.709190 1.436568 -1.173348 -0.631949 0.412875 0.441383 0.221973 0.466477 -0.539688 -1.103432 -1.469423 1.623561 -1.246115 1.935691 -1.055768 2.137170 -0.749651 -0.540921 0.488002 -0.973049 -0.273777 -2.215443 -0.266303 0.709861 0.564761 -1.406910 -1.164635 -0.737264 0.071492 -0.337168 1.901018 -2.536112 -0.503643 -0.475108 -0.027998 1.907771 0.199105 -1.294449 -0.365252 -1.083358 0.814186 0.277727 0.615632 -1.404075 -0.756134 0.007427 -0.966503 0.852170 0.092823 0.967585 -0.526798 -0.056448 1.775656 -0.102414 -1.094306 -0.401422 -2.841994 0.352650 0.887344 0.214863 0.394162 2.133520 1.080357 0.572318 -0.575210 0.399859 -0.407837 -0.286573 -2.641651 0.114147 -0.323348 0.245172 0.894244 1.039269 0.867691 0.429082 1.570123 0.896321 -0.640857 1.358418 0.323171 1.117243 -0.366342 -1.010261 1.386289 -0.097391 1.149921 0.817426 0.248225 -1.336160 1.296594 -0.142043 -1.072375 -0.230804 -0.402955 -0.427374 0.419425 1.562081 0.809315 -0.757303 0.134534 2.514190 -0.555846 -2.848161 0.803050 0.836579 1.283656 0.867785 -0.494600 1.150945 1.159057 0.184029 0.757632 0.440604 0.794172 -1.330280 0.141420 0.344296 0.466876 0.891740 0.100224 -3.205009 -1.640304 -0.226468 2.092706 0.580245 2.468715 -0.553445 0.855672 0.228372 0.357044 0.447730 -0.554006 0.644457 -0.403532 -0.211617 -2.418120 1.162490 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.424317 0.172370 0.309944 -0.063290 -0.054508 -0.110123 0.843353 -0.450109 -0.275027 0.717896 0.276671 -0.304779 -0.144705 -0.071380 0.008747 -0.043016 0.385357 0.407647 -0.260662 -0.029578 -0.393087 -0.043993 -0.157048 -0.568385 0.391428 0.036746 0.277185 0.522417 -0.391808 0.197762 -0.023035 -0.156690 0.406082 0.910919 0.141024 -0.113410 -0.294838 0.691933 -0.448426 0.449394 -0.532926 -0.298195 1.118894 -0.177134 0.162115 -0.667926 -0.079091 0.641208 0.285875 -0.943842 -0.289484 -0.167501 0.323923 -0.887006 -0.496523 0.906188 -0.536914 -0.205339 0.565953 -0.741842 -1.027919 -0.032558 0.301130 -0.026482 -0.591613 -0.689247 -0.048909 -0.213994 0.061400 0.267785 -0.841916 -0.870502 0.666001 -0.138147 -0.198221 0.218558 -0.453613 -0.385469 0.313823 0.629695 -0.227730 -0.520021 0.225551 -0.038880 0.170690 0.071145 0.508492 -1.121590 -0.049857 -0.987515 0.477894 -0.521332 0.683845 0.674998 -0.205042 0.614891 0.103754 0.138174 -0.433930 0.212233 0.572108 -0.021448 0.361292 -0.135531 0.390883 0.428484 -0.614638 -1.033015 -0.491359 -0.324546 0.492091 0.171397 -0.638518 0.323708 -0.790468 0.278746 0.095026 -0.088814 0.147287 0.948115 -0.608400 0.373014 0.606664 -0.240753 0.515334 0.636939 0.104597 0.058836 -0.179506 0.314927 0.112674 0.027062 -0.101891 0.645944 -0.197694 -0.753694 0.153102 -0.019008 0.294343 -0.547966 -0.750904 -0.896306 -0.103349 0.404518 -0.457328 -0.215942 0.994068 -0.315111 -0.387965 0.268426 0.201408 -0.047263 0.188023 0.299852 1.258681 -0.952102 0.341484 0.036903 0.255155 0.652981 0.771055 -0.528587 -0.786527 0.644463 -0.190380 -0.693943 1.463688 0.013954 0.169496 1.167757 0.058361 0.199100 -0.438699 0.708649 0.124753 0.713283 -0.394887 1.107325 -0.470086 -0.190240 0.102231 0.165602 -0.273050 -0.510365 0.073852 0.092456 0.621298 -0.407413 -0.560509 0.029368 -0.265235 0.126843 1.043724 -0.333947 -0.144607 -0.163411 -0.550172 -0.005438 -0.108011 -0.492817 -0.146290 -0.547251 0.112657 0.131707 0.077901 -0.709981 -0.431782 -0.412500 -0.288006 -0.178703 0.099384 0.659433 -0.235617 0.009750 0.712305 -0.228123 -0.389685 -0.373748 -0.339020 0.233367 -0.061399 -0.022045 -0.017330 1.142933 0.713241 0.511793 -0.242674 0.129317 -0.010850 -0.247875 -1.192779 0.267025 -0.306641 0.663717 0.393858 -0.042162 0.226273 0.319926 0.155531 -0.622904 0.490318 0.827192 0.465167 0.625892 -0.405131 -0.026166 0.572570 -0.225281 0.694377 0.238753 0.072448 -0.771714 0.148194 -0.258600 -0.712020 -0.161363 -0.192038 0.116623 -0.441174 0.453287 0.590644 -0.105710 -0.342484 1.300464 -0.155799 -1.321567 0.566636 0.144735 0.374928 0.680773 -0.195205 0.798025 0.457627 0.895821 0.014141 0.252928 0.771274 -0.954971 -0.028832 0.087699 0.434021 0.173225 -0.132057 -1.822841 -0.245904 -0.035515 0.732427 -0.136766 0.781617 -0.500680 0.730333 -0.062842 0.081435 0.207884 -0.227264 0.474176 0.025205 -0.246189 -1.398294 0.757175 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = 3.890050 -0.969569 2.752267 -4.400030 -1.972474 -0.653509 5.144526 -6.288350 -3.470991 10.677018 2.619782 -5.027261 -0.685331 6.427989 -0.328038 -2.278679 2.232928 1.688768 -1.924916 -0.291380 -2.811633 2.042393 -2.374495 -6.971651 3.021263 -0.692585 3.240366 5.925922 -3.587223 3.925398 -0.356138 -3.782009 2.407514 11.283955 3.538854 -0.188758 -3.940531 11.183101 -11.873742 11.114678 -8.652333 -8.715492 14.187944 -1.476797 1.052215 -6.028557 -3.589812 6.590213 0.280736 -8.806704 -1.520523 -1.328479 3.986365 -8.805287 -3.976909 7.467004 -7.894248 -0.282968 5.820943 -7.775788 -10.633351 -2.544391 2.639467 2.301518 -10.916790 -7.581441 0.103163 -1.509096 -0.299645 0.858511 -8.604185 -9.332681 5.915469 1.077178 -2.071375 1.415514 -3.971025 -6.008622 5.129989 2.849882 -5.957365 -5.275522 -0.051835 -5.095813 3.491772 3.490850 9.164990 -14.634485 3.170720 -13.899564 5.096473 -6.164947 6.593689 9.664207 -4.764133 7.107293 1.930438 8.885982 0.403711 -0.140761 5.816439 3.810303 3.137408 0.868938 7.988914 8.611142 -7.901620 -11.253136 -7.021828 -4.843497 4.782735 -4.469386 -10.378505 4.661303 -6.609639 -0.947133 -1.255154 -1.112386 -2.294744 11.408303 -12.722951 2.851154 4.280448 -2.452517 4.665383 5.616368 -0.128677 0.787581 -2.188942 4.578446 0.042754 1.884616 -0.384880 8.432618 -7.435456 -4.378604 -1.051510 2.852831 4.125278 -7.976793 -9.454069 -14.715691 -2.306934 6.747704 -5.216474 5.157919 13.454361 -4.990544 -7.403741 5.309114 0.992300 -1.710591 4.607872 2.887021 12.921614 -8.303119 1.757510 -0.793862 0.012809 5.274184 9.977995 -3.662532 -8.536135 8.403268 -4.456203 -7.410694 14.145389 0.671590 -0.620668 -0.178758 2.308704 -2.221622 -3.966999 10.455651 -8.979765 7.575832 -6.626090 11.982920 -5.308379 -1.617323 2.598152 -10.579556 -4.590279 -8.784754 -0.413905 -1.143324 8.402762 -6.892269 -6.171974 -2.760038 -2.999884 -1.218512 11.485130 -8.282868 -1.488413 -0.066081 -2.683385 6.758197 2.974346 -3.837562 -1.197772 -6.070101 2.963839 6.133286 0.534340 -11.176852 -4.749775 -4.513278 -3.489255 -2.592797 1.036928 7.518885 -7.260142 -0.222926 5.548003 -0.366590 -2.324356 -1.747050 -9.603597 4.189971 -0.095751 3.857668 3.616818 13.101057 6.691896 7.755058 0.006559 2.268012 -1.383998 -3.884923 -11.796599 4.362691 0.210209 3.348250 5.280061 6.391387 3.782994 4.717495 5.163493 -0.038658 2.609002 9.548111 3.091472 9.002397 -1.868171 -1.022396 4.811270 -0.638016 7.875008 7.825993 0.670821 -6.468533 3.893800 -4.773200 -8.512310 -1.233787 -0.675571 -0.495123 -3.046229 4.639770 6.403837 -0.887539 -3.592480 15.064047 -1.640683 -16.508649 6.390584 3.333710 6.269222 8.577704 -3.462340 7.961572 4.595849 5.032677 5.404737 5.703658 6.492877 -10.191335 0.893657 1.336021 5.291806 10.376101 0.495885 -18.711944 2.979422 1.330256 9.921031 -0.819043 10.226097 -6.696405 5.893112 -0.063950 -0.483703 2.912436 -2.443795 5.657171 -0.738796 0.139435 -14.419539 2.534911 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = 3.203760 -0.325951 2.270166 -3.507163 -1.063386 -0.835685 5.587402 -4.076723 -2.788684 8.509296 0.879132 -3.182696 -2.655923 3.893434 -0.099000 -1.973308 1.601285 -0.757773 -1.538351 -0.507803 -2.473206 1.555995 -1.625173 -4.944244 2.434142 -0.372895 2.604578 4.916153 -2.039648 2.718100 0.255012 -3.019485 1.799051 8.256915 2.463252 -0.194709 -3.408945 9.451252 -9.722569 8.554895 -6.907991 -7.620799 11.170772 -1.222101 -0.032326 -6.594568 -1.638641 5.279609 -0.595691 -6.404796 -1.187191 -0.370569 2.425206 -6.807753 -3.153844 6.420947 -7.162714 0.419406 4.023671 -5.690976 -8.275476 -2.118204 2.080637 1.846398 -7.944282 -5.581370 -0.031745 -2.865127 -1.375136 1.228153 -6.737809 -5.666052 3.552529 1.399100 -1.427443 1.146715 -2.922147 -3.599119 3.651983 1.018165 -4.125301 -4.029678 -0.241498 -3.782816 2.674810 2.765179 6.192587 -10.877654 1.959262 -9.982205 3.281562 -5.591469 4.592821 7.203110 -1.934492 6.489732 0.827622 5.378573 -0.230896 -1.719927 3.940793 3.181061 4.020073 1.154930 5.897784 6.638379 -6.308460 -8.871685 -5.725834 -2.974815 3.308449 -3.297106 -7.907420 3.406628 -4.799807 -1.310371 0.057546 -0.814566 -2.747439 7.500319 -10.309379 2.639374 2.783905 -1.833606 3.826695 4.674380 -0.088668 0.573225 -1.012451 3.563428 0.624419 3.183060 -0.034442 6.242075 -5.078226 -3.097923 -0.341193 1.860807 3.132808 -5.170368 -6.899599 -11.228957 -2.175620 4.742827 -3.811695 3.785528 10.807651 -3.081982 -5.503182 3.942222 -0.909024 0.183658 2.569856 2.008076 9.641023 -5.616978 0.961182 -0.018917 0.420956 4.100351 9.640653 -2.498342 -6.463512 6.317234 -3.529572 -3.772243 7.502436 0.406454 -0.254706 -0.787234 1.128442 -2.184909 -3.876308 8.242248 -8.268922 6.263490 -5.142598 8.319433 -3.641447 -0.857665 1.832045 -9.247693 -2.859058 -8.163930 -0.493205 -1.223688 5.777863 -5.665261 -4.517089 -3.093659 -1.996685 -1.095642 8.695142 -8.701472 -1.369650 -0.385893 -1.137847 6.418879 1.865792 -3.269176 -1.097822 -5.517853 2.400394 4.022574 1.118861 -9.057696 -3.457884 -2.448329 -3.019625 -0.743711 0.706147 4.939088 -4.645101 0.018198 4.894112 -0.105354 -2.426538 -1.206936 -8.455156 2.719903 0.825131 2.927918 2.747105 9.881064 4.773284 5.006986 -0.340069 2.209649 -0.857638 -2.998865 -9.265970 2.799127 -0.035182 1.900467 3.827661 4.315309 2.939797 3.072953 4.218260 0.776963 0.106277 6.677422 2.749947 6.554922 -2.013031 -2.270838 3.923777 -0.341481 5.009388 5.065247 1.087544 -4.986508 3.549888 -3.790089 -6.243648 -0.963757 -0.757599 -0.984776 -1.396734 4.995090 5.215952 -1.470128 -1.791047 11.460912 -1.727699 -13.470130 4.383104 2.774056 4.769756 6.397042 -2.505892 5.667294 4.120350 3.278001 3.776985 3.942277 4.089341 -7.334463 1.512173 1.091030 3.690272 7.438069 -0.314728 -15.901357 0.596129 0.538459 8.057911 0.058196 9.001149 -4.411372 4.352258 0.281933 -0.139020 2.223428 -1.710271 4.874612 -0.003189 0.056113 -11.170975 2.479955 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 3.167100 -0.282185 1.947118 -3.615358 -2.629548 0.490379 1.248761 -5.024428 -2.612522 6.270532 1.164413 -3.264254 -3.031706 3.819806 -1.392980 -3.669605 0.333956 0.129838 -0.694983 -1.748637 -2.265872 1.310190 -1.810251 -4.080981 1.427637 -1.244905 2.058249 3.923511 1.140041 2.253251 -0.623303 -2.841073 1.161795 8.394609 3.401313 -0.271979 -1.934383 9.878710 -5.249622 6.086100 -7.271939 -7.609769 9.489005 -0.887713 -0.056017 -5.519902 -1.835235 4.589815 -4.509275 -2.784712 -0.352015 -1.386661 2.093653 -4.955094 -2.530145 5.505561 -8.163542 3.707240 3.218087 -4.692494 -6.450236 -2.300782 1.450152 1.751673 -4.780806 -5.145337 0.297889 0.370659 -2.320565 1.054697 -5.842518 -5.355756 5.742820 1.461484 -2.390763 0.446387 -2.145557 -2.705489 3.052265 -0.841138 -5.385028 -3.480098 0.441780 -2.456106 3.655405 3.161397 5.516571 -10.904682 2.001752 -10.855863 3.211492 -4.901787 4.968000 6.899823 -4.389292 5.162491 1.765539 3.773980 1.278747 -0.977154 4.581392 2.112482 2.175820 1.554067 4.819443 5.120779 -4.059598 -6.375867 -3.983509 -3.540498 1.234414 -2.464126 -9.408383 2.870161 -5.133990 1.528343 -1.133215 0.051096 -2.556372 5.324012 -10.204706 -0.462770 1.313212 -1.733931 5.287015 4.092296 -0.296411 1.854310 -0.951854 4.534045 -0.429870 1.669641 -0.813287 5.661427 -3.046589 -4.938377 -4.961197 2.488635 4.048638 -5.033550 -7.491150 -9.186551 -2.735108 3.329191 -3.239010 5.313864 10.934242 -3.446564 -5.945451 5.043706 -2.634177 1.070072 5.948758 2.082675 9.317157 -5.043853 0.823407 -0.418108 -0.355109 2.502537 4.272826 -2.368334 -5.280099 5.621371 -1.853559 -0.821731 4.720218 -0.093522 -1.838197 -2.842846 0.644021 -2.310490 -3.489785 7.580952 -6.515169 5.743955 -3.306998 8.947410 -4.121559 -3.457239 1.834961 -8.248330 -2.490636 -4.600408 -0.209439 -1.519690 5.487971 -6.595378 -4.749483 -1.779595 -1.244101 -1.776632 7.678022 -2.340307 -0.980756 0.867161 -0.588653 7.031143 3.889375 -2.344949 -0.516316 -5.346750 2.296569 4.911249 0.509174 -8.694026 -2.802647 -2.612339 -2.389244 0.653965 0.719202 4.756074 -4.102572 -0.379611 2.470472 0.010251 1.006315 0.486610 -6.456417 3.371916 -0.133673 1.870484 2.903007 8.893035 4.945569 5.477088 0.947268 1.914021 -0.138433 -3.059616 -3.840190 1.922275 1.990487 2.297029 3.549186 4.821193 3.080436 3.122615 4.057402 2.181519 0.079399 6.579839 1.960672 7.924511 -3.929124 -0.893121 1.767377 -0.325249 5.443779 7.397565 -1.791644 -3.457395 3.254643 -2.461567 -3.539593 -3.881706 -0.374916 -1.149839 -1.358712 3.909414 4.943199 -0.694886 -2.566654 10.840121 -0.959383 -11.846364 6.135666 2.902743 3.724070 4.725734 -2.451887 2.755804 3.709307 0.580940 3.340828 4.906810 4.229839 -6.925110 1.142450 0.588721 4.712165 4.883207 0.843852 -11.258613 1.118272 2.486157 7.837816 1.603472 6.147568 -4.533105 0.600452 0.768245 -1.046035 1.500859 -0.761357 4.198756 -1.023319 0.995182 -6.976784 -0.682721 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 2.159987 -0.237806 2.137106 -3.334339 -0.768315 -0.930594 5.474327 -3.525113 -1.983103 6.968163 1.187287 -3.251391 -2.332841 2.746122 0.175335 -1.337391 2.158998 -0.169742 -1.522314 -0.274498 -2.305960 0.992995 -1.266134 -4.309732 2.202540 -0.283456 2.398531 4.403520 -1.775579 1.497580 0.185764 -2.314172 1.871982 7.333996 2.012795 -0.172540 -3.137358 7.051823 -6.191118 7.464513 -5.678024 -4.616435 9.451972 -1.155645 0.332975 -5.587858 -0.619217 4.826696 0.574288 -6.178693 -1.396689 -0.560597 2.636128 -6.410615 -3.347959 5.790736 -4.510911 -0.497136 3.819584 -5.037201 -6.918428 -1.474019 1.975962 1.978534 -7.323987 -5.079579 -0.021766 -2.674990 -1.610918 1.130009 -5.994418 -5.316813 3.480294 0.956942 -1.700768 1.140413 -3.018953 -3.406887 2.942982 1.801365 -3.004181 -3.546741 0.181820 -3.201046 2.318231 1.232615 4.941946 -9.395771 0.881560 -8.364051 2.908288 -4.403754 4.341000 6.125662 -1.117118 5.445598 0.093511 3.504714 -1.159603 -0.530560 3.445801 2.095682 3.529361 0.427445 5.243945 5.053613 -5.096996 -8.256216 -4.147833 -2.454721 2.947018 -1.834403 -5.799606 3.029650 -4.926099 -0.171614 0.281873 -0.152131 -2.057668 7.082861 -7.394011 1.676328 2.809400 -1.764425 3.359005 4.368311 0.277264 0.443609 -0.757738 3.019773 0.995443 2.094296 -0.284876 5.519975 -3.286683 -1.858019 0.492716 1.025790 2.693129 -4.108837 -6.225507 -8.808320 -2.385388 3.433617 -3.420517 2.965871 8.340084 -2.349565 -4.444825 3.126786 -0.601651 -0.002105 1.588028 1.781403 8.447718 -5.687381 1.410509 -0.456791 0.921734 4.005466 9.928143 -2.822178 -6.117412 5.277563 -3.525725 -4.186793 7.170530 0.893763 0.330103 1.569575 0.380204 -1.348258 -4.081784 6.458373 -5.980402 5.903721 -4.417158 8.117663 -3.328662 -0.965459 1.758350 -4.658318 -2.111829 -5.992261 0.034336 -0.204851 4.832712 -4.134621 -4.261324 -1.616733 -1.554701 -0.455876 8.071867 -6.107525 -1.460363 -0.738582 -2.043190 5.237751 0.882712 -3.531376 -1.167859 -4.196884 2.253718 3.007358 1.264448 -5.995984 -3.258800 -2.239287 -2.873548 -0.629186 0.706383 4.643878 -3.842858 -0.068740 4.616452 -0.228240 -2.407844 -1.545002 -7.808353 2.515120 0.985720 1.482397 1.826834 8.897308 4.144298 4.007549 -0.945864 1.262466 -1.475282 -2.036788 -9.098611 2.213679 -0.428373 1.900905 3.287413 3.739193 2.379162 2.733675 3.851820 -0.540061 0.716756 5.855782 1.582881 4.892033 -1.999368 -1.429700 3.990073 -0.856902 4.825604 4.164585 0.660045 -5.319376 3.025593 -2.533001 -5.734369 -0.976761 -1.110742 -0.525916 -0.992374 3.944119 4.188820 -1.051231 -1.730179 10.169907 -1.363150 -11.232965 3.721566 2.119473 4.037384 5.458328 -2.201935 5.474113 3.512727 3.450032 2.590276 2.917763 3.669078 -6.350152 0.366133 0.998004 2.703877 5.288515 -0.564594 -13.512177 -1.121418 0.051865 7.385708 0.234594 7.759452 -3.758876 4.410531 0.487849 0.171482 1.883099 -1.992253 3.920213 -0.706808 -0.651694 -9.998383 3.391628 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = 0.878299 0.059489 1.633718 -2.265346 -0.350219 -0.850053 3.701263 -1.551790 -0.950732 3.294705 0.227418 -1.697507 -2.392579 1.398301 -0.197694 -1.104420 1.202327 -0.578093 -0.926902 -0.676568 -1.178633 0.605489 -0.474671 -1.942528 1.326980 -0.341783 1.424657 2.782941 -0.368035 0.151485 0.495814 -1.229548 1.093428 3.929498 0.736818 0.221358 -2.060078 4.018649 -2.613083 4.192993 -3.911081 -2.311812 5.274234 -0.639837 -0.105852 -5.045756 -0.438812 2.609082 -0.393232 -2.744385 -0.931781 -0.033620 1.059326 -3.668595 -1.739748 3.597067 -2.886890 0.189268 1.917569 -2.825501 -3.516239 -0.592100 1.171234 0.830321 -3.566968 -2.686930 -0.085836 -1.995700 -1.752785 1.228661 -3.027669 -2.316171 1.653328 0.666482 -0.999840 0.933478 -1.446024 -1.516326 1.468297 0.191962 -1.249183 -2.146529 0.466711 -1.550064 1.278028 0.359218 2.066278 -5.146752 -0.140856 -4.219066 1.379862 -2.892622 2.260195 3.119754 0.022998 3.658711 -0.307414 0.090061 -0.887099 -0.445034 1.677928 1.319482 2.792423 0.328126 3.030126 2.392299 -2.435349 -4.734296 -2.184222 -1.225740 1.153495 -0.942933 -3.493544 1.406046 -2.738187 -0.159727 0.448741 0.108748 -1.169406 3.365263 -3.740834 1.114632 1.667204 -1.041423 1.525993 2.774192 0.301642 0.020214 -0.371159 1.713074 0.631093 1.875674 -0.134771 2.854516 -0.991076 -1.554579 0.226744 -0.093053 1.097293 -1.585996 -3.333987 -4.374417 -1.823284 1.338213 -1.724261 1.450154 4.617506 -0.890410 -2.920609 1.660265 -0.295248 0.736261 0.526977 1.078565 4.717539 -2.893814 0.599652 -0.515289 0.700709 2.542215 6.159595 -1.516173 -3.357351 2.911181 -2.083314 -2.807446 2.855569 0.062370 0.459481 1.353675 -0.115619 -0.984373 -2.726051 3.444141 -2.997492 4.238393 -2.744657 4.294990 -1.879811 -1.029805 0.719580 -2.809046 -0.714160 -3.075131 0.239583 -0.300535 2.368771 -2.336936 -2.479788 -1.268910 -0.979421 -0.077353 4.492763 -3.891925 -0.901132 -0.726183 -0.874368 3.282148 0.361363 -2.231199 -0.350130 -2.640329 1.380722 1.630406 1.576510 -3.730846 -1.305194 -0.698783 -1.769942 -0.017121 0.421596 2.159334 -1.473539 0.050760 2.563833 -0.419221 -1.576709 -1.088930 -4.684118 1.098557 0.466908 0.580172 0.715400 4.827199 2.720867 1.560548 -0.905050 0.785555 -0.786871 -1.381827 -4.629792 0.868972 -0.164952 0.451540 1.588694 1.897673 1.325093 1.128864 2.505952 0.174347 -0.338037 2.908083 0.864810 2.599472 -1.471044 -1.232658 2.185096 -0.527795 2.299742 2.402280 0.981147 -2.833319 2.105902 -0.769793 -2.752080 -1.645326 -0.982065 -0.392063 -0.532589 3.447515 2.341919 -1.227121 -0.404255 5.610673 -0.652856 -6.268130 2.045661 1.151380 1.859840 2.201569 -1.046821 2.359888 2.594051 1.359432 0.624110 1.079205 1.717194 -3.491946 -0.174400 0.524442 1.345298 2.790837 -0.443656 -8.166208 -1.655513 0.041178 4.592417 0.276030 5.001389 -1.567893 1.867140 0.517028 0.344346 0.588123 -0.852765 1.950282 -0.527442 -0.798055 -5.255340 1.877495 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.254359 0.113011 0.687073 -0.967501 -0.436589 -0.310998 1.015776 -0.605755 -0.295034 0.607361 0.295411 -0.738962 -0.850436 0.843033 -0.279638 -0.638832 0.262059 -0.260729 -0.436913 -0.333787 -0.263230 0.278850 -0.129676 -0.780571 0.465604 -0.216958 0.377099 1.111963 0.197748 -0.140506 0.064941 -0.389041 0.531116 1.535391 0.226737 0.088775 -0.520446 1.668400 -0.802599 1.311178 -1.571302 -0.907928 2.000235 -0.275710 -0.183262 -2.147630 -0.691161 0.892160 -0.645484 -0.600554 -0.221427 0.001125 0.285242 -1.320803 -0.471720 1.441616 -1.493669 0.603117 0.684686 -0.932769 -1.021286 -0.280357 0.111107 0.067110 -0.777930 -1.001960 -0.046915 -0.371981 -0.718470 0.486252 -0.876964 -0.859157 1.428461 0.144933 -0.323967 0.456594 -0.352758 -0.731862 0.644466 -0.278819 -0.583618 -0.768120 0.398307 -0.074889 0.703813 0.094642 0.585668 -1.986533 -0.388959 -1.707609 0.646296 -1.267778 0.808325 1.135189 -0.591135 1.300602 -0.003965 -0.291341 -0.090448 0.218756 0.813541 0.438513 1.046365 0.132982 1.068380 0.737611 -0.635746 -1.494882 -0.736744 -0.681706 0.210865 -0.301053 -1.914177 0.483877 -0.902008 0.020690 0.023589 -0.042639 -0.141205 1.177083 -1.136788 0.442347 0.739547 -0.383842 0.488258 1.116327 0.014419 -0.012377 -0.362234 0.760835 0.138510 0.716314 -0.123098 0.999107 -0.220967 -1.556039 -0.445486 -0.062178 0.308164 -0.671066 -1.355867 -1.441628 -0.533530 0.387117 -0.629589 0.329062 1.863022 -0.394536 -1.343351 0.860883 0.551619 0.388744 0.557807 0.455742 1.889068 -1.007818 0.162470 -0.251273 0.030200 0.853311 1.460240 -0.553518 -1.240085 0.986837 -0.490253 -1.665639 1.333542 -0.119509 0.049536 0.647404 -0.079431 -0.586542 -1.080030 1.447331 -0.216021 1.763778 -0.881197 1.769191 -0.833950 -0.896698 0.285148 -0.703599 -0.173452 -0.887084 0.075400 0.080323 0.856255 -0.976068 -1.033614 -0.409401 -0.352715 -0.122302 1.558496 -0.947591 -0.244689 -0.187999 -0.222292 0.756423 0.437920 -0.827771 0.182501 -1.133470 0.520112 0.787544 0.639482 -1.922151 -0.242216 -0.249470 -0.535635 0.042505 0.175733 0.789540 -0.354116 -0.100095 0.816374 -0.395536 -0.326872 -0.362909 -1.296931 0.367938 -0.113943 0.245651 0.214199 1.687982 1.371784 0.607549 -0.233229 0.348928 -0.186232 -0.595734 -1.061892 0.246567 0.042240 0.163709 0.622542 0.929544 0.562763 0.377546 1.082195 0.383127 -0.140731 1.179349 0.539803 1.268056 -0.571342 -0.424409 0.572122 -0.164525 1.100452 1.337894 0.256865 -0.932656 0.776753 0.061410 -0.631152 -1.053850 -0.446670 -0.116137 -0.494434 1.611614 0.730583 -0.505269 -0.117094 2.053087 -0.141883 -2.136979 0.968165 0.467306 0.633961 0.384274 -0.404369 0.466858 1.126095 0.180362 0.173353 0.415509 0.825524 -1.319876 -0.517896 0.151539 0.672549 0.922660 0.160032 -2.696288 -0.385959 0.366729 1.678310 0.076341 1.495793 -0.629379 0.193851 0.119242 0.211015 0.086877 -0.170963 0.494877 -0.632768 -0.260562 -1.488408 0.195681 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = 3.653091 0.283007 0.860540 -3.530966 -0.215883 -1.223641 7.290520 -3.062575 -3.482529 7.791307 0.417837 -3.332443 -4.358231 2.862814 0.934396 -2.311984 2.431014 -2.144227 -1.571994 -0.813985 -3.434147 1.098629 -1.145588 -4.902453 2.463266 -0.499731 1.151492 5.003802 -1.885763 1.927440 0.418927 -2.383254 2.029789 7.584793 2.259601 -1.873686 -3.587153 9.517583 -9.562605 8.546722 -5.369091 -6.099470 11.533189 -1.138435 -0.715539 -6.904073 -0.902420 4.937318 0.757492 -5.449922 -1.156547 -0.171017 1.884458 -6.380468 -3.467450 8.160165 -6.263608 0.748181 3.673969 -5.239501 -7.417042 -1.870837 1.302205 1.665883 -7.281868 -5.560081 -0.066830 -3.853027 -1.575117 1.151990 -8.015690 -4.874177 2.698654 2.722356 -0.739705 0.971200 -3.628677 -2.411966 2.660915 1.273374 -3.607253 -3.566819 -0.016824 -1.955203 2.361753 2.457720 5.503194 -10.433641 0.263336 -9.696211 2.528434 -5.954048 4.507772 7.226733 1.241391 6.729055 -0.255393 1.816829 -1.540602 -1.945288 3.658764 2.179786 4.194031 1.175532 4.912800 6.872151 -5.763242 -9.080815 -4.292184 -0.885093 2.564558 -1.258230 -6.261982 4.049240 -5.816438 -1.820182 1.262447 0.153638 -3.310598 6.603418 -7.419006 1.206517 2.190982 -2.111459 4.795491 4.926402 0.489270 0.400727 -1.445622 3.209443 2.445861 4.422082 -0.619176 5.909231 -3.676956 -3.374213 0.198470 1.358525 3.334505 -5.126308 -6.551300 -9.241938 -2.067169 3.760432 -4.245377 4.251684 10.336782 -2.906077 -3.979476 3.869007 -1.712092 2.166031 1.302215 1.583530 10.416603 -5.563367 1.473015 1.231186 1.202102 3.733646 11.326728 -2.749353 -6.382306 5.263784 -2.854850 -1.537618 5.339975 0.389040 -0.086745 1.878250 -0.039190 -0.494171 -5.030888 7.676174 -7.237477 6.199242 -3.871470 8.167409 -2.614551 -0.561922 2.584506 -6.270324 -2.627367 -8.181974 0.477533 -1.087663 4.161642 -4.248966 -4.403706 -2.659159 -1.585681 -1.385999 8.862583 -7.441689 -1.538573 -0.561855 -1.420874 6.118623 1.536297 -3.480323 -1.052101 -6.116576 2.807605 2.955666 0.468198 -8.488124 -3.113096 -0.425488 -2.991603 0.515789 0.501377 4.202548 -3.899991 0.039863 5.503243 0.499198 -2.253294 -0.928406 -6.926506 2.816895 2.224281 1.563214 2.347053 10.119773 4.120938 3.961267 -0.946022 1.947292 -1.301292 -1.588701 -10.189039 2.482591 -0.869623 2.283932 3.653338 3.722749 1.724879 2.684479 4.848625 -0.520926 -0.473439 5.076266 2.350753 5.886135 -1.758881 -3.341570 4.303885 -1.759308 4.809496 4.619248 0.702379 -6.847179 3.926669 -4.106243 -6.379747 -0.387263 -0.723053 -1.039545 -1.820802 5.854845 5.197091 -1.350563 -1.675983 11.755506 -1.994197 -14.078248 3.996372 3.555392 4.372285 6.439293 -2.135356 5.967146 4.461811 3.563414 2.327462 3.881665 3.871239 -6.750444 2.313009 1.038353 2.141989 5.078303 -1.464266 -16.615504 -1.653284 1.390540 8.796629 0.894212 9.372307 -3.392960 4.601239 0.766178 1.209606 2.322974 -1.935728 4.945874 -1.883950 0.953724 -9.844362 4.400264 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.806177 0.150721 0.427836 -1.044458 -0.330723 -0.317846 1.543163 -0.823839 -0.779902 1.439068 0.235099 -0.924116 -1.224029 0.921283 -0.023678 -0.847468 0.440218 -0.526812 -0.491088 -0.353297 -0.733391 0.298916 -0.255295 -1.233845 0.627291 -0.223448 0.281443 1.346401 -0.091583 0.201101 0.047203 -0.572721 0.628771 2.050262 0.512572 -0.311889 -0.758218 2.531635 -1.893338 1.933389 -1.651451 -1.581302 2.930351 -0.336737 -0.235117 -2.155266 -0.535633 1.260938 -0.407835 -1.007774 -0.238407 -0.029368 0.361912 -1.665781 -0.762365 2.123779 -1.971342 0.713564 0.920164 -1.280735 -1.677329 -0.486377 0.140258 0.223268 -1.307536 -1.437003 -0.040306 -0.653480 -0.657565 0.424928 -1.770229 -1.215586 1.408320 0.550034 -0.245438 0.393001 -0.742687 -0.656727 0.755723 -0.088471 -0.979187 -0.954343 0.275976 -0.111618 0.813291 0.571711 1.147002 -2.763039 -0.211691 -2.561270 0.782622 -1.655226 1.170585 1.780591 -0.208343 1.749611 0.022566 -0.013820 -0.229939 -0.148665 1.093405 0.483427 1.151811 0.305668 1.235862 1.467491 -1.192990 -2.138306 -1.021114 -0.502981 0.422239 -0.257025 -2.112170 0.937352 -1.426230 -0.165250 0.202361 0.038964 -0.575228 1.501553 -1.812684 0.282748 0.691135 -0.544666 1.186252 1.352443 0.056811 0.104165 -0.479061 0.963208 0.471803 1.075524 -0.206550 1.471060 -0.586388 -1.650528 -0.470634 0.241454 0.766107 -1.254745 -1.803671 -2.160795 -0.542969 0.799505 -1.049935 0.911207 2.756345 -0.736439 -1.324209 1.172266 -0.004308 0.699362 0.676302 0.503813 2.743247 -1.400480 0.320378 0.187381 0.157279 0.982174 2.184755 -0.717699 -1.664536 1.327641 -0.521542 -0.910154 1.408613 -0.045706 -0.078156 0.609192 -0.072412 -0.372950 -1.363072 2.016371 -1.052588 1.891747 -0.915758 2.298729 -0.879046 -0.686345 0.605673 -1.319946 -0.529220 -1.700593 0.115314 -0.146791 1.060570 -1.281979 -1.263761 -0.604802 -0.411711 -0.369717 2.214248 -1.390064 -0.347177 -0.124209 -0.297746 1.310164 0.611423 -0.951067 -0.011752 -1.688582 0.719807 0.890595 0.324663 -2.512845 -0.582408 -0.138216 -0.714246 0.268203 0.160505 1.060850 -0.727941 -0.065589 1.269070 -0.127098 -0.364199 -0.253625 -1.439088 0.632925 0.299957 0.355394 0.522955 2.518850 1.425894 1.003037 -0.199978 0.537382 -0.251930 -0.544838 -1.917409 0.486503 -0.105638 0.578322 0.943723 1.058822 0.565044 0.623021 1.383078 0.169491 -0.203535 1.446151 0.717390 1.757787 -0.677872 -0.765342 0.903247 -0.398041 1.418062 1.548207 -0.000915 -1.577389 1.047800 -0.619436 -1.212011 -0.642371 -0.316829 -0.247145 -0.656774 1.821395 1.240174 -0.439598 -0.371196 2.992155 -0.408070 -3.392473 1.264899 0.881967 1.028192 1.168153 -0.549779 1.075205 1.326369 0.557192 0.411889 0.926419 1.136236 -1.799256 0.144365 0.224422 0.769266 1.118512 -0.101577 -3.913235 -0.427154 0.598479 2.279783 0.253053 2.078451 -0.899184 0.639007 0.170518 0.318417 0.426244 -0.334892 1.047974 -0.735042 0.122532 -2.121746 0.677688 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = 7.293541 -1.007171 4.409687 -5.654021 -2.348911 -0.599943 10.736711 -10.205828 -5.620210 17.845400 3.061294 -7.188855 -2.662642 7.326763 -0.868324 -1.053799 5.911277 5.133031 -2.134907 -0.244148 -6.325777 1.434648 -4.053850 -8.361302 3.520905 0.495762 5.964078 8.006912 -5.379726 5.459734 -2.040060 -5.468817 2.762580 16.690317 6.542165 -2.555027 -7.167460 18.656871 -15.218351 18.302238 -14.260576 -8.600454 18.614753 -2.318965 2.928014 -13.764750 -5.152692 11.030312 1.661613 -14.561349 -2.730961 -3.433257 5.573767 -12.326730 -6.879926 13.311512 -10.650279 -1.180627 10.491257 -11.954688 -16.432096 -3.089694 7.295178 3.582261 -18.702212 -11.273290 0.732315 -4.888664 -0.652562 2.702360 -16.827477 -15.073311 3.859508 1.678289 -5.591254 0.582464 -6.934561 -8.195306 6.156295 6.299170 -9.958054 -7.491813 -1.140883 -10.434776 5.172099 3.506640 13.796156 -22.345272 5.883412 -23.497305 4.810824 -11.396175 10.201717 16.176506 -3.965747 10.025370 1.795369 10.727606 -1.401938 0.157712 7.382573 5.520511 3.171769 -0.358901 13.258670 12.126770 -10.891249 -18.085569 -9.043673 -5.763463 6.378275 -3.845149 -13.505354 7.116051 -12.416141 2.123668 -2.447463 1.930427 -4.376269 15.784982 -16.768410 4.181603 5.714455 -4.342149 8.929926 11.787282 -0.059542 3.006898 -3.939175 6.341328 1.093023 4.461373 -1.361434 12.073288 -10.406985 -5.913707 -2.062940 3.284324 8.007494 -9.581212 -14.864275 -21.840107 -5.563808 7.915596 -7.794518 7.510846 21.115749 -7.143981 -9.227247 6.957165 -2.792548 -1.158989 6.541734 3.916838 22.712925 -13.851057 4.115023 -0.496821 1.789542 5.987950 17.086678 -7.190335 -12.262263 12.121657 -7.683885 -10.793199 23.005024 2.020225 -0.822952 5.300449 2.547473 0.525843 -8.556455 16.614580 -17.511728 11.238675 -9.430642 17.918604 -6.521610 -0.812518 3.302942 -12.003777 -3.874085 -11.663798 0.743858 -2.962174 14.840606 -8.836790 -9.681584 -2.127849 -5.316240 -0.725308 18.729864 -9.390583 -3.301322 0.126756 -4.635416 12.055592 3.493083 -6.373262 -1.537992 -9.676531 4.831325 7.693951 -0.149250 -15.064325 -7.474241 -7.215123 -6.051644 -6.033514 2.053155 10.680893 -12.445154 -1.059297 9.093391 -0.111292 -3.090851 -1.651303 -16.650125 6.887650 -0.240151 4.136184 5.813204 20.596159 8.396128 11.334736 0.028265 1.598896 -2.261498 -5.370628 -20.344573 5.675092 0.028847 6.273865 6.812613 5.197533 5.023114 6.430909 4.430049 -5.456981 5.979006 13.457835 6.405871 13.161360 -4.476379 -1.904259 7.854712 -3.250447 10.621693 10.613632 1.309385 -10.656536 4.816629 -8.531543 -15.380387 -4.593250 -1.493568 -0.303286 -4.827601 6.400838 11.542211 -1.319502 -6.035533 23.794102 -3.591220 -28.257235 8.827765 4.196452 7.966299 17.556668 -3.639942 13.985268 6.244557 10.334135 7.805594 8.168470 9.192072 -15.061114 2.715758 1.865270 6.082635 13.034876 -1.517282 -34.415878 2.461518 1.001005 16.524510 -0.369063 17.339501 -9.470407 12.476438 2.058542 -2.100082 4.287995 -4.626888 11.611237 1.020243 -2.361130 -24.425132 6.947292 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 1.773747 -0.148433 1.006200 -1.582102 -1.114322 0.176378 1.418379 -2.501001 -1.238179 3.335251 0.817424 -1.674060 -0.921467 1.881438 -0.531749 -0.938033 0.956013 0.792049 -0.393158 -0.302356 -1.414358 0.416069 -0.997202 -1.686327 0.671336 -0.063346 1.065933 1.682216 -0.245367 0.749347 -0.828339 -1.230136 0.444854 4.054479 1.660159 -0.690077 -1.118341 4.814067 -2.385909 3.492975 -3.428140 -2.222672 4.038320 -0.534644 0.457873 -3.067663 -1.266481 2.509634 -0.774209 -2.330059 -0.170858 -0.905758 1.004984 -2.438126 -1.302068 2.988855 -3.231683 0.935275 2.247508 -2.215269 -3.228762 -0.889085 1.379983 0.660943 -3.230889 -2.592629 0.368503 -0.339455 -0.654207 0.548585 -3.570878 -3.428688 1.920922 0.570629 -1.456471 0.124450 -1.246558 -1.816690 1.478885 0.532207 -2.778419 -1.567971 -0.024300 -1.948474 1.814510 0.826356 2.803526 -5.385060 1.340286 -5.795288 1.120349 -2.738616 2.459682 3.849551 -1.710792 2.118822 0.690714 1.967574 0.204545 0.176340 2.154495 1.023417 0.468088 0.164844 2.774173 2.380689 -1.993671 -3.446591 -1.790933 -1.678882 0.832012 -0.650570 -3.851504 1.623079 -2.838828 1.093467 -0.734463 0.652824 -0.980877 3.013300 -4.022513 0.077114 0.978685 -1.001916 2.478874 2.812044 -0.198633 0.919509 -1.055609 1.959352 -0.036803 0.899393 -0.554513 2.681055 -1.730442 -2.158891 -1.903539 0.846232 2.108516 -2.299285 -3.762062 -4.631914 -1.316914 1.291562 -1.777060 2.382141 5.274737 -1.828674 -2.416267 2.245109 -0.819871 0.254719 2.544881 0.885798 5.271600 -2.997938 0.786737 -0.169312 0.111795 0.886468 2.125150 -1.468632 -2.508659 2.589278 -1.225756 -1.708772 4.564375 0.346222 -0.696984 0.764416 0.434850 -0.209414 -2.194472 3.903880 -3.064435 2.685485 -1.383972 4.547487 -1.657427 -1.057581 0.935039 -2.405134 -0.680215 -2.070725 0.035447 -0.678394 3.227811 -2.414722 -2.351864 -0.283233 -0.965760 -0.561815 3.992712 -0.409094 -0.532243 0.351124 -0.692503 2.810184 1.677159 -1.275014 -0.035668 -2.561253 1.187302 2.056678 -0.221213 -3.581049 -1.434257 -1.635199 -1.236373 -0.602417 0.405232 2.383230 -2.630192 -0.525937 1.570622 0.050859 0.239634 0.121285 -3.443582 1.636449 -0.336832 0.732021 1.476561 4.558330 2.252500 2.827809 0.481647 0.342166 -0.302215 -1.101662 -3.154729 0.855236 0.365950 1.742336 1.644753 1.461241 1.391135 1.480702 1.226029 -0.541755 1.069286 3.256451 1.414013 3.753677 -1.501336 -0.309742 1.191445 -0.751323 2.745694 3.333262 -0.656405 -1.960210 1.241281 -1.341108 -2.734763 -1.978612 -0.243599 -0.269033 -1.097077 1.337874 2.432073 -0.210896 -1.475846 5.488793 -0.742966 -6.270724 2.554361 1.056497 1.734630 3.439169 -0.728464 2.358660 1.499100 1.202609 1.782666 2.215703 2.290335 -3.382875 0.482329 0.330241 1.849974 2.016669 0.163098 -6.674785 0.726636 0.857038 3.839117 0.507408 3.161495 -2.242787 1.552341 0.647192 -0.691173 0.755966 -0.661536 2.581839 -0.307334 -0.244832 -4.500782 0.572230 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = 0.687189 -0.013317 0.545278 -0.790960 0.273566 -0.240462 1.188223 -0.573916 -0.297426 1.352812 -0.079017 -0.430046 -0.776110 0.283951 -0.151531 -0.562844 0.795145 -0.435452 -0.212152 -0.345431 -0.425406 -0.027714 -0.041279 -1.034749 0.419055 -0.351185 0.588976 0.735244 -0.555079 0.031997 -0.031139 -0.362086 0.461121 1.480561 0.329140 -0.023308 -0.746238 1.163307 -0.317805 1.550743 -1.396839 -0.786406 1.507526 -0.251242 0.278011 -1.493604 0.130594 0.644335 0.064790 -0.634877 -0.485162 -0.224396 0.346018 -1.377520 -0.721008 1.379882 -0.824581 0.170571 0.516262 -0.870659 -1.100908 -0.256473 0.385087 0.345231 -0.691126 -0.902298 0.225015 -0.290592 -0.850633 0.806901 -1.249828 -0.784020 0.447794 0.482478 -0.255851 0.214168 -0.490722 -0.434885 0.366966 -0.383873 -0.313320 -0.862477 0.308572 -0.002240 0.405009 0.278122 0.814657 -1.777594 0.062338 -1.363881 0.684653 -0.910860 0.988969 0.995604 0.394235 1.199709 -0.159468 -0.127887 -0.602111 -0.201578 0.601408 0.415415 0.826204 -0.226847 0.963436 0.654608 -0.696147 -1.641992 -0.239697 0.039070 0.121893 -0.228516 -0.803686 0.522392 -1.174294 0.325869 0.135043 0.131146 -0.505451 0.775735 -1.458103 -0.492072 0.481796 -0.438658 0.903129 0.615149 0.148366 0.168722 -0.072872 0.705896 0.500858 0.335786 -0.165945 1.025678 -0.358739 -0.724675 -0.087115 -0.088995 0.588219 -0.747041 -1.352971 -1.176791 -0.830941 0.626941 -0.470012 1.040181 1.387708 -0.046799 -0.831483 0.403838 -0.317203 0.249711 0.432352 0.492118 1.330974 -1.307988 0.621249 0.009010 0.768602 0.928050 1.903988 -0.775252 -1.188443 1.130920 -0.555894 -0.193770 0.316088 -0.005843 0.364541 0.463578 -0.331665 -0.138279 -0.642737 0.993016 -1.087801 1.436620 -0.828649 1.627519 -0.910656 -0.500911 0.133365 -0.888273 -0.290566 -0.665935 0.428703 -0.150491 0.883317 -1.022705 -1.060178 -0.144453 -0.433421 0.311049 1.601537 -1.086455 -0.444368 -0.411267 -0.546867 1.824446 0.050885 -0.852769 -0.059124 -0.756109 0.456977 0.413442 0.596801 -1.092013 -0.398741 0.023080 -0.578047 -0.063903 0.230375 0.685999 -0.539169 -0.151382 0.946626 -0.126266 -0.518127 -0.516231 -1.013929 0.339798 0.424105 -0.126119 0.023720 1.567061 0.778847 0.311401 -0.502636 -0.347785 -0.244432 -0.682424 -1.421561 0.300330 0.010431 0.076411 0.324248 0.485016 0.043681 0.205350 0.930728 0.066467 -0.195945 0.792797 0.127195 0.486641 -0.671931 -0.180267 0.783206 -0.714212 0.936400 0.706052 -0.100450 -1.138425 0.792403 -0.372610 -0.694066 -0.448727 -0.472542 -0.168907 -0.246870 1.051182 0.955933 -0.523515 -0.337733 1.824874 0.046157 -1.888040 0.816989 0.644002 0.446396 0.867347 -0.642434 0.754663 0.806325 0.537604 -0.077368 0.039314 0.670565 -1.034550 -0.017068 0.110264 0.329072 0.549708 -0.371168 -2.126163 -0.887810 0.387519 1.653154 0.426540 1.501935 -0.473192 0.782862 -0.085823 0.285565 0.226250 -0.312621 0.691408 -0.454065 -0.180816 -1.220273 0.891461 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = 0.970205 -0.048081 1.019303 -1.189102 -0.406526 -0.498938 2.654601 -1.390928 -1.082690 3.134668 0.465111 -1.172631 -1.010755 1.319529 0.144704 -0.599508 0.607126 -0.163522 -0.752397 -0.190809 -0.924289 0.713985 -0.558952 -1.836202 1.193340 -0.153953 0.843917 2.172320 -1.140699 1.041026 0.492591 -1.108984 0.845489 3.075726 0.675796 0.074202 -1.320748 3.327916 -3.913466 3.302392 -2.475079 -2.831014 4.590428 -0.533189 0.044525 -2.549754 -0.579990 2.069909 0.108195 -2.754737 -0.515433 0.053652 1.021659 -2.761786 -1.181432 2.418039 -2.542646 -0.311826 1.600813 -2.566002 -3.351991 -0.592217 0.492786 0.485501 -3.129967 -2.162758 -0.197971 -1.325347 -0.207923 0.437663 -2.377907 -2.119327 1.348965 0.298548 -0.318851 0.716793 -1.055909 -1.317941 1.530749 0.945711 -1.378682 -1.681259 -0.002481 -1.399574 0.872398 0.906791 2.204556 -4.098263 0.439654 -3.610661 1.457842 -1.930405 1.670654 2.657737 -0.617673 2.739642 0.399372 1.695350 -0.383388 -0.543459 1.574031 0.975412 1.766345 0.676886 2.183538 2.575446 -2.640410 -3.659599 -2.573234 -1.209296 1.679993 -1.249380 -2.839342 1.282471 -1.726225 -0.763537 0.260033 -0.512397 -0.660557 3.351268 -3.617139 1.673811 1.498805 -0.692054 1.063587 1.655153 0.074386 -0.094921 -0.438180 1.277351 0.068332 1.253999 0.090373 2.462861 -1.589348 -1.108822 0.477572 0.521335 0.827618 -1.980549 -2.375199 -4.237711 -0.593207 1.911505 -1.543919 0.836659 3.991921 -1.262551 -2.165097 1.499350 0.239799 -0.066596 0.388263 0.884666 3.533249 -2.058348 0.055254 -0.217002 -0.028446 2.007114 4.172720 -0.815989 -2.566490 2.529755 -1.199010 -2.129247 3.518707 -0.123387 -0.034758 0.526683 0.554003 -0.788942 -1.327114 2.865329 -2.268589 2.574343 -2.100909 3.207148 -1.269465 -0.241835 0.596084 -3.339662 -1.185397 -3.227746 -0.185139 -0.283708 1.798868 -1.936834 -1.677625 -1.393413 -0.775801 -0.407760 3.314636 -3.730013 -0.362817 -0.204432 -0.568723 1.674117 0.466649 -1.248708 -0.620953 -2.020204 0.858373 1.290002 0.567925 -3.419270 -1.307523 -0.820427 -1.143823 -0.179701 0.235921 1.992310 -1.530515 0.263059 2.056269 -0.297176 -1.406647 -0.669950 -3.022278 0.868775 0.444082 1.076299 0.909290 3.775709 2.182098 1.815703 -0.294008 1.268995 -0.300374 -0.839428 -4.040503 1.136456 -0.298502 0.923437 1.543731 1.654728 1.257670 1.258128 1.687378 0.119891 0.358163 2.644871 0.950657 2.540487 -0.588415 -0.853813 1.689808 0.193084 1.988328 1.583650 0.935008 -2.032084 1.343329 -1.328272 -2.591304 0.004207 -0.250492 -0.279257 -0.642710 2.147488 1.903819 -0.625199 -0.568861 4.485069 -0.717274 -5.075976 1.565472 1.027093 1.941725 2.099513 -0.771955 2.320965 1.752568 1.471964 1.287471 1.377655 1.708198 -3.146148 0.448010 0.466475 1.325912 2.999341 0.001769 -6.559011 -0.207721 -0.059382 3.034050 -0.480605 3.727579 -1.690025 1.816805 0.132717 0.067516 0.774755 -0.541236 1.648898 -0.026686 0.022264 -4.718381 1.288073 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 0.974459 0.327055 1.445616 -2.685927 -0.951914 -0.773984 3.222432 -2.105007 -1.167613 3.018254 0.816173 -2.218900 -1.473873 2.745672 -0.368734 -1.272421 1.074699 -0.661556 -1.126438 -0.966675 -0.733831 0.833003 -0.426694 -2.522170 0.930558 -0.578580 1.236644 2.747275 -0.629159 0.402451 0.374060 -1.313034 1.516038 4.148589 0.959807 0.203791 -2.346849 4.357369 -3.649188 4.665121 -4.660126 -2.963941 6.216824 -0.680260 -0.302166 -5.869581 -1.849621 2.440590 0.219231 -2.617800 -1.143101 -0.116633 1.118767 -3.754799 -1.880589 3.677364 -2.890828 0.514452 2.080525 -3.664503 -3.816190 -0.664145 1.059070 1.150042 -3.876090 -2.620503 -0.084124 -1.491306 -1.136334 1.134721 -3.131322 -2.913743 2.467744 0.776259 -0.700551 0.815931 -1.819162 -1.995647 1.795904 0.203950 -1.588155 -2.144358 0.669899 -0.895834 0.810467 0.734555 2.946420 -5.816803 -0.363111 -5.130925 1.837023 -2.997576 2.377976 3.086097 -0.363791 3.554040 -0.052754 0.226853 0.053128 -0.039011 1.784612 1.471416 3.136702 0.372527 3.605588 3.344448 -2.236788 -4.910184 -2.287134 -1.797621 1.446974 -0.967643 -4.565351 1.853435 -2.909541 -1.320355 -0.151299 -0.284540 -0.729908 4.110468 -3.225079 0.941207 2.086629 -1.088942 1.458524 2.869006 0.154467 0.418997 -0.885110 1.569707 0.543015 2.211607 0.108634 3.078895 -1.966768 -3.079882 -0.379115 0.544087 1.035310 -2.403440 -3.402529 -5.137805 -1.441747 1.774151 -2.038607 1.315997 5.217877 -1.448717 -3.856422 1.917520 1.844740 -0.016880 0.961388 1.082120 6.081386 -3.178110 0.763472 -0.417949 0.398337 2.655618 6.589441 -1.595088 -3.497088 3.127876 -2.344300 -4.957838 4.280968 -0.292994 0.125350 1.748620 0.273165 -1.048829 -2.772397 3.697164 -1.885782 4.501545 -3.123667 4.620204 -2.322873 -1.253854 0.869471 -3.514204 -1.450506 -3.049587 0.529195 -0.320205 3.209101 -2.221484 -2.492765 -1.327093 -1.674334 -0.381175 4.650430 -4.728738 -0.619120 -0.326272 -1.060752 2.620155 0.933340 -1.953665 -0.186888 -2.862239 1.386302 2.709154 2.035342 -4.983068 -1.622743 -1.155833 -1.563001 -0.850866 0.369962 2.689173 -1.737540 0.104007 2.455767 -0.890880 -1.236002 -1.164554 -4.189454 1.395470 -0.095818 1.441281 0.244656 5.511471 3.069316 2.196294 -0.515895 0.867416 -0.691200 -1.798781 -4.598990 1.052903 0.163538 -0.098358 1.951784 2.733248 1.295876 1.532917 3.601809 0.165450 -0.163407 3.139328 0.561750 3.364641 -1.460216 -0.919774 1.768184 -0.487539 2.934084 3.938893 2.115483 -3.479844 2.031645 -1.358650 -3.274234 -2.040677 -0.991684 -0.180327 -1.245165 4.202144 2.942116 -1.011993 -0.842117 6.232214 -0.331475 -6.948047 2.591706 1.359032 2.015532 2.525327 -1.566579 2.396543 3.030725 1.562416 0.714735 1.708296 2.351632 -4.163305 -0.739360 0.459347 1.732007 3.624654 -0.047941 -8.863244 -0.355331 0.995048 4.832530 -0.444223 5.581498 -2.309385 2.047537 0.547631 0.906934 0.502542 -0.622635 1.932447 -1.188770 -0.406628 -5.383488 1.664356 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.490390 0.027171 0.375699 -0.980073 -0.640718 0.072976 0.170213 -0.768977 -0.328366 0.358172 0.332507 -0.615573 -0.599339 0.939926 -0.288566 -0.846032 0.134035 -0.429076 -0.214620 -0.262927 -0.296437 0.289740 -0.254431 -0.563466 0.219404 -0.198735 0.128002 0.658469 0.492052 -0.271997 -0.331728 -0.390706 0.172269 1.481352 0.475035 -0.113320 -0.209933 1.862031 -0.253163 0.924207 -1.373670 -0.960040 1.581371 -0.248009 -0.231634 -1.449489 -0.582863 0.773457 -0.779935 -0.160141 0.106485 -0.202405 0.127241 -0.803562 -0.333067 1.085762 -1.513432 0.982095 0.607229 -0.502066 -0.735175 -0.417787 0.149958 0.123773 -0.460509 -0.841313 0.207937 0.102075 -0.688727 0.213036 -0.876623 -0.966939 1.491443 0.429238 -0.391841 0.205775 -0.268658 -0.653464 0.588687 -0.508347 -0.992077 -0.510250 0.252468 -0.128773 0.915155 0.167367 0.634849 -1.983576 0.098820 -1.996459 0.467639 -1.087060 0.847360 1.235948 -0.828111 0.856954 0.239646 0.013359 0.320533 0.103406 0.965342 0.261476 0.458393 0.240333 0.917670 0.629632 -0.347208 -0.905918 -0.460113 -0.770818 -0.055458 -0.129473 -1.911046 0.590372 -0.911784 0.242952 -0.222165 0.228215 -0.279276 0.726475 -1.193763 -0.361409 0.301436 -0.357040 0.862188 1.036623 -0.140124 0.274345 -0.468501 0.903675 -0.061312 0.522919 -0.263259 0.877861 -0.146126 -1.360849 -1.190148 0.189961 0.634686 -0.841819 -1.415121 -1.326017 -0.454735 0.117338 -0.627784 1.065566 1.963325 -0.631842 -1.225848 1.134581 0.226678 0.481488 1.174525 0.298139 1.836499 -0.852289 0.139691 -0.114324 -0.090460 0.247914 0.197797 -0.365337 -0.777749 0.769678 -0.292369 -0.685638 1.066088 -0.043804 -0.382176 0.220303 -0.040037 -0.515325 -1.100008 1.345402 -0.004142 1.313540 -0.173032 1.786204 -0.723494 -0.914700 0.451558 -0.625405 -0.187837 -0.570811 -0.033321 -0.142190 0.850816 -0.970777 -0.894373 -0.150360 -0.221452 -0.423507 1.192144 0.254453 -0.037427 0.169167 -0.016790 0.815762 0.997841 -0.459341 0.210884 -1.143851 0.500442 0.979971 0.194565 -1.422945 -0.266249 -0.359541 -0.366865 0.338433 0.089915 0.750888 -0.550938 -0.301264 0.384148 -0.031962 0.407534 0.131292 -1.115265 0.464788 -0.199701 0.166039 0.376771 1.523787 1.106581 0.898902 0.251490 0.151600 -0.049676 -0.298107 -0.388695 -0.072041 0.206744 0.488565 0.647306 0.882163 0.620589 0.471223 1.002009 0.489048 -0.114749 1.128460 0.345366 1.620459 -0.637741 -0.239263 0.133388 -0.242342 1.159715 1.765849 -0.343515 -0.543173 0.683118 0.050102 -0.467935 -1.282030 -0.160836 -0.216440 -0.389329 0.889519 0.602426 -0.160204 -0.383437 1.945234 -0.146294 -2.014682 1.115270 0.474611 0.597926 0.516314 -0.273564 0.238143 0.839058 -0.407197 0.410234 0.794372 0.875769 -1.116943 -0.147560 0.083361 0.830795 0.232415 0.371810 -1.612926 0.148480 0.675012 1.461933 0.446569 0.869069 -0.707014 -0.248866 0.268833 -0.041357 0.062344 0.054864 0.658523 -0.660370 0.035485 -0.928919 -0.278107 +PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 2.705520 -2.810656 2.131900 -6.625308 -4.836717 -0.231494 -0.667000 -3.144921 -2.109913 3.723701 1.895902 -4.006171 -3.681547 7.116495 -0.316558 -4.813841 1.329555 -1.839368 1.605404 1.027815 -0.959182 3.468733 -0.724583 -1.965497 1.977916 -0.323242 -2.067285 4.565411 6.448072 -1.108524 -1.167220 -3.039641 0.013272 7.936943 2.144702 -3.024401 -1.013978 13.392709 -4.220428 7.169108 -4.515641 -4.803994 9.797256 -1.702352 -1.579327 -5.933988 -4.786102 5.641655 -4.550098 -4.252238 2.366100 0.669646 2.760367 -4.432623 -2.883920 4.941387 -9.693618 3.781761 4.333461 -1.305465 -1.341182 -1.213224 -1.780593 1.835574 -4.913528 -4.961197 0.226969 -1.726927 -3.824604 -2.891778 -3.879183 -2.964586 8.850066 2.961062 -2.273420 1.977357 1.544502 -4.374509 5.078332 -2.827924 -8.525686 -2.563176 -3.597812 -4.261461 7.486782 -0.493475 5.098546 -11.006563 4.233825 -12.229503 3.106511 -7.121662 3.091947 9.872488 -6.711165 5.659617 3.299844 4.564819 4.180524 -0.652496 7.662384 4.072590 0.369775 4.329768 5.603915 4.683063 -3.417952 -3.965406 -5.431029 -4.648622 0.673585 -3.709710 -11.632466 4.780007 -1.897659 0.600646 0.307977 0.608571 -3.024607 5.880354 -7.421327 1.052740 1.318142 -1.945678 1.562608 7.009723 -1.483077 -1.326049 -3.074248 6.986850 -2.569813 4.054670 2.262185 6.412525 -1.923210 -4.434354 -3.908320 1.988914 2.742096 -5.750045 -7.364113 -9.911105 -0.370937 -0.396664 -4.181663 7.122719 13.302459 -4.453609 -4.770044 8.270564 -0.011701 1.773840 6.033030 1.107264 9.313741 -1.824718 -4.982925 -1.988460 -4.806925 1.137873 3.061664 1.161364 -2.580871 5.227472 -2.071356 -3.561319 6.248830 0.175751 -3.891909 -1.364905 0.595740 -4.721510 -7.052028 7.910082 -3.520724 4.814717 0.155238 10.548747 1.950003 -4.105373 4.076332 -3.912868 -1.058222 -6.413892 -0.753220 0.235850 1.936224 -5.714296 -4.409258 -2.940977 0.069622 -4.680086 5.909983 -0.437275 1.819921 3.802906 1.801483 5.631622 6.295243 -1.358044 0.728857 -7.123469 3.296540 4.114366 -2.156952 -8.083430 -1.827404 -2.081490 -1.293910 3.441616 -1.015696 4.760742 -5.758016 -2.730396 1.501097 1.205244 1.272701 2.380449 -10.149926 2.357985 2.127368 3.869197 5.548369 8.415679 5.765586 6.868964 2.283107 5.117591 -1.476054 2.576959 -4.548128 -0.322292 -0.213055 2.836839 4.313122 6.054620 5.458558 4.751702 6.330866 4.558372 -0.105262 7.338565 0.603521 9.662755 0.465649 -4.360429 1.658035 0.701651 7.570169 9.925699 -0.440193 -1.720701 4.906484 -1.358818 -3.588944 -5.529921 2.750276 -1.183380 0.160967 4.514397 3.029774 2.097799 -1.731284 8.089029 -2.866258 -13.503588 6.305474 3.114504 5.572705 4.937639 1.210873 3.947916 2.268819 -3.789618 4.770249 6.920442 3.987479 -6.862636 1.952231 1.653612 4.321887 3.559909 5.402856 -11.575834 0.971101 2.191501 6.218800 1.398758 5.262000 -5.001826 -3.779572 3.979629 -0.908760 0.446874 -1.764298 2.240738 -4.106722 1.109896 -4.278203 -1.866169 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = 0.644094 -2.847012 1.545408 -6.026987 -5.759497 1.125695 -2.851852 -3.393042 -0.722771 -0.057359 2.753252 -2.562654 -1.535896 6.769374 -0.019650 -4.721219 0.158988 -0.494431 1.628849 1.467117 -0.078097 3.349436 -1.759267 0.176332 0.542613 -0.652991 -2.203361 2.626947 5.033425 -1.347208 -2.507411 -2.702502 -2.026904 6.151358 2.141483 -0.852154 0.453169 11.228729 -1.513889 5.547946 -4.473688 -3.440604 4.824398 -1.506982 -1.666641 -3.998537 -5.282599 3.020015 -4.668084 -1.120632 3.786024 -0.338394 2.153412 -0.974396 0.662005 2.004858 -7.339890 3.348948 3.511485 -0.634390 0.837486 -1.642227 -2.476220 1.012688 -3.791116 -2.869876 1.092834 1.229277 -1.561498 -2.553656 -1.360861 -4.176842 9.069290 3.255231 -2.831791 1.315395 2.810093 -5.147499 4.396307 -2.336958 -8.428719 -1.327246 -2.354829 -3.570395 7.022500 -0.982961 4.664980 -8.515083 3.747837 -10.571548 2.242108 -5.777887 2.308446 8.147317 -6.967657 2.406748 4.320593 4.512740 5.026402 0.389879 5.954640 3.268466 -1.466062 3.642234 4.433090 2.581594 -1.484435 -1.399653 -3.572130 -5.107845 -0.335571 -3.294233 -10.619188 3.128951 -0.275499 1.802026 -1.588889 1.677253 -1.078774 4.532438 -4.599627 0.479544 1.205526 -1.584038 1.117723 5.813005 -1.878560 -0.417671 -3.619978 5.813687 -4.283780 3.621491 -0.250249 4.416865 -1.948606 -3.136305 -6.262710 1.363983 2.101292 -4.826928 -5.951033 -6.256442 -0.641443 0.698596 -2.486701 6.742617 10.829414 -5.602580 -4.747045 7.837802 1.549619 1.084617 6.036472 1.158148 6.000962 -0.317687 -3.741598 -3.965796 -4.660831 -1.780237 -1.109169 2.204244 -1.011196 3.587882 -1.116481 -4.266157 8.669912 -0.316046 -4.965763 -2.083923 0.847279 -4.356368 -5.486568 6.710333 -1.282842 3.707311 1.259194 8.216923 0.445895 -3.670692 3.100988 -2.035117 -0.290737 -3.984600 -1.124134 1.110931 2.118668 -4.260224 -3.397838 -1.651918 -1.145494 -4.078515 2.450379 3.731151 1.519286 4.134433 2.188775 4.323888 8.100779 1.092852 0.303766 -5.128862 3.453143 3.319886 -3.283430 -5.068493 -0.583620 -2.071649 -0.501927 1.610768 -0.088357 3.868256 -4.823662 -2.780884 -1.218051 0.844851 3.359315 3.388279 -8.735769 1.919019 0.519720 3.354403 4.524223 4.161688 5.063735 6.902369 4.387581 2.945264 -0.892239 2.415944 -0.274485 -0.604302 1.401729 2.446043 3.153127 6.057437 5.165696 3.446395 4.648949 4.874454 2.144379 5.793685 0.551870 9.372034 1.236064 -2.738457 -0.224482 1.024293 6.429110 9.981092 -1.679080 2.247524 3.280335 1.136598 -2.310360 -6.598566 2.504077 -1.003414 -0.643305 2.295970 1.410250 1.647731 -2.191982 6.058215 -1.384003 -8.807020 4.292042 1.934564 4.217648 3.196592 1.931684 1.173450 1.429051 -5.201559 6.182541 5.902622 3.510816 -4.716311 -0.453090 1.038166 2.969379 2.625819 6.182388 -4.248368 2.820361 2.684903 4.474681 1.460734 2.322200 -4.037756 -4.139273 3.446380 -2.625833 -0.743896 -0.282974 1.073890 -3.491802 1.121239 -2.375877 -5.522471 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 1.469869 -1.909414 1.344741 -3.099015 -3.022917 1.118417 -1.409272 -1.518292 -0.588159 1.134682 1.078915 -0.637559 -0.408808 2.799173 0.098134 -2.419212 0.514402 -1.851626 0.764238 -0.382660 -0.287811 1.615991 -0.516712 -0.232823 0.248627 -0.890209 -1.129587 1.401930 1.697929 -0.995375 -0.646274 -1.432762 -1.670650 3.242562 1.303707 -1.158112 -0.005617 6.193127 -0.262465 1.711029 -2.264096 -2.558012 2.949001 -1.064030 -0.368475 -0.785698 -1.875416 2.090916 -0.836699 -0.927135 1.685789 -0.199190 1.500493 -0.827926 -0.853108 0.583597 -3.628931 1.038133 1.214249 -0.987700 -0.923107 -0.646677 -0.484012 1.310047 -2.006019 -1.986088 1.582004 0.913538 -0.927737 -1.374571 -0.692293 -2.065593 3.558922 1.661644 -0.409079 0.340186 1.610154 -2.073593 2.613896 -0.363038 -4.804214 -0.970646 -1.971564 -3.939604 3.772670 -1.041282 3.167917 -5.075711 3.679879 -5.965821 1.209044 -2.393724 1.281767 4.031143 -2.916512 1.678988 2.354124 4.017068 2.345290 -0.832692 3.666890 1.398824 -0.422598 2.810158 2.803266 0.984949 -0.938940 -0.379015 -2.331601 -2.645140 0.307515 -2.395139 -4.491358 2.517786 0.104419 -0.319907 -0.758840 1.012901 -0.998649 3.087237 -3.386608 0.148699 0.735434 -0.871246 0.297070 2.011123 -1.579522 -0.067327 -1.480235 3.477702 -2.659394 1.917679 0.537087 2.648182 -0.670471 -0.171189 -2.907693 1.557248 1.692842 -2.793423 -3.404029 -3.238534 -0.259015 0.463968 -1.897629 5.451502 6.077480 -2.842177 -2.620545 3.864132 0.456503 -0.008278 3.021035 0.508752 2.977860 -0.274803 -2.600483 -2.007606 -2.149991 -0.262405 -1.579543 1.212794 0.262191 2.723765 -0.380392 0.194126 5.294160 -0.569002 -2.691970 -0.428537 0.918335 -2.037150 -2.866256 2.867751 0.398148 1.783198 2.309459 4.609626 0.658589 -1.522617 1.551122 -1.377915 -0.517804 -1.850371 -0.123063 -0.348629 0.864269 -1.600362 -2.042748 -1.542341 -1.223636 -2.100567 1.362217 2.762712 1.947776 2.712886 1.238281 2.209123 4.352446 1.161348 -0.458345 -3.086623 1.728736 2.340770 -1.244404 -1.126600 -1.411522 -0.779586 -0.013865 1.159896 0.310513 2.888238 -2.775784 -1.242590 -0.655816 1.621235 1.214827 2.241281 -5.534763 0.837133 1.043634 2.011369 1.874992 2.864780 2.697397 3.590134 2.333875 1.428852 -0.498799 1.709709 -0.589479 -1.210605 0.514413 2.099166 1.707913 2.972222 2.777370 2.357589 3.269357 2.801554 1.126157 3.075943 -0.559221 5.181154 -0.639763 -1.302223 -0.612646 1.048764 3.549416 5.068764 -0.219173 0.919959 1.861360 0.454896 -1.677608 -3.380559 1.753217 -0.869375 1.919301 -0.414700 1.610016 0.976066 -1.558624 3.088863 -0.308685 -5.413430 3.015971 1.176659 2.687743 2.947233 0.876144 1.315520 0.142666 -2.827296 3.185927 3.834311 1.343510 -2.855454 0.888835 0.870228 2.385836 -0.555820 3.514929 -2.260680 2.291024 1.029799 1.855861 0.579551 1.033224 -2.763353 -2.384016 2.167435 -1.972077 -0.153436 1.682030 0.821065 -2.563098 1.222268 -1.702689 -1.984714 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.011005 -0.135638 0.230562 -0.431515 -0.508900 0.091828 -0.118729 -0.261418 -0.085268 -0.171014 0.162536 -0.107052 -0.278966 0.505661 -0.094829 -0.510816 -0.106966 -0.009621 -0.021263 -0.004810 -0.064892 0.267452 -0.144422 0.021185 0.106621 -0.143511 -0.097643 0.245787 0.265169 -0.193725 -0.103326 -0.248092 -0.100050 0.542447 0.143422 0.215521 0.011038 0.929620 0.097096 0.487399 -0.536644 -0.462812 0.404765 -0.146068 -0.051765 -0.514410 -0.391829 0.264383 -0.498208 0.016740 0.289400 -0.003019 0.029396 -0.111083 0.191440 0.179506 -0.666208 0.418127 0.224742 -0.224129 -0.037652 -0.143078 -0.315759 -0.062336 -0.089670 -0.270054 0.015960 0.281829 -0.203921 -0.020099 -0.009308 -0.345951 0.958331 0.196709 -0.224829 0.180135 0.267658 -0.208250 0.333011 -0.326445 -0.640135 -0.191243 0.039819 -0.016012 0.514945 0.081185 0.301222 -0.768682 0.158789 -0.837430 0.287370 -0.452413 0.235395 0.561090 -0.497053 0.336093 0.392826 0.044808 0.314461 0.155950 0.466470 0.163203 -0.001098 0.335135 0.315289 0.069498 -0.104831 -0.227718 -0.332183 -0.481999 -0.013705 -0.186049 -0.901774 0.167689 0.020112 0.372905 -0.168557 0.227816 0.068712 0.166979 -0.539870 0.118771 0.236355 -0.138416 0.196582 0.373049 -0.148314 0.007750 -0.282127 0.454267 -0.417278 0.306323 -0.122195 0.364475 0.073863 -0.473139 -0.647366 0.035879 0.145551 -0.313717 -0.480841 -0.398860 -0.121263 0.275002 -0.243505 0.396163 0.966731 -0.501106 -0.480850 0.626425 0.249398 0.212954 0.406807 0.209581 0.460785 -0.043437 -0.277213 -0.292916 -0.341817 0.011269 -0.204155 0.182957 -0.226374 0.375022 0.043869 -0.509401 0.705402 -0.208624 -0.400567 -0.086840 0.034654 -0.352116 -0.323774 0.515319 0.151735 0.497733 0.024821 0.693342 -0.173941 -0.414535 0.096090 -0.265123 -0.020423 -0.268231 -0.020241 0.050622 0.167490 -0.511926 -0.322357 -0.103108 -0.243184 -0.288621 0.186904 0.268793 0.060962 0.238933 0.188134 0.346968 0.675613 0.117789 -0.004785 -0.483542 0.282521 0.162756 -0.091077 -0.536763 0.007913 -0.063678 -0.089187 0.180546 0.046516 0.213599 -0.118360 -0.088467 -0.108424 -0.122869 0.237284 0.236032 -0.295075 0.012433 0.065227 0.253006 0.255099 0.316421 0.635184 0.532799 0.363174 0.278901 -0.013617 0.054364 0.172161 -0.031783 0.155897 0.250713 0.261174 0.406538 0.465384 0.180321 0.453457 0.430384 0.198434 0.502738 0.119735 0.898157 -0.134052 -0.200087 -0.036275 0.153487 0.510418 0.767561 -0.280766 0.278672 0.304692 0.209588 -0.058996 -0.507030 0.149824 -0.102388 -0.191157 0.440585 0.201139 0.010862 -0.149480 0.584178 -0.122338 -0.673249 0.379829 0.158459 0.327220 0.088485 0.153423 -0.038341 0.264716 -0.410638 0.336025 0.397549 0.357942 -0.499332 -0.190952 0.036927 0.254800 0.213909 0.491795 -0.307516 0.069244 0.279111 0.454751 0.024839 0.079900 -0.307656 -0.419032 0.241911 -0.226240 -0.109901 0.148141 0.049907 -0.174016 0.008367 -0.206224 -0.537914 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 0.351709 -1.530827 0.505477 -2.370013 -2.231531 1.081756 -1.697030 -1.719173 -0.360492 -0.409396 0.794561 -0.408730 -0.305485 2.389833 -0.116100 -2.329835 -0.093107 0.089935 0.594846 0.361791 -0.445461 1.320180 -1.062706 0.120139 0.262481 -0.790693 -0.468702 0.922142 1.590858 -0.331039 -1.069830 -1.359854 -1.507206 2.913508 1.409974 0.379083 0.487637 4.960284 0.466168 2.215068 -1.841642 -1.898601 1.684163 -0.652142 -0.651737 -0.543291 -1.688865 0.959918 -2.351690 0.246055 1.725063 -0.706599 0.797981 0.006381 0.680781 0.397222 -2.715212 1.305978 1.155966 -0.391036 -0.223348 -1.236727 -0.949214 0.230070 -1.623643 -1.236086 0.845241 1.540743 -0.624314 -0.834285 -0.575272 -2.115605 3.936723 1.631646 -1.298556 0.275844 1.101945 -1.847676 1.422732 -0.453640 -3.831130 -0.712153 -0.638853 -1.873239 3.137548 -0.113629 2.353432 -3.920479 2.099749 -4.731005 0.767596 -1.969094 1.483125 3.459247 -3.070595 1.023487 2.023858 2.718412 1.560895 -0.094148 2.501844 0.921573 -1.385008 1.607808 1.948796 0.577753 -0.440852 -0.601544 -1.233339 -2.020085 -0.251764 -1.584732 -4.499318 1.131145 -0.472543 1.482469 -1.390569 1.477164 -0.768827 1.425370 -2.795393 -0.318580 0.164653 -0.754524 1.248987 1.711828 -0.811464 0.284775 -1.268317 2.480490 -2.142673 0.961018 -1.096632 1.890833 -0.531752 -0.220394 -3.418783 0.521633 1.430397 -2.015281 -2.938522 -2.152458 -1.009061 1.008315 -1.002355 3.873152 4.699226 -2.659851 -2.110370 3.361759 -0.280161 0.902260 2.920787 0.777590 1.834344 -0.234033 -1.166297 -1.780214 -1.525236 -0.966347 -1.996863 0.806731 -0.396445 1.741732 -0.322547 -0.031156 4.100729 -0.397762 -2.374689 -1.786466 0.301396 -1.690966 -2.005123 3.046641 -0.892546 1.622202 0.803440 3.599468 -0.504236 -1.562765 0.893694 -1.488000 -0.282381 -1.597714 -0.259023 -0.311569 1.130834 -2.103436 -1.733854 -0.207077 -0.562976 -1.583740 0.864194 3.136580 0.410870 1.558553 0.947834 2.470749 3.910723 0.856771 -0.328391 -1.986411 1.513332 1.655067 -1.558043 -1.141238 -0.351035 -0.512656 -0.448436 0.543817 0.362377 1.456641 -2.191020 -0.883110 -1.100243 0.881137 2.000263 1.932799 -3.943676 0.953215 0.395864 0.775746 1.967840 1.514692 2.396015 2.961532 2.169438 0.654717 -0.100076 0.741186 0.368924 -0.314560 1.144444 1.785930 1.242213 2.730754 2.358360 1.348873 1.624962 2.334221 1.526353 2.360334 0.378292 4.604024 0.082315 -0.861124 -0.425948 0.504278 2.650111 4.282448 -1.568576 1.765148 1.393131 0.834457 -0.787872 -3.147456 1.181970 -0.618570 0.029066 0.110322 0.428880 0.523546 -1.292188 3.095613 -0.512347 -3.586685 1.822557 0.941302 1.786428 1.348897 0.720269 0.213263 0.623239 -2.513494 3.034315 2.493853 1.419998 -1.897908 0.359320 0.275378 1.274839 0.616320 2.410626 -0.073243 1.677010 1.085638 2.206106 1.161936 0.255840 -1.423504 -1.617078 1.247650 -1.829025 -0.192771 0.606732 0.777563 -0.993277 0.727299 -1.231142 -3.054759 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.265086 -1.597937 0.805536 -2.807015 -2.754458 1.095202 -1.653429 -2.026871 -0.421180 -0.229478 1.015090 -0.617480 -0.421858 2.889096 -0.224699 -2.618422 -0.143664 0.201861 0.584911 0.222532 -0.460176 1.595718 -1.193977 0.103793 0.330706 -0.984321 -0.453544 1.277618 1.726056 -0.287841 -1.035131 -1.611959 -1.552319 3.425086 1.559906 0.468711 0.372181 5.738320 0.116017 2.722401 -2.394542 -2.282452 2.167868 -0.735736 -0.672264 -1.147540 -2.193937 1.192012 -2.605452 0.136739 1.905981 -0.715930 1.062050 -0.156369 0.782518 0.566708 -3.160748 1.421596 1.404871 -0.857532 -0.395491 -1.306903 -1.125124 0.375171 -2.061566 -1.504371 0.868580 1.695204 -0.605878 -0.875662 -0.613360 -2.525307 4.517013 1.719678 -1.502489 0.411906 1.280050 -2.235658 1.777767 -0.490320 -4.373656 -0.924053 -0.650983 -2.165539 3.452738 -0.114632 2.828904 -4.644446 2.198056 -5.489715 1.037953 -2.344085 1.689226 3.948398 -3.450893 1.349410 2.330931 2.932378 1.883547 -0.046484 2.845751 1.189473 -1.203303 1.912094 2.359024 0.881019 -0.646217 -0.961775 -1.677829 -2.472351 -0.126179 -1.911442 -5.273402 1.318495 -0.475851 1.441739 -1.566160 1.470958 -0.750690 2.068919 -3.157842 -0.023087 0.481404 -0.889098 1.222069 2.091452 -0.903390 0.297262 -1.454387 2.831564 -2.527585 1.302570 -1.129055 2.287240 -0.729678 -0.551922 -3.828025 0.634826 1.519127 -2.330720 -3.344993 -2.640505 -1.160202 1.286513 -1.213508 4.113307 5.564517 -3.132878 -2.673190 3.839239 0.045480 0.807154 3.158430 0.974130 2.352012 -0.344218 -1.410078 -2.251086 -1.850447 -0.831567 -1.468400 0.937507 -0.643526 2.195087 -0.435250 -0.766572 4.931324 -0.582704 -2.689905 -1.850798 0.477069 -1.966087 -2.258226 3.542580 -1.035086 2.090515 0.576904 4.211301 -0.691077 -1.893408 0.949233 -1.876644 -0.361883 -1.921266 -0.210833 -0.187156 1.436114 -2.392260 -2.033770 -0.444941 -0.883741 -1.778192 1.109989 2.920214 0.471892 1.758974 1.030934 2.815604 4.466163 0.980835 -0.393890 -2.340805 1.800709 1.899727 -1.514888 -1.766052 -0.468910 -0.653266 -0.570177 0.391778 0.422541 1.813193 -2.437920 -0.895540 -1.159806 0.710233 2.032926 2.061109 -4.616384 1.132758 0.362645 1.158206 2.124771 1.870529 2.973660 3.498902 2.479168 0.922738 -0.173142 0.654953 0.267048 -0.159634 1.396306 1.765148 1.495401 3.325929 2.752347 1.589490 2.081267 2.644277 1.787721 2.823602 0.334608 5.336031 -0.001160 -0.977127 -0.422570 0.714861 3.091006 5.023926 -1.317710 1.796357 1.648324 0.920991 -1.051345 -3.638199 1.313710 -0.668221 0.000273 0.547527 0.771697 0.444783 -1.443719 3.669794 -0.560635 -4.293588 2.142076 1.069052 2.102193 1.545456 0.763776 0.306970 0.854777 -2.670390 3.454084 2.889964 1.690877 -2.443929 0.097462 0.348258 1.491748 1.148253 2.809379 -0.915118 1.803390 1.258312 2.660311 1.020715 0.779029 -1.812165 -1.768502 1.526565 -1.993190 -0.285016 0.689075 0.831307 -1.264768 0.837389 -1.634220 -3.399129 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.006340 -0.126282 0.232674 -0.437585 -0.414957 0.034740 -0.094959 -0.280054 -0.086310 -0.174032 0.169191 -0.192120 -0.294455 0.479726 -0.101564 -0.535785 -0.085589 0.060232 -0.094885 -0.058849 -0.065756 0.179303 -0.113138 -0.138065 0.120793 -0.165794 -0.005562 0.305082 0.285426 -0.171265 -0.076861 -0.221314 0.013109 0.607492 0.126335 0.249533 -0.040441 0.872690 0.105551 0.480830 -0.590258 -0.477764 0.567695 -0.150686 -0.076846 -0.556621 -0.394401 0.292840 -0.569953 -0.014391 0.155319 -0.000734 0.037065 -0.285442 0.072565 0.299920 -0.671138 0.441394 0.240624 -0.297418 -0.170850 -0.143367 -0.236561 -0.042404 -0.087930 -0.329864 0.007287 0.245844 -0.274242 0.040081 -0.096655 -0.377723 1.037338 0.149708 -0.185330 0.211561 0.153517 -0.177486 0.313344 -0.244605 -0.540868 -0.254000 0.147275 0.042185 0.473042 0.116660 0.306216 -0.821548 0.057210 -0.842510 0.342578 -0.466192 0.298722 0.526859 -0.539851 0.409878 0.303009 -0.016944 0.212011 0.194986 0.454054 0.113334 0.079438 0.237307 0.370153 0.074376 -0.105032 -0.342085 -0.295543 -0.479131 -0.010796 -0.198932 -0.980009 0.191991 -0.135611 0.368929 -0.160146 0.195832 0.066373 0.188144 -0.551350 0.114023 0.268534 -0.151886 0.248591 0.384631 -0.121833 0.013325 -0.235892 0.415379 -0.292777 0.225613 -0.104672 0.399422 0.100492 -0.573382 -0.609400 0.036133 0.167135 -0.336348 -0.534509 -0.404517 -0.166620 0.303297 -0.252531 0.366081 0.953595 -0.414049 -0.546246 0.550662 0.258892 0.249299 0.447765 0.238920 0.609608 -0.192533 -0.143708 -0.229650 -0.236773 0.159981 -0.175928 0.040393 -0.347833 0.417639 0.000950 -0.538002 0.701517 -0.190738 -0.266069 -0.007734 0.025892 -0.354237 -0.370230 0.556220 0.179677 0.625302 -0.057190 0.760201 -0.298718 -0.468566 0.109789 -0.258789 -0.090379 -0.226386 -0.008014 0.008243 0.250973 -0.531043 -0.380607 -0.107496 -0.240360 -0.202824 0.354576 0.267697 0.009243 0.140151 0.073354 0.328580 0.571394 -0.018424 0.018686 -0.525103 0.257872 0.269511 0.006844 -0.602235 -0.025463 -0.085382 -0.118400 0.151282 0.065840 0.270473 -0.118560 -0.076706 -0.027918 -0.122218 0.191954 0.097570 -0.296387 0.040296 0.040726 0.201240 0.227098 0.465166 0.675926 0.475824 0.236010 0.234340 -0.014880 -0.068788 0.095771 -0.024025 0.101613 0.280519 0.278637 0.419031 0.394898 0.183567 0.509701 0.382902 0.128837 0.541062 0.167129 0.857996 -0.184380 -0.176771 0.023552 0.068330 0.551306 0.792849 -0.288797 0.120287 0.329749 0.209636 -0.068109 -0.582039 0.030128 -0.073614 -0.247655 0.543093 0.219686 -0.032577 -0.158067 0.689808 -0.068041 -0.736555 0.449115 0.173109 0.306404 0.083000 0.009385 -0.025841 0.343947 -0.304893 0.215583 0.330703 0.384285 -0.565259 -0.174713 0.043665 0.324073 0.223348 0.377357 -0.375830 0.059382 0.297477 0.548739 0.057114 0.121864 -0.323960 -0.320130 0.149243 -0.149821 -0.052385 0.087443 0.055934 -0.222359 -0.041042 -0.278512 -0.448101 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.295638 -0.525348 0.433287 -0.935184 -0.887185 0.205317 -0.259849 -0.406144 -0.171724 0.081324 0.263762 -0.239532 -0.285041 0.982433 -0.018272 -0.866104 0.050086 -0.393599 0.084831 -0.029451 -0.106473 0.551083 -0.174137 -0.050571 0.216567 -0.267080 -0.304253 0.497970 0.496478 -0.392060 -0.151447 -0.448371 -0.368369 1.062178 0.264766 -0.021333 0.002263 1.962564 0.024755 0.819394 -0.814382 -0.854272 0.957213 -0.336689 -0.144875 -0.526468 -0.666210 0.625171 -0.503573 -0.231246 0.483658 0.041570 0.214432 -0.353095 -0.023757 0.305597 -1.262345 0.479862 0.404870 -0.321796 -0.277933 -0.254306 -0.349233 0.123772 -0.541396 -0.617017 0.294148 0.305726 -0.420869 -0.223337 -0.127996 -0.617467 1.439193 0.498434 -0.220214 0.293115 0.525796 -0.552094 0.777457 -0.316599 -1.363342 -0.362197 -0.325026 -0.814669 1.168112 -0.159738 0.840348 -1.602140 0.880654 -1.753337 0.460925 -0.910137 0.433755 1.294903 -0.944277 0.699623 0.694164 0.891057 0.603433 -0.012658 1.107167 0.429084 -0.060721 0.802177 0.808032 0.237964 -0.308146 -0.322622 -0.715590 -0.862012 0.074099 -0.647753 -1.588343 0.611102 0.034992 0.231031 -0.197732 0.420897 -0.161520 0.708616 -1.150805 0.156008 0.370362 -0.288031 0.167982 0.677059 -0.426228 -0.096797 -0.556346 1.047908 -0.761539 0.620091 0.024828 0.792329 -0.123875 -0.311996 -0.924154 0.225064 0.363860 -0.769313 -1.057403 -0.980861 -0.167218 0.357250 -0.564839 1.432030 1.949197 -0.862735 -0.854990 1.256524 0.298722 0.253635 0.837205 0.266450 0.926525 -0.100306 -0.723594 -0.575125 -0.610551 0.035448 -0.482067 0.373206 -0.181335 0.802357 -0.078752 -0.370580 1.687016 -0.281542 -0.744355 -0.171453 0.183148 -0.710425 -0.865455 1.050750 0.139997 0.846497 0.398632 1.458648 0.024011 -0.588556 0.411450 -0.524296 -0.109520 -0.700061 -0.031361 -0.093721 0.289951 -0.737399 -0.680277 -0.369030 -0.430580 -0.614042 0.436291 0.685277 0.411787 0.626631 0.401444 0.742359 1.283575 0.224518 -0.087832 -1.061063 0.532831 0.580579 -0.310050 -0.615706 -0.187995 -0.137604 -0.097128 0.346441 0.094719 0.654011 -0.669110 -0.331909 -0.166889 0.248856 0.332452 0.521064 -1.396362 0.132831 0.283279 0.578527 0.588636 0.821908 1.105231 0.998953 0.640370 0.490533 -0.114614 0.367435 -0.127844 -0.231981 0.125606 0.637380 0.527911 0.898291 0.904101 0.572631 0.994788 0.892936 0.312999 0.991827 0.082030 1.714620 -0.158348 -0.493285 -0.080622 0.297640 1.097771 1.553489 -0.269104 0.378975 0.660167 0.282550 -0.403085 -1.029258 0.366699 -0.261666 0.192494 0.285356 0.338367 0.116927 -0.315480 1.069182 -0.164611 -1.623560 0.842788 0.359368 0.790270 0.613956 0.293966 0.269080 0.335536 -0.870356 0.838377 0.967001 0.515013 -0.932470 0.064573 0.196094 0.655090 0.087644 1.060820 -0.665860 0.505164 0.379841 0.735787 0.132400 0.263015 -0.688649 -0.745864 0.559065 -0.536848 -0.146954 0.422096 0.177572 -0.613920 0.204460 -0.595787 -0.804244 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = 0.349351 0.150373 0.689204 -0.887578 -0.770208 -0.138381 0.835972 -0.820234 -0.488473 1.370256 0.233832 -0.789492 -1.024805 1.006473 -0.251987 -0.815827 -0.120997 -0.499490 -0.363606 -0.466564 -0.372275 0.582629 -0.243275 -0.615889 0.489414 -0.267910 0.245159 1.128946 0.097774 0.075032 0.324210 -0.577569 0.416876 1.681064 0.399834 0.161985 -0.478977 2.109925 -1.368803 1.665187 -1.773096 -1.711045 2.207676 -0.193915 -0.094051 -1.677350 -0.337249 1.116508 -0.859891 -0.707481 -0.037871 0.091276 0.284072 -1.148976 -0.385410 1.242286 -1.945719 0.830794 0.613862 -1.212147 -1.294720 -0.253350 -0.022026 0.309852 -0.993765 -1.106048 -0.169433 -0.261342 -0.638653 0.308087 -0.775371 -0.835771 1.295522 0.218325 -0.396066 0.394720 -0.263578 -0.378110 0.892986 -0.532143 -1.001173 -0.792809 0.195572 -0.520447 0.701298 0.602141 0.917744 -2.290415 0.120640 -2.028172 0.867417 -1.068305 0.810304 1.374917 -0.573939 1.459478 0.310977 0.126478 0.287746 -0.202337 0.963812 0.470601 1.061610 0.754134 0.948810 1.161759 -1.099296 -1.536015 -1.254936 -0.939541 0.529606 -0.544256 -1.861673 0.543377 -0.668271 0.156873 0.197233 -0.153849 -0.309513 1.330301 -2.089079 0.375241 0.592726 -0.318821 0.694764 0.914519 -0.005962 0.123547 -0.228989 1.029125 -0.207200 0.805903 0.080545 1.206031 -0.347505 -1.046638 -0.678916 0.365073 0.431793 -0.879689 -1.289083 -2.005410 -0.474618 0.786889 -0.786349 0.929530 2.449537 -0.756928 -1.501413 1.233738 -0.016750 0.206394 0.623900 0.458423 1.846831 -0.819685 -0.318633 -0.323221 -0.347890 0.936241 2.013542 -0.177344 -1.219294 1.252049 -0.280511 -0.949943 0.971959 -0.206493 -0.419273 -0.245843 0.142226 -0.707855 -0.776079 1.388510 -0.887770 1.621621 -0.916741 1.918496 -0.757222 -0.831511 0.365206 -1.851940 -0.434240 -1.240553 -0.127464 -0.065194 0.796651 -1.376887 -0.878517 -0.740431 -0.425601 -0.567673 1.470057 -1.295960 -0.019458 0.130390 0.031789 1.470369 0.776101 -0.525167 -0.234167 -1.307995 0.535621 0.752481 0.496233 -2.105784 -0.432967 -0.356571 -0.537852 0.491476 0.001358 0.911144 -0.576053 0.159433 0.662763 -0.379069 -0.220519 -0.054869 -1.448913 0.466313 0.137505 0.653564 0.521099 1.779334 1.383818 1.019319 0.138664 0.899933 -0.152441 -0.493707 -0.975972 0.406199 0.331197 0.233987 0.857099 1.221815 0.823778 0.651715 1.311993 0.720192 -0.222880 1.441282 0.144823 1.776124 -0.900725 -0.360422 0.436975 0.337863 1.105842 1.472727 -0.083338 -0.838954 0.907054 -0.329383 -0.757143 -0.589728 -0.126338 -0.386576 -0.139766 1.472975 1.042895 -0.359851 -0.179921 2.224128 -0.260222 -2.514483 1.219909 0.609582 0.880668 0.548630 -0.353930 0.496601 1.099043 -0.127477 0.467185 1.002470 0.858709 -1.698709 -0.062670 0.146789 0.932066 1.299247 0.497351 -3.110902 -0.415693 0.422810 1.715450 -0.091809 1.798134 -0.949584 -0.195134 0.415922 -0.037034 0.072586 0.019662 0.601220 -0.348975 0.287379 -1.635883 -0.063692 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.953811 -0.693564 0.907698 -2.469885 -1.846678 0.043751 -0.251555 -1.447783 -0.654161 0.962725 0.802329 -1.549107 -1.250843 2.708239 -0.471938 -1.973892 0.279100 -0.712065 0.140398 0.007651 -0.392064 1.166692 -0.433199 -0.936717 0.687152 -0.354891 -0.347661 1.733233 2.031751 -0.467113 -0.640385 -1.040755 0.099899 3.279819 0.902889 -0.687890 -0.176040 4.918781 -1.177820 2.524367 -2.345551 -2.036583 3.584412 -0.592509 -0.638297 -2.575700 -1.898877 1.892645 -2.152261 -0.863164 0.761394 -0.058322 0.711705 -1.673960 -0.696002 2.095480 -3.874260 1.936628 1.477507 -0.609416 -0.847255 -0.793796 -0.449345 0.398571 -1.495292 -1.935677 0.269787 0.016901 -1.542121 -0.410805 -1.473033 -1.634638 3.793643 1.020119 -0.982048 0.706175 0.311605 -1.844492 1.772186 -1.250852 -2.961427 -1.035839 -0.466211 -1.112910 2.801793 0.012487 1.759804 -4.398682 1.037477 -4.669403 1.207326 -2.770663 1.497794 3.512787 -2.790250 2.037351 1.035572 1.335218 1.367784 0.154846 2.752119 1.272389 0.389999 1.204380 2.108583 1.561668 -1.039380 -1.611849 -1.652873 -1.905312 -0.027424 -1.155080 -4.852132 1.494228 -1.149774 0.561531 -0.243942 0.351570 -0.876621 2.112916 -2.953054 -0.041160 0.601453 -0.764738 1.069594 2.524270 -0.540425 -0.086811 -1.232767 2.579173 -0.744558 1.297371 0.093846 2.215901 -0.731262 -2.407963 -2.286574 0.556149 1.144053 -2.103282 -3.145162 -3.429522 -0.574002 0.155079 -1.439816 2.727340 4.932061 -1.615412 -2.376210 3.119614 0.302973 0.894911 2.710455 0.585259 3.651819 -1.155458 -1.007857 -0.778645 -1.252832 0.360837 0.398228 -0.028373 -1.334223 1.852684 -0.611463 -1.637919 2.763615 -0.051754 -1.308574 -0.503553 0.091025 -1.761532 -2.566918 3.339753 -0.835121 2.452894 -0.217541 4.176269 -0.374014 -2.061249 1.348346 -1.560759 -0.316789 -1.985416 -0.253371 -0.012041 1.288603 -2.360328 -1.949099 -0.742354 -0.178205 -1.466885 2.338338 0.512543 0.352881 0.990482 0.505956 2.116573 2.565012 -0.707388 0.463566 -2.723292 1.244534 1.956792 -0.449093 -3.361640 -0.439438 -0.796125 -0.609283 0.978180 -0.077145 1.703730 -1.926560 -1.000579 0.486960 0.185596 0.830769 0.698686 -3.486766 1.019790 0.119013 1.045500 1.716931 3.108768 2.619370 2.379031 0.854922 1.250386 -0.307402 0.165792 -1.039413 -0.002595 0.357646 1.071233 1.549984 2.567320 1.888515 1.446788 2.284212 1.834568 -0.031395 2.786852 0.665805 3.909387 -0.406694 -1.173779 0.364966 0.001168 2.903587 4.152388 -0.626913 -0.610021 1.761191 0.057185 -1.022970 -2.671316 0.386619 -0.522911 -0.404997 1.813769 0.960828 0.181858 -0.672440 3.637240 -0.677648 -4.749401 2.472640 1.148659 1.794860 1.341742 0.003429 0.865490 1.373536 -1.507815 1.691789 2.254814 1.712414 -2.517395 0.034628 0.411525 1.800490 1.191831 1.778840 -3.719374 0.611638 1.238114 2.820900 0.803321 1.795008 -1.732563 -1.339207 1.048215 -0.411076 0.043192 -0.289982 0.990666 -1.721217 0.376185 -1.709382 -1.246724 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = 0.041213 -0.119471 0.231822 -0.415817 -0.394029 -0.022075 0.036200 -0.145523 -0.080927 -0.110519 0.072275 -0.118057 -0.232267 0.507141 -0.075402 -0.456182 -0.094284 -0.148715 -0.106698 -0.003102 -0.073745 0.295750 -0.097277 -0.002998 0.210661 -0.122151 -0.103792 0.263165 0.151825 -0.297331 -0.004621 -0.207838 -0.044558 0.527690 0.007379 0.189987 -0.000204 0.924219 0.077964 0.457587 -0.462493 -0.474206 0.480135 -0.171611 -0.086381 -0.464780 -0.329657 0.280658 -0.328055 -0.031050 0.175063 0.108727 -0.108187 -0.246494 0.147212 0.214589 -0.692702 0.360330 0.216519 -0.186407 -0.171899 -0.152084 -0.264442 -0.160891 -0.136980 -0.290370 0.019190 0.160208 -0.278831 0.056810 0.025237 -0.269381 0.865372 0.198937 -0.116005 0.287446 0.235245 -0.187492 0.349697 -0.311556 -0.516623 -0.215315 0.102872 -0.087531 0.506782 0.039048 0.248997 -0.749243 0.207012 -0.714601 0.245611 -0.511524 0.217090 0.591865 -0.427193 0.462882 0.287668 0.121322 0.189932 0.144813 0.493366 0.160373 0.085398 0.350170 0.291614 0.069814 -0.153920 -0.274109 -0.344894 -0.446032 0.032040 -0.193891 -0.827810 0.182845 0.027259 0.248061 -0.059383 0.228584 0.052244 0.201217 -0.604186 0.117390 0.297901 -0.142097 0.103133 0.342532 -0.141422 -0.105029 -0.325500 0.436254 -0.304764 0.322019 -0.077155 0.341905 0.035949 -0.371273 -0.458744 -0.091932 0.038245 -0.296736 -0.463710 -0.404692 -0.125247 0.278036 -0.259350 0.468475 0.953555 -0.399796 -0.463191 0.622677 0.305484 0.272071 0.304132 0.202085 0.438504 -0.051580 -0.288869 -0.218065 -0.244097 0.136972 -0.248509 0.169283 -0.251795 0.336657 0.030040 -0.435839 0.781044 -0.209429 -0.272265 -0.010546 0.046810 -0.383045 -0.387304 0.553327 0.213538 0.630414 0.002329 0.689689 -0.145681 -0.355608 0.124822 -0.286808 -0.003857 -0.397912 -0.006543 -0.035049 0.149014 -0.459499 -0.332005 -0.100769 -0.259529 -0.264961 0.208637 0.179623 0.094980 0.121375 0.186409 0.306440 0.566081 -0.006822 0.010931 -0.573248 0.244268 0.172785 -0.027869 -0.494442 0.067596 0.018951 -0.116409 0.181831 0.031430 0.151503 -0.114915 -0.085163 -0.016722 -0.069080 0.090894 0.095332 -0.370866 -0.032361 0.035967 0.249175 0.225369 0.335179 0.711559 0.383791 0.234057 0.256657 -0.021971 0.028965 0.022319 -0.032632 0.016851 0.300473 0.264268 0.406324 0.459984 0.169106 0.464493 0.419794 0.083606 0.502248 0.170513 0.897771 -0.136318 -0.274311 0.008315 0.150079 0.501969 0.695240 -0.228502 0.190903 0.359145 0.246822 -0.104590 -0.465388 0.041456 -0.111488 -0.154484 0.406043 0.095822 -0.111596 -0.009855 0.581539 -0.127880 -0.697760 0.337250 0.157426 0.336153 0.022315 0.150480 0.002575 0.389616 -0.384926 0.238131 0.293713 0.321218 -0.491193 -0.128313 0.050504 0.301125 0.123502 0.474283 -0.344618 0.101134 0.222201 0.421028 -0.004563 0.102413 -0.216326 -0.365721 0.204452 -0.150266 -0.139282 0.204402 0.048476 -0.206302 0.000295 -0.308141 -0.464843 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.161116 0.136376 0.446847 -0.631579 -0.681238 -0.071748 0.211957 -0.209458 -0.153026 0.072225 0.185152 -0.090875 -0.285523 0.548698 -0.169679 -0.510134 -0.225749 -0.718880 -0.291887 -0.267666 -0.135600 0.414998 -0.136429 0.003813 0.307933 -0.183248 -0.173699 0.398048 0.046411 -0.661960 0.116785 -0.255985 -0.011618 0.723146 -0.036483 -0.061653 -0.006080 1.279712 -0.065490 0.007524 -0.607433 -0.762798 0.770966 -0.290482 -0.177049 -0.705507 -0.338421 0.482563 -0.088095 0.023764 0.212073 0.222099 -0.144310 -0.412733 0.046570 0.296754 -1.040730 0.538286 0.346388 -0.378883 -0.454916 -0.148446 -0.163787 -0.192419 0.008621 -0.451943 0.207628 0.124224 -0.288263 0.048394 0.102179 -0.411641 1.016348 0.187807 0.126007 0.448239 0.241438 -0.325817 0.615248 -0.365166 -0.680779 -0.303546 0.221666 -0.305804 0.638420 -0.106791 0.205677 -1.028077 0.238104 -0.948047 0.219512 -0.602934 0.236265 0.670751 -0.454857 0.674757 0.368223 0.071510 0.258548 -0.011607 0.754617 0.063443 0.443623 0.658477 0.316907 0.150206 -0.254466 -0.262509 -0.654108 -0.723891 0.146298 -0.184066 -0.957644 0.435168 0.083510 -0.255414 -0.011074 0.057760 0.128866 0.657873 -0.691213 0.141345 0.522084 -0.183480 -0.052042 0.524912 -0.198328 -0.179706 -0.423554 0.553893 -0.433209 0.603363 0.019886 0.486391 0.225450 -0.682005 -0.641166 -0.080270 0.042582 -0.490569 -0.552301 -0.451729 -0.041988 0.108761 -0.454790 0.650259 1.404160 -0.622347 -0.819900 0.886141 0.721971 0.210205 0.361624 0.242994 0.729540 -0.063572 -0.526844 -0.305877 -0.408395 0.341167 -0.395901 0.244632 -0.181979 0.495449 0.190785 -0.390274 1.083979 -0.288338 -0.376679 0.574393 0.258273 -0.525811 -0.668773 0.573410 1.029808 0.950890 0.362346 0.979143 -0.224926 -0.500663 0.166874 -0.117516 0.033268 -0.529377 -0.048090 0.002748 0.162842 -0.286986 -0.397119 -0.315597 -0.425489 -0.430134 0.286699 0.227737 0.416079 0.183726 0.229002 -0.050011 0.920852 -0.031743 0.053353 -0.884235 0.352787 0.329798 0.205708 -0.720319 -0.080505 0.025869 -0.143384 0.417594 -0.015253 0.428130 0.014957 -0.035346 0.156128 -0.037596 -0.050432 0.095874 -0.587916 -0.024269 -0.176738 0.425825 0.113800 0.543127 1.019702 0.593766 0.346255 0.378351 -0.037899 0.063342 0.075626 -0.258948 -0.110587 0.547046 0.483271 0.608019 0.689717 0.374107 0.785566 0.548892 -0.020795 0.783590 0.005370 1.366874 -0.494765 -0.336379 -0.135264 0.357478 0.719394 0.958817 0.008761 -0.016882 0.480863 0.420363 -0.223066 -0.757616 0.094549 -0.161260 0.135935 0.444053 0.397409 -0.256290 0.015337 0.827832 -0.173904 -1.015583 0.558308 0.205170 0.519643 -0.043751 0.201868 -0.008528 0.576237 -0.516517 0.226113 0.518656 0.484565 -0.814683 -0.133889 0.164267 0.702021 -0.375809 0.723629 -0.915442 0.226653 0.264378 0.410615 -0.126910 0.330964 -0.463316 -0.573170 0.453447 -0.043635 -0.159018 0.647163 0.172500 -0.659853 0.184948 -0.430779 -0.372631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.293734 0.008888 0.301888 -0.291274 -0.252095 -0.227809 0.533486 0.147420 -0.002968 -0.570169 0.216138 -0.254656 -0.546984 0.269480 0.180404 -0.441203 0.015513 -0.031860 -0.324195 0.001487 0.007968 0.122769 0.054318 -0.008048 0.275287 -0.021348 -0.130509 0.647734 0.407214 -0.323967 0.105788 0.022347 0.196666 0.368086 -0.248495 0.199356 0.090053 0.686319 -0.269136 0.396847 -0.133906 -0.099715 0.626899 -0.094841 -0.440298 -0.674191 -0.524177 0.292631 -0.684651 -0.189303 0.226708 0.305235 -0.051906 -0.361680 0.182494 0.669714 -0.726621 0.213010 0.166674 -0.143322 -0.082227 0.017570 -0.422326 -0.278195 -0.000401 -0.241244 -0.083652 -0.360949 -0.187195 0.066838 0.097685 -0.192794 1.070829 0.000929 0.028250 0.443184 0.288438 -0.175421 0.347896 0.128133 -0.175691 -0.175640 0.173867 0.120690 0.517535 -0.257704 -0.149558 -0.506575 -0.518770 -0.350418 0.301853 -0.652645 0.070421 0.389868 -0.416706 0.533087 0.025118 -0.542617 -0.261087 0.129577 0.376835 -0.043177 0.431772 0.194436 0.279903 -0.070050 -0.268012 -0.457750 -0.516022 -0.387920 0.137594 -0.201880 -0.814176 0.063638 0.006112 0.007809 0.284483 -0.019817 0.197496 0.197535 0.246900 0.833285 0.437903 -0.111473 -0.094618 0.632580 -0.103218 -0.253232 -0.218527 0.368192 -0.055938 0.516452 -0.056137 0.184308 0.425201 -0.686650 0.001595 -0.213218 -0.116810 -0.030632 -0.280833 -0.151969 0.044566 0.089946 -0.156527 -0.254496 0.753000 -0.122587 -0.351329 0.465203 0.701845 0.546965 -0.125908 0.152726 0.553530 -0.127292 -0.206834 -0.277797 -0.223927 0.306488 0.229207 0.117731 -0.329897 0.231779 0.065956 -0.911348 0.947139 -0.244682 -0.013649 0.665462 -0.005869 -0.334383 -0.615054 0.639333 0.815953 0.713871 0.028669 0.540808 -0.063150 -0.484093 0.155495 0.479920 0.090168 -0.612684 -0.221446 0.278131 -0.089340 -0.181069 -0.268179 -0.422516 -0.020463 -0.128558 0.145854 -0.022003 0.053051 -0.118546 0.195586 -0.412229 0.295459 -0.156842 0.057170 -0.712082 0.129097 -0.007798 0.083577 -0.566525 0.303528 0.120225 -0.085349 0.195270 -0.032833 0.051372 0.093417 -0.109400 0.192236 -0.281402 -0.234109 -0.131021 -0.642217 -0.129146 0.162569 0.034717 0.218843 0.255839 0.906891 0.059384 0.030363 0.384036 0.019077 0.190177 -0.403790 -0.108476 -0.338540 0.404678 0.200909 0.165412 0.284254 -0.025157 0.393457 0.272049 -0.010514 0.339849 0.585132 0.619952 0.416624 -0.444541 0.207050 0.041756 0.348632 0.396799 0.133229 0.010053 0.364163 0.535130 -0.034959 -0.663790 -0.214430 -0.123908 -0.250484 0.989745 -0.224201 -0.329110 0.215936 0.423344 -0.130515 -0.584143 0.073575 0.079946 0.212792 -0.179238 0.092520 -0.007936 0.496994 -0.336445 0.076804 -0.031879 0.267662 -0.382668 -0.158408 0.026153 0.087604 0.121080 0.301937 -0.764779 -0.333518 -0.033229 0.392058 0.008253 0.314215 -0.050043 -0.175753 0.046142 -0.017272 -0.127913 -0.059406 -0.122998 -0.365793 -0.127447 -0.547093 -0.245038 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = -0.094754 0.139906 0.405335 -0.597451 -0.702736 -0.248341 0.504448 -0.096086 -0.104645 -0.054371 0.273983 -0.395710 -0.456007 0.812756 -0.099447 -0.497493 -0.122729 -0.321299 -0.318861 -0.048167 -0.009178 0.494939 -0.048565 0.002862 0.332902 -0.043672 -0.216052 0.592353 0.285560 -0.445324 0.071656 -0.181273 0.203614 0.656064 -0.153599 0.075488 -0.046825 1.182057 -0.518221 0.644336 -0.698208 -0.507598 0.836917 -0.170442 -0.213762 -1.199671 -0.738818 0.477320 -0.348668 -0.229831 0.256800 0.314833 -0.099255 -0.438930 0.247477 0.598725 -1.071114 0.511092 0.370486 -0.333699 -0.180554 -0.067517 -0.404015 -0.201092 -0.232429 -0.443399 -0.112182 -0.122947 -0.253023 0.085871 0.073813 -0.396713 1.172938 0.081547 -0.142400 0.488027 0.266951 -0.482541 0.612371 -0.467846 -0.531352 -0.236091 0.217555 0.058915 0.572925 -0.092161 0.166126 -0.996997 -0.196567 -0.837861 0.389989 -0.847256 0.173058 0.738272 -0.515109 0.658931 0.205754 -0.283691 0.337140 0.291164 0.629870 0.275774 0.613220 0.419428 0.354889 0.324538 -0.352134 -0.519469 -0.672717 -0.705917 0.176310 -0.171923 -1.196181 0.246668 0.132951 -0.063338 0.157080 -0.060044 0.237622 0.618567 -0.372616 0.509839 0.615974 -0.168453 -0.103661 0.775962 -0.168232 -0.226550 -0.512192 0.560309 -0.250235 0.749193 0.020676 0.431938 -0.051766 -1.041487 -0.374086 -0.136391 -0.134144 -0.338676 -0.503997 -0.687222 0.036987 0.167483 -0.401615 0.044788 1.293959 -0.492576 -0.752188 0.852255 0.936156 0.253822 0.116428 0.173257 0.877547 -0.135203 -0.399168 -0.340012 -0.423572 0.303745 0.482430 0.237126 -0.484719 0.366490 -0.012284 -1.497585 1.121702 -0.239602 -0.269315 0.420571 0.119388 -0.510896 -0.610577 0.828649 0.545704 0.973028 -0.218245 0.882027 -0.177467 -0.593709 0.233098 -0.119433 0.066957 -0.709850 -0.123582 0.315296 0.189187 -0.442389 -0.357402 -0.359545 -0.345679 -0.409817 0.281297 -0.455232 0.137197 0.064799 0.286428 0.022196 0.651814 -0.121220 0.157318 -0.870362 0.333526 0.173214 0.157703 -1.175132 0.163767 -0.058581 -0.161688 0.165666 -0.067565 0.212661 0.015532 -0.128875 0.219044 -0.422486 -0.131161 -0.060429 -0.540324 -0.030651 -0.135900 0.498604 0.163504 0.510065 1.086615 0.467904 0.252433 0.494744 -0.044487 -0.010393 -0.212239 0.076567 -0.085614 0.110367 0.424994 0.599859 0.586408 0.168922 0.736522 0.446909 -0.036833 0.700650 0.325868 1.128100 -0.024577 -0.439007 0.104813 0.208190 0.642926 0.949823 0.174353 -0.085257 0.479413 0.359305 -0.221046 -0.592745 -0.071112 -0.155542 -0.342653 1.012966 0.113924 -0.338249 0.160450 0.770013 -0.215448 -0.983859 0.389763 0.149365 0.456952 -0.099654 0.179182 0.054305 0.659804 -0.412549 0.251890 0.349474 0.484917 -0.688030 -0.562174 0.062818 0.352794 0.449261 0.637910 -1.314415 -0.063936 0.300697 0.618472 -0.233518 0.574403 -0.337733 -0.417187 0.304619 0.049758 -0.247003 0.103329 -0.004795 -0.510549 -0.031027 -0.579999 -0.420855 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 1.114772 -2.223830 0.756977 -2.060505 -1.883913 0.711805 -0.924756 -1.428235 -0.425642 0.582701 0.616371 -0.894405 -0.535429 2.223935 0.541710 -2.014337 0.837428 -0.487466 0.768929 -0.125579 -0.255722 1.144701 -0.381735 -0.382522 0.218614 -0.636713 -0.724768 1.283057 1.481930 -0.298430 -0.597690 -1.285723 -1.035231 2.863932 1.184647 -0.127044 -0.404788 5.035533 0.103038 2.734296 -2.262407 -1.826632 2.565192 -0.886652 -0.300118 -0.700552 -1.573039 1.743148 -1.215456 -1.190184 1.014460 -0.173204 1.153324 -0.884909 -0.711849 0.989692 -2.619654 0.693099 0.934669 -1.071700 -0.812052 -0.695314 -0.799248 1.115542 -2.434755 -1.774378 1.012105 0.553580 -1.033145 -0.570757 -1.048463 -1.857620 2.957916 1.450640 -0.972644 0.094533 1.093572 -1.266585 1.886871 0.320767 -3.642072 -1.029793 -1.601466 -2.608653 2.831618 -0.504938 2.875027 -4.434245 2.680124 -5.081029 1.357774 -2.319171 1.486801 3.450433 -2.685417 1.578175 1.639723 3.284497 1.653678 -0.572771 2.756514 1.317618 -0.654485 1.719100 2.777650 0.748062 -0.541826 -0.912831 -1.451355 -1.819731 0.458967 -2.097256 -3.838305 1.769882 -0.573459 0.713907 -0.720771 1.473688 -0.896064 1.951114 -3.102338 0.110403 0.706294 -0.813457 0.941437 1.703998 -1.440868 0.108460 -1.342744 2.855107 -1.655835 1.378095 0.062598 2.266744 -0.824680 -0.113273 -2.322420 1.015740 1.583295 -2.355533 -3.167102 -3.007344 -0.555449 0.956011 -1.533554 4.226326 4.861174 -2.165636 -1.723016 2.938069 -0.194088 0.264245 2.375127 0.458689 2.768541 -0.740496 -1.394726 -1.440960 -1.258155 -0.064990 -0.458064 0.616886 -0.584740 2.133904 -0.629848 -0.511515 4.429650 -0.467117 -1.995279 -1.020547 0.187792 -1.137301 -2.228556 2.781445 -1.192325 1.505251 0.658978 3.528885 0.359312 -1.212718 1.415297 -1.554252 -0.739098 -1.353526 0.014417 -0.502386 1.181916 -2.100814 -1.860001 -0.958089 -1.226561 -1.327828 1.485781 2.293921 0.801210 1.904657 1.010998 2.735251 3.088562 0.757420 -0.491905 -2.545554 1.439136 2.032136 -0.957391 -0.751728 -0.986301 -0.838442 -0.287619 0.170686 0.430346 2.099925 -2.602009 -1.036045 -0.605438 1.185039 1.088296 1.666911 -4.573102 0.845929 1.422761 1.284409 1.785154 2.627992 2.078482 2.551835 1.691004 0.753054 -0.422060 0.943354 -1.215159 -0.279199 0.478940 1.524633 1.190989 2.057851 2.132305 1.512721 2.632946 1.827228 1.260077 2.528668 0.286516 3.978598 -0.207079 -0.863252 0.058377 0.201738 2.954704 4.257907 -0.497841 0.684287 1.665989 0.031946 -1.626795 -2.626850 0.815113 -0.607186 0.794185 0.177489 0.659153 0.680346 -1.361992 2.958590 -0.216705 -4.667842 2.368526 1.053546 1.875920 2.751816 0.397202 1.268200 0.356414 -2.015848 2.486456 2.758421 1.184167 -2.213541 0.434306 0.394352 1.338054 0.854116 2.348408 -1.612216 1.497770 1.000390 2.330141 0.776898 0.536269 -2.078656 -1.289352 1.304018 -1.811246 -0.058667 0.735288 0.778299 -1.436599 0.472247 -1.987774 -1.581508 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = -0.032439 0.101608 0.326526 -0.478038 -0.545097 -0.185388 0.400313 -0.086708 -0.094532 -0.021539 0.190210 -0.281589 -0.351555 0.666921 -0.096113 -0.394461 -0.103900 -0.298334 -0.254282 -0.019059 -0.016068 0.406758 -0.044197 -0.001191 0.269867 -0.032107 -0.167166 0.430397 0.148521 -0.384207 0.053983 -0.164649 0.153338 0.529585 -0.115308 0.095647 -0.060507 0.951116 -0.358892 0.555436 -0.594941 -0.450207 0.648814 -0.153852 -0.125395 -0.963460 -0.550854 0.387466 -0.202947 -0.198945 0.186224 0.246532 -0.120541 -0.356470 0.192043 0.441025 -0.852604 0.411505 0.295729 -0.269787 -0.159231 -0.064367 -0.313322 -0.178982 -0.179409 -0.357975 -0.092472 -0.064553 -0.231313 0.094400 0.058644 -0.309407 0.927229 0.085412 -0.112271 0.387133 0.211848 -0.355791 0.489413 -0.436460 -0.432951 -0.199918 0.169710 0.061377 0.449680 -0.034906 0.145909 -0.807662 -0.088905 -0.679106 0.312460 -0.669426 0.141588 0.593149 -0.368442 0.537197 0.187223 -0.187610 0.278631 0.250825 0.506161 0.237304 0.466015 0.348042 0.287719 0.245617 -0.280042 -0.413564 -0.523195 -0.563518 0.147182 -0.124264 -0.931239 0.199060 0.127521 -0.007314 0.106721 -0.003848 0.199356 0.449282 -0.404903 0.364076 0.498503 -0.134979 -0.066802 0.578563 -0.135788 -0.180696 -0.426313 0.443562 -0.214947 0.589664 0.023420 0.351958 -0.057074 -0.802678 -0.299811 -0.118306 -0.109901 -0.280269 -0.406550 -0.570955 0.019602 0.187782 -0.335882 0.086337 1.040092 -0.406186 -0.594862 0.680881 0.745538 0.187177 0.091720 0.151147 0.674817 -0.096676 -0.332196 -0.236558 -0.329762 0.248982 0.327104 0.192353 -0.391665 0.305679 -0.009106 -1.190717 0.898676 -0.203213 -0.222457 0.321209 0.080795 -0.414527 -0.460638 0.635854 0.413401 0.787339 -0.179938 0.706894 -0.146070 -0.435944 0.168651 -0.168567 0.050161 -0.563780 -0.073114 0.211486 0.159848 -0.395936 -0.289211 -0.249157 -0.315969 -0.329281 0.236185 -0.392766 0.110344 0.059893 0.225707 0.076409 0.516261 -0.098100 0.116583 -0.684150 0.272017 0.121697 0.136087 -0.923696 0.118863 -0.042210 -0.131992 0.144202 -0.047118 0.157841 0.022314 -0.088334 0.180176 -0.336345 -0.110493 -0.045470 -0.343057 -0.058881 -0.095533 0.417441 0.119147 0.412180 0.854236 0.382865 0.198811 0.387606 -0.041680 -0.015878 -0.160877 0.057573 -0.067038 0.091481 0.340030 0.457172 0.479479 0.140743 0.602356 0.364849 -0.020898 0.571274 0.241626 0.907206 -0.071728 -0.349315 0.084579 0.177932 0.520062 0.740498 0.084497 -0.040203 0.384258 0.255088 -0.183701 -0.404398 -0.045849 -0.121991 -0.289648 0.786899 0.125020 -0.249150 0.122488 0.622764 -0.179029 -0.789271 0.314881 0.126033 0.375988 -0.061028 0.154261 0.062492 0.530057 -0.308621 0.180552 0.284933 0.396904 -0.563882 -0.452491 0.051542 0.286242 0.353656 0.520347 -1.004140 -0.040872 0.249169 0.493140 -0.212429 0.417698 -0.274036 -0.332932 0.249171 0.042764 -0.198645 0.117750 0.011741 -0.359572 -0.052414 -0.462372 -0.326620 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = -0.087516 0.047972 0.139402 -0.179481 -0.124929 -0.137694 0.370424 0.098109 -0.029918 -0.308899 0.109781 -0.126130 -0.335691 0.190382 0.103389 -0.238347 0.015729 -0.184962 -0.225238 0.081195 -0.017057 0.095854 0.030971 -0.010041 0.176040 0.066516 -0.115196 0.302059 0.150466 -0.317362 0.009990 0.015311 0.129796 0.204565 -0.155000 0.098634 0.034571 0.394090 -0.121712 0.248493 -0.115329 -0.066169 0.335800 -0.083067 -0.217833 -0.454032 -0.236713 0.216979 -0.241947 -0.172385 0.124413 0.189859 -0.133603 -0.229961 0.093431 0.402934 -0.453323 0.183896 0.129721 -0.001857 -0.034008 0.003514 -0.206851 -0.214414 0.060163 -0.161199 -0.060512 -0.246883 -0.168390 0.053680 0.023274 -0.104763 0.601399 0.029060 0.027003 0.258776 0.114714 -0.085914 0.213500 -0.083327 -0.085443 -0.081786 0.106887 0.153908 0.296652 -0.125450 -0.155829 -0.295992 -0.260545 -0.196690 0.145418 -0.391467 0.028264 0.232502 -0.150907 0.291936 -0.006853 -0.362666 -0.124671 0.121304 0.230036 -0.032255 0.263373 0.099071 0.128964 -0.051192 -0.162570 -0.238462 -0.261873 -0.231743 0.087036 -0.016510 -0.409263 0.066890 0.029014 0.032798 0.195451 0.023856 0.143547 0.015932 0.066983 0.385651 0.252249 -0.059485 -0.014928 0.388532 -0.064663 -0.160235 -0.191237 0.198814 0.015944 0.339432 -0.017022 0.099897 0.244671 -0.452161 0.029625 -0.149329 -0.073149 -0.029802 -0.154599 -0.138363 0.075896 0.017356 -0.143454 -0.121804 0.428473 -0.080955 -0.176888 0.291082 0.458373 0.326275 -0.098774 0.052822 0.337147 -0.075724 -0.116649 -0.033652 -0.116016 0.154298 0.038898 0.061231 -0.207194 0.082037 0.033607 -0.590233 0.494015 -0.087101 -0.003063 0.481790 -0.039606 -0.191288 -0.376775 0.331360 0.537450 0.418391 0.063502 0.304861 -0.020579 -0.215766 0.116561 0.306964 0.077610 -0.367103 -0.157829 0.154494 -0.068191 -0.127961 -0.122899 -0.188245 -0.020729 -0.119773 0.097215 -0.072334 0.037304 -0.072978 0.123088 -0.251508 0.152075 -0.141081 0.077435 -0.423989 0.084521 -0.045843 0.059879 -0.332203 0.169844 0.054013 -0.051247 0.208850 -0.048503 -0.003804 0.108912 -0.078971 0.193663 -0.164644 -0.140965 -0.086073 -0.186760 -0.141986 0.074313 0.029635 0.102627 0.177283 0.462622 0.038218 0.000321 0.200017 0.000230 0.141850 -0.251388 -0.115267 -0.275780 0.252636 0.143799 -0.004110 0.174872 -0.019368 0.249782 0.119819 -0.064953 0.221926 0.348312 0.347197 0.197298 -0.281699 0.140443 -0.008119 0.206373 0.183641 -0.036194 -0.013656 0.208519 0.261871 -0.034376 -0.251679 -0.123939 -0.082272 -0.211783 0.556423 -0.127782 -0.156596 0.138602 0.253954 -0.127081 -0.338490 0.041161 0.041643 0.148402 -0.096189 0.088040 0.044946 0.293934 -0.188606 -0.019676 -0.006316 0.193214 -0.198515 -0.124598 0.015609 0.058748 -0.009507 0.177267 -0.423230 -0.208200 0.004164 0.220549 -0.015364 0.105578 -0.021382 -0.098516 0.033912 0.057554 -0.059128 -0.025611 -0.024911 -0.169289 -0.147425 -0.310051 -0.058479 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.153835 -0.023838 0.713442 -1.156347 -0.939425 -0.119332 0.801235 -0.470291 -0.209445 0.733966 0.325090 -0.387627 -0.597378 1.044425 -0.056149 -0.778701 -0.018584 -0.823740 -0.300923 -0.114190 -0.167733 0.765558 -0.254870 -0.198046 0.490390 -0.239581 -0.041136 0.931894 0.013703 -0.440803 0.123808 -0.557048 0.034395 1.380909 0.151062 0.111524 -0.279030 2.067951 -0.872148 1.251371 -1.243310 -1.264230 1.500189 -0.314569 -0.257212 -1.426031 -0.530768 0.835400 -0.162348 -0.621101 0.375623 0.220597 0.277151 -0.788947 0.006078 0.775707 -1.505138 0.366148 0.610751 -0.797129 -0.749055 -0.288029 -0.270794 0.153007 -0.945777 -0.837245 0.128181 -0.213627 -0.419516 0.068775 -0.185733 -0.840430 1.508443 0.451823 -0.268110 0.534365 0.238313 -0.924706 1.001230 -0.380703 -1.123262 -0.575520 -0.006758 -0.670259 0.975397 -0.114050 0.815885 -1.877204 0.319716 -1.713420 0.599026 -1.096233 0.542372 1.367278 -0.597755 1.126624 0.456064 0.560840 0.389385 -0.242545 1.066691 0.565473 0.848457 0.807561 0.881036 0.738954 -0.859982 -1.059930 -1.178648 -1.005033 0.452923 -0.652513 -1.745369 0.575418 -0.023187 -0.262269 0.117612 -0.055082 -0.127672 1.412941 -1.396139 0.469421 0.761091 -0.321177 0.067588 0.994902 -0.191657 -0.197267 -0.456516 1.029059 -0.512535 1.055855 -0.016874 0.994462 -0.372697 -0.579986 -0.471381 0.045991 0.181051 -0.807164 -1.097007 -1.452448 -0.288065 0.608517 -0.687519 0.901567 2.257849 -0.915631 -1.311043 1.324438 0.737848 0.063461 0.305094 0.362213 1.179806 -0.388369 -0.604981 -0.693887 -0.505037 0.540393 1.383367 0.275387 -0.720823 1.033812 -0.332009 -1.230513 1.714463 -0.236885 -0.518714 0.229524 0.182953 -0.902859 -0.978431 1.281874 -0.062682 1.447899 -0.307573 1.666864 -0.411344 -0.639452 0.334744 -0.871139 -0.130743 -1.422256 -0.143029 0.297886 0.520327 -0.846228 -0.734051 -0.644996 -0.560177 -0.600813 0.772635 -0.943102 0.218950 0.190023 0.309808 0.914805 1.157296 -0.155505 -0.171675 -1.156353 0.677989 0.446517 0.194228 -1.338578 -0.272249 -0.168155 -0.408752 0.312348 -0.000276 0.747356 -0.486566 -0.095761 0.443601 -0.226111 -0.310325 0.099514 -1.857807 0.190217 0.155799 0.776543 0.404797 1.121718 1.422865 1.025248 0.430342 0.594594 -0.190235 -0.029545 -0.905518 0.080909 0.076456 0.340262 0.753452 1.242709 1.007544 0.546813 1.305853 0.925236 0.113749 1.235180 0.084652 1.804849 -0.250159 -0.616567 0.284250 0.410481 1.089797 1.480259 0.252521 -0.178267 0.871266 0.265632 -0.730869 -0.772288 0.113293 -0.335743 0.144757 1.044922 0.648514 -0.385480 -0.050262 1.615286 -0.306841 -2.024766 0.708338 0.425661 0.965844 0.486885 0.082348 0.475182 0.822587 -0.494699 0.870719 0.821878 0.722077 -1.281308 -0.277123 0.225025 0.654001 0.689702 0.903922 -2.147318 -0.078674 0.214120 1.195452 -0.098447 1.357855 -0.764087 -0.228542 0.602341 -0.159076 -0.123923 0.286189 0.332886 -0.663555 0.169641 -1.402404 -0.309447 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.132724 0.087768 0.294303 -0.426859 -0.442089 -0.045862 0.205728 -0.142525 -0.109534 0.064743 0.122645 -0.058556 -0.187111 0.432539 -0.109459 -0.313756 -0.128434 -0.511813 -0.201828 -0.102303 -0.078136 0.306698 -0.089291 0.002279 0.202691 -0.080506 -0.121884 0.243566 -0.058157 -0.452634 0.046621 -0.182152 0.003839 0.476443 -0.021344 0.000000 -0.036832 0.846280 -0.091457 0.156975 -0.456014 -0.511039 0.491837 -0.197253 -0.077912 -0.560459 -0.245612 0.334110 0.047675 -0.073342 0.143512 0.146737 -0.127955 -0.272845 0.050005 0.205523 -0.688125 0.331278 0.243359 -0.236780 -0.273209 -0.098361 -0.115584 -0.141071 -0.044170 -0.305042 0.102853 0.062817 -0.199667 0.053165 0.052629 -0.287513 0.674186 0.140768 0.050360 0.286570 0.158083 -0.240877 0.423453 -0.317812 -0.450122 -0.193104 0.113800 -0.156168 0.413359 -0.047383 0.146546 -0.693210 0.181152 -0.634940 0.160011 -0.430480 0.142429 0.460930 -0.242542 0.437132 0.249332 0.069847 0.197905 0.046893 0.488181 0.100849 0.295625 0.416781 0.238487 0.120116 -0.198327 -0.207065 -0.436695 -0.486411 0.129338 -0.107142 -0.636686 0.275649 0.099197 -0.133316 -0.005237 0.062329 0.115177 0.408756 -0.522489 0.114474 0.368239 -0.117658 -0.035662 0.359433 -0.133164 -0.123422 -0.323056 0.364946 -0.279009 0.436549 0.023659 0.320814 0.070577 -0.462603 -0.365065 -0.059365 0.007070 -0.323451 -0.363420 -0.381872 -0.010462 0.137263 -0.319821 0.404601 0.925741 -0.422077 -0.528496 0.589208 0.547721 0.101474 0.186809 0.153154 0.486488 -0.041638 -0.351719 -0.168060 -0.275334 0.207929 -0.179931 0.167434 -0.155336 0.322965 0.084171 -0.454998 0.781516 -0.185788 -0.254580 0.391814 0.136806 -0.352118 -0.421560 0.389449 0.604592 0.631983 0.171999 0.636886 -0.134559 -0.275819 0.106739 -0.138149 0.028354 -0.403284 -0.028982 0.014335 0.126739 -0.239437 -0.252575 -0.180322 -0.318094 -0.295581 0.201501 -0.013824 0.250375 0.124970 0.160669 0.017449 0.580683 -0.030134 0.038697 -0.565629 0.246302 0.177351 0.134967 -0.520422 -0.045837 -0.008186 -0.096252 0.250157 -0.016540 0.252954 0.006517 -0.027654 0.135972 -0.077208 -0.063901 0.056740 -0.313143 -0.057695 -0.097953 0.325632 0.068256 0.364940 0.655727 0.405379 0.227254 0.252452 -0.036779 0.047678 -0.029697 -0.140385 -0.081094 0.308852 0.320320 0.375287 0.456494 0.235058 0.533962 0.351833 0.012709 0.525463 0.030883 0.875870 -0.290873 -0.240704 -0.052262 0.228991 0.475567 0.611623 -0.010343 0.009042 0.310675 0.222492 -0.185636 -0.381890 0.062587 -0.107950 0.009757 0.344200 0.269750 -0.143506 0.015886 0.555095 -0.136635 -0.685953 0.331863 0.133391 0.359551 0.018411 0.147914 0.060385 0.382648 -0.294488 0.156323 0.342971 0.338978 -0.534484 -0.159673 0.100563 0.410924 -0.140969 0.485986 -0.648102 0.134873 0.176547 0.300825 -0.139777 0.227453 -0.309417 -0.328323 0.299112 -0.006082 -0.110177 0.392878 0.129102 -0.370139 0.053974 -0.341400 -0.215504 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >&>::type&& std::move >&>(std::vector >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = 0.153748 0.071795 0.485232 -0.745880 -0.798424 0.024350 0.272980 -0.331496 -0.142595 0.154368 0.324919 -0.130686 -0.171433 0.752786 -0.125654 -0.444314 -0.140827 -0.706981 -0.233448 -0.142263 -0.071186 0.513564 -0.190264 0.036477 0.228818 -0.159346 -0.175785 0.475209 -0.058409 -0.521911 -0.002610 -0.317313 -0.098947 0.796752 0.086019 -0.081590 -0.023843 1.410790 -0.435347 0.363437 -0.684865 -0.744174 0.772777 -0.264312 -0.198061 -0.847865 -0.574678 0.484961 0.076628 -0.182893 0.357076 0.131882 0.030326 -0.305528 0.108291 0.318902 -1.023964 0.327612 0.403220 -0.412173 -0.379096 -0.171868 -0.163491 -0.059952 -0.345758 -0.466459 0.247052 0.096138 -0.120391 -0.042622 0.047611 -0.623657 1.043946 0.250971 0.004979 0.349187 0.305992 -0.639561 0.723936 -0.246522 -0.853924 -0.263317 0.003018 -0.508067 0.725356 -0.201968 0.413718 -1.152488 0.321514 -1.142402 0.245671 -0.693742 0.228429 0.799126 -0.495316 0.575970 0.460215 0.415576 0.385009 -0.024033 0.779990 0.264750 0.398552 0.662604 0.532694 0.310728 -0.373059 -0.343590 -0.796328 -0.813194 0.263693 -0.346573 -1.146005 0.451693 0.158899 -0.392337 -0.102190 0.021755 0.113244 0.953440 -0.694060 0.337471 0.545313 -0.189195 -0.132349 0.663066 -0.233640 -0.133506 -0.483471 0.635793 -0.537912 0.733028 -0.002243 0.530154 -0.089119 -0.585330 -0.582025 0.037831 0.089664 -0.571157 -0.631435 -0.708423 -0.028863 0.243237 -0.468564 0.681045 1.519807 -0.756644 -0.890535 0.971567 0.908064 -0.001612 0.336034 0.221178 0.814797 -0.078980 -0.570541 -0.482350 -0.529793 0.189182 -0.015392 0.297030 -0.161790 0.572034 0.029794 -0.849159 1.575876 -0.282342 -0.515239 0.555143 0.278798 -0.556567 -0.708766 0.741671 0.756306 0.888582 0.258976 1.041932 -0.174397 -0.419871 0.190728 -0.225964 0.019684 -0.757181 -0.077938 0.101181 0.294713 -0.284371 -0.412883 -0.373636 -0.485999 -0.484088 0.295516 -0.055925 0.422048 0.295302 0.273200 0.034661 1.059447 0.081566 -0.004618 -0.827998 0.439212 0.383054 0.093726 -0.810828 -0.138229 -0.120149 -0.131258 0.194650 -0.011922 0.522899 -0.225234 -0.093041 0.124229 -0.090305 -0.064052 0.213449 -0.979027 0.057687 -0.147611 0.572289 0.182437 0.561441 1.031759 0.785362 0.502533 0.383828 -0.062399 0.138566 -0.223807 -0.159215 0.000995 0.436632 0.507687 0.800368 0.730725 0.439250 0.816404 0.598695 0.229403 0.829536 0.035186 1.419260 -0.227934 -0.351315 -0.114240 0.389881 0.779869 1.114368 0.223056 0.066770 0.447458 0.335090 -0.429845 -0.731173 0.185571 -0.180948 0.119774 0.484116 0.441509 -0.173038 -0.077109 0.920202 -0.178586 -1.175177 0.464130 0.213087 0.600304 0.226244 0.209623 0.195942 0.493376 -0.467466 0.555782 0.657111 0.515973 -0.842427 -0.247376 0.171207 0.579347 -0.027672 0.812457 -1.183573 0.367083 0.219641 0.525298 -0.205155 0.570540 -0.587025 -0.397409 0.532796 -0.122061 -0.153589 0.558790 0.254922 -0.675638 0.186443 -0.700493 -0.408345 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = -0.046431 -0.765903 1.262496 -3.605063 -3.997317 0.314228 -0.473673 -2.341829 -0.709389 -0.045021 1.815761 -1.761049 -1.292809 4.035361 -0.461166 -3.100958 -0.346812 -0.221979 -0.173312 -0.238475 -0.357805 2.250491 -1.117390 -0.330398 0.783719 -0.873982 -0.816026 2.388967 2.479584 -0.925593 -0.748764 -1.724720 -0.498981 4.319647 1.270380 0.213885 -0.055174 6.949443 -1.495672 3.100318 -3.934770 -2.788003 4.023926 -0.945903 -1.030360 -3.992001 -3.649582 2.086119 -3.020418 -0.357107 1.832468 -0.182091 1.175210 -1.225336 0.748589 2.075720 -4.684367 2.573034 2.195490 -1.884746 -0.804236 -1.112110 -1.572658 0.292583 -2.162120 -2.386904 0.389683 1.092621 -0.742097 -0.726694 -0.761206 -3.176502 6.151420 1.276679 -1.623476 1.099777 0.912998 -3.047229 2.688872 -1.143899 -4.630735 -1.316987 0.147918 -1.219997 3.540223 -0.182926 2.831095 -6.112088 0.716842 -6.598053 1.781600 -3.445446 1.971161 4.508756 -4.238407 2.250669 2.173762 1.219897 2.689241 0.655753 3.539805 1.356048 0.626005 2.180100 2.688015 1.837417 -1.024674 -1.880910 -2.581446 -3.583432 0.338308 -1.691668 -7.079550 1.865029 -0.672050 0.643476 -1.171205 0.588162 0.008242 3.567343 -2.756028 0.830930 1.711647 -1.098245 0.981443 3.631133 -0.995563 -0.000600 -2.224056 3.241888 -2.363996 2.656836 -0.851407 3.047283 -0.812151 -3.756867 -4.253606 0.596715 1.168289 -3.005112 -3.848351 -3.734693 -0.692711 0.895024 -2.017277 2.813515 7.209089 -3.844062 -4.147868 4.794831 2.186020 0.746426 3.099241 1.031917 4.561935 -0.977293 -1.602281 -2.460964 -2.496971 0.108720 0.564128 0.828769 -1.878947 2.501883 -0.520494 -4.527594 5.959273 -0.634904 -2.773844 -0.281059 0.752052 -2.391799 -3.137933 4.463490 0.441626 3.664764 -0.311668 5.279365 -1.268833 -3.087259 1.420263 -1.458674 -0.525316 -2.374635 -0.484317 0.862024 1.876430 -2.682953 -2.358438 -1.208535 -1.425634 -2.360291 1.951226 1.350654 0.560022 1.698062 1.075063 1.952186 4.979116 0.396092 0.220582 -3.535817 2.277008 2.463657 -0.532624 -4.615078 -0.537518 -1.143221 -0.858223 0.499145 0.180704 2.532104 -1.826534 -0.895019 -0.270310 -0.427415 1.644685 1.487369 -4.584206 1.345194 -0.436569 2.013160 1.809964 3.164429 4.309875 4.143109 2.461766 1.767043 -0.293847 0.090580 -0.002262 0.175455 1.140312 1.265926 2.345819 4.137692 3.414497 1.882833 3.536032 2.675216 1.367445 4.021496 0.687213 6.651695 -0.471526 -1.357419 -0.105310 0.824598 4.076272 6.503575 -0.279026 0.440111 2.180240 1.121802 -1.463385 -4.491545 0.922208 -0.656140 -0.924624 2.859582 1.289139 -0.157209 -1.271906 4.984181 -0.814639 -5.735806 3.164764 1.221409 2.660174 1.036898 0.641099 0.326169 2.030976 -2.686403 3.149990 3.449297 2.675749 -3.645061 -1.601450 0.427033 2.227389 2.229416 3.418984 -4.309773 1.430743 2.039936 3.753808 0.250488 2.149152 -2.592343 -2.188660 1.848158 -1.119974 -0.456783 0.487916 0.682460 -2.524162 0.671979 -2.389658 -3.181171 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = -0.067182 0.028459 0.378953 -0.589704 -0.710908 -0.068923 0.291017 -0.239055 -0.118648 -0.073935 0.301089 -0.262533 -0.376866 0.733412 -0.093770 -0.491176 -0.105934 -0.210898 -0.181641 -0.033959 -0.018248 0.444767 -0.117897 0.015588 0.216943 -0.102874 -0.172220 0.505267 0.226771 -0.307848 0.002079 -0.256444 0.051822 0.652134 0.033955 0.133332 -0.055724 1.147252 -0.404843 0.651365 -0.705372 -0.522697 0.703192 -0.174465 -0.151592 -1.039399 -0.685084 0.405432 -0.356371 -0.183414 0.317025 0.143182 0.057182 -0.275647 0.224747 0.431112 -0.910457 0.415011 0.351550 -0.388729 -0.119225 -0.093059 -0.391976 -0.099899 -0.256425 -0.389648 -0.052336 0.042361 -0.143695 0.001829 0.036242 -0.444283 1.128672 0.132748 -0.189991 0.333002 0.279987 -0.466637 0.547714 -0.356070 -0.663172 -0.237339 0.077840 -0.025398 0.561104 -0.051595 0.300567 -0.969395 -0.060433 -0.940411 0.367932 -0.689923 0.197411 0.684100 -0.513243 0.520486 0.354421 -0.102878 0.372601 0.214193 0.577083 0.272214 0.382468 0.443082 0.414990 0.276924 -0.290629 -0.433150 -0.619953 -0.664125 0.164698 -0.232530 -1.145580 0.242610 0.123958 0.026511 -0.031041 0.018607 0.195715 0.586493 -0.414901 0.474541 0.506749 -0.164244 -0.029642 0.653650 -0.157759 -0.119358 -0.431229 0.533845 -0.409837 0.659183 -0.038880 0.458957 -0.045391 -0.853802 -0.488303 -0.012319 -0.008953 -0.376243 -0.511901 -0.634629 -0.014825 0.259174 -0.363180 0.142467 1.236755 -0.600643 -0.716062 0.801086 0.776242 0.135836 0.203468 0.210036 0.743200 -0.078902 -0.416781 -0.413425 -0.486918 0.174342 0.373545 0.236752 -0.376867 0.444021 -0.020580 -1.291334 1.137001 -0.251620 -0.405491 0.293156 0.110042 -0.466843 -0.506080 0.713532 0.403557 0.778553 -0.136424 0.840539 -0.169675 -0.512378 0.152876 -0.195379 0.012292 -0.583898 -0.074167 0.270621 0.201986 -0.456470 -0.360060 -0.311526 -0.349660 -0.393642 0.264288 -0.289730 0.133321 0.210151 0.247782 0.128051 0.739311 0.030540 0.053290 -0.681551 0.366093 0.183041 0.077121 -1.001207 0.036223 -0.099664 -0.133946 0.121171 -0.007221 0.305964 -0.064971 -0.080888 0.094212 -0.343432 -0.007497 0.123155 -0.538632 0.014324 -0.041447 0.465274 0.194774 0.456280 0.921238 0.602795 0.355823 0.465582 -0.053751 0.045420 -0.123650 0.044517 0.065548 0.133285 0.390616 0.595478 0.591315 0.233867 0.678788 0.471786 0.176519 0.664708 0.206317 1.086850 -0.042031 -0.348764 0.049023 0.257976 0.631910 0.922224 0.121566 0.071705 0.396520 0.262683 -0.227666 -0.572414 0.089063 -0.125080 -0.258681 0.850202 0.261227 -0.155165 -0.024620 0.750831 -0.187800 -0.932867 0.399359 0.174349 0.458856 0.044504 0.187320 0.075335 0.479135 -0.371328 0.385780 0.458260 0.471594 -0.682671 -0.474150 0.072805 0.299427 0.464477 0.647197 -1.083841 0.002159 0.273468 0.585523 -0.208944 0.490132 -0.406974 -0.384621 0.342278 -0.070477 -0.177490 0.143773 0.027777 -0.404452 -0.003553 -0.511244 -0.448387 +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) = 1.137331 -0.169124 0.154021 -2.419913 -2.207650 0.642869 -0.660612 -1.514650 -0.576019 0.535790 1.001716 -0.838880 -0.617492 2.280148 -0.279799 -1.715211 0.029137 -2.078556 0.006377 0.445369 -0.650455 1.356400 -0.922019 -0.080900 0.346801 0.136753 -0.821333 0.640371 1.555741 -1.554449 -1.496401 -0.903397 -0.849349 2.687053 1.161451 -1.130210 0.494153 4.506178 -0.366958 0.891799 -1.905896 -1.429097 1.853567 -0.634339 -0.733250 -1.550561 -1.086039 1.549994 -1.048119 -0.042759 1.554774 -0.477238 0.131624 -0.379817 0.138057 1.269092 -3.230725 2.243531 1.533372 0.548211 -0.276145 -1.133632 0.044773 0.112565 -0.781986 -1.550914 0.959700 0.410609 -0.991836 -0.780710 -1.238200 -2.039881 2.900323 1.410270 -0.932397 0.198431 -0.024010 -2.193436 1.538853 -1.707761 -3.123048 -0.265600 -0.245959 -1.155437 2.781775 -0.429765 1.082909 -3.699917 1.372920 -4.288319 0.133410 -2.076159 1.293568 3.184612 -2.262777 0.653440 0.977005 1.302921 1.845038 -0.087628 2.512767 0.489281 -0.157793 1.117630 1.251608 1.075513 -0.509393 -0.180865 -0.912370 -1.997838 -0.325904 -0.143476 -3.675468 1.620150 -0.803050 0.277081 -0.583628 0.676094 -0.713156 1.457293 -2.136323 -1.539053 -0.028274 -0.630997 1.438188 2.559469 -0.724436 0.313410 -1.625556 2.207568 -0.837684 1.576074 -0.785271 1.622497 -0.520798 -1.843170 -3.111922 0.453112 1.466046 -2.052678 -2.743496 -2.528688 -0.215796 -0.895163 -1.466944 3.405465 4.265954 -2.270409 -2.095891 3.399127 0.267897 0.837914 2.780606 -0.058945 2.782545 -0.706679 -0.646384 -0.435737 -1.155336 -1.135190 -1.797456 0.311039 -0.461955 0.761549 -0.343015 -0.332727 2.364897 0.707759 -1.912174 -0.057908 0.202385 -1.341687 -2.659036 2.698868 0.433945 1.608127 1.445784 3.417997 -0.450600 -1.442523 1.517530 -0.108629 0.181431 -1.436838 -0.909787 0.194003 1.055248 -1.330780 -1.220520 -0.180048 -0.021075 -2.014281 1.085339 2.377027 0.643006 1.196123 0.904659 1.246907 3.524466 -0.092449 0.635866 -2.262671 1.432710 1.750967 -0.980830 -1.775246 -0.514579 -0.912291 -0.487504 1.548383 -0.188777 1.454145 -1.517940 -1.234268 0.214486 0.893950 1.823789 1.510253 -2.910100 0.966657 -0.706645 0.599244 1.367898 2.087978 1.533578 2.669267 1.743343 0.214920 -0.127194 0.779078 0.159575 -0.873819 0.266164 1.548215 1.599665 1.938883 2.068184 1.286661 1.700135 1.497306 -0.009559 2.455532 0.320713 4.109463 -0.593028 -0.769783 -0.397236 -0.144199 2.466629 3.967373 -1.594262 0.113061 1.222615 0.506517 -0.893464 -2.548048 0.740872 -0.770489 -0.120402 -0.107745 0.334992 0.305132 -0.913833 3.179199 -0.887176 -3.530369 2.006309 0.750230 1.714618 1.032615 0.606213 0.389584 0.789779 -2.490840 2.163585 2.557329 1.689736 -1.330719 -0.069713 0.307851 1.770769 -0.842723 1.923572 -1.504204 1.424829 1.425608 2.065927 1.322564 0.547540 -1.409262 -1.505463 1.288536 -0.607078 0.080940 0.478438 1.447642 -1.715861 0.569140 -0.954247 -1.524832 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = 0.028271 -0.247491 0.413057 -0.776647 -0.820385 0.099601 -0.074349 -0.405581 -0.110537 -0.082126 0.274199 -0.226067 -0.245093 0.915174 -0.119254 -0.712161 -0.122491 -0.134421 -0.057797 -0.028269 -0.073125 0.524878 -0.234222 0.037094 0.221896 -0.259496 -0.149956 0.499606 0.305219 -0.271201 -0.102115 -0.399135 -0.203185 0.933289 0.184776 0.205168 0.030909 1.621489 -0.151555 0.819412 -0.777890 -0.758419 0.770936 -0.233029 -0.183266 -0.737218 -0.735495 0.419631 -0.555331 -0.069581 0.443902 0.041061 0.099009 -0.239746 0.273299 0.301195 -1.081246 0.441023 0.383653 -0.382871 -0.219062 -0.270419 -0.407165 -0.052879 -0.483470 -0.466281 0.135448 0.339792 -0.239142 -0.057698 0.002099 -0.644647 1.402706 0.355084 -0.290454 0.334879 0.446569 -0.583484 0.639353 -0.292237 -1.055873 -0.311511 -0.013571 -0.417913 0.899364 -0.036861 0.634872 -1.321519 0.405586 -1.380813 0.402294 -0.821135 0.375703 1.042533 -0.842733 0.613753 0.588592 0.519191 0.470810 0.128306 0.830992 0.377283 0.058899 0.605958 0.632227 0.262976 -0.290170 -0.432777 -0.676604 -0.809198 0.092091 -0.491315 -1.525417 0.335499 0.047148 0.228579 -0.245042 0.284878 0.013791 0.679213 -0.896108 0.289588 0.438280 -0.238575 0.116335 0.651446 -0.261647 -0.066857 -0.498581 0.788731 -0.655932 0.563170 -0.168587 0.609569 -0.151593 -0.500678 -0.871033 0.034618 0.181742 -0.582572 -0.835221 -0.780368 -0.224706 0.469793 -0.398924 0.842468 1.663440 -0.805368 -0.860074 1.084864 0.517189 0.230476 0.612830 0.317694 0.785729 -0.091562 -0.503826 -0.607945 -0.535360 0.055713 -0.149175 0.322583 -0.308039 0.641734 -0.035865 -0.815949 1.577538 -0.335987 -0.619514 -0.130021 0.165618 -0.627462 -0.649412 1.010964 0.138531 0.896360 0.010279 1.192598 -0.226893 -0.598653 0.216630 -0.523563 -0.042361 -0.708914 -0.028187 0.030944 0.367578 -0.672665 -0.561118 -0.251284 -0.433190 -0.475684 0.318320 0.303048 0.199034 0.351355 0.324402 0.548298 1.144674 0.167955 -0.049396 -0.854907 0.473203 0.415496 -0.168150 -0.834215 -0.002616 -0.109266 -0.165270 0.102013 0.070809 0.420308 -0.427695 -0.181484 -0.156574 -0.084011 0.245834 0.332589 -1.066891 0.130515 0.033509 0.500969 0.436607 0.545535 1.146686 0.853384 0.588581 0.411666 -0.039711 0.090961 -0.037309 0.011041 0.230612 0.416160 0.451490 0.920768 0.788265 0.376338 0.755520 0.751349 0.369118 0.849495 0.192180 1.556564 -0.074009 -0.377360 -0.066328 0.301454 0.874412 1.357601 -0.139107 0.374544 0.533993 0.369734 -0.300582 -0.920187 0.206960 -0.190257 -0.119969 0.569628 0.254521 -0.097763 -0.171874 1.017879 -0.164853 -1.248621 0.547492 0.266287 0.594056 0.251018 0.223115 0.076160 0.495056 -0.652425 0.735080 0.666070 0.526138 -0.836408 -0.228443 0.100153 0.462455 0.393101 0.852556 -0.737761 0.354963 0.350983 0.745126 0.005847 0.387591 -0.512693 -0.532317 0.436545 -0.381703 -0.206248 0.308435 0.145594 -0.454015 0.144552 -0.608821 -0.866710 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = 0.369755 0.182008 1.038825 -1.611103 -1.994194 0.229059 -0.007058 -0.987439 -0.338560 0.565018 0.713171 -0.224629 -0.284916 1.529611 -0.523133 -1.040836 -0.493609 -1.271666 -0.271163 -0.621892 -0.198497 1.080319 -0.519863 0.102698 0.334425 -0.555406 -0.316516 0.836865 0.102251 -0.897773 -0.002764 -0.811843 -0.342680 1.757071 0.439994 -0.269877 -0.060272 3.043348 -0.644407 0.346503 -1.666197 -1.794424 1.545323 -0.543688 -0.214990 -1.653597 -1.143939 0.961190 -0.110689 0.044762 0.785271 0.078393 0.295428 -0.454026 0.204979 0.341964 -2.111943 0.975194 0.844697 -1.107928 -0.785804 -0.390592 -0.321378 0.110139 -0.544314 -0.972330 0.594150 0.710885 -0.167400 -0.194876 0.112619 -1.348877 2.138049 0.496533 -0.098153 0.574390 0.633610 -1.269737 1.467329 -0.673313 -2.071984 -0.592109 0.065747 -1.110444 1.424855 -0.212407 1.105198 -2.526113 0.843367 -2.673338 0.535783 -1.188594 0.595498 1.625697 -1.240443 1.086706 1.209799 0.899179 1.212601 -0.132975 1.662452 0.526133 0.697674 1.537529 1.006544 0.742483 -0.570969 -0.497716 -1.581888 -1.780986 0.364040 -0.698956 -2.464946 1.015408 0.259377 -0.703662 -0.519518 0.005349 0.168198 2.114939 -1.652369 0.276761 1.013762 -0.411113 -0.118617 1.205887 -0.485612 -0.054023 -0.892761 1.353023 -1.428674 1.346946 -0.033562 1.243327 -0.148717 -1.346395 -1.877176 0.321568 0.384800 -1.353167 -1.385373 -1.389578 -0.172125 0.417344 -0.982707 1.622945 3.312801 -1.837526 -2.060475 2.085680 1.519546 -0.212960 1.151638 0.538393 1.694767 -0.101157 -1.248561 -1.174004 -1.255170 0.306039 -0.237702 0.654754 -0.226233 1.333155 0.210125 -1.260218 2.790996 -0.624837 -1.341433 0.695519 0.728231 -1.135908 -1.246538 1.354388 1.440443 1.697505 0.611468 2.267844 -0.529200 -1.092750 0.308508 -0.781684 -0.053982 -1.084221 -0.012445 0.175464 0.724945 -0.675265 -0.897631 -0.720152 -1.101404 -1.083018 0.606072 0.313359 0.935509 0.873103 0.522545 0.353954 2.529146 0.418380 -0.035044 -1.585530 0.990906 0.976745 0.201239 -1.794944 -0.529863 -0.337356 -0.264286 0.445644 0.038938 1.323453 -0.449033 -0.102180 -0.019332 -0.127456 0.239102 0.694121 -1.820801 0.340991 -0.480189 1.292412 0.333468 1.193702 2.041480 1.963597 1.293735 0.828777 -0.120268 0.100733 0.276554 -0.299609 0.444842 0.779179 1.106034 1.916299 1.636844 1.071561 1.757496 1.359406 0.534558 1.821178 -0.383454 3.186843 -1.044349 -0.463439 -0.518308 0.969193 1.713163 2.642742 0.384603 0.175592 0.881317 0.616451 -0.748568 -1.747633 0.647873 -0.329018 0.460889 0.720847 1.334644 -0.224750 -0.433069 1.977014 -0.293967 -2.424716 1.329795 0.488845 1.257307 0.430879 0.419777 0.122667 0.872546 -1.089204 1.247500 1.678819 1.117138 -1.914009 -0.537272 0.378944 1.461520 -0.144218 1.807981 -2.317948 0.935035 0.721254 1.063594 -0.381188 1.135304 -1.462619 -1.200877 1.276240 -0.396654 -0.316740 1.376186 0.530532 -1.507414 0.678542 -0.984368 -1.106218 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >::_Vector_impl&>::type&& std::move >::_Vector_impl&>(std::_Vector_base >::_Vector_impl&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = 0.153763 0.143190 0.471341 -0.690238 -0.745612 -0.009689 0.354271 -0.279843 -0.140578 0.161116 0.319842 -0.118927 -0.183400 0.677871 -0.113327 -0.376930 -0.135611 -0.770264 -0.270081 -0.147744 -0.064732 0.477536 -0.160659 0.032493 0.225378 -0.117031 -0.178023 0.456418 -0.102755 -0.554950 0.017997 -0.271788 -0.048227 0.717138 0.043457 -0.120951 -0.033100 1.278296 -0.468497 0.266822 -0.630337 -0.683332 0.737141 -0.252932 -0.196850 -0.860994 -0.520343 0.478534 0.164252 -0.203221 0.320508 0.158032 0.000819 -0.313129 0.079389 0.335918 -0.970185 0.308902 0.385580 -0.386687 -0.372711 -0.132449 -0.126257 -0.074992 -0.272146 -0.441796 0.231558 0.019361 -0.103566 -0.028360 0.055381 -0.572381 0.942444 0.204173 0.058426 0.345836 0.260250 -0.599503 0.697408 -0.243576 -0.744851 -0.237333 0.023290 -0.444687 0.646909 -0.220042 0.313894 -1.045892 0.237590 -1.012897 0.212964 -0.644839 0.180562 0.697994 -0.396280 0.543651 0.392995 0.296985 0.336007 -0.029740 0.719688 0.218082 0.466696 0.621906 0.471074 0.293350 -0.369420 -0.319387 -0.773308 -0.767933 0.279257 -0.278232 -1.011711 0.438485 0.172560 -0.469142 -0.044433 -0.036761 0.144555 0.920541 -0.583283 0.351072 0.546074 -0.167472 -0.168255 0.647886 -0.212366 -0.146839 -0.457651 0.566659 -0.464802 0.737934 0.032382 0.477785 -0.045183 -0.621734 -0.479224 0.023537 0.053693 -0.519213 -0.546289 -0.648186 0.024193 0.174111 -0.456706 0.556529 1.397552 -0.689792 -0.838640 0.890510 0.954539 -0.019705 0.241921 0.186536 0.788163 -0.077385 -0.542891 -0.415176 -0.497166 0.214766 0.034800 0.271861 -0.146696 0.513014 0.045786 -0.864860 1.460939 -0.254551 -0.450605 0.685593 0.271365 -0.509815 -0.685404 0.649893 0.862157 0.848581 0.279006 0.946995 -0.155110 -0.376668 0.178569 -0.120425 0.038694 -0.723799 -0.095361 0.131848 0.248297 -0.201612 -0.355536 -0.382312 -0.458061 -0.457050 0.274239 -0.146440 0.427302 0.252199 0.250993 -0.092507 0.960803 0.043739 0.018627 -0.788466 0.402461 0.332993 0.149429 -0.788827 -0.135546 -0.110862 -0.117816 0.218108 -0.034262 0.494207 -0.141787 -0.073230 0.189385 -0.115294 -0.130145 0.160451 -0.863990 0.023298 -0.169819 0.545189 0.119831 0.533275 0.960643 0.709221 0.442116 0.369510 -0.061290 0.141179 -0.249509 -0.183115 -0.064701 0.409405 0.489068 0.702609 0.670941 0.407067 0.784160 0.523446 0.168373 0.774918 0.030833 1.297016 -0.229877 -0.338262 -0.100109 0.371896 0.710814 0.988053 0.270735 -0.007805 0.409193 0.319311 -0.413872 -0.646305 0.152970 -0.169578 0.123501 0.493707 0.434504 -0.187861 -0.037853 0.842190 -0.179246 -1.084925 0.416416 0.185977 0.560583 0.183911 0.196796 0.199616 0.478896 -0.405352 0.460780 0.598107 0.491120 -0.790181 -0.260692 0.169266 0.556080 -0.095653 0.749519 -1.222442 0.305525 0.185182 0.459562 -0.237284 0.569317 -0.555406 -0.353732 0.508805 -0.047672 -0.138115 0.549651 0.246788 -0.674398 0.160694 -0.674315 -0.287265 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = -0.419045 -0.619959 0.843516 -1.405680 -1.413242 0.083487 0.457199 -0.663305 -0.115945 -0.336465 0.747858 -0.594021 -0.402549 1.771972 0.104806 -1.054779 0.075368 0.269591 -0.092391 0.151844 0.097753 1.001637 -0.350233 0.065890 0.379200 -0.451513 -0.220326 1.446236 0.512211 0.045403 -0.052291 -0.673667 -0.292702 1.603126 0.301625 0.526491 -0.015145 2.802698 -1.322220 2.285045 -1.234669 -0.968364 1.589860 -0.292840 -0.628813 -1.714746 -1.977524 0.622615 -1.052070 -0.637339 0.893618 0.077440 0.671669 -0.394759 0.602114 0.878705 -1.698776 0.022810 0.697597 -0.938062 -0.255940 -0.370740 -0.987684 0.026943 -1.651748 -0.759074 0.059138 0.088722 0.054122 -0.201480 0.032747 -1.273058 2.573706 0.522631 -0.626584 0.578449 0.924084 -1.533653 1.208454 0.297488 -1.782526 -0.560246 -0.369835 -0.975315 1.591866 -0.425840 1.360342 -2.286882 0.223778 -2.362738 0.853556 -1.682180 0.533193 1.894091 -1.553287 1.113348 0.972247 1.101933 0.546054 0.212963 1.293203 0.958299 0.254742 0.972104 1.536041 0.707552 -0.827812 -1.222508 -1.568305 -1.369329 0.536570 -1.349183 -3.007450 0.410816 0.194681 -0.021330 -0.354808 0.231010 0.086698 1.844437 -0.842930 1.713803 0.999392 -0.420547 -0.258091 1.427569 -0.390592 -0.260476 -0.842376 1.385121 -1.167178 1.338082 -0.326436 1.078932 -0.683007 -0.774300 -0.781665 0.071850 0.094348 -0.897881 -1.404651 -1.606314 -0.359966 1.151930 -0.554500 0.754594 2.835860 -1.374400 -1.523029 1.816475 1.479338 0.194642 0.479522 0.585479 1.419578 -0.167129 -0.947541 -1.576740 -1.119562 0.138237 1.259354 0.586765 -0.699703 1.260562 -0.448509 -2.804797 3.905827 -0.699206 -1.041466 -0.016278 0.266386 -1.130887 -1.237025 2.173140 -0.197018 1.579397 -0.577698 1.981484 -0.198574 -0.963539 0.336301 -0.793727 -0.127211 -1.886624 -0.100603 0.450190 0.668142 -0.994826 -1.036556 -0.817929 -0.701222 -0.705014 0.573629 -0.479672 0.194195 0.572571 0.582284 0.719691 1.790019 0.343664 -0.279012 -1.355702 0.869534 0.662107 -0.328319 -1.758674 0.122773 -0.242494 -0.302830 -0.502982 0.176423 0.800793 -1.071599 -0.294666 -0.215374 -0.465212 -0.007328 0.516377 -2.937721 0.360535 0.328535 0.971598 0.875475 0.864714 2.229380 1.422370 0.953020 0.954881 -0.133596 0.293562 -1.101817 0.391220 0.443617 0.387941 0.702191 1.902960 1.316198 0.623866 1.274899 1.314816 1.158525 1.353727 0.731418 2.461065 0.901534 -0.876679 0.218472 0.613824 1.471210 2.274030 0.724869 0.648144 0.892297 0.630830 -0.877590 -1.675819 0.283773 -0.290518 -0.342493 1.685114 0.236502 -0.263344 -0.224419 1.782294 -0.250643 -2.346949 0.544163 0.470148 1.077001 0.670196 0.341856 0.505308 0.895921 -0.806175 1.752811 1.032463 0.830772 -1.454994 -0.661345 0.164921 0.272461 1.829170 1.496625 -2.173252 0.447738 0.222626 1.510752 -0.277208 1.449789 -0.847221 -0.323394 0.686961 -0.702736 -0.376322 0.054536 0.058735 -0.798532 0.148964 -1.835924 -1.428973 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = -0.053368 0.055799 0.200048 -0.276131 -0.258281 -0.116817 0.384881 0.009157 -0.046768 -0.170224 0.155002 -0.155484 -0.281619 0.356327 0.045786 -0.234669 -0.000885 -0.233505 -0.210749 0.074597 0.000000 0.201669 -0.004503 0.000636 0.170036 0.042205 -0.118955 0.326408 0.071856 -0.293106 -0.000882 -0.053510 0.108748 0.293608 -0.104776 0.085783 -0.009355 0.544364 -0.272771 0.397083 -0.267332 -0.177278 0.395047 -0.095872 -0.169418 -0.609327 -0.351309 0.252935 -0.124630 -0.228554 0.159566 0.172526 -0.087326 -0.226176 0.121054 0.380179 -0.522943 0.173079 0.179849 -0.094279 -0.060051 -0.017801 -0.210255 -0.159623 -0.092378 -0.208066 -0.051533 -0.185985 -0.131092 0.047916 0.022870 -0.204593 0.638426 0.056480 -0.029225 0.251351 0.146334 -0.227085 0.306976 -0.155955 -0.211899 -0.101425 0.061297 0.065834 0.327416 -0.112001 -0.013284 -0.442964 -0.162158 -0.356234 0.184148 -0.454705 0.048875 0.334555 -0.182341 0.317629 0.073349 -0.197579 0.024922 0.142779 0.293433 0.096079 0.301923 0.170063 0.216877 0.073510 -0.217835 -0.289083 -0.357436 -0.330759 0.138921 -0.079504 -0.549366 0.106765 0.086463 -0.034126 0.134293 0.002845 0.154638 0.214272 -0.087960 0.400685 0.318912 -0.075274 -0.059345 0.435498 -0.087255 -0.145386 -0.258935 0.264564 -0.077967 0.423327 0.000749 0.172193 0.064425 -0.490222 -0.035004 -0.101472 -0.072801 -0.118058 -0.223375 -0.314046 0.063401 0.107187 -0.195839 -0.047439 0.592314 -0.200559 -0.300083 0.392171 0.574073 0.192739 -0.061664 0.072892 0.421742 -0.075587 -0.187869 -0.122012 -0.196872 0.143331 0.211109 0.106873 -0.233231 0.162374 -0.016571 -0.836539 0.700082 -0.117861 -0.095883 0.427775 0.004292 -0.245988 -0.375336 0.413598 0.420412 0.479155 -0.028360 0.403563 -0.041517 -0.224184 0.118605 0.116746 0.062138 -0.453933 -0.123057 0.177749 0.032648 -0.186172 -0.159415 -0.205232 -0.133267 -0.180902 0.133096 -0.258753 0.067288 -0.002911 0.149796 -0.130302 0.271625 -0.092230 0.065027 -0.446307 0.151977 0.009961 0.067217 -0.493518 0.119070 -0.011796 -0.065745 0.122829 -0.044304 0.068234 0.030570 -0.079060 0.180914 -0.218617 -0.145944 -0.044577 -0.288100 -0.101405 0.026247 0.182898 0.100262 0.235095 0.536403 0.178944 0.090386 0.238906 -0.020129 0.104807 -0.290348 -0.040303 -0.177149 0.161341 0.195634 0.163357 0.257042 0.047182 0.345698 0.188391 0.014648 0.316112 0.287788 0.485658 0.153671 -0.281257 0.117884 0.063412 0.290586 0.347151 0.063194 -0.004822 0.229887 0.210614 -0.133114 -0.243143 -0.068531 -0.090328 -0.214048 0.587158 -0.014477 -0.149478 0.103703 0.358156 -0.133809 -0.476798 0.086607 0.063488 0.223476 -0.007849 0.103010 0.107748 0.318962 -0.178136 0.106345 0.109787 0.245432 -0.300753 -0.239616 0.030044 0.092264 0.164173 0.283770 -0.636722 -0.110947 0.055339 0.298947 -0.109988 0.247380 -0.127979 -0.105219 0.117906 0.041284 -0.091375 0.017114 0.014724 -0.211586 -0.114996 -0.404104 -0.114413 +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.517362 -0.265378 0.326097 -0.433318 -0.872838 -0.062023 0.333529 -0.996836 -0.259540 0.438396 0.311912 -0.571255 -0.367626 0.816526 0.076666 -0.404092 0.155114 -0.336410 -0.025940 -0.488981 -0.144233 0.477285 -0.235343 -0.169904 0.038713 -0.098833 -0.144702 0.478877 -0.057748 -0.266569 -0.115580 -0.634154 0.308836 1.244347 0.511916 0.232149 -0.706436 1.743536 -0.254553 1.084467 -1.818450 -0.872438 1.122511 -0.441463 0.118332 -1.480697 -0.663446 0.884439 0.123124 -0.581638 0.005523 0.053529 0.138833 -0.496622 -0.231479 0.766182 -0.924321 0.645221 0.542753 -1.182675 -0.604673 -0.236863 -0.387369 0.393866 -0.958566 -0.897584 0.216505 0.198417 -0.287245 0.477058 -0.578525 -1.133178 0.898946 0.243875 -0.609757 -0.048875 -0.047177 -0.291785 0.822610 0.037928 -0.987631 -0.557982 -0.048891 0.057461 0.304169 0.208193 0.910352 -1.925043 0.181873 -2.021154 0.694173 -0.976874 0.767648 0.886865 -0.824829 0.692362 0.430220 0.306418 0.946830 -0.054885 0.788233 0.476653 0.482095 0.404556 1.123308 0.568763 0.040449 -0.678405 -0.515199 -0.862366 0.605978 -0.263560 -1.310068 0.631298 -0.494819 0.041166 -0.441949 0.455406 0.201346 1.005292 -1.307161 -0.154105 0.883599 -0.325572 0.617661 0.906332 -0.615970 0.290385 -0.807067 0.770828 -0.277732 0.875425 -0.105010 0.932731 -0.383231 -1.440263 -1.291871 0.216531 0.581992 -1.146853 -1.167558 -1.397676 -0.119638 0.449319 -0.856338 0.619983 1.953917 -1.140336 -0.908697 0.987147 0.742124 -0.384139 0.612337 0.184703 1.845540 -0.703101 -0.042842 -0.279891 -0.368904 0.393324 0.920042 -0.043957 -0.869523 0.665539 -0.062975 -1.848467 1.533985 -0.284790 -0.735249 0.442448 -0.042506 0.169377 -0.606297 0.848775 -0.107854 0.888588 -0.670544 0.994311 -0.429290 -0.568781 0.428155 -0.679544 -0.400874 -0.004437 0.133458 0.009606 1.041288 -1.009411 -0.573726 -0.220509 -1.221639 -0.372844 0.832885 0.011163 0.018821 0.466169 0.302512 0.804147 1.151697 0.140984 0.024350 -0.996093 0.705547 0.866808 0.558686 -1.114642 -0.558667 -0.742883 -0.365816 -0.488941 0.129561 0.893507 -0.384553 -0.036852 0.151460 -0.295563 0.194879 0.332067 -0.575938 0.407068 0.059570 0.700571 0.119590 1.320704 0.769459 1.026932 0.700948 0.016594 -0.152941 -0.462567 -0.463401 0.428817 0.273192 0.075084 0.597522 0.539516 0.861705 0.364398 1.357347 0.018346 0.574724 1.302034 0.158506 1.633913 -0.935861 0.220199 0.110015 -0.099601 1.186756 1.858494 0.242129 -0.461524 0.553820 -0.317325 -0.937879 -0.688379 -0.167070 -0.028337 -0.346114 0.852358 0.623737 -0.117715 -0.544774 1.657549 -0.128454 -1.840076 0.999148 0.360766 0.421987 0.868608 -0.106821 0.411959 0.609349 -0.176624 0.384915 0.982569 0.919415 -1.185902 -1.004400 -0.046941 0.503991 0.929567 0.601385 -1.892678 0.283452 0.836061 1.386125 -0.203441 0.394236 -1.163750 -0.139918 0.556599 -0.196080 -0.048144 0.515573 0.672135 -0.582795 -0.105421 -1.061529 -0.061151 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = 2.210386 -1.661845 1.909089 -6.025505 -5.893501 2.006563 -1.819552 -4.535695 -1.239603 2.652866 2.693811 -1.381192 0.150713 5.777497 -0.573077 -3.304775 0.113410 -3.455150 0.832954 -0.039660 -0.709588 3.491680 -2.152518 -0.080754 0.182231 -1.098911 -1.229723 2.221961 1.538984 -1.686594 -2.063885 -3.121102 -2.481711 6.598461 3.348211 -1.872485 -0.160168 10.905469 -2.416675 3.666041 -4.965149 -4.514551 4.735753 -1.656104 -1.095092 -3.375151 -3.900097 3.359960 -0.294806 -1.512486 3.317950 -1.231573 2.520607 -0.757572 -0.406290 1.334144 -5.996086 2.027387 3.371449 -1.956135 -1.568566 -1.990991 -0.170573 2.033622 -4.729045 -3.499771 2.669687 1.769988 -0.530405 -2.228428 -1.866873 -5.554295 6.273154 3.144374 -1.890017 0.160281 1.395953 -5.736086 4.600779 -0.917964 -8.454608 -1.481339 -2.503596 -5.866986 5.997490 -1.368551 5.501912 -9.228877 5.124783 -10.953911 1.266800 -4.149003 2.730023 7.197135 -5.167590 2.026210 4.067457 7.039333 4.694714 -1.361013 5.833681 2.702174 -0.667623 4.199642 5.025203 3.164368 -1.915715 -1.336386 -4.134235 -5.279104 1.122517 -3.384839 -8.802377 4.098437 -0.498838 -1.422308 -2.593861 1.152195 -1.517148 7.044575 -6.044487 -0.702999 1.323660 -1.551187 1.038604 4.854915 -1.941747 0.589339 -3.124129 5.282709 -4.320790 3.802376 -0.503910 4.698470 -2.732508 -1.478065 -6.147958 2.304860 3.189379 -5.516558 -6.153404 -6.616450 -0.972479 0.809682 -3.352509 8.438402 10.924560 -6.417554 -5.723389 7.396681 2.159413 -1.176084 5.476087 0.926302 6.092607 -1.060159 -3.491633 -3.753224 -4.159659 -1.248501 -0.598650 1.589844 -0.315154 4.316536 -1.354658 -2.482788 9.998511 -0.239896 -5.375036 -0.127694 1.673880 -3.354634 -5.162212 5.700747 -0.379466 3.476194 2.325820 8.075747 -0.453372 -2.449738 2.390960 -2.852843 -0.754353 -4.112021 -0.633808 0.075852 3.335269 -2.748385 -3.229940 -1.599003 -2.357240 -4.098142 2.809451 2.909624 2.547671 4.077119 1.790994 3.933972 8.902105 1.546331 -0.423801 -4.409454 3.794865 4.541633 -1.703700 -3.778189 -2.732932 -2.542931 -0.900230 0.827417 0.076994 5.159555 -5.094495 -1.714504 -0.579667 1.699117 2.553985 3.947522 -9.938379 2.615485 -0.363101 3.668075 3.048198 4.945070 4.387603 7.640751 4.939266 1.581658 -0.835053 1.701763 -1.576733 -1.011043 1.887538 2.864219 3.710904 6.615846 5.301478 4.319375 5.240845 4.288633 2.985556 6.133733 -1.079088 9.938089 -0.961929 -1.486954 -1.152022 1.725742 6.271176 9.909294 0.080161 0.997562 2.811947 0.280908 -3.892840 -5.939781 3.011439 -1.248369 1.861030 -0.065475 3.427519 1.365862 -3.026405 7.218385 -1.271190 -9.411217 4.452293 2.054381 4.597721 4.698811 1.180516 2.508214 0.980202 -3.997789 6.574808 7.026310 3.533321 -5.249351 -0.001019 1.260021 3.897003 0.722593 5.728079 -6.015140 4.507750 2.183727 4.578273 0.686746 3.466949 -5.205447 -2.473058 4.365823 -2.293678 0.056908 2.375804 3.001238 -4.334162 2.093786 -4.051932 -3.440471 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = 0.005451 -0.513314 0.200776 -1.153236 -0.965896 0.172813 -0.001815 -0.645235 -0.189774 -0.018083 0.517023 -0.485429 -0.166091 1.502379 0.072833 -0.846115 0.094566 -0.054371 -0.004872 0.451479 -0.043179 0.836048 -0.352641 -0.071496 0.284438 -0.100587 -0.315657 0.628313 0.428650 -0.268042 -0.386499 -0.536076 -0.324150 1.265611 0.362561 0.278001 -0.027144 2.103267 -0.667621 1.692776 -1.090870 -0.732384 1.093996 -0.263115 -0.337708 -1.036844 -1.160997 0.561999 -0.445053 -0.576418 0.602036 -0.112701 0.274949 -0.311765 0.327790 0.599086 -1.252632 0.319145 0.689676 -0.323183 -0.162332 -0.385997 -0.419373 0.018821 -1.186853 -0.687899 0.063270 0.159381 -0.196407 -0.318396 -0.277925 -1.052682 1.798552 0.602883 -0.599586 0.297914 0.275101 -1.147017 0.823742 -0.274346 -1.420133 -0.317180 -0.228946 -0.595199 1.151534 -0.096177 1.073905 -1.834888 0.581565 -1.956680 0.510241 -1.122554 0.575123 1.578810 -1.127290 0.585760 0.674820 1.023991 0.740283 0.297627 1.072211 0.642640 -0.129918 0.565782 0.993155 0.601381 -0.524136 -0.677599 -0.772346 -1.035065 0.285679 -0.683083 -2.160826 0.500317 -0.084030 0.308971 -0.323977 0.378904 -0.047233 1.021120 -1.061173 0.387151 0.446973 -0.314913 0.234344 1.120761 -0.267891 -0.131238 -0.805171 0.997345 -0.699020 0.820314 -0.300062 0.884208 -0.714084 -0.488310 -0.761407 0.096490 0.254504 -0.937665 -1.160511 -1.449983 -0.206969 0.638722 -0.602489 1.111867 2.118693 -1.171581 -1.070884 1.475398 0.708566 0.155279 0.715168 0.241210 1.214884 -0.281823 -0.487795 -0.689688 -0.694915 -0.132470 0.314970 0.321559 -0.577072 0.679694 -0.479097 -1.749409 2.460594 -0.101580 -0.821772 -0.283484 0.132525 -0.790429 -0.979128 1.522914 -0.500390 1.050765 -0.268466 1.547909 -0.201669 -0.526208 0.512372 -0.690437 -0.224911 -1.207121 -0.222206 0.151285 0.606106 -0.885722 -0.652043 -0.246185 -0.434162 -0.754231 0.565656 0.027236 0.097755 0.488879 0.336443 0.886766 1.370214 0.112112 -0.067487 -0.961814 0.696757 0.657514 -0.471740 -1.134384 -0.084105 -0.426504 -0.248668 -0.021848 0.010468 0.618382 -0.906862 -0.366891 -0.086166 -0.025427 0.416730 0.432107 -1.705804 0.299885 0.069691 0.665693 0.717043 0.896435 1.188503 1.254332 0.699383 0.460895 -0.121972 0.222859 -0.643726 0.146135 0.211223 0.408276 0.682406 1.247811 1.014733 0.590228 0.984633 0.804111 0.685004 1.173391 0.400793 1.903684 0.440129 -0.608939 0.172687 0.169249 1.195292 1.833006 -0.214902 0.420812 0.645389 0.173855 -0.722533 -0.961759 0.337171 -0.239552 -0.491047 0.757592 0.110590 0.143521 -0.382749 1.496540 -0.307442 -1.826236 0.670154 0.336920 0.917080 0.641390 0.283574 0.510129 0.543674 -0.712182 1.209017 1.012110 0.772258 -0.958491 -0.386363 0.106692 0.391848 1.097987 1.046854 -1.054550 0.636697 0.416756 1.200370 0.018321 0.639669 -0.629296 -0.262106 0.474755 -0.408638 -0.128528 -0.113891 0.238405 -0.396251 -0.022209 -1.183104 -0.915760 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.011040 -0.168722 0.150644 -0.284681 -0.207464 0.051895 0.100898 -0.111530 -0.035902 -0.161934 0.098036 -0.052237 -0.124780 0.382404 0.044034 -0.264991 0.030106 -0.063398 -0.049247 0.147738 -0.012484 0.190108 -0.074571 0.010759 0.093812 -0.035459 -0.058427 0.208094 0.000267 -0.131399 -0.090279 -0.143968 -0.082337 0.343261 0.053869 0.202162 0.000000 0.606387 -0.072455 0.576561 -0.269824 -0.238526 0.263752 -0.100442 -0.090989 -0.323415 -0.299358 0.166191 -0.142062 -0.188541 0.193939 0.021109 -0.014385 -0.097909 0.133234 0.176759 -0.395030 0.055447 0.142265 -0.078510 -0.037395 -0.107544 -0.195500 -0.085054 -0.254686 -0.167745 0.019155 0.037468 -0.116561 0.007759 -0.021223 -0.260250 0.610723 0.181374 -0.128670 0.130656 0.205461 -0.223492 0.245807 -0.081832 -0.375575 -0.113425 -0.081574 -0.114814 0.393714 -0.034838 0.215969 -0.487258 0.157058 -0.500000 0.174110 -0.383498 0.119198 0.419455 -0.249063 0.238614 0.220377 0.236263 0.065162 0.100161 0.295822 0.181312 -0.033649 0.181367 0.325408 0.033212 -0.168037 -0.240898 -0.269674 -0.285196 0.094381 -0.215460 -0.586195 0.084452 0.059282 0.181066 -0.064922 0.200365 0.037729 0.137022 -0.360063 0.261054 0.187463 -0.088079 0.050855 0.275229 -0.106351 -0.059281 -0.225946 0.305183 -0.220966 0.255556 -0.083785 0.204120 -0.071693 -0.109020 -0.162364 -0.032418 0.048250 -0.177936 -0.320629 -0.349875 -0.073929 0.313095 -0.147300 0.287705 0.600996 -0.272310 -0.243951 0.394728 0.289611 0.139158 0.111813 0.125107 0.263740 -0.039210 -0.182209 -0.189492 -0.184066 -0.002217 -0.033277 0.121313 -0.153229 0.243178 -0.073668 -0.518100 0.816887 -0.142873 -0.209948 0.041558 -0.023485 -0.249292 -0.280241 0.436349 0.011016 0.350422 -0.027588 0.432548 -0.036583 -0.127212 0.077354 -0.168313 -0.000120 -0.415124 -0.039575 0.005724 0.117434 -0.314651 -0.217633 -0.078066 -0.164851 -0.155085 0.130436 -0.008704 0.028615 0.104748 0.139886 0.213212 0.366235 0.038294 -0.049605 -0.321938 0.178386 0.069647 -0.107789 -0.252491 0.057401 -0.032603 -0.058655 0.014430 0.031609 0.086849 -0.193593 -0.090037 -0.014105 -0.066154 0.018871 0.114580 -0.413680 -0.048704 0.143902 0.162204 0.211968 0.188262 0.443736 0.281667 0.191326 0.150512 -0.021759 0.122688 -0.244241 -0.005840 -0.004460 0.210120 0.143261 0.243663 0.276203 0.096849 0.268498 0.276132 0.221765 0.297722 0.224965 0.520127 0.173383 -0.220503 0.071719 0.071886 0.317585 0.412031 -0.114669 0.240000 0.205143 0.127712 -0.162084 -0.230277 0.046158 -0.083862 -0.161293 0.322870 0.009936 0.000000 -0.043680 0.383474 -0.092490 -0.489731 0.083176 0.100402 0.234993 0.182128 0.106051 0.148144 0.189735 -0.197475 0.299478 0.186275 0.206587 -0.281087 -0.086263 0.023881 0.042617 0.250577 0.305815 -0.229840 0.071399 0.052529 0.324288 -0.016617 0.105693 -0.143433 -0.070435 0.118688 -0.155179 -0.065968 0.039746 0.066849 -0.046389 -0.086659 -0.390666 -0.285098 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = -0.082550 0.032112 0.321247 -0.473947 -0.489123 -0.122776 0.487630 -0.111810 -0.085095 -0.065880 0.258300 -0.232701 -0.279901 0.624699 0.010557 -0.299417 -0.008135 -0.261698 -0.218813 0.062213 0.021570 0.385437 -0.056257 0.004139 0.217882 -0.017047 -0.149808 0.493467 0.044584 -0.273113 0.034253 -0.166986 0.089767 0.491065 -0.051872 0.105444 -0.067212 0.886577 -0.556567 0.676780 -0.499822 -0.341895 0.616781 -0.139550 -0.192168 -0.925350 -0.618355 0.337272 -0.095004 -0.332269 0.233316 0.178023 0.025008 -0.281936 0.173417 0.450315 -0.712057 0.155680 0.293781 -0.290817 -0.124707 -0.052732 -0.305107 -0.125004 -0.355391 -0.314994 -0.062310 -0.170311 -0.072362 0.024130 0.034657 -0.362212 0.860143 0.099581 -0.100384 0.309826 0.217892 -0.472209 0.481731 -0.170223 -0.438060 -0.180571 0.008308 -0.076097 0.450793 -0.148199 0.207974 -0.743825 -0.111061 -0.661315 0.280639 -0.634971 0.101182 0.558217 -0.319046 0.457750 0.204143 -0.024379 0.175933 0.171988 0.442084 0.267124 0.400301 0.328648 0.401046 0.255741 -0.338596 -0.445306 -0.578953 -0.513155 0.250362 -0.236757 -0.894045 0.182738 0.151657 -0.151654 0.069883 -0.033856 0.185213 0.578520 -0.228936 0.600652 0.484166 -0.124684 -0.156895 0.591524 -0.117715 -0.182232 -0.386072 0.408040 -0.244827 0.638748 0.000258 0.336565 -0.130495 -0.629387 -0.105497 -0.072812 -0.100672 -0.265234 -0.372419 -0.580168 0.036835 0.253193 -0.293855 0.006347 0.949862 -0.419207 -0.544565 0.619612 0.832280 0.085204 -0.043631 0.141543 0.606348 -0.075535 -0.347445 -0.330137 -0.371080 0.188462 0.540530 0.184888 -0.331313 0.334086 -0.100126 -1.322207 1.187570 -0.197167 -0.245831 0.434856 0.072702 -0.385316 -0.479531 0.640452 0.350785 0.678638 -0.179016 0.632661 -0.066060 -0.310539 0.139876 -0.082336 0.031140 -0.686748 -0.094861 0.260579 0.146823 -0.283087 -0.273059 -0.310985 -0.280882 -0.294064 0.222175 -0.526370 0.112757 0.096560 0.207004 -0.022781 0.487154 -0.046444 0.031811 -0.565867 0.282816 0.107059 0.093185 -0.817352 0.076525 -0.068168 -0.113226 0.009222 -0.025319 0.213507 -0.086869 -0.072337 0.189038 -0.316619 -0.192542 0.011457 -0.609203 -0.031582 0.001034 0.393561 0.143745 0.363314 0.780905 0.396093 0.206134 0.384839 -0.061508 0.090647 -0.432393 0.061178 -0.072457 0.091017 0.307191 0.463462 0.446332 0.167927 0.545751 0.341339 0.166985 0.508070 0.284136 0.790667 0.179332 -0.368942 0.135953 0.200812 0.479415 0.637671 0.280755 0.003057 0.321818 0.208461 -0.296942 -0.370709 -0.000440 -0.106958 -0.234870 0.792256 0.118936 -0.182395 0.071904 0.591466 -0.169020 -0.784678 0.182725 0.127673 0.386065 0.079477 0.150877 0.202944 0.437577 -0.203192 0.327913 0.289106 0.358480 -0.520043 -0.411340 0.065253 0.147760 0.481227 0.501670 -1.076151 -0.024234 0.101031 0.477218 -0.253893 0.529902 -0.277558 -0.128831 0.248100 0.011603 -0.144696 0.059434 0.025383 -0.330887 -0.072035 -0.639982 -0.231301 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = 8.751482 -9.114525 11.390209 -26.305124 -25.856391 8.939288 -8.183469 -21.394129 -5.403035 13.102783 11.052777 -5.167029 0.256082 24.364950 -3.202234 -15.414075 0.083232 -11.056455 4.320085 -3.474064 -2.740304 14.605397 -9.279544 -1.504978 0.646278 -8.204821 -2.623122 11.652850 4.650342 -4.000912 -5.741202 -15.467000 -10.426030 30.377544 15.446967 -4.392656 -3.334002 48.431948 -9.561299 18.786586 -24.426500 -23.396622 23.018764 -7.662974 -3.168423 -15.639668 -17.273512 14.513018 -2.747120 -6.863558 12.615288 -5.546829 13.702836 -4.961872 -3.103519 4.394585 -25.031215 6.398835 13.887086 -15.119254 -9.859054 -8.213069 -1.946765 10.775885 -22.854004 -15.665724 11.401781 9.992114 -2.083291 -8.022783 -7.239711 -24.297252 28.618803 13.061402 -8.129016 0.975593 7.695502 -22.931723 20.468735 -0.714207 -37.790052 -9.406541 -11.186929 -27.277341 24.871897 -4.215985 27.981002 -42.223739 23.358147 -49.462843 8.376078 -17.263262 12.953380 30.724107 -22.664459 12.067479 20.073963 32.770029 19.236376 -7.220500 25.166143 13.014577 -2.294775 20.181574 24.662967 13.760674 -8.983325 -9.116501 -20.229659 -23.410502 6.524179 -18.610765 -39.743473 17.436638 -2.163231 -5.457696 -13.087822 5.356643 -6.384017 33.254609 -30.360977 0.502463 8.135303 -7.245433 3.679766 18.359836 -8.232367 2.967600 -11.425120 23.367486 -21.810389 15.660655 -1.144477 22.588119 -11.511616 -4.432893 -26.899131 11.004076 13.997648 -24.509270 -27.516442 -29.000725 -6.834264 9.336053 -14.278509 36.842218 49.653028 -28.705303 -26.924583 30.842264 8.749905 -7.257644 23.310746 7.032115 26.184350 -4.852836 -16.683019 -19.666419 -18.588598 -1.175369 2.509242 6.877251 -2.708440 23.799401 -6.009773 -10.931846 46.132284 -4.790537 -23.592998 -2.481490 7.984867 -15.239105 -20.274442 24.211043 -4.417417 17.198059 6.645437 36.539038 -3.663996 -11.345932 7.783584 -18.393551 -5.410181 -17.550175 0.385903 -1.056714 16.082799 -14.314818 -16.143865 -8.651308 -13.757223 -15.647554 14.371192 9.499050 10.876152 18.293677 6.529784 21.208318 38.694859 8.088290 -4.891580 -18.748442 16.950910 20.228395 -4.797275 -17.282238 -13.710464 -10.448064 -4.533287 0.602507 1.998984 24.622734 -22.618209 -4.826921 -3.924990 6.020832 8.757051 16.771561 -45.221127 11.543842 1.280870 17.744549 12.798008 22.748942 21.720375 34.231147 21.316766 8.670507 -4.098195 5.019493 -7.590484 -2.392840 10.860013 11.641066 15.779932 31.165647 23.677987 19.867858 25.223579 20.401924 15.854688 27.574735 -6.746092 44.184434 -6.859116 -5.658119 -4.624168 10.131097 28.262067 43.725782 3.465924 4.921837 13.178016 0.571513 -17.721027 -26.845154 13.442628 -4.638443 10.031469 2.549297 19.599451 5.595504 -14.353396 32.855381 -3.974392 -43.222615 20.698181 9.961580 20.352794 22.049596 3.586853 11.106022 4.953797 -14.640367 28.642609 30.734529 15.233139 -27.041844 0.421891 5.911555 17.353391 7.459592 25.380099 -29.148074 18.468970 8.880940 21.454422 0.686225 18.007464 -24.857719 -10.037416 19.531240 -11.584499 0.129119 12.211916 11.964266 -18.030525 9.543770 -19.675254 -15.362119 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = -0.010685 0.018482 0.092441 -0.112601 -0.046326 -0.078772 0.257451 0.066599 -0.031530 -0.206238 0.037703 -0.038055 -0.220984 0.132240 0.062687 -0.157004 0.010004 -0.177272 -0.157459 0.087005 -0.023067 0.066019 0.019068 -0.011922 0.124729 0.055695 -0.072097 0.153688 0.007019 -0.256919 0.000716 -0.004669 0.079037 0.134907 -0.102570 0.114250 0.000491 0.258791 -0.004950 0.211042 -0.103371 -0.082940 0.196868 -0.077311 -0.102265 -0.301545 -0.102108 0.152543 -0.078748 -0.139916 0.061222 0.125297 -0.146932 -0.163604 0.053982 0.236736 -0.296537 0.122475 0.082977 0.008544 -0.036369 -0.007052 -0.129178 -0.176641 0.062862 -0.108682 -0.044774 -0.142148 -0.152530 0.068206 0.014248 -0.054194 0.396799 0.043033 0.028197 0.173203 0.074449 -0.009703 0.137186 -0.119234 -0.053126 -0.065968 0.067331 0.131708 0.192147 -0.045068 -0.109466 -0.197152 -0.108134 -0.126551 0.095481 -0.253571 0.018328 0.150208 -0.041711 0.207577 0.013706 -0.217067 -0.097532 0.102017 0.152351 -0.015523 0.146162 0.073517 0.088386 -0.068704 -0.107470 -0.158040 -0.154140 -0.146429 0.066455 0.010259 -0.232346 0.043040 0.042124 0.079488 0.119528 0.073557 0.110701 -0.067321 -0.062361 0.220147 0.173939 -0.038730 0.012154 0.213598 -0.043857 -0.112063 -0.144723 0.123064 0.004416 0.216373 -0.005509 0.066334 0.169228 -0.265369 0.036829 -0.119066 -0.053330 -0.020296 -0.101359 -0.103080 0.044216 0.071046 -0.110468 -0.033756 0.279790 -0.056373 -0.096081 0.186025 0.306854 0.218759 -0.081432 0.048264 0.188465 -0.038358 -0.088120 0.030567 -0.060314 0.112300 -0.060342 0.040234 -0.142747 0.062673 0.026899 -0.379853 0.332161 -0.070450 0.000000 0.331040 -0.052534 -0.131916 -0.228538 0.186209 0.358838 0.289756 0.050581 0.197940 -0.013457 -0.093406 0.057870 0.150445 0.052220 -0.245684 -0.084105 0.055903 -0.049195 -0.129985 -0.083055 -0.082510 -0.049238 -0.076347 0.076009 -0.071062 0.023567 -0.048390 0.077967 -0.121651 0.083276 -0.103722 0.041433 -0.272849 0.057130 -0.062019 0.051109 -0.185777 0.107950 0.048979 -0.035650 0.166102 -0.025838 -0.026144 0.094017 -0.037144 0.144351 -0.106258 -0.108563 -0.059550 -0.013282 -0.147915 0.077739 0.024848 0.057469 0.119285 0.290061 0.020579 -0.013615 0.122396 -0.005354 0.099145 -0.171868 -0.095083 -0.204424 0.191414 0.092329 -0.054376 0.121869 -0.014750 0.176140 0.081972 -0.037609 0.153543 0.228800 0.224417 0.088450 -0.194262 0.103419 -0.000841 0.137993 0.078342 -0.100464 0.026635 0.140171 0.145822 -0.025521 -0.083808 -0.078100 -0.053373 -0.165880 0.354194 -0.061013 -0.079744 0.091874 0.170309 -0.095969 -0.220519 0.019377 0.033523 0.107019 -0.046684 0.072841 0.054844 0.199654 -0.101136 -0.050181 -0.012355 0.138210 -0.139499 -0.075510 0.010895 0.035344 -0.032099 0.121229 -0.212209 -0.143342 0.001471 0.140913 -0.033073 0.007073 -0.007360 -0.057204 0.020159 0.045300 -0.036308 0.018507 0.000000 -0.049597 -0.143913 -0.210486 -0.015533 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.237510 0.088904 0.105157 -0.735464 -0.791862 -0.138089 0.292264 -0.406400 -0.208097 0.069481 0.400268 -0.600306 -0.460549 1.001566 -0.029149 -0.578462 0.015439 -0.582785 -0.264794 0.151419 -0.125554 0.521736 -0.165389 -0.138992 0.234576 0.195732 -0.341254 0.392330 0.492819 -0.655180 -0.379048 -0.254780 0.187568 0.919920 0.129242 -0.151519 -0.093918 1.452783 -0.416141 0.713250 -1.016165 -0.454539 0.918708 -0.250972 -0.200351 -1.272309 -0.682124 0.722396 -0.257233 -0.385010 0.326444 0.138400 -0.144706 -0.465974 0.089760 0.828024 -1.214960 0.902117 0.611853 -0.088381 -0.126321 -0.218464 -0.207152 -0.053614 -0.311212 -0.676875 0.014428 -0.126295 -0.425561 -0.019090 -0.397673 -0.749606 1.243762 0.268572 -0.389861 0.272740 -0.077486 -0.643884 0.671698 -0.714219 -0.776431 -0.173121 0.165873 0.198367 0.700095 -0.028549 0.236164 -1.382324 -0.041548 -1.375328 0.346869 -0.971810 0.418681 0.998554 -0.726823 0.440414 0.146123 -0.195852 0.717902 0.332753 0.800563 0.250387 0.449641 0.226820 0.479211 0.465159 -0.222406 -0.410449 -0.408623 -0.824310 0.113448 0.073831 -1.384064 0.523960 -0.230621 0.129958 0.026759 0.124291 0.118773 0.502517 -0.605053 -0.176484 0.437211 -0.224320 0.413373 1.132711 -0.311058 -0.023688 -0.761257 0.677561 -0.040347 0.783969 -0.105113 0.596372 -0.212710 -1.373563 -0.824103 0.022473 0.257488 -0.693370 -0.852706 -1.077865 0.111151 -0.172839 -0.656610 0.458809 1.533749 -0.730804 -0.792453 1.094532 0.744152 0.265246 0.575645 -0.025317 1.414901 -0.444959 -0.105890 -0.006725 -0.377702 0.002616 0.147979 0.055422 -0.633482 0.209325 -0.149771 -1.527155 0.962865 0.154218 -0.439733 0.427835 0.007180 -0.366078 -0.882296 0.988627 0.342319 0.871016 -0.068057 1.084854 -0.263672 -0.601658 0.575180 0.038957 -0.013347 -0.507894 -0.325187 0.299841 0.458912 -0.625196 -0.364564 -0.143034 -0.307446 -0.633562 0.526497 0.049931 0.058436 0.204812 0.299777 0.228390 0.918689 -0.223283 0.361530 -0.992679 0.496371 0.492709 0.008013 -1.189736 -0.061580 -0.427706 -0.221958 0.345452 -0.134264 0.402895 -0.194552 -0.369299 0.344355 -0.197347 0.315289 0.124778 -0.441548 0.154647 -0.269929 0.436734 0.291751 0.931546 0.757237 0.782933 0.426296 0.204616 -0.075531 0.008566 -0.209516 -0.035967 -0.150039 0.239546 0.621422 0.489409 0.676549 0.260986 0.884503 0.245909 -0.111303 0.987278 0.374081 1.344171 -0.180334 -0.321742 0.122718 -0.175027 0.906541 1.401265 -0.332996 -0.287967 0.504322 0.117442 -0.408103 -0.635508 -0.054619 -0.194252 -0.568819 0.758461 0.058214 -0.094872 -0.135436 1.175205 -0.341522 -1.314757 0.693435 0.198242 0.554775 0.228897 0.126913 0.227466 0.563667 -0.586032 0.347021 0.696201 0.745228 -0.647474 -0.644414 0.030903 0.500188 0.295987 0.591747 -1.228225 0.168579 0.630353 0.941735 0.085924 0.301583 -0.553307 -0.396513 0.344509 0.095142 -0.058579 -0.058455 0.358178 -0.586389 -0.141187 -0.581708 -0.296288 +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.517362 -0.265378 0.326097 -0.433318 -0.872838 -0.062023 0.333529 -0.996836 -0.259540 0.438396 0.311912 -0.571255 -0.367626 0.816526 0.076666 -0.404092 0.155114 -0.336410 -0.025940 -0.488981 -0.144233 0.477285 -0.235343 -0.169904 0.038713 -0.098833 -0.144702 0.478877 -0.057748 -0.266569 -0.115580 -0.634154 0.308836 1.244347 0.511916 0.232149 -0.706436 1.743536 -0.254553 1.084467 -1.818450 -0.872438 1.122511 -0.441463 0.118332 -1.480697 -0.663446 0.884439 0.123124 -0.581638 0.005523 0.053529 0.138833 -0.496622 -0.231479 0.766182 -0.924321 0.645221 0.542753 -1.182675 -0.604673 -0.236863 -0.387369 0.393866 -0.958566 -0.897584 0.216505 0.198417 -0.287245 0.477058 -0.578525 -1.133178 0.898946 0.243875 -0.609757 -0.048875 -0.047177 -0.291785 0.822610 0.037928 -0.987631 -0.557982 -0.048891 0.057461 0.304169 0.208193 0.910352 -1.925043 0.181873 -2.021154 0.694173 -0.976874 0.767648 0.886865 -0.824829 0.692362 0.430220 0.306418 0.946830 -0.054885 0.788233 0.476653 0.482095 0.404556 1.123308 0.568763 0.040449 -0.678405 -0.515199 -0.862366 0.605978 -0.263560 -1.310068 0.631298 -0.494819 0.041166 -0.441949 0.455406 0.201346 1.005292 -1.307161 -0.154105 0.883599 -0.325572 0.617661 0.906332 -0.615970 0.290385 -0.807067 0.770828 -0.277732 0.875425 -0.105010 0.932731 -0.383231 -1.440263 -1.291871 0.216531 0.581992 -1.146853 -1.167558 -1.397676 -0.119638 0.449319 -0.856338 0.619983 1.953917 -1.140336 -0.908697 0.987147 0.742124 -0.384139 0.612337 0.184703 1.845540 -0.703101 -0.042842 -0.279891 -0.368904 0.393324 0.920042 -0.043957 -0.869523 0.665539 -0.062975 -1.848467 1.533985 -0.284790 -0.735249 0.442448 -0.042506 0.169377 -0.606297 0.848775 -0.107854 0.888588 -0.670544 0.994311 -0.429290 -0.568781 0.428155 -0.679544 -0.400874 -0.004437 0.133458 0.009606 1.041288 -1.009411 -0.573726 -0.220509 -1.221639 -0.372844 0.832885 0.011163 0.018821 0.466169 0.302512 0.804147 1.151697 0.140984 0.024350 -0.996093 0.705547 0.866808 0.558686 -1.114642 -0.558667 -0.742883 -0.365816 -0.488941 0.129561 0.893507 -0.384553 -0.036852 0.151460 -0.295563 0.194879 0.332067 -0.575938 0.407068 0.059570 0.700571 0.119590 1.320704 0.769459 1.026932 0.700948 0.016594 -0.152941 -0.462567 -0.463401 0.428817 0.273192 0.075084 0.597522 0.539516 0.861705 0.364398 1.357347 0.018346 0.574724 1.302034 0.158506 1.633913 -0.935861 0.220199 0.110015 -0.099601 1.186756 1.858494 0.242129 -0.461524 0.553820 -0.317325 -0.937879 -0.688379 -0.167070 -0.028337 -0.346114 0.852358 0.623737 -0.117715 -0.544774 1.657549 -0.128454 -1.840076 0.999148 0.360766 0.421987 0.868608 -0.106821 0.411959 0.609349 -0.176624 0.384915 0.982569 0.919415 -1.185902 -1.004400 -0.046941 0.503991 0.929567 0.601385 -1.892678 0.283452 0.836061 1.386125 -0.203441 0.394236 -1.163750 -0.139918 0.556599 -0.196080 -0.048144 0.515573 0.672135 -0.582795 -0.105421 -1.061529 -0.061151 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = -0.021452 -0.322292 0.930272 -2.013790 -2.492685 0.311769 -0.275507 -1.270098 -0.339256 0.093322 1.011901 -0.789022 -0.636119 2.414071 -0.438014 -1.626069 -0.327188 -0.234570 0.011021 -0.129537 -0.109152 1.427791 -0.656785 0.137286 0.345318 -0.544226 -0.489937 1.250966 1.123673 -0.419917 -0.423673 -1.015393 -0.445302 2.261152 0.717184 0.115972 0.050772 3.915957 -0.993230 1.884246 -2.181939 -1.680891 1.867268 -0.453311 -0.388759 -2.358379 -2.153306 1.046581 -1.458866 -0.115607 1.289672 -0.100362 0.655412 -0.316069 0.725603 0.820034 -2.639675 1.317249 1.099013 -1.028204 -0.189326 -0.579522 -1.012176 0.178275 -1.210349 -1.156815 0.212220 0.846507 -0.240255 -0.405522 -0.128954 -1.727611 3.301772 0.720483 -0.985014 0.560040 0.902645 -1.831981 1.595461 -0.941677 -2.758016 -0.611124 -0.126320 -0.807704 2.019682 -0.108581 1.617380 -3.271274 0.608993 -3.597379 0.970794 -1.906159 0.887950 2.493465 -2.185279 1.126970 1.461842 0.878977 1.744019 0.384008 1.943420 1.028886 0.330783 1.416979 1.440810 1.067339 -0.651268 -0.915088 -1.648871 -2.072565 0.176551 -1.001013 -3.877790 0.875158 0.111830 0.319184 -0.709384 0.277700 0.089241 2.079980 -1.680466 0.629432 0.982853 -0.554627 0.287441 1.888830 -0.586105 0.044797 -1.253116 1.897685 -1.663628 1.597300 -0.415451 1.563346 -0.658513 -1.935200 -2.433668 0.401782 0.530394 -1.527317 -1.993680 -2.121351 -0.349890 0.690241 -1.024473 1.518500 4.028398 -2.230071 -2.291936 2.736892 1.400775 0.158433 1.615847 0.604602 2.193985 -0.224042 -1.205970 -1.627022 -1.620358 -0.176202 0.492156 0.777622 -0.778658 1.446963 -0.185426 -2.769526 3.441335 -0.574600 -1.785397 -0.371841 0.475023 -1.418110 -1.471930 2.405603 0.128236 1.862592 -0.176126 2.841274 -0.555064 -1.655291 0.598618 -1.131997 -0.097683 -1.458746 -0.165366 0.582278 0.979968 -1.516095 -1.231795 -0.690763 -0.935332 -1.386303 0.743881 0.324343 0.431211 1.122419 0.806449 1.216689 2.957439 0.549721 0.055031 -1.826054 1.280887 1.098040 -0.401266 -2.664162 -0.191870 -0.591571 -0.375030 0.162507 0.091020 1.252581 -0.992643 -0.476013 -0.363135 -0.476012 0.864047 1.036497 -2.465283 0.633698 -0.254105 1.404365 0.959369 1.381084 2.486834 2.432684 1.657827 1.121208 -0.132456 0.153778 0.193944 0.206559 0.928165 0.430506 1.204590 2.447769 1.957094 1.003790 1.863244 1.712677 0.938791 2.111889 0.222276 3.724372 -0.230406 -0.736298 -0.253134 0.756654 2.139084 3.579436 0.038532 0.624224 1.120334 0.645727 -0.747356 -2.255342 0.731122 -0.421973 -0.402412 1.538247 0.886575 -0.075238 -0.630368 2.500374 -0.456177 -3.007380 1.529231 0.627427 1.473301 0.607477 0.557891 0.129472 0.993993 -1.561812 2.017392 1.983727 1.396249 -1.989058 -1.088119 0.224374 1.077222 1.424945 2.150245 -2.482035 0.817516 1.098597 1.893483 -0.108071 1.332059 -1.489530 -1.409177 1.231698 -0.784743 -0.463848 0.465299 0.343414 -1.314490 0.493426 -1.207148 -2.051394 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.011040 -0.168722 0.150644 -0.284681 -0.207464 0.051895 0.100898 -0.111530 -0.035902 -0.161934 0.098036 -0.052237 -0.124780 0.382404 0.044034 -0.264991 0.030106 -0.063398 -0.049247 0.147738 -0.012484 0.190108 -0.074571 0.010759 0.093812 -0.035459 -0.058427 0.208094 0.000267 -0.131399 -0.090279 -0.143968 -0.082337 0.343261 0.053869 0.202162 0.000000 0.606387 -0.072455 0.576561 -0.269824 -0.238526 0.263752 -0.100442 -0.090989 -0.323415 -0.299358 0.166191 -0.142062 -0.188541 0.193939 0.021109 -0.014385 -0.097909 0.133234 0.176759 -0.395030 0.055447 0.142265 -0.078510 -0.037395 -0.107544 -0.195500 -0.085054 -0.254686 -0.167745 0.019155 0.037468 -0.116561 0.007759 -0.021223 -0.260250 0.610723 0.181374 -0.128670 0.130656 0.205461 -0.223492 0.245807 -0.081832 -0.375575 -0.113425 -0.081574 -0.114814 0.393714 -0.034838 0.215969 -0.487258 0.157058 -0.500000 0.174110 -0.383498 0.119198 0.419455 -0.249063 0.238614 0.220377 0.236263 0.065162 0.100161 0.295822 0.181312 -0.033649 0.181367 0.325408 0.033212 -0.168037 -0.240898 -0.269674 -0.285196 0.094381 -0.215460 -0.586195 0.084452 0.059282 0.181066 -0.064922 0.200365 0.037729 0.137022 -0.360063 0.261054 0.187463 -0.088079 0.050855 0.275229 -0.106351 -0.059281 -0.225946 0.305183 -0.220966 0.255556 -0.083785 0.204120 -0.071693 -0.109020 -0.162364 -0.032418 0.048250 -0.177936 -0.320629 -0.349875 -0.073929 0.313095 -0.147300 0.287705 0.600996 -0.272310 -0.243951 0.394728 0.289611 0.139158 0.111813 0.125107 0.263740 -0.039210 -0.182209 -0.189492 -0.184066 -0.002217 -0.033277 0.121313 -0.153229 0.243178 -0.073668 -0.518100 0.816887 -0.142873 -0.209948 0.041558 -0.023485 -0.249292 -0.280241 0.436349 0.011016 0.350422 -0.027588 0.432548 -0.036583 -0.127212 0.077354 -0.168313 -0.000120 -0.415124 -0.039575 0.005724 0.117434 -0.314651 -0.217633 -0.078066 -0.164851 -0.155085 0.130436 -0.008704 0.028615 0.104748 0.139886 0.213212 0.366235 0.038294 -0.049605 -0.321938 0.178386 0.069647 -0.107789 -0.252491 0.057401 -0.032603 -0.058655 0.014430 0.031609 0.086849 -0.193593 -0.090037 -0.014105 -0.066154 0.018871 0.114580 -0.413680 -0.048704 0.143902 0.162204 0.211968 0.188262 0.443736 0.281667 0.191326 0.150512 -0.021759 0.122688 -0.244241 -0.005840 -0.004460 0.210120 0.143261 0.243663 0.276203 0.096849 0.268498 0.276132 0.221765 0.297722 0.224965 0.520127 0.173383 -0.220503 0.071719 0.071886 0.317585 0.412031 -0.114669 0.240000 0.205143 0.127712 -0.162084 -0.230277 0.046158 -0.083862 -0.161293 0.322870 0.009936 0.000000 -0.043680 0.383474 -0.092490 -0.489731 0.083176 0.100402 0.234993 0.182128 0.106051 0.148144 0.189735 -0.197475 0.299478 0.186275 0.206587 -0.281087 -0.086263 0.023881 0.042617 0.250577 0.305815 -0.229840 0.071399 0.052529 0.324288 -0.016617 0.105693 -0.143433 -0.070435 0.118688 -0.155179 -0.065968 0.039746 0.066849 -0.046389 -0.086659 -0.390666 -0.285098 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 0.341736 -0.257041 0.784357 -1.909648 -2.347141 0.581951 -0.750493 -1.350296 -0.361982 0.110468 0.916995 -0.491410 -0.487402 1.993951 -0.513484 -1.572470 -0.371124 -0.691585 0.114151 -0.253558 -0.247490 1.212189 -0.729123 0.168892 0.204740 -0.540644 -0.491661 0.874865 1.092878 -0.643726 -0.622013 -0.956063 -0.678725 2.179539 0.902333 -0.222078 0.251478 3.765318 -0.357629 1.009429 -1.898542 -1.666815 1.516632 -0.483257 -0.374912 -1.668953 -1.600229 0.979793 -1.339724 0.284495 1.315778 -0.313832 0.538304 -0.094872 0.512913 0.562792 -2.558865 1.522394 0.993447 -0.667185 -0.208069 -0.678294 -0.655722 0.177304 -0.688820 -1.072982 0.564947 1.086501 -0.337148 -0.481130 -0.229273 -1.667552 2.963557 0.830163 -0.794634 0.342480 0.770907 -1.637243 1.428299 -0.990070 -2.793348 -0.497979 -0.158658 -0.974385 2.089400 -0.149062 1.388640 -3.066313 0.944070 -3.548381 0.643685 -1.572016 0.923090 2.305305 -2.118396 0.834106 1.476813 1.039699 1.668328 0.094148 1.973265 0.700213 -0.005965 1.422408 1.220194 0.790023 -0.397352 -0.394839 -1.327016 -1.916884 -0.065920 -0.761836 -3.446457 0.981387 -0.060624 0.291180 -0.840783 0.407461 -0.106646 1.752718 -1.770731 -0.100143 0.583975 -0.516314 0.553708 1.644398 -0.601795 0.226617 -1.120030 1.853194 -1.630706 1.282931 -0.506947 1.422233 -0.302586 -1.661748 -2.811251 0.498519 0.835247 -1.561957 -2.009267 -1.743374 -0.365155 0.269156 -0.980580 2.097817 3.798495 -2.168506 -2.119084 2.677727 0.889382 0.232494 2.032042 0.508418 1.963094 -0.184727 -1.111265 -1.360405 -1.482058 -0.454638 -0.754813 0.671294 -0.338166 1.281810 0.070440 -1.292672 2.845447 -0.417417 -1.861595 -0.297090 0.464202 -1.279735 -1.504483 2.049813 0.576405 1.525709 0.599585 2.768456 -0.540703 -1.575447 0.610967 -0.812966 -0.016385 -1.017788 -0.203719 0.291408 0.877008 -1.304026 -1.163562 -0.469350 -0.709484 -1.402521 0.644892 1.395019 0.635000 1.227555 0.767738 1.057734 3.123364 0.584222 0.108509 -1.698018 1.201893 1.228667 -0.502498 -2.022758 -0.350879 -0.563318 -0.286198 0.569943 0.090250 1.317373 -0.974306 -0.529117 -0.442447 -0.003835 1.196416 1.284250 -2.256776 0.682810 -0.379410 1.057556 0.928795 1.294896 2.087709 2.413680 1.727864 0.794664 -0.058818 0.300507 0.680080 -0.232685 0.902850 0.860954 1.159689 2.195137 1.868843 1.079274 1.634515 1.685461 0.795777 2.007106 -0.007772 3.674417 -0.640974 -0.511911 -0.559150 0.662257 2.060919 3.455936 -0.429163 0.675651 0.985008 0.679952 -0.545813 -2.372834 0.851090 -0.455975 0.009902 0.717349 0.948706 0.107096 -0.795428 2.378490 -0.410306 -2.746861 1.642506 0.635217 1.355639 0.616393 0.550403 -0.039237 0.730858 -1.772746 1.914570 2.084727 1.333843 -1.770194 -0.602529 0.250637 1.333827 0.302250 2.051167 -1.659620 1.061764 1.119120 1.589833 0.281011 0.805766 -1.472228 -1.614305 1.268548 -0.856206 -0.322467 0.846353 0.597375 -1.421540 0.686868 -0.734979 -1.958234 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = 0.220995 0.024998 0.401055 -1.404038 -1.026237 -0.297486 0.787751 -0.607870 -0.354576 0.808709 0.465817 -0.869795 -0.608776 1.718027 -0.152254 -0.844417 0.049573 -0.860131 -0.404884 0.191005 -0.175464 1.000025 -0.263884 -0.448381 0.608362 0.029641 -0.235067 0.876760 0.303580 -0.687282 -0.120267 -0.550908 0.242908 1.597420 0.171801 -0.006781 -0.358743 2.273583 -1.210958 1.698648 -1.702271 -1.150169 1.854467 -0.339118 -0.252358 -2.000234 -0.949848 1.035404 -0.198394 -0.799712 0.251385 0.189370 0.080052 -1.062566 -0.019184 1.190808 -1.836808 0.871903 0.939112 -0.582317 -0.667609 -0.359841 -0.194199 0.001043 -1.062224 -1.097313 -0.116936 -0.331221 -0.649674 -0.007857 -0.528959 -0.978702 1.718473 0.471325 -0.468478 0.585210 -0.219051 -1.193304 1.054482 -1.026544 -1.147207 -0.549804 0.202988 -0.271778 0.984503 0.080645 0.829766 -2.243016 0.181946 -2.039148 0.632015 -1.385953 0.700223 1.693104 -0.853428 1.115693 0.251648 0.286371 0.805345 0.306265 1.195780 0.663697 0.870668 0.578027 0.911937 1.072785 -0.835051 -1.135922 -0.935193 -1.149297 0.371316 -0.385912 -2.162363 0.744855 -0.300204 -0.089531 0.109659 -0.042136 -0.075483 1.355948 -1.454045 0.100036 0.747747 -0.370862 0.295587 1.420625 -0.149485 -0.269379 -0.897931 1.032689 -0.194760 1.194262 -0.060113 1.167663 -0.763054 -1.403479 -0.599335 -0.017304 0.133135 -1.071229 -1.329322 -1.983741 -0.166124 0.321130 -0.950809 0.928429 2.438464 -1.044655 -1.521748 1.607484 0.983802 0.174489 0.575850 0.204808 1.804738 -0.649950 -0.380843 -0.313419 -0.526367 0.471322 1.349686 0.054025 -1.163636 0.774836 -0.586646 -2.265447 1.718421 0.155926 -0.481470 0.111813 0.128916 -0.961515 -1.202603 1.619534 -0.367380 1.691935 -0.682922 1.906760 -0.527535 -0.780106 0.683769 -0.935884 -0.209464 -1.386078 -0.297742 0.363203 0.738840 -1.069533 -0.767791 -0.439606 -0.476590 -0.871854 1.109836 -1.124101 0.031140 0.157120 0.241038 1.027187 1.107624 -0.545026 0.249588 -1.327686 0.783770 0.762060 0.208130 -2.096628 -0.199456 -0.432562 -0.502525 0.387143 -0.113194 0.764948 -0.578748 -0.281327 0.692085 -0.299597 -0.020684 -0.059255 -1.429128 0.315562 -0.249502 0.855358 0.487939 1.559410 1.334363 1.150788 0.270147 0.583944 -0.288586 -0.222993 -0.892036 0.223162 -0.019069 0.088152 0.987452 1.325115 1.090977 0.618991 1.495504 0.766339 -0.159303 1.528200 0.298869 1.950113 -0.232929 -0.708204 0.452736 0.097443 1.354883 1.894442 -0.094116 -0.569705 0.959438 0.011994 -0.819016 -0.735968 -0.003133 -0.313242 -0.561431 1.332226 0.451446 -0.282053 -0.084002 1.991312 -0.461051 -2.298011 1.064844 0.465041 1.112436 0.359153 0.066145 0.583916 1.050810 -0.543633 0.713250 1.002822 1.006456 -1.281683 -0.739443 0.179214 0.791224 1.210743 0.931169 -2.450482 0.144807 0.624737 1.557515 -0.120280 1.293986 -0.751027 -0.272904 0.478250 0.190757 -0.068261 -0.155454 0.358747 -0.721785 -0.071176 -1.369033 -0.282211 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = -0.117997 0.191626 0.581540 -0.877055 -1.136296 -0.161197 0.532288 -0.325993 -0.139261 0.026418 0.530291 -0.509758 -0.519485 1.143791 -0.166541 -0.622454 -0.153982 -0.386582 -0.307799 -0.086920 0.024192 0.684264 -0.148580 0.048088 0.288044 -0.094679 -0.271039 0.794171 0.382631 -0.424980 -0.032082 -0.313848 0.153684 0.919511 0.004192 0.007067 -0.058889 1.633414 -0.906073 0.891296 -1.020230 -0.684909 1.041482 -0.191252 -0.255993 -1.663797 -1.126094 0.612775 -0.430289 -0.315407 0.509535 0.253797 0.123155 -0.387829 0.355931 0.719233 -1.369239 0.604921 0.527150 -0.530582 -0.133358 -0.093386 -0.508551 -0.061146 -0.441628 -0.575622 -0.062446 -0.040221 -0.130104 -0.022787 0.049015 -0.721603 1.545111 0.124322 -0.295317 0.477102 0.396960 -0.862864 0.870625 -0.534529 -0.919962 -0.266562 0.114612 -0.068777 0.785385 -0.166831 0.394989 -1.396913 -0.217615 -1.327354 0.522847 -1.060655 0.236219 0.984564 -0.751800 0.686936 0.423917 -0.191283 0.658748 0.312191 0.833425 0.460300 0.748884 0.586640 0.587702 0.552749 -0.476210 -0.634077 -0.978121 -1.023059 0.259657 -0.309704 -1.696747 0.364353 0.209303 -0.205552 0.037119 -0.165306 0.298552 1.079880 -0.429777 0.721897 0.767429 -0.219005 -0.144087 1.100865 -0.247374 -0.157644 -0.645764 0.788712 -0.512238 1.043504 -0.002729 0.619935 -0.215763 -1.397930 -0.674081 0.032855 -0.038769 -0.540513 -0.713668 -1.016180 0.064957 0.223558 -0.529997 0.065244 1.791027 -0.836597 -1.095067 1.172499 1.293671 0.085279 0.267004 0.216496 1.226854 -0.171082 -0.564353 -0.640948 -0.723780 0.215396 0.861215 0.354881 -0.536426 0.573886 -0.060591 -2.151875 1.655058 -0.308588 -0.562387 0.523407 0.221260 -0.654073 -0.770084 1.100159 0.605462 1.114122 -0.248731 1.204210 -0.243282 -0.793373 0.284924 -0.195065 0.066989 -0.905321 -0.174315 0.535487 0.355014 -0.538477 -0.463141 -0.533390 -0.492671 -0.598551 0.349404 -0.643116 0.224271 0.274602 0.389306 0.053853 1.085214 0.034973 0.163301 -1.024418 0.525417 0.304809 0.131110 -1.625722 0.067213 -0.238902 -0.176441 0.095290 -0.074560 0.457518 -0.115712 -0.185375 0.191042 -0.589227 -0.058252 0.126228 -0.918625 0.091259 -0.213287 0.766828 0.233261 0.672836 1.353973 0.886082 0.558553 0.656626 -0.065738 0.029117 -0.254774 0.129213 0.101372 0.042368 0.587935 0.958782 0.810533 0.316310 0.989575 0.630835 0.174965 0.960314 0.298245 1.547285 0.009048 -0.475533 0.043536 0.340321 0.892329 1.430141 0.398355 -0.048405 0.548524 0.395362 -0.383739 -0.848143 0.083477 -0.203588 -0.365125 1.280163 0.352359 -0.307810 0.019963 1.069960 -0.260265 -1.364732 0.536337 0.202635 0.643879 0.074552 0.230988 0.129009 0.695192 -0.537201 0.614096 0.675349 0.680396 -0.953956 -0.833044 0.098491 0.436872 0.742821 0.920119 -1.917316 0.039524 0.424383 0.857134 -0.337518 0.923497 -0.644099 -0.524905 0.526216 -0.033636 -0.289869 0.142118 0.075156 -0.751351 0.056835 -0.789744 -0.605435 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 1.642593 -0.308173 1.419497 -3.269726 -2.538438 -0.091015 0.821530 -3.171389 -1.210388 3.063043 1.112796 -1.759590 -1.870231 2.052302 -0.458837 -2.799740 0.338864 -1.299181 -0.817554 -1.573395 -0.900016 1.133780 -0.875205 -2.203335 0.701263 -1.001723 0.998138 2.236012 0.982808 -0.659379 -0.383871 -2.015954 0.720287 5.101537 1.853217 0.006244 -1.899765 6.024242 -0.595411 2.402237 -5.337989 -4.026771 5.359523 -1.278340 0.057415 -4.289917 -0.888394 3.049116 -1.329648 -1.504794 -0.291723 -0.466945 1.436578 -3.380380 -1.795711 2.771699 -3.791841 2.441121 2.274330 -3.340534 -3.404355 -1.258864 0.697744 1.636118 -2.472333 -3.344758 0.989468 0.256208 -2.043910 0.668959 -2.743241 -3.477795 4.012552 1.154949 -1.217653 0.448144 -1.234241 -1.892373 2.444043 -0.373850 -3.507790 -2.403337 0.616660 -1.148025 2.031026 0.582976 3.172925 -7.103485 1.095443 -6.915035 2.055858 -2.524152 3.092253 3.742282 -2.658616 3.172130 1.024477 1.430932 1.381004 -0.921727 3.133803 0.885365 2.208538 1.238919 3.206379 2.113645 -1.430180 -3.357489 -1.866316 -2.908976 1.008701 -1.564795 -5.612813 2.601949 -2.661929 0.088999 -0.915059 0.292155 -0.753601 3.669235 -5.439865 -1.361514 1.815178 -1.286118 2.643211 2.835609 -0.851601 0.891333 -1.063904 2.861382 -0.682339 1.774601 -0.272303 3.899377 -0.698969 -3.136020 -3.516385 1.175609 2.517994 -3.467634 -4.643172 -4.375876 -1.629272 0.992581 -2.498690 3.584292 6.750557 -2.895921 -4.470899 3.341573 -0.151704 -0.078829 3.191667 1.109983 5.670747 -3.031742 0.082549 -0.861352 -0.490260 2.135072 2.650730 -1.097156 -3.197725 3.526391 -1.397360 -1.594903 2.794014 -0.132508 -1.370115 0.296407 0.472483 -1.603910 -2.847388 3.395205 -1.291282 4.293874 -1.043193 5.533053 -2.849083 -2.352067 1.273688 -2.999246 -1.520113 -1.502579 0.140178 -0.205209 3.321743 -3.263216 -2.803293 -1.175033 -2.023782 -1.200744 4.444803 -0.217157 -0.014482 0.760701 -0.087406 3.848409 3.487215 -1.104933 -0.339645 -3.239813 2.231187 3.361074 1.540150 -3.826855 -2.436085 -1.696285 -1.608707 0.645184 0.381698 3.607234 -1.508110 -0.381004 1.411893 0.111411 0.418170 0.309768 -4.334784 1.688592 0.058171 1.447104 0.665103 5.527625 2.992500 3.613210 1.073432 0.290200 -0.347074 -1.556929 -1.700841 0.139294 0.645653 1.282373 2.482552 3.131170 2.633393 2.109971 4.520169 1.520531 0.108307 4.486953 -0.224735 5.485422 -3.273523 -0.364617 0.649967 -0.179210 4.140948 5.763829 -0.210172 -2.208294 2.428078 -0.406854 -2.335949 -3.508727 -0.239797 -0.624638 0.135090 2.307697 3.286022 -0.530340 -1.844866 6.468655 -0.465484 -6.976756 4.293812 1.592788 2.661351 2.624206 -1.364564 1.443754 2.222750 -0.648141 1.483940 3.202695 2.740733 -4.373173 -0.595888 0.475580 3.122970 1.215252 1.338998 -5.792568 0.446403 2.129115 5.062467 0.740801 3.120600 -3.492441 -0.197759 1.293060 -0.268578 0.822311 0.672376 2.079994 -2.287467 0.028780 -3.650651 0.051161 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.351564 -0.141803 0.734354 -0.962075 -0.553418 0.082942 0.617500 -0.528794 -0.137870 0.816299 0.188095 -0.115086 -0.691949 0.728424 -0.150376 -0.694873 0.275969 -0.923493 -0.050608 -0.154311 -0.186404 0.499511 -0.232756 -0.310599 0.384926 -0.284106 0.136415 0.760833 -0.098615 -0.269597 -0.135011 -0.495622 -0.123235 1.309858 0.332405 0.031889 -0.174302 1.830561 -0.626567 1.201900 -1.181379 -1.196829 1.190836 -0.300758 -0.086588 -1.086738 -0.163741 0.627874 -0.443613 -0.345641 0.391555 -0.073214 0.359686 -0.632874 -0.048921 0.714398 -1.422914 0.387669 0.445975 -0.501488 -0.598670 -0.378531 -0.127681 0.226064 -0.573033 -0.652325 0.386709 -0.072407 -0.614819 0.209409 -0.381269 -0.714727 1.060882 0.469661 -0.252579 0.289816 0.291520 -0.777182 0.795750 -0.593259 -1.049754 -0.534542 -0.093879 -0.627286 1.002795 -0.019741 0.715014 -1.742720 0.389174 -1.572597 0.576769 -0.920119 0.599296 1.183587 -0.465860 0.947155 0.439832 0.595951 0.144592 -0.410632 0.933199 0.567189 0.577053 0.529256 0.888358 0.536353 -0.723685 -0.936449 -0.908482 -0.584189 0.172885 -0.623084 -1.350776 0.447596 -0.255396 0.042888 0.018125 0.047131 -0.377778 0.981818 -1.519728 0.143426 0.387617 -0.290894 0.390726 0.743593 -0.186974 0.027233 -0.191692 1.068056 -0.449734 0.738269 -0.158952 0.904394 -0.202029 -0.436964 -0.622367 0.059548 0.438529 -0.741938 -1.151579 -1.280666 -0.442299 0.496377 -0.417515 1.178828 1.914317 -0.615698 -1.054092 1.092435 0.082228 0.177669 0.591084 0.370013 0.809696 -0.458190 -0.323886 -0.573106 -0.175985 0.293721 1.020653 0.115214 -0.513704 0.956285 -0.192686 -0.328128 0.980247 -0.124265 -0.434325 -0.147095 -0.001260 -0.779724 -0.786776 1.106633 -0.407061 1.084982 -0.157096 1.548637 -0.500214 -0.625881 0.197139 -0.922552 -0.012487 -1.073839 -0.110006 0.131168 0.474907 -0.958014 -0.774286 -0.567014 -0.296919 -0.322259 0.759463 -0.569824 0.116167 0.147075 0.204022 1.243235 1.015640 -0.167115 -0.135412 -0.907550 0.536820 0.436752 0.150757 -1.060178 -0.208739 -0.088861 -0.358662 0.387002 0.081749 0.654270 -0.564949 -0.264754 0.394303 -0.050999 -0.161780 0.201580 -1.731480 0.175525 0.361541 0.334909 0.466481 0.934003 1.065729 0.823205 0.344066 0.227326 -0.144440 -0.072818 -0.689629 -0.046364 0.213122 0.348368 0.466716 1.011528 0.762116 0.377942 0.901289 0.912745 0.014559 1.012505 0.103992 1.345054 -0.371594 -0.382887 0.227933 0.117023 0.975496 1.097933 -0.093695 -0.078939 0.754135 0.191574 -0.480174 -0.693205 0.101741 -0.430269 0.307308 0.734713 0.661802 -0.316976 -0.217794 1.453639 -0.185329 -1.769960 0.658178 0.472177 0.777120 0.611503 -0.027069 0.302561 0.568872 -0.555953 0.875915 0.549809 0.592928 -0.930737 -0.056057 0.152714 0.536485 0.427601 0.595692 -1.615537 -0.238981 0.196074 1.144141 0.338437 1.097069 -0.625072 -0.151887 0.320113 -0.354274 -0.017668 0.246481 0.559759 -0.542263 0.165269 -1.101836 -0.213373 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = -0.026361 -0.334398 0.919285 -1.990357 -2.420743 0.294634 -0.189105 -1.228508 -0.328766 0.084361 1.002542 -0.781080 -0.606775 2.401523 -0.393075 -1.570292 -0.285731 -0.260093 -0.007524 -0.079252 -0.094188 1.419511 -0.638247 0.133596 0.353015 -0.512844 -0.485521 1.262497 1.050109 -0.416263 -0.418090 -0.991412 -0.436941 2.224248 0.687491 0.120998 0.045924 3.860246 -1.059825 1.940892 -2.121753 -1.628062 1.853548 -0.447403 -0.411744 -2.338641 -2.150499 1.032521 -1.364786 -0.190309 1.271614 -0.084999 0.641496 -0.326192 0.715692 0.841252 -2.591639 1.217721 1.087297 -0.995582 -0.194601 -0.572096 -0.992831 0.161725 -1.270790 -1.140355 0.209842 0.764965 -0.220876 -0.395953 -0.131316 -1.715760 3.242682 0.721859 -0.959641 0.560924 0.894216 -1.852297 1.588787 -0.874232 -2.698319 -0.597503 -0.160931 -0.837521 2.006819 -0.149710 1.598224 -3.220181 0.602109 -3.526027 0.949769 -1.914619 0.859028 2.476732 -2.127276 1.120777 1.419683 0.930272 1.671131 0.375146 1.913040 1.041819 0.334972 1.385860 1.461417 1.061866 -0.683899 -0.939127 -1.654006 -2.035036 0.218467 -1.020057 -3.823954 0.858017 0.127878 0.262338 -0.674647 0.272836 0.087989 2.088120 -1.635794 0.700280 0.988779 -0.545834 0.240553 1.885589 -0.578601 0.015107 -1.253197 1.871746 -1.615638 1.609446 -0.406405 1.530843 -0.699109 -1.853680 -2.293719 0.375241 0.497631 -1.497400 -1.963587 -2.128005 -0.335282 0.713355 -1.008589 1.487588 3.961769 -2.179585 -2.242988 2.695868 1.446244 0.148541 1.526127 0.587263 2.160138 -0.225712 -1.192949 -1.608943 -1.588829 -0.170901 0.556522 0.766661 -0.772571 1.422638 -0.223320 -2.823438 3.527056 -0.564294 -1.738616 -0.312492 0.458307 -1.405428 -1.483250 2.411077 0.107063 1.850442 -0.195705 2.792700 -0.516589 -1.584368 0.599425 -1.101354 -0.090284 -1.532986 -0.176463 0.578478 0.967681 -1.472107 -1.214394 -0.696508 -0.921460 -1.358935 0.737517 0.228398 0.425327 1.085665 0.801270 1.174216 2.886037 0.522266 0.042317 -1.805123 1.261975 1.073346 -0.403468 -2.610867 -0.171518 -0.581808 -0.371431 0.118470 0.086395 1.222705 -1.017188 -0.479662 -0.326532 -0.470565 0.791626 1.001202 -2.526375 0.611550 -0.225744 1.389131 0.955763 1.358957 2.465884 2.372931 1.613501 1.100828 -0.137382 0.181429 0.051038 0.213060 0.873150 0.429920 1.182682 2.414831 1.921290 0.985390 1.831580 1.682688 0.953061 2.073134 0.270825 3.647559 -0.128478 -0.761729 -0.212815 0.739792 2.103544 3.498763 0.093146 0.616121 1.106714 0.633719 -0.788321 -2.192517 0.699337 -0.421367 -0.405651 1.540349 0.831030 -0.085859 -0.595514 2.467371 -0.455986 -2.987348 1.449307 0.616833 1.463091 0.636477 0.551797 0.192599 0.992327 -1.510042 2.018509 1.931320 1.367522 -1.946631 -1.070107 0.223295 1.019997 1.452175 2.116660 -2.497354 0.813189 1.033979 1.876100 -0.127739 1.356561 -1.449535 -1.312385 1.203747 -0.764416 -0.456038 0.435021 0.348011 -1.288528 0.459215 -1.289879 -1.987409 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = 0.440435 -0.262341 -0.033227 -0.093698 -0.207665 -0.206458 0.713084 -0.555440 -0.178497 0.072966 0.225260 -0.549120 -0.359280 0.347626 0.490326 -0.094249 0.446542 -0.467746 -0.153803 -0.111550 -0.130278 0.180185 -0.064956 -0.205578 0.066335 0.266681 -0.215530 0.412928 -0.047957 -0.393504 -0.214884 -0.277197 0.403533 0.793467 0.257681 0.064729 -0.546170 1.042715 -0.317689 0.845543 -1.054290 -0.149600 0.855737 -0.350636 -0.187184 -0.972469 -0.350978 0.760570 0.319927 -0.832794 -0.096892 0.149688 -0.054199 -0.502249 -0.357346 1.023403 -0.522242 0.289520 0.427455 -0.555594 -0.440890 -0.151866 -0.195450 0.199066 -0.826918 -0.709267 0.198188 -0.493895 -0.267014 0.413177 -0.699425 -0.856229 0.416873 0.195242 -0.380378 -0.085332 -0.302612 -0.156552 0.539351 0.469632 -0.357704 -0.322519 -0.122197 0.182069 0.181414 -0.110456 0.334554 -1.253979 -0.178909 -1.254714 0.386486 -0.859105 0.557545 0.573440 -0.478212 0.428736 -0.097943 0.037397 0.313242 -0.152296 0.479396 0.159359 0.408850 -0.032168 0.906108 0.295991 0.040590 -0.547606 -0.202060 -0.412833 0.624768 -0.045562 -0.638278 0.509943 -0.627140 -0.148109 -0.046893 0.407925 0.118689 0.518461 -0.471589 -0.026457 0.619560 -0.227757 0.569880 0.941339 -0.528210 0.128516 -0.692689 0.459911 0.341913 0.766082 -0.129494 0.549615 -0.169584 -1.056836 -0.453157 -0.001587 0.477536 -0.797289 -0.835664 -1.024456 0.100912 0.015202 -0.678624 0.251333 1.130691 -0.583467 -0.297319 0.573647 0.632872 -0.064833 0.131231 -0.104552 1.561886 -0.754882 0.295148 0.157877 -0.004540 0.270064 0.771100 -0.245647 -0.743071 0.153275 -0.169132 -1.481769 1.224134 0.065023 -0.275381 0.937923 -0.245943 0.427476 -0.772622 0.681595 0.104650 0.537888 -0.409331 0.461306 -0.126683 -0.184344 0.571735 0.224875 -0.278779 -0.122397 -0.163196 0.042273 0.697248 -0.525394 -0.300644 -0.174470 -0.697708 -0.187244 0.674954 0.115653 -0.091387 0.114396 0.235879 0.147848 0.508495 -0.174731 0.117965 -0.829970 0.446219 0.637055 0.428085 -0.436020 -0.336486 -0.620232 -0.298260 -0.369138 0.014121 0.556259 -0.326202 -0.173299 0.444227 -0.058467 -0.024360 0.087955 -0.622908 0.263754 0.200029 0.172464 0.133390 1.090978 0.292294 0.394216 0.275161 -0.260438 -0.124790 -0.145350 -1.068493 0.199399 -0.334497 0.290248 0.402401 -0.122858 0.447202 0.095962 0.891623 -0.418057 0.312761 0.860510 0.577095 0.841642 -0.221847 0.091721 0.364819 -0.502309 0.775667 1.070200 0.185148 -0.644611 0.389720 -0.281889 -0.897303 -0.389478 -0.452502 -0.032135 -0.398745 0.661486 -0.075052 -0.136805 -0.297288 1.207786 -0.179209 -1.351230 0.494576 0.217540 0.184917 0.785983 -0.151138 0.589312 0.457844 -0.042191 0.098697 0.488293 0.662569 -0.557083 -0.637294 -0.098654 0.134869 0.492531 0.116534 -1.424046 0.047073 0.434033 1.080987 0.062011 0.116406 -0.669083 0.357106 0.202935 0.027487 0.127178 0.108857 0.659966 -0.422951 -0.350377 -1.147047 0.482801 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = 0.577930 -0.223035 0.566126 -1.787912 -1.847960 0.634107 -0.445922 -1.098041 -0.301384 -0.008912 0.904873 -0.355837 -0.241206 1.670785 -0.197720 -1.208433 -0.072070 -1.389533 0.002762 0.045362 -0.262651 1.037602 -0.666038 0.186566 0.189653 -0.233155 -0.573476 0.795927 0.831325 -0.925748 -0.858186 -0.679897 -0.795003 1.958150 0.812872 -0.680981 0.507783 3.470316 -0.523347 0.627846 -1.186467 -1.176089 1.278664 -0.455295 -0.735625 -1.071906 -1.297711 0.923935 -0.749607 0.064133 1.359596 -0.334623 0.358537 -0.019586 0.308413 0.754215 -2.400960 1.123585 0.919544 0.029821 -0.208583 -0.738171 -0.229011 0.041166 -0.714825 -0.970668 0.898126 0.529351 -0.299259 -0.574736 -0.396794 -1.660839 2.454016 0.960615 -0.484667 0.230815 0.596610 -1.862112 1.354802 -0.540057 -2.487889 -0.249634 -0.419324 -1.386559 2.271706 -0.662099 0.975988 -2.683541 1.026206 -3.147410 0.195412 -1.565248 0.774712 2.218594 -1.860015 0.552377 1.107721 1.451902 1.134251 -0.224738 1.936002 0.496479 -0.143144 1.195603 1.213060 0.605958 -0.478886 -0.138945 -1.184432 -1.636336 0.001576 -0.683864 -2.955969 1.036397 -0.165805 -0.285674 -0.591897 0.387998 -0.322158 1.702186 -1.300941 -0.167614 0.291553 -0.448498 0.452185 1.751264 -0.613959 0.132272 -1.119237 1.774048 -1.175401 1.273719 -0.570349 1.096521 -0.286752 -1.092959 -2.210835 0.380300 0.900860 -1.440358 -1.937712 -1.580813 -0.196918 -0.190278 -0.890571 2.385600 3.336010 -1.795085 -1.723075 2.552870 0.918182 0.375556 1.842659 0.216387 1.790859 -0.248146 -0.923884 -1.051584 -1.201762 -0.747111 -1.326544 0.517880 0.054710 0.892482 -0.007673 -0.586003 3.124635 -0.101140 -1.627942 0.357283 0.364190 -1.139125 -1.909057 2.056895 0.999544 1.252167 1.244308 2.534958 -0.228959 -1.169897 0.814010 -0.010550 0.178656 -1.353046 -0.496598 0.168111 0.707018 -0.737856 -1.011698 -0.429853 -0.279310 -1.352959 0.523906 1.773799 0.810299 1.041709 0.793826 0.423305 2.924760 0.346635 0.188414 -1.664997 1.049285 1.273655 -0.696099 -1.261702 -0.263511 -0.527250 -0.198595 0.701451 -0.014208 1.203437 -1.220123 -0.765058 -0.171937 0.463036 1.030270 1.261773 -2.903705 0.662165 -0.391499 0.627618 0.983193 1.164634 1.750346 2.030295 1.541201 0.385996 -0.015483 0.729098 -0.036494 -0.626811 0.382269 1.324869 1.062740 1.856621 1.609355 1.024941 1.262524 1.480378 0.676368 1.744451 0.312833 3.279952 -0.063307 -0.610504 -0.523848 0.368076 1.852504 3.018665 -0.393206 0.558445 0.852198 0.778001 -0.707047 -2.311182 0.677221 -0.553768 0.311126 0.128615 0.417193 0.100536 -0.640196 2.178301 -0.435729 -2.566364 1.212421 0.568510 1.250346 0.806982 0.529178 0.274836 0.575635 -1.806704 1.973834 1.871410 1.153855 -1.264442 -0.093696 0.270010 1.211393 -0.546130 1.801194 -1.322333 1.274416 0.717494 1.317679 0.617896 0.658261 -1.188470 -1.166116 1.135372 -0.753444 -0.157601 0.851516 0.899515 -1.584563 0.663267 -1.029320 -1.491173 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = 0.162991 -0.098917 0.171901 -0.747262 -0.849928 0.097143 -0.153624 -0.421603 -0.170257 0.023206 0.283110 -0.302784 -0.299096 0.984482 -0.172888 -0.662572 -0.123211 -0.293758 -0.030160 0.167446 -0.115147 0.560046 -0.247728 0.036516 0.172806 -0.023955 -0.281448 0.230967 0.432291 -0.420828 -0.331945 -0.358598 -0.149769 0.827597 0.234021 0.033940 0.032190 1.458560 -0.089843 0.739333 -0.865156 -0.609702 0.589933 -0.210694 -0.050516 -0.861539 -0.607332 0.476668 -0.430979 -0.080708 0.466776 -0.010769 -0.043777 -0.154809 0.285591 0.316896 -1.064931 0.758774 0.468686 -0.084451 0.018842 -0.266716 -0.319212 -0.061747 -0.262836 -0.472874 0.024780 0.311899 -0.325537 -0.132143 -0.154360 -0.591025 1.233140 0.362539 -0.426611 0.218553 0.214300 -0.561557 0.553551 -0.794769 -0.999509 -0.162013 0.029667 -0.040346 0.779028 0.091273 0.443774 -1.223980 0.357690 -1.333642 0.305103 -0.747556 0.355482 1.006254 -0.725857 0.360493 0.469516 0.191235 0.759541 0.300324 0.761401 0.341406 0.030694 0.429140 0.392708 0.335878 -0.182380 -0.236769 -0.400530 -0.758543 -0.046770 -0.107438 -1.344941 0.370030 0.014992 0.427413 -0.198126 0.275154 0.031638 0.350911 -0.854772 -0.186064 0.262383 -0.203248 0.339343 0.739290 -0.243851 0.012079 -0.610151 0.698235 -0.465267 0.554808 -0.168508 0.556539 -0.227709 -0.803565 -0.982732 0.071642 0.232222 -0.586538 -0.769034 -0.869686 -0.065899 0.127461 -0.475799 0.732608 1.467985 -0.810606 -0.730914 1.083675 0.381016 0.225572 0.698317 0.128059 0.843560 -0.112908 -0.354086 -0.260575 -0.504848 -0.181413 -0.245523 0.265674 -0.359907 0.354414 -0.070499 -0.935950 0.912849 -0.035910 -0.635768 -0.208968 0.063967 -0.514622 -0.576092 0.857871 0.001430 0.672471 0.025630 1.056123 -0.195970 -0.538239 0.340370 -0.396005 0.012465 -0.465592 -0.145532 0.144803 0.333424 -0.717752 -0.392579 -0.039559 -0.294561 -0.621941 0.287521 0.268940 0.096197 0.383132 0.334692 0.588691 1.053595 0.080875 0.160700 -0.738222 0.475064 0.336577 -0.239993 -0.931275 -0.023423 -0.246117 -0.152049 0.332717 -0.035772 0.307036 -0.281576 -0.280338 -0.042134 -0.110221 0.479641 0.366561 -0.422234 0.111565 -0.136986 0.471167 0.385326 0.571047 0.753864 0.884428 0.582646 0.314128 -0.051436 0.094544 0.211167 -0.022617 0.191632 0.224568 0.490857 0.661824 0.734834 0.311511 0.680170 0.549458 0.126704 0.827313 0.134247 1.376028 -0.197946 -0.314023 -0.057466 0.107688 0.806200 1.296634 -0.491217 0.244996 0.440812 0.159296 -0.208656 -0.598428 0.250401 -0.192164 -0.375239 0.440998 0.194924 0.059540 -0.210360 0.935964 -0.287394 -1.076473 0.617271 0.214083 0.569851 0.190296 0.281138 0.059560 0.371649 -0.690142 0.583408 0.737547 0.586867 -0.615412 -0.412806 0.051634 0.430851 0.330351 0.760678 -0.580550 0.285209 0.549357 0.715430 0.072672 0.151958 -0.467265 -0.617479 0.411421 -0.201685 -0.149343 0.091431 0.205264 -0.327749 0.022843 -0.280928 -0.726324 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.609350 -0.255041 0.554204 -1.783769 -1.809506 0.653727 -0.452515 -1.109259 -0.307866 0.001505 0.879252 -0.313212 -0.212711 1.655652 -0.207087 -1.177981 -0.041302 -1.402574 0.040351 0.066446 -0.272665 1.037688 -0.676516 0.175253 0.192502 -0.238253 -0.565509 0.773341 0.788523 -0.902920 -0.866052 -0.696477 -0.825917 1.955711 0.843882 -0.685865 0.501610 3.461183 -0.499562 0.639241 -1.183974 -1.164385 1.259139 -0.468138 -0.717139 -1.056871 -1.272921 0.899150 -0.718406 0.082390 1.346233 -0.373161 0.374408 -0.004410 0.290197 0.727219 -2.370306 1.098260 0.917978 0.047060 -0.198060 -0.764903 -0.226575 0.024001 -0.721893 -0.958679 0.904497 0.541681 -0.297517 -0.567680 -0.420779 -1.630503 2.402908 0.981189 -0.485238 0.204515 0.578237 -1.872317 1.320845 -0.548676 -2.490835 -0.260039 -0.447998 -1.390778 2.270341 -0.660272 0.988826 -2.667801 1.057589 -3.150531 0.165550 -1.551631 0.783015 2.220837 -1.841927 0.544548 1.115331 1.496910 1.115031 -0.232903 1.922299 0.514503 -0.195811 1.188137 1.218217 0.601470 -0.457573 -0.120768 -1.141406 -1.579459 -0.018178 -0.678418 -2.924416 1.028827 -0.179316 -0.274633 -0.627379 0.416183 -0.350235 1.685419 -1.318903 -0.192642 0.264428 -0.452312 0.460485 1.705645 -0.599414 0.131190 -1.122371 1.759786 -1.179259 1.260080 -0.599423 1.100723 -0.313719 -1.064377 -2.199798 0.361194 0.903695 -1.443247 -1.952997 -1.577209 -0.217922 -0.190778 -0.880101 2.403996 3.292577 -1.790959 -1.697193 2.538563 0.875503 0.370436 1.849553 0.224608 1.724836 -0.226037 -0.919937 -1.039187 -1.186269 -0.778787 -1.364798 0.496216 0.068315 0.888230 -0.020913 -0.534521 3.109366 -0.085911 -1.631838 0.320273 0.335156 -1.133595 -1.890825 2.045056 0.941819 1.218433 1.231343 2.518104 -0.213101 -1.139190 0.794093 -0.039915 0.188392 -1.338535 -0.466285 0.146585 0.696572 -0.747057 -1.031255 -0.390965 -0.258246 -1.338957 0.533262 1.775452 0.790477 1.052518 0.782670 0.456233 2.900116 0.337341 0.192359 -1.610392 1.053731 1.271807 -0.701296 -1.241126 -0.271194 -0.502806 -0.205430 0.687382 0.012949 1.200408 -1.237329 -0.759932 -0.166056 0.493434 1.038123 1.287947 -2.888057 0.669033 -0.380276 0.592388 0.983107 1.149550 1.700243 2.012250 1.514858 0.363538 -0.027743 0.730303 -0.036481 -0.622683 0.408098 1.307345 1.041767 1.847940 1.611632 1.026233 1.222532 1.486409 0.699316 1.721006 0.311643 3.239485 -0.074118 -0.610059 -0.514267 0.366306 1.847204 2.973265 -0.393945 0.571906 0.838422 0.745305 -0.703202 -2.279642 0.695066 -0.540183 0.318152 0.079708 0.423626 0.120812 -0.653916 2.178669 -0.440701 -2.546539 1.207894 0.586798 1.250439 0.809586 0.544092 0.283471 0.558832 -1.782002 1.989595 1.862420 1.145004 -1.232982 -0.085637 0.272745 1.185391 -0.534799 1.791977 -1.265715 1.278267 0.704573 1.308371 0.629886 0.636305 -1.157482 -1.145813 1.118795 -0.757321 -0.143981 0.859125 0.908110 -1.552093 0.656193 -1.009346 -1.471130 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.671426 -0.239983 0.521383 -1.728873 -1.831393 0.720344 -0.672377 -1.176663 -0.312323 0.126542 0.830419 -0.264095 -0.133660 1.614786 -0.291502 -1.169883 -0.128422 -1.351191 0.096991 -0.002872 -0.282602 1.008796 -0.697028 0.190768 0.116874 -0.276923 -0.525860 0.604093 0.735541 -0.859207 -0.873532 -0.725035 -0.859427 1.908669 0.900771 -0.665209 0.471340 3.359249 -0.316727 0.521973 -1.232760 -1.253227 1.123251 -0.450822 -0.572234 -0.904618 -1.138343 0.863506 -0.646591 0.174803 1.301939 -0.421407 0.351958 0.069995 0.273532 0.531280 -2.260315 1.152384 0.873213 0.005676 -0.208952 -0.752276 -0.151614 0.109558 -0.649796 -0.924435 0.918705 0.739372 -0.299076 -0.567917 -0.399789 -1.617247 2.269562 0.971771 -0.508638 0.129162 0.559287 -1.744182 1.274580 -0.650553 -2.506837 -0.240884 -0.427344 -1.383877 2.154078 -0.520608 1.050600 -2.615180 1.216743 -3.130663 0.161422 -1.387532 0.789209 2.132005 -1.785824 0.454820 1.174066 1.572581 1.246458 -0.237959 1.872651 0.500452 -0.281139 1.196780 1.140637 0.590977 -0.382671 -0.018777 -1.055272 -1.581447 -0.061065 -0.632889 -2.796424 1.025662 -0.161888 -0.173159 -0.713212 0.448152 -0.355089 1.594462 -1.503848 -0.439682 0.194384 -0.430383 0.530876 1.546747 -0.599108 0.222702 -1.060283 1.708847 -1.237232 1.110931 -0.557695 1.086152 -0.334609 -0.947439 -2.344794 0.449734 0.957830 -1.457953 -1.897532 -1.531418 -0.246082 -0.145614 -0.867876 2.522689 3.227672 -1.816212 -1.677565 2.466133 0.693684 0.251543 1.952612 0.226035 1.655060 -0.205159 -0.902348 -0.992572 -1.167600 -0.797266 -1.505339 0.508091 0.125957 0.893878 0.024929 -0.281887 2.840576 -0.094471 -1.670219 0.117877 0.372078 -1.078949 -1.716471 1.872740 0.810709 1.111639 1.250667 2.454070 -0.262529 -1.095114 0.744627 -0.230738 0.136926 -1.130514 -0.400547 0.053716 0.746083 -0.782330 -0.974411 -0.301289 -0.334529 -1.329595 0.501462 1.870502 0.803993 1.106856 0.745328 0.620852 2.916530 0.423452 0.154933 -1.510163 1.032985 1.278749 -0.703678 -1.136994 -0.359706 -0.549662 -0.180979 0.695122 0.012080 1.206306 -1.210316 -0.710291 -0.271951 0.523090 1.141429 1.323991 -2.629492 0.675324 -0.418467 0.646118 0.930288 1.118005 1.567715 2.072956 1.574988 0.314773 -0.014556 0.647534 0.205972 -0.608808 0.520647 1.252856 1.025525 1.829288 1.578432 1.049041 1.212143 1.461680 0.690982 1.703651 0.114583 3.213455 -0.299063 -0.475571 -0.613058 0.394713 1.803950 2.979271 -0.527996 0.613837 0.783655 0.652531 -0.656271 -2.171465 0.762233 -0.521579 0.370150 -0.114775 0.555160 0.202520 -0.730378 2.106723 -0.395694 -2.443942 1.266316 0.564444 1.208913 0.839761 0.512550 0.222180 0.463342 -1.755019 1.931050 1.918911 1.116006 -1.241062 -0.052474 0.264538 1.245864 -0.603934 1.767195 -1.057129 1.359474 0.782131 1.237843 0.612145 0.516144 -1.218977 -1.216210 1.150494 -0.788313 -0.140296 0.935315 0.924094 -1.468678 0.703759 -0.827081 -1.506608 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.573916 -0.080125 0.663075 -1.815361 -2.310889 0.691689 -1.093797 -1.352733 -0.377995 0.099710 0.861517 -0.372170 -0.513083 1.683253 -0.614601 -1.597127 -0.468912 -1.026758 0.128732 -0.399657 -0.361113 1.041739 -0.750741 0.192561 0.126958 -0.496342 -0.534939 0.597967 1.265048 -0.897843 -0.770293 -0.860403 -0.737589 2.097548 0.959037 -0.527379 0.419068 3.623522 0.148141 0.216462 -1.727233 -1.633497 1.290245 -0.485764 -0.363267 -1.285425 -1.192790 0.984963 -1.413898 0.654240 1.334956 -0.391538 0.375397 0.017350 0.389090 0.461328 -2.603952 1.902766 0.932636 -0.361461 -0.175069 -0.708025 -0.422608 0.151536 -0.107450 -1.036469 0.759938 1.240381 -0.486763 -0.522165 -0.293089 -1.583065 2.783847 0.839015 -0.669698 0.243721 0.642003 -1.421330 1.308787 -1.210364 -2.753755 -0.389361 -0.034101 -0.884192 2.103070 -0.133884 1.073600 -2.903139 1.012124 -3.461084 0.436027 -1.353022 0.943143 2.131768 -2.103111 0.629362 1.411390 0.805278 1.695525 -0.039166 2.001715 0.387098 -0.106462 1.382412 0.924134 0.592573 -0.170834 0.009424 -1.059729 -1.846011 -0.322719 -0.438136 -3.140629 1.063669 -0.212546 0.332318 -0.839190 0.428490 -0.196645 1.410523 -1.737417 -0.732946 0.308014 -0.482248 0.805487 1.556676 -0.618212 0.361816 -1.035591 1.814275 -1.521299 1.066722 -0.542838 1.299949 0.080848 -1.754786 -3.195492 0.552528 1.040307 -1.554646 -1.985843 -1.423154 -0.312041 -0.212455 -0.975213 2.368912 3.637626 -2.085311 -2.013361 2.647372 0.523673 0.384423 2.375024 0.397282 1.913113 -0.195744 -0.989632 -1.081438 -1.370428 -0.622162 -1.670698 0.589477 -0.084727 1.078655 0.331598 -0.274058 2.086036 -0.258605 -1.868825 -0.197519 0.462805 -1.163436 -1.538730 1.766786 1.064131 1.321714 1.172202 2.717026 -0.581826 -1.653676 0.670101 -0.447752 0.077469 -0.578174 -0.289527 0.168184 0.766790 -1.161642 -1.070252 -0.320886 -0.504400 -1.447792 0.557184 2.216628 0.762238 1.251859 0.754065 0.850931 3.224719 0.554076 0.259351 -1.696111 1.122208 1.293493 -0.529147 -1.704706 -0.414981 -0.552050 -0.222636 1.002731 0.034962 1.314559 -0.800916 -0.598381 -0.455847 0.256713 1.489257 1.392857 -1.857163 0.699573 -0.569464 0.800160 0.868874 1.262322 1.819867 2.369440 1.763352 0.584186 0.016023 0.351365 1.231711 -0.568740 0.834770 1.133836 1.158045 1.937960 1.787652 1.072463 1.497742 1.609030 0.493009 1.949975 -0.168473 3.648188 -1.049014 -0.337250 -0.795474 0.531810 1.993180 3.405246 -0.861247 0.600889 0.909203 0.762876 -0.285127 -2.495413 0.881509 -0.491123 0.218625 0.228712 0.958980 0.177029 -0.860078 2.265530 -0.402081 -2.509265 1.800355 0.606099 1.235456 0.466409 0.539307 -0.288874 0.588849 -2.005784 1.687818 2.129802 1.323608 -1.599900 -0.344701 0.249571 1.587267 -0.603426 1.946393 -1.129290 1.125760 1.243911 1.369091 0.599445 0.379885 -1.452367 -1.908692 1.279747 -0.827562 -0.244836 1.067477 0.741100 -1.564390 0.821602 -0.229717 -1.898058 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = -0.004027 0.014737 0.252543 -0.357552 -0.514171 0.012792 -0.098069 -0.188301 -0.095072 -0.218243 0.131769 -0.107454 -0.424305 0.370668 -0.153894 -0.547952 -0.194114 -0.058237 -0.097122 -0.136736 -0.091348 0.198966 -0.099256 0.010931 0.135118 -0.142766 -0.105053 0.224868 0.356423 -0.310338 -0.025786 -0.192647 0.019241 0.477032 0.054608 0.193180 0.009695 0.812170 0.253381 0.195621 -0.540583 -0.476288 0.412336 -0.149079 -0.027224 -0.583854 -0.280362 0.294004 -0.612759 0.148080 0.224544 0.074677 -0.065902 -0.173385 0.165205 0.212260 -0.717980 0.620432 0.197459 -0.247490 -0.052349 -0.079897 -0.328104 -0.125268 0.229401 -0.267046 -0.031810 0.282420 -0.284324 0.042578 0.043025 -0.228402 0.971196 0.095657 -0.144767 0.244915 0.228727 -0.013724 0.295541 -0.464070 -0.510864 -0.202261 0.213406 0.214502 0.417280 0.141581 0.100604 -0.678004 -0.026695 -0.699210 0.299433 -0.390326 0.210094 0.411180 -0.443108 0.378237 0.329049 -0.370457 0.287192 0.187629 0.434027 0.016932 0.153719 0.329328 0.145481 -0.011050 -0.034643 -0.177166 -0.288431 -0.472785 -0.079501 -0.020853 -0.781062 0.157525 0.004912 0.404750 -0.079603 0.159757 0.149402 0.012529 -0.442510 0.044885 0.267262 -0.123073 0.226840 0.345232 -0.125272 0.000181 -0.234921 0.390120 -0.351177 0.284614 -0.072339 0.326511 0.331755 -0.736388 -0.716891 -0.003042 0.106872 -0.244120 -0.387020 -0.227470 -0.069738 0.130150 -0.250413 0.211232 0.898215 -0.428580 -0.478209 0.560037 0.253905 0.305869 0.388822 0.210661 0.481789 -0.044823 -0.254257 -0.184851 -0.310241 0.128958 -0.313078 0.156505 -0.252145 0.323404 0.187483 -0.400547 0.315250 -0.223483 -0.319682 0.067567 0.037661 -0.316139 -0.284495 0.359888 0.482208 0.540106 0.094836 0.639057 -0.232587 -0.521675 0.067372 -0.109665 0.009767 -0.077253 -0.024513 0.087071 0.073546 -0.485094 -0.278400 -0.119706 -0.222479 -0.266428 0.170909 0.334168 0.073270 0.174500 0.162612 0.177056 0.598334 0.056493 0.069142 -0.528791 0.230525 0.093524 0.049403 -0.607922 0.033772 -0.005229 -0.082704 0.353582 0.018568 0.173537 0.138728 -0.037210 -0.046392 -0.196962 0.218609 0.147142 0.075766 -0.056584 -0.001592 0.201732 0.152591 0.313271 0.640262 0.439864 0.287551 0.317319 0.008477 -0.009991 0.417107 -0.102346 0.085207 0.261776 0.263702 0.256066 0.427329 0.123278 0.474279 0.369121 0.003214 0.483694 0.078718 0.850009 -0.352563 -0.165319 -0.065694 0.147243 0.459195 0.672064 -0.349449 0.160776 0.306428 0.274234 0.098256 -0.515838 0.090974 -0.088298 -0.206806 0.536357 0.248753 -0.057292 -0.086569 0.509602 -0.123167 -0.551884 0.453793 0.132835 0.261995 -0.121295 0.140092 -0.199459 0.317003 -0.423284 0.076600 0.322742 0.370027 -0.511076 -0.228529 0.030536 0.343932 -0.009815 0.435942 -0.319719 -0.099438 0.338411 0.376996 0.017745 -0.009986 -0.284328 -0.567901 0.219707 -0.123358 -0.120836 0.206433 -0.011614 -0.220290 0.001751 0.000693 -0.466206 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int*&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = -0.125002 0.065323 0.317828 -0.474450 -0.563755 -0.130714 0.335773 -0.105951 -0.100388 -0.248039 0.261314 -0.251950 -0.479060 0.530526 -0.021881 -0.493459 -0.091787 -0.186648 -0.234697 -0.040896 -0.036022 0.320686 -0.060459 0.000756 0.241904 -0.057454 -0.181853 0.506638 0.342935 -0.372391 0.033537 -0.154258 0.117902 0.537984 -0.060961 0.124830 -0.002888 0.959811 -0.268032 0.437770 -0.521828 -0.375423 0.664549 -0.158359 -0.231310 -0.916304 -0.563504 0.382439 -0.502438 -0.125123 0.270719 0.197502 -0.012669 -0.309058 0.190835 0.507262 -0.859465 0.454551 0.300756 -0.280737 -0.092182 -0.048854 -0.394543 -0.182813 -0.039823 -0.343617 -0.078076 -0.080922 -0.192419 0.016126 0.045982 -0.314984 1.099305 0.073974 -0.102236 0.370218 0.231898 -0.300479 0.450692 -0.281436 -0.479228 -0.211975 0.163386 0.118191 0.515697 -0.087133 0.080297 -0.787738 -0.250444 -0.722296 0.325550 -0.634392 0.158925 0.547790 -0.467167 0.509301 0.227145 -0.396060 0.182542 0.197700 0.503751 0.099337 0.408641 0.356290 0.289032 0.135184 -0.236472 -0.385497 -0.527236 -0.557721 0.111917 -0.130526 -0.977462 0.200048 0.059367 0.062076 0.086325 0.002098 0.207276 0.366344 -0.167101 0.492250 0.456269 -0.143605 0.000674 0.637365 -0.127647 -0.156828 -0.358280 0.449931 -0.267240 0.597300 -0.043993 0.366849 0.203192 -0.893031 -0.385105 -0.085394 -0.034535 -0.258110 -0.411924 -0.416931 0.029255 0.106901 -0.311190 -0.018622 1.044234 -0.442991 -0.582348 0.683501 0.700642 0.313024 0.123111 0.175568 0.679746 -0.088136 -0.333249 -0.296273 -0.394479 0.218716 0.219154 0.179736 -0.364509 0.331743 0.051778 -1.067583 0.872480 -0.210259 -0.270700 0.442886 0.063189 -0.402955 -0.533953 0.616606 0.635391 0.737072 -0.024989 0.720641 -0.145710 -0.527477 0.161474 0.098929 0.044652 -0.492597 -0.136407 0.281666 0.062304 -0.360357 -0.306218 -0.321516 -0.206029 -0.327046 0.222494 -0.114607 0.105494 0.102799 0.219667 -0.093303 0.579275 -0.056371 0.092934 -0.686720 0.280640 0.104469 0.103678 -0.861572 0.112863 -0.015763 -0.118599 0.248815 -0.028565 0.216291 0.075214 -0.080593 0.150983 -0.311528 -0.036000 0.039924 -0.399424 -0.044954 -0.007078 0.284502 0.177456 0.398593 0.858927 0.413100 0.227505 0.440008 -0.028563 0.088641 -0.089625 -0.053901 -0.091561 0.236752 0.340945 0.379530 0.490765 0.143319 0.581896 0.373220 0.037625 0.557892 0.297731 0.918589 0.011954 -0.365646 0.087285 0.169523 0.528063 0.716782 0.040163 0.010135 0.378936 0.346752 -0.103022 -0.593356 -0.003008 -0.118028 -0.268699 0.875638 0.116267 -0.197355 0.049258 0.623907 -0.189430 -0.768867 0.346192 0.140967 0.367850 -0.102582 0.169359 -0.009084 0.479272 -0.384306 0.196384 0.302999 0.418924 -0.565933 -0.368235 0.056826 0.269992 0.238475 0.516823 -0.917449 -0.154905 0.212341 0.489573 -0.112462 0.351900 -0.275788 -0.385464 0.241317 -0.010942 -0.144713 0.085517 -0.031721 -0.392142 -0.048563 -0.405094 -0.348743 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 0.715136 -0.362574 0.932835 -2.465252 -3.117945 0.876936 -1.230584 -1.991373 -0.523883 0.289282 1.186263 -0.627170 -0.583085 2.508600 -0.694187 -2.056009 -0.467465 -1.096180 0.245725 -0.476315 -0.416834 1.539710 -1.028317 0.198707 0.173272 -0.704081 -0.663996 0.977777 1.453136 -0.924997 -0.948761 -1.322635 -0.942006 2.975719 1.381593 -0.445690 0.287863 5.051432 -0.185343 1.040997 -2.645096 -2.259303 1.949527 -0.698063 -0.423669 -2.023301 -1.896144 1.370947 -1.671573 0.489948 1.697259 -0.531217 0.693564 -0.068957 0.508902 0.702906 -3.361490 2.206016 1.331162 -0.879404 -0.353596 -0.972994 -0.722563 0.354004 -0.833997 -1.496816 0.929951 1.586641 -0.516466 -0.599583 -0.489210 -2.321066 3.728803 1.163633 -1.093995 0.275777 0.870411 -2.064728 1.867920 -1.306873 -3.796891 -0.664817 -0.230542 -1.310688 2.729941 -0.139355 1.878577 -4.181502 1.428875 -4.920978 0.780703 -1.994218 1.365728 3.036612 -2.874444 0.993613 1.969031 1.491717 2.365481 -0.029406 2.670661 0.834816 -0.132754 1.865056 1.634681 1.028678 -0.332947 -0.335933 -1.570902 -2.519933 -0.130140 -0.882469 -4.436664 1.434055 -0.298059 0.404664 -1.257658 0.666970 -0.233372 2.266668 -2.549046 -0.635088 0.659534 -0.702618 1.005212 2.148282 -0.893321 0.472502 -1.515960 2.483017 -2.110396 1.606092 -0.728470 1.935051 -0.349525 -2.256867 -4.098265 0.760326 1.362901 -2.256053 -2.806497 -2.325550 -0.503587 0.164156 -1.389865 3.107736 5.083949 -2.975908 -2.782820 3.578413 0.909110 0.231001 2.991368 0.607915 2.752609 -0.359326 -1.339731 -1.652012 -1.889938 -0.702069 -1.387448 0.787140 -0.383981 1.646919 0.179647 -1.215868 3.499599 -0.451538 -2.578658 -0.408346 0.586057 -1.502095 -2.016445 2.599423 0.781420 1.881318 0.983727 3.671621 -0.769376 -2.091513 0.895881 -1.051303 -0.077417 -1.004452 -0.254171 0.237360 1.298374 -1.761380 -1.545219 -0.494895 -1.002123 -1.888545 0.926454 2.374460 0.883054 1.734720 1.013113 1.506124 4.301254 0.810973 0.187619 -2.252778 1.636339 1.836811 -0.629770 -2.477878 -0.658789 -0.886888 -0.395341 0.813670 0.136241 1.893777 -1.347043 -0.729415 -0.618495 0.203415 1.822019 1.856842 -2.871081 1.037534 -0.572525 1.312723 1.207797 1.867211 2.533317 3.300346 2.400753 0.826104 -0.070445 0.336806 1.103424 -0.392458 1.255764 1.261292 1.573161 2.807537 2.503196 1.491090 2.205669 2.115008 1.041070 2.754130 -0.142667 4.966673 -1.227381 -0.456262 -0.862740 0.748215 2.816642 4.757590 -0.766334 0.782087 1.278512 0.775919 -0.768318 -3.221368 1.140000 -0.595917 0.140308 0.588801 1.348075 0.236870 -1.241619 3.288354 -0.524331 -3.709398 2.384082 0.878684 1.743420 0.965758 0.671468 -0.081301 0.874571 -2.423111 2.497803 2.938200 1.840123 -2.339459 -0.731163 0.313801 1.929029 0.057492 2.666692 -2.014812 1.573426 1.652989 2.152010 0.554713 0.823628 -2.098750 -2.210699 1.741577 -1.180020 -0.340986 1.311946 1.018670 -1.967303 0.984749 -0.827632 -2.499965 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = 0.588575 -0.711922 0.322766 -1.036851 -1.277881 0.275898 -0.117789 -1.358524 -0.340017 -0.047878 0.605621 -0.653209 -0.507303 1.156503 0.267839 -1.054444 0.273974 -0.460703 0.096503 -0.343069 -0.312271 0.665127 -0.504595 -0.148401 0.129460 -0.235395 -0.359851 0.837943 0.658814 -0.516065 -0.501665 -0.838079 -0.177010 1.992527 0.878244 0.116449 -0.336467 3.044935 -0.038979 1.248985 -1.885033 -1.061584 1.595309 -0.612691 -0.436108 -1.258132 -1.030343 1.116397 -0.775767 -0.421769 0.560720 -0.189546 0.378538 -0.464844 -0.161313 1.122155 -1.694276 0.968762 0.839661 -0.962985 -0.635177 -0.604710 -0.555226 0.328893 -1.202699 -1.206068 0.624933 0.338546 -0.452327 0.117434 -0.831522 -1.682949 2.019496 0.722878 -0.784223 0.013158 0.157470 -0.829721 1.116533 0.331110 -1.938516 -0.675637 -0.255354 -0.570297 1.362864 -0.146585 1.265749 -2.849952 0.546643 -3.204020 0.706650 -1.514880 1.181277 1.794829 -1.804236 0.875797 0.817105 0.927866 0.979618 -0.279094 1.525761 0.405564 -0.024858 0.759452 1.617889 0.506916 -0.024879 -0.674964 -0.756361 -1.285540 0.478829 -0.651328 -2.470890 0.982924 -0.859406 0.257089 -0.703623 0.847393 -0.118905 1.293128 -1.513430 -0.177496 0.734740 -0.528118 1.013638 1.534006 -0.818106 0.317239 -1.096822 1.456909 -0.672751 1.124026 -0.548885 1.334788 -0.147801 -1.457867 -2.120820 0.280451 1.075612 -1.647673 -1.999480 -1.684220 -0.327326 0.316343 -1.063543 1.733148 3.090691 -1.721081 -1.334712 1.919652 0.575961 0.189784 1.458859 0.290611 2.349356 -0.820388 -0.256727 -0.690034 -0.705864 0.005129 -0.170622 0.055675 -0.791904 0.954626 -0.082823 -1.258644 2.733917 -0.243795 -1.304516 0.381108 -0.015069 -0.233735 -1.518923 1.738456 0.204634 1.246014 0.050703 1.964250 -0.444905 -1.042839 0.816114 -0.319970 -0.404517 -0.482133 -0.158396 -0.075827 1.147374 -1.267378 -1.044964 -0.355549 -0.985138 -0.797145 1.024259 1.594447 0.220783 0.822323 0.557433 0.930585 2.223885 0.247247 -0.008386 -1.623383 1.042665 1.418725 0.017486 -1.049622 -0.568998 -0.806563 -0.450357 -0.113492 0.196634 1.324697 -1.035610 -0.401854 -0.074196 0.249401 0.811991 0.916444 -2.104951 0.736566 0.195552 0.481165 0.771463 1.705337 1.358720 1.646709 1.188873 0.071849 -0.124408 0.030988 -0.529925 0.016529 0.296398 1.020153 0.914665 1.091690 1.427693 0.733117 1.616867 0.591445 0.932587 1.845306 0.524769 2.825664 -0.590551 -0.097252 -0.003258 -0.135733 1.876198 2.893250 -0.244114 -0.043424 0.911753 0.150049 -1.081480 -1.943479 0.067599 -0.239566 -0.183196 0.714364 0.390570 0.022325 -0.883830 2.471172 -0.278803 -2.755713 1.441161 0.618063 0.839759 1.156146 0.087497 0.433511 0.743183 -1.064547 1.209278 1.580184 1.272522 -1.480137 -0.530652 0.039022 0.879485 0.477202 1.156086 -1.624608 0.749080 0.956303 1.885310 0.470444 0.297167 -1.374281 -0.530941 0.793534 -0.700740 0.019517 0.653410 0.934326 -1.069689 0.136201 -1.420746 -0.767560 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.025061 -0.016745 0.242502 -0.335102 -0.412198 0.012249 0.050210 -0.170257 -0.075899 -0.079283 0.120764 -0.085637 -0.249328 0.422068 -0.106942 -0.363228 -0.109079 -0.119148 -0.088202 -0.036608 -0.039349 0.236298 -0.085565 0.011647 0.115183 -0.097034 -0.074831 0.212019 0.093532 -0.222190 -0.021425 -0.186456 0.000000 0.411245 0.048397 0.175444 -0.040329 0.707579 0.005448 0.389099 -0.481440 -0.414679 0.356779 -0.127413 -0.005978 -0.560397 -0.310305 0.243643 -0.253655 -0.039175 0.181626 0.062990 -0.039893 -0.150617 0.142706 0.169487 -0.563500 0.336414 0.179937 -0.234938 -0.077191 -0.077288 -0.243185 -0.083817 -0.037632 -0.229474 -0.019610 0.175925 -0.177149 0.050979 0.032741 -0.250743 0.736657 0.111957 -0.128613 0.191535 0.208128 -0.148052 0.305098 -0.336691 -0.439596 -0.167153 0.076778 0.049574 0.349485 0.075607 0.186109 -0.601614 0.076088 -0.601794 0.247891 -0.379758 0.148931 0.397854 -0.295777 0.324658 0.285002 -0.059175 0.242975 0.157849 0.360855 0.146353 0.142236 0.285496 0.232486 0.076159 -0.121698 -0.225131 -0.318848 -0.408011 0.042342 -0.108317 -0.671196 0.131751 0.079360 0.210617 -0.076669 0.126323 0.126726 0.173114 -0.456401 0.152418 0.280735 -0.101373 0.083425 0.296155 -0.110513 -0.029924 -0.246253 0.335357 -0.304820 0.308750 -0.033794 0.280039 0.056421 -0.480369 -0.429978 -0.003665 0.041500 -0.229012 -0.332648 -0.342471 -0.057367 0.245418 -0.221633 0.211316 0.770579 -0.376106 -0.414218 0.476290 0.358812 0.121870 0.216918 0.172291 0.395783 -0.034201 -0.250999 -0.198134 -0.269564 0.104379 -0.038612 0.150695 -0.215846 0.305626 0.053396 -0.594305 0.572893 -0.203260 -0.271987 0.079848 0.037050 -0.287099 -0.237472 0.367238 0.243574 0.472809 -0.031261 0.532410 -0.150560 -0.314751 0.048292 -0.230558 0.001652 -0.247322 0.004017 0.065764 0.129324 -0.394117 -0.237987 -0.109993 -0.265331 -0.220840 0.162115 -0.019390 0.073544 0.149682 0.145169 0.208402 0.481243 0.052252 0.015050 -0.411624 0.216507 0.082877 0.038631 -0.531625 0.013458 -0.039608 -0.074375 0.144447 0.019392 0.153963 0.002786 -0.030614 -0.003999 -0.191262 0.066613 0.107540 -0.108388 -0.052849 0.016738 0.269480 0.121304 0.266747 0.552358 0.388454 0.244547 0.257303 -0.018085 0.002133 0.092563 -0.010002 0.076478 0.144331 0.220076 0.297694 0.365248 0.130179 0.417960 0.321731 0.106413 0.414104 0.084438 0.695308 -0.175979 -0.171384 -0.011836 0.159450 0.393010 0.558411 -0.136750 0.148268 0.247944 0.157510 -0.064955 -0.308971 0.077577 -0.076482 -0.174686 0.455885 0.220737 -0.048237 -0.053686 0.454582 -0.102691 -0.536288 0.285139 0.114430 0.261966 0.029995 0.118636 -0.010862 0.273923 -0.253440 0.172963 0.280353 0.300237 -0.443007 -0.244313 0.035281 0.218410 0.182643 0.396279 -0.430476 0.000000 0.218134 0.347830 -0.095358 0.132114 -0.260061 -0.319457 0.205895 -0.095986 -0.113709 0.168513 0.032454 -0.156262 -0.028404 -0.206163 -0.339233 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.158291 0.082022 0.566526 -0.904219 -1.066509 -0.125032 0.609134 -0.582101 -0.227876 0.425260 0.474317 -0.536615 -0.400267 1.133447 -0.110125 -0.572016 -0.035231 -0.529097 -0.268170 -0.202361 -0.052157 0.688274 -0.199144 -0.122611 0.249142 -0.155101 -0.170041 0.773917 0.034219 -0.339120 -0.007162 -0.467950 0.190403 1.154604 0.198061 0.016503 -0.318219 1.792172 -0.924063 1.110472 -1.308093 -0.905740 1.235911 -0.278412 -0.134968 -1.661206 -0.973598 0.730686 -0.016562 -0.515975 0.323496 0.175160 0.201586 -0.540919 0.091195 0.765955 -1.269092 0.484163 0.586141 -0.833439 -0.451599 -0.177189 -0.371743 0.147892 -0.809062 -0.750900 0.059221 -0.006077 -0.148890 0.127371 -0.211020 -0.931667 1.363804 0.255519 -0.339829 0.342898 0.212539 -0.859043 0.933539 -0.345287 -1.015489 -0.422861 0.016785 -0.222848 0.691474 -0.068040 0.729694 -1.708341 0.057055 -1.655029 0.588768 -1.073397 0.433890 1.091914 -0.654913 0.796276 0.441975 0.225568 0.689268 0.116049 0.889026 0.555915 0.755401 0.609895 0.846555 0.723903 -0.503775 -0.816039 -0.953185 -1.005033 0.451988 -0.407265 -1.669093 0.534697 0.001117 -0.304505 -0.095864 -0.047859 0.189424 1.333361 -0.897807 0.452310 0.847948 -0.281976 0.032030 1.028624 -0.304160 -0.043077 -0.688722 0.835802 -0.438002 1.054929 0.005082 0.820588 -0.479464 -1.245318 -0.725867 0.137776 0.156861 -0.818121 -0.942554 -1.301912 -0.061489 0.455808 -0.683669 0.439602 1.986199 -0.970601 -1.174571 1.182602 1.188419 -0.171394 0.334802 0.255214 1.452379 -0.385274 -0.460232 -0.583797 -0.603317 0.360840 1.166412 0.208720 -0.684897 0.778384 -0.194606 -2.034853 1.839838 -0.307232 -0.608144 0.530971 0.178159 -0.511439 -0.770415 1.125981 0.240804 1.191469 -0.416619 1.327932 -0.338965 -0.657266 0.324228 -0.561992 -0.134752 -0.902954 -0.023001 0.359466 0.645616 -0.684739 -0.585405 -0.477548 -0.767021 -0.558517 0.637238 -0.765058 0.200171 0.326220 0.306467 0.466817 1.146282 0.010703 0.033682 -1.033330 0.642226 0.520341 0.272883 -1.543755 -0.225349 -0.362289 -0.276836 -0.113701 -0.002528 0.699097 -0.334661 -0.108359 0.282973 -0.467023 -0.118780 0.153669 -1.097267 0.238981 -0.106131 0.853279 0.183859 0.999637 1.256678 1.017547 0.572606 0.484120 -0.136367 -0.124900 -0.590773 0.253442 0.177133 0.040945 0.661492 1.043747 0.843011 0.448256 1.230108 0.552117 0.318252 1.126396 0.154779 1.652478 -0.264440 -0.336736 0.115593 0.273946 1.063881 1.620277 0.465047 -0.273372 0.613621 0.098847 -0.709741 -0.742245 0.038989 -0.174165 -0.262453 1.138795 0.602603 -0.280774 -0.158589 1.409800 -0.213501 -1.717895 0.692658 0.333984 0.701028 0.460459 0.063762 0.391717 0.729784 -0.315679 0.660234 0.847892 0.778870 -1.158040 -0.789223 0.117383 0.507292 0.863294 0.864735 -2.162057 0.149931 0.514694 1.110993 -0.359589 1.070348 -0.872205 -0.265030 0.598030 -0.017484 -0.183902 0.276261 0.311821 -0.776159 0.086815 -1.074556 -0.350097 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 0.915676 -0.268082 0.641715 -1.210717 -0.967312 -0.239955 1.409336 -1.399771 -0.557480 1.492389 0.510756 -0.973407 -0.404567 1.188499 0.345530 -0.658463 0.527307 -1.088359 -0.372219 -0.657936 -0.340712 0.745749 -0.325554 -0.815411 0.315739 -0.329964 0.062946 1.309777 -0.720664 -0.215880 0.137975 -0.945259 0.543840 2.301989 0.732075 -0.033356 -1.174653 2.850141 -1.428369 2.045551 -2.349190 -1.575375 2.543311 -0.638532 -0.190866 -2.152082 -0.851178 1.409986 0.892566 -1.415767 -0.190379 0.114424 0.580740 -1.418440 -0.840581 1.670469 -1.424962 0.193827 0.976076 -1.992647 -1.679077 -0.469649 -0.141761 0.779618 -2.226610 -1.617108 0.480963 -0.395448 -0.283143 0.663493 -1.237301 -1.883432 1.393443 0.708240 -0.475470 0.144865 -0.400727 -1.107511 1.402192 0.678812 -1.415661 -1.096860 -0.217476 -0.716441 0.727810 -0.061827 1.774582 -3.219633 0.430885 -3.113068 0.994289 -1.651616 1.245601 1.788168 -0.691949 1.550366 0.344402 1.213412 0.540191 -0.628609 1.362862 0.793289 1.212275 0.730457 2.000726 1.402927 -0.799449 -1.838141 -1.206710 -1.147511 1.264649 -0.879635 -2.164259 1.271681 -0.948864 -0.897731 -0.275513 0.219978 -0.155012 2.583448 -2.043344 0.089574 1.421727 -0.609431 0.628110 1.419779 -0.583283 0.189442 -0.998452 1.272388 0.000334 1.553439 -0.053470 1.699060 -1.133463 -1.344985 -0.846685 0.374468 0.845575 -1.890985 -2.032370 -2.455482 -0.434986 1.067394 -1.370917 1.486736 3.197524 -1.490914 -1.703987 1.559870 1.296511 -0.657659 0.478352 0.406306 2.855612 -1.385110 -0.094171 -0.569933 -0.274813 1.092461 2.720694 -0.348279 -1.510864 1.597153 -0.699422 -2.250225 3.130198 -0.321238 -0.717653 1.220600 0.005968 -0.135364 -1.396469 1.789569 -0.448603 1.950009 -0.992922 2.161438 -0.701724 -0.585917 0.718894 -1.212574 -0.810502 -1.359871 0.258906 0.057201 1.639040 -1.179082 -1.225167 -0.675482 -1.611885 -0.510209 1.850535 -1.150547 0.117295 0.370126 0.133609 1.467665 1.542341 -0.296464 -0.320392 -1.628549 1.169186 1.413988 0.858382 -1.686132 -1.092437 -0.764334 -0.737363 -0.757559 0.208265 1.702356 -1.131518 0.018092 0.881815 -0.152430 -0.511762 0.131516 -2.545960 0.852691 0.351890 1.059516 0.182482 2.481056 1.488399 1.468795 0.580868 0.065544 -0.391614 -0.522145 -2.306460 0.627999 0.118541 0.328806 1.103955 1.476571 1.116257 0.900618 2.369206 0.335507 0.743729 1.962413 0.152427 2.412694 -0.804241 -0.157232 0.599380 -0.088022 1.951991 2.643605 0.999388 -1.361003 1.124218 -0.582744 -1.991912 -1.018768 -0.373028 -0.158907 -0.022667 1.362291 1.203799 -0.500477 -0.647039 3.026868 -0.150289 -3.496877 1.337298 0.886945 1.037947 1.736537 -0.548944 1.378488 1.225820 0.230102 0.917737 1.447591 1.336629 -2.089981 -0.722370 0.203938 0.810969 1.350852 0.772108 -3.861562 0.251186 0.805773 2.388650 -0.286895 1.994009 -1.718035 0.667931 0.851947 0.112518 0.183609 0.567291 1.125411 -1.339739 0.171601 -2.579940 0.569362 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = 0.307556 -0.460167 0.984356 -2.111798 -0.898494 -0.345020 1.600948 -1.122856 -0.683348 2.489981 0.174460 -1.093238 -1.367113 1.929045 0.081966 -1.367104 0.194450 -1.309430 -0.450399 -0.107752 -0.558511 1.246198 -0.491043 -1.004814 0.965317 -0.378838 0.432795 1.692366 -0.266918 -0.313680 0.576093 -1.252927 0.242179 2.799068 0.714758 0.605542 -1.108747 3.382563 -1.959231 3.542220 -2.676084 -2.626010 3.200668 -0.472835 -0.188163 -2.174075 -0.156964 1.767408 -0.633918 -1.585254 0.083619 0.237476 0.757330 -2.010168 -0.649097 1.634220 -2.381659 0.602703 1.200843 -1.795703 -1.936035 -0.616119 -0.162010 0.698836 -2.422794 -1.779286 -0.163485 -0.876964 -1.211465 0.213099 -1.049470 -1.174271 1.779053 0.974806 -0.648754 0.691956 -0.477647 -1.071603 1.476534 -0.893723 -1.748035 -1.406482 -0.190938 -1.515597 1.352568 0.559673 1.839970 -3.512356 0.816512 -3.126275 1.143558 -1.586959 1.262313 2.576369 -0.560058 2.345471 0.352386 1.193552 0.322592 -0.847327 1.413903 1.019683 1.369750 1.301517 1.897451 1.790049 -1.980256 -2.614300 -1.786732 -1.256241 0.960606 -1.530397 -2.345617 1.094814 -0.684718 -0.000529 0.270106 0.046502 -1.029764 2.091192 -3.456019 0.341876 0.865357 -0.613356 0.752802 1.340403 0.037633 -0.241797 -0.379022 1.631381 -0.319829 1.606986 0.032335 2.249026 -0.968764 -0.110097 -0.250864 0.342388 0.629920 -1.451040 -2.172187 -3.320144 -1.063473 1.456274 -1.351802 2.319722 3.661522 -1.338946 -2.244838 2.030645 -0.154107 0.121150 0.374920 0.698254 1.896009 -1.062411 -0.730115 -0.781281 -0.557007 1.431381 4.049556 -0.072522 -2.073547 2.227158 -1.302702 -1.270839 1.613519 0.199497 -0.607901 -1.101974 0.078780 -1.614224 -1.450102 2.182910 -2.623894 2.479255 -1.522505 3.002593 -0.939805 -0.745009 0.703938 -3.015285 -0.709335 -2.613721 -0.276941 0.164841 1.119708 -2.155703 -1.475876 -1.169477 -0.623444 -0.996119 2.215592 -2.811016 -0.261718 0.114795 0.257027 3.405706 1.266865 -0.932771 -0.564173 -1.615267 1.266905 0.953580 0.743816 -2.355549 -0.849511 -0.252280 -1.158236 0.722490 0.086631 1.470994 -1.441167 0.221276 1.280102 -0.081191 -0.727057 0.016085 -3.614182 0.672256 0.879783 1.158438 1.166841 2.676569 1.627120 1.614960 0.068660 1.069890 -0.834961 -0.475810 -2.434060 0.521110 0.339752 0.142827 1.420055 2.103239 1.603390 1.097656 2.489718 1.650584 -0.379807 2.201254 -0.159956 2.367775 -0.557605 -0.991532 1.210304 0.560199 1.749543 2.052053 -0.213368 -1.063440 1.879053 -0.545078 -1.519087 -0.542279 0.027267 -0.673779 0.376239 1.888193 1.411340 -0.543757 -0.177144 3.271861 -0.670557 -3.906727 1.512691 1.158051 1.895908 1.169777 -0.364869 1.303447 1.399509 -0.435020 1.360163 1.513159 1.071868 -2.288096 0.156359 0.421694 0.985368 2.595894 1.040180 -4.072963 -0.789995 0.206135 2.651589 0.059776 2.850414 -1.234043 0.250444 0.775895 -0.091931 0.318755 -0.244451 0.667611 -0.384214 0.221608 -2.720185 0.135483 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = -0.086578 0.159620 0.569617 -0.872912 -1.097842 -0.141577 0.525695 -0.337211 -0.145743 0.036834 0.504670 -0.467133 -0.490989 1.128659 -0.175908 -0.592002 -0.123214 -0.399623 -0.270210 -0.065836 0.014178 0.684350 -0.159058 0.036775 0.290893 -0.099777 -0.263072 0.771585 0.339829 -0.402152 -0.039948 -0.330428 0.122770 0.917073 0.035201 0.002183 -0.065063 1.624281 -0.882288 0.902692 -1.017737 -0.673206 1.021957 -0.204094 -0.237507 -1.648762 -1.101304 0.587990 -0.399087 -0.297151 0.496172 0.215259 0.139025 -0.372653 0.337715 0.692237 -1.338585 0.579596 0.525584 -0.513344 -0.122835 -0.120119 -0.506115 -0.078311 -0.448696 -0.563634 -0.056074 -0.027891 -0.128362 -0.015731 0.025031 -0.691267 1.494003 0.144896 -0.295888 0.450802 0.378587 -0.873069 0.836667 -0.543148 -0.922908 -0.276967 0.085938 -0.072996 0.784020 -0.165004 0.407827 -1.381173 -0.186233 -1.330474 0.492985 -1.047037 0.244522 0.986807 -0.733712 0.679107 0.431528 -0.146276 0.639527 0.304026 0.819723 0.478325 0.696217 0.579174 0.592859 0.548260 -0.454897 -0.615899 -0.935095 -0.966182 0.239904 -0.304258 -1.665195 0.356783 0.195792 -0.194511 0.001637 -0.137122 0.270475 1.063112 -0.447738 0.696869 0.740304 -0.222819 -0.135787 1.055246 -0.232830 -0.158726 -0.648897 0.774449 -0.516095 1.029865 -0.031803 0.624137 -0.242729 -1.369349 -0.663044 0.013748 -0.035933 -0.543402 -0.728952 -1.012576 0.043953 0.223058 -0.519527 0.083639 1.747594 -0.832471 -1.069185 1.158192 1.250992 0.080159 0.273898 0.224717 1.160831 -0.148973 -0.560405 -0.628551 -0.708286 0.183720 0.822960 0.333217 -0.522821 0.569634 -0.073830 -2.100393 1.639790 -0.293358 -0.566284 0.486397 0.192227 -0.648542 -0.751851 1.088321 0.547737 1.080389 -0.261696 1.187355 -0.227424 -0.762666 0.265007 -0.224430 0.076724 -0.890810 -0.144002 0.513962 0.344568 -0.547678 -0.482698 -0.494502 -0.471607 -0.584548 0.358760 -0.641463 0.204449 0.285411 0.378150 0.086781 1.060571 0.025679 0.167246 -0.969813 0.529863 0.302960 0.125914 -1.605147 0.059531 -0.214458 -0.183276 0.081220 -0.047402 0.454489 -0.132919 -0.180249 0.196923 -0.558829 -0.050399 0.152403 -0.902977 0.098126 -0.202063 0.731598 0.233176 0.657752 1.303871 0.868037 0.532211 0.634168 -0.077998 0.030322 -0.254761 0.133340 0.127201 0.024844 0.566961 0.950101 0.812810 0.317602 0.949584 0.636867 0.197913 0.936869 0.297055 1.506818 -0.001763 -0.475088 0.053116 0.338550 0.887030 1.384741 0.397617 -0.034945 0.534747 0.362666 -0.379894 -0.816602 0.101322 -0.190002 -0.358099 1.231256 0.358792 -0.287533 0.006244 1.070328 -0.265237 -1.344906 0.531809 0.220923 0.643971 0.077155 0.245902 0.137644 0.678389 -0.512500 0.629857 0.666359 0.671545 -0.922497 -0.824985 0.101226 0.410869 0.754152 0.910902 -1.860698 0.043375 0.411463 0.847827 -0.325528 0.901542 -0.613111 -0.504602 0.509640 -0.037513 -0.276249 0.149727 0.083751 -0.718881 0.049761 -0.769770 -0.585392 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = -0.024550 0.174802 0.536850 -0.818018 -1.119773 -0.075060 0.306003 -0.404552 -0.150205 0.161872 0.455871 -0.418075 -0.412028 1.087789 -0.260330 -0.583892 -0.210358 -0.348319 -0.213663 -0.135216 0.004254 0.655472 -0.179530 0.052284 0.215313 -0.138424 -0.223447 0.602427 0.286876 -0.358515 -0.047356 -0.358944 0.089372 0.870015 0.091997 0.022791 -0.095347 1.522332 -0.699582 0.785344 -1.066540 -0.762037 0.886163 -0.186777 -0.092644 -1.496694 -0.966778 0.552395 -0.327272 -0.204760 0.451855 0.167105 0.116546 -0.298329 0.321047 0.496412 -1.228677 0.633774 0.480837 -0.554775 -0.133756 -0.107438 -0.431177 0.007208 -0.376526 -0.529416 -0.041909 0.169686 -0.129922 -0.015934 0.046060 -0.677985 1.360692 0.135401 -0.319231 0.375528 0.359623 -0.744940 0.790450 -0.645052 -0.938827 -0.257820 0.106675 -0.066008 0.667721 -0.025381 0.469493 -1.328544 -0.027260 -1.310538 0.488881 -0.882989 0.250679 0.897933 -0.677581 0.589448 0.490194 -0.070838 0.770930 0.298994 0.770079 0.464240 0.611095 0.587828 0.515236 0.537797 -0.380033 -0.513959 -0.849038 -0.968209 0.197054 -0.258678 -1.537208 0.353626 0.213246 -0.093169 -0.084090 -0.105269 0.265695 0.972233 -0.632546 0.449945 0.670359 -0.200886 -0.065477 0.896434 -0.232513 -0.067267 -0.586825 0.723497 -0.574010 0.880819 0.009978 0.609558 -0.263549 -1.252630 -0.807970 0.102250 0.018123 -0.558078 -0.673439 -0.966773 0.015860 0.268140 -0.507328 0.202137 1.682710 -0.857692 -1.049611 1.085766 1.069357 -0.038715 0.376852 0.226132 1.091150 -0.128113 -0.542836 -0.581929 -0.689635 0.165347 0.682596 0.345092 -0.465232 0.575264 -0.027954 -1.847973 1.370979 -0.301933 -0.604604 0.284216 0.229174 -0.593907 -0.577546 0.916004 0.416857 0.973693 -0.242398 1.123320 -0.276864 -0.718658 0.215551 -0.415125 0.025288 -0.682826 -0.078295 0.421190 0.394040 -0.582889 -0.425836 -0.404914 -0.547896 -0.575194 0.326968 -0.546586 0.217991 0.339690 0.340814 0.251217 1.076941 0.111726 0.129872 -0.869663 0.509107 0.309873 0.123645 -1.501177 -0.028947 -0.261297 -0.158832 0.088998 -0.048307 0.460385 -0.105782 -0.130590 0.091130 -0.529277 0.052796 0.188352 -0.644368 0.104389 -0.240316 0.785360 0.180290 0.626236 1.171432 0.928693 0.592288 0.585470 -0.064810 -0.052471 -0.012341 0.147214 0.239668 -0.029682 0.550750 0.931433 0.779609 0.340387 0.939256 0.612107 0.189480 0.919533 0.100027 1.480790 -0.226726 -0.340636 -0.045650 0.366975 0.843770 1.390726 0.263701 0.006853 0.480003 0.269947 -0.332954 -0.708449 0.168423 -0.171400 -0.306124 1.036952 0.490333 -0.205925 -0.070132 0.998380 -0.220244 -1.242321 0.590238 0.198552 0.602444 0.107223 0.214354 0.076328 0.582988 -0.485496 0.571213 0.722808 0.642571 -0.930617 -0.791921 0.093025 0.471375 0.685001 0.886122 -1.652383 0.124478 0.489020 0.777295 -0.343343 0.781492 -0.674610 -0.575021 0.541345 -0.068403 -0.272589 0.225919 0.099696 -0.635568 0.097319 -0.587534 -0.620790 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.012400 0.324386 0.806821 -1.269361 -2.006454 0.010236 -0.196056 -0.814402 -0.290946 0.177509 0.659798 -0.599191 -0.860960 1.530402 -0.664017 -1.261607 -0.597118 -0.322662 -0.193153 -0.532336 -0.129720 0.921331 -0.367453 0.089056 0.268060 -0.400898 -0.349811 0.726507 0.946749 -0.609882 -0.105591 -0.650449 0.080331 1.456029 0.308630 0.050553 -0.083701 2.486068 -0.323373 0.631518 -1.882080 -1.432650 1.312388 -0.323098 0.029861 -2.181494 -1.274271 0.881520 -1.200795 0.281213 0.739314 0.143877 0.179418 -0.371443 0.507725 0.556976 -2.072986 1.664723 0.737485 -0.955876 -0.144448 -0.200264 -0.758582 0.053803 0.054652 -0.850176 -0.055306 0.813677 -0.400738 -0.059818 0.083600 -0.969952 2.376801 0.183216 -0.591956 0.546500 0.554873 -0.764841 1.110208 -1.426774 -1.688707 -0.467837 0.447455 0.228297 1.032944 0.288697 0.691672 -2.176636 -0.018322 -2.284777 0.829796 -1.158026 0.558825 1.333291 -1.332307 0.890991 0.968145 -0.606449 1.511962 0.499561 1.285921 0.470297 0.796808 1.027244 0.520670 0.680197 -0.261627 -0.523761 -1.092832 -1.588605 -0.061498 -0.160502 -2.470470 0.603479 0.160607 0.394631 -0.333480 -0.047224 0.398835 1.107089 -1.205750 0.085229 0.876321 -0.341934 0.309857 1.244624 -0.373816 0.103330 -0.807276 1.175851 -1.110047 1.107061 -0.062870 1.061009 0.082405 -2.355901 -2.133744 0.284390 0.263618 -0.953502 -1.137931 -1.209112 -0.079221 0.191992 -0.820995 0.497627 2.785891 -1.514488 -1.757356 1.783429 1.116895 0.136781 1.162541 0.450245 1.727922 -0.163245 -0.830730 -0.853333 -1.147701 0.219368 0.287333 0.541217 -0.701963 0.950999 0.287558 -2.056663 1.179260 -0.498428 -1.139212 0.032236 0.394056 -0.911884 -0.737101 1.186874 0.866801 1.460255 -0.118724 1.898242 -0.667274 -1.515321 0.287901 -0.707960 -0.003602 -0.368356 -0.044198 0.577665 0.570152 -1.159398 -0.715708 -0.492842 -0.829789 -0.980265 0.500122 0.059056 0.332355 0.702580 0.506113 0.611218 1.969253 0.312755 0.284547 -1.389760 0.820010 0.554852 0.199342 -2.399475 -0.151618 -0.381626 -0.245793 0.554646 -0.034075 0.804328 0.116101 -0.149047 -0.112623 -0.758228 0.602352 0.495167 -0.296919 0.231630 -0.490593 1.121756 0.281020 1.022827 1.775057 1.660731 1.095226 0.956868 -0.044609 -0.243123 1.066976 0.083019 0.647943 0.062939 0.912720 1.401627 1.328634 0.569496 1.521726 1.051585 0.104268 1.543332 -0.161776 2.589090 -1.080651 -0.313660 -0.334922 0.598051 1.413794 2.431455 -0.175863 0.093571 0.780080 0.501049 -0.096115 -1.426083 0.433857 -0.245101 -0.440932 1.449357 1.042816 -0.205421 -0.328361 1.602506 -0.325504 -1.825543 1.399673 0.352367 0.891177 -0.121286 0.355712 -0.388531 0.840593 -1.074942 0.676770 1.326374 1.107611 -1.580730 -1.174636 0.130733 1.073901 0.617127 1.443406 -2.036286 0.122133 1.140568 1.182646 -0.289907 0.772558 -1.174363 -1.536125 0.915930 -0.228682 -0.422292 0.545180 0.090378 -1.021378 0.324358 -0.163312 -1.303518 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = 0.226906 0.033829 0.425960 -0.626202 -0.722809 0.053171 -0.120987 -0.359672 -0.157468 0.103749 0.258660 -0.178319 -0.329469 0.580120 -0.255403 -0.600261 -0.166952 -0.398677 -0.136294 -0.287261 -0.075223 0.275446 -0.090507 -0.155694 0.114041 -0.222716 -0.086814 0.336616 0.310572 -0.417582 -0.027716 -0.274777 0.023610 0.717314 0.150559 -0.071318 -0.091106 1.137261 0.061606 0.119010 -0.765097 -0.709717 0.759580 -0.240467 -0.024757 -0.782958 -0.428386 0.503432 -0.344192 -0.006951 0.204975 0.060732 0.099067 -0.383678 -0.118732 0.286645 -0.931879 0.661822 0.311639 -0.416032 -0.269962 -0.093595 -0.130158 0.079163 0.099803 -0.471400 0.151204 0.307232 -0.346779 -0.054052 -0.077553 -0.423762 1.122647 0.123033 -0.041548 0.242690 0.194855 -0.245585 0.537365 -0.464194 -0.760645 -0.302074 0.096190 -0.122631 0.566219 0.025482 0.334490 -1.073682 0.220753 -1.113132 0.382212 -0.492474 0.295150 0.579435 -0.567687 0.501347 0.425026 -0.015817 0.466640 0.093434 0.684261 0.111242 0.319517 0.502727 0.380736 0.159690 -0.141613 -0.231273 -0.502276 -0.696105 0.024735 -0.178187 -1.086779 0.450854 -0.019431 0.036588 -0.140099 0.028418 0.093710 0.510465 -0.707351 0.026438 0.393110 -0.174274 0.136294 0.486576 -0.209401 0.027383 -0.303144 0.552301 -0.455974 0.417502 0.114669 0.540632 0.192283 -0.886106 -0.812966 0.201359 0.233495 -0.496344 -0.613329 -0.518211 -0.043363 0.080299 -0.446923 0.566145 1.279299 -0.578356 -0.788880 0.720107 0.501673 0.088089 0.590962 0.220508 0.869069 -0.179619 -0.422645 -0.253843 -0.436636 0.287929 -0.287708 0.115196 -0.218164 0.592265 0.106439 -0.493781 0.717247 -0.237797 -0.433831 0.339012 0.192538 -0.455608 -0.501578 0.466046 0.709668 0.714111 0.278934 1.012786 -0.260384 -0.585739 0.158878 -0.212021 -0.076173 -0.181128 0.018575 0.047886 0.253211 -0.455072 -0.420536 -0.268815 -0.387442 -0.357246 0.422958 0.270183 0.314014 0.338155 0.119545 0.186991 0.853362 0.043369 0.077993 -0.719962 0.341730 0.416081 0.164842 -0.823583 -0.236788 -0.146232 -0.076790 0.391167 0.016622 0.533129 -0.049422 -0.089662 0.050130 -0.105373 0.161838 0.194230 -0.301742 0.031160 -0.087076 0.445311 0.123445 0.686164 0.790483 0.708566 0.382638 0.384975 -0.047330 0.004911 0.261394 -0.219890 0.088382 0.344727 0.459787 0.559549 0.557227 0.382636 0.829694 0.500747 0.000000 0.739533 -0.109554 1.157565 -0.576376 -0.180017 -0.162584 0.251661 0.746140 1.062028 -0.114040 -0.056982 0.406356 0.220821 -0.100904 -0.731276 0.180863 -0.108035 0.054608 0.502932 0.601215 0.011590 -0.215967 0.790722 -0.098032 -1.004176 0.742270 0.214865 0.474576 0.164822 0.059212 0.001800 0.324443 -0.416753 0.166008 0.632938 0.499032 -0.811371 -0.197842 0.140396 0.664326 -0.163592 0.623061 -0.836159 0.171728 0.434448 0.510153 -0.075309 0.265375 -0.619646 -0.620176 0.410596 -0.065325 -0.036723 0.423741 0.121740 -0.600369 0.104742 -0.173968 -0.337051 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.811741 -1.034109 0.299118 -0.642227 -0.538953 0.658379 -0.228302 -1.317747 -0.194307 0.188117 0.370825 0.054242 0.329214 0.488150 0.520728 -0.375182 0.476214 -0.613180 0.287134 -0.259432 -0.241842 0.280396 -0.517122 -0.102049 -0.191473 -0.329756 0.003045 0.424319 -0.590772 -0.132582 -0.441177 -0.814424 -0.616251 1.510335 1.035868 0.193766 -0.413027 2.202653 0.063678 1.021207 -1.136704 -0.911235 0.873953 -0.582209 -0.276085 0.068733 -0.381910 0.687594 0.524001 -0.683147 0.370216 -0.442493 0.554074 -0.104731 -0.464478 0.323629 -0.555362 -0.359033 0.476664 -0.959048 -0.891859 -0.583481 0.001113 0.610057 -1.645308 -0.800226 1.093153 0.387654 0.036900 0.067778 -0.742679 -1.652157 0.828639 0.830744 -0.347682 -0.394061 0.221817 -0.675411 0.870519 1.423159 -1.644459 -0.571527 -0.847358 -1.555685 1.022108 -0.339924 1.516787 -2.088401 1.355342 -2.567022 0.328339 -0.793722 0.926780 1.205191 -1.035193 0.452051 0.898260 2.397769 0.367789 -0.895786 1.055065 0.399613 -0.606618 0.690757 1.833228 0.193030 -0.068113 -0.431429 -0.684622 -0.810905 0.800532 -1.083043 -1.326496 0.889855 -0.647200 -0.359011 -0.986221 1.001244 -0.345439 1.404030 -1.631428 -0.022415 0.466928 -0.392333 0.637343 0.691989 -0.782567 0.402080 -0.618090 1.014949 -0.784532 0.619223 -0.441994 1.002491 -0.395784 0.483289 -1.281978 0.459012 1.178770 -1.474445 -1.575749 -1.259897 -0.445965 0.867088 -0.736495 2.252719 2.208546 -1.436022 -0.777354 1.143093 0.288991 -0.456763 1.000080 0.301215 1.401944 -0.623353 -0.226513 -0.742386 -0.400176 -0.094788 -0.498472 0.026990 -0.071729 1.068388 -0.197055 0.059405 3.280104 -0.360400 -1.136147 0.494212 0.091668 0.073068 -1.098810 1.075391 -0.119038 0.530834 0.479585 1.282766 -0.187594 -0.000599 0.431582 -0.555657 -0.526054 -0.546352 0.070378 -0.640794 1.148969 -0.635500 -0.812198 -0.258440 -1.131953 -0.311791 0.791631 1.563613 0.443175 0.828975 0.306451 0.857754 1.875791 0.581529 -0.554943 -0.884339 0.833593 1.310694 -0.101719 0.490880 -0.937859 -0.724326 -0.277329 -0.656072 0.353698 1.371518 -1.456895 -0.166387 -0.261905 0.807720 0.377836 1.008869 -2.617206 0.619747 0.593669 0.358150 0.633307 1.226271 0.680560 1.413611 1.140158 -0.405742 -0.146347 0.261026 -1.230935 -0.151807 0.240189 1.284351 0.551990 0.849330 1.005904 0.808085 1.134063 0.396043 1.522550 1.309586 0.149021 2.027522 -0.279710 0.176965 -0.116468 0.018107 1.390570 1.985894 0.157980 0.338140 0.514297 -0.138791 -1.452850 -1.286322 0.257304 -0.135096 0.642360 -0.413945 0.581091 0.316385 -1.060879 1.897480 -0.000431 -2.231223 0.712228 0.515306 0.646866 1.857983 -0.068966 0.931112 0.115448 -0.424245 1.430797 1.334349 0.766599 -1.172872 0.300301 0.135360 0.541741 0.013765 0.782310 -0.757561 1.256842 0.220737 1.255368 0.342134 0.148168 -1.324634 0.363514 0.739201 -0.957508 0.260242 1.090377 1.193902 -0.672652 0.223911 -1.781692 -0.245992 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.330277 -0.209272 0.728849 -1.006962 -1.058836 -0.326037 0.297217 -0.091796 -0.250437 0.423294 0.320169 -0.722567 -0.788604 1.243207 -0.231066 -0.982016 0.099608 -0.476791 -0.179961 -0.266831 0.124141 0.597913 0.317293 -0.396350 0.343831 -0.209275 -0.305068 0.948242 1.109760 -0.500961 0.200755 -0.263230 0.347568 0.897452 -0.117947 -0.426134 -0.320603 1.776974 -0.446107 0.859355 -1.043794 -0.718517 1.640633 -0.319311 -0.115987 -1.658034 -1.121073 1.050132 -0.700892 -0.645002 0.201606 0.482270 0.370427 -1.009386 -0.509203 0.901796 -1.573428 0.935328 0.399373 -0.452537 -0.132684 0.073416 -0.419778 0.289964 -0.152656 -0.867451 -0.141611 -0.246820 -0.883705 -0.255804 -0.200306 -0.109947 1.749871 0.034179 -0.120853 0.491373 0.382027 -0.378573 0.945139 -0.857765 -1.007023 -0.504609 -0.281744 -0.186618 0.931669 -0.260979 0.502004 -1.770545 0.189257 -1.597610 0.897129 -1.143447 0.291991 1.150270 -0.931723 1.090257 0.308374 -0.202465 0.723718 0.264394 1.130796 0.491356 0.851641 0.761268 0.633642 0.448622 -0.499758 -0.621067 -0.891733 -0.888177 0.147156 -0.508558 -1.876108 0.750476 0.206046 0.000319 0.400889 -0.258460 0.007500 0.856382 -0.782410 0.657089 0.746081 -0.279939 -0.146384 0.977073 -0.392281 -0.226269 -0.583081 1.063612 -0.405687 0.964913 0.699472 0.908917 -0.025892 -1.572103 -0.344839 0.353470 0.071926 -0.498488 -0.951485 -1.229718 0.170827 -0.206494 -0.797421 0.480010 1.818696 -0.419290 -0.973570 1.033178 0.811202 0.270115 0.457496 0.104260 1.520754 -0.274667 -1.000223 -0.291989 -0.764631 0.781558 0.798005 0.191326 -0.560958 0.950433 -0.252461 -1.598494 0.899279 -0.270620 -0.478657 0.336193 0.181932 -0.832042 -0.885656 0.960364 0.475805 1.037532 -0.015663 1.638612 0.188845 -0.940119 0.528926 -0.326429 -0.107629 -0.701803 0.047452 0.352856 0.133500 -0.816961 -0.707614 -0.752364 -0.376441 -0.565825 0.785524 -0.617198 0.443417 0.534616 0.372665 0.530968 0.716389 -0.172213 0.216249 -1.321781 0.429613 0.575902 0.285868 -1.725451 -0.178121 -0.130745 -0.070914 0.614054 -0.092196 0.641395 -0.257694 -0.397100 0.281092 -0.370064 -0.144259 0.105383 -0.896862 -0.066728 0.271471 0.904446 0.292421 1.312937 1.253073 0.642656 0.224465 1.053874 -0.215529 0.278775 -0.328630 -0.109566 -0.100453 -0.019164 0.710963 0.840548 0.774408 0.495927 1.531376 0.796452 -0.453686 0.946395 0.078457 1.347523 -0.322180 -0.710705 0.058927 0.361698 1.166314 1.546064 0.370286 -0.505738 0.859874 0.146963 -0.107077 -0.922575 0.120585 -0.243741 0.109460 1.352378 0.613133 0.023595 0.025970 0.919887 -0.274376 -1.850407 1.234148 0.365056 0.897030 0.409331 0.124475 0.378017 0.463819 -0.631694 0.016795 0.907228 0.570125 -1.069368 -0.390777 0.186965 0.743683 0.500146 1.046263 -2.105964 -0.200774 0.663947 0.922380 -0.327978 0.869874 -0.796279 -1.026858 0.545107 0.131654 -0.047993 0.037733 -0.279550 -1.043970 -0.043576 -0.341921 -0.203119 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.159107 0.099014 0.283356 -0.413784 -0.397143 0.020107 0.092979 -0.258339 -0.106273 0.077621 0.185573 -0.088998 -0.166763 0.373622 -0.138759 -0.310262 -0.109301 -0.397492 -0.195668 -0.146035 -0.066714 0.175792 -0.097179 -0.130606 0.097205 -0.102494 -0.005340 0.219275 -0.059717 -0.342202 -0.030203 -0.179724 0.050561 0.506734 0.086629 0.023222 -0.086891 0.711858 -0.067359 0.137069 -0.535334 -0.508141 0.512415 -0.172827 -0.034918 -0.568678 -0.231619 0.326354 -0.003386 -0.087037 0.087014 0.035917 -0.023897 -0.299887 -0.058323 0.231963 -0.594629 0.337149 0.241225 -0.308527 -0.303137 -0.088822 -0.003006 -0.013329 -0.014329 -0.320675 0.129117 0.137845 -0.184907 0.054044 -0.069249 -0.384099 0.697420 0.097775 0.025439 0.183678 0.053458 -0.226024 0.375503 -0.242105 -0.420436 -0.206812 0.130743 -0.086871 0.333939 0.021764 0.192599 -0.698147 0.114987 -0.684917 0.206777 -0.335800 0.195324 0.348120 -0.256976 0.344676 0.237047 0.046761 0.197583 0.064751 0.416524 0.063164 0.278985 0.284401 0.304404 0.121218 -0.155464 -0.238673 -0.362971 -0.482198 0.108195 -0.099560 -0.663297 0.286023 -0.039467 -0.090410 -0.100808 0.028038 0.114408 0.399520 -0.518054 0.048758 0.317159 -0.110430 0.077503 0.337537 -0.112083 -0.003259 -0.220527 0.303005 -0.231028 0.303902 0.024905 0.334912 0.076803 -0.536593 -0.435393 0.068754 0.128664 -0.351480 -0.393011 -0.376506 -0.042064 0.170006 -0.302266 0.361860 0.841057 -0.391045 -0.563609 0.457945 0.495513 0.012001 0.293614 0.164339 0.598883 -0.178034 -0.190043 -0.128045 -0.217043 0.222742 -0.149659 0.028444 -0.195606 0.374486 0.045946 -0.462288 0.691358 -0.150158 -0.212181 0.420171 0.122437 -0.292694 -0.370056 0.328566 0.551821 0.579974 0.144908 0.644938 -0.266756 -0.290295 0.079080 -0.141572 -0.051133 -0.235815 -0.016278 0.003703 0.240577 -0.253395 -0.264283 -0.153972 -0.316954 -0.207089 0.330116 0.025409 0.192286 0.123977 0.031033 0.034449 0.536890 -0.048640 0.037335 -0.470084 0.234335 0.268175 0.178120 -0.525442 -0.162287 -0.116931 -0.084652 0.194618 0.010449 0.353492 -0.014861 -0.013939 0.143588 -0.088322 -0.008087 0.037336 -0.216889 -0.004496 -0.110750 0.283818 0.031337 0.467606 0.545919 0.458275 0.208301 0.165918 -0.029983 -0.051669 -0.009494 -0.144375 -0.022473 0.285752 0.312449 0.354770 0.346660 0.248393 0.542976 0.278963 0.046000 0.525023 -0.012084 0.761166 -0.358031 -0.114277 -0.052913 0.141333 0.478715 0.633134 -0.054276 -0.074712 0.247045 0.144655 -0.183262 -0.394165 0.043681 -0.068239 -0.029028 0.358830 0.399947 -0.057684 -0.117746 0.612084 -0.060951 -0.674317 0.387002 0.131253 0.308896 0.123609 -0.008523 0.078694 0.302916 -0.158952 0.113442 0.353444 0.364488 -0.565069 -0.164319 0.098291 0.428947 -0.116433 0.349498 -0.632319 0.151699 0.215317 0.368028 -0.097542 0.230439 -0.406080 -0.215197 0.239305 0.014542 -0.012974 0.322158 0.180511 -0.365438 0.014036 -0.327473 -0.123405 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.065503 0.069171 0.215606 -0.305595 -0.292242 -0.066037 0.153928 -0.145507 -0.077231 -0.014472 0.118565 -0.157995 -0.238203 0.384774 -0.117721 -0.293834 -0.075909 -0.180667 -0.179267 -0.050825 -0.033763 0.160024 -0.038272 -0.122566 0.122774 -0.046880 -0.012276 0.211094 0.034234 -0.251321 -0.018046 -0.125606 0.136068 0.397684 0.000887 0.128214 -0.094483 0.552598 -0.055992 0.329504 -0.497973 -0.371776 0.443736 -0.120187 -0.003241 -0.629980 -0.264348 0.271307 -0.144903 -0.110531 0.041165 0.084053 -0.085837 -0.297401 0.020944 0.280629 -0.529609 0.346425 0.191598 -0.227220 -0.171139 -0.056979 -0.111050 -0.076293 -0.004641 -0.265644 -0.034341 0.072117 -0.230801 0.114464 -0.056470 -0.248016 0.664502 0.049145 -0.066408 0.200917 0.053071 -0.135058 0.277824 -0.335101 -0.266551 -0.175363 0.168632 0.145468 0.247195 0.090289 0.108268 -0.563827 -0.037215 -0.503215 0.244655 -0.366619 0.157167 0.308395 -0.222778 0.333319 0.136420 -0.159110 0.164516 0.202080 0.305761 0.103472 0.271061 0.151049 0.222621 0.104156 -0.127161 -0.285871 -0.252416 -0.368274 0.055374 -0.033923 -0.611214 0.152209 -0.028122 0.120511 -0.016671 0.047663 0.140468 0.176727 -0.416059 0.094265 0.296651 -0.091247 0.098377 0.308093 -0.077072 -0.033178 -0.220340 0.247924 -0.112180 0.256940 0.015921 0.257807 0.033698 -0.594530 -0.302619 -0.015631 0.028339 -0.219195 -0.315095 -0.356066 -0.035558 0.187661 -0.234407 0.116064 0.651023 -0.246728 -0.419891 0.359171 0.418275 0.104776 0.181175 0.138743 0.510085 -0.164744 -0.103212 -0.052830 -0.141825 0.212294 0.036775 0.009179 -0.302287 0.259598 0.005850 -0.675608 0.464515 -0.127612 -0.106350 0.238879 0.018092 -0.246560 -0.257113 0.336669 0.298286 0.531670 -0.096563 0.506106 -0.228152 -0.292525 0.071826 -0.168352 -0.025328 -0.203533 -0.007243 0.055618 0.185093 -0.342183 -0.224850 -0.089711 -0.243768 -0.147059 0.284733 -0.154095 0.034474 0.031092 0.040343 0.117154 0.309636 -0.108041 0.082857 -0.406846 0.170939 0.137454 0.153017 -0.585952 -0.014922 -0.075552 -0.088059 0.133040 0.003014 0.163283 0.049096 -0.030565 0.140025 -0.207108 -0.020139 -0.053962 0.005755 -0.055271 -0.060193 0.228456 0.038021 0.375993 0.491580 0.284880 0.093539 0.176739 -0.023017 -0.103858 -0.014782 -0.010777 -0.024818 0.108600 0.225657 0.232451 0.253923 0.104904 0.431789 0.205517 -0.025747 0.405541 0.114446 0.550188 -0.224575 -0.137788 0.048294 0.052054 0.370174 0.487096 -0.113677 -0.064961 0.229270 0.109651 -0.085071 -0.241544 -0.049809 -0.049938 -0.236424 0.504127 0.219946 -0.091249 -0.020423 0.482841 -0.070508 -0.519931 0.293315 0.098267 0.219164 0.015631 -0.006341 0.034222 0.321540 -0.109414 0.007849 0.187708 0.306163 -0.427498 -0.273107 0.036758 0.254448 0.144220 0.247200 -0.539101 -0.022048 0.223400 0.375437 -0.099583 0.172196 -0.248097 -0.184038 0.113798 0.051143 -0.055628 0.100081 0.064842 -0.193700 -0.098592 -0.250818 -0.143552 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = 0.145873 -0.133641 0.117999 -0.652107 -0.637058 0.062902 0.018412 -0.311205 -0.135753 0.007178 0.244999 -0.271205 -0.200761 0.900093 -0.059511 -0.498716 -0.017981 -0.319880 -0.054112 0.280506 -0.077314 0.508466 -0.197622 0.027147 0.173246 0.050255 -0.258150 0.230528 0.262350 -0.375245 -0.316016 -0.284683 -0.137471 0.696654 0.166557 0.030693 0.028424 1.249024 -0.226537 0.818653 -0.668967 -0.443026 0.512760 -0.181096 -0.100912 -0.734131 -0.561975 0.410208 -0.205706 -0.234290 0.405085 0.010920 -0.063941 -0.154668 0.246873 0.336431 -0.884027 0.492435 0.416496 0.013481 0.016473 -0.242932 -0.249526 -0.085380 -0.394708 -0.405336 0.024274 0.119097 -0.259848 -0.118027 -0.162466 -0.533559 1.014817 0.353829 -0.356894 0.194477 0.175245 -0.583690 0.496969 -0.593134 -0.817486 -0.113636 -0.058881 -0.119053 0.710220 -0.006919 0.386032 -1.036484 0.338891 -1.104380 0.229829 -0.715993 0.276288 0.920793 -0.568142 0.306865 0.346528 0.322506 0.564202 0.257723 0.648904 0.351582 0.010380 0.325949 0.413203 0.309245 -0.236150 -0.261861 -0.370357 -0.622282 0.037426 -0.144593 -1.146276 0.312634 0.037341 0.285431 -0.118666 0.255258 0.008667 0.343952 -0.703367 -0.047055 0.236570 -0.172035 0.228705 0.687993 -0.213737 -0.047069 -0.574199 0.601072 -0.327969 0.534444 -0.148423 0.450787 -0.321666 -0.549996 -0.626342 0.015152 0.158781 -0.491553 -0.664380 -0.836099 -0.034054 0.156632 -0.408357 0.646451 1.225189 -0.652408 -0.569519 0.931942 0.423378 0.191481 0.479920 0.073136 0.712547 -0.110972 -0.293759 -0.203304 -0.400849 -0.184022 -0.108019 0.223068 -0.316853 0.268149 -0.159904 -0.962663 1.034438 0.007033 -0.500999 -0.103190 0.022155 -0.451308 -0.568104 0.825974 -0.086447 0.584070 -0.013773 0.884068 -0.093610 -0.344370 0.332736 -0.306947 0.025578 -0.595209 -0.166493 0.121893 0.291217 -0.575807 -0.328779 -0.037458 -0.230396 -0.529569 0.252562 0.076240 0.071959 0.285537 0.304141 0.478703 0.838813 0.019456 0.124666 -0.637953 0.405692 0.274050 -0.255084 -0.737340 0.019934 -0.216910 -0.134564 0.212564 -0.044006 0.222698 -0.342941 -0.283500 0.028727 -0.069239 0.316916 0.279884 -0.553382 0.072071 -0.069292 0.399681 0.367570 0.485546 0.640912 0.704732 0.456717 0.236128 -0.058986 0.154919 -0.111121 -0.005542 0.067865 0.210007 0.411361 0.556024 0.610049 0.255094 0.554413 0.448203 0.153113 0.687775 0.230631 1.121504 0.051098 -0.346601 0.031115 0.051932 0.679101 1.051024 -0.357689 0.218783 0.380233 0.115787 -0.288027 -0.429597 0.172797 -0.180561 -0.356362 0.383681 0.044070 0.044380 -0.131225 0.806201 -0.270270 -0.964555 0.405636 0.178039 0.512791 0.253305 0.251374 0.196546 0.330734 -0.546546 0.570035 0.586214 0.482910 -0.467397 -0.333611 0.044422 0.275698 0.370215 0.636872 -0.543903 0.278655 0.377752 0.634374 0.046961 0.184856 -0.345632 -0.365060 0.322191 -0.154993 -0.117817 0.004572 0.209154 -0.246786 -0.045884 -0.436018 -0.553137 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = -0.082550 0.032112 0.321247 -0.473947 -0.489123 -0.122776 0.487630 -0.111810 -0.085095 -0.065880 0.258300 -0.232701 -0.279901 0.624699 0.010557 -0.299417 -0.008135 -0.261698 -0.218813 0.062213 0.021570 0.385437 -0.056257 0.004139 0.217882 -0.017047 -0.149808 0.493467 0.044584 -0.273113 0.034253 -0.166986 0.089767 0.491065 -0.051872 0.105444 -0.067212 0.886577 -0.556567 0.676780 -0.499822 -0.341895 0.616781 -0.139550 -0.192168 -0.925350 -0.618355 0.337272 -0.095004 -0.332269 0.233316 0.178023 0.025008 -0.281936 0.173417 0.450315 -0.712057 0.155680 0.293781 -0.290817 -0.124707 -0.052732 -0.305107 -0.125004 -0.355391 -0.314994 -0.062310 -0.170311 -0.072362 0.024130 0.034657 -0.362212 0.860143 0.099581 -0.100384 0.309826 0.217892 -0.472209 0.481731 -0.170223 -0.438060 -0.180571 0.008308 -0.076097 0.450793 -0.148199 0.207974 -0.743825 -0.111061 -0.661315 0.280639 -0.634971 0.101182 0.558217 -0.319046 0.457750 0.204143 -0.024379 0.175933 0.171988 0.442084 0.267124 0.400301 0.328648 0.401046 0.255741 -0.338596 -0.445306 -0.578953 -0.513155 0.250362 -0.236757 -0.894045 0.182738 0.151657 -0.151654 0.069883 -0.033856 0.185213 0.578520 -0.228936 0.600652 0.484166 -0.124684 -0.156895 0.591524 -0.117715 -0.182232 -0.386072 0.408040 -0.244827 0.638748 0.000258 0.336565 -0.130495 -0.629387 -0.105497 -0.072812 -0.100672 -0.265234 -0.372419 -0.580168 0.036835 0.253193 -0.293855 0.006347 0.949862 -0.419207 -0.544565 0.619612 0.832280 0.085204 -0.043631 0.141543 0.606348 -0.075535 -0.347445 -0.330137 -0.371080 0.188462 0.540530 0.184888 -0.331313 0.334086 -0.100126 -1.322207 1.187570 -0.197167 -0.245831 0.434856 0.072702 -0.385316 -0.479531 0.640452 0.350785 0.678638 -0.179016 0.632661 -0.066060 -0.310539 0.139876 -0.082336 0.031140 -0.686748 -0.094861 0.260579 0.146823 -0.283087 -0.273059 -0.310985 -0.280882 -0.294064 0.222175 -0.526370 0.112757 0.096560 0.207004 -0.022781 0.487154 -0.046444 0.031811 -0.565867 0.282816 0.107059 0.093185 -0.817352 0.076525 -0.068168 -0.113226 0.009222 -0.025319 0.213507 -0.086869 -0.072337 0.189038 -0.316619 -0.192542 0.011457 -0.609203 -0.031582 0.001034 0.393561 0.143745 0.363314 0.780905 0.396093 0.206134 0.384839 -0.061508 0.090647 -0.432393 0.061178 -0.072457 0.091017 0.307191 0.463462 0.446332 0.167927 0.545751 0.341339 0.166985 0.508070 0.284136 0.790667 0.179332 -0.368942 0.135953 0.200812 0.479415 0.637671 0.280755 0.003057 0.321818 0.208461 -0.296942 -0.370709 -0.000440 -0.106958 -0.234870 0.792256 0.118936 -0.182395 0.071904 0.591466 -0.169020 -0.784678 0.182725 0.127673 0.386065 0.079477 0.150877 0.202944 0.437577 -0.203192 0.327913 0.289106 0.358480 -0.520043 -0.411340 0.065253 0.147760 0.481227 0.501670 -1.076151 -0.024234 0.101031 0.477218 -0.253893 0.529902 -0.277558 -0.128831 0.248100 0.011603 -0.144696 0.059434 0.025383 -0.330887 -0.072035 -0.639982 -0.231301 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.122251 -0.105331 0.066371 -0.484000 -0.476504 0.112109 -0.035806 -0.250509 -0.104464 -0.117914 0.223025 -0.164939 -0.215554 0.618156 -0.006881 -0.420152 -0.001568 -0.260609 -0.034534 0.254497 -0.074586 0.325945 -0.164273 0.031907 0.087458 0.069815 -0.209620 0.147650 0.250368 -0.328112 -0.325328 -0.202781 -0.136404 0.516585 0.171399 0.031953 0.060579 0.926834 -0.077253 0.573849 -0.470962 -0.291290 0.324002 -0.138932 -0.101029 -0.518247 -0.384444 0.321110 -0.236197 -0.168940 0.380099 -0.034269 -0.042883 -0.059281 0.193081 0.275014 -0.671496 0.418220 0.314912 0.081116 0.086435 -0.180934 -0.192828 -0.066486 -0.184020 -0.293715 0.046372 0.096854 -0.204020 -0.129172 -0.155705 -0.433346 0.843736 0.286681 -0.278805 0.105390 0.141113 -0.404206 0.357730 -0.446915 -0.648801 -0.057440 -0.071356 -0.026438 0.583378 -0.016888 0.221618 -0.757808 0.219714 -0.858362 0.164691 -0.516249 0.208370 0.660965 -0.432969 0.157830 0.286709 0.147706 0.403882 0.184617 0.486126 0.195040 -0.054283 0.217885 0.307065 0.149096 -0.150585 -0.145647 -0.251664 -0.475383 -0.003275 -0.061895 -0.849651 0.240218 0.009013 0.299449 -0.103334 0.231882 0.018282 0.129016 -0.462049 -0.046901 0.123446 -0.124218 0.257652 0.558489 -0.174901 0.006959 -0.413422 0.458604 -0.259133 0.394623 -0.146647 0.320058 -0.109595 -0.450562 -0.537509 0.048016 0.196257 -0.357613 -0.503643 -0.572188 0.003593 0.069519 -0.306612 0.480793 0.906461 -0.509255 -0.385806 0.699890 0.294449 0.203738 0.400445 0.040239 0.543209 -0.090390 -0.195800 -0.118955 -0.321477 -0.216030 -0.239037 0.162797 -0.199300 0.185357 -0.083829 -0.652379 0.732293 0.028823 -0.415391 0.013611 -0.017975 -0.317522 -0.462502 0.585929 0.061348 0.370124 0.132635 0.662107 -0.066992 -0.264058 0.258842 -0.073617 0.037248 -0.397995 -0.184736 0.115404 0.177832 -0.434381 -0.228369 -0.022921 -0.118917 -0.410727 0.169943 0.227350 0.054975 0.248159 0.236869 0.284501 0.679694 0.044587 0.100121 -0.473772 0.309201 0.172148 -0.242274 -0.473092 0.005771 -0.183748 -0.077694 0.258955 -0.040708 0.172133 -0.228023 -0.240313 0.016268 -0.032595 0.309209 0.278292 -0.348579 0.022962 -0.004266 0.230369 0.308790 0.354409 0.428866 0.568437 0.390886 0.158381 -0.029880 0.202259 -0.040453 -0.102262 0.014247 0.259752 0.308912 0.309894 0.445520 0.177645 0.394360 0.320787 0.136309 0.508077 0.209200 0.828964 0.078278 -0.253716 0.012727 -0.004936 0.505092 0.765601 -0.397862 0.225900 0.263762 0.113333 -0.174015 -0.347001 0.163216 -0.148523 -0.288686 0.286096 0.027811 0.105870 -0.155886 0.595143 -0.222559 -0.696323 0.296558 0.127056 0.375569 0.220978 0.203438 0.138561 0.180300 -0.462205 0.432663 0.461344 0.388914 -0.319225 -0.206813 0.028230 0.186987 0.150824 0.462853 -0.289044 0.164327 0.280826 0.468829 0.109769 0.031862 -0.274364 -0.294580 0.241807 -0.145919 -0.048122 -0.011758 0.186681 -0.165870 -0.071978 -0.283841 -0.407044 +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 >&) = 2.022947 -0.020237 1.742425 -5.107787 -3.983514 -0.045921 1.637615 -3.885849 -1.440110 3.440606 1.878905 -2.925676 -2.856165 4.338714 -0.722423 -3.499085 0.620556 -2.734776 -0.667106 -0.814407 -1.523404 2.331834 -1.582218 -1.971490 1.170915 -0.629241 0.236461 3.586815 2.294741 -1.700486 -1.114969 -2.574248 0.299046 6.825983 2.321482 -0.721750 -1.548652 9.473794 -2.725132 4.454279 -6.786945 -4.380042 7.289615 -1.411926 -0.800547 -7.210345 -2.484143 4.163830 -2.512420 -1.747215 1.101095 -0.519488 1.463683 -3.602586 -1.247421 4.539163 -6.530029 3.698853 3.585602 -2.965431 -3.313472 -1.937608 0.206356 1.402860 -3.774572 -4.413311 1.053076 -0.483326 -2.522964 0.305655 -3.904012 -4.420668 5.906133 2.017244 -2.050098 0.867508 -1.260293 -3.718266 3.332560 -2.267195 -5.357258 -2.432487 0.522138 -1.578876 3.801732 0.277243 3.733550 -9.283512 0.772887 -9.581032 2.003311 -5.058423 3.698564 6.320552 -3.542885 4.179406 1.266413 0.853074 2.668194 -0.385105 4.575893 1.622880 2.834295 1.870189 4.291224 3.712248 -2.054636 -4.074723 -3.206104 -4.164602 0.708154 -0.933727 -8.553185 3.438179 -3.309879 -0.003475 -0.966825 0.570704 -1.224767 4.941736 -5.771906 -1.047463 1.927612 -1.708464 3.140570 5.596437 -0.861429 0.804199 -2.407520 4.145406 -0.811663 4.102973 -0.863275 4.874634 -1.636924 -5.735530 -4.945254 0.896803 2.860555 -4.497432 -6.262004 -6.860606 -1.592193 0.415287 -3.537203 4.773326 9.926312 -4.302165 -5.816246 5.741689 0.933577 0.890165 4.238515 0.894394 8.222515 -3.384612 -0.326488 -1.209752 -1.288558 1.160052 3.715675 -0.807942 -3.977845 3.819131 -2.025611 -4.101043 4.796950 0.685640 -2.411398 0.780288 0.271702 -2.447402 -5.384958 6.195030 -1.287362 6.129841 -1.152623 7.978735 -2.635856 -3.394980 2.410852 -2.884984 -0.817472 -3.488696 -0.651573 0.577178 3.879361 -3.922036 -3.667006 -2.019619 -1.819642 -2.654950 5.016388 -0.674574 0.048938 1.295181 0.428658 4.438709 5.489888 -1.444364 0.568562 -5.311881 3.257649 4.013887 0.956608 -6.506366 -2.197121 -2.093426 -2.178820 1.240823 0.178346 4.291756 -2.747129 -1.141910 1.989401 0.227450 1.223640 1.156056 -6.632456 2.420810 -0.643532 2.066255 1.841008 6.841178 4.360508 5.284716 1.962583 1.256004 -0.764300 -0.871132 -2.457255 0.107762 0.950430 1.387201 3.524342 4.482642 3.977241 2.795604 5.479050 2.277399 -0.375777 5.902127 0.415726 8.152227 -3.063444 -1.332527 0.970077 -0.313639 5.455464 8.119367 -0.505506 -2.687883 3.330693 -0.199073 -3.287819 -5.213148 -0.004525 -1.032177 -0.988044 3.840352 2.996806 -0.711452 -1.889709 8.848569 -1.377525 -9.858886 5.029059 1.987023 3.546394 2.882945 -0.567917 1.566497 3.576332 -2.236421 3.115618 4.601944 3.982983 -4.941746 -1.175011 0.805263 3.828473 2.123776 2.452196 -9.474041 0.746891 3.050145 6.745927 1.437785 5.170386 -3.907400 -0.781483 2.209207 -0.338622 0.573516 0.273216 3.013426 -3.173867 0.340344 -4.821263 -0.772965 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +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.510699 -0.881673 2.981900 -9.127795 -6.708077 -0.018843 2.923661 -6.783641 -2.332262 4.928467 3.577563 -5.234240 -4.647315 8.353882 -1.298604 -6.126772 1.482765 -1.365415 -0.885676 -0.780978 -1.996120 4.157794 -2.692079 -3.749466 2.064066 -1.678417 0.757276 6.948590 4.281983 -1.400144 -1.837394 -4.520703 0.522106 11.737901 3.823068 -0.018376 -3.084971 16.320191 -5.383548 9.867949 -12.062446 -6.965956 13.067056 -2.034487 -1.276415 -14.169111 -6.974207 6.230521 -4.825029 -3.641123 1.534435 -1.461114 3.294258 -6.216390 -1.453923 8.328811 -10.595558 4.709634 6.273646 -5.998984 -5.343955 -2.918263 0.020524 2.125499 -7.913588 -7.335990 0.994140 -0.460243 -3.452817 0.410071 -6.742752 -8.180054 11.499681 3.552551 -4.161609 1.730695 -1.843591 -7.399580 5.371551 -2.798738 -9.166943 -4.440277 0.925271 -2.464753 6.084364 0.697888 7.890667 -16.019751 0.671910 -16.653951 4.041161 -9.264079 6.654573 11.014627 -6.164361 7.671348 2.819462 1.614923 4.303559 0.886922 7.680775 3.806826 4.494231 2.554703 8.106517 6.499231 -3.762011 -8.080560 -5.973160 -7.065970 1.390897 -2.439012 -16.727499 5.207773 -5.886773 0.793185 -2.408442 1.135078 -1.448736 9.055383 -9.204681 0.448858 3.903595 -3.089668 4.833824 10.097983 -0.806681 0.990015 -4.228721 6.836098 -2.033470 6.821880 -1.725694 8.506236 -4.298896 -10.334552 -7.354881 1.305250 4.128196 -7.649155 -10.626442 -11.691814 -3.344683 2.655626 -5.582557 6.652022 17.367662 -7.552053 -10.303440 9.315683 2.789900 1.499165 6.863301 2.254342 14.722582 -6.256285 -0.136625 -3.189729 -2.092709 2.244680 7.859247 -1.486536 -7.377404 7.121284 -4.421701 -10.624749 11.348462 0.186760 -3.757976 1.341372 0.687040 -4.315434 -9.011191 11.703040 -3.519752 11.653856 -3.940633 14.009922 -4.911140 -5.790663 3.404618 -5.483153 -2.051126 -6.677810 -0.189339 0.945386 7.374094 -6.963188 -6.646357 -3.498475 -3.860188 -3.848798 8.957729 -2.671804 -0.630253 2.064212 -0.119946 7.967393 8.740764 -2.153994 0.584630 -8.884228 5.574694 6.732879 1.003339 -12.627050 -3.343765 -3.657826 -3.632495 -0.053940 0.538568 7.288828 -5.242230 -1.802610 2.599022 -0.559503 1.832641 1.283975 -11.568142 4.165476 -1.069104 4.104177 3.077358 11.543786 8.839375 9.324728 2.937156 2.930164 -1.126180 -2.188972 -5.079804 1.434609 2.218677 1.585343 5.685969 8.581186 6.349218 4.865018 9.139135 3.611298 1.373956 9.894307 1.456730 14.226280 -3.568244 -2.990954 2.261752 -0.787988 9.324120 14.215861 0.466052 -3.687321 5.487724 -0.459662 -6.066487 -9.906200 0.260673 -1.123466 -3.671881 8.892010 5.494557 -0.874806 -3.722892 15.431749 -1.881593 -17.464124 8.346867 3.340721 6.081875 5.380779 -1.024793 3.273130 6.766913 -2.238381 5.638285 7.399374 6.911107 -9.120819 -2.881602 1.266919 5.646930 6.559521 4.032770 -17.425027 1.862782 5.138586 12.307877 1.445668 9.995668 -6.402442 -0.304026 3.285996 -0.771077 0.561006 -0.810775 4.157619 -4.727497 -0.166640 -9.527353 -1.887663 +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.110719 -0.119578 0.555581 -0.892630 -1.071533 0.033313 -0.124515 -0.540834 -0.131708 -0.272234 0.441223 -0.454535 -0.630066 0.933365 -0.221919 -1.062793 -0.229223 0.169430 -0.174184 -0.251709 -0.080715 0.428586 -0.222615 -0.148757 0.219239 -0.371965 -0.062976 0.749290 0.766166 -0.236211 -0.096608 -0.420813 0.048540 1.184781 0.214146 0.340987 -0.020740 1.804754 -0.036129 0.796342 -1.133307 -0.922859 1.146413 -0.240902 -0.226263 -1.241744 -0.932943 0.575091 -1.240874 0.031485 0.438397 0.058040 0.224869 -0.469860 0.244806 0.618428 -1.396194 0.872564 0.467795 -0.676021 -0.268056 -0.227252 -0.558514 0.026209 -0.223197 -0.632816 0.016964 0.449391 -0.384692 0.017328 -0.075375 -0.790450 2.089284 0.220155 -0.420012 0.441178 0.430653 -0.518576 0.710332 -0.384416 -1.136538 -0.453619 0.278342 0.016550 0.952061 0.092895 0.618776 -1.638404 -0.053446 -1.678563 0.707827 -0.967458 0.539062 1.059761 -1.169638 0.792979 0.620596 -0.126324 0.550204 0.295623 0.937901 0.271966 0.361733 0.553582 0.677368 0.273202 -0.250145 -0.671936 -0.758449 -1.042811 0.001902 -0.431574 -2.069070 0.365195 -0.166756 0.519548 -0.242145 0.170835 0.160842 0.685164 -0.846976 0.382873 0.603738 -0.294003 0.345714 0.893503 -0.268441 0.043455 -0.434098 0.903482 -0.662919 0.581281 -0.174081 0.779281 0.158410 -1.266697 -1.275862 0.133251 0.291310 -0.642481 -1.014658 -0.790581 -0.270722 0.473684 -0.468563 0.498077 1.993030 -0.875349 -1.176760 1.171056 0.619369 0.397779 0.845710 0.443020 1.267400 -0.330977 -0.381763 -0.684783 -0.594286 0.287772 0.076622 0.201388 -0.631049 0.835094 0.040737 -1.232876 1.395710 -0.433469 -0.611369 0.023118 0.141600 -0.714746 -0.746745 1.162781 0.446206 1.222621 -0.135363 1.512245 -0.553554 -1.080625 0.224407 -0.398015 -0.128152 -0.510741 -0.047629 0.238651 0.479797 -0.936530 -0.718409 -0.372001 -0.472493 -0.459444 0.573923 0.401149 0.085699 0.325119 0.238655 0.520141 1.260502 0.086133 0.021455 -1.087581 0.531152 0.512643 -0.000528 -1.352168 -0.037364 -0.200943 -0.213914 0.232161 0.089266 0.581816 -0.201037 -0.172245 -0.113493 -0.369388 0.353659 0.236206 -0.864802 0.179640 0.001231 0.512011 0.409816 0.844769 1.476863 1.012301 0.605408 0.571178 0.011385 -0.121030 0.238292 0.027270 0.304966 0.420840 0.569315 1.011877 0.829299 0.363174 1.030917 0.804908 0.272482 1.071457 0.269032 1.805218 -0.318426 -0.344849 -0.029593 0.237758 1.081825 1.715123 -0.237398 0.198654 0.644434 0.524601 -0.136436 -1.321097 0.096107 -0.172089 -0.359427 1.166712 0.456673 -0.177624 -0.265334 1.317866 -0.122089 -1.479065 0.876294 0.307961 0.604499 0.116586 0.048737 -0.134967 0.683364 -0.689262 0.577606 0.718909 0.741949 -1.150648 -0.471687 0.087363 0.644932 0.496044 0.843805 -1.097921 0.060031 0.594255 1.067813 0.068634 0.515645 -0.716992 -0.738104 0.412629 -0.329560 -0.195293 0.172089 0.056063 -0.636268 0.082058 -0.551844 -0.986499 +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.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = -0.025544 -0.264140 0.311107 -0.603597 -0.628381 0.129523 -0.034146 -0.335370 -0.072251 -0.193799 0.264726 -0.187122 -0.239945 0.767871 -0.032561 -0.578157 -0.035790 0.020119 -0.014622 0.105912 -0.025557 0.396087 -0.188765 0.040927 0.126013 -0.162687 -0.114707 0.418238 0.254913 -0.135737 -0.172427 -0.317470 -0.175992 0.723693 0.191919 0.267397 0.025380 1.255666 -0.172872 0.906797 -0.624246 -0.519801 0.548652 -0.158018 -0.150839 -0.656400 -0.670153 0.315061 -0.514687 -0.161539 0.430267 -0.014533 0.126802 -0.119863 0.280483 0.287221 -0.817350 0.281371 0.298715 -0.263033 -0.043133 -0.205838 -0.394164 -0.025940 -0.449595 -0.343123 0.056284 0.243824 -0.156752 -0.065042 -0.034367 -0.557535 1.205825 0.299759 -0.328960 0.210059 0.399385 -0.495759 0.491053 -0.204348 -0.858800 -0.217330 -0.101654 -0.247550 0.742392 -0.026800 0.515795 -1.029426 0.258887 -1.114941 0.366483 -0.688152 0.283486 0.830870 -0.668415 0.412744 0.492530 0.389685 0.362058 0.164780 0.610066 0.351727 -0.030572 0.402945 0.575125 0.183547 -0.251436 -0.393578 -0.532327 -0.630814 0.087982 -0.415325 -1.268829 0.202042 0.059987 0.322615 -0.214197 0.272630 0.038729 0.440806 -0.645185 0.366886 0.326487 -0.181720 0.135100 0.568748 -0.212187 -0.019671 -0.396157 0.635859 -0.531391 0.463379 -0.172567 0.460486 -0.155112 -0.397224 -0.636589 0.058881 0.168739 -0.419012 -0.665163 -0.669237 -0.166599 0.465598 -0.286186 0.553922 1.273311 -0.638380 -0.615461 0.834051 0.442534 0.189036 0.435313 0.246443 0.614525 -0.081294 -0.361800 -0.502947 -0.451048 -0.048608 0.016072 0.258448 -0.277403 0.507084 -0.089435 -0.909770 1.359045 -0.267147 -0.520076 -0.125312 0.054614 -0.480293 -0.492906 0.848661 -0.034517 0.635939 -0.067658 0.911942 -0.151707 -0.442049 0.162680 -0.387482 -0.029276 -0.611731 -0.056024 0.090161 0.293360 -0.604884 -0.435911 -0.191243 -0.316451 -0.359151 0.239484 0.145411 0.075241 0.300850 0.273212 0.473835 0.879617 0.173995 -0.060825 -0.618856 0.383634 0.255516 -0.213847 -0.663774 0.036681 -0.132236 -0.113604 0.017531 0.062827 0.287506 -0.382039 -0.175779 -0.147269 -0.144926 0.215145 0.309461 -0.840402 0.071436 0.134455 0.379432 0.403386 0.395343 0.873501 0.698580 0.499227 0.332446 -0.029299 0.133755 -0.145656 0.046837 0.201423 0.288874 0.320558 0.665606 0.587450 0.246471 0.556701 0.580277 0.406821 0.632959 0.263778 1.144595 0.146755 -0.316646 0.012310 0.188179 0.668683 1.039532 -0.152437 0.403027 0.391376 0.260448 -0.247353 -0.659074 0.175158 -0.153155 -0.230644 0.576790 0.148583 -0.001485 -0.176302 0.787190 -0.142817 -0.972021 0.341478 0.201150 0.455271 0.291737 0.181769 0.125294 0.328608 -0.485007 0.660129 0.508205 0.425013 -0.612725 -0.242185 0.049611 0.208002 0.517899 0.650580 -0.552570 0.205516 0.249135 0.651335 0.009250 0.295426 -0.396215 -0.331818 0.309003 -0.348606 -0.149478 0.095733 0.104734 -0.242099 0.010942 -0.553287 -0.707259 +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.783263 -0.564376 1.683841 -4.326382 -3.380937 -0.079291 1.378655 -2.842224 -0.862375 1.758076 1.833538 -2.413135 -2.730030 4.932868 -0.699090 -3.189399 0.722526 -1.039099 -0.378253 -0.122054 -0.698117 2.372879 -1.153079 -1.417904 1.262109 -0.730689 -0.039902 3.671884 2.357298 -1.191645 -0.893521 -2.030916 0.073756 5.408477 1.481281 0.400219 -0.966253 8.207163 -3.069364 5.458019 -5.850099 -3.491667 6.447762 -0.970429 -0.944951 -6.861583 -3.745522 2.855061 -3.266420 -1.491933 1.319654 -0.426236 1.419903 -2.705597 -0.013706 3.835813 -6.032358 2.629408 2.801090 -2.555654 -2.084793 -1.513566 -0.766587 0.697471 -3.404280 -3.274510 0.380243 -0.179933 -1.882634 0.164418 -2.467769 -3.561001 6.329370 1.411176 -2.025669 1.139538 -0.185890 -3.507726 2.898948 -2.339467 -4.529644 -1.967909 0.482556 -0.674068 3.307178 0.355723 3.538737 -7.726163 -0.153589 -8.002592 2.356217 -4.777101 2.975966 5.325728 -3.606558 3.863576 1.548801 0.495357 2.364401 0.658395 3.796740 2.077985 2.302434 1.485521 3.957997 3.147319 -1.935748 -3.803411 -3.427182 -3.573834 0.565071 -1.311605 -8.392344 2.187712 -2.307575 0.935104 -0.811998 0.524701 -0.457523 4.288199 -4.100640 1.316499 1.889638 -1.319291 1.975868 5.050196 -0.544543 0.277881 -2.111515 3.591668 -1.463614 3.800777 -0.834382 3.938759 -1.751412 -5.578879 -3.579324 0.390948 1.544182 -3.561408 -4.836962 -5.927899 -1.330478 1.439191 -2.501943 3.014917 8.622323 -3.603336 -5.093341 4.824668 1.903304 1.078158 3.181907 1.039770 6.784830 -2.655627 -0.533275 -1.809080 -1.374160 0.926900 4.025425 -0.101281 -3.372100 3.149680 -1.615645 -6.417261 5.939941 0.164618 -2.011812 0.062791 0.183280 -2.588163 -4.489094 5.889273 -1.195968 5.576703 -2.031945 6.814555 -2.171965 -3.178945 1.732479 -2.747398 -0.716903 -3.546751 -0.550623 1.007844 3.258959 -3.617403 -3.010230 -2.331528 -1.646063 -2.057855 3.823891 -1.626422 -0.117225 0.999657 0.367885 3.767722 4.434986 -0.842344 0.474355 -4.613336 2.528184 3.096838 0.363747 -6.918982 -0.934064 -1.614969 -1.561999 0.251094 0.147161 3.081410 -2.367108 -1.063458 1.079016 -0.596764 0.910145 0.696857 -5.766764 1.558341 -0.294047 2.084323 1.867600 5.079787 4.811789 4.315043 1.570493 1.857298 -0.709589 -0.873832 -2.039639 0.628644 1.041374 0.663193 2.644570 4.447656 3.359356 2.055020 4.318712 2.309653 0.401628 4.726007 1.123892 7.033218 -1.223511 -1.556485 0.978504 0.029420 4.553622 6.836544 -0.224427 -1.105117 2.764276 0.339647 -2.481520 -4.746407 0.117317 -0.862312 -1.702787 5.067373 2.111199 -0.481471 -1.423618 7.110794 -0.967875 -8.335306 3.804632 1.463979 3.025627 2.005692 -0.111794 0.887607 3.393273 -1.910314 2.985184 3.294428 3.318709 -4.113088 -1.817840 0.495066 2.577785 3.841965 2.623000 -8.576309 0.636291 2.508800 5.673991 0.658006 4.855588 -2.831405 -0.703894 1.342901 -0.683712 -0.001641 -0.366888 1.411914 -2.253931 -0.028758 -4.424546 -1.659843 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = 0.157044 0.180558 0.481850 -0.767687 -0.757759 -0.107809 0.659507 -0.493912 -0.128079 0.575367 0.405736 -0.405718 -0.110022 0.799270 -0.150520 -0.329614 0.001491 -0.348794 -0.316551 -0.041582 0.068480 0.491345 -0.112981 -0.338776 0.148178 -0.116176 0.095403 0.628736 -0.216589 -0.031388 -0.015716 -0.341407 0.301549 0.909129 0.124798 0.057312 -0.357142 1.166114 -0.830800 0.947200 -1.068401 -0.785361 1.098142 -0.205025 -0.035265 -1.499489 -0.687318 0.517214 0.440168 -0.723627 0.010274 0.080761 0.277860 -0.630638 -0.120538 0.552742 -0.779094 0.049154 0.465412 -0.761065 -0.554086 -0.140041 -0.016962 0.300433 -0.915869 -0.590131 -0.015347 -0.077322 -0.054221 0.169815 -0.208500 -0.815117 1.188894 0.126406 -0.304821 0.256141 0.021305 -0.948072 0.723087 -0.070376 -0.620414 -0.341842 0.040040 -0.159854 0.395263 -0.118922 0.751112 -1.327665 0.064671 -1.181853 0.531466 -0.777536 0.331739 0.785692 -0.396058 0.601136 0.249032 0.553832 0.431548 0.157920 0.632153 0.590395 0.826920 0.281470 0.707606 0.701331 -0.533949 -0.882091 -0.760207 -0.817155 0.495027 -0.362550 -1.572234 0.378140 0.010130 -0.341007 -0.039578 -0.257251 0.211138 1.376667 -0.899739 0.406080 0.758277 -0.191930 -0.092062 0.703306 -0.147801 0.009952 -0.371156 0.557670 -0.207635 0.660975 0.149652 0.631589 -0.800079 -0.738381 -0.154448 0.178440 0.034350 -0.601636 -0.705072 -1.161108 -0.105159 0.649297 -0.455966 0.061351 1.402750 -0.587076 -1.046852 0.714555 1.035852 -0.467572 0.114266 0.220153 1.154435 -0.461151 -0.210634 -0.437155 -0.273712 0.445418 1.498593 -0.013814 -0.661435 0.698781 -0.464178 -1.969768 1.621560 -0.222275 -0.243102 0.543966 0.084969 -0.531338 -0.526525 0.897266 -0.068149 1.086678 -0.639658 1.070222 -0.422590 -0.347236 0.139713 -0.625580 -0.214690 -0.907930 0.084035 0.354798 0.715569 -0.525079 -0.469771 -0.255848 -0.661854 -0.280085 0.732242 -1.280478 0.083376 0.117456 -0.002481 0.462761 0.590603 -0.163528 -0.139938 -0.602680 0.448455 0.432825 0.249222 -1.222709 -0.371796 -0.430160 -0.216986 -0.320457 0.012644 0.615624 -0.268078 -0.061924 0.381884 -0.501569 -0.349752 -0.155572 -0.994548 0.180849 -0.131023 0.800320 -0.101753 0.903257 0.995539 0.775417 0.255383 0.305534 -0.028600 -0.286715 -0.879943 0.301746 0.143776 -0.170632 0.509575 1.019618 0.511675 0.405080 0.987450 0.399178 0.337474 0.889288 0.044883 1.114890 -0.213119 -0.266661 0.203176 0.226837 0.822256 1.196837 0.648111 -0.341734 0.344479 -0.039513 -0.726379 -0.332740 -0.077276 -0.068032 -0.210572 0.919000 0.642379 -0.222245 -0.112911 1.167381 -0.041108 -1.388143 0.439150 0.203923 0.581263 0.587151 -0.210663 0.550406 0.616978 0.239500 0.542449 0.552908 0.567590 -0.987448 -0.710058 0.135911 0.388880 0.787794 0.518615 -1.835989 0.134030 0.261800 0.967552 -0.441539 1.196592 -0.740814 0.241925 0.386909 0.161277 -0.089524 0.023274 0.268374 -0.513918 -0.100807 -1.218942 -0.038906 +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.056504 -0.071493 0.529940 -0.869416 -0.983759 -0.001196 0.093980 -0.505128 -0.124802 -0.073766 0.443709 -0.454723 -0.461019 0.996891 -0.187091 -0.832116 -0.148036 0.004903 -0.199177 -0.141945 -0.028121 0.485252 -0.197924 -0.149278 0.205889 -0.274352 -0.060353 0.715839 0.478691 -0.206647 -0.099632 -0.393799 0.072370 1.090166 0.183029 0.253849 -0.083389 1.659274 -0.356995 0.936548 -1.087252 -0.838482 1.090121 -0.217796 -0.193599 -1.296153 -0.950461 0.550871 -0.775331 -0.186644 0.382546 0.070400 0.216505 -0.462192 0.208935 0.603952 -1.252099 0.623411 0.472081 -0.633906 -0.285150 -0.205411 -0.436664 0.060931 -0.456676 -0.604969 0.014210 0.284611 -0.274963 0.025028 -0.096256 -0.803111 1.790423 0.213500 -0.386003 0.390315 0.358143 -0.675687 0.733313 -0.334369 -1.020759 -0.392415 0.161692 -0.098285 0.841200 0.017263 0.644482 -1.537348 0.006936 -1.539422 0.630771 -0.953473 0.451361 1.019717 -0.962589 0.716189 0.528849 0.105008 0.543925 0.283490 0.853420 0.395181 0.429419 0.492632 0.717893 0.399472 -0.346887 -0.700555 -0.783163 -0.982419 0.136369 -0.445363 -1.903054 0.359619 -0.074819 0.249027 -0.194251 0.080403 0.163470 0.865054 -0.817691 0.451727 0.628919 -0.261889 0.181371 0.880586 -0.247227 0.002979 -0.472483 0.820519 -0.561623 0.650142 -0.103849 0.717746 -0.139406 -1.100863 -0.948959 0.128686 0.200376 -0.625640 -0.923450 -0.930446 -0.202004 0.506232 -0.466416 0.431868 1.833097 -0.813384 -1.113971 1.082299 0.793745 0.179888 0.631290 0.361893 1.217707 -0.327652 -0.369938 -0.637265 -0.551939 0.264192 0.415670 0.187072 -0.602961 0.764496 -0.097105 -1.520623 1.575392 -0.364856 -0.542171 0.128103 0.146209 -0.668083 -0.705827 1.133687 0.271232 1.148551 -0.258190 1.373486 -0.461134 -0.854138 0.227097 -0.464688 -0.116250 -0.676266 -0.045162 0.261512 0.526333 -0.800010 -0.635508 -0.361730 -0.509438 -0.440981 0.562560 -0.062057 0.099216 0.285360 0.221313 0.480250 1.111246 0.044183 0.014150 -0.968708 0.514559 0.486905 0.027520 -1.333731 -0.066461 -0.257997 -0.204034 0.056801 0.057273 0.555631 -0.283623 -0.170588 -0.001687 -0.392542 0.172867 0.164615 -0.957343 0.172323 -0.043618 0.603744 0.331064 0.813285 1.343220 0.949835 0.541947 0.506996 -0.021773 -0.114115 -0.096360 0.110890 0.254077 0.254586 0.545728 1.017711 0.756038 0.365242 0.985997 0.707903 0.307634 1.004641 0.256916 1.614319 -0.171734 -0.349788 0.028984 0.236224 0.998312 1.573424 0.005959 0.102829 0.570258 0.377645 -0.312272 -1.043891 0.070671 -0.161007 -0.346836 1.094225 0.437295 -0.179200 -0.204852 1.246050 -0.124262 -1.444051 0.706208 0.273254 0.606416 0.242825 0.032836 0.070600 0.646289 -0.496419 0.624360 0.679919 0.684131 -1.060471 -0.547193 0.093838 0.531283 0.658333 0.791781 -1.310125 0.142362 0.489660 1.017380 -0.081395 0.683945 -0.695914 -0.482622 0.408942 -0.225193 -0.184471 0.124692 0.115351 -0.599979 0.038401 -0.743395 -0.776184 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.016298 -0.083382 0.342398 -0.690282 -0.843563 0.086775 -0.094172 -0.397479 -0.158307 -0.146348 0.301666 -0.197044 -0.410429 0.737989 -0.152624 -0.710366 -0.176863 -0.171163 -0.073747 -0.077730 -0.107696 0.442323 -0.219048 0.025988 0.184442 -0.191968 -0.196585 0.409170 0.430396 -0.361342 -0.108746 -0.356438 -0.115170 0.812188 0.199587 0.148168 0.014553 1.404611 -0.022045 0.508495 -0.798032 -0.673653 0.692319 -0.230899 -0.129461 -0.849901 -0.601811 0.437004 -0.648201 0.039208 0.422607 0.021579 0.086215 -0.201169 0.231189 0.318025 -1.032875 0.664018 0.395573 -0.366769 -0.106152 -0.191850 -0.416893 -0.077191 -0.108815 -0.437636 0.048908 0.323514 -0.240147 -0.085671 -0.017072 -0.521119 1.352979 0.252256 -0.261706 0.289543 0.313177 -0.400096 0.540801 -0.470788 -0.944995 -0.277616 0.092997 -0.070960 0.735911 0.040529 0.405770 -1.160110 0.154353 -1.252638 0.372170 -0.657537 0.333702 0.823933 -0.734401 0.505497 0.538341 -0.020291 0.512812 0.173253 0.723930 0.193727 0.140954 0.552002 0.417744 0.194115 -0.174611 -0.302492 -0.546401 -0.750006 0.014653 -0.228071 -1.315277 0.333821 0.020100 0.302485 -0.206525 0.197775 0.109278 0.446925 -0.652827 0.172314 0.384933 -0.207946 0.212963 0.637845 -0.205668 -0.020729 -0.443369 0.654762 -0.593514 0.561274 -0.147484 0.573727 0.119688 -0.846628 -0.951007 0.064217 0.192228 -0.515570 -0.689840 -0.595780 -0.109439 0.222665 -0.413393 0.522569 1.473350 -0.794227 -0.799313 0.978922 0.483397 0.259835 0.576600 0.268518 0.771628 -0.063730 -0.455183 -0.442565 -0.561002 0.051359 -0.194176 0.266685 -0.318707 0.529193 0.074615 -0.788905 1.018497 -0.246560 -0.603637 0.056628 0.125556 -0.524605 -0.561220 0.739810 0.430172 0.764199 0.107785 1.042685 -0.245895 -0.645542 0.185034 -0.253597 -0.021919 -0.406673 -0.071562 0.159313 0.225204 -0.614470 -0.451304 -0.227874 -0.335750 -0.496683 0.288728 0.340245 0.168713 0.367581 0.274674 0.327660 1.044348 0.136642 0.040262 -0.748306 0.443981 0.299128 -0.057647 -0.902519 -0.048365 -0.110928 -0.143407 0.323891 0.033732 0.412104 -0.124511 -0.117361 -0.067810 -0.167639 0.313202 0.337358 -0.513583 0.079586 -0.026653 0.407647 0.319246 0.524744 0.933601 0.824210 0.530851 0.451649 -0.038942 0.088566 0.256211 -0.090351 0.188173 0.354527 0.456921 0.659257 0.735261 0.332156 0.728244 0.608562 0.221026 0.793917 0.103868 1.384285 -0.265799 -0.307806 -0.078216 0.269334 0.782963 1.173667 -0.246690 0.245347 0.452267 0.314612 -0.132333 -0.818301 0.241705 -0.149385 -0.193663 0.645083 0.355222 -0.025432 -0.206277 0.898840 -0.209764 -1.041074 0.630047 0.237758 0.530566 0.068206 0.242464 -0.057476 0.421872 -0.617759 0.487458 0.661082 0.558360 -0.770834 -0.319507 0.088944 0.473950 0.210597 0.767897 -0.706558 0.123842 0.420289 0.639881 -0.006743 0.244624 -0.499655 -0.649979 0.421754 -0.237108 -0.145773 0.269851 0.086846 -0.423918 0.090175 -0.300942 -0.693439 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.070044 -0.172908 0.212067 -0.387124 -0.349549 0.094749 0.085432 -0.228807 -0.056093 0.025968 0.135507 -0.065818 -0.030958 0.570391 -0.033560 -0.244778 0.010019 -0.114391 -0.012470 0.143459 0.006273 0.310536 -0.121936 0.023520 0.073462 -0.069457 -0.052013 0.202706 -0.126096 -0.084410 -0.108222 -0.233697 -0.124455 0.437370 0.130261 0.193848 -0.059487 0.760820 -0.222917 0.753113 -0.449839 -0.377364 0.301760 -0.114771 -0.006392 -0.468725 -0.407323 0.193130 0.031866 -0.247900 0.224208 -0.018080 0.040824 -0.075378 0.158635 0.108324 -0.441908 0.025852 0.191506 -0.186740 -0.068381 -0.138298 -0.183042 -0.009013 -0.442588 -0.211789 0.035539 0.139640 -0.068041 0.002506 -0.025043 -0.371451 0.611948 0.221329 -0.199212 0.100037 0.237054 -0.377028 0.340168 -0.173936 -0.526100 -0.134121 -0.149219 -0.231113 0.411243 0.000486 0.404246 -0.644674 0.317262 -0.681748 0.209932 -0.428511 0.144222 0.527741 -0.266442 0.249377 0.325769 0.478919 0.251624 0.120525 0.355923 0.341612 -0.022799 0.261653 0.426136 0.177891 -0.221309 -0.283416 -0.359160 -0.384866 0.150904 -0.290053 -0.718983 0.126630 0.130023 0.117579 -0.160643 0.192007 0.040353 0.355250 -0.581795 0.240236 0.246893 -0.103164 0.006825 0.290093 -0.129798 -0.028637 -0.296470 0.369782 -0.340808 0.325205 -0.062899 0.285002 -0.308118 -0.103382 -0.242676 0.033567 0.056799 -0.283874 -0.395399 -0.554599 -0.100047 0.438851 -0.201727 0.406312 0.767168 -0.413147 -0.373214 0.494408 0.387654 -0.045090 0.165711 0.149989 0.329259 -0.030111 -0.261588 -0.284500 -0.269155 -0.028908 0.144721 0.172226 -0.168487 0.338273 -0.137172 -0.759573 1.034611 -0.177178 -0.324494 -0.067289 0.025595 -0.302772 -0.244708 0.505795 -0.179989 0.392462 -0.140467 0.529860 -0.060073 -0.108793 0.066302 -0.438424 -0.026008 -0.492933 0.020171 0.007520 0.245193 -0.389206 -0.255158 -0.072358 -0.306842 -0.218605 0.169022 -0.223809 0.060468 0.197498 0.162280 0.396947 0.498630 0.108987 -0.075757 -0.313339 0.254552 0.135259 -0.106629 -0.407774 -0.018375 -0.113308 -0.072593 -0.101243 0.043864 0.169299 -0.298154 -0.081865 -0.046096 -0.113773 0.025086 0.175162 -0.503622 0.000525 0.090852 0.344439 0.203522 0.244090 0.493521 0.450317 0.299889 0.178191 -0.047398 0.070007 -0.273021 0.089438 0.134400 0.089540 0.193080 0.436911 0.364493 0.179319 0.365805 0.353521 0.329841 0.396000 0.125543 0.662055 0.099192 -0.199877 0.035458 0.159509 0.405409 0.588644 -0.014615 0.267089 0.215835 0.039457 -0.279705 -0.184912 0.125944 -0.087341 -0.152766 0.309149 0.160514 0.029440 -0.100129 0.492073 -0.092756 -0.631751 0.133094 0.126168 0.316913 0.304700 0.120974 0.226898 0.195976 -0.167479 0.450836 0.326901 0.256586 -0.390921 -0.209027 0.040023 0.076344 0.457204 0.422772 -0.428856 0.207585 0.113288 0.402752 -0.130714 0.250775 -0.268965 -0.068781 0.216665 -0.183784 -0.099101 0.100888 0.121287 -0.066903 -0.046074 -0.482505 -0.349033 +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.457454 -0.351024 0.483727 -3.116266 -3.098400 0.945171 -1.153041 -2.162657 -0.759423 0.760801 1.205756 -0.920009 -0.924838 2.685527 -0.450269 -2.487155 -0.172834 -2.540686 0.104716 0.060963 -0.876351 1.700470 -1.252976 -0.108548 0.423502 -0.202534 -0.932628 0.901764 2.028176 -1.807258 -1.677352 -1.368817 -1.117674 3.744150 1.675877 -1.276474 0.554279 6.079717 0.031274 0.875043 -2.693575 -2.376903 2.483754 -0.912906 -0.859407 -1.772426 -1.205927 2.040454 -1.744839 0.259809 1.994393 -0.624445 0.409518 -0.497591 0.093702 1.435805 -4.280159 3.068843 1.852804 0.166134 -0.576587 -1.483341 -0.179586 0.344093 -0.840241 -2.064826 1.351464 0.981442 -1.305583 -0.881036 -1.380429 -2.708302 4.075014 1.843329 -1.246091 0.271555 0.235183 -2.591373 2.094206 -1.968869 -4.310618 -0.601520 -0.294413 -1.643494 3.692281 -0.424786 1.638506 -5.046707 1.923240 -5.860911 0.410594 -2.534356 1.835958 4.073648 -3.205590 1.058824 1.584900 1.823156 2.427827 -0.470200 3.378146 0.601667 -0.183384 1.800844 1.690875 1.258102 -0.576322 -0.278435 -1.313263 -2.664423 -0.412487 -0.513354 -4.856609 2.113480 -1.013069 0.536044 -0.928343 0.929923 -0.986538 2.065904 -3.216699 -2.069095 0.106737 -0.875130 1.966472 2.991808 -1.047527 0.529500 -1.882529 3.065308 -1.459797 1.867251 -1.032671 2.309459 -0.333424 -2.253029 -4.576349 0.760359 2.081338 -2.783662 -3.729328 -3.075337 -0.531200 -0.869948 -1.896015 4.630193 5.868444 -3.130055 -2.939755 4.483255 0.083446 0.999943 3.837321 0.220163 3.437606 -0.871079 -1.036331 -0.956376 -1.636022 -1.207476 -2.332589 0.501323 -0.568170 1.419956 -0.147143 0.255468 2.926850 0.543897 -2.707006 -0.351561 0.322923 -1.812434 -3.218069 3.344719 0.669450 2.124999 1.921451 4.604471 -0.799115 -2.198192 1.762987 -0.478787 0.079623 -1.563164 -0.954465 0.184173 1.397536 -2.036765 -1.785174 -0.275065 -0.273867 -2.544557 1.454550 3.521285 0.907106 1.708808 1.241963 1.984861 4.879912 0.125595 0.556385 -2.941864 1.945443 2.334408 -1.108329 -2.204927 -0.869709 -1.067881 -0.665336 2.058606 -0.083174 2.125143 -1.888468 -1.379229 0.054186 1.113425 2.405159 2.134529 -3.909836 1.341256 -0.675058 0.851333 1.777406 2.748667 2.272037 3.622763 2.454028 0.380501 -0.159175 0.802728 0.639985 -1.108221 0.682883 2.159908 2.096732 2.781114 2.863552 1.731569 2.444500 2.284538 0.207350 3.346135 0.128492 5.650853 -1.287757 -0.824942 -0.674096 0.094880 3.362715 5.402550 -2.064537 0.309363 1.735594 0.796156 -1.008703 -3.605497 1.076929 -0.999519 0.341608 -0.170612 0.881249 0.298398 -1.329751 4.251720 -1.011907 -4.672015 2.886397 1.154237 2.263404 1.335658 0.702229 0.284581 0.998549 -3.311948 2.881834 3.473505 2.208581 -2.161379 -0.011177 0.420206 2.482970 -1.215829 2.706704 -1.787915 1.663609 1.879002 2.730120 1.738655 0.630303 -2.113540 -2.326521 1.854011 -1.059828 0.050631 1.063077 1.804882 -2.382869 1.038386 -1.077688 -2.248538 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.402705 -0.848409 0.671198 -1.448506 -1.237732 0.871763 -0.681926 -1.126994 -0.196657 0.069493 0.578962 0.273858 0.381502 1.137298 0.049349 -0.929849 -0.039285 -0.674269 0.218654 -0.036943 -0.195247 0.733062 -0.681278 0.138193 0.029482 -0.651368 -0.101593 0.603110 -0.233430 -0.293111 -0.375934 -0.880112 -1.150310 1.661696 0.898626 0.106695 0.170309 2.860724 -0.157384 0.917057 -0.825307 -1.398085 0.943585 -0.504322 -0.445112 0.071979 -0.843533 0.506270 -0.060994 -0.173049 0.976289 -0.461315 0.670952 0.068547 0.117546 -0.153494 -1.235541 -0.194501 0.603041 -0.679967 -0.683794 -0.657788 -0.131753 0.310424 -1.350440 -0.654123 1.033471 0.848783 0.133926 -0.537714 -0.106525 -1.536729 1.833321 0.993583 -0.162191 0.087273 0.811196 -1.318776 1.111525 0.670395 -2.324526 -0.492564 -0.761038 -2.176259 1.789302 -0.470158 1.665449 -2.215616 1.784136 -2.716993 0.256793 -0.854990 0.681591 1.742887 -1.322275 0.615372 1.458576 2.721799 0.536670 -0.638154 1.485477 0.537457 -0.727663 1.360609 1.548645 0.278541 -0.540982 -0.328132 -1.288364 -1.322063 0.431827 -1.421374 -2.211629 0.881158 0.058076 -0.352544 -1.004742 0.712684 -0.381771 1.776913 -1.761378 0.415157 0.364089 -0.402500 0.080111 0.727188 -0.521894 0.095892 -0.575811 1.336710 -1.646071 0.728394 -0.422894 1.095151 -0.378699 0.822315 -1.473759 0.481159 0.833575 -1.334429 -1.536237 -1.154530 -0.552098 1.045471 -0.606983 2.713955 2.838410 -1.752325 -1.408985 1.801319 0.550565 -0.173404 1.287628 0.579993 0.869675 -0.001724 -1.087870 -1.408437 -1.036035 -0.311586 -1.202109 0.604540 0.330145 1.441793 -0.147646 0.323425 3.858238 -0.578260 -1.484758 -0.030353 0.553458 -1.004606 -1.263606 1.460144 0.312199 0.959462 1.072677 2.045344 -0.183477 -0.339249 0.247912 -0.883025 -0.256881 -1.384601 -0.013887 -0.455441 0.749145 -0.555437 -0.974636 -0.466392 -0.793154 -0.787857 0.463328 1.522752 0.848661 1.059839 0.438852 0.852254 2.558125 0.796235 -0.637365 -1.041658 0.923595 1.102891 -0.657491 -0.031849 -0.648684 -0.301191 -0.156910 -0.017141 0.282762 1.328833 -1.506378 -0.229883 -0.586382 0.785097 0.525581 1.211108 -3.230886 0.477732 0.318953 0.739546 0.912484 0.816215 1.510759 1.939230 1.439888 0.332135 -0.102529 0.687009 -0.531016 -0.487417 0.513562 1.496225 0.762811 1.836469 1.423553 1.171534 1.128175 1.455186 1.482148 1.415314 -0.162717 2.815525 0.056614 -0.444300 -0.463685 0.798084 1.547332 2.280301 -0.007711 1.122852 0.677735 0.505157 -1.042954 -1.791804 0.913047 -0.335756 0.897039 -0.390586 0.843868 0.348631 -0.877522 1.791608 -0.126237 -2.280590 0.750780 0.545959 1.193780 1.338294 0.377786 0.611457 0.209939 -1.061256 2.076781 1.626695 0.730283 -1.451984 0.640888 0.380458 0.918617 -0.225840 1.590331 -0.517260 1.553341 0.080301 0.927839 0.204870 0.585557 -1.212309 -0.425772 1.063580 -1.152035 -0.009646 1.225040 0.751080 -0.895279 0.668195 -1.464896 -1.324934 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = -0.089452 -0.233113 0.169948 -0.382013 -0.299069 0.030872 0.145911 -0.148211 -0.069365 -0.231464 0.159814 -0.107391 -0.182830 0.464342 0.111696 -0.371799 0.022584 0.013772 -0.078952 0.156691 -0.014260 0.260686 -0.093784 0.004643 0.146225 -0.069223 -0.099266 0.342861 0.089688 -0.144690 -0.027690 -0.190254 -0.092321 0.447040 0.056048 0.277975 -0.015236 0.794006 -0.158865 0.703545 -0.324432 -0.291287 0.431794 -0.134275 -0.182612 -0.400618 -0.429487 0.220258 -0.263591 -0.255427 0.224606 0.051235 0.051146 -0.161227 0.152246 0.254886 -0.481228 0.038198 0.213960 -0.200380 -0.094658 -0.107452 -0.291913 -0.096782 -0.378713 -0.230312 -0.013540 -0.013141 -0.086760 -0.048509 0.001085 -0.321720 0.828121 0.203996 -0.138276 0.203828 0.230741 -0.275656 0.321087 0.038344 -0.484219 -0.175219 -0.084587 -0.188111 0.478935 -0.071133 0.315167 -0.640386 0.132161 -0.646229 0.240930 -0.464213 0.156195 0.542298 -0.367823 0.351581 0.280653 0.252516 0.050897 0.096697 0.380450 0.175229 -0.014348 0.289490 0.415317 0.066217 -0.237430 -0.346784 -0.395139 -0.387815 0.181369 -0.330855 -0.783896 0.136201 0.058806 0.169004 -0.064867 0.208601 0.061443 0.268477 -0.339193 0.450687 0.275719 -0.121620 0.016053 0.379458 -0.112213 -0.117518 -0.272362 0.371561 -0.306805 0.369212 -0.093366 0.310537 -0.041533 -0.132663 -0.155759 -0.036463 0.028356 -0.245461 -0.379718 -0.413754 -0.086393 0.393415 -0.200864 0.298847 0.806733 -0.397469 -0.356378 0.524993 0.389784 0.184308 0.081409 0.174099 0.366905 -0.036547 -0.284486 -0.306299 -0.292886 0.077220 0.089905 0.165878 -0.232777 0.341556 -0.114869 -0.693623 1.109018 -0.187480 -0.277175 0.087519 0.018282 -0.332542 -0.394503 0.559652 0.057678 0.487297 -0.055602 0.557696 -0.032652 -0.184792 0.111339 -0.159161 -0.060307 -0.559214 -0.067792 0.045176 0.115033 -0.347030 -0.275354 -0.176095 -0.199901 -0.225501 0.181349 -0.014836 0.052165 0.145132 0.162534 0.203607 0.470061 0.049223 -0.115032 -0.427455 0.241141 0.114075 -0.112163 -0.342226 0.046602 -0.029825 -0.091397 0.014819 0.034429 0.174194 -0.236936 -0.063844 -0.017468 -0.076494 -0.002414 0.131964 -0.649564 -0.021349 0.204003 0.216296 0.281743 0.267907 0.604141 0.377785 0.224043 0.281393 -0.043046 0.174926 -0.353673 -0.002555 -0.029602 0.288861 0.221652 0.357939 0.394243 0.176595 0.394788 0.349217 0.313091 0.410095 0.265144 0.712723 0.268666 -0.319045 0.119972 0.147873 0.425101 0.539660 -0.048148 0.260633 0.282683 0.172956 -0.239085 -0.380251 0.074414 -0.092758 -0.174743 0.485131 0.015365 -0.007627 -0.060838 0.506564 -0.125977 -0.665549 0.148222 0.139916 0.337527 0.191188 0.140154 0.189839 0.273564 -0.246927 0.384072 0.274410 0.264047 -0.416955 -0.079084 0.047898 0.077441 0.376418 0.425655 -0.382141 0.069392 0.034347 0.417407 -0.064274 0.205552 -0.191348 -0.086046 0.173020 -0.179659 -0.070363 0.022236 0.015081 -0.093743 -0.079170 -0.541572 -0.357792 +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 >&) = 1.111073 -0.105146 1.789177 -4.321480 -4.316133 0.301704 -0.052699 -3.216396 -1.021599 1.392023 1.904394 -2.136488 -1.872420 4.201094 -1.166959 -3.377333 -0.263680 -1.351114 -0.472717 -1.088738 -0.793528 2.189828 -1.325046 -1.129436 0.851680 -1.116467 -0.234197 2.783744 2.364288 -1.380245 -0.904228 -2.076304 -0.036814 5.546805 1.749224 -0.353941 -0.645356 8.140948 -1.474031 2.858299 -5.520769 -3.881362 5.451213 -1.154276 -0.705789 -5.757730 -3.435308 2.882251 -2.852810 -0.331026 1.365561 -0.472272 1.162181 -2.252582 -0.155561 3.033244 -5.842294 3.545422 2.684226 -2.604801 -2.030297 -1.411158 -0.591986 0.662199 -2.122701 -3.281709 0.872155 1.196495 -1.594779 -0.047776 -1.946574 -3.894365 6.439475 1.461734 -1.654838 1.056127 0.111458 -3.338613 3.029784 -1.999262 -5.034955 -1.880702 0.707385 -1.175149 3.621608 0.192384 3.198837 -7.632769 0.746159 -8.083076 1.940285 -4.093723 2.830759 5.023187 -4.128155 3.153996 2.072724 0.820418 2.923172 0.492407 4.202307 1.433710 1.746593 2.134548 3.261912 2.469917 -1.169522 -2.559505 -2.856059 -4.063252 0.218103 -1.209723 -8.106653 2.547426 -1.864552 0.332113 -1.414089 0.490878 -0.250480 4.309899 -4.364455 -0.332652 1.962214 -1.371659 1.914640 4.337603 -0.929148 0.506612 -2.307630 3.688346 -1.966199 2.982476 -0.807986 3.787455 -0.967233 -5.480573 -5.341854 0.824735 1.930394 -3.778607 -4.991189 -4.717009 -1.198929 0.702063 -2.655050 3.752137 8.669191 -4.101643 -5.309595 5.212744 2.054208 0.700588 4.221918 1.215542 6.465969 -2.143281 -1.018538 -2.013062 -1.975698 0.713439 0.823138 0.027605 -2.559058 3.231525 -0.694855 -4.215332 5.521537 -0.504166 -2.667416 0.573697 0.755384 -2.461249 -3.969010 5.057438 0.745058 5.104884 -0.390856 6.752966 -2.307292 -3.708982 1.573881 -2.110076 -0.634313 -2.225324 -0.190030 0.504295 2.994616 -3.251363 -3.079587 -1.390100 -1.955345 -2.370743 3.362219 1.103020 0.609599 1.603389 0.614524 2.746407 5.518312 -0.310226 0.579042 -4.450814 2.645702 3.410573 0.374594 -5.948523 -1.299782 -1.576753 -1.283563 0.805263 0.240595 3.469995 -1.899181 -0.927995 0.473843 -0.354424 1.664163 1.270044 -4.675898 1.803020 -1.101113 2.182263 1.450579 4.799915 4.828812 4.801772 2.350239 1.523088 -0.313849 -0.792412 -0.049921 0.041615 1.375459 1.409053 2.860844 4.571813 3.588876 2.374501 4.497641 2.650177 0.689907 4.983316 0.329173 7.759436 -2.479745 -1.071694 -0.136581 0.422844 4.846607 7.671792 -0.371618 -0.893338 2.594061 0.810774 -1.908894 -5.402684 0.557026 -0.703664 -0.962318 3.363091 2.661013 -0.462837 -1.689921 6.769532 -0.757171 -7.470990 4.410687 1.572497 2.893398 1.577917 -0.023341 0.445050 2.900098 -2.408117 2.769143 4.025443 3.420137 -4.626627 -1.722546 0.597039 3.458752 1.512943 3.140731 -6.591840 1.545840 2.875563 4.968940 0.604313 3.276728 -3.449332 -2.149047 2.104524 -0.731335 -0.203968 1.046207 1.698336 -3.300406 0.726025 -2.952980 -2.418854 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.070906 0.124747 0.417127 -0.613133 -0.685360 -0.091275 0.381629 -0.209962 -0.122610 0.111391 0.268592 -0.209064 -0.251255 0.722180 -0.122001 -0.384592 -0.124740 -0.548862 -0.257835 -0.085381 -0.035297 0.473892 -0.113070 0.018854 0.245821 -0.081862 -0.173723 0.450712 -0.000700 -0.462302 0.032728 -0.238865 0.046241 0.650074 -0.020858 -0.016507 -0.059981 1.159788 -0.459012 0.455706 -0.658240 -0.600103 0.710752 -0.207234 -0.146598 -0.958815 -0.569977 0.443787 0.015848 -0.217934 0.263911 0.197082 -0.045978 -0.333664 0.144003 0.381645 -0.932280 0.356959 0.355693 -0.355964 -0.273784 -0.104803 -0.220811 -0.110550 -0.271540 -0.413946 0.072237 -0.004327 -0.156250 0.031291 0.056891 -0.470843 0.945945 0.153018 -0.043791 0.364257 0.245535 -0.519998 0.621454 -0.361807 -0.626837 -0.224517 0.082823 -0.218077 0.557524 -0.123439 0.272665 -0.970868 0.103859 -0.893864 0.274331 -0.676104 0.167258 0.676187 -0.391791 0.548132 0.314170 0.104213 0.352197 0.116986 0.631944 0.266193 0.477920 0.506272 0.405771 0.306894 -0.341311 -0.381662 -0.676920 -0.695430 0.228785 -0.220146 -1.013506 0.330735 0.167275 -0.258305 0.012797 -0.026607 0.175282 0.744413 -0.540576 0.362084 0.542287 -0.155963 -0.130853 0.627314 -0.180855 -0.159313 -0.462291 0.524835 -0.368048 0.688967 0.033232 0.436560 -0.105202 -0.723624 -0.408906 -0.033028 -0.028000 -0.426218 -0.497052 -0.662276 0.018149 0.207896 -0.412010 0.343742 1.267974 -0.583871 -0.753709 0.816022 0.884749 0.043676 0.177953 0.174862 0.756869 -0.086990 -0.458909 -0.352375 -0.437721 0.228584 0.232616 0.245800 -0.276992 0.433447 0.003287 -1.101680 1.241628 -0.238110 -0.364377 0.487196 0.189249 -0.478581 -0.572589 0.667545 0.602667 0.836189 0.021975 0.856555 -0.156871 -0.408831 0.174223 -0.201561 0.039786 -0.669838 -0.073806 0.178644 0.234324 -0.316238 -0.333328 -0.320830 -0.420777 -0.411504 0.265976 -0.325529 0.277818 0.177066 0.246363 0.028313 0.774397 -0.012525 0.063883 -0.743003 0.357476 0.244086 0.144960 -0.904656 -0.023574 -0.096278 -0.129253 0.155349 -0.039430 0.347635 -0.083239 -0.080809 0.180956 -0.242012 -0.121812 0.069939 -0.633926 -0.005617 -0.147096 0.527294 0.118780 0.490071 0.929574 0.588261 0.347483 0.390224 -0.057592 0.051538 -0.216881 -0.040282 -0.036280 0.223055 0.430099 0.630130 0.599861 0.293870 0.722033 0.464719 0.097618 0.701352 0.118072 1.143649 -0.163891 -0.343656 -0.014533 0.296373 0.640702 0.913329 0.207433 -0.021354 0.403136 0.271822 -0.328408 -0.522791 0.070183 -0.148201 -0.083753 0.649524 0.313754 -0.216370 0.031848 0.763738 -0.181156 -0.978590 0.379282 0.162559 0.490808 0.087943 0.180019 0.149895 0.511985 -0.353845 0.358472 0.476351 0.459677 -0.707703 -0.391097 0.114735 0.431216 0.181105 0.666884 -1.177339 0.161502 0.232528 0.499870 -0.253244 0.536048 -0.446700 -0.345343 0.404186 -0.007335 -0.178054 0.346518 0.141155 -0.529674 0.063868 -0.596560 -0.323723 +PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = -0.019219 0.063626 0.260693 -0.372782 -0.391634 -0.095939 0.399338 -0.079795 -0.063618 -0.031550 0.200223 -0.184838 -0.227546 0.522272 -0.011817 -0.230992 -0.017499 -0.282049 -0.196261 0.067999 0.016965 0.307485 -0.039977 0.011312 0.164031 0.017894 -0.122715 0.350757 -0.006753 -0.268850 -0.011753 -0.122331 0.087700 0.382650 -0.054552 0.072933 -0.053281 0.694637 -0.423829 0.545674 -0.419334 -0.288387 0.454295 -0.108676 -0.121003 -0.764623 -0.465904 0.288891 -0.007313 -0.284722 0.194718 0.155194 -0.041050 -0.222391 0.148677 0.357423 -0.592563 0.162263 0.229978 -0.186700 -0.086095 -0.039117 -0.213660 -0.104832 -0.244919 -0.254934 -0.042554 -0.125086 -0.093794 0.042152 0.022466 -0.304423 0.675453 0.083901 -0.085453 0.243926 0.177953 -0.368257 0.400452 -0.228584 -0.338356 -0.121063 0.015708 -0.022240 0.358180 -0.098552 0.129261 -0.589936 -0.063771 -0.515777 0.222879 -0.517943 0.069487 0.436608 -0.213776 0.343322 0.153551 -0.032492 0.174515 0.164255 0.356829 0.224414 0.340473 0.241054 0.304790 0.198211 -0.273101 -0.339703 -0.452999 -0.429775 0.190806 -0.142499 -0.689469 0.146640 0.143912 -0.101050 0.073135 -0.018166 0.165729 0.412612 -0.242902 0.415719 0.385576 -0.091064 -0.103762 0.482465 -0.109846 -0.130538 -0.326633 0.330314 -0.171877 0.507221 0.018520 0.244488 -0.115822 -0.528283 -0.099633 -0.053615 -0.072452 -0.206313 -0.292151 -0.489730 0.050907 0.197017 -0.248224 0.026927 0.756156 -0.320164 -0.423277 0.493260 0.689773 0.059204 -0.024555 0.092961 0.506336 -0.075451 -0.259089 -0.210372 -0.277729 0.132364 0.383321 0.152516 -0.259268 0.242710 -0.066750 -1.082844 0.906149 -0.148621 -0.188703 0.373760 0.048191 -0.300687 -0.373896 0.495836 0.303374 0.539919 -0.120222 0.502266 -0.062455 -0.232602 0.120649 -0.073472 0.046667 -0.540763 -0.088284 0.201005 0.133487 -0.244384 -0.195931 -0.222218 -0.245806 -0.242031 0.168977 -0.445171 0.097273 0.067156 0.176504 -0.009095 0.391175 -0.043379 0.052618 -0.468625 0.219432 0.065765 0.074556 -0.654834 0.068295 -0.077605 -0.080243 0.036808 -0.040104 0.140272 -0.047772 -0.079149 0.168165 -0.272590 -0.150923 -0.003081 -0.389440 -0.060824 -0.021820 0.336160 0.097898 0.292908 0.610184 0.319671 0.180451 0.277796 -0.040487 0.067764 -0.329308 0.034661 -0.078518 0.070046 0.247469 0.330823 0.339213 0.113732 0.441614 0.256963 0.094249 0.410298 0.227264 0.624119 0.110043 -0.280815 0.095325 0.134943 0.374800 0.510661 0.162581 0.004012 0.251255 0.159357 -0.231852 -0.234608 -0.013122 -0.098385 -0.216313 0.617894 0.098827 -0.142360 0.068804 0.462358 -0.140537 -0.615107 0.132053 0.085333 0.298550 0.080491 0.117979 0.170550 0.343990 -0.167666 0.232365 0.225891 0.297649 -0.402991 -0.354633 0.044479 0.125780 0.337854 0.390273 -0.850213 -0.013693 0.106514 0.377344 -0.204613 0.389183 -0.234575 -0.111922 0.201900 0.025014 -0.123621 0.059839 0.054359 -0.253883 -0.082567 -0.498158 -0.170347 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 1.255635 -2.206280 2.096025 -4.766354 -4.493019 2.269305 -1.773809 -3.891853 -0.838638 1.717084 1.804796 0.033489 0.465071 3.984481 -0.197902 -3.055809 -0.209219 -2.022501 0.798650 -0.482151 -0.770580 2.666359 -2.179360 0.153044 0.205326 -1.943526 -0.268178 2.096459 -0.036874 -0.539112 -1.009496 -3.041499 -3.001531 5.642568 3.041195 0.030714 -0.027892 9.242351 -1.321679 3.423057 -3.813913 -4.810967 3.648935 -1.485480 -0.928096 -1.115762 -2.558092 2.102588 -0.776078 -0.620664 2.880980 -1.323584 2.475038 -0.218097 0.236658 0.001707 -4.306470 0.403617 2.242063 -2.717684 -2.189236 -2.051123 -0.583405 1.583912 -4.505115 -2.507368 2.645222 2.420670 0.112004 -1.525385 -0.836310 -4.738852 5.399517 2.935263 -1.234645 0.199894 1.943758 -4.202895 3.587309 0.876971 -7.367044 -1.748916 -2.067736 -6.096217 5.134901 -0.834120 5.447440 -7.586592 4.980582 -9.047115 1.196196 -2.852577 2.451775 5.805053 -4.163603 2.206281 4.222412 7.412812 2.701246 -2.002169 4.571704 2.056417 -1.286810 4.180557 4.637904 1.961939 -1.857684 -1.569253 -3.979356 -4.202903 1.223791 -4.068082 -7.079241 2.909619 -0.169481 -0.824921 -2.871106 1.675024 -1.472927 5.933945 -6.005676 0.485016 1.221451 -1.355030 0.798979 2.664848 -1.540585 0.574943 -1.809235 4.335308 -4.758157 2.665374 -1.178882 3.998663 -1.772031 1.296093 -5.169093 1.782194 2.741667 -4.412344 -5.110911 -4.630939 -1.809197 2.770590 -2.256226 7.915209 9.280753 -5.681515 -4.889206 5.878919 1.025957 -0.835887 4.198203 1.675711 3.413490 -0.382171 -3.144576 -4.283936 -3.289338 -0.723557 -1.024254 1.707266 0.025802 4.608662 -0.814349 0.102351 9.868100 -1.256518 -4.710811 -1.260890 1.621840 -3.104692 -3.637536 4.721567 -0.779467 3.125833 1.978946 6.653570 -0.963569 -1.646153 1.048458 -3.781084 -0.941368 -3.985438 -0.073994 -0.718136 2.710278 -2.498684 -3.117277 -1.593581 -2.476525 -2.792401 1.972041 3.109221 2.062877 3.310485 1.435883 4.034465 7.839865 2.152453 -1.680098 -3.278897 3.189155 3.519576 -1.552337 -1.668552 -2.336544 -1.274956 -0.894096 0.116749 0.780911 4.358445 -4.512136 -0.649428 -1.354027 1.846451 1.803917 3.660879 -9.621010 2.023444 0.729171 2.761143 2.790972 3.289872 4.372633 6.371668 4.431356 1.308050 -0.594390 1.337350 -1.305856 -0.743832 2.229456 3.288966 2.713082 6.090385 4.663980 3.603968 4.063030 4.442605 3.741540 4.827079 -1.034238 8.758239 -0.768778 -1.153628 -1.102973 2.352060 4.976811 7.655360 0.043478 2.375305 2.430510 0.860054 -3.271073 -5.168921 2.754068 -1.119050 2.523901 -0.531886 3.165794 0.798651 -2.739244 6.171476 -0.652170 -7.641264 3.101059 1.896006 3.915503 4.005079 0.952522 1.745450 0.875223 -3.281050 6.399421 5.490038 2.526563 -4.783971 1.091711 1.117701 2.985676 0.783189 4.843247 -3.391710 3.913649 0.959426 3.663071 0.629109 2.821099 -4.126089 -1.621167 3.460931 -3.199917 -0.003796 3.084094 2.348731 -2.806547 2.244312 -4.228509 -3.866895 +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.816988 -0.240585 0.911558 -3.310104 -3.382604 0.315561 -0.531711 -2.379763 -0.764765 0.538890 1.472851 -1.769542 -1.686845 3.470730 -0.822784 -2.828866 -0.047240 -0.862456 -0.168157 -0.260664 -0.771800 1.727851 -1.093512 -0.536869 0.658635 -0.432621 -0.582220 1.688009 2.605910 -1.546713 -1.318414 -1.484096 -0.282262 4.182181 1.396122 -0.376222 -0.155709 6.332003 -0.326550 2.292835 -4.147002 -2.302664 3.599878 -0.886108 -0.530577 -4.207628 -2.562888 2.307839 -2.759553 -0.097881 1.443996 -0.471432 0.589100 -1.393336 0.223637 2.342134 -4.620760 3.375630 2.251898 -1.104798 -0.820063 -1.160148 -0.592679 0.274936 -1.217278 -2.479713 0.565142 0.998582 -1.558376 -0.299906 -1.659355 -2.981385 5.053145 1.259950 -1.765960 0.739569 0.057467 -2.465143 2.169033 -2.297106 -4.062615 -1.142451 0.568811 -0.422730 3.142093 0.137256 2.061795 -5.824435 0.639720 -6.364524 1.315869 -3.268054 2.257029 4.168981 -3.467218 1.945456 1.528312 0.062641 2.612349 0.783031 3.301420 0.931337 0.706980 1.359100 2.221559 1.614772 -0.569315 -1.518681 -1.617185 -3.105423 -0.319443 -0.382103 -6.068115 1.948283 -1.573564 1.343186 -1.033861 0.879301 -0.269154 2.339424 -2.995097 -0.953005 1.072170 -1.070876 2.036009 3.770659 -0.837081 0.475343 -2.114581 2.961858 -1.439589 2.226305 -0.927824 2.801332 -0.382156 -4.432308 -4.645216 0.468324 1.687638 -2.807405 -3.944668 -3.586367 -0.809604 -0.216805 -2.092715 3.119732 6.536145 -3.249153 -3.681884 4.315587 0.982117 1.146305 3.679240 0.655479 4.968164 -1.623056 -0.594191 -1.213782 -1.546210 -0.165247 -0.364970 0.111245 -1.930909 1.900882 -0.456171 -3.162213 3.578945 0.147369 -2.261921 0.054512 0.325599 -1.738239 -3.271026 3.948220 0.328609 3.461292 0.078060 5.176215 -1.551813 -2.985100 1.587159 -0.879570 -0.179692 -1.255597 -0.517023 0.538689 2.122876 -2.703164 -2.206994 -0.607337 -1.051140 -2.134118 2.303247 2.046121 0.249654 1.348125 0.701719 2.301217 4.406643 -0.249698 0.834605 -3.472766 2.073286 2.415811 -0.287849 -4.283619 -0.675249 -1.354928 -0.960260 1.142235 0.053200 2.281256 -1.451056 -1.170533 0.217066 -0.090815 2.092668 1.278068 -3.066184 1.319775 -0.931648 1.272680 1.486998 3.533816 3.317718 3.766923 2.009601 0.917758 -0.271864 -0.249189 0.561534 -0.243606 0.874530 1.281315 2.207436 2.922488 2.887143 1.589934 3.071123 1.754548 0.321735 3.826469 0.547779 5.916749 -1.631917 -0.854346 -0.097086 -0.150899 3.751804 6.017099 -1.471949 -0.312082 1.994631 0.746602 -1.137566 -4.248650 0.539076 -0.648605 -1.203316 2.227752 1.362879 -0.048415 -1.386563 5.038095 -0.896665 -5.449759 3.463521 1.056673 2.192503 1.030085 0.419277 0.140470 1.920557 -2.542602 2.101220 3.165198 2.731409 -3.031890 -1.434713 0.312079 2.478810 0.855862 2.489778 -4.048873 1.016826 2.472720 3.791904 1.029515 1.610980 -2.352346 -2.080777 1.580682 -0.717357 -0.184629 0.292716 1.293057 -2.223444 0.255711 -1.618382 -2.216823 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 2.133936 -2.233641 4.223256 -8.442757 -9.301549 2.477112 -1.683167 -7.629921 -1.850667 3.537352 4.049718 -1.911030 -0.396749 7.986746 -1.291553 -5.564770 -0.685239 -3.051804 0.298140 -2.542372 -1.033282 4.959617 -3.360108 -0.852770 0.618416 -3.367621 -0.450232 4.706830 0.880522 -1.337353 -1.204282 -5.338519 -2.640906 10.774159 4.887259 -0.040407 -1.485752 16.540394 -3.564595 5.830737 -9.946028 -8.961642 8.848350 -2.831503 -1.120549 -6.975892 -6.442775 4.826843 -1.691195 -1.444333 3.657766 -1.658490 4.222708 -2.257389 -0.197604 2.202985 -8.909843 2.949980 4.738036 -7.128664 -4.645032 -2.959285 -1.342418 2.955303 -7.308443 -5.669953 3.635124 4.102554 -0.263936 -1.355185 -2.041297 -9.097438 10.902937 3.642657 -2.593780 0.906099 2.189266 -7.419334 7.064252 0.418878 -12.169483 -3.821192 -1.614441 -7.487626 7.461845 -0.675230 9.387117 -15.115511 5.769870 -16.938486 3.593748 -6.072108 4.992632 9.689255 -8.203689 4.989871 6.722115 9.109702 6.270035 -1.763602 8.323570 3.752425 0.895324 6.687283 8.295368 4.674504 -2.733082 -4.071180 -7.203340 -8.562263 2.668496 -5.934033 -14.426772 5.563111 -1.329479 -2.024522 -4.832110 1.595970 -0.794752 11.938301 -10.108670 1.039517 4.272170 -2.593486 1.617522 6.253136 -2.862036 1.199228 -4.125114 7.496092 -7.381532 5.744241 -1.378697 7.879463 -3.217328 -4.147402 -10.250504 3.127692 4.352408 -8.637058 -9.410120 -9.257165 -2.554666 4.244960 -5.016881 10.553867 17.583485 -10.391227 -10.491794 10.438288 4.696203 -2.259659 7.536798 3.028791 9.926456 -2.341520 -4.604960 -6.983522 -5.836968 0.827764 1.414590 1.951260 -2.375963 8.182059 -1.230596 -6.205851 16.897320 -2.574172 -7.689226 0.228083 2.976373 -4.851814 -6.460541 8.571021 0.583011 7.643653 0.836461 12.329889 -3.309219 -4.896546 2.114148 -6.419521 -2.261783 -5.342455 0.350676 -0.067455 6.179760 -5.148078 -5.771284 -3.228796 -5.973658 -4.808078 5.188145 2.971543 3.169434 5.352209 1.917110 5.915636 13.354173 2.679496 -1.654891 -6.964287 5.892613 7.266164 -0.089502 -7.631347 -4.470770 -3.478176 -1.965811 -0.673692 1.172392 8.583409 -6.024094 -0.807665 -1.140545 0.788907 2.670798 4.819941 -13.794469 3.902016 -0.474306 5.980347 3.244636 7.987322 8.994376 11.464209 7.174912 2.785728 -0.961089 -0.086236 -1.562084 -0.027894 3.959011 3.888013 5.545901 10.975207 8.327830 6.237420 9.209700 6.543973 5.735034 9.982337 -1.540847 16.256441 -3.880530 -1.331795 -1.596841 3.577010 9.907046 15.455789 1.851969 1.150807 4.517972 1.092810 -5.969793 -9.845740 3.444096 -1.375691 2.175538 2.817751 6.907045 0.404944 -4.813070 12.525267 -0.902351 -14.742216 7.502488 3.300489 6.665698 6.066037 0.646579 2.568961 3.350775 -4.484956 9.006537 9.830332 5.941868 -10.168936 -1.871218 1.683578 6.371717 3.325250 8.286324 -11.010946 6.100420 3.755971 8.232160 -0.462500 6.303511 -8.633860 -3.262412 5.969634 -3.776160 -0.281841 5.135391 3.887577 -6.510423 3.108037 -7.622177 -5.671891 +PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.021491 0.210896 0.532841 -1.137925 -1.428271 -0.077759 0.504561 -0.518883 -0.197767 0.252823 0.691092 -0.639763 -0.434526 1.550185 -0.204219 -0.651853 -0.126631 -0.629713 -0.271727 0.101790 0.019272 0.923985 -0.256584 0.082251 0.257670 0.022048 -0.400810 0.760819 0.401338 -0.518870 -0.281378 -0.417737 0.056529 1.120035 0.157283 -0.173201 -0.055668 2.006602 -1.219603 1.177698 -1.271562 -0.764307 1.108743 -0.216608 -0.237276 -1.927216 -1.342225 0.753384 -0.203385 -0.490422 0.707762 0.175050 0.163572 -0.322752 0.430914 0.777826 -1.582083 0.723328 0.722024 -0.425200 -0.043956 -0.183970 -0.453002 0.039830 -0.721379 -0.707903 -0.011613 -0.019538 -0.101406 -0.171506 -0.093825 -1.007640 1.659190 0.271969 -0.486687 0.406707 0.359594 -1.265012 1.066003 -0.811499 -1.250544 -0.195777 -0.027086 -0.203095 0.973336 -0.203495 0.591098 -1.731929 0.002168 -1.747476 0.512221 -1.247183 0.300007 1.313379 -0.878741 0.583389 0.522674 0.116147 1.064883 0.382491 1.024516 0.671008 0.727243 0.641207 0.724738 0.823529 -0.575835 -0.625272 -1.068291 -1.248999 0.298020 -0.302519 -2.015850 0.527826 0.251893 -0.273839 -0.046474 -0.164775 0.259860 1.350846 -0.647530 0.534874 0.758283 -0.253109 -0.076730 1.399716 -0.329599 -0.101630 -0.888390 0.966941 -0.593185 1.259082 -0.032310 0.755704 -0.600960 -1.536152 -0.879966 0.155878 0.071311 -0.776386 -0.920515 -1.461763 0.133758 0.152315 -0.699156 0.335986 2.141287 -1.125765 -1.279832 1.500842 1.455119 -0.074901 0.462403 0.119272 1.514443 -0.221851 -0.626505 -0.672601 -0.895066 -0.035045 0.993264 0.433588 -0.572173 0.571663 -0.220534 -2.611965 1.977238 -0.150437 -0.807779 0.444940 0.262582 -0.747858 -0.934624 1.350791 0.363464 1.130027 -0.247781 1.441639 -0.223580 -0.785632 0.464346 -0.326969 0.079838 -1.109204 -0.284372 0.644197 0.540729 -0.635037 -0.477474 -0.496070 -0.556390 -0.864579 0.405488 -0.777832 0.271676 0.453248 0.500277 0.248141 1.417662 0.087103 0.247961 -1.118866 0.697524 0.451972 -0.035666 -1.886041 -0.029079 -0.471247 -0.198217 0.101171 -0.142720 0.584311 -0.347427 -0.343952 0.222529 -0.580170 0.123092 0.299195 -1.146710 0.206296 -0.363428 0.996529 0.332567 0.845773 1.349257 1.247696 0.808996 0.647899 -0.104647 0.106313 -0.355462 0.160698 0.186677 -0.041351 0.758493 1.200222 0.994990 0.453400 1.142273 0.701985 0.250559 1.190585 0.263607 1.860151 0.066695 -0.521362 0.011464 0.319900 1.099925 1.844584 0.347855 -0.040665 0.586052 0.272287 -0.603261 -0.837200 0.230233 -0.272282 -0.467316 1.208223 0.406095 -0.188165 -0.099283 1.325500 -0.374853 -1.681077 0.644666 0.231067 0.843151 0.316373 0.318851 0.317463 0.667973 -0.684430 0.948849 1.007865 0.844841 -1.018104 -1.028220 0.115370 0.501736 0.935489 1.130994 -2.203722 0.295213 0.589068 1.052641 -0.347518 1.068623 -0.838003 -0.555194 0.699742 -0.043026 -0.291238 0.075627 0.257208 -0.856677 0.077857 -0.940008 -0.703824 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.013939 0.228768 0.572650 -1.153324 -1.521803 -0.060729 0.382025 -0.571554 -0.207762 0.264501 0.689883 -0.638048 -0.478713 1.543092 -0.280054 -0.729888 -0.198931 -0.562535 -0.246934 -0.007560 0.002286 0.922807 -0.275079 0.085239 0.248876 -0.050555 -0.386522 0.754229 0.488593 -0.502727 -0.250745 -0.453364 0.055480 1.163668 0.188400 -0.153536 -0.060228 2.064563 -1.105100 1.081592 -1.358326 -0.859114 1.132079 -0.223870 -0.192932 -1.950802 -1.338649 0.760315 -0.351820 -0.363735 0.710425 0.161506 0.188571 -0.317217 0.440507 0.729424 -1.635481 0.850400 0.719242 -0.515642 -0.057997 -0.184424 -0.491221 0.062889 -0.622325 -0.722204 -0.014306 0.115584 -0.125692 -0.162633 -0.065696 -1.003581 1.737615 0.251556 -0.507027 0.415208 0.386695 -1.201775 1.067494 -0.884978 -1.316414 -0.232328 0.037597 -0.158363 0.967767 -0.131312 0.623256 -1.789245 0.001430 -1.823766 0.555908 -1.218148 0.337493 1.308301 -0.951854 0.615649 0.589680 0.029738 1.145502 0.389583 1.053815 0.648402 0.734966 0.696713 0.692466 0.818091 -0.524420 -0.603179 -1.070097 -1.293916 0.242421 -0.290952 -2.077830 0.536375 0.235982 -0.193955 -0.099626 -0.163400 0.271729 1.343220 -0.718365 0.462443 0.767872 -0.264176 -0.028842 1.366246 -0.333195 -0.061998 -0.864204 0.992367 -0.675410 1.225095 -0.035094 0.799491 -0.521301 -1.643755 -1.072279 0.188477 0.102339 -0.804015 -0.947230 -1.421617 0.097680 0.152953 -0.708035 0.356420 2.224130 -1.183384 -1.353619 1.532426 1.389044 -0.068324 0.573738 0.166156 1.539465 -0.211281 -0.653472 -0.716454 -0.934167 -0.003261 0.918533 0.449079 -0.581648 0.628753 -0.149257 -2.516063 1.845566 -0.200447 -0.860314 0.354901 0.292907 -0.764529 -0.888669 1.320184 0.406030 1.160678 -0.241423 1.499178 -0.290436 -0.895107 0.433808 -0.399869 0.061948 -0.984825 -0.240889 0.637260 0.554384 -0.699285 -0.509079 -0.498199 -0.596280 -0.876760 0.414088 -0.658641 0.280827 0.496189 0.496175 0.310442 1.499702 0.132824 0.249149 -1.140453 0.713715 0.478458 -0.002610 -1.962312 -0.056887 -0.464889 -0.203161 0.144525 -0.124195 0.626037 -0.291274 -0.311735 0.158260 -0.603995 0.200339 0.333058 -1.041050 0.230240 -0.393520 1.021246 0.320238 0.864621 1.399942 1.313153 0.857427 0.689671 -0.095482 0.041996 -0.133126 0.164742 0.279777 -0.049673 0.776230 1.251427 1.037935 0.474982 1.189266 0.751698 0.236081 1.234228 0.179737 1.958303 -0.107813 -0.474337 -0.050257 0.366849 1.139248 1.938363 0.298662 -0.027601 0.605305 0.297691 -0.530231 -0.930211 0.267316 -0.263966 -0.445687 1.224211 0.509709 -0.190211 -0.140554 1.357642 -0.357127 -1.692642 0.757887 0.246874 0.843684 0.255443 0.316312 0.207009 0.680798 -0.734781 0.922181 1.060703 0.873371 -1.097434 -1.051476 0.117648 0.586012 0.905671 1.172797 -2.186568 0.284364 0.671987 1.065292 -0.341002 1.043151 -0.893734 -0.697331 0.734492 -0.076064 -0.311145 0.143189 0.229959 -0.888539 0.134208 -0.814169 -0.797815 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.166092 0.234113 0.879940 -1.417931 -1.990876 -0.071659 0.277131 -0.993493 -0.357003 0.523122 0.741611 -0.780827 -0.780552 1.704508 -0.475973 -1.172905 -0.366380 -0.549396 -0.274518 -0.547221 -0.137406 1.035011 -0.383126 -0.078690 0.314679 -0.392554 -0.304565 1.002442 0.602894 -0.543628 -0.059266 -0.763660 0.193051 1.770912 0.397203 0.003495 -0.328633 2.822534 -0.864579 1.151094 -2.137145 -1.552441 1.737858 -0.401282 -0.063794 -2.477596 -1.441568 1.074774 -0.728572 -0.189287 0.639722 0.176651 0.325279 -0.633680 0.299114 0.899167 -2.129794 1.354878 0.878221 -1.268570 -0.482749 -0.266974 -0.692438 0.230318 -0.623854 -1.094303 0.049500 0.517848 -0.330398 0.068008 -0.174944 -1.310599 2.359131 0.308990 -0.626168 0.526089 0.430511 -1.082202 1.341106 -1.024534 -1.783990 -0.622162 0.272837 -0.068823 1.087170 0.145535 1.035966 -2.617658 0.059768 -2.665123 0.939305 -1.449718 0.714376 1.606790 -1.305739 1.117450 0.901330 -0.133075 1.442291 0.309014 1.425421 0.684542 1.026001 1.058296 0.967175 0.991734 -0.497972 -0.925577 -1.323449 -1.671131 0.304631 -0.414744 -2.698289 0.796241 0.004594 -0.018155 -0.316726 -0.067379 0.325868 1.723327 -1.425557 0.277501 1.132215 -0.426900 0.271014 1.479997 -0.456042 0.085173 -0.963963 1.323716 -0.968036 1.404827 -0.044353 1.287067 -0.342350 -2.311125 -1.890087 0.324751 0.347970 -1.240952 -1.428129 -1.703898 -0.132056 0.440163 -1.011802 0.695182 3.153701 -1.649272 -1.938771 1.926005 1.439247 -0.104449 1.012075 0.459393 2.161995 -0.439437 -0.785614 -0.951874 -1.101902 0.416093 1.105840 0.430322 -0.943639 1.180583 0.014074 -2.594500 1.995411 -0.507408 -1.146784 0.354592 0.374305 -0.864051 -0.994104 1.530503 0.592753 1.728276 -0.406487 2.132562 -0.685518 -1.405832 0.425973 -0.894874 -0.159749 -0.808630 -0.007952 0.583591 0.885977 -1.205754 -0.885045 -0.642014 -1.090352 -0.981932 0.826697 -0.459459 0.334087 0.682938 0.498143 0.800131 2.049856 0.207363 0.171623 -1.576040 0.984386 0.798074 0.344936 -2.547181 -0.341170 -0.530772 -0.372326 0.195844 -0.001668 1.076676 -0.232075 -0.152642 0.127754 -0.747376 0.311254 0.433790 -1.052114 0.403825 -0.371591 1.292142 0.293800 1.420060 1.937155 1.777990 1.091958 0.878846 -0.136456 -0.296064 0.207095 0.272622 0.578860 0.051053 1.044570 1.649527 1.410018 0.704011 1.850169 1.006777 0.314434 1.776467 -0.051590 2.782321 -0.934381 -0.364515 -0.125964 0.533268 1.660723 2.720560 0.267926 -0.226481 0.922642 0.311175 -0.624127 -1.444192 0.286539 -0.260706 -0.396160 1.634344 1.128859 -0.325221 -0.379157 2.064606 -0.322450 -2.413585 1.419494 0.486446 1.039422 0.331995 0.200745 0.064124 1.022601 -0.846727 0.907645 1.470984 1.245535 -1.832178 -1.255540 0.166195 1.051704 1.010961 1.466558 -2.846220 0.213052 1.104906 1.575106 -0.398830 1.288003 -1.404566 -1.087172 1.002579 -0.160621 -0.355076 0.547334 0.326712 -1.225310 0.317256 -0.884058 -1.000782 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = 0.838845 -0.238592 0.688676 -1.277597 -1.045914 -0.298877 1.522310 -1.368261 -0.555868 1.389729 0.582834 -1.061481 -0.519275 1.246641 0.386232 -0.739806 0.533033 -1.096048 -0.439998 -0.663746 -0.334702 0.775584 -0.313650 -0.813530 0.367050 -0.319143 0.019847 1.458148 -0.577217 -0.276324 0.147249 -0.925279 0.594599 2.371647 0.679645 -0.048972 -1.140574 2.985441 -1.545131 2.083001 -2.361147 -1.558604 2.682243 -0.644288 -0.306434 -2.304569 -0.985783 1.474422 0.729366 -1.448236 -0.127188 0.178986 0.594070 -1.484797 -0.801132 1.836667 -1.581748 0.255248 1.022820 -2.003048 -1.676715 -0.459083 -0.219434 0.741846 -2.229309 -1.669624 0.465225 -0.500182 -0.299003 0.648966 -1.228275 -1.934000 1.598043 0.694267 -0.476663 0.230439 -0.360462 -1.183722 1.478507 0.714719 -1.447979 -1.112679 -0.177920 -0.694240 0.832315 -0.142210 1.728219 -3.318473 0.278474 -3.183207 1.044225 -1.789513 1.255538 1.870462 -0.801145 1.634726 0.323843 1.067813 0.513053 -0.609322 1.440547 0.776557 1.329487 0.756011 2.041304 1.420439 -0.854549 -1.918563 -1.314443 -1.232824 1.285230 -0.906403 -2.341176 1.295531 -0.961974 -0.944421 -0.199590 0.170276 -0.122165 2.666701 -1.914001 0.255079 1.500037 -0.630186 0.601028 1.594713 -0.604088 0.141270 -1.044966 1.348138 0.011862 1.676498 -0.064982 1.732623 -1.058020 -1.531777 -0.853889 0.344206 0.825756 -1.900491 -2.085611 -2.490764 -0.403306 1.013704 -1.403903 1.398687 3.346206 -1.515495 -1.784794 1.664927 1.448030 -0.550143 0.461011 0.410864 3.004294 -1.422476 -0.122700 -0.634153 -0.330515 1.134459 2.819934 -0.327282 -1.575311 1.616517 -0.692714 -2.460605 3.292052 -0.337889 -0.720756 1.371350 0.018896 -0.194737 -1.544707 1.934720 -0.269992 2.078645 -0.980001 2.268358 -0.708845 -0.708277 0.777585 -1.056055 -0.785113 -1.481290 0.185182 0.155792 1.620044 -1.177058 -1.265011 -0.781217 -1.583376 -0.553634 1.871741 -1.151819 0.131032 0.345539 0.178730 1.337808 1.611140 -0.333824 -0.284390 -1.779689 1.196577 1.430163 0.867152 -1.832558 -1.030543 -0.759300 -0.752960 -0.714811 0.185600 1.724696 -1.116623 -0.023735 0.931127 -0.210816 -0.544164 0.104993 -2.719437 0.858620 0.348465 1.064303 0.227639 2.539054 1.660960 1.486434 0.594805 0.143165 -0.386030 -0.479440 -2.385980 0.607815 0.047185 0.390028 1.155425 1.526837 1.169259 0.896001 2.442848 0.373354 0.716385 2.030797 0.271939 2.535474 -0.695393 -0.244669 0.636404 -0.095300 2.020371 2.748904 1.063658 -1.401294 1.192565 -0.466695 -2.000767 -1.186639 -0.418867 -0.187805 -0.068570 1.564520 1.137031 -0.577329 -0.600311 3.110513 -0.181402 -3.614849 1.359082 0.895064 1.079330 1.687031 -0.533745 1.368590 1.320100 0.142633 0.948242 1.453630 1.391633 -2.148996 -0.771458 0.208652 0.834373 1.373445 0.828146 -4.072584 0.186329 0.808466 2.468287 -0.269186 2.092514 -1.732057 0.626619 0.865700 0.124772 0.160790 0.523173 1.100548 -1.459431 0.168090 -2.679504 0.526416 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.122251 -0.105331 0.066371 -0.484000 -0.476504 0.112109 -0.035806 -0.250509 -0.104464 -0.117914 0.223025 -0.164939 -0.215554 0.618156 -0.006881 -0.420152 -0.001568 -0.260609 -0.034534 0.254497 -0.074586 0.325945 -0.164273 0.031907 0.087458 0.069815 -0.209620 0.147650 0.250368 -0.328112 -0.325328 -0.202781 -0.136404 0.516585 0.171399 0.031953 0.060579 0.926834 -0.077253 0.573849 -0.470962 -0.291290 0.324002 -0.138932 -0.101029 -0.518247 -0.384444 0.321110 -0.236197 -0.168940 0.380099 -0.034269 -0.042883 -0.059281 0.193081 0.275014 -0.671496 0.418220 0.314912 0.081116 0.086435 -0.180934 -0.192828 -0.066486 -0.184020 -0.293715 0.046372 0.096854 -0.204020 -0.129172 -0.155705 -0.433346 0.843736 0.286681 -0.278805 0.105390 0.141113 -0.404206 0.357730 -0.446915 -0.648801 -0.057440 -0.071356 -0.026438 0.583378 -0.016888 0.221618 -0.757808 0.219714 -0.858362 0.164691 -0.516249 0.208370 0.660965 -0.432969 0.157830 0.286709 0.147706 0.403882 0.184617 0.486126 0.195040 -0.054283 0.217885 0.307065 0.149096 -0.150585 -0.145647 -0.251664 -0.475383 -0.003275 -0.061895 -0.849651 0.240218 0.009013 0.299449 -0.103334 0.231882 0.018282 0.129016 -0.462049 -0.046901 0.123446 -0.124218 0.257652 0.558489 -0.174901 0.006959 -0.413422 0.458604 -0.259133 0.394623 -0.146647 0.320058 -0.109595 -0.450562 -0.537509 0.048016 0.196257 -0.357613 -0.503643 -0.572188 0.003593 0.069519 -0.306612 0.480793 0.906461 -0.509255 -0.385806 0.699890 0.294449 0.203738 0.400445 0.040239 0.543209 -0.090390 -0.195800 -0.118955 -0.321477 -0.216030 -0.239037 0.162797 -0.199300 0.185357 -0.083829 -0.652379 0.732293 0.028823 -0.415391 0.013611 -0.017975 -0.317522 -0.462502 0.585929 0.061348 0.370124 0.132635 0.662107 -0.066992 -0.264058 0.258842 -0.073617 0.037248 -0.397995 -0.184736 0.115404 0.177832 -0.434381 -0.228369 -0.022921 -0.118917 -0.410727 0.169943 0.227350 0.054975 0.248159 0.236869 0.284501 0.679694 0.044587 0.100121 -0.473772 0.309201 0.172148 -0.242274 -0.473092 0.005771 -0.183748 -0.077694 0.258955 -0.040708 0.172133 -0.228023 -0.240313 0.016268 -0.032595 0.309209 0.278292 -0.348579 0.022962 -0.004266 0.230369 0.308790 0.354409 0.428866 0.568437 0.390886 0.158381 -0.029880 0.202259 -0.040453 -0.102262 0.014247 0.259752 0.308912 0.309894 0.445520 0.177645 0.394360 0.320787 0.136309 0.508077 0.209200 0.828964 0.078278 -0.253716 0.012727 -0.004936 0.505092 0.765601 -0.397862 0.225900 0.263762 0.113333 -0.174015 -0.347001 0.163216 -0.148523 -0.288686 0.286096 0.027811 0.105870 -0.155886 0.595143 -0.222559 -0.696323 0.296558 0.127056 0.375569 0.220978 0.203438 0.138561 0.180300 -0.462205 0.432663 0.461344 0.388914 -0.319225 -0.206813 0.028230 0.186987 0.150824 0.462853 -0.289044 0.164327 0.280826 0.468829 0.109769 0.031862 -0.274364 -0.294580 0.241807 -0.145919 -0.048122 -0.011758 0.186681 -0.165870 -0.071978 -0.283841 -0.407044 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = 0.016745 -0.507379 0.277953 -1.201987 -0.950969 0.172122 0.108533 -0.743951 -0.204464 0.049093 0.513389 -0.540179 -0.247255 1.409566 0.044454 -0.816871 0.232387 0.161054 -0.000576 0.397481 -0.154481 0.751301 -0.388699 -0.017048 0.266819 -0.102113 -0.198441 0.643695 0.453310 -0.310846 -0.418673 -0.561293 -0.336362 1.386912 0.426194 0.275637 -0.138554 2.148918 -0.380777 1.788880 -1.219680 -0.509325 1.022442 -0.268499 -0.231512 -1.287628 -1.167737 0.665238 -0.411287 -0.670739 0.535974 -0.196981 0.315573 -0.386771 0.247648 0.713812 -1.145786 0.238090 0.804531 -0.425606 -0.234798 -0.327345 -0.251771 0.049266 -1.324850 -0.765896 0.089401 0.130722 -0.258104 -0.219551 -0.470120 -1.198965 1.622548 0.610623 -0.744523 0.280052 0.208795 -1.133088 0.783210 -0.150592 -1.440804 -0.389488 -0.209014 -0.724497 1.169117 -0.175453 1.113171 -1.950155 0.629532 -2.088555 0.454048 -1.203037 0.698241 1.667610 -0.983179 0.630289 0.650855 0.856379 0.602332 0.348611 1.070744 0.607784 -0.168642 0.484858 1.132770 0.516586 -0.502804 -0.814763 -0.712228 -1.055956 0.273121 -0.606858 -2.066663 0.529913 -0.287690 0.475107 -0.388529 0.547436 -0.074924 1.013606 -1.025143 0.326724 0.499953 -0.387716 0.351174 1.305126 -0.234422 -0.054764 -0.828365 1.019560 -0.691456 0.822554 -0.356151 0.948236 -0.590033 -0.462489 -0.802979 0.034828 0.366101 -0.873242 -1.294230 -1.432454 -0.390811 0.558087 -0.638613 1.177069 2.182234 -1.194290 -1.071472 1.453180 0.545331 0.210420 0.746756 0.295713 1.418198 -0.454989 -0.380165 -0.752845 -0.595144 -0.084084 0.420685 0.191994 -0.657810 0.783677 -0.580687 -1.763633 2.579834 -0.110151 -0.789668 -0.023731 0.122848 -0.630614 -1.113713 1.560408 -0.651581 1.170232 -0.283994 1.683115 -0.245216 -0.539302 0.485849 -0.502304 -0.143476 -1.083209 -0.114989 0.073887 0.762450 -0.870455 -0.765427 -0.156089 -0.522301 -0.661537 0.704205 0.172555 0.022003 0.468485 0.238473 1.037511 1.353485 0.051910 -0.081496 -1.002058 0.757179 0.619971 -0.397844 -1.010039 -0.130598 -0.491545 -0.334618 -0.149842 0.056201 0.688676 -0.971071 -0.378553 -0.063674 -0.029676 0.414860 0.414095 -1.862773 0.368963 0.034225 0.560656 0.692851 1.021937 1.233344 1.315253 0.675838 0.350708 -0.148877 0.195821 -0.799729 0.128851 0.202377 0.474598 0.674840 1.065688 1.018398 0.608194 0.946494 0.566724 0.805283 1.232276 0.405603 1.897198 0.349639 -0.566488 0.251862 0.036489 1.222073 1.871316 -0.173245 0.346245 0.674555 0.171403 -0.842604 -1.224485 0.282260 -0.194753 -0.539981 0.779404 0.217505 0.115717 -0.465401 1.642652 -0.326033 -1.959465 0.724887 0.307203 0.874327 0.787525 0.307086 0.639712 0.561443 -0.591298 1.111633 1.019808 0.811736 -1.052550 -0.393219 0.110236 0.377988 1.023652 0.947597 -1.316744 0.502076 0.377312 1.354056 0.062026 0.751628 -0.663212 -0.115339 0.576306 -0.445660 -0.141225 -0.175725 0.353345 -0.331059 -0.174812 -1.325108 -0.771884 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.017642 -0.106101 0.511579 -1.109334 -1.321627 0.123501 -0.226261 -0.712646 -0.252749 -0.135315 0.514387 -0.388519 -0.610614 1.047437 -0.257809 -1.141054 -0.271834 -0.151174 -0.122936 -0.239806 -0.177473 0.611467 -0.346299 -0.109136 0.261879 -0.365063 -0.217022 0.698559 0.803307 -0.445876 -0.148526 -0.555636 -0.113292 1.353761 0.367444 0.160384 -0.009935 2.165209 -0.026088 0.614222 -1.283092 -1.071963 1.248488 -0.357626 -0.240951 -1.300806 -0.915020 0.689201 -1.114969 0.099190 0.549806 -0.021804 0.275435 -0.430609 0.209061 0.556301 -1.568308 1.056674 0.647610 -0.691265 -0.304278 -0.314875 -0.543970 0.010222 -0.208247 -0.740523 0.109925 0.516413 -0.358932 -0.147610 -0.127740 -0.877631 2.165598 0.350331 -0.407450 0.428085 0.349919 -0.671837 0.815455 -0.551527 -1.453165 -0.486039 0.227310 -0.132980 1.099370 0.053909 0.723260 -1.889013 0.162213 -2.032907 0.611493 -0.972632 0.614530 1.268689 -1.263023 0.805868 0.781858 -0.011472 0.775673 0.208689 1.138779 0.241059 0.294518 0.796938 0.671959 0.372992 -0.243045 -0.534138 -0.810269 -1.175046 0.010338 -0.379814 -2.181616 0.583724 -0.160127 0.402396 -0.357026 0.206046 0.115734 0.871569 -0.981290 0.172692 0.587026 -0.344091 0.397727 1.002635 -0.292305 0.029847 -0.593522 1.001022 -0.850475 0.772879 -0.226449 0.966998 0.169303 -1.374396 -1.548068 0.176079 0.381119 -0.877099 -1.150130 -0.911494 -0.231733 0.292249 -0.642299 0.797780 2.313489 -1.217325 -1.358806 1.479274 0.639424 0.358458 1.023011 0.434251 1.350219 -0.239565 -0.586831 -0.710133 -0.801724 0.177653 -0.185455 0.279147 -0.568602 0.885448 0.057903 -1.080833 1.492500 -0.333670 -0.876362 0.094262 0.224388 -0.810504 -0.917009 1.178837 0.643429 1.252228 0.124272 1.711790 -0.512425 -1.098233 0.308699 -0.369602 -0.135200 -0.535853 -0.089099 0.257385 0.455913 -0.923847 -0.761283 -0.365627 -0.490142 -0.722030 0.607549 0.631060 0.235916 0.542604 0.304335 0.519768 1.607183 0.138603 0.041562 -1.155344 0.693852 0.634314 -0.038014 -1.436396 -0.206770 -0.233732 -0.253965 0.464599 0.077709 0.794616 -0.228484 -0.171133 -0.076439 -0.206201 0.522315 0.462637 -0.953782 0.266262 -0.104150 0.591256 0.452009 0.974517 1.450405 1.313821 0.767326 0.655130 -0.045467 0.012230 0.401690 -0.129770 0.335572 0.554901 0.751134 1.149558 1.108300 0.582870 1.187398 0.915754 0.316222 1.291224 0.089427 2.177403 -0.533104 -0.410336 -0.118767 0.370285 1.283944 1.946730 -0.303307 0.196978 0.700674 0.476178 -0.231580 -1.448525 0.328281 -0.196153 -0.229280 0.979668 0.638318 -0.060186 -0.400340 1.528320 -0.255886 -1.707044 1.119751 0.394587 0.824192 0.135049 0.221950 -0.106824 0.681209 -0.877708 0.743426 1.061304 0.888054 -1.279751 -0.448518 0.161895 0.857632 0.272380 1.107188 -1.175103 0.223828 0.692045 1.085827 0.068320 0.499424 -0.852542 -0.943910 0.625553 -0.324414 -0.153165 0.368618 0.152866 -0.782476 0.200570 -0.491223 -1.016465 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = 0.205022 0.119166 0.516455 -0.885108 -1.248975 0.132351 0.066662 -0.695938 -0.194870 0.493572 0.398282 -0.235075 -0.283856 0.878473 -0.349184 -0.680864 -0.249684 -0.276479 -0.063456 -0.172936 -0.046279 0.657120 -0.285139 -0.054916 0.098312 -0.272647 -0.082256 0.438692 0.162654 -0.119489 -0.110396 -0.547233 0.001250 1.036235 0.345267 0.090163 -0.227089 1.627857 -0.263904 0.711856 -1.293192 -1.079622 0.879678 -0.265862 0.127830 -1.428734 -0.633741 0.540312 -0.066133 -0.233910 0.346720 -0.036274 0.305005 -0.277794 0.139990 0.205011 -1.043215 0.573211 0.494297 -0.786980 -0.296261 -0.219002 -0.308942 0.294763 -0.539482 -0.577436 0.017790 0.488328 -0.112366 0.022893 -0.057342 -0.803241 1.496567 0.262277 -0.518067 0.206200 0.293428 -0.790471 0.755863 -0.571256 -1.167681 -0.347110 0.036855 -0.075233 0.612350 0.085250 0.858726 -1.545743 0.353774 -1.616531 0.564700 -0.711720 0.422902 0.976376 -0.675105 0.546953 0.691232 0.405717 0.925098 0.145228 0.846941 0.563222 0.523947 0.640113 0.527690 0.609089 -0.324357 -0.553397 -0.748512 -1.005476 0.228583 -0.258209 -1.760061 0.421724 0.157918 0.169894 -0.287629 -0.030522 0.202628 1.119915 -1.226966 0.008351 0.637262 -0.233737 0.168896 0.649661 -0.239952 0.157720 -0.449972 0.791295 -0.729627 0.681681 0.014608 0.773127 -0.511130 -0.920966 -1.035646 0.288375 0.217020 -0.729791 -0.828743 -1.064954 -0.162695 0.559455 -0.525133 0.401786 1.823942 -1.031645 -1.160818 1.092378 0.659844 -0.353962 0.586048 0.314351 1.017530 -0.176831 -0.521762 -0.620844 -0.613553 0.151441 0.839193 0.288649 -0.492068 0.796052 -0.161862 -1.445636 1.191573 -0.339232 -0.754205 0.022481 0.138473 -0.623114 -0.405133 0.807948 -0.000837 0.951293 -0.326485 1.263510 -0.420163 -0.634896 0.096931 -0.817376 -0.149975 -0.563412 0.136304 0.362689 0.602287 -0.831101 -0.514361 -0.166741 -0.728446 -0.568016 0.496523 -0.539566 0.179150 0.504275 0.224587 0.808384 1.184491 0.226391 -0.151723 -0.662264 0.601578 0.363961 0.039643 -1.280881 -0.408236 -0.392390 -0.195023 0.042403 0.040708 0.659359 -0.145000 -0.057597 0.000398 -0.465023 0.183233 0.322796 -0.620367 0.206609 -0.133114 0.893230 0.034866 0.766550 1.057225 1.200254 0.711665 0.492927 0.002391 -0.174762 0.068566 0.192729 0.517095 -0.079014 0.587834 1.113488 0.861176 0.500431 1.054784 0.692762 0.428618 1.046233 -0.249962 1.650806 -0.678041 -0.203737 -0.100331 0.454888 0.977776 1.571633 0.171804 0.101432 0.407467 0.053444 -0.444408 -0.580119 0.321369 -0.123680 -0.123426 0.712359 0.883751 -0.037817 -0.324723 1.197245 -0.150418 -1.404754 0.776106 0.267630 0.688297 0.446283 0.100189 0.169954 0.490987 -0.275987 0.737487 0.945848 0.692869 -1.117120 -0.730024 0.128619 0.574869 0.556995 0.914281 -1.384316 0.153056 0.571660 0.921289 -0.317522 0.832722 -0.893006 -0.489680 0.672910 -0.150906 -0.212449 0.313040 0.225563 -0.478948 0.122543 -0.627225 -0.609507 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.297241 -0.500727 0.219643 -0.955436 -0.789450 0.455475 -0.358394 -0.629697 -0.142701 -0.060681 0.376678 -0.046237 0.059971 0.980930 0.050636 -0.672203 0.052887 -0.457663 0.113293 0.309811 -0.141808 0.554855 -0.410345 0.079458 0.075853 -0.148367 -0.224702 0.298424 0.146009 -0.343639 -0.508715 -0.491892 -0.623084 1.060207 0.513077 0.017070 0.164578 1.866589 -0.117197 0.901108 -0.619780 -0.687758 0.567151 -0.291830 -0.278319 -0.244075 -0.626241 0.423880 -0.197457 -0.223754 0.710268 -0.249312 0.211688 0.019248 0.211683 0.156696 -0.984586 0.219451 0.490390 -0.031368 -0.141430 -0.460288 -0.163457 0.069115 -0.779257 -0.477222 0.469096 0.385988 -0.133264 -0.351114 -0.239356 -0.959606 1.316605 0.688403 -0.343704 0.073334 0.402327 -0.915913 0.681584 -0.093316 -1.440292 -0.188579 -0.419261 -0.941794 1.227807 -0.227565 0.854841 -1.459511 0.973900 -1.758315 0.170750 -0.780478 0.453848 1.298200 -0.903316 0.295396 0.754820 1.367011 0.539903 -0.101736 0.975132 0.411239 -0.464181 0.627867 0.865799 0.245339 -0.319755 -0.204935 -0.611116 -0.834212 0.115362 -0.611517 -1.546816 0.531557 -0.021619 0.156222 -0.485614 0.530816 -0.232177 0.742671 -1.078875 0.002942 0.134420 -0.258890 0.293942 0.746361 -0.356091 0.049514 -0.590427 0.909774 -0.782304 0.544075 -0.339186 0.656069 -0.368240 0.114818 -0.983854 0.209000 0.521513 -0.817947 -1.058227 -0.965654 -0.234181 0.416647 -0.460247 1.588969 1.778517 -1.051036 -0.775231 1.282343 0.310830 0.138836 0.893802 0.204204 0.734665 -0.090556 -0.509812 -0.599516 -0.598296 -0.428801 -0.768796 0.345539 -0.005356 0.629380 -0.199498 -0.275292 2.098718 -0.106138 -0.903941 -0.167721 0.159398 -0.634550 -0.899840 1.127782 -0.063207 0.591346 0.526505 1.320715 -0.076232 -0.285138 0.372789 -0.416597 -0.052936 -0.905158 -0.186744 -0.131723 0.460459 -0.574238 -0.564334 -0.117358 -0.316869 -0.646802 0.303607 0.893024 0.329441 0.602082 0.380168 0.664946 1.527594 0.322964 -0.140516 -0.760312 0.601945 0.607765 -0.587825 -0.277824 -0.213707 -0.282732 -0.125553 0.170188 0.075536 0.602016 -0.915291 -0.373836 -0.242043 0.390372 0.538981 0.728074 -1.671806 0.249967 0.123394 0.409660 0.683264 0.584669 0.844801 1.182658 0.873418 0.155952 -0.062986 0.468883 -0.311330 -0.257804 0.208815 0.801714 0.519525 0.971504 0.886990 0.579592 0.658485 0.812477 0.683939 0.922275 0.169087 1.719975 0.214639 -0.390553 -0.152911 0.209608 1.000330 1.519780 -0.420676 0.661767 0.468025 0.259793 -0.570648 -0.958447 0.479550 -0.267591 0.094608 -0.086175 0.196509 0.253975 -0.472877 1.173533 -0.240679 -1.440469 0.482526 0.313481 0.761024 0.765861 0.318082 0.397556 0.179756 -0.836200 1.251241 0.991884 0.563395 -0.698592 0.153405 0.154731 0.453157 0.048225 0.953098 -0.246663 0.832787 0.251511 0.753987 0.288585 0.186108 -0.620162 -0.343734 0.561199 -0.608203 -0.026202 0.372355 0.491071 -0.437404 0.197452 -0.809876 -0.883792 +PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = 5.995176 -1.457308 5.759729 -6.133230 -1.955427 -1.772382 13.629605 -8.259344 -4.909727 16.583236 1.231144 -6.983453 -6.092909 7.133938 -0.358090 -2.298814 3.681267 -0.425466 -2.599034 -1.160983 -5.715193 2.855301 -3.254254 -8.917985 4.930399 -0.755645 5.831962 12.273421 -5.032552 5.568990 1.653794 -6.053844 3.344313 16.453403 5.223153 -0.393665 -6.765903 21.280046 -19.454253 19.929836 -13.717416 -13.480181 23.420792 -2.516740 -0.246652 -13.878101 -4.377577 11.226450 -3.085340 -13.052353 -2.708936 -0.751630 5.305067 -13.603517 -6.845811 14.444426 -14.949630 -0.283896 8.160110 -12.715543 -17.286143 -3.502908 3.795446 4.507870 -17.323406 -11.106348 -0.318269 -7.092786 -2.731923 2.888735 -13.666204 -10.751290 7.220101 2.118143 -3.445393 2.182659 -5.704905 -5.506179 7.137271 2.658294 -9.032788 -8.534407 -0.921056 -10.916795 5.145079 5.191246 13.052058 -21.342026 3.814686 -20.537995 6.756826 -12.847393 8.840972 15.455745 -2.877086 15.534521 1.263536 9.491631 -1.245122 -2.600984 6.922792 5.577674 8.384441 2.963475 11.899159 13.082985 -12.809565 -18.454235 -13.568404 -5.276292 7.024737 -5.662617 -15.550947 6.695194 -9.857690 1.197954 0.351672 0.793284 -5.711859 15.698372 -19.014108 9.867600 5.707522 -3.759943 7.384163 10.130315 0.125888 1.422951 -1.852373 6.834936 0.886459 7.024354 0.188243 12.674124 -9.667220 -4.255839 -0.354975 3.380701 6.205757 -9.103800 -13.533294 -22.323651 -5.310676 10.210169 -7.840228 8.050831 23.262098 -5.985843 -10.107844 7.362067 -1.460661 1.572701 3.983835 4.429687 19.833885 -11.078927 1.134547 -1.342045 0.863974 8.777919 23.829334 -5.073567 -12.970008 13.502623 -6.754027 -7.899457 18.455967 1.329034 -0.591946 0.986393 1.959498 -2.888163 -9.587773 18.343606 -16.923102 14.051393 -10.853697 17.724370 -6.609005 -1.161313 3.189852 -16.828961 -4.652187 -16.690197 -0.158074 -2.638806 11.458677 -10.853144 -9.375512 -6.728264 -4.800985 -1.675851 17.410472 -14.467415 -2.819575 -0.621869 -3.402022 13.889875 3.155017 -6.731401 -3.205415 -12.030162 4.771340 6.445383 1.585693 -18.335922 -7.261888 -4.190300 -6.485031 -1.964343 1.847517 9.885217 -11.791693 0.922862 9.765120 -0.276347 -5.327462 -2.177403 -20.777516 5.625802 2.751838 5.746924 6.756213 19.173405 11.536712 10.175610 -0.898326 6.289880 -3.198196 -5.310779 -19.127132 5.999277 0.922257 4.415452 7.275536 8.563329 5.823809 6.121715 7.516076 0.080272 1.720095 13.023969 5.532864 14.274822 -5.887175 -4.752923 8.212913 0.171160 10.165533 9.002901 2.705220 -10.967176 7.080325 -7.915004 -12.879069 -2.875282 -1.529150 -1.889109 -1.379652 13.308403 11.063486 -2.687009 -3.455519 22.951876 -3.509338 -28.934051 8.325885 5.565154 9.186150 13.876014 -4.271625 11.943015 9.853429 7.293218 7.808747 8.199413 7.719329 -14.996131 4.020339 2.337246 6.367410 14.964318 -0.449461 -37.758930 -1.516804 0.436873 16.099893 -0.793071 21.103366 -8.955888 9.086330 1.608673 -1.764752 4.062805 -3.048586 9.867066 0.695388 1.033177 -24.350053 5.601041 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 1.501466 -0.403975 1.169578 -1.577728 -0.657783 -0.205141 2.431725 -1.819677 -1.051036 3.160886 0.267179 -1.447513 -1.374135 1.793268 -0.187229 -0.875527 0.712211 -0.474750 -0.499231 -0.130086 -1.291259 0.755141 -0.789910 -1.757932 1.095424 -0.151135 1.003751 2.448180 -0.676713 0.719404 0.001331 -1.327677 0.475832 3.763254 1.191108 -0.194441 -1.135933 5.096266 -3.467639 4.080177 -2.996243 -2.976071 4.865976 -0.636350 -0.161762 -2.855736 -0.947702 2.467198 -1.017413 -2.399121 -0.264948 -0.225042 0.839899 -2.756806 -1.277802 3.070310 -3.702136 0.539549 1.793511 -2.209365 -3.430881 -0.976066 0.702214 0.711869 -3.314081 -2.451143 0.131336 -1.166714 -0.960138 0.568257 -2.896238 -2.387893 2.099879 0.743570 -0.857045 0.523877 -1.022709 -1.307182 1.618730 0.012905 -2.341356 -1.748636 -0.149792 -2.248135 1.678208 1.026620 2.644726 -4.882088 1.120347 -4.810984 1.349315 -3.006834 2.027246 3.688601 -1.063576 3.260134 0.444724 2.093330 -0.024523 -0.443971 1.898568 1.157112 1.452047 0.766054 2.510700 2.564562 -2.520859 -3.596554 -2.701414 -1.329539 1.149695 -1.079801 -3.769984 1.527334 -2.129214 0.646035 -0.033569 0.508845 -1.295584 2.980989 -4.384342 1.477327 1.045936 -0.867202 1.877099 2.348687 -0.139117 0.330719 -0.701101 1.838753 0.048647 1.509877 -0.194335 2.720863 -1.842162 -1.165547 -0.807626 0.614918 1.509059 -2.105026 -3.271858 -4.753004 -1.181657 1.890794 -1.766971 2.431267 5.376220 -1.466799 -2.267563 2.115708 -0.433130 0.752131 1.479979 0.921259 4.297530 -2.294911 0.146016 -0.222999 0.081071 1.476396 3.718143 -0.961273 -2.609822 2.750532 -1.245875 -1.222517 3.952886 0.312548 -0.428546 0.019701 0.302820 -0.849736 -2.374726 4.176270 -3.198025 3.125876 -1.773487 4.184905 -1.406775 -0.585078 0.890552 -3.383255 -0.795675 -3.476779 -0.146204 -0.678413 2.399016 -2.587691 -2.162581 -1.185329 -0.892981 -0.649948 3.606255 -1.980542 -0.475632 0.035056 -0.453037 3.096112 1.252556 -1.406510 -0.451058 -2.886978 1.137651 1.551011 0.051533 -3.831719 -1.347358 -0.858236 -1.355297 0.037879 0.371383 2.027936 -2.576321 -0.111415 1.887918 0.171136 -0.599397 -0.147829 -4.407887 1.181759 0.458702 1.076528 1.658394 4.092696 2.668940 2.343012 0.091021 1.202199 -0.595906 -0.916552 -3.520140 0.958734 0.213266 1.343193 1.648091 1.926184 1.509431 1.334600 1.676191 0.387153 0.256893 2.981054 1.322348 3.621480 -1.369241 -1.103067 1.505501 -0.075871 2.467742 2.478046 -0.148428 -1.959799 1.673715 -1.338579 -2.495492 -1.093178 -0.250705 -0.546595 -0.370865 2.524435 2.085389 -0.515770 -0.775543 5.091496 -0.842155 -6.280169 2.025329 1.264480 2.049481 2.808785 -0.695746 2.285189 2.163783 0.833749 1.820572 1.954871 1.824426 -3.137819 0.888302 0.470755 1.605871 2.549341 0.257561 -7.251909 -0.058361 0.401412 3.540011 0.263065 3.920838 -1.876051 1.326968 0.454332 -0.554165 0.749041 -0.422446 2.218503 -0.088332 0.265161 -4.814932 0.630572 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = 3.498512 -0.781660 3.252594 -4.283848 -1.728190 -0.855360 6.796402 -4.641055 -2.904203 10.021622 1.035629 -3.791205 -2.743440 3.742839 0.012252 -1.943046 1.958357 -0.931750 -1.333565 -1.141659 -2.657539 1.930478 -1.732078 -5.947438 2.792579 -1.234550 2.838155 6.623954 -3.483422 3.940166 1.524908 -3.650997 2.074970 9.697025 2.968039 -0.087884 -4.182845 11.167446 -10.857674 10.317421 -8.013049 -9.193724 13.669633 -1.459742 0.406996 -7.064412 -1.722598 5.959713 -0.391993 -7.339987 -2.016258 -0.395378 3.854717 -8.066398 -4.574219 6.909759 -7.857501 -0.974282 4.233521 -8.426939 -10.294682 -1.721128 1.650984 3.166297 -9.969711 -6.396910 -0.289513 -3.060131 -0.896874 1.437033 -6.995559 -5.842593 3.849381 1.696910 -1.016091 1.352771 -2.945104 -3.789789 4.388306 2.150507 -5.178435 -5.130838 -0.820952 -5.882468 2.797193 2.825479 8.754968 -12.253609 2.805070 -11.762581 4.413755 -5.944167 4.848430 8.221331 -1.435275 8.316252 1.310661 6.493556 -0.362128 -1.980811 4.480140 3.703170 5.045579 2.375002 7.064671 8.086972 -7.176246 -10.388773 -7.129309 -3.221473 4.142463 -4.492562 -9.052739 4.177788 -5.102088 -1.110625 0.236036 -1.005972 -2.903997 10.342898 -11.524009 4.060394 3.603408 -2.080577 3.203910 4.106096 0.207101 0.079180 -0.504627 4.137088 0.146383 3.517653 0.910170 7.731989 -5.917052 -2.122842 0.459104 2.616710 3.155283 -6.039278 -7.636829 -12.631344 -2.675827 6.895963 -4.434233 4.757709 12.786415 -3.755672 -6.764562 4.278466 -0.901443 -0.995830 2.132552 2.862861 10.199305 -5.908237 -0.046647 -1.215257 0.009556 5.538443 13.958972 -2.666438 -7.280699 8.394234 -4.052626 -4.282272 9.741018 -0.045365 -0.185302 -0.031644 1.100258 -2.582677 -4.412929 8.774806 -8.997451 7.791886 -6.037337 9.963807 -3.667198 -0.999517 1.810110 -10.807441 -3.881403 -9.039654 0.519047 -1.189636 5.885714 -6.196435 -5.468241 -3.902697 -3.025226 -1.229673 10.283391 -9.897668 -1.034866 0.228178 -2.099753 7.790787 1.585245 -3.448206 -2.545357 -5.939532 2.929143 4.013578 1.375129 -9.787727 -4.918760 -2.169055 -3.281089 -0.934036 1.300064 6.593984 -5.700705 0.957381 5.613836 -0.041299 -3.631809 -1.481894 -10.630109 3.301663 2.334007 3.901667 2.822665 11.358594 6.177279 6.062248 -1.027752 3.659455 -1.695689 -3.045961 -11.031684 3.078247 0.566723 1.628895 4.152225 6.294397 3.268464 4.248766 5.802238 1.679382 1.021015 7.556485 1.561028 7.520218 -3.016821 -2.575503 4.805008 0.652486 6.149435 5.494286 2.483379 -6.276828 3.988421 -4.696114 -7.459843 -0.757713 -0.308768 -0.794488 -0.237232 6.033994 6.980880 -1.233610 -2.204410 12.795755 -1.096974 -16.157792 5.207993 3.512177 5.541858 7.634672 -3.088657 6.886331 4.768638 4.554496 4.761415 5.114344 4.059897 -9.474844 1.647055 1.760470 3.997089 8.516142 0.328307 -18.968754 -0.496017 0.070220 8.966468 -0.919934 12.057109 -5.950562 4.791418 0.885285 -0.553686 1.991606 -1.275764 4.603566 -0.590062 1.258680 -12.984713 3.382698 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 1.017882 -0.096337 0.879382 -1.484235 -1.069177 0.057425 0.820782 -1.472119 -0.716468 1.838109 0.510686 -1.136363 -0.957164 1.379306 -0.385176 -1.148760 0.233008 -0.468052 -0.307733 -0.489832 -0.661652 0.593796 -0.541412 -1.342265 0.591241 -0.434509 0.481771 1.615358 0.119680 0.459018 -0.112985 -0.913633 0.396949 2.872008 0.964056 -0.214993 -0.589062 3.552734 -1.812940 2.144546 -2.390088 -2.425484 3.370971 -0.401492 -0.116412 -2.091622 -0.828713 1.592384 -1.192435 -1.019674 -0.055891 -0.295168 0.749530 -1.783457 -0.895823 1.938961 -2.870797 0.977879 1.111764 -1.644553 -2.125396 -0.665098 0.248188 0.588705 -1.697763 -1.756940 0.161329 -0.063715 -0.728441 0.341509 -1.708834 -1.737716 2.148102 0.580427 -0.567940 0.349649 -0.495269 -1.189850 1.252553 -0.271591 -1.898541 -1.193611 0.065311 -1.082311 1.446796 0.632755 1.921338 -3.647599 0.628188 -3.690111 1.134323 -1.873051 1.476279 2.434510 -1.343811 1.942058 0.577646 1.188596 0.421298 -0.183995 1.690311 0.787097 1.017726 0.708421 1.744426 1.738820 -1.359006 -2.133112 -1.545282 -1.281079 0.455689 -0.887141 -3.316675 1.110591 -1.467445 0.300457 -0.213794 -0.007080 -0.680638 2.248044 -3.033372 0.230848 0.709643 -0.602785 1.289576 1.470133 -0.150170 0.293526 -0.466766 1.615404 -0.196470 0.860720 -0.113621 1.951785 -1.004210 -1.670157 -1.379637 0.699393 1.127573 -1.715281 -2.512231 -3.044500 -0.778655 1.159692 -1.188880 1.809675 3.859402 -1.212242 -2.154645 1.839735 -0.169093 0.262686 1.699597 0.727925 3.054510 -1.550623 -0.028832 -0.402358 -0.271003 0.905990 1.808520 -0.646307 -1.692886 1.973510 -0.622523 -0.908105 2.333384 -0.075364 -0.551008 -0.158876 0.153673 -0.946669 -1.543692 2.613292 -1.373010 2.260329 -0.896114 3.201474 -1.188398 -1.211758 0.688934 -2.241776 -0.708552 -1.753756 -0.001839 -0.254197 1.591091 -1.963146 -1.663831 -0.720852 -0.569813 -0.677002 2.521629 -0.777990 -0.103952 0.340484 -0.219217 1.970777 1.357076 -0.816531 -0.183282 -1.953991 0.892548 1.482604 0.176820 -2.886492 -0.944549 -0.682580 -0.747983 0.298363 0.285798 1.703181 -1.392767 -0.159286 1.009898 -0.019898 0.033453 0.077988 -2.545900 0.997932 0.115573 0.771982 0.896028 2.938465 2.034634 1.857967 0.228999 0.798171 -0.226240 -0.728999 -1.548483 0.418654 0.480469 0.765208 1.204424 1.916351 1.117881 1.109921 1.668118 0.960099 0.113412 2.243016 0.564646 2.793050 -1.160462 -0.524840 0.674136 0.016477 2.035583 2.542472 -0.219580 -1.242308 1.168746 -0.560467 -1.295329 -1.371370 -0.084678 -0.365762 -0.274305 1.536190 1.581251 -0.284077 -0.709865 3.579021 -0.246199 -4.157364 1.923815 0.985783 1.357999 1.518436 -0.690503 1.051977 1.377194 0.110648 1.275964 1.654459 1.383998 -2.437941 0.103810 0.339180 1.495486 1.374565 0.589702 -4.058273 0.176769 0.709003 2.566878 0.344158 2.396543 -1.634027 0.117001 0.411095 -0.316245 0.304292 -0.043976 1.226326 -0.798423 0.446392 -2.497165 -0.118142 +PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 0.802645 -0.348155 1.328005 -2.332484 -0.897539 -0.514696 3.408335 -1.854959 -1.213754 3.961286 0.892858 -2.001125 -1.447119 2.365630 0.551312 -1.005214 1.214182 -0.727460 -0.903223 0.140782 -1.352765 1.136611 -0.849782 -2.247601 1.540917 -0.143000 0.911798 2.758864 -1.078568 0.544351 0.265038 -1.579454 0.878501 4.528615 1.161124 0.091047 -1.683375 5.044187 -4.243722 5.326209 -3.198499 -3.140643 5.698578 -0.768868 -0.143332 -2.930223 -0.587024 3.079916 0.234800 -3.864366 -0.188882 -0.026526 1.541665 -3.615943 -1.573599 3.345586 -3.098453 -0.211018 2.385766 -2.893647 -3.821863 -1.051694 0.384930 1.006117 -4.566844 -2.881643 -0.112552 -1.824035 -0.837210 0.168476 -3.119842 -3.033954 2.404401 0.972448 -0.857033 0.939456 -1.370551 -2.094336 2.144242 0.858891 -2.449148 -2.075286 -0.235382 -2.254931 1.888659 0.758426 3.097495 -5.833143 0.641876 -5.366656 1.914053 -2.805322 2.454075 4.233980 -0.851050 3.436711 0.424522 2.313895 -0.469974 -0.528254 2.384706 1.233038 1.980556 1.017478 3.280568 3.294681 -3.478897 -4.805265 -2.996914 -1.806614 2.095779 -1.426355 -3.177396 1.946937 -2.366017 -0.493459 0.322361 0.073074 -1.390642 4.053823 -4.316486 1.297201 1.817535 -1.112923 1.876628 2.771859 0.012671 0.025085 -0.748674 2.191012 0.068984 1.973975 -0.281366 3.541878 -1.781365 -0.790844 0.279455 0.644516 1.462030 -2.671075 -3.761684 -5.718954 -1.180914 2.234585 -2.303067 2.156790 5.710961 -1.984887 -2.653273 2.664771 0.209331 0.339450 0.645037 1.054355 4.662744 -2.880859 0.102769 -0.510309 -0.175335 2.209247 6.287589 -0.991175 -3.492681 3.236608 -1.916188 -2.615019 4.823254 0.415420 -0.420854 0.363132 0.419595 -1.360668 -2.801824 4.133203 -3.252438 3.306687 -2.308207 5.073350 -1.640448 -0.624568 1.370833 -2.861258 -1.200211 -4.478379 -0.322279 0.135460 2.529776 -2.585697 -2.539008 -1.343868 -0.828842 -0.932571 4.060682 -3.976189 -0.620603 -0.085111 -0.605516 3.003009 1.177807 -1.720056 -0.882648 -2.903165 1.421049 1.527321 0.596853 -3.607182 -1.664869 -1.160811 -1.759373 0.067517 0.287892 2.634054 -2.531214 -0.049113 2.726468 -0.212694 -1.394386 -0.456164 -5.410901 1.403015 1.113132 1.219050 1.627935 5.030205 2.731272 2.765382 -0.078897 1.351307 -1.041069 -0.527596 -5.581718 1.163960 -0.383806 1.422709 2.264174 2.458250 2.104162 1.809226 2.764556 0.185757 0.368407 3.664650 0.935127 3.587101 -0.373496 -1.253641 2.439135 -0.062334 3.115478 2.795671 0.505851 -2.863942 2.237280 -1.473919 -3.483734 -0.503060 -0.247142 -0.605745 -0.326397 2.549733 2.197073 -0.566037 -0.907084 6.062583 -1.272314 -6.942457 2.182689 1.422671 2.979110 3.125386 -0.829293 3.295794 2.200794 1.093858 2.298420 2.224568 2.352931 -3.857630 0.393056 0.550610 1.542584 3.645316 0.425353 -8.067875 -0.555569 -0.072817 4.135498 0.068254 4.573810 -2.288314 2.129668 0.520111 -0.245521 0.919572 -1.011238 2.209936 -0.330526 -0.049843 -6.101763 1.500625 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = 1.909086 -0.323447 2.759721 -4.529344 -1.893188 -0.885763 6.100593 -3.827418 -2.326697 8.172299 1.357902 -3.445553 -2.781742 4.476774 0.133759 -1.677969 1.872496 -1.552682 -1.534006 -0.582779 -2.462183 2.041270 -1.627673 -4.346041 2.502694 -0.755476 2.203440 5.015246 -2.224592 1.392452 0.555983 -3.231492 1.691398 8.417150 2.489504 0.058501 -3.553113 9.452250 -7.811009 9.369860 -6.539822 -6.714162 10.347087 -1.358499 0.661239 -6.207347 -1.107023 5.492592 0.630632 -6.403316 -0.650549 -0.231240 2.908870 -6.591104 -2.993755 5.726419 -5.777631 0.042448 4.150193 -5.729686 -7.095379 -2.169224 0.961774 2.238445 -8.287261 -5.352201 -0.053549 -2.463487 -1.894594 0.779470 -5.782848 -5.395016 3.649588 1.728454 -1.626067 1.405574 -2.484479 -3.958103 3.840597 0.723432 -4.628369 -3.840093 -0.335509 -3.947560 3.087925 1.978295 5.931906 -10.732147 1.333177 -10.026348 3.297965 -5.147462 4.571440 7.472732 -1.374151 6.438408 0.932165 4.754187 -0.238084 -1.119344 4.195015 2.829532 4.096724 1.886134 6.159440 6.243721 -6.076452 -8.695677 -5.398314 -3.192520 3.375014 -2.768859 -6.003659 3.506062 -4.236743 -1.430602 -0.036541 -0.035800 -2.854711 7.590726 -9.276494 1.764835 3.256338 -2.029346 3.497598 4.439475 0.021106 0.436082 -1.048598 3.979688 0.055010 3.485104 -0.384489 6.564876 -3.612427 -1.963213 -0.284218 1.515721 2.909426 -4.950204 -7.106036 -10.442444 -2.677864 4.298115 -4.082198 4.078028 10.495120 -3.572025 -5.166820 4.615454 -0.202004 0.116559 1.757470 2.146650 8.399984 -5.233108 0.363964 -0.836443 -0.189736 4.068109 11.692315 -1.993618 -6.523625 6.137869 -3.444759 -4.399103 7.290218 0.428994 -0.799276 -0.626814 0.832582 -2.694735 -4.572498 7.494106 -7.381969 6.288952 -4.717851 9.110305 -3.490249 -1.283493 2.104423 -6.694669 -2.042085 -7.646197 0.161429 -0.041758 5.089764 -5.119855 -4.873855 -2.486868 -1.836078 -1.468433 7.727733 -8.143004 -1.305927 -0.077706 -0.995290 6.359771 2.316698 -3.061766 -1.422917 -4.926995 2.837865 3.037556 1.707272 -7.556207 -3.325899 -2.105578 -3.310323 -0.251740 0.772511 4.949747 -4.306090 0.077490 4.801725 -0.556823 -2.537887 -0.745641 -9.184869 2.764981 1.613751 2.615424 2.586633 9.258111 5.043456 5.208560 -0.068489 2.056920 -1.889412 -1.897115 -9.238766 2.618763 0.236183 1.614495 3.976950 5.103426 3.739335 3.346541 5.356801 0.817381 0.388604 6.680728 1.117072 6.575685 -1.984031 -1.810176 4.077162 0.046622 5.532948 5.408470 1.498438 -5.395945 4.055235 -3.008498 -6.092288 -0.755497 -0.456420 -1.021345 -0.309035 4.810943 5.027204 -1.235110 -1.710066 11.067731 -2.094632 -12.651303 4.219319 2.735948 5.382256 5.776849 -1.952690 5.633852 4.066396 2.298008 4.269693 4.188808 3.999072 -7.116403 0.135602 1.062188 3.095307 7.029444 0.475312 -15.285854 -0.647776 0.307645 7.713911 0.058341 8.500755 -4.516051 3.611579 1.098372 -0.448540 1.721164 -1.374643 4.305035 -0.964409 0.055894 -10.489790 2.604044 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = 0.914419 0.218592 1.907537 -2.884662 -1.836005 -0.596305 3.299929 -1.898350 -1.235250 3.775038 0.644418 -1.884625 -2.875280 2.530206 -0.310628 -1.699507 0.461948 -1.976704 -0.933400 -0.861627 -1.400305 1.428184 -0.814835 -1.889056 1.553099 -0.620207 0.749963 3.275243 0.123754 -0.052631 0.520177 -1.738207 0.891972 4.762270 1.185334 -0.180114 -1.423979 6.159277 -3.846548 4.473111 -3.974285 -4.115187 5.907775 -0.826303 -0.154715 -4.396612 -0.625807 3.199349 -1.527864 -2.279092 0.200821 0.243244 1.226284 -3.400663 -1.194677 3.526906 -4.670878 1.652186 2.067318 -2.810953 -3.335538 -1.251323 -0.260189 0.862702 -3.261806 -3.047850 -0.049973 -1.328912 -1.859670 0.585951 -2.618043 -2.268644 2.981959 0.983883 -0.898692 1.132895 -0.765044 -1.878019 2.324813 -1.005497 -2.903070 -2.072505 0.184544 -1.661796 2.440988 0.923342 2.347123 -6.165132 -0.063412 -5.714435 1.770364 -3.384734 2.329069 4.229964 -1.219701 4.019345 0.560182 0.896511 0.179426 -0.798016 2.716325 1.387431 2.922930 1.781191 2.976237 3.117078 -3.051442 -4.363495 -3.190173 -1.992567 1.182536 -1.275542 -4.213647 1.842033 -2.005369 -0.476937 0.415277 -0.091693 -1.579178 3.809060 -5.006725 0.959092 1.676340 -1.114689 1.953754 2.762586 -0.129233 0.124359 -0.652117 2.801437 -0.207491 2.609596 -0.294050 3.540183 -0.761405 -2.415005 -1.374834 0.588011 1.485976 -2.425356 -4.049266 -5.250258 -1.502720 1.509211 -2.239244 2.351550 6.479000 -2.014385 -3.385890 3.383388 -0.292551 1.128991 1.354239 1.218274 4.552997 -2.290185 -0.504877 -0.751510 -0.633983 2.091838 5.883589 -0.641927 -3.466197 3.207349 -1.084162 -1.948570 2.562806 0.001298 -0.903228 -0.496077 0.199461 -2.075984 -3.022776 4.320209 -2.805754 4.094643 -2.022854 5.398294 -1.836805 -1.882184 1.245630 -3.314142 -0.459880 -4.027999 -0.162590 0.343543 2.021881 -3.184531 -2.824772 -1.813720 -0.635330 -1.356402 3.972319 -3.672397 -0.420004 0.132678 0.193617 3.463287 2.094282 -1.702526 -0.382521 -3.436677 1.813716 1.582957 1.205868 -5.113106 -1.254193 -0.531837 -1.809889 1.210429 0.319614 2.497464 -1.619353 -0.041679 2.472417 -0.505521 -1.001377 0.026143 -5.033012 1.371483 0.809986 1.283154 1.591349 4.830099 3.532156 2.693803 0.238479 1.764331 -0.931012 -0.816481 -3.595692 0.959653 0.401317 0.866137 2.285730 3.277653 2.509074 1.667796 3.391627 1.588450 -0.711092 3.792763 0.720375 4.423687 -1.876729 -1.431800 1.747870 0.443155 3.157988 3.557338 0.362540 -2.715459 2.676955 -0.670907 -2.407060 -1.432311 -0.295751 -0.983566 0.175956 3.493211 2.580262 -1.152818 -0.418360 6.141359 -1.283880 -6.965444 2.754365 1.715126 2.942021 1.923197 -0.683456 1.893269 2.722890 -0.270575 2.133180 2.444640 2.156835 -3.962984 -0.251220 0.600695 2.068506 3.007404 0.931013 -8.590029 -1.294168 0.603911 4.507076 0.473301 4.609034 -2.307055 0.222239 1.048665 -0.259941 0.564089 -0.185698 2.078825 -1.450219 0.540701 -4.704826 0.487267 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 0.515762 0.214363 0.831615 -0.980350 -1.398403 0.226744 -0.162004 -1.334449 -0.542932 1.570134 0.302456 -0.930624 -1.010867 1.258649 -0.719032 -1.191327 -0.551666 -0.199843 -0.164384 -0.930996 -0.362438 0.636837 -0.383817 -0.469952 0.157822 -0.574420 0.340675 0.932792 0.487592 0.331211 0.175609 -0.748710 0.306748 1.976238 0.801922 0.178780 -0.366190 2.535430 -0.802161 1.550022 -2.253988 -2.259109 2.015559 -0.092496 0.199895 -1.607233 -0.452345 1.138004 -1.518983 -0.127648 0.133186 -0.138680 0.322764 -0.797671 -0.263155 0.894952 -2.299434 1.516949 0.493668 -1.428466 -1.226939 -0.328326 -0.035110 0.641516 -0.786334 -1.152629 -0.085884 0.697452 -0.753347 0.358732 -0.698333 -1.086754 1.677836 0.238120 -0.789792 0.152183 -0.005881 -0.253226 0.991054 -1.016958 -1.585959 -0.762145 0.226876 -0.572577 0.876152 0.993362 1.261834 -2.714583 0.558309 -2.650026 1.046893 -0.991590 0.974988 1.529178 -1.087537 1.292954 0.728468 0.372011 0.967350 -0.129980 1.165822 0.565512 0.796254 1.012643 0.962881 1.223157 -0.866449 -1.293667 -1.214353 -1.334000 0.261923 -0.609559 -2.413109 0.514353 -0.659193 0.757605 -0.222304 -0.013814 -0.349552 1.277283 -2.891316 -0.353285 0.398296 -0.323429 1.098505 0.743250 -0.149264 0.638170 -0.182954 1.397796 -0.633061 0.484519 0.080526 1.284821 -0.406685 -1.271530 -1.944957 0.843929 0.812203 -1.029818 -1.590887 -2.115956 -0.735846 0.959424 -0.771614 1.577828 2.944078 -1.051508 -1.859466 1.581538 -0.524316 -0.002170 1.531677 0.580071 2.081312 -0.811705 -0.434262 -0.564576 -0.615682 0.689861 1.450098 -0.074760 -1.101918 1.493621 -0.023841 -0.436427 0.564982 -0.471582 -0.959056 -1.179258 0.225732 -0.775058 -0.473266 1.428962 -1.283483 1.587196 -0.853887 2.296132 -1.030780 -1.339877 0.303902 -2.590394 -0.504258 -0.660221 0.075187 -0.261283 1.176195 -1.894087 -1.014780 -0.533895 -0.651190 -0.772136 1.449929 -0.500214 0.081099 0.555116 0.190125 2.262177 1.453814 -0.144012 -0.306798 -1.365229 0.612352 1.078807 0.391750 -2.350513 -0.547803 -0.622350 -0.459274 0.502288 0.027401 1.056129 -0.723508 0.160436 0.051860 -0.500455 0.480632 0.384409 -1.204297 0.752762 -0.082323 0.916003 0.586562 1.818739 1.581096 1.531850 0.718195 0.941627 -0.004262 -0.766749 0.086382 0.531217 1.123396 0.103149 0.907055 1.693027 0.947381 0.815997 1.480969 1.121316 -0.110414 1.670412 -0.272463 2.388235 -1.647316 0.097442 -0.105744 0.540314 1.327787 2.352657 -0.591848 -0.542275 0.890749 -0.363939 -0.465211 -1.033887 0.039546 -0.473351 -0.030773 1.211287 1.484287 -0.208623 -0.475380 2.384824 -0.061603 -2.603612 1.719766 0.698573 0.789285 0.659937 -0.499278 0.068904 1.015905 -0.511543 0.662646 1.535000 0.945341 -2.000679 -0.174639 0.061593 1.309393 1.262409 0.835622 -2.751375 -0.080356 0.980125 1.906426 0.018107 1.614637 -1.402732 -0.929073 0.736688 -0.384714 -0.104912 0.321787 0.705990 -0.472797 0.661638 -1.038667 -0.914640 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.885042 -0.110102 0.769436 -1.884282 -1.297699 0.155063 0.580851 -1.293140 -0.614727 1.228288 0.519242 -0.979721 -1.393124 1.625525 -0.331376 -1.466032 0.205614 -1.323813 -0.287569 -0.256618 -0.811624 0.761903 -0.633027 -0.877526 0.660702 -0.299564 0.111698 1.408117 0.895889 -0.527811 -0.548047 -0.903135 0.003956 2.899127 0.964208 -0.437768 -0.149293 3.977262 -0.949546 1.819909 -2.099144 -2.068074 2.835831 -0.520675 -0.380413 -1.904576 -0.530231 1.685817 -1.604799 -0.492767 0.633658 -0.245842 0.419411 -1.415529 -0.460259 1.889249 -3.126483 1.761121 1.184152 -0.595472 -1.298229 -1.021116 -0.057733 0.252070 -1.095509 -1.695116 0.456158 -0.036671 -1.364546 0.072284 -1.562879 -1.588342 2.503250 0.934684 -0.725654 0.446668 -0.239555 -1.340847 1.266599 -1.047490 -2.233690 -0.900587 0.099360 -0.875530 2.191900 0.272645 1.122718 -3.698535 0.448224 -3.804866 0.729100 -2.087039 1.516601 2.745778 -1.618124 1.719688 0.562125 0.749909 0.524244 -0.262983 2.015186 0.562145 0.739686 0.884123 1.583430 1.252841 -1.106390 -1.591168 -1.231191 -1.347147 -0.033906 -0.490945 -3.123534 1.168161 -1.369337 0.411845 -0.176375 0.446985 -0.997599 1.498782 -2.804522 -0.532728 0.381868 -0.670956 1.639346 1.852970 -0.338448 0.313170 -0.733447 1.987437 -0.285683 1.143330 -0.609477 1.829410 -0.152358 -1.715654 -2.097389 0.365434 1.327381 -1.608159 -2.793811 -2.648857 -0.851065 0.176442 -1.238849 2.413441 3.928728 -1.345240 -1.955915 2.485958 -0.432491 1.143094 2.053841 0.530387 2.711524 -1.275332 -0.146612 -0.328851 -0.440804 0.243371 0.570560 -0.345572 -1.417536 1.450565 -0.328211 -0.107826 1.558450 0.203391 -0.965125 -0.447213 -0.034707 -1.276967 -2.154953 2.739370 -0.794035 2.123782 -0.015963 3.453568 -1.045028 -1.543794 1.017485 -1.159521 -0.040251 -1.710943 -0.348732 -0.038771 1.176376 -1.929615 -1.714731 -0.511047 -0.004717 -1.077048 1.993207 0.453573 -0.034940 0.411932 0.351907 1.851883 2.094110 -0.784349 0.215159 -2.181079 1.098836 1.387884 -0.030133 -2.419531 -0.496842 -0.449233 -0.819578 1.177674 0.160397 1.371581 -1.220608 -0.615673 0.854788 0.279752 0.621968 0.615004 -2.822429 0.905045 0.069814 0.285457 1.235972 2.592009 1.981103 1.819163 0.656819 0.506316 -0.281527 -0.115827 -0.901196 -0.092503 0.338447 1.208649 1.313652 1.863322 1.548554 0.965450 1.686162 1.266562 -0.344304 2.256043 0.652256 3.153920 -1.041593 -0.703212 0.409149 -0.145951 2.144343 2.893151 -0.999874 -0.833068 1.471506 0.156768 -0.865549 -1.852383 0.005492 -0.672543 -0.041715 1.140486 0.923167 -0.318226 -0.562273 3.552122 -0.673011 -3.799131 1.898297 0.986007 1.548049 0.999689 -0.192497 0.585108 1.313504 -1.202112 1.487356 1.693470 1.434381 -1.883542 0.084795 0.266342 1.508776 0.406290 0.890891 -3.043975 0.047832 0.861529 2.534629 1.132866 1.465432 -1.263138 -0.680268 0.636923 -0.495012 0.267615 0.124292 1.375342 -1.216179 0.412381 -1.818782 -0.649234 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 0.924064 -0.319289 3.432886 -5.300304 -2.038076 -2.039138 8.477284 -2.905675 -2.124263 6.497513 1.209394 -3.579172 -3.742706 4.963953 0.397050 -2.387183 1.524627 -2.554985 -2.239912 -0.715022 -1.414729 2.758843 -0.964433 -4.264729 3.051498 -0.842259 1.932285 7.577727 -1.417154 0.997866 1.876939 -2.975505 2.193813 8.050909 1.246590 0.669721 -3.705475 10.253211 -10.291717 9.836480 -7.399768 -6.755758 12.592650 -1.578794 -1.400006 -10.064486 -3.314529 5.124950 -1.022834 -6.159272 -0.906235 0.984411 2.842559 -7.355767 -2.626840 7.426863 -7.714470 -0.116989 3.942772 -6.370056 -7.155461 -1.687713 0.259593 1.680996 -8.388938 -5.399681 -0.556219 -4.981454 -1.917954 1.339623 -4.452237 -4.402910 5.793209 1.471189 -1.004419 2.494966 -1.894739 -4.710807 4.425899 0.900871 -3.685841 -4.367582 -0.029867 -3.798372 3.273436 0.600054 5.173765 -10.723265 -0.526104 -8.931748 3.580764 -6.865283 3.537930 7.065657 -1.647878 8.356140 0.147725 2.832686 -0.675947 -1.762469 3.874598 3.464896 6.883171 2.403941 6.395061 6.400416 -6.305063 -9.577662 -7.104729 -3.398710 3.760540 -4.441000 -9.511920 3.250320 -3.128200 -3.128597 1.158946 -1.482301 -2.072339 9.152085 -7.608143 6.180882 4.245940 -1.912845 1.029821 5.642934 0.043485 -0.997303 -1.286699 3.859058 0.324719 5.889207 0.358635 6.343430 -3.969421 -3.772951 1.433111 0.563880 1.131490 -4.244265 -6.306710 -10.319499 -2.300835 4.244183 -3.740071 2.340900 11.153516 -3.010817 -7.008959 4.724058 3.185483 0.526653 -0.107960 2.203509 8.817954 -4.296260 -0.912031 -2.158995 -0.730411 5.282106 14.952836 -1.520298 -6.833539 6.537077 -4.295769 -9.020431 9.272711 -0.135076 -0.133309 1.686751 0.581732 -3.991660 -5.780911 8.737253 -5.399749 8.967658 -5.982432 8.513183 -3.056962 -1.845398 1.719429 -7.594578 -2.218133 -9.712716 -0.490620 0.785588 4.068867 -4.812549 -4.754881 -4.935198 -2.030908 -1.492677 8.082501 -11.408777 -0.981964 -0.741179 -0.394510 5.521286 2.065314 -3.706122 -1.227221 -6.020080 3.185832 3.593443 2.807812 -10.175380 -2.570106 -1.027833 -3.315351 -0.265636 0.676467 4.808576 -3.793493 0.434263 5.331414 -1.292205 -4.208171 -1.729681 -12.073018 2.154160 1.586571 3.311966 2.231665 9.063019 7.126326 3.961537 -0.942442 3.821450 -1.769205 -2.058621 -10.402106 2.397422 -0.254447 0.253857 3.966727 6.385705 3.820146 2.905568 6.432759 2.892273 -0.398702 6.426882 2.443886 7.180696 -0.564798 -3.865519 4.356377 1.016935 5.301588 5.534330 4.660803 -5.093759 4.646921 -1.706757 -5.840254 -2.716189 -1.269408 -1.204816 -0.368903 9.101419 4.235604 -2.788169 -0.144341 10.886209 -1.644247 -13.533784 3.575362 3.005897 5.222942 4.081002 -1.953380 4.980373 6.009157 1.834193 3.838889 3.121812 3.512812 -7.396640 -0.648237 1.416361 2.657577 8.559015 1.508948 -18.414833 -1.842151 -0.149551 8.522884 -1.001251 11.695648 -3.778734 3.530856 1.178253 0.832671 1.248015 -1.420367 2.867771 -2.045477 -0.174938 -12.030512 2.213445 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = 2.881498 0.740577 1.924354 -5.852527 -4.848629 0.122231 2.748778 -5.479313 -2.822220 7.098107 2.065540 -4.853389 -4.223646 6.352535 -1.615708 -4.119548 -0.101451 -3.401038 -1.158078 -1.338254 -1.906757 3.201617 -1.842634 -3.570661 1.457732 -0.471756 0.769136 5.185185 2.688217 0.240074 -0.917562 -3.041910 1.419606 9.177133 3.625523 -1.436186 -2.018751 12.298878 -7.523220 7.662751 -9.377635 -7.973708 11.303513 -1.018726 -1.434064 -9.583499 -3.228560 5.733720 -4.221771 -3.046972 0.556531 -0.894362 1.975485 -4.999941 -2.371689 7.242195 -10.626809 5.702445 4.102537 -4.403028 -5.666458 -2.301870 1.276594 2.550081 -5.544113 -5.922843 -0.034805 -1.428557 -3.298197 0.337243 -5.709768 -5.585104 7.496855 2.040571 -3.235014 0.599359 -2.697541 -4.442463 4.360306 -3.723094 -6.445614 -3.005765 0.321779 -2.660851 4.581222 2.249533 5.333342 -12.584372 1.153704 -12.286401 3.152580 -6.557038 4.587959 8.193110 -4.464384 5.558276 1.107418 2.278678 3.640677 -0.717728 5.314074 2.797717 4.657312 2.634575 5.038100 6.805501 -4.419480 -6.456966 -5.031731 -4.935589 1.369373 -2.034323 -12.023854 3.808100 -4.535997 0.465038 -0.228805 -0.607442 -2.620460 7.017003 -10.004973 -0.569025 1.325039 -1.758139 4.847157 6.783865 -0.448889 1.696737 -2.133163 5.562636 -0.148197 4.756502 -0.349085 6.278166 -4.093012 -7.127243 -5.653499 2.814570 3.739460 -5.502769 -7.953292 -11.162258 -2.264863 1.687791 -4.335789 6.184122 13.138056 -4.492071 -7.998048 7.336493 -0.352411 0.716130 5.792333 1.132142 11.533219 -4.723169 -0.414071 -0.833057 -1.835395 1.911958 8.834102 -1.727794 -5.830782 5.098731 -2.871551 -5.346476 4.779700 1.126089 -3.050998 -1.729646 0.281886 -3.617891 -5.967027 8.852862 -6.284522 7.572025 -3.622308 10.299336 -3.822843 -4.382371 3.190908 -8.181922 -2.052835 -6.081033 -1.281482 0.114649 5.521592 -6.714792 -4.475700 -2.538912 -1.288595 -4.009182 8.040485 -4.544514 -0.424699 1.591724 0.385786 8.165099 5.465473 -2.987712 0.163901 -6.770002 3.472665 5.805592 1.061495 -11.523484 -2.987316 -3.206065 -2.709200 2.236685 -0.157996 5.249610 -4.399257 -0.820242 3.315463 -0.594381 1.540951 1.073736 -9.098000 3.891264 -0.921833 3.344366 3.034038 9.955345 5.375708 6.519932 1.658947 3.101326 -0.881509 -2.599324 -4.189656 1.448119 2.390664 0.577794 4.817393 7.096899 4.270652 3.782999 6.410919 3.598446 -1.442499 7.671182 1.281891 9.942222 -4.250631 -2.149058 1.558583 0.201153 6.453717 9.975703 -1.184918 -4.729525 4.103370 -2.354346 -4.066807 -4.884343 -0.183713 -1.988280 -1.160611 6.505556 5.150221 -0.701217 -2.042585 12.136124 -1.596479 -13.982549 6.979458 3.255562 4.763605 4.388751 -2.016439 2.782692 5.082023 -1.206253 4.015331 6.638991 4.695244 -7.212939 -0.928857 0.751501 5.019882 5.629868 2.678962 -15.346060 0.494118 3.569192 9.540561 1.323874 8.859311 -5.238096 -0.555507 2.428911 0.141362 1.077639 -1.085311 4.332460 -2.986701 1.359615 -7.620212 -0.858919 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.821966 0.032456 0.446301 -1.600009 -1.286610 0.124654 0.388535 -1.238305 -0.639622 1.148555 0.492129 -1.078312 -1.108048 1.690750 -0.399584 -1.303287 0.001284 -1.095777 -0.248778 -0.146449 -0.534577 0.861806 -0.505803 -0.700258 0.468591 -0.087204 -0.052730 1.187764 0.993247 -0.393399 -0.511179 -0.721040 0.115697 2.392025 0.844808 -0.428571 -0.151619 3.457741 -1.197653 1.687818 -2.140117 -1.839183 2.591779 -0.359995 -0.520599 -2.168630 -0.855167 1.418216 -1.409697 -0.415810 0.450431 -0.221059 0.210482 -1.100066 -0.356437 1.803867 -2.995237 1.781936 1.038470 -0.538315 -1.090838 -0.756066 0.104397 0.251638 -0.970431 -1.465102 0.176321 -0.149374 -1.091040 0.048621 -1.323648 -1.379946 2.347095 0.736307 -0.817174 0.281308 -0.393871 -1.202459 1.116283 -1.229261 -1.868001 -0.675687 0.112377 -0.574470 1.694363 0.340083 1.059077 -3.234432 0.436864 -3.252240 0.653558 -1.904113 1.199443 2.341745 -1.494920 1.360549 0.397315 0.525001 0.894688 -0.053418 1.656802 0.602737 0.787303 0.722884 1.195655 1.325344 -0.885076 -1.274907 -1.074962 -1.296944 0.019656 -0.380795 -3.246271 0.970265 -1.098151 0.454890 -0.099114 0.201803 -0.671341 1.327822 -2.443288 -0.434402 0.233420 -0.497552 1.346221 1.841040 -0.261899 0.323909 -0.819319 1.661152 -0.148696 1.193082 -0.352534 1.488877 -0.666724 -1.937591 -1.862538 0.439981 0.994570 -1.400313 -2.241514 -2.560323 -0.559150 0.118581 -1.094227 1.970859 3.482973 -1.193614 -1.914260 2.224031 -0.075428 0.708811 1.828619 0.277723 2.740719 -1.042829 -0.194435 -0.185979 -0.509064 0.116106 0.795328 -0.292952 -1.245528 1.088643 -0.477544 -0.910544 1.400865 0.270182 -0.929105 -0.381330 -0.052834 -1.062985 -1.813083 2.444761 -0.919202 1.948630 -0.327263 2.812480 -0.838623 -1.343857 0.939230 -1.494905 -0.231899 -1.488581 -0.425148 -0.031391 1.174797 -1.768992 -1.256870 -0.431018 -0.128537 -1.153393 1.770460 0.004514 -0.004263 0.460553 0.346981 1.829997 1.769842 -0.716089 0.272739 -1.955615 0.917712 1.440962 -0.048841 -2.626544 -0.424679 -0.624541 -0.628170 0.913932 -0.024105 1.124952 -1.100724 -0.505913 0.666977 0.072545 0.743600 0.501963 -2.269271 0.850847 -0.266285 0.557963 0.970299 2.302725 1.589812 1.611369 0.586968 0.633442 -0.140913 -0.319374 -0.632028 0.028432 0.450039 0.630284 1.194583 1.684879 1.267897 0.862700 1.497222 1.145636 -0.381121 1.966670 0.620056 2.857851 -0.919386 -0.691034 0.232891 -0.081183 1.804229 2.747479 -0.847041 -0.745808 1.146538 -0.122256 -0.739303 -1.665403 -0.016609 -0.585571 -0.375652 1.355518 0.827316 -0.189330 -0.451696 3.033362 -0.504688 -3.412551 1.777615 0.835571 1.216817 0.852705 -0.207068 0.451546 1.306347 -0.944605 1.119722 1.639097 1.277301 -1.615626 -0.152824 0.162917 1.333117 0.724855 0.941771 -2.962339 0.267565 1.015091 2.316056 0.723578 1.567714 -1.111286 -0.627662 0.614850 -0.162470 0.140507 -0.075427 1.091246 -0.933777 0.317216 -1.568452 -0.690049 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = 0.966965 -0.001781 1.046262 -1.283798 0.125961 -0.282685 2.376421 -0.666222 -0.152720 2.081715 -0.120191 -0.173605 -1.349230 -0.469083 0.016882 -0.856129 0.986759 -1.334053 -0.274128 -0.157190 -0.425109 0.186927 -0.184974 -1.561709 0.802556 -0.397901 1.099628 1.599518 -0.272971 0.457646 0.072518 -0.721785 0.727715 2.239398 0.536840 0.006571 -0.880815 1.906557 -0.510361 1.654964 -1.714892 -1.777480 2.723075 -0.460501 -0.212867 -2.292662 1.124795 1.045295 -0.073052 -1.329362 -0.435388 -0.187240 1.189360 -2.083804 -1.354904 1.859590 -1.435335 -0.140374 0.614609 -1.124526 -1.758068 -0.728435 0.316090 0.935051 -1.427031 -1.269364 0.307838 -1.157658 -1.264623 1.028101 -1.402260 -0.800638 1.788282 0.683721 -0.648509 0.312293 -0.620279 -1.427859 0.685316 0.204117 -0.514129 -1.263107 0.030977 -0.069718 0.933676 -0.346506 1.094233 -2.520003 -0.279043 -1.944096 1.005799 -1.322021 1.373178 1.529684 -0.180758 1.931505 -0.340366 0.749737 -0.989922 -1.288306 1.087627 0.951674 2.019695 -0.169483 1.217930 1.133372 -1.326841 -2.594256 -0.843932 0.013154 0.408758 -0.597525 -2.397995 0.540321 -1.330212 0.119970 0.619946 -0.514185 -0.982925 1.936480 -2.504220 -0.159788 0.651826 -0.498998 1.044705 0.815188 0.204422 0.159324 0.600133 1.379465 0.731714 0.675423 -0.196644 1.554336 -0.854466 -0.358374 0.519652 -0.052803 0.808275 -0.857182 -2.052890 -2.068953 -1.157877 0.938096 -0.488551 0.330576 2.033299 0.165750 -1.427418 0.677012 -0.824812 0.051873 0.212033 0.590096 1.105874 -1.597307 0.602759 -0.310749 1.076855 1.263267 4.331730 -0.954189 -1.734939 1.730919 -1.300742 -0.018822 0.046402 0.232184 0.558585 0.405631 -0.968000 -1.074678 -1.236988 1.691456 -1.700587 2.045910 -1.475123 2.367628 -1.239126 -0.758343 0.090860 -1.260943 -0.317174 -1.986952 0.249977 0.710455 0.968493 -1.782470 -1.532748 -0.441724 0.067217 0.329152 2.327577 -2.660920 -0.768309 -0.710701 -0.429520 2.537993 -0.137517 -1.453938 -0.611880 -0.719696 0.669249 0.403155 0.693156 -1.273748 -1.035522 -0.041095 -0.992033 0.395940 0.348742 1.101703 -0.556106 -0.210913 1.820134 -0.187724 -1.253911 -0.587541 -3.153088 0.497570 1.107970 -0.138599 -0.056358 2.245221 1.202982 0.349092 -0.848653 -0.170206 -0.089169 -0.837876 -2.843304 0.289432 0.121187 0.045566 0.520428 1.343036 0.510422 0.267500 1.310162 0.999323 -0.389677 1.231224 0.320453 0.809066 -0.945004 -0.701075 1.422899 -0.411976 1.277230 0.780416 0.597496 -1.425849 1.102506 -0.118030 -0.991652 -0.366790 -0.657333 -0.342887 0.715195 1.426057 1.212631 -0.926685 -0.087174 2.787354 -0.105815 -2.963264 0.855530 0.950199 1.044558 1.325334 -1.055609 1.107279 1.173919 0.792181 0.865925 -0.023603 0.752745 -1.341465 0.060476 0.287158 0.436532 0.553663 -0.401993 -3.013360 -1.948424 -0.230144 2.486661 1.027107 2.858164 -0.620906 1.362834 -0.112471 0.232665 0.492024 -0.562944 0.927386 -0.466732 -0.281603 -2.660314 1.456148 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 28.259369 0.347374 19.718264 -45.906794 -24.859155 -1.682745 25.077282 -57.879060 -28.872635 81.267818 22.788923 -31.786413 -2.733515 45.924531 -13.891557 -19.608306 13.284856 18.938734 -13.130924 -16.774828 -12.570568 16.600946 -17.982829 -51.247200 10.592939 -13.180600 28.406659 34.554292 -19.535864 32.584348 -6.328757 -32.553695 17.815163 82.874416 31.334992 -0.805926 -41.756334 75.090896 -68.892182 63.075060 -79.838977 -67.789933 91.817577 -11.036108 19.260283 -75.369038 -36.411992 40.033570 16.583955 -54.538399 -18.857199 -17.138304 33.223238 -60.237502 -30.075841 41.071600 -43.802550 -3.022535 43.822652 -65.635840 -71.352616 -18.378124 32.273238 23.508951 -78.411294 -53.495902 4.098746 3.143622 -0.006427 11.320301 -61.900638 -74.502802 28.593874 9.879957 -19.973766 4.055893 -30.622947 -58.689381 35.766698 20.148124 -45.206733 -37.460831 2.926243 -28.097032 16.165102 22.858131 73.396203 -107.685107 25.954574 -104.006167 30.773723 -37.948306 50.250936 63.453425 -33.474240 41.680178 19.458323 68.263733 17.436353 -3.093812 41.374699 35.101833 28.659876 3.006503 64.006409 60.942176 -44.480490 -74.880019 -40.411023 -43.090823 31.349997 -38.866345 -87.397072 35.044142 -47.418318 -29.737437 -25.463950 -14.486458 -11.853329 88.384060 -99.077487 -2.628189 36.029698 -19.463307 28.413808 36.464145 -1.352840 13.153496 -16.068057 31.242004 -5.530607 14.451649 -0.445487 61.892719 -60.335717 -42.151300 -19.302608 25.415762 30.386159 -61.497932 -70.260822 -98.529360 -24.079667 43.273342 -33.893817 28.404767 93.705764 -40.817169 -68.703419 36.876725 9.752122 -30.592490 42.938038 22.554712 96.624194 -60.644880 16.238117 -10.200291 -0.794337 37.218571 67.011721 -30.429477 -60.222690 62.714972 -43.229145 -68.349727 83.822509 -8.156631 -8.184499 -7.676081 20.361209 -20.917505 -18.617991 65.781132 -75.673212 62.210664 -53.253637 77.564835 -47.048374 -14.306066 11.062545 -91.943261 -37.263063 -44.606353 10.355510 -11.924388 73.153512 -47.763853 -46.021490 -17.232437 -31.954394 -6.769543 84.586031 -73.943229 -10.178028 5.389671 -17.513254 50.378417 29.794178 -21.702632 -6.188536 -29.831367 28.303321 57.198429 18.170888 -85.841020 -41.663263 -42.758970 -24.626868 -34.660341 9.499731 62.365811 -40.131270 -1.550587 31.770880 -10.011212 -11.960697 -12.599356 -58.885008 36.156564 -17.923507 35.117257 8.053896 95.730833 45.457479 62.797828 4.858489 3.144104 0.473858 -42.152960 -70.891788 32.737407 14.099855 3.936623 37.556270 51.670769 28.194227 39.812179 50.716580 5.273498 26.130798 71.168406 7.494310 66.897527 -21.278896 0.884744 25.206883 -5.857039 55.939629 75.066657 32.357661 -42.375455 23.914487 -37.440920 -61.035140 -22.838824 -4.106430 1.933041 -27.304936 33.293955 63.049487 -8.994581 -33.148927 107.934288 -4.061827 -113.084671 52.679785 22.138092 42.390999 64.229296 -32.469575 51.704871 32.704516 42.101789 38.593750 45.497694 45.410569 -76.478340 -11.964029 9.845848 43.321561 76.764071 2.171076 -128.690997 37.715238 19.649803 77.812002 -12.149292 76.340985 -56.050030 42.408674 7.340539 3.212008 17.718829 -13.627181 43.290559 -13.736407 -9.906627 -92.172377 16.823600 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 6.011683 -0.255125 4.115574 -9.779996 -5.378217 -0.004606 4.595634 -11.993445 -5.813190 16.002000 4.732877 -6.452608 -0.679497 9.802521 -2.944793 -4.480253 2.777905 3.534086 -2.474081 -3.209181 -2.650197 3.528085 -3.846737 -10.323223 2.166265 -2.765778 5.624764 7.113066 -3.479153 6.338518 -1.825259 -6.762555 3.222298 17.399211 6.673662 -0.246908 -8.089412 16.300554 -13.498117 13.136457 -16.445587 -13.932931 18.740685 -2.364864 3.659698 -15.370216 -7.700075 8.247691 2.589050 -10.697691 -3.288892 -3.725193 6.706682 -12.061564 -5.892937 8.548515 -9.705734 -0.031367 9.006498 -12.843188 -14.199237 -4.128088 6.326626 4.619340 -15.813443 -11.032042 1.163388 1.052393 -0.415415 2.233366 -12.740940 -15.459736 6.797371 2.443279 -4.363828 0.809502 -5.868508 -12.341715 7.448278 3.619488 -9.951340 -7.624939 0.449547 -5.875935 4.246958 4.479245 15.017304 -22.557866 5.615380 -22.054610 6.265763 -8.308014 10.498214 13.603296 -7.560997 8.527523 4.277310 14.231009 3.779702 -0.534745 8.974379 7.297078 5.344810 0.747268 13.334471 12.230975 -8.890796 -15.047171 -8.177269 -8.999986 5.933405 -7.977985 -18.747050 7.229590 -9.805492 -5.438316 -5.458235 -2.440690 -2.655353 17.795086 -20.567535 -0.871947 7.103356 -4.092539 6.215780 7.816891 -0.505361 2.797126 -3.602501 6.983331 -1.414268 3.038728 -0.527291 12.731873 -12.180112 -8.879449 -4.923839 5.124842 6.573824 -12.765620 -15.041857 -20.278659 -5.116518 8.677740 -6.982421 6.753733 19.833562 -8.595206 -14.210624 8.236586 1.854726 -5.661419 9.636628 4.666150 19.876000 -12.346867 3.221517 -2.280594 -0.330453 6.971280 12.361660 -6.096638 -12.110886 12.838970 -8.659727 -13.574737 17.659843 -1.642291 -2.133914 -1.871755 3.923004 -4.601025 -4.376813 14.116375 -15.212966 12.864473 -10.328835 16.548741 -9.622479 -3.420371 2.487835 -18.564365 -7.306740 -9.231356 1.987355 -2.511748 14.980836 -10.207838 -9.785808 -3.309201 -6.323628 -1.655765 17.237851 -13.691020 -2.023691 1.366803 -3.256910 10.645360 6.913612 -4.332163 -1.032734 -6.526015 5.995826 11.943002 3.208689 -17.567699 -8.256574 -8.670579 -5.020570 -6.703305 2.038703 12.718209 -8.620208 -0.762899 6.191181 -1.756618 -1.754205 -2.019642 -12.643078 7.465249 -3.612153 6.936584 2.128854 19.574135 9.693134 13.136594 1.427382 0.515439 0.131863 -8.288995 -14.014926 6.370320 3.105605 1.305941 7.727348 10.909491 6.095939 8.140739 10.365878 1.674600 5.441221 14.765193 1.906358 14.421975 -4.272926 0.005036 4.908375 -1.342763 11.892260 16.129148 5.817481 -8.075048 5.116636 -7.166525 -12.222500 -5.481400 -0.706633 0.191452 -5.610357 6.645618 12.554038 -1.726421 -6.921004 22.479356 -0.912240 -23.488528 10.987396 4.698218 8.793828 13.157385 -6.392866 10.315758 6.737536 7.695601 8.438243 9.565142 9.503020 -15.571241 -2.380766 1.985038 8.974038 15.218833 0.888699 -25.585623 7.954468 4.309916 16.231655 -1.812821 15.159699 -11.454529 8.042852 1.606902 0.200430 3.508656 -2.590483 9.052137 -3.113975 -1.896454 -18.632349 2.603931 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 1.517376 0.001977 0.947377 -2.407297 -1.720183 0.295445 0.190163 -2.858524 -1.276775 2.966571 1.151740 -1.526811 -0.524838 2.376590 -0.947043 -1.623324 0.329339 0.472260 -0.460993 -0.895363 -0.679242 0.834756 -0.955779 -2.078712 0.400408 -0.715654 0.998070 1.503447 0.134748 0.925103 -0.785379 -1.488884 0.536797 4.196258 1.686459 -0.228453 -1.302732 4.342804 -2.041862 2.459819 -3.865142 -3.289167 4.063506 -0.543824 0.604210 -3.388756 -1.775958 1.953110 -0.588722 -1.557327 -0.282445 -0.964145 1.231567 -2.385093 -1.104670 2.036255 -3.042774 1.165127 1.950556 -2.392969 -2.782190 -1.096763 1.186272 0.868359 -2.653135 -2.544379 0.454717 0.848756 -0.606778 0.454786 -2.753571 -3.505973 2.508495 0.723627 -1.210986 0.169858 -1.033348 -2.645972 1.737282 -0.003729 -2.777076 -1.594596 0.293786 -1.036705 1.629482 1.020877 3.047756 -5.427579 1.286680 -5.506749 1.411336 -2.120983 2.518981 3.334910 -2.429843 1.819252 1.187103 2.668254 1.240873 0.037848 2.472856 1.378731 0.902696 0.386078 2.789333 2.401530 -1.593581 -2.838911 -1.617652 -2.326186 0.743038 -1.477138 -4.899843 1.645787 -2.316698 -0.418930 -1.336617 -0.221399 -0.636694 3.415321 -4.782339 -0.933596 1.256465 -0.951994 1.936045 2.017966 -0.287797 0.877554 -0.988275 2.087752 -0.538262 0.614864 -0.387684 2.812772 -2.085067 -2.752040 -2.475719 1.214336 1.821782 -2.936166 -3.797579 -4.319625 -1.227456 1.443991 -1.614640 2.230718 5.018299 -2.118919 -3.412942 2.500993 0.109583 -0.645768 3.163860 1.035661 4.704215 -2.697100 0.608036 -0.526067 -0.312204 1.083134 1.180147 -1.249892 -2.478383 2.732741 -1.420925 -2.265080 3.495339 -0.386281 -0.959176 -0.670024 0.709956 -1.234788 -1.358544 3.404239 -2.604683 3.010645 -1.563611 4.273515 -2.277601 -1.579152 0.772018 -3.717252 -1.366746 -1.584237 0.284146 -0.588308 3.255857 -2.688932 -2.372708 -0.519504 -1.167237 -0.747906 3.694310 -1.269181 -0.276717 0.599134 -0.416802 2.528138 2.361265 -0.866795 0.065383 -1.931150 1.420202 2.906488 0.450375 -4.081724 -1.590724 -1.926290 -1.030158 -0.736375 0.402342 2.790693 -1.865203 -0.466657 0.990180 -0.278206 0.506964 0.047617 -2.642173 1.751969 -1.011233 1.292101 0.739691 4.353926 2.511901 3.188180 0.761470 0.125475 0.176457 -1.685336 -1.888800 0.994281 0.981302 0.748752 1.827700 2.603632 1.605700 1.822668 2.413194 0.884562 0.961729 3.517922 0.514111 4.005800 -1.460646 0.072117 0.602178 -0.369786 2.999807 4.436365 0.245214 -1.443913 1.301283 -1.068104 -2.103185 -2.156242 -0.086212 -0.170085 -1.253628 1.386830 2.634439 -0.292280 -1.652941 5.225843 -0.207170 -5.316982 2.986288 1.156851 1.900135 2.559313 -1.279048 1.624758 1.597695 0.674902 1.909195 2.495038 2.352525 -3.484900 -0.536976 0.354195 2.428255 2.453461 0.644294 -4.908734 1.825225 1.518820 3.780546 0.218656 2.725535 -2.639611 0.665624 0.556864 -0.231071 0.600099 -0.254255 2.070019 -1.134178 -0.151897 -3.342226 -0.296442 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = 2.654601 -0.268381 2.175735 -1.706312 -0.669265 -0.989425 5.826460 -2.655322 -1.977698 7.403063 0.511007 -2.386598 -2.354042 3.337967 -0.011872 -0.757058 1.313170 -0.154452 -1.268890 -0.300940 -2.269163 1.185109 -1.080118 -3.689814 2.220875 -0.125122 1.988394 4.796601 -3.048703 2.430155 0.863676 -2.128077 1.659420 5.909113 1.526695 -0.376502 -2.492055 7.858867 -9.588653 7.997690 -5.328183 -5.683884 10.018901 -0.992168 -0.071910 -4.869100 -1.313985 4.397171 -0.405128 -5.517419 -1.071004 0.073990 1.888509 -5.373328 -2.528582 5.358224 -5.722918 -0.473847 2.973370 -4.748460 -7.227106 -1.355487 1.170670 1.248126 -7.200305 -4.139221 -0.270625 -3.311131 -0.385136 1.108017 -5.138017 -4.048409 2.540178 0.519028 -0.652905 1.097848 -2.176620 -2.539899 2.841433 1.781329 -3.336180 -3.203655 -0.238962 -3.719279 1.668981 2.287261 5.226912 -8.344440 1.126788 -8.286985 2.671589 -4.572557 3.080743 5.753593 -1.236891 5.974620 0.384829 4.153243 -0.614059 -1.120289 2.658450 2.881552 3.513793 1.113855 4.537778 6.088737 -5.464934 -7.733198 -5.504689 -1.803902 2.962649 -2.355655 -5.824629 2.461168 -3.545439 -0.419274 0.578170 -0.288003 -1.852675 7.236815 -7.343711 4.126821 2.492167 -1.284821 2.570584 3.394049 0.082501 0.112110 -0.714999 2.364660 0.332691 2.447817 0.239834 4.655428 -4.120377 -1.904428 0.860271 1.139309 1.861497 -3.590733 -4.717711 -9.526551 -1.299238 4.661165 -2.962885 1.858099 8.787358 -2.455964 -4.404826 2.603195 -0.144416 0.077721 0.845953 1.597801 7.802211 -4.268804 0.345052 -0.103744 0.307885 3.599975 9.895757 -1.813509 -4.932198 4.874713 -2.260644 -4.257116 8.051701 0.461443 0.111458 0.758768 0.861043 -1.011577 -3.000514 6.380022 -5.834947 5.126671 -4.664019 6.497580 -2.404523 -0.167106 1.150066 -7.353475 -1.889391 -6.875586 -0.296911 -0.573075 4.150801 -3.897110 -3.316464 -3.059039 -1.835735 -0.604493 7.164065 -6.965785 -0.927384 -0.521538 -1.195303 3.978054 0.992175 -2.696546 -1.269424 -4.297723 1.539450 2.706184 0.495343 -7.701351 -2.591628 -1.385653 -2.313364 -0.723351 0.595460 3.599875 -4.091411 0.434457 4.286400 -0.389891 -2.802557 -1.216797 -6.617713 1.797454 1.193507 2.525286 2.543238 7.869947 4.412155 3.728679 -0.682725 2.743516 -1.103155 -2.165676 -8.475456 2.427255 -0.128243 2.032198 2.776971 3.578610 2.117895 2.158800 2.469606 -0.429636 0.616853 4.826796 2.677404 5.374882 -1.698343 -2.008498 3.284139 0.256342 3.678081 3.141534 1.383570 -4.457133 2.539034 -3.307125 -5.356755 0.349534 -0.649603 -0.675877 -0.653885 4.696956 4.236444 -1.298273 -0.921412 9.100533 -1.445031 -11.803393 2.766271 2.108545 3.602314 5.493067 -1.635424 4.872125 3.843230 3.895591 3.391045 2.870691 3.286619 -6.283832 1.636591 0.911880 2.339959 6.524138 -0.208017 -15.351083 -0.243439 -0.118282 6.000662 -0.702455 8.717571 -3.343503 4.085760 0.130849 -0.493888 1.641106 -1.048710 3.780785 0.137087 0.453652 -10.191026 2.703890 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 1.225718 0.756865 1.864661 -3.051218 -2.358049 -0.616128 3.129570 -3.191179 -2.053476 5.448001 1.303572 -2.982752 -2.459726 3.554964 -0.691923 -2.058624 0.362375 -0.087792 -1.452419 -1.931825 -1.468938 1.424241 -0.932526 -3.148391 1.286185 -0.968638 1.453049 3.518359 -0.390274 1.226235 0.799399 -2.090244 2.047221 5.954912 1.758728 -0.097953 -2.710195 7.108721 -5.158271 5.666151 -6.070017 -5.527024 8.423855 -0.806596 0.047652 -6.139071 -1.845036 3.890135 -0.819076 -3.398454 -1.196736 -0.190978 1.595548 -4.627115 -2.397617 4.215269 -4.807826 1.626531 2.760197 -5.032608 -5.685302 -1.206395 1.080160 1.478096 -5.129551 -3.599816 -0.422954 -1.185253 -1.122057 0.907868 -3.847590 -3.941800 3.577933 0.731134 -1.092846 0.991853 -2.115557 -2.297481 2.610833 0.610993 -3.524615 -2.745691 0.812129 -1.690583 1.513408 2.034644 4.523347 -8.312012 0.234403 -8.182649 2.555748 -3.458703 3.295194 4.973255 -2.126268 4.694608 0.767838 1.803275 0.620028 -0.323253 3.069625 1.791741 3.476885 1.571544 4.253426 5.040463 -3.558895 -6.104642 -3.615849 -3.096678 2.253269 -1.608501 -6.024315 2.400037 -3.482299 -1.282602 -0.408883 -0.243890 -1.201020 5.591508 -6.144585 0.511245 2.588192 -1.398707 2.751261 3.201092 0.096277 0.900986 -0.872865 2.745860 -0.119624 2.362996 0.097097 4.466367 -2.195054 -3.793027 -1.757737 1.506060 1.815485 -3.561609 -4.820301 -7.420880 -1.821349 2.873522 -2.850395 1.749301 8.317715 -2.850431 -5.254561 3.532272 0.519897 -0.044744 2.215565 1.584368 7.927725 -3.906451 0.203098 -0.365803 -0.537856 3.413220 7.754440 -1.740375 -4.500926 4.225015 -2.046513 -4.433894 5.028851 -0.709657 -0.872359 -0.067427 0.883111 -1.838049 -3.080161 4.901211 -3.576115 5.369815 -3.826622 6.444843 -3.136113 -2.208517 1.300226 -5.680752 -2.039220 -4.000356 0.542569 -0.431387 4.296998 -3.712486 -3.383792 -1.881046 -1.874379 -1.354409 5.957465 -5.071572 -0.525732 0.312300 -0.699814 3.291349 2.214215 -2.134401 -0.771516 -3.889199 1.632704 3.670393 2.030413 -7.214828 -2.313830 -2.026092 -2.096890 -0.406894 0.349025 3.675683 -2.187528 0.449217 2.984698 -1.339979 -0.948557 -0.726152 -4.993787 2.354088 -0.179191 2.331797 1.126353 7.423288 4.339258 3.962679 0.046171 2.170319 -0.479732 -2.514287 -4.942826 1.656198 0.825782 1.094151 3.033708 3.931090 2.646423 2.687937 4.403207 0.401387 0.072103 4.942552 0.737724 6.012504 -2.630407 -0.911601 1.905071 0.289829 4.069589 5.805823 1.814704 -4.438040 2.661788 -2.362426 -3.848401 -2.287054 -0.700985 -0.475210 -0.880438 4.560361 4.506828 -1.123382 -1.309427 8.483815 -0.911754 -9.819859 4.340770 1.919900 3.209180 3.753240 -1.991081 2.864055 3.997607 1.994871 2.139209 3.666034 3.366585 -6.299595 -0.312302 0.450535 3.339224 4.870030 0.639435 -11.936065 0.420892 1.417011 5.921074 -0.522251 6.671576 -3.663703 1.543247 1.020491 0.186476 0.660159 -0.401000 2.912089 -1.175069 0.031451 -6.924752 1.224288 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.713959 -0.083096 0.371307 -1.318001 -1.029836 0.206149 0.101943 -0.998730 -0.519129 0.763999 0.455125 -0.760390 -0.727994 1.385422 -0.250707 -1.126496 0.124951 -0.683709 -0.198277 -0.155883 -0.530497 0.628520 -0.473224 -0.560610 0.399410 -0.170179 -0.045177 0.827151 0.691743 -0.353015 -0.531237 -0.607968 -0.017932 2.078361 0.708898 -0.398569 -0.059584 3.012297 -0.569741 1.297661 -1.554626 -1.439853 2.052159 -0.358861 -0.371540 -1.350340 -0.682357 1.158703 -0.994497 -0.338896 0.410065 -0.258129 0.138971 -0.888247 -0.306302 1.287914 -2.244622 1.284278 0.890839 -0.337958 -0.998655 -0.756544 0.122170 0.050993 -0.930377 -1.131862 0.345570 0.089542 -0.799578 0.003001 -1.136669 -1.346272 1.915845 0.744697 -0.565852 0.276295 -0.214431 -1.105112 0.899519 -0.545620 -1.770069 -0.561780 0.078825 -0.649145 1.593761 0.180642 1.017473 -2.800359 0.587111 -3.014404 0.450348 -1.530054 1.128131 2.151284 -1.458989 1.096179 0.486381 0.834201 0.530653 -0.035636 1.568173 0.447000 0.252304 0.602023 1.186693 1.007300 -0.680969 -1.031955 -0.769499 -1.124098 0.014593 -0.329037 -2.533511 0.855576 -1.043657 0.261084 -0.289332 0.473437 -0.598560 1.090943 -1.947393 -0.630827 0.273435 -0.494651 1.222256 1.412849 -0.286250 0.289492 -0.765991 1.459221 -0.262624 0.755480 -0.475229 1.236565 -0.359283 -1.315600 -1.663205 0.275144 0.923593 -1.265800 -2.046573 -2.050236 -0.543772 0.139902 -0.900564 1.794843 2.995576 -1.110394 -1.522897 1.942190 -0.103341 0.747529 1.710359 0.314799 2.265520 -0.949246 -0.093112 -0.150747 -0.362227 0.012091 -0.144119 -0.257273 -0.851102 0.910952 -0.306625 -0.325950 1.734010 0.032637 -0.817485 -0.261307 0.046631 -0.852266 -1.599357 2.050808 -0.403597 1.534721 0.032145 2.479093 -0.706371 -1.115198 0.800720 -0.925510 -0.149196 -1.174426 -0.210623 -0.217657 1.063290 -1.335489 -1.203169 -0.195362 -0.101495 -0.890251 1.392023 0.722812 0.077470 0.417289 0.303516 1.067836 1.682581 -0.488110 0.190924 -1.624646 0.698549 1.312088 -0.198637 -1.740980 -0.293564 -0.519544 -0.509584 0.610277 0.062893 0.939290 -1.018189 -0.534389 0.464977 0.207627 0.710268 0.492087 -1.968632 0.736232 -0.219506 0.279148 0.874684 1.950076 1.498154 1.429557 0.584565 0.322453 -0.017727 -0.109104 -0.627176 -0.119114 0.247558 1.067387 0.973328 1.305732 1.159890 0.786626 1.132487 0.759632 -0.020796 1.655978 0.613819 2.601659 -0.571450 -0.481441 0.132188 -0.173505 1.625413 2.494830 -0.664428 -0.491522 0.964331 0.008515 -0.716373 -1.609537 0.009323 -0.421536 -0.262186 0.639942 0.576424 -0.155543 -0.480790 2.647038 -0.440271 -2.930791 1.474071 0.665162 1.053514 0.915523 -0.112788 0.456823 1.063440 -0.799885 1.160057 1.393839 1.174418 -1.440518 0.120024 0.107552 1.204210 0.237330 0.779370 -2.011865 0.606741 0.778251 1.803090 0.757123 0.973489 -0.915844 -0.483101 0.473632 -0.381124 0.064131 0.137835 1.065009 -0.806429 0.203496 -1.410986 -0.652719 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = 1.189516 -0.640008 2.165369 -3.295729 -1.552643 -0.792137 4.846460 -3.307991 -1.543520 5.290244 0.776987 -2.739837 -1.590832 3.780875 0.655386 -1.104829 1.672662 0.067414 -1.080944 -0.199321 -1.050521 1.621972 -1.079460 -3.577270 1.734397 -0.598689 1.598386 4.402908 -1.838022 1.614380 0.774439 -2.349247 1.464997 5.908497 1.472595 0.549569 -2.621608 7.328536 -7.460075 7.538142 -6.068849 -5.790576 8.698411 -0.984399 -0.495233 -6.555470 -2.416284 3.598409 -0.206455 -4.681345 -0.756293 0.044409 2.030683 -4.835523 -1.869541 4.636912 -4.444976 -0.408362 2.920399 -5.461146 -6.168829 -1.144630 0.374723 1.896635 -6.937005 -3.918973 -0.071447 -2.770101 -0.760503 0.818254 -3.909058 -3.670022 4.290814 1.035507 -0.929607 1.236518 -1.539574 -3.503572 2.858539 1.453932 -3.362048 -3.030528 -0.374115 -3.709692 2.016789 1.082737 5.157901 -8.411983 0.623259 -7.449531 2.989761 -4.118678 3.000357 5.100923 -0.749794 5.298035 0.656028 3.085323 -0.305097 -0.518505 3.003811 2.835554 3.483692 1.402924 5.652738 5.142357 -4.995068 -7.381572 -4.754674 -2.554383 2.830539 -2.562486 -7.839221 2.436538 -3.153771 -1.151132 -0.045847 -0.503752 -1.397883 6.511231 -6.281579 3.344152 2.758272 -1.492974 1.504916 3.700745 0.016295 0.299485 -1.029244 2.637525 -0.176414 3.188536 0.090151 4.600063 -3.880861 -2.219116 0.386069 1.007080 1.469659 -3.541904 -4.685796 -7.882743 -2.221438 3.899164 -2.714585 1.852900 8.346083 -2.784242 -5.766394 3.197762 1.740772 -0.041848 0.662390 1.694899 7.497810 -3.997957 0.267611 -1.449373 0.013985 3.617113 9.466153 -1.301367 -4.683747 4.789785 -2.868778 -6.666175 7.931897 0.003011 -0.360600 1.055459 0.727123 -1.899785 -3.524413 5.934410 -4.040825 5.803548 -4.379773 6.466592 -2.293498 -0.837316 0.790009 -5.341613 -2.437575 -6.130135 -0.552409 -0.623840 3.898212 -3.524648 -3.362488 -2.545082 -2.357969 -0.906408 6.139908 -7.607358 -0.754443 -0.078990 -0.880397 4.044478 1.854787 -2.071392 -1.680312 -4.186567 2.103472 3.024061 0.944537 -6.885306 -2.265115 -1.541488 -2.179390 -1.514050 0.356606 4.283646 -3.663324 0.260456 3.160231 -0.554066 -2.379085 -0.919325 -6.999333 1.877468 1.210569 2.800496 1.989097 7.336962 4.141935 3.918119 -0.103925 2.395029 -1.178697 -1.667739 -7.990976 2.000499 0.146170 0.821911 2.748855 5.111499 2.670092 2.423614 4.486710 0.899458 0.820772 4.886044 1.203493 5.649690 -0.839856 -2.174632 2.870166 0.376576 3.832679 4.662958 1.795108 -4.178258 2.894418 -2.549682 -5.028028 -1.655658 -0.357270 -0.597008 -0.731880 4.466894 4.140801 -1.154216 -1.177035 8.767484 -1.034550 -10.756189 2.842664 1.955034 3.572656 4.725433 -1.382055 4.014884 3.702995 1.983810 3.218215 2.819330 2.788416 -5.947514 -0.105325 0.907671 2.086486 6.258864 0.876803 -12.835281 0.009592 0.075488 6.262038 -0.701018 7.762231 -3.252626 3.576379 0.865735 0.001865 0.981774 -0.851260 3.204732 -0.783334 -0.561557 -9.498353 2.002538 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.068509 0.251082 1.190294 -2.125617 -2.616126 0.590304 -0.422267 -2.356293 -0.768808 1.979148 0.868883 -1.083814 -0.507814 2.429808 -1.130505 -1.402977 -0.432419 -0.880244 -0.048476 -1.097596 -0.356054 1.337558 -0.820763 -0.676492 0.183973 -0.842061 0.114742 1.211437 0.439682 -0.046102 -0.278652 -1.264274 -0.014259 3.098575 1.413144 -0.463404 -0.360693 4.396166 -1.354506 1.569887 -3.447130 -3.145902 2.844525 -0.427736 0.072143 -2.916038 -1.590194 1.465711 -1.047637 0.034055 0.517816 -0.597772 0.713434 -0.862321 -0.319283 1.127923 -3.294928 1.993935 1.142980 -1.945443 -1.658763 -0.769730 0.069034 0.783286 -1.392147 -1.725989 0.501394 1.255526 -0.621748 0.152990 -0.974874 -2.065085 2.922205 0.648489 -0.959824 0.135363 0.006131 -1.877646 1.667603 -1.323105 -2.992678 -0.986944 0.054104 -1.351870 1.740402 0.583073 2.244857 -4.358018 1.161414 -4.580725 1.081870 -1.708999 1.494655 2.575291 -1.985383 1.503754 1.412476 1.477028 1.891904 0.061535 2.255167 1.131449 0.816922 1.572194 1.843720 1.916534 -0.979490 -1.362619 -1.671720 -2.192399 0.282911 -0.796754 -4.462476 1.204678 -0.862594 0.041049 -1.024073 -0.036010 -0.334060 2.916533 -3.588037 -0.688826 0.774333 -0.623513 1.033503 1.553479 -0.357728 0.810558 -0.994582 2.138578 -1.363668 1.200846 -0.218658 1.993827 -1.276312 -2.536111 -3.221471 1.050352 1.154238 -2.113874 -2.704944 -3.059030 -0.959218 0.842885 -1.309694 2.502585 4.728667 -2.265493 -3.337576 2.865426 0.684670 -0.469211 2.657096 0.768583 3.344556 -1.080224 -0.778961 -1.198594 -1.187805 0.381294 0.861678 -0.047903 -1.056797 1.990433 -0.188022 -1.786830 2.803588 -0.499158 -1.826502 -0.575161 0.529233 -1.299690 -1.375896 2.407147 -0.461944 2.426060 -0.530290 3.688987 -1.308545 -1.937538 0.476411 -2.606742 -0.591140 -1.024984 0.161315 -0.216794 1.951482 -2.049965 -1.677976 -0.469704 -1.221943 -1.408753 1.984927 -0.174325 0.571773 1.246748 0.305966 2.235588 3.056744 -0.007723 -0.112262 -1.940686 1.279161 2.154961 0.301535 -3.642430 -0.989462 -1.102113 -0.568968 0.170735 0.121229 2.156516 -1.362760 -0.150124 0.029311 -0.346992 0.966863 0.986166 -2.275873 1.337426 -0.846178 1.563822 0.653232 2.700971 2.364485 2.861848 1.430092 0.978470 -0.106501 -0.833139 0.127547 0.403932 1.652297 0.314817 1.491235 3.221749 1.882421 1.613709 2.350859 1.747024 0.578405 2.720982 -0.467608 4.263887 -2.212248 -0.063665 -0.530746 0.815774 2.485417 4.295466 -0.149147 -0.740205 1.132583 -0.336487 -1.064567 -2.374679 0.532136 -0.469919 0.076343 1.052848 2.392801 -0.091905 -1.052660 3.792429 -0.140321 -4.185322 2.647844 1.027156 1.476936 1.255199 -0.273263 0.285278 1.423382 -0.904245 1.746407 2.695242 1.706190 -2.868988 -0.888309 0.277696 2.156030 1.147516 1.934769 -4.000511 1.233713 1.572573 2.576269 -0.068436 2.236750 -2.233280 -1.236395 1.418034 -0.468811 -0.217458 1.086241 1.306930 -1.642373 0.874325 -1.650961 -1.337795 +PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 1.998235 0.658040 1.955913 -3.166696 -2.994121 -1.175603 0.833001 -3.012473 -1.615422 5.793689 1.443901 -3.844002 -2.770592 4.058230 -1.190213 -2.436598 -0.330888 -0.991291 -0.287999 -1.349591 -0.721087 1.654968 -0.740166 -2.611847 1.328923 -0.187274 -0.065410 2.540743 1.752703 -0.008312 0.174370 -1.677754 2.138859 5.480658 0.731799 -1.460902 -1.889406 6.755984 -4.032498 3.542474 -6.026068 -5.408222 7.279257 -0.925751 0.629124 -5.450706 -1.447449 3.990245 -2.345780 -2.366189 -0.892663 0.691227 0.944031 -4.673670 -2.426586 3.705691 -7.216098 3.991904 3.017018 -3.600867 -3.714367 -0.385050 0.460125 1.193730 -2.365232 -3.640645 -0.648835 -0.679448 -2.349527 0.588905 -3.097281 -2.683419 4.146932 0.588772 -1.258886 1.704262 -0.989720 -1.944986 3.526619 -3.139161 -3.539252 -2.450218 0.547075 -0.938725 2.270525 2.167065 3.000251 -7.225672 1.255616 -7.222547 3.007893 -4.105420 2.578499 5.181555 -3.200504 4.081884 1.473045 0.615046 2.933122 0.269885 3.920024 1.946423 3.215665 2.006802 2.334517 4.454512 -2.962921 -3.796038 -3.147548 -3.472567 0.770025 -0.945855 -6.109928 2.536254 -2.508738 0.405952 0.946386 -1.306606 -0.574712 4.748326 -6.803434 -0.994834 2.153235 -1.097043 1.993723 3.636638 -0.177519 -0.026903 -1.686438 3.532483 -0.368366 1.862335 1.767255 4.183891 -2.029372 -5.722697 -3.058527 1.418364 1.058863 -4.092074 -4.353890 -7.040619 -0.506298 0.928604 -2.507976 3.026221 7.942578 -2.317124 -4.613648 4.296607 -0.110794 -0.333052 4.201819 1.248493 7.466073 -2.895337 -0.989751 -0.392747 -1.400924 2.791544 4.577494 -0.864444 -3.774497 3.518327 -0.647594 -2.954227 1.641967 0.140543 -1.024290 -0.849803 0.951794 -2.554867 -2.610833 4.002126 -2.531316 4.880215 -2.514155 6.780513 -1.868904 -3.021494 2.376754 -5.108797 -1.457974 -2.126376 -0.361403 0.444427 3.002670 -4.477183 -2.870806 -1.927231 -1.319413 -1.940104 5.495903 -3.433613 0.411665 1.375661 -0.507857 4.262269 2.294881 -2.476634 0.490423 -4.416945 1.569847 2.866118 0.949246 -7.954803 -1.534704 -2.413940 -1.086629 1.918114 -0.316838 4.044648 -1.985924 -0.664237 2.539004 -1.073280 -0.090054 -0.989576 -2.561916 1.868967 -1.100602 3.157974 1.716536 6.580087 3.523410 3.942612 0.105783 2.901963 -0.863105 -1.724984 -1.536138 1.320249 0.474759 0.331003 2.979968 3.592142 2.477144 2.848209 4.323874 1.612418 -1.801050 5.530881 -0.366708 5.319555 -3.836130 -0.636528 1.387778 0.359276 4.604721 5.725344 -0.798482 -3.971097 2.658127 -1.847223 -2.305090 -1.963216 -0.649609 -0.397323 -1.336018 3.615562 4.060927 -0.379496 -0.804058 6.475011 -0.440418 -8.120727 5.360588 1.813392 2.771126 1.946689 -1.113290 1.322695 3.244864 0.073679 0.788746 3.751752 3.460847 -5.831537 -0.732375 0.869657 4.513859 3.336129 2.239846 -10.043628 -0.275257 2.669819 4.266949 -0.318804 5.013890 -4.003153 -1.776311 1.346595 0.606185 0.024656 -0.868614 1.539851 -2.177051 0.740885 -3.139320 0.079342 +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.002255 0.225093 0.761669 -1.228362 -1.413046 -0.209522 0.434223 -0.754763 -0.288063 0.426486 0.631830 -0.728569 -0.510545 1.525614 -0.461583 -0.836806 -0.267690 -0.313163 -0.401120 -0.370086 -0.015486 0.806454 -0.230706 -0.356162 0.347547 -0.326897 -0.073703 0.945853 0.295571 -0.374003 0.096127 -0.565352 0.347164 1.440505 0.199094 0.146709 -0.380735 2.065039 -0.991159 1.132860 -1.809424 -1.253237 1.709950 -0.331474 -0.070567 -2.280616 -1.358071 0.831387 -0.455431 -0.347783 0.213376 0.158548 0.283127 -0.854282 0.090471 0.841732 -1.661219 0.903102 0.773742 -1.170207 -0.607571 -0.182248 -0.410252 0.097262 -0.647562 -0.918608 -0.112939 0.268522 -0.281144 0.110845 -0.155053 -1.004667 2.005157 0.095602 -0.357223 0.561902 0.142542 -0.996723 1.054882 -0.748079 -1.177215 -0.604406 0.378564 -0.021612 0.736039 0.145300 0.877959 -2.086747 -0.130145 -1.982414 0.816779 -1.177665 0.549364 1.206118 -1.018095 1.057189 0.582173 -0.081790 0.945004 0.503457 1.049673 0.604241 1.005415 0.713218 0.889329 0.880842 -0.520928 -1.011031 -1.099436 -1.341519 0.343030 -0.439607 -2.345261 0.611325 -0.060209 -0.189243 -0.246762 -0.217342 0.359786 1.587814 -1.109304 0.565264 1.058774 -0.336468 -0.005926 1.147587 -0.211676 -0.082905 -0.737357 0.877971 -0.640677 1.064672 0.068067 1.073450 -0.453915 -1.966497 -1.076359 0.174304 0.050365 -0.952302 -1.096041 -1.458226 -0.146737 0.559969 -0.787655 0.274924 2.387877 -1.153808 -1.741153 1.368347 1.502692 -0.157773 0.633595 0.457733 1.825040 -0.469370 -0.548253 -0.715215 -0.792995 0.652556 1.162164 0.131249 -0.983988 1.022654 -0.201623 -2.712224 1.957801 -0.397269 -0.618595 0.454726 0.339991 -0.867123 -0.813965 1.302233 0.465716 1.690356 -0.681889 1.762144 -0.708278 -1.073752 0.259671 -0.866224 -0.223992 -0.804418 0.057993 0.441838 0.804639 -0.914600 -0.786540 -0.533915 -0.879522 -0.640643 0.951170 -0.960126 0.189543 0.347724 0.140507 0.490176 1.285724 -0.141887 0.170067 -1.190170 0.727546 0.754505 0.500929 -2.375876 -0.272137 -0.419632 -0.336742 -0.025082 0.038893 0.915119 -0.166169 -0.027487 0.316818 -0.726927 -0.040095 -0.011504 -0.834067 0.276968 -0.423072 1.087237 0.123797 1.299117 1.675316 1.286265 0.512355 0.785683 -0.157863 -0.459042 -0.141042 0.306761 0.359381 -0.104867 0.859645 1.476977 1.034413 0.620392 1.539011 0.791609 0.215003 1.456749 0.053798 2.047880 -0.653898 -0.392997 0.074644 0.459910 1.351059 2.040476 0.466519 -0.404466 0.723691 0.203640 -0.573183 -1.085727 0.071467 -0.110657 -0.513231 1.643852 0.972736 -0.319667 -0.211409 1.745234 -0.185149 -1.967949 1.128540 0.382128 0.887432 0.159655 -0.017671 0.180623 1.016119 -0.296355 0.549914 0.992022 0.996568 -1.589842 -1.136509 0.186708 0.885174 1.171828 1.062790 -2.577650 0.229645 0.764207 1.333497 -0.565798 1.283537 -1.058128 -0.565898 0.610717 0.119448 -0.222530 0.269199 0.135528 -0.957416 0.058767 -0.983273 -0.617215 +PE-benchmarks/permutations-of-a-given-string.cpp__main = 0.778069 -0.861899 1.237895 -3.678637 -2.521315 -1.084801 -0.231157 -0.486487 -0.938112 2.217552 1.378078 -3.939157 -3.476648 3.846655 0.234191 -2.882984 1.119750 -1.583073 0.961293 -0.019516 -0.030449 1.195097 0.402432 -1.702215 0.992620 0.618128 -2.602394 2.127391 5.248218 -1.608692 -0.042722 -0.436655 1.224636 3.687910 -0.448610 -2.591370 -0.792043 5.882631 -1.383271 2.624399 -3.408210 -2.005040 5.594086 -0.939602 -0.539860 -4.454632 -2.015996 3.577298 -3.290419 -2.168580 -0.001253 1.556579 0.999535 -3.751091 -2.943682 3.637590 -6.675823 3.693545 2.466188 -0.630665 -0.330950 0.876015 -0.844934 1.093662 -0.642894 -2.468814 -0.857656 -2.268170 -2.856336 -1.057792 -1.735636 -0.213900 4.436047 1.076906 -0.702886 2.133450 0.738483 -1.529482 3.033110 -3.466764 -3.343869 -1.116864 -1.207874 -1.265295 3.925970 -0.385576 1.535282 -4.789625 1.160251 -5.474622 2.317967 -4.640464 0.910638 5.113127 -3.106732 2.876505 0.909123 -1.275475 2.934765 0.741213 4.077012 1.677481 2.062614 2.204749 2.069551 2.611408 -1.389819 -1.362652 -1.960665 -2.530015 -0.634061 -0.672805 -4.829646 2.853874 -1.171304 0.493545 2.280636 -0.583783 -1.008159 2.115012 -1.801445 -0.538588 1.143297 -0.928996 0.204551 4.134672 -0.664777 -1.320078 -1.817667 3.931611 -0.098442 2.692352 3.028497 3.133180 -0.007549 -5.058088 -1.467993 1.106249 0.039568 -2.773941 -3.160388 -5.019016 0.846765 -1.742675 -1.968999 2.786999 6.269841 -0.806887 -2.471101 4.311663 0.484957 1.355874 3.294059 0.202812 5.793346 -1.099172 -2.431358 -0.376291 -1.980662 1.234092 2.378567 0.198108 -1.608232 1.971672 -0.696846 -2.586436 0.525057 0.708595 -0.798000 0.422366 -0.095211 -3.076580 -4.327442 3.108316 0.248029 3.281423 0.524310 5.552024 1.847131 -3.310637 3.425085 0.019749 -0.357003 -1.006900 -0.913998 1.492645 -0.220261 -2.744216 -2.317943 -2.266924 0.718888 -2.490034 3.091073 -0.561602 1.351697 2.504115 0.351695 2.034902 1.332598 -2.086670 1.223551 -4.540308 0.978627 1.674365 -0.530829 -5.011178 -0.269011 -1.358558 0.149591 3.425712 -0.520265 3.230594 -1.886935 -2.048652 2.051032 0.125249 0.527785 -0.309903 -3.321115 0.887336 0.559810 2.233125 2.460035 4.988209 2.523273 2.496085 -0.575060 3.641417 -1.275841 1.485860 -1.169283 -1.227959 -1.228282 0.507309 2.178670 1.457161 2.021824 2.461617 4.148478 2.076235 -2.814894 3.907097 -0.273236 3.161845 -0.466200 -2.182483 1.694009 -0.392391 4.017177 4.767200 -0.636621 -2.767168 2.744765 -0.760586 -1.023327 -3.258588 -0.055437 -0.318332 -0.385719 3.138316 1.297695 0.628321 -0.046813 2.769991 -0.294012 -6.267804 4.648551 1.514095 2.309879 1.464391 0.561657 0.841937 1.795912 -2.237928 0.426325 3.224744 1.949432 -3.635814 -0.015380 1.297268 3.445280 0.720233 3.313946 -6.378629 -1.224740 1.603144 1.725653 0.840745 2.674792 -2.401999 -3.700965 1.719137 0.508427 -0.800868 -2.035920 -0.450909 -2.905554 0.026328 -0.193667 -0.105178 +PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = 0.596212 -0.107436 0.486825 -0.644175 -0.762407 -0.019493 0.419249 -1.051933 -0.400442 1.189069 0.598835 -0.757148 0.290170 1.326665 -0.167534 -0.455343 0.198620 0.339038 -0.150127 -0.024888 -0.331642 0.616001 -0.400105 -0.625460 0.405833 -0.197512 0.205616 0.751139 -0.583313 0.171240 -0.054995 -0.649788 0.197718 1.534355 0.424056 0.262621 -0.446133 1.916349 -1.402962 1.666557 -1.384749 -1.275146 1.794228 -0.269764 0.258257 -0.908574 -0.790839 0.892906 0.235491 -1.040535 0.050356 -0.147117 0.379654 -0.962671 -0.191707 0.781733 -1.123094 0.026539 0.869352 -1.224010 -1.279497 -0.424924 -0.078905 0.161044 -1.580486 -1.076232 0.052063 0.313312 0.044380 0.196657 -0.910561 -1.321454 1.348892 0.057174 -0.338472 0.242605 -0.254892 -0.806183 0.863880 0.071202 -1.197982 -0.699537 0.101360 -0.357822 0.435940 0.498560 1.574463 -2.243152 0.691326 -2.200390 0.919146 -0.988424 0.932400 1.566401 -0.981999 0.926578 0.622850 1.403614 0.531170 0.476598 1.129956 0.618876 0.135564 0.366753 1.099359 1.191237 -0.842125 -1.360447 -1.023986 -1.146820 0.782005 -0.284508 -1.812849 0.659584 -0.650585 0.132577 -0.432613 0.051165 0.235072 1.654021 -1.807869 0.372710 0.892223 -0.344133 0.506822 0.806757 -0.126434 0.145170 -0.724922 0.799896 -0.425515 0.498898 -0.064811 1.214505 -1.195894 -1.192051 -0.597968 0.221464 0.402089 -1.348440 -1.323951 -2.158503 -0.087417 1.289089 -0.876924 0.774253 2.244162 -1.173322 -1.118670 1.128667 0.794080 -0.628339 0.756459 0.359378 1.954651 -0.940314 -0.086077 -0.224142 -0.281246 0.652423 0.862016 -0.185504 -1.194961 1.142295 -0.485900 -1.872397 2.867674 -0.066560 -0.467519 0.118622 0.329330 -0.260371 -0.561695 1.507871 -0.636298 1.231807 -0.904896 1.963569 -0.598106 -0.367510 0.399850 -1.300917 -0.593260 -1.168314 0.084153 0.013893 1.312959 -0.987605 -0.875906 -0.331491 -0.939492 -0.365478 1.242088 -0.741855 0.042890 0.290217 -0.288547 0.808218 0.939158 -0.138649 -0.161769 -1.057925 0.483594 0.850816 0.075185 -1.601260 -0.554770 -0.786170 -0.434553 -0.688029 0.104572 1.096302 -0.927080 -0.042918 0.346195 -0.193563 -0.106598 0.008117 -0.914417 0.493094 -0.146697 0.891407 0.339258 1.631947 1.140261 1.438394 0.438146 0.365616 -0.185858 -0.341840 -1.191277 0.749070 0.241736 0.430744 0.770768 1.014385 0.882827 0.845514 1.008435 0.027074 0.662349 1.536521 0.306393 1.857019 -0.605356 0.047967 0.383609 0.216302 1.441881 1.539995 0.007523 -0.666571 0.451658 -0.504685 -1.218106 -0.237535 -0.041507 0.006243 -0.825021 0.482215 0.788117 0.015935 -0.579672 2.077167 -0.226358 -2.333923 1.042543 0.306141 0.826598 1.112351 -0.204581 0.766413 0.760466 0.393316 0.837285 1.037281 1.230735 -1.396382 -0.296086 0.148220 0.929436 1.443130 0.643089 -2.345279 0.909037 0.713671 1.291916 -0.431492 1.139337 -1.113696 0.413069 0.168394 -0.224659 0.128366 0.061725 0.605069 -0.162043 0.006808 -1.797033 -0.111887 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = 0.365175 0.094457 0.130625 -0.933126 -1.011557 -0.184621 0.381888 -0.474596 -0.294690 0.407219 0.353343 -0.669905 -0.483725 1.270673 -0.093641 -0.688734 -0.012881 -0.782802 -0.235495 0.168664 -0.198065 0.781441 -0.228139 -0.099449 0.346802 0.170700 -0.445835 0.411104 0.448458 -0.722956 -0.350652 -0.393849 0.150099 1.126871 0.158935 -0.237411 -0.160539 1.863611 -0.537346 0.959634 -1.242774 -0.694957 1.074279 -0.306991 -0.119411 -1.473858 -0.719743 0.842362 -0.100044 -0.420317 0.385940 0.196488 -0.181820 -0.525656 0.153647 0.837483 -1.441933 1.040094 0.729416 -0.158985 -0.190362 -0.304299 -0.296259 -0.043229 -0.519833 -0.812765 -0.014524 -0.080639 -0.491689 -0.003713 -0.432705 -0.811376 1.303778 0.431913 -0.503074 0.344867 -0.050614 -0.799274 0.818305 -1.033559 -1.023194 -0.238674 0.144605 0.120689 0.822068 0.035373 0.442137 -1.704885 0.201919 -1.676611 0.387952 -1.159200 0.504351 1.344173 -0.726417 0.614339 0.234591 -0.027177 0.965032 0.312623 0.997820 0.439172 0.530934 0.424972 0.495575 0.711812 -0.340408 -0.511436 -0.510088 -0.927651 0.136067 0.061628 -1.568520 0.645452 -0.155178 0.147397 0.049160 0.165041 0.040956 0.708144 -0.990632 -0.391524 0.525124 -0.290177 0.449199 1.216688 -0.344058 -0.064490 -0.955036 0.865402 -0.119077 0.989430 -0.107789 0.779218 -0.486687 -1.412218 -0.973266 -0.000263 0.248400 -0.874727 -1.033025 -1.393302 0.064278 -0.111054 -0.814743 0.755597 1.920906 -0.946704 -0.947721 1.404440 0.730719 0.230434 0.646370 -0.004798 1.509143 -0.412256 -0.268474 -0.058798 -0.464967 -0.004718 0.405738 0.178673 -0.749074 0.317132 -0.217507 -1.615515 1.014911 0.159774 -0.603235 0.199676 0.025543 -0.478546 -0.932172 1.185392 0.047501 1.042504 -0.195397 1.331058 -0.241728 -0.647491 0.663363 -0.319747 -0.017432 -0.736875 -0.263754 0.326685 0.532366 -0.826362 -0.460568 -0.119007 -0.442962 -0.837222 0.576557 -0.188819 0.076646 0.292743 0.424942 0.641250 1.139146 -0.207771 0.361079 -1.151384 0.647065 0.505063 -0.040734 -1.442524 -0.094198 -0.400441 -0.309060 0.397711 -0.151355 0.437311 -0.293644 -0.395881 0.381536 -0.207238 0.344943 0.202146 -0.561468 0.220147 -0.293491 0.654861 0.337803 1.063074 0.900518 0.970368 0.543231 0.293737 -0.133674 -0.005878 -0.229736 0.088504 -0.044192 0.130364 0.752654 0.735421 0.890822 0.353557 1.088596 0.400910 -0.154863 1.167414 0.258880 1.682716 -0.328777 -0.431508 0.139964 -0.091509 1.086478 1.687324 -0.360734 -0.320443 0.665103 0.025095 -0.537970 -0.579185 0.036318 -0.255373 -0.570789 0.747414 0.156886 -0.161825 -0.110228 1.401478 -0.450289 -1.623376 0.841626 0.304878 0.742209 0.284233 0.242436 0.305593 0.696589 -0.713098 0.513216 0.905892 0.850531 -0.799253 -0.736130 0.056056 0.581416 0.470061 0.813923 -1.508298 0.184960 0.792795 1.106564 0.033614 0.501001 -0.632793 -0.542637 0.516006 0.105093 -0.144429 -0.000829 0.408246 -0.650522 -0.024106 -0.632707 -0.412307 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = 8.500693 0.540078 6.626817 -15.205665 -5.483763 -3.004819 16.015429 -16.693894 -8.404685 24.558777 6.672614 -13.198917 -5.978820 12.116266 -1.232912 -6.908012 8.339592 2.572407 -5.076655 -4.024851 -7.015402 4.056126 -4.865953 -15.787142 5.409403 -2.899913 8.819508 14.955084 -4.457744 4.859893 -0.626042 -9.085198 6.682623 27.394489 8.847295 -0.249435 -13.765801 26.013921 -19.290681 24.862104 -24.749411 -15.366327 31.801955 -3.911442 3.309519 -26.787075 -7.737119 15.851627 3.630859 -19.175635 -5.998520 -4.019822 9.735606 -22.115206 -11.749047 20.623554 -13.809684 -0.644003 15.323084 -20.382180 -23.174273 -5.046108 8.441585 7.511636 -26.305660 -19.061238 1.043015 -5.777879 -4.050016 5.795951 -23.234596 -21.442514 10.630271 4.262398 -6.484313 2.599043 -12.186574 -15.035625 10.253167 5.646811 -12.558942 -13.121525 2.456636 -7.596219 5.863632 4.726315 21.064128 -35.234389 3.318619 -32.994189 9.873398 -15.906777 17.230170 22.361479 -5.117227 17.586265 1.550543 11.208834 -0.248558 -0.164554 13.097094 8.071752 11.464696 0.149364 20.732708 18.355452 -14.594657 -27.789422 -11.678572 -11.310269 9.795176 -6.864775 -24.527186 12.672528 -19.409723 -4.694870 -3.954369 -1.026407 -4.495110 25.873765 -24.975986 0.429965 11.509001 -6.944638 11.885745 16.486926 1.034206 3.784162 -5.650150 10.544830 3.195297 9.001991 -1.320636 20.781616 -14.220374 -14.712683 -3.200739 4.326605 10.594697 -17.534592 -23.801950 -30.423244 -9.312364 11.169389 -12.787975 10.412122 30.815206 -11.504297 -19.181863 12.210537 1.958283 -3.986696 9.296186 6.203352 34.142209 -21.930283 6.660766 -1.566569 3.010144 14.158963 31.148471 -11.707658 -22.717273 19.906625 -14.687282 -21.145062 26.213404 1.332270 -0.294077 6.818276 2.353744 -3.514710 -13.660842 22.973588 -21.309143 24.228519 -16.633589 28.773831 -13.590717 -5.327938 6.100253 -17.899392 -8.697929 -16.797427 3.198699 -1.602568 21.732841 -14.014626 -16.393350 -5.671444 -9.469256 -1.597770 28.589786 -21.142434 -4.962851 -0.742745 -7.435284 18.197599 7.292255 -10.768833 -2.148588 -14.251716 10.129710 14.451796 7.941310 -24.152984 -12.449494 -10.826706 -10.340524 -8.589295 2.785182 19.330893 -13.312458 -0.688045 13.873159 -1.687907 -5.633494 -4.743378 -24.336359 11.498671 -1.171855 7.042191 3.184684 32.626852 14.676092 17.327351 -1.602028 0.601131 -2.914255 -10.124486 -28.866311 8.940609 1.175412 3.399085 11.925841 13.113886 8.626036 11.654145 17.706863 -2.375388 4.758625 22.136195 3.622094 20.143824 -8.126629 -2.189825 11.990659 -4.754384 18.991156 21.313336 7.706357 -19.949486 10.082964 -10.367823 -21.038163 -9.852729 -4.774548 0.002656 -8.465678 14.865160 16.887796 -4.161386 -8.961134 36.972031 -2.854222 -39.848475 16.621486 7.382485 12.685450 20.044597 -9.331318 17.724500 13.636203 11.804857 8.216838 12.669448 15.160752 -22.829226 -2.336289 3.355745 11.661088 20.110798 -1.362589 -47.550964 2.357767 6.015075 28.190194 -0.431055 27.955040 -15.550286 15.585003 3.084704 2.773919 5.926938 -6.573831 13.817482 -5.318830 -4.122638 -31.826625 10.666126 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = 1.952287 -0.597609 2.596556 -3.959215 -2.535127 -0.946181 4.792890 -4.288910 -2.271706 7.960403 1.559555 -3.673444 -1.018505 5.336763 -0.318108 -1.710235 0.891328 -0.072033 -1.507778 -0.345220 -1.786612 2.761858 -1.576275 -4.049078 2.512496 -0.802683 1.815075 4.837930 -2.786028 1.969007 1.132644 -3.178271 1.613054 7.979448 2.020222 0.583396 -3.312795 9.058427 -8.817847 9.278993 -7.346713 -6.904977 10.744557 -1.369025 0.469302 -6.210748 -2.733940 5.013521 0.974959 -6.471001 -1.175991 -0.053515 2.663649 -6.378120 -2.489067 4.912558 -5.983476 -0.429944 4.227268 -7.079152 -7.967236 -1.396634 0.994139 2.065669 -8.835163 -5.450410 -0.471176 -1.599721 -0.510162 0.635731 -4.825307 -5.852835 4.594634 0.926584 -1.609439 1.691425 -2.265882 -3.923560 4.358359 1.089606 -4.555239 -4.046563 0.019684 -4.477790 2.228984 2.300943 7.201993 -10.844612 2.526471 -9.848515 4.005340 -4.777017 4.142163 7.177183 -2.298879 6.390511 1.625690 5.692721 1.141777 -0.126228 4.201435 2.937232 3.683695 2.308665 5.715673 6.704352 -5.954263 -8.478202 -6.183430 -4.159320 4.169781 -3.446842 -7.991964 3.517081 -3.392584 -0.855770 -0.345609 -0.668190 -1.235198 9.379288 -9.519877 3.273896 3.953721 -1.763292 2.020034 4.239559 -0.068835 -0.055175 -1.825649 3.457914 -0.937767 3.063980 0.519929 6.484754 -5.481127 -2.195112 -0.195572 1.686114 1.821353 -5.496320 -6.088057 -10.907735 -1.860562 5.584482 -4.166544 4.010164 10.868634 -4.330021 -6.342595 4.551212 1.725915 -1.547205 1.726313 2.246031 9.051348 -4.803485 -0.612443 -1.728385 -0.935607 4.725510 10.771016 -1.396694 -6.288519 6.536836 -3.378765 -7.321053 10.751785 -0.090482 -1.065530 0.142899 1.791946 -2.359278 -3.345107 7.256854 -6.295313 6.860612 -5.701128 8.859878 -3.356820 -0.960593 1.666548 -8.743749 -3.179897 -7.338485 0.098307 -0.520743 5.481924 -4.991728 -4.168669 -2.639520 -3.446583 -1.671091 7.821780 -8.440194 -0.475661 0.345757 -1.534308 6.172231 2.500499 -2.375499 -1.737311 -5.000336 2.703843 3.835622 1.204950 -8.567314 -3.628452 -2.688330 -2.765354 -1.434516 0.537402 5.401028 -4.870902 0.671357 3.784092 -0.858901 -2.472151 -1.263449 -8.230171 2.592871 0.447424 4.626634 2.185350 9.090969 5.763821 5.795193 0.308889 3.219241 -1.446327 -2.520558 -8.550284 3.285461 0.591119 1.188350 4.203594 6.100309 3.747791 3.826088 5.321959 0.935386 1.701872 7.208328 0.775944 7.588828 -2.309043 -1.698553 3.342436 1.185793 5.884431 6.118460 1.817504 -4.505101 3.424389 -3.241576 -6.686433 -0.739457 -0.050281 -0.594784 -1.278971 4.866637 5.157704 -0.899637 -1.896919 10.930521 -1.334923 -12.667526 4.584017 2.455421 5.119894 5.412133 -1.725123 5.630857 4.277715 3.000060 3.736913 4.580236 4.350633 -8.279796 -0.274689 1.206414 3.676533 8.339805 1.692268 -15.556106 0.942280 0.884969 7.567173 -2.072736 9.129031 -5.063675 3.323753 1.369689 -0.069247 1.258091 -0.882838 3.369262 -0.709594 0.579987 -10.897581 1.510722 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 2.060009 0.171411 1.761647 -3.889399 -1.863603 -0.428787 2.968557 -4.058078 -1.834138 4.864077 1.721064 -3.196405 -1.701620 3.174859 -0.716044 -2.130335 1.742301 0.388023 -1.103535 -1.127430 -1.623713 0.999005 -1.213300 -3.396632 1.159973 -0.803606 1.854574 3.514002 -0.071140 0.638961 -0.603389 -2.069434 1.383998 6.756266 2.232916 -0.287238 -2.664024 6.812306 -3.506519 5.411470 -6.070111 -3.506556 7.229597 -0.932016 0.501883 -6.667816 -2.297967 3.751023 -0.391357 -3.580364 -0.927271 -1.122534 2.061836 -4.849645 -2.456287 5.037664 -4.174250 0.965667 3.541503 -4.231809 -4.868105 -1.346747 1.763747 1.485704 -5.300398 -4.495695 0.473304 -0.709436 -1.463250 1.386233 -5.269733 -5.152793 3.552130 1.116791 -1.844840 0.638842 -2.429135 -3.712502 2.498988 0.554592 -3.472352 -2.960389 0.751196 -1.590522 2.219195 0.860389 4.532566 -8.634351 0.672099 -8.314678 2.253644 -4.204564 4.168795 5.535305 -2.090709 4.001452 0.583046 2.046927 0.298779 0.298627 3.530067 1.786266 2.423648 0.149395 4.842340 3.864876 -2.913659 -5.969765 -2.513734 -2.995103 1.599947 -1.390512 -6.690609 2.889302 -4.636841 -0.385279 -1.147114 0.095495 -1.045126 5.658574 -5.748992 -0.381569 2.479759 -1.704296 3.107549 4.319164 0.038980 1.081389 -1.616371 3.035042 0.458768 2.097472 -0.661450 4.746367 -2.729296 -4.458935 -2.158063 0.948666 2.728572 -4.059746 -6.109703 -6.839721 -2.348940 1.993218 -2.955700 2.986042 7.759415 -2.810827 -4.854186 3.527755 0.499805 -0.282962 3.235347 1.509761 8.305101 -5.071647 1.463115 -0.633312 0.428020 2.745640 5.623469 -2.682162 -5.024088 4.503865 -2.964609 -4.778589 6.165509 0.178112 -0.514094 1.590555 0.372197 -1.090818 -3.706521 5.803370 -4.018135 5.917518 -3.228587 7.352240 -3.321704 -2.229841 1.560973 -3.550540 -1.577619 -3.387595 0.664525 -0.345560 5.076394 -3.606967 -4.147164 -1.049107 -1.982968 -0.642957 6.537053 -3.130323 -1.010436 0.084612 -1.409538 4.228195 2.540055 -2.473526 -0.032904 -3.787344 2.473960 3.694712 1.643913 -6.011155 -2.487973 -2.516648 -2.309583 -1.501030 0.681728 4.435204 -3.111267 -0.566538 2.816434 -0.439277 -0.458598 -0.654954 -5.769980 2.789193 -0.685708 1.346433 0.970471 7.524090 4.012971 4.227871 0.044154 0.084770 -0.528100 -2.272881 -5.518132 1.665626 0.629741 1.122855 2.811943 3.340735 2.254605 2.642676 4.132945 0.008454 1.016049 5.357449 1.143081 5.451493 -2.213571 -0.480738 2.278347 -1.236578 4.811480 5.972711 1.072879 -4.190732 2.506228 -1.662079 -4.247824 -3.630095 -1.124941 -0.162351 -2.066934 3.586472 3.710278 -1.006182 -2.136323 8.853165 -0.609007 -9.322021 4.333003 1.803464 2.830353 4.208073 -1.989692 3.444072 3.337811 1.735574 1.999343 3.187205 3.757544 -5.339607 -0.879379 0.684720 3.050969 3.880606 0.192070 -10.489820 0.648939 1.897540 6.813478 0.475721 5.977023 -3.658946 2.523164 0.925051 0.355235 1.078226 -1.214964 3.248800 -1.857882 -0.813917 -6.677406 1.485655 +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.563864 -0.224813 0.380533 -1.942600 -2.050339 -0.296228 1.536764 -2.043963 -0.897382 2.544949 0.666047 -1.706759 -0.972433 2.507882 0.201159 -1.152689 0.638578 -1.831849 -0.190285 -0.268425 -0.705125 1.588478 -0.690608 -0.796416 0.509819 0.147175 -0.445154 1.188299 -0.050598 -0.720106 -0.606552 -1.470891 0.579728 3.332769 1.218494 -0.474371 -1.484270 4.701131 -1.888048 3.289267 -3.960556 -2.195555 3.204826 -0.867418 0.058169 -3.625479 -1.119626 2.342657 0.894293 -1.881522 0.275906 0.091951 0.405131 -1.623489 -0.680938 2.337231 -2.683365 1.593506 1.773507 -1.824170 -1.510179 -0.873476 -0.288133 1.062663 -2.894300 -2.373602 0.344832 -0.455602 -0.907133 0.557530 -2.091493 -2.635246 1.930394 1.292511 -1.530443 0.064658 -0.771802 -1.792061 1.986444 -1.062484 -2.616344 -1.150470 -0.266838 -0.355803 1.271725 0.383159 2.304280 -4.941770 0.914241 -5.003920 1.260338 -2.660290 1.885909 3.220152 -1.218079 1.774425 0.493964 1.113896 2.219634 -0.383296 2.146453 1.412726 1.501852 0.873512 2.242828 2.475253 -0.958081 -2.088780 -1.256280 -1.807007 1.149860 -0.350031 -3.280939 1.902104 -1.299941 -0.168604 -0.298741 0.589991 -0.470001 2.768300 -3.397754 -1.272159 1.473057 -0.875252 1.727517 2.673918 -0.969635 0.473387 -1.959219 2.085698 0.045264 2.443472 -0.273558 2.506329 -2.030723 -2.680522 -2.256609 0.558876 1.431419 -2.814553 -3.104792 -4.339901 -0.369954 0.554568 -2.260448 2.350799 4.987428 -2.591736 -2.312806 2.888841 1.005094 -0.498967 1.439770 0.106967 4.318339 -1.842166 -0.024004 -0.210241 -0.576503 0.530544 3.639197 -0.194548 -2.306617 1.565471 -1.076739 -3.574972 2.716157 0.362821 -1.500615 0.419765 -0.165774 -0.260101 -2.048422 2.797384 -1.798087 2.280793 -1.494416 3.173562 -0.881938 -1.031663 1.562937 -2.039362 -0.802081 -1.659798 -0.090739 0.395125 2.335164 -2.365379 -1.449859 -0.424676 -1.908947 -1.508009 2.316791 -1.502260 -0.176714 0.824328 0.655119 2.993127 2.617729 -0.408360 0.180993 -2.491860 1.834427 1.788508 0.559469 -3.114190 -1.379161 -1.483626 -1.135192 -0.192737 -0.011837 1.941556 -1.542020 -0.531850 1.245849 -0.255188 0.386204 0.627539 -2.540300 1.252523 0.046698 1.718034 0.636986 3.577351 1.499516 2.677426 1.292518 0.123485 -0.593673 -0.651908 -2.125263 0.922152 0.438580 -0.077371 1.816900 1.860024 1.997940 1.091414 3.154663 0.345000 0.298232 3.041992 0.183156 3.874386 -1.541511 -0.353063 0.796260 -0.538516 2.833227 4.340840 0.103192 -1.767099 1.682771 -1.199869 -2.511962 -0.991812 -0.122220 -0.452231 -0.720250 1.614822 1.402290 -0.349858 -0.991715 4.378371 -0.827739 -5.099769 2.322273 1.134560 1.722150 2.280268 -0.198409 1.709535 1.545448 -0.580399 1.585892 2.651189 2.165599 -2.479443 -1.625235 0.109199 1.204259 2.219347 1.287364 -5.234034 0.296487 1.899507 3.555397 0.093137 2.302277 -2.387620 0.046969 1.357489 0.095385 0.126591 0.159565 1.844910 -1.360350 0.084658 -2.835362 0.293933 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = 0.066146 -0.011008 0.045480 -0.045720 0.032277 -0.019850 0.144477 0.035089 -0.033142 -0.103578 -0.034375 0.050020 -0.106276 0.074098 0.021985 -0.075661 0.004278 -0.169583 -0.089680 0.092815 -0.029077 0.036185 0.007164 -0.013802 0.073418 0.044875 -0.028998 0.005318 -0.136428 -0.196475 -0.008558 -0.024649 0.028277 0.065249 -0.050141 0.129867 -0.033588 0.123491 0.111811 0.173592 -0.091413 -0.099711 0.057936 -0.071556 0.013304 -0.149058 0.032497 0.088107 0.084452 -0.107447 -0.001969 0.060736 -0.160261 -0.097248 0.014533 0.070537 -0.139750 0.061055 0.036233 0.018944 -0.038731 -0.017619 -0.051505 -0.138868 0.065560 -0.056166 -0.029036 -0.037414 -0.136669 0.082733 0.005222 -0.003626 0.192199 0.057006 0.029390 0.087629 0.034184 0.066508 0.060871 -0.155142 -0.020808 -0.050149 0.027776 0.109507 0.087641 0.035314 -0.063102 -0.098312 0.044278 -0.056411 0.045545 -0.115674 0.008391 0.067915 0.067485 0.123217 0.034266 -0.071469 -0.070394 0.082731 0.074667 0.001209 0.028950 0.047964 0.047809 -0.086217 -0.052370 -0.077618 -0.046408 -0.061116 0.045875 0.037027 -0.055429 0.019190 0.055234 0.126178 0.043605 0.123259 0.077854 -0.150574 -0.191704 0.054642 0.095628 -0.017976 0.039236 0.038664 -0.023052 -0.063891 -0.098209 0.047313 -0.007111 0.093314 0.006004 0.032772 0.093784 -0.078576 0.044032 -0.088804 -0.033511 -0.010791 -0.048118 -0.067798 0.012537 0.124736 -0.077483 0.054293 0.131108 -0.031792 -0.015274 0.080968 0.155334 0.111244 -0.064090 0.043707 0.039784 -0.000993 -0.059591 0.094787 -0.004611 0.070303 -0.159583 0.019237 -0.078300 0.043309 0.020191 -0.169472 0.170307 -0.053799 0.003141 0.180289 -0.065463 -0.072543 -0.080300 0.041058 0.180227 0.161120 0.037660 0.091020 -0.006335 0.028954 -0.000821 -0.006074 0.026830 -0.124265 -0.010381 -0.042687 -0.030199 -0.132009 -0.043211 0.023225 -0.077747 -0.032922 0.054803 -0.069789 0.009830 -0.023803 0.032846 0.008205 0.014477 -0.066363 0.005431 -0.121709 0.029739 -0.078194 0.042340 -0.039351 0.046056 0.043944 -0.020054 0.123354 -0.003173 -0.048483 0.079122 0.004683 0.095039 -0.047872 -0.076161 -0.033027 0.160195 -0.153844 0.081164 0.020061 0.012311 0.061288 0.117500 0.002940 -0.027552 0.044775 -0.010939 0.056440 -0.092349 -0.074899 -0.133068 0.130191 0.040858 -0.104642 0.068867 -0.010132 0.102498 0.044125 -0.010265 0.085160 0.109287 0.101637 -0.020398 -0.106825 0.066394 0.006437 0.069612 -0.026956 -0.164734 0.066927 0.071824 0.029773 -0.016665 0.084062 -0.032261 -0.024474 -0.119977 0.151965 0.005755 -0.002892 0.045146 0.086665 -0.064856 -0.102547 -0.002407 0.025404 0.065636 0.002822 0.057642 0.064742 0.105375 -0.013667 -0.080686 -0.018394 0.083205 -0.080484 -0.026422 0.006181 0.011940 -0.054692 0.065192 -0.001187 -0.078485 -0.001222 0.061276 -0.050782 -0.091431 0.006662 -0.015892 0.006405 0.033045 -0.013489 0.062625 0.024816 0.070095 -0.140402 -0.110922 0.027413 +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.673395 -0.356582 0.556230 -2.704843 -2.890942 -0.317397 2.556787 -2.288151 -0.934466 3.041436 0.866629 -1.931633 -1.683086 3.646732 0.321761 -1.261430 0.803324 -2.870427 -0.215482 0.197764 -0.747732 2.291849 -0.922794 -0.717778 0.785428 0.512867 -0.580469 1.976496 0.425887 -1.041368 -0.871188 -1.815616 0.321128 3.930159 1.393724 -0.513133 -1.543051 6.759352 -3.930617 4.837819 -5.172412 -2.965950 4.306705 -1.018141 -0.701973 -5.458342 -1.696248 2.928735 0.755486 -2.662254 0.771010 0.169138 0.553747 -1.858350 -0.560300 3.225762 -4.072640 1.814836 2.256323 -1.723138 -1.595852 -1.187790 -0.270429 1.222182 -4.291008 -2.814112 0.394162 -1.575512 -1.287960 0.310332 -2.437081 -2.938997 2.753197 1.606655 -1.909319 0.162676 -0.816736 -2.967665 2.577279 -1.711863 -3.683802 -1.183623 -0.694370 -1.085882 1.934260 0.137444 2.742386 -6.341744 1.063111 -6.372468 1.272880 -3.830904 2.009981 4.175093 -1.666999 2.447120 0.529238 1.714051 3.007664 -0.666589 2.624227 2.147481 2.234406 1.206398 2.928952 3.460799 -1.617939 -2.613537 -2.290226 -2.342823 1.447505 -0.709941 -5.261302 2.187957 -1.262293 -0.553026 -0.092384 0.516888 -0.813925 3.843584 -4.059702 -0.099467 1.502861 -0.942251 1.719843 4.019941 -1.114825 0.296696 -2.263321 2.660942 -0.109937 3.831176 -0.292573 2.985024 -2.828151 -3.164348 -2.362840 0.551177 1.526921 -3.148533 -3.647277 -6.127808 -0.351461 0.648203 -2.635252 2.567914 6.906772 -3.478378 -3.250979 3.747478 1.312710 -0.219368 1.560389 -0.090985 5.311915 -1.871892 -0.413180 -0.407502 -0.947815 0.290864 5.488333 0.075557 -2.678468 1.710787 -1.703454 -5.765628 4.126381 0.793573 -1.869448 0.333759 -0.201505 -0.965533 -3.297190 4.145923 -2.737328 3.077696 -1.896079 3.827405 -0.769396 -1.079492 2.010644 -2.899709 -0.619943 -3.400569 -0.711876 0.651209 2.674994 -2.821390 -1.582160 -1.261414 -1.927709 -2.127847 2.739468 -3.157161 -0.149734 0.976305 1.103346 3.509457 3.562951 -0.633596 0.214957 -3.417788 2.290623 2.133733 0.448627 -4.748671 -1.509214 -1.853836 -1.429410 0.202712 -0.170291 2.230662 -2.118258 -0.829754 1.686687 -0.128585 0.266550 0.894448 -4.695153 1.345398 0.130494 2.437574 1.200694 4.207797 1.986349 3.674075 1.566576 0.746249 -0.711372 -0.371026 -3.068641 0.894153 0.660426 -0.329934 2.260130 2.858068 2.733871 1.383350 3.631454 0.941951 0.078825 3.741686 0.883907 5.480117 -1.528803 -1.372839 1.118769 -0.328128 3.210447 5.371952 0.551741 -1.730252 2.085706 -1.249513 -3.224770 -1.375797 0.023879 -0.836370 -0.687987 2.716480 1.553470 -0.356537 -0.889882 5.376136 -1.309573 -7.088527 2.529361 1.214467 2.432931 2.719658 0.063107 2.176629 2.092238 -1.176393 2.836587 3.600233 2.388300 -2.706862 -2.069851 0.247889 1.483990 3.425707 1.679004 -7.688016 0.496467 1.869662 4.450019 0.241781 3.825995 -2.882871 0.017262 1.664960 -0.078083 0.222117 -0.098836 2.368137 -1.337507 -0.065591 -4.552927 0.126290 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = 0.157416 0.149792 0.292924 -0.106877 0.050928 -0.001839 0.387327 -0.286591 -0.188772 0.294574 0.169053 -0.330711 -0.054113 0.108114 -0.057935 -0.082212 0.317393 0.264855 -0.173825 -0.272603 -0.243867 -0.151214 -0.078554 -0.441643 0.161731 -0.079765 0.315240 0.168070 -0.309102 0.042593 -0.011930 -0.108786 0.382883 0.704311 0.185198 0.065487 -0.356100 0.461599 0.230686 0.493890 -0.558753 -0.240059 0.700150 -0.084141 0.114187 -0.554300 -0.078738 0.442759 0.105343 -0.426829 -0.306117 -0.184879 0.084097 -0.644301 -0.493954 0.609812 -0.305039 0.071629 0.326923 -0.559907 -0.700223 -0.073603 0.357663 -0.011632 -0.184366 -0.275946 -0.008404 -0.005890 -0.163930 0.274426 -0.610127 -0.573389 0.306375 0.034586 -0.083715 0.104698 -0.393009 0.023354 0.098412 0.281967 -0.155127 -0.415981 0.263548 0.046236 0.068794 0.228123 0.331720 -0.837034 -0.094036 -0.766604 0.376560 -0.298550 0.563942 0.407568 -0.050203 0.437167 0.041148 -0.258180 -0.356364 0.232848 0.314251 -0.155707 0.164301 -0.134751 0.442317 0.282664 -0.245077 -0.667652 -0.070651 -0.243578 0.234448 0.225059 -0.086603 0.193639 -0.765616 0.159274 -0.116669 0.197753 -0.026321 0.094287 -0.331511 -0.237138 0.371740 -0.219033 0.589532 0.360366 0.104606 0.246143 -0.111752 0.210963 0.088361 -0.039685 -0.155952 0.431512 0.128344 -0.650450 -0.188771 0.015002 0.297788 -0.322784 -0.635475 -0.633887 -0.264460 0.221613 -0.335257 0.068732 0.666189 -0.141041 -0.310821 0.166504 0.241014 0.198294 0.342145 0.257999 0.983015 -0.740757 0.386116 0.178823 0.251839 0.489200 0.349727 -0.500283 -0.431972 0.487868 -0.134752 -0.259734 0.703518 -0.154851 0.109439 0.664759 0.014264 0.098275 -0.449698 0.385767 0.317327 0.437895 -0.244092 0.826750 -0.529819 -0.320695 0.085508 -0.034438 -0.233182 -0.044871 0.208473 -0.223125 0.635899 -0.358168 -0.514552 0.194608 -0.205468 0.135841 0.593731 -0.048302 -0.153572 -0.102877 -0.414721 0.051653 -0.076263 -0.371576 -0.027548 -0.429778 -0.100780 0.296384 0.398552 -0.389675 -0.199263 -0.317214 -0.242802 -0.141328 0.113606 0.324602 -0.165401 0.029742 0.446820 -0.266893 -0.060401 -0.242403 -0.170591 0.211975 -0.049310 -0.152552 -0.056207 0.870138 0.448035 0.296421 -0.197331 -0.024683 -0.032406 -0.300424 -0.547841 0.011508 -0.100781 0.452655 0.243480 -0.231604 0.147426 0.190780 0.251616 -0.488998 0.097607 0.455694 0.210042 0.398912 -0.333361 0.178144 0.320124 -0.311325 0.499426 0.427352 0.108697 -0.691403 0.230256 -0.279160 -0.315346 -0.501929 -0.225461 0.096043 -0.323898 0.405305 0.527486 -0.074445 -0.303402 0.966854 -0.065143 -0.881183 0.580658 0.132046 0.146214 0.417950 -0.273057 0.367184 0.462042 0.451808 -0.192253 0.182063 0.599990 -0.672561 0.025277 -0.078024 0.379013 0.084605 -0.188981 -1.027184 -0.066571 0.131507 0.474832 0.054269 0.431384 -0.346023 0.346652 -0.123170 0.011757 0.015293 -0.018772 0.430055 0.197140 -0.287399 -0.728784 0.469391 +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.327852 -0.677882 0.601954 -3.209020 -3.096845 -0.158770 1.449318 -2.307962 -1.091774 3.204165 0.786919 -1.935399 -1.661048 4.014229 0.132368 -1.948231 0.318138 -2.697411 -0.078004 0.449155 -0.921714 2.677196 -1.132409 -0.402401 0.938542 0.311432 -0.813853 1.659099 0.711471 -1.357529 -0.790334 -2.064479 -0.192299 4.212537 1.501613 -0.367797 -1.237555 6.846514 -2.821028 4.800535 -4.679037 -3.186386 3.865172 -1.046398 -0.154681 -4.039552 -1.355057 3.035109 -0.279824 -2.148835 1.276145 0.237023 0.504812 -1.654362 -0.049272 2.316230 -4.233070 2.317380 2.415072 -1.447330 -1.390437 -1.301934 -0.659490 1.089187 -3.691411 -2.824971 0.227540 -0.737157 -1.481144 -0.194067 -1.928408 -2.790049 2.849368 1.908915 -2.055713 0.447611 -0.382776 -2.589098 2.737630 -2.584083 -4.193208 -1.214673 -0.690613 -1.608791 2.588143 0.477960 2.844437 -6.147424 1.840254 -6.402990 1.291834 -3.411158 1.979788 4.915829 -1.962105 2.394027 1.041243 2.012461 3.128079 -0.636869 2.922594 1.967808 1.426305 1.943211 2.591224 3.083800 -1.831650 -2.302116 -2.309007 -2.712110 1.091103 -1.048166 -4.496420 2.301704 -0.702123 0.399351 -0.184843 0.888777 -1.126092 3.102906 -4.820364 -1.050741 1.243969 -1.024653 1.845584 3.560594 -1.125355 0.188559 -2.347828 3.022471 -0.841164 3.388744 -0.365529 3.285542 -2.326215 -1.979580 -2.824483 0.678647 1.566433 -3.164662 -3.786462 -5.792852 -0.575768 0.516684 -2.721014 3.985193 6.824225 -3.605489 -3.177143 4.490754 0.462771 0.015250 1.883009 0.127836 4.333806 -1.338009 -1.132962 -0.813195 -1.586779 0.044475 4.260123 0.644430 -2.573384 2.017031 -1.528206 -3.677868 3.072285 0.918430 -2.462676 -1.455550 0.124237 -1.617819 -2.805792 3.946721 -3.290437 2.899807 -1.333850 4.356582 -0.700970 -1.235215 2.076735 -3.223097 -0.542599 -3.187430 -0.882423 0.700883 2.169783 -3.254389 -1.702988 -1.029935 -1.554125 -2.731970 2.320785 -1.735431 -0.012683 1.369538 1.487615 4.576603 3.939554 -0.319158 0.109870 -3.263388 2.514024 1.857964 -0.140190 -3.944480 -1.315572 -1.518131 -1.472955 0.992320 -0.204318 2.150754 -2.385410 -0.826041 1.144144 0.061293 0.842792 1.370234 -4.576010 1.344398 0.240664 2.412860 1.945877 3.872131 2.090342 3.836324 2.048574 1.060010 -1.015897 -0.039079 -2.093037 0.697510 0.653641 0.083608 2.526644 2.975218 3.301116 1.623696 3.770088 1.733061 -0.120266 4.006931 0.007013 5.456027 -1.207079 -1.220779 0.879437 0.186412 3.398296 5.270110 -0.798474 -0.925647 2.474298 -1.021715 -2.695284 -1.222047 0.619578 -1.104357 -0.304806 1.875143 1.321801 -0.226450 -0.893356 5.079941 -1.607989 -6.416141 2.701131 1.387505 2.915266 2.356145 0.553500 1.813919 1.796471 -2.141964 3.165052 3.742068 2.356537 -2.825729 -1.378621 0.354357 1.602748 3.156376 2.563178 -5.915161 0.349576 1.843841 4.051438 0.381240 2.959127 -2.643666 -0.847403 2.052991 -0.593932 0.062726 -0.045000 1.936942 -1.207746 0.373174 -3.335283 -0.962650 +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.381066 0.109872 0.661515 -1.683367 -1.913640 -0.277365 0.981880 -0.852663 -0.428514 1.175614 0.615708 -1.011165 -0.744676 2.381909 -0.297700 -0.888877 -0.102522 -1.320234 -0.320010 0.106753 -0.192479 1.509523 -0.419498 -0.035530 0.563925 0.078737 -0.511394 1.018508 0.341366 -0.828654 -0.237258 -0.823444 0.123647 1.874402 0.313118 -0.263591 -0.415784 3.325640 -1.828085 2.170056 -2.275001 -1.527053 1.919754 -0.434884 -0.148547 -2.781435 -1.433104 1.342628 -0.061690 -0.876267 0.712602 0.345674 0.071281 -0.803132 0.349277 1.166669 -2.408173 1.194667 1.147226 -0.745106 -0.485201 -0.443707 -0.504692 0.174583 -1.481835 -1.262734 -0.048134 -0.247738 -0.531270 -0.029520 -0.426650 -1.318349 1.864436 0.609403 -0.799750 0.576483 0.182173 -1.648363 1.549378 -1.582673 -1.930358 -0.490161 -0.043666 -0.501940 1.282403 0.036370 1.121190 -2.876332 0.433691 -2.842207 0.714470 -1.908588 0.659936 2.270653 -1.066260 1.249392 0.589022 0.519097 1.660368 0.265980 1.523148 1.147971 1.143347 1.039848 1.096839 1.547597 -0.949125 -1.108849 -1.473815 -1.636800 0.502533 -0.432463 -2.701396 0.948818 0.153805 -0.222764 0.016517 0.031856 -0.016271 1.947986 -1.829867 0.196430 1.042314 -0.442517 0.204555 1.904670 -0.491832 -0.158880 -1.358345 1.460074 -0.614250 1.917992 -0.003549 1.382483 -1.204748 -1.819732 -1.256599 0.142783 0.211494 -1.345148 -1.580767 -2.675867 -0.033229 0.276945 -1.243797 1.168813 3.405287 -1.706720 -1.888419 2.277073 1.423904 -0.067368 0.707110 0.148822 2.233658 -0.444367 -0.850027 -0.664915 -1.042034 0.162382 2.026457 0.526994 -1.154406 0.917689 -0.523756 -3.225353 2.264880 0.050141 -1.113527 -0.047769 0.285719 -1.057204 -1.364989 2.042286 -0.522826 1.817509 -0.747778 2.186860 -0.366350 -0.926196 0.825921 -1.313561 -0.009467 -1.743056 -0.321970 0.640590 0.962278 -1.315400 -0.797035 -0.661353 -0.934579 -1.341921 0.891838 -1.459915 0.233052 0.578001 0.762296 1.363194 1.962401 -0.133540 0.318092 -1.758994 1.128727 0.767090 0.088338 -2.789879 -0.250969 -0.639691 -0.549160 0.280734 -0.178476 0.874174 -0.767648 -0.414049 0.520038 -0.569045 0.113070 0.375318 -1.842844 0.419051 -0.400101 1.572334 0.634575 1.597626 1.724980 1.809713 0.994120 0.875526 -0.358875 -0.110397 -0.729830 0.430797 0.309708 -0.236190 1.215407 1.794503 1.606550 0.722846 1.867905 1.010124 -0.036398 1.921313 0.188249 2.847861 -0.457717 -0.793562 0.225870 0.393475 1.669976 2.713596 0.254818 -0.366741 1.116550 -0.055450 -1.110775 -0.823466 0.243952 -0.471263 -0.480646 1.542440 0.688149 -0.387665 -0.088847 2.243851 -0.691425 -2.917459 1.177706 0.514258 1.383061 0.618328 0.412021 0.645459 1.181561 -0.978372 1.405739 1.630171 1.216011 -1.536955 -1.354832 0.185440 0.863328 1.653345 1.556455 -3.493062 0.317913 0.965661 1.762844 -0.386923 1.752064 -1.261244 -0.721257 1.046819 -0.057722 -0.334508 0.154165 0.608361 -0.997931 0.168620 -1.539286 -0.796100 +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.105808 -0.915524 0.991824 -2.877170 -3.168261 0.075039 0.981086 -2.649937 -0.887371 2.727230 1.056360 -1.835662 -0.897569 4.270858 -0.123703 -1.666858 0.237326 -1.571300 0.162263 -0.076163 -0.590147 2.536324 -1.126530 -0.235852 0.552545 -0.248996 -0.452838 1.758734 0.145456 -0.779825 -0.484352 -2.164024 -0.331841 3.896695 1.584081 0.328964 -1.385392 6.535081 -3.117173 5.113826 -4.787207 -3.224813 3.599178 -0.881848 0.020630 -3.939294 -2.166578 2.511725 -0.220745 -1.837883 1.193732 0.007782 0.788562 -1.238290 0.178877 1.761319 -3.538941 1.499785 2.100679 -2.296435 -1.441173 -1.186432 -0.864314 1.186812 -4.147004 -2.539118 0.396814 0.042371 -0.842498 0.053497 -1.564458 -2.899728 2.706133 1.463685 -1.817966 0.206679 0.057079 -2.410870 2.644952 -1.788909 -4.270857 -1.296227 -0.750425 -1.712795 1.978189 0.665816 3.494213 -5.934491 1.892973 -6.360503 1.560336 -3.127834 1.883709 4.433139 -2.222017 2.253261 1.539830 2.690312 3.223875 -0.227729 2.676331 2.232619 0.898732 1.956291 3.116808 3.015483 -1.478658 -2.282952 -2.525310 -2.934039 1.369242 -1.420231 -4.722334 1.983776 -0.535356 0.066078 -1.008652 0.968454 -0.517897 3.558943 -4.531409 -0.045839 1.593350 -0.939052 1.237387 3.009065 -1.095133 0.394385 -2.262813 2.745289 -1.490139 3.227893 -0.286114 3.118159 -2.675024 -2.145384 -2.960064 0.787905 1.369032 -3.208386 -3.500187 -5.570201 -0.615937 1.625420 -2.439907 3.586774 6.620042 -3.797655 -3.276388 4.015205 1.308937 -0.878516 1.867615 0.378172 4.350892 -1.184583 -1.236690 -1.342417 -1.765622 0.269425 3.995628 0.723119 -2.342659 2.364776 -1.408004 -4.761827 4.739522 0.161163 -2.582609 -1.436158 0.431591 -1.289049 -2.275208 3.745685 -3.080361 2.884020 -1.795650 4.121234 -0.767802 -1.172721 1.570947 -3.746683 -0.780100 -2.813469 -0.277955 0.395480 2.689499 -2.935630 -1.762420 -1.377447 -2.406461 -2.202658 2.066194 -1.761218 0.190017 1.600214 1.203635 4.113599 4.118400 0.386565 -0.117289 -2.950973 2.342356 2.165645 0.198284 -4.004235 -1.290483 -1.714760 -1.275434 -0.505905 0.037416 2.377597 -2.592811 -0.467320 0.252488 -0.199485 0.704037 1.459399 -4.403379 1.387850 0.131329 2.861505 1.643978 3.466315 2.317685 4.010875 2.336997 1.091250 -0.931280 -0.335095 -1.831747 1.227169 1.332609 -0.282194 2.153525 3.274384 3.126448 1.798940 3.763418 1.648971 0.812965 3.775874 -0.058792 5.469227 -1.297774 -0.681396 0.459189 0.639264 3.358635 5.433715 0.195402 -0.532291 2.060796 -1.031769 -2.825234 -1.546233 0.590630 -0.745739 -0.596653 1.951705 1.688911 -0.069739 -1.186593 4.771494 -1.066848 -6.141103 2.535811 1.158088 2.448478 2.536449 0.343377 1.476869 1.724372 -1.650276 3.267201 3.660070 2.330644 -2.936275 -1.701598 0.298663 1.580310 4.027505 2.647384 -5.902433 1.418074 2.051107 3.801491 -0.332775 3.054400 -2.953319 -0.643819 1.943262 -1.005161 -0.124398 0.525108 1.667784 -1.139809 0.407666 -3.402454 -1.428838 +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.844385 -0.057862 1.492919 -2.998939 -2.909748 -0.643247 2.500851 -1.869572 -0.930866 3.250491 0.777661 -1.853719 -1.789239 3.785476 -0.324541 -1.514334 0.102959 -2.478355 -0.557488 -0.333936 -0.639840 2.424757 -0.785153 -0.617642 1.091559 -0.137546 -0.230709 2.297026 0.002130 -1.037931 0.187635 -1.833680 0.442126 3.826021 0.898176 -0.087731 -1.513270 6.078617 -3.719693 4.638123 -4.689028 -3.466926 4.285790 -0.881694 -0.112362 -5.079989 -1.714304 2.769529 -0.176089 -2.042197 0.708742 0.595889 0.629812 -2.168816 -0.162163 2.405397 -4.074166 1.703519 2.090260 -2.417408 -1.923041 -0.868439 -0.635300 0.905534 -3.438580 -2.614652 -0.043071 -1.006159 -1.216268 0.375035 -1.355882 -2.286150 2.601866 1.134744 -1.328788 0.892317 -0.188071 -2.428898 2.716612 -2.258132 -3.362560 -1.506073 -0.189066 -1.416304 1.881458 0.459342 2.598741 -5.598990 0.792120 -5.435874 1.533731 -3.255982 1.558268 4.066560 -1.350030 3.001997 0.826938 1.116294 2.337809 -0.417473 2.450143 2.113612 2.525995 1.968269 2.567802 3.158232 -2.125319 -2.919100 -2.917888 -2.612466 1.341473 -1.238240 -4.338990 1.886503 -0.352954 -0.579583 0.072173 0.089967 -0.588543 3.865597 -4.138206 0.539786 1.968840 -0.911806 0.731453 3.097174 -0.713080 -0.116208 -1.832958 2.529760 -0.825934 3.523367 0.118277 3.042678 -2.079648 -2.552251 -1.792772 0.435101 0.755382 -2.552727 -3.131870 -5.328947 -0.616998 1.083797 -2.385092 2.466745 6.310594 -2.969465 -3.586097 3.668527 1.630683 -0.322865 0.901825 0.532621 4.131073 -1.259482 -1.303499 -1.184641 -1.463179 1.191693 5.696231 0.481505 -2.696998 2.459825 -1.344109 -4.912929 3.444343 0.172810 -1.690735 -0.419455 0.403477 -1.769276 -2.408531 3.561343 -2.266480 3.581276 -2.057257 4.102305 -1.007482 -1.399567 1.330543 -3.450089 -0.434843 -3.351873 -0.371474 0.867470 2.056754 -2.724453 -1.782384 -1.712817 -1.887750 -2.011811 2.447175 -3.745018 0.096794 0.810885 1.028392 3.606094 3.102122 -0.584023 0.059707 -3.100458 2.162525 1.542279 0.924120 -4.909986 -1.094582 -1.054996 -1.428906 0.370279 -0.069865 2.106393 -1.702870 -0.222931 1.417500 -0.812629 -0.481132 0.479910 -4.262601 1.014390 0.011279 2.762434 1.242708 3.632307 2.805364 3.196859 1.322216 1.590664 -0.999443 -0.649001 -2.356317 1.027813 0.682890 -0.558375 2.241254 3.217501 2.849703 1.468368 3.818841 1.761252 -0.310648 3.608504 -0.022776 4.789879 -1.456582 -1.270332 0.959209 0.764103 2.972529 4.461846 0.824374 -1.439360 2.350868 -0.724275 -2.495219 -1.179428 0.178111 -0.861668 -0.210719 3.082387 1.985207 -0.918620 -0.312534 4.683372 -1.199487 -6.030302 2.337511 1.253083 2.597590 1.658102 0.174026 1.553470 2.296749 -1.133220 2.474566 2.946556 2.099781 -3.216950 -1.849204 0.465900 1.601329 3.699956 2.252263 -7.509888 -0.182022 1.415920 3.725333 -0.603966 4.168817 -2.572639 -0.481221 1.815331 -0.143053 -0.154082 0.289268 1.406795 -1.460966 0.352820 -3.606111 -0.500484 +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.677553 -0.356083 0.730683 -0.979662 -1.255559 -0.465302 1.712217 -1.147981 -0.446831 1.332357 0.278475 -1.001666 -1.114192 1.441143 0.230380 -0.580428 0.355192 -1.152873 -0.277565 -0.588323 -0.335643 0.949428 -0.290601 -0.409555 0.462910 -0.062027 -0.079883 1.378450 -0.129430 -0.453778 0.208361 -0.974926 0.602961 2.053853 0.515315 0.188426 -1.177555 3.283337 -1.616921 2.455465 -2.759304 -1.591252 2.431536 -0.638349 -0.169241 -2.807342 -0.814822 1.586765 -0.005625 -1.327806 -0.032833 0.415961 0.279338 -1.282550 -0.462943 1.695554 -1.903946 0.724413 0.936057 -1.768126 -1.298000 -0.411325 -0.497296 0.614287 -2.041286 -1.511836 0.148986 -0.767032 -0.662560 0.758620 -0.929110 -1.409074 1.256280 0.485061 -0.770858 0.266029 -0.194875 -0.831387 1.403782 -0.194742 -1.577321 -0.995346 -0.126896 -0.384873 0.634251 0.174205 1.298279 -3.129582 0.010302 -3.083208 1.015883 -1.916516 1.067931 1.867699 -0.884397 1.794997 0.265448 0.450671 0.975473 -0.512698 1.203713 0.907646 1.476981 0.800507 1.698579 1.435964 -0.696784 -1.652491 -1.415929 -1.169154 1.090901 -0.637561 -2.225421 1.003292 -0.619554 -0.255070 -0.021062 0.437473 -0.127880 2.047240 -2.038228 0.486530 1.401172 -0.529511 0.676445 1.686689 -0.713899 0.109037 -1.032795 1.291285 -0.090182 1.931886 0.003862 1.596233 -0.832497 -1.668555 -1.030034 0.139981 0.631282 -1.535638 -1.802998 -2.730659 -0.313960 0.690780 -1.349055 0.954197 3.407391 -1.548671 -1.634142 1.617640 0.973315 -0.201726 0.307506 0.275633 2.715662 -1.062620 -0.266586 -0.466537 -0.425051 0.971040 3.351360 -0.033479 -1.639247 1.240317 -0.508259 -2.895488 2.246300 -0.156194 -0.774632 0.507333 -0.081951 -0.211524 -1.363786 1.810774 -0.840142 1.927498 -1.358727 1.769720 -0.564627 -0.716097 0.737814 -1.385201 -0.465120 -1.284933 -0.003213 0.274176 1.367376 -1.554154 -0.987514 -0.942369 -1.498970 -0.659616 1.476270 -1.380710 -0.073476 0.333214 0.542539 1.664147 1.494563 -0.280272 -0.080561 -1.863087 1.118179 1.024379 0.868258 -2.271926 -0.764147 -0.766189 -0.814122 -0.378635 0.113014 1.258561 -0.857921 -0.012129 0.734518 -0.460076 -0.432019 0.169248 -2.270473 0.595552 0.346166 1.274306 0.494036 2.180218 1.499999 1.415062 0.636799 0.501848 -0.460948 -0.618279 -1.692911 0.730352 0.162353 -0.103646 1.036069 1.204205 1.383838 0.549842 2.189638 0.350284 0.212564 1.971795 0.419700 2.572434 -1.090972 -0.354700 0.644780 0.019303 1.663008 2.474611 0.860730 -1.016043 1.212063 -0.515963 -1.616343 -0.819433 -0.405304 -0.288886 -0.115937 1.965117 0.901554 -0.647284 -0.308858 2.660825 -0.443379 -3.479678 1.275798 0.692127 0.987223 1.241973 -0.185199 0.947794 1.410129 -0.237530 1.040253 1.423102 1.211402 -1.799198 -1.291953 0.077681 0.683851 1.926953 0.858322 -4.274403 -0.262031 0.811882 2.236063 -0.278877 1.953985 -1.629787 0.127616 0.839196 -0.201803 -0.023223 0.444146 0.996153 -0.844238 -0.051111 -2.398249 0.183467 +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&) = 2.000793 -0.566674 1.228719 -3.177378 -2.084695 -0.878333 3.788721 -3.533382 -1.268056 3.987690 1.189323 -3.065939 -2.105154 3.222348 0.617227 -1.654046 1.681443 -1.932640 -0.703080 -0.807851 -1.184044 1.736579 -0.972603 -2.150627 0.936370 -0.043381 0.637590 3.293508 -0.099579 -0.716810 -0.236023 -2.383604 1.380577 5.643034 1.874566 0.344014 -3.100253 7.024269 -3.718624 6.047737 -6.753500 -3.289004 6.693429 -1.379641 -0.344820 -6.880752 -1.640954 4.000030 0.442851 -3.806033 -0.493437 0.044811 1.312992 -3.958415 -2.045167 4.784483 -3.747466 1.312499 3.033341 -4.219413 -3.964784 -1.348419 0.221160 1.914168 -5.839654 -4.174093 0.574630 -2.116124 -1.859568 1.535571 -4.258290 -4.061851 2.811558 1.427988 -2.009135 0.254716 -1.994191 -2.453478 2.836255 0.208184 -3.276104 -2.580760 -0.092316 -1.121547 1.477113 0.392832 3.967782 -8.102772 0.378725 -7.878239 2.216699 -4.399481 3.403131 4.826859 -1.741284 3.939794 0.100208 1.424380 1.630705 -0.844578 2.983506 1.962432 3.152270 0.785017 4.988808 3.806321 -1.914535 -5.003006 -2.538386 -2.856186 2.429741 -1.146132 -5.781125 2.921163 -3.498581 -0.864893 -0.539243 0.755793 -0.795961 4.909669 -5.192428 -0.091183 2.731733 -1.497578 2.655149 4.560599 -1.036812 0.711804 -2.220928 2.868360 0.661123 3.978158 -0.309063 4.375614 -2.688699 -4.230950 -2.104675 0.526240 2.328380 -4.094108 -5.175375 -7.118172 -1.299790 1.656736 -3.394731 2.787974 7.685491 -3.379730 -4.175731 3.642981 1.406032 -0.744852 1.581535 0.503415 7.832370 -3.920801 0.695262 -0.435170 -0.101277 2.343749 7.638449 -1.420523 -4.754947 3.317188 -2.746937 -6.380159 5.285251 0.573728 -1.202584 1.759960 -0.359195 -0.468230 -4.065251 4.885566 -3.466894 5.074255 -3.556032 5.483615 -2.006354 -1.484410 2.166297 -3.288791 -1.533090 -3.210417 -0.116604 0.255245 4.375721 -3.483425 -2.921430 -1.873649 -3.035581 -1.293877 5.185335 -3.780128 -0.750463 0.482375 0.059091 4.417323 2.989450 -1.633301 -0.147671 -4.123172 2.803469 3.533801 2.250767 -4.933287 -2.519588 -2.491415 -2.353997 -1.287670 0.310482 3.859575 -2.714426 -0.383776 2.612685 -0.241838 -0.639949 0.076361 -6.025522 2.158369 0.531787 2.131106 0.952049 6.794078 2.646051 3.717757 0.869359 0.209363 -1.033047 -1.595365 -5.546847 1.532907 0.217059 0.128214 2.735025 2.746445 2.882878 2.005360 5.280954 0.105212 0.386300 5.019819 0.925032 5.483178 -2.427986 -0.624082 2.183208 -1.004953 4.374475 6.160336 1.528919 -3.884227 2.798445 -1.810810 -4.768165 -2.543188 -1.287568 -0.465905 -1.369297 3.871269 2.414794 -0.992702 -1.564053 8.033775 -1.032030 -9.093573 3.633137 1.663125 2.519096 4.068221 -1.289855 2.938388 3.219847 0.215071 1.974693 3.388296 3.327690 -4.334183 -1.843001 0.409428 2.130560 4.448649 0.855483 -10.315571 0.038000 2.219523 6.761535 0.245302 5.239318 -3.668905 2.012046 1.485284 0.238207 0.831924 -0.275309 3.142286 -1.790576 -0.793536 -6.638935 1.758344 +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.157044 0.180558 0.481850 -0.767687 -0.757759 -0.107809 0.659507 -0.493912 -0.128079 0.575367 0.405736 -0.405718 -0.110022 0.799270 -0.150520 -0.329614 0.001491 -0.348794 -0.316551 -0.041582 0.068480 0.491345 -0.112981 -0.338776 0.148178 -0.116176 0.095403 0.628736 -0.216589 -0.031388 -0.015716 -0.341407 0.301549 0.909129 0.124798 0.057312 -0.357142 1.166114 -0.830800 0.947200 -1.068401 -0.785361 1.098142 -0.205025 -0.035265 -1.499489 -0.687318 0.517214 0.440168 -0.723627 0.010274 0.080761 0.277860 -0.630638 -0.120538 0.552742 -0.779094 0.049154 0.465412 -0.761065 -0.554086 -0.140041 -0.016962 0.300433 -0.915869 -0.590131 -0.015347 -0.077322 -0.054221 0.169815 -0.208500 -0.815117 1.188894 0.126406 -0.304821 0.256141 0.021305 -0.948072 0.723087 -0.070376 -0.620414 -0.341842 0.040040 -0.159854 0.395263 -0.118922 0.751112 -1.327665 0.064671 -1.181853 0.531466 -0.777536 0.331739 0.785692 -0.396058 0.601136 0.249032 0.553832 0.431548 0.157920 0.632153 0.590395 0.826920 0.281470 0.707606 0.701331 -0.533949 -0.882091 -0.760207 -0.817155 0.495027 -0.362550 -1.572234 0.378140 0.010130 -0.341007 -0.039578 -0.257251 0.211138 1.376667 -0.899739 0.406080 0.758277 -0.191930 -0.092062 0.703306 -0.147801 0.009952 -0.371156 0.557670 -0.207635 0.660975 0.149652 0.631589 -0.800079 -0.738381 -0.154448 0.178440 0.034350 -0.601636 -0.705072 -1.161108 -0.105159 0.649297 -0.455966 0.061351 1.402750 -0.587076 -1.046852 0.714555 1.035852 -0.467572 0.114266 0.220153 1.154435 -0.461151 -0.210634 -0.437155 -0.273712 0.445418 1.498593 -0.013814 -0.661435 0.698781 -0.464178 -1.969768 1.621560 -0.222275 -0.243102 0.543966 0.084969 -0.531338 -0.526525 0.897266 -0.068149 1.086678 -0.639658 1.070222 -0.422590 -0.347236 0.139713 -0.625580 -0.214690 -0.907930 0.084035 0.354798 0.715569 -0.525079 -0.469771 -0.255848 -0.661854 -0.280085 0.732242 -1.280478 0.083376 0.117456 -0.002481 0.462761 0.590603 -0.163528 -0.139938 -0.602680 0.448455 0.432825 0.249222 -1.222709 -0.371796 -0.430160 -0.216986 -0.320457 0.012644 0.615624 -0.268078 -0.061924 0.381884 -0.501569 -0.349752 -0.155572 -0.994548 0.180849 -0.131023 0.800320 -0.101753 0.903257 0.995539 0.775417 0.255383 0.305534 -0.028600 -0.286715 -0.879943 0.301746 0.143776 -0.170632 0.509575 1.019618 0.511675 0.405080 0.987450 0.399178 0.337474 0.889288 0.044883 1.114890 -0.213119 -0.266661 0.203176 0.226837 0.822256 1.196837 0.648111 -0.341734 0.344479 -0.039513 -0.726379 -0.332740 -0.077276 -0.068032 -0.210572 0.919000 0.642379 -0.222245 -0.112911 1.167381 -0.041108 -1.388143 0.439150 0.203923 0.581263 0.587151 -0.210663 0.550406 0.616978 0.239500 0.542449 0.552908 0.567590 -0.987448 -0.710058 0.135911 0.388880 0.787794 0.518615 -1.835989 0.134030 0.261800 0.967552 -0.441539 1.196592 -0.740814 0.241925 0.386909 0.161277 -0.089524 0.023274 0.268374 -0.513918 -0.100807 -1.218942 -0.038906 +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.877889 -0.031556 1.204237 -2.411976 -2.424512 -0.522592 1.709608 -2.323991 -0.752297 1.932197 1.182244 -2.056494 -1.124733 2.942381 -0.330890 -1.393135 0.404098 -0.734972 -0.594129 -0.901733 -0.367290 1.499815 -0.619885 -1.201310 0.598999 -0.431277 0.138908 2.200362 0.361117 -0.472747 -0.112343 -1.500987 0.969435 3.715995 0.994086 0.164296 -1.664964 4.955215 -2.446321 3.402265 -4.719479 -2.483824 4.330834 -0.839977 -0.151614 -5.258075 -2.503996 2.309526 -0.161734 -1.734018 -0.078186 0.070318 0.839684 -2.303264 -0.683474 2.798879 -3.106374 1.464539 1.952594 -2.989182 -2.127513 -0.660051 -0.270716 0.913626 -3.086270 -2.584361 0.194203 -0.278875 -0.849525 0.792948 -1.878806 -2.911484 3.170698 0.640055 -1.303568 0.562827 -0.616258 -2.188868 2.201912 -0.477835 -2.561204 -1.595031 0.382158 -0.455574 1.203185 0.294103 2.680649 -5.443827 0.001084 -5.350916 1.723321 -3.028587 2.015247 3.077098 -1.950936 2.521761 0.712723 0.612874 1.906803 0.356662 2.295907 1.554618 2.226936 0.886367 2.962241 2.453919 -1.031953 -2.873654 -2.031235 -2.513668 1.278049 -0.928637 -4.974563 1.760002 -1.575092 -0.602927 -0.706864 0.103176 0.169831 3.818293 -3.081529 0.409488 2.256014 -0.956540 1.047875 3.080755 -0.719788 0.291736 -1.785471 2.031342 -0.414484 2.556873 -0.104201 2.765184 -1.837757 -4.051777 -2.270598 0.446493 1.011780 -2.751083 -3.239730 -4.253910 -0.682126 1.231503 -2.127515 1.296643 5.605554 -2.643691 -3.500234 2.787000 2.349034 -0.642718 1.555785 0.672304 5.323142 -2.204714 -0.074674 -1.019410 -0.796100 1.494807 4.018387 -0.488178 -2.803137 2.258177 -1.209355 -5.731580 4.514098 -0.348754 -1.155885 1.285247 0.298870 -0.811652 -2.365028 3.343155 -0.848942 3.740501 -2.259207 3.901829 -1.617312 -1.826570 1.105567 -2.126495 -0.922918 -1.732044 0.214373 0.448693 2.865006 -2.263321 -1.958849 -1.139731 -2.395211 -1.066703 3.017864 -2.125176 -0.094139 0.612716 0.118852 2.149440 2.628666 -0.635685 0.217672 -2.873805 1.850440 2.425844 1.361860 -4.604551 -1.290378 -1.613556 -1.193970 -1.026150 0.185118 2.531011 -1.353162 -0.250526 1.115773 -0.925626 -0.084405 0.001680 -3.091617 1.307160 -0.519974 2.094235 0.357267 4.032687 2.892027 2.901719 0.994649 0.731159 -0.465766 -1.401989 -2.095161 1.135960 0.657815 -0.186721 1.902133 2.767733 2.089635 1.403707 3.616294 0.637903 0.727783 3.500170 0.483888 4.485204 -1.760936 -0.479160 0.766083 -0.121816 3.175953 4.982533 1.362717 -1.953836 1.731957 -0.535579 -2.554829 -2.474299 -0.457408 -0.163852 -1.251115 3.227819 2.036837 -0.711170 -1.002170 5.014979 -0.416836 -5.679433 2.720825 1.018226 1.737086 1.921970 -0.597108 1.320872 2.346017 -0.056330 1.352030 2.454782 2.392992 -3.439813 -2.256687 0.267015 1.779931 3.072218 1.397458 -6.870156 0.684894 1.904316 4.119280 -0.565790 3.320993 -2.689814 0.172376 1.227316 0.176684 -0.025463 0.261952 1.427994 -1.915158 -0.198208 -3.601055 -0.067433 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +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.817424 -0.125392 2.544327 -5.676869 -3.067410 -1.059341 5.325569 -4.323483 -1.649576 5.135819 1.884187 -3.846578 -3.031562 5.001389 -0.413689 -3.032534 1.860532 -0.694133 -1.397303 -1.154370 -1.317426 2.218097 -1.304277 -3.678218 1.694339 -1.203100 1.916442 5.531468 0.393119 -0.114349 0.216528 -2.984906 1.710615 7.773426 1.968964 0.890287 -3.823758 9.851238 -5.861704 8.472125 -9.076810 -5.087768 10.271263 -1.267014 -0.768676 -11.340619 -3.933040 4.422036 -0.576553 -4.387630 -0.964401 -0.511294 2.422266 -6.046936 -2.389631 6.785755 -5.530676 1.061550 4.187857 -6.249245 -5.940676 -1.462463 1.152973 1.917864 -7.789171 -5.283819 0.242706 -2.484595 -2.248075 1.673933 -5.463530 -5.274235 5.916576 1.902071 -2.127439 1.358673 -2.443763 -4.687795 3.373595 -0.094810 -4.622284 -3.807955 0.820640 -2.157080 2.224154 0.593969 6.233116 -11.022014 0.054591 -10.622490 3.004156 -6.076469 4.565025 6.714224 -1.841727 6.437026 0.637351 1.372750 0.976374 0.135880 4.167786 3.075345 4.911218 0.960319 6.612878 5.436011 -3.626194 -7.964674 -4.469391 -3.992905 2.473580 -2.194579 -10.564110 3.379340 -4.780548 -1.035883 -0.907052 0.019705 -0.897257 7.632525 -6.499573 1.854546 3.730438 -2.114593 2.578496 6.271263 0.178088 0.371006 -2.046549 3.597159 0.149895 4.948447 -0.287293 5.925761 -4.140800 -6.022484 -1.817611 0.474825 2.135115 -4.712261 -6.658427 -8.872956 -2.800461 3.801124 -3.755309 2.791282 11.182357 -4.342092 -7.232663 4.457821 2.807789 -0.368344 2.343082 1.773630 10.614045 -5.451930 0.833736 -1.662216 0.158981 3.971594 10.740444 -2.179800 -6.335450 5.671587 -4.382027 -9.647710 8.964784 -0.163280 -0.593483 2.989565 0.316721 -2.258082 -5.748830 7.481441 -4.378190 9.103071 -5.223018 8.990992 -3.726578 -2.675230 1.667161 -5.073186 -2.042715 -5.873990 0.702105 0.201485 6.057356 -4.197007 -4.639589 -3.097971 -3.781290 -1.129412 7.746697 -7.048697 -1.030201 -0.006958 -1.327129 5.785902 3.654244 -2.711621 -0.580918 -5.582327 3.438371 4.502010 2.679015 -8.962462 -2.902629 -2.372181 -3.038947 -2.052180 0.503261 5.206770 -3.601893 -0.212557 3.288562 -0.942631 -1.469728 -1.097446 -8.866818 2.672872 -0.087204 3.391347 0.859722 9.040820 5.718771 5.561494 0.078674 1.673450 -1.032429 -2.825442 -7.138794 2.014443 0.888342 0.074688 3.545534 5.615992 3.209159 3.255742 6.667312 1.084182 0.942286 6.338170 1.277169 8.224963 -2.830982 -2.364359 3.018151 -0.799251 5.575447 8.383074 3.146837 -4.733634 3.735056 -1.520864 -5.886336 -5.318932 -1.222863 -0.320614 -2.623749 7.194261 4.960968 -1.522985 -1.948093 11.149639 -0.863752 -13.016174 5.015048 2.245344 3.780181 4.928785 -2.000098 3.611519 5.416934 1.556228 2.748569 4.217561 4.257138 -6.903210 -1.890898 1.016403 3.459381 6.472518 0.960146 -15.584334 0.349201 2.578371 9.268901 -0.265973 9.762240 -4.385860 2.956646 1.629245 0.723840 0.783483 -1.081712 3.070487 -2.458500 -1.031963 -9.575687 1.659457 +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.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +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.100704 0.027222 0.036777 -0.308720 -0.252898 -0.012619 0.234209 -0.073818 -0.077524 -0.052956 0.158516 -0.134137 -0.162005 0.430345 0.044858 -0.179431 0.043431 -0.371268 -0.125870 0.249997 -0.033085 0.241653 -0.064109 0.011706 0.103590 0.158191 -0.179474 0.121528 0.038535 -0.338744 -0.205673 -0.077348 -0.001200 0.283035 0.017228 -0.034557 0.013852 0.537450 -0.229881 0.417983 -0.276313 -0.119302 0.240420 -0.098284 -0.099252 -0.487011 -0.255159 0.258610 0.081883 -0.269830 0.217824 0.058496 -0.120496 -0.109886 0.107687 0.292326 -0.457344 0.221026 0.234963 0.121701 0.046673 -0.082552 -0.084799 -0.110794 -0.135239 -0.207359 -0.003896 -0.141323 -0.137864 -0.053478 -0.109309 -0.264387 0.480856 0.163195 -0.117953 0.114408 0.033572 -0.316247 0.273672 -0.332910 -0.300222 -0.005094 -0.044135 0.040960 0.345460 -0.081818 0.020491 -0.441898 0.051594 -0.441935 0.073190 -0.396743 0.068681 0.403624 -0.140731 0.117005 0.077484 0.002814 0.199877 0.154548 0.296761 0.132325 0.112787 0.101462 0.184249 0.126812 -0.175082 -0.138118 -0.201872 -0.302653 0.082715 0.031384 -0.465439 0.169114 0.060468 0.038999 0.060316 0.082844 0.071315 0.110858 -0.204989 0.062368 0.147930 -0.065021 0.079547 0.449153 -0.104793 -0.071180 -0.333256 0.255993 -0.040825 0.378173 -0.040962 0.164398 -0.110985 -0.373247 -0.117231 -0.033275 0.038084 -0.196674 -0.262627 -0.432954 0.101493 -0.012224 -0.238056 0.174179 0.529498 -0.268805 -0.218461 0.436780 0.411047 0.120737 0.073207 -0.035669 0.400260 -0.077650 -0.123188 0.025303 -0.182740 -0.098618 0.004533 0.091230 -0.166138 0.041461 -0.096823 -0.702188 0.554751 0.071203 -0.183118 0.277185 -0.034145 -0.198264 -0.368378 0.378913 0.180678 0.286758 0.071256 0.373054 0.010994 -0.083636 0.205194 0.086581 0.069727 -0.396783 -0.180921 0.140536 0.078399 -0.198313 -0.091971 -0.043638 -0.069752 -0.282259 0.116967 -0.138293 0.052318 0.084893 0.163589 0.012615 0.329356 -0.075497 0.117283 -0.341121 0.186431 0.047513 -0.090350 -0.365807 0.040871 -0.123546 -0.052391 0.190498 -0.078933 0.062528 -0.083241 -0.169945 0.176930 -0.081857 0.044038 0.078978 -0.182999 -0.060112 -0.033647 0.172343 0.142655 0.248798 0.265176 0.285125 0.168564 0.104346 -0.035214 0.174396 -0.249735 -0.086818 -0.154600 0.142459 0.219794 0.106918 0.258545 0.083596 0.275105 0.127640 0.009924 0.320796 0.219193 0.448593 0.149243 -0.236110 0.085645 -0.035698 0.292523 0.379398 -0.163877 0.032091 0.166294 0.053584 -0.184326 -0.077161 0.032706 -0.107059 -0.250944 0.285105 -0.044868 0.019274 0.000000 0.361813 -0.192176 -0.451732 0.098709 0.056123 0.256805 0.132112 0.146209 0.198203 0.171393 -0.224839 0.203089 0.235256 0.263163 -0.164324 -0.210919 0.022262 0.076912 0.090076 0.271812 -0.396640 0.044490 0.123847 0.286399 -0.015461 0.093509 -0.137493 -0.078328 0.141725 0.041082 -0.027824 -0.047410 0.142905 -0.125439 -0.135799 -0.313121 -0.081713 +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.509250 -0.057743 1.446478 -2.204940 -1.229192 -0.586974 2.593425 -1.343908 -0.425564 1.784885 0.772773 -1.409019 -1.758788 2.682187 -0.226466 -1.386696 0.946241 -0.865699 -0.614009 -0.533301 -0.365939 1.072693 -0.346020 -1.324504 1.008799 -0.506528 0.651468 2.740072 0.148627 -0.500890 0.260579 -1.052953 0.665295 3.018596 0.433822 0.734876 -1.209857 4.414232 -3.037550 4.098777 -3.926036 -2.379012 4.635042 -0.525140 -0.733095 -4.904370 -1.671800 1.710523 -0.906863 -1.542569 -0.084540 0.053911 0.893902 -2.475257 -0.638809 3.006972 -3.058869 0.674745 1.456938 -2.516504 -2.423885 -0.721859 -0.022403 0.509975 -3.006598 -1.981307 0.147829 -1.254716 -1.224187 0.921490 -1.712230 -1.732645 2.969802 0.460336 -0.694480 0.855897 -0.494973 -1.870401 1.611522 -0.635825 -1.936978 -1.551132 0.423532 -0.587450 1.160830 0.155129 2.389835 -4.721743 -0.457533 -4.490887 1.562748 -2.774396 1.742983 2.709503 -1.248900 3.016524 0.242304 0.338069 0.264729 0.001664 1.756933 1.487098 2.419310 0.553723 2.962050 2.378100 -1.692924 -3.490091 -2.373119 -1.607412 0.993231 -1.094056 -4.685670 1.097509 -1.753491 -0.179169 0.058856 -0.124040 -0.260066 3.368138 -2.383139 1.844522 1.596633 -0.733751 0.728865 2.650227 0.023501 -0.020960 -0.711207 1.710932 -0.152040 2.377633 -0.094862 2.295817 -1.364126 -2.990306 -0.608713 -0.127421 0.498786 -1.758474 -2.531766 -3.994810 -1.039779 1.855717 -1.324398 0.921582 4.908485 -1.689163 -3.238635 1.933719 1.657680 0.092956 0.762340 0.740009 4.158325 -2.117983 0.074858 -0.871033 0.038445 1.795659 5.092376 -0.560855 -2.481182 2.204319 -1.367764 -5.061356 4.250478 -0.028598 -0.153008 1.110813 -0.080079 -1.325813 -2.603414 3.257853 -1.372983 3.884249 -2.372806 3.825002 -1.441907 -1.482209 0.677138 -2.261581 -0.562520 -2.824941 -0.032579 0.493014 2.361947 -1.838595 -1.859976 -1.935980 -1.403280 -0.400259 3.027151 -3.579203 -0.254316 -0.214024 -0.311758 2.309189 1.693311 -1.164363 -0.179509 -2.611490 1.199632 1.836024 1.318194 -4.532498 -0.643143 -0.715835 -1.162959 -0.736369 0.167615 1.839392 -1.365125 -0.185105 1.441674 -0.609215 -0.872723 -0.567703 -4.210932 0.715764 0.240519 1.431235 0.546094 3.495613 2.863149 2.067739 -0.110025 0.934071 -0.582891 -1.178165 -2.911651 0.727582 0.294574 0.020306 1.292681 2.650930 1.453197 1.062513 2.651665 0.879473 0.072951 2.497920 1.014131 3.524387 -1.017290 -1.107581 1.253450 -0.020255 2.279463 3.421101 1.217730 -1.690412 1.681162 -0.096795 -2.179388 -2.290879 -0.752769 -0.416421 -0.794497 3.659021 1.805021 -0.903791 -0.374561 4.512316 -0.327503 -5.593181 1.886855 0.839359 1.549736 1.667136 -0.669957 0.836885 2.476508 0.133030 1.319810 1.462112 1.683290 -2.667406 -1.015668 0.355165 1.416954 3.175263 0.754148 -7.106467 -0.235845 0.994477 3.726910 -0.054946 4.449767 -1.582598 1.025133 0.347646 0.123627 0.155592 -0.296274 0.856708 -1.087680 -0.375612 -4.147121 0.383779 +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.157044 0.180558 0.481850 -0.767687 -0.757759 -0.107809 0.659507 -0.493912 -0.128079 0.575367 0.405736 -0.405718 -0.110022 0.799270 -0.150520 -0.329614 0.001491 -0.348794 -0.316551 -0.041582 0.068480 0.491345 -0.112981 -0.338776 0.148178 -0.116176 0.095403 0.628736 -0.216589 -0.031388 -0.015716 -0.341407 0.301549 0.909129 0.124798 0.057312 -0.357142 1.166114 -0.830800 0.947200 -1.068401 -0.785361 1.098142 -0.205025 -0.035265 -1.499489 -0.687318 0.517214 0.440168 -0.723627 0.010274 0.080761 0.277860 -0.630638 -0.120538 0.552742 -0.779094 0.049154 0.465412 -0.761065 -0.554086 -0.140041 -0.016962 0.300433 -0.915869 -0.590131 -0.015347 -0.077322 -0.054221 0.169815 -0.208500 -0.815117 1.188894 0.126406 -0.304821 0.256141 0.021305 -0.948072 0.723087 -0.070376 -0.620414 -0.341842 0.040040 -0.159854 0.395263 -0.118922 0.751112 -1.327665 0.064671 -1.181853 0.531466 -0.777536 0.331739 0.785692 -0.396058 0.601136 0.249032 0.553832 0.431548 0.157920 0.632153 0.590395 0.826920 0.281470 0.707606 0.701331 -0.533949 -0.882091 -0.760207 -0.817155 0.495027 -0.362550 -1.572234 0.378140 0.010130 -0.341007 -0.039578 -0.257251 0.211138 1.376667 -0.899739 0.406080 0.758277 -0.191930 -0.092062 0.703306 -0.147801 0.009952 -0.371156 0.557670 -0.207635 0.660975 0.149652 0.631589 -0.800079 -0.738381 -0.154448 0.178440 0.034350 -0.601636 -0.705072 -1.161108 -0.105159 0.649297 -0.455966 0.061351 1.402750 -0.587076 -1.046852 0.714555 1.035852 -0.467572 0.114266 0.220153 1.154435 -0.461151 -0.210634 -0.437155 -0.273712 0.445418 1.498593 -0.013814 -0.661435 0.698781 -0.464178 -1.969768 1.621560 -0.222275 -0.243102 0.543966 0.084969 -0.531338 -0.526525 0.897266 -0.068149 1.086678 -0.639658 1.070222 -0.422590 -0.347236 0.139713 -0.625580 -0.214690 -0.907930 0.084035 0.354798 0.715569 -0.525079 -0.469771 -0.255848 -0.661854 -0.280085 0.732242 -1.280478 0.083376 0.117456 -0.002481 0.462761 0.590603 -0.163528 -0.139938 -0.602680 0.448455 0.432825 0.249222 -1.222709 -0.371796 -0.430160 -0.216986 -0.320457 0.012644 0.615624 -0.268078 -0.061924 0.381884 -0.501569 -0.349752 -0.155572 -0.994548 0.180849 -0.131023 0.800320 -0.101753 0.903257 0.995539 0.775417 0.255383 0.305534 -0.028600 -0.286715 -0.879943 0.301746 0.143776 -0.170632 0.509575 1.019618 0.511675 0.405080 0.987450 0.399178 0.337474 0.889288 0.044883 1.114890 -0.213119 -0.266661 0.203176 0.226837 0.822256 1.196837 0.648111 -0.341734 0.344479 -0.039513 -0.726379 -0.332740 -0.077276 -0.068032 -0.210572 0.919000 0.642379 -0.222245 -0.112911 1.167381 -0.041108 -1.388143 0.439150 0.203923 0.581263 0.587151 -0.210663 0.550406 0.616978 0.239500 0.542449 0.552908 0.567590 -0.987448 -0.710058 0.135911 0.388880 0.787794 0.518615 -1.835989 0.134030 0.261800 0.967552 -0.441539 1.196592 -0.740814 0.241925 0.386909 0.161277 -0.089524 0.023274 0.268374 -0.513918 -0.100807 -1.218942 -0.038906 +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.084325 0.582747 3.432840 -5.644316 -5.319371 -1.289661 3.089408 -2.698639 -1.579525 7.021982 0.776486 -3.052468 -2.746163 7.644875 -1.952352 -2.927561 -1.021198 -4.513382 -1.047738 -1.128380 -1.049871 4.762453 -1.337531 -0.734406 2.281498 -0.872181 -0.187986 3.212809 -0.799817 -1.985981 1.094706 -3.300720 0.515036 6.472847 1.058969 0.071962 -2.362084 9.753174 -6.042461 7.720434 -8.164019 -7.187148 6.683934 -1.235477 1.042685 -7.977735 -2.702452 4.538785 -0.395889 -2.248522 1.380763 1.456544 0.484878 -3.720736 0.592950 2.549196 -7.620583 3.883241 3.278448 -4.219665 -3.267785 -1.363940 -1.255707 1.111552 -4.671544 -4.211200 -0.509557 -0.094068 -2.623399 0.607069 -1.087780 -3.052045 3.793814 1.807351 -1.876927 2.277607 0.504711 -3.508925 4.885158 -6.631127 -5.543871 -2.685782 0.269309 -3.028126 3.340052 1.960555 4.178785 -9.102345 2.600903 -8.262548 2.746905 -4.898834 2.176672 6.797890 -1.680805 5.378389 1.959469 1.894592 4.809417 -0.174735 4.159703 3.910029 4.407529 4.355572 3.663059 5.470612 -4.169793 -4.804565 -5.214399 -4.782272 1.498224 -2.552505 -6.094231 2.883822 0.660317 -0.907217 0.163551 -0.391675 -1.224827 6.066737 -9.045337 -0.081083 3.288214 -1.447807 0.499131 3.954665 -0.857606 -0.609597 -2.940468 4.407663 -2.400580 5.318106 0.667240 5.197710 -3.598701 -3.906367 -3.679778 0.722257 0.519621 -3.905463 -4.914253 -8.918127 -1.461498 2.402794 -3.920103 5.453221 10.542356 -4.760475 -6.604312 6.545111 2.486834 -0.742698 1.915161 1.466769 5.471260 -1.223011 -3.304337 -2.485371 -3.072777 2.419743 8.510558 1.661093 -4.335439 4.739463 -1.641010 -6.989827 3.824971 -0.211209 -2.967864 -3.302400 1.531617 -4.219710 -2.632459 5.438787 -4.701246 6.192833 -3.750527 7.429654 -2.114267 -2.900515 1.709424 -8.625114 -0.358772 -5.440461 -0.284065 1.067292 3.128855 -5.228423 -3.097486 -2.737513 -3.380227 -3.746118 3.661094 -7.834860 0.467998 1.337886 2.012925 7.665108 5.339825 -0.814382 0.425816 -5.012083 3.563981 2.149693 2.041172 -9.239488 -1.184504 -0.923538 -2.381095 1.444380 -0.171687 2.965083 -2.400065 0.017307 2.174849 -1.880039 -0.893096 0.584021 -5.413398 1.268132 -0.612344 5.497920 2.142328 5.486566 5.205655 5.344777 2.322239 3.313469 -2.030920 -1.773565 -1.809152 2.043246 2.071517 -1.790424 3.868924 6.354827 5.101937 2.505804 6.582028 4.436107 -1.688683 6.076620 -1.506819 7.876732 -3.449974 -1.970841 1.016053 2.468786 4.747781 7.282385 0.229285 -2.060523 4.509773 -0.924463 -3.126247 -1.100596 0.903344 -1.774762 0.043440 4.625572 4.272415 -1.996795 0.172904 7.281485 -2.051732 -9.074052 4.207087 2.222451 4.773182 1.441405 0.691754 1.658068 3.768968 -2.657556 3.556886 4.761408 3.198765 -5.944143 -2.948125 0.948960 3.346955 6.859602 4.621366 -12.065030 -0.192444 2.678929 5.565092 -1.712072 6.753428 -3.975266 -2.573319 3.329554 -0.147755 -0.914822 1.182697 1.642546 -2.351002 1.464795 -4.222017 -2.103532 +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) = 0.557884 -0.469481 1.430519 -2.456133 -2.425121 -0.552816 3.165563 -1.021333 -0.756823 2.293150 0.191764 -1.166276 -2.791477 3.417716 -0.397949 -1.249860 -0.163590 -2.512807 -0.508256 -0.174778 -0.644655 1.948831 -0.591434 -0.388944 1.075059 -0.141158 -0.009906 2.702645 0.461716 -0.968858 0.475587 -1.454761 0.162118 2.836645 0.531465 0.047307 -1.121838 6.519064 -4.506067 4.866027 -3.808708 -3.234096 4.133837 -0.575028 -0.881631 -4.903386 -1.619208 2.191670 -1.714988 -1.488666 0.696026 0.687344 0.295235 -1.756084 0.030930 2.533823 -4.396294 1.386443 1.454261 -1.636319 -1.540262 -0.637871 -0.445163 0.599803 -2.738128 -1.881532 -0.199680 -1.963897 -1.290870 0.217766 -0.745511 -1.195955 2.515111 1.026247 -0.767176 0.922461 0.045621 -1.907989 2.084041 -2.700148 -3.465872 -1.205207 -0.211153 -1.541860 1.582997 0.719502 1.741986 -4.375803 0.087109 -4.613393 1.084446 -3.264836 0.919950 3.667637 -0.818352 3.609570 0.612754 0.391982 1.667209 -0.673057 1.678535 1.683293 2.578717 1.890452 1.662748 2.861277 -2.217679 -2.358650 -3.542196 -1.801293 0.851950 -1.163598 -4.405502 1.316461 0.228686 0.240091 0.467924 0.511951 -0.900868 2.876417 -2.955040 2.426514 1.225180 -0.631192 0.450840 2.955204 -0.311473 -0.301990 -1.016214 1.937284 -0.744677 3.706681 0.273136 2.323749 -1.456582 -1.470165 -0.947651 0.319364 0.420632 -1.540975 -2.137602 -4.552690 -0.665356 1.133544 -1.745289 1.976891 6.140692 -2.420054 -3.076135 2.757525 1.098786 0.955248 0.336984 0.534846 3.235745 -0.580719 -1.407104 -0.872796 -1.165796 1.061069 6.206424 0.666532 -1.968253 2.144116 -0.967501 -3.876019 2.864225 0.241815 -1.169133 -0.752983 0.411175 -1.854355 -2.548000 3.478650 -2.059071 3.688417 -1.424654 3.153154 -0.723436 -0.852856 0.836613 -3.033854 -0.112418 -4.096279 -0.439156 0.581103 1.214535 -2.299557 -1.297620 -2.576892 -1.233415 -1.648203 1.694651 -3.151021 0.070055 0.444040 0.952031 3.207840 2.581615 -0.566320 -0.073012 -3.294809 1.594177 0.574260 0.202124 -5.122901 -0.650785 -0.252632 -1.175655 1.107366 -0.120728 1.253927 -1.778252 0.028911 0.775256 -0.578482 -0.737944 0.311559 -4.786749 0.439075 0.360798 2.627165 1.806387 2.485633 3.035390 2.690267 0.822330 2.595641 -1.034567 -0.361768 -1.691362 0.631890 0.649075 -0.646741 1.705039 2.838810 2.175906 1.025029 2.832582 1.905451 -0.973398 2.536716 0.609403 4.711614 -1.115293 -2.278981 0.860424 0.961907 1.855071 3.030994 1.041660 -0.379395 2.102240 -0.580400 -1.549047 -1.167472 0.370645 -0.964279 0.389365 4.319628 1.892274 -0.855353 0.160618 3.193314 -1.138718 -5.803837 1.518849 1.071566 2.231227 0.961642 0.295455 1.134864 2.664341 -1.133406 2.849070 2.514377 1.264887 -2.379168 -1.207889 0.474862 1.157847 3.344185 1.763104 -7.610660 -0.663687 0.682963 2.478516 -0.427314 4.873306 -2.105268 -0.640401 1.426561 -0.694078 -0.110819 0.239118 0.924453 -0.682941 0.508485 -3.477992 -0.931365 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = -0.019022 0.133687 0.431153 -0.660385 -0.777959 -0.193307 0.380097 -0.252466 -0.139951 0.130318 0.283584 -0.393283 -0.367794 0.894203 -0.208335 -0.495842 -0.159392 -0.295711 -0.272650 -0.118805 -0.015436 0.525718 -0.093712 -0.070522 0.290066 -0.113973 -0.149675 0.537207 0.188019 -0.368197 0.072690 -0.270311 0.190358 0.747762 -0.039413 0.093402 -0.137301 1.232612 -0.510435 0.685588 -0.899467 -0.661669 0.891488 -0.192413 -0.090641 -1.270229 -0.746370 0.486865 -0.253087 -0.209147 0.191608 0.227730 -0.026227 -0.462246 0.180996 0.503654 -1.048573 0.542207 0.407358 -0.491173 -0.265829 -0.097604 -0.338011 -0.103340 -0.306532 -0.489666 -0.098878 0.046816 -0.240931 0.098479 0.021327 -0.468509 1.155033 0.089608 -0.184403 0.428043 0.203926 -0.516460 0.627767 -0.544644 -0.626720 -0.293698 0.222531 0.023151 0.510070 0.022716 0.345276 -1.120991 -0.064017 -0.998090 0.429698 -0.787131 0.240640 0.755152 -0.532348 0.661639 0.291835 -0.129160 0.482729 0.311922 0.642678 0.347986 0.591332 0.451827 0.416526 0.422311 -0.330859 -0.541824 -0.658450 -0.753643 0.182934 -0.201043 -1.270382 0.297040 0.096348 -0.051623 0.012742 -0.057888 0.227722 0.743176 -0.610365 0.371416 0.629336 -0.183454 -0.060064 0.697979 -0.156675 -0.153920 -0.508421 0.555157 -0.333278 0.696667 0.038540 0.528298 -0.191143 -1.068220 -0.516120 -0.046183 -0.078849 -0.449625 -0.572772 -0.797260 -0.028431 0.274843 -0.443923 0.159024 1.374804 -0.596769 -0.878445 0.859454 0.900919 0.083346 0.242621 0.223447 0.937599 -0.170822 -0.397686 -0.363815 -0.446276 0.336737 0.534200 0.194956 -0.526145 0.474713 -0.052154 -1.534065 1.121900 -0.252363 -0.332202 0.283849 0.156697 -0.525988 -0.520858 0.795841 0.372847 0.998211 -0.321858 0.960385 -0.278980 -0.595120 0.190034 -0.393867 -0.014198 -0.609257 -0.024864 0.258898 0.325796 -0.529284 -0.406715 -0.305944 -0.465613 -0.415490 0.392688 -0.534953 0.133646 0.139750 0.215989 0.221890 0.715782 -0.092849 0.131925 -0.801430 0.384052 0.281173 0.217108 -1.286908 0.024824 -0.133340 -0.182725 0.089870 -0.027142 0.334389 -0.032703 -0.073567 0.189321 -0.428279 -0.076574 -0.029385 -0.456332 0.036816 -0.197417 0.603910 0.116826 0.613908 1.051343 0.609740 0.289882 0.484451 -0.069725 -0.142620 -0.112573 0.142594 0.070323 0.010158 0.464655 0.735799 0.624930 0.260882 0.825253 0.479496 0.028144 0.786251 0.163982 1.200474 -0.246299 -0.348327 0.062257 0.261339 0.720314 1.078919 0.182784 -0.122833 0.467395 0.233324 -0.274182 -0.562380 -0.005375 -0.120103 -0.329706 0.957455 0.336130 -0.273220 0.046487 0.885578 -0.178157 -1.068784 0.523487 0.186962 0.500141 -0.016979 0.122222 0.074003 0.646931 -0.319542 0.282345 0.469364 0.533470 -0.810685 -0.629250 0.082376 0.442459 0.568765 0.667567 -1.378817 0.049893 0.393632 0.687530 -0.304921 0.632021 -0.465152 -0.418579 0.350017 0.052049 -0.222325 0.168339 0.038127 -0.505155 0.001424 -0.558215 -0.428449 +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.002255 0.225093 0.761669 -1.228362 -1.413046 -0.209522 0.434223 -0.754763 -0.288063 0.426486 0.631830 -0.728569 -0.510545 1.525614 -0.461583 -0.836806 -0.267690 -0.313163 -0.401120 -0.370086 -0.015486 0.806454 -0.230706 -0.356162 0.347547 -0.326897 -0.073703 0.945853 0.295571 -0.374003 0.096127 -0.565352 0.347164 1.440505 0.199094 0.146709 -0.380735 2.065039 -0.991159 1.132860 -1.809424 -1.253237 1.709950 -0.331474 -0.070567 -2.280616 -1.358071 0.831387 -0.455431 -0.347783 0.213376 0.158548 0.283127 -0.854282 0.090471 0.841732 -1.661219 0.903102 0.773742 -1.170207 -0.607571 -0.182248 -0.410252 0.097262 -0.647562 -0.918608 -0.112939 0.268522 -0.281144 0.110845 -0.155053 -1.004667 2.005157 0.095602 -0.357223 0.561902 0.142542 -0.996723 1.054882 -0.748079 -1.177215 -0.604406 0.378564 -0.021612 0.736039 0.145300 0.877959 -2.086747 -0.130145 -1.982414 0.816779 -1.177665 0.549364 1.206118 -1.018095 1.057189 0.582173 -0.081790 0.945004 0.503457 1.049673 0.604241 1.005415 0.713218 0.889329 0.880842 -0.520928 -1.011031 -1.099436 -1.341519 0.343030 -0.439607 -2.345261 0.611325 -0.060209 -0.189243 -0.246762 -0.217342 0.359786 1.587814 -1.109304 0.565264 1.058774 -0.336468 -0.005926 1.147587 -0.211676 -0.082905 -0.737357 0.877971 -0.640677 1.064672 0.068067 1.073450 -0.453915 -1.966497 -1.076359 0.174304 0.050365 -0.952302 -1.096041 -1.458226 -0.146737 0.559969 -0.787655 0.274924 2.387877 -1.153808 -1.741153 1.368347 1.502692 -0.157773 0.633595 0.457733 1.825040 -0.469370 -0.548253 -0.715215 -0.792995 0.652556 1.162164 0.131249 -0.983988 1.022654 -0.201623 -2.712224 1.957801 -0.397269 -0.618595 0.454726 0.339991 -0.867123 -0.813965 1.302233 0.465716 1.690356 -0.681889 1.762144 -0.708278 -1.073752 0.259671 -0.866224 -0.223992 -0.804418 0.057993 0.441838 0.804639 -0.914600 -0.786540 -0.533915 -0.879522 -0.640643 0.951170 -0.960126 0.189543 0.347724 0.140507 0.490176 1.285724 -0.141887 0.170067 -1.190170 0.727546 0.754505 0.500929 -2.375876 -0.272137 -0.419632 -0.336742 -0.025082 0.038893 0.915119 -0.166169 -0.027487 0.316818 -0.726927 -0.040095 -0.011504 -0.834067 0.276968 -0.423072 1.087237 0.123797 1.299117 1.675316 1.286265 0.512355 0.785683 -0.157863 -0.459042 -0.141042 0.306761 0.359381 -0.104867 0.859645 1.476977 1.034413 0.620392 1.539011 0.791609 0.215003 1.456749 0.053798 2.047880 -0.653898 -0.392997 0.074644 0.459910 1.351059 2.040476 0.466519 -0.404466 0.723691 0.203640 -0.573183 -1.085727 0.071467 -0.110657 -0.513231 1.643852 0.972736 -0.319667 -0.211409 1.745234 -0.185149 -1.967949 1.128540 0.382128 0.887432 0.159655 -0.017671 0.180623 1.016119 -0.296355 0.549914 0.992022 0.996568 -1.589842 -1.136509 0.186708 0.885174 1.171828 1.062790 -2.577650 0.229645 0.764207 1.333497 -0.565798 1.283537 -1.058128 -0.565898 0.610717 0.119448 -0.222530 0.269199 0.135528 -0.957416 0.058767 -0.983273 -0.617215 +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.032345 -0.305454 1.330720 -4.351122 -4.151712 -0.079855 1.677283 -2.478063 -1.289571 3.892186 1.086138 -1.984469 -2.155911 5.187637 -0.600557 -2.516415 -0.249488 -3.121891 -0.285060 0.425871 -0.948004 3.291760 -1.357502 -0.519778 1.194291 -0.054642 -0.643091 2.376705 0.824272 -1.447437 -0.536197 -2.418040 -0.394517 4.798940 1.607270 -0.367219 -1.190377 8.222544 -4.236380 5.617740 -5.450254 -4.324388 4.845325 -1.008265 -0.125495 -5.492252 -2.116130 3.267830 -0.962165 -2.008878 1.725972 0.220651 0.880335 -1.939452 0.284066 2.400418 -5.541901 2.759022 2.793081 -1.878961 -1.553231 -1.336291 -0.694023 1.146209 -3.750978 -3.034015 -0.043984 -0.558198 -1.544583 -0.620309 -1.590777 -2.853140 4.077656 1.996949 -1.995749 0.912477 -0.107765 -3.409960 3.243827 -3.997161 -5.193137 -1.445861 -0.543034 -2.125189 3.122369 0.797485 3.344798 -6.919035 1.942403 -7.214253 1.548477 -3.839345 1.876363 5.623091 -2.010807 3.213313 1.607230 1.918190 3.638116 -0.411477 3.291787 2.363136 2.207589 2.737578 2.612553 3.860059 -2.700213 -2.798974 -3.558990 -3.433661 0.934581 -1.460746 -5.928049 2.481170 -0.058984 0.339047 -0.208183 0.383296 -1.209217 4.035625 -5.487329 -0.091671 1.413172 -1.093564 1.414576 4.006926 -0.757099 0.006653 -2.240402 3.378610 -1.693883 4.036259 -0.130063 3.840590 -2.583059 -2.456958 -3.068139 0.990913 1.321498 -3.240399 -3.953574 -6.572330 -0.793713 0.967032 -2.906237 4.269237 8.279415 -4.246987 -4.464808 5.194179 1.131763 0.037619 2.067686 0.549022 4.576186 -0.999142 -2.015259 -1.483241 -2.365515 0.283381 5.612557 1.054507 -2.755783 2.907265 -1.722752 -4.761031 3.627789 0.796714 -2.839330 -2.020455 0.636242 -2.862207 -3.005399 4.633554 -3.437321 3.972362 -1.431185 5.475220 -1.100158 -1.679783 1.828031 -4.408695 -0.434378 -4.435440 -0.908434 1.120610 2.108156 -3.622649 -2.028869 -1.707644 -1.522586 -3.291478 2.583016 -3.184637 0.220513 1.621679 1.487489 5.209752 4.695956 -0.328503 0.056610 -3.725458 2.854961 1.715220 -0.172652 -5.910503 -1.411162 -1.289411 -1.585974 1.694459 -0.252986 2.489035 -2.472747 -0.625256 1.222258 -0.407952 0.658325 1.435810 -5.377219 1.290266 -0.044301 3.286366 2.233861 4.090606 3.195677 4.842214 2.267485 2.248905 -1.257665 -0.077720 -1.641265 0.652316 1.205833 -0.312097 3.012822 4.332526 3.848552 2.139902 4.364574 2.901221 -0.442712 4.495180 -0.522787 6.636745 -1.459491 -1.933252 0.792390 1.125215 3.727431 5.812713 -0.472226 -0.674629 2.860294 -0.879814 -2.534124 -1.468321 1.295685 -1.342478 -0.103288 3.213756 2.463502 -0.264334 -0.815417 5.526134 -1.831455 -7.429144 3.102536 1.615049 3.746974 2.023628 0.748104 1.738876 2.352816 -2.405719 3.950235 4.432286 2.566419 -3.646983 -1.598293 0.685897 2.128181 3.993007 3.359324 -7.819920 0.182490 1.885447 4.222823 -0.126791 4.650851 -3.106324 -1.490415 2.530604 -0.594524 -0.055793 -0.006491 1.643341 -1.423218 0.775029 -3.609374 -1.676621 +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.420426 -0.077304 0.380160 -1.874326 -1.677324 -0.289440 1.340290 -0.669441 -0.590630 1.310201 0.427461 -0.961252 -1.410748 2.258549 0.018227 -1.135016 0.045632 -1.867282 -0.341297 0.524371 -0.514180 1.462803 -0.485707 -0.157772 0.772105 0.354292 -0.588381 1.159546 0.720856 -1.173182 -0.328735 -0.831816 -0.053566 1.973402 0.386078 -0.378860 -0.331523 3.799272 -2.028041 2.496450 -2.106735 -1.648782 2.199254 -0.483495 -0.450803 -2.579269 -0.798338 1.601755 -0.696063 -1.030613 0.866239 0.362734 0.011485 -0.996296 0.194533 1.536366 -2.753981 1.456536 1.314877 -0.222448 -0.494099 -0.580885 -0.388169 0.104016 -1.382976 -1.366033 -0.120452 -0.988172 -0.933618 -0.309530 -0.767797 -1.011683 1.853031 0.929772 -0.748788 0.624714 -0.163767 -1.513740 1.405433 -2.002977 -2.166865 -0.499762 -0.136547 -0.625405 1.585832 0.098010 0.908380 -2.936616 0.389675 -3.008137 0.497624 -1.993436 0.710709 2.664972 -0.830510 1.506252 0.327893 0.157494 1.282991 -0.154752 1.508680 0.902114 1.109924 1.089151 0.885154 1.609334 -1.275003 -1.164266 -1.509603 -1.380015 0.347855 -0.291930 -2.539868 1.117369 -0.053008 0.221941 0.425369 0.256706 -0.548650 1.374502 -1.814704 0.117559 0.562664 -0.476371 0.686332 2.163308 -0.341187 -0.262136 -1.182581 1.495614 -0.306441 2.163542 -0.120994 1.538018 -0.746714 -1.303929 -0.974250 0.087362 0.436629 -1.241345 -1.662987 -2.868619 -0.083490 -0.165430 -1.351663 1.665506 3.618694 -1.708642 -1.746997 2.430424 0.538629 0.707140 0.612896 0.010368 2.065621 -0.425559 -0.833505 -0.260396 -0.933533 0.035108 2.350362 0.464361 -1.282319 0.849128 -0.711321 -2.161278 1.354993 0.666003 -1.038731 -0.381905 0.095766 -1.270166 -1.841254 2.197305 -0.974677 1.833165 -0.305344 2.314440 -0.226500 -0.727547 1.094117 -1.087363 0.069934 -2.284706 -0.797000 0.689825 0.518380 -1.437343 -0.771215 -0.894002 -0.233872 -1.608841 1.009281 -1.255819 0.068322 0.470107 0.837068 1.776452 1.922839 -0.498330 0.294464 -1.975912 1.193740 0.498526 -0.240911 -2.626077 -0.275535 -0.379292 -0.726895 1.298872 -0.282579 0.780051 -0.929753 -0.494475 0.853851 -0.103001 0.190858 0.486896 -2.417932 0.361748 0.016367 1.235669 1.195587 1.762255 1.385847 1.830010 0.757125 1.083135 -0.564899 0.338008 -1.003012 -0.010180 -0.094838 0.148571 1.374023 1.470474 1.691278 0.731258 1.796218 1.110938 -0.690773 1.905300 0.313343 2.878373 -0.221530 -1.292069 0.581249 0.213398 1.536336 2.276127 -0.479134 -0.389145 1.379031 -0.172708 -0.994545 -0.663034 0.352694 -0.727561 -0.243449 1.646815 0.456702 -0.286577 -0.015169 2.316813 -1.085434 -3.290937 1.189129 0.661654 1.665245 0.565268 0.545250 0.777800 1.224821 -1.382548 1.653675 1.783421 1.146429 -1.244185 -0.666177 0.275059 0.824751 1.360638 1.399151 -3.471001 -0.331769 0.703515 1.771843 0.206033 1.931609 -1.047765 -0.702117 0.975899 -0.109727 -0.006380 -0.267244 0.714898 -0.666038 0.136346 -1.632385 -0.566121 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.015491 0.259697 0.671442 -1.053993 -1.639395 0.005117 -0.099806 -0.671298 -0.234212 0.199410 0.551814 -0.498193 -0.653111 1.300499 -0.532871 -0.982400 -0.463615 -0.290269 -0.159921 -0.406070 -0.086245 0.785256 -0.300658 0.075072 0.217428 -0.316548 -0.281940 0.611014 0.696716 -0.472883 -0.085773 -0.538671 0.061705 1.192160 0.252945 0.031428 -0.086933 2.039466 -0.380015 0.604492 -1.545712 -1.167612 1.080895 -0.259756 0.025394 -1.817740 -1.085495 0.717687 -0.870364 0.159266 0.604212 0.118112 0.164855 -0.302952 0.417109 0.457031 -1.675195 1.277269 0.610773 -0.793780 -0.129517 -0.165207 -0.603039 0.062243 -0.064280 -0.696685 -0.041502 0.630213 -0.289253 -0.049450 0.066012 -0.822111 1.898871 0.157615 -0.488503 0.438254 0.456981 -0.699303 0.934230 -1.133246 -1.382816 -0.376309 0.320020 0.122598 0.840228 0.208152 0.610558 -1.790576 0.015523 -1.871524 0.674168 -0.969069 0.442381 1.111826 -1.061656 0.724932 0.788429 -0.387813 1.243755 0.404321 1.047433 0.443808 0.666973 0.840379 0.471748 0.605884 -0.256059 -0.460259 -0.930579 -1.304135 -0.001808 -0.172306 -2.028623 0.494423 0.161918 0.245540 -0.273343 -0.058520 0.323974 0.997662 -0.999479 0.124489 0.739807 -0.277694 0.198245 1.029801 -0.307014 0.072356 -0.679318 0.963569 -0.907133 0.939746 -0.038062 0.868435 -0.039586 -1.873040 -1.666718 0.237113 0.193290 -0.790260 -0.930652 -1.056616 -0.059562 0.200891 -0.674038 0.408947 2.281006 -1.243982 -1.445945 1.460138 0.980885 0.044751 0.901470 0.359776 1.416397 -0.134428 -0.692666 -0.724248 -0.945158 0.174150 0.360356 0.450422 -0.573743 0.787127 0.185713 -1.804769 1.096086 -0.407864 -0.932095 0.037370 0.330875 -0.751868 -0.604475 1.002763 0.634427 1.196606 -0.149929 1.546693 -0.524112 -1.189964 0.236556 -0.629433 -0.005272 -0.381729 -0.030036 0.480820 0.497930 -0.928202 -0.582980 -0.414904 -0.706244 -0.801931 0.414114 -0.091390 0.278124 0.575438 0.417741 0.514494 1.600935 0.258508 0.217707 -1.120066 0.680031 0.461757 0.161233 -1.980412 -0.131611 -0.333045 -0.202398 0.378431 -0.029407 0.666031 0.040704 -0.124765 -0.076042 -0.633105 0.441180 0.396570 -0.338052 0.198727 -0.403726 0.963396 0.225069 0.837413 1.455110 1.366692 0.898529 0.778527 -0.047335 -0.196223 0.756024 0.106901 0.535641 0.006647 0.746667 1.192571 1.086017 0.478111 1.249937 0.860400 0.127577 1.262780 -0.126952 2.104741 -0.822519 -0.267809 -0.256767 0.503429 1.156505 1.991427 -0.053301 0.069444 0.630540 0.378220 -0.146458 -1.120100 0.354505 -0.201242 -0.355457 1.187138 0.854303 -0.172658 -0.258898 1.319194 -0.264028 -1.523263 1.101588 0.286756 0.745225 -0.043115 0.288014 -0.250086 0.688053 -0.834368 0.608131 1.090875 0.898113 -1.294053 -0.989126 0.111200 0.846799 0.595760 1.191156 -1.757714 0.139762 0.903530 0.979503 -0.285039 0.710602 -0.971463 -1.184120 0.759659 -0.180197 -0.350782 0.435315 0.091097 -0.835963 0.261415 -0.224300 -1.040654 +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.262683 -0.139241 1.067571 -2.173603 -2.243317 -0.156890 0.996859 -1.361604 -0.595083 1.483642 0.741456 -1.086477 -0.953524 2.882921 -0.573715 -1.241457 -0.266189 -1.014230 -0.347044 -0.239679 -0.247034 1.557461 -0.571626 -0.479165 0.586276 -0.387190 -0.096059 1.694241 0.217166 -0.540575 0.067777 -1.205722 0.107025 2.488357 0.673980 0.193732 -0.771078 4.322972 -2.533764 2.974186 -3.151023 -2.447113 2.998490 -0.532243 -0.078050 -3.625444 -2.003480 1.507929 -0.679801 -0.891839 0.542377 0.136012 0.543480 -1.239697 0.109397 1.373021 -2.994912 1.238049 1.346256 -1.681732 -1.054587 -0.510052 -0.479330 0.444755 -1.897749 -1.550770 -0.097942 0.043422 -0.590050 -0.036415 -0.546838 -1.581444 2.745757 0.625748 -0.767871 0.654693 0.093476 -1.770896 1.730807 -1.618629 -2.556664 -0.978132 0.051438 -0.872333 1.336623 0.479724 1.926220 -3.666328 0.518246 -3.754140 1.109752 -2.185913 0.948481 2.549597 -1.330501 2.085526 0.986821 0.772460 1.709663 0.260678 1.630626 1.257040 1.489594 1.390716 1.631251 1.927474 -1.237267 -1.688594 -2.214778 -1.961021 0.634155 -1.000566 -3.806338 1.140862 -0.029143 -0.066503 -0.408669 0.080773 -0.105289 2.587084 -2.523255 1.090398 1.260910 -0.567591 0.266659 1.977722 -0.330679 -0.080643 -1.151030 1.553461 -1.093525 2.115393 0.055317 1.971408 -1.233157 -2.145920 -1.569560 0.456424 0.371920 -1.675204 -1.945342 -3.180904 -0.459011 1.036028 -1.408624 1.572583 4.519834 -2.204869 -2.751601 2.401532 1.717135 -0.190456 0.996867 0.622813 2.873615 -0.619876 -1.051028 -1.080630 -1.304365 0.722054 3.028596 0.381689 -1.553127 1.797671 -0.701380 -3.916158 3.200199 -0.193248 -1.267852 -0.421572 0.526683 -1.486666 -1.517008 2.546520 -0.932064 2.716348 -1.148986 2.874177 -0.897879 -1.166915 0.593906 -2.377040 -0.392223 -2.184535 -0.072404 0.472251 1.322595 -1.763662 -1.238269 -1.163525 -1.274820 -1.315058 1.546214 -1.903889 0.200490 0.741998 0.448758 2.051202 2.351434 -0.154908 0.054684 -2.128519 1.373279 1.136733 0.386579 -3.917252 -0.657991 -0.660271 -0.730196 0.203493 0.044188 1.477811 -1.086131 -0.048375 0.442282 -0.673119 0.014217 0.374914 -2.619229 0.588901 -0.268213 2.011928 0.846360 2.163289 2.459917 2.469132 0.986170 1.480327 -0.576704 -0.503541 -0.703343 0.565230 0.759105 -0.284806 1.471040 2.585256 1.862136 1.148107 2.454567 1.490863 0.188532 2.373397 -0.100090 3.731391 -0.920684 -0.990224 0.304795 0.800746 2.067902 3.231843 0.653803 -0.384439 1.379026 -0.239699 -1.266313 -1.335327 0.455221 -0.423881 -0.366835 2.757554 1.629276 -0.292077 -0.439114 2.921116 -0.584313 -4.021171 1.708946 0.797427 1.755441 0.792315 0.134752 0.726044 1.708798 -0.724036 1.760949 2.107032 1.433351 -2.366979 -1.392017 0.360572 1.241832 2.544629 1.761912 -4.892863 0.371140 1.041713 2.221904 -0.661026 2.801231 -1.840910 -0.707998 1.163944 -0.223955 -0.166261 0.303774 0.553205 -1.028009 0.290108 -2.184719 -1.022211 +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.143387 -0.010095 -0.070830 -0.145190 -0.040943 0.025425 0.106778 -0.016377 -0.062286 -0.088970 0.041217 -0.016708 -0.101370 0.206258 0.061759 -0.101765 0.054320 -0.315035 -0.072580 0.262405 -0.056107 0.106002 -0.040539 -0.000851 0.058284 0.171682 -0.132616 -0.051192 -0.026303 -0.302557 -0.204076 -0.028507 -0.030911 0.124335 0.019434 -0.006090 0.023698 0.251877 0.037939 0.231943 -0.112352 -0.024964 0.042241 -0.079723 -0.032098 -0.179228 -0.005959 0.158218 0.127766 -0.181193 0.119480 0.011267 -0.180101 -0.047314 0.040615 0.148883 -0.230938 0.170422 0.138090 0.224523 0.070355 -0.071803 -0.003721 -0.127812 0.020000 -0.107975 0.002863 -0.097487 -0.159302 -0.033188 -0.117930 -0.113989 0.239229 0.149747 -0.060531 0.036260 -0.038312 -0.098865 0.103882 -0.296189 -0.141448 0.030362 -0.038101 0.106834 0.210190 -0.014885 -0.075690 -0.196086 0.105618 -0.212252 -0.015477 -0.195608 0.038134 0.219278 -0.000101 0.006953 0.017841 -0.016674 0.077422 0.113786 0.155680 0.020722 -0.042975 0.004917 0.055758 -0.015402 -0.064717 -0.007075 0.001423 -0.118324 0.010249 0.121147 -0.148419 0.105389 0.016129 0.152613 0.045551 0.153557 0.027377 -0.170735 -0.179390 -0.118171 0.002956 -0.028477 0.151046 0.227252 -0.061395 -0.037857 -0.219044 0.114492 0.041558 0.171219 -0.047220 0.058539 -0.006182 -0.148394 -0.045399 -0.050869 0.057555 -0.098913 -0.140610 -0.221988 0.082308 -0.048364 -0.152685 0.187863 0.216974 -0.124619 -0.014459 0.230634 0.143828 0.146757 0.053439 -0.060296 0.166984 -0.040421 -0.023439 0.177882 -0.046181 -0.129649 -0.266919 0.024591 -0.075654 -0.058240 -0.053353 -0.245502 0.186830 0.118614 -0.087196 0.180450 -0.090972 -0.084192 -0.221581 0.151524 0.119105 0.097359 0.150197 0.167431 0.039054 0.047142 0.144459 0.120281 0.059809 -0.188534 -0.141970 0.018690 -0.003444 -0.142125 -0.015611 0.079084 0.014278 -0.177705 0.059879 0.049397 0.008596 0.039413 0.091760 0.021265 0.141007 -0.086989 0.093690 -0.167664 0.091584 -0.024467 -0.106458 -0.058066 0.029752 -0.062771 -0.022296 0.233771 -0.060467 -0.031850 -0.019794 -0.128029 0.140367 0.030503 0.081418 0.064005 0.091818 -0.106622 0.017845 0.014294 0.099862 0.132988 0.018834 0.126760 0.064562 -0.012165 -0.020440 0.168733 -0.131255 -0.141598 -0.181875 0.172531 0.116489 -0.110815 0.123373 0.021664 0.105546 0.021222 -0.042334 0.158227 0.160204 0.187353 0.084022 -0.149116 0.071179 -0.099951 0.139930 0.110590 -0.327535 0.063549 0.076578 -0.011208 -0.076733 0.082173 0.023136 -0.070104 -0.202776 0.052140 -0.091404 0.089007 -0.011862 0.173967 -0.154336 -0.195452 0.031479 0.026158 0.140348 0.093278 0.116041 0.145299 0.052085 -0.147839 0.046563 0.113113 0.155941 -0.003070 -0.046813 0.003113 0.019992 -0.106197 0.109271 0.027874 0.012094 0.069979 0.128365 0.061454 -0.146798 -0.016874 -0.030313 0.043977 0.045098 0.027242 -0.046017 0.128133 0.036550 -0.164716 -0.119503 0.017167 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.013394 0.318961 0.789293 -1.242878 -1.971532 0.013318 -0.209147 -0.802316 -0.286290 0.172438 0.644911 -0.585514 -0.848186 1.494572 -0.656848 -1.243994 -0.591490 -0.310205 -0.185404 -0.529505 -0.130360 0.899766 -0.362092 0.087437 0.260621 -0.397334 -0.342506 0.706029 0.939614 -0.598044 -0.104201 -0.639293 0.077066 1.428261 0.306564 0.049626 -0.080370 2.437182 -0.297838 0.603463 -1.848550 -1.409024 1.283298 -0.317070 0.033733 -2.132262 -1.242137 0.863573 -1.192992 0.290526 0.724851 0.137786 0.176000 -0.361154 0.497352 0.539702 -2.033622 1.646907 0.721848 -0.938479 -0.139816 -0.196933 -0.744846 0.054124 0.069201 -0.833077 -0.053828 0.810756 -0.397048 -0.059605 0.082142 -0.947753 2.333396 0.178661 -0.582167 0.533943 0.543166 -0.739339 1.084084 -1.407532 -1.659413 -0.459697 0.445044 0.231479 1.011107 0.290924 0.676681 -2.134059 -0.017157 -2.243481 0.814200 -1.128303 0.551434 1.303920 -1.311646 0.871543 0.953222 -0.605765 1.488713 0.489890 1.261262 0.454407 0.776290 1.008692 0.502813 0.662464 -0.247872 -0.505824 -1.064358 -1.557584 -0.069460 -0.151248 -2.421020 0.592264 0.152972 0.399629 -0.331849 -0.043550 0.390017 1.074422 -1.186185 0.067853 0.853777 -0.335531 0.313601 1.214837 -0.366316 0.106568 -0.787715 1.152598 -1.092524 1.077291 -0.063501 1.041778 0.092516 -2.316849 -2.111483 0.281875 0.264108 -0.935905 -1.116488 -1.176679 -0.080241 0.182299 -0.804615 0.491936 2.732023 -1.487592 -1.724005 1.748603 1.079731 0.138376 1.152975 0.443287 1.692672 -0.158915 -0.813075 -0.834541 -1.125767 0.213674 0.262442 0.530082 -0.686654 0.932641 0.289747 -1.993271 1.130708 -0.488709 -1.120627 0.020762 0.386978 -0.892509 -0.717456 1.156151 0.853580 1.428196 -0.110003 1.862416 -0.659329 -1.493717 0.280683 -0.695181 -0.004696 -0.343117 -0.041206 0.563744 0.557440 -1.141441 -0.702093 -0.479144 -0.812004 -0.962006 0.489437 0.080454 0.325286 0.692493 0.494923 0.604286 1.935740 0.309955 0.280636 -1.361455 0.803675 0.545351 0.195294 -2.351214 -0.151344 -0.373249 -0.240619 0.553133 -0.032308 0.789983 0.120435 -0.144567 -0.116887 -0.740767 0.603009 0.490072 -0.273396 0.228893 -0.483532 1.096101 0.275125 1.002690 1.736697 1.631779 1.076969 0.938027 -0.042288 -0.242304 1.072155 0.077906 0.641806 0.063931 0.895092 1.371690 1.303844 0.558771 1.491476 1.032184 0.097487 1.513975 -0.166748 2.542292 -1.076507 -0.301448 -0.334751 0.586389 1.386855 2.387793 -0.186469 0.093618 0.764529 0.492434 -0.083661 -1.404543 0.429313 -0.239406 -0.430615 1.414704 1.028343 -0.198194 -0.327194 1.570329 -0.318166 -1.784802 1.382665 0.346103 0.871439 -0.125812 0.348770 -0.393172 0.821208 -1.060474 0.657702 1.304039 1.087150 -1.551128 -1.148846 0.127669 1.060097 0.593402 1.414993 -1.980696 0.118145 1.126426 1.157315 -0.277818 0.745696 -1.153219 -1.520180 0.898825 -0.227083 -0.413467 0.538668 0.086908 -1.001049 0.322258 -0.140969 -1.284959 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = -0.046538 0.057364 0.212177 -0.295461 -0.284952 -0.112641 0.387773 -0.008633 -0.050138 -0.142490 0.164046 -0.161355 -0.270804 0.389516 0.034266 -0.233934 -0.004208 -0.243214 -0.207852 0.073277 0.003357 0.222832 -0.011598 0.002771 0.168835 0.037343 -0.119707 0.331278 0.056134 -0.288255 -0.003056 -0.067274 0.104539 0.311416 -0.094731 0.083213 -0.018140 0.574418 -0.302982 0.426801 -0.297732 -0.199500 0.406897 -0.098433 -0.159735 -0.640386 -0.374228 0.260126 -0.101167 -0.239787 0.166596 0.169060 -0.078071 -0.225419 0.126579 0.375627 -0.536867 0.170916 0.189875 -0.112763 -0.065260 -0.022064 -0.210936 -0.148665 -0.122886 -0.217440 -0.049737 -0.173805 -0.123632 0.046763 0.022789 -0.224559 0.645831 0.061964 -0.040470 0.249866 0.152658 -0.255319 0.325671 -0.170481 -0.237191 -0.105352 0.052179 0.048219 0.333569 -0.109311 0.015225 -0.472358 -0.142481 -0.388142 0.191894 -0.467353 0.052998 0.354966 -0.188628 0.322767 0.089390 -0.164561 0.054841 0.147074 0.306112 0.121746 0.309633 0.184261 0.234460 0.098450 -0.228888 -0.299207 -0.376548 -0.350562 0.149298 -0.092103 -0.577387 0.114740 0.097953 -0.047511 0.122062 -0.001357 0.156856 0.253940 -0.118948 0.403692 0.332245 -0.078432 -0.068228 0.444892 -0.091773 -0.142416 -0.272475 0.277714 -0.096749 0.440105 0.004303 0.186652 0.028375 -0.497834 -0.047930 -0.091900 -0.072731 -0.135709 -0.237131 -0.349183 0.060902 0.125153 -0.206316 -0.032566 0.625083 -0.224480 -0.324722 0.412389 0.597213 0.166032 -0.054242 0.076906 0.438661 -0.075560 -0.202113 -0.139684 -0.213044 0.141137 0.245552 0.116002 -0.238438 0.178441 -0.026607 -0.885800 0.741295 -0.124013 -0.114447 0.416972 0.013072 -0.256928 -0.375048 0.430046 0.397004 0.491308 -0.046732 0.423304 -0.045705 -0.225868 0.119014 0.078702 0.059044 -0.471299 -0.116102 0.182400 0.052816 -0.197815 -0.166718 -0.208629 -0.155775 -0.193128 0.140272 -0.296037 0.073285 0.011102 0.155138 -0.106060 0.295535 -0.082460 0.062545 -0.450770 0.165468 0.021122 0.068685 -0.525781 0.108915 -0.024958 -0.068645 0.105625 -0.043464 0.082642 0.014901 -0.079078 0.178364 -0.229412 -0.146940 -0.036278 -0.308368 -0.093288 0.016633 0.213550 0.099789 0.246658 0.551159 0.207090 0.108399 0.246684 -0.024200 0.097399 -0.298140 -0.025310 -0.157423 0.143082 0.206001 0.196850 0.273476 0.060492 0.364881 0.202105 0.030568 0.334949 0.275683 0.513351 0.144945 -0.281169 0.113372 0.077718 0.307429 0.379853 0.083071 -0.003055 0.234161 0.200362 -0.152861 -0.241436 -0.057449 -0.091939 -0.214501 0.593305 0.008184 -0.148054 0.096723 0.378996 -0.135155 -0.504460 0.095696 0.067857 0.238491 0.009819 0.106003 0.120308 0.323968 -0.176042 0.131549 0.133008 0.255875 -0.321201 -0.262619 0.032931 0.098967 0.198910 0.305071 -0.679420 -0.091496 0.065574 0.314626 -0.128913 0.275741 -0.149298 -0.106560 0.134705 0.038030 -0.097824 0.025659 0.022651 -0.220045 -0.108510 -0.422915 -0.125600 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = -0.029813 0.162766 0.525819 -0.794490 -1.047656 -0.092449 0.392720 -0.362577 -0.139656 0.152139 0.446599 -0.410321 -0.383224 1.074896 -0.215077 -0.528388 -0.168830 -0.373711 -0.232472 -0.084928 0.019183 0.646949 -0.160840 0.048566 0.223193 -0.106930 -0.219157 0.614354 0.214023 -0.355133 -0.041709 -0.334678 0.097963 0.833048 0.061976 0.027809 -0.099945 1.466573 -0.766067 0.841634 -1.005906 -0.708799 0.872698 -0.180846 -0.116153 -1.476948 -0.964035 0.538426 -0.234090 -0.279386 0.433886 0.182730 0.102526 -0.308677 0.311174 0.518234 -1.180919 0.534477 0.469111 -0.521891 -0.138941 -0.099911 -0.412069 -0.009638 -0.436488 -0.512974 -0.044366 0.087615 -0.110714 -0.006393 0.043729 -0.665977 1.302138 0.136645 -0.293682 0.376710 0.351222 -0.765049 0.783721 -0.577259 -0.878828 -0.244187 0.072336 -0.095472 0.655094 -0.066810 0.449733 -1.277297 -0.034947 -1.238899 0.467892 -0.891688 0.221723 0.881136 -0.619827 0.583443 0.447713 -0.020537 0.697476 0.290125 0.739745 0.476709 0.615536 0.556564 0.535691 0.531981 -0.412663 -0.538093 -0.854212 -0.930637 0.238870 -0.277606 -1.483490 0.336433 0.229068 -0.149950 -0.048914 -0.110225 0.264512 0.980005 -0.586965 0.521274 0.676323 -0.192108 -0.112310 0.893602 -0.225004 -0.097159 -0.586838 0.697590 -0.525683 0.893090 0.018931 0.576931 -0.303326 -1.171585 -0.667836 0.075459 -0.014704 -0.527909 -0.643296 -0.972978 0.030609 0.290795 -0.491382 0.170706 1.616033 -0.806902 -1.000528 1.044754 1.114941 -0.047835 0.286958 0.208743 1.057508 -0.129903 -0.529678 -0.563773 -0.658025 0.170818 0.746728 0.334051 -0.459269 0.550744 -0.065666 -1.901770 1.456558 -0.291581 -0.557536 0.344221 0.212359 -0.581239 -0.589345 0.921680 0.396629 0.961761 -0.261641 1.074773 -0.238344 -0.648099 0.216539 -0.383372 0.032818 -0.757175 -0.089739 0.417631 0.381370 -0.538708 -0.408446 -0.410942 -0.533573 -0.547770 0.320557 -0.641939 0.212055 0.302633 0.335694 0.207941 1.005376 0.083995 0.117312 -0.849144 0.490067 0.285052 0.121448 -1.447834 -0.008234 -0.251306 -0.155236 0.045373 -0.053017 0.430350 -0.130029 -0.134373 0.127932 -0.523844 -0.019713 0.152839 -0.705691 0.082131 -0.211811 0.769651 0.176836 0.604111 1.150798 0.868545 0.547718 0.565214 -0.069653 -0.024565 -0.155377 0.153411 0.184109 -0.029779 0.528841 0.898120 0.743711 0.321759 0.907521 0.582019 0.203408 0.880696 0.149152 1.403927 -0.124310 -0.366347 -0.005140 0.349860 0.808179 1.309867 0.318203 -0.001406 0.466534 0.258475 -0.373631 -0.646189 0.136314 -0.170861 -0.309503 1.039603 0.434211 -0.216814 -0.035017 0.965311 -0.220131 -1.222223 0.510238 0.187914 0.592127 0.135783 0.208261 0.139223 0.581543 -0.434040 0.572024 0.670048 0.613853 -0.888052 -0.773698 0.091914 0.414117 0.711748 0.852377 -1.667694 0.119633 0.424247 0.759916 -0.362652 0.805855 -0.634318 -0.478340 0.513169 -0.047985 -0.264749 0.195363 0.104086 -0.609854 0.062993 -0.670282 -0.556764 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.159885 0.050182 0.594819 -0.955868 -1.074510 -0.113069 0.628165 -0.662480 -0.241844 0.471133 0.488060 -0.579984 -0.409385 1.138512 -0.113129 -0.584545 0.021360 -0.405718 -0.265419 -0.216262 -0.095081 0.667358 -0.225937 -0.124509 0.237738 -0.171052 -0.109579 0.793421 0.036321 -0.335788 -0.021991 -0.501856 0.176410 1.247264 0.247894 0.048548 -0.382620 1.856750 -0.825584 1.219340 -1.399777 -0.852321 1.250736 -0.287110 -0.092971 -1.757437 -1.003737 0.784496 -0.000452 -0.588804 0.288645 0.127768 0.241086 -0.593259 0.046899 0.812531 -1.226132 0.430450 0.652201 -0.917612 -0.517268 -0.164843 -0.296550 0.187775 -0.940572 -0.806438 0.073263 0.001410 -0.169769 0.155840 -0.306713 -1.036038 1.338360 0.275012 -0.414683 0.333434 0.176696 -0.875455 0.936677 -0.260152 -1.064392 -0.471086 0.015166 -0.317933 0.710966 -0.085096 0.819075 -1.816461 0.121359 -1.773814 0.591899 -1.115400 0.510191 1.168175 -0.630997 0.830368 0.455406 0.243729 0.649947 0.140534 0.909146 0.560502 0.718205 0.589273 0.954042 0.714778 -0.513822 -0.909216 -0.948204 -1.048525 0.474841 -0.423176 -1.697059 0.567727 -0.099205 -0.226599 -0.151826 0.036855 0.172250 1.375846 -0.945800 0.434492 0.881220 -0.320647 0.090952 1.111843 -0.295113 -0.004962 -0.705191 0.861153 -0.456294 1.051767 -0.016169 0.883874 -0.474219 -1.197942 -0.753406 0.136226 0.219915 -0.832526 -1.031170 -1.346435 -0.157301 0.486447 -0.715015 0.524909 2.069582 -1.017338 -1.213675 1.197420 1.123732 -0.174701 0.372342 0.291691 1.578279 -0.479473 -0.419598 -0.631717 -0.574260 0.398805 1.235433 0.151658 -0.745974 0.862359 -0.271878 -2.076471 1.985677 -0.316159 -0.612986 0.599760 0.187669 -0.465875 -0.838518 1.178679 0.114340 1.272757 -0.452272 1.429284 -0.377325 -0.657477 0.323917 -0.550995 -0.142080 -0.882845 0.025846 0.307856 0.754804 -0.707244 -0.652576 -0.445766 -0.835370 -0.530184 0.733110 -0.710172 0.168643 0.333699 0.253398 0.587150 1.170822 -0.007453 -0.001035 -1.062585 0.685693 0.548852 0.293337 -1.500605 -0.274052 -0.416830 -0.321503 -0.198156 0.022016 0.766735 -0.412702 -0.108488 0.277386 -0.455513 -0.109726 0.150186 -1.230305 0.288152 -0.107112 0.841829 0.194226 1.095550 1.297328 1.090580 0.579731 0.445495 -0.153900 -0.147074 -0.695967 0.263550 0.189697 0.080151 0.680639 1.023252 0.864781 0.490876 1.257094 0.473301 0.407630 1.190851 0.146989 1.701566 -0.293208 -0.320484 0.155923 0.229005 1.114169 1.697506 0.476981 -0.297135 0.639703 0.078193 -0.802586 -0.869125 0.024570 -0.154940 -0.290207 1.152694 0.667725 -0.272955 -0.223239 1.523346 -0.213830 -1.836221 0.741089 0.333590 0.711786 0.570685 0.053463 0.477155 0.746414 -0.256469 0.658211 0.889358 0.812213 -1.241609 -0.780501 0.125099 0.520857 0.892927 0.843208 -2.282189 0.143560 0.508379 1.218129 -0.351649 1.140886 -0.921830 -0.179601 0.648599 -0.048245 -0.178483 0.242714 0.367173 -0.746071 0.024223 -1.189787 -0.313677 +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*) = 0.923645 -0.427282 0.783184 -1.468966 -1.007316 -0.180139 1.504494 -1.801666 -0.627323 1.721753 0.579472 -1.190252 -0.450155 1.213823 0.330508 -0.721109 0.810258 -0.471462 -0.358464 -0.727442 -0.555335 0.641171 -0.459518 -0.824900 0.258718 -0.409720 0.365258 1.407298 -0.710156 -0.199221 0.063830 -1.114785 0.473874 2.765286 0.981238 0.126870 -1.496662 3.173029 -0.935972 2.589890 -2.807606 -1.308280 2.617438 -0.682026 0.019116 -2.633236 -1.001871 1.679040 0.973113 -1.779913 -0.364632 -0.122534 0.778240 -1.680143 -1.062061 1.903348 -1.210165 -0.074738 1.306376 -2.413515 -2.007420 -0.407920 0.234203 0.979036 -2.884162 -1.894797 0.551176 -0.358011 -0.387537 0.805839 -1.715769 -2.405288 1.266225 0.805705 -0.849742 0.097542 -0.579942 -1.189573 1.417882 1.104487 -1.660174 -1.337984 -0.225568 -1.191865 0.825273 -0.147105 2.221489 -3.760232 0.752404 -3.706990 1.009945 -1.861633 1.627110 2.169475 -0.572371 1.720831 0.411556 1.304217 0.343585 -0.506180 1.463461 0.816222 1.026292 0.627351 2.538164 1.357304 -0.849679 -2.304023 -1.181803 -1.364969 1.378914 -0.959189 -2.304088 1.436831 -1.450472 -0.508203 -0.555320 0.643545 -0.240883 2.795872 -2.283311 0.000484 1.588088 -0.802782 0.922721 1.835872 -0.538051 0.380016 -1.080798 1.399142 -0.091124 1.537628 -0.159725 2.015492 -1.107237 -1.108105 -0.984379 0.366719 1.160841 -1.963010 -2.475447 -2.678100 -0.914043 1.220587 -1.527648 1.913270 3.614441 -1.724600 -1.899508 1.633955 0.973075 -0.674190 0.666055 0.588692 3.485108 -1.856103 0.108999 -0.809533 -0.129527 1.282284 3.065798 -0.633588 -1.816250 2.017026 -1.085781 -2.458314 3.859392 -0.365874 -0.741867 1.564548 0.053517 0.092455 -1.736984 2.053061 -1.080924 2.356449 -1.171186 2.668199 -0.893524 -0.586971 0.717337 -1.157590 -0.847140 -1.259326 0.503140 -0.200849 2.184978 -1.291604 -1.561023 -0.516568 -1.953627 -0.368548 2.329897 -0.876117 -0.040349 0.407520 -0.131735 2.069329 1.665041 -0.387246 -0.493975 -1.774826 1.386520 1.556546 0.960652 -1.470383 -1.335951 -1.037041 -0.960697 -1.179833 0.330986 2.040549 -1.521725 0.017447 0.853882 -0.094881 -0.466494 0.114102 -3.211146 1.098549 0.346987 1.002266 0.234314 2.960623 1.691649 1.833962 0.616496 -0.127584 -0.479276 -0.633013 -2.832430 0.678536 0.181363 0.524835 1.199693 1.374094 1.225107 1.113716 2.504132 -0.058572 1.190619 2.284689 0.113480 2.658134 -0.948083 -0.075972 0.801031 -0.312727 2.203433 3.029750 1.059060 -1.479817 1.254623 -0.686012 -2.456137 -1.653168 -0.445126 -0.062783 -0.161436 1.431790 1.529413 -0.461383 -0.970290 3.594598 -0.151935 -4.088507 1.579452 0.884977 1.091733 2.287666 -0.600436 1.805680 1.308972 0.526152 0.907621 1.654921 1.503344 -2.507828 -0.678763 0.242518 0.878798 1.499021 0.664472 -4.462222 0.219330 0.774197 2.924327 -0.247195 2.346697 -1.966161 1.095079 1.104791 -0.041285 0.210707 0.399558 1.402171 -1.189299 -0.141359 -3.156094 0.751463 +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.157044 0.180558 0.481850 -0.767687 -0.757759 -0.107809 0.659507 -0.493912 -0.128079 0.575367 0.405736 -0.405718 -0.110022 0.799270 -0.150520 -0.329614 0.001491 -0.348794 -0.316551 -0.041582 0.068480 0.491345 -0.112981 -0.338776 0.148178 -0.116176 0.095403 0.628736 -0.216589 -0.031388 -0.015716 -0.341407 0.301549 0.909129 0.124798 0.057312 -0.357142 1.166114 -0.830800 0.947200 -1.068401 -0.785361 1.098142 -0.205025 -0.035265 -1.499489 -0.687318 0.517214 0.440168 -0.723627 0.010274 0.080761 0.277860 -0.630638 -0.120538 0.552742 -0.779094 0.049154 0.465412 -0.761065 -0.554086 -0.140041 -0.016962 0.300433 -0.915869 -0.590131 -0.015347 -0.077322 -0.054221 0.169815 -0.208500 -0.815117 1.188894 0.126406 -0.304821 0.256141 0.021305 -0.948072 0.723087 -0.070376 -0.620414 -0.341842 0.040040 -0.159854 0.395263 -0.118922 0.751112 -1.327665 0.064671 -1.181853 0.531466 -0.777536 0.331739 0.785692 -0.396058 0.601136 0.249032 0.553832 0.431548 0.157920 0.632153 0.590395 0.826920 0.281470 0.707606 0.701331 -0.533949 -0.882091 -0.760207 -0.817155 0.495027 -0.362550 -1.572234 0.378140 0.010130 -0.341007 -0.039578 -0.257251 0.211138 1.376667 -0.899739 0.406080 0.758277 -0.191930 -0.092062 0.703306 -0.147801 0.009952 -0.371156 0.557670 -0.207635 0.660975 0.149652 0.631589 -0.800079 -0.738381 -0.154448 0.178440 0.034350 -0.601636 -0.705072 -1.161108 -0.105159 0.649297 -0.455966 0.061351 1.402750 -0.587076 -1.046852 0.714555 1.035852 -0.467572 0.114266 0.220153 1.154435 -0.461151 -0.210634 -0.437155 -0.273712 0.445418 1.498593 -0.013814 -0.661435 0.698781 -0.464178 -1.969768 1.621560 -0.222275 -0.243102 0.543966 0.084969 -0.531338 -0.526525 0.897266 -0.068149 1.086678 -0.639658 1.070222 -0.422590 -0.347236 0.139713 -0.625580 -0.214690 -0.907930 0.084035 0.354798 0.715569 -0.525079 -0.469771 -0.255848 -0.661854 -0.280085 0.732242 -1.280478 0.083376 0.117456 -0.002481 0.462761 0.590603 -0.163528 -0.139938 -0.602680 0.448455 0.432825 0.249222 -1.222709 -0.371796 -0.430160 -0.216986 -0.320457 0.012644 0.615624 -0.268078 -0.061924 0.381884 -0.501569 -0.349752 -0.155572 -0.994548 0.180849 -0.131023 0.800320 -0.101753 0.903257 0.995539 0.775417 0.255383 0.305534 -0.028600 -0.286715 -0.879943 0.301746 0.143776 -0.170632 0.509575 1.019618 0.511675 0.405080 0.987450 0.399178 0.337474 0.889288 0.044883 1.114890 -0.213119 -0.266661 0.203176 0.226837 0.822256 1.196837 0.648111 -0.341734 0.344479 -0.039513 -0.726379 -0.332740 -0.077276 -0.068032 -0.210572 0.919000 0.642379 -0.222245 -0.112911 1.167381 -0.041108 -1.388143 0.439150 0.203923 0.581263 0.587151 -0.210663 0.550406 0.616978 0.239500 0.542449 0.552908 0.567590 -0.987448 -0.710058 0.135911 0.388880 0.787794 0.518615 -1.835989 0.134030 0.261800 0.967552 -0.441539 1.196592 -0.740814 0.241925 0.386909 0.161277 -0.089524 0.023274 0.268374 -0.513918 -0.100807 -1.218942 -0.038906 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = 0.506733 0.107135 0.678264 -0.660160 -0.315113 -0.309222 1.241463 -0.751736 -0.528736 1.631755 0.204361 -0.849832 -0.819047 0.837706 -0.106076 -0.540135 0.137910 -0.303553 -0.501140 -0.316961 -0.516611 0.341435 -0.226635 -1.012025 0.650275 -0.143155 0.471013 1.212857 -0.381811 0.281881 0.335683 -0.524821 0.616261 1.763388 0.324177 0.099278 -0.609707 1.884575 -1.784806 1.779878 -1.569399 -1.614431 2.557755 -0.253176 -0.011173 -1.409074 -0.204265 1.244095 -0.503788 -1.181978 -0.306374 0.115008 0.342556 -1.595423 -0.662515 1.479596 -1.773351 0.433071 0.760646 -1.308613 -1.749199 -0.283268 0.193070 0.263546 -1.248350 -1.242032 -0.162760 -0.552056 -0.522855 0.387127 -1.173752 -1.001967 1.091117 0.084169 -0.202078 0.469347 -0.555606 -0.365979 0.857124 -0.066124 -0.716146 -0.944415 0.259215 -0.576110 0.561339 0.676619 0.975666 -2.309412 0.078364 -1.960721 0.944613 -1.106417 0.927495 1.390167 -0.434868 1.615606 0.114294 0.367757 -0.141778 -0.143477 0.891895 0.415843 1.105461 0.438911 1.059328 1.286983 -1.342472 -1.931143 -1.317590 -0.755403 0.714748 -0.509654 -1.573194 0.650608 -0.996602 0.051228 0.277733 -0.213924 -0.352619 1.506794 -2.105472 0.645922 0.736269 -0.356541 0.780442 0.915012 0.038285 0.038863 -0.188849 0.817400 0.122740 0.596705 0.097579 1.309098 -0.514185 -0.966292 -0.160011 0.298241 0.485569 -0.978423 -1.358883 -2.224112 -0.410780 0.952095 -0.868043 0.745997 2.296295 -0.559216 -1.312949 0.920192 0.034408 0.212591 0.453829 0.505217 2.060374 -1.188671 0.034278 -0.054221 -0.009556 1.224505 2.138344 -0.490683 -1.487085 1.364627 -0.401636 -0.941088 1.400664 -0.022483 -0.009845 0.159968 0.200951 -0.503702 -0.798518 1.531288 -0.950304 1.611261 -1.085267 1.989535 -0.874155 -0.536969 0.387568 -1.757113 -0.561386 -1.462550 -0.153210 -0.156659 0.955906 -1.287245 -0.968595 -0.720095 -0.401698 -0.277286 1.844964 -1.561080 -0.177772 -0.162484 -0.311266 1.207667 0.315407 -0.829380 -0.219178 -1.344963 0.419337 0.742755 0.496339 -2.059237 -0.573153 -0.380667 -0.624884 0.279157 0.080154 1.008081 -0.732522 0.161065 1.080556 -0.272075 -0.587603 -0.411011 -1.401154 0.445436 0.202910 0.526114 0.545821 2.105531 1.326753 0.893509 -0.193613 0.768416 -0.242172 -0.599208 -1.675886 0.524998 -0.049812 0.497018 0.872247 0.962567 0.643508 0.614050 1.091517 0.243427 -0.215914 1.497942 0.429992 1.472024 -0.772530 -0.351522 0.788718 0.098434 1.150905 1.041544 -0.053404 -1.256038 0.869746 -0.546008 -1.059880 -0.209496 -0.309971 -0.270918 -0.297935 1.392466 1.036844 -0.418179 -0.209767 2.451040 -0.310352 -2.709876 1.105615 0.603607 0.938448 0.821444 -0.531000 0.915881 1.115578 0.468778 0.362347 0.750191 0.962062 -1.773228 0.174402 0.203999 0.919204 1.404514 0.096468 -3.499287 -0.404522 0.210563 1.725804 -0.121184 1.898405 -0.946292 0.460956 0.083952 0.074486 0.329309 -0.194675 0.794038 -0.183108 0.143363 -2.174602 0.481652 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.187887 0.086533 0.391515 -0.474035 -0.309552 -0.137872 0.428170 -0.226878 -0.197557 0.047409 0.140333 -0.271662 -0.558366 0.363487 -0.129131 -0.499591 0.009117 -0.419752 -0.282835 -0.235764 -0.213974 0.176236 -0.081226 -0.331614 0.369902 -0.138268 0.020108 0.627198 0.233063 -0.332846 0.085486 -0.174160 0.216439 0.848387 0.053215 -0.031215 -0.031425 1.131050 -0.228839 0.304085 -0.635439 -0.616542 1.100863 -0.225020 -0.258444 -0.851814 -0.280476 0.518757 -0.661639 -0.052073 0.029063 0.089283 -0.015219 -0.659418 -0.178572 0.782802 -1.155081 0.619783 0.331979 -0.337193 -0.539726 -0.206138 -0.144351 -0.236521 0.032684 -0.537712 0.046824 -0.128794 -0.450128 0.215989 -0.311322 -0.323390 1.061391 0.098994 0.022344 0.378032 -0.044702 -0.230656 0.399983 -0.247180 -0.432938 -0.421519 0.284979 0.005208 0.624712 0.017458 0.077668 -1.067641 -0.208592 -0.948584 0.313834 -0.721371 0.407560 0.669203 -0.534738 0.796700 0.105604 -0.311393 -0.143306 0.040775 0.635062 0.001585 0.477225 0.315565 0.388850 0.205112 -0.308527 -0.573019 -0.475900 -0.412463 0.040068 -0.100486 -1.044590 0.299124 -0.404172 0.059651 0.092825 0.023899 -0.038981 0.445266 -0.578056 0.252801 0.375616 -0.207094 0.295972 0.567780 -0.050827 -0.099888 -0.271594 0.531633 -0.038912 0.432603 -0.130946 0.517411 0.294509 -1.029351 -0.481080 -0.118941 0.156740 -0.393816 -0.749283 -0.570654 -0.170731 0.050053 -0.374862 0.332561 1.185074 -0.281833 -0.704731 0.700197 0.343466 0.519554 0.431643 0.277526 0.886135 -0.370017 -0.131809 -0.092765 -0.127892 0.426623 -0.040972 -0.168616 -0.509352 0.487363 0.088855 -0.349755 0.723334 -0.132775 -0.104827 0.486039 -0.016033 -0.417633 -0.705329 0.788324 0.618125 0.968464 -0.009491 1.055808 -0.362490 -0.655227 0.194008 -0.096302 0.001562 -0.495923 -0.079175 0.014545 0.190260 -0.527375 -0.584653 -0.279847 -0.046007 -0.216496 0.667887 0.120446 0.060927 -0.034344 0.036169 0.057872 0.463119 -0.416362 0.149982 -0.834751 0.243745 0.378937 0.272363 -0.992214 0.007857 0.057495 -0.237707 0.427875 0.073649 0.388081 -0.053929 -0.062204 0.415841 -0.096837 -0.073454 -0.055919 -0.570931 0.104240 -0.045249 -0.000478 0.226372 0.793898 0.929245 0.298044 -0.051526 0.337075 -0.039098 -0.103867 -0.235743 -0.113455 -0.113843 0.506483 0.388583 0.421299 0.459004 0.224220 0.556106 0.397935 -0.178765 0.695915 0.409391 0.980414 -0.389520 -0.316961 0.170680 0.044735 0.678929 0.702204 -0.138538 -0.363807 0.487820 0.275283 -0.111774 -0.755225 -0.185962 -0.138813 -0.144251 0.778301 0.255157 -0.314445 0.016808 1.068695 -0.157317 -1.099361 0.624997 0.316290 0.389385 -0.081061 -0.048639 0.022859 0.684161 -0.267181 0.062048 0.277932 0.519461 -0.723803 -0.060890 0.095981 0.553687 -0.040012 0.320585 -1.137061 -0.200851 0.220320 0.706236 0.151377 0.471316 -0.275901 -0.303833 0.087062 0.043799 0.011087 0.199811 0.217716 -0.493250 0.042198 -0.573902 -0.108857 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 1.192728 0.065144 1.332800 -2.317815 -0.879341 -0.680726 3.692574 -2.274130 -1.574519 4.072151 0.708035 -2.066535 -2.206666 2.742583 -0.148475 -0.834370 0.963732 -0.255220 -1.071239 -0.692542 -1.353467 1.059373 -0.770675 -2.539252 1.388685 -0.244953 1.185283 3.164628 -0.489208 0.796590 0.401366 -1.575089 1.135640 4.501189 1.170617 0.008293 -2.184492 5.846223 -5.543958 5.326514 -4.589609 -3.949868 6.984572 -0.734152 -0.532167 -5.680662 -1.767277 3.049451 -0.351178 -3.436257 -0.881564 -0.146714 1.210796 -3.840213 -1.748590 4.321005 -4.147446 0.325755 2.411819 -3.878200 -4.756231 -0.855212 1.142567 0.917166 -4.860100 -3.168301 -0.215299 -1.905197 -1.102407 0.712194 -3.623509 -3.119217 2.722780 0.597779 -0.888102 0.838754 -1.749024 -1.950988 2.021672 0.808509 -2.229963 -2.145889 0.332759 -2.124021 1.328004 1.295251 3.671787 -6.468507 0.160319 -5.997998 1.670286 -3.715000 2.507700 4.001457 -0.849445 4.066681 0.300184 1.799415 -0.211583 -0.212630 2.205187 1.866234 2.753048 0.832428 3.738058 3.719272 -3.193999 -5.380553 -3.328358 -1.848190 1.927965 -1.459830 -5.379749 1.920523 -2.979629 -0.871620 0.057339 -0.107865 -1.145870 4.673861 -4.809890 2.315529 1.895209 -1.083062 1.958082 3.591256 0.139530 0.145538 -0.807526 1.914435 0.276407 2.628925 0.007715 3.485769 -2.434697 -2.557473 -0.275760 0.642427 1.369107 -2.635353 -3.689059 -6.053746 -1.412903 2.753717 -2.254718 1.476449 6.662843 -1.971792 -3.660517 2.364460 0.360345 0.424791 1.102771 1.135329 6.892953 -3.106888 0.330793 -0.221581 0.045472 2.575505 6.611304 -1.415800 -3.799044 3.187820 -2.036331 -4.319571 5.424012 -0.024260 -0.171980 0.891513 0.566524 -1.113934 -3.262733 4.812575 -4.062678 4.466281 -3.271758 4.947386 -2.087749 -0.793282 1.086835 -4.169351 -1.332103 -4.524884 0.091738 -0.627634 3.419233 -2.663682 -2.533034 -1.855975 -1.734731 -0.716769 5.418993 -5.094426 -0.638604 -0.179620 -0.825981 3.204100 0.932662 -2.014219 -0.556094 -3.731217 1.540511 2.638925 1.089588 -6.040693 -1.771754 -1.354925 -1.769928 -0.781580 0.310538 2.813289 -2.267978 0.155399 2.682453 -0.383653 -1.438890 -0.829863 -5.181656 1.481379 0.420368 1.884189 1.272795 6.052386 3.253512 2.800774 -0.382907 1.701610 -0.722720 -2.007648 -5.356971 1.468157 -0.110266 0.952459 2.202644 2.900269 1.821118 1.915835 2.848805 0.011221 0.376412 3.833426 1.721099 4.173533 -1.730633 -1.938160 2.198982 -0.125422 2.932749 3.467495 1.229610 -3.170383 2.034358 -1.760469 -3.922116 -1.647291 -0.552126 -0.442220 -1.041386 4.313221 3.540947 -0.747000 -0.908090 6.992800 -0.987718 -8.574863 2.693236 1.360261 2.659539 3.691659 -1.125164 3.122990 2.987379 2.289717 1.623052 2.332215 2.249101 -4.576220 0.023379 0.598338 2.086931 4.260530 -0.011750 -10.743689 0.365693 0.453156 5.167866 -0.378849 5.693056 -2.404528 2.725653 0.614712 0.081480 0.936704 -0.866802 2.581212 -0.534168 -0.420180 -6.801314 1.708200 +PE-benchmarks/cutting-a-rod.cpp__main = 0.570913 0.042775 0.438397 -1.067017 -0.645443 0.004452 0.318146 -0.990540 -0.462442 0.670558 0.414718 -0.852806 -0.798545 1.101623 -0.367157 -0.863247 0.129914 -0.283022 -0.347851 -0.381504 -0.405468 0.293215 -0.299091 -0.903546 0.345230 -0.220567 0.278267 0.964040 0.606288 -0.135751 -0.288689 -0.457580 0.343897 1.860979 0.575214 -0.143087 -0.295504 2.309201 -0.780823 1.183474 -1.708368 -1.326787 2.224017 -0.279771 -0.332090 -1.805621 -0.775145 1.019180 -1.089639 -0.372753 -0.070854 -0.255258 0.224861 -1.188205 -0.541524 1.556821 -2.006308 1.126583 0.775187 -0.797486 -1.215398 -0.498447 0.296963 0.138892 -0.750622 -1.167361 0.154465 0.023059 -0.830616 0.269961 -1.183642 -1.184438 1.880491 0.316542 -0.443166 0.266960 -0.482545 -0.781387 0.704740 -0.358228 -1.096852 -0.678575 0.387188 -0.284087 1.037201 0.350714 0.910205 -2.475570 0.003138 -2.451328 0.599834 -1.398017 1.066719 1.510581 -1.166966 1.170908 0.207578 0.258740 0.223888 0.202166 1.155979 0.356171 0.619973 0.231547 1.158022 0.867433 -0.578895 -1.289018 -0.686315 -0.906618 0.066839 -0.296079 -2.545196 0.692814 -1.249412 0.280569 -0.230905 0.149627 -0.352860 1.124867 -1.673735 -0.097526 0.392386 -0.413568 1.068900 1.321805 -0.096624 0.268752 -0.466674 1.037173 0.054555 0.571534 -0.268219 1.133642 -0.336369 -1.740517 -1.277648 0.262598 0.760313 -1.049644 -1.743936 -1.734195 -0.573693 0.388727 -0.758021 1.095577 2.483258 -0.699036 -1.536264 1.277971 0.093755 0.560539 1.426482 0.400884 2.491028 -1.169208 0.242107 -0.052222 -0.073152 0.514625 0.417932 -0.622925 -1.153169 0.952047 -0.347118 -0.945224 1.503894 0.007985 -0.310271 0.177620 0.006353 -0.625206 -1.361260 1.821464 -0.426315 1.710123 -0.479449 2.193136 -0.980169 -1.090763 0.551106 -0.896845 -0.305860 -0.846144 -0.061789 -0.230325 1.177041 -1.219375 -1.126760 -0.281708 -0.284086 -0.428189 1.785500 0.059335 -0.116070 0.097254 -0.157652 1.005396 0.962506 -0.758903 0.222258 -1.475689 0.568318 1.317460 0.254079 -2.114327 -0.383186 -0.522449 -0.493336 0.250368 0.124442 1.003721 -0.728917 -0.280010 0.597604 -0.029770 0.332661 -0.007340 -1.455526 0.645232 -0.257268 0.261875 0.530696 2.056658 1.383896 1.058736 0.098089 0.309399 -0.064139 -0.652343 -0.677007 0.104100 0.202612 0.658396 0.813712 1.181297 0.701768 0.649478 1.099426 0.498654 -0.083757 1.495102 0.669710 1.933927 -0.890651 -0.396014 0.300587 -0.268674 1.397753 2.008575 -0.438163 -0.855728 0.778589 -0.054799 -0.664386 -1.501940 -0.294336 -0.231649 -0.506757 1.259554 0.882654 -0.211828 -0.450234 2.516631 -0.170167 -2.678227 1.434756 0.575195 0.761118 0.759107 -0.480034 0.415418 1.097362 -0.092845 0.470336 0.957522 1.018459 -1.477587 -0.151497 0.127180 1.133150 0.562934 0.312530 -2.451257 0.340437 0.722982 1.885783 0.460709 1.166504 -0.878980 -0.016758 0.191098 -0.038423 0.215869 -0.076895 0.836576 -0.767570 -0.011989 -1.424327 -0.195157 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 1.710830 -10.108666 2.558136 -4.770871 -0.600607 -1.985417 8.729707 -1.440734 -9.036619 11.599623 -0.104188 -2.802976 -17.285453 5.462544 1.423483 -9.499028 2.175880 1.386287 -1.720163 -6.355246 -2.608069 2.334966 -1.017868 -3.423933 3.547477 0.516737 1.230282 10.709537 -4.943676 6.575651 1.046218 -2.581914 1.392027 7.360471 1.209678 -0.493775 -9.682032 23.674519 -21.849743 21.511518 -15.039053 -21.644004 31.581040 -1.545719 -6.304271 -28.489151 -3.339822 5.734855 -7.629247 -5.646659 0.420914 1.323117 1.897036 -6.679985 -2.530788 11.811437 -12.245689 1.408914 3.634797 -10.689364 -22.472695 -2.149108 7.047568 1.280392 -15.754294 -5.059105 -0.368913 -11.144246 -3.724013 0.968333 -12.508569 -9.465989 0.746215 2.595388 -1.323648 2.213199 -2.164823 -3.033711 3.558907 12.603233 -13.056733 -3.683090 -0.675973 -3.437925 4.364671 0.369147 11.584856 -25.721302 -4.914625 -27.103927 2.324816 -10.624219 3.236261 17.244332 -9.766220 11.923824 -1.118079 14.977704 -1.706744 -10.533264 3.510646 11.157215 0.632449 2.221276 14.176459 14.956681 -6.512896 -24.985424 -9.919787 -1.589974 2.330957 -9.656234 -36.500846 3.151371 -10.648049 -5.402295 3.137183 9.331910 -4.056334 14.777550 -19.108619 11.703388 1.975375 -1.784190 3.011658 9.814084 0.066612 -1.002177 -0.649150 4.212569 1.770556 10.190856 -0.347878 5.743781 -10.796754 3.980183 1.631268 -0.098435 2.081992 -3.000329 -6.162595 -19.150293 -2.248568 10.458944 -3.667720 2.338426 13.770012 -1.742462 -14.099321 4.918634 -14.025407 -1.411385 -0.481775 1.117714 26.962885 -3.756304 -0.638404 -0.398953 0.147357 -5.523890 20.648422 -1.184470 -6.176435 5.075143 -10.764953 -8.669854 13.661022 -5.088363 0.008979 -5.238266 -0.881639 -3.739294 -10.642880 16.481869 -28.147661 10.980356 -13.207940 7.955773 -1.795844 -1.310382 2.624925 -34.039376 -7.648009 -13.978962 -2.197757 -5.887290 10.985139 -5.129502 -4.097736 -15.549591 -8.323981 -2.189741 23.474002 -16.102932 -1.588804 -1.202018 0.767830 14.605411 10.466860 -4.410897 -0.744870 -10.082270 3.025039 18.051705 -8.217173 -20.829015 -1.868148 0.314674 -3.635844 -5.350389 0.197773 3.167883 -6.379223 -0.401797 5.706127 0.285824 -3.514748 -0.687255 -25.912798 1.529879 3.240653 10.129419 13.462314 24.688829 8.561379 2.552047 -1.265434 7.365667 4.841091 -9.144776 -26.577255 0.686848 -1.480211 1.327928 3.650991 6.224287 3.687415 1.669287 4.959703 2.760040 -3.346220 5.259927 11.308522 9.326507 -0.294948 -8.724720 5.011717 -0.132442 3.975762 21.389726 2.974797 4.820970 5.235266 -1.519646 -13.365654 -5.181845 -1.098854 -2.349882 -6.152833 15.154054 18.402081 -2.788265 0.716271 26.658856 -3.082561 -37.401744 2.717289 3.173427 5.143642 28.540857 -0.847621 4.474378 8.931185 15.444376 13.438102 2.492094 2.760930 -14.383862 8.737766 1.295684 1.672794 14.906510 -6.697404 -23.571547 10.765660 -0.888693 24.600886 2.019056 23.588980 -1.975834 18.664361 0.955691 -9.354487 1.810696 -2.266790 10.717059 -0.831868 -6.925054 -30.748218 -6.586888 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 2.458204 -10.576063 2.802171 -5.554354 -1.223984 -1.142521 6.125730 -2.818557 -9.044472 10.928375 0.155893 -3.506432 -17.847747 6.002172 0.371593 -11.257593 1.956524 2.351419 -1.331733 -7.245827 -2.925783 1.750932 -1.403865 -4.345506 3.169952 -0.353118 1.886661 10.878666 -2.786010 6.947796 -0.117493 -2.878404 1.284438 9.263211 2.396135 -0.454465 -9.115614 25.490960 -19.595623 21.338451 -16.462216 -22.712614 32.531676 -1.555735 -6.394921 -28.528408 -3.762377 6.030033 -11.284920 -3.904282 0.660047 0.261042 2.169431 -7.020033 -2.894528 12.574142 -14.152413 3.901228 3.694039 -10.537769 -22.669526 -3.020303 7.251928 1.627754 -14.725156 -5.804038 0.289006 -9.029743 -5.219575 1.332366 -13.639456 -10.540641 3.445733 3.016961 -2.306929 1.888980 -2.173974 -3.166910 3.505270 11.652852 -14.493162 -4.160112 0.058923 -2.975283 5.918697 1.133167 12.197410 -27.797773 -4.666175 -29.697432 2.987926 -11.422005 4.731657 18.343270 -12.393151 12.145797 -0.574720 15.047370 -1.102442 -10.083597 4.665344 11.004053 -0.297326 1.807099 14.915191 14.679404 -5.648490 -24.994897 -9.119749 -2.249320 0.745671 -9.746395 -39.492997 3.353336 -12.596135 -3.055858 1.962083 10.185144 -4.781364 14.093748 -20.987134 9.506617 1.182307 -2.158485 5.294701 10.250311 -0.221444 0.205629 -0.562119 5.547552 1.600700 8.872081 -1.288487 6.398884 -10.161834 2.044530 -2.152159 0.547622 3.792663 -3.864629 -8.472152 -19.500251 -3.486701 10.311243 -3.719290 4.585824 15.526846 -1.942688 -15.342374 5.972386 -15.841669 -0.162681 3.264817 1.683991 28.714096 -5.049577 0.462375 -0.508072 0.480791 -6.025766 17.304431 -2.168180 -6.665214 5.796928 -10.320748 -6.569512 12.983467 -5.199535 -0.547521 -7.059922 -1.308067 -4.253474 -11.358230 18.012758 -28.534120 11.914190 -12.781843 10.310176 -3.418507 -3.645604 3.016859 -34.749921 -7.830530 -12.489015 -2.005325 -6.671272 12.271360 -7.067949 -5.564549 -14.818639 -7.905799 -2.163599 24.818110 -11.858082 -2.021626 -0.864389 0.530769 16.414945 12.074271 -4.712836 -0.118845 -11.061874 3.285463 19.886887 -8.659103 -21.834790 -1.915623 -0.196565 -3.779199 -4.730187 0.662180 3.884275 -7.265717 -1.189485 4.823547 0.755846 -1.184966 -0.005520 -26.260741 2.543741 2.747616 9.244782 14.292053 26.072369 9.623580 3.477478 -0.693742 6.668463 5.249946 -10.137857 -24.273547 0.419926 -0.109017 2.332137 3.882578 7.381659 3.850785 1.885292 5.326250 3.884049 -3.566775 6.264676 11.773183 11.131960 -1.904132 -7.971567 4.286089 -1.079858 5.393343 24.237420 0.450729 5.031059 5.765521 -0.801943 -12.275055 -8.089245 -1.429237 -2.547500 -6.650188 15.080524 18.741194 -2.612267 -0.369244 28.648948 -2.517729 -38.670399 4.727105 3.766079 4.979518 28.674304 -1.819463 3.234070 9.331820 14.085243 13.776301 3.226855 3.608826 -15.161359 8.995908 1.114411 3.071777 14.040391 -6.660916 -22.017687 11.489899 0.758749 26.309552 4.128681 22.667151 -2.701951 17.138503 0.649995 -10.270890 1.950732 -2.198965 11.374491 -1.753303 -6.517923 -29.693846 -8.567373 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 3.786014 -0.759101 2.418492 -2.395863 0.565746 -0.929326 7.458827 -3.393521 -2.655804 9.571517 -0.411731 -2.811027 -4.079752 2.468613 0.422172 -0.978570 2.349118 -2.004545 -1.126182 0.153293 -3.464365 1.244817 -1.656198 -4.953986 2.982130 0.065601 2.877424 5.816571 -3.077888 3.139309 0.683859 -3.093774 1.489688 7.996458 2.563362 -0.351996 -3.147832 10.283981 -10.401459 10.036043 -5.889535 -7.838856 12.401763 -1.370558 -0.321068 -4.869487 0.448074 5.629964 -1.548638 -6.684669 -1.161341 -0.230616 2.331810 -7.003630 -3.689868 7.051654 -7.811334 -0.041188 3.705651 -5.230066 -9.031127 -2.280975 1.689202 2.176117 -8.119891 -5.479046 0.062314 -4.732237 -2.059037 1.604122 -7.372685 -4.243091 3.013050 1.580116 -1.255945 1.062837 -3.105075 -1.813041 3.267848 0.796363 -3.956254 -4.280825 -0.822469 -5.244345 2.726682 3.407405 6.200009 -10.181311 2.170443 -9.651708 3.257181 -6.037702 4.316774 7.717925 -0.379887 8.030000 0.226015 5.051639 -1.375352 -2.578018 3.275622 3.108609 4.184670 1.427569 5.354369 6.867300 -7.133763 -9.523021 -6.644568 -1.304757 3.070826 -2.594516 -6.308663 3.370456 -5.293936 0.760047 1.209184 0.458966 -4.025936 6.488347 -10.943724 4.305906 1.861308 -1.719893 4.958439 4.378688 0.070435 0.568904 -0.097809 3.675044 1.169287 3.293406 0.088041 6.357834 -4.562840 -0.739141 0.755657 1.699533 3.485262 -4.440435 -6.589110 -11.733618 -2.427850 5.480304 -3.698407 4.955230 11.243706 -1.942964 -3.946193 3.487887 -3.237912 1.592392 1.765883 1.941632 8.966570 -5.299156 0.979355 0.742046 1.284970 3.969075 12.200726 -2.328465 -6.618017 6.555826 -3.074106 -0.318962 6.316010 1.525466 0.009361 -0.919090 0.466682 -1.681678 -4.432642 8.853361 -9.965032 6.166218 -5.072023 8.581748 -2.944323 0.386983 1.855170 -9.256681 -2.349987 -9.733379 -0.705384 -1.565803 4.860632 -6.174873 -4.377571 -3.443156 -1.417050 -0.794753 8.885629 -7.994924 -1.718117 -0.696611 -1.291476 7.796271 0.658467 -3.747446 -1.881782 -6.391845 2.073987 2.554307 0.329535 -8.093674 -3.713312 -1.244757 -3.429903 0.532601 0.806083 4.258320 -5.555527 0.243677 5.733542 0.824674 -3.037947 -0.894854 -10.025148 2.340147 2.731325 2.155063 4.037174 9.815306 4.583191 4.197198 -0.871739 3.089947 -1.769983 -2.304819 -10.430601 2.795395 -0.273574 2.730496 3.340251 3.724295 2.572611 2.768959 3.077965 0.328511 -0.870180 6.106591 3.103779 6.069300 -3.020348 -3.094439 4.647057 -0.223276 4.485925 2.634800 -0.284923 -5.863152 3.885551 -4.571244 -6.455600 0.814542 -0.605498 -1.518470 0.218677 5.601671 5.261565 -1.204122 -1.261904 11.680203 -2.150025 -14.847550 3.614761 3.163230 5.082886 7.158638 -2.187600 6.264297 4.707368 3.613107 3.935463 3.301451 3.471426 -6.612451 3.689505 1.222683 2.867952 6.664350 -1.251347 -17.743311 -1.887626 -0.419622 7.857589 0.971879 10.123152 -3.807700 4.970322 -0.061235 -0.935309 2.673872 -1.679550 5.767674 1.334276 1.034347 -12.516381 3.727531 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 0.843284 -0.045213 0.814929 -1.028896 -0.229719 -0.304859 1.677281 -1.014272 -0.734342 2.405687 -0.076766 -1.033899 -1.533488 0.959867 -0.051571 -0.876154 0.211282 -0.888283 -0.506113 -0.330373 -0.864900 0.410729 -0.367917 -1.317716 0.779796 -0.151740 0.765315 1.575167 -0.231057 0.428619 0.374792 -0.850171 0.585960 2.436616 0.663592 0.151779 -0.887982 2.984709 -2.443334 2.740169 -2.201050 -2.507080 3.418772 -0.351739 -0.281580 -2.006115 0.126006 1.771422 -1.117274 -1.491741 -0.317666 0.141387 0.405245 -2.077160 -0.990175 2.129562 -2.674744 0.773514 0.940929 -1.582333 -2.414219 -0.578440 0.376209 0.636568 -1.824131 -1.648448 -0.130226 -1.030048 -1.133979 0.523779 -1.844795 -1.075176 1.244746 0.485080 -0.429242 0.447353 -0.786235 -0.202044 1.028597 -0.460518 -1.097628 -1.253003 0.097425 -1.084873 0.937548 1.057501 1.405392 -3.151054 0.412979 -2.746774 1.079332 -1.737851 1.253980 2.040307 -0.230416 2.313731 0.019425 0.683386 -0.209679 -0.735533 1.053076 0.670585 1.494094 0.680109 1.528547 1.781165 -1.861463 -2.634456 -1.694075 -0.783798 0.741760 -0.787641 -2.177350 0.923734 -1.448184 0.310061 0.456038 0.000000 -1.073872 1.521697 -3.325193 0.654424 0.526536 -0.494149 1.453541 1.363464 0.004342 0.228959 -0.010864 1.211192 0.310630 1.130637 0.099064 1.814482 -0.750509 -0.738337 -0.353453 0.517525 0.980184 -1.168489 -1.966797 -3.173111 -0.864876 1.298670 -1.138343 1.694170 3.353541 -0.615429 -1.658913 1.276960 -1.003996 0.747429 0.700371 0.597073 2.723162 -1.477699 0.050776 0.088178 0.138015 1.408138 3.226792 -0.623878 -1.969220 1.896648 -0.740272 -0.094400 0.921788 0.185891 -0.098711 -0.611312 0.040308 -0.822513 -1.426592 2.323484 -2.461724 2.074250 -1.397876 2.627862 -1.095313 -0.514992 0.603526 -2.935465 -0.652536 -2.388845 -0.314732 -0.483626 1.322172 -2.041228 -1.314511 -1.062449 -0.411529 -0.482214 2.548434 -2.291723 -0.410331 -0.186404 -0.182560 2.700877 0.478370 -1.154651 -0.434483 -2.049850 0.680906 0.972565 0.576127 -2.600451 -0.872719 -0.328857 -0.984989 0.715545 0.127633 1.203046 -1.209669 0.169033 1.469112 0.014835 -0.621952 -0.275755 -2.652742 0.637756 0.699859 0.688061 1.035899 2.885391 1.408135 1.139607 -0.195642 0.987965 -0.382123 -0.800590 -2.306123 0.530040 0.071767 0.576992 1.136280 1.268538 0.885228 0.754894 1.501063 0.647792 -0.786780 1.881518 0.622531 1.889424 -1.159330 -0.858600 1.112702 0.056164 1.359353 1.326653 -0.461501 -1.569045 1.381076 -0.929387 -1.408103 -0.363897 -0.365092 -0.602254 -0.001087 1.907084 1.484088 -0.543081 -0.240039 3.411074 -0.553849 -4.063926 1.404051 0.958577 1.325957 1.427803 -0.748370 1.216042 1.429465 0.344044 0.680267 1.080553 1.005092 -2.168891 0.781038 0.298725 1.105644 1.820568 -0.082375 -4.696076 -0.797804 0.212635 2.591665 0.356652 2.700793 -1.154591 0.676415 0.223916 -0.070257 0.584702 -0.357999 1.377549 0.056575 0.287735 -2.886936 0.606130 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 1.002869 -0.267480 0.545128 -0.908677 -0.203735 -0.085658 1.330544 -0.821146 -0.606339 1.643237 -0.003325 -0.669839 -1.079269 0.913965 0.007993 -0.675091 0.491398 -0.816479 -0.242398 0.151861 -0.846098 0.470446 -0.468516 -0.976923 0.773470 0.020267 0.368928 1.314041 -0.159974 0.186448 -0.190895 -0.731413 0.129714 2.155890 0.632376 -0.211733 -0.377436 3.054762 -1.773301 2.162476 -1.442497 -1.812213 2.811429 -0.430361 -0.297999 -1.225827 -0.119841 1.397464 -0.875070 -1.143349 0.106857 -0.088310 0.281747 -1.500804 -0.620073 1.765759 -2.432142 0.633210 0.959093 -0.703723 -1.763772 -0.751887 0.186919 0.176846 -1.485587 -1.376343 0.195745 -0.810110 -0.843208 0.301997 -1.656232 -1.111544 1.450334 0.644216 -0.421361 0.374004 -0.475378 -0.676574 0.897791 -0.325369 -1.370128 -0.930699 -0.116472 -1.091169 1.323455 0.571658 1.232410 -2.753820 0.640212 -2.725302 0.674479 -1.800246 1.145206 2.246707 -0.678021 1.854894 0.221034 1.079593 -0.108517 -0.425476 1.249112 0.664915 0.692774 0.481483 1.258909 1.337704 -1.427933 -1.888118 -1.397529 -0.570778 0.359947 -0.492833 -2.103233 0.882736 -1.249739 0.513892 0.188484 0.415085 -0.952436 1.222091 -2.631038 0.540584 0.340674 -0.489903 1.368477 1.360005 -0.158034 0.098342 -0.412248 1.283633 0.114801 0.900463 -0.265109 1.504811 -0.760690 -0.659970 -0.580707 0.216973 0.943731 -1.187846 -1.968678 -2.674595 -0.591748 0.877083 -0.966751 1.725080 3.104102 -0.683792 -1.103889 1.454310 -0.652529 0.884064 1.023329 0.439621 2.227389 -1.158027 0.084250 0.129041 0.115009 0.527529 1.468653 -0.413087 -1.402976 1.380062 -0.518055 0.094959 1.708127 0.350058 -0.317033 -0.219219 -0.015875 -0.675742 -1.506206 2.444861 -1.655304 1.667468 -0.617206 2.468963 -0.662919 -0.389986 0.672083 -1.709856 -0.291329 -2.219050 -0.309929 -0.367482 1.042605 -1.661008 -1.237244 -0.611867 -0.154228 -0.510507 1.939489 -0.685568 -0.262947 0.002886 0.011528 1.756232 0.808440 -0.868036 -0.136398 -1.879983 0.637977 0.790705 -0.195233 -1.940582 -0.569878 -0.232279 -0.772311 0.573115 0.168711 0.926694 -1.331977 -0.293129 1.150593 0.356356 -0.172180 0.108245 -2.454700 0.540623 0.464347 0.320102 1.170926 2.274717 1.431309 1.146822 0.080831 0.631166 -0.318607 -0.260473 -1.880217 0.297887 -0.082809 1.060825 0.899154 1.010358 0.928289 0.659892 0.830632 0.491649 -0.266657 1.653752 0.984434 2.083266 -0.673329 -0.880111 0.850586 -0.166068 1.410671 1.279299 -0.667042 -0.972533 1.102974 -0.565636 -1.217062 -0.525626 -0.100966 -0.491609 -0.099795 1.174741 0.849585 -0.289911 -0.295559 2.942178 -0.615397 -3.585552 1.104676 0.817104 1.280673 1.406683 -0.241300 1.147867 1.231416 0.019267 1.103748 0.971589 1.032538 -1.495528 0.770848 0.257154 0.902731 0.931751 0.155709 -3.441790 -0.208783 0.217328 1.979461 0.653179 1.820482 -0.825207 0.477504 0.116821 -0.377804 0.459754 -0.194275 1.378289 -0.069581 0.252163 -2.547686 0.227241 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 3.459453 -0.100489 3.327398 -6.677618 -3.043600 -1.209799 6.258590 -7.092090 -3.318343 12.219384 2.858455 -5.114675 -0.576732 6.682057 -0.732071 -2.592130 2.053919 -0.114331 -2.386899 -1.281425 -1.883360 3.110633 -2.141939 -7.149443 2.500885 -1.463197 3.811824 6.074072 -4.210848 2.793818 0.746881 -4.614185 3.015174 11.500597 3.487518 0.876637 -6.046041 10.722381 -10.758400 11.363206 -11.113232 -9.643394 14.288556 -1.793911 1.513534 -9.976309 -3.149072 6.522873 3.551537 -9.252572 -2.715181 -1.034492 4.587823 -9.671519 -4.841962 6.678668 -6.123217 -1.267969 6.070833 -9.835526 -10.879487 -2.416647 3.283630 3.874344 -12.501451 -7.936211 0.039261 -1.844611 -0.938152 1.773359 -7.736788 -8.983601 5.510233 1.458697 -2.295765 1.386936 -4.678643 -7.262817 5.556145 2.253468 -5.612159 -5.767971 0.320390 -4.494103 1.980805 2.587384 10.368116 -15.005232 3.196933 -13.652370 5.173893 -5.621799 6.551949 9.171600 -3.214237 7.417389 1.509205 9.111146 1.442809 -0.877935 5.640909 4.746586 5.592350 1.373814 8.851303 9.206821 -7.475339 -11.916225 -6.602695 -5.954793 5.770361 -4.942771 -11.347794 5.139727 -5.806841 -3.512758 -1.543965 -2.075828 -1.601381 13.308994 -13.596366 1.267795 5.644579 -2.570381 3.084753 5.264750 0.230748 0.807844 -1.930198 4.397630 0.048888 3.529157 0.691343 9.128433 -8.701939 -4.115697 0.045793 2.738127 3.233405 -8.225235 -9.239923 -14.840262 -3.088539 7.452544 -5.505406 4.589581 13.395451 -5.451662 -9.532640 5.286855 2.571806 -4.626563 3.043695 2.802494 12.784811 -8.206977 1.172520 -1.567094 0.023547 6.892950 15.224437 -3.729672 -9.522807 9.227542 -6.762116 -10.760647 12.821127 0.229693 -0.489864 0.387490 1.870446 -3.456245 -4.023611 9.159642 -9.966366 9.829409 -8.436348 11.866669 -5.931194 -1.381180 2.120256 -11.899818 -5.149383 -8.758698 0.804812 -0.119508 9.379111 -6.571962 -6.241390 -3.168605 -4.925146 -1.318190 11.948351 -13.100081 -1.310879 -0.020854 -2.796704 8.698809 3.162708 -4.042577 -1.976567 -4.955238 4.112085 6.722428 3.370598 -11.074325 -6.166115 -5.067392 -4.107568 -3.762798 0.959877 8.661911 -6.065508 0.616928 5.879511 -1.310994 -3.762879 -2.447634 -10.913285 4.360244 -0.394055 5.577755 1.250319 13.647371 6.217945 8.043678 -0.306220 1.532653 -1.541945 -4.961121 -12.716641 4.567851 1.087227 0.263344 5.690174 8.003719 4.375066 5.662707 8.694309 1.232471 2.289609 9.978616 0.231662 8.895935 -3.343890 -0.871778 4.857925 0.297096 8.108269 9.211856 3.990585 -7.508289 4.279133 -5.007904 -9.439255 -1.292632 -1.194964 -0.199404 -2.274642 5.658277 8.130904 -1.532543 -3.361582 15.241951 -0.984926 -16.720176 6.735045 3.286257 6.549187 8.671380 -4.441730 7.922863 5.394410 5.664606 4.993027 6.022649 6.249748 -10.664131 -1.299109 1.730107 5.542159 11.213995 1.095603 -19.843069 2.555727 1.937903 11.107360 -2.247590 12.697454 -7.525871 6.676884 1.320114 1.139603 2.543679 -1.886850 5.001140 -1.794532 -0.915155 -14.604923 3.912547 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = 4.080240 -0.338828 4.492726 -6.286458 -2.055584 -1.196186 8.275353 -7.255030 -3.355538 13.234035 1.605808 -4.894420 -3.451011 5.329386 -1.198302 -2.843723 2.652787 -0.591763 -2.140629 -2.188664 -2.660521 2.352564 -2.064090 -7.769051 2.923723 -1.950075 5.122778 7.739675 -3.531802 4.550699 1.153610 -4.781821 3.247943 12.674451 4.005049 0.715712 -6.218984 12.497601 -11.722786 13.373256 -12.667134 -11.298090 17.217871 -1.899833 1.136632 -12.772200 -2.094321 7.128469 0.517188 -9.061651 -3.267507 -1.224456 4.939473 -10.677487 -5.715029 8.503183 -8.344334 -0.706517 5.757366 -10.873789 -12.761384 -2.533671 3.693266 4.648181 -13.024955 -8.190559 0.347332 -3.162818 -2.563750 3.005603 -9.443257 -8.639636 5.241522 1.606986 -2.804635 1.404519 -4.438995 -6.022637 5.499031 2.352817 -5.578394 -6.626303 0.330050 -5.657673 2.753067 3.274008 10.342410 -16.913769 2.594269 -14.917650 5.794293 -7.015065 7.219971 9.672119 -2.299361 10.050824 1.170563 7.585415 -0.200365 -2.188334 5.567554 5.134077 7.368023 1.435116 9.999574 9.990707 -8.354885 -14.362610 -8.038734 -4.755997 5.248122 -5.434647 -13.495379 4.929507 -7.716209 -2.076918 -0.810383 -1.566604 -3.301342 13.657022 -15.858102 3.400598 5.042052 -2.807015 4.699407 5.866372 0.315057 1.505885 -0.559038 5.414780 0.459261 3.803739 0.657690 9.781795 -7.715805 -3.956581 -0.350197 2.875248 4.319253 -7.658581 -10.279425 -16.160925 -4.804672 7.816072 -5.103016 5.369786 15.143649 -4.213016 -10.331181 5.100988 -0.832423 -2.209976 3.615193 3.616553 14.187826 -9.035841 1.572631 -1.835397 1.306983 7.695388 18.572023 -4.356094 -10.029998 10.539727 -6.360948 -8.737121 11.033219 -0.577840 0.014663 -0.099238 1.239031 -3.506753 -5.011000 10.595285 -12.346119 11.271191 -9.858551 13.087215 -6.760968 -1.971334 1.581141 -15.045204 -4.730997 -9.829246 1.230556 -1.707185 9.472351 -8.353591 -7.244275 -4.219775 -4.345406 -0.487038 14.077513 -14.845245 -1.994921 -0.647331 -3.094771 11.310699 2.354478 -4.994181 -2.748822 -6.479773 3.910950 7.055096 3.752397 -12.821050 -6.298956 -4.185712 -4.705985 -2.633095 1.363087 8.514300 -6.711874 0.645249 6.602781 -1.189791 -4.300968 -2.665636 -13.603461 4.543753 1.179605 4.479297 1.940345 15.143256 7.838037 7.355305 -1.029951 2.595729 -0.971276 -5.709947 -14.139907 4.572592 1.683136 0.594187 5.255853 8.898528 4.040315 5.135849 8.016217 1.659713 1.237015 10.104097 1.124865 9.379690 -5.054022 -1.784470 5.467397 -0.103342 8.181026 9.080793 4.464857 -8.129306 5.103614 -5.271136 -9.916980 -2.747359 -1.677298 -0.952802 -1.301295 8.662604 9.158793 -2.409321 -3.239688 17.864187 -0.881539 -19.726165 7.157692 4.133586 6.593789 9.285750 -5.063445 8.070885 6.767976 5.789854 4.751499 5.313930 5.764746 -12.209151 0.086068 1.674660 5.526909 11.662893 -0.611537 -25.095858 -0.390875 1.285829 13.902467 -0.835657 15.832636 -7.497254 7.110934 1.140687 0.391811 2.682929 -2.043586 6.832466 -1.247687 -0.302512 -17.055850 4.381708 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 1.029878 -0.181191 1.230564 -2.107654 -0.916821 -0.312407 2.007014 -1.723058 -0.778864 2.369891 0.642437 -1.406363 -1.104100 1.956809 -0.351366 -1.166912 0.755169 -0.662371 -0.610662 -0.310968 -0.653002 0.871795 -0.565330 -1.821921 0.958535 -0.431538 0.866145 2.277910 -0.148940 0.465482 -0.116008 -1.152731 0.670971 3.605500 0.937462 -0.077034 -1.068374 4.129837 -2.733542 3.386777 -3.213449 -2.615230 4.540044 -0.632566 -0.269545 -3.708386 -1.263948 1.921216 -0.677359 -1.867928 -0.286255 -0.264620 1.019096 -2.672247 -1.095226 2.696677 -3.106917 0.551719 1.638350 -2.050064 -2.707861 -0.941050 0.476398 0.607952 -2.879173 -2.233029 0.253406 -0.779860 -1.026599 0.685069 -2.306646 -2.313031 2.538336 0.678056 -0.795257 0.647703 -0.780489 -2.152526 1.635115 0.054154 -1.889462 -1.622902 0.165512 -1.229269 1.702315 0.315578 2.246473 -4.749744 0.368699 -4.347798 1.380607 -2.624437 1.924212 3.097475 -1.464440 2.676804 0.359308 1.594598 0.067395 -0.201459 2.018855 1.344724 1.741477 0.475731 2.666540 2.292637 -1.913042 -3.370704 -2.012072 -1.483360 0.896114 -1.294130 -4.435784 1.340776 -1.958065 -0.373213 -0.204908 -0.149171 -0.810413 3.359287 -3.581542 0.887346 1.326991 -0.845505 1.214437 2.201721 -0.130746 0.151267 -0.759694 1.916791 0.047213 1.428183 -0.258431 2.493513 -1.671470 -2.057686 -0.779640 0.345336 1.078165 -2.075774 -3.206073 -4.093484 -1.146293 1.400080 -1.419988 1.674875 4.492357 -1.254273 -2.887361 2.144362 0.489161 0.231425 1.479059 0.899430 3.912325 -2.201286 0.224740 -0.635403 0.036081 1.462944 3.390209 -0.992416 -2.487887 2.443235 -1.414380 -2.754718 3.659804 -0.093081 -0.282761 0.354977 0.107359 -1.336657 -2.140502 3.536738 -2.009694 3.314610 -1.948870 3.971316 -1.614178 -1.228464 0.760314 -2.845433 -0.739013 -2.780418 0.047604 -0.159518 2.228741 -2.269775 -2.214416 -1.000596 -0.772665 -0.491020 3.438658 -2.555248 -0.391895 -0.074139 -0.362480 2.366394 1.322634 -1.429493 -0.126524 -2.289499 1.209687 2.022660 0.663410 -3.762890 -1.030629 -0.874820 -1.183240 -0.270112 0.364897 2.050129 -1.798995 -0.357602 1.656858 -0.248508 -0.640037 -0.383406 -3.989903 1.154171 0.041825 0.881899 0.852799 3.820291 2.688910 1.917805 -0.051719 0.660665 -0.234784 -1.068563 -3.216142 0.799156 0.285597 0.587201 1.474008 2.560766 1.432267 1.229092 2.148797 0.977698 0.217807 2.813106 1.012565 3.156126 -0.846365 -0.885778 1.252294 -0.201352 2.587130 3.094712 0.761643 -1.751613 1.596374 -0.550062 -2.172804 -1.744554 -0.515515 -0.397717 -0.642293 2.508688 1.650391 -0.796500 -0.641448 4.854242 -0.406263 -5.274045 1.998963 1.180017 1.828879 1.891378 -0.917286 1.711423 2.078487 0.486600 1.548433 1.436308 1.779845 -2.955313 -0.335312 0.409460 1.530184 2.481499 0.441973 -6.016596 0.084088 0.618903 3.752814 0.265051 3.626078 -1.704372 1.073848 0.329485 0.006502 0.457186 -0.415290 1.674599 -1.036799 -0.092310 -4.099855 0.355704 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 10.010177 -0.521487 4.028614 -7.220639 -2.205742 -1.539203 16.365153 -11.062513 -8.196225 21.924685 2.915870 -8.695747 -5.706739 6.895089 1.209961 -3.716453 5.621238 -0.139987 -3.391220 -0.570371 -8.365940 2.755313 -4.625924 -13.224487 6.046389 -0.527464 5.758002 13.405839 -6.960231 8.130992 -0.088757 -7.248271 4.865046 21.398970 7.714315 -3.905310 -8.104229 24.141699 -23.030024 20.118724 -13.310361 -16.346183 28.746149 -3.241245 0.780852 -12.375774 -2.971049 13.912059 1.433949 -17.366857 -2.962967 -2.114861 7.701154 -16.848357 -9.742407 18.032822 -15.921464 -1.024575 11.141689 -14.911588 -21.939858 -5.275950 4.924348 5.665151 -20.998067 -14.852696 0.235617 -7.389436 -0.949855 2.169939 -19.863683 -16.100708 9.124883 3.938252 -3.986319 1.699562 -9.144194 -8.955112 8.401326 6.704110 -11.024248 -9.954689 -1.367708 -9.083753 6.720002 6.118753 16.838316 -27.417363 3.795756 -26.437925 8.048895 -14.075667 12.634283 19.635731 -3.192183 15.945189 1.755632 13.458298 -2.430127 -3.846294 10.476425 5.576842 8.411031 2.325169 13.073286 17.351376 -16.034368 -22.922913 -13.657230 -5.508275 8.910784 -5.088274 -17.344588 10.149003 -14.185142 -1.034264 0.321781 -0.927700 -7.180684 20.499457 -22.885295 5.864033 6.612777 -5.137016 12.058772 11.658954 0.267308 2.528713 -3.136636 8.869400 3.242078 6.519892 -1.040530 16.482541 -13.081690 -7.003295 -0.311359 5.593220 9.891419 -14.253226 -18.246310 -27.028786 -4.944659 11.630213 -10.761935 9.364837 26.426726 -8.556210 -10.658167 9.940521 -3.151671 0.926504 6.229714 4.834078 24.588148 -15.689346 3.638436 0.956576 1.950446 9.390654 24.980881 -7.638692 -16.581101 15.982512 -8.429615 -5.463406 21.139814 2.669454 -1.143560 3.400634 1.969623 -1.688344 -11.055685 21.242824 -19.134415 14.005570 -10.595015 22.973579 -8.013725 -0.761651 5.475115 -16.468115 -7.664473 -19.877636 0.168273 -1.721614 14.278682 -12.591634 -11.877735 -5.453516 -4.394899 -2.862193 22.806823 -16.573731 -3.775347 -0.272238 -4.920217 14.725595 3.997461 -8.357110 -4.296722 -13.188268 6.198383 8.201642 -0.297842 -19.778588 -10.669427 -5.732519 -7.685345 -2.125718 1.979995 13.507067 -13.186300 0.029280 13.424776 0.993741 -5.508207 -1.939503 -20.732159 8.486069 3.630207 5.591452 6.569195 25.847822 12.293505 13.473563 -0.730502 4.617113 -3.227467 -5.180258 -26.279670 7.618963 -0.717698 7.568032 9.926734 9.627183 6.359201 8.463416 9.013821 -2.312075 3.079203 16.470598 6.840374 15.728416 -5.310110 -4.682699 10.825258 -2.218770 14.205584 11.273072 2.191265 -15.720243 7.840254 -11.369120 -17.067129 -0.839147 -1.120757 -1.583174 -3.148896 10.388746 13.841571 -2.026789 -6.282675 29.790940 -4.968926 -34.682264 10.975413 7.950381 12.291469 19.121989 -6.027363 17.281730 9.646183 11.844726 9.668343 11.165075 11.467339 -18.419095 5.590764 2.896015 7.831213 14.562011 -1.444254 -41.415334 -0.248747 1.728506 19.788639 0.675172 22.700775 -11.846944 13.600682 1.425309 0.156004 6.778468 -5.211159 13.184212 -1.251050 1.913751 -28.705510 9.499829 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 10.606190 -0.962427 4.340985 -8.149418 -2.954088 -0.793224 13.992194 -12.377054 -8.195078 21.048030 3.320444 -9.529489 -6.498697 7.548959 0.247124 -5.638014 5.452456 0.810314 -3.095652 -1.445906 -8.671875 2.263635 -4.997750 -14.141688 5.812106 -1.387122 6.295618 13.863534 -4.515048 8.364235 -1.234808 -7.512364 4.818658 23.440734 8.795038 -3.876452 -7.468666 26.228052 -21.009110 20.031020 -14.779018 -17.376526 29.985866 -3.261673 0.442579 -12.718236 -3.647869 14.303754 -2.525307 -15.688589 -2.596586 -3.093976 8.029853 -17.307436 -10.026077 19.140281 -18.142493 1.554614 11.293543 -14.780105 -22.122160 -6.125542 4.973893 5.899669 -19.973185 -15.702331 0.862738 -5.483240 -2.477788 2.481742 -20.975197 -17.264832 12.225559 4.355378 -4.972184 1.546578 -9.102416 -9.271458 8.476513 5.824758 -12.525030 -10.479141 -0.553031 -8.569494 8.463672 6.722472 17.386421 -29.691041 3.738885 -29.170946 8.812589 -15.121813 14.189647 20.898431 -6.037619 16.335346 2.285214 13.242480 -1.886061 -3.363471 11.812620 5.390675 7.675272 1.960953 13.875857 17.109387 -15.280133 -23.071891 -13.051556 -6.303522 7.365814 -5.221956 -20.690632 10.383257 -16.192435 1.219213 -0.700992 -0.174465 -7.839627 19.999129 -24.495126 3.997387 5.960236 -5.553804 14.287818 12.443235 -0.017802 3.600254 -3.141835 10.355847 3.060507 5.446033 -2.047016 17.219547 -12.295820 -9.311559 -4.067608 6.133859 11.535807 -15.175514 -20.662209 -27.449680 -6.119479 11.375269 -10.878342 11.436289 28.480904 -8.834367 -12.062808 11.205522 -4.680421 2.390143 9.942910 5.412634 26.602168 -17.058317 4.685737 0.710137 2.185217 8.972489 21.834875 -8.580146 -17.184450 16.721050 -7.970918 -3.783673 20.811713 2.532541 -1.705668 1.880033 1.558506 -2.320626 -12.066910 23.040615 -19.168007 15.196510 -10.157575 25.542092 -9.651725 -3.342931 5.984604 -16.865738 -7.820580 -18.630830 0.212965 -2.308687 15.493868 -14.525018 -13.424022 -4.934347 -3.899422 -2.921927 24.192639 -12.330179 -4.180577 0.015372 -5.101151 16.275436 5.724386 -8.733101 -3.597916 -14.438682 6.513077 10.068931 -0.736837 -21.087883 -10.592187 -6.234501 -7.860563 -1.393983 2.398665 14.286988 -14.042888 -0.834900 12.639727 1.372621 -3.230649 -1.311481 -21.426648 9.511588 3.129724 4.674291 7.488971 27.346714 13.677469 14.434043 -0.172495 4.074072 -2.806459 -6.088485 -24.137174 7.312008 0.511303 8.711305 10.260691 10.885167 6.645603 8.688712 9.516039 -1.112482 2.851546 17.611534 7.544723 17.779365 -6.698649 -4.126119 10.196389 -3.190242 15.759186 14.300377 -0.204777 -15.568788 8.506903 -10.417852 -15.993202 -4.082755 -1.498538 -1.829390 -3.756689 10.719692 14.047418 -1.966922 -7.307228 31.969645 -4.465387 -36.199511 13.062219 8.558253 12.221798 19.129249 -6.935015 16.020398 10.233419 10.310255 10.067277 11.910883 12.452687 -19.312118 5.750448 2.721093 9.277289 13.761135 -1.296462 -40.265648 0.351648 3.365273 21.656517 2.834072 21.975926 -12.561573 11.996906 1.117892 -0.745363 6.872080 -5.231419 13.764373 -2.385146 2.304196 -27.867040 7.484132 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 0.283667 -0.292330 1.093653 -2.053220 -2.188815 -0.204784 1.717226 -0.964690 -0.491557 2.011179 0.478750 -0.815397 -1.175916 2.649050 -0.104261 -1.097464 0.079103 -1.431322 -0.273791 0.131909 -0.297492 1.609155 -0.519197 -0.241970 0.738130 -0.210481 -0.111036 1.689668 -0.137998 -0.391739 0.122468 -1.154288 -0.047716 2.342887 0.523897 0.103963 -0.669576 4.552976 -2.927247 3.629660 -2.810109 -2.585718 2.586047 -0.508814 -0.446910 -3.448484 -1.308253 1.487182 -0.101793 -1.352517 0.756168 0.318898 0.623766 -1.142885 0.158865 1.468163 -2.741883 0.556811 1.191148 -1.302030 -1.002571 -0.588857 -0.587881 0.517463 -2.671360 -1.402712 -0.035690 -0.854787 -0.578950 0.023718 -0.506055 -1.339948 2.284146 0.893062 -0.844453 0.664007 0.348116 -2.221390 1.725606 -1.172341 -2.728589 -0.884449 -0.427707 -1.282082 1.597423 0.001539 2.113201 -3.708128 0.918663 -3.667671 0.957546 -2.259256 0.793692 2.796084 -0.888965 1.973862 0.763303 1.528207 1.396379 -0.417148 1.591141 1.865833 1.403416 1.425730 1.600501 2.191296 -1.656107 -1.929540 -2.200465 -1.575951 0.845195 -1.190096 -3.630495 0.977102 0.222760 -0.156517 0.133364 0.084487 -0.479026 2.882758 -2.647339 1.206228 1.143095 -0.549392 0.156772 1.994271 -0.355394 -0.212525 -0.930645 1.768720 -0.870990 2.399943 0.016596 1.830457 -1.686266 -0.865707 -0.689156 0.254571 0.321270 -1.352318 -1.883177 -3.541860 -0.515965 1.385269 -1.216750 1.549777 4.527781 -2.150493 -2.542697 2.393677 0.972533 -0.173740 0.316256 0.489705 2.085675 -0.441912 -1.178780 -1.192506 -1.057145 0.546912 4.185382 0.591922 -1.413615 1.747878 -0.969207 -3.667481 3.260985 -0.083685 -1.154045 -0.372785 0.211832 -1.547442 -1.704922 2.629250 -1.880060 2.275996 -1.121609 2.668298 -0.434492 -0.748501 0.615915 -2.641832 -0.155484 -3.000233 -0.239014 0.694134 1.269863 -1.716286 -1.180606 -1.216873 -1.211546 -1.266360 1.273859 -2.813528 0.111288 0.552872 0.757134 2.684605 2.348107 -0.187731 -0.335660 -1.968784 1.332304 0.590821 0.047615 -3.319740 -0.522767 -0.369337 -0.808044 0.296627 0.000674 1.148169 -1.299911 -0.186422 0.664624 -0.516840 -0.484981 0.439712 -3.732475 0.480234 0.408554 2.079575 1.024269 1.829324 2.144406 2.363855 0.895623 1.322004 -0.554291 -0.006376 -1.803026 0.546802 0.786800 -0.489759 1.279500 2.687023 1.833470 0.925153 2.146215 1.608868 0.157979 2.061588 0.277811 3.567020 -0.215209 -1.384024 0.648744 0.790193 1.771843 2.874855 0.693123 -0.175364 1.462906 -0.179138 -1.476463 -0.921267 0.372403 -0.654894 0.172402 2.213769 1.440427 -0.542754 -0.078388 2.676865 -0.758640 -4.244685 1.045628 0.827834 1.816494 1.132903 0.284739 1.098974 1.403051 -0.777435 2.530281 2.082384 1.097499 -1.945778 -1.176507 0.359020 0.699668 2.700510 1.655655 -4.850369 -0.004676 0.415249 2.161714 -0.355097 3.286344 -1.754451 -0.221144 1.176505 -0.420709 -0.191294 0.054545 0.669723 -0.729079 0.292516 -2.707175 -0.739981 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = 0.958265 -1.487989 2.171092 -3.965861 -3.261857 0.553414 1.866282 -2.826890 -0.760076 4.299660 0.817077 -1.076508 -0.752846 4.536370 -0.407319 -1.835392 0.563778 -1.593922 0.360528 0.318390 -0.363371 2.857909 -1.310777 -0.816615 0.763701 -1.065542 0.646024 2.675574 -1.258529 0.899579 -0.190820 -2.713387 -0.862867 4.858562 2.052656 0.706965 -1.518506 7.518771 -4.293600 7.406073 -5.087156 -4.807755 4.314233 -0.898005 0.169852 -4.500327 -2.079664 2.180829 0.265155 -2.680214 1.293367 -0.457380 2.204098 -1.677419 0.012394 1.334641 -3.713442 -0.305636 2.001848 -3.007844 -2.168907 -1.554781 -0.659938 1.986327 -6.086419 -2.448445 0.514953 0.052918 -0.645135 0.083768 -1.371463 -3.241680 3.496115 2.117465 -2.160758 0.362035 0.891020 -4.254806 3.066814 -1.125784 -5.170262 -1.862816 -1.728538 -3.721519 3.050438 0.258140 5.256510 -6.891539 3.120080 -7.079156 2.001113 -3.400051 1.948462 5.365507 -1.835308 3.106924 2.177545 5.645779 2.362611 -1.156370 2.865694 3.913859 1.272576 2.451195 4.122548 3.831002 -3.052582 -3.922403 -3.752336 -2.684746 1.676951 -3.419986 -6.307951 1.694731 0.116344 -0.004788 -1.058123 0.536148 -1.523958 5.667610 -6.610738 1.305079 1.701464 -1.091937 0.556704 2.364533 -0.712010 0.310984 -1.256841 3.535225 -2.336457 3.070382 -0.233209 3.736688 -4.366147 0.713804 -1.602740 1.177162 1.318446 -3.022289 -4.189085 -6.694458 -1.911569 3.835588 -1.851442 4.390019 7.500022 -3.687665 -4.321678 4.136953 0.663794 -1.564253 1.442880 1.329195 2.927186 -1.047049 -1.908259 -3.015713 -1.688135 0.545741 7.377815 0.865053 -2.351891 4.148531 -2.526125 -4.680164 6.517674 -0.471569 -2.561985 -2.852731 0.324213 -2.895017 -2.051606 4.779067 -5.960888 3.533635 -2.845003 5.282145 -1.143197 -0.834753 0.659006 -6.531302 -0.845398 -5.156977 0.360375 0.512667 3.075111 -3.808626 -2.711751 -1.575934 -2.377626 -1.793045 2.837719 -4.921906 -0.052541 1.518728 0.989692 6.744304 4.136877 0.297458 -1.479353 -2.251491 2.632432 1.811244 -0.335416 -4.379832 -1.710333 -1.133475 -1.498158 -1.021913 0.547980 2.694971 -3.848691 -0.343548 0.491685 -0.457487 -0.542191 1.403813 -7.925162 1.503500 1.322493 3.534376 1.976944 3.448706 3.477845 4.521524 2.106133 1.587884 -1.004898 -0.464013 -3.944628 1.669846 2.427663 -0.860369 1.997785 5.617723 3.252615 2.124905 3.714714 3.465621 1.837945 3.798870 -0.429726 5.597861 -0.353286 -1.522491 1.033369 1.556021 3.588227 5.368086 1.347149 0.377248 2.414211 -1.060110 -3.404761 -1.215824 1.136176 -1.069261 0.855146 2.341383 3.034532 -0.367728 -1.124113 5.445282 -0.791790 -7.361246 1.860021 1.805834 3.422265 3.768499 -0.041843 2.661501 1.752968 -0.702087 5.392327 3.657453 1.804510 -3.833725 -1.220608 0.680358 0.990748 5.712919 2.959453 -7.018884 0.767422 0.649203 4.552182 -0.482232 5.729791 -3.237043 0.597616 2.133896 -1.589345 -0.143988 0.151721 1.753359 -0.796052 0.763970 -5.312314 -1.742926 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = 0.178310 -0.189948 0.560921 -0.871930 -0.855278 -0.100036 0.842167 -0.459484 -0.244568 0.927117 0.099837 -0.397591 -0.787690 1.101571 -0.054626 -0.615069 -0.014293 -0.635164 -0.220367 -0.091300 -0.194502 0.548099 -0.192344 -0.278350 0.328563 -0.169286 0.147248 0.868279 -0.119706 -0.166640 0.165943 -0.517284 0.108356 1.156780 0.250819 0.242465 -0.397577 2.103151 -1.153538 1.827042 -1.422899 -1.446567 1.370265 -0.216299 -0.175664 -1.519417 -0.313849 0.756447 -0.381561 -0.623428 0.162877 0.165914 0.208241 -0.725778 -0.113300 0.765662 -1.301320 0.350576 0.449144 -0.730496 -0.699834 -0.258916 -0.156264 0.286762 -1.154979 -0.706235 -0.042618 -0.392532 -0.499023 0.182769 -0.310612 -0.556681 1.102233 0.392024 -0.337687 0.315222 0.063989 -0.741246 0.724557 -0.532646 -1.228599 -0.523385 -0.082391 -0.536245 0.676279 0.197468 0.976521 -1.776051 0.339185 -1.743962 0.537715 -0.966743 0.445803 1.231336 -0.364254 1.122681 0.264740 0.563647 0.398179 -0.283053 0.664457 0.768641 0.723556 0.615882 0.771680 0.948909 -0.807382 -1.041198 -1.030434 -0.685977 0.385639 -0.582468 -1.677157 0.409803 -0.067306 0.205912 0.127055 0.162166 -0.295726 1.123363 -1.519938 0.515134 0.482526 -0.249999 0.282098 0.762127 -0.114502 -0.016117 -0.223590 0.793852 -0.260235 0.914919 0.057524 0.856085 -0.538811 -0.225360 -0.310737 0.167391 0.249839 -0.548412 -0.913466 -1.636285 -0.394008 0.819155 -0.545154 0.852888 2.110875 -0.862537 -1.230303 0.950039 0.169006 0.050823 0.186892 0.311613 0.998385 -0.365846 -0.405595 -0.408319 -0.311146 0.506930 2.046439 0.104985 -0.786023 0.947021 -0.415685 -1.300417 1.210497 -0.085158 -0.372898 -0.307517 0.019150 -0.713313 -0.739346 1.130616 -0.953945 1.248777 -0.550728 1.291494 -0.380364 -0.388145 0.235190 -1.460546 -0.168250 -1.290825 -0.084204 0.139750 0.636351 -0.973662 -0.616402 -0.637590 -0.552686 -0.446792 0.786647 -1.197446 -0.025513 0.123757 0.239544 1.475750 0.971071 -0.237289 -0.245319 -0.958132 0.544042 0.289903 0.137353 -1.475439 -0.285987 -0.127607 -0.416284 0.282366 0.031207 0.533090 -0.611321 0.026325 0.313651 -0.225430 -0.293063 0.071745 -1.673401 0.181169 0.338643 0.893373 0.543296 0.997884 1.054752 1.018132 0.248168 0.645021 -0.260405 -0.150318 -0.855759 0.210243 0.337855 -0.101991 0.574568 1.161699 0.713642 0.396445 1.073606 0.765957 -0.103382 0.950182 0.118906 1.596322 -0.318353 -0.560541 0.363332 0.309557 0.763835 1.263251 0.099274 -0.137261 0.749910 -0.113774 -0.581915 -0.400949 0.003100 -0.330195 0.139503 1.187265 0.775254 -0.295470 -0.025534 1.307226 -0.267732 -2.046992 0.559002 0.431006 0.756294 0.534493 -0.096058 0.471477 0.784480 -0.268270 1.028121 0.921246 0.475768 -1.001397 -0.365242 0.157068 0.408898 1.200679 0.577540 -2.213533 -0.212657 0.164518 1.086446 -0.056612 1.603536 -0.880073 -0.050998 0.445377 -0.237567 -0.006902 0.036073 0.334136 -0.217121 0.090835 -1.277599 -0.286218 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.118725 0.056033 0.643406 -1.060193 -1.095547 -0.094207 0.680581 -0.496863 -0.225589 0.056227 0.616190 -0.425214 -0.438692 1.147680 -0.105518 -0.615804 -0.027994 -0.489283 -0.291549 -0.164999 0.020082 0.784128 -0.199520 -0.096139 0.403626 -0.247519 -0.262028 1.044564 0.231642 -0.403095 0.140987 -0.412276 0.066840 1.146427 0.125097 0.033488 -0.122355 1.884188 -1.119793 0.957562 -1.128000 -0.811706 1.422674 -0.282315 -0.454741 -1.753723 -1.249946 0.601033 -0.333457 -0.390503 0.397321 0.100228 0.369656 -0.529223 0.139891 0.869713 -1.450543 0.351662 0.610388 -0.822896 -0.421294 -0.154268 -0.465683 -0.126109 -0.705813 -0.687584 0.022141 -0.132065 -0.026953 -0.058916 -0.001015 -0.796085 1.688899 0.193225 -0.154340 0.500036 0.259417 -1.098156 0.918116 -0.113651 -1.040524 -0.464685 0.029852 -0.396518 0.875439 -0.324987 0.649176 -1.647104 -0.187345 -1.579451 0.513348 -1.080767 0.381640 1.101267 -0.878723 0.896459 0.530355 0.130812 0.407379 0.151352 0.990934 0.443497 0.712377 0.783401 0.835263 0.623737 -0.583461 -0.770118 -1.120691 -1.012252 0.464591 -0.565635 -1.952109 0.458357 0.045794 -0.545485 -0.075457 -0.206565 0.255519 1.574747 -0.430579 1.034058 0.863063 -0.278746 -0.285431 1.104893 -0.125778 -0.282909 -0.659621 0.851029 -0.652732 1.179872 -0.097153 0.823089 -0.245782 -1.354948 -0.488345 -0.022491 -0.080933 -0.752463 -0.887477 -1.096820 -0.048259 0.370706 -0.583202 0.209457 2.016373 -1.006324 -1.346157 1.307818 1.481611 0.000571 0.239318 0.351396 1.280502 -0.201528 -0.713049 -0.846296 -0.810302 0.407879 0.990204 0.238785 -0.552880 0.784359 -0.160584 -2.203785 2.390192 -0.390670 -0.626473 0.800919 0.249939 -0.779045 -0.990046 1.222167 0.774723 1.364075 -0.270725 1.430126 -0.259430 -0.813990 0.251401 -0.225431 -0.082741 -1.137296 -0.092050 0.463040 0.370670 -0.463027 -0.669710 -0.662936 -0.494844 -0.612031 0.594853 -0.687690 0.337669 0.343578 0.258836 -0.051704 1.155563 -0.064622 0.019737 -1.011407 0.612750 0.558729 0.276642 -1.739226 -0.070791 -0.200239 -0.241008 0.008870 0.020319 0.787684 -0.288258 -0.046847 0.287719 -0.452463 -0.205743 0.162622 -1.538315 0.240687 -0.175228 0.684788 0.241797 0.871639 1.523981 0.955831 0.402509 0.767932 -0.118791 0.053069 -0.630126 0.091506 0.123918 0.226348 0.679151 1.248535 0.973326 0.586698 1.142170 0.793307 0.488243 1.113796 0.320546 1.763320 0.042965 -0.591011 0.124805 0.510261 1.088143 1.500803 0.764786 -0.144363 0.608661 0.387556 -0.591749 -1.153570 0.145489 -0.159704 -0.192931 1.390039 0.525939 -0.278966 -0.091946 1.397203 -0.217039 -1.700595 0.718161 0.356944 0.803958 0.122244 0.212149 0.289716 0.856743 -0.404117 0.755078 0.818804 0.782216 -1.200717 -0.724695 0.179936 0.563693 0.828508 1.070762 -2.245511 0.173458 0.258565 0.991307 -0.428381 1.227499 -0.680764 -0.361538 0.556665 -0.011555 -0.216677 0.310346 0.062446 -0.920355 0.121793 -1.179487 -0.436570 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.043753 0.303027 1.695902 -2.525701 -2.993535 -0.785831 0.945265 -1.034954 -0.578338 0.806741 0.620857 -1.598770 -2.049433 3.052450 -1.137624 -2.442881 -0.700532 -0.924298 -0.767216 -1.231970 -0.378009 1.816443 -0.377211 -0.525483 1.391108 -0.947749 -0.341572 2.375195 1.786470 -1.177968 0.619767 -1.076160 0.728710 3.334056 -0.003550 0.160790 -0.304924 5.532209 -1.245653 2.093547 -3.692983 -3.153889 4.002312 -0.707325 -0.633458 -4.593360 -2.286303 1.837107 -2.812868 0.352236 0.459564 0.726928 0.025251 -2.076475 0.339886 2.271519 -4.764184 2.997443 1.340274 -1.904081 -1.412765 -0.678910 -1.330807 -0.451700 -0.722858 -2.031282 -0.290388 0.380100 -1.665278 0.668531 -0.109963 -1.251763 4.650545 0.426881 -0.776924 1.736167 0.589566 -1.674106 2.029041 -2.343654 -2.722204 -1.491344 1.320472 0.057927 2.254396 0.349740 1.429232 -4.793269 -0.343301 -4.330162 1.634750 -3.125814 1.457572 3.245203 -2.775804 3.193735 0.940658 -0.849607 1.591161 0.679730 2.730280 1.159428 2.213973 1.874472 1.263884 1.706415 -0.982949 -2.023852 -2.180190 -2.456451 -0.016716 -0.762128 -5.472476 1.047516 -0.482308 0.534850 0.126788 -0.051516 0.137586 2.676529 -2.828202 0.637102 1.912458 -0.835330 0.475310 2.426549 -0.404420 -0.449241 -1.513433 2.507861 -1.081731 2.247298 -0.211255 2.250245 -0.165393 -4.296850 -2.906842 -0.360579 0.010943 -1.724779 -2.788826 -2.864068 -0.794797 0.632191 -1.521649 1.340909 5.801438 -2.104590 -3.732763 3.510039 1.713243 1.202223 1.914360 1.092371 3.491658 -0.816935 -1.299737 -1.412535 -1.292086 1.523083 1.696779 0.377239 -2.157738 1.951525 0.138321 -3.675686 2.763234 -0.901515 -1.149785 -0.160354 0.379265 -2.191602 -2.217980 3.388297 0.841446 4.232532 -1.222497 4.216049 -1.440714 -3.227762 0.781780 -2.076250 -0.044122 -1.866259 0.092904 0.637295 1.226823 -2.573991 -2.109566 -1.187711 -1.230111 -1.483927 1.836684 -0.629181 0.288919 0.351406 0.784486 1.876318 2.931596 -0.776768 0.603141 -3.427019 1.370794 1.493285 0.899419 -5.306698 0.240123 -0.020996 -0.948263 1.009918 0.103630 1.330248 -0.244089 -0.266651 0.495756 -1.160351 0.234687 -0.040103 -2.414859 0.655879 -0.756243 1.699852 0.798985 2.597670 4.320186 2.099024 0.701313 1.888254 -0.208791 -1.021366 0.590223 0.513477 0.875805 0.165947 1.702150 3.319415 2.470623 0.977010 3.007530 2.366654 -0.648140 3.023937 0.654583 5.175767 -1.938969 -1.315441 0.126328 0.871012 2.874624 4.566211 0.116099 -0.727772 2.187080 1.217031 -0.280061 -3.315431 -0.273762 -0.588761 -0.687411 3.570177 1.310447 -1.473299 0.255908 3.778571 -0.535188 -4.541163 2.820884 1.077008 1.745418 -0.777605 0.215586 -0.601986 2.940882 -1.865475 1.100157 1.885445 1.940981 -3.117841 -1.905770 0.274004 2.254524 1.722395 2.392265 -4.994114 -0.184434 1.776915 2.887459 -0.132855 2.613102 -1.616531 -2.423200 1.103514 -0.125886 -0.862736 0.782821 0.044005 -2.200065 0.597036 -1.450758 -2.144949 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 0.939415 0.058788 0.126634 -2.658412 -0.734585 -0.609003 3.159679 -0.999883 -1.152158 2.288728 0.752680 -1.587231 -2.200176 2.710942 0.655578 -1.421211 1.112989 -2.266432 -0.832717 0.797320 -0.762943 1.260592 -0.484881 -1.545767 1.059337 0.612193 -0.220707 2.248864 0.542293 -0.662858 -0.690017 -0.892467 0.524037 3.080745 0.683797 -0.804724 -1.114457 4.433064 -4.713072 4.039952 -3.141412 -2.034312 5.030002 -0.612172 -1.480956 -5.074032 -1.434584 2.165573 0.221933 -2.472733 0.397277 0.122943 0.563931 -2.391784 -0.822481 3.861893 -3.524921 0.912690 1.986239 -0.910199 -1.942094 -0.931929 0.510800 0.346885 -3.243607 -2.242323 -0.000678 -2.985424 -1.125699 -0.136153 -2.723830 -2.071835 2.269413 1.471630 -0.706907 0.621505 -1.372598 -2.557055 1.585860 -0.682828 -1.661738 -0.983466 -0.260015 -0.608699 1.921695 -0.230775 1.561032 -4.830455 -0.427398 -4.390559 0.628705 -3.285341 1.455826 3.322406 -0.428556 2.260876 -0.423385 0.464204 0.282719 -0.770842 1.827638 1.709934 2.249034 0.321481 2.715867 3.073189 -2.178862 -3.550830 -1.775205 -1.162560 0.839939 -0.793102 -4.567565 1.758656 -1.690273 -1.410605 0.783754 -0.314583 -1.161767 2.972889 -2.066511 0.855776 0.777922 -0.802382 1.298438 3.639761 -0.104320 -0.352476 -1.308541 1.692037 1.002378 3.179868 -0.370182 2.253155 -1.922243 -2.444064 0.203002 0.143808 0.958738 -1.980287 -2.777465 -4.732881 -0.306693 0.226523 -1.811363 1.215580 4.448823 -1.337353 -2.818703 2.537668 0.885409 1.048974 0.484192 -0.028408 4.916915 -1.851264 0.217917 0.274128 -0.186216 0.566633 4.840280 -0.685092 -2.445696 1.348981 -2.085794 -4.593737 3.039428 0.990695 -0.332373 1.462807 -0.282634 -1.381807 -3.408228 3.874476 -2.167427 2.949799 -1.661099 3.211229 -0.701171 -0.553378 1.688610 -1.989408 -0.587668 -4.144736 -1.069761 0.585086 1.582484 -1.601133 -1.465349 -1.599099 -0.182289 -1.432773 3.579154 -4.324507 -0.495475 -0.126872 0.324026 1.800656 1.308212 -1.714503 0.424750 -2.806048 1.573867 2.125103 0.168616 -4.445914 -0.761812 -0.669650 -1.202144 0.718582 -0.211717 1.539739 -1.368884 -0.830067 2.513589 0.148130 -0.526095 -0.152821 -4.433910 0.898375 0.271350 1.004955 1.185447 4.388105 1.610584 1.678910 -0.103208 0.755381 -0.430762 -0.203333 -4.735800 0.099835 -0.893168 0.424291 1.833953 2.071079 1.406756 0.986572 2.473358 0.803953 -0.842636 2.398903 1.706174 2.990520 0.842560 -2.314429 1.776788 -0.882667 2.099603 3.161733 0.580177 -2.040067 1.847747 -0.786030 -2.884681 -1.271102 -0.292741 -0.768281 -1.095431 3.210569 1.050497 -0.588522 -0.258535 5.036380 -1.228330 -6.168531 1.394544 1.180305 2.172630 2.176558 -0.336462 2.201305 1.958730 0.059511 1.627345 1.614048 1.688788 -2.390512 -0.038551 0.448216 0.758694 2.695344 0.266505 -6.877590 -0.138603 0.519975 4.271398 0.760678 4.264059 -1.039444 1.637162 0.497345 0.841288 0.780341 -1.412596 1.741807 -1.160290 -0.537216 -4.924427 1.223218 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.379858 0.356841 0.418429 -1.018484 -1.042787 -0.003752 0.019474 -0.884916 -0.425893 0.560586 0.446534 -0.832968 -0.954912 1.126748 -0.559578 -1.047207 -0.221906 -0.395265 -0.292729 -0.584641 -0.192426 0.422723 -0.202225 -0.572477 0.171020 -0.271310 0.043058 0.766344 0.885826 -0.236971 -0.187446 -0.381490 0.439162 1.494784 0.480927 -0.157865 -0.221792 1.902605 -0.561032 0.753653 -1.829938 -1.296678 1.776117 -0.154082 -0.215090 -2.110679 -0.814249 0.812372 -1.187688 0.120460 0.078054 -0.145844 0.136919 -0.774856 -0.253862 1.245528 -1.948042 1.572682 0.553932 -0.753346 -0.650668 -0.301775 0.003333 0.164189 -0.140340 -0.939373 -0.049822 0.238101 -0.746205 0.260914 -0.681155 -0.845075 1.812987 0.200761 -0.513871 0.213191 -0.284326 -0.605044 0.652288 -1.010023 -0.985198 -0.496066 0.480403 0.351391 0.779631 0.390096 0.552996 -2.130687 -0.303101 -2.065363 0.623662 -1.087628 0.783562 1.083362 -1.054682 0.850132 0.249880 -0.523499 0.713460 0.233187 0.979413 0.354910 0.826966 0.362100 0.727147 0.853605 -0.284592 -0.895585 -0.493996 -0.954649 -0.127201 -0.081369 -2.403210 0.501475 -0.752521 0.297802 -0.144534 -0.136715 -0.070953 0.885894 -1.295271 -0.407095 0.349898 -0.299648 0.835056 1.087789 -0.080105 0.330372 -0.441083 0.967715 -0.073489 0.653394 -0.129953 0.892072 -0.154657 -2.229368 -1.560072 0.353903 0.526521 -0.832880 -1.332148 -1.377413 -0.361713 0.063186 -0.637698 0.606771 2.102968 -0.684755 -1.614885 1.260890 0.280625 0.329245 1.304385 0.291957 2.123855 -0.782027 0.006623 -0.138863 -0.356981 0.370210 0.606781 -0.352239 -0.948927 0.727200 -0.106353 -1.390792 0.470500 -0.124648 -0.504564 0.031482 -0.042634 -0.638530 -0.883340 1.278132 -0.019745 1.466110 -0.523403 1.750299 -0.866458 -1.354472 0.420432 -0.947438 -0.240607 -0.306154 -0.042429 0.135218 0.857146 -1.184782 -0.831944 -0.297332 -0.286218 -0.599169 1.322531 -0.235569 -0.034949 0.255551 0.079502 0.909903 1.069104 -0.482227 0.341107 -1.177206 0.538821 1.118691 0.429719 -2.344750 -0.226597 -0.451702 -0.329687 0.464206 -0.006116 0.780537 -0.140992 -0.172198 0.340183 -0.433351 0.529002 0.114761 -0.558351 0.547884 -0.472057 0.432889 0.215162 1.623232 1.203027 0.952676 0.274767 0.444133 0.051910 -0.659305 0.148080 0.111198 0.510326 0.047064 0.732523 1.174808 0.634674 0.489347 1.225337 0.742135 -0.336958 1.236733 0.241524 1.783384 -1.023441 -0.184902 -0.017000 -0.060556 1.153284 2.088900 -0.348855 -0.699459 0.665313 0.038055 -0.210906 -1.359192 -0.183417 -0.239611 -0.532452 1.395590 0.899385 -0.239175 -0.313368 1.960744 -0.076214 -2.003169 1.435205 0.515412 0.527614 0.170154 -0.386684 -0.131234 0.965554 -0.416644 0.184058 0.956156 0.918098 -1.339790 -0.612388 0.038505 1.009649 0.596281 0.533764 -2.095312 0.031037 1.006004 1.647626 0.248759 1.071377 -0.840197 -0.674513 0.359202 0.179690 -0.028918 0.016066 0.417394 -0.894138 0.128392 -0.616690 -0.492129 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 0.607732 -0.473478 0.969906 -1.387581 -1.222424 0.082703 -0.146904 -0.674804 -0.427283 1.017911 0.961759 -1.156524 -1.435843 -0.485054 0.103983 -1.387387 0.699812 0.256594 0.251216 -0.870693 -0.528078 -0.041718 -0.302075 -1.687248 0.618891 -0.664757 -0.092555 1.743225 1.169297 0.801778 0.219512 -0.496265 0.526367 2.762743 0.598151 -0.648527 -0.253817 2.781759 0.292505 0.508260 -1.435214 -2.070484 3.476207 -0.159175 0.455448 -0.855134 -0.101045 1.416868 -2.584963 -0.578157 -0.512452 -0.407053 1.483396 -1.880432 -1.879141 1.465038 -2.753908 0.376780 0.645886 -2.262515 -2.305887 0.450917 -0.256394 0.882167 -0.198804 -1.603518 -0.041498 0.172298 -0.247514 0.074292 -0.878871 -0.912150 2.352839 0.297044 0.344165 0.524142 0.120004 -0.617906 0.966280 0.492210 -1.776823 -1.240871 -0.181808 -1.339546 1.605304 0.079387 1.987771 -2.364961 0.694656 -3.279722 1.262602 -0.922350 1.087262 1.876230 -1.636314 1.914792 0.717572 0.224804 -0.036708 0.009435 2.002257 0.475036 1.063590 0.835479 1.488817 1.090495 -0.766937 -1.437874 -1.108331 -1.142418 -0.129943 -1.020223 -2.621088 1.116962 -1.503568 0.836446 0.421030 0.196382 -0.213291 1.680979 -1.384310 -0.028583 0.608318 -0.470427 0.742100 0.441761 0.122503 -0.665214 0.705428 1.920481 -0.260781 -0.081723 0.870273 2.028970 0.482357 -1.327366 -1.003669 1.027329 0.909050 -1.432398 -2.133657 -1.754073 -0.328853 0.754466 -0.835966 1.423627 3.313401 -0.344126 -1.564310 1.294541 -1.149511 -0.186332 2.001873 0.974148 2.368235 -1.275149 -0.313687 -0.713284 -0.331173 0.797523 1.257383 -0.787832 -1.250883 1.962032 -0.269068 0.823580 0.855177 -0.179043 0.368201 0.692332 -0.147448 -0.968249 -1.298603 1.316884 0.085411 2.175667 0.242810 2.961720 -0.309687 -2.107101 0.708377 -0.377161 -1.267659 -0.200817 0.324109 0.307960 0.194885 -1.177578 -1.655839 -1.047832 -0.120878 -0.550713 2.520215 1.530039 0.334865 0.834043 -0.807105 0.679434 0.142361 -0.723871 -0.339644 -1.707883 0.533632 0.524344 -0.299736 -1.444165 -1.464914 -0.401459 -0.183976 1.075140 0.713528 2.391927 -0.311822 0.058850 0.865446 0.482890 -0.270834 -0.409696 -2.037342 0.916420 1.235501 0.269913 0.641002 2.960066 1.992038 1.404037 -1.046707 1.044084 -0.426191 -0.142462 -0.751293 -0.660797 -0.027690 1.017385 0.571514 0.826385 0.668609 1.438449 1.791265 1.184074 0.070842 2.002103 0.003402 1.567425 -1.177285 -0.667024 1.381829 -0.091191 1.790651 1.474504 -0.258103 -1.076875 0.730252 -0.313690 -1.013713 -1.557539 0.268194 -0.073409 0.311256 0.878550 1.696151 0.374778 -0.811116 1.995144 0.695182 -3.532278 2.555213 0.688864 0.827173 1.261449 -0.876623 0.776624 0.713951 0.267405 1.114854 1.406233 0.575666 -2.746215 0.635932 0.775046 1.903945 -0.436025 0.824408 -1.878575 -0.645302 -0.229507 1.067496 0.743901 1.732205 -1.867227 -0.705914 0.008148 -1.153327 -0.345099 -0.103363 -0.137958 -1.029977 0.597708 -1.495431 0.053748 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = 0.110936 0.044447 0.278120 -0.418792 -0.424928 -0.041892 0.175841 -0.139268 -0.102097 0.024830 0.111800 -0.071201 -0.196582 0.444969 -0.098796 -0.337916 -0.117587 -0.431165 -0.181794 -0.075837 -0.074896 0.301158 -0.088568 0.001098 0.202278 -0.084896 -0.117237 0.246489 -0.017086 -0.415792 0.034412 -0.184157 -0.003649 0.479769 -0.016982 0.042001 -0.030016 0.850021 -0.060765 0.226250 -0.452324 -0.494399 0.483347 -0.189154 -0.079163 -0.540915 -0.262902 0.319823 -0.027517 -0.070282 0.148894 0.138562 -0.123763 -0.264873 0.071044 0.209044 -0.680749 0.330512 0.235203 -0.222168 -0.246337 -0.106961 -0.146806 -0.145207 -0.064847 -0.298161 0.081260 0.076951 -0.213453 0.054619 0.045950 -0.280464 0.707304 0.150528 0.014287 0.283824 0.172489 -0.228205 0.403813 -0.313642 -0.455601 -0.194534 0.108691 -0.135490 0.427181 -0.029782 0.163475 -0.695075 0.179895 -0.641152 0.177166 -0.445012 0.154171 0.481843 -0.274313 0.437042 0.252444 0.075735 0.191796 0.069854 0.481575 0.113905 0.251114 0.395346 0.248215 0.108292 -0.189344 -0.221918 -0.413766 -0.471939 0.110301 -0.123030 -0.668586 0.251216 0.085486 -0.052094 -0.013557 0.095604 0.103623 0.358864 -0.530104 0.120648 0.351521 -0.120804 -0.008005 0.354494 -0.133035 -0.119518 -0.321273 0.374595 -0.278439 0.411102 0.003198 0.319884 0.060858 -0.441054 -0.372744 -0.066748 0.010950 -0.311669 -0.378169 -0.384858 -0.031801 0.167277 -0.303580 0.405513 0.918191 -0.410590 -0.506590 0.587746 0.497919 0.135620 0.202274 0.160569 0.471597 -0.043767 -0.333798 -0.174771 -0.265556 0.190860 -0.183174 0.165658 -0.176202 0.320658 0.069608 -0.461046 0.776900 -0.188371 -0.253342 0.309363 0.113901 -0.354031 -0.409741 0.419981 0.515900 0.624624 0.130680 0.638083 -0.133674 -0.286656 0.109194 -0.164866 0.022437 -0.402068 -0.025502 0.007147 0.129035 -0.282996 -0.264825 -0.162380 -0.302249 -0.285103 0.200687 0.015027 0.213092 0.120952 0.164649 0.074648 0.566520 -0.026662 0.033015 -0.560105 0.242668 0.170277 0.100239 -0.511762 -0.019336 -0.003159 -0.099081 0.231357 -0.007260 0.226068 -0.017359 -0.039723 0.106165 -0.079418 -0.035354 0.061845 -0.318834 -0.054998 -0.066717 0.306611 0.099608 0.353907 0.659589 0.394001 0.224097 0.251330 -0.033620 0.044830 -0.026737 -0.114959 -0.063033 0.300886 0.304199 0.373509 0.450137 0.216104 0.513152 0.359719 0.028144 0.513214 0.064511 0.865570 -0.248473 -0.247155 -0.035170 0.208403 0.473883 0.617633 -0.053673 0.046531 0.316474 0.223724 -0.168209 -0.388871 0.055367 -0.107516 -0.030143 0.360493 0.228064 -0.135245 0.012488 0.552861 -0.134437 -0.679803 0.324471 0.135966 0.350170 0.020244 0.147009 0.051516 0.380274 -0.306386 0.170507 0.325837 0.331744 -0.517679 -0.155700 0.088212 0.378021 -0.077713 0.476555 -0.582830 0.121786 0.181899 0.323611 -0.113183 0.200818 -0.285043 -0.327415 0.274375 -0.033555 -0.115067 0.344536 0.110257 -0.328709 0.036980 -0.335550 -0.261047 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = 0.184593 -0.603185 0.551473 -1.040614 -1.195788 0.128773 -0.044222 -1.042034 -0.408213 0.606470 0.601856 -0.720073 -0.063994 1.723278 -0.147244 -1.046878 0.005601 0.768130 -0.030474 0.072217 -0.313314 0.911573 -0.517185 -0.434509 0.629882 -0.430802 -0.093291 0.985625 0.165107 0.234245 -0.088952 -0.787390 -0.140770 1.976352 0.472252 0.435218 -0.152208 2.819610 -1.063372 2.013771 -1.510859 -1.498422 2.012604 -0.351316 -0.049238 -0.887047 -1.394463 0.895838 -0.827429 -0.794342 0.410273 -0.165900 0.532103 -0.849937 0.198747 0.822325 -1.831915 0.357100 0.940133 -1.231780 -1.079176 -0.451896 -0.542789 -0.030597 -1.554420 -1.133803 -0.028934 0.654950 -0.042118 -0.165985 -0.560896 -1.573124 2.403633 0.387432 -0.654882 0.560455 0.261757 -1.082618 1.101397 0.085319 -1.837400 -0.825031 0.045612 -0.839451 1.236485 0.437862 1.798779 -2.751262 0.866092 -2.800504 1.101153 -1.346716 1.100398 2.122583 -1.722870 1.231246 1.118482 1.524124 0.728017 0.506328 1.559850 0.696051 -0.163592 0.835438 1.196471 1.015693 -0.944932 -1.351503 -1.336577 -1.370730 0.569080 -0.902589 -2.715501 0.654152 -0.499367 0.726284 -0.497057 0.356427 0.040641 1.772760 -2.006001 0.744620 0.909217 -0.477266 0.541222 1.122453 -0.240407 -0.100769 -0.882609 1.294298 -1.072376 0.539699 -0.340484 1.463600 -0.900323 -0.929215 -1.162423 0.209050 0.401491 -1.486897 -1.680005 -2.099402 -0.369963 1.383360 -0.885685 1.319530 3.117272 -1.583490 -1.477233 1.773257 0.638269 0.085781 1.198973 0.693476 1.919977 -0.736416 -0.526282 -0.932404 -0.754361 0.495506 0.358110 0.202552 -1.089473 1.390578 -0.251168 -1.742806 3.575240 -0.414275 -0.912262 -0.462351 0.491570 -0.759372 -0.836731 2.060531 -0.657640 1.511496 -0.727654 2.443368 -0.647335 -0.891798 0.459986 -1.479922 -0.628141 -1.400642 0.003721 -0.062048 1.073755 -1.455347 -1.135437 -0.332419 -0.824935 -0.690759 1.172658 0.159404 0.093738 0.528169 0.008824 1.202111 1.544914 0.089029 -0.270797 -1.446516 0.700173 0.906077 -0.491408 -1.918996 -0.307281 -0.575311 -0.410796 -0.273008 0.174715 1.104265 -1.205387 -0.162907 -0.047651 -0.174570 0.336417 0.276261 -1.701949 0.543762 0.020044 0.916697 0.917134 1.577570 2.006139 1.769614 0.738265 0.874087 -0.148987 -0.202325 -0.759338 0.648156 0.413893 0.886616 0.957056 1.654025 1.332849 0.908235 1.089930 0.688268 1.114223 1.850323 0.530016 2.742242 -0.175372 -0.451788 0.317314 0.402738 1.786956 2.231300 -0.362289 0.138258 0.837237 -0.000894 -1.009286 -1.122138 0.386785 -0.146194 -0.697901 0.935738 0.687956 0.046683 -0.668217 2.371035 -0.307049 -2.746750 1.317995 0.525344 1.217256 0.891491 0.175830 0.694870 0.901301 -0.266354 1.341476 1.329058 1.301429 -1.919027 -0.255502 0.153980 0.957087 1.667106 1.231972 -2.077312 0.859845 0.601749 1.538735 -0.245084 0.989980 -1.103785 -0.267168 0.399749 -0.694420 -0.116556 0.058943 0.345093 -0.331371 0.266635 -1.820289 -1.081532 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.008158 -0.207378 0.609341 -1.187129 -1.397951 0.097453 -0.072548 -0.672385 -0.216036 0.039754 0.486043 -0.423480 -0.410055 1.414758 -0.272824 -1.012849 -0.236788 -0.216340 -0.078494 -0.132522 -0.095831 0.861375 -0.355312 0.051694 0.319228 -0.370694 -0.273608 0.761404 0.549977 -0.375569 -0.105250 -0.611595 -0.215082 1.374917 0.308402 0.177751 -0.010576 2.383553 -0.426604 1.103813 -1.310843 -1.128945 1.210385 -0.330490 -0.219268 -1.381122 -1.185743 0.653499 -0.815537 -0.055919 0.641646 0.050058 0.236774 -0.344625 0.395887 0.478505 -1.637940 0.798884 0.636145 -0.683751 -0.279373 -0.351750 -0.624372 -0.023795 -0.664954 -0.721094 0.107699 0.496941 -0.270663 -0.123252 -0.000740 -0.932305 2.018550 0.432885 -0.473844 0.471925 0.557108 -0.939326 0.964911 -0.592599 -1.571523 -0.455070 0.035900 -0.477528 1.203129 -0.018724 0.933436 -1.981715 0.430283 -2.080433 0.604011 -1.175035 0.541385 1.500841 -1.249493 0.875443 0.858426 0.512274 0.900269 0.241643 1.205914 0.574755 0.257699 0.928534 0.841720 0.555889 -0.408321 -0.615977 -1.011934 -1.234957 0.138648 -0.615156 -2.279083 0.528224 0.085938 0.218539 -0.363228 0.241416 0.083472 1.172602 -1.190631 0.393753 0.690774 -0.347739 0.129761 1.028428 -0.343030 -0.076069 -0.769224 1.128129 -0.978975 0.944446 -0.206409 0.955833 -0.287876 -1.097321 -1.371321 0.108421 0.221028 -0.899447 -1.187308 -1.214625 -0.258009 0.531126 -0.640069 0.994899 2.469627 -1.282133 -1.388270 1.639413 0.867592 0.200368 0.893952 0.436075 1.264858 -0.116005 -0.782760 -0.915127 -0.901288 0.096618 0.124314 0.468607 -0.521105 0.918449 -0.055080 -1.521994 2.105516 -0.439412 -0.974214 -0.162444 0.287202 -0.907575 -0.897577 1.424305 0.226806 1.309649 -0.115414 1.741057 -0.357354 -0.980424 0.321476 -0.773849 -0.069921 -0.928486 -0.030557 0.217226 0.546949 -0.959857 -0.788773 -0.406740 -0.645753 -0.790162 0.489564 0.188246 0.290395 0.581988 0.468488 0.748222 1.698251 0.239819 0.003356 -1.203241 0.740135 0.631204 -0.129764 -1.560262 -0.068817 -0.226988 -0.258247 0.158018 0.073910 0.701066 -0.506366 -0.216598 -0.168601 -0.265020 0.386319 0.498596 -1.387201 0.276402 -0.112723 0.841057 0.540093 0.854795 1.634517 1.342888 0.876050 0.710269 -0.085105 0.043467 0.101634 0.096727 0.447583 0.369004 0.728138 1.433600 1.209481 0.599532 1.185978 1.068507 0.482391 1.300788 0.151912 2.302921 -0.270376 -0.510051 -0.119565 0.509041 1.304886 2.071674 -0.028120 0.365102 0.754182 0.448570 -0.429917 -1.334329 0.356738 -0.248862 -0.220492 0.965222 0.527464 -0.147314 -0.271192 1.520848 -0.272429 -1.836614 0.939523 0.398561 0.900563 0.258397 0.343511 0.053842 0.747552 -0.915637 1.043535 1.093916 0.831709 -1.281197 -0.576472 0.151967 0.730435 0.737081 1.308905 -1.436527 0.455071 0.628681 1.112865 -0.121465 0.736506 -0.830781 -0.880937 0.713814 -0.432160 -0.315839 0.416322 0.164138 -0.762505 0.263721 -0.767978 -1.214149 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 2.689375 -1.428593 2.233073 -5.947217 -3.410554 0.460823 3.723704 -5.480651 -3.034200 8.700958 1.642590 -4.169772 -3.246182 6.502291 0.161431 -3.388811 1.322921 -2.579102 -0.877063 -0.283151 -3.352676 2.913587 -2.645478 -4.553175 2.349145 -0.979554 1.695126 4.759928 -0.807930 1.070335 -0.488305 -4.371785 0.447842 10.657051 4.304608 -0.063708 -3.152480 13.880583 -7.170063 11.299195 -7.937181 -9.093833 11.917954 -1.768486 0.360799 -4.911421 -1.146882 6.756840 -1.815846 -6.049566 0.550566 -0.950708 2.925701 -6.368411 -3.156261 5.682506 -8.381548 2.330651 4.974275 -5.447110 -7.682524 -3.466355 0.866852 3.129205 -9.224139 -6.152028 0.580817 -1.109958 -2.914872 -0.546013 -6.954167 -6.701208 5.767400 3.381964 -2.486496 0.968787 -2.651847 -3.765976 4.660673 -0.767942 -8.024914 -4.030873 -0.932983 -5.793909 5.157099 3.406106 7.861185 -13.943058 3.604574 -14.214106 3.785798 -5.909338 5.835854 10.290649 -3.261750 7.020824 2.329101 6.869837 1.668787 -1.518321 5.894785 2.813619 2.208403 3.512256 7.184330 7.457096 -6.505235 -8.580100 -5.972783 -4.626386 3.118588 -3.123484 -8.300158 4.893873 -5.216737 0.428428 -1.108210 1.771329 -4.473012 7.149120 -12.768355 -0.516164 2.075492 -2.462776 6.132009 5.242900 -0.625448 1.522874 -1.696368 5.729604 -1.203345 3.520643 -1.035747 8.204483 -3.812607 -1.331888 -3.924696 2.967180 4.955606 -6.905646 -9.310974 -12.982236 -3.369377 4.724424 -5.348197 9.186527 14.381344 -5.816409 -6.283258 7.411842 -2.640786 1.857088 4.901062 2.252512 10.227759 -5.443035 -0.340970 -0.668518 -1.341823 2.834833 9.474215 -1.460950 -6.579713 7.078571 -3.357631 -0.925775 7.533459 1.038891 -3.158632 -4.194504 1.172799 -3.789366 -6.303503 9.621469 -8.933827 6.442574 -3.402942 11.967052 -3.995053 -1.935348 3.526421 -9.073907 -2.769871 -8.278098 -0.472421 -1.306980 6.075698 -7.157766 -5.717630 -2.010559 -1.728916 -3.535156 8.352316 -4.517557 -0.887566 1.622286 -0.335365 9.440549 5.498596 -2.435666 -1.919375 -6.767211 3.581755 4.782966 0.210888 -8.108022 -4.257206 -2.871211 -3.707616 1.743092 0.693549 5.947208 -6.537589 -0.408530 4.013066 1.008193 0.253399 1.372936 -11.538986 3.852344 2.270148 3.128944 4.767138 11.050748 5.766664 7.978367 1.953121 3.067083 -2.275352 -1.093347 -8.009121 1.925831 1.295225 3.457016 5.376667 6.915447 5.573393 4.828333 6.725026 2.189340 0.161695 8.578295 0.635222 10.424654 -3.189985 -1.918554 3.395593 0.346404 7.535076 8.930373 -1.690421 -4.859645 5.189267 -3.865419 -6.668638 -2.370349 0.893568 -1.920011 0.360548 3.720603 5.704289 0.180575 -3.204299 13.800774 -2.899342 -15.870988 6.413584 3.670986 7.037328 7.348223 -1.711109 5.767332 4.090544 -0.324564 6.478530 7.247179 5.076759 -8.439636 1.887979 1.089918 4.778474 6.799433 1.943372 -14.673495 1.046379 1.706626 9.147770 1.648573 7.715666 -5.993317 1.694314 2.100414 -2.024118 2.062604 -0.773351 5.855968 -0.822025 1.420167 -10.526754 0.317098 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = -0.105035 0.015284 0.162257 -0.172158 -0.114916 -0.128451 0.349463 0.093539 -0.022009 -0.327549 0.097181 -0.110255 -0.329651 0.177987 0.101926 -0.251737 0.011840 -0.128802 -0.213038 0.058499 -0.012722 0.084936 0.030818 -0.010630 0.174915 0.030014 -0.091568 0.318370 0.140417 -0.279268 0.035740 0.004336 0.118247 0.212633 -0.151212 0.142619 0.030345 0.401300 -0.093012 0.272977 -0.113549 -0.088531 0.340212 -0.083155 -0.214943 -0.425760 -0.242798 0.199239 -0.280715 -0.156378 0.116384 0.185277 -0.115257 -0.229629 0.096819 0.381062 -0.439898 0.152653 0.110876 -0.042078 -0.051655 0.001155 -0.226894 -0.210492 0.041774 -0.152869 -0.057733 -0.215082 -0.164085 0.067750 0.042060 -0.100394 0.621476 0.028998 0.028215 0.263196 0.145779 -0.064942 0.207422 -0.036779 -0.093981 -0.102525 0.102843 0.128035 0.300610 -0.115947 -0.122830 -0.300293 -0.245013 -0.201173 0.164272 -0.386595 0.035692 0.230095 -0.166709 0.316080 0.017510 -0.325584 -0.152051 0.111204 0.227179 -0.024741 0.241365 0.113824 0.152225 -0.069153 -0.160984 -0.257943 -0.274767 -0.226926 0.090168 -0.060454 -0.426289 0.049906 0.030120 0.055595 0.174513 0.042433 0.139632 0.020964 0.040726 0.424526 0.261927 -0.062978 -0.023436 0.353258 -0.063644 -0.159119 -0.169325 0.204773 -0.015702 0.316399 -0.022385 0.105659 0.254552 -0.405796 0.025084 -0.150450 -0.074490 -0.023741 -0.161183 -0.119376 0.044333 0.077346 -0.125821 -0.107336 0.437527 -0.078445 -0.181164 0.279085 0.438517 0.328161 -0.096257 0.083085 0.310154 -0.068003 -0.127691 -0.072221 -0.114851 0.177030 0.036174 0.066066 -0.205130 0.119042 0.039918 -0.557018 0.537154 -0.128527 -0.004523 0.442514 -0.036979 -0.199405 -0.357376 0.337251 0.511210 0.431127 0.043277 0.312229 -0.030021 -0.223635 0.090412 0.260270 0.064870 -0.368017 -0.129886 0.129979 -0.062577 -0.147013 -0.144763 -0.195845 -0.039646 -0.093751 0.099290 -0.054709 0.033395 -0.071776 0.117174 -0.218511 0.154003 -0.121429 0.046679 -0.419260 0.081119 -0.043945 0.061932 -0.312693 0.173143 0.072727 -0.052217 0.175825 -0.028170 -0.000305 0.093817 -0.061230 0.160312 -0.164639 -0.150412 -0.083374 -0.222927 -0.141658 0.106015 0.028138 0.111260 0.164803 0.495671 0.033514 0.001044 0.209609 0.002790 0.129489 -0.249176 -0.099548 -0.249129 0.262502 0.128522 0.018887 0.175998 -0.018219 0.248579 0.145331 -0.028577 0.215645 0.347577 0.356262 0.197841 -0.277688 0.137962 0.013358 0.208206 0.184495 -0.022566 0.021108 0.214835 0.275591 -0.028667 -0.277135 -0.123544 -0.076885 -0.194081 0.566044 -0.115409 -0.162866 0.133228 0.254654 -0.107484 -0.341727 0.037443 0.048998 0.142277 -0.090869 0.079401 0.033917 0.298768 -0.179573 -0.007853 -0.018863 0.181360 -0.220556 -0.103143 0.015981 0.052764 0.018960 0.181465 -0.396399 -0.206734 -0.010095 0.224628 -0.019298 0.109454 -0.021588 -0.096720 0.028820 0.024442 -0.066843 -0.007464 -0.041031 -0.154996 -0.138424 -0.322689 -0.092035 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.322931 -0.710727 0.250519 -1.091478 -0.897350 0.600028 -0.554282 -0.794026 -0.141416 -0.045826 0.410886 -0.032765 0.165388 1.175412 0.044775 -0.774158 0.079684 -0.316661 0.237160 0.378372 -0.138265 0.642349 -0.500214 0.099531 0.034874 -0.239524 -0.200310 0.319246 0.140467 -0.206839 -0.604388 -0.619633 -0.799144 1.237586 0.672809 0.118856 0.174398 2.158235 -0.109888 1.229325 -0.738466 -0.816638 0.590050 -0.311056 -0.262809 -0.178426 -0.768639 0.412726 -0.277971 -0.248329 0.827963 -0.367505 0.334462 0.101394 0.278419 0.068594 -1.034202 0.139307 0.526316 -0.088031 -0.133747 -0.562537 -0.217966 0.154292 -1.062334 -0.513026 0.538611 0.576353 -0.105363 -0.411601 -0.279122 -1.134304 1.493416 0.829877 -0.490147 0.013815 0.523643 -1.078091 0.748719 -0.031430 -1.733726 -0.229218 -0.570146 -1.179373 1.413574 -0.206925 1.159922 -1.697238 1.251992 -2.086765 0.230588 -0.869503 0.552736 1.533412 -1.093560 0.302774 0.951164 1.821257 0.663052 -0.116652 1.091065 0.577019 -0.694989 0.712770 1.080036 0.304013 -0.353482 -0.258931 -0.679005 -0.929926 0.122030 -0.825691 -1.840239 0.557094 -0.022508 0.298561 -0.675785 0.684780 -0.321465 0.872202 -1.365323 0.009382 0.108543 -0.302077 0.357473 0.761337 -0.410960 0.109994 -0.643063 1.066456 -0.991949 0.530966 -0.428005 0.770635 -0.572858 0.334183 -1.172699 0.290212 0.635084 -0.952775 -1.258113 -1.157397 -0.362612 0.652970 -0.473888 1.924978 2.034094 -1.233848 -0.872474 1.448760 0.219542 0.083005 1.091409 0.278459 0.755090 -0.084284 -0.579024 -0.790768 -0.690370 -0.556029 -0.825781 0.411545 0.006576 0.789851 -0.289588 -0.288100 2.512280 -0.169272 -1.094551 -0.486238 0.172012 -0.728836 -0.928362 1.337643 -0.425402 0.608853 0.476724 1.515676 -0.091757 -0.294594 0.381741 -0.716605 -0.108250 -1.031469 -0.138075 -0.213855 0.605083 -0.750375 -0.687755 -0.086225 -0.404114 -0.700212 0.344487 1.032729 0.321846 0.745424 0.427992 1.003211 1.774633 0.464746 -0.240993 -0.775933 0.701778 0.725705 -0.763294 -0.259181 -0.261413 -0.346506 -0.141708 0.031986 0.140151 0.692888 -1.198227 -0.422644 -0.417130 0.466215 0.684196 0.905384 -2.032392 0.340332 0.213434 0.498246 0.841785 0.626025 0.949143 1.407447 1.057627 0.156333 -0.073975 0.500776 -0.359324 -0.187466 0.399915 0.846212 0.545103 1.219261 1.012076 0.675999 0.707602 0.988437 0.938481 1.028914 0.164487 1.962929 0.301329 -0.402138 -0.186131 0.262526 1.148863 1.796864 -0.485766 0.895866 0.516722 0.237900 -0.678867 -1.087974 0.601533 -0.291933 0.110670 -0.171526 0.243321 0.352076 -0.614918 1.347703 -0.228382 -1.655558 0.529935 0.375734 0.862669 0.988608 0.345315 0.476268 0.141202 -0.927445 1.574364 1.161075 0.606731 -0.801232 0.196033 0.162678 0.444581 0.279951 1.100962 -0.144017 1.040275 0.286098 0.905877 0.339095 0.219488 -0.724026 -0.347545 0.633300 -0.820401 -0.041165 0.388810 0.553465 -0.395850 0.248056 -0.949354 -1.144084 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.131780 -0.283361 0.366309 -0.763038 -0.796451 0.242359 0.100000 -0.582610 -0.093329 0.246085 0.321992 -0.129421 -0.027485 0.755640 -0.030227 -0.529594 0.031650 -0.017617 0.049538 0.164267 0.012250 0.525074 -0.265100 -0.058122 0.051528 -0.227266 0.000775 0.466233 -0.016630 0.149002 -0.207270 -0.480878 -0.204292 0.918055 0.369309 0.250342 -0.138740 1.442543 -0.322727 1.143929 -0.836761 -0.755139 0.693683 -0.211134 -0.054718 -0.847450 -0.616755 0.339769 0.027218 -0.491201 0.364674 -0.138375 0.397290 -0.163760 0.131054 0.177697 -0.671298 -0.060351 0.373214 -0.534280 -0.242774 -0.292494 -0.263812 0.294076 -1.008870 -0.430323 0.107720 0.277850 0.010136 -0.043154 -0.133330 -0.811430 1.307678 0.413452 -0.520194 0.090421 0.360426 -0.885110 0.610025 0.066577 -1.062098 -0.281513 -0.296190 -0.464603 0.731729 -0.122487 0.984449 -1.319670 0.551695 -1.423876 0.453715 -0.710261 0.386491 1.022530 -0.635572 0.419993 0.613616 1.084131 0.484376 0.001627 0.711892 0.633926 0.086944 0.452606 0.768139 0.458897 -0.405675 -0.621088 -0.662050 -0.737172 0.326360 -0.575306 -1.632167 0.285359 0.102266 0.194547 -0.311550 0.182006 0.001378 1.020887 -1.075653 0.309430 0.449554 -0.216510 0.107223 0.533133 -0.231703 0.102735 -0.355086 0.749134 -0.626140 0.507680 -0.115189 0.628584 -0.721747 -0.046760 -0.514185 0.224093 0.242917 -0.608482 -0.828609 -1.019271 -0.272618 0.821441 -0.328310 0.606565 1.496173 -0.809724 -0.808051 0.903108 0.440974 -0.278826 0.395786 0.285196 0.682487 -0.172276 -0.395826 -0.684931 -0.431018 -0.030228 0.790134 0.236222 -0.355834 0.744930 -0.402738 -1.165368 1.775533 -0.301792 -0.632233 -0.155860 0.011156 -0.563596 -0.463647 0.971479 -0.530526 0.721519 -0.339429 1.081187 -0.206127 -0.277681 0.106250 -0.765732 -0.181248 -0.901390 0.098044 0.178510 0.579681 -0.717813 -0.526127 -0.113072 -0.542456 -0.375070 0.433330 -0.408410 0.071480 0.414836 0.203200 0.891176 0.960004 0.241712 -0.352640 -0.475136 0.513728 0.342029 -0.277617 -0.636749 -0.301966 -0.330090 -0.164157 -0.277900 0.113085 0.523860 -0.587010 -0.150406 -0.105674 -0.189466 0.088629 0.354086 -1.336571 0.216425 0.213585 0.642172 0.260115 0.575196 0.906430 0.967276 0.606282 0.289594 0.004781 0.060506 -0.604211 0.219737 0.402417 0.109356 0.393357 1.039067 0.680455 0.429504 0.733950 0.658994 0.745472 0.790189 0.054414 1.316147 0.056472 -0.300637 0.066720 0.307940 0.829343 1.274900 0.207653 0.385026 0.338002 0.038336 -0.615250 -0.501234 0.257766 -0.130186 -0.060568 0.452619 0.454524 0.055062 -0.323044 1.053751 -0.088373 -1.313192 0.356478 0.257051 0.616147 0.766652 0.057814 0.460297 0.323042 -0.165275 1.026069 0.721405 0.474102 -0.822946 -0.331382 0.103493 0.198911 0.734166 0.733099 -0.858902 0.297507 0.199730 0.884599 -0.131282 0.754724 -0.642687 0.014676 0.473300 -0.361381 -0.125648 0.078046 0.258474 -0.215906 0.020441 -1.021074 -0.590600 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.281453 -0.508473 0.204160 -0.933333 -0.757291 0.448131 -0.361537 -0.605582 -0.137206 -0.106652 0.367115 -0.045292 0.039477 0.944638 0.068653 -0.681046 0.059090 -0.432552 0.109785 0.315580 -0.145198 0.529121 -0.400855 0.076704 0.079737 -0.142550 -0.225064 0.299995 0.179235 -0.346415 -0.507609 -0.474199 -0.616675 1.042023 0.498832 0.026519 0.178243 1.836439 -0.080224 0.877601 -0.582042 -0.656625 0.557712 -0.287581 -0.296082 -0.209624 -0.607164 0.415674 -0.246917 -0.210872 0.705480 -0.243277 0.201549 0.016453 0.210232 0.170904 -0.973617 0.224954 0.478843 -0.006511 -0.130379 -0.455928 -0.171545 0.053025 -0.745003 -0.466973 0.462515 0.368214 -0.145573 -0.350139 -0.239936 -0.936101 1.322762 0.682558 -0.335829 0.078825 0.398819 -0.882449 0.658792 -0.072885 -1.411396 -0.184706 -0.406907 -0.915440 1.227498 -0.231826 0.820086 -1.428117 0.941975 -1.723150 0.166401 -0.773836 0.451170 1.280326 -0.906057 0.293058 0.734462 1.320062 0.500483 -0.102310 0.962038 0.380785 -0.475533 0.607916 0.847566 0.213283 -0.307197 -0.198717 -0.588767 -0.811339 0.100310 -0.599827 -1.525879 0.518741 -0.038781 0.184115 -0.468189 0.539187 -0.235277 0.689163 -1.035510 0.008187 0.118860 -0.256495 0.308267 0.742287 -0.351466 0.044170 -0.575574 0.898713 -0.758366 0.524935 -0.347556 0.639595 -0.321537 0.118883 -0.969452 0.194449 0.521122 -0.794552 -1.046184 -0.924276 -0.233118 0.396795 -0.446132 1.566452 1.743763 -1.020640 -0.744907 1.262072 0.281109 0.182804 0.886344 0.200682 0.718341 -0.092739 -0.490532 -0.581803 -0.579288 -0.426910 -0.807282 0.334931 -0.005470 0.610002 -0.189159 -0.225315 2.054614 -0.099739 -0.880864 -0.160831 0.145314 -0.624153 -0.905342 1.119443 -0.040390 0.581224 0.543021 1.301569 -0.071234 -0.290730 0.375509 -0.366362 -0.048867 -0.889249 -0.198326 -0.133956 0.434922 -0.566964 -0.559232 -0.115230 -0.284950 -0.631980 0.295591 0.944004 0.316451 0.582856 0.376373 0.638187 1.498887 0.309634 -0.136658 -0.761111 0.585925 0.593523 -0.595012 -0.243403 -0.193727 -0.265332 -0.123178 0.190440 0.074954 0.580741 -0.899127 -0.377833 -0.241482 0.400587 0.543418 0.717361 -1.655949 0.240637 0.140356 0.368710 0.691244 0.571277 0.835430 1.146709 0.851225 0.149846 -0.057142 0.479645 -0.304992 -0.273127 0.183939 0.825966 0.506453 0.932089 0.868096 0.559707 0.634764 0.798602 0.665458 0.900158 0.195438 1.689813 0.237750 -0.395934 -0.142690 0.188088 0.982447 1.485285 -0.449461 0.663891 0.466973 0.278280 -0.543682 -0.969785 0.462405 -0.266908 0.086317 -0.081375 0.158257 0.249898 -0.462545 1.151334 -0.240138 -1.410806 0.471069 0.308882 0.742828 0.741882 0.314948 0.380028 0.177679 -0.844978 1.223816 0.960524 0.551879 -0.673269 0.180235 0.149319 0.440485 0.016779 0.927803 -0.192967 0.803374 0.239841 0.742165 0.317334 0.151230 -0.590337 -0.343903 0.536906 -0.608158 -0.020115 0.351584 0.476907 -0.425754 0.186408 -0.790355 -0.879572 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = 0.180675 -0.154197 0.342130 -0.612228 -0.689536 0.246356 -0.175061 -0.464950 -0.115738 0.101118 0.243749 -0.010557 -0.056669 0.673053 -0.158744 -0.451107 -0.118665 -0.289584 0.024614 -0.037736 -0.066662 0.398641 -0.248493 0.052898 0.046137 -0.210369 -0.080696 0.219577 -0.036352 -0.209232 -0.161378 -0.382229 -0.270320 0.701894 0.306962 0.110794 -0.027022 1.198694 -0.082662 0.542960 -0.682117 -0.689121 0.431737 -0.202008 0.002180 -0.517921 -0.447172 0.309218 -0.090868 -0.064789 0.381643 -0.105004 0.137588 -0.041380 0.153193 0.026285 -0.711856 0.271943 0.294801 -0.348339 -0.168002 -0.215840 -0.180782 0.071710 -0.353589 -0.331089 0.213925 0.425055 -0.084935 -0.087120 -0.024762 -0.584730 0.908657 0.314210 -0.206434 0.100850 0.325266 -0.474641 0.505913 -0.278499 -0.925718 -0.213892 -0.138555 -0.423204 0.626789 0.017441 0.579623 -0.999571 0.533163 -1.147749 0.250283 -0.460206 0.271161 0.705415 -0.496510 0.314415 0.593046 0.618646 0.492157 0.018545 0.607188 0.319311 -0.050482 0.522964 0.519047 0.212367 -0.200055 -0.207207 -0.516432 -0.645873 0.110571 -0.353199 -1.020347 0.312706 0.112663 0.090039 -0.349903 0.234335 0.020295 0.581847 -0.865222 0.075842 0.283056 -0.161672 0.106730 0.382737 -0.210427 0.063228 -0.350392 0.563647 -0.646485 0.406571 -0.104198 0.478539 -0.183346 -0.258312 -0.769741 0.173937 0.247916 -0.522077 -0.613643 -0.628550 -0.155812 0.421864 -0.333812 0.794628 1.249155 -0.750098 -0.676987 0.790586 0.405556 -0.083762 0.525186 0.242440 0.527711 -0.022461 -0.437605 -0.459348 -0.475759 -0.063672 -0.220477 0.265102 -0.086273 0.557989 -0.009544 -0.508946 1.220736 -0.259522 -0.612864 -0.044096 0.163184 -0.433192 -0.382137 0.576194 0.120098 0.521156 0.156816 0.871874 -0.181634 -0.306764 0.083503 -0.522631 -0.052963 -0.433626 0.031152 -0.026636 0.341626 -0.475709 -0.380626 -0.136136 -0.443204 -0.388620 0.229648 0.201963 0.243512 0.419420 0.215441 0.469492 0.998393 0.266985 -0.100008 -0.487770 0.406282 0.325463 -0.118215 -0.523571 -0.193684 -0.177609 -0.085878 0.074223 0.071057 0.440410 -0.346175 -0.081450 -0.152263 -0.020908 0.231996 0.405375 -0.669456 0.094368 0.005298 0.471971 0.258414 0.402025 0.688849 0.836574 0.585264 0.252728 -0.045659 0.099078 0.052006 -0.061617 0.287736 0.306806 0.356344 0.692858 0.614716 0.384024 0.594647 0.572254 0.426013 0.663611 -0.074897 1.177089 -0.239715 -0.163220 -0.161328 0.316296 0.662629 1.017864 -0.112372 0.358257 0.306570 0.136289 -0.302956 -0.538273 0.326697 -0.129466 0.039027 0.208436 0.473348 0.093776 -0.291882 0.767896 -0.110533 -0.926931 0.429690 0.206374 0.481663 0.377938 0.180387 0.138664 0.207614 -0.408178 0.642794 0.667986 0.424134 -0.676812 -0.165901 0.107251 0.386354 0.180505 0.689635 -0.515643 0.406944 0.273334 0.493185 -0.079336 0.262914 -0.549006 -0.373290 0.447530 -0.321918 -0.100109 0.416278 0.239790 -0.307198 0.143317 -0.420247 -0.568397 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = -0.013681 -0.409676 0.255072 -0.542999 -0.443214 0.177794 -0.008909 -0.332640 -0.060547 -0.138928 0.197775 -0.089991 -0.051317 0.720133 0.042808 -0.429585 0.061550 0.086816 0.059749 0.209427 0.000000 0.381834 -0.190384 0.026267 0.102319 -0.168273 -0.059640 0.369447 0.017558 0.011536 -0.143130 -0.335417 -0.263949 0.647989 0.231997 0.334520 -0.018019 1.120874 -0.231272 1.074092 -0.508779 -0.450684 0.456645 -0.153270 -0.126741 -0.451777 -0.617049 0.209032 -0.270513 -0.273798 0.355360 -0.082157 0.185483 -0.070725 0.230129 0.166324 -0.573255 -0.037261 0.252367 -0.262986 -0.074713 -0.229348 -0.338445 -0.003655 -0.688251 -0.272796 0.070999 0.204430 -0.056792 -0.070937 -0.049357 -0.515410 0.969997 0.346069 -0.305436 0.130325 0.372517 -0.521987 0.414051 0.016090 -0.799238 -0.217734 -0.253643 -0.429041 0.673331 -0.054969 0.639642 -0.911393 0.421522 -1.011069 0.299465 -0.598484 0.254451 0.798172 -0.546309 0.362396 0.489007 0.748967 0.231043 0.098623 0.508601 0.425014 -0.200733 0.370345 0.656175 0.181597 -0.278533 -0.409669 -0.481940 -0.485056 0.172861 -0.538385 -1.110816 0.154530 0.082150 0.258952 -0.278335 0.335766 -0.030677 0.479007 -0.680545 0.446916 0.273397 -0.167742 0.051166 0.401473 -0.173595 -0.043931 -0.353299 0.552180 -0.528235 0.388857 -0.185332 0.427603 -0.343438 0.008887 -0.373086 0.043570 0.134102 -0.393773 -0.615363 -0.676584 -0.221443 0.632493 -0.218272 0.626039 1.083994 -0.583563 -0.489855 0.707552 0.362500 0.068090 0.300484 0.252829 0.397835 -0.030899 -0.356391 -0.519586 -0.387234 -0.078411 0.108500 0.230342 -0.217467 0.514490 -0.211040 -0.825279 1.555199 -0.261567 -0.481325 -0.239876 0.023984 -0.438971 -0.404604 0.804123 -0.346529 0.515261 -0.163079 0.777062 -0.060862 -0.209972 0.102635 -0.536990 -0.076459 -0.702936 0.016117 -0.015904 0.303020 -0.545638 -0.425256 -0.133718 -0.318384 -0.273887 0.232716 -0.001196 0.042658 0.296827 0.222603 0.577905 0.735420 0.191572 -0.175811 -0.431652 0.357509 0.242001 -0.262953 -0.431660 0.001681 -0.104549 -0.110805 -0.176960 0.113306 0.267677 -0.536510 -0.129616 -0.174366 -0.046322 0.122860 0.318112 -1.008818 0.081024 0.244226 0.348448 0.412850 0.311690 0.728075 0.618132 0.423446 0.263938 -0.059469 0.164460 -0.400786 0.113026 0.222996 0.246383 0.238928 0.664844 0.526528 0.264498 0.442510 0.551855 0.570939 0.522570 0.254826 0.957941 0.311782 -0.315057 0.071626 0.209527 0.588478 0.852614 -0.039200 0.477385 0.326019 0.134265 -0.360403 -0.482862 0.197464 -0.117063 -0.163204 0.409568 0.109965 0.064096 -0.193916 0.708836 -0.108696 -0.903311 0.191762 0.210082 0.441100 0.429236 0.169128 0.276073 0.246259 -0.315902 0.748729 0.448131 0.321184 -0.523845 -0.129085 0.055779 0.062728 0.672179 0.589381 -0.397574 0.296671 0.095376 0.592363 -0.041782 0.311548 -0.316925 -0.090484 0.257710 -0.385231 -0.109523 0.068279 0.111425 -0.085221 -0.017440 -0.690486 -0.618611 +PE-benchmarks/vertex-cover-problem.cpp__main = 1.212195 -0.905930 1.330657 -3.001135 -2.692267 -0.122254 0.264505 -2.249775 -1.117066 2.220721 0.734428 -2.160649 -1.532963 4.135824 -0.930504 -2.908630 0.103405 0.027222 -0.180290 -0.237201 -1.419749 2.045312 -1.232819 -1.542831 1.861813 -0.871655 -0.041255 2.306469 1.513968 -0.222526 -0.549924 -1.933932 0.076771 5.446877 1.242411 0.094434 -0.380040 7.792058 -1.607837 4.406551 -4.195811 -4.131222 5.542699 -1.012058 -0.022661 -3.012266 -2.174270 2.844561 -3.254879 -0.920017 0.839321 -0.180203 0.544169 -2.841814 -0.043770 2.800738 -5.806712 3.050198 2.398820 -1.876381 -2.655936 -1.835887 -1.020841 -0.155322 -2.648715 -3.105108 0.066668 1.151793 -2.013328 0.164537 -2.333093 -3.045764 5.406999 1.422226 -1.724329 1.493417 -0.002767 -2.206885 2.399839 -2.108580 -4.404004 -2.072803 0.782157 -1.241155 3.615773 1.490396 3.308342 -7.267897 1.583620 -7.274847 2.244060 -4.065165 3.127173 5.804845 -4.013131 3.735211 1.769814 2.101537 1.831693 0.929782 4.054236 1.580798 0.479241 1.759874 2.554193 2.759597 -1.986787 -3.279661 -2.425234 -2.804245 0.063653 -1.069440 -6.423872 1.901983 -2.235891 2.175982 -0.725831 1.228727 -1.169113 2.913386 -5.901777 -0.570694 1.509736 -1.375180 2.761977 3.036166 -0.647207 0.086930 -2.122096 3.611926 -1.364058 1.462597 -1.158847 3.768820 -1.462257 -3.511407 -4.126431 0.162385 1.631072 -3.482320 -5.109632 -5.471049 -1.482814 1.664109 -2.442763 4.193983 7.931415 -3.098244 -3.615572 4.812503 -0.319333 2.004329 4.047960 1.458141 5.074259 -2.195819 -0.532715 -0.984569 -0.983197 0.944629 0.445927 -0.120203 -3.185009 2.926760 -0.451779 -1.743391 4.614087 -0.173406 -1.827048 -2.352830 0.502262 -2.270071 -2.975278 5.636095 -2.234791 4.169398 -1.571060 6.665329 -2.076564 -3.040462 1.732415 -3.757161 -0.709614 -3.032526 -0.054876 -0.375929 2.587377 -4.386951 -3.332487 -0.365593 -0.987202 -1.927454 3.400849 0.921823 -0.352285 0.778274 0.390342 4.091831 3.699190 -0.983080 0.377861 -4.339653 1.785823 2.451551 -0.675110 -5.428818 -0.474779 -0.846345 -1.541484 1.008943 0.458394 2.158849 -2.534019 -0.980442 0.794519 0.005465 1.426516 0.649885 -3.796726 1.563415 -0.189564 1.388079 2.461167 4.628577 4.667101 3.696582 1.297826 1.620452 -0.534614 -0.951480 -0.793855 1.126700 1.004923 1.946060 2.460953 3.838377 3.355166 1.755389 2.835123 1.994238 0.172418 4.568143 1.400255 6.741959 -1.991531 -1.260110 0.882309 0.065881 4.485268 5.852080 -2.133769 -0.912245 2.811576 0.052033 -1.622143 -3.128149 0.289511 -0.789730 -1.421861 2.203575 1.445039 -0.605883 -1.086433 6.581913 -1.247799 -7.174870 3.952358 1.674474 3.030833 1.443869 0.180573 0.889370 2.846085 -1.818415 2.733390 3.037557 3.143914 -4.125155 -0.452242 0.302963 2.911690 2.757676 2.290101 -5.188103 1.049306 2.225480 4.426462 1.107989 2.163589 -2.225421 -1.674302 0.755285 -1.349451 -0.162940 0.054198 1.664868 -1.252376 0.775421 -3.256010 -2.487244 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = 0.019425 -0.162792 0.215639 -0.407750 -0.376867 -0.018105 0.006313 -0.142266 -0.073490 -0.150432 0.061430 -0.130702 -0.241738 0.519571 -0.064738 -0.480342 -0.083437 -0.068067 -0.086664 0.023365 -0.070504 0.290211 -0.096554 -0.004179 0.210247 -0.126541 -0.099145 0.266087 0.192896 -0.260489 -0.016830 -0.209843 -0.052045 0.531016 0.011741 0.232056 0.006612 0.927960 0.108657 0.526862 -0.458803 -0.457567 0.471645 -0.163512 -0.087631 -0.445235 -0.346947 0.266370 -0.403248 -0.027990 0.180444 0.100552 -0.103995 -0.238522 0.168250 0.218111 -0.685326 0.359564 0.208363 -0.171795 -0.145027 -0.160685 -0.295664 -0.165026 -0.157657 -0.283490 -0.002402 0.174342 -0.292617 0.058265 0.018558 -0.262332 0.898490 0.208696 -0.152078 0.284700 0.249651 -0.174821 0.330057 -0.307386 -0.522103 -0.216744 0.097763 -0.066853 0.520604 0.056649 0.265926 -0.751108 0.205755 -0.720812 0.262765 -0.526056 0.228832 0.612778 -0.458964 0.462792 0.290781 0.127210 0.183822 0.167774 0.486760 0.173429 0.040887 0.328736 0.301342 0.057989 -0.144937 -0.288961 -0.321966 -0.431560 0.013003 -0.209779 -0.859710 0.158412 0.013548 0.329282 -0.067703 0.261859 0.040690 0.151325 -0.611801 0.123564 0.281183 -0.145244 0.130791 0.337593 -0.141292 -0.101125 -0.323717 0.445903 -0.304195 0.296572 -0.097616 0.340975 0.026230 -0.349725 -0.466422 -0.099315 0.042125 -0.284953 -0.478460 -0.407678 -0.146586 0.308050 -0.243109 0.469387 0.946005 -0.388310 -0.441285 0.621215 0.255681 0.306217 0.319597 0.209499 0.423613 -0.053709 -0.270949 -0.224776 -0.234319 0.119903 -0.251752 0.167507 -0.272660 0.334351 0.015476 -0.441887 0.776428 -0.212012 -0.271027 -0.092997 0.023905 -0.384958 -0.375485 0.583858 0.124846 0.623055 -0.038989 0.690886 -0.144796 -0.366445 0.127277 -0.313526 -0.009775 -0.396696 -0.003062 -0.042237 0.151311 -0.503058 -0.344255 -0.082828 -0.243684 -0.254483 0.207823 0.208474 0.057698 0.117357 0.190388 0.363639 0.551918 -0.003350 0.005249 -0.567724 0.240634 0.165712 -0.062598 -0.485782 0.094097 0.023977 -0.119238 0.163030 0.040710 0.124616 -0.138792 -0.097232 -0.046530 -0.071291 0.119442 0.100437 -0.376558 -0.029664 0.067203 0.230154 0.256721 0.324146 0.715421 0.372413 0.230900 0.255534 -0.018812 0.026117 0.025279 -0.007206 0.034911 0.292507 0.248147 0.404545 0.453627 0.150152 0.443683 0.427681 0.099041 0.489998 0.204141 0.887470 -0.093918 -0.280762 0.025407 0.129492 0.500285 0.701250 -0.271832 0.228393 0.364945 0.248054 -0.087164 -0.472369 0.034236 -0.111055 -0.194384 0.422336 0.054136 -0.103335 -0.013254 0.579305 -0.125682 -0.691609 0.329858 0.160001 0.326772 0.024149 0.149575 -0.006294 0.387242 -0.396824 0.252316 0.276579 0.313984 -0.474388 -0.124340 0.038153 0.268222 0.186759 0.464853 -0.279346 0.088047 0.227553 0.443814 0.022031 0.075778 -0.191952 -0.364813 0.179715 -0.177739 -0.144173 0.156061 0.029631 -0.164872 -0.016699 -0.302291 -0.510386 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.131194 -0.067785 0.354416 -0.604139 -0.620241 -0.016141 -0.008589 -0.246454 -0.133351 -0.000475 0.107638 -0.116714 -0.255484 0.634944 -0.172511 -0.595142 -0.196104 -0.388487 -0.159718 -0.150777 -0.132579 0.416564 -0.157920 -0.000273 0.285112 -0.213822 -0.144633 0.324166 0.161938 -0.484661 0.042555 -0.301577 -0.085162 0.745705 0.030665 0.111949 0.001783 1.302257 0.122845 0.310952 -0.643189 -0.745021 0.685807 -0.262713 -0.105262 -0.573759 -0.365681 0.408084 -0.321000 0.062712 0.216608 0.145475 -0.134618 -0.346593 0.126489 0.215592 -0.973807 0.548381 0.313174 -0.318062 -0.347040 -0.211004 -0.257939 -0.180694 -0.106092 -0.420453 0.128465 0.278389 -0.353796 0.052995 0.058059 -0.385033 1.081237 0.258907 -0.056520 0.394049 0.282479 -0.268638 0.518006 -0.428787 -0.747497 -0.307847 0.181081 -0.247373 0.670759 0.028436 0.347082 -1.053038 0.363935 -1.015129 0.274662 -0.619539 0.304736 0.776159 -0.571483 0.641378 0.419829 0.219089 0.317733 0.090560 0.726350 0.159191 0.185386 0.579919 0.349481 0.128890 -0.189541 -0.283160 -0.508380 -0.655242 0.044851 -0.240731 -1.064219 0.343691 0.031621 0.132156 -0.110167 0.238266 0.052112 0.436450 -0.868459 0.025408 0.413937 -0.196567 0.099287 0.434175 -0.198784 -0.130129 -0.426736 0.589684 -0.464955 0.446201 -0.066746 0.498900 0.096771 -0.518443 -0.740103 -0.085045 0.083808 -0.478690 -0.630645 -0.505063 -0.159877 0.267242 -0.395491 0.768044 1.370150 -0.610403 -0.728639 0.884205 0.424635 0.287005 0.494121 0.275192 0.626675 -0.056017 -0.453596 -0.312144 -0.360781 0.229347 -0.476761 0.240459 -0.251253 0.490877 0.116051 -0.328539 0.999909 -0.283556 -0.409791 0.086293 0.166157 -0.527602 -0.553127 0.665891 0.512153 0.877858 0.167669 0.982731 -0.230914 -0.505294 0.165750 -0.377890 -0.010004 -0.468488 0.010417 -0.084250 0.215538 -0.513846 -0.447061 -0.169844 -0.396945 -0.401409 0.287724 0.363147 0.256602 0.207539 0.237118 0.328596 0.884698 0.011390 0.021136 -0.807552 0.350150 0.324074 0.037892 -0.658615 -0.013964 0.024325 -0.157268 0.321844 0.034897 0.322618 -0.122162 -0.078676 -0.009315 -0.010898 0.128622 0.155148 -0.535154 0.005546 -0.069922 0.381537 0.238067 0.497719 0.967856 0.592283 0.361522 0.339733 -0.032469 0.015039 0.166283 -0.126763 0.037485 0.469109 0.415287 0.630641 0.676986 0.321548 0.692304 0.592424 0.060367 0.742010 0.062923 1.335940 -0.413534 -0.320010 -0.097674 0.283743 0.720418 1.013314 -0.235720 0.169847 0.489177 0.353631 -0.159664 -0.719066 0.110484 -0.151805 -0.018807 0.390947 0.277776 -0.173844 -0.040803 0.824673 -0.159828 -0.982470 0.561919 0.224091 0.489781 0.003489 0.203333 -0.041204 0.530513 -0.555804 0.307679 0.495561 0.451702 -0.743183 -0.116367 0.112610 0.585205 -0.093380 0.697171 -0.548332 0.248193 0.330150 0.499702 -0.021942 0.175529 -0.382227 -0.588097 0.369142 -0.177648 -0.178443 0.477184 0.121927 -0.437539 0.132098 -0.348925 -0.589963 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = 0.115296 0.078402 0.275870 -0.397566 -0.404344 -0.049798 0.225821 -0.123241 -0.100954 0.040440 0.118789 -0.062279 -0.189308 0.420086 -0.090199 -0.292129 -0.108351 -0.471674 -0.196784 -0.069171 -0.066325 0.289948 -0.077690 0.001650 0.192654 -0.060811 -0.116741 0.238579 -0.062783 -0.423728 0.036819 -0.166491 0.014797 0.441825 -0.028256 0.020223 -0.039380 0.787046 -0.107416 0.202739 -0.431086 -0.464675 0.461087 -0.182400 -0.075697 -0.558418 -0.248018 0.316125 0.047443 -0.100335 0.138868 0.143874 -0.126761 -0.259335 0.057992 0.214065 -0.646669 0.298397 0.229420 -0.214092 -0.240157 -0.087641 -0.122837 -0.141929 -0.054744 -0.285312 0.078552 0.036097 -0.189435 0.056792 0.046626 -0.270399 0.648587 0.131397 0.036360 0.271964 0.152950 -0.230905 0.399010 -0.303216 -0.411018 -0.178041 0.099182 -0.121414 0.389048 -0.045810 0.128738 -0.646500 0.149010 -0.586336 0.160185 -0.422095 0.126479 0.434561 -0.216748 0.410930 0.226558 0.047810 0.175333 0.063776 0.449967 0.106603 0.283297 0.376219 0.233999 0.111297 -0.197819 -0.214287 -0.413853 -0.454431 0.131449 -0.099832 -0.605062 0.246290 0.102579 -0.108584 0.007310 0.062450 0.120339 0.366834 -0.478868 0.142431 0.354986 -0.108952 -0.036171 0.351640 -0.124260 -0.122294 -0.311698 0.341885 -0.250406 0.423844 0.022168 0.295071 0.056610 -0.446188 -0.309781 -0.063713 -0.004705 -0.291253 -0.336877 -0.373980 -0.002374 0.146561 -0.299088 0.345289 0.860177 -0.386926 -0.484269 0.548429 0.540945 0.101607 0.146810 0.141295 0.460018 -0.042342 -0.324967 -0.151608 -0.257679 0.193541 -0.127569 0.156704 -0.163204 0.297739 0.065487 -0.504396 0.758909 -0.175065 -0.230706 0.381917 0.112278 -0.330755 -0.396720 0.378230 0.552187 0.596756 0.135076 0.590067 -0.119012 -0.250214 0.100932 -0.123078 0.030978 -0.402573 -0.034018 0.027777 0.115944 -0.237171 -0.234393 -0.170167 -0.297434 -0.273813 0.190295 -0.063016 0.219356 0.108477 0.154826 0.014452 0.524468 -0.036086 0.038052 -0.530391 0.230168 0.146549 0.124162 -0.503103 -0.026762 -0.010187 -0.090240 0.224481 -0.018111 0.219974 0.008566 -0.030492 0.139631 -0.096386 -0.075959 0.043673 -0.283877 -0.069546 -0.075693 0.306982 0.067901 0.339536 0.619207 0.370077 0.204668 0.242634 -0.035792 0.052152 -0.066913 -0.121011 -0.088737 0.277401 0.295766 0.335358 0.421220 0.206241 0.499380 0.323303 0.018989 0.487432 0.059391 0.802468 -0.233430 -0.239351 -0.027380 0.204964 0.440747 0.558057 -0.008834 0.014629 0.291203 0.204323 -0.179548 -0.333296 0.047618 -0.102244 -0.025498 0.363819 0.235250 -0.134113 0.024634 0.517482 -0.134402 -0.643393 0.289517 0.122232 0.336045 0.023674 0.140823 0.073850 0.363810 -0.263540 0.145437 0.306559 0.320567 -0.493751 -0.171167 0.088869 0.356209 -0.089158 0.450535 -0.625225 0.103176 0.157652 0.294550 -0.142021 0.219319 -0.280639 -0.286384 0.270090 0.000737 -0.105525 0.339644 0.115503 -0.326828 0.022682 -0.345408 -0.193880 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = 0.068896 0.061683 0.312564 -0.449377 -0.442404 -0.070979 0.289884 -0.120221 -0.107767 -0.028149 0.154898 -0.086159 -0.244830 0.444816 -0.059891 -0.342684 -0.093921 -0.468167 -0.220717 -0.076698 -0.069117 0.312651 -0.080865 -0.004132 0.231761 -0.078542 -0.135516 0.341176 -0.000912 -0.444313 0.062175 -0.175402 0.018958 0.501416 -0.039705 0.029101 -0.026371 0.895231 -0.165814 0.237000 -0.439887 -0.470704 0.562785 -0.201577 -0.150717 -0.633383 -0.328285 0.345055 -0.050952 -0.112659 0.170128 0.164442 -0.091749 -0.301215 0.068072 0.297586 -0.730259 0.302321 0.261325 -0.250743 -0.259430 -0.095387 -0.181581 -0.172496 -0.080953 -0.317573 0.078661 -0.016637 -0.186807 0.045286 0.052331 -0.294703 0.778289 0.137671 0.047248 0.321956 0.180594 -0.280985 0.439341 -0.239213 -0.453733 -0.211950 0.104463 -0.145541 0.464930 -0.101003 0.134482 -0.721666 0.083269 -0.654492 0.185766 -0.499620 0.143923 0.497173 -0.290605 0.484293 0.239930 0.008354 0.130999 0.054307 0.503827 0.099525 0.323149 0.419074 0.283641 0.114617 -0.230843 -0.270624 -0.485753 -0.492077 0.153817 -0.148792 -0.721062 0.265932 0.089215 -0.143819 0.024427 0.052288 0.127463 0.441172 -0.416896 0.271901 0.406309 -0.129628 -0.062307 0.431463 -0.129672 -0.161065 -0.336765 0.389636 -0.275606 0.501512 -0.000372 0.337448 0.105720 -0.520601 -0.308053 -0.089995 -0.015929 -0.310939 -0.385477 -0.388427 -0.006122 0.145252 -0.317804 0.319210 0.964208 -0.422852 -0.542211 0.619128 0.622804 0.164600 0.134586 0.168136 0.518531 -0.047487 -0.366725 -0.217236 -0.302005 0.227788 -0.083836 0.167251 -0.195917 0.340839 0.063838 -0.595065 0.916864 -0.201116 -0.247944 0.465921 0.119368 -0.379137 -0.491081 0.469947 0.652756 0.682135 0.144003 0.667922 -0.117351 -0.313703 0.118742 -0.052222 0.035826 -0.489957 -0.056278 0.067971 0.098201 -0.239578 -0.284227 -0.236258 -0.285094 -0.294809 0.216586 -0.047843 0.231727 0.109474 0.174763 -0.050180 0.576673 -0.051946 0.035386 -0.607051 0.258237 0.166765 0.132943 -0.574651 -0.004150 0.014546 -0.107497 0.236898 -0.009442 0.257140 -0.001389 -0.036789 0.162556 -0.107825 -0.103614 0.047996 -0.437318 -0.058195 -0.052717 0.299402 0.104032 0.375705 0.731967 0.388457 0.206482 0.300733 -0.041859 0.087008 -0.131592 -0.136633 -0.117269 0.334079 0.325588 0.387238 0.475740 0.225282 0.545900 0.370485 0.044559 0.533899 0.125751 0.893380 -0.168945 -0.303581 0.000344 0.227243 0.497430 0.613931 0.052376 0.010294 0.337961 0.270688 -0.197584 -0.454273 0.039128 -0.111620 -0.026564 0.475850 0.215805 -0.171761 0.037545 0.587902 -0.152654 -0.734108 0.311148 0.146399 0.377737 0.001397 0.160189 0.077265 0.423979 -0.305828 0.188537 0.320342 0.353508 -0.547774 -0.175693 0.101621 0.370027 -0.065395 0.502588 -0.738542 0.073736 0.138333 0.344774 -0.136978 0.284949 -0.286619 -0.301606 0.283097 -0.008603 -0.111634 0.339164 0.096343 -0.392877 0.028268 -0.425293 -0.222955 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.023463 0.026309 0.153087 -0.209251 -0.179679 -0.057895 0.271908 -0.022353 -0.048380 -0.067564 0.082924 -0.067409 -0.166911 0.298185 0.005084 -0.153326 -0.006611 -0.225816 -0.142970 0.080407 -0.006056 0.171835 -0.016407 -0.001245 0.118725 0.031384 -0.075856 0.178037 -0.071591 -0.232663 -0.010156 -0.073490 0.057989 0.223950 -0.052347 0.101400 -0.043434 0.409064 -0.156009 0.359633 -0.255374 -0.194049 0.256115 -0.090116 -0.053850 -0.456840 -0.216704 0.188499 0.038570 -0.196085 0.096374 0.107965 -0.100655 -0.159819 0.081605 0.213980 -0.366157 0.111659 0.133105 -0.083878 -0.062413 -0.028368 -0.132582 -0.121850 -0.089680 -0.155550 -0.035795 -0.081250 -0.115232 0.062442 0.013844 -0.154025 0.433826 0.070453 -0.028031 0.165777 0.106069 -0.150874 0.230662 -0.191863 -0.179582 -0.085606 0.021742 0.043634 0.222911 -0.031619 0.033079 -0.344124 -0.009747 -0.286094 0.134212 -0.316808 0.038939 0.252261 -0.073145 0.233269 0.093908 -0.051980 0.052061 0.123493 0.215748 0.112811 0.184711 0.144509 0.176300 0.055997 -0.162735 -0.208661 -0.249703 -0.245445 0.118340 -0.052736 -0.372449 0.082915 0.099573 0.012564 0.058370 0.052546 0.121791 0.131019 -0.217303 0.235180 0.240602 -0.054520 -0.032263 0.260564 -0.066449 -0.097214 -0.212421 0.188814 -0.089494 0.300267 0.012262 0.138630 -0.011019 -0.303430 -0.027801 -0.071209 -0.052982 -0.108552 -0.170135 -0.278764 0.031722 0.160876 -0.162853 0.040610 0.443632 -0.175978 -0.219276 0.287114 0.422554 0.085224 -0.044322 0.068334 0.273060 -0.038222 -0.159340 -0.057793 -0.141170 0.101333 0.111869 0.085876 -0.168784 0.143010 -0.023280 -0.626158 0.538228 -0.101210 -0.092781 0.277025 -0.008636 -0.186615 -0.227098 0.268447 0.241801 0.350520 -0.041281 0.296643 -0.034395 -0.101824 0.059914 -0.039773 0.036749 -0.332514 -0.049333 0.079159 0.051644 -0.188197 -0.119571 -0.099496 -0.161776 -0.137476 0.111890 -0.257480 0.053551 0.021676 0.104675 -0.000445 0.202826 -0.054871 0.029024 -0.295167 0.124585 -0.006215 0.058448 -0.347092 0.057176 -0.016830 -0.050148 0.080081 -0.021638 0.045894 0.015675 -0.037233 0.131602 -0.160231 -0.113542 -0.018054 -0.114622 -0.107334 0.029672 0.178110 0.055104 0.177098 0.363842 0.161306 0.076450 0.161285 -0.025713 0.062102 -0.210828 -0.020119 -0.105793 0.100119 0.144164 0.113091 0.204040 0.051800 0.272056 0.150544 0.041992 0.247729 0.168276 0.362878 0.044822 -0.193820 0.080860 0.070690 0.222206 0.241852 -0.001076 0.035469 0.161540 0.094565 -0.124258 -0.075273 -0.022692 -0.061429 -0.168145 0.384929 0.052291 -0.072626 0.056975 0.274511 -0.102697 -0.358827 0.064823 0.055368 0.182093 0.041657 0.087811 0.117646 0.224682 -0.090667 0.075840 0.103749 0.190427 -0.241738 -0.190527 0.025330 0.068860 0.141581 0.227732 -0.425700 -0.046089 0.052646 0.219310 -0.127698 0.148876 -0.113957 -0.063907 0.104153 0.029030 -0.068555 0.061232 0.039588 -0.091894 -0.111484 -0.304540 -0.071467 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = -0.162254 -0.047131 0.341305 -0.468126 -0.331287 -0.109734 0.559786 -0.006188 -0.086185 -0.461517 0.276028 -0.092126 -0.424023 0.274280 0.202258 -0.402168 0.067552 -0.360423 -0.282500 -0.004795 -0.055885 0.217840 -0.048287 -0.025906 0.301224 -0.070370 -0.170809 0.679543 0.205123 -0.428968 0.111595 -0.099601 0.014105 0.518426 -0.089478 0.067318 0.073297 0.948565 -0.355195 0.274474 -0.174790 -0.219477 0.747095 -0.215543 -0.503101 -0.646617 -0.500281 0.338134 -0.407949 -0.207995 0.276403 0.189818 0.082546 -0.354629 0.059744 0.608650 -0.769283 0.098444 0.284116 -0.231119 -0.223857 -0.075928 -0.345239 -0.281581 -0.119536 -0.308819 0.091535 -0.365779 -0.083051 -0.040958 0.041379 -0.293609 1.054733 0.126170 0.149073 0.405337 0.235476 -0.373413 0.433298 0.275094 -0.407200 -0.252739 0.028927 -0.207130 0.656303 -0.397056 0.001127 -0.684493 -0.292603 -0.619704 0.185157 -0.636223 0.123505 0.515461 -0.425219 0.579219 0.172991 -0.198675 -0.282830 -0.060441 0.515903 -0.048231 0.348920 0.407819 0.420319 -0.021820 -0.314435 -0.404707 -0.625819 -0.428080 0.237649 -0.303944 -0.857556 0.244333 -0.001139 -0.294696 0.137036 0.007285 0.124410 0.517259 0.160263 0.863329 0.455928 -0.156964 -0.164498 0.645509 -0.104710 -0.290571 -0.288760 0.418592 -0.233513 0.673481 -0.112997 0.336671 0.404711 -0.565209 -0.034672 -0.187390 -0.041262 -0.225641 -0.408318 -0.222139 0.026345 0.066291 -0.258755 0.037957 0.962538 -0.364138 -0.497633 0.635290 0.812873 0.436396 -0.076876 0.198884 0.535303 -0.056030 -0.390637 -0.379357 -0.358433 0.268365 0.050882 0.129899 -0.206412 0.371256 0.037346 -0.717949 1.373383 -0.224661 -0.188945 0.898387 0.065978 -0.418088 -0.793879 0.657497 1.038915 0.747228 0.278788 0.695484 -0.010663 -0.386853 0.151220 0.508933 0.070391 -0.756514 -0.201777 0.225624 -0.092653 -0.065905 -0.362901 -0.469858 -0.056124 -0.239661 0.226306 0.091902 0.219986 0.042562 0.190414 -0.505092 0.539491 -0.119853 -0.013747 -0.701476 0.257443 0.131750 0.101184 -0.500764 0.110777 0.138557 -0.117240 0.251817 0.023213 0.305839 -0.030662 -0.062343 0.261753 -0.075848 -0.255440 0.051324 -1.005987 -0.053539 0.157658 0.052947 0.238213 0.355403 0.904342 0.260190 0.104338 0.408591 -0.045559 0.335779 -0.535439 -0.267233 -0.337892 0.599668 0.307860 0.321245 0.481092 0.196968 0.492485 0.389682 0.175737 0.478581 0.467727 0.852939 0.341343 -0.510770 0.163205 0.197335 0.507902 0.474489 0.291467 0.019198 0.386132 0.500134 -0.219834 -0.788776 -0.033088 -0.120752 0.000749 0.794745 -0.019841 -0.241853 0.086713 0.622522 -0.187881 -0.808809 0.173622 0.181153 0.398654 -0.048647 0.188640 0.134289 0.481271 -0.352011 0.292582 0.196722 0.346524 -0.512428 -0.027810 0.124908 0.219664 -0.086023 0.485860 -0.887545 -0.138105 -0.117521 0.384576 -0.026100 0.410213 -0.163381 -0.142537 0.200371 -0.040437 -0.044320 0.199623 0.005395 -0.514547 -0.024483 -0.706058 -0.149172 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.206817 0.002481 1.041623 -1.915865 -2.311805 0.026974 -0.208634 -1.117962 -0.378677 0.543298 0.880150 -0.751653 -0.700240 2.074612 -0.549333 -1.420753 -0.466347 -0.752938 -0.066634 -0.498126 -0.076048 1.261504 -0.514079 0.005097 0.400515 -0.512924 -0.526506 1.066257 0.962233 -0.756057 -0.106073 -0.902092 -0.145305 2.058757 0.393382 -0.253896 -0.155807 3.573035 -0.802917 0.948244 -2.143869 -1.879810 1.995754 -0.561584 -0.246904 -2.360258 -1.666814 1.128476 -0.968026 -0.011630 0.805609 0.186823 0.426116 -0.701132 0.226020 0.686560 -2.716836 1.478845 1.099840 -1.166405 -0.485145 -0.365697 -0.682633 0.124457 -0.696906 -1.118924 0.263497 0.620093 -0.431224 -0.247449 -0.036386 -1.333928 2.786511 0.570410 -0.486816 0.767193 0.748400 -1.479555 1.650410 -1.124394 -2.378842 -0.699271 0.055166 -0.763987 1.692025 -0.066903 1.285872 -2.948938 0.665211 -3.202274 0.860592 -1.733215 0.725338 2.156209 -1.843659 1.309235 1.351161 0.550148 1.674461 0.191647 1.927368 0.866912 0.761307 1.555866 1.131864 1.038984 -0.582754 -0.697161 -1.595226 -1.994337 0.161756 -0.782709 -3.307987 1.033658 0.117660 -0.242721 -0.409870 -0.030323 0.189538 2.146222 -1.759385 0.294722 1.123687 -0.504384 -0.005798 1.663900 -0.496596 -0.163555 -1.156489 1.693092 -1.471412 1.525401 0.095789 1.508577 -0.342412 -2.139112 -2.200145 0.313378 0.283555 -1.559008 -1.690791 -1.854724 -0.177432 0.343726 -1.010922 1.464433 3.804776 -1.949173 -2.282342 2.495179 1.427419 -0.019591 1.576697 0.607322 2.232861 -0.157140 -1.350808 -1.321560 -1.507755 0.296298 0.226214 0.680349 -0.611859 1.398102 0.071742 -2.078563 2.631636 -0.604973 -1.452058 0.163819 0.631558 -1.443889 -1.444674 1.803659 0.856684 2.009910 0.103443 2.679455 -0.471406 -1.553525 0.607601 -1.038818 -0.098739 -1.077367 -0.051702 0.454417 0.812050 -1.217527 -1.120716 -0.821872 -1.016531 -1.265711 0.901351 0.127792 0.748699 1.078706 0.606110 0.809257 2.620295 0.238636 0.161624 -1.875094 1.121073 1.092157 0.044092 -2.662686 -0.320173 -0.525115 -0.283036 0.516124 0.001145 1.439706 -0.581601 -0.347424 -0.041308 -0.388566 0.486442 0.632339 -1.880624 0.493236 -0.506458 1.498807 0.634863 1.511231 2.291796 2.170907 1.270063 1.197937 -0.185211 0.036305 0.444635 -0.039938 0.575705 0.457261 1.215837 2.185264 1.820829 1.154730 2.020397 1.578726 0.372382 2.132257 -0.214178 3.450844 -0.908530 -0.659209 -0.311409 0.858134 2.067538 3.247699 0.269260 0.093694 1.105461 0.548287 -0.675828 -2.105330 0.557996 -0.280469 -0.085227 1.372832 1.286836 -0.167992 -0.419286 2.223926 -0.322048 -2.860479 1.738823 0.600641 1.367314 0.343671 0.467579 -0.018486 1.123034 -1.301750 1.327113 1.859391 1.334437 -2.162901 -0.894448 0.374137 1.550324 0.643259 2.085279 -2.761147 0.730877 1.088680 1.430627 -0.309365 1.357180 -1.570970 -1.611788 1.287464 -0.380137 -0.473372 0.800550 0.282958 -1.589461 0.546866 -0.827874 -1.490345 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.695233 -0.561612 1.864987 -3.761043 -4.211835 -0.212505 -0.792840 -1.819684 -0.504609 1.683476 1.677181 -1.849010 -1.506549 4.347191 -0.636928 -2.513352 -0.480495 -1.582951 0.654194 -0.058361 0.210781 2.296972 -0.742612 0.008043 0.487970 -0.345791 -1.510538 1.546488 2.419226 -1.492723 -0.622474 -1.658840 -0.239392 3.427817 0.443480 -1.127323 -0.600686 6.573853 -1.622898 2.455738 -3.940850 -3.129477 3.545411 -1.182520 -0.131173 -4.358981 -2.875978 2.426651 -1.486114 -0.858630 1.529794 0.787722 0.999779 -1.533621 -0.183566 1.018567 -5.200182 2.797125 2.326397 -1.514030 0.075517 -0.305634 -1.387915 0.824148 -1.497565 -1.882758 0.281418 0.387130 -1.263212 -0.998093 -0.313752 -1.875014 4.882526 1.374326 -1.094651 1.453539 1.780877 -2.690330 3.418978 -3.028894 -4.659217 -1.110325 -0.937958 -1.569665 3.343274 -0.196935 2.438954 -5.093018 2.026713 -6.052066 1.832169 -3.648141 0.877283 4.438382 -3.243748 2.189997 2.688625 1.265654 4.015426 0.395872 3.610419 2.359980 1.222237 2.876618 2.073926 2.236674 -1.173224 -0.931833 -2.801680 -3.560594 0.003952 -1.403271 -5.762995 2.239540 0.667221 -0.019951 -0.119255 -0.099194 0.141697 3.661971 -3.356468 0.282471 1.891974 -0.878290 -0.312696 3.451871 -1.113263 -0.633396 -2.355855 3.339294 -2.673445 2.975504 1.309655 2.886559 -1.157642 -3.634777 -3.506710 0.867463 0.352963 -3.013211 -2.906073 -4.130509 0.230173 0.177380 -1.823177 3.069191 6.821259 -3.310640 -3.522719 4.549064 2.140626 -0.374619 3.080120 0.797471 4.232068 0.069038 -3.047508 -2.231581 -3.116659 0.209056 1.209147 1.600998 -0.849697 2.500052 -0.177624 -3.936240 3.805880 -0.529016 -2.675376 -0.156799 1.012425 -2.968179 -2.862485 2.952825 0.522037 3.008170 0.317101 4.969126 0.224667 -2.308745 1.795874 -1.892348 -0.030390 -1.871332 -0.299566 1.304980 1.157060 -2.484683 -1.836059 -1.689146 -1.740827 -2.471286 1.790137 -0.454590 1.531698 2.692068 1.152854 2.317558 4.428139 0.323821 0.449405 -3.463375 2.083122 1.550701 -0.611676 -4.792299 -0.678131 -1.333718 -0.153824 1.517454 -0.239881 2.842968 -1.609637 -1.302884 0.131224 -0.516280 0.847278 1.123731 -3.366404 0.609038 -0.364729 3.440359 1.695916 2.948907 3.217708 4.181595 2.278484 2.670226 -0.868760 0.874942 0.593815 -0.241858 0.625410 0.292371 2.192640 3.655440 3.222514 2.304401 3.915367 2.865158 -0.016750 3.914264 -0.946837 5.476954 -1.292515 -1.539032 -0.205958 1.391440 3.989457 5.850937 0.130383 0.046789 2.119852 0.323862 -1.413463 -3.019046 1.234714 -0.379413 -0.102054 2.313433 2.504877 0.539139 -0.716836 3.309185 -0.652934 -5.477804 3.240240 1.061760 2.700134 1.367697 1.202033 0.391512 1.413774 -2.463749 2.420701 3.658098 2.313326 -3.816356 -1.440525 0.942845 2.710427 1.473854 4.196946 -5.239571 0.892409 2.122625 2.126384 -0.547913 2.532651 -3.205369 -3.341567 2.608919 -0.616553 -0.865981 0.553564 0.213002 -2.783314 0.731020 -0.850084 -2.345186 +PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = -0.022324 -0.019359 0.199269 -0.514047 -0.144538 -0.160243 0.551312 -0.224311 -0.225327 0.012239 0.245617 -0.220785 -0.389852 0.392209 0.084101 -0.411769 0.135394 0.088491 -0.325964 -0.074457 -0.005241 0.172850 -0.043121 -0.383807 0.245563 -0.097203 0.081099 0.565891 0.092881 -0.047446 0.041085 -0.179749 0.234466 0.660818 -0.020191 0.256932 -0.313835 0.742327 -0.530940 0.578312 -0.594566 -0.499784 0.947925 -0.141241 -0.183829 -1.041124 -0.556676 0.323731 -0.131546 -0.506107 -0.102137 0.058006 0.106170 -0.632860 -0.109334 0.652836 -0.593356 -0.020572 0.347163 -0.482000 -0.489911 -0.099693 0.039945 -0.154249 -0.465246 -0.447536 -0.047749 -0.294701 -0.131254 0.141170 -0.317767 -0.527942 0.722913 0.121395 -0.008674 0.308229 -0.101363 -0.507923 0.357636 0.318017 -0.251116 -0.348764 0.146326 0.042968 0.306588 -0.029812 0.323858 -0.882466 -0.206005 -0.724758 0.295986 -0.566742 0.358935 0.512784 -0.370650 0.571784 0.122351 0.095973 -0.163367 0.019796 0.454319 0.186441 0.450442 0.073203 0.610585 0.238454 -0.399726 -0.718593 -0.472975 -0.458126 0.327044 -0.439537 -1.067555 0.220467 -0.308734 -0.432541 -0.008009 -0.119444 0.104065 0.550599 -0.464223 0.496527 0.518939 -0.181814 0.040896 0.537053 -0.009365 -0.169706 -0.231015 0.316043 -0.025435 0.432700 -0.047468 0.451230 -0.080248 -0.665990 0.113759 -0.065768 0.013224 -0.409549 -0.534677 -0.601502 -0.116316 0.358847 -0.265578 -0.140718 0.904315 -0.286978 -0.649327 0.415838 0.580803 0.144354 0.079285 0.233125 0.872686 -0.440077 0.025710 -0.118533 -0.076175 0.488059 0.383462 -0.172897 -0.574043 0.459354 -0.330740 -1.110488 1.065450 -0.307862 0.040642 0.438977 0.096605 -0.392591 -0.454140 0.690480 0.053790 0.916957 -0.343317 0.608558 -0.335012 -0.270857 0.119905 -0.364615 -0.268221 -0.672160 -0.042195 -0.016934 0.353305 -0.353849 -0.414034 -0.403890 -0.202714 -0.067708 0.641154 -0.698892 -0.041971 -0.100103 -0.000594 -0.129644 0.249386 -0.276769 0.005191 -0.509259 0.247091 0.406432 0.272035 -0.843774 -0.050797 -0.190289 -0.190515 -0.130491 0.037865 0.400513 -0.036106 -0.039449 0.348231 -0.217586 -0.302161 -0.259166 -0.611314 0.062526 -0.037861 0.175486 0.075686 0.755769 0.774433 0.314551 -0.100331 0.179025 0.114852 -0.181126 -0.802749 0.082672 -0.246841 0.268874 0.332797 0.295548 0.310022 0.246987 0.627116 0.219834 0.206249 0.596412 0.478844 0.707894 0.277308 -0.352233 0.338364 -0.066133 0.463284 0.614382 0.465814 -0.175394 0.350731 0.075634 -0.412662 -0.523449 -0.187436 -0.013434 -0.472739 0.915044 0.231435 -0.248223 -0.065863 0.894861 -0.074990 -0.992083 0.330663 0.164376 0.375991 0.246327 -0.180617 0.341517 0.559846 0.152892 0.176669 0.168913 0.421740 -0.671479 -0.170175 0.075000 0.300510 0.575844 0.091612 -1.089823 0.147310 0.034699 0.727849 -0.116749 0.593401 -0.265235 0.285214 -0.014823 0.119278 0.060909 -0.132215 0.157250 -0.234512 -0.354602 -0.978780 0.103582 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.165207 -0.113773 0.341951 -0.543827 -0.556886 0.203002 -0.099952 -0.354263 -0.078780 -0.056627 0.228702 0.006726 -0.147610 0.509197 -0.119502 -0.448131 -0.069909 -0.328692 -0.021928 -0.064553 -0.079481 0.282515 -0.201884 0.018968 0.078912 -0.189874 -0.068796 0.267280 0.054354 -0.271604 -0.165572 -0.288677 -0.217657 0.649530 0.230494 0.062623 0.040124 1.086504 -0.005376 0.351345 -0.537682 -0.568363 0.440145 -0.189987 -0.098539 -0.466398 -0.377382 0.290472 -0.231413 0.001832 0.365901 -0.079857 0.101011 -0.088789 0.113732 0.151379 -0.736534 0.302293 0.248416 -0.237418 -0.155754 -0.202417 -0.163934 -0.010287 -0.160737 -0.307558 0.245384 0.315090 -0.146518 -0.049976 -0.042825 -0.513095 0.921121 0.273883 -0.119148 0.138112 0.303189 -0.412192 0.442831 -0.203799 -0.780572 -0.205373 -0.066506 -0.326910 0.645997 -0.060150 0.382670 -0.885429 0.341073 -1.002707 0.215041 -0.470752 0.264350 0.610110 -0.494365 0.325708 0.482738 0.390646 0.299588 -0.011099 0.584444 0.196692 0.001977 0.427175 0.457461 0.094943 -0.162264 -0.182150 -0.460031 -0.553749 0.040186 -0.280193 -0.944428 0.276927 0.018724 0.062846 -0.254192 0.202207 0.011688 0.460495 -0.646108 0.117269 0.249657 -0.153530 0.127839 0.412018 -0.189309 0.030541 -0.290180 0.532014 -0.518820 0.366956 -0.141401 0.400263 0.025829 -0.360219 -0.704015 0.093709 0.245535 -0.439435 -0.591301 -0.462341 -0.133859 0.269882 -0.283553 0.676402 1.123843 -0.595519 -0.598636 0.706140 0.391885 0.087209 0.505685 0.224341 0.513470 -0.070426 -0.337188 -0.387956 -0.371898 -0.036599 -0.379872 0.190242 -0.060318 0.478619 0.064096 -0.330839 1.084037 -0.235694 -0.482495 0.153043 0.113364 -0.397630 -0.463343 0.559267 0.388446 0.526186 0.274727 0.830794 -0.191156 -0.370197 0.094045 -0.235004 0.006985 -0.388968 -0.023240 -0.010258 0.246241 -0.389242 -0.382947 -0.165026 -0.304437 -0.304134 0.222925 0.375427 0.228930 0.307360 0.185262 0.239311 0.891246 0.170704 -0.028143 -0.527237 0.337960 0.297381 -0.087804 -0.453371 -0.112255 -0.103509 -0.074035 0.172327 0.069357 0.387364 -0.257675 -0.118729 -0.079773 0.011035 0.193331 0.330924 -0.653479 0.058156 0.010425 0.285252 0.248437 0.377714 0.693923 0.668221 0.469180 0.194274 -0.015389 0.124329 0.046997 -0.159893 0.157335 0.425523 0.307854 0.550101 0.524391 0.298260 0.505129 0.518955 0.311594 0.582023 0.056204 1.055296 -0.186050 -0.183459 -0.133059 0.211152 0.603032 0.880788 -0.138007 0.291389 0.305154 0.263289 -0.196411 -0.636892 0.226477 -0.131799 0.045888 0.251658 0.350123 0.023238 -0.229549 0.717163 -0.094747 -0.836108 0.387158 0.187394 0.400448 0.261447 0.148018 0.063592 0.230249 -0.434311 0.517177 0.513680 0.402189 -0.584298 -0.088015 0.097684 0.378249 -0.050651 0.568457 -0.444807 0.289637 0.216249 0.446142 0.051568 0.194326 -0.441600 -0.362878 0.342079 -0.286115 -0.074596 0.395492 0.226604 -0.370480 0.115798 -0.377185 -0.474185 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.256085 0.075434 0.483880 -0.733460 -0.858983 -0.214838 0.581810 -0.166945 -0.132513 -0.298657 0.443631 -0.431186 -0.627140 0.836343 0.008190 -0.654679 -0.085316 -0.216665 -0.330675 -0.055064 -0.009195 0.519386 -0.088955 0.004145 0.354800 -0.095979 -0.264707 0.852588 0.502216 -0.431436 0.082724 -0.227414 0.166354 0.800493 -0.085103 0.128223 -0.010355 1.434201 -0.670868 0.738465 -0.733800 -0.492892 1.044527 -0.206093 -0.408007 -1.387579 -0.973272 0.537853 -0.689793 -0.263639 0.413851 0.287260 0.105713 -0.448160 0.285485 0.788461 -1.223983 0.506974 0.461318 -0.468977 -0.149144 -0.065903 -0.582866 -0.207033 -0.280527 -0.504558 -0.110234 -0.213064 -0.159130 -0.023636 0.068783 -0.513994 1.560971 0.094484 -0.161574 0.535699 0.346069 -0.612918 0.700253 -0.231491 -0.715107 -0.305589 0.165466 0.018826 0.760662 -0.228388 0.214370 -1.176882 -0.407390 -1.076144 0.474134 -0.972617 0.217021 0.851099 -0.727465 0.747738 0.313165 -0.431156 0.264314 0.245665 0.733001 0.225139 0.644082 0.529656 0.507282 0.313613 -0.416709 -0.632636 -0.862809 -0.822415 0.241722 -0.309701 -1.507786 0.296053 0.098211 -0.104185 0.130505 -0.092038 0.276007 0.794169 -0.114102 0.898869 0.705166 -0.214723 -0.125145 0.999300 -0.178622 -0.258398 -0.529201 0.671508 -0.397243 0.948563 -0.061496 0.555499 0.134014 -1.248186 -0.440263 -0.105736 -0.089541 -0.396936 -0.610392 -0.691929 0.045403 0.170645 -0.438095 -0.090701 1.546855 -0.663936 -0.897819 1.016873 1.126087 0.363885 0.105118 0.244424 1.027918 -0.134290 -0.512686 -0.564404 -0.618612 0.318220 0.641613 0.273611 -0.536308 0.509288 -0.016531 -1.767582 1.525114 -0.303100 -0.402134 0.651319 0.137401 -0.603483 -0.822016 1.006318 0.807559 1.081934 -0.142930 1.057834 -0.171738 -0.757208 0.254724 0.133234 0.048631 -0.863652 -0.206907 0.481027 0.131913 -0.439587 -0.460253 -0.554629 -0.294887 -0.479287 0.330014 -0.354246 0.161419 0.154994 0.326716 -0.173466 0.849914 -0.068605 0.105539 -0.986371 0.430216 0.208347 0.138807 -1.329279 0.158384 -0.051982 -0.182110 0.201537 -0.038723 0.372275 -0.010182 -0.125688 0.225374 -0.470242 -0.127370 0.052129 -0.918955 0.022273 -0.024611 0.469184 0.276768 0.584932 1.299623 0.619020 0.338839 0.672169 -0.059387 0.136743 -0.333392 0.008239 -0.098961 0.260082 0.503792 0.705426 0.726045 0.243580 0.850958 0.556672 0.141498 0.812153 0.457369 1.341007 0.188690 -0.563215 0.158741 0.282289 0.781445 1.097850 0.321449 -0.034055 0.549717 0.496885 -0.261318 -0.924422 -0.005048 -0.168609 -0.345894 1.323956 0.140264 -0.327253 0.084831 0.936787 -0.261618 -1.192841 0.453620 0.209934 0.565595 -0.091589 0.232470 0.066445 0.708924 -0.515066 0.430429 0.462312 0.586992 -0.834076 -0.575993 0.094870 0.343010 0.550828 0.779767 -1.575448 -0.167913 0.245905 0.748895 -0.217205 0.729420 -0.418101 -0.450837 0.369405 -0.020629 -0.219075 0.062485 -0.059256 -0.648381 -0.019175 -0.751522 -0.502204 +PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.065731 0.219869 0.663005 -1.001590 -1.265070 -0.087596 0.368078 -0.471965 -0.197576 0.254637 0.497066 -0.404513 -0.406001 1.179163 -0.299313 -0.672646 -0.264724 -0.652611 -0.309810 -0.255746 -0.047005 0.751737 -0.222756 0.024883 0.305261 -0.209273 -0.249212 0.704692 0.211872 -0.566978 0.018261 -0.426698 0.061309 1.077009 0.086945 -0.065531 -0.099100 1.863677 -0.730594 0.647262 -1.178225 -0.992143 1.127854 -0.286198 -0.167639 -1.577485 -0.994368 0.681243 -0.217799 -0.192799 0.463183 0.219630 0.089484 -0.445008 0.252844 0.546802 -1.476459 0.709512 0.577829 -0.676505 -0.364344 -0.161926 -0.379682 -0.029518 -0.402732 -0.661363 0.095570 0.182460 -0.184390 -0.013842 0.064739 -0.803178 1.543123 0.196555 -0.193308 0.495984 0.381260 -0.857237 0.966623 -0.633504 -1.110672 -0.355413 0.159419 -0.294673 0.836673 -0.106039 0.546596 -1.604913 0.112900 -1.559427 0.492685 -1.002174 0.320833 1.063958 -0.774204 0.786936 0.575150 0.089393 0.780804 0.205691 0.991841 0.445398 0.737552 0.799422 0.618864 0.582526 -0.460143 -0.561686 -1.041681 -1.153042 0.270850 -0.343493 -1.735108 0.526432 0.205535 -0.325981 -0.099309 -0.113043 0.260826 1.262565 -0.835637 0.455970 0.807648 -0.253046 -0.125306 1.000928 -0.281884 -0.131214 -0.679271 0.852347 -0.680939 1.027123 0.030989 0.750617 -0.205135 -1.321404 -0.938550 0.084178 0.043990 -0.729881 -0.827553 -1.061154 -0.006739 0.271783 -0.639556 0.494230 2.060795 -1.022416 -1.296443 1.311525 1.266878 -0.025090 0.480230 0.291845 1.279832 -0.156566 -0.695715 -0.664424 -0.772170 0.298645 0.487901 0.385112 -0.455416 0.730783 0.023432 -1.755200 1.741662 -0.368633 -0.683744 0.528596 0.347727 -0.736809 -0.804247 1.042849 0.788710 1.246021 -0.048417 1.400239 -0.339277 -0.803595 0.262256 -0.427326 0.015617 -0.847212 -0.081374 0.357862 0.452000 -0.560526 -0.541502 -0.507671 -0.670590 -0.678492 0.432340 -0.420569 0.400006 0.381297 0.367881 0.172210 1.340738 0.081951 0.120056 -1.110119 0.600963 0.470718 0.212209 -1.599176 -0.113887 -0.242151 -0.200989 0.200372 -0.045034 0.645256 -0.142605 -0.120877 0.162442 -0.437825 -0.006797 0.201793 -0.940203 0.127683 -0.319454 0.887417 0.186628 0.803325 1.433770 1.082969 0.662590 0.646417 -0.082587 -0.030067 -0.051276 0.021558 0.171385 0.198723 0.697951 1.135319 0.967489 0.499576 1.161607 0.759244 0.182603 1.143365 0.045139 1.869844 -0.408005 -0.420818 -0.109809 0.488183 1.050154 1.637763 0.338508 -0.053816 0.607718 0.387801 -0.450259 -0.953602 0.196370 -0.210738 -0.136032 1.028498 0.635963 -0.289234 -0.073988 1.245736 -0.246142 -1.545896 0.751529 0.264377 0.760712 0.125671 0.243249 0.110106 0.739704 -0.598440 0.637842 0.879163 0.756370 -1.172204 -0.724358 0.169688 0.735837 0.429501 1.075118 -1.908800 0.282260 0.512218 0.845233 -0.372405 0.901087 -0.818880 -0.680906 0.681959 -0.065062 -0.283523 0.500738 0.193899 -0.889444 0.204415 -0.754474 -0.649074 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = 0.049725 -0.130569 0.228608 -0.420137 -0.476547 0.112568 -0.108006 -0.261919 -0.080770 -0.130213 0.155713 -0.071943 -0.223368 0.485616 -0.088189 -0.459618 -0.094601 -0.076808 -0.021210 0.006306 -0.062148 0.258342 -0.146436 0.025266 0.089198 -0.132143 -0.086674 0.212783 0.174939 -0.201207 -0.115199 -0.243413 -0.120911 0.519793 0.151076 0.189335 0.008343 0.892117 0.080412 0.464346 -0.503795 -0.458915 0.364096 -0.146188 -0.040916 -0.459640 -0.351815 0.253474 -0.374242 -0.010764 0.282782 -0.014871 0.021994 -0.093219 0.169172 0.143818 -0.621257 0.355394 0.213025 -0.203929 -0.055576 -0.144901 -0.261232 -0.047946 -0.114217 -0.256218 0.053515 0.273909 -0.182495 -0.021776 -0.013147 -0.357175 0.876300 0.207744 -0.195837 0.154969 0.259742 -0.223486 0.334033 -0.296049 -0.625922 -0.175255 0.004377 -0.077037 0.500953 0.061327 0.304913 -0.736087 0.216964 -0.808822 0.254080 -0.422003 0.218343 0.536251 -0.441329 0.303938 0.388951 0.139113 0.298021 0.122181 0.452327 0.169407 -0.016410 0.331026 0.325335 0.066934 -0.115117 -0.204451 -0.331359 -0.466953 0.009017 -0.192343 -0.834396 0.175709 0.036871 0.307955 -0.175913 0.226721 0.057393 0.190293 -0.561087 0.099602 0.221976 -0.129170 0.173205 0.343606 -0.150829 0.013374 -0.272806 0.435573 -0.410467 0.294152 -0.109556 0.342748 0.039184 -0.382196 -0.600242 0.047616 0.153227 -0.315008 -0.462486 -0.399759 -0.113860 0.283940 -0.238628 0.443754 0.927378 -0.488817 -0.457807 0.597667 0.258932 0.162301 0.386061 0.195214 0.428625 -0.039732 -0.275194 -0.277388 -0.323743 -0.004928 -0.230085 0.180411 -0.179699 0.368419 0.034966 -0.453110 0.742739 -0.200234 -0.393772 -0.050284 0.042977 -0.335884 -0.315444 0.481477 0.154175 0.462226 0.065560 0.663353 -0.157146 -0.348585 0.088049 -0.270766 -0.017317 -0.284393 -0.017507 0.021819 0.177026 -0.466767 -0.302663 -0.093174 -0.254712 -0.276756 0.176392 0.248808 0.087888 0.240123 0.179799 0.331176 0.667088 0.126162 -0.019702 -0.452471 0.274552 0.165208 -0.093802 -0.462973 -0.017687 -0.073331 -0.078225 0.161951 0.044146 0.219596 -0.144019 -0.086691 -0.099315 -0.089481 0.210228 0.240166 -0.320885 0.005480 0.062412 0.257809 0.238340 0.301464 0.590951 0.527892 0.365993 0.240212 -0.014841 0.070913 0.120714 -0.050629 0.141398 0.264769 0.251564 0.394484 0.444366 0.190540 0.434791 0.414965 0.215398 0.483833 0.095276 0.863013 -0.128705 -0.183985 -0.049421 0.156300 0.489215 0.728889 -0.257940 0.281372 0.280981 0.187014 -0.093673 -0.456343 0.158213 -0.103329 -0.143542 0.361105 0.215158 0.025935 -0.154615 0.561766 -0.113123 -0.655791 0.341009 0.150297 0.322674 0.137343 0.146447 0.003559 0.232914 -0.378933 0.349298 0.396540 0.339112 -0.478890 -0.156322 0.044089 0.250063 0.161643 0.476703 -0.288201 0.116074 0.246377 0.419989 0.014270 0.079803 -0.314276 -0.367842 0.249252 -0.224363 -0.096824 0.184194 0.086848 -0.170322 0.013789 -0.235220 -0.490179 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.175036 0.046339 0.221347 -0.258369 -0.220189 -0.183198 0.465328 0.107259 -0.023767 -0.402474 0.178303 -0.204201 -0.433544 0.269318 0.131108 -0.332344 0.014243 -0.146200 -0.277919 0.051369 -0.003309 0.135933 0.035627 -0.006614 0.225025 0.035972 -0.135418 0.471611 0.268143 -0.334860 0.042840 0.010552 0.164797 0.300100 -0.193596 0.124433 0.055639 0.566654 -0.239986 0.340146 -0.155907 -0.093982 0.490993 -0.091471 -0.320828 -0.609306 -0.400322 0.270866 -0.420452 -0.200081 0.186606 0.246372 -0.092672 -0.295229 0.141793 0.542709 -0.610609 0.211911 0.167646 -0.070963 -0.054502 0.007459 -0.305247 -0.237307 0.008567 -0.214759 -0.071676 -0.307637 -0.172486 0.052071 0.051006 -0.170928 0.833481 0.020509 0.015776 0.347285 0.192368 -0.169387 0.302432 -0.015397 -0.151589 -0.122272 0.133281 0.132621 0.411268 -0.193639 -0.140684 -0.428528 -0.377747 -0.303221 0.221954 -0.537140 0.049751 0.332799 -0.282192 0.405578 0.012992 -0.438165 -0.149271 0.134785 0.317543 -0.015806 0.366287 0.153576 0.210386 -0.026700 -0.227137 -0.348489 -0.401612 -0.332043 0.121126 -0.099821 -0.631227 0.081731 0.028500 -0.004480 0.238204 -0.011471 0.174697 0.143885 0.139081 0.593037 0.353570 -0.086890 -0.059402 0.537586 -0.088968 -0.204321 -0.229378 0.293673 -0.022956 0.456238 -0.030344 0.153681 0.293946 -0.600200 0.004955 -0.171141 -0.094239 -0.050898 -0.228179 -0.189795 0.073513 0.041623 -0.169284 -0.180511 0.618978 -0.126947 -0.286610 0.404359 0.613177 0.408970 -0.106177 0.091657 0.475754 -0.105341 -0.170465 -0.154112 -0.186725 0.216834 0.169857 0.096192 -0.274785 0.154473 0.036590 -0.816659 0.740221 -0.151330 -0.026190 0.582461 -0.015271 -0.269717 -0.505326 0.498849 0.666414 0.571916 0.037826 0.438890 -0.041331 -0.347679 0.149512 0.378745 0.087165 -0.506802 -0.196655 0.233221 -0.061404 -0.156631 -0.191910 -0.304978 -0.033645 -0.149402 0.127673 -0.093265 0.053129 -0.082350 0.167636 -0.324126 0.246712 -0.149018 0.080199 -0.574863 0.122001 -0.016609 0.072169 -0.491382 0.224882 0.064600 -0.070713 0.201368 -0.049995 0.036442 0.093043 -0.103075 0.207075 -0.233820 -0.183809 -0.101598 -0.416673 -0.127613 0.092977 0.063577 0.155945 0.234363 0.682988 0.079298 0.032994 0.295008 0.004303 0.164785 -0.336488 -0.104739 -0.300759 0.305465 0.190359 0.102646 0.245434 -0.009527 0.341404 0.196892 -0.040001 0.302865 0.454985 0.506734 0.297964 -0.365037 0.170475 0.020387 0.293429 0.322495 0.061581 -0.017417 0.287456 0.381389 -0.057270 -0.443299 -0.158301 -0.107395 -0.240438 0.774420 -0.159517 -0.238294 0.172976 0.359139 -0.139942 -0.487360 0.068317 0.061486 0.198675 -0.122706 0.097594 0.036579 0.398053 -0.264948 0.047856 0.010396 0.246808 -0.300018 -0.175235 0.023582 0.082872 0.076289 0.258804 -0.650119 -0.252141 0.002833 0.319944 -0.020513 0.236319 -0.056929 -0.139373 0.059372 0.033443 -0.096112 -0.043037 -0.057967 -0.283147 -0.135450 -0.441064 -0.146167 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.510078 -0.851957 0.776398 -1.094249 -1.045480 0.092895 -0.088306 -0.271647 -0.165762 0.895845 0.016944 -0.373336 -0.512281 1.340393 -0.112812 -1.111265 0.169402 -0.301071 0.279599 -0.015000 0.042990 0.796422 0.075343 -0.116603 0.257009 -0.420782 -0.164813 0.724336 0.706421 -0.026832 0.076050 -0.608431 -0.311485 1.089126 0.206323 -0.054527 -0.307371 2.256479 -0.109074 1.741007 -1.067827 -1.187032 1.224908 -0.318624 0.153712 -0.827386 -0.696410 0.908606 -0.565036 -0.717402 0.499291 0.273806 0.545503 -0.607814 -0.263619 0.243706 -1.384831 0.423253 0.240098 -0.438651 -0.155413 -0.215077 -0.514402 0.595766 -0.988581 -0.757196 0.069389 0.186086 -0.879934 -0.273374 -0.161433 -0.247998 1.505412 0.565452 -0.518761 0.265828 0.839224 -0.462034 0.976634 -0.755848 -1.612148 -0.541025 -0.850010 -1.065167 1.283512 -0.110213 1.258638 -2.003629 1.366218 -2.015041 0.916019 -1.132387 0.434307 1.688595 -0.883801 1.075627 0.770074 1.345431 0.867724 -0.185521 1.226229 0.979828 0.170103 1.052562 0.933795 0.503236 -0.710170 -0.687794 -0.971861 -0.812999 0.145189 -1.064708 -1.874869 0.634385 0.442012 0.579920 0.130794 0.298716 -0.475535 0.820871 -1.985016 0.343015 0.472673 -0.327505 0.076555 0.537575 -0.525259 -0.046759 -0.468676 1.442627 -0.916589 0.768979 0.492595 1.035465 -0.631193 0.098518 -0.513476 0.498718 0.342704 -0.590522 -1.250704 -1.608207 -0.297456 0.615625 -0.663559 1.666989 2.123505 -0.656343 -0.798416 1.246294 -0.215100 0.101986 0.666535 0.249058 0.801330 -0.029928 -1.206259 -0.711099 -0.716447 0.347101 0.894061 0.555129 -0.343629 1.309161 -0.480404 -0.473566 1.224568 -0.412190 -0.892303 -1.133337 0.104044 -1.007615 -0.598643 1.194322 -1.212589 0.762297 -0.126077 1.792394 0.318853 -0.544391 0.446755 -1.556308 -0.156185 -1.140302 0.219772 -0.005020 0.307405 -1.343471 -0.872320 -0.583109 -0.563082 -0.598989 0.584097 -0.492598 0.351189 0.824057 0.638090 2.033610 1.088531 0.326290 -0.348364 -1.119207 0.581312 0.439659 -0.338071 -0.899355 -0.278842 -0.067469 -0.124594 0.388537 0.101644 0.567736 -0.997000 -0.455313 -0.238603 0.023727 0.073147 0.612287 -1.862562 0.009995 0.863479 1.070531 0.714599 1.047323 1.171990 0.947345 0.673292 0.907856 -0.247548 0.459503 -0.535321 0.113455 0.433475 0.037164 0.563887 1.213844 0.993510 0.561265 1.378984 1.290169 0.035800 0.906422 -0.166016 1.598627 -0.195293 -0.704786 0.022573 0.576279 1.168921 1.680296 -0.050023 0.370773 0.972612 -0.012721 -0.350865 -0.609129 0.449574 -0.421128 0.576074 0.529584 0.624951 0.189458 -0.157789 0.994338 -0.242731 -2.087234 1.003548 0.485719 1.085657 1.099505 0.287597 0.588047 0.168890 -0.887405 0.924731 1.134491 0.343535 -1.028750 0.126477 0.181997 0.483428 0.911248 1.273577 -1.236830 0.036245 0.489560 1.030964 -0.045949 0.856222 -0.813438 -0.937024 0.712425 -0.657034 -0.150830 0.173161 -0.094311 -0.441270 0.184036 -0.654893 -0.801447 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.271850 0.147457 0.451392 -0.739895 -0.757240 -0.078250 0.380729 -0.380573 -0.179999 0.383229 0.351231 -0.298185 -0.346354 0.675161 -0.170344 -0.593481 -0.080485 -0.562324 -0.325137 -0.265887 -0.047931 0.459579 -0.089334 -0.241526 0.268366 -0.218338 -0.008901 0.564386 0.101089 -0.424971 -0.003357 -0.297589 0.151327 0.863680 0.099796 -0.076305 -0.198391 1.313650 -0.400558 0.428430 -0.954664 -0.816533 1.073344 -0.217061 -0.128718 -1.113232 -0.520268 0.556795 -0.064063 -0.250694 0.144846 0.059658 0.132451 -0.582424 -0.092617 0.602516 -1.046541 0.519235 0.372503 -0.577040 -0.510606 -0.157357 -0.040482 0.054709 -0.262586 -0.614970 0.151596 0.066344 -0.330750 0.066679 -0.184420 -0.623358 1.177474 0.189425 -0.057312 0.290055 -0.004216 -0.554112 0.658832 -0.338846 -0.712264 -0.411043 0.179570 -0.136514 0.486569 -0.048188 0.457471 -1.355952 0.079145 -1.229192 0.455976 -0.630661 0.431225 0.716687 -0.482884 0.704341 0.303879 0.065924 0.339340 0.045723 0.777816 0.213682 0.654822 0.444572 0.439081 0.405531 -0.419805 -0.557370 -0.614203 -0.750939 0.240955 -0.236612 -1.308940 0.441934 -0.121889 -0.206417 0.016704 -0.121191 0.160439 0.925159 -0.813070 0.147445 0.568563 -0.213873 0.144461 0.678316 -0.140880 -0.049904 -0.406828 0.641116 -0.328111 0.610762 -0.000929 0.636233 -0.134295 -0.953614 -0.547049 0.104158 0.182194 -0.617004 -0.764281 -0.781010 -0.093052 0.217022 -0.536571 0.516091 1.473404 -0.642239 -1.009609 0.822157 0.711710 0.000404 0.424159 0.211647 1.103578 -0.395448 -0.302802 -0.306808 -0.328398 0.449577 0.441678 0.037539 -0.469969 0.635122 -0.077381 -0.943931 1.130518 -0.231946 -0.329960 0.529512 0.204721 -0.478643 -0.633296 0.712353 0.560938 1.036741 -0.036497 1.195749 -0.479251 -0.579866 0.232979 -0.360377 -0.159441 -0.620864 0.008150 0.154856 0.453236 -0.469378 -0.486109 -0.354176 -0.504853 -0.375833 0.642917 -0.283261 0.242770 0.157106 0.096770 0.293860 0.825566 -0.126405 0.026248 -0.831567 0.417525 0.486312 0.281921 -1.121405 -0.243408 -0.196041 -0.191529 0.262593 -0.028649 0.573548 -0.094673 -0.088243 0.257718 -0.224909 -0.085757 0.010956 -0.732761 0.112173 -0.137624 0.489812 -0.002774 0.885412 0.976759 0.690187 0.276443 0.311821 -0.032645 -0.130435 -0.219644 -0.008441 0.034750 0.262160 0.527961 0.801853 0.582461 0.404558 1.000350 0.482953 0.044462 0.832390 0.047246 1.310845 -0.517677 -0.308249 -0.013454 0.204646 0.844934 1.187432 0.159005 -0.306764 0.491204 0.223484 -0.345664 -0.701234 0.039258 -0.177773 -0.054360 0.762945 0.627217 -0.160531 -0.163130 1.141816 -0.109466 -1.340572 0.776295 0.245200 0.599190 0.226378 -0.066490 0.224483 0.584283 -0.276135 0.241487 0.628958 0.622433 -0.923577 -0.364287 0.087493 0.620868 0.129410 0.577961 -1.419040 0.129721 0.458603 0.838022 -0.169613 0.759167 -0.645208 -0.324753 0.325608 0.037330 -0.045131 0.365244 0.161128 -0.708582 0.101369 -0.713840 -0.127265 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.770596 0.168878 0.458781 -1.025359 -1.029503 -0.518565 1.003152 -0.438270 -0.525859 1.173300 0.281967 -0.761969 -0.869506 0.578412 -0.060752 -1.296580 -0.009581 -0.727478 -0.771574 -0.597097 -0.145481 0.702415 0.158297 -0.810779 0.617317 -0.433668 0.299570 1.109140 0.532405 -0.447847 0.248147 -0.458570 0.658289 1.330330 0.126522 -0.309192 -0.646077 2.070577 -0.241672 0.689610 -1.493750 -1.310382 2.259339 -0.365491 -0.135672 -1.668026 -0.384325 1.087234 -0.363121 -0.500286 -0.288620 0.191310 0.262490 -1.531446 -0.632914 1.343830 -1.475313 1.141915 0.460186 -1.035622 -1.169844 -0.383449 0.026452 0.225718 -0.429727 -1.228115 0.010213 -0.284244 -1.022648 0.309669 -0.750226 -0.522105 1.820207 0.353114 -0.074697 0.347223 -0.644065 -0.362704 0.817038 -0.457536 -0.868226 -0.999879 0.401221 0.243832 0.402730 0.027692 0.715200 -2.510255 0.007931 -2.003317 0.895620 -0.868330 0.949130 1.221602 -0.569030 1.637490 -0.038885 -0.337613 0.038235 -0.131026 1.181680 0.096003 1.423151 0.542491 0.270705 0.707957 -0.836100 -1.299056 -0.452846 -0.772651 0.405923 -0.270399 -2.034682 0.764910 -0.557005 0.138502 0.486298 -0.235390 0.097682 1.116008 -1.577521 -0.242531 0.847997 -0.445022 0.810517 0.805342 -0.158270 -0.005857 -0.610173 1.073857 0.069423 0.823218 0.025685 1.230341 -0.296542 -1.444826 -0.502961 0.199834 0.485658 -0.822754 -1.494767 -1.143140 -0.372411 0.113034 -1.015461 0.864734 2.063932 -0.658412 -1.488556 1.123088 0.099515 0.343414 0.533645 0.242984 1.827689 -0.916141 -0.272906 0.002906 -0.117665 1.224963 1.481066 -0.364556 -1.348160 1.129008 -0.468276 -0.531610 0.563992 -0.199828 -0.205956 0.415622 0.117834 -0.591717 -0.920640 1.118799 0.141745 1.793792 -0.444122 2.100566 -0.980881 -0.909280 0.532700 -0.849522 -0.528437 -1.074845 0.304749 0.178365 0.779738 -1.052285 -0.958907 -0.417455 -0.685583 -0.525244 1.618760 -0.632055 0.014085 0.003397 0.150476 1.306810 0.737972 -0.692086 -0.154775 -1.380377 0.639220 0.806074 0.700890 -1.765395 -0.535132 0.015101 -0.530400 0.702339 -0.045831 0.710187 0.056586 -0.113358 0.671666 -0.280707 -0.316311 -0.202213 -1.127071 0.285806 0.216266 0.482702 -0.312087 1.884149 1.317899 0.533659 -0.065060 0.423335 -0.057335 -0.346750 -0.562423 0.260266 -0.045201 0.173384 0.807659 1.168195 0.745231 0.546304 1.868911 0.622562 -0.544332 1.084466 0.138692 1.862562 -1.279954 -0.698352 0.198788 0.145890 1.424666 1.762763 0.090902 -1.247285 0.995368 0.054515 -0.368176 -0.908557 -0.307644 -0.395847 0.001454 1.300837 1.037961 -0.365915 -0.132444 2.039983 -0.259306 -2.418029 1.745078 0.613560 1.106611 0.350969 -0.513816 0.565215 1.143338 -0.237049 -0.234361 0.956430 0.873795 -1.334990 -0.258910 -0.048544 0.855050 0.186570 0.581887 -2.193026 -0.480311 1.115986 1.837785 -0.154896 1.438489 -0.871847 -0.440598 0.177229 0.356848 0.202462 0.256951 -0.052605 -1.104149 0.163705 -1.058805 0.242670 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.045975 0.018356 0.174599 -0.205660 -0.162173 -0.047615 0.274877 -0.016243 -0.032883 -0.081534 0.072918 -0.052262 -0.164959 0.296187 -0.014698 -0.140765 0.017069 -0.235433 -0.123314 0.081079 -0.005288 0.159765 -0.016964 -0.002206 0.116492 0.023682 -0.060360 0.183974 -0.076185 -0.212147 -0.035661 -0.070637 0.047735 0.230088 -0.043332 0.085342 -0.026353 0.415691 -0.149235 0.370460 -0.248948 -0.180222 0.240025 -0.086830 -0.052109 -0.471389 -0.225723 0.172298 0.013283 -0.167219 0.112334 0.089962 -0.094704 -0.146328 0.089482 0.223318 -0.383907 0.112619 0.117769 -0.049605 -0.037369 -0.049234 -0.138081 -0.133256 -0.076275 -0.145837 -0.017240 -0.067798 -0.129788 0.086146 -0.000604 -0.148948 0.428266 0.078380 -0.038548 0.154584 0.128809 -0.177795 0.219065 -0.210139 -0.180379 -0.084460 0.009147 0.050013 0.251637 -0.045454 0.019306 -0.339356 -0.018341 -0.289981 0.125455 -0.344987 0.044155 0.259069 -0.085186 0.229707 0.091716 -0.041168 0.037649 0.124381 0.216864 0.139714 0.172387 0.119381 0.189416 0.047453 -0.148981 -0.203317 -0.233719 -0.215887 0.080839 -0.050369 -0.385789 0.062004 0.088082 0.023162 0.046105 0.062600 0.101352 0.120540 -0.217517 0.231611 0.226208 -0.057070 -0.024160 0.256556 -0.070336 -0.087877 -0.211752 0.204657 -0.082690 0.289861 -0.014991 0.123276 -0.023283 -0.325641 -0.048393 -0.086525 -0.042423 -0.095616 -0.199591 -0.277772 0.014474 0.149364 -0.142867 0.042445 0.426948 -0.146720 -0.205732 0.281469 0.410786 0.104545 -0.015299 0.073725 0.250916 -0.040459 -0.137243 -0.064839 -0.119124 0.065964 0.080123 0.072549 -0.154216 0.138229 -0.015446 -0.610085 0.535002 -0.105405 -0.085959 0.258882 -0.034439 -0.187224 -0.228360 0.297710 0.224894 0.339028 -0.046287 0.303968 -0.036816 -0.120661 0.049819 -0.039922 0.070541 -0.330144 -0.036082 0.077971 0.056048 -0.203616 -0.145063 -0.083985 -0.140010 -0.112675 0.109669 -0.239900 0.036448 0.012983 0.111640 0.009575 0.200060 -0.060009 0.054908 -0.287411 0.120702 -0.007030 0.047461 -0.358214 0.082814 -0.000869 -0.048810 0.062381 -0.003187 0.026633 -0.001258 -0.062181 0.128925 -0.160918 -0.106471 -0.005705 -0.131268 -0.103820 0.027941 0.147444 0.062352 0.159372 0.370292 0.137358 0.072266 0.131270 -0.020776 0.055198 -0.202971 -0.013158 -0.081589 0.088773 0.117740 0.117051 0.190580 0.024987 0.233308 0.167616 0.041723 0.224878 0.203258 0.339742 0.053302 -0.189242 0.077196 0.048207 0.218917 0.237241 0.002098 0.051206 0.158506 0.112968 -0.101041 -0.090996 -0.034589 -0.063220 -0.170462 0.376830 0.035014 -0.088004 0.063191 0.276894 -0.095215 -0.347718 0.046771 0.061056 0.163397 0.040115 0.086853 0.102653 0.221160 -0.098968 0.098075 0.073934 0.185209 -0.211993 -0.202478 0.019459 0.046778 0.140076 0.212470 -0.409227 -0.051984 0.052955 0.226808 -0.091112 0.146472 -0.093510 -0.064497 0.082988 0.009701 -0.075408 0.063535 0.055514 -0.099508 -0.111136 -0.292330 -0.087002 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.030293 0.027875 0.165216 -0.228581 -0.206349 -0.053719 0.274799 -0.040143 -0.051750 -0.039829 0.091969 -0.073280 -0.156097 0.331374 -0.006437 -0.152591 -0.009933 -0.235524 -0.140073 0.079087 -0.002654 0.192998 -0.023502 0.000890 0.117524 0.026522 -0.076608 0.182907 -0.087313 -0.227812 -0.012330 -0.087255 0.053779 0.241758 -0.042302 0.098830 -0.052220 0.439119 -0.186221 0.389351 -0.285774 -0.216270 0.267965 -0.092677 -0.044167 -0.487899 -0.239623 0.195690 0.062033 -0.207319 0.103405 0.104498 -0.091400 -0.159062 0.087130 0.209429 -0.380081 0.109496 0.143131 -0.102362 -0.067622 -0.032631 -0.133263 -0.110892 -0.120188 -0.164923 -0.033999 -0.069070 -0.107772 0.061289 0.013763 -0.173991 0.441231 0.075937 -0.039277 0.164292 0.112393 -0.179109 0.249357 -0.206388 -0.204873 -0.089534 0.012624 0.026019 0.229064 -0.028929 0.061588 -0.373518 0.009931 -0.318003 0.141958 -0.329456 0.043061 0.272672 -0.079432 0.238408 0.109949 -0.018963 0.081979 0.127788 0.228427 0.138478 0.192421 0.158707 0.193882 0.080938 -0.173788 -0.218785 -0.268816 -0.265249 0.128717 -0.065335 -0.400470 0.090890 0.111063 -0.000821 0.046138 0.048344 0.124009 0.170687 -0.248292 0.238187 0.253935 -0.057678 -0.041147 0.269957 -0.070967 -0.094245 -0.225961 0.201964 -0.108277 0.317046 0.015816 0.153089 -0.047068 -0.311042 -0.040726 -0.061638 -0.052912 -0.126203 -0.183890 -0.313901 0.029223 0.178842 -0.173330 0.055483 0.476400 -0.199899 -0.243915 0.307332 0.445694 0.058517 -0.036901 0.072348 0.289979 -0.038195 -0.173584 -0.075464 -0.157341 0.099140 0.146311 0.095005 -0.173991 0.159077 -0.033316 -0.675419 0.579441 -0.107362 -0.111345 0.266222 0.000144 -0.197555 -0.226810 0.284895 0.218393 0.362672 -0.059653 0.316384 -0.038583 -0.103508 0.060323 -0.077817 0.033654 -0.349880 -0.042378 0.083810 0.071812 -0.199839 -0.126874 -0.102893 -0.184284 -0.149702 0.119066 -0.294764 0.059548 0.035690 0.110017 0.023796 0.226736 -0.045101 0.026543 -0.299630 0.138076 0.004946 0.059915 -0.379355 0.047021 -0.029992 -0.053048 0.062877 -0.020798 0.060302 0.000000 -0.037251 0.129052 -0.171026 -0.114538 -0.009755 -0.134890 -0.099217 0.020059 0.208763 0.054632 0.188661 0.378598 0.189451 0.094463 0.169063 -0.029785 0.054694 -0.218620 -0.005126 -0.086067 0.081860 0.154531 0.146584 0.220474 0.065110 0.291239 0.164258 0.057912 0.266566 0.156171 0.390571 0.036097 -0.193731 0.076348 0.084996 0.239049 0.274554 0.018801 0.037236 0.165813 0.084314 -0.144006 -0.073566 -0.011610 -0.063041 -0.168598 0.391077 0.074952 -0.071202 0.049995 0.295351 -0.104042 -0.386489 0.073912 0.059737 0.197108 0.059325 0.090804 0.130206 0.229688 -0.088573 0.101044 0.126969 0.200871 -0.262185 -0.213531 0.028217 0.075563 0.176317 0.249033 -0.468399 -0.026639 0.062881 0.234990 -0.146623 0.177236 -0.135276 -0.065247 0.120952 0.025776 -0.075004 0.069777 0.047514 -0.100353 -0.104999 -0.323351 -0.082654 +PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.040750 0.175660 0.616015 -0.917693 -1.038086 -0.078951 0.506799 -0.459420 -0.173682 0.257700 0.517837 -0.388427 -0.287581 1.072986 -0.194404 -0.493706 -0.133384 -0.581995 -0.321977 -0.169074 0.006273 0.638073 -0.184468 -0.079430 0.242984 -0.163715 -0.148320 0.726738 0.011763 -0.416300 0.014702 -0.374027 0.099828 0.979833 0.107848 -0.033299 -0.162486 1.585911 -0.922501 0.770148 -1.060842 -0.830839 1.102856 -0.249942 -0.195719 -1.509524 -0.983898 0.606929 -0.004800 -0.387502 0.358448 0.157333 0.188007 -0.468581 0.136301 0.588855 -1.218800 0.395802 0.541722 -0.688288 -0.398859 -0.129074 -0.260923 0.036533 -0.576725 -0.609841 0.094951 0.019764 -0.066418 -0.008982 -0.020150 -0.813711 1.348912 0.156793 -0.140152 0.403307 0.268894 -0.903556 0.887911 -0.333941 -0.927117 -0.338914 0.056309 -0.350814 0.705852 -0.170517 0.564170 -1.441680 0.036376 -1.388901 0.458874 -0.910846 0.275965 0.913891 -0.624004 0.693873 0.465262 0.227897 0.577416 0.169512 0.827601 0.453442 0.714844 0.636472 0.718047 0.585375 -0.506943 -0.642745 -0.996880 -1.014495 0.381416 -0.413956 -1.579487 0.479506 0.149350 -0.479852 -0.101597 -0.171006 0.247369 1.322542 -0.660260 0.637302 0.779090 -0.223102 -0.200559 0.936268 -0.224157 -0.126871 -0.581243 0.709049 -0.544137 0.960602 0.051022 0.684372 -0.325672 -1.119502 -0.585897 0.114092 0.029669 -0.667427 -0.742961 -1.049218 0.000000 0.362410 -0.566712 0.336814 1.779670 -0.878750 -1.184999 1.080680 1.324822 -0.156590 0.286986 0.263208 1.217594 -0.228443 -0.563632 -0.625113 -0.665027 0.327114 0.761241 0.253316 -0.457400 0.713716 -0.119942 -1.891419 1.899082 -0.317351 -0.539684 0.672693 0.301948 -0.646666 -0.761158 0.980658 0.642229 1.137036 -0.155865 1.237576 -0.313044 -0.606417 0.218461 -0.366543 -0.041641 -0.905038 -0.076280 0.350758 0.484829 -0.422970 -0.500734 -0.513702 -0.623343 -0.531701 0.500891 -0.683080 0.335338 0.302728 0.243982 0.070351 1.095220 0.015451 0.056758 -0.923085 0.543517 0.470008 0.247229 -1.452633 -0.166962 -0.281828 -0.185677 0.000162 -0.021018 0.661262 -0.229702 -0.085764 0.249528 -0.424640 -0.168646 0.111349 -1.062950 0.136119 -0.241565 0.811514 0.140434 0.794412 1.261288 0.958813 0.516671 0.550762 -0.102707 -0.031740 -0.419025 0.061972 0.105666 0.138106 0.621347 1.053372 0.795445 0.477891 1.063427 0.622485 0.287600 1.015080 0.107258 1.545847 -0.175940 -0.388204 0.001770 0.414630 0.939520 1.401136 0.528512 -0.140968 0.505187 0.268592 -0.565336 -0.789907 0.126494 -0.159973 -0.140236 1.031458 0.606764 -0.241041 -0.094207 1.175810 -0.183851 -1.457318 0.577497 0.242750 0.696116 0.270383 0.119552 0.290820 0.655756 -0.324484 0.629221 0.754613 0.676269 -1.075859 -0.675575 0.170734 0.572287 0.579263 0.887616 -1.947524 0.277878 0.342351 0.824725 -0.422233 1.001100 -0.772971 -0.320154 0.566885 0.001724 -0.183343 0.362840 0.213292 -0.802322 0.106689 -0.952724 -0.397107 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.152928 0.046868 0.302032 -0.459789 -0.531559 0.103613 0.047570 -0.272478 -0.110691 0.043330 0.206849 -0.001657 -0.158810 0.425977 -0.113459 -0.335047 -0.124387 -0.460586 -0.113609 -0.093003 -0.073890 0.281372 -0.150866 0.031263 0.090493 -0.107593 -0.104936 0.207403 -0.045350 -0.367423 -0.065238 -0.232657 -0.103346 0.504757 0.133064 -0.000924 -0.018376 0.878182 -0.080368 0.173194 -0.493202 -0.523021 0.399840 -0.185470 -0.052909 -0.519702 -0.273928 0.313740 0.004764 -0.053789 0.263836 0.018197 0.008242 -0.126841 0.067676 0.129825 -0.640310 0.308275 0.248455 -0.258549 -0.186727 -0.111607 -0.107878 -0.030160 -0.058438 -0.283952 0.169611 0.186947 -0.107240 -0.034294 0.013208 -0.401778 0.715330 0.177590 -0.019939 0.163406 0.200145 -0.302178 0.428273 -0.266476 -0.602245 -0.166422 -0.000549 -0.216703 0.454913 -0.045149 0.237946 -0.724167 0.244974 -0.778378 0.164861 -0.362006 0.160572 0.449513 -0.287481 0.301763 0.374266 0.174086 0.294012 -0.001251 0.483962 0.116065 0.168607 0.428619 0.307580 0.114647 -0.172409 -0.143857 -0.447785 -0.526458 0.115497 -0.146510 -0.683779 0.289323 0.102766 -0.090063 -0.138471 0.084734 0.099651 0.436069 -0.522404 0.102521 0.296173 -0.114936 0.031474 0.367763 -0.154333 -0.012704 -0.281345 0.393987 -0.412056 0.415406 -0.020860 0.342159 0.067838 -0.420723 -0.523805 0.078093 0.137593 -0.369744 -0.399415 -0.392687 -0.018787 0.166138 -0.308340 0.465847 0.957847 -0.536832 -0.546074 0.602361 0.499360 0.002471 0.296609 0.159884 0.483949 -0.030012 -0.360374 -0.255491 -0.363559 0.065204 -0.219067 0.188967 -0.069127 0.383798 0.085253 -0.416785 0.841711 -0.188958 -0.396795 0.348497 0.146108 -0.329671 -0.388758 0.356990 0.553861 0.491555 0.270154 0.656594 -0.144955 -0.268873 0.079128 -0.138484 0.009660 -0.332478 -0.039418 0.042603 0.167576 -0.250019 -0.249649 -0.181010 -0.323933 -0.318235 0.179543 0.115192 0.266282 0.256250 0.162783 0.059188 0.731406 0.111355 -0.009688 -0.475226 0.291345 0.201069 0.049808 -0.461010 -0.139425 -0.094361 -0.063464 0.229743 0.004831 0.345632 -0.067922 -0.037080 0.040412 -0.057672 0.060236 0.221069 -0.365901 -0.008808 -0.060079 0.337401 0.107419 0.346958 0.573864 0.574756 0.379372 0.233898 -0.031162 0.108847 0.041708 -0.175700 0.041391 0.327300 0.320738 0.405297 0.470298 0.282626 0.521057 0.381923 0.172018 0.533668 -0.039998 0.903965 -0.273714 -0.167157 -0.118568 0.249389 0.495851 0.687845 -0.042124 0.125556 0.253031 0.183851 -0.200446 -0.422541 0.190552 -0.108834 0.055816 0.268760 0.388148 -0.007626 -0.138937 0.573761 -0.122024 -0.695239 0.345772 0.139885 0.371400 0.160944 0.150974 0.077036 0.237113 -0.316800 0.312407 0.469716 0.363938 -0.547769 -0.145844 0.104546 0.384668 -0.131523 0.518952 -0.578438 0.195927 0.190375 0.313813 -0.103734 0.209999 -0.420067 -0.332702 0.360256 -0.109711 -0.067336 0.407644 0.186045 -0.357097 0.087363 -0.310314 -0.270391 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.098947 -0.155528 0.214480 -0.379764 -0.289979 0.140481 0.070152 -0.198617 -0.056151 -0.093166 0.157025 0.033709 -0.046868 0.367454 0.044790 -0.260463 0.017800 -0.287153 -0.056051 0.086563 -0.039411 0.211292 -0.129774 0.026507 0.071578 -0.076745 -0.062748 0.218697 -0.111970 -0.216791 -0.109421 -0.190251 -0.184850 0.428548 0.129761 0.099021 0.021255 0.755516 -0.103324 0.418682 -0.266723 -0.341016 0.299875 -0.148534 -0.134732 -0.245993 -0.270815 0.205947 0.019092 -0.182564 0.259412 -0.023610 0.042692 -0.074705 0.074761 0.126151 -0.445036 0.003786 0.180477 -0.123842 -0.139655 -0.141240 -0.103589 -0.039503 -0.285199 -0.203501 0.181745 0.074857 -0.057953 -0.054637 -0.023966 -0.381302 0.619044 0.240613 -0.038804 0.109876 0.228548 -0.328005 0.337223 0.028446 -0.520354 -0.130311 -0.151845 -0.360797 0.493715 -0.129396 0.286101 -0.590568 0.312092 -0.651689 0.120269 -0.364574 0.138475 0.463163 -0.264445 0.238423 0.316250 0.465057 0.073344 -0.043906 0.396379 0.156017 -0.045983 0.309589 0.409748 0.038860 -0.205166 -0.187797 -0.382017 -0.374866 0.152356 -0.289048 -0.613941 0.198633 0.072416 -0.034862 -0.136047 0.191777 0.005974 0.345084 -0.432320 0.253310 0.200144 -0.103234 0.009118 0.303804 -0.142807 -0.043167 -0.232588 0.361406 -0.337129 0.316456 -0.084994 0.259095 -0.042535 -0.006739 -0.247508 0.033097 0.133373 -0.287365 -0.385886 -0.366265 -0.073406 0.298757 -0.199859 0.520627 0.762034 -0.400580 -0.349416 0.488977 0.373482 0.056210 0.186923 0.141884 0.308259 -0.029617 -0.278348 -0.270820 -0.257878 -0.021241 -0.208377 0.155857 -0.026580 0.338937 -0.040876 -0.317087 1.078458 -0.165625 -0.314933 0.223464 0.065159 -0.291368 -0.394597 0.437452 0.244086 0.372532 0.215201 0.543310 -0.038244 -0.097242 0.082608 -0.121896 -0.004917 -0.485731 -0.055242 -0.039799 0.149735 -0.213554 -0.248952 -0.141551 -0.220244 -0.210999 0.145057 0.148850 0.182065 0.193861 0.149964 0.118906 0.577216 0.105480 -0.099467 -0.371864 0.235958 0.170011 -0.107688 -0.159319 -0.062687 -0.058241 -0.049821 0.061238 0.039224 0.246312 -0.271651 -0.084232 -0.012573 0.055064 0.014156 0.216152 -0.669928 -0.011341 0.117296 0.204091 0.217870 0.241088 0.489273 0.429155 0.304198 0.135661 -0.028582 0.208423 -0.284216 -0.136203 -0.013723 0.385530 0.210493 0.347288 0.362836 0.222196 0.345853 0.350016 0.311248 0.388024 0.129932 0.700889 0.104702 -0.215928 -0.017772 0.158893 0.404350 0.518590 -0.039251 0.261780 0.216072 0.168104 -0.264607 -0.357593 0.140105 -0.107275 0.045827 0.169902 0.147404 0.032102 -0.122319 0.482230 -0.091316 -0.622558 0.128192 0.128817 0.318544 0.296912 0.125831 0.208930 0.159485 -0.250867 0.429404 0.329359 0.246924 -0.381235 0.029214 0.080674 0.171969 0.005241 0.408094 -0.302573 0.234899 0.013367 0.300023 -0.012094 0.160211 -0.270177 -0.080114 0.237230 -0.204259 -0.031102 0.248999 0.179732 -0.196364 0.016183 -0.486340 -0.264711 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.053214 0.144918 0.510823 -0.826687 -0.806627 -0.144065 0.551752 -0.300181 -0.138394 0.190936 0.403180 -0.338669 -0.304566 0.956890 -0.148977 -0.477819 -0.073650 -0.615554 -0.327133 -0.123990 -0.010943 0.613809 -0.129479 -0.093883 0.366422 -0.135020 -0.198424 0.671481 0.048616 -0.532869 0.058925 -0.283340 0.110738 0.890237 -0.036967 -0.016913 -0.110953 1.448063 -0.758163 0.645141 -0.921417 -0.740007 1.085789 -0.233780 -0.264157 -1.322544 -0.815732 0.539616 0.002021 -0.341617 0.254070 0.186402 0.052347 -0.530244 0.105680 0.647552 -1.206059 0.377914 0.473749 -0.533073 -0.428710 -0.120349 -0.211622 -0.127071 -0.452201 -0.581446 0.081452 -0.073324 -0.193097 0.032344 0.002861 -0.659148 1.244628 0.169392 -0.056745 0.476203 0.183744 -0.796206 0.778406 -0.340589 -0.729684 -0.336982 0.160944 -0.279226 0.650978 -0.177208 0.433282 -1.303360 0.003195 -1.162080 0.404651 -0.869911 0.310223 0.859044 -0.574159 0.734919 0.348730 0.140603 0.401522 0.169068 0.835324 0.353319 0.669279 0.556033 0.573839 0.481004 -0.474319 -0.578843 -0.855883 -0.863765 0.327049 -0.322197 -1.426676 0.414288 0.049364 -0.435289 0.035910 -0.139069 0.219027 1.140807 -0.608985 0.528384 0.710539 -0.207597 -0.183011 0.872615 -0.146498 -0.248146 -0.559355 0.660967 -0.409920 0.855625 0.006017 0.603829 -0.221493 -1.032810 -0.400349 -0.071729 -0.070453 -0.625907 -0.683680 -0.918026 0.000813 0.272670 -0.522642 0.360658 1.626365 -0.720580 -1.054877 1.002841 1.184622 0.016469 0.246387 0.227635 1.098575 -0.252918 -0.472585 -0.480148 -0.486369 0.392355 0.528760 0.204605 -0.436395 0.552326 -0.074158 -1.599493 1.720712 -0.271490 -0.368350 0.678979 0.244444 -0.613230 -0.783346 0.917659 0.712477 1.168519 -0.129285 1.155900 -0.291422 -0.591073 0.256862 -0.257311 -0.042222 -0.881928 -0.101202 0.254921 0.362198 -0.378697 -0.466951 -0.459110 -0.500569 -0.468672 0.471131 -0.533379 0.317374 0.151931 0.186284 0.004079 0.893146 -0.114862 0.105379 -0.935992 0.443022 0.436925 0.236328 -1.309606 -0.050670 -0.190459 -0.185507 0.122275 -0.050841 0.542241 -0.167750 -0.103302 0.290768 -0.314212 -0.192715 -0.026811 -0.969805 0.076116 -0.250466 0.617760 0.129926 0.750791 1.213837 0.725323 0.305387 0.473703 -0.071158 -0.047031 -0.425683 0.017591 -0.048721 0.251550 0.569196 0.908540 0.724409 0.415186 0.956108 0.557077 0.165165 0.928291 0.201228 1.430615 -0.161904 -0.444413 0.061461 0.302288 0.853132 1.209366 0.396950 -0.168154 0.523782 0.341973 -0.473804 -0.765504 0.045014 -0.159457 -0.174963 0.954561 0.400846 -0.281918 -0.004037 1.102647 -0.170151 -1.352517 0.569409 0.210702 0.626718 0.100637 0.138549 0.229781 0.718239 -0.353950 0.435936 0.577525 0.641437 -0.953541 -0.548934 0.142772 0.585299 0.392382 0.771731 -1.700890 0.240006 0.284910 0.745948 -0.306026 0.852594 -0.554198 -0.314695 0.416135 0.044973 -0.198665 0.341508 0.145472 -0.738974 0.062769 -0.912121 -0.279480 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = -0.003572 0.130446 0.355003 -0.575514 -0.631301 -0.092589 0.399471 -0.167899 -0.121109 -0.020253 0.298758 -0.227938 -0.337587 0.634014 -0.066999 -0.415931 -0.091650 -0.499592 -0.252980 -0.100474 -0.019473 0.465160 -0.083868 0.032161 0.288608 -0.079388 -0.240794 0.520019 0.175079 -0.484902 0.066455 -0.168313 0.061618 0.614731 -0.056877 -0.027098 0.012408 1.109164 -0.451865 0.361911 -0.575575 -0.499034 0.743386 -0.165706 -0.283775 -0.924932 -0.580501 0.399713 -0.166134 -0.166409 0.259840 0.169574 -0.022978 -0.309899 0.131111 0.515549 -0.980477 0.375217 0.316574 -0.307999 -0.238331 -0.066690 -0.243055 -0.189695 -0.179841 -0.399388 0.039780 -0.090110 -0.159461 0.002258 0.080114 -0.406625 0.999762 0.127132 -0.026684 0.375758 0.193620 -0.508283 0.563580 -0.259748 -0.552188 -0.211946 0.115070 -0.160286 0.557114 -0.187273 0.181508 -0.910742 -0.066029 -0.809875 0.260113 -0.652293 0.189590 0.632318 -0.462486 0.536558 0.264601 -0.070772 0.233873 0.096637 0.650303 0.155460 0.462117 0.490573 0.334590 0.253190 -0.327532 -0.336177 -0.635138 -0.637316 0.223243 -0.191659 -1.034238 0.271265 0.081618 -0.261011 0.097818 -0.079640 0.186386 0.711384 -0.319058 0.425766 0.486322 -0.142572 -0.126085 0.671451 -0.109035 -0.204641 -0.428767 0.536800 -0.322752 0.684792 -0.021889 0.393656 0.031585 -0.812641 -0.335398 -0.089372 -0.074029 -0.395870 -0.466584 -0.555881 0.039017 0.095216 -0.368009 0.236372 1.208617 -0.531074 -0.725537 0.823176 0.848735 0.149440 0.161428 0.149340 0.749107 -0.099128 -0.439459 -0.354804 -0.428449 0.241036 0.217444 0.208670 -0.255713 0.339704 0.043717 -1.041216 1.203919 -0.228919 -0.335117 0.566799 0.147819 -0.457109 -0.632733 0.655748 0.739835 0.843021 0.056171 0.829040 -0.125498 -0.503679 0.207727 0.005192 0.025445 -0.647745 -0.131192 0.217325 0.126856 -0.259556 -0.318486 -0.360795 -0.271803 -0.417508 0.242469 -0.187136 0.284188 0.144792 0.228024 -0.122511 0.706284 -0.067489 0.072996 -0.742213 0.306242 0.255452 0.143777 -0.909951 0.056023 -0.078327 -0.111976 0.237802 -0.071093 0.339175 -0.041499 -0.076215 0.180748 -0.231661 -0.093696 0.052550 -0.704971 0.028210 -0.152814 0.369714 0.130564 0.463315 0.937727 0.484350 0.248115 0.424638 -0.019494 0.091511 -0.226656 -0.074700 -0.078781 0.292669 0.413623 0.583964 0.569169 0.291317 0.670200 0.455118 0.100447 0.656554 0.212381 1.108461 -0.070055 -0.373398 0.008513 0.262115 0.601761 0.854445 0.216893 -0.054091 0.393996 0.345096 -0.248147 -0.660013 0.037001 -0.155438 -0.104556 0.731878 0.193834 -0.216405 0.051471 0.737535 -0.160689 -0.932530 0.418703 0.161321 0.438311 -0.042710 0.184009 0.082149 0.549250 -0.406717 0.287297 0.438522 0.462543 -0.656022 -0.350107 0.086070 0.426703 0.119870 0.647117 -1.147638 0.082560 0.189641 0.486993 -0.183230 0.528568 -0.341471 -0.382241 0.343277 0.014884 -0.186574 0.286626 0.055389 -0.564483 0.072130 -0.578996 -0.279056 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = -0.143333 0.029484 0.257317 -0.370152 -0.342631 -0.162806 0.496817 0.006053 -0.063814 -0.262475 0.219524 -0.217439 -0.374481 0.432882 0.091754 -0.323499 0.013840 -0.203349 -0.253046 0.069000 0.001918 0.261386 -0.009412 -0.008648 0.237643 0.015696 -0.155491 0.498883 0.176487 -0.317696 0.049960 -0.076852 0.128049 0.397371 -0.126733 0.117630 -0.004565 0.732710 -0.397277 0.501516 -0.314209 -0.200096 0.576658 -0.125054 -0.279939 -0.769380 -0.508562 0.308151 -0.279646 -0.270412 0.204893 0.215010 -0.029177 -0.302555 0.148632 0.518420 -0.663358 0.183833 0.242840 -0.178711 -0.091846 -0.023765 -0.319527 -0.202010 -0.166888 -0.269482 -0.077221 -0.270961 -0.122418 0.027791 0.037325 -0.250558 0.863333 0.062226 -0.030948 0.339571 0.188347 -0.315447 0.384136 -0.071545 -0.289010 -0.160017 0.074332 0.038443 0.437727 -0.184167 0.020091 -0.585302 -0.269640 -0.480314 0.244598 -0.589651 0.078009 0.451422 -0.306274 0.446138 0.099759 -0.264031 -0.016076 0.149987 0.382117 0.103974 0.380630 0.246751 0.301773 0.105313 -0.283291 -0.401838 -0.486310 -0.410850 0.190964 -0.165068 -0.762778 0.139017 0.077274 -0.079873 0.163940 -0.019731 0.179344 0.352558 -0.005764 0.621732 0.420298 -0.110086 -0.108317 0.575270 -0.094694 -0.212205 -0.313290 0.344690 -0.125611 0.564254 -0.024541 0.254973 0.111117 -0.627021 -0.027086 -0.139417 -0.105861 -0.158078 -0.299914 -0.370787 0.059931 0.128918 -0.236814 -0.106998 0.782382 -0.276796 -0.411198 0.519475 0.725177 0.276592 -0.093809 0.117751 0.537134 -0.084672 -0.265979 -0.235984 -0.284186 0.212140 0.350806 0.133330 -0.314495 0.239116 -0.036295 -1.067280 0.970892 -0.163021 -0.131478 0.538014 0.021370 -0.331738 -0.516893 0.573314 0.538778 0.634163 -0.062006 0.535930 -0.041806 -0.329467 0.151427 0.191100 0.056418 -0.608219 -0.155672 0.255404 0.017224 -0.210418 -0.237342 -0.315299 -0.134493 -0.228686 0.182771 -0.295517 0.078874 0.003776 0.184715 -0.204243 0.355423 -0.115986 0.055838 -0.574466 0.205745 0.041744 0.086190 -0.652463 0.154340 0.014644 -0.098992 0.126147 -0.035967 0.129541 0.013849 -0.082265 0.216681 -0.263705 -0.194144 -0.046363 -0.525176 -0.080480 0.059814 0.204665 0.157515 0.305545 0.730831 0.225826 0.097798 0.355246 -0.034923 0.146829 -0.403168 -0.036622 -0.211885 0.218916 0.255268 0.267867 0.357161 0.084297 0.444489 0.265394 0.061718 0.407691 0.387869 0.648442 0.259554 -0.390475 0.172812 0.110368 0.391402 0.460190 0.172939 -0.017567 0.311725 0.299871 -0.176632 -0.421582 -0.080148 -0.103904 -0.243078 0.802679 -0.037586 -0.209666 0.126394 0.482330 -0.168144 -0.641489 0.131601 0.102533 0.302905 -0.041946 0.135963 0.122694 0.429169 -0.237167 0.178969 0.146587 0.306932 -0.407431 -0.280500 0.048485 0.111817 0.271286 0.383055 -0.862066 -0.160394 0.038221 0.399118 -0.132308 0.377708 -0.148744 -0.130435 0.147248 0.034719 -0.110187 -0.004134 -0.029732 -0.307165 -0.113090 -0.547251 -0.172249 +PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 0.527073 0.730217 1.928118 -2.961443 -2.779859 -0.831959 2.582293 -2.378682 -1.565714 2.782055 1.136010 -2.679477 -3.070972 2.720046 -0.976739 -2.603668 -0.346703 -0.662240 -1.314430 -2.275982 -0.479893 1.677527 -0.346286 -2.087351 1.247367 -1.181093 0.864402 4.186083 2.000403 0.500613 1.116572 -1.446781 1.732401 4.653748 1.079807 -0.083394 -1.594090 6.129222 -3.708936 3.303180 -5.136770 -4.357159 7.035616 -0.534597 -0.928989 -6.530234 -2.521730 2.796505 -3.669675 -1.127596 -0.557367 0.139822 1.422811 -3.540102 -1.398236 4.292658 -5.636863 2.832364 1.696125 -3.835900 -3.486720 -0.796735 0.036786 0.837626 -2.423771 -3.136845 -0.554378 -0.983215 -1.751996 0.961405 -2.062791 -2.185397 4.580124 0.208817 -1.031651 1.067677 -1.148136 -1.921683 2.319341 -0.615311 -2.543731 -2.380784 0.964593 -0.633706 1.785187 0.770726 2.312172 -6.744341 -1.388847 -5.750233 2.270782 -3.413063 2.348587 3.542735 -2.731586 4.294207 0.387981 -0.746459 0.692234 -0.410803 2.746292 1.190141 3.895689 1.809420 2.575115 3.162510 -2.392663 -4.306914 -3.028574 -2.639845 1.167699 -1.892015 -7.027056 1.465167 -2.212208 -0.831705 0.340950 -1.256797 -0.521339 4.483576 -4.143950 1.625615 1.980192 -1.010735 1.443780 2.932269 0.053064 0.325087 -0.777074 2.888847 -0.257913 2.632767 0.084365 3.376692 -0.935818 -5.109372 -2.147436 0.927935 0.957884 -2.275684 -3.920976 -4.723950 -1.476481 1.031302 -1.967296 0.975088 6.542269 -1.846339 -5.015628 3.478182 0.864386 0.835468 2.019361 1.242893 5.875054 -2.364123 -0.741736 -1.297124 -1.129495 2.878485 6.124522 -1.097821 -3.695644 3.311936 -1.344992 -4.123613 2.666312 -0.854220 -0.976290 -0.122616 0.368671 -2.289747 -2.807408 4.437433 -1.467132 5.283653 -2.974630 5.346765 -2.463028 -3.384653 0.986174 -4.107927 -1.362600 -2.977828 0.106819 0.399762 2.410433 -3.341594 -2.858766 -2.313087 -0.873469 -1.452834 4.621200 -3.653964 -0.184225 0.299707 0.194661 2.901289 2.137513 -1.918109 -0.197257 -3.540609 1.622675 3.177815 2.237610 -7.274496 -1.073748 -0.917426 -1.543310 0.741411 0.160124 2.813093 -0.932942 0.299472 1.777967 -1.483831 -0.566036 -0.353131 -4.971539 1.902025 -0.409388 1.519007 0.609791 5.277199 4.594470 2.295952 -0.061928 2.478992 -0.219494 -1.910370 -2.266710 1.271002 1.284332 -0.252480 2.300391 4.192057 2.281943 1.869667 4.121246 2.388090 -0.773275 3.821248 0.993922 5.151695 -2.498699 -1.229381 0.919588 0.925410 3.356492 5.077247 1.928922 -3.068849 2.455308 -0.305200 -1.539245 -3.776086 -0.916031 -0.814735 -0.502383 5.415006 2.983942 -1.525181 -0.320756 6.265888 -0.377069 -7.055672 4.088082 1.801379 2.319219 0.790333 -1.513914 0.739861 3.707360 -0.213943 0.967677 2.689632 2.288899 -4.544710 -1.237673 0.288536 2.746612 3.666952 1.606343 -9.334335 -0.841403 1.719381 5.256956 -0.333487 5.639408 -2.529076 -0.741088 0.960646 0.533829 0.153861 -0.119281 0.935872 -2.373386 0.517672 -4.212130 -0.406108 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.308902 0.047684 0.571793 -1.283826 -0.992979 -0.122976 0.572058 -0.793270 -0.431118 0.267280 0.533704 -0.870420 -0.978534 1.184532 -0.264411 -1.109091 0.057683 -0.543057 -0.405482 -0.365102 -0.230790 0.578406 -0.228530 -0.661395 0.470279 -0.263922 0.044180 1.330255 0.959080 -0.313372 -0.145109 -0.453128 0.323438 1.821101 0.421984 -0.178849 -0.152940 2.524624 -0.837140 1.080666 -1.585675 -1.189134 2.246614 -0.314894 -0.585146 -2.069498 -1.075674 0.991859 -1.473221 -0.222586 0.211272 -0.061872 0.315132 -1.100155 -0.295087 1.623979 -2.264403 1.250551 0.748672 -0.648380 -0.825115 -0.503232 -0.129860 -0.024046 -0.567583 -1.125932 0.085505 -0.209479 -0.790589 0.176055 -0.806774 -0.985313 2.215807 0.352278 -0.405761 0.441455 -0.208140 -1.037140 0.872045 -0.447881 -1.207057 -0.696086 0.294297 -0.176937 1.295761 -0.053608 0.603935 -2.477138 -0.340536 -2.342226 0.636019 -1.547423 0.905402 1.603103 -1.408611 1.293795 0.228708 -0.129916 0.270486 0.082485 1.294679 0.348405 0.879871 0.509551 1.025861 0.787446 -0.612915 -1.172509 -0.861376 -1.022585 0.077395 -0.495417 -2.801823 0.642756 -0.862647 0.006025 -0.030524 -0.062617 -0.227360 1.256186 -1.199448 0.304968 0.551943 -0.426313 0.682310 1.417662 -0.158931 0.041689 -0.624739 1.243416 -0.116351 0.961616 -0.305328 1.130541 -0.124839 -2.020880 -1.190510 0.119522 0.512746 -0.947667 -1.724683 -1.566092 -0.438774 0.030076 -0.744595 0.822116 2.517189 -0.774232 -1.673694 1.608327 0.550844 0.734396 1.172807 0.375531 2.119542 -0.841779 -0.173973 -0.405653 -0.429046 0.472397 0.663658 -0.347556 -1.092279 0.941790 -0.339847 -1.354237 1.552762 -0.104763 -0.493260 0.286451 -0.022476 -0.937015 -1.495968 1.930334 0.183858 1.843602 -0.369793 2.197328 -0.764958 -1.365181 0.588621 -0.593217 -0.178084 -1.083665 -0.200197 0.175698 0.765593 -1.164845 -1.153044 -0.553121 -0.072013 -0.652807 1.454495 -0.036556 0.000000 0.176108 0.204861 0.665138 1.220452 -0.686172 0.268988 -1.506420 0.676150 1.187546 0.324896 -2.270012 -0.134327 -0.297043 -0.479247 0.509787 0.082424 0.924562 -0.539189 -0.329925 0.569259 -0.212705 0.237446 0.128537 -1.893963 0.595148 -0.225625 0.240591 0.527408 1.759048 1.721332 0.941614 0.192620 0.576328 -0.053926 -0.279763 -0.600427 0.026110 0.203240 0.492012 0.850072 1.386206 0.952196 0.597431 1.304520 0.967875 -0.172871 1.455354 0.748901 2.126060 -0.466309 -0.596385 0.246780 -0.000774 1.468004 2.116664 0.021836 -0.682043 0.930750 0.329038 -0.420325 -1.790809 -0.265307 -0.337752 -0.389574 1.596761 0.521297 -0.421135 -0.197644 2.315351 -0.252565 -2.478721 1.384704 0.641340 0.877144 0.246669 -0.267106 0.193797 1.232620 -0.651097 0.635822 0.955250 1.006180 -1.356896 -0.402018 0.121122 0.991722 0.624364 0.760018 -2.430348 0.011139 0.696842 1.834149 0.380868 1.319648 -0.761559 -0.496063 0.303497 0.016891 0.045425 -0.014808 0.481234 -1.096808 0.083553 -1.285843 -0.515847 +PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 2.572099 -0.121953 2.183746 -4.124805 -3.050297 -0.106320 2.892532 -6.057608 -2.912830 8.319862 2.266827 -4.068105 -0.519124 4.976589 -1.112625 -1.920083 0.791298 1.951940 -1.440846 -1.420000 -1.767885 2.003191 -1.897208 -4.594612 1.298435 -1.131377 2.585668 4.110473 -2.058152 2.998351 0.197567 -3.309346 1.837577 8.632127 3.276491 0.250995 -3.856263 8.619162 -7.354347 7.950718 -8.259687 -6.762077 10.154828 -1.088476 1.417966 -6.935134 -3.484810 4.932629 0.945740 -6.150815 -1.845346 -1.371866 3.146611 -6.121037 -3.229332 4.732029 -5.240024 -0.023093 4.545368 -7.500932 -8.047036 -1.360576 2.682439 2.735909 -8.781643 -5.762822 -0.161759 -0.016373 -0.042205 0.854298 -6.068708 -7.431211 4.071644 0.700868 -2.376779 0.597273 -3.156116 -4.452835 3.985613 2.086515 -5.018943 -3.969441 0.182200 -4.094922 1.778808 2.712306 7.817449 -11.505691 2.976675 -11.090597 3.706485 -4.149412 4.969507 6.933148 -3.098667 5.145105 2.049086 6.266003 1.706925 0.220010 4.255122 2.889718 2.846808 1.450736 6.317593 6.540791 -5.131849 -8.142552 -5.152981 -4.841138 3.962992 -3.432884 -8.862872 3.706914 -4.726937 -0.924601 -1.960650 -0.697140 -1.028643 9.388531 -10.145476 1.221900 3.654066 -1.905400 3.169299 4.252355 -0.030754 1.405564 -1.738909 3.411322 -0.933275 1.832387 0.370471 6.593521 -5.740149 -3.396833 -2.006502 2.885002 3.067251 -6.013332 -6.893612 -10.713374 -2.465317 5.247190 -4.054231 3.982587 10.762833 -4.695742 -6.952223 4.326265 0.855288 -2.644809 3.784907 2.365376 10.711732 -6.004803 0.605638 -1.429432 -0.765275 4.348618 8.678013 -2.666086 -6.378475 6.830424 -3.873151 -7.074350 10.404069 -0.541167 -1.457695 0.021568 2.107423 -1.625095 -2.720671 6.999063 -7.247658 6.723965 -5.527066 8.988248 -4.316501 -1.392913 1.439443 -9.037886 -3.857348 -5.206576 0.818071 -1.348533 7.227725 -5.133334 -4.519957 -1.783219 -3.735176 -1.386770 8.780313 -6.630957 -0.650307 0.973040 -2.086490 6.125389 3.072810 -2.197915 -1.615646 -4.190464 2.799269 5.284261 1.509505 -8.647947 -4.498849 -4.283614 -2.623741 -2.751621 0.704951 6.442922 -4.944452 0.580331 3.069373 -1.015721 -1.133396 -0.950761 -7.053450 3.722275 -1.013076 4.018944 1.486554 10.043196 5.333734 6.856600 0.787052 2.069946 -0.636090 -3.569790 -7.661636 3.430961 1.566775 1.131489 4.269401 5.702872 3.257680 4.504741 5.316650 0.113682 2.856623 7.711126 0.448551 7.868779 -3.136572 -0.195027 2.634619 0.411564 6.127621 7.674868 2.064555 -4.754559 2.651593 -4.087994 -6.783622 -2.244574 -0.206090 -0.071158 -2.198114 4.068989 6.488430 -0.322733 -3.296093 11.560817 -0.672674 -12.659052 5.737089 2.377675 4.542617 6.605755 -2.839225 5.744253 3.833358 4.101725 3.514012 5.542993 4.777458 -8.800142 -0.603787 1.025668 4.529206 7.951215 1.060361 -15.002569 2.675130 1.818187 8.189528 -1.941234 8.598212 -6.149722 3.887823 1.598735 0.017816 1.598855 -1.136811 4.216849 -0.865242 -0.048645 -10.368229 1.441318 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.762502 -0.126717 0.703458 -1.600493 -1.083082 -0.055586 0.794506 -1.515049 -0.699732 1.516332 0.726576 -1.199436 -0.411910 1.834486 -0.353617 -0.931132 0.313575 -0.118101 -0.452623 -0.176999 -0.470238 0.776589 -0.533179 -1.174281 0.568010 -0.267248 0.387143 1.388901 0.024578 0.181516 -0.283472 -0.865339 0.374344 2.706872 0.809510 -0.128294 -0.647794 3.189814 -1.750408 2.230384 -2.326555 -1.757447 2.994268 -0.450333 -0.093664 -2.354609 -1.395758 1.448685 -0.401365 -1.296861 -0.080068 -0.308628 0.618073 -1.710472 -0.632504 1.759105 -2.310639 0.642324 1.354814 -1.418313 -1.806142 -0.665357 0.373778 0.305576 -2.031707 -1.706534 0.144740 -0.048517 -0.490086 0.240442 -1.598590 -2.051132 2.118055 0.480655 -0.696963 0.423356 -0.574019 -1.703625 1.291082 -0.014942 -1.732695 -1.059896 0.134935 -0.945574 1.349812 0.315266 1.797160 -3.569020 0.605060 -3.486925 0.946710 -1.867778 1.446104 2.437203 -1.498376 1.603557 0.553391 1.445642 0.521214 0.265419 1.675274 0.867334 0.768877 0.481373 1.859860 1.594919 -1.239956 -2.054231 -1.370022 -1.494402 0.675554 -0.869493 -3.314237 1.096820 -1.315444 -0.108786 -0.473248 0.041565 -0.341397 2.432962 -2.578030 0.279581 0.999807 -0.631921 0.923790 1.721282 -0.188195 0.183433 -0.934277 1.423397 -0.247685 0.907544 -0.237888 1.824006 -1.324671 -1.725761 -1.095100 0.424312 0.838435 -1.744167 -2.413798 -2.965368 -0.674518 0.965553 -1.202074 1.482667 3.501317 -1.354507 -2.156457 1.881625 0.702420 -0.002857 1.497037 0.627830 3.135927 -1.573771 0.039972 -0.482386 -0.350155 0.816057 1.366921 -0.640254 -1.708599 1.687265 -0.916491 -2.239614 3.353968 -0.079774 -0.575306 0.255105 0.326973 -0.892414 -1.518668 2.621591 -1.124203 2.298029 -1.077513 3.031616 -1.133784 -0.979376 0.693601 -1.802763 -0.641981 -1.724619 0.006119 -0.182932 1.812214 -1.601334 -1.569808 -0.445237 -0.734352 -0.658989 2.343236 -0.930446 -0.098263 0.275851 -0.210244 1.440472 1.413872 -0.806785 0.024294 -1.718725 0.951437 1.651400 0.221353 -2.759835 -0.764010 -0.947211 -0.740090 -0.311964 0.209203 1.630977 -1.425687 -0.299762 0.883862 -0.178022 0.017092 -0.052343 -2.465968 0.970366 -0.404729 0.858548 0.698453 2.764363 2.028527 1.842520 0.331373 0.516570 -0.164340 -0.688514 -1.828962 0.583939 0.295030 0.651385 1.265020 1.865693 1.220102 1.133840 1.605568 0.596572 0.547492 2.301189 0.694416 2.774189 -0.593901 -0.463726 0.631145 -0.064578 2.100887 2.743265 0.198994 -1.058862 1.040790 -0.436027 -1.563087 -1.457861 -0.174385 -0.200456 -0.770745 1.406412 1.209015 -0.293085 -0.700206 3.486169 -0.326866 -3.749049 1.711323 0.790138 1.385495 1.415548 -0.509125 1.262668 1.398240 0.235736 1.220867 1.515624 1.529913 -2.268811 -0.410046 0.276221 1.355974 1.698264 0.733090 -3.821407 0.779443 0.737850 2.514817 -0.029774 2.085911 -1.476519 0.456078 0.445788 -0.059440 0.258725 -0.190602 1.155885 -0.843669 -0.028653 -2.675053 -0.188211 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.068670 0.233332 0.580616 -1.010911 -0.523251 -0.065616 0.819701 0.264625 -0.283445 1.072363 -0.355120 0.143752 -0.395897 1.144538 -0.397433 -0.134520 0.220810 -0.953524 -0.557317 -0.040186 -0.525588 1.040807 -0.044860 -0.774464 1.129088 -0.296476 -0.178478 0.844922 -0.828546 -0.272815 0.513742 -0.402771 -0.162107 1.054411 -0.550979 0.221386 0.188916 1.055723 -1.190044 1.559895 -0.997195 -0.816210 1.220536 -0.407148 0.247013 -1.166751 -0.262769 0.336538 0.170091 -0.542618 -0.294155 -0.174619 -0.397789 -0.575880 0.457316 0.605668 -1.378002 0.097839 0.457923 -0.168359 -0.639336 -0.449987 -0.172608 -0.295444 -0.924351 -1.025958 -0.588615 -0.259779 -0.424607 0.080938 -0.303489 0.037909 0.213316 0.268802 0.117141 0.510921 -0.182101 -0.736179 0.419237 -1.038936 -0.302899 -0.553352 0.411502 -0.643889 0.655707 0.067372 0.239753 -0.843304 0.262026 -0.543009 -0.108952 -0.771444 0.372217 1.040711 0.227476 0.728416 0.044067 0.273124 0.339447 0.316690 0.532059 0.474771 0.948170 0.090768 0.823003 0.604845 -0.968907 -1.138952 -0.391260 -0.458350 0.305122 -0.642607 -0.686155 0.302390 0.124252 -0.427968 0.091504 0.128354 -0.334311 0.870977 -1.337448 0.369366 0.629198 -0.193075 -0.304009 0.020745 -0.051812 -0.536111 0.148515 0.082563 0.003767 0.738947 -0.054095 0.816833 -0.614602 -0.405697 0.098350 -0.745857 -0.533648 -0.636435 -0.747891 -1.286322 -0.301834 0.284817 -0.348265 0.650952 1.634415 -0.243402 -0.713971 0.417228 0.566497 0.243827 0.190579 0.417368 0.422885 -0.161859 -0.552325 -0.071223 -0.346874 0.774137 1.333412 -0.322567 -0.527459 0.730538 -0.282931 -0.990137 0.981885 0.031520 0.275726 -0.251981 0.042189 -0.709145 -0.489211 0.927708 -0.824910 1.303408 -0.594223 1.095416 -0.442956 -0.225132 0.386668 -1.116728 0.268317 -1.385429 -0.329423 0.199393 0.049467 -0.547442 -0.571787 -0.436828 -0.147540 -0.120193 0.622954 -1.623360 0.088204 -0.494634 0.197154 0.998731 0.289762 -0.715127 0.434001 -0.493901 0.920002 0.562647 0.510236 -1.315239 -0.001937 0.144982 -0.529825 0.296695 0.032070 0.088478 -0.120099 0.110808 0.967218 -0.484248 -1.006404 0.159757 -1.081238 -0.134357 -0.392360 0.506228 0.250575 0.637342 0.697032 0.002075 -0.400320 0.568945 -0.790716 -0.543011 -0.662981 0.409424 -0.305482 -0.120984 0.709587 0.759133 0.813729 0.438827 0.530323 0.685492 -0.254977 0.878970 0.200372 0.542824 -0.077215 -0.374718 0.355159 0.355372 0.805574 0.244861 0.055635 -0.375196 0.634474 -0.013800 -0.394329 0.040708 -0.324607 -0.333929 -0.233847 0.762884 0.101955 -0.344572 0.560843 1.279326 -0.286521 -1.066141 0.110807 -0.220248 0.742696 0.073963 0.253785 0.345848 0.779747 -0.178044 0.187325 0.191956 0.333850 -0.623319 -0.254451 0.204177 0.038503 1.187085 0.723922 -2.041042 -0.335023 -0.247221 0.571627 -0.025010 1.126660 0.102473 -0.098110 0.021109 0.080372 -0.336105 -0.089147 0.047241 -0.178147 0.165236 -1.367717 0.182364 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = 0.908665 -1.303231 -0.165475 -2.111310 -0.534317 0.873647 -0.601096 -2.195435 -0.749204 1.009616 0.658358 -0.996184 0.355158 1.692049 0.149656 -1.376856 1.158024 1.846683 0.172512 0.300265 -0.852619 0.222249 -0.804820 -1.321953 -0.121590 -0.676813 0.666709 0.583976 -0.130981 0.698138 -1.225425 -1.126526 -0.660258 3.132310 1.591918 0.536513 -0.995250 2.935001 0.511598 3.557130 -2.315752 -0.487321 1.789276 -0.362573 0.405285 -1.547236 -1.614548 0.915780 0.315040 -1.610219 -0.219294 -1.541776 0.988416 -1.119144 -0.707092 1.415384 -0.310628 -0.586258 1.541719 -1.297585 -1.349158 -0.730306 1.105353 0.966301 -3.357564 -1.876307 0.496395 0.981977 -0.247500 0.000749 -2.807252 -3.224921 1.591658 1.707286 -1.592418 -0.428177 -0.879396 -1.852929 0.531102 1.251468 -2.302481 -1.103432 -0.346047 -1.573900 1.489298 0.196908 3.196344 -3.718046 2.108627 -4.367268 0.545516 -1.581285 2.276058 2.981202 -0.841854 0.612698 0.932171 2.700184 0.264663 0.434169 1.495722 0.850749 -1.308714 -0.459732 2.853834 0.921780 -0.734563 -2.209399 0.150333 -1.225232 0.377611 -1.228630 -3.154751 1.371450 -2.335764 1.241720 -1.689850 1.744244 -0.888695 1.663715 -2.675077 -1.324067 0.437098 -0.998739 1.965031 1.638267 -0.117265 0.786787 -0.926067 1.242194 -0.310594 0.004685 -0.974492 2.028928 -1.796321 0.478869 -1.543764 0.559414 1.841974 -2.145581 -3.165430 -2.403919 -1.778278 1.696544 -1.104344 3.531981 3.367806 -1.794972 -1.521466 1.400284 -0.737060 -0.079182 2.314028 0.833733 3.386922 -2.347220 1.058432 -0.721025 0.306257 0.090530 0.396112 -1.277995 -1.492653 2.145449 -1.913195 -1.050582 4.486397 -0.165569 -0.726791 -0.018651 0.017695 0.071984 -1.568315 2.660464 -3.465652 2.014431 -0.690803 3.305966 -1.261064 -0.223461 0.844342 -1.591850 -1.113401 -0.996636 0.744233 -1.167534 2.705015 -1.597215 -1.970949 0.719712 -1.310389 -0.110722 2.684613 1.270181 -0.634664 0.536538 -0.843272 3.409179 1.884684 -0.233178 -0.454101 -1.016217 1.582279 1.935476 -0.838363 -0.404912 -1.315774 -1.323063 -0.823542 -1.568733 0.543328 1.864122 -2.784796 -0.584568 -0.095463 0.712114 1.014466 0.558669 -3.270142 1.496921 0.095082 0.225929 0.942680 2.955700 1.276699 2.452322 0.696967 -0.932745 -0.307863 -0.492025 -2.484277 0.579903 0.551376 1.164547 1.096720 1.378583 0.698369 1.447376 1.517722 -0.188862 2.297284 2.021443 0.319569 2.457854 0.370983 -0.038800 0.760213 -1.332244 2.326463 3.552178 -0.665463 -0.137842 0.963073 -0.941411 -2.318917 -2.432340 0.125174 0.134429 -1.447240 0.254556 1.227818 0.699936 -2.001998 3.900226 0.078847 -3.858013 1.590893 0.684701 1.098267 3.254282 -0.721252 2.276410 0.542150 0.670658 1.475367 1.805886 1.545997 -2.188632 0.449603 0.214661 0.500752 1.589646 0.132304 -1.565040 1.496870 0.898959 3.273276 0.797484 1.479940 -1.487891 1.647126 0.708681 -0.611731 0.447710 -0.979865 1.474216 -0.245338 -0.579868 -2.819387 -0.156334 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.133554 0.225849 0.081124 -0.152031 -0.374814 0.051664 0.096664 -0.008954 -0.203924 -0.155946 0.083310 0.077559 -0.076886 0.433739 -0.121620 -0.046659 -0.269195 -0.268867 -0.308310 -0.334843 -0.289376 0.250867 0.078206 -0.373671 0.308392 -0.196874 -0.109804 0.316534 -0.325261 -0.257543 0.210569 -0.103739 0.014274 0.448468 -0.179248 0.422360 0.164887 0.368807 -0.034208 0.174752 -0.462119 -0.343026 0.626318 -0.145070 0.181243 -0.620625 -0.317470 0.167065 -0.019097 -0.102967 -0.139305 -0.109298 -0.233586 -0.208623 0.156204 0.162730 -0.324186 0.282646 0.209686 -0.151068 -0.240859 -0.003740 -0.113517 -0.239015 0.017127 -0.571298 -0.397745 0.168299 -0.080869 0.056778 -0.226201 -0.056076 0.511194 0.115016 -0.002423 0.169015 -0.207961 -0.028416 0.028070 -0.449950 -0.112022 -0.242210 0.444587 0.145099 0.144965 0.049886 0.124018 -0.227942 -0.209454 -0.401627 -0.057539 -0.243324 0.253703 0.377139 -0.183094 0.190977 0.113334 -0.128121 0.141430 0.373323 0.270834 -0.102971 0.255409 0.031299 0.065109 0.022785 -0.330760 -0.368821 0.022107 -0.383030 0.116337 -0.011574 -0.447117 0.234546 -0.098280 -0.014852 -0.086786 0.268957 0.069734 0.249737 -0.462776 0.058448 0.233771 -0.079224 0.083577 -0.026840 0.042460 -0.125469 -0.022453 -0.033278 0.029250 0.188188 -0.054131 0.315468 -0.065777 -0.441603 -0.236208 -0.293176 -0.159438 -0.339900 -0.309092 -0.270702 -0.038865 0.163256 -0.243163 0.069897 0.696105 -0.228784 -0.328399 0.163771 0.516801 0.126209 0.183429 0.192340 0.228299 -0.154015 -0.104627 0.046523 -0.176680 0.215978 0.113751 -0.252750 -0.099302 0.126070 0.093830 -0.432760 0.466667 0.009854 0.051886 0.409104 -0.030085 -0.208746 -0.084300 0.280713 0.339919 0.684698 -0.241198 0.541187 -0.348979 -0.204684 0.288975 -0.215778 0.082084 -0.228669 -0.065002 0.026367 0.007814 -0.260091 -0.267730 0.038775 -0.199192 -0.079980 0.335393 -0.169498 0.071179 -0.138561 -0.057534 0.004966 0.238001 -0.297028 0.256296 -0.219812 0.389148 0.306100 0.272924 -0.508698 -0.090717 -0.011359 -0.185596 0.262403 -0.009096 0.115864 0.105624 0.225349 0.319814 -0.312229 -0.231008 -0.005087 0.027023 0.021132 -0.289010 0.016422 0.034954 0.372279 0.500450 0.090944 -0.172193 0.292063 -0.247033 -0.265532 0.042917 0.107376 -0.163687 0.118385 0.391396 0.181860 0.327333 0.343364 0.278587 0.228806 0.013425 0.515968 0.137034 0.450188 -0.535133 0.111803 0.053506 0.147856 0.457648 0.387176 0.015048 -0.193507 0.240528 -0.011945 -0.070353 -0.283948 -0.179450 0.012739 -0.302723 0.370159 0.143623 -0.044099 0.046941 0.593565 -0.069926 -0.168467 0.270597 -0.113406 0.224092 -0.073307 -0.053020 0.023392 0.461665 -0.035664 -0.211448 0.082475 0.376519 -0.370305 -0.234596 0.043187 0.311474 0.207984 0.287935 -0.456239 0.004260 0.027365 0.194165 -0.193095 0.195873 -0.049715 -0.191911 0.147307 0.197602 -0.105851 0.071006 -0.127992 -0.159158 -0.018122 -0.402426 0.008836 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 4.708301 0.226072 0.896718 -6.429140 -5.349576 3.231002 -2.627907 -5.632763 -2.063954 4.938411 2.806450 -0.724781 2.456970 4.779006 -1.570333 -2.057188 0.057449 -5.641027 -0.374227 -0.494952 -2.501619 2.703750 -2.823039 -2.387961 0.533458 -1.077615 -0.759174 1.283196 -1.200429 -2.547052 -3.174464 -2.835787 -2.853328 8.021551 3.938713 -4.051830 0.844752 10.447231 -2.572554 0.595184 -5.119188 -4.536877 5.700254 -2.078912 -0.583290 -2.461009 -2.482045 3.446526 3.056263 -1.495488 1.741950 -3.394803 1.457568 -1.424795 -1.659704 1.956066 -6.238415 2.208030 4.289921 -0.986336 -4.226776 -3.029157 3.473910 1.483823 -4.713844 -5.144921 3.683221 2.991730 -0.015960 -2.271121 -4.706102 -7.747850 4.493809 3.489636 -0.722282 -0.725957 -1.806765 -7.207787 3.963270 -0.346526 -8.091312 -1.587465 -0.900982 -6.807586 6.066467 -1.055735 5.744192 -9.828776 6.882381 -12.051428 -0.796225 -3.342083 4.267413 7.546413 -4.438551 0.656831 3.476129 9.056314 4.010528 -1.070321 6.733405 0.886895 -1.028762 2.639622 5.065654 3.458167 -2.426972 -1.202624 -2.510227 -5.128997 1.149802 -1.591795 -7.966376 5.319984 -3.055632 -3.204181 -3.736863 1.269796 -2.387767 8.380744 -7.485843 -4.868773 0.665084 -1.837276 2.650909 4.438067 -1.500569 1.230969 -2.853381 4.052423 -2.621291 2.082014 -1.726922 5.073964 -3.634405 -1.779125 -7.251687 2.116714 4.478099 -7.427889 -7.405245 -7.050976 -1.220341 -0.252856 -4.068753 11.271852 11.481084 -6.620333 -5.993292 7.201766 1.429287 -1.812412 8.214472 0.799165 8.290822 -3.246857 -1.315044 -1.617258 -2.575238 -1.644962 -5.389374 -1.279467 -0.017392 4.214464 -1.168236 1.478765 11.661005 1.216878 -4.346787 2.789520 2.205665 -2.190002 -6.209487 6.016483 1.399087 4.159679 5.140472 9.523639 -2.391428 -1.497169 3.399894 -1.225482 -0.790443 -3.588367 -1.018725 -1.278600 4.868962 -1.238166 -3.801103 0.279996 -1.834146 -3.842018 4.842383 6.349509 3.515568 3.140299 -0.298377 2.679786 9.341712 -0.341818 0.737422 -4.265912 4.337746 6.740598 -1.925490 -3.055270 -4.468938 -3.504460 -1.209521 1.256132 0.231099 6.320258 -5.739134 -1.780784 1.392948 3.278383 2.858223 3.941773 -9.527829 3.847627 -3.725918 2.210811 2.309584 7.065914 3.563130 8.118330 4.092938 -0.654917 -1.078572 0.618751 -2.003040 -2.010421 0.734102 5.084272 5.010066 6.196295 4.775196 5.825458 4.265445 2.796508 3.157710 7.355676 -1.088853 10.521845 -3.331674 0.121259 -2.004915 0.241127 7.434545 10.517967 -1.143836 -1.703908 1.990244 -0.698061 -5.071311 -6.589369 2.350869 -1.064515 1.577155 -3.155688 4.348881 1.852101 -4.165566 10.120506 -0.981905 -10.009876 5.446285 1.561403 4.783408 5.896890 -0.031509 3.717346 1.415531 -2.095283 5.758765 7.952838 4.851676 -5.720649 1.467959 1.614451 5.970871 -3.860264 4.638624 -6.091964 7.084912 2.394122 4.425636 1.474372 3.311503 -5.622402 -0.805962 4.031080 -1.325246 1.083560 3.281595 5.275303 -5.571000 3.041209 -5.626932 -1.028016 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 6.212270 0.904048 1.109760 -6.042355 -3.115532 -0.319877 7.938633 -6.628810 -5.041750 13.816441 1.854017 -4.982809 -1.902841 6.773378 -0.326216 -1.831552 2.482039 -2.049287 -2.698630 -0.694514 -5.330899 3.017495 -2.515257 -9.190265 3.181582 -1.218102 2.006138 6.496547 -4.629110 3.062895 -0.420715 -4.215586 2.382704 12.344776 4.125726 -3.150931 -4.418241 14.816036 -15.186781 12.196124 -9.011243 -9.593236 17.114727 -2.011136 0.646874 -9.247407 -3.763178 7.298745 5.294662 -9.345769 -2.601813 -2.094245 2.925379 -8.980572 -5.004151 10.475264 -9.241418 0.236449 6.576135 -7.814973 -11.610117 -3.316191 3.598135 3.490324 -13.434473 -9.815504 -0.248102 -2.889949 -0.565103 0.477503 -11.832901 -9.626624 4.816634 3.264958 -1.456829 0.479062 -6.489844 -6.548306 4.722762 1.700746 -6.897599 -4.975025 0.428912 -5.046473 3.113323 4.198208 10.856917 -15.422928 4.236548 -15.764413 3.146999 -8.430787 7.351143 11.379458 -0.119006 7.596326 1.060912 8.677014 1.458369 -0.276087 6.243013 3.226514 5.027359 1.058550 7.924086 10.969389 -8.546560 -11.856191 -6.415312 -3.780222 4.876044 -2.019901 -10.490098 6.988591 -7.884393 -2.863334 -1.083733 0.273114 -4.260539 12.777594 -13.887899 0.434195 3.895092 -3.011731 6.477157 7.077056 0.152854 1.404705 -2.202670 3.610707 2.370089 5.176029 -0.458504 9.536800 -9.595910 -5.386479 -1.492135 3.001811 5.227076 -9.919756 -10.456665 -15.538127 -2.717468 6.645699 -6.957999 8.122586 18.019546 -6.339987 -6.513183 5.737115 0.197193 -0.550060 4.748206 2.472069 16.902639 -9.191067 2.274955 1.801477 0.628498 5.177066 14.121313 -5.012959 -9.051517 8.354884 -4.526611 -5.333087 13.819086 1.495548 -0.799280 2.844516 1.709842 -0.662136 -7.323221 12.259287 -11.301060 9.975525 -4.883263 13.338957 -5.222088 0.063916 4.255556 -9.450161 -4.356044 -11.689925 0.916689 -1.555885 8.756921 -5.748229 -6.460179 -2.192281 -4.256480 -2.309879 12.936498 -9.183920 -0.869562 0.079943 -3.543695 8.812888 3.895241 -4.701926 -1.477513 -8.420514 5.682496 6.118420 0.080861 -13.400663 -6.756291 -3.736622 -4.167109 -1.868514 0.761720 8.044084 -7.603817 0.119640 7.869678 0.595245 -3.132469 -0.678774 -10.204636 5.150296 -0.706907 4.796625 2.679728 15.058478 5.817508 8.773764 -0.113378 2.122141 -3.445136 -4.080515 -13.174083 4.676637 -0.402151 2.865781 7.013311 7.506925 3.374560 6.193608 7.243974 -1.335710 2.144196 9.756361 2.766457 11.251861 -4.147202 -3.230932 4.853792 -1.788689 9.260843 9.098939 0.902388 -10.537366 4.350934 -7.433953 -10.500056 -0.815909 -0.420622 -0.743951 -2.913935 6.800102 8.613342 -0.002762 -4.081997 18.224239 -2.339917 -20.834227 6.835163 3.921040 7.322008 11.352663 -3.735832 10.252494 6.308483 6.788153 4.738638 8.235353 6.796962 -10.672447 1.874255 1.843481 4.920160 8.058422 -0.464652 -25.664145 2.592537 2.715468 11.077898 -0.693152 13.310451 -7.351061 6.901571 1.698299 1.410932 3.511316 -2.167379 7.728563 -3.152963 2.304699 -16.238895 5.901975 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.052527 -0.090404 0.792626 -2.300061 -1.447534 -0.082748 1.913271 -1.512628 -1.132389 1.700174 0.822542 -1.431020 -1.315936 2.214402 -0.096493 -1.453019 0.690593 -0.586759 -0.745718 -0.236884 -1.292643 1.058481 -0.680369 -2.129647 1.250809 -0.568072 0.103798 2.699861 0.349790 0.226241 -0.255803 -1.080040 0.373199 3.899357 0.904886 -0.654582 -0.385979 5.204792 -3.344788 3.210255 -2.439761 -2.258656 5.008795 -0.741858 -0.855135 -3.331870 -2.104327 1.969161 -1.092252 -1.579331 0.114656 -0.498139 0.827907 -2.312115 -0.716948 3.541346 -3.884568 1.007746 1.834899 -1.549612 -2.350659 -1.202766 -0.155580 0.128445 -2.762744 -2.742767 0.010956 -0.732795 -0.636746 0.105164 -2.706354 -2.471580 3.467453 1.049469 -0.556254 0.673263 -0.884387 -2.369356 1.510566 0.254846 -2.470204 -1.504549 0.297060 -1.056513 2.381735 0.215801 2.226940 -4.723854 0.160426 -4.920982 0.948041 -3.329553 2.097608 3.778972 -1.724963 2.514541 0.518631 1.266833 0.137627 0.154810 2.437473 0.787652 1.309566 0.595119 2.454065 2.254896 -1.975338 -3.073897 -1.876901 -1.430118 0.672382 -0.890095 -4.657705 1.697924 -2.102308 -0.302356 -0.285818 0.301507 -1.033233 3.269491 -2.695647 1.032107 1.261393 -1.014760 1.563449 2.702968 -0.199592 -0.025768 -1.036318 1.835373 0.170629 1.987487 -0.812722 2.639279 -1.414057 -2.926952 -1.445625 0.125934 1.221319 -2.523302 -3.602124 -3.728867 -0.874065 1.069480 -1.735085 2.013309 5.669059 -1.822868 -2.333766 2.624573 0.810141 1.219458 1.929003 0.940953 4.593198 -2.125981 0.097473 -0.409690 -0.458955 1.025440 2.330164 -1.132316 -2.346944 2.280387 -0.824084 -2.154600 4.796755 0.032766 -0.615622 1.096622 0.107336 -1.032869 -3.065612 4.409318 -1.189362 3.449702 -0.747485 4.486917 -1.314934 -1.472401 1.357757 -1.178777 -0.501922 -3.378873 -0.131657 0.147845 1.782594 -1.924401 -2.457073 -0.932680 -0.461464 -0.900448 3.221880 -0.690386 -0.157643 0.103351 -0.245813 1.557226 2.025836 -1.384664 0.195556 -3.036560 1.788021 1.929802 -0.127667 -4.259199 -0.857040 -0.495841 -1.156531 0.061508 0.380335 2.026164 -1.943939 -0.481198 1.839409 -0.015240 -0.346478 0.339739 -4.106591 1.385658 -0.185891 0.635295 1.340225 3.790674 3.002158 2.179101 0.170307 0.994227 -0.794228 -0.567403 -2.846545 0.695500 -0.099717 1.433132 1.936138 2.541289 1.638836 1.474559 2.039782 0.840176 0.609825 2.899592 1.820466 4.010651 -0.327948 -1.426072 1.144052 -0.376710 3.119202 3.411367 0.150109 -1.997530 1.689112 -0.401206 -2.004683 -2.417589 -0.329445 -0.418615 -1.007776 2.847077 1.280247 -0.494231 -0.712708 5.262042 -0.753679 -5.770900 2.105801 1.205933 2.070353 1.973544 -0.481321 1.803130 2.282030 0.197102 1.748269 2.042907 2.157559 -2.876956 0.081483 0.462564 1.355311 1.783910 0.841311 -6.305306 0.312984 0.817331 3.428250 0.593694 3.250260 -1.535351 0.562650 0.471117 -0.046820 0.480132 -0.465573 1.564214 -1.763136 0.582068 -4.038689 0.163606 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = 2.808971 -0.733189 2.970426 -3.779323 -2.162167 -0.478842 6.196843 -4.901773 -2.358512 8.233401 1.330902 -3.417217 -2.342861 4.363181 -0.393737 -1.712200 1.214492 -0.398919 -1.205060 -0.580058 -1.983132 2.341211 -1.748179 -4.791781 2.267928 -1.062977 2.732589 6.278243 -2.238163 3.792852 0.920862 -3.492822 1.686778 8.640118 2.858429 0.391938 -3.483790 10.465233 -10.712831 10.147649 -7.887722 -7.853759 12.827635 -1.343198 -0.396688 -7.725559 -2.729686 5.152908 -0.382347 -6.800304 -1.257409 -0.542017 3.477734 -6.608117 -3.231272 6.177665 -7.282495 -0.774579 4.015806 -7.014636 -8.340751 -1.831266 1.378570 3.115274 -9.760383 -5.601658 -0.041331 -2.720037 -0.646995 1.045034 -6.145664 -6.168542 5.197158 1.121948 -1.925353 1.064115 -2.371231 -4.071386 4.387732 2.043785 -4.854656 -4.333663 -0.562840 -4.912378 2.427092 2.612171 7.759917 -11.830225 1.842599 -10.871116 4.391527 -5.825785 4.554250 7.394577 -2.241194 7.784033 1.659877 5.953480 0.693224 -1.240825 4.198485 4.161467 5.084321 2.089676 6.522380 7.613525 -6.513397 -9.673317 -7.633098 -3.681684 4.269174 -3.915109 -10.367997 3.530687 -4.432187 -0.983170 -0.439228 -0.911976 -2.098197 10.249856 -10.539552 5.182401 3.483637 -1.773229 2.918931 4.837100 -0.100215 0.749748 -0.899667 3.963537 -0.657507 3.690476 0.529307 6.874036 -6.186934 -2.420347 -0.297087 2.477135 2.805779 -5.719239 -6.783182 -12.132062 -2.438163 6.385625 -3.953733 3.419367 12.240096 -3.908363 -6.729994 4.301974 0.793241 -0.848195 2.219898 2.445356 10.364926 -5.363046 -0.152699 -1.716305 -0.318988 4.705938 13.361873 -1.868398 -6.484423 7.397079 -3.712860 -6.776690 10.864917 -0.461080 -1.047591 0.270344 1.339633 -2.433193 -4.163358 8.744411 -7.485621 7.679710 -6.481832 9.398043 -3.823354 -0.808460 1.397659 -10.369635 -3.448479 -8.986662 0.300160 -1.105583 6.031892 -5.901346 -4.612811 -3.844865 -3.141678 -1.261879 9.002013 -9.160265 -0.844190 0.328278 -1.727501 6.676362 2.323354 -2.530964 -2.439063 -5.796484 2.657446 4.359186 1.068955 -9.854063 -4.405664 -2.826656 -2.957742 -1.498078 0.789795 5.795693 -5.578082 0.654267 4.143270 -0.651629 -2.714619 -0.989288 -10.561071 3.014836 1.353017 4.045991 2.319017 10.013715 6.657727 5.961614 0.316694 4.077984 -0.834510 -2.863065 -9.883463 3.567114 1.291295 1.137269 4.020142 6.949943 3.439732 3.853471 5.100843 1.361952 1.700924 7.262930 1.765881 8.439545 -2.902004 -2.458399 3.575727 1.100111 6.034106 6.262565 3.334460 -4.846317 3.390097 -3.941626 -7.326133 -1.247833 -0.127891 -0.834284 -0.823112 6.701894 5.978714 -0.903513 -2.277582 12.512769 -1.119993 -14.956737 4.605236 2.950605 5.242805 6.710789 -2.592265 6.104368 5.164851 3.653297 4.564388 4.631905 4.240148 -8.823576 0.537134 1.231935 3.630408 8.845843 0.603879 -18.643434 0.325041 0.675540 9.102430 -1.347141 11.597415 -5.565850 4.135363 1.164160 -0.467344 1.768791 -1.045906 4.731769 -0.408347 0.996175 -13.205446 1.962469 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.275705 -0.383312 0.889293 -2.255314 -1.637141 0.318544 0.692042 -1.883532 -0.673120 1.460287 0.900509 -1.387936 -0.818971 2.452703 -0.443522 -1.511624 0.392263 -1.076883 -0.249731 0.028979 -0.651765 1.154442 -0.816968 -1.189881 0.687173 -0.314420 0.203647 1.950079 0.795384 0.052499 -0.889855 -1.093371 -0.054113 3.629084 1.261392 -0.619842 -0.116995 5.041839 -2.249425 2.787720 -2.715975 -2.353028 3.876688 -0.570486 -0.780403 -2.640347 -1.721658 1.820580 -1.465446 -1.068351 0.680611 -0.515852 0.754537 -1.650696 -0.531478 2.437229 -3.894568 1.387705 1.548687 -0.831918 -1.758497 -1.227648 0.215960 0.475856 -2.338590 -2.084504 0.669324 -0.081060 -0.986201 0.037086 -2.037927 -2.581251 3.408145 1.067144 -1.066614 0.392313 -0.267822 -2.472186 1.787546 -0.526117 -2.831887 -1.079795 -0.169791 -1.610175 2.639469 0.094084 2.130825 -4.821543 0.933628 -4.935782 1.068912 -2.902333 1.855982 3.592695 -2.469933 2.071503 0.835783 2.124134 0.964821 -0.050110 2.556585 1.302929 0.812797 0.830792 2.336259 2.030051 -1.487391 -2.155569 -1.948858 -1.873144 0.344408 -1.090031 -5.073815 1.437795 -1.672746 0.189887 -0.524549 0.299349 -0.943303 2.968410 -3.371015 0.238610 0.650464 -0.784938 1.526468 2.609103 -0.500961 0.385880 -1.227532 2.449682 -0.466761 1.429669 -0.632342 2.215665 -1.633997 -2.089393 -2.234850 0.625222 1.479065 -2.316146 -3.490163 -3.939668 -0.883941 0.786195 -1.456673 2.833358 5.107035 -1.770272 -2.748076 3.038402 0.457258 0.718923 2.645698 0.601059 3.948124 -1.748574 -0.139826 -0.782848 -0.563282 0.156809 1.007375 -0.463931 -1.619812 1.934622 -0.860892 -1.744131 4.200942 0.110793 -1.217831 -0.123403 0.161941 -1.459944 -2.649131 4.022849 -1.167225 2.820946 -0.603886 4.315328 -1.239099 -1.606229 1.214258 -2.069447 -0.418494 -2.692136 -0.376001 -0.223525 2.048721 -2.267593 -2.078792 -0.714902 -0.408518 -1.227448 2.647534 0.189490 0.080620 0.604402 0.218186 2.075602 2.599751 -0.813036 0.153564 -2.734204 1.289572 2.284403 -0.451573 -3.425998 -0.752668 -1.037772 -0.844146 0.345483 0.201761 1.904241 -2.327399 -0.897451 0.823825 0.299063 0.707858 0.626790 -4.368219 1.346738 -0.297748 0.826836 1.440737 3.291555 2.836888 2.484222 0.959152 0.732407 -0.087630 -0.338393 -1.871291 0.320387 0.629060 1.254201 1.586323 2.926671 1.763873 1.355031 1.842290 1.505115 0.410084 2.889592 1.205601 4.255549 -0.669187 -0.947030 0.417435 -0.138764 2.888054 4.066668 -0.319944 -0.816521 1.491567 -0.064142 -1.707444 -2.511942 0.019102 -0.662352 -0.467081 1.558266 1.003841 -0.271443 -0.881896 4.658929 -0.500897 -5.192726 2.169464 1.159244 1.858297 1.812922 -0.403090 1.238320 1.792627 -0.920461 2.320407 2.170944 1.898377 -2.524155 -0.102978 0.319054 1.779180 1.361389 1.246496 -4.437242 1.071814 1.096846 3.385421 0.896900 2.608638 -1.788697 -0.197435 0.698537 -0.602923 0.245907 0.001501 1.817555 -1.478542 0.552571 -3.277082 -1.018460 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 2.716681 -0.069691 2.551946 -4.457033 -3.157376 -0.161214 3.324604 -6.257638 -2.933857 8.710625 2.325751 -4.236273 -1.151098 5.004897 -1.241836 -2.315239 1.067742 1.617472 -1.455741 -1.658948 -1.834509 2.071862 -1.903125 -4.912229 1.519028 -1.292621 2.766217 4.649361 -1.720058 3.051495 0.120645 -3.400560 2.007847 9.275469 3.406387 0.133084 -3.862911 9.333419 -7.575523 8.343508 -8.794411 -7.215887 10.854119 -1.152644 1.289967 -7.611019 -3.436562 5.172937 0.185890 -6.130643 -1.771289 -1.452791 3.422639 -6.544986 -3.371988 5.417000 -6.051652 0.362995 4.661555 -7.642378 -8.306127 -1.529990 2.623344 2.893188 -8.777215 -6.053950 -0.001830 -0.197240 -0.526465 1.144042 -6.374348 -7.623160 4.632250 0.786007 -2.573053 0.713594 -3.110328 -4.797936 4.232898 1.790447 -5.275951 -4.237375 0.302718 -4.049818 2.233787 2.651701 7.946555 -12.311769 2.695020 -11.678721 4.070707 -4.635489 5.344329 7.397110 -3.445717 5.655312 2.004053 6.075120 1.521671 -0.037461 4.663483 3.091105 3.360846 1.433556 6.610308 6.779941 -5.415442 -8.713223 -5.429079 -4.875207 3.865038 -3.608470 -9.627298 3.781104 -5.151498 -0.730559 -1.760405 -0.876872 -1.303919 9.752257 -10.641950 1.181149 3.713652 -2.034763 3.554491 4.649858 -0.038174 1.519893 -1.613922 4.011441 -0.830745 2.050073 0.241166 6.975270 -5.676830 -4.001150 -2.310110 2.861897 3.332469 -6.237090 -7.512331 -11.193998 -2.766866 5.222817 -4.075181 4.201277 11.491358 -4.620386 -7.417363 4.732532 0.541422 -2.352299 4.177265 2.518625 11.129230 -6.426994 0.737696 -1.630635 -0.568710 4.551813 9.509476 -2.843874 -6.752273 7.183212 -3.933059 -6.979690 10.170364 -0.523903 -1.434219 -0.106060 1.897051 -1.949492 -3.110157 7.590216 -7.517596 7.280596 -5.781752 9.747239 -4.693217 -2.016411 1.525003 -9.244090 -3.804426 -5.540605 0.764092 -1.129945 7.412122 -5.693618 -4.966870 -2.072296 -3.549722 -1.359214 9.266973 -6.859828 -0.775352 0.835817 -2.070676 6.770923 3.271656 -2.537205 -1.596983 -4.606191 2.917405 5.510917 1.693864 -9.334074 -4.472572 -4.274020 -2.824464 -2.494017 0.736345 6.675194 -5.080770 0.346809 3.384003 -1.148686 -1.213592 -1.012300 -7.924953 3.914926 -0.810665 3.829431 1.631118 10.522095 5.859450 6.931153 0.685614 2.070143 -0.593979 -3.792930 -7.955840 3.453649 1.718038 1.165257 4.350325 6.134268 3.411932 4.505710 5.575087 0.520451 2.588380 8.076930 0.678985 8.238795 -3.396003 -0.303974 2.831814 0.216164 6.543954 8.079063 2.037869 -5.080390 3.002050 -3.907038 -6.756194 -2.782168 -0.422716 -0.315921 -2.058835 4.644215 6.671892 -0.672889 -3.316958 12.254069 -0.654834 -13.419573 6.137716 2.650236 4.730160 6.724407 -3.072749 5.667749 4.208313 3.854185 3.747695 5.521830 5.010384 -9.080520 -0.678312 1.013633 4.756242 8.057908 1.071954 -15.852256 2.123974 1.957938 8.887957 -1.459253 9.259573 -6.290061 3.823691 1.510659 -0.064621 1.600888 -1.287685 4.459189 -1.245490 0.025465 -10.757365 1.464847 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 1.015776 -0.228407 0.816683 -2.118206 -1.423910 0.095337 0.706780 -1.853649 -0.758186 1.601662 0.950845 -1.428366 -0.533419 2.303796 -0.442666 -1.279426 0.466635 -0.482035 -0.419879 -0.122610 -0.548766 0.989747 -0.692036 -1.317228 0.642897 -0.307155 0.332305 1.677471 0.396694 0.046927 -0.659966 -1.006249 0.236773 3.378245 1.090192 -0.408100 -0.483137 4.159260 -1.932986 2.560592 -2.714546 -2.018511 3.486551 -0.542653 -0.338285 -2.718208 -1.734673 1.701295 -0.831260 -1.275758 0.219969 -0.498594 0.764438 -1.851101 -0.657984 2.214167 -3.082525 1.039814 1.612777 -1.250539 -1.881602 -0.967587 0.413124 0.359170 -2.280564 -2.032844 0.420510 0.014774 -0.755826 0.182852 -1.946751 -2.535491 2.810712 0.774105 -0.939048 0.434341 -0.546034 -2.353841 1.598538 -0.231133 -2.345379 -1.147327 0.052653 -1.247427 2.061735 0.127996 2.064008 -4.425797 0.784637 -4.424386 1.026895 -2.433197 1.793485 3.157231 -2.137777 1.776783 0.685237 1.873335 0.730896 0.218457 2.232338 1.076168 0.744609 0.567312 2.270528 1.838970 -1.370887 -2.216981 -1.538361 -1.804326 0.542709 -1.042509 -4.304352 1.351978 -1.646154 -0.057129 -0.601283 0.133392 -0.601770 2.869344 -3.006828 0.036852 0.949400 -0.779236 1.252613 2.282418 -0.328025 0.289912 -1.204916 2.001100 -0.317809 1.141823 -0.490312 2.146432 -1.548418 -2.158603 -1.716623 0.501679 1.194450 -2.163508 -3.161309 -3.547093 -0.845791 0.812400 -1.391758 2.213411 4.370387 -1.644623 -2.632499 2.571701 0.705427 0.226798 2.207554 0.656840 3.745079 -1.865276 0.059505 -0.669411 -0.451071 0.558739 1.111104 -0.717437 -1.831670 1.881016 -1.041874 -2.310353 4.004656 0.045030 -0.877150 0.160254 0.271469 -1.216537 -2.137640 3.409994 -1.210454 2.695393 -0.912828 3.861601 -1.312437 -1.426893 1.002671 -1.843176 -0.576007 -2.098871 -0.149283 -0.145725 2.130601 -1.954665 -1.975914 -0.481648 -0.611312 -0.936330 2.691139 -0.411346 -0.045772 0.430545 -0.064811 1.791377 2.077914 -0.941655 0.187028 -2.186571 1.208095 2.152250 0.004941 -3.227427 -0.780849 -1.129871 -0.848616 -0.149499 0.231435 1.940236 -1.920725 -0.665816 0.943991 -0.003563 0.369804 0.210748 -3.463275 1.278375 -0.526094 0.827179 1.032113 3.235940 2.472856 2.268977 0.590629 0.436524 -0.149343 -0.627402 -1.983587 0.478784 0.440662 0.947150 1.506705 2.435798 1.545190 1.340368 1.857662 1.005278 0.585642 2.772649 0.963613 3.543458 -0.570560 -0.605163 0.592107 -0.226454 2.663100 3.633407 -0.025584 -1.082063 1.309294 -0.250970 -1.718562 -2.189178 -0.164974 -0.387143 -0.779253 1.464023 1.180522 -0.334622 -0.879010 4.252891 -0.399296 -4.552530 2.106733 1.006446 1.677025 1.688919 -0.535372 1.345776 1.618020 -0.249905 1.783869 1.908588 1.857432 -2.500319 -0.436532 0.307876 1.669102 1.638615 1.038433 -4.186752 1.060870 0.995877 3.099919 0.419226 2.346715 -1.715478 0.265599 0.567125 -0.239735 0.273239 -0.196815 1.506070 -1.321788 0.105973 -3.013005 -0.541921 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = 0.928672 -0.097081 1.002403 -1.085157 -0.449015 -0.511303 2.547512 -1.071266 -0.946258 2.937445 0.346232 -1.217020 -1.065073 1.360257 0.278918 -0.559351 0.622169 -0.728040 -0.661125 0.158746 -1.052106 0.737933 -0.544424 -1.473141 1.221479 0.118819 0.576075 1.998600 -1.054519 0.518367 0.333902 -0.985590 0.655611 2.885231 0.632178 -0.198620 -0.895588 3.341590 -3.504187 3.269719 -1.910692 -2.263756 3.940590 -0.554581 -0.027518 -1.718165 -0.219416 2.179212 -0.222139 -2.514709 -0.054796 0.233061 0.790875 -2.455349 -0.924084 2.323969 -2.652205 0.086933 1.550548 -1.742355 -2.704088 -0.662318 0.095533 0.366482 -2.636935 -2.016460 -0.187705 -1.425957 -0.419240 0.291935 -2.114601 -1.743036 1.415333 0.395245 -0.378150 0.728106 -0.792131 -1.073890 1.512450 0.207278 -1.471928 -1.452574 -0.189499 -1.464917 1.307938 0.700368 1.670590 -3.689530 0.518209 -3.304638 1.273768 -2.005611 1.383529 2.812575 -0.530328 2.496042 0.216257 1.358960 -0.392632 -0.526183 1.496075 0.830478 1.446891 0.794857 1.781895 2.256509 -2.570038 -3.206557 -2.352272 -1.015223 1.375678 -0.915194 -1.976749 1.251865 -1.319242 -0.077082 0.547385 -0.230031 -0.867876 2.651647 -3.142021 1.393102 1.177446 -0.654611 1.162998 1.694857 -0.077574 -0.123367 -0.570258 1.396697 0.175895 1.333876 -0.015302 2.265115 -1.252124 -0.829516 0.284516 0.390111 0.877829 -1.639398 -2.313664 -3.958873 -0.452972 1.403382 -1.538488 1.303660 3.712254 -1.134099 -1.611401 1.729628 0.035322 0.338531 0.288158 0.686893 2.854960 -1.696609 -0.168552 -0.164276 -0.176603 1.493536 3.806275 -0.560997 -2.338371 2.219518 -0.943342 -1.348064 2.942907 0.424052 -0.209240 0.318240 0.314247 -0.769707 -1.497348 2.821010 -2.000267 2.041310 -1.485646 3.210958 -0.854988 -0.275416 0.792427 -2.342853 -0.670313 -3.184120 -0.504850 0.113086 1.337195 -1.892072 -1.573222 -1.147943 -0.383504 -0.651925 2.745123 -2.798540 -0.359875 -0.137698 -0.232079 1.897264 0.589272 -1.247470 -0.445659 -2.071591 0.857701 0.736610 0.228125 -2.801226 -0.974807 -0.475677 -1.122264 0.381462 0.174367 1.582126 -1.637417 0.044909 2.077257 -0.138359 -1.187724 -0.318053 -3.044472 0.729259 0.715175 0.854233 1.285490 3.216782 1.844785 1.618451 -0.109691 1.230440 -0.679226 -0.279272 -3.631110 0.854393 -0.403007 1.026074 1.462517 1.306103 1.322435 0.981619 1.365755 0.218326 -0.084168 2.409849 0.945148 2.239466 -0.391511 -0.884151 1.635964 0.181881 1.905590 1.179572 -0.036842 -1.888656 1.424922 -1.090800 -2.152259 0.253676 -0.212019 -0.504914 -0.244206 1.651630 1.337847 -0.620619 -0.292583 3.860750 -0.988015 -4.501721 1.273603 1.049015 1.911739 1.828162 -0.383196 2.129768 1.445691 0.785861 1.407735 1.316323 1.544432 -2.499992 0.591884 0.442185 1.017857 2.418936 0.361153 -5.743028 -0.739084 -0.105985 2.509488 -0.126779 3.101929 -1.411304 1.248782 0.236472 -0.074729 0.708586 -0.589612 1.489616 -0.047002 0.249406 -3.962988 0.980670 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 2.807760 -0.124629 2.672961 -4.087597 -3.066507 0.151720 3.114820 -5.494825 -2.823660 8.363521 1.698468 -4.450407 -2.032316 5.271741 -1.113367 -2.449302 0.811525 -0.225476 -1.075148 -1.629025 -2.589300 2.004040 -2.039096 -4.138604 1.723664 -0.988846 2.265655 4.502466 -1.538063 2.315308 0.125771 -3.296166 1.541695 9.275800 3.649159 -0.416898 -2.967419 10.847423 -7.130515 9.214571 -8.508393 -7.649431 11.215426 -1.127046 0.325869 -6.708363 -2.451941 5.783259 -1.603531 -4.822783 -0.785861 -1.152744 2.474393 -5.933140 -3.310575 5.802331 -7.652996 2.236835 4.330243 -6.744821 -8.246855 -1.964082 1.997943 2.502531 -7.843626 -5.533410 0.121487 -0.680159 -1.591494 0.766429 -6.696654 -6.482235 4.400351 1.436026 -2.342215 0.711816 -2.873954 -2.916336 3.968726 0.263657 -6.058021 -4.058276 0.117354 -4.845327 3.268230 3.177338 7.580445 -12.500264 2.763118 -12.503427 3.759020 -5.159531 5.143085 8.137265 -3.327222 6.289132 1.779486 4.764262 1.452875 -0.351556 4.651112 2.530548 2.733158 2.321913 6.340569 7.075873 -5.243754 -8.143656 -5.430744 -4.421946 2.926581 -2.397385 -8.788151 3.825723 -5.656818 0.545288 -1.256112 0.647009 -2.505317 7.666592 -10.847184 0.575170 2.518067 -2.049051 4.794316 4.966239 -0.185238 1.847191 -1.731667 4.447838 -0.807971 2.646422 -0.281556 6.749892 -4.458488 -3.713271 -3.849250 2.768984 3.910331 -5.662047 -7.774619 -11.702523 -2.820431 4.497560 -4.456370 6.213945 12.364487 -4.464785 -6.932830 5.558363 -0.897853 -0.310415 4.822060 2.245402 11.188968 -5.653069 0.188482 -0.935208 -0.898377 3.599273 8.369011 -2.365390 -5.829072 6.780111 -2.727127 -3.751357 8.583220 -0.193882 -2.151917 -0.934617 1.504337 -1.962552 -4.526796 7.923955 -7.013216 6.467406 -4.546659 10.360694 -4.165397 -2.547891 2.202806 -10.017188 -2.890048 -5.718129 0.126576 -1.990264 6.969679 -6.068021 -5.041404 -1.998329 -2.939118 -2.217526 8.507617 -4.621758 -0.617644 1.173380 -1.351248 7.523075 3.955491 -2.559901 -1.193050 -5.979951 2.440704 5.413540 1.173006 -9.142044 -3.738940 -3.310258 -2.964457 -0.646669 0.649877 5.627566 -5.776228 0.231823 3.417993 -0.444515 -0.003295 0.179666 -8.648340 3.826817 -0.066765 3.562739 3.114683 10.480037 5.670120 6.756866 1.122994 3.015891 -0.936522 -3.127192 -6.697862 2.325696 1.799929 2.422535 4.418491 5.703622 3.881723 4.086162 5.049798 0.816178 0.863928 7.541349 0.860498 8.992600 -3.991636 -0.681025 2.433704 0.299778 6.461996 8.429799 0.184184 -5.271321 3.721630 -3.773226 -6.010677 -3.414787 -0.117120 -0.994129 -1.302166 4.470923 6.412125 -0.487085 -2.886142 12.930194 -1.456054 -14.235261 6.405840 3.001248 4.692391 6.495715 -2.244789 4.696943 4.580725 2.016494 3.837688 6.096556 4.988956 -8.768096 1.023793 0.746555 4.832226 6.836378 1.121577 -15.859046 1.566683 2.175209 8.870531 -0.051501 8.983251 -5.734134 2.159524 1.681741 -1.038364 1.325091 -0.474552 5.245952 -0.653831 1.162048 -9.909712 0.654423 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 1.030368 -0.259394 0.532967 -1.525276 -1.171528 0.359718 0.098993 -1.459459 -0.673165 1.347103 0.534104 -1.053921 -0.642512 1.728778 -0.334996 -1.204632 0.214781 -0.711246 -0.122822 -0.095323 -0.754569 0.744480 -0.694538 -0.758653 0.486906 -0.174221 0.117344 1.023972 0.462186 -0.135200 -0.665963 -0.849152 -0.119037 2.742539 1.086984 -0.462358 -0.111029 3.760037 -0.964190 2.007345 -2.042301 -1.864334 2.610473 -0.422951 -0.315896 -1.464198 -0.803738 1.537328 -1.151388 -0.623762 0.492240 -0.450482 0.314740 -1.149452 -0.488894 1.605326 -2.813656 1.406339 1.204848 -0.680401 -1.510966 -0.908081 0.305726 0.255880 -1.473192 -1.518581 0.454458 0.190561 -0.893466 -0.025286 -1.706482 -1.854359 2.080328 0.885676 -0.815726 0.220287 -0.366111 -1.228883 1.171097 -0.615087 -2.276751 -0.824297 -0.060130 -1.280094 1.944726 0.409180 1.628893 -3.638009 1.092854 -3.878559 0.691002 -1.870220 1.497709 2.784086 -1.699180 1.415084 0.688711 1.426399 0.697223 -0.041297 1.884470 0.594761 0.103558 0.752097 1.604121 1.414382 -1.017941 -1.439758 -1.132478 -1.389151 0.149256 -0.486814 -3.086278 1.140713 -1.478561 0.626662 -0.458777 0.651617 -0.859419 1.505960 -2.887913 -0.618041 0.259411 -0.624719 1.630867 1.765879 -0.342553 0.478733 -0.937751 1.799617 -0.400294 0.812165 -0.550959 1.693270 -0.811970 -1.299649 -2.081508 0.527729 1.342562 -1.685887 -2.637437 -2.906565 -0.743589 0.464709 -1.221759 2.687771 3.804930 -1.433264 -1.858551 2.347408 -0.386891 0.694395 2.231658 0.447005 2.917768 -1.298569 -0.096035 -0.264628 -0.434332 0.049302 -0.021205 -0.382275 -1.116731 1.421971 -0.442748 -0.189443 2.444884 0.135792 -1.073396 -0.434745 0.170876 -0.877166 -1.888684 2.655357 -1.091018 1.754239 -0.111862 3.262263 -0.912228 -1.183073 0.981236 -1.792798 -0.319362 -1.517981 -0.293822 -0.529433 1.597826 -1.806596 -1.534692 -0.218819 -0.314443 -1.062875 1.902053 0.812775 0.059088 0.589505 0.173229 1.914182 2.030837 -0.573211 0.106617 -2.042797 0.860149 1.660718 -0.370119 -2.126424 -0.578586 -0.776377 -0.683097 0.562322 0.123064 1.329667 -1.735929 -0.577868 0.551636 0.386720 0.899321 0.673251 -2.699542 1.030778 -0.197021 0.525336 1.272350 2.561425 1.764327 1.988394 0.799929 0.491568 -0.109085 -0.231685 -0.978183 0.014785 0.442387 1.333064 1.250284 1.660239 1.406950 1.066271 1.261805 0.842590 0.137569 2.175737 0.638373 3.197678 -0.843696 -0.435325 0.237915 -0.171515 2.103894 3.019626 -0.990532 -0.658178 1.176299 -0.273645 -1.148828 -1.835083 0.126096 -0.525320 -0.346532 0.622054 0.957483 -0.028284 -0.796133 3.536314 -0.549131 -3.813872 1.887085 0.881432 1.350156 1.464018 -0.163529 0.823400 1.180064 -0.795561 1.499753 1.879944 1.498893 -1.934218 0.387243 0.166756 1.502811 0.630600 0.875798 -2.796461 0.835899 0.929891 2.392981 0.851273 1.435824 -1.329931 -0.359846 0.605881 -0.626092 0.197118 0.123124 1.531781 -0.702181 0.429615 -2.007978 -0.766692 +PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = 0.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = 4.793849 -0.291597 4.056533 -6.563714 -4.673786 -0.820380 7.954173 -7.796304 -4.176476 14.145452 3.125061 -6.409771 -1.896184 7.807245 -0.707642 -1.952795 2.940164 0.186031 -2.063614 -0.852830 -3.595823 3.331691 -2.921509 -7.002105 3.174103 -0.480938 3.310725 7.648478 -4.461067 3.426637 0.184468 -4.859048 2.546859 13.610641 4.563789 -1.329412 -5.643711 15.834700 -14.125607 14.173407 -12.589349 -10.316015 17.086888 -2.013372 1.592426 -11.048932 -4.428274 8.864933 2.237345 -10.977385 -2.141195 -1.410005 4.989723 -10.275796 -5.615202 9.116835 -9.709006 -0.493190 7.530651 -10.736638 -13.064533 -1.989360 3.848968 4.135009 -15.143811 -9.253603 -0.088866 -3.137464 -0.430707 1.161732 -10.054745 -10.715172 5.339710 1.720621 -2.941079 1.428350 -4.728058 -7.654105 6.661883 2.640628 -8.777488 -6.139428 -0.980184 -8.729618 4.100675 2.731401 12.600569 -18.496755 5.015974 -18.400128 5.253675 -8.227832 7.000313 12.394043 -3.479251 9.165125 2.100450 9.425887 1.654267 -0.167736 6.792702 5.363059 5.230350 2.427604 10.241158 11.411965 -9.145981 -13.543107 -9.015906 -6.378118 5.972373 -4.625897 -12.742208 6.385853 -7.037335 -0.764498 -1.029825 -0.833908 -2.634055 15.709518 -14.531926 3.704651 5.483491 -3.045619 4.365894 8.004541 -0.101280 0.798196 -2.881746 5.706400 -0.385727 4.713970 0.866062 10.523305 -9.258229 -4.481381 -1.221883 3.611157 4.647090 -8.813689 -10.993267 -18.484655 -3.119576 8.056627 -6.891802 6.723922 18.341823 -7.558880 -10.161732 7.008957 0.964663 -3.216477 4.281439 3.167071 16.601335 -9.048956 0.367660 -1.925570 -0.851634 6.113625 17.277086 -3.889413 -9.813229 10.449184 -6.336763 -11.483924 17.912251 1.104488 -1.366740 2.478664 2.445009 -2.442328 -6.677425 12.069207 -11.426477 10.302615 -7.762993 14.560943 -5.017123 -1.622421 3.192616 -11.960752 -4.638837 -10.471783 0.374264 -0.900357 10.053721 -7.267141 -7.163985 -3.527306 -5.165524 -2.515104 14.140324 -10.872528 -0.956375 1.155335 -3.140379 9.429876 4.202297 -4.505167 -2.515971 -7.826813 4.549723 6.616287 1.165136 -13.909099 -6.889144 -5.465879 -4.390658 -2.972653 1.210170 9.725349 -8.854501 0.241802 7.181050 -0.598795 -3.263196 -1.571440 -13.583111 5.223403 0.139951 6.369235 3.705337 16.191636 8.114705 11.041825 0.122427 3.808034 -2.655656 -3.997083 -14.716133 4.188977 0.807794 2.609579 6.466956 8.416249 5.209416 6.542127 7.511829 -0.106811 3.437241 11.712088 1.766947 12.231759 -4.361058 -2.156383 5.793830 0.159658 9.461801 10.448254 2.600882 -8.672813 4.617315 -6.371129 -11.870295 -2.511270 -0.145832 -0.623086 -1.974013 6.487819 9.738946 -0.754319 -4.075782 18.033279 -2.019028 -22.453922 7.988898 3.777182 7.712055 11.772264 -3.238098 10.344539 5.853338 6.317763 7.014152 9.176195 6.912813 -13.146730 0.062396 2.204186 6.300602 11.706345 1.657133 -27.194109 1.969719 1.215082 12.409729 -2.218087 15.760993 -9.373642 7.079794 2.456331 -0.669228 2.420692 -2.215025 7.002696 -1.401186 0.286089 -18.162188 4.209700 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 1.276949 0.001676 1.040170 -1.940208 -1.658296 0.064421 1.052336 -2.103169 -0.970923 2.662875 0.928573 -1.660076 -0.787713 2.192187 -0.529155 -1.150710 0.429370 -0.244495 -0.453743 -0.432067 -0.849309 0.874039 -0.779298 -1.553199 0.667546 -0.283787 0.576285 1.820263 -0.075849 0.356312 -0.381073 -1.155243 0.491327 3.654731 1.283206 -0.463299 -0.881235 4.486184 -2.466526 2.915743 -3.305347 -2.649942 4.054422 -0.512218 0.120674 -2.888526 -1.369848 2.173428 -0.666568 -1.747153 -0.080878 -0.498094 0.976531 -2.225337 -1.104019 2.380376 -3.241098 1.074098 1.771189 -2.106493 -2.679367 -0.718745 0.687785 0.782448 -2.732583 -2.328278 0.201459 -0.079182 -0.635207 0.286449 -2.320671 -2.712232 2.446168 0.585170 -0.952938 0.364764 -0.851860 -1.962713 1.707269 -0.173566 -2.618351 -1.395329 0.033464 -1.651741 1.707493 0.613939 2.690458 -4.896229 1.070369 -5.017621 1.302307 -2.329784 1.906656 3.269053 -1.752607 2.111832 0.735603 1.775062 0.824577 0.178620 2.152824 1.119075 1.054680 0.718941 2.379723 2.403819 -1.752953 -2.763978 -1.922602 -1.912408 0.821671 -0.913808 -4.054569 1.552204 -1.854495 0.369683 -0.466966 0.027332 -0.626650 3.321368 -3.634955 0.159699 1.085660 -0.795793 1.521973 2.249822 -0.211847 0.437329 -0.942190 1.929267 -0.302892 1.099984 -0.122443 2.510048 -1.672446 -2.141865 -1.715835 0.898283 1.425935 -2.270163 -3.183519 -4.215162 -0.867405 1.391825 -1.680393 2.202918 4.970484 -1.972884 -2.834079 2.385833 0.204128 -0.181444 2.129374 0.788767 4.334916 -2.178767 0.054029 -0.544421 -0.443241 1.021026 2.472143 -0.890902 -2.199392 2.384500 -1.079350 -2.348436 3.967631 0.154607 -0.787296 0.343186 0.422623 -0.918599 -1.996591 3.272172 -1.858815 2.762474 -1.241245 4.120901 -1.458383 -1.336338 0.965435 -2.472438 -0.860038 -2.040182 -0.030795 -0.196341 2.424693 -2.177287 -2.002980 -0.645774 -0.997873 -0.934088 3.293016 -0.972962 -0.088254 0.525916 -0.427342 2.298595 1.880486 -1.027924 -0.177405 -2.331447 1.216664 2.003146 0.134821 -3.710766 -1.338626 -1.341945 -0.969897 -0.109361 0.267819 2.329454 -2.023526 -0.302402 1.323341 -0.131397 0.107176 0.060079 -3.136500 1.382280 -0.323238 1.265496 1.072562 3.905073 2.422119 2.853882 0.459034 0.827887 -0.418233 -0.919223 -2.285373 0.640800 0.528684 0.961345 1.667370 2.340722 1.506071 1.568593 2.010036 0.602860 0.596657 3.074136 0.605830 3.735358 -1.429309 -0.441016 0.871901 -0.082088 2.698056 3.533266 -0.196080 -1.721505 1.294525 -0.895470 -2.177419 -1.722081 -0.052090 -0.331482 -0.621661 1.626955 2.132864 -0.188219 -1.084140 4.626526 -0.430610 -5.416590 2.479996 1.038784 1.792039 2.345954 -0.720391 1.743618 1.594134 0.463302 1.726511 2.466830 1.954581 -3.172318 -0.213122 0.427923 1.956189 2.012605 0.855467 -5.703344 0.669916 0.937976 3.255531 0.084528 3.137319 -2.318643 0.574676 0.725304 -0.339353 0.390109 -0.231828 1.706152 -0.960647 0.251874 -3.532660 0.047258 +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.075404 0.052272 0.085231 -0.076075 -0.070010 -0.099683 0.028694 0.036955 -0.054872 -0.102738 -0.093683 -0.044591 -0.236697 0.134328 -0.107103 -0.252584 -0.126204 -0.135034 -0.143532 -0.062572 -0.067560 0.066080 0.023858 -0.038602 0.150857 -0.025809 -0.039560 0.015485 0.063849 -0.298232 0.065676 -0.031751 0.123779 0.169779 -0.118419 0.161397 -0.021886 0.274179 0.349936 0.054384 -0.240025 -0.267922 0.187758 -0.090223 0.046135 -0.236827 0.045171 0.155767 -0.194008 0.081734 -0.069010 0.142841 -0.295422 -0.220446 0.028925 0.113900 -0.371937 0.392266 0.039366 -0.037702 -0.120028 -0.030407 -0.108501 -0.210656 0.262718 -0.132640 -0.082099 0.104508 -0.332358 0.179082 0.050142 0.048771 0.398992 0.026126 0.009194 0.208949 0.044841 0.207977 0.085288 -0.405231 -0.046442 -0.116207 0.245470 0.263323 0.123776 0.166507 -0.102650 -0.244801 0.018577 -0.138680 0.129189 -0.191920 0.087333 0.140901 -0.084206 0.285572 0.036401 -0.297863 0.015044 0.178024 0.186892 -0.051008 0.123424 0.113534 -0.047514 -0.101296 0.009458 -0.091529 -0.021255 -0.154989 -0.063415 0.111307 -0.223208 0.032455 -0.007219 0.318808 0.078369 0.152964 0.103739 -0.252736 -0.392861 -0.144825 0.145718 -0.044573 0.145112 0.041600 -0.035812 -0.066484 -0.137508 0.131769 -0.003087 0.046515 0.021213 0.088122 0.229167 -0.348496 -0.228628 -0.141124 -0.048828 -0.040798 -0.132739 -0.050057 -0.046299 0.088534 -0.125255 0.139164 0.321097 -0.035181 -0.143317 0.199219 0.067335 0.270432 0.125732 0.099360 0.173244 -0.040271 -0.069507 0.138512 0.011268 0.202259 -0.381144 0.016558 -0.190007 0.066838 0.138668 -0.045588 -0.081266 -0.116351 0.013030 0.040401 -0.051502 -0.143549 -0.092557 0.095493 0.290644 0.375339 0.002107 0.250590 -0.130386 -0.209911 0.027678 -0.119272 0.021681 0.008008 0.031164 -0.099397 -0.005961 -0.304460 -0.117691 0.055951 -0.120941 -0.076665 0.112985 0.136171 0.009120 -0.059669 0.052808 0.130699 0.081942 -0.137920 0.079998 -0.309615 0.025803 -0.014692 0.123705 -0.238873 0.110738 0.088042 -0.054153 0.271141 -0.012723 -0.074691 0.200545 0.009427 0.060895 -0.096973 0.023648 -0.101211 0.377129 -0.152790 -0.018002 0.039064 0.003204 0.155616 0.312462 -0.003309 -0.044351 0.106881 0.019953 -0.090606 0.232813 -0.063287 -0.094042 0.158459 0.094829 -0.041002 0.138000 -0.015668 0.216631 0.128739 -0.199730 0.198736 0.088775 0.321482 -0.319990 -0.097334 0.008030 0.014117 0.164974 0.168631 -0.363550 0.009951 0.179256 0.128317 0.132559 -0.087772 -0.107881 -0.042508 -0.185359 0.248860 0.025563 -0.110238 0.102689 0.184509 -0.055824 -0.171100 0.213133 0.052963 0.062104 -0.196982 0.039125 -0.135378 0.277570 -0.157976 -0.250373 -0.004397 0.148375 -0.205738 -0.075667 -0.009886 0.209845 -0.156614 0.128085 0.024004 -0.118554 0.182240 0.136106 -0.004526 -0.175145 -0.005268 -0.297145 0.013029 0.053401 -0.091561 0.137822 -0.030339 -0.008792 -0.095308 0.067744 -0.147836 diff --git a/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt new file mode 100644 index 00000000..f27f95cd --- /dev/null +++ b/src/test-suite/oracle/FA_llvm14_onDemand/ir2vec.txt @@ -0,0 +1,269 @@ +PE-benchmarks/subset-sum.cpp__main = 0.924499 0.059509 0.930847 -1.755324 -1.075853 -0.150583 0.954561 -1.438079 -0.636322 1.816882 0.611252 -1.166004 -0.467761 1.912170 -0.563287 -0.984242 0.239171 -0.643890 -0.534903 -0.485445 -0.376177 0.825567 -0.442134 -1.323018 0.615534 -0.450225 0.502832 1.472344 -0.169835 0.109657 -0.148232 -0.867660 0.537071 2.788555 0.706429 -0.194426 -0.752536 3.206522 -1.822567 2.150908 -2.569356 -2.169331 3.221769 -0.440939 -0.086311 -2.668782 -1.251328 1.401396 -0.221679 -1.092663 -0.199164 -0.208398 0.562867 -1.889662 -0.736586 1.809880 -2.526144 0.792923 1.182024 -1.526688 -1.946309 -0.724721 0.452848 0.396001 -1.894762 -1.744577 0.248740 0.015598 -0.744245 0.505636 -1.478467 -1.956687 2.189600 0.535274 -0.566896 0.499890 -0.531010 -1.808521 1.375230 -0.338132 -1.601973 -1.145735 0.281117 -0.841064 1.310258 0.332979 1.773786 -3.672652 0.529231 -3.411019 1.033492 -1.931076 1.456584 2.334574 -1.381637 1.810268 0.443830 1.447168 0.561421 0.095801 1.730488 1.073291 1.235076 0.512223 1.866069 1.737907 -1.262135 -2.170681 -1.395450 -1.452966 0.581495 -0.952770 -3.488832 1.074385 -1.266602 -0.470312 -0.349091 -0.181587 -0.409922 2.674008 -2.934139 0.023697 1.086085 -0.620532 0.798105 1.546293 -0.163878 0.159469 -0.819056 1.516989 -0.115019 0.944835 -0.146216 1.807336 -1.469402 -1.888880 -1.121324 0.386582 0.750932 -1.779500 -2.486943 -3.016817 -0.780187 1.054059 -1.176428 1.612967 3.559043 -1.153088 -2.428047 1.844743 0.884298 -0.131671 1.526773 0.674147 3.119033 -1.629649 0.072343 -0.498177 -0.176527 1.035987 1.773230 -0.676997 -1.727774 1.783467 -0.899212 -2.210904 2.994580 -0.213308 -0.414347 0.186292 0.243324 -1.100718 -1.461872 2.603043 -1.042275 2.600308 -1.250142 3.133678 -1.348693 -1.182673 0.629459 -2.233101 -0.646447 -1.785699 0.149745 -0.165036 1.871765 -1.704894 -1.668174 -0.520772 -0.847527 -0.562412 2.475431 -1.450235 -0.051729 0.108534 -0.205428 1.704517 1.400786 -0.937172 0.103519 -1.773284 0.959073 1.798723 0.526425 -3.065556 -0.762426 -0.808211 -0.761215 -0.251139 0.224553 1.625757 -1.311208 -0.277158 1.006763 -0.287421 -0.198421 -0.237267 -2.517870 0.944464 -0.471977 0.980322 0.482448 2.869057 2.188199 1.662474 0.194664 0.397725 -0.167787 -0.995318 -1.775230 0.635236 0.438096 0.374184 1.241531 2.234020 1.127956 1.067520 1.895161 0.952049 0.212631 2.259152 0.502446 2.759208 -0.950258 -0.439286 0.556390 -0.033559 2.113815 2.903077 0.407998 -1.262756 1.175836 -0.316854 -1.456139 -1.424581 -0.333703 -0.263463 -0.550614 1.564252 1.426277 -0.567742 -0.524637 3.581281 -0.154968 -3.834825 1.768639 0.881582 1.341324 1.290764 -0.737182 1.092297 1.599737 0.227531 1.111458 1.369579 1.489736 -2.354535 -0.566429 0.295403 1.485916 1.622670 0.718992 -4.042170 0.696645 0.862589 2.650019 0.002976 2.423504 -1.499815 0.346233 0.420030 0.103702 0.170470 0.060363 1.152165 -1.182780 0.101744 -2.621284 -0.115320 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 5.856948 0.173910 5.224032 -9.803888 -3.904199 -1.634562 9.422617 -11.174490 -5.951314 20.662681 3.166944 -6.526176 -1.466692 9.046813 -2.145031 -3.533361 2.654584 1.945403 -3.700542 -3.724086 -2.887321 4.197383 -3.327709 -11.085260 3.426795 -3.016034 7.033281 8.566309 -7.234253 6.700655 1.535618 -7.396234 4.660076 17.582423 5.421220 1.518797 -10.760495 15.795891 -16.280742 16.320276 -17.771092 -16.396039 21.474134 -2.398554 4.158521 -16.845259 -5.037886 9.355911 6.758889 -14.257953 -5.712754 -1.966562 6.704897 -14.864225 -7.604978 9.042374 -8.862740 -3.094461 8.791482 -16.439490 -18.095678 -3.303754 7.317803 5.907319 -19.587570 -11.853349 -0.000128 -1.993146 -0.964573 3.631893 -12.421206 -14.507102 4.596198 2.427883 -3.641953 1.882801 -7.028467 -11.016301 8.075183 4.856320 -8.035007 -9.116875 0.489020 -7.903752 1.893414 5.316691 16.480009 -22.810383 6.335788 -20.510152 7.193199 -8.033429 10.393462 13.295519 -3.509496 11.843937 3.101964 15.376383 2.031231 -2.579882 8.080259 8.039830 9.200255 1.902535 13.941746 14.068126 -11.812151 -18.649427 -10.579741 -8.744520 8.858425 -9.295861 -16.990923 7.308068 -9.173805 -7.326991 -3.187094 -3.453048 -3.127551 20.286135 -24.052198 1.281411 8.870877 -4.032659 4.742728 6.664630 0.499982 1.647236 -2.091384 6.258327 -0.454404 4.163117 1.454329 13.717520 -13.769416 -4.422413 0.316127 4.772002 5.091196 -12.342256 -13.932649 -22.457213 -6.030288 12.149467 -7.687737 6.493206 20.494300 -7.823074 -14.890338 6.768872 1.751136 -7.383609 5.210274 5.182661 19.670450 -12.910791 2.438750 -2.300273 0.876055 11.252773 22.536915 -6.064216 -14.092169 14.880620 -10.506035 -14.495192 17.623127 -2.163292 -0.226364 -1.466888 4.095374 -5.065335 -3.791905 13.411662 -18.953778 15.461401 -13.956818 16.322407 -9.948453 -1.128611 1.844609 -23.200845 -8.648560 -12.865817 2.708781 -2.983678 15.338143 -10.637639 -9.550607 -4.954484 -8.279316 -0.960658 18.951100 -22.727186 -2.278085 -0.299993 -4.131982 13.981111 4.008908 -5.650324 -3.524579 -6.840058 6.025723 10.709595 5.693245 -17.603395 -9.788873 -8.104123 -6.182520 -7.064582 1.817181 13.057718 -8.579933 1.526770 8.444514 -2.455132 -6.326035 -4.567426 -15.355329 6.767129 -1.674145 9.088788 1.134760 21.182975 10.250495 12.169025 -0.730605 1.936824 -0.747960 -9.639782 -19.388112 7.854695 2.248208 -0.105557 8.257514 11.559864 5.990015 8.599285 12.595145 1.561968 4.436677 15.053656 0.115113 13.620464 -5.559526 -1.048092 7.122583 0.229226 10.927730 13.824362 8.734084 -10.378713 6.309313 -8.897083 -14.798114 -1.801989 -1.564651 0.033326 -3.693630 8.964226 14.566661 -3.093531 -5.416388 23.429467 -0.939446 -25.878331 10.191347 4.925038 9.693817 14.269206 -7.478905 12.806417 8.516109 10.749948 7.223768 8.915695 8.698256 -17.686862 -1.324761 2.521435 8.769901 18.144239 -0.131387 -31.685936 5.185755 2.192693 17.234491 -4.190475 20.253481 -11.701551 11.067907 2.111424 1.428420 3.652352 -2.468249 8.884352 -1.328444 -2.084601 -23.365058 6.341620 +PE-benchmarks/karatsuba.cpp__main = 18.653611 -15.894093 14.762037 -52.695901 -31.339937 -12.618143 -1.839066 3.168398 -22.101956 40.162774 9.777284 -58.787249 -61.020774 48.264129 1.697272 -50.875593 25.219529 -28.258368 15.750601 -6.458759 -10.993779 15.522412 14.946150 -32.786131 20.554107 6.014018 -45.636160 39.721558 93.611213 -21.820590 10.650368 -1.748858 17.451651 57.889905 -3.288290 -50.280857 -5.485486 85.840913 -20.247621 33.452225 -32.903171 -25.395929 91.659266 -8.765255 -6.167511 -50.634873 -24.077786 60.781702 -58.491957 -36.543113 3.138033 24.354495 21.055355 -57.760258 -54.161668 65.352356 -100.303363 54.793142 28.856897 -3.738282 -9.334709 19.818853 -16.112302 22.961204 -0.988401 -49.251228 -16.731688 -36.468415 -46.309353 -22.196691 -30.095590 8.929526 62.352223 10.187670 -7.553772 29.730585 10.888258 -12.050964 38.325375 -53.892548 -48.514548 -14.371539 -25.467655 -25.837497 65.877549 -9.931686 22.814929 -72.462075 20.149625 -75.729903 34.810219 -63.046811 14.128434 77.839491 -41.730073 45.979702 2.162581 -23.546875 36.462965 5.140820 67.438495 18.278429 28.928070 37.292093 30.666560 36.782256 -23.167890 -22.417205 -33.240839 -27.595385 -11.176094 -11.427617 -63.674824 50.340010 -18.871994 9.426686 43.226412 -12.826023 -30.768976 25.505453 -23.627869 -8.853047 5.352963 -13.566536 4.718496 53.259726 -10.197272 -20.194384 -15.032881 65.098987 8.970837 37.097075 52.509479 50.467827 9.724283 -71.217918 -11.906531 26.366462 8.135528 -36.209102 -48.755123 -74.892056 15.673708 -36.749332 -37.763254 47.157347 93.341055 -0.309881 -28.828333 63.108606 -8.989087 29.005461 41.647443 -2.074722 81.256531 -20.267755 -41.978510 3.362000 -27.391611 24.281077 35.150607 1.496658 -24.739579 33.613712 -11.771739 -16.251687 -17.079322 16.233129 -8.708822 3.121624 -7.562332 -38.899012 -60.677488 47.601074 -2.364597 40.835796 18.948733 85.098831 46.233255 -58.902675 49.954776 9.177403 -8.386162 -15.201956 -13.943553 19.872517 -21.971364 -39.977939 -36.223838 -39.774185 28.184935 -43.209079 44.775498 -3.650652 23.211244 35.630994 9.127368 33.518842 10.004683 -30.346488 20.486800 -71.659153 12.213195 22.870808 -11.809094 -67.809846 -9.578791 -8.324550 1.919021 62.615100 -9.569591 46.648487 -30.749994 -27.839593 33.916910 12.536823 6.900220 2.400085 -46.548735 15.427429 24.544200 25.558285 42.246598 82.995538 37.784460 30.355234 -16.494059 61.600135 -18.654515 29.623213 -29.141873 -23.750188 -20.686027 11.435461 34.032744 11.497420 25.594154 35.893182 62.245068 33.852552 -49.638245 54.519961 -4.630788 38.945281 -2.032038 -37.934805 29.913437 -8.480733 53.943162 59.026864 -16.399618 -49.637919 46.214058 -16.406760 -8.941376 -42.197986 9.159052 -10.950528 9.512801 39.539660 10.798603 8.674806 0.450275 32.746737 -9.123650 -96.190995 74.435647 29.055551 35.740216 27.260223 9.431348 21.078860 14.358586 -39.057494 2.050633 51.828404 19.678092 -49.087209 18.565276 23.215637 51.016308 0.853491 46.010382 -97.310437 -29.724857 15.894980 24.328263 21.033532 34.842143 -29.139575 -60.714422 30.142741 10.639360 -6.006445 -35.732661 -8.881072 -48.527232 8.630294 7.360028 9.494678 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 10.238285 -7.184368 8.161825 -25.985732 -13.949629 -6.571292 4.511467 -1.156946 -11.452178 23.806248 6.133414 -28.762872 -27.478084 23.593270 2.111155 -22.788717 14.141799 -12.878961 6.159394 -2.250092 -6.375049 7.203249 5.629270 -18.263526 10.303887 3.035259 -18.913189 20.823568 38.216262 -8.353546 4.364322 -2.414731 9.309533 30.827736 -0.136530 -23.625403 -5.469878 42.839176 -15.965558 20.966683 -18.270638 -13.762735 47.493588 -4.986903 -1.840994 -27.181868 -12.275843 30.652915 -22.556046 -22.405054 0.576886 10.567799 12.061350 -30.637090 -26.935495 33.640910 -47.097670 22.109895 16.546989 -5.793277 -8.871873 8.125764 -5.566221 11.902859 -6.563452 -25.540387 -7.065548 -19.425039 -19.804321 -9.253183 -18.921484 -0.782606 28.906516 5.590298 -3.696899 13.999252 2.743342 -8.974318 19.743495 -21.462096 -23.878601 -9.041482 -12.321656 -14.129604 30.640706 -4.319196 14.267215 -38.594294 9.732240 -40.079754 17.691785 -31.818516 8.973269 39.402327 -18.136441 23.738789 1.332704 -7.550218 15.327923 1.955892 32.290129 10.192760 15.509259 16.415870 18.493255 20.939523 -14.749397 -16.330622 -18.167963 -13.955888 -2.120406 -6.247732 -30.839393 25.481805 -11.788207 1.640656 19.572000 -6.616802 -14.531915 17.622682 -14.190554 -1.849133 5.411186 -7.549800 3.583604 27.416531 -4.555994 -8.876222 -8.109872 30.642720 4.912092 19.173242 23.739217 26.671977 0.567842 -33.921095 -3.415120 12.881080 5.443071 -19.927938 -25.979465 -40.249403 6.330453 -13.907600 -19.539317 22.190050 47.111202 -2.220583 -15.788735 29.866771 -1.838516 11.488747 18.573555 0.268424 43.060820 -13.465648 -17.389030 1.210903 -11.804678 13.457644 23.689641 -1.527537 -15.248149 19.192788 -8.406292 -12.926525 0.024158 8.106942 -3.411706 5.403625 -2.564498 -17.573256 -29.882423 25.712972 -4.356972 21.744826 5.626626 43.449827 19.154770 -25.490349 23.681197 1.961845 -5.413074 -11.697114 -6.261156 9.469334 -6.044503 -19.181433 -19.229446 -19.608130 10.643100 -19.099629 25.790410 -8.364546 9.543084 15.944440 2.195964 16.674441 4.855320 -15.668027 8.505200 -34.670093 7.353659 11.894376 -4.778704 -34.684452 -7.180972 -5.770508 -0.838980 25.855872 -3.495458 25.308771 -17.191266 -12.895753 19.515341 5.349293 0.107038 -0.272615 -25.873425 8.606129 11.814518 13.129074 19.814254 43.659832 18.714627 17.037541 -7.879878 27.902995 -9.707860 12.745165 -21.890279 -8.964964 -10.601736 6.421242 17.452639 6.317242 12.668341 18.130939 30.294007 13.140448 -20.769311 28.319842 -0.818356 19.564937 -0.412312 -17.848938 16.990439 -4.896341 27.645417 28.483376 -4.621637 -26.996219 22.362258 -10.303919 -9.699031 -18.388773 3.377005 -4.628457 2.657072 20.128338 8.380955 3.241772 -1.576615 21.613610 -4.906626 -51.182416 35.025268 14.468185 18.989496 17.866240 2.876439 14.977518 8.208182 -13.522932 3.339799 25.263622 11.935122 -26.424147 8.530358 11.505110 24.015450 4.891671 20.049692 -54.926325 -13.258452 6.941756 15.296283 8.672346 22.339792 -16.395776 -21.905486 13.873122 5.329281 -0.980745 -17.857379 -0.713362 -22.337399 2.850244 -4.872818 8.590068 +PE-benchmarks/sort-array-wave-form-2.cpp__main = 1.163003 -0.210969 1.124581 -1.829731 -1.097647 -0.143552 1.456769 -1.813437 -0.959701 2.849937 0.423684 -1.393176 -1.084753 1.897882 -0.370859 -1.245152 0.338762 -0.537278 -0.492474 -0.388559 -0.942522 0.910351 -0.711822 -1.551352 0.918270 -0.410508 0.779345 1.913391 -0.273373 0.497172 0.043727 -1.287506 0.478347 3.588000 1.099242 -0.040069 -0.994330 4.231867 -2.385769 3.254820 -3.022115 -2.875146 4.140077 -0.584881 0.054804 -2.585426 -0.711875 2.136369 -0.848532 -1.763134 -0.153254 -0.190766 0.819589 -2.422605 -1.009647 2.205829 -3.154191 0.874700 1.583278 -2.008434 -2.740587 -0.921626 0.406587 0.670332 -2.709081 -2.260012 0.102494 -0.393722 -0.980964 0.504514 -2.220580 -2.209509 2.193789 0.728004 -0.885066 0.567958 -0.730694 -1.455688 1.614741 -0.284361 -2.189231 -1.603226 0.058720 -1.559479 1.682849 0.854510 2.314872 -4.646051 1.029685 -4.413759 1.355942 -2.280876 1.897464 3.225365 -1.333476 2.605809 0.613020 1.782056 0.351402 -0.357112 1.991731 1.162963 1.299816 0.927627 2.271409 2.267495 -2.044645 -3.081866 -2.067118 -1.587098 0.912275 -1.185668 -3.596921 1.382545 -1.739739 0.270954 -0.196028 0.125637 -0.987978 2.858525 -4.245341 0.294609 1.080363 -0.810508 1.575671 1.825023 -0.178966 0.319301 -0.704933 1.927410 -0.224250 1.151006 -0.177777 2.544381 -1.473137 -1.325002 -1.231861 0.635708 1.283511 -2.056396 -3.102476 -4.127172 -1.141904 1.534939 -1.580756 2.359834 4.635264 -1.521355 -2.578565 2.292444 -0.308063 0.271853 1.652226 0.918328 3.594462 -1.957895 -0.084771 -0.506444 -0.229238 1.371107 2.892317 -0.728592 -2.378234 2.558478 -1.093142 -1.310763 2.984016 -0.002758 -0.655173 -0.467645 0.294129 -1.178801 -1.740697 3.241165 -2.460647 2.859645 -1.601584 3.976745 -1.464035 -1.058155 0.800094 -3.309226 -0.824197 -2.583655 -0.037425 -0.407971 2.106412 -2.533210 -2.066053 -0.845021 -0.806965 -0.804070 3.180109 -1.794010 -0.300144 0.212789 -0.193932 2.955566 1.527107 -1.131275 -0.359909 -2.316319 1.183244 1.715283 0.377416 -3.304213 -1.163951 -0.839344 -1.180597 0.196867 0.311199 1.974832 -1.900557 -0.112522 1.406260 -0.064999 -0.307522 -0.026585 -3.450771 1.174026 0.185742 1.052624 1.179642 3.692748 2.417941 2.205557 0.295226 0.959359 -0.390889 -0.896650 -2.609684 0.833096 0.471376 0.855682 1.608395 2.278194 1.597248 1.344106 2.032815 0.947793 0.107900 2.891702 0.586719 3.362879 -1.309621 -0.665464 1.072757 0.132803 2.467454 2.909309 -0.180670 -1.559122 1.633872 -0.867705 -2.010795 -1.175119 -0.199530 -0.506416 -0.337722 1.718528 1.841382 -0.560699 -0.714822 4.637246 -0.604365 -5.122614 2.152530 1.218259 1.903473 1.937862 -0.707285 1.663853 1.806480 0.263592 1.560944 1.884105 1.744306 -3.044184 0.223426 0.408512 1.692205 2.292166 0.683825 -5.353386 0.050182 0.679298 3.347726 0.217589 3.141596 -1.855057 0.543411 0.602649 -0.289258 0.472797 -0.195883 1.690036 -0.555190 0.307204 -3.630399 0.036622 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/word-wrap.cpp__main = 2.516082 -0.113141 0.861840 -2.293004 -0.619475 -0.418826 3.904683 -3.357068 -2.298803 5.394091 1.093028 -2.641840 -1.456961 2.369543 0.048433 -1.141060 1.514224 0.984497 -1.204095 -0.762371 -2.110053 0.473724 -1.091147 -4.039865 1.339004 -0.789790 1.600890 3.491513 -1.687154 2.149263 -0.033021 -1.887435 1.613450 5.961955 2.045892 -0.697787 -2.583829 6.469595 -5.752870 5.457118 -3.886587 -4.211387 8.034422 -0.842823 0.530768 -3.878739 -1.915397 3.384506 1.170699 -4.420641 -1.470257 -0.831145 1.891272 -4.797762 -2.729849 4.997117 -3.594995 -0.326035 2.983678 -4.587473 -5.884310 -1.360171 1.450840 1.394100 -5.794978 -4.176061 0.129832 -1.160836 -0.293174 0.831648 -5.558600 -4.891278 2.869743 1.080872 -0.894722 0.510166 -2.621213 -2.492102 2.103307 2.329992 -2.916000 -2.725778 0.248800 -1.867624 1.432145 1.977977 5.019502 -7.660655 0.849995 -7.498168 2.287518 -3.863376 3.799435 5.050851 -0.912068 4.464279 0.693753 3.510274 -0.731920 0.029507 3.002783 1.380388 2.162722 0.358700 4.045774 4.372275 -3.767746 -6.227603 -3.232936 -1.714586 2.356608 -1.363913 -5.182453 2.858448 -4.401053 -0.666845 -0.684303 0.176088 -1.469016 5.661775 -6.008704 1.256339 2.279887 -1.554041 3.289417 3.124383 0.174668 0.777024 -1.138813 2.184283 0.901767 1.569269 -0.398419 4.483822 -3.281228 -2.672007 -0.539272 1.515331 2.625667 -4.319745 -5.189468 -6.521891 -1.780014 3.722942 -2.940864 2.660457 7.538949 -2.525222 -3.084062 2.511702 0.031178 0.178072 2.176825 1.677559 8.089361 -4.862523 1.555500 0.370898 0.736578 3.033769 6.060264 -2.543638 -4.809879 4.305764 -2.076048 -2.580712 6.951351 -0.149728 -0.130412 1.576192 0.763410 -0.211741 -2.983438 5.786731 -4.653451 4.911892 -2.987787 6.493893 -2.751105 -0.532112 1.438837 -3.846622 -2.417517 -4.777690 1.053111 -1.107515 4.476036 -3.120382 -3.589480 -1.183943 -1.897556 -0.378621 6.552059 -3.615292 -0.988655 -0.098435 -1.887251 3.235758 1.279417 -2.178873 -1.026234 -3.883850 1.799231 2.763960 0.356251 -5.712046 -2.818114 -1.701205 -1.942576 -1.537000 0.720849 3.956086 -3.318655 0.090076 3.092079 0.057080 -1.255761 -0.963326 -4.534160 2.477676 0.492381 1.451093 1.194518 7.297275 3.976880 3.788660 -0.323581 1.083072 -0.736658 -1.907051 -6.678056 2.446589 -0.077052 2.097137 2.676077 3.102332 1.345489 2.631016 3.207111 -1.118134 1.626377 4.567388 1.726185 5.191900 -1.679067 -1.181778 2.668949 -1.056060 4.245893 4.057944 1.080927 -4.531565 2.055768 -2.993628 -4.782579 -0.998481 -0.596493 -0.007528 -1.783485 3.567576 4.070036 -0.401978 -2.163602 8.378902 -0.784221 -9.723875 3.421128 2.123378 3.119992 5.163949 -2.165582 4.696157 3.198550 3.699298 1.966827 3.077022 3.287382 -5.522293 0.729141 0.711733 2.410083 3.940244 -0.703008 -11.381924 0.921592 1.139624 5.746167 -0.216214 5.750658 -3.484638 3.708307 0.335094 0.322829 1.711372 -1.173897 3.423449 -1.245344 0.237121 -7.705636 2.452036 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.368523 0.414622 1.312467 -2.184930 -2.793273 0.442542 -0.416455 -3.518807 -1.496968 3.897183 1.319228 -2.177343 -0.682751 2.799362 -1.481167 -1.869788 -0.473762 0.950348 -0.413770 -1.652982 -0.821676 1.232942 -1.048475 -1.774686 0.356673 -1.034367 0.911754 1.614950 0.235763 1.074060 -0.079602 -1.680919 0.840225 4.564974 1.999579 -0.041878 -1.308652 4.807985 -1.994730 2.804738 -4.752411 -4.063859 4.351032 -0.357358 1.023033 -3.340483 -1.767925 2.402677 -1.315288 -1.312302 -0.370761 -0.963391 1.361604 -2.250599 -1.135557 1.956460 -3.692807 2.076887 1.918975 -3.610636 -3.247456 -0.691587 0.813959 1.283093 -2.574117 -2.847982 -0.105840 1.757152 -0.531037 0.500392 -2.329823 -3.543928 3.164518 0.236409 -1.684539 0.138819 -1.054979 -1.826610 2.035629 -0.728081 -3.305335 -1.822997 0.561536 -1.196461 1.319107 1.836976 3.572285 -6.041395 1.494236 -6.100838 2.084299 -1.794167 2.653263 3.445963 -2.681160 2.079469 1.639600 2.088796 2.009120 0.440584 2.649256 1.108059 1.012936 1.304462 2.381707 2.882905 -1.813031 -2.959985 -2.066435 -2.965376 1.091602 -1.202206 -4.942279 1.586955 -2.127123 0.829916 -1.292375 -0.326277 -0.278654 3.932195 -5.550054 -1.070662 1.415078 -0.896226 2.217347 1.839802 -0.106500 1.294548 -0.928256 2.426548 -1.180531 0.471488 -0.028565 3.185342 -1.977782 -3.277805 -3.498651 1.809043 1.817469 -3.055175 -3.746465 -4.765714 -1.341582 2.009211 -1.947234 2.632424 5.884756 -2.759456 -3.966409 3.027401 -0.153752 -1.225878 3.467701 1.280861 5.216225 -2.658996 -0.100636 -1.003833 -1.049871 1.638830 2.461448 -1.024444 -2.801760 3.255591 -0.847568 -2.441822 3.389326 -0.574015 -1.695612 -1.243435 0.955702 -1.036760 -0.846981 3.092182 -2.748229 3.175451 -2.084882 5.034264 -2.501214 -2.313652 0.689603 -4.473046 -1.679521 -0.959765 0.509828 -0.399876 3.478011 -3.336432 -2.384305 -0.417406 -1.732248 -1.282038 3.811829 -1.124353 -0.009069 1.165808 -0.563702 3.710084 2.729180 -0.605366 -0.421857 -2.166539 1.419721 2.826597 0.771076 -4.977972 -1.885535 -2.238054 -1.057165 -0.445997 0.245288 3.184278 -1.885637 0.234791 0.573694 -0.964113 0.882488 0.329013 -2.029146 2.129966 -1.149374 1.970891 0.734106 4.603829 2.934618 3.887651 1.159997 1.169822 -0.107215 -2.057106 -0.849168 1.541471 1.975395 0.417610 2.190555 3.236464 1.952952 2.301208 2.890743 0.969840 1.120169 4.084576 -0.446695 4.807207 -3.048117 0.697570 0.226067 0.557469 3.354785 5.046947 -0.465085 -1.891691 1.350295 -1.476269 -1.931947 -2.130414 0.162960 -0.260091 -0.971840 1.720693 3.613585 -0.042443 -1.849200 5.483636 -0.100963 -5.642977 3.999080 1.322245 1.928168 2.297001 -1.280104 1.304506 1.802501 0.665215 1.532872 3.485947 2.690288 -4.497290 -0.912938 0.263389 3.014933 3.063486 1.506125 -6.099337 1.284655 2.074269 3.880614 -0.570268 3.199792 -3.385493 -0.376760 1.239789 -0.337571 0.249735 0.125448 1.665399 -1.071920 0.672395 -2.892139 -0.833437 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 11.339995 -0.054073 2.975658 -7.587360 -0.732259 -1.922520 18.443420 -15.267701 -10.908189 27.708660 4.099088 -11.280128 -5.744376 7.651878 0.897625 -2.969724 6.794543 7.464931 -5.198206 -4.346860 -9.966957 0.488870 -4.687048 -18.922530 5.153406 -3.744085 8.654405 14.623529 -10.616813 12.837087 1.449823 -8.419824 8.033107 24.907542 9.458401 -2.596470 -13.536434 25.018067 -27.366655 24.084389 -16.059851 -19.031775 35.355599 -3.050923 4.540129 -14.555781 -6.083007 14.611734 8.806061 -21.769713 -8.796294 -3.984453 9.512605 -21.557485 -13.716059 20.922085 -11.661804 -4.864888 12.689689 -23.346728 -28.437879 -4.834645 8.067750 8.178528 -27.598000 -18.110457 -0.236302 -5.577967 0.942355 3.810328 -25.868756 -21.631937 7.830081 3.701955 -3.365573 1.031322 -13.392087 -8.395219 8.046739 13.811183 -10.935470 -12.298851 0.751525 -8.705173 2.190477 11.025858 23.929157 -31.963866 4.201350 -31.146812 10.410525 -14.127404 16.736164 20.001387 -0.167128 19.448710 2.750898 16.589161 -4.558746 -0.959555 10.892666 5.454988 9.816032 0.837371 17.247164 20.427572 -17.770801 -29.009415 -14.467548 -5.942060 12.368260 -5.904984 -18.203950 12.515057 -20.154979 -3.714896 -3.015924 -0.024523 -6.666737 25.532596 -27.298849 6.105690 10.054468 -6.516001 14.997436 11.267859 1.783562 4.373517 -2.761591 7.215752 4.813984 5.141013 -0.432183 19.892603 -15.522932 -8.128059 0.772642 8.340096 12.003410 -18.891221 -20.771962 -28.495989 -7.992794 19.034131 -12.748181 9.871535 30.950993 -10.549316 -11.590252 7.476650 -2.500922 -1.740161 7.183846 7.614021 35.478898 -22.448560 8.183278 2.836987 4.668393 15.437176 32.144728 -12.183006 -21.884875 19.922918 -9.670938 -8.779840 28.390985 -0.890938 0.766775 6.627004 4.289607 1.778271 -10.044521 22.824764 -24.893899 19.793280 -15.078436 26.299636 -12.403107 0.843405 5.165623 -19.257181 -12.735031 -20.471931 6.053030 -5.971447 20.546833 -12.728576 -14.618316 -5.476752 -9.551199 0.015065 29.824427 -20.055183 -5.102269 -0.898389 -10.471522 15.101819 2.400536 -9.058353 -6.868286 -15.016088 7.038239 10.847059 2.183998 -23.409000 -14.769371 -8.053585 -8.636170 -8.876800 3.263180 18.068467 -14.409289 2.529517 14.110462 0.159787 -7.497661 -5.505674 -17.394411 11.258827 3.472473 6.981670 3.966879 32.707756 15.075500 16.587303 -2.487717 4.902457 -3.497681 -9.662474 -31.907106 12.744211 -0.293635 8.360252 11.324685 11.886066 3.884615 11.990621 13.324365 -8.459849 8.251048 19.042118 5.607396 19.957332 -8.562399 -3.785286 12.823639 -4.545849 16.852651 14.248264 6.474216 -22.118074 7.726482 -16.875996 -22.881084 0.052329 -2.316630 0.893485 -7.261814 14.874812 20.793533 -0.867194 -10.613073 36.024485 -2.959445 -42.533179 14.286110 9.043878 13.215101 25.347761 -11.121506 22.911697 12.834905 21.419535 7.243811 13.349985 13.564801 -25.067551 5.092148 3.203227 9.799751 19.161118 -6.120131 -52.805152 3.385878 3.827056 24.346274 -2.873431 26.921947 -16.190317 20.148968 1.045264 1.929159 8.862089 -6.053283 15.554667 -2.873618 1.280223 -35.521145 14.642552 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.347883 0.207880 0.476474 -0.476790 -0.514052 -0.030967 0.365219 -0.821144 -0.445106 0.637714 0.300503 -0.629426 -0.749912 0.540687 -0.423425 -0.509057 0.041973 0.454763 -0.282260 -0.588316 -0.408803 0.070544 -0.204690 -0.595827 0.256793 -0.282697 0.334643 0.733023 0.252041 0.116817 0.036898 -0.331598 0.446278 1.326717 0.425187 0.018107 -0.365157 1.497671 -0.350298 0.806963 -1.294898 -0.945955 1.581267 -0.159001 0.137656 -1.358349 -0.510630 0.784300 -0.780370 -0.300002 -0.268356 -0.232819 0.209441 -0.898224 -0.449206 1.073880 -1.234996 0.746080 0.547584 -1.059157 -1.081023 -0.180587 0.168629 0.019405 -0.534708 -0.867802 -0.087943 0.210351 -0.470984 0.401375 -0.885885 -0.858008 1.154752 -0.072734 -0.368010 0.199860 -0.371593 -0.222452 0.400340 0.032776 -0.742159 -0.602868 0.419555 -0.045370 0.461312 0.447390 0.724638 -1.781291 -0.186790 -1.781901 0.535704 -0.828445 0.845242 0.969962 -0.733014 0.960964 0.261541 -0.195814 -0.035655 0.367314 0.755133 0.124288 0.476966 0.197119 0.769175 0.550000 -0.396654 -1.117520 -0.540244 -0.628823 0.151710 -0.010816 -1.517473 0.360461 -0.989837 0.504134 -0.246421 0.142148 -0.026999 0.819141 -1.229675 0.105854 0.497707 -0.315365 0.826969 0.758700 0.055131 0.300713 -0.253349 0.652091 -0.069469 0.220439 -0.165908 0.844024 0.057019 -1.438144 -0.921118 0.184272 0.507010 -0.631684 -1.178727 -1.076670 -0.502508 0.522318 -0.535357 0.242445 1.747966 -0.577664 -0.992215 0.742161 -0.053858 0.271408 0.908995 0.479950 1.874994 -0.934406 0.196645 -0.056608 -0.052378 0.660702 0.504333 -0.577474 -0.992845 0.812620 -0.035173 -0.837288 1.122240 -0.276447 -0.193576 0.379320 0.062136 -0.145643 -0.644760 1.045000 -0.251086 1.272774 -0.583565 1.557863 -0.770129 -0.862684 0.166720 -0.594918 -0.225124 -0.228119 0.272514 -0.210763 0.912611 -0.915826 -0.890242 -0.136713 -0.383207 -0.125870 1.390664 0.057625 -0.152437 0.079609 -0.306874 0.532289 0.454220 -0.525900 0.030736 -0.937655 0.316641 0.718440 0.365375 -1.637205 -0.294297 -0.395956 -0.376730 -0.052385 0.166659 0.766064 -0.266457 0.052048 0.398664 -0.344604 0.110400 -0.095179 -0.404751 0.477823 -0.190052 0.142350 0.238352 1.510324 1.162486 0.818731 -0.033567 0.400331 -0.007501 -0.638612 -0.433915 0.315332 0.269159 0.527216 0.516941 0.579024 0.455547 0.488047 0.657378 -0.037833 0.269083 1.101641 0.402200 1.392874 -1.020525 -0.020175 0.255964 -0.086257 0.958149 1.206338 -0.194034 -0.799163 0.435079 -0.161898 -0.453681 -0.944241 -0.265096 -0.009047 -0.534024 1.069111 0.986879 -0.164303 -0.388220 1.806114 -0.093796 -1.888963 1.145962 0.370958 0.416999 0.566933 -0.348128 0.288750 0.866767 0.419694 0.026853 0.724107 0.804636 -1.342518 -0.213675 0.042996 0.819724 0.527613 0.088657 -2.193853 0.001846 0.484929 1.319621 0.020554 0.854531 -0.719586 0.021856 0.167738 -0.098309 0.088522 0.008317 0.542407 -0.382037 -0.093683 -1.063016 0.027280 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.135420 0.223640 1.546957 -1.568282 -0.699621 -0.640118 3.622595 -2.740801 -1.663500 4.174358 1.107515 -2.326601 -1.666620 1.968499 -0.428732 -0.219967 1.364651 2.359373 -1.167419 -1.116175 -1.731451 0.231083 -0.845410 -2.604010 1.262089 -0.496736 1.732941 3.053067 -1.291933 1.402164 0.393924 -1.373712 1.503201 4.670797 1.326878 -0.110637 -2.330417 5.011280 -4.324037 4.844319 -3.957361 -2.761775 6.503724 -0.652285 0.704896 -4.421201 -1.855198 3.089091 0.420599 -3.865468 -1.519935 -0.679300 1.580815 -4.091148 -2.149138 4.016966 -2.602366 -0.597195 2.685108 -4.641210 -5.280003 -0.543435 1.548854 0.695956 -5.496077 -3.341596 -0.213236 -1.161619 -0.437843 1.032429 -4.246067 -3.970303 1.877269 -0.227956 -0.992399 0.738776 -2.041551 -1.797239 1.633424 2.896655 -2.234985 -2.324786 0.604262 -2.339213 0.895150 1.119432 4.091335 -6.457177 -0.001975 -6.322415 1.671896 -3.070711 3.032237 4.025715 -1.162559 3.805984 0.473003 1.920367 -1.122091 0.812914 2.188935 1.274658 1.979333 0.179687 3.974644 3.184327 -2.854317 -5.723518 -2.945360 -1.802728 2.083798 -0.863858 -4.203591 1.810016 -3.816748 -0.097193 -0.685065 0.314420 -0.578932 5.110157 -4.254854 2.305628 2.459649 -1.264659 2.108728 3.169030 0.348595 0.510715 -0.843090 1.544065 0.245910 1.243481 -0.289038 3.495212 -1.771577 -2.314354 -0.130971 0.558140 1.650882 -2.577881 -3.973688 -5.288356 -1.732639 3.104582 -2.208031 0.392278 6.100740 -2.218224 -2.945065 1.710420 0.167159 -0.154577 1.298696 1.600385 7.226884 -4.029174 1.154800 -0.295876 0.453018 3.002795 5.510162 -2.294807 -4.101097 3.357853 -1.676757 -4.520588 7.174850 -0.444693 0.205011 2.377451 0.901412 0.113365 -2.622391 4.287899 -3.450688 4.356187 -3.300726 5.196087 -2.300387 -0.790551 0.735334 -2.605738 -1.263090 -3.028175 1.016867 -0.924854 4.072096 -2.076268 -3.027780 -1.100834 -2.018014 0.180543 5.802254 -2.991946 -0.850757 -0.297943 -1.858218 1.684560 0.380099 -2.106891 -0.686992 -3.077502 1.259924 2.375232 0.940819 -5.058346 -1.919940 -1.790345 -1.768218 -2.145497 0.696112 3.258492 -2.367419 0.313724 2.503974 -0.675577 -1.500419 -1.197739 -4.007156 1.876789 0.017095 1.175065 1.087739 6.201344 3.661557 3.206411 -0.658932 1.215467 -0.588852 -2.136524 -5.883351 1.988630 -0.157233 1.993240 1.967148 2.035230 1.429959 2.087724 1.980516 -1.848158 2.088545 3.987764 1.672270 4.166753 -1.941080 -0.657390 2.317988 -0.565133 3.187090 3.061832 1.446086 -3.803492 1.432339 -1.787842 -4.227333 -1.651696 -0.883941 0.280111 -1.705123 3.418607 3.777787 -0.574177 -1.509366 7.058146 -0.741944 -8.216536 2.780936 1.038834 2.222312 4.333858 -1.310661 3.609203 2.827612 3.848504 1.141520 2.401163 2.603269 -5.065792 0.040426 0.517746 2.080128 3.821463 -0.776832 -10.791732 0.709941 0.167291 4.938784 -0.791017 5.029065 -2.711089 3.494172 0.417887 -0.399099 0.997671 -0.922194 2.752026 -0.565356 -0.847300 -7.258028 2.257899 +PE-benchmarks/binary-insertion-sort.cpp__main = 1.145818 -0.016419 0.920566 -1.768789 -0.707320 -0.313015 1.750447 -1.493500 -0.844931 2.532888 0.376313 -1.398817 -1.362792 1.873204 -0.330834 -1.112781 0.468333 -0.917206 -0.641558 -0.321672 -0.800728 0.681738 -0.510505 -1.728203 0.875305 -0.220793 0.759616 1.897785 -0.048092 0.228163 -0.098822 -0.996844 0.678175 3.238124 0.864281 -0.181476 -0.942232 3.906572 -2.665343 3.013116 -2.978516 -2.612301 4.194835 -0.520382 -0.259168 -3.025204 -0.757175 1.964437 -0.816483 -1.593305 -0.308769 -0.125261 0.563435 -2.506378 -1.109213 2.608427 -3.212798 1.043876 1.429289 -1.591301 -2.574680 -0.909066 0.617695 0.504112 -2.408691 -2.117251 0.132112 -0.948927 -1.244236 0.595847 -2.291381 -1.877851 1.964331 0.659857 -0.620932 0.551275 -0.983431 -1.469356 1.384823 -0.457887 -1.717390 -1.420457 0.256346 -1.110522 1.493403 0.724072 1.871229 -4.299924 0.455747 -4.009434 1.137833 -2.380681 1.733090 2.837921 -1.185901 2.474476 0.128663 1.191183 0.131388 -0.323283 1.733244 1.100665 1.563780 0.478997 2.206365 2.230647 -1.814510 -2.943349 -1.732523 -1.290475 0.664728 -0.930108 -3.657533 1.281724 -1.903977 -0.080661 0.029532 -0.072877 -0.994607 2.525101 -3.619923 0.320862 0.878775 -0.717975 1.518567 1.996909 -0.109907 0.226002 -0.616883 1.645029 0.337836 1.290274 -0.171049 2.206303 -1.357251 -1.818088 -0.907075 0.441119 1.148079 -1.831019 -2.876577 -3.933074 -0.975120 1.166208 -1.419661 1.904541 4.234323 -1.112682 -2.557380 1.934172 -0.159944 0.568735 1.522661 0.678326 3.771847 -2.028862 0.311916 -0.045966 0.102881 1.315237 2.873435 -0.982800 -2.320811 2.062697 -1.114202 -1.750678 2.485925 0.212896 -0.208081 -0.014046 0.092164 -1.164898 -1.998829 3.186495 -2.166368 2.946516 -1.592705 3.527621 -1.490446 -1.048861 0.889948 -2.953308 -0.685667 -2.462569 -0.226343 -0.384915 2.007862 -2.226501 -1.881912 -0.952823 -0.544527 -0.623979 3.230315 -2.053369 -0.392890 -0.124155 -0.247876 2.423850 1.151008 -1.476683 -0.024827 -2.357594 1.015437 1.889734 0.557946 -3.540306 -0.929475 -0.751879 -1.106437 0.290078 0.227510 1.718968 -1.634782 -0.272009 1.659977 -0.018994 -0.377452 -0.329567 -3.201996 1.024732 0.001484 0.843071 1.059213 3.684011 2.102317 1.754707 -0.109409 0.682536 -0.300262 -1.076297 -2.642046 0.594487 0.134172 0.733945 1.452859 2.077020 1.213848 1.069344 1.936940 0.848439 -0.413043 2.543439 0.972256 2.999733 -1.091211 -0.855242 1.110889 -0.276601 2.156775 2.709703 -0.124969 -1.829212 1.548393 -0.735065 -1.812135 -1.266558 -0.532741 -0.511535 -0.546314 2.095793 1.540340 -0.684066 -0.490212 4.438644 -0.518493 -5.013742 1.951091 1.105602 1.624939 1.724630 -0.909606 1.428621 1.898808 0.294276 1.227659 1.530332 1.578523 -2.614712 0.144041 0.357947 1.585070 2.101701 0.221282 -5.439134 0.061180 0.682810 3.346435 0.480820 3.198981 -1.541218 0.754847 0.234025 0.025545 0.574230 -0.393568 1.672359 -0.729922 0.053998 -3.561473 0.400893 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 2.297402 0.359529 1.450889 -3.012561 -1.051359 -0.765459 4.788915 -3.011570 -1.863503 6.206836 0.965100 -2.352389 -2.214512 3.484340 -0.364056 -0.978049 1.399726 -0.831965 -1.290217 -0.374947 -1.374032 1.178673 -0.992661 -3.560106 1.411495 -0.056768 1.797880 3.407334 -1.374215 1.226771 -0.178140 -1.976933 1.558380 5.546126 1.636673 -0.433411 -2.805261 6.818910 -7.167899 6.077649 -5.963739 -4.883900 8.011560 -0.883570 0.048060 -7.023309 -1.941497 3.536868 1.316320 -4.521736 -1.190747 -0.438834 1.608078 -4.859188 -2.429845 5.020366 -4.791728 0.110988 3.053244 -4.067580 -5.580452 -1.341601 2.102044 1.378876 -6.331924 -3.906246 0.084419 -2.924878 -1.093213 1.073681 -4.850338 -4.083794 1.940575 0.898601 -1.030699 0.629988 -2.593732 -3.582363 2.484602 0.576296 -2.901555 -2.598263 0.121771 -2.193285 1.341943 1.378143 4.619270 -7.896273 0.905349 -7.486538 1.925340 -4.240986 3.135387 4.885263 -1.126536 4.258378 0.136634 3.174081 0.236333 -0.757506 2.593430 2.707739 3.352014 0.198124 4.567314 5.214074 -3.850684 -6.240849 -3.582949 -2.237875 2.229615 -1.776973 -6.574197 2.520895 -3.473748 -1.639958 -0.163255 -0.929862 -1.450880 6.087580 -6.317691 1.720417 2.185661 -1.274603 2.255925 4.069435 0.057221 0.435248 -1.017735 2.146599 0.886049 3.000797 0.110495 4.182352 -4.142965 -3.263645 0.090701 1.079977 1.930789 -3.626390 -4.688586 -8.220271 -1.391886 3.098382 -2.695785 1.634767 7.801087 -2.547197 -4.839644 2.521226 0.375619 -0.475481 1.631464 1.063946 7.905094 -4.187964 1.108715 0.266272 0.526643 2.809995 8.240129 -2.159751 -4.594904 3.914698 -3.062071 -6.140911 6.163785 0.469293 0.129352 1.381030 0.618966 -1.470561 -3.321942 5.694076 -5.544594 5.338021 -4.106568 5.460502 -2.727441 -0.492961 1.296237 -6.154741 -1.825092 -5.132563 -0.132076 -0.511672 4.662212 -3.329123 -2.987715 -2.169868 -1.925552 -0.668105 6.517502 -7.183252 -0.950925 -0.394347 -1.028455 3.864062 1.319086 -2.625606 -0.520075 -3.778307 1.873227 3.478665 1.250874 -7.204784 -2.565457 -2.181454 -2.100915 -1.261661 0.365315 3.627428 -2.992415 -0.190956 3.732019 -0.410503 -1.797378 -1.226209 -5.716911 1.920045 -0.314641 2.654107 1.280490 7.351221 3.110830 3.885930 -0.516203 1.045084 -0.474090 -2.704678 -6.901913 1.765681 -0.140047 0.702115 2.669346 3.477130 1.843371 2.194487 3.453012 0.189467 0.231009 4.610816 1.968165 5.287231 -1.478575 -1.781942 2.661119 -0.702213 3.467992 4.395123 1.742660 -4.044948 2.213725 -2.656022 -4.829246 -1.232142 -0.839890 -0.434531 -1.528783 4.391305 4.063528 -1.075555 -1.287094 8.235518 -1.009949 -10.293343 3.023831 1.666582 3.097429 4.897283 -1.972980 3.958951 3.226212 2.966771 2.668294 3.084453 2.945675 -5.089477 -0.130153 0.767242 2.503428 5.525675 -0.470513 -12.934195 0.970216 0.757624 6.185453 -0.241737 7.663362 -3.374576 3.769562 0.304256 0.455395 1.495869 -1.328485 3.466964 -0.606467 -0.727200 -8.552679 2.594011 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.820363 0.195258 1.152280 -2.275733 -1.295826 -0.143624 1.082321 -2.011626 -0.704998 1.967469 0.851220 -1.553675 -0.983715 1.746727 -0.754506 -1.222900 0.616383 0.074313 -0.606169 -0.763766 -0.624619 0.563558 -0.577241 -1.371199 0.459801 -0.494261 0.930789 1.588464 0.418670 -0.148308 -0.395332 -1.000889 0.650679 3.413648 1.053488 -0.108149 -1.219198 3.401753 -0.737507 2.345929 -3.452583 -1.579133 3.151751 -0.457047 0.218125 -4.017638 -1.436891 1.828982 -0.512231 -1.327383 -0.426476 -0.592049 0.875138 -2.287018 -1.091136 2.357920 -2.319456 0.953406 1.694160 -1.969973 -2.072886 -0.541821 1.045982 0.662876 -2.155904 -2.155240 0.277440 0.001467 -1.119973 0.770266 -2.169045 -2.582798 2.065321 0.543693 -1.192178 0.416152 -0.955889 -2.006954 1.303774 -0.201715 -1.774925 -1.426931 0.543710 -0.885712 1.378731 0.114106 1.924263 -4.273398 0.342555 -4.118736 0.980463 -2.162247 2.016196 2.604706 -1.270400 1.848861 0.347472 0.549748 0.407747 0.328815 1.810052 0.905343 1.326088 0.133748 2.416979 1.490335 -1.082329 -2.614456 -1.059804 -1.793356 0.440347 -0.723945 -3.684020 1.267480 -2.106402 0.059499 -0.673399 0.158880 -0.426564 2.665384 -2.803492 -0.491619 1.271319 -0.878440 1.344297 2.373881 -0.029823 0.526563 -0.846061 1.661820 -0.054169 0.997331 -0.339976 2.185127 -0.956145 -2.438551 -1.608385 0.353025 1.240556 -1.719208 -3.102722 -3.015513 -1.422678 0.591241 -1.357912 1.623876 3.902001 -1.355850 -2.844133 1.894327 0.427875 -0.039892 1.933499 0.839729 4.088808 -2.413172 0.586726 -0.711744 0.048651 1.261743 2.246096 -1.268302 -2.247519 2.169321 -1.384985 -2.720660 2.908301 -0.134292 -0.350011 0.940285 0.177991 -0.821599 -2.000405 2.728737 -1.499460 3.216389 -1.400435 3.737578 -1.823244 -1.610329 0.633924 -1.539169 -0.493635 -1.088433 0.388278 -0.164224 2.554800 -1.833726 -2.107104 -0.296069 -1.074682 -0.361008 3.126441 -1.025364 -0.393152 0.083191 -0.557226 2.241214 1.533955 -1.254026 0.208576 -1.854739 1.304881 1.950043 1.010231 -3.055105 -1.050063 -1.295654 -1.087662 -0.535272 0.336546 2.116760 -1.332291 -0.367458 1.137204 -0.464899 0.023394 -0.329015 -2.945506 1.307104 -0.785610 0.671716 0.335336 3.552132 2.303785 2.088594 0.121224 -0.029072 -0.192575 -1.330747 -1.966974 0.493937 0.524730 0.399865 1.384872 1.803886 1.217268 1.224365 2.182250 0.372264 0.469251 2.696117 0.411450 2.854269 -1.363993 -0.216472 0.810131 -0.578020 2.364837 3.487929 0.486761 -1.663068 1.340175 -0.259795 -1.700432 -2.657002 -0.562739 -0.108128 -0.880433 1.977306 1.937621 -0.619268 -0.959446 4.258376 -0.158323 -4.316126 2.313651 0.804847 1.271679 1.654634 -0.890499 1.336018 1.694556 0.458587 0.761874 1.570466 1.785464 -2.779929 -0.933114 0.309449 1.659694 1.520405 0.401703 -4.887295 0.234425 0.985872 3.437744 0.269390 2.804809 -1.809071 0.667560 0.755885 0.146377 0.215251 -0.355295 1.438769 -1.208108 -0.563177 -2.858353 0.307898 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 0.761136 0.031690 1.117006 -2.145086 -1.459492 -0.397399 1.590775 -2.699195 -1.413266 3.145518 1.395154 -2.015273 -0.232407 2.546229 -0.455198 -1.313945 0.528640 1.256912 -0.968454 -0.891252 -0.516469 1.015565 -0.697273 -2.369734 1.002381 -0.659722 1.061413 2.254783 -0.849206 1.121679 0.237762 -1.230033 1.034914 4.133081 1.055847 0.579931 -1.950803 4.058397 -3.384230 3.458255 -4.073062 -3.059323 5.076246 -0.580783 0.598269 -3.954604 -2.353981 2.187043 0.402622 -2.835696 -0.966314 -0.457917 1.317059 -3.175503 -1.320781 2.544232 -2.579470 -0.024946 2.267474 -3.818323 -3.808531 -0.361597 0.915013 0.733734 -3.784101 -2.841119 -0.162449 0.047782 0.156891 0.691848 -2.644423 -3.670517 2.651011 0.248333 -0.668339 0.849346 -1.386852 -2.516820 2.035691 1.092562 -2.141550 -2.055238 0.801675 -1.170982 0.745345 1.273673 3.639491 -5.552069 0.594768 -5.137217 2.061794 -2.285182 2.475434 3.216372 -1.848916 2.658870 1.026150 2.439622 0.823933 0.756137 2.296518 1.347276 1.542847 0.532696 2.964354 2.788452 -2.299979 -4.033880 -2.417740 -2.394296 1.821884 -1.824822 -4.820574 1.900389 -2.352128 -0.985431 -0.994052 -0.527490 0.307516 4.682086 -4.210175 0.922163 2.265123 -0.763312 1.081279 2.177908 0.050122 0.331321 -1.161705 1.555229 -0.375400 1.047587 0.074945 3.180954 -2.475404 -2.672464 -0.816428 0.913230 1.060243 -3.036437 -3.212268 -4.690665 -1.071649 2.425961 -1.959129 1.064009 5.067037 -2.299075 -3.588234 2.090800 1.728519 -1.077889 1.660925 1.269911 5.276347 -3.067052 0.413846 -0.668309 -0.275650 2.576610 3.486757 -1.325475 -3.247777 3.227172 -1.618119 -4.809722 5.771698 -0.579269 -0.370066 0.807928 1.095315 -0.936359 -1.480184 3.452585 -2.176878 3.961380 -2.943226 4.184059 -2.406608 -1.134586 0.713496 -3.791616 -1.788596 -2.447449 0.534581 -0.581743 3.361630 -2.426718 -2.315818 -0.893524 -2.044822 -0.443789 4.074750 -3.249869 -0.265707 0.186662 -1.102092 1.783454 1.421991 -1.107595 -0.412731 -2.267387 1.417284 2.609150 1.211081 -4.676004 -1.756597 -2.040186 -1.188102 -1.773345 0.363834 3.135871 -1.822036 0.214072 1.524627 -0.772922 -0.618844 -0.879983 -2.881295 1.588674 -0.776426 1.955935 0.529188 4.821317 3.243628 3.085847 -0.000519 0.816867 0.050387 -2.100129 -3.538814 1.700512 0.429478 0.788443 2.004055 2.844745 1.675550 2.005359 2.779192 0.044439 1.629306 3.984140 0.629738 3.971316 -1.213760 -0.234275 1.331063 0.116853 3.220327 3.786841 1.560437 -2.371299 1.286340 -1.345764 -3.093390 -1.655401 -0.404812 0.216466 -1.701562 2.590363 2.752924 -0.486663 -1.443574 5.548954 -0.068567 -5.965312 2.890162 0.928998 2.093558 2.609116 -1.234557 2.469582 2.271799 1.826570 1.302559 2.214763 2.596246 -4.404043 -0.961641 0.472256 2.299487 3.850908 0.481318 -7.034439 1.632495 0.985349 3.935454 -1.106524 3.808592 -2.760033 1.759309 0.456121 0.272092 0.471047 -0.515655 1.547454 -0.784600 -0.508380 -4.947147 0.440753 +PE-benchmarks/tarjan-algorithm.cpp__main = 7.056237 -2.214187 8.092161 -14.323943 -15.609117 -1.595285 -1.226680 -10.092251 -4.345456 10.436461 4.401758 -11.785336 -8.216045 18.795605 -7.171146 -14.406183 -0.293852 0.341243 0.374821 -3.834939 -5.165824 9.465318 -5.013293 -7.154963 8.578597 -4.514194 -1.780844 11.734453 10.953935 -0.819618 -2.652294 -7.802911 1.959072 25.489391 4.232885 -3.055434 -0.579269 36.726730 -6.577300 14.674577 -21.495673 -19.821775 26.605964 -4.254624 0.760707 -17.754536 -12.499271 13.030552 -19.616273 -0.533622 3.196549 -0.196896 2.814681 -13.713912 -0.966093 13.891387 -31.969827 18.093829 10.730087 -9.030675 -11.055627 -6.507359 -5.262321 -1.011174 -7.482218 -14.693477 -0.121396 6.932065 -9.684410 2.093777 -9.322916 -12.693014 26.324405 5.100139 -7.555931 7.993726 1.945744 -11.486017 12.206539 -13.794978 -20.676558 -9.656321 4.676900 -4.192548 17.497059 5.863955 14.578310 -33.206045 6.450936 -34.304246 11.240440 -20.703986 13.553621 26.646951 -21.761136 17.404397 8.797422 5.486497 11.984891 6.077011 20.517830 8.934091 4.967782 8.187116 10.027197 13.171068 -6.933046 -12.609100 -10.870385 -13.987636 -3.101319 -4.291320 -33.828651 8.557653 -9.952643 10.847001 -1.971866 2.525373 -3.258293 15.771869 -25.576939 -3.700631 7.666811 -6.096411 10.389790 14.713839 -3.101356 -0.942127 -10.310312 18.250930 -6.518110 6.297813 -2.780538 16.947746 -6.679163 -24.691619 -22.702083 0.792836 6.032568 -16.354470 -23.851182 -24.363136 -5.254873 4.687988 -10.352992 17.009033 37.808288 -13.039897 -18.927210 22.994812 -0.194417 7.417034 22.742830 6.973320 25.372796 -9.699917 -3.543201 -5.940517 -5.543974 4.202270 -0.472491 -0.658170 -13.752185 13.232655 0.198269 -10.173598 18.346229 -1.506058 -7.490607 -8.922078 2.313231 -11.176295 -13.414875 25.586495 -5.744673 21.100354 -6.552501 31.662992 -8.972759 -19.012663 8.473691 -15.824174 -2.372870 -9.503826 0.413219 0.309342 11.038636 -20.636582 -15.955435 -2.793258 -4.617221 -8.950680 16.535341 6.982651 -0.067057 4.907526 1.549202 16.547260 17.057372 -5.249244 4.673486 -21.263127 7.959552 11.782847 -3.004549 -30.324389 -1.167228 -4.327485 -5.420817 5.730319 2.211888 11.403834 -9.613165 -5.839607 3.512162 -1.476951 7.452335 1.654533 -13.723458 7.717276 -4.120159 7.558864 10.039145 21.648056 23.584535 17.013333 4.769951 8.604101 -1.882556 -6.010125 2.613596 4.515852 5.785380 6.499826 10.482475 18.724788 14.636645 8.154195 13.190705 11.427374 -1.218628 21.801845 5.958523 31.360331 -12.789080 -5.212593 2.746294 0.161472 21.608247 29.294806 -8.803455 -5.376495 12.240970 1.997558 -4.912209 -18.104857 0.661426 -2.731776 -7.374178 11.416430 7.906480 -3.725911 -4.060348 28.453108 -3.222016 -32.943193 21.271918 7.360743 11.924079 3.782927 0.714787 0.448400 13.884661 -9.244517 10.882712 14.185818 14.585240 -20.374330 -5.281043 2.080328 16.314347 10.265300 12.644347 -25.769468 4.233693 12.609038 19.069341 4.913308 11.617843 -11.653925 -13.038308 3.645114 -5.762938 -3.411426 0.753382 5.130679 -9.914458 5.188689 -10.245596 -13.168812 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 4.138215 -1.116005 3.948492 -6.142559 -5.661123 0.112579 2.078752 -6.090411 -2.694483 9.476160 3.130979 -5.317064 -2.197665 6.461619 -1.203024 -3.258895 1.396974 -0.866213 0.388521 -1.350465 -1.920727 2.963315 -2.406602 -5.140686 2.080208 -1.239818 0.631269 5.956966 -0.448245 2.787918 -0.402128 -3.965694 1.286987 11.183468 3.609883 -2.170407 -2.923229 14.347694 -8.531878 8.684293 -9.474977 -9.879673 13.220614 -1.770216 1.605844 -6.979255 -4.100025 6.674162 -2.973368 -5.667063 -0.475142 -0.879758 4.420176 -7.120112 -4.452049 5.759684 -11.247991 2.263262 5.310946 -7.441928 -7.880842 -1.422351 0.635139 3.386842 -8.195183 -6.635026 0.165718 0.009097 -1.034268 0.034178 -6.082049 -6.847528 6.699050 2.178167 -1.770511 1.547044 -0.902591 -5.675061 6.207620 -1.069088 -8.956173 -4.600693 -1.778407 -6.684759 5.572676 2.314303 9.646828 -13.921488 4.953363 -15.633719 5.001337 -7.205753 4.830348 10.542842 -5.618711 6.975907 4.001053 7.287659 4.080989 0.051873 7.236468 5.043704 3.228464 3.880481 7.331664 8.301623 -5.757830 -7.529344 -6.917002 -5.823974 2.277886 -4.426438 -11.867670 5.169178 -4.270673 0.628534 -0.777644 -0.752717 -1.968848 11.353332 -11.954279 1.424266 3.565384 -2.267061 2.884400 5.283592 -0.750333 -0.088526 -2.354740 6.557593 -2.397749 3.020805 1.865439 8.528153 -5.828147 -5.924658 -4.623580 3.762663 3.540232 -7.990418 -9.301666 -13.516150 -1.611960 5.140421 -4.759629 7.313555 15.573313 -5.747307 -8.015379 7.537425 -0.035363 -2.162352 7.040258 2.997600 11.804605 -5.053385 -2.058159 -2.732114 -2.905829 3.152981 8.571264 -1.528021 -5.845919 8.360035 -2.621136 -5.117048 11.012501 0.127430 -2.570077 -1.154250 1.766522 -4.063572 -5.467438 9.284428 -6.274487 7.544722 -3.359361 12.647961 -2.657826 -3.882536 3.479626 -8.823592 -3.293744 -6.019373 0.408266 0.092359 5.958286 -7.089199 -6.250347 -3.261181 -3.121494 -3.233848 9.986869 -4.001839 0.803644 3.577775 -1.444414 7.213291 5.043200 -2.407872 -1.033111 -6.862446 3.606716 5.077680 -0.503464 -11.503410 -4.707216 -3.976990 -2.022006 0.438443 1.220027 8.558295 -6.449910 -0.855076 4.050648 0.042914 -0.436950 0.228555 -9.679037 4.178013 0.694744 5.346943 3.936371 11.745726 7.273553 9.191303 0.970921 4.572323 -2.274904 -1.676188 -6.188641 1.861144 1.818479 1.951781 4.716168 7.922805 4.900154 6.014106 6.734230 3.508442 1.580959 9.750012 0.228967 10.313898 -4.393997 -1.545955 3.192276 1.117368 8.811423 9.910770 0.505623 -5.169059 3.826310 -3.944878 -6.932653 -3.770223 1.110480 -0.484045 -0.470924 4.217949 7.804452 0.676601 -3.391889 12.348157 -0.501085 -16.808744 8.143549 3.451229 6.021194 7.589660 -1.814174 5.372048 3.893228 1.633021 6.444437 8.105092 5.277152 -10.789130 -0.109340 2.219950 6.562503 6.919270 4.285282 -17.099077 1.914992 2.250940 7.689845 -0.570147 10.084861 -8.299016 -0.094644 2.400017 -2.049910 0.388113 -0.613073 3.736115 -3.135448 2.330886 -9.471475 -0.153651 +PE-benchmarks/topological-sorting.cpp__main = 1.036380 -0.426810 1.204695 -2.446723 -2.131304 -0.461864 0.011432 -1.236249 -0.685937 1.095511 0.345968 -1.718645 -1.778807 3.204100 -1.081077 -2.446357 -0.021520 -0.538903 0.027892 -0.196611 -0.840934 1.601990 -0.572740 -0.842813 1.514012 -0.536994 -0.386483 1.767904 2.292297 -0.887235 -0.461167 -1.260214 0.444730 3.903916 0.537805 -0.415390 -0.061104 5.876415 -0.476499 2.766488 -2.836213 -2.682512 3.963633 -0.720854 -0.337579 -3.021395 -1.783910 2.181456 -3.130496 -0.206338 0.832902 0.293139 0.012678 -2.135379 -0.056319 2.369501 -4.956478 3.170658 1.672142 -0.608028 -1.031423 -1.196956 -1.186089 -0.439350 -0.852538 -2.239382 -0.101723 0.582218 -2.339754 0.175808 -1.374419 -1.477254 4.577774 1.037414 -1.340870 1.417976 0.487733 -1.540405 1.820034 -2.756738 -3.122445 -1.419518 0.551672 -0.069269 3.088769 0.741825 1.527464 -5.100091 0.714320 -5.017611 1.576982 -3.440886 2.041214 4.265893 -3.308661 2.920670 1.122168 0.355838 1.593630 0.767238 3.316649 1.360818 0.585578 1.335045 1.551054 1.707812 -1.038617 -1.995682 -1.608016 -2.008415 -0.532529 -0.485569 -5.171072 1.295965 -1.366235 1.767191 -0.086645 0.724602 -0.877601 1.554281 -3.986365 -0.763022 1.002426 -0.981291 1.721993 2.649987 -0.500791 -0.293235 -1.700467 2.996142 -0.785585 1.278344 -0.443621 2.544221 -0.455344 -3.709366 -3.337533 -0.295388 0.944288 -2.259211 -3.736010 -3.744156 -0.884449 0.167536 -1.731674 2.704074 5.853162 -1.805248 -2.525563 3.815806 0.009723 1.948008 3.252873 0.944063 3.751197 -1.293272 -0.905887 -0.573714 -1.048294 0.684064 -0.148801 0.125708 -2.084873 1.838585 -0.019461 -1.475807 1.908094 -0.186818 -1.270488 -1.365442 -0.027716 -1.969497 -2.569331 4.036767 -0.829602 3.170111 -0.908103 4.987806 -0.970528 -3.015682 1.375894 -2.062172 0.024503 -2.025512 -0.043193 0.011198 1.388875 -3.459620 -2.428307 -0.263434 -0.297056 -1.603652 2.329322 0.847344 -0.094608 0.491929 0.711126 2.840791 2.799606 -1.051362 1.013217 -3.550945 1.282046 1.596895 -0.332847 -4.538232 0.222370 -0.339605 -1.050682 1.442968 -0.043440 1.083693 -1.429262 -1.074226 0.619076 -0.305533 1.087638 0.430861 -2.305272 0.902674 -0.227898 0.957742 1.901086 3.230958 3.618207 2.316121 0.806616 1.419524 -0.343307 -0.511858 0.066625 0.540891 0.536262 1.165103 1.733193 2.699672 2.497483 1.045770 2.237576 1.954451 -0.672557 3.264110 1.117493 4.862719 -1.426860 -1.321716 0.493845 -0.102587 3.327448 4.558690 -1.679571 -0.714869 2.367175 0.502291 -0.404712 -2.818269 0.179975 -0.610911 -1.124783 2.249992 0.749521 -0.544328 -0.242487 4.307086 -1.156041 -5.032732 2.984774 1.278301 1.941179 0.295593 0.395189 0.143992 2.219289 -2.056130 1.374801 1.951516 2.299450 -2.817111 -0.520324 0.204343 2.167229 1.409634 1.972887 -3.887433 0.079613 1.914735 3.181634 1.098761 1.378175 -1.393592 -2.295694 0.840452 -0.503844 -0.408874 -0.113319 0.955370 -1.537615 0.468317 -1.211631 -1.984615 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.484032 -1.007629 2.029417 -4.201135 -4.231762 0.594987 -0.234622 -3.703320 -1.691394 4.290697 1.611038 -2.391271 -0.922371 5.615208 -0.939909 -3.189693 -0.219113 -0.885474 -0.092168 -0.553519 -1.565441 2.923140 -1.947489 -1.480342 1.557495 -1.117400 0.007728 2.381252 0.227134 -0.256684 -0.524185 -2.942212 -0.581358 6.768417 2.424819 -0.048154 -0.988424 9.582600 -3.370367 5.648937 -5.647741 -5.795306 6.344832 -1.246458 0.317595 -3.148721 -2.767362 3.763640 -2.160307 -1.863416 1.629115 -0.537360 1.566985 -2.765807 -0.216190 2.228106 -6.423288 2.771582 3.282826 -3.448435 -3.615360 -1.899935 -0.603589 0.961802 -4.158115 -3.731769 0.603389 1.682244 -1.065317 -0.684915 -2.518065 -4.717413 5.603002 1.936175 -1.809065 1.176234 0.049233 -3.117639 3.723858 -2.099316 -6.455334 -2.542569 -0.176026 -3.532405 4.109652 1.797593 5.136780 -9.086474 3.476158 -9.593031 2.708923 -3.781533 3.406802 6.901109 -4.179772 3.872298 3.056117 4.132127 3.238585 0.049029 4.703996 2.007791 0.332684 3.236934 3.806835 4.075463 -3.137424 -3.743881 -4.106746 -4.347075 1.246227 -2.329575 -6.715508 3.033285 -1.715028 1.067721 -1.576822 1.004790 -1.382546 5.010414 -7.530891 -0.418044 1.962149 -1.586050 2.625790 3.666611 -0.938631 0.514356 -2.482613 4.260194 -2.942562 2.421785 -0.819449 5.074358 -2.456481 -2.814446 -5.075521 1.551021 2.435381 -4.853455 -5.790863 -7.490441 -1.451531 2.607699 -3.434716 6.376112 10.247058 -5.172214 -5.154527 6.084203 0.687295 0.314776 4.505676 1.722749 6.133610 -2.244762 -1.775030 -2.136951 -2.527493 1.013574 1.896029 0.526365 -3.045757 4.658892 -0.947654 -2.359080 7.077847 -0.170627 -3.432226 -2.519953 1.658096 -2.793278 -3.092639 5.904308 -2.609828 4.212179 -1.099300 8.021616 -2.320913 -2.740851 1.894703 -5.692264 -1.498790 -3.948101 -0.392526 -0.299551 3.607367 -4.624750 -3.554691 -1.222793 -2.159196 -3.019442 3.770421 -0.093069 0.528477 2.086553 0.614152 5.322147 5.816495 -0.012171 -0.360596 -4.706136 2.626300 3.292765 -0.548232 -6.023311 -1.871361 -1.807835 -1.743198 0.894677 0.385259 3.854454 -3.933478 -0.540780 0.799359 0.101404 1.496869 1.726468 -5.792121 2.195001 -0.159502 3.101395 3.073614 5.685709 4.846867 6.178058 2.860819 2.433668 -1.163186 -0.616538 -1.470158 1.004760 1.733140 2.207582 3.563974 5.089294 4.575383 3.135176 4.297328 2.723132 1.149865 5.988402 -0.163944 8.591079 -2.226690 -0.883167 0.558708 1.266642 5.534776 7.460480 -1.788059 -0.891397 3.251988 -0.909698 -3.065954 -3.312819 1.579726 -1.082662 -0.338555 1.796154 3.508079 0.017350 -2.178135 7.866413 -1.564589 -9.123745 4.802139 2.136240 4.309703 3.130166 0.322323 1.999581 2.399436 -2.043173 4.478094 5.262737 3.964966 -5.776281 -0.101051 0.700450 3.783207 3.958318 3.819371 -7.433008 2.249484 2.383639 4.792378 0.161046 3.690521 -4.173936 -1.651861 2.134567 -1.881303 0.103846 0.960282 2.406151 -1.515377 1.620610 -4.417471 -2.703121 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 2.649261 -1.386295 2.410332 -5.226759 -2.521214 -0.737081 1.933858 -3.247677 -2.018644 5.670468 0.656381 -3.328596 -3.104556 5.667027 -0.665545 -2.681117 1.138951 -2.680098 0.598630 0.637456 -1.466033 2.597886 -0.828622 -2.608140 1.945185 -0.341098 0.334181 3.778293 1.988803 -0.452470 -0.198812 -3.262352 1.466314 7.547623 2.458486 -1.513021 -2.394485 10.408185 -4.317282 8.488129 -4.170757 -5.307691 8.595580 -1.325982 -0.620113 -5.200202 -1.888070 5.300409 -1.673635 -5.056745 0.837938 0.592349 2.035665 -4.969436 -3.326522 4.372530 -6.819080 2.227137 3.765653 -2.324782 -2.853642 -1.707339 -0.700816 2.140668 -5.535464 -4.391286 -0.199369 -2.220151 -3.916077 -1.117624 -4.189823 -2.674043 5.691760 2.573809 -2.041435 1.404741 -0.133020 -2.927158 3.934249 -2.575538 -5.975868 -2.917540 -2.666593 -3.152693 4.921419 1.098917 4.443665 -9.376960 2.876206 -9.604884 2.738864 -5.287547 3.123885 7.805744 -3.325881 5.636040 1.811915 4.354735 1.907334 -1.431849 5.331353 3.724918 1.122322 3.111904 5.412867 5.023591 -4.136036 -5.638952 -4.667615 -3.156629 1.857926 -2.889232 -7.332590 3.681972 -2.317654 0.094171 0.129502 0.593861 -3.600486 4.920865 -8.851019 -0.007144 1.373076 -1.686024 2.285273 4.854578 -0.422022 -0.486368 -1.490823 5.029155 -0.800380 2.993205 1.746960 5.869204 -2.341950 -2.073637 -1.885302 1.451879 2.783213 -4.621790 -6.438734 -9.761895 -1.619585 1.445034 -3.841188 5.774224 10.567888 -3.139143 -3.643810 5.880584 -0.683516 0.930575 3.589229 1.450009 7.318399 -2.663259 -3.162255 -0.609050 -3.001701 2.606683 7.400300 -0.110000 -3.689525 5.327161 -2.581559 -2.294153 3.118639 0.469197 -2.349745 -1.644930 -0.104452 -3.645294 -5.530823 6.342377 -5.966294 4.062264 -2.381245 8.946201 0.223300 -2.365108 2.603700 -5.506210 -1.131821 -6.706719 0.107477 -0.356805 3.157996 -5.818676 -3.961503 -1.648130 -0.445305 -3.107430 6.197872 -4.825210 0.247148 1.548909 0.711428 7.119294 3.980118 -2.475490 -0.011150 -5.237788 2.705159 2.829300 0.247402 -6.836215 -2.333675 -1.706410 -2.412953 2.087567 -0.958338 3.445495 -5.030054 -0.992691 2.989627 0.011662 -0.840620 1.017211 -8.517698 2.189756 2.586923 3.253657 4.357938 7.902294 4.110144 5.398955 1.037472 3.646087 -2.062993 0.509719 -6.573775 1.080341 0.119753 1.550591 3.820272 5.174042 4.269796 3.755217 5.605392 2.986511 -0.690580 6.235547 -0.024490 6.719296 -0.591407 -2.980247 2.571501 0.496090 5.889811 6.909726 -0.203774 -3.568034 4.593300 -2.912394 -3.918948 -2.121325 1.605053 -0.997232 0.605900 4.345413 4.111840 1.126537 -1.070371 8.035608 -3.192312 -11.630409 4.278782 3.077444 4.720323 4.932402 -0.402807 4.757788 2.385878 -0.838613 3.512915 5.007806 3.532038 -6.253910 1.944228 1.159492 2.938617 4.876178 2.757564 -12.162421 -0.814907 1.061163 6.246073 0.798477 5.965883 -4.463593 -0.551907 3.204656 0.291704 1.170722 -1.721803 3.543786 -1.962810 0.595346 -5.189904 0.737407 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.791065 0.051454 0.744802 -1.519504 -1.014322 -0.051839 0.862539 -1.349100 -0.651534 1.504680 0.550702 -1.117185 -1.017979 1.495957 -0.395177 -1.094915 0.187378 -0.565756 -0.440720 -0.383197 -0.565528 0.622140 -0.471715 -1.161787 0.565178 -0.296494 0.404215 1.466684 0.424258 0.072611 -0.226759 -0.794323 0.442725 2.619972 0.807923 -0.209215 -0.520622 3.282701 -1.646633 1.978004 -2.294032 -2.026341 3.051826 -0.394274 -0.296127 -2.441307 -0.934304 1.493325 -1.073750 -0.907130 0.021607 -0.228506 0.539422 -1.658738 -0.688067 1.986695 -2.696192 1.158807 1.124587 -1.252428 -1.721862 -0.703025 0.251907 0.376248 -1.506840 -1.646144 0.148773 -0.217754 -0.892163 0.313906 -1.581357 -1.638303 2.238380 0.496462 -0.646346 0.391226 -0.558061 -1.289611 1.159235 -0.417476 -1.643198 -1.006785 0.238071 -0.678694 1.394492 0.442540 1.456546 -3.428439 0.192374 -3.359333 0.920109 -1.894672 1.401257 2.256725 -1.386260 1.703433 0.380130 0.848399 0.409986 -0.044230 1.592105 0.729292 1.075162 0.535237 1.618101 1.516119 -1.179108 -1.969678 -1.292792 -1.275301 0.378502 -0.631038 -3.295835 0.995416 -1.396858 0.102527 -0.190514 -0.019207 -0.581968 1.977870 -2.605236 0.121503 0.698305 -0.573258 1.226397 1.692463 -0.149239 0.293521 -0.594321 1.498868 -0.058774 1.001767 -0.257395 1.720992 -0.822237 -1.923050 -1.335805 0.461283 0.977437 -1.517937 -2.359252 -2.754016 -0.730223 0.753087 -1.113250 1.452704 3.510314 -1.110455 -2.079700 1.826680 0.098166 0.457004 1.560690 0.569455 3.034536 -1.488393 0.086112 -0.283838 -0.243253 0.782997 1.540332 -0.637404 -1.660801 1.559023 -0.628460 -1.395513 2.097335 -0.000182 -0.526759 0.007609 0.099518 -0.972715 -1.663279 2.537485 -1.100071 2.218308 -0.899656 2.966528 -1.188977 -1.231445 0.712170 -1.741624 -0.458718 -1.656854 -0.119654 -0.102573 1.550491 -1.749430 -1.521090 -0.586378 -0.436632 -0.682139 2.306958 -0.798048 -0.160195 0.184459 -0.077217 1.656806 1.342307 -0.909002 0.079525 -1.876165 0.880564 1.508414 0.310082 -2.892091 -0.683932 -0.700928 -0.756832 0.291066 0.163466 1.453915 -1.133746 -0.282421 0.974389 -0.142438 0.108436 0.039143 -2.427908 0.902996 -0.138344 0.642581 0.782106 2.724321 1.897960 1.615000 0.246972 0.590175 -0.139068 -0.735939 -1.428058 0.377406 0.350495 0.677865 1.194862 1.786005 1.122393 0.945394 1.607760 0.824545 -0.032816 2.115071 0.723833 2.668363 -0.977680 -0.573970 0.576838 -0.098345 1.895430 2.551741 -0.143033 -1.186003 1.145182 -0.289167 -1.164284 -1.512156 -0.243329 -0.377616 -0.458331 1.648411 1.269876 -0.385440 -0.544755 3.430827 -0.362982 -3.752490 1.760695 0.856811 1.278979 1.198358 -0.587422 0.853174 1.408462 -0.069630 1.051085 1.430365 1.375607 -2.112933 -0.175846 0.241695 1.379674 1.268326 0.522567 -3.831658 0.221368 0.764477 2.560571 0.402393 2.051335 -1.332982 0.100779 0.397477 -0.103449 0.307181 -0.139652 1.180066 -0.913265 0.160008 -2.309138 -0.143765 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.367997 -0.995522 3.436030 -6.085468 -5.981834 0.671921 -0.104162 -4.281525 -1.462105 1.421899 2.297576 -2.120404 -3.401087 5.020297 -1.570742 -5.554804 -0.464670 -0.045778 -0.117668 -2.257221 -0.884936 2.981557 -1.874151 -1.477553 1.418180 -2.789979 0.288634 4.951143 3.784919 0.169314 -0.244434 -3.324169 -0.471198 8.080212 2.681961 0.689251 -0.774791 11.554665 -2.040641 4.665465 -7.137174 -6.442033 7.680765 -1.465988 -1.204717 -7.538209 -4.800030 3.280558 -6.516145 0.273269 2.292906 -0.795809 3.028755 -2.854884 0.263257 3.620846 -8.194365 4.064663 3.031037 -4.615015 -2.671986 -2.225714 -2.203921 0.819863 -3.173971 -4.108631 0.804047 2.073512 -1.790661 0.121428 -1.790224 -4.721566 9.614426 2.090642 -2.524601 1.704836 1.571099 -4.810350 3.990750 -1.260729 -7.459569 -3.293585 0.362674 -2.092233 5.858841 0.171968 4.947308 -10.548660 0.720178 -11.139664 3.192093 -5.473829 3.951667 7.194133 -6.720023 5.011657 3.743329 1.938119 2.811141 -0.602341 5.752836 2.518924 2.064071 3.776574 4.953666 3.082343 -2.174382 -4.380486 -4.574883 -5.098408 0.171346 -3.804353 -11.999203 2.521537 -2.004660 0.575718 -2.119268 0.295832 -1.006107 6.282657 -6.405735 1.354441 2.836400 -2.024355 2.105863 4.643260 -1.039938 0.523011 -2.059471 5.801358 -3.938855 3.817568 -1.637748 5.517764 -0.659546 -6.168807 -7.161423 1.151593 2.427151 -4.582040 -7.261383 -5.942097 -2.688281 2.264067 -2.675012 4.195456 11.938277 -5.391171 -7.560338 7.291105 1.533290 1.349008 5.558627 2.792306 6.656463 -2.022611 -2.330401 -4.611466 -3.321635 1.341261 2.535817 0.434186 -3.541066 5.783326 -0.915772 -4.518923 7.401999 -2.196500 -4.041781 -1.753748 0.817035 -4.569234 -4.341560 7.375945 -0.898109 6.846533 -1.465993 9.237584 -3.147250 -5.982728 1.151245 -4.808726 -0.964448 -3.916719 0.279488 0.969078 3.322755 -5.564580 -5.213379 -2.631836 -1.843614 -2.768708 4.444837 0.483353 0.326704 2.335167 1.512598 4.712328 7.598881 0.118827 -0.203500 -5.222668 3.690082 4.197236 0.455075 -8.352643 -1.218824 -1.065886 -1.899295 0.756505 1.098610 4.676196 -2.584272 -0.778095 -0.003634 -1.066530 1.723340 2.283422 -8.488854 2.697781 -0.100100 2.503342 2.635710 5.790443 7.757683 6.195105 3.113286 2.884274 -0.113654 -1.122865 -0.227088 0.693903 3.108143 1.703538 3.397944 7.233007 5.363086 3.049462 5.824183 5.678475 1.931334 6.399669 0.928299 10.419714 -2.117259 -1.912332 0.138115 1.739277 6.393693 10.049537 0.779876 0.272637 3.995882 1.801223 -1.720852 -8.032419 1.050234 -1.095130 -0.353940 5.405643 3.892303 -1.371293 -2.013789 9.078777 -0.819639 -9.935559 5.695527 2.784735 4.171585 1.674312 -0.065196 -0.010464 3.863764 -3.476559 5.220642 5.058688 4.093395 -6.782312 -1.762919 0.836831 3.982032 3.995253 4.720448 -8.230459 0.823516 2.821694 6.958731 1.082169 5.279568 -4.239471 -3.313860 2.672566 -2.113317 -0.526399 1.251877 1.401864 -4.044433 1.385345 -4.191413 -4.712884 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 3.781219 -5.966311 6.469020 -16.563302 -11.655220 3.036554 1.241826 -13.659737 -4.745806 14.369221 4.179834 -5.013110 -3.657921 14.606208 -1.801522 -11.134998 1.339247 0.998737 0.998876 -1.406118 -2.226582 8.384316 -5.979678 -6.192306 1.801997 -5.812855 4.223841 9.653087 1.012005 6.233813 -2.167686 -11.196177 -2.785653 21.605162 9.829672 3.847631 -6.986660 27.653802 -10.455175 22.540395 -19.793058 -19.318753 18.621704 -3.401292 1.238542 -15.978237 -8.636318 8.615994 -4.526868 -8.485106 3.550304 -3.665526 9.762211 -8.274189 -1.635303 5.295760 -13.640585 1.278853 8.792546 -13.270781 -10.320422 -7.099591 -0.297422 7.724255 -21.240236 -11.129983 2.270335 3.538589 -2.750961 -0.107416 -8.996008 -15.569848 15.481952 8.644733 -9.012173 0.931493 1.172254 -15.339055 10.405684 0.296540 -19.719007 -8.476309 -4.484953 -11.929657 12.203291 2.860905 20.588336 -28.270107 11.329429 -29.937219 7.745109 -11.867294 10.946448 20.870527 -11.646436 11.045864 9.434863 21.087539 8.327419 -5.053465 12.358945 11.968518 2.921880 7.621312 17.464927 12.697622 -9.953925 -15.665195 -11.716843 -12.108974 4.787987 -14.681147 -27.628789 7.596214 -4.936363 -0.688107 -7.274125 1.851438 -6.566496 18.916898 -27.407148 -0.094140 6.023653 -5.206268 6.366878 8.816094 -2.720482 2.996776 -3.936659 13.628033 -8.677931 7.954316 -2.491713 15.969172 -13.557551 -0.485696 -11.153205 6.329752 8.401070 -13.763864 -19.362771 -23.425923 -9.147917 13.354543 -7.284748 16.528546 28.924638 -14.165206 -17.849335 15.934728 -1.883519 -3.981137 11.622954 6.348787 15.316594 -7.302480 -3.734099 -10.368522 -5.729213 2.891018 17.804055 0.242332 -11.035742 17.534814 -10.667208 -11.158495 20.614219 -3.524932 -9.647454 -13.525113 2.300864 -11.424915 -7.321543 19.185422 -23.773199 14.686539 -9.961613 21.644033 -7.838613 -5.881822 3.000184 -25.921473 -6.305269 -15.627752 1.732292 -0.819998 13.971950 -16.369595 -12.515245 -5.354680 -7.453099 -6.191460 14.519840 -12.229174 -1.705228 6.035263 2.890041 23.849414 16.730835 0.854671 -5.012422 -8.454614 10.659560 11.532588 -0.958246 -15.814149 -8.116587 -6.383699 -6.201607 -4.237987 3.076447 13.044028 -13.528773 -1.662446 1.003233 -0.272850 1.684981 5.366722 -27.567455 8.183106 3.083314 10.485126 7.618533 17.552791 13.629684 18.449414 8.270163 3.801434 -1.230762 -4.215437 -12.472027 5.815378 9.014457 0.531976 8.836620 19.682157 12.463261 9.511514 15.528789 13.125630 7.976915 16.609773 -0.790943 22.818004 -1.663093 -4.049146 3.688968 3.434905 14.982598 24.300209 3.522953 1.150314 9.660526 -3.900585 -12.249637 -10.225314 3.763891 -2.839412 -0.070997 7.684415 12.434426 -1.066829 -7.374047 24.870080 -2.287807 -28.645556 11.059326 7.371370 12.999634 15.288518 -3.043402 8.893271 6.496888 -2.286523 18.844057 14.542035 8.522318 -17.167915 -1.189547 2.648607 7.114141 19.839454 8.749147 -21.233411 6.226280 4.584224 20.432647 1.317962 17.771996 -12.817552 2.103437 6.950445 -6.157798 1.367622 -0.911433 7.814211 -3.391177 1.286765 -19.028663 -7.834589 +PE-benchmarks/reservoir-sampling.cpp__main = 0.493368 0.013390 0.583483 -1.373678 -0.817736 -0.204194 0.890518 -0.903663 -0.511552 0.941616 0.489621 -0.992715 -0.778138 1.457671 -0.220356 -0.938673 0.252834 -0.709708 -0.457417 -0.183566 -0.381793 0.671841 -0.313242 -0.932203 0.660231 -0.177753 0.139327 1.305845 0.343523 -0.237794 -0.150432 -0.550655 0.379001 2.143066 0.445824 -0.129063 -0.384012 2.777642 -1.343354 1.698577 -1.784737 -1.464483 2.611531 -0.387322 -0.335479 -2.048057 -0.938702 1.217736 -0.716456 -0.770053 0.049234 -0.032476 0.255463 -1.447271 -0.461604 1.710934 -2.275600 0.967136 0.982752 -0.811340 -1.262226 -0.591187 0.014884 0.043688 -1.182325 -1.337987 0.082698 -0.319912 -0.784774 0.272956 -1.157520 -1.261726 2.013103 0.493972 -0.379793 0.549144 -0.409261 -1.230933 1.027188 -0.498915 -1.283204 -0.815596 0.316641 -0.425583 1.269604 0.231165 1.015515 -2.816740 0.024417 -2.645058 0.755122 -1.748877 1.109632 1.981525 -1.187625 1.569397 0.231921 0.526966 0.314318 0.186199 1.433540 0.594477 0.963332 0.476296 1.295191 1.186127 -0.961616 -1.585426 -1.086708 -1.044410 0.309923 -0.506821 -2.677444 0.876213 -1.065012 -0.127959 -0.062767 0.046972 -0.357634 1.589926 -1.872679 0.137948 0.709483 -0.457997 0.817302 1.448692 -0.138040 0.024251 -0.742377 1.266950 0.033897 0.980262 -0.271728 1.404073 -0.626599 -1.680647 -0.927975 0.111334 0.579999 -1.273788 -1.949033 -2.231254 -0.527026 0.417236 -0.976972 1.149309 2.880485 -0.895298 -1.680378 1.680492 0.634759 0.554908 1.127668 0.433035 2.415489 -1.157547 -0.008218 -0.181115 -0.214568 0.677526 1.158006 -0.453095 -1.389378 1.131813 -0.507188 -1.586823 2.049587 0.027176 -0.370850 0.177542 0.043761 -0.950656 -1.547409 2.215218 -0.436452 2.084863 -0.745540 2.465515 -0.907361 -1.080912 0.724062 -1.110709 -0.257244 -1.583541 -0.121597 -0.028635 1.098597 -1.380534 -1.297881 -0.434815 -0.287404 -0.638458 1.719756 -0.688809 -0.091646 0.064613 0.021860 0.991598 1.109621 -0.853564 0.214490 -1.711562 0.741332 1.205026 0.346976 -2.401746 -0.321888 -0.465601 -0.636055 0.276792 0.109543 1.065424 -0.863169 -0.331289 0.898404 -0.133546 0.040817 -0.059968 -2.042120 0.654234 -0.176913 0.459614 0.654850 2.153391 1.787237 1.162015 0.081790 0.484490 -0.136214 -0.468872 -1.256606 0.270439 0.085753 0.601509 1.006041 1.527281 1.058710 0.727228 1.409987 0.731524 -0.117205 1.786524 0.693502 2.307295 -0.541620 -0.612534 0.543377 -0.099855 1.686012 2.138863 0.017814 -1.021584 1.042822 -0.045405 -0.928379 -1.259874 -0.301582 -0.308979 -0.504465 1.506806 0.643002 -0.438290 -0.261930 2.776526 -0.353241 -3.033829 1.403120 0.680510 1.125047 0.678099 -0.319717 0.682712 1.430115 -0.341081 0.826521 1.035723 1.191802 -1.627545 -0.359165 0.184066 1.101472 1.016848 0.570327 -3.053503 0.223022 0.625657 2.028300 0.308337 1.603279 -0.912361 -0.043316 0.260878 0.046043 0.109346 -0.104776 0.836728 -0.879704 0.019153 -1.937978 -0.227996 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 1.226427 0.578581 1.583869 -2.990728 -1.723567 -0.849361 3.372592 -3.000677 -1.971933 5.446285 1.082053 -3.034501 -2.350264 3.092518 -0.446318 -1.957787 0.487592 -1.006096 -1.464817 -1.452834 -1.325657 1.479454 -0.797521 -3.384223 1.759540 -0.683903 1.346588 3.695191 -0.463430 0.901799 0.862769 -1.735924 1.860861 5.813096 1.458063 0.247148 -2.537353 6.558305 -5.319079 5.291683 -5.550601 -5.297260 8.241146 -0.773418 0.208893 -5.402374 -1.199534 3.777886 -0.629716 -3.516773 -1.198836 0.008893 1.333563 -4.805028 -2.374835 4.491171 -5.064827 1.600963 2.685058 -4.466068 -5.327456 -0.989727 0.887972 1.426467 -4.534734 -3.920087 -0.471972 -1.373349 -1.515646 1.016868 -3.863358 -3.484180 3.546884 0.767453 -0.790927 1.226208 -2.332329 -2.089374 2.666144 -0.333350 -2.771490 -2.747944 1.090728 -1.494966 1.377767 2.291798 3.909220 -7.744290 0.073458 -6.881263 2.748544 -3.554911 3.287148 4.654757 -1.544914 4.974304 0.441738 1.672620 0.672447 -0.176093 3.046454 1.525436 3.819080 1.425349 3.494249 4.496834 -3.740149 -5.798528 -3.736411 -2.591178 2.134834 -1.619524 -5.678906 2.603880 -3.474776 -1.020467 0.091756 -0.670101 -1.109827 5.173354 -6.618720 0.513737 2.202446 -1.035781 2.636863 2.889404 0.220022 0.609654 -0.779410 2.629084 0.474635 2.195978 0.201274 4.493855 -2.249788 -3.171260 -1.170876 1.320113 1.775072 -3.661436 -4.569786 -7.042803 -1.727858 2.505602 -2.928724 2.315797 7.658677 -2.399698 -4.571830 3.320598 0.516982 0.144015 1.938058 1.391401 7.109542 -3.923682 0.364692 0.076922 -0.087340 3.655961 7.633438 -1.730292 -4.782368 4.053163 -1.826638 -3.810392 3.882168 -0.006416 -0.435411 -0.366245 0.691359 -1.916306 -2.864376 4.967198 -3.808907 5.658139 -3.867200 6.157747 -3.184387 -1.900595 1.591745 -5.577614 -1.933665 -4.501186 0.179491 -0.577051 3.659640 -4.029338 -3.160324 -1.731113 -1.500436 -1.284120 5.662913 -5.422768 -0.617222 -0.083151 -0.925970 3.881016 1.551555 -2.431809 -0.664665 -4.154649 1.748745 3.052388 2.137622 -6.857503 -2.288238 -1.875564 -2.103564 0.192160 0.206651 3.615156 -2.131858 0.422692 3.142083 -0.793342 -1.014772 -0.988887 -4.934211 2.141615 0.126003 2.024274 1.268539 6.988337 4.127285 3.454075 -0.460862 1.909544 -0.495457 -2.471579 -4.799856 1.863462 0.520390 0.882111 2.974504 4.010811 2.450717 2.471678 4.338742 0.788440 -0.466864 5.137799 0.443978 5.534307 -2.875167 -0.939063 2.195779 0.235179 4.053245 4.652858 1.158654 -4.568171 2.661752 -2.134883 -3.610082 -1.254638 -0.842078 -0.613770 -0.866717 4.570961 3.658364 -1.048758 -1.104711 8.012604 -0.804547 -9.082953 4.196073 1.829535 3.240376 2.918511 -1.892182 2.844475 3.992729 1.217641 1.542279 3.143489 3.086901 -5.593814 -0.349383 0.564893 3.256696 4.544135 0.246546 -11.163049 -0.106971 1.257221 5.756939 -0.250678 6.185049 -3.328931 1.390851 0.674186 0.545232 0.851962 -0.707682 2.621063 -1.045419 0.190385 -6.682855 1.242392 +PE-benchmarks/min-cost-path.cpp__main = 0.975575 -0.089832 0.832351 -1.523887 -0.776412 0.050664 0.554987 -1.571803 -0.538668 1.784439 0.515704 -1.054514 -0.547317 1.288203 -0.536228 -0.998038 0.445198 -0.096377 -0.328843 -0.401340 -0.604923 0.369871 -0.525897 -1.339623 0.460307 -0.403718 0.784390 1.121159 0.008290 0.152325 -0.405981 -0.848937 0.416429 2.773217 0.952332 -0.083879 -0.738558 2.748715 -0.691623 1.904443 -2.433344 -1.710305 2.648248 -0.403919 0.211366 -2.096234 -0.624748 1.428422 -0.551264 -1.033398 -0.245927 -0.524542 0.719161 -1.821772 -0.932727 1.678016 -2.006282 0.795782 1.202118 -1.375110 -1.841110 -0.671571 0.679732 0.573115 -1.590696 -1.696694 0.318681 0.239049 -0.920805 0.519375 -1.786363 -1.976116 1.911299 0.504871 -0.839124 0.257703 -0.721562 -1.380891 1.015562 -0.240875 -1.523515 -1.170081 0.311165 -0.748582 1.227037 0.421712 1.674041 -3.409720 0.644670 -3.339681 0.969568 -1.556394 1.676251 2.161661 -1.236322 1.482250 0.395089 1.144933 0.281942 0.089073 1.523307 0.708741 0.716577 0.126323 1.741928 1.280285 -1.014863 -2.045081 -0.869631 -1.211609 0.302816 -0.604266 -2.821361 1.005337 -1.690387 0.489296 -0.501310 0.180957 -0.573043 1.958429 -2.848547 -0.567477 0.747003 -0.648306 1.392812 1.449930 -0.082819 0.467058 -0.497231 1.396090 -0.039924 0.365472 -0.330001 1.793741 -0.947120 -1.497371 -1.358486 0.433607 1.182070 -1.572339 -2.559250 -2.616986 -1.040110 0.842693 -1.068974 1.755218 3.107841 -1.001033 -2.006789 1.476232 -0.133748 0.020781 1.793899 0.697900 2.876265 -1.899217 0.516028 -0.348811 0.165086 0.892933 1.300766 -0.969004 -1.728475 1.793616 -0.882859 -1.090090 2.150133 0.085771 -0.291845 0.098995 0.062670 -0.714000 -1.344267 2.224943 -1.401022 2.162346 -0.978469 3.118454 -1.491707 -1.142341 0.540443 -1.644226 -0.557750 -1.040263 0.179386 -0.230199 1.929942 -1.785464 -1.692011 -0.113140 -0.646777 -0.273170 2.513789 -0.437737 -0.341358 0.063420 -0.503391 2.111467 1.167466 -0.968376 0.030681 -1.441352 0.882250 1.512469 0.380843 -2.189750 -0.940147 -0.912204 -0.819212 -0.111359 0.318466 1.631828 -1.325026 -0.319670 0.924364 -0.069763 0.125445 -0.144989 -2.160663 0.982175 -0.271292 0.451117 0.552757 2.820825 1.651024 1.666624 0.121611 -0.008861 -0.211596 -0.989734 -1.478573 0.430862 0.453010 0.660421 1.080786 1.533922 0.925754 0.940682 1.480905 0.474249 0.278494 2.134202 0.363872 2.248407 -1.220025 -0.089940 0.659246 -0.415822 1.970345 2.499047 -0.390220 -1.207377 1.047936 -0.364580 -1.236903 -1.485311 -0.310199 -0.178200 -0.477294 1.022380 1.468222 -0.304303 -0.850991 3.426248 -0.151175 -3.450289 1.831956 0.781488 1.127234 1.474453 -0.789895 1.070008 1.148509 0.341672 0.869794 1.236870 1.455214 -2.130452 -0.229035 0.249670 1.380569 1.084701 0.296643 -3.199112 0.263321 0.774523 2.554268 0.485367 1.860758 -1.442471 0.504458 0.306427 -0.129452 0.368308 -0.209330 1.238924 -0.725434 -0.114009 -2.218038 0.134272 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 0.735723 -0.052920 1.240441 -2.107643 -0.031191 -0.756205 3.025553 -1.009817 -0.479906 3.308342 0.226703 -1.127051 -1.463907 1.705667 -0.042826 -0.822061 1.182874 -2.119755 -0.709555 -0.050666 -0.356082 0.989221 -0.148775 -1.971696 1.250130 -0.191376 0.860139 2.070643 -1.042457 -0.245883 0.272471 -0.914758 0.884135 2.971787 0.380505 0.144187 -1.389502 2.914103 -3.043937 3.823895 -3.112266 -2.475171 3.956033 -0.582243 -0.127060 -3.277441 -0.007191 1.701561 0.294248 -2.270298 -0.599170 0.092989 0.899639 -2.983801 -1.217237 2.637885 -2.519508 0.124651 1.301647 -1.675500 -2.438767 -0.675921 0.584600 0.806860 -2.523926 -1.925895 0.156213 -1.738949 -1.615920 0.891729 -1.722854 -1.371476 1.288387 0.700147 -0.371181 0.787557 -0.999294 -1.880592 1.551025 -0.988098 -0.868461 -1.557477 0.186880 -1.062657 1.054003 0.255790 1.747038 -3.815404 0.083363 -2.738747 1.459332 -1.974749 1.506272 2.378381 -0.075809 2.629008 -0.382638 1.149044 -0.414532 -0.777298 1.425954 1.419815 2.487548 0.257101 2.212252 2.180386 -2.312872 -3.421737 -1.730518 -0.731440 1.102248 -1.353957 -2.440486 1.116969 -1.404704 -0.745418 0.773378 -0.666263 -1.051876 2.862930 -3.452212 0.427791 1.163310 -0.634263 0.738760 1.668466 0.168836 -0.307893 -0.182840 1.596901 0.650293 1.601154 0.133793 2.298994 -1.638941 -0.942170 0.872294 -0.064409 0.485579 -1.673958 -2.408466 -3.857328 -1.043892 1.342293 -1.148633 1.677925 3.340987 -0.465950 -2.444225 1.491204 0.324825 -0.131133 0.136433 0.606846 2.450947 -2.053877 0.273372 -0.350046 0.603654 1.973463 5.635940 -0.876143 -2.548658 2.058410 -1.699364 -2.339361 1.569396 0.571823 0.478460 -0.019334 -0.243300 -1.591564 -1.716049 2.486580 -2.675197 3.056270 -2.305855 3.172482 -1.531306 -0.715329 0.689385 -2.780139 -0.674373 -2.976757 -0.263665 0.402775 1.569753 -2.040299 -1.687759 -1.329954 -0.530495 -0.222559 3.053780 -4.513927 -0.499659 -0.732167 -0.473020 3.251064 0.247088 -1.911655 -0.238457 -1.637694 1.022381 1.266609 1.356435 -3.131774 -0.873184 -0.458436 -1.259455 0.295917 0.083881 1.625344 -1.381312 -0.246863 2.376063 -0.355508 -1.659171 -1.089444 -3.959372 0.605551 0.714077 0.761019 0.584503 3.254129 1.647235 0.958301 -0.915043 0.282238 -0.729477 -1.169308 -3.812065 0.661253 -0.200593 -0.301010 1.212067 2.156215 1.008333 0.832289 2.391707 1.145034 -0.837243 2.261300 0.333434 1.502831 -0.626274 -0.963381 1.777007 -0.354394 1.918858 1.529908 0.607803 -2.224820 1.783598 -0.699380 -1.904659 -0.178241 -0.748994 -0.728780 0.125577 2.490238 1.476874 -1.085904 -0.087269 3.750511 -0.357368 -4.332678 1.425514 1.121681 1.796105 1.539265 -1.071980 1.744367 1.834148 0.489536 1.007746 0.563072 1.235832 -2.110609 -0.393643 0.401069 0.989945 2.667541 0.129223 -5.517078 -1.172433 0.073095 3.214907 0.263098 3.860643 -1.106103 1.562973 -0.066930 0.543596 0.517621 -0.772056 1.211448 -0.838826 -0.318722 -3.778066 1.563430 +PE-benchmarks/box-stacking.cpp__main = 2.419429 -1.243850 1.196831 -2.522611 -1.368347 0.463665 1.190321 -4.107176 -1.750606 5.072269 1.411028 -2.656937 0.103587 3.789332 -0.435143 -1.394157 1.009703 1.219744 -0.499570 -0.019500 -1.524181 1.067963 -1.494224 -3.706268 1.053213 -0.777496 1.723988 2.898003 -1.540151 2.489662 -0.720994 -2.253725 0.652037 6.357100 2.666586 0.015766 -1.727448 7.150100 -5.400195 6.507840 -4.684580 -4.869955 7.657143 -0.902634 0.472471 -2.620692 -2.457994 3.248026 -0.353042 -4.068744 -0.671408 -1.345958 2.206148 -4.068810 -2.170963 3.737697 -4.463511 0.007042 2.938540 -4.047643 -5.483048 -1.779475 1.281342 1.757717 -6.245729 -3.965576 0.461568 0.496937 -0.320214 0.233744 -4.774148 -5.329837 4.484831 1.015363 -1.565102 0.214415 -1.849237 -3.116173 2.634930 1.593425 -4.160605 -2.647670 -0.341100 -3.273429 2.398187 2.097627 5.901277 -8.329751 2.766577 -8.479691 2.792559 -3.529634 3.760719 5.657386 -3.178064 3.826098 1.616583 6.133029 0.776057 0.388840 3.374156 2.194454 0.724934 0.704866 4.621551 4.450066 -3.582644 -5.563002 -3.471315 -2.702725 2.184955 -2.439776 -6.990188 2.640645 -3.792739 0.800411 -1.615650 0.505592 -1.477396 6.030489 -7.613802 1.149049 1.712497 -1.356626 3.136177 2.741612 -0.331193 1.066087 -1.288546 2.806805 -0.504367 0.523754 -0.467016 4.600938 -4.453523 -1.615510 -1.926073 2.037705 2.839041 -4.665433 -5.616107 -7.797939 -1.762908 4.361420 -2.742136 4.571422 8.105657 -3.095393 -3.995192 3.272062 -0.104042 -0.851662 3.687980 1.697534 7.447642 -4.308993 0.857992 -0.669965 -0.133091 2.059051 4.040252 -1.934569 -4.177621 4.611551 -2.231680 -3.057623 8.753296 0.197608 -1.124922 -1.072536 0.991460 -1.184967 -2.447241 6.317643 -5.474966 4.242616 -3.156999 7.120685 -2.915082 -0.859965 1.455252 -5.998151 -2.585883 -4.472350 0.320555 -1.354935 5.003496 -4.126372 -3.609063 -0.646517 -1.984438 -0.847607 6.237451 -2.009386 -0.651951 0.694181 -1.597585 4.849523 2.450262 -1.538577 -1.065632 -3.561919 1.763807 3.877114 -0.594932 -5.612256 -2.871338 -2.546302 -1.690021 -1.654834 0.802344 4.208389 -4.889939 -0.278737 1.860530 0.406116 -0.013191 -0.090070 -5.838965 2.615439 0.222502 2.139005 2.285688 6.945440 3.971288 4.759357 0.737133 1.107056 -0.729180 -1.931801 -5.492213 2.304963 1.066475 2.113445 2.758290 4.523274 2.115195 2.933736 2.826270 0.387600 2.226275 5.233227 1.324889 6.007545 -1.628165 -0.404182 1.878441 -0.232110 4.881876 5.353285 -0.547449 -2.731513 1.893097 -2.662458 -4.575730 -1.388956 0.018551 -0.280842 -1.430261 2.316841 3.605637 0.370940 -2.628884 8.509725 -0.524303 -9.602290 3.734125 2.010848 3.372350 5.324373 -1.954614 4.156031 2.595345 2.398323 3.571359 3.734308 3.431927 -5.577511 0.679740 0.674412 2.890623 5.038836 0.640064 -9.057811 2.569361 1.309294 5.736163 -0.066407 5.030104 -3.997103 2.781852 0.312932 -0.935646 1.514479 -0.869025 3.386358 -0.601920 0.601644 -7.461824 0.151174 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 10.553204 -6.097404 5.083163 -9.618439 -4.717234 1.708558 7.231126 -18.385256 -8.201194 26.193825 5.766297 -11.489233 2.059996 16.096034 -0.966403 -3.936479 4.983407 7.642937 -1.924875 0.391375 -6.990828 4.701983 -6.728610 -16.991141 4.766704 -3.342054 8.649354 12.815175 -10.565187 14.033153 -1.648361 -10.545759 3.074272 27.373057 11.917272 0.837319 -9.401613 30.070822 -27.905584 31.351223 -20.112366 -22.146579 34.598648 -3.779161 3.598314 -9.926222 -10.112160 14.303245 2.340958 -21.289286 -4.353901 -5.849156 11.116976 -18.534756 -10.341999 15.451149 -16.840544 -4.261323 13.179216 -20.583226 -26.486026 -7.242272 6.330073 9.186963 -31.696381 -17.417790 1.211106 1.123578 1.048935 0.761583 -21.781668 -23.902531 16.310485 3.844616 -6.618530 0.466744 -9.045591 -13.185849 11.535125 10.251164 -17.565718 -12.195116 -2.728444 -16.568466 7.954862 10.557516 28.688257 -36.169522 13.729687 -36.551784 12.888103 -14.139715 16.364511 24.563398 -11.478123 17.434411 7.317712 30.550805 2.734840 0.937700 13.419969 10.654415 3.371431 3.167314 20.923448 21.634360 -17.869217 -26.719619 -16.880817 -11.046874 12.253246 -11.974241 -28.186325 11.703823 -16.355611 2.274834 -7.101258 1.567608 -6.720141 29.038328 -34.989126 7.679275 8.335461 -5.819243 12.913598 10.512078 -0.888467 4.555552 -4.703855 10.849901 -2.372998 1.844999 -0.943797 21.004355 -22.624155 -2.918260 -4.526639 9.862086 12.066657 -20.907789 -23.361904 -36.242568 -7.654305 22.505700 -12.223340 19.064262 34.999242 -13.915536 -16.498121 12.398665 -1.159049 -6.590943 13.335684 7.777262 32.351419 -19.243755 3.721355 -3.092601 -0.174252 10.691057 24.156988 -8.493479 -19.251311 21.642981 -11.228412 -14.308585 40.697656 0.844465 -4.260014 -5.713693 5.461240 -3.906165 -8.563832 27.157735 -29.140056 17.532738 -16.792628 30.033325 -12.403470 -0.421684 5.609531 -30.000079 -13.079813 -21.665061 2.203759 -6.510931 22.917188 -17.646765 -15.185892 -3.461057 -10.206318 -2.819681 28.256464 -14.560415 -3.368019 2.866368 -8.356948 22.792719 8.446804 -6.218856 -6.902705 -14.254509 7.439377 16.084607 -2.703161 -24.122920 -14.429762 -11.727105 -7.783162 -10.033771 3.722367 19.195578 -22.846914 0.358513 8.850760 1.677502 -2.601469 -1.342456 -26.367209 11.715535 2.391188 11.091556 9.857041 31.064570 16.319075 21.417372 2.645014 5.712054 -3.902215 -9.085558 -28.416724 12.484175 4.677606 8.217980 12.077549 19.858210 8.772882 13.568985 11.826458 -0.434403 11.616740 22.841490 4.701252 24.873555 -6.564880 -1.471679 9.800115 -0.012878 20.629356 20.859870 0.103366 -13.078404 7.622338 -14.891905 -23.022817 -1.778367 0.756907 -0.623696 -5.798999 9.800716 17.656958 2.216442 -12.080742 37.402071 -2.432227 -43.308381 15.156287 8.710034 15.504716 26.186755 -9.069763 21.280358 10.765280 14.757238 16.488488 16.516061 14.544075 -25.535218 4.101381 3.258868 11.593365 26.352741 1.545088 -43.643885 11.540335 4.010976 24.796365 -2.833725 24.845565 -18.312117 16.158519 1.169645 -4.198378 7.498253 -4.738312 15.276651 -0.010269 2.818929 -36.349994 3.226322 +PE-benchmarks/box-stacking.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.908174 -0.257330 1.370929 -2.295204 -2.040438 -0.449778 0.491929 -1.254488 -0.772291 1.656535 0.263363 -1.756746 -2.109236 3.118229 -1.019500 -2.538992 -0.138419 -0.776049 -0.291881 -0.564165 -1.130862 1.558404 -0.749682 -0.926953 1.652076 -0.595949 -0.118107 1.957556 1.666515 -0.813797 -0.216666 -1.275226 0.293175 4.044782 0.589419 -0.085003 -0.091936 5.835690 -1.077837 2.983722 -3.427201 -3.196932 4.098550 -0.660278 -0.136763 -2.901333 -1.350029 2.325607 -3.643914 0.048447 0.856723 0.261964 -0.048922 -2.247775 0.230880 2.579006 -5.317507 3.423563 1.606542 -1.013171 -1.660007 -1.262505 -1.030382 -0.502992 -0.802540 -2.396292 -0.080172 0.577598 -2.274811 0.522559 -1.511966 -1.646429 3.948393 0.961237 -1.222944 1.428805 0.208607 -1.199115 1.830393 -3.017356 -2.995123 -1.614661 0.983298 -0.407154 2.941441 1.208261 1.461360 -5.257379 0.559431 -5.020304 1.659487 -3.341548 2.177912 4.212191 -2.893002 3.118238 0.954108 -0.118317 1.373670 0.522798 2.997158 1.036394 1.023706 1.413851 1.475491 1.849035 -1.453413 -2.317801 -1.782008 -1.981112 -0.542532 -0.541886 -4.523358 1.214639 -1.559072 1.904798 0.060603 0.677756 -0.987579 1.432839 -4.320810 -0.657326 0.995592 -0.993325 2.124455 2.459094 -0.454547 -0.102634 -1.556770 2.923616 -0.732487 1.434587 -0.849306 2.637894 -0.252273 -3.661682 -3.518088 -0.219439 1.068539 -2.143036 -3.790756 -3.873322 -1.101547 0.429404 -1.786593 3.093028 5.873927 -1.866616 -2.855641 3.763278 -0.427888 2.198619 3.093203 1.035181 3.570806 -1.491105 -0.515855 -0.628120 -0.724822 0.817870 0.248224 0.012145 -2.466568 2.041098 0.123046 -0.907032 1.632647 -0.027484 -1.186472 -1.902055 0.166829 -1.901586 -2.246140 4.112469 -1.207528 3.394175 -1.050319 4.992965 -1.608016 -3.023704 1.328032 -2.815156 -0.006347 -1.990040 -0.385055 -0.023275 1.409963 -3.606591 -2.507044 -0.672624 -0.327570 -1.535101 2.384347 0.614977 -0.325939 0.269224 0.722398 3.275766 2.742185 -1.084950 0.894667 -3.623692 1.320508 1.550426 -0.038227 -4.741399 0.267214 -0.137055 -1.229773 1.716679 0.214876 1.180873 -1.355500 -0.812777 0.853840 -0.274813 1.030976 0.381498 -2.316619 0.924707 -0.302392 0.766606 1.989029 3.288517 3.612737 2.215379 0.755273 1.331350 -0.459765 -0.860674 0.278458 0.605577 0.723352 1.181574 1.770654 2.510143 2.466153 0.815937 2.159870 2.018658 -1.090187 3.262916 1.200464 4.784202 -1.878017 -1.047857 0.599784 -0.029662 3.067200 4.130789 -2.171721 -0.847702 2.509378 0.571563 -0.353331 -2.587721 -0.108957 -0.901753 -1.030163 2.269766 0.826324 -1.083712 -0.206750 4.675392 -1.043067 -5.000782 3.076110 1.342682 2.001519 0.030278 0.274283 -0.158144 2.402970 -2.241608 1.429505 1.884435 2.277810 -2.828305 -0.473253 0.171591 2.263212 1.788078 1.764383 -4.174043 -0.274870 1.904167 3.330483 1.220567 1.677481 -1.286714 -2.213744 0.517709 -0.816481 -0.338543 0.129884 1.005666 -1.230679 0.717290 -1.534291 -2.029481 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 1.696762 -0.717309 2.165687 -3.591233 -2.103685 -0.350386 3.470693 -3.072939 -1.858140 5.445236 0.974703 -2.724149 -2.059149 4.491822 -0.203688 -2.020102 0.891908 -1.660744 -0.718107 -0.163828 -1.867453 2.177330 -1.466651 -2.729207 2.027737 -0.485535 1.021635 3.958777 -1.081604 0.735878 0.203152 -2.615526 0.563428 6.661840 2.141487 -0.114794 -1.846750 8.587973 -6.198883 7.451489 -5.446585 -5.424119 7.897115 -1.127110 -0.029015 -4.511960 -1.748858 4.240499 -1.787640 -3.746136 0.456232 -0.161888 1.844543 -4.339751 -1.496466 4.364108 -6.305494 1.438120 3.214927 -3.640805 -4.760334 -1.834776 0.032363 1.170962 -5.531883 -4.090384 0.013935 -1.340444 -1.498984 0.230682 -4.043486 -3.907817 3.629204 1.583142 -1.390079 1.149806 -1.243120 -2.811352 3.290368 -1.033062 -4.568894 -2.973847 -0.479267 -3.528303 3.371592 1.778294 4.424434 -8.653791 1.652442 -8.441680 2.623812 -4.500317 3.259446 6.464965 -2.239850 4.912154 1.276666 3.396109 0.883463 -0.827160 3.577688 2.300270 2.135328 2.236359 4.440956 4.873311 -4.480803 -5.850818 -4.406797 -2.808752 1.994702 -2.438066 -5.766886 2.757253 -2.747628 0.074817 -0.169030 0.232870 -2.240973 5.355526 -7.386965 1.574194 1.952252 -1.520780 2.700033 3.615343 -0.324824 0.210361 -1.553149 3.583203 -0.760023 2.930814 -0.485313 5.073035 -2.832088 -2.352979 -1.803026 1.218456 2.250335 -4.003744 -5.643819 -8.510479 -1.702999 2.872963 -3.273224 4.689561 8.874514 -3.388910 -4.524244 4.653909 -0.122044 0.914046 2.390312 1.593790 6.173852 -3.149900 -0.737592 -1.107406 -1.144601 2.241661 6.686397 -0.797838 -4.408001 4.806644 -2.030250 -2.903533 5.925178 0.540379 -1.635282 -1.543548 0.778750 -2.451806 -3.634062 6.430594 -4.991604 4.535243 -2.995928 7.420072 -2.252659 -1.623959 1.823810 -6.305479 -1.416664 -5.703927 -0.640811 -0.226121 3.400670 -4.606130 -3.721031 -2.102795 -1.165329 -2.012907 5.427067 -4.349372 -0.566097 0.645054 -0.009986 5.514921 3.046302 -1.881056 -0.615499 -4.345533 2.331358 2.775546 0.506563 -6.774534 -1.980528 -1.284964 -2.333569 0.770707 0.517675 3.607768 -4.074269 -0.155264 3.024514 -0.088189 -0.795073 0.397750 -7.254254 2.105329 0.966301 2.220606 3.069360 6.694850 4.272917 4.463040 0.772762 2.399270 -1.505249 -0.959525 -5.384945 1.614444 0.723173 1.502544 3.231804 4.306374 3.463585 2.533449 3.842150 1.897898 -0.009141 5.348066 1.263482 6.075070 -1.424130 -1.557928 2.414941 0.587028 4.607041 4.909186 -0.240041 -3.031497 3.394971 -2.003836 -3.982319 -1.509399 0.224873 -1.197030 -0.370434 3.586859 3.277295 -0.809881 -1.266696 8.534343 -1.783750 -9.770182 3.701373 2.446873 4.177442 3.636828 -0.704695 3.428083 3.007823 -0.052590 3.797223 3.885150 3.346951 -5.428798 0.557653 0.812943 2.657992 5.637378 1.717290 -10.997629 -0.163691 0.928253 5.831878 0.237167 6.075933 -3.396622 0.973600 1.101336 -0.839776 1.022849 -0.566282 3.051332 -0.749234 0.923721 -6.873783 0.175414 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 1.325840 0.227187 0.573534 -1.459863 -0.866593 -0.021016 1.136924 -2.004410 -1.183832 2.468263 0.739234 -1.529334 -0.896168 1.271672 -0.302392 -1.155781 0.584333 0.332343 -0.576769 -0.764840 -1.056617 0.251516 -0.615024 -1.817808 0.488405 -0.449627 0.769588 1.451181 -0.197268 0.622581 -0.286646 -0.930036 0.785084 3.277188 1.245507 -0.419774 -1.167578 3.517807 -1.740102 2.292824 -2.530854 -2.174014 3.675555 -0.411861 0.295174 -2.366322 -0.805884 1.878528 -0.121056 -1.576575 -0.501023 -0.567927 0.795846 -2.225976 -1.350618 2.443281 -2.149637 0.806683 1.557155 -2.159418 -2.693074 -0.687089 0.807506 0.740680 -2.299171 -2.175613 0.202276 0.006242 -0.550243 0.561927 -2.792425 -2.578749 1.896823 0.608823 -0.700038 0.185436 -1.275606 -1.214341 1.112779 0.520595 -1.885968 -1.344230 0.412583 -0.590527 1.021121 0.956756 2.354181 -4.270308 0.559874 -4.319048 1.157541 -1.903920 2.086973 2.721997 -0.916270 1.936214 0.432321 1.099705 0.086348 0.122776 1.780373 0.542736 0.869852 0.247920 2.008832 2.006062 -1.468012 -2.831432 -1.198887 -1.272071 0.761674 -0.363537 -3.009102 1.526151 -2.421906 0.084887 -0.538295 0.253852 -0.611469 2.460490 -3.080292 -0.560894 0.984687 -0.793319 2.071571 1.803145 -0.001866 0.785459 -0.702525 1.454367 0.338497 0.717001 -0.318453 2.278025 -1.149209 -2.048773 -1.445578 0.852667 1.642364 -2.157548 -2.940559 -3.206206 -1.024931 1.316118 -1.557646 1.729606 4.060479 -1.503582 -2.012950 1.715718 -0.280369 0.147501 1.861002 0.783566 4.379845 -2.510690 0.786219 0.174026 0.227341 1.285035 2.078753 -1.337386 -2.318635 2.160092 -0.895747 -0.969370 2.783352 -0.080105 -0.417045 0.685061 0.242233 -0.211196 -1.661521 2.731062 -1.813936 2.510249 -1.153621 3.632899 -1.637853 -1.008709 0.838119 -1.776648 -0.998275 -1.594107 0.474696 -0.526842 2.418847 -1.860265 -1.955120 -0.267547 -0.942714 -0.442537 3.245689 -0.705293 -0.397027 0.195472 -0.759840 1.951610 1.304441 -1.061056 -0.298791 -2.082084 1.015908 1.740578 0.373355 -2.879182 -1.355531 -1.102673 -0.987262 -0.407767 0.297821 2.084198 -1.487122 -0.133907 1.317577 -0.076808 0.080532 -0.140229 -1.955701 1.410933 -0.095001 0.617618 0.567406 3.833575 1.927586 2.240328 0.161610 0.250946 -0.148056 -1.059898 -2.392491 0.837046 0.302489 1.173657 1.437078 1.526709 0.904799 1.355512 1.869100 -0.272279 0.576339 2.554672 0.561958 2.978743 -1.476977 -0.177607 0.933061 -0.611952 2.390964 2.916529 -0.171053 -2.249814 1.115746 -1.167888 -2.003093 -1.351558 -0.383230 -0.092928 -0.960330 1.445675 2.146887 -0.223976 -1.220298 4.443438 -0.327921 -4.827163 2.290575 1.047787 1.390783 2.396090 -1.071751 1.744313 1.572803 1.110021 0.872963 1.922630 1.903079 -2.847688 0.190179 0.268836 1.640203 1.306744 -0.101704 -4.948121 0.472034 1.120155 3.159147 0.302897 2.499599 -1.950766 1.076889 0.441991 0.092390 0.647100 -0.371521 1.821086 -0.892146 0.060777 -3.035546 0.698344 +PE-benchmarks/strongly-connected-components.cpp__main = 1.298641 -0.594694 1.406475 -3.041305 -2.484174 -0.368890 0.312444 -1.682089 -0.950048 1.884343 0.574654 -2.079019 -1.975244 3.730341 -1.006134 -2.657939 0.189477 -0.882024 0.026141 -0.162115 -1.042400 1.885346 -0.759738 -1.218550 1.619087 -0.575970 -0.333416 2.203602 2.221547 -0.761297 -0.496421 -1.626823 0.459052 4.774853 0.959923 -0.554915 -0.373537 6.992011 -1.226142 3.742987 -3.380696 -3.358239 4.952821 -0.836607 -0.316360 -3.443048 -1.955294 2.783656 -3.013250 -0.940533 0.895471 0.201266 0.435016 -2.617192 -0.503915 2.779968 -5.558946 3.104251 2.088122 -1.101062 -1.618851 -1.344250 -1.065947 0.021042 -1.785786 -2.744931 -0.056547 0.353538 -2.422323 -0.031576 -1.906882 -2.018935 4.966448 1.334381 -1.474189 1.407603 0.326043 -1.977171 2.281594 -2.681108 -3.866909 -1.707624 0.152419 -0.808335 3.543031 0.837214 2.313587 -6.171278 1.185917 -6.219137 1.854688 -3.854189 2.382040 5.083930 -3.473770 3.409537 1.351039 1.155179 1.805844 0.545748 3.825896 1.713025 0.753160 1.709644 2.285354 2.387890 -1.618052 -2.645075 -2.192965 -2.429918 -0.167973 -0.907612 -5.831665 1.798955 -1.643508 1.549477 -0.146789 0.775894 -1.255341 2.340411 -4.903749 -0.664515 1.148045 -1.156425 1.990932 3.076792 -0.546730 -0.264353 -1.780014 3.495269 -0.925598 1.638523 -0.289191 3.256152 -0.898228 -3.608586 -3.414179 0.114901 1.350748 -2.834842 -4.440982 -4.922574 -1.036007 0.558773 -2.210060 3.479025 7.026817 -2.281553 -3.046718 4.402620 -0.046097 1.808631 3.540610 1.077513 4.588993 -1.656674 -1.154005 -0.708175 -1.342893 0.874632 0.906370 0.053845 -2.474998 2.515723 -0.446545 -1.732828 2.698323 -0.082918 -1.560514 -1.495423 0.069143 -2.300039 -3.156131 4.720308 -1.549052 3.556916 -1.047789 5.935175 -1.022479 -3.088126 1.667410 -2.744710 -0.271247 -2.783275 -0.080177 -0.033172 1.806159 -3.896118 -2.830610 -0.546326 -0.434813 -1.988072 3.030958 0.237376 -0.016082 0.794501 0.687447 3.547305 3.209487 -1.175039 0.792755 -4.009179 1.612611 1.979562 -0.356135 -5.078385 -0.302965 -0.653648 -1.282666 1.543268 -0.022292 1.711999 -2.080268 -1.085843 0.997744 -0.166563 0.971751 0.604294 -3.532707 1.243583 0.102848 1.369705 2.279542 4.187786 3.984212 3.075838 0.940320 1.776840 -0.601143 -0.409220 -0.868450 0.600009 0.590284 1.366481 2.174012 3.270714 2.935859 1.586454 2.908939 2.214850 -0.536260 3.957235 1.028139 5.574467 -1.469082 -1.560480 0.846044 0.010452 3.927575 5.255001 -1.539282 -1.139566 2.733093 0.025506 -1.125009 -2.937767 0.437891 -0.730431 -0.907352 2.501231 1.329433 -0.329022 -0.551757 5.269083 -1.385747 -6.437863 3.476597 1.578593 2.544618 1.145704 0.254108 0.873726 2.354572 -1.976205 2.030557 2.703710 2.622438 -3.563439 -0.273423 0.381555 2.507277 1.979277 2.260829 -5.263547 0.216775 1.884841 3.831583 1.089984 2.163682 -2.048845 -2.085642 1.161168 -0.627284 -0.247506 -0.237582 1.405067 -1.667675 0.608408 -2.140041 -1.786103 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.469869 0.204873 0.743642 -0.773117 -0.562907 -0.253533 0.534784 -0.832964 -0.438919 1.068347 0.203647 -0.807500 -0.866315 0.712557 -0.498415 -0.863280 -0.008608 0.082212 -0.434255 -0.680835 -0.460460 0.174390 -0.210428 -0.928402 0.501526 -0.382104 0.520338 0.955895 0.221469 0.046904 0.170127 -0.487033 0.647417 1.791246 0.344247 0.130863 -0.515753 1.787948 -0.410182 0.997349 -1.715564 -1.440417 2.084273 -0.265891 0.172912 -1.637280 -0.350874 1.061800 -1.050389 -0.397099 -0.344775 -0.022474 0.228069 -1.470101 -0.565985 1.284912 -1.731863 1.037483 0.684213 -1.222065 -1.403252 -0.305261 0.136231 0.114896 -0.451366 -1.166943 -0.092987 0.155771 -0.807953 0.598493 -0.973327 -0.943179 1.504489 0.031349 -0.368840 0.478941 -0.403582 -0.301022 0.661401 -0.457033 -0.758279 -0.939989 0.646089 0.025712 0.645581 0.620473 0.747314 -2.222590 -0.081670 -1.974544 0.879275 -1.065782 1.054852 1.231565 -0.843583 1.412892 0.200642 -0.230243 0.040767 0.185375 0.977532 0.226133 0.915081 0.267868 0.850228 0.770672 -0.687631 -1.506889 -0.743491 -0.833950 0.153250 -0.243677 -1.807859 0.538110 -1.090678 0.522223 -0.054781 -0.032732 -0.173347 0.989804 -1.900341 -0.107497 0.724490 -0.414353 0.943025 0.822837 -0.001929 0.208690 -0.239627 0.880068 0.022086 0.267723 -0.076167 1.188841 -0.036257 -1.694588 -1.035193 0.160790 0.557017 -0.858563 -1.524367 -1.517886 -0.629234 0.569447 -0.724301 0.651194 2.153554 -0.503828 -1.413512 0.940988 -0.049168 0.382594 1.063083 0.621306 1.991603 -1.192866 0.217938 -0.112836 0.060466 1.089739 0.895300 -0.618848 -1.401502 1.253046 -0.170773 -0.691627 0.754611 -0.212864 -0.038461 0.094839 0.083490 -0.512307 -0.704543 1.350772 -0.379658 1.738522 -0.829208 2.051954 -1.129376 -1.141715 0.243333 -1.220364 -0.369009 -0.502078 0.152516 -0.134332 1.032574 -1.392911 -1.147248 -0.298474 -0.439993 -0.142434 1.694830 -0.444939 -0.246133 -0.124978 -0.300826 1.161231 0.560915 -0.782843 0.099476 -1.252712 0.439732 0.824345 0.638073 -2.004781 -0.394131 -0.334099 -0.571133 0.258101 0.195185 0.923734 -0.312029 0.029760 0.711404 -0.401688 -0.093695 -0.352082 -0.647610 0.473930 -0.185174 0.291657 0.283041 1.900395 1.467722 0.836787 -0.126739 0.416439 -0.095244 -0.883452 -0.489494 0.363492 0.230411 0.426926 0.734415 0.838397 0.623501 0.478041 1.095456 0.358142 -0.254770 1.445477 0.327089 1.566665 -1.256270 -0.079210 0.449551 -0.090802 1.236522 1.464920 -0.353950 -1.029210 0.833594 -0.098659 -0.431136 -0.989670 -0.418329 -0.126623 -0.469525 1.294769 1.064751 -0.513536 -0.282030 2.220329 -0.118540 -2.197844 1.421737 0.550439 0.645189 0.370085 -0.550863 0.274613 1.119749 0.186821 0.011195 0.627390 1.006236 -1.657302 -0.231019 0.128036 1.111724 0.743314 0.185061 -2.492227 -0.337908 0.641318 1.634895 0.141496 1.207866 -0.884445 -0.131517 0.102447 0.060057 0.125003 -0.011692 0.557114 -0.482370 -0.008012 -1.174995 -0.003896 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.650855 -0.004890 1.655161 -1.513002 -0.124454 -0.532208 2.437471 -2.508809 -1.287323 4.920980 0.470745 -1.839172 -0.774243 1.184755 -0.484313 -0.812594 1.042899 1.144308 -0.972797 -1.040653 -1.458543 0.021580 -0.764404 -3.013107 1.181303 -0.655898 2.235996 2.167057 -1.856184 1.455312 0.421556 -1.481610 1.470265 4.606655 1.285573 0.321023 -2.272927 3.447775 -2.569733 3.772947 -3.771120 -3.295568 5.238548 -0.607422 1.220819 -2.755946 -0.094566 2.805248 0.328767 -3.386049 -1.591754 -0.533059 1.537102 -4.273322 -2.352740 2.928574 -2.304442 -0.331083 2.158587 -3.900253 -4.954636 -0.685766 1.762878 1.189952 -3.797776 -3.138552 0.014631 -0.439191 -0.854567 1.351290 -3.678354 -3.437193 1.395678 0.152395 -0.885176 0.653621 -1.942415 -1.338477 1.567382 1.306028 -1.498270 -2.636862 0.649948 -1.760845 0.725011 1.556990 3.329658 -5.475425 1.163006 -4.853173 2.081147 -1.967817 2.978606 3.209975 -0.721799 3.241829 0.331586 2.367255 -0.878039 -0.283291 1.883999 0.971584 1.772326 -0.039316 3.048738 2.693705 -2.904759 -5.001985 -2.165062 -1.572641 1.725387 -1.358982 -2.770127 1.679946 -3.299533 0.334882 -0.355964 -0.194127 -0.984187 3.891215 -5.522949 0.182982 1.976314 -1.107564 2.289202 1.685567 0.267661 0.631849 -0.111141 1.521252 0.445345 0.028703 0.026270 3.398954 -1.850585 -1.271047 -0.206179 0.835387 1.827286 -2.547428 -3.797977 -4.949562 -1.805993 2.696130 -1.924383 1.938089 4.655914 -1.205366 -2.809809 1.174089 -0.818386 -0.639839 1.590396 1.563845 4.921669 -3.956863 1.334060 -0.174837 1.008011 3.213900 4.644236 -2.195464 -3.843140 3.890936 -1.823046 -1.370743 3.750418 0.000804 0.595232 0.528350 0.641477 -0.402363 -1.222070 3.232127 -3.824035 3.537416 -2.895669 4.819000 -2.771335 -0.748060 0.446368 -3.973773 -1.717967 -2.303325 0.587495 -0.814107 3.610094 -2.880699 -2.805969 -0.662106 -1.550795 0.453127 5.119198 -3.302618 -0.991774 -0.645557 -1.759521 3.637784 0.207089 -2.070413 -0.753402 -2.108817 1.049906 1.928614 1.313703 -3.423056 -2.224196 -1.563458 -1.722792 -1.047101 0.680487 3.052133 -2.208927 0.364343 2.531609 -0.386842 -1.533756 -1.419341 -3.133126 1.561066 0.123841 0.940644 0.714615 5.477861 2.514248 2.441225 -0.776239 0.258658 -0.609237 -2.304406 -4.645257 1.643678 0.075060 1.248912 1.813377 1.557519 1.037321 1.632629 2.142138 -0.665685 0.639798 3.633593 0.534434 2.593361 -2.168335 0.185790 2.206386 -0.591190 2.787173 2.277069 0.150294 -3.270871 1.675553 -1.841139 -3.082069 -0.632535 -0.913857 0.026805 -0.782748 1.804547 3.364607 -0.880056 -1.373630 5.930733 -0.325467 -6.147834 2.714574 1.245340 1.960038 3.311592 -1.917286 3.046137 1.941085 2.903652 0.777009 1.511389 2.376985 -4.345466 0.546071 0.557049 2.196296 3.135288 -0.686187 -7.471539 -0.249336 0.315368 4.073637 -0.174662 4.191772 -2.623415 2.811224 -0.017137 0.036572 1.161343 -0.818717 2.293236 0.060211 -0.452263 -5.418697 2.108866 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.749225 0.154887 0.858798 -1.851628 -1.064203 0.062097 0.834880 -1.755906 -0.749810 1.807650 0.790030 -1.256477 -0.922387 1.335062 -0.401072 -1.130610 0.544906 -0.046714 -0.496999 -0.772504 -0.691232 0.362169 -0.581005 -1.439410 0.360932 -0.543898 0.838803 1.258921 0.314569 0.140029 -0.371105 -0.988771 0.619200 3.066267 1.109256 -0.023995 -1.088430 3.134719 -0.657281 2.018806 -2.598301 -1.984068 2.981596 -0.414649 0.196017 -2.668099 -0.691076 1.654581 -0.356589 -1.232515 -0.276478 -0.548699 0.843180 -1.983146 -1.122131 1.860410 -1.842053 0.818315 1.370882 -1.763695 -2.023208 -0.815990 0.732774 0.717204 -1.906689 -1.759224 0.320011 0.086835 -0.975676 0.497257 -2.062207 -2.221649 1.898143 0.634517 -0.836778 0.236878 -0.882996 -1.495671 1.059639 0.197542 -1.772402 -1.185390 0.358165 -0.545535 1.219197 0.428385 1.840924 -3.876992 0.265844 -3.847355 0.972077 -1.653763 1.922667 2.363984 -1.202661 1.625797 0.455306 0.960281 0.167628 0.024251 1.732545 0.600838 1.031139 0.248892 2.167752 1.491034 -1.075394 -2.344062 -0.937419 -1.518461 0.537060 -0.512841 -2.860241 1.166679 -2.016633 -0.238124 -0.672515 0.260093 -0.657465 1.971440 -2.791879 -0.854004 0.986547 -0.785290 1.685103 1.685614 -0.069608 0.710682 -0.478720 1.564993 -0.034803 0.739629 -0.429546 2.033232 -0.614261 -1.829905 -1.522943 0.574136 1.393701 -1.741979 -2.868301 -2.790359 -1.202287 0.820472 -1.240522 1.404086 3.557282 -1.244950 -2.149535 1.747018 -0.046270 0.127953 1.825470 0.738363 3.490590 -2.127355 0.629947 -0.209973 0.081430 1.042719 1.863174 -1.096079 -1.967088 1.885211 -1.072470 -1.304799 2.065360 -0.230074 -0.456200 0.177477 0.114191 -0.847235 -1.759993 2.370132 -1.375709 2.414950 -0.983648 3.363004 -1.660116 -1.314958 0.703653 -1.390724 -0.632219 -1.242531 0.394081 -0.235652 2.245594 -1.735131 -1.925212 -0.245085 -0.685778 -0.401432 2.604504 -0.857555 -0.374470 0.180573 -0.407499 1.703362 1.421770 -0.953153 -0.090548 -1.653732 0.953754 1.724361 0.821701 -2.290363 -1.061996 -1.152683 -0.985217 -0.267970 0.319889 1.839371 -1.043580 -0.299017 1.032604 -0.264005 0.126212 -0.050595 -2.468178 1.218968 -0.203465 0.448957 0.375669 3.250645 1.826536 1.946138 0.250762 -0.005759 -0.118748 -0.942917 -1.834830 0.418502 0.430399 0.747013 1.271074 1.552250 1.190480 1.217624 2.031988 0.280487 0.283784 2.347506 0.327986 2.672032 -1.209253 -0.098905 0.751567 -0.488083 2.159832 3.053911 0.310618 -1.632181 1.198486 -0.497466 -1.500416 -1.870847 -0.412524 -0.153790 -0.564821 1.342854 1.788290 -0.342893 -0.999444 3.901769 -0.309859 -3.956939 2.086913 0.793749 1.332696 1.773269 -0.973290 1.161274 1.450642 0.366060 1.024830 1.560438 1.632692 -2.375423 -0.380184 0.186805 1.584968 1.121775 0.147469 -3.786791 0.445833 0.867018 2.860376 0.568117 2.071817 -1.704696 0.616870 0.462019 -0.136029 0.368002 -0.204552 1.553375 -0.863498 -0.366487 -2.593694 0.321347 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 1.962477 0.492430 2.635579 -5.897648 -1.881758 -0.889742 6.299368 -5.603400 -3.090495 9.614709 2.509423 -4.208444 -2.180344 3.990546 0.194240 -2.073771 2.690511 0.163000 -2.418191 -2.290088 -2.257710 1.264758 -1.747300 -6.694584 1.742052 -1.726873 3.945771 4.728348 -2.600274 2.433155 0.547176 -3.917193 3.306718 10.025428 3.322604 0.975057 -6.226049 8.808744 -6.540325 9.141453 -8.447623 -8.174681 12.170325 -1.518069 1.429778 -8.608622 -0.943911 5.853767 3.767177 -8.105825 -2.884423 -1.135575 4.084108 -8.769701 -5.352752 5.889572 -3.137049 -1.374084 5.048987 -8.715782 -9.570374 -2.640960 3.271939 3.723909 -10.403986 -6.076818 0.262512 -2.246354 -1.738998 1.581018 -7.718664 -7.562654 3.506367 1.881400 -1.576512 0.944909 -4.688892 -5.222787 3.692753 3.991233 -4.439420 -4.735708 0.619600 -2.592777 1.399978 2.279452 8.236167 -12.851952 0.805194 -11.866409 3.932505 -4.276956 6.435804 7.384848 -1.372556 6.533291 0.831208 6.114769 -0.860359 -1.199581 4.691001 2.780350 5.376531 0.630827 8.405031 7.316695 -5.945005 -10.790308 -4.483109 -4.480034 4.834937 -3.011855 -7.153820 4.435233 -6.765825 -4.689852 -1.661527 -0.566543 -2.527881 9.053901 -10.489118 -1.042334 4.808782 -2.615521 4.553041 4.290806 0.466936 1.728429 -0.452226 3.679087 0.875744 2.963134 -0.228261 7.910892 -4.503972 -2.914725 0.072324 2.387377 3.867841 -6.567675 -8.573234 -11.448124 -3.775789 5.665938 -4.631469 2.393149 11.057204 -3.981064 -6.813181 3.958681 0.590696 -2.055444 2.429563 2.610973 11.497825 -7.915070 2.578749 0.103333 1.143192 6.191472 13.891550 -4.189518 -8.334974 7.461936 -5.841678 -6.283705 7.821717 -0.751003 0.087622 0.468521 1.105046 -2.874547 -4.817826 7.194229 -8.154165 8.036689 -6.362903 10.052387 -5.792042 -1.337405 2.075960 -7.479859 -4.105294 -7.111405 1.884863 -0.704586 8.350133 -5.037919 -6.056771 -2.064581 -3.294588 -0.461721 10.018101 -11.115989 -1.908023 -0.417562 -2.594321 5.641208 2.008248 -3.799610 -2.167510 -4.284343 2.957091 5.410043 4.296038 -7.352833 -5.426551 -4.289855 -4.047297 -3.019574 1.131905 7.038391 -3.531348 0.466133 5.629941 -1.235320 -3.199391 -2.107481 -9.358953 4.040946 0.927233 2.989131 0.298546 12.397868 4.873437 6.341964 -0.776214 0.367956 -1.053425 -3.936016 -11.731463 3.118929 0.213420 1.279203 4.680236 5.350150 3.693792 4.857125 8.040331 -0.642321 1.275921 7.920657 0.144625 7.084523 -2.860225 -0.684905 4.819919 -1.075843 6.654622 7.884731 4.905182 -7.946927 4.009785 -4.476984 -8.024499 -1.855818 -1.602656 0.053017 -1.431623 5.005496 7.585074 -1.296735 -3.277957 13.664542 -1.368892 -14.555711 5.858077 2.664618 5.738457 8.188905 -4.610792 6.876033 5.066751 5.277124 3.854945 4.783519 5.136978 -8.869906 -0.664209 1.015665 4.644189 7.624852 -1.298159 -16.400383 1.550442 1.053077 9.621537 -0.234452 9.886643 -6.255082 6.561849 0.762318 0.645850 2.413835 -1.785095 5.570464 -1.192046 -2.049178 -12.830396 4.957315 +PE-benchmarks/bfs.cpp__main = 1.148340 -0.439276 1.418860 -2.718298 -2.859671 -0.207339 -0.718603 -1.742118 -0.798733 1.220260 0.590271 -1.916423 -1.783006 3.658172 -1.343805 -2.996173 -0.333029 -0.318720 0.117993 -0.563860 -0.968441 1.819438 -0.890635 -0.799786 1.505943 -0.768538 -0.503194 1.764229 2.557648 -0.920296 -0.643417 -1.475110 0.159630 4.468923 0.784329 -0.407549 0.137706 6.834269 -0.262934 2.553544 -3.642978 -3.361492 4.221381 -0.816785 -0.182956 -3.124561 -2.178864 2.358265 -4.027392 0.389798 1.127349 0.108596 0.058528 -2.055730 0.244161 2.332448 -5.905410 3.985664 1.890245 -0.945875 -1.258025 -1.327759 -1.291357 -0.442599 -0.594519 -2.499573 0.101226 1.431441 -2.274942 0.186386 -1.387561 -2.013682 5.345247 1.090112 -1.540889 1.499763 0.666581 -1.692292 2.157582 -3.245079 -3.929042 -1.604397 0.862884 -0.296515 3.513744 1.060434 1.954313 -5.905468 1.129721 -6.014313 1.881118 -3.674076 2.388404 4.819141 -4.094871 3.032046 1.683467 0.390651 2.297538 0.979162 3.798882 1.311288 0.419247 1.711755 1.571672 1.866923 -1.039598 -1.858637 -1.846557 -2.610605 -0.797392 -0.534229 -6.036316 1.500116 -1.509547 2.299083 -0.431960 0.822787 -0.708328 1.802334 -4.596327 -1.080884 1.126853 -1.112823 2.100764 2.896829 -0.689000 -0.034869 -2.043144 3.449595 -1.400050 1.292091 -0.706462 2.887501 -0.411425 -4.529373 -4.724806 -0.047326 1.204426 -2.763173 -4.243545 -4.020004 -0.986395 0.278317 -1.912133 3.506148 6.886477 -2.481387 -3.275961 4.517089 -0.013131 2.063952 4.261231 1.160664 4.315843 -1.391000 -0.991858 -0.991706 -1.328507 0.498914 -1.218391 0.271351 -2.147760 2.189633 0.349666 -1.267446 2.487944 -0.314565 -1.830694 -1.830363 0.306212 -2.149189 -2.580446 4.481765 -0.437304 3.578003 -0.609586 5.750923 -1.415964 -3.640124 1.478151 -2.576958 -0.109405 -1.591193 -0.166167 -0.030725 1.697247 -3.908663 -2.742491 -0.318048 -0.620158 -1.916401 2.397464 2.051510 0.082919 0.934609 0.803202 3.225160 3.743163 -0.734713 1.061190 -4.049405 1.490002 2.010969 -0.584709 -5.203818 0.178180 -0.566480 -1.016468 1.664297 0.115574 1.576122 -1.636143 -1.179698 0.264595 -0.268826 1.801401 0.774203 -2.211486 1.150781 -0.687963 1.208212 2.146978 3.491901 4.205980 3.057165 1.382776 1.597930 -0.283884 -0.702853 1.174274 0.487056 1.017434 1.482312 2.001592 3.105881 2.945894 1.284073 2.478021 2.335244 -0.535768 3.849990 0.991988 5.993012 -2.128387 -1.043133 0.104221 0.097839 3.883315 5.529511 -2.356613 -0.436875 2.521121 0.734651 -0.255742 -3.649597 0.359963 -0.710939 -1.267895 2.105632 1.110579 -0.599520 -0.612379 4.915322 -0.992514 -5.541537 3.758419 1.400848 2.139836 0.227847 0.544859 -0.360977 2.397783 -2.690681 1.752432 2.577975 2.760637 -3.356248 -0.713296 0.226861 2.855108 1.290440 2.622870 -3.850380 0.588785 2.545707 3.374047 1.217368 1.250354 -1.847245 -3.101767 1.015806 -0.981506 -0.604602 0.351775 0.988412 -1.805689 0.835798 -0.969185 -2.898865 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = 2.998802 -1.865063 3.185165 -6.560538 -5.279552 0.141178 -0.457715 -5.248273 -2.563640 6.305807 1.748464 -4.070744 -2.713444 7.820913 -1.163945 -4.814379 0.189695 -1.842130 0.835079 -0.282479 -2.109748 3.715478 -2.328612 -2.613024 2.246692 -1.062912 -0.289076 3.871134 2.275059 -0.769786 -0.913602 -4.309731 -0.024305 10.018061 3.302771 -1.268557 -1.764417 14.703637 -4.188763 8.162550 -7.564812 -8.095080 10.077953 -2.027593 -0.073053 -5.447587 -3.702721 6.174296 -4.617934 -3.314352 2.029238 -0.040207 2.301442 -5.037759 -2.017837 4.259260 -10.643187 4.836385 5.142183 -3.909556 -4.259842 -2.326083 -1.113678 1.927817 -5.286613 -5.637004 0.736212 0.768996 -3.208059 -1.293363 -4.408173 -5.232391 8.801295 2.992741 -2.556504 2.042803 0.421621 -3.935518 5.589375 -4.033411 -9.443054 -3.906516 -1.474503 -4.761254 6.767522 2.238275 6.653127 -12.948728 5.035378 -13.941194 4.013584 -6.453421 4.595892 10.560340 -6.385276 6.372726 4.222151 5.204420 4.623804 -0.544620 7.389131 3.582141 0.338880 4.767111 5.820939 5.888905 -4.631853 -5.452466 -6.042686 -5.740895 1.215067 -3.416391 -10.829819 4.906368 -2.848138 1.892091 -1.270419 1.126437 -2.790281 6.453910 -11.299340 -0.530820 2.308757 -2.359759 3.526585 6.149998 -1.265095 0.120858 -3.326072 6.710442 -3.479257 3.481369 0.555219 7.640795 -2.579671 -4.906230 -6.835568 2.227647 3.634142 -7.096722 -8.556171 -11.318911 -1.854242 2.326826 -4.852952 9.387396 15.158698 -6.377231 -6.882252 8.902232 -0.143485 1.405426 7.214468 2.402483 9.708385 -3.085413 -3.586275 -2.467710 -4.133069 1.997340 3.071552 0.606075 -4.187430 7.002088 -1.447743 -2.052405 7.266640 0.214525 -4.559146 -3.047554 1.594083 -4.495597 -5.891823 8.546084 -4.244755 6.036586 -1.115901 12.217145 -1.520843 -4.237391 3.181528 -7.670320 -1.932008 -5.661611 -0.702822 -0.521436 4.424367 -7.382368 -5.306325 -2.135144 -2.090015 -4.447781 6.626277 -0.236395 1.012177 3.349019 0.940892 8.454364 7.874882 -1.207787 -0.019047 -7.496149 3.775076 4.505013 -1.062682 -9.399276 -2.694271 -2.601595 -2.389682 2.804315 -0.148917 5.833956 -6.291137 -1.435250 1.935858 0.564117 1.677483 2.235460 -8.784622 3.046599 0.836576 4.524338 5.620758 9.207611 6.613981 8.717823 3.332568 4.466846 -2.098170 0.035193 -2.990230 0.762166 1.473870 3.296733 5.167974 6.754177 6.453663 4.931394 6.709497 4.336697 0.216947 8.957753 -0.326043 11.617064 -2.839625 -2.242309 1.437942 1.392632 8.443308 10.624558 -2.846500 -2.348255 5.372367 -2.059453 -4.062200 -5.269015 2.476408 -1.348418 -0.141773 3.621028 5.455373 0.873414 -2.682282 10.908968 -2.688465 -14.258961 7.277863 3.589731 6.074337 5.018446 0.551470 3.294048 3.209579 -3.247170 5.518595 7.642688 5.631672 -8.666466 1.344793 1.472958 5.743158 4.776682 5.658009 -12.302859 1.686500 3.310297 6.976712 0.979548 5.634671 -6.316253 -3.156456 3.806367 -1.757897 0.543687 0.169897 3.691569 -2.821278 1.878095 -5.221047 -2.724918 +PE-benchmarks/binomial-coefficient.cpp__main = 1.068799 0.651865 0.799296 -1.260449 -1.377568 0.000691 0.261107 -2.010002 -0.985060 2.210763 0.663950 -1.514045 -1.006898 1.416093 -1.094390 -1.245254 -0.208603 0.419670 -0.514409 -1.497517 -0.652831 0.343776 -0.415592 -1.617439 0.242508 -0.840743 0.713150 1.242846 0.276863 0.643695 0.080283 -0.832454 1.081855 2.842752 1.106279 -0.269260 -0.987794 2.981892 -1.273201 1.502686 -3.005758 -2.593345 3.292757 -0.209310 0.501803 -2.701132 -1.072581 1.459024 -0.935205 -0.445286 -0.695356 -0.525520 0.645109 -1.837645 -1.092269 1.972854 -2.470695 1.746355 1.005486 -2.442390 -2.255711 -0.437742 0.512474 0.759395 -1.148765 -1.880709 -0.097035 0.977244 -0.755076 0.761392 -1.846712 -1.957191 2.227247 0.079944 -0.750865 0.146060 -0.990464 -0.747463 0.991220 -0.532232 -1.612281 -1.217146 0.873619 0.147185 0.535836 1.357334 2.006181 -3.768472 0.068427 -3.726079 1.353697 -1.425379 1.774594 1.856483 -1.235880 1.709514 0.565433 0.197004 0.784702 0.488322 1.524248 0.509317 1.218799 0.460673 1.375808 1.828542 -0.883135 -2.159605 -0.968173 -1.378572 0.346595 -0.192108 -3.256592 1.015947 -1.885891 0.408631 -0.614508 -0.192459 -0.199510 2.256750 -3.097956 -0.792877 0.938539 -0.604685 1.712883 1.159388 0.099962 0.889048 -0.424499 1.327850 -0.003915 0.352902 -0.037023 1.901465 -0.870439 -3.052303 -2.237947 1.005410 1.182481 -1.842582 -2.418328 -2.532135 -0.976960 1.281793 -1.222892 1.199987 3.670078 -1.296894 -2.405927 1.505833 -0.083144 -0.200748 2.168528 0.883287 3.909648 -2.049381 0.507487 -0.078669 -0.097123 1.426360 1.858558 -1.157923 -2.087212 1.900054 -0.242583 -1.316702 1.397763 -0.508972 -0.530355 -0.066379 0.270364 -0.387343 -0.813590 2.009984 -1.273152 2.474848 -1.464427 3.233908 -1.909495 -1.767687 0.419909 -2.289396 -0.989574 -0.399232 0.758492 -0.339977 2.197922 -2.021524 -1.695677 -0.202310 -1.101406 -0.433485 2.886962 -0.691678 -0.231219 0.319340 -0.715699 2.062816 1.276721 -0.858031 -0.030647 -1.700675 0.796167 1.797815 0.856974 -3.790518 -1.111229 -1.005438 -0.702058 -0.209311 0.242440 1.867615 -0.717709 0.201143 0.735072 -0.753697 0.370335 -0.227939 -0.479085 1.310631 -0.655826 0.904346 0.057110 3.251248 2.037033 1.974011 0.175881 0.589124 -0.041266 -1.739063 -0.449241 1.036503 1.114340 0.218612 1.244427 1.998961 0.692588 1.206276 2.020558 0.309969 0.232649 2.277784 -0.024355 2.814058 -2.531949 0.276987 0.246222 -0.124953 2.100375 3.137807 -0.247381 -2.059865 0.907463 -0.901136 -0.987461 -1.460184 -0.370091 -0.052930 -0.878118 1.927262 2.545906 -0.283054 -1.025708 3.714387 0.128443 -3.830754 2.654212 0.987943 0.929940 1.299072 -1.253966 0.614537 1.598878 0.897995 0.195197 1.842503 1.676690 -2.878145 -0.680239 0.128754 1.893710 1.421413 0.236389 -4.500561 0.317483 1.640871 2.788202 -0.146270 2.175664 -1.975424 -0.105439 0.489533 0.279353 0.251182 0.092018 1.113948 -1.259807 0.447626 -1.563721 0.032375 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 3.599514 0.687250 1.233345 -2.673357 -0.187427 -1.108958 6.301425 -4.259598 -3.399390 8.570744 1.094387 -3.601411 -2.508711 2.298720 0.011582 -1.349503 2.337734 1.445156 -1.896156 -1.781322 -3.213380 0.226722 -1.187658 -5.858826 1.971993 -1.116971 2.491410 4.373416 -3.203297 3.088051 0.636474 -2.391312 2.975027 7.750519 2.500319 -1.224832 -4.359891 7.947022 -8.271226 7.448846 -5.564367 -5.947515 10.898068 -0.988444 1.198628 -5.649091 -1.425307 4.722937 2.652423 -6.296396 -2.842197 -0.945480 2.579029 -7.105045 -4.345398 7.191694 -4.144348 -0.678844 3.875796 -7.213812 -8.773657 -1.376795 2.411539 2.157372 -8.104593 -5.774613 -0.176879 -1.822641 -0.550623 1.735480 -8.049715 -6.185774 2.451580 1.176759 -0.826275 0.678589 -4.334610 -2.559056 2.443583 3.510001 -3.214760 -3.907613 0.807227 -1.825920 0.674508 3.139539 7.002211 -10.163139 0.880235 -9.732588 3.123536 -4.659024 5.204757 6.390714 0.547764 6.074769 0.250944 3.567858 -1.717518 -0.329600 3.452859 1.791445 3.435979 0.151595 5.177204 6.439240 -5.379816 -9.344755 -3.884238 -1.500252 3.387545 -1.087091 -5.570998 3.842173 -6.433179 -1.450179 -0.235922 -0.048845 -2.037309 7.831754 -7.915704 0.971756 3.328349 -2.100362 4.657198 3.832616 0.789537 1.089198 -0.976061 2.358548 2.111860 2.108449 -0.209224 6.092368 -4.227135 -3.523976 0.317294 1.922598 3.403572 -5.549871 -6.510768 -8.666290 -2.451621 5.500195 -4.071610 2.725631 9.720505 -3.186579 -3.922502 2.407175 -1.032860 -0.095133 1.864378 2.291405 11.075612 -7.017036 2.689875 1.176296 1.807076 5.116802 10.482666 -3.987355 -7.079214 5.847644 -2.825944 -2.645364 7.643143 -0.266146 0.672762 2.615807 0.849070 0.513434 -3.445766 6.747156 -7.390268 6.264231 -4.910259 8.256014 -3.973474 -0.411526 1.680434 -5.510634 -3.414972 -6.065255 1.992232 -1.433133 6.024979 -3.884745 -4.697321 -1.472681 -2.942454 0.044794 9.593642 -6.582728 -1.700407 -0.755377 -3.214229 5.105841 0.630244 -3.487799 -1.620471 -4.848897 2.286695 3.222286 1.138649 -8.156720 -4.149252 -1.967622 -2.864914 -2.179518 0.914618 5.309330 -3.803793 0.687264 5.106399 -0.393077 -2.714045 -2.119790 -4.589367 3.265612 1.080650 1.928169 0.896614 10.486561 4.426260 4.828116 -1.390587 1.093234 -1.090796 -3.354643 -9.905635 3.721081 -0.371619 2.489525 3.482962 3.467656 1.102866 3.332232 4.520982 -2.530097 1.870424 5.735019 1.759088 5.656331 -3.293021 -1.386241 4.199128 -1.797450 5.156778 4.611638 1.336514 -7.707949 2.772295 -4.771869 -6.814233 -0.053815 -1.166618 0.153301 -2.442723 4.996280 6.695470 -0.902309 -2.746773 11.465629 -1.033997 -13.389349 4.621534 2.900528 3.931908 7.525118 -3.344864 6.638821 4.127383 6.564009 1.672257 3.997214 4.305355 -7.755460 1.317196 0.962916 3.003362 5.460928 -2.244514 -16.613266 0.001753 1.431241 8.043212 -0.643051 8.438989 -4.591140 6.031732 0.302421 1.143815 2.498818 -1.809997 4.782781 -1.613869 0.186904 -10.164136 5.231561 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/tower-of-hanoi.cpp__main = 0.328367 0.291511 0.701327 -0.941439 -0.881727 -0.115969 0.131542 -0.804376 -0.243677 0.641683 0.289862 -0.748739 -0.653001 1.083613 -0.782261 -0.801068 -0.142362 -0.185027 -0.255285 -0.714975 -0.114333 0.470785 -0.133832 -0.539671 0.324052 -0.461877 0.228502 0.753969 0.485573 -0.217632 0.070304 -0.387683 0.488496 1.479947 0.295843 0.074437 -0.310170 1.662117 -0.131917 0.844091 -1.863980 -1.178559 1.527938 -0.149039 0.071734 -2.036632 -0.800729 0.673363 -0.944196 0.143175 -0.197809 -0.141529 0.110049 -0.921379 -0.260088 1.035811 -1.722036 1.247542 0.446112 -0.929492 -0.738556 -0.242898 0.006226 0.017887 -0.188499 -0.897331 -0.082741 0.519934 -0.828790 0.576487 -0.443840 -0.708328 1.561935 0.059681 -0.500377 0.355563 -0.177091 -0.619444 0.606250 -1.013274 -0.769379 -0.663248 0.616145 0.212415 0.610200 0.373085 0.626023 -1.920478 -0.169946 -1.721326 0.699057 -1.019897 0.838701 0.999891 -0.973739 1.026022 0.267915 -0.362021 0.534655 0.468553 0.955801 0.422944 0.807298 0.328160 0.685182 0.644381 -0.245509 -0.886967 -0.433847 -0.862889 -0.097530 -0.141306 -2.064470 0.288958 -0.700105 0.392077 -0.205459 -0.072487 0.043861 0.989294 -1.479251 -0.353733 0.597412 -0.313152 0.531299 0.770702 0.032295 0.181709 -0.427146 0.924398 -0.189030 0.392246 -0.125378 0.854142 -0.240729 -2.022993 -1.308315 0.043113 0.228967 -0.725009 -1.323739 -1.197137 -0.585699 0.314055 -0.527540 0.603694 1.891534 -0.521893 -1.538022 1.069000 0.433269 0.129788 1.168363 0.478510 1.677132 -0.809953 0.004552 -0.355469 -0.161943 0.681800 0.646350 -0.410578 -0.988777 0.825363 -0.075279 -1.410234 0.737019 -0.341112 -0.274426 -0.063120 -0.038505 -0.627581 -0.618106 1.146347 -0.087717 1.687638 -0.843732 1.778502 -0.969645 -1.400258 0.186963 -1.062915 -0.148600 -0.122425 0.299335 0.013163 0.918851 -1.215787 -0.986783 -0.096598 -0.492034 -0.288287 1.208286 -0.317806 -0.069383 0.069446 -0.108714 1.096846 0.777892 -0.568578 0.323339 -0.985735 0.448654 0.919429 0.688863 -2.191328 -0.093503 -0.357913 -0.373486 0.102112 0.122392 0.714006 -0.183441 -0.054095 0.271575 -0.597955 0.229357 -0.164610 -0.485978 0.480487 -0.581051 0.388871 0.025972 1.358860 1.423116 0.714455 0.004624 0.325151 -0.014751 -0.922425 0.238617 0.365267 0.652933 -0.149321 0.567510 1.202160 0.608443 0.432761 1.132158 0.714670 -0.143769 1.186993 0.129075 1.552708 -1.261187 -0.009788 0.028976 0.036464 1.126383 1.823675 -0.091193 -0.676242 0.669616 0.161885 -0.083742 -1.301558 -0.331212 -0.118057 -0.503426 1.323810 0.873123 -0.431231 -0.180410 1.761498 0.097816 -1.662010 1.397890 0.448117 0.400249 -0.078699 -0.384180 -0.166221 1.101479 -0.217806 -0.009794 0.650909 0.867388 -1.320251 -0.898757 0.019429 0.992714 0.741603 0.551150 -1.986191 -0.041944 0.886630 1.455957 0.003088 1.040787 -0.705121 -0.650978 0.257673 0.131132 -0.242241 0.207066 0.229454 -0.803232 0.051725 -0.518961 -0.449626 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.071795 0.420615 1.792549 -2.546203 -3.309448 -0.644906 0.622586 -1.121925 -0.554604 0.782528 0.681873 -1.560019 -2.097152 3.081499 -1.305234 -2.571165 -0.886672 -0.924311 -0.659518 -1.368427 -0.367085 1.908595 -0.441400 -0.277901 1.284468 -1.015110 -0.435241 2.259001 1.986370 -1.192117 0.517805 -1.122593 0.615574 3.334839 0.073773 0.087668 -0.180332 5.611301 -0.985350 1.853320 -3.736159 -3.178411 3.752718 -0.658612 -0.488536 -4.541542 -2.316750 1.831483 -3.028439 0.619063 0.723684 0.698826 0.019370 -1.779147 0.565197 2.044618 -4.907461 3.278085 1.285233 -1.877882 -1.192431 -0.662054 -1.453635 -0.381050 -0.450598 -1.980531 -0.239218 0.764370 -1.635971 0.617708 0.049264 -1.320507 4.737290 0.433665 -0.928715 1.676889 0.848495 -1.621346 2.114587 -2.649115 -2.923016 -1.394042 1.298460 0.096234 2.354290 0.408510 1.321907 -4.798271 -0.264223 -4.421840 1.669291 -3.079520 1.430628 3.265021 -2.901645 3.044811 1.166517 -0.968553 1.925593 0.690483 2.833760 1.101675 2.167278 2.031735 1.145179 1.643008 -0.889911 -1.803076 -2.239405 -2.636453 -0.154587 -0.689481 -5.489546 1.010478 -0.296273 0.685334 0.040821 -0.061301 0.196489 2.582974 -2.942932 0.395909 1.867062 -0.817621 0.533339 2.420688 -0.497614 -0.302247 -1.541231 2.676348 -1.358608 2.230743 -0.222683 2.211828 -0.055852 -4.449312 -3.420875 -0.226635 0.099038 -1.733120 -2.794940 -2.776962 -0.762818 0.515765 -1.512688 1.432891 5.916847 -2.233138 -3.747702 3.695118 1.655634 1.139065 2.169126 1.086707 3.448308 -0.678620 -1.455292 -1.572017 -1.495232 1.297122 1.407536 0.601093 -1.977441 1.953731 0.353175 -3.448848 2.463711 -1.025271 -1.439439 -0.413244 0.446385 -2.202384 -2.057073 3.306032 0.979310 4.095307 -1.047472 4.273470 -1.437118 -3.433166 0.753715 -2.099244 0.057363 -1.640910 0.099682 0.718936 1.184599 -2.675887 -2.059825 -1.166107 -1.271341 -1.630452 1.598522 -0.316117 0.398516 0.557983 0.967569 1.942018 3.244241 -0.483840 0.629372 -3.439735 1.411648 1.434437 0.790934 -5.312979 0.273629 -0.089434 -0.871552 1.112965 0.061241 1.303373 -0.156225 -0.317528 0.245112 -1.272731 0.503134 0.208902 -2.175814 0.671922 -0.857103 1.793629 0.796211 2.436815 4.399744 2.279707 1.057658 1.944539 -0.129758 -0.984790 1.127986 0.505859 1.097534 0.149948 1.707970 3.361740 2.578034 0.970537 3.015810 2.514456 -0.605419 3.061731 0.450240 5.349722 -2.156507 -1.156799 -0.137500 0.994062 2.896688 4.791818 -0.027258 -0.495156 2.161704 1.321852 -0.113035 -3.405110 -0.096324 -0.651345 -0.624163 3.426934 1.395794 -1.427558 0.190262 3.693742 -0.533963 -4.386941 2.911523 1.041014 1.717374 -0.816654 0.343895 -0.837026 2.822733 -2.160259 1.171189 2.030132 1.980460 -3.154105 -1.987374 0.235656 2.333561 1.537007 2.606878 -4.817676 -0.170479 1.974779 2.826066 -0.111574 2.446378 -1.710601 -2.847012 1.302277 -0.294331 -1.010889 0.960310 0.052180 -2.276984 0.769969 -1.086207 -2.494723 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = -0.118725 0.056033 0.643406 -1.060193 -1.095547 -0.094207 0.680581 -0.496863 -0.225589 0.056227 0.616190 -0.425214 -0.438692 1.147680 -0.105518 -0.615804 -0.027994 -0.489283 -0.291549 -0.164999 0.020082 0.784128 -0.199520 -0.096139 0.403626 -0.247519 -0.262028 1.044564 0.231642 -0.403095 0.140987 -0.412276 0.066840 1.146427 0.125097 0.033488 -0.122355 1.884188 -1.119793 0.957562 -1.128000 -0.811706 1.422674 -0.282315 -0.454741 -1.753723 -1.249946 0.601033 -0.333457 -0.390503 0.397321 0.100228 0.369656 -0.529223 0.139891 0.869713 -1.450543 0.351662 0.610388 -0.822896 -0.421294 -0.154268 -0.465683 -0.126109 -0.705813 -0.687584 0.022141 -0.132065 -0.026953 -0.058916 -0.001015 -0.796085 1.688899 0.193225 -0.154340 0.500036 0.259417 -1.098156 0.918116 -0.113651 -1.040524 -0.464685 0.029852 -0.396518 0.875439 -0.324987 0.649176 -1.647104 -0.187345 -1.579451 0.513348 -1.080767 0.381640 1.101267 -0.878723 0.896459 0.530355 0.130812 0.407379 0.151352 0.990934 0.443497 0.712377 0.783401 0.835263 0.623737 -0.583461 -0.770118 -1.120691 -1.012252 0.464591 -0.565635 -1.952109 0.458357 0.045794 -0.545485 -0.075457 -0.206565 0.255519 1.574747 -0.430579 1.034058 0.863063 -0.278746 -0.285431 1.104893 -0.125778 -0.282909 -0.659621 0.851029 -0.652732 1.179872 -0.097153 0.823089 -0.245782 -1.354948 -0.488345 -0.022491 -0.080933 -0.752463 -0.887477 -1.096820 -0.048259 0.370706 -0.583202 0.209457 2.016373 -1.006324 -1.346157 1.307818 1.481611 0.000571 0.239318 0.351396 1.280502 -0.201528 -0.713049 -0.846296 -0.810302 0.407879 0.990204 0.238785 -0.552880 0.784359 -0.160584 -2.203785 2.390192 -0.390670 -0.626473 0.800919 0.249939 -0.779045 -0.990046 1.222167 0.774723 1.364075 -0.270725 1.430126 -0.259430 -0.813990 0.251401 -0.225431 -0.082741 -1.137296 -0.092050 0.463040 0.370670 -0.463027 -0.669710 -0.662936 -0.494844 -0.612031 0.594853 -0.687690 0.337669 0.343578 0.258836 -0.051704 1.155563 -0.064622 0.019737 -1.011407 0.612750 0.558729 0.276642 -1.739226 -0.070791 -0.200239 -0.241008 0.008870 0.020319 0.787684 -0.288258 -0.046847 0.287719 -0.452463 -0.205743 0.162622 -1.538315 0.240687 -0.175228 0.684788 0.241797 0.871639 1.523981 0.955831 0.402509 0.767932 -0.118791 0.053069 -0.630126 0.091506 0.123918 0.226348 0.679151 1.248535 0.973326 0.586698 1.142170 0.793307 0.488243 1.113796 0.320546 1.763320 0.042965 -0.591011 0.124805 0.510261 1.088143 1.500803 0.764786 -0.144363 0.608661 0.387556 -0.591749 -1.153570 0.145489 -0.159704 -0.192931 1.390039 0.525939 -0.278966 -0.091946 1.397203 -0.217039 -1.700595 0.718161 0.356944 0.803958 0.122244 0.212149 0.289716 0.856743 -0.404117 0.755078 0.818804 0.782216 -1.200717 -0.724695 0.179936 0.563693 0.828508 1.070762 -2.245511 0.173458 0.258565 0.991307 -0.428381 1.227499 -0.680764 -0.361538 0.556665 -0.011555 -0.216677 0.310346 0.062446 -0.920355 0.121793 -1.179487 -0.436570 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.376627 -0.034648 1.365355 -2.557224 -2.974881 0.012178 1.230741 -1.521057 -0.627263 2.133530 0.855842 -0.926247 -1.174063 2.987019 -0.520794 -1.459859 -0.225053 -1.505055 -0.143664 -0.127474 -0.299836 2.050159 -0.767505 -0.090807 0.646037 -0.413006 -0.289937 1.682466 0.178153 -0.451129 -0.043394 -1.502181 -0.176121 2.831098 0.883149 -0.042246 -0.702935 4.926494 -2.605288 3.298892 -3.372815 -2.839388 2.764011 -0.610859 -0.042626 -3.860043 -1.703706 1.709172 -0.352058 -1.096630 1.151833 0.151033 0.908682 -0.947714 0.395760 1.160838 -3.161628 1.179327 1.493047 -1.750132 -0.874571 -0.658003 -0.834132 0.731034 -2.389089 -1.642420 0.011788 0.006908 -0.447143 -0.150808 -0.440913 -1.818509 2.845657 0.947388 -1.192744 0.632253 0.569378 -2.429898 2.138727 -1.779294 -3.253272 -0.964978 -0.404802 -1.225802 1.861381 0.129228 2.274163 -4.235352 0.966093 -4.352292 1.201039 -2.293541 0.980322 3.142141 -1.358469 1.931060 1.359087 1.325509 2.186848 -0.222646 2.051163 1.853274 1.551355 1.880795 1.734181 2.305867 -1.601638 -1.864480 -2.498888 -2.228248 0.790390 -1.178475 -4.065452 1.236976 0.406558 -0.171602 -0.280787 -0.089768 -0.264575 3.270194 -3.096937 0.771518 1.392357 -0.649515 0.232897 2.189482 -0.502896 0.003172 -1.249265 2.179586 -1.560726 2.601908 -0.012259 2.245320 -1.695039 -1.713125 -1.808677 0.583181 0.507821 -1.832402 -2.253078 -3.731368 -0.486604 1.192966 -1.517244 1.711068 5.086971 -2.711567 -3.003791 3.085616 1.419703 -0.559039 0.931115 0.623975 2.482903 -0.364910 -1.587887 -1.651315 -1.688539 0.355560 3.942962 0.881087 -1.466601 2.099301 -0.839427 -3.891286 3.201540 -0.274118 -1.872013 -0.625908 0.447049 -1.800927 -1.549888 2.687295 -1.448371 2.452076 -1.119374 3.290669 -0.658024 -1.279073 0.627780 -2.766517 -0.180630 -2.662919 -0.136333 1.005089 1.371545 -2.067869 -1.357930 -1.219261 -1.433259 -1.735451 1.334685 -2.623963 0.323677 1.109050 0.943241 2.758324 3.049399 0.217756 -0.253230 -2.009944 1.713034 0.853748 0.111563 -3.828502 -0.795902 -0.692736 -0.822103 0.350512 0.000413 1.606802 -1.194271 -0.206905 0.492612 -0.835712 -0.023888 0.899098 -3.365953 0.702371 0.039450 2.405588 0.918513 2.098331 2.527206 3.025721 1.576503 1.597340 -0.543207 -0.116601 -1.033090 0.635449 1.175094 -0.512065 1.622326 3.105342 2.394728 1.269270 2.671116 1.996295 0.472071 2.639692 -0.322508 4.135159 -0.846210 -1.092446 0.293937 1.162432 2.321386 3.685444 0.739246 -0.098876 1.552904 -0.167313 -1.541386 -1.202387 0.832213 -0.671589 0.092721 2.223546 1.945014 -0.388371 -0.442078 3.204282 -0.842470 -4.351071 1.666817 0.939181 2.159053 1.208146 0.493985 0.915255 1.402995 -1.118288 2.648610 2.588906 1.543827 -2.543334 -1.564818 0.413929 1.121959 2.696345 2.337706 -5.133409 0.094647 0.985471 2.499700 -0.608958 3.245236 -2.124783 -0.913047 1.707457 -0.488861 -0.362526 0.390948 0.744070 -1.149382 0.552921 -2.316845 -1.243656 +PE-benchmarks/biconnectivity.cpp__main = 6.839107 -1.880696 7.838101 -11.732948 -11.972239 0.408359 0.234416 -10.392808 -4.699307 14.570250 3.607273 -10.007196 -8.533041 13.780750 -5.532926 -11.448606 1.190419 -1.005523 0.307147 -5.104558 -5.785338 6.577638 -4.789705 -7.989304 6.354508 -4.557422 1.195840 10.680017 5.638581 2.383854 -1.816993 -7.421198 1.446572 23.516028 6.749760 -2.237389 -1.879951 30.651020 -8.572569 15.808631 -18.874576 -19.967762 23.595354 -2.726273 2.759054 -11.733648 -6.703706 12.432497 -16.848077 -2.577657 2.485615 -1.943512 4.930089 -12.045712 -2.997673 12.039672 -25.825041 13.312407 8.481511 -10.364140 -12.913119 -5.486632 -2.407578 2.879075 -8.481672 -13.189190 0.786510 5.488163 -7.948000 2.008390 -10.436801 -12.060626 17.293834 4.514394 -5.974037 4.366211 0.318858 -7.975300 10.280873 -10.157787 -18.298345 -8.757675 1.990518 -7.667124 14.259258 7.025425 14.789784 -29.610736 7.139772 -30.550622 10.277733 -14.815912 12.320690 22.100986 -15.083387 15.032648 7.148978 7.166229 7.917908 1.882745 16.184454 7.290196 4.724059 7.169232 11.245536 12.718950 -8.654085 -13.511113 -10.800096 -10.853425 -1.028745 -5.928850 -24.018418 7.832028 -10.262226 8.945858 -2.038312 2.062672 -5.841959 13.666336 -25.514650 -4.010799 4.593392 -5.085065 11.651958 10.479449 -2.181147 1.546968 -4.972890 16.046952 -5.000266 4.291391 -2.087325 16.062335 -5.131396 -15.962774 -18.443510 4.227628 8.749515 -13.981804 -21.310318 -23.113016 -6.284807 6.538650 -9.011725 17.770866 32.501242 -10.459307 -15.717286 18.225808 -5.630806 4.388351 18.898880 6.363810 21.082911 -10.316445 -1.819628 -4.687269 -3.788308 4.307758 6.495383 -1.941427 -12.542175 14.092345 -0.809712 -2.347502 12.002444 -0.485474 -6.335935 -10.991685 2.057597 -8.550553 -9.975719 20.745234 -11.676336 16.030831 -5.601261 27.434071 -8.974792 -14.960657 6.665333 -16.964274 -3.460845 -8.912394 0.373711 -1.049764 10.561017 -18.559865 -14.011839 -4.090750 -3.255356 -7.077843 16.056634 2.828259 -0.721315 4.308694 0.448846 18.346084 13.590386 -4.228166 1.381290 -16.846462 6.675167 9.944046 -1.125311 -23.448168 -3.791816 -4.284139 -5.483726 5.094858 2.387617 11.392636 -9.984641 -3.523728 4.389169 -0.319541 5.110827 2.442098 -14.724525 7.989470 0.387560 5.645813 9.540486 20.490812 17.741479 15.619155 3.855858 6.688812 -2.711722 -5.521220 -1.705072 3.752155 6.306081 5.608019 8.699150 15.588748 11.338919 7.817403 11.511436 9.552527 -1.182689 18.665577 2.974832 24.340217 -11.796429 -2.462142 3.647332 -0.080718 17.456080 22.468249 -8.406467 -6.859388 10.495329 -1.739374 -6.074926 -12.208360 1.279017 -3.703184 -2.531909 8.180451 10.191858 -2.422419 -5.381445 25.492184 -2.539862 -30.216554 18.146513 7.213692 10.824297 7.775656 -2.079668 2.963760 9.759467 -6.060181 11.235380 13.338419 11.089316 -18.171684 -1.336735 1.866975 13.554560 10.499819 8.184186 -24.624207 1.723296 8.610832 17.516534 5.443373 12.685347 -12.104944 -7.831999 2.858252 -6.801959 -1.053186 0.273957 7.208975 -6.716249 5.867919 -11.706080 -8.157853 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 5.508748 -1.137484 5.384743 -7.871046 -6.880990 -0.456209 7.147258 -9.582758 -5.084002 16.698535 3.915554 -6.989641 -1.143874 11.788068 -1.177454 -3.911333 1.956928 -0.032021 -2.140160 -1.029054 -4.240627 5.204785 -4.109547 -8.109741 4.472465 -1.526480 3.513868 8.938364 -5.423090 4.234111 0.236282 -6.741355 2.298976 17.082346 5.803623 -0.907517 -5.400798 21.292201 -17.701949 17.189602 -14.482671 -15.316036 20.783014 -2.754417 1.589370 -9.904408 -5.847950 10.344724 0.770978 -11.472307 -0.304470 -1.321749 6.022058 -11.391523 -4.683796 9.455522 -13.525925 1.079107 8.839807 -12.212683 -14.797012 -4.024850 1.925777 4.036844 -17.074872 -10.863275 0.379383 -0.832142 -0.231193 0.494831 -10.420488 -13.155588 10.486091 2.430368 -3.486400 2.318625 -3.947028 -9.598059 8.989982 1.640443 -12.809284 -7.697274 -1.030420 -9.802576 6.451549 4.710694 15.459421 -23.332047 6.908817 -23.463643 7.542403 -9.797963 8.879293 16.268644 -7.662834 11.490059 4.476406 13.966759 3.610200 -0.823301 9.496531 6.476902 4.742867 4.614705 11.425884 14.138492 -11.679582 -15.521959 -12.327029 -8.473709 7.134657 -6.499718 -16.406956 7.553125 -6.822512 -0.281089 -2.146761 -1.116920 -3.476678 18.679150 -19.578543 4.217577 6.773962 -3.737313 5.802940 8.835449 -0.889473 1.226115 -4.186665 8.129139 -2.613163 5.511317 -0.245281 13.209369 -11.271135 -5.748761 -4.470294 4.608284 5.778276 -12.035937 -13.973655 -22.986513 -3.306914 11.051029 -8.553819 9.719338 24.140588 -10.954853 -12.650241 10.491299 2.500596 -3.192674 6.931019 4.402919 18.235894 -9.676494 -0.914816 -3.206175 -2.653101 6.724866 17.156691 -2.821546 -11.301625 13.254948 -5.695062 -11.526184 22.679686 0.741246 -3.845289 -1.286341 3.820617 -4.589902 -6.723556 15.711831 -12.250400 11.432170 -8.733692 18.910100 -6.741918 -2.974655 3.753546 -16.839897 -5.705743 -13.898076 -0.289667 -0.384676 11.758487 -10.537899 -9.100423 -4.549953 -5.821874 -4.053970 14.970294 -11.447238 -0.736387 1.998395 -2.118460 11.962601 8.175527 -3.821179 -3.023685 -10.130738 5.450577 8.249402 0.142568 -17.930730 -7.346042 -5.873855 -5.267460 -2.617985 1.412236 11.226937 -11.426725 0.129150 7.280899 -0.984655 -2.484361 -0.185889 -15.994319 6.160772 0.272327 8.093507 6.200748 18.138325 11.213722 14.589023 2.542607 5.517939 -3.123308 -4.475809 -14.716173 5.951043 2.452981 4.561329 8.541802 12.266656 8.079289 7.748263 9.177397 2.261676 4.372908 14.771783 2.000559 17.764508 -4.880801 -2.036637 5.639844 1.892581 12.656984 14.150546 0.635475 -8.378205 6.539688 -6.647801 -12.517725 -2.459924 0.968020 -1.430574 -1.736733 7.105602 11.280983 -1.202413 -4.971078 21.949820 -3.308503 -26.618600 10.078757 5.473848 10.580577 12.833654 -3.051568 10.727945 7.153907 4.722335 11.009196 11.930075 9.692978 -15.876485 0.868239 2.265059 8.270443 15.401425 4.438801 -29.943578 3.987254 2.817922 13.867004 -2.303688 16.863185 -11.480115 5.571910 2.711148 -2.192234 2.971609 -1.063283 7.903675 -2.011669 2.290977 -19.938908 1.259700 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/find-parity.cpp__main = 0.345057 0.590087 0.517907 -0.705959 -1.180973 0.200244 -0.378690 -1.039565 -0.253483 0.362148 0.400890 -0.632658 -0.992796 0.035886 -0.672869 -0.942005 -0.408171 0.145194 -0.254609 -1.050175 -0.159091 -0.001016 -0.156516 -0.718939 -0.022177 -0.639497 0.327766 0.697432 0.900124 0.216453 -0.071881 -0.319509 0.653647 1.375172 0.554702 -0.011584 -0.179190 1.461834 0.788051 -0.181854 -1.530509 -1.494015 1.513451 -0.089180 0.208478 -1.410700 -0.316393 0.642648 -1.672439 0.448920 -0.184478 -0.300070 0.321472 -0.668735 -0.433984 0.820921 -1.316708 1.531469 0.210632 -1.152503 -0.731389 -0.245531 -0.065444 0.377738 0.472547 -0.803775 -0.052218 0.885018 -0.783087 0.428616 -0.519365 -0.684739 1.768484 0.050807 -0.506970 0.077631 -0.181464 -0.137679 0.384940 -0.465798 -0.856796 -0.436560 0.745661 0.622739 0.514070 0.449851 0.585644 -1.829281 -0.543760 -1.901285 0.774693 -0.534775 0.883104 0.637042 -1.097253 0.732420 0.395357 -0.793821 0.423230 0.364573 0.921607 -0.036808 0.924261 0.305514 0.594160 0.391199 0.102759 -0.708696 -0.311602 -0.912282 -0.198234 0.031620 -2.271523 0.289411 -0.958310 0.832308 -0.326184 -0.107597 0.081190 0.759585 -1.327959 -0.869721 0.353574 -0.238047 1.089670 0.501458 -0.046987 0.677685 0.163593 0.860499 -0.177595 -0.011509 -0.083700 0.774755 0.548001 -2.178851 -1.889066 0.566099 0.732051 -0.669713 -1.242276 -0.483981 -0.649711 0.215697 -0.369232 0.024179 1.831665 -0.482730 -1.195828 0.897373 -0.486237 0.052236 1.452084 0.459900 1.814554 -0.998270 0.250407 -0.106112 -0.184111 0.597767 0.618634 -0.519718 -0.946340 0.736572 0.245850 -0.286163 -0.413022 -0.441626 -0.429348 -0.063273 -0.139319 -0.474706 -0.491519 0.731115 0.229411 1.468996 -0.331065 1.576799 -1.192521 -1.577094 0.256328 0.109942 -0.338588 0.382293 0.481331 0.104776 0.881815 -1.215364 -0.869622 0.070064 -0.365945 -0.256223 1.289066 0.668079 -0.061207 0.258316 -0.202783 0.432223 0.927839 -0.321764 -0.028429 -0.904590 0.366892 0.811966 0.610524 -1.626426 -0.438676 -0.516366 -0.231737 0.436979 0.102665 0.866667 0.508319 0.002123 0.027233 -0.628927 0.684655 0.089923 0.270782 0.595377 -0.198849 0.144726 -0.186617 1.465856 1.245311 0.891508 0.282288 0.309239 0.206201 -0.793508 0.689138 -0.012335 0.768174 0.088575 0.549083 1.317916 0.437572 0.578482 1.195431 0.535453 -0.063187 1.147754 -0.213251 1.709194 -1.744762 0.318061 -0.331812 -0.040473 1.100644 1.984317 -0.386972 -0.829841 0.361350 0.207970 0.068843 -1.426667 -0.276505 -0.107488 -0.167973 1.076926 1.261723 -0.111395 -0.513461 1.754637 0.277934 -1.598411 1.471865 0.324443 0.329836 0.176364 -0.765478 -0.421033 0.859396 -0.103685 -0.051861 0.850969 0.667435 -1.415057 -0.867402 -0.031912 1.170353 -0.319163 0.155545 -1.197421 -0.346503 0.953506 1.494086 0.393942 0.828918 -1.038421 -0.783462 0.352215 -0.123512 -0.066521 0.303601 0.355196 -1.029125 0.258872 -0.279207 -0.419192 +PE-benchmarks/the-knights-tour.cpp__main = 0.441242 -0.110433 0.417431 -0.806255 -0.222759 -0.146939 0.842484 -0.404732 -0.328227 0.622473 0.058711 -0.450614 -0.913923 0.653811 -0.003170 -0.686364 0.256234 -0.709259 -0.252519 0.042593 -0.446625 0.290482 -0.220880 -0.598220 0.514683 -0.016100 0.166410 0.873190 0.213134 -0.229583 -0.110772 -0.413377 0.161683 1.382077 0.296281 -0.027013 -0.226543 1.847458 -0.786060 1.257129 -1.044233 -1.015338 1.646669 -0.300645 -0.294006 -1.204303 -0.148258 0.904744 -0.876399 -0.526865 0.142735 0.046780 0.107757 -1.015799 -0.311680 1.249559 -1.651728 0.703857 0.597750 -0.325185 -0.822417 -0.466719 -0.043574 -0.033256 -0.561335 -0.871429 0.056905 -0.511294 -0.787052 0.222309 -0.905981 -0.573177 1.131332 0.441229 -0.247656 0.362066 -0.230911 -0.448473 0.563431 -0.521778 -0.769150 -0.605787 0.083363 -0.289411 0.979281 0.205056 0.407228 -1.714296 0.035542 -1.603534 0.431994 -1.202545 0.698448 1.313015 -0.489601 1.140465 0.048314 0.074447 -0.124383 -0.226435 0.814028 0.299921 0.596316 0.296978 0.797239 0.622301 -0.754485 -1.125736 -0.687610 -0.440311 0.077859 -0.290128 -1.415743 0.514274 -0.727997 0.271530 0.193920 0.182962 -0.524591 0.516031 -1.381072 0.186710 0.276830 -0.335374 0.782676 0.959110 -0.094546 -0.032975 -0.307998 0.834787 0.128602 0.727131 -0.240360 0.917300 -0.074238 -0.862980 -0.474376 -0.025349 0.509248 -0.636857 -1.287233 -1.437956 -0.394683 0.233034 -0.612332 0.916156 1.813657 -0.395684 -0.858554 1.000601 -0.207806 0.805494 0.596580 0.291197 1.286148 -0.683270 0.010040 0.021129 -0.008031 0.394272 0.755411 -0.279341 -0.942489 0.798628 -0.310808 -0.209906 0.651800 0.173587 -0.146242 -0.031225 -0.152047 -0.629852 -1.098792 1.444634 -0.583906 1.180906 -0.306248 1.558520 -0.489914 -0.566508 0.443636 -0.786013 -0.048715 -1.190823 -0.284233 -0.036334 0.464461 -1.073297 -0.851884 -0.427983 0.050191 -0.365439 1.165724 -0.462075 -0.213176 -0.077273 0.115171 1.009273 0.571107 -0.664048 0.116425 -1.166482 0.480957 0.487267 0.124901 -1.337659 -0.158601 -0.024273 -0.502751 0.641867 0.105512 0.522149 -0.536957 -0.227243 0.785272 0.078897 -0.091420 0.020958 -1.392544 0.239722 0.277487 0.060583 0.667666 1.373894 0.938295 0.569031 -0.037133 0.338998 -0.191965 -0.120374 -0.944943 -0.021348 -0.135027 0.561875 0.598516 0.567465 0.652014 0.283535 0.761386 0.557292 -0.415545 1.016956 0.651807 1.190786 -0.289920 -0.605803 0.557794 -0.168281 0.902731 0.904394 -0.467378 -0.543663 0.832575 -0.030630 -0.472847 -0.630494 -0.188020 -0.343173 -0.190226 1.001859 0.359106 -0.342122 -0.070181 1.779761 -0.419680 -1.983091 0.741206 0.530474 0.751388 0.456208 -0.127117 0.441108 0.792039 -0.340412 0.506050 0.489038 0.673296 -0.890611 0.216744 0.152694 0.539977 0.512972 0.198067 -1.867598 -0.422605 0.210963 1.338195 0.517737 0.963249 -0.396595 0.017509 0.079081 -0.079858 0.230336 -0.169373 0.644775 -0.268800 -0.024577 -1.214609 0.046119 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 1.163713 -0.215027 1.038115 -1.102210 -0.090600 -0.094342 1.941323 -1.200044 -0.399872 2.531840 0.176589 -0.496798 -0.701150 0.092684 -0.024786 -0.736925 0.947750 -0.466364 -0.251307 -0.090353 -0.580623 0.238311 -0.399295 -1.782791 0.779817 -0.412986 1.174754 1.593393 -0.783886 0.997200 -0.053396 -0.888824 0.674584 2.675852 0.836401 0.011014 -0.893116 2.363179 -1.260187 2.222496 -1.840787 -2.088777 3.106953 -0.485487 0.111276 -1.680929 0.560143 1.288357 0.088099 -1.834489 -0.448009 -0.392416 1.352464 -2.195096 -1.354943 1.806149 -1.579903 -0.381551 0.937644 -1.608327 -2.328992 -0.783372 0.425399 1.004334 -2.137985 -1.554973 0.304953 -0.635097 -0.727337 0.826219 -1.800704 -1.594707 1.971526 0.523208 -0.743927 0.245878 -0.678428 -1.549805 0.964909 0.714467 -1.040543 -1.397269 -0.091933 -0.640965 1.016761 0.110658 1.886361 -3.182798 0.398394 -2.757234 1.332742 -1.406589 1.640075 2.034257 -0.691924 1.920309 0.120818 1.892060 -0.723702 -0.866785 1.358706 1.043048 1.416540 -0.060510 1.588305 1.558653 -1.682267 -2.911199 -1.261548 -0.414449 0.822272 -0.861258 -2.655116 0.782479 -1.545810 0.382315 0.182544 -0.370073 -0.857692 2.558226 -3.154186 0.150833 0.860585 -0.575991 1.278069 0.889342 0.072347 0.345616 0.287362 1.469838 0.372991 0.337336 -0.186388 1.908708 -1.472983 -0.335334 0.200472 0.353204 1.080241 -1.419671 -2.385907 -2.834840 -1.066302 1.624416 -0.760961 0.837795 2.685812 -0.375936 -1.549863 0.930064 -0.657387 -0.331433 0.699160 0.773486 1.852955 -1.945258 0.600963 -0.405129 0.813684 1.320454 3.834152 -1.016126 -1.949665 2.143627 -1.262462 -0.398298 1.771629 0.172138 0.247228 0.194722 -0.482983 -0.832846 -1.055868 2.178748 -2.131129 1.933301 -1.635812 2.915472 -1.378657 -0.590000 0.195685 -1.865703 -0.727129 -2.164458 0.272472 0.365933 1.584912 -1.997732 -1.712413 -0.339491 -0.330414 0.230272 2.699634 -2.280865 -0.665416 -0.407165 -0.684692 2.600283 0.179380 -1.232977 -0.785801 -0.958259 0.671801 0.780331 0.287929 -1.619755 -1.301483 -0.523094 -0.967841 -0.184644 0.416758 1.538431 -1.264012 -0.174685 1.648916 -0.147881 -1.051746 -0.485675 -3.128776 0.782531 0.932262 0.261866 0.297025 2.717523 1.508135 1.084856 -0.467157 0.033023 -0.157918 -0.909737 -3.158509 0.720522 0.248672 0.505362 0.779479 1.602999 0.679636 0.670371 1.186563 0.596954 0.349210 1.790131 0.468848 1.429779 -0.925615 -0.394321 1.399790 -0.288837 1.766154 1.212060 0.313125 -1.468816 0.983811 -0.615654 -1.558057 -0.212070 -0.456213 -0.246264 0.323927 1.075210 1.531170 -0.600028 -0.567906 3.349778 -0.138388 -3.607963 1.158956 0.993226 1.307170 2.033360 -1.104944 1.644305 1.095990 1.262124 1.300531 0.535914 1.171461 -1.953076 0.232068 0.309715 0.758618 1.256142 -0.179102 -3.558339 -1.019986 -0.066289 2.591800 0.614038 2.824756 -1.200148 1.656634 -0.107242 -0.089634 0.625290 -0.580094 1.246486 -0.266463 -0.082752 -3.299820 1.164080 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 2.698428 0.254756 2.693143 -5.017009 -2.113951 -1.373595 6.553506 -4.235285 -2.768793 8.743263 1.831124 -3.824556 -2.377650 5.241251 -0.312599 -2.025275 1.775989 -1.831317 -2.036315 -0.490138 -1.898684 2.572517 -1.554540 -5.075147 2.726353 -0.322142 2.083521 5.632912 -2.282574 1.555735 0.228719 -3.137346 2.251921 8.828029 2.207851 -0.584732 -3.726329 9.602180 -10.086637 8.759018 -7.720138 -7.124542 11.529066 -1.413975 0.347942 -8.468738 -2.796854 5.530870 0.599359 -6.755644 -0.946790 -0.154347 2.849342 -7.323898 -2.966298 6.757935 -7.321685 0.424028 4.720405 -5.697167 -7.468245 -2.048608 1.782194 1.740447 -8.121783 -6.057508 -0.130469 -3.034011 -1.318138 1.098674 -6.199475 -6.196770 4.038286 1.408740 -1.488931 1.648795 -3.046031 -5.660250 4.505786 0.261811 -4.356077 -4.125167 0.011679 -3.399595 3.002339 1.726862 5.945681 -11.357511 1.167708 -10.299407 3.444513 -5.873991 4.571522 7.739393 -2.440803 6.430347 0.696178 4.927772 0.631843 -1.196232 4.561160 3.533281 5.102296 1.332973 6.191365 7.077546 -6.450691 -8.931336 -5.914393 -3.863591 3.619116 -3.510246 -8.456237 3.829148 -4.232436 -2.876106 0.147799 -1.729692 -2.093887 9.130900 -9.577223 2.223836 3.826942 -1.998764 2.655966 5.306063 -0.056646 -0.036740 -1.894378 3.950034 0.546674 4.021569 0.036592 6.709762 -5.377181 -4.593315 0.028752 1.530724 2.414887 -5.720438 -7.275263 -11.629032 -1.811351 3.772839 -4.273517 3.183730 10.876671 -3.629878 -6.738572 4.904826 1.724500 -0.869825 2.178540 1.895572 9.649287 -5.744567 0.527906 -0.766645 -0.331818 4.364066 11.205212 -2.396206 -7.009357 6.316812 -4.204160 -7.367295 8.355210 0.611989 -0.424370 0.507854 1.236613 -3.085347 -4.253152 8.317011 -6.851629 7.305222 -5.473894 8.995443 -3.842059 -1.576785 2.168005 -8.292027 -2.690068 -8.073698 -0.630751 0.314530 5.615001 -5.282388 -4.773303 -3.359464 -1.966342 -1.673608 8.682456 -9.918102 -1.107685 -0.340356 -0.906702 5.521233 2.440839 -3.677180 -0.391189 -5.066048 3.099451 4.325391 1.920979 -10.164880 -3.369184 -2.807215 -3.175484 -0.698805 0.510778 5.587466 -4.371301 -0.254680 5.576459 -1.017357 -2.936339 -1.540293 -8.887848 2.904705 -0.120189 3.351510 2.269364 10.119793 5.536501 5.358379 -0.371482 1.980718 -1.220173 -2.804300 -9.707184 2.854823 -0.114469 0.910137 4.418350 5.348671 3.610619 3.420462 5.661695 1.440847 0.230598 7.393258 2.010111 6.900162 -1.307140 -1.933808 4.095463 -0.176008 5.804100 6.097569 2.606120 -5.679579 3.935138 -3.204549 -6.388959 -1.069751 -0.855768 -0.935843 -1.737182 5.819003 5.019387 -1.959439 -1.540350 11.678815 -1.817642 -13.204812 4.644039 2.860004 5.376067 5.539877 -2.378282 5.799407 4.583829 2.750672 4.223652 4.172749 4.701472 -7.506015 -0.530245 1.256431 3.749314 8.177833 0.803864 -16.978733 0.363584 0.943300 8.364496 -0.689089 9.834740 -4.779683 3.981657 0.744485 0.733682 1.890974 -1.833036 4.276345 -1.673484 -0.318694 -11.092666 2.821713 +PE-benchmarks/coin-change.cpp__main = 1.068243 0.047316 0.623263 -1.528214 -0.679596 -0.163066 1.431149 -1.482451 -0.912362 2.002838 0.605178 -1.313622 -0.999873 1.549456 -0.191730 -1.000684 0.701309 -0.237435 -0.551458 -0.362237 -0.877967 0.468881 -0.502605 -1.556514 0.670918 -0.317828 0.477410 1.589747 -0.122383 0.330207 -0.298921 -0.836699 0.611887 2.934541 0.908916 -0.434382 -0.858051 3.519850 -2.252408 2.532706 -2.264865 -1.962035 3.555661 -0.440074 -0.147684 -2.486472 -1.052701 1.626972 -0.303127 -1.416442 -0.225561 -0.380973 0.673524 -2.060317 -0.981693 2.501823 -2.451321 0.725859 1.385244 -1.649689 -2.265614 -0.723129 0.429496 0.424151 -2.141079 -1.958044 0.216254 -0.413109 -0.693406 0.443607 -2.285654 -2.108961 2.031385 0.649518 -0.569310 0.382298 -0.923181 -1.445319 1.147055 0.173817 -1.696219 -1.184356 0.228976 -0.714160 1.287515 0.571711 1.954232 -3.869926 0.265357 -3.834048 0.988923 -2.139074 1.711194 2.617515 -0.891461 1.940720 0.299746 1.035976 -0.004603 0.068559 1.676424 0.776030 0.976645 0.292634 1.945141 1.880558 -1.489466 -2.617191 -1.317771 -1.016494 0.579912 -0.510875 -3.118809 1.290331 -1.943717 -0.080923 -0.203565 0.187996 -0.690329 2.419557 -2.593654 0.171338 0.933436 -0.743776 1.523783 1.916267 -0.040107 0.302818 -0.770358 1.479116 0.278772 1.045672 -0.362619 2.009701 -1.130686 -1.963197 -0.969618 0.476695 1.189173 -1.867146 -2.667600 -3.055016 -0.823356 1.170450 -1.334051 1.608366 3.853950 -1.236306 -1.921118 1.743378 0.089602 0.467621 1.459248 0.686106 3.779983 -2.020866 0.515570 -0.051561 0.111258 0.996410 2.128788 -0.990514 -2.069487 1.801373 -0.805161 -1.511632 2.982109 0.024137 -0.334503 0.665592 0.131987 -0.536049 -1.856807 2.857143 -1.584260 2.400084 -1.097405 3.331282 -1.269714 -0.946656 0.845073 -1.529371 -0.671818 -2.047480 0.180350 -0.235475 1.893706 -1.640848 -1.782390 -0.499279 -0.700923 -0.463144 2.903831 -1.057349 -0.331012 0.058073 -0.468411 1.751297 1.201288 -1.098763 -0.100329 -2.104097 1.003734 1.513405 0.189509 -3.068960 -0.910887 -0.684788 -0.899033 -0.189126 0.257476 1.701428 -1.441871 -0.313304 1.356622 -0.060287 -0.171946 -0.169585 -2.379016 1.083152 0.036833 0.560807 0.753530 3.335966 1.960636 1.814739 0.051803 0.381867 -0.317563 -0.781207 -2.452679 0.685980 0.083166 0.985672 1.261712 1.704368 0.885618 1.090626 1.660095 0.158084 0.351662 2.232449 0.949871 2.679320 -0.862983 -0.696305 0.981827 -0.540895 2.144601 2.586733 -0.120561 -1.825233 1.217133 -0.731522 -1.780991 -1.295986 -0.315346 -0.245848 -0.791875 1.782633 1.630366 -0.353496 -0.794554 4.025493 -0.393025 -4.534285 1.805958 1.018249 1.436982 1.928636 -0.735348 1.579433 1.526204 0.727217 1.029939 1.511300 1.623531 -2.418972 0.037425 0.298548 1.262758 1.495133 0.086425 -4.774480 0.256527 0.792331 2.937077 0.357181 2.456046 -1.487859 0.914747 0.291339 0.082103 0.531006 -0.374447 1.545296 -1.042136 0.115638 -3.006207 0.543553 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.832319 0.357842 1.637429 -3.664960 -0.356317 -1.275502 7.622469 -4.831650 -3.872682 10.565451 1.195573 -4.290812 -3.281165 3.646800 0.410862 -1.716906 3.235282 0.768089 -2.062202 -1.383485 -3.832062 0.943088 -1.581919 -6.100302 2.532423 -0.923044 2.573452 5.306329 -3.559190 3.277624 0.514494 -3.072385 2.817961 9.252662 2.941997 -1.218074 -4.911003 10.280953 -10.653751 10.222276 -7.001571 -7.132333 12.871527 -1.253663 0.818404 -7.414232 -1.716305 5.739469 2.678316 -7.560431 -2.523599 -1.039618 2.966620 -8.064599 -4.574752 8.453105 -5.603573 -0.780082 4.812579 -8.054278 -10.227212 -1.693585 2.486321 2.542385 -10.145198 -6.808290 -0.014463 -3.167560 -0.906016 1.827680 -9.133083 -7.072133 2.875392 1.816917 -1.322877 0.987172 -4.625754 -3.412287 3.315086 3.355418 -4.348410 -4.536538 0.296197 -3.379781 1.599592 3.329963 8.282846 -12.439838 1.433866 -11.901191 3.509560 -6.009279 5.824593 8.233994 0.710595 7.322273 0.409017 4.661613 -1.660462 -0.886946 4.176992 2.772709 3.979203 0.666074 6.652420 7.938172 -6.864728 -11.207750 -5.203194 -1.920051 3.915429 -1.803776 -7.047228 4.601587 -7.154923 -1.478223 0.102003 0.240615 -2.843018 9.344270 -9.627149 1.825180 3.714956 -2.490787 5.207445 5.323966 0.703213 0.965754 -1.413738 3.477905 1.946828 3.324661 -0.253877 7.348197 -5.172020 -3.397238 0.528599 2.110919 3.912748 -6.286246 -7.708339 -11.239418 -2.891475 6.319154 -4.731171 4.248379 12.165681 -3.858737 -5.023623 3.657843 -1.566220 0.160433 2.019479 2.492734 12.942468 -7.608510 2.475221 0.789456 1.674938 5.303865 13.155284 -3.896430 -8.150379 6.989185 -3.678079 -4.072621 9.642967 0.131395 0.179253 2.543797 1.050624 0.003061 -4.777142 8.482202 -9.672072 7.292251 -5.837508 9.896131 -4.035445 -0.245870 2.312438 -7.274947 -3.601681 -8.354339 1.520783 -1.483517 6.880962 -4.806891 -5.386486 -2.245197 -3.449125 -0.436213 11.026746 -8.612955 -1.837043 -0.572500 -2.980399 7.162288 1.335730 -3.885491 -2.281542 -6.262098 3.045943 3.756318 1.078494 -9.605525 -4.632050 -2.216121 -3.566625 -2.297502 0.895929 6.068548 -5.077554 0.410657 5.966269 -0.184957 -3.153498 -1.897148 -7.445005 3.700485 1.711108 2.546472 1.952703 12.295893 5.080552 5.928919 -1.099882 1.579813 -1.658771 -3.291580 -12.355591 4.015137 -0.523791 2.868519 4.106333 4.486900 1.844257 3.973457 5.215727 -2.235177 1.811410 6.990925 2.388266 6.982936 -3.076055 -2.396491 5.084055 -1.852443 6.015101 5.712520 1.209995 -8.309746 3.770655 -5.402322 -8.392761 -0.511798 -0.983853 -0.342481 -2.304869 5.950865 7.467385 -1.074858 -2.895266 13.734530 -1.544314 -16.480771 5.111063 3.415811 5.128231 8.950280 -3.152533 7.971948 4.733671 6.594817 2.791918 4.797126 4.889467 -8.950249 1.833358 1.236292 3.265608 7.321826 -2.049727 -19.941890 -0.231501 1.200422 9.814548 -0.360406 10.601123 -5.261518 6.848968 0.674618 0.867740 2.769815 -2.242549 5.906104 -1.407327 0.321514 -12.925269 5.547188 +PE-benchmarks/magic-square.cpp__main = 0.932405 0.199131 0.650175 -1.381735 -0.501616 -0.447129 2.601335 -1.240526 -0.869661 1.374914 0.318657 -1.250322 -1.970529 1.057782 -0.112037 -1.031330 0.506125 -0.387973 -0.628681 -0.702754 -0.824466 0.409018 -0.285248 -1.625828 0.709763 -0.599748 0.577974 2.442832 0.392524 0.398003 0.389111 -0.835205 0.925432 2.625818 0.639415 -0.049303 -1.192298 3.562892 -2.396604 2.510962 -2.288443 -1.976007 4.400550 -0.394301 -0.734311 -3.453224 -1.237698 1.482145 -0.774304 -1.307780 -0.633568 -0.048879 0.613746 -2.240561 -1.126067 3.064561 -2.589077 0.545080 1.090869 -2.226910 -2.400284 -0.549409 0.138985 0.549317 -1.987283 -1.860517 -0.069454 -1.275331 -0.771832 0.766219 -2.131102 -1.495775 2.328554 0.601669 -0.368628 0.477743 -0.992811 -0.770073 0.931863 0.117866 -1.093377 -1.358410 0.481834 -0.081958 0.629552 0.764356 1.830740 -3.494108 -0.889092 -3.161121 1.171769 -2.485018 1.596897 2.055959 -0.142614 3.066225 0.078942 -0.560619 -0.305711 -0.100284 1.367233 0.532089 2.323206 0.439639 1.694249 1.897875 -1.418103 -2.846556 -1.935149 -0.772699 0.779857 -0.368174 -3.330424 1.160435 -1.872733 -0.264687 0.068643 0.022950 -0.527596 2.271925 -1.800784 1.573256 1.144806 -0.706718 1.312887 2.033025 0.181097 0.210775 -0.474297 1.165145 0.515538 1.867178 -0.108524 1.969206 -0.901669 -2.559107 -0.476983 0.323128 0.855569 -1.674055 -2.246055 -2.629783 -0.951189 1.404723 -1.307862 0.363288 4.042420 -0.922025 -1.834746 1.324789 0.801558 1.002796 0.710662 0.760347 4.051255 -1.923656 0.405510 0.041095 0.313638 1.686148 3.867654 -0.977440 -2.299515 1.938140 -0.809448 -2.172843 2.573554 -0.329721 -0.022918 1.511485 -0.069748 -0.418678 -2.156032 2.958188 -0.846179 3.461468 -1.573743 3.034855 -1.273863 -0.873086 0.602612 -1.251036 -0.857944 -2.644398 0.582710 -0.229308 1.618170 -1.589023 -1.691503 -1.386508 -0.914288 -0.272414 2.824289 -2.235023 -0.423856 -0.174039 -0.610373 1.425700 0.685342 -1.117033 -0.288980 -2.596897 0.937354 1.151357 0.848413 -3.583733 -0.959552 -0.276405 -0.970251 -0.154215 0.263317 1.553657 -0.843113 0.171838 1.398852 -0.285029 -0.675220 -0.495972 -2.543458 0.917643 0.376369 0.607786 0.199084 3.172414 2.613894 1.249386 -0.318322 0.930315 -0.286811 -0.902750 -2.463452 0.920226 0.140256 0.360625 1.154498 1.663171 0.686362 0.989582 2.141103 0.150332 -0.058415 1.868260 1.077027 2.907186 -1.244447 -1.357753 1.116538 -0.314118 1.882973 2.127398 1.237043 -2.174363 1.293612 -0.855940 -1.703920 -1.500462 -0.541084 -0.147049 -0.770953 3.628365 1.717775 -0.599799 -0.542276 3.834947 -0.248908 -4.791243 1.725534 1.082666 1.208764 1.383021 -0.962676 1.348793 2.551818 0.916534 0.323825 1.112828 1.414588 -2.474765 -0.108094 0.295893 1.086722 1.626570 -0.145754 -6.434471 -0.579792 0.887655 3.021456 0.007574 3.621454 -1.318386 0.976870 0.315682 0.513084 0.446199 -0.264095 1.132878 -0.988863 0.195289 -3.451132 0.937702 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 1.751233 -0.738922 2.493069 -3.981696 -3.613869 -0.284232 0.285921 -2.820706 -1.407343 3.921406 0.535069 -3.013799 -3.370760 5.562157 -1.850744 -4.361828 -0.049697 -1.188000 -0.088486 -1.147831 -1.907398 2.707367 -1.470142 -1.685277 2.487388 -1.225981 0.135683 3.181365 2.434282 -0.682007 -0.627422 -2.461846 0.152852 7.283635 1.660557 -0.159765 -0.281775 10.306074 -2.312967 5.931395 -6.304676 -6.069769 6.913071 -1.049023 0.187821 -4.375388 -2.134318 3.963572 -6.278840 -0.052613 1.635536 -0.002922 0.431225 -3.573542 0.336499 4.031576 -9.010623 5.607672 2.763640 -2.055269 -3.075489 -2.258509 -1.439921 -0.042538 -2.020235 -4.037120 0.253537 1.449014 -3.745937 0.787340 -2.882528 -3.332615 6.158063 1.796607 -2.384855 1.951803 0.516144 -2.155292 3.357580 -5.169783 -5.771088 -2.783079 1.186010 -1.624856 5.098106 2.464299 3.426587 -9.602588 1.901564 -9.245335 3.153832 -5.405442 3.922698 7.494169 -4.970701 5.145299 2.043536 1.093502 2.702721 0.429458 5.145709 2.176719 1.341128 2.537575 3.045931 3.630881 -2.811557 -4.216338 -3.344390 -3.458095 -0.728491 -1.558689 -7.621274 2.212351 -2.792378 3.474117 -0.319863 1.211023 -2.163016 2.817235 -8.472425 -1.556404 1.336784 -1.704830 4.056104 3.997859 -0.915055 0.421531 -2.342555 5.390824 -1.689562 2.191465 -1.364713 4.867228 -1.060778 -5.319110 -6.496353 0.331590 2.451903 -4.060075 -6.760206 -7.374467 -2.223416 1.312910 -2.945053 6.479698 10.498288 -3.464729 -5.078174 6.584199 -1.634043 3.113141 5.858226 1.846562 6.119247 -2.742698 -0.902636 -1.435416 -1.279194 1.157587 1.160359 0.124112 -4.045954 4.022748 0.014714 -0.709743 2.740314 -0.020646 -2.502211 -4.556806 0.516560 -3.245329 -3.451001 7.079543 -3.698059 5.338224 -1.961173 8.850447 -2.965098 -4.994988 2.196102 -6.182412 -0.337892 -3.426383 -0.602047 -0.363392 2.992616 -6.591768 -4.349446 -1.315833 -0.763303 -2.644146 4.204609 0.907732 -0.486128 0.867462 1.201755 7.040199 5.159728 -1.417863 1.027027 -5.992003 2.288041 3.042924 -0.253920 -7.917142 0.036475 -0.660544 -2.114177 2.574445 0.372626 2.394763 -3.180959 -1.470247 1.099157 -0.290397 2.049390 1.081512 -4.866911 1.967592 -0.132877 1.590483 3.724355 5.766441 5.887232 4.444102 1.841936 2.128314 -0.820921 -1.601177 0.312257 1.241135 1.927454 1.842170 2.990178 4.811851 4.244409 1.694323 3.680933 3.654310 -1.535731 5.804405 1.464197 8.325274 -3.369025 -1.286290 0.830187 0.011629 5.460971 7.431731 -3.889295 -1.292006 4.266665 0.338625 -0.981701 -4.278082 0.164052 -1.802365 -1.212988 3.298987 2.049633 -1.552690 -0.943801 8.248193 -1.611158 -9.038244 5.462177 2.482209 3.600498 1.086320 0.181268 -0.012274 3.687662 -3.878389 3.227905 3.703700 3.846064 -5.038466 -0.398199 0.242248 3.964643 3.710259 3.081723 -7.288581 -0.083498 3.368177 5.981520 2.254065 3.310059 -2.791743 -3.550517 1.024518 -1.970217 -0.460923 0.198825 2.277116 -1.864996 1.620513 -2.898261 -3.728370 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 1.393720 -0.808544 2.125088 -3.683679 -1.608834 -0.504876 3.652332 -2.492470 -1.658879 5.357638 0.567698 -2.475392 -2.299624 4.283994 0.059188 -2.035288 0.955217 -2.377004 -0.725032 -0.079632 -1.732365 2.134494 -1.286451 -2.499581 2.027303 -0.414895 1.035422 3.631162 -1.201985 0.275570 0.426651 -2.535931 0.471158 6.198475 1.850515 0.189537 -2.020785 7.946745 -5.678397 7.582068 -5.261452 -5.249809 7.410951 -1.083379 -0.217308 -4.334491 -1.047818 4.058206 -1.506046 -3.592969 0.426597 0.133637 1.538649 -4.272380 -1.475627 4.013349 -5.789389 1.294510 2.924494 -3.275354 -4.437836 -1.762592 0.090229 1.180106 -5.248562 -3.695026 0.016672 -1.883699 -1.901384 0.288956 -3.656474 -3.236256 2.895325 1.888201 -1.148215 1.218503 -1.178628 -2.340605 3.074264 -1.433257 -4.084285 -2.900086 -0.549047 -3.561000 3.175036 1.658103 3.958506 -7.978908 1.688405 -7.584948 2.385597 -4.139239 2.933920 6.057739 -1.432485 4.930924 0.903973 2.859835 0.612043 -1.320526 3.130770 2.224107 2.358193 2.238051 4.329765 4.586555 -4.392579 -5.661578 -4.120319 -2.458915 1.868853 -2.527295 -4.722780 2.604293 -2.430840 -0.232969 0.173016 0.365186 -2.532493 4.458706 -7.103088 1.184704 1.723873 -1.447718 2.456636 3.337558 -0.254034 0.009375 -1.283351 3.346481 -0.537886 3.157643 -0.375875 4.792287 -2.450551 -1.378443 -1.218063 0.944583 2.006212 -3.516030 -5.195943 -8.119411 -1.812070 2.637741 -3.100716 4.885149 8.217512 -2.932485 -4.256091 4.309930 -0.281666 1.109787 1.746486 1.430432 5.321783 -2.777045 -0.818805 -0.953619 -0.924283 2.293128 7.154453 -0.590398 -4.117822 4.610843 -2.235922 -2.255584 4.606710 0.609249 -1.348174 -1.830182 0.579914 -2.659146 -3.570058 5.785584 -5.096680 4.381648 -2.881047 6.774190 -2.059049 -1.315973 1.775667 -6.475428 -1.281232 -5.759676 -0.761619 -0.329196 2.971332 -4.410528 -3.440010 -2.272610 -1.011047 -1.929889 4.923926 -4.971285 -0.629728 0.376052 0.230122 5.846622 2.695348 -1.927359 -0.632123 -4.136841 2.218079 2.460927 0.867788 -5.879204 -1.754108 -0.868325 -2.384743 1.157500 0.431965 3.100444 -3.831324 -0.079029 3.108111 0.050891 -1.066761 0.273718 -7.408349 1.748828 1.384333 2.067493 3.014151 6.247316 3.660266 3.843321 0.510858 2.225388 -1.626571 -0.806364 -5.411527 1.214503 0.472677 1.180428 3.027777 3.850473 3.314805 2.208281 3.991635 2.166749 -0.747155 4.781275 0.857166 5.352736 -1.047528 -1.769637 2.518913 0.521326 4.048303 4.352618 -0.227605 -2.861632 3.632288 -1.890193 -3.711790 -1.209243 0.140746 -1.344690 0.072089 3.529494 2.961681 -1.002392 -0.865710 7.899093 -1.816842 -9.187657 3.241733 2.386532 4.022241 3.282007 -0.647780 3.203988 2.947774 -0.505831 3.466904 3.401893 2.881386 -4.892934 0.890768 0.776821 2.281246 5.453596 1.506134 -10.165639 -0.683512 0.625494 5.526098 0.468828 6.046133 -2.896343 0.948976 1.049321 -0.711134 0.928685 -0.532748 2.846053 -0.399996 0.730611 -6.510531 0.417623 +PE-benchmarks/channel-assignment.cpp__main = 0.285354 -0.433780 0.758132 -1.588115 -0.936334 -0.008010 0.749963 -0.846661 -0.501294 -0.086556 0.526376 -0.826191 -1.529809 1.215795 -0.002090 -1.590496 0.384056 -0.400536 -0.239753 -0.154105 -0.539446 0.574505 -0.449663 -0.718733 0.755123 -0.364269 0.026816 1.859101 1.417117 -0.149944 -0.316523 -0.667344 0.009886 2.499573 0.641312 -0.071964 0.080541 3.560125 -0.963016 1.719175 -1.518064 -1.338920 2.768901 -0.453636 -0.969183 -2.065793 -1.205434 1.219308 -2.615182 -0.230388 0.698066 -0.142988 0.568217 -1.242769 -0.150110 2.121121 -2.974690 1.316249 0.977407 -0.471182 -0.851234 -0.859315 -0.587675 -0.282333 -0.823402 -1.348831 0.231475 -0.445120 -0.971536 0.122258 -1.219023 -1.202782 2.861631 0.751979 -0.582928 0.633218 0.123673 -1.304840 0.987272 -0.154441 -1.813897 -0.957621 0.063560 -0.514932 2.256032 -0.195795 0.729598 -3.111027 -0.324935 -3.170654 0.717337 -2.219141 1.262843 2.455462 -1.994124 1.784275 0.479013 0.035419 -0.171350 -0.253166 1.747842 0.443948 0.570966 0.689688 1.550083 0.762996 -0.894190 -1.589699 -1.233102 -1.009059 -0.093852 -0.871491 -3.473320 0.731178 -1.266977 0.368423 -0.078411 0.317965 -0.713532 1.190603 -1.408562 0.757618 0.499522 -0.648195 1.107307 1.882025 -0.257805 -0.045868 -0.714451 1.805532 -0.303241 1.256846 -0.805007 1.503773 0.249234 -2.018124 -1.533468 -0.057475 0.874086 -1.134979 -2.469227 -1.928648 -0.733178 0.092855 -0.805250 1.256141 3.362013 -0.978317 -1.734511 2.206748 0.076572 1.607252 1.558038 0.638889 2.235940 -0.932850 -0.237398 -0.717792 -0.519838 0.248374 0.275255 -0.310242 -1.271891 1.343642 -0.324923 -0.744769 2.170555 -0.181530 -0.731180 0.017418 -0.187973 -1.257383 -2.094882 2.860456 -0.094640 2.103484 -0.167351 2.885483 -0.705363 -1.720000 0.753567 -0.587809 0.001542 -1.803994 -0.424858 0.135072 0.649595 -1.673031 -1.725449 -0.843574 0.372767 -0.748673 1.650999 0.644262 -0.195629 0.223649 0.484060 0.875693 1.705010 -0.734127 0.263840 -2.034676 0.895806 1.208573 -0.106425 -2.372055 0.104401 -0.022345 -0.692586 0.787084 0.295071 1.030560 -1.016027 -0.593545 0.661219 0.078535 0.396482 0.508003 -3.093298 0.740337 0.278392 -0.186730 1.300918 2.011021 2.286696 1.154497 0.340291 0.754057 -0.033569 0.112009 -1.072794 -0.112463 0.130258 1.241926 0.945744 1.471437 1.366242 0.589710 1.191573 1.402392 0.005116 1.744189 1.459436 2.731876 0.165863 -1.041813 0.579372 -0.147346 1.830205 2.382123 -0.298912 -0.312601 1.371400 0.652913 -0.485453 -2.493954 -0.199084 -0.510502 -0.442909 1.865869 0.176833 -0.602144 -0.267074 3.043861 -0.548080 -3.251176 1.430548 0.955674 1.187041 0.404213 -0.027896 0.258081 1.435780 -1.216139 1.386100 1.025694 1.233638 -1.543679 0.143129 0.187357 0.938324 0.800640 0.857978 -2.581470 -0.286966 0.486017 2.333053 1.091170 1.448365 -0.640857 -0.597161 0.247886 -0.514583 0.128020 -0.195146 0.763023 -1.067774 0.150284 -1.807163 -0.938199 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 2.028574 -0.502889 2.563195 -3.110423 -1.665157 -0.693140 4.722943 -3.352572 -2.004388 7.145001 1.173916 -3.061471 -0.855631 4.335704 -0.049919 -1.154812 1.206163 -0.828156 -1.153638 -0.210140 -1.829389 2.031622 -1.452944 -3.658586 2.208870 -0.481366 1.868748 4.232435 -3.131647 1.895807 0.727124 -2.755752 1.431323 7.022470 2.082092 0.022690 -2.719144 7.929340 -7.755527 8.239817 -5.527305 -5.941560 8.891958 -1.109313 0.501026 -4.357899 -1.732919 4.551826 0.534344 -5.600684 -0.502756 -0.067992 2.447926 -5.436630 -2.347412 4.524737 -5.441125 -0.354431 3.526730 -5.170023 -6.461340 -1.603678 0.738689 1.804224 -7.195502 -4.429821 -0.163569 -1.713586 -0.497469 0.609860 -4.505213 -4.875275 3.354837 1.069060 -1.198246 1.204585 -1.865885 -3.259553 3.667753 0.683987 -4.022763 -3.497335 -0.542468 -4.022461 2.391588 2.034683 5.636710 -9.029669 2.004573 -8.420861 3.347866 -4.293318 3.522126 6.415187 -1.738127 5.359106 1.162854 5.069554 0.392771 -0.766946 3.430933 2.711814 2.900567 1.817180 4.904626 5.886808 -5.516697 -7.324035 -5.214799 -2.954112 3.368757 -2.836977 -5.439945 2.966147 -2.937362 -0.749666 -0.142053 -0.510758 -1.872766 7.195925 -8.076315 2.499934 2.979573 -1.547830 2.284470 3.352885 -0.134137 0.245528 -1.325754 3.189552 -0.403043 2.555828 0.119841 5.542291 -4.525072 -1.736009 -0.116582 1.622816 2.116559 -4.492579 -5.613400 -9.735075 -1.592549 4.488094 -3.569649 3.729787 8.920149 -3.274726 -4.644822 3.846821 1.054134 -0.742082 1.494660 1.865434 6.907458 -4.149094 -0.277502 -1.087008 -0.606789 3.549187 9.353785 -1.340542 -5.167754 5.781647 -2.804492 -4.462774 8.251504 0.394106 -0.884409 -0.416247 1.226620 -2.014643 -3.058393 6.540067 -5.600560 4.752990 -4.377441 7.702550 -2.753905 -0.737470 1.513784 -7.201545 -2.330866 -6.667058 -0.156937 -0.161771 4.549206 -4.523046 -3.841950 -2.136536 -2.121493 -1.328231 6.335279 -6.981139 -0.729693 0.170054 -0.982756 5.432606 1.950257 -2.218904 -1.328375 -4.093234 2.038930 2.787674 0.930477 -6.948759 -2.933435 -1.954416 -2.527923 -0.851319 0.611590 4.249115 -4.606182 0.352459 3.892943 -0.640396 -2.295614 -0.661580 -7.584891 2.270342 1.031719 3.098197 2.425499 7.613179 4.517979 4.714569 0.253668 2.436620 -1.639833 -1.767178 -7.757194 2.631923 0.468368 1.322443 3.413494 4.458661 3.105589 2.844789 3.943760 0.836052 0.820273 5.746245 1.150027 5.685732 -1.410101 -1.199174 3.186422 0.733830 4.874150 4.388110 1.215609 -4.239334 3.133076 -3.088497 -5.360545 -0.123750 -0.092043 -0.739219 -0.431092 3.657893 4.296970 -0.967975 -1.453567 9.120148 -1.549822 -10.597805 3.489358 2.426246 4.448282 5.010361 -1.528020 5.000355 3.225059 2.395244 3.829735 3.724110 3.719374 -6.397387 0.497547 0.922624 2.715444 6.957941 1.203704 -13.178787 0.195011 0.428714 5.904034 -0.999002 7.608839 -4.176519 3.066037 0.790283 -0.418233 1.323800 -0.828271 3.345595 -0.210267 0.724096 -9.032117 1.656557 +PE-benchmarks/longest-palindrome-substring.cpp__main = 1.838992 -0.768584 1.668395 -4.042173 -2.262993 -1.331615 1.047671 -1.305689 -1.763392 3.827866 1.292818 -4.364614 -3.984005 3.987462 -0.015132 -2.891769 1.573899 -1.364153 0.735900 -0.367316 -0.651172 1.121526 0.405842 -2.829674 1.350978 0.295848 -1.842746 3.345123 4.818712 -0.647869 0.292033 -1.014220 2.065810 5.183725 0.305108 -3.137902 -1.618051 7.241982 -3.280495 4.022218 -3.442560 -2.916355 7.674117 -0.971609 -0.466696 -5.437509 -2.507119 4.535006 -2.962821 -3.716929 -0.364882 1.452959 1.754606 -5.018714 -4.079738 5.110339 -7.241024 3.130603 3.022032 -1.723949 -1.687523 0.664243 -0.600798 1.648389 -2.054346 -3.682297 -0.935716 -2.842020 -2.989902 -0.919119 -3.316578 -1.023867 4.839286 1.120575 -0.800197 2.061271 0.202262 -1.924003 3.406192 -2.538646 -3.816862 -1.893724 -1.775801 -1.574880 4.170278 0.023294 2.541816 -6.437415 1.189246 -6.901954 2.763772 -5.365963 1.697382 6.024165 -3.029173 4.166773 0.891118 -0.198656 2.188606 0.119537 4.758339 2.275999 2.462637 2.308799 3.278387 3.714614 -2.544718 -3.293844 -3.137573 -2.497368 0.274627 -1.391579 -5.977648 3.560866 -2.127736 -0.211857 2.144381 -0.947661 -1.808169 3.700472 -3.445731 0.288201 1.531993 -1.257727 0.725626 4.694535 -0.461207 -1.206242 -1.581448 4.398257 0.437916 2.868827 3.421045 4.276683 -0.672691 -5.570905 -0.920414 1.660217 0.950280 -3.602431 -4.334972 -6.686224 0.428253 -0.977197 -2.752475 2.905062 7.860443 -0.968382 -2.738736 4.517660 0.254773 1.227338 3.369173 0.667128 7.577366 -2.287096 -2.508444 -0.087074 -2.093169 2.464641 4.627907 -0.519246 -2.727134 3.465608 -1.301101 -2.796869 1.309209 0.455546 -0.700850 1.095758 -0.092006 -2.824045 -4.836641 4.396406 -1.440382 3.911528 -0.397499 6.940731 1.783434 -3.347592 3.335789 -1.083063 -0.958472 -2.718043 -0.313896 1.044927 0.684815 -3.562637 -3.153991 -2.653335 0.586217 -2.440542 5.024108 -2.517991 1.121161 2.217200 0.002956 2.898989 1.360365 -2.735343 1.036414 -5.238128 1.404007 2.114610 -0.129586 -6.611637 -1.193492 -1.500908 -0.477654 2.856410 -0.661034 3.965987 -2.788943 -1.721769 3.036374 -0.033798 -0.519212 -0.457441 -4.499019 1.544895 1.259716 2.565631 2.874424 6.929599 3.412969 3.215918 -0.827794 4.117497 -1.448349 1.104584 -3.868411 -0.327489 -1.311914 0.874044 2.780146 2.142473 2.093461 3.122659 4.860348 1.833596 -2.299277 4.825108 0.196450 3.802471 -0.424168 -2.645508 2.499841 -0.540567 4.790567 5.196103 0.286158 -4.274429 3.327982 -1.999813 -2.204706 -3.042811 0.154990 -0.259802 -0.408327 4.375734 2.682616 0.662544 -0.407869 4.535243 -0.936055 -8.705133 5.051103 2.301785 2.946585 3.069484 -0.195236 2.686927 2.088880 -0.688374 0.673490 3.820643 2.546300 -5.078167 0.853108 1.539934 3.614746 1.950305 2.726873 -10.239939 -1.583890 1.434217 3.268327 0.576542 4.438151 -3.370335 -2.390270 2.154731 1.144638 0.056239 -2.570427 0.710687 -3.373283 0.227018 -1.899777 1.283719 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.390165 0.223083 0.676250 -0.833585 -0.428796 -0.335244 1.281322 -0.626444 -0.434291 1.501422 0.173431 -0.729349 -0.961467 0.900208 -0.195133 -0.562377 0.074856 -0.684719 -0.461692 -0.362574 -0.370034 0.507823 -0.164248 -0.813667 0.631760 -0.166872 0.316633 1.139138 -0.221208 -0.013037 0.381747 -0.500429 0.561109 1.561933 0.212289 0.112930 -0.625808 1.775657 -1.636507 1.627509 -1.723231 -1.552274 2.340632 -0.228467 -0.084356 -1.833485 -0.215692 1.095342 -0.384757 -0.938731 -0.255678 0.154073 0.265010 -1.417715 -0.539522 1.382146 -1.752738 0.561821 0.654297 -1.322840 -1.552596 -0.216506 0.141953 0.223441 -1.022643 -1.115966 -0.179651 -0.594459 -0.651890 0.389321 -0.882028 -0.745813 0.982156 0.147376 -0.192872 0.482802 -0.494353 -0.445518 0.823112 -0.467502 -0.623132 -0.847384 0.303711 -0.395598 0.456701 0.541858 0.792675 -2.101250 -0.091514 -1.711652 0.824017 -1.038809 0.794508 1.189331 -0.257864 1.537362 0.073643 -0.006248 0.061096 -0.178535 0.833588 0.357845 1.311351 0.510574 0.922178 1.215041 -1.165934 -1.672733 -1.197584 -0.729652 0.592892 -0.426410 -1.559455 0.561962 -0.769467 -0.182522 0.347887 -0.306570 -0.280575 1.428821 -1.884799 0.509951 0.707800 -0.309556 0.539512 0.915113 0.098229 -0.065408 -0.195287 0.784608 0.061752 0.830545 0.122374 1.178640 -0.432502 -1.103354 -0.140845 0.160113 0.266477 -0.863837 -1.164108 -2.008041 -0.384773 0.717844 -0.801570 0.602850 2.150181 -0.547434 -1.414048 0.928305 0.225109 0.158707 0.302548 0.416402 1.824202 -0.956584 -0.104458 -0.122186 -0.079480 1.151147 2.342056 -0.342378 -1.326118 1.156942 -0.394974 -1.231557 0.939347 -0.065171 -0.041406 0.176774 0.122432 -0.636203 -0.796891 1.278624 -0.760210 1.682449 -1.085159 1.753255 -0.807715 -0.622400 0.345663 -1.698785 -0.435963 -1.333338 -0.129684 -0.018063 0.759965 -1.164120 -0.829168 -0.777333 -0.414632 -0.358834 1.602499 -1.973450 -0.103171 -0.148014 -0.184997 1.183647 0.356066 -0.774304 -0.109794 -1.221278 0.471322 0.678770 0.684742 -2.147408 -0.466038 -0.298771 -0.584214 0.423576 0.009571 0.892215 -0.453566 0.175407 1.012084 -0.371406 -0.577678 -0.397050 -1.292776 0.345418 0.087597 0.700676 0.349799 1.867201 1.228112 0.767653 -0.221562 0.758166 -0.221307 -0.615084 -1.352262 0.419341 0.032995 0.146265 0.822485 1.037598 0.671309 0.557721 1.261321 0.461603 -0.379075 1.345988 0.220744 1.388385 -0.843663 -0.443332 0.669294 0.168521 0.996959 1.074471 0.180617 -1.146720 0.884132 -0.387523 -0.877916 -0.282724 -0.250815 -0.297769 -0.224376 1.568115 1.019155 -0.456956 -0.082689 2.208544 -0.270393 -2.459241 1.076473 0.545010 0.870508 0.492474 -0.416559 0.663649 1.148580 0.214979 0.234264 0.693802 0.853156 -1.606432 -0.132717 0.188195 0.855669 1.330195 0.197014 -3.401515 -0.519271 0.263313 1.657844 -0.167527 1.946335 -0.800195 0.198481 0.192248 0.210951 0.174519 -0.076833 0.606625 -0.323475 0.101560 -1.852320 0.479135 +PE-benchmarks/egg-dropping-puzzle.cpp__main = 1.295766 0.244649 0.809308 -1.465411 -0.294424 -0.574251 2.540267 -1.668812 -1.108496 2.906460 0.570258 -1.677954 -0.976452 1.612218 -0.241332 -0.687315 0.806300 -0.016764 -0.914896 -0.656436 -0.949598 0.302038 -0.368794 -2.492443 0.841765 -0.488007 0.994017 2.177834 -1.064980 0.908632 0.222581 -0.930816 1.340088 3.296004 0.860601 -0.305065 -1.567961 3.439956 -3.485106 3.322179 -2.817984 -2.446646 4.797506 -0.473918 0.129301 -3.238918 -1.277438 1.889197 0.457265 -2.234899 -1.074672 -0.240436 0.903394 -3.057410 -1.616767 3.190141 -2.397879 0.229350 1.544960 -2.738717 -3.278686 -0.642701 0.716405 0.710043 -2.920066 -2.365496 -0.084903 -0.777991 -0.553963 0.858028 -2.900557 -2.369004 1.895324 0.424883 -0.317951 0.498836 -1.543679 -1.389305 1.237222 0.620679 -1.226809 -1.666741 0.536725 -0.522596 0.612700 1.103470 2.548613 -4.284623 -0.178606 -3.981136 1.472203 -2.365090 1.974582 2.547688 -0.354033 2.722317 0.015384 1.064607 -0.405802 0.229242 1.502933 0.969732 1.889637 0.067609 2.342076 2.606832 -2.025423 -3.718351 -1.742487 -0.920940 1.187050 -0.642424 -3.221533 1.486121 -2.413417 -0.596217 -0.109216 -0.211329 -0.620492 3.316689 -3.125121 0.837642 1.524981 -0.834062 1.532798 1.815192 0.199411 0.271220 -0.636349 1.117660 0.820402 1.104276 -0.040480 2.426053 -1.862857 -2.407931 -0.184700 0.616099 1.091759 -2.217323 -2.800413 -3.729176 -0.956346 2.078386 -1.629204 1.088628 4.060272 -1.094744 -2.255508 1.235004 0.684399 0.062418 0.971834 0.960601 4.635315 -2.750564 0.926973 0.216860 0.529935 2.119826 4.156555 -1.591816 -2.938151 2.402556 -1.157340 -2.565874 3.524497 -0.132452 0.300595 1.255956 0.222293 -0.344539 -1.730158 3.160105 -2.156128 3.158315 -2.251204 3.626737 -1.827496 -0.713610 0.707026 -2.459420 -1.210011 -2.515419 0.625234 -0.385597 2.489036 -1.808349 -2.063888 -0.771748 -1.238183 -0.052776 3.924139 -2.943799 -0.625519 -0.378126 -1.156660 1.979187 0.427031 -1.631878 -0.284123 -2.228221 0.990058 1.705169 0.833748 -4.147752 -1.373354 -0.763555 -1.126742 -0.835191 0.397376 2.105574 -1.559689 0.130635 2.071868 -0.439498 -1.077005 -0.991578 -2.224618 1.205698 0.109918 0.966018 0.367416 4.234814 2.362125 1.738214 -0.607024 0.604145 -0.473940 -1.584767 -3.587958 1.383263 -0.021652 0.572418 1.457388 2.008416 0.570595 1.231749 2.181579 -0.313829 0.355618 2.453751 0.968730 2.530026 -1.270120 -0.682488 1.559803 -0.615404 2.341396 2.417898 0.803140 -2.978692 1.306346 -1.473707 -2.450982 -0.667861 -0.723942 -0.016145 -1.171797 2.834922 2.409603 -0.613414 -0.850479 4.787975 -0.255238 -5.319186 1.996854 1.232623 1.565587 2.374339 -1.444346 2.294426 2.120363 2.100059 0.535230 1.379331 1.843448 -3.189538 -0.179929 0.394967 1.362198 2.588307 -0.479752 -6.885036 0.030779 0.843500 3.511321 -0.327787 3.691795 -1.839197 1.958163 0.029723 0.664164 0.813555 -0.627632 1.673339 -1.062682 0.043604 -4.054336 1.560832 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 5.454864 0.585167 1.711367 -3.909632 0.117268 -1.795193 10.627842 -5.817611 -4.898814 12.963171 1.260915 -5.342363 -3.954921 3.863817 0.646284 -1.732099 3.579255 0.671871 -2.705643 -1.926838 -4.866322 0.693777 -1.715902 -8.722139 3.223345 -1.380073 3.325155 7.523114 -5.172717 4.701011 1.213924 -3.594794 4.118573 11.380233 3.559179 -1.921928 -6.110870 12.569293 -14.272238 12.444313 -8.167618 -8.900380 17.203375 -1.500647 0.990330 -8.662838 -2.424318 7.110628 3.546132 -9.590265 -3.785732 -0.955484 3.693708 -10.501157 -6.223295 11.459762 -7.208477 -1.149690 5.665930 -10.332693 -12.997297 -2.136472 2.915502 3.196377 -12.291942 -8.517926 -0.348870 -4.082166 -0.639666 2.305381 -12.001257 -8.558647 3.648115 2.255397 -0.918818 1.136575 -6.241359 -3.536257 3.857179 4.436611 -4.670937 -5.862891 0.740072 -3.313229 1.297636 4.893088 10.295567 -14.950537 0.651900 -14.346768 4.741893 -7.760179 7.323731 9.751783 1.392521 9.955672 0.193905 5.061298 -2.661695 -1.023647 4.946159 2.914593 5.873619 0.707172 7.772463 10.306813 -8.740970 -14.072079 -6.891501 -1.838322 5.317290 -1.861907 -8.350299 5.861647 -9.230900 -2.183995 0.366365 -0.190036 -3.534818 11.763781 -11.719574 3.143730 4.690644 -3.073344 6.812878 6.041993 1.086038 1.209381 -1.602133 3.552300 3.293862 4.066387 -0.183481 9.106045 -6.931143 -5.032680 1.017977 2.842694 4.868516 -8.271704 -9.424916 -13.750872 -3.295923 8.313143 -6.215351 4.726537 14.774793 -4.501556 -5.860707 3.812622 -0.939775 0.550348 2.106783 3.208070 16.326955 -9.913540 3.412766 1.720019 2.478913 7.467586 17.289261 -5.382292 -10.373100 8.871589 -4.109905 -4.375787 11.591219 -0.049534 0.872200 4.104758 1.190106 0.605676 -5.772373 10.922663 -11.082384 9.509121 -7.451880 12.267227 -5.388107 -0.118371 2.774220 -9.317086 -4.985436 -10.645578 2.332901 -2.150857 8.399685 -5.874664 -6.746110 -3.155874 -4.232942 -0.336699 14.049510 -11.129736 -2.438231 -1.131261 -4.369254 8.163811 0.804829 -5.093275 -2.785180 -7.928300 3.451059 4.523835 1.364302 -12.887092 -5.986636 -2.285363 -4.293803 -2.718114 1.228549 7.549636 -6.422372 1.073906 7.889716 -0.203164 -4.427836 -2.946596 -8.358245 4.640937 2.348534 3.192895 2.012304 15.460502 7.023505 6.731790 -1.997558 2.590986 -1.945720 -4.482543 -15.323067 5.517242 -0.852211 3.440773 5.273536 5.611842 1.673594 4.776091 6.729104 -3.221109 1.998467 8.221667 3.123223 8.694582 -4.160560 -2.924516 6.560659 -2.408340 7.489763 6.420468 2.543640 -11.305710 4.519304 -7.470936 -10.444740 0.180160 -1.490374 -0.205773 -3.293089 8.609933 9.418544 -1.456860 -3.682132 17.292831 -1.857100 -20.354950 6.431259 4.657853 6.130389 10.907872 -4.642210 10.247787 6.645228 9.066650 2.483574 5.738786 6.215031 -11.436660 2.494096 1.536111 4.031424 9.001605 -3.093336 -26.321944 -0.713317 1.967520 12.081275 -0.961708 14.002697 -6.518711 8.916417 0.443559 1.770492 3.809691 -2.827650 7.135563 -2.055254 1.142615 -16.019180 7.736302 +PE-benchmarks/palindrome-partitioning.cpp__main = 1.751740 0.091580 0.737225 -1.528479 -0.501331 -0.142493 2.428408 -2.373399 -1.563014 3.827356 0.701464 -1.822948 -1.224821 1.471046 -0.065148 -0.818472 0.962655 0.266323 -0.838640 -0.688660 -1.579327 0.218653 -0.820062 -2.847445 0.874784 -0.479378 1.261523 2.223199 -1.043571 1.359414 -0.092966 -1.354978 1.194006 4.243770 1.577707 -0.466008 -1.733200 4.558829 -3.398809 3.598311 -2.824059 -3.320669 5.535322 -0.608588 0.441922 -2.282776 -0.579264 2.591031 0.373140 -2.917691 -0.959782 -0.610706 1.209069 -3.353940 -2.118535 3.242138 -2.645545 0.281513 2.010299 -3.083928 -4.240460 -1.076465 1.126799 1.123236 -3.652325 -2.781683 0.159752 -0.678322 -0.592793 0.576606 -3.855815 -3.209625 1.980908 0.737550 -0.618921 0.285772 -1.894347 -1.347798 1.448241 1.301280 -2.175170 -1.869499 0.234945 -1.344132 1.099060 1.597851 3.307532 -5.442106 0.550902 -5.400348 1.643193 -2.393923 2.695561 3.503909 -0.749670 3.011742 0.472172 2.258097 -0.449777 -0.141304 2.110545 0.749258 1.491086 0.356208 2.797584 3.043176 -2.603713 -4.226762 -2.178698 -1.306255 1.511775 -0.677690 -3.100338 1.978793 -3.222585 -0.248197 -0.436585 0.248818 -1.264247 3.383249 -4.575095 0.140844 1.349101 -1.045393 2.796183 1.976103 0.061581 0.867957 -0.510133 1.671758 0.577212 0.797989 -0.261829 3.150319 -1.760146 -1.689188 -0.825329 1.233769 2.099118 -2.880806 -3.705019 -4.741692 -1.283545 2.392256 -2.058392 2.012492 5.278933 -1.686663 -2.143761 1.849036 -0.634197 0.360258 1.848424 1.122554 5.439559 -3.391693 1.162284 0.538565 0.528385 2.033473 3.979460 -1.790013 -3.275242 2.970793 -1.257366 -0.797037 3.801339 0.036878 -0.210960 0.534083 0.479517 -0.349195 -2.181876 3.768124 -3.105647 3.082644 -1.825887 4.645747 -2.125932 -0.545297 1.063971 -2.747475 -1.578713 -3.031523 0.572182 -0.860535 3.137741 -2.428269 -2.494594 -0.622644 -1.072483 -0.373945 4.475096 -2.160478 -0.668157 0.002909 -1.216500 2.365798 0.962851 -1.597167 -0.786852 -2.700627 1.049253 1.967430 0.449428 -3.654383 -2.064540 -1.323641 -1.421786 -0.499220 0.459696 2.699714 -2.150449 0.047927 2.240456 0.061056 -0.625513 -0.494300 -3.036644 1.718164 0.435783 0.856692 0.963683 5.223477 2.550437 2.741418 -0.124957 0.726088 -0.495104 -1.334839 -4.233048 1.388563 0.023524 1.696547 1.915213 2.000304 1.107331 1.871250 2.257293 -0.721581 0.631242 3.293299 0.988623 3.610315 -1.752915 -0.546976 1.738246 -0.672624 2.936078 2.897785 0.193559 -3.350814 1.499996 -2.142171 -3.074617 -0.635733 -0.416204 -0.167289 -0.822185 2.110193 3.017965 -0.178645 -1.516539 5.949555 -0.666623 -6.674345 2.622991 1.443329 2.254870 3.602619 -1.604004 2.994816 2.168827 2.211089 1.404897 2.303019 2.327265 -3.799582 0.779753 0.426023 1.999683 2.279526 -0.601184 -7.405667 0.471109 0.768315 3.867273 0.231796 3.633260 -2.545543 2.238344 0.202907 -0.004983 1.221092 -0.637524 2.740722 -0.566047 0.212543 -5.124519 1.684386 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 7.230462 0.614713 3.308138 -5.528619 -0.777145 -1.661577 14.373881 -10.136737 -7.370691 20.307330 2.710454 -8.028456 -4.679730 5.577866 0.735863 -1.222441 5.086065 2.640106 -3.994441 -2.994296 -7.171271 0.848243 -3.400621 -13.390579 4.202414 -1.976966 6.542140 10.489826 -8.153360 8.449836 1.503580 -6.287329 6.232201 17.887346 6.566489 -1.663273 -9.768594 18.297220 -19.394487 18.046247 -11.867030 -14.820939 25.597919 -2.502396 3.095162 -10.056771 -1.959761 11.502618 5.934341 -16.203457 -5.935639 -2.157826 6.573359 -15.947391 -10.354339 14.125633 -8.739063 -2.882295 9.117020 -16.438823 -20.893673 -3.975858 5.542579 6.069331 -19.796232 -12.196260 -0.312016 -5.202549 -0.440818 2.705845 -17.711700 -14.077329 4.936900 2.485923 -2.020133 1.179219 -9.504153 -5.615291 6.238010 8.920115 -8.018767 -8.793433 0.279905 -7.143475 1.995564 7.771793 16.349779 -23.135656 2.169161 -22.363909 7.608214 -9.585339 11.474994 14.675987 -0.031718 14.187927 1.515022 11.515305 -3.350376 -1.376171 7.683430 4.064172 8.076568 1.408001 12.848873 15.430366 -13.516240 -21.167818 -11.103847 -4.617497 9.241541 -3.699251 -10.515544 8.770387 -13.961982 -3.698956 -1.286084 -0.079386 -5.625471 17.417931 -20.094287 3.528132 7.284320 -4.528997 10.993153 7.656166 1.051073 3.362707 -1.302119 5.659167 3.183200 3.966529 0.014994 14.446209 -10.016047 -4.633842 1.074552 5.775825 8.314539 -12.606573 -14.784752 -22.233025 -5.454183 13.020160 -9.224001 6.160421 22.118283 -7.178038 -8.395542 5.935361 -2.447034 -0.654666 4.320663 5.166973 23.739171 -15.363498 5.326639 2.503257 2.999121 11.110283 25.397582 -8.182972 -15.642113 14.087775 -6.971930 -5.513249 18.046925 -0.001527 0.402026 3.035036 2.942860 -0.305058 -8.126635 15.796975 -17.350611 13.053885 -11.091084 18.883369 -8.966982 0.567773 3.915433 -14.126240 -8.178325 -15.500224 3.500276 -3.690488 14.359705 -9.538727 -10.386729 -3.754936 -5.957824 -0.522945 20.535751 -16.653275 -3.574055 -0.744611 -6.620756 10.441861 1.317174 -7.144446 -5.239507 -10.648732 4.295018 7.346188 2.984422 -16.137362 -10.502715 -5.896776 -6.770595 -4.851282 2.165047 12.338865 -9.706789 1.808407 11.426321 -0.471570 -6.153027 -3.749500 -13.887208 7.622559 3.145464 5.114311 3.334887 23.592989 10.344342 11.750958 -1.872659 4.026684 -2.917764 -6.562097 -23.402561 8.316113 -0.502431 5.892822 8.320907 8.422048 4.121942 8.584791 9.819830 -5.607404 3.820195 13.976023 3.617928 13.725411 -6.943817 -2.589896 9.562299 -2.279380 11.822074 9.747771 4.818531 -16.965107 6.122369 -12.222690 -16.240627 1.188418 -1.807063 -0.048377 -3.235129 10.125902 15.025819 -0.983279 -6.520235 26.050712 -3.154237 -30.201302 10.067660 6.203143 10.458607 17.896315 -7.678194 16.039805 9.499082 14.140899 6.166846 9.607527 9.621255 -17.507173 3.777552 2.166416 7.451771 13.864402 -4.373722 -37.747727 1.257280 1.496695 16.648765 -1.608085 19.318972 -11.530364 13.949298 0.612290 0.783184 6.069335 -3.844126 12.278579 -0.676038 0.709739 -26.085802 11.005114 +PE-benchmarks/dfa-based-division.cpp__main = 0.428123 0.231619 0.886210 -1.329920 -0.544781 -0.493882 1.299462 -0.847156 -0.452963 1.386450 0.324373 -1.078329 -0.999858 1.131878 -0.334408 -0.931059 0.209652 -0.719240 -0.668678 -0.565531 -0.330132 0.418816 -0.138997 -1.305379 0.666323 -0.368255 0.548924 1.456195 0.000924 -0.173132 0.294638 -0.567568 0.882091 2.147015 0.312358 0.074208 -0.758878 2.152995 -1.271813 1.692098 -2.094156 -1.671398 2.817949 -0.370989 -0.148660 -2.416619 -0.593306 1.253499 -0.718599 -0.819711 -0.436907 0.120245 0.409092 -1.979673 -0.803179 1.846838 -2.032804 0.942506 0.866862 -1.415983 -1.622945 -0.423888 0.118523 0.260552 -0.954030 -1.436599 -0.096933 -0.471172 -0.994313 0.670800 -1.103795 -1.020012 1.862189 0.240017 -0.255948 0.640954 -0.626694 -0.879335 0.946516 -0.563040 -0.746732 -1.120721 0.587526 -0.119551 0.810752 0.351658 0.894155 -2.638897 -0.397112 -2.209328 1.009013 -1.472394 1.091597 1.500591 -0.746297 1.802078 -0.084887 -0.138601 -0.075356 0.015483 1.094459 0.498615 1.577334 0.325482 1.277672 1.190665 -1.048295 -2.017172 -0.989139 -0.895489 0.405865 -0.544893 -2.273310 0.764329 -1.116805 -0.143411 0.191149 -0.338939 -0.319481 1.667391 -1.949011 0.183488 0.973475 -0.491715 0.690014 1.154705 0.045028 -0.013772 -0.345025 1.020511 0.336980 0.849325 0.001578 1.474280 -0.487810 -1.907538 -0.530716 0.107632 0.428208 -1.073719 -1.796842 -2.029631 -0.683384 0.667569 -0.917306 0.731218 2.479040 -0.491304 -1.911022 1.166007 0.620409 0.272517 0.704051 0.615227 2.297073 -1.387723 0.176955 -0.220850 0.045577 1.404532 2.274872 -0.760776 -1.795768 1.451771 -0.647035 -1.699492 1.211423 -0.011711 0.116628 0.424926 -0.058516 -0.939103 -1.199420 1.779079 -0.483927 2.330167 -1.245177 2.416532 -1.232245 -1.189324 0.417834 -1.325729 -0.450123 -1.252375 0.032619 0.184043 1.152195 -1.415239 -1.365370 -0.615168 -0.477542 -0.242302 2.123028 -1.663695 -0.286658 -0.296447 -0.305538 1.387222 0.545933 -1.202514 0.134213 -1.441262 0.692357 1.083881 0.996039 -2.598296 -0.498887 -0.280865 -0.755736 0.234527 0.179614 1.177379 -0.525953 -0.001898 1.252435 -0.484698 -0.573216 -0.589623 -1.628201 0.564072 -0.042436 0.490050 0.279177 2.339778 1.652990 0.792647 -0.394446 0.463547 -0.331922 -0.958831 -1.402044 0.404534 0.098687 0.109418 0.951248 1.424533 0.730857 0.595719 1.702225 0.741450 -0.499627 1.640039 0.380226 1.612723 -0.962709 -0.426803 0.788118 -0.090952 1.497832 1.729501 0.161956 -1.566981 1.145745 -0.122413 -0.789551 -1.012525 -0.635002 -0.237522 -0.351546 1.952826 1.106458 -0.771334 -0.105249 2.682112 -0.139100 -2.779111 1.443061 0.780617 0.962296 0.470239 -0.785275 0.628129 1.498157 0.218238 0.214647 0.647096 1.088482 -1.829384 -0.483676 0.234850 1.069178 1.284070 0.294591 -3.466291 -0.543211 0.572065 2.131953 0.072264 2.075799 -0.958527 0.250950 0.126829 0.444639 0.227316 -0.176057 0.576694 -0.957876 -0.052093 -1.804273 0.369174 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.969142 0.207487 1.041185 -1.830052 -1.046242 -0.409470 1.848376 -1.577633 -0.818309 2.459158 0.757314 -1.384588 -0.413502 1.972516 -0.358840 -0.973898 0.544415 -0.613653 -0.642090 -0.523099 -0.478057 0.977655 -0.447470 -1.664979 0.950911 -0.541744 0.434099 1.823500 -0.808747 0.068186 0.169153 -0.970772 0.909357 3.120748 0.615603 -0.279086 -1.122903 3.480877 -2.637778 2.648785 -2.842696 -2.307972 3.914521 -0.547747 0.135784 -3.274138 -1.611554 1.624897 0.494060 -1.662293 -0.424262 -0.154396 0.810765 -2.405629 -0.883678 2.385130 -2.573902 0.511526 1.536732 -2.313015 -2.396898 -0.563944 0.238228 0.319056 -2.144078 -2.097938 0.061131 -0.249933 -0.422397 0.639100 -1.819580 -2.246214 2.326896 0.564026 -0.390584 0.760360 -0.818863 -1.957170 1.562130 -0.168421 -1.622480 -1.504474 0.468390 -0.711597 0.968012 0.456362 2.142170 -4.080335 0.171696 -3.710559 1.441685 -2.147747 1.726951 2.532387 -0.965747 2.275304 0.512624 1.000086 0.353975 0.316547 1.926281 1.092575 1.658904 0.613237 1.924403 2.187738 -1.687143 -2.788272 -1.691805 -1.421097 1.031862 -0.716215 -3.278844 1.349901 -1.479001 -0.693162 -0.132422 -0.494235 -0.146513 3.403773 -2.884570 0.388559 1.674881 -0.778973 0.755107 1.784819 0.035139 -0.052300 -1.073464 1.470196 -0.062211 1.324499 -0.102521 2.295900 -1.801851 -2.597998 -0.692229 0.294460 0.606035 -2.258077 -2.584412 -3.281845 -0.668567 1.342662 -1.552891 1.235590 4.009080 -1.493085 -2.718253 1.907286 1.584561 -0.373658 1.023860 0.899778 3.702014 -2.009917 0.088737 -0.565288 -0.212434 1.672714 2.917203 -0.809068 -2.242386 2.087060 -0.969330 -3.311021 3.774006 -0.212915 -0.288624 1.105074 0.388293 -0.857665 -1.518676 2.720744 -0.691443 3.033518 -1.776739 3.589533 -1.471503 -1.135444 0.563622 -1.956965 -0.957731 -2.162479 0.295570 0.100413 2.017327 -1.588988 -1.864400 -0.648369 -1.338302 -0.495020 2.871937 -2.441470 -0.076783 0.022958 -0.615897 1.589606 1.216841 -1.075701 0.003422 -2.005300 1.113580 1.607544 0.757837 -3.873451 -1.017067 -0.796831 -0.919141 -0.555633 0.202705 2.037736 -1.275013 -0.076258 1.485883 -0.566861 -0.711265 -0.594012 -2.164531 1.011463 -0.328212 1.171154 0.274896 3.349165 2.446111 1.855494 -0.043415 0.625705 -0.376701 -1.153192 -2.456975 0.988147 0.257075 0.359171 1.470630 2.291577 1.246311 1.257601 2.117435 0.458603 0.543569 2.535144 0.451858 2.892412 -1.115902 -0.525915 0.984604 -0.025340 2.437325 2.796604 0.846489 -2.080725 1.289760 -0.648242 -1.960587 -1.158548 -0.291840 -0.115487 -0.852988 2.160274 1.868774 -0.690059 -0.691625 4.068469 -0.208043 -4.466314 2.079024 1.041797 1.631976 1.448361 -0.717241 1.642323 1.948098 0.833932 0.893408 1.456590 1.936776 -2.960339 -0.811906 0.316996 1.484011 2.153071 0.721934 -5.508853 0.426543 0.939817 2.898891 -0.494742 3.199541 -1.732233 0.796834 0.450983 0.446779 0.220331 0.009267 1.129498 -1.355328 0.143288 -3.189379 0.635723 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.158899 0.124157 0.451834 -0.678373 -0.302450 -0.237708 0.549730 -0.434728 -0.194844 0.160085 0.300842 -0.561817 -0.529978 0.678722 -0.266706 -0.516607 0.120355 -0.115681 -0.395787 -0.288053 -0.082075 0.140605 -0.039636 -0.704399 0.310401 -0.195403 0.251184 0.794205 0.226105 -0.125217 0.000000 -0.206078 0.498484 1.078795 0.107417 0.105212 -0.301768 1.117176 -0.547398 0.744971 -1.122766 -0.701043 1.480006 -0.198202 -0.189216 -1.559549 -0.708073 0.549991 -0.601800 -0.290698 -0.227207 -0.008548 0.138644 -0.995693 -0.332769 1.090140 -1.162471 0.585192 0.447554 -0.643550 -0.700246 -0.214802 0.034247 -0.069482 -0.303172 -0.706071 -0.040729 -0.114217 -0.519594 0.374615 -0.557115 -0.615552 1.299466 0.012995 -0.122520 0.363826 -0.268816 -0.559858 0.450801 -0.206687 -0.343819 -0.535921 0.439491 0.233176 0.480208 0.112903 0.362259 -1.375707 -0.463790 -1.182226 0.527577 -0.910096 0.579794 0.692652 -0.680881 0.870411 -0.001311 -0.262603 -0.041956 0.325352 0.616307 0.245385 0.741768 -0.006993 0.733852 0.445476 -0.330661 -0.962091 -0.436967 -0.541401 0.091629 -0.224893 -1.603947 0.318704 -0.671399 -0.054109 -0.054821 -0.126299 0.052524 0.775938 -0.713128 0.321978 0.575360 -0.253262 0.321165 0.753925 -0.001809 -0.025347 -0.296130 0.500373 0.147918 0.406681 -0.091606 0.656362 -0.121894 -1.532173 -0.424445 -0.041692 0.163403 -0.543378 -0.964268 -0.904173 -0.292314 0.303338 -0.411136 0.048884 1.283348 -0.232960 -1.042067 0.584643 0.675292 0.289913 0.549080 0.344588 1.436798 -0.770319 0.212903 -0.089833 0.020606 0.656123 0.571630 -0.481958 -0.908060 0.626202 -0.239943 -1.416617 1.045643 -0.158956 0.105413 0.534065 -0.045527 -0.484424 -0.736954 1.053008 0.216852 1.332776 -0.603801 1.238543 -0.719233 -0.798260 0.198462 -0.399376 -0.181873 -0.481877 0.054134 0.061883 0.648664 -0.697051 -0.752221 -0.275527 -0.247088 -0.040106 1.123583 -0.517329 -0.152722 -0.174253 -0.205669 0.216459 0.309310 -0.642592 0.260094 -0.823906 0.307590 0.708164 0.514442 -1.593339 -0.093434 -0.214342 -0.306624 -0.023283 0.129423 0.572706 -0.137073 -0.102852 0.553711 -0.361838 -0.166986 -0.361392 -0.597528 0.232369 -0.236235 0.160458 0.081149 1.200677 1.078653 0.380945 -0.228593 0.201741 -0.028520 -0.562926 -0.536474 0.157511 -0.003964 0.153733 0.439409 0.693686 0.329055 0.254122 0.820805 0.330210 -0.104511 0.858332 0.530977 0.935579 -0.386329 -0.254258 0.330391 -0.175072 0.845917 1.063249 0.174335 -0.675738 0.501017 0.139562 -0.289996 -0.880398 -0.413083 -0.029473 -0.552586 1.291361 0.468511 -0.367848 -0.093798 1.426812 0.000597 -1.398364 0.775475 0.326137 0.388902 0.121087 -0.410114 0.177366 0.870195 0.141338 0.003313 0.230801 0.659014 -0.941285 -0.499435 0.082216 0.589077 0.611056 0.116187 -1.695251 -0.042079 0.396266 1.153949 0.030402 0.841821 -0.452051 0.073584 -0.071153 0.240248 0.068230 -0.099846 0.254474 -0.612289 -0.228282 -0.903741 0.035094 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.350253 0.080834 0.512412 -0.920366 -0.201692 -0.293851 1.231504 -0.706272 -0.479621 1.001475 0.304071 -0.584461 -0.868740 0.753338 -0.145525 -0.581112 0.362069 -0.028178 -0.469176 -0.346849 -0.295841 0.284940 -0.170242 -1.010182 0.545918 -0.229177 0.432979 1.113053 -0.072340 0.118256 0.106803 -0.467666 0.537745 1.573186 0.233540 0.199920 -0.772098 1.718393 -1.354144 1.372564 -1.623358 -1.331243 2.284426 -0.271532 -0.106073 -2.126110 -0.651507 0.872393 -0.225073 -0.993017 -0.421879 -0.081672 0.371796 -1.483745 -0.591409 1.506078 -1.418574 0.205810 0.753053 -1.244418 -1.462095 -0.282649 0.386235 0.069339 -1.154242 -1.081387 -0.041871 -0.516140 -0.542561 0.423750 -1.112840 -1.048307 1.030187 0.174893 -0.176790 0.432938 -0.582860 -0.804278 0.644305 0.220652 -0.565334 -0.838364 0.370247 -0.180576 0.425578 0.335336 0.989173 -2.118822 -0.243148 -1.805692 0.679692 -1.157666 0.973556 1.157152 -0.485865 1.367705 0.110999 0.298514 -0.196597 -0.025659 0.864565 0.507686 1.045839 0.084351 1.201205 0.949823 -0.906848 -1.723755 -0.909126 -0.666912 0.515715 -0.552658 -1.946130 0.555029 -1.083577 -0.456583 -0.005997 -0.207417 -0.171467 1.383133 -1.585083 0.588448 0.805632 -0.386815 0.555184 1.051939 0.108585 -0.068984 -0.249484 0.659810 0.125699 0.707082 -0.078101 1.145816 -0.474890 -1.347516 -0.038479 0.022073 0.330561 -0.955748 -1.308731 -1.703988 -0.485586 0.790741 -0.664351 0.159056 2.041504 -0.537745 -1.363745 0.724635 0.335720 0.210472 0.473126 0.485573 2.098675 -1.194684 0.302019 -0.051326 0.159300 1.083146 1.616372 -0.622875 -1.354790 1.062335 -0.634411 -1.560750 1.505774 -0.246809 0.159463 0.504502 0.125826 -0.560665 -0.955571 1.458723 -0.790428 1.790205 -1.060814 1.607199 -0.938143 -0.563002 0.270042 -1.289621 -0.529706 -1.196171 0.076820 -0.171287 1.046799 -0.971632 -0.965682 -0.665962 -0.479623 -0.055952 1.788754 -1.590497 -0.242584 -0.244503 -0.352706 0.653857 0.277097 -0.806962 -0.026107 -1.095126 0.482769 0.933247 0.626075 -2.083894 -0.449800 -0.443585 -0.557879 -0.158218 0.136223 0.980727 -0.360016 -0.004583 0.939535 -0.296512 -0.529069 -0.538337 -1.277961 0.380923 -0.080687 0.373978 0.205822 1.973746 1.310960 0.769611 -0.356402 0.336450 0.002265 -0.797445 -1.584509 0.383877 -0.145843 0.352926 0.702615 0.816479 0.548911 0.563487 1.140606 0.190051 0.096712 1.315500 0.660573 1.348576 -0.453711 -0.513458 0.746271 -0.220959 1.033241 1.178255 0.586182 -0.995786 0.733553 -0.281709 -0.979284 -0.780457 -0.352665 -0.072548 -0.649032 1.666639 1.037566 -0.419100 -0.300386 2.276187 -0.161571 -2.529995 1.019559 0.446055 0.792899 0.825093 -0.534962 0.772328 1.134060 0.651368 0.252711 0.511658 0.896780 -1.529666 -0.201750 0.171589 0.803262 1.237006 -0.123691 -3.081804 0.063350 0.223993 1.760149 -0.043665 1.648046 -0.709583 0.731511 -0.040656 0.184890 0.267944 -0.256732 0.683402 -0.383934 -0.405581 -2.056320 0.602854 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.996134 0.033073 0.810203 -1.527190 -1.280053 0.075130 0.674393 -1.820794 -0.918354 2.133574 0.625371 -1.351934 -0.977039 1.747556 -0.528876 -1.198603 0.000214 -0.334821 -0.436800 -0.602240 -0.718255 0.758037 -0.613986 -1.385936 0.588336 -0.427510 0.517168 1.615313 0.250348 0.406453 -0.078185 -1.015904 0.516522 3.069066 1.114815 -0.157094 -0.678663 3.786407 -2.046277 2.341783 -2.688805 -2.681264 3.677286 -0.419642 -0.105951 -2.243299 -0.937954 1.774396 -1.149693 -1.123385 -0.112078 -0.344054 0.695007 -1.855433 -0.897104 2.036428 -3.046884 1.313032 1.273340 -1.867881 -2.347650 -0.759885 0.343923 0.617623 -1.888905 -1.942763 0.062981 0.086362 -0.816608 0.294421 -1.824608 -1.988761 2.568837 0.448767 -0.776484 0.328166 -0.738820 -1.185984 1.363712 -0.348321 -2.041877 -1.218035 0.223741 -0.998521 1.388645 0.906934 2.004894 -4.067820 0.633247 -3.994990 1.225203 -1.895012 1.661910 2.595537 -1.626769 2.038009 0.646539 1.327260 0.643521 -0.026212 1.816386 0.702126 1.095550 0.847559 1.754052 1.922897 -1.485290 -2.304591 -1.700268 -1.556027 0.667324 -0.809185 -3.613862 1.177839 -1.594606 0.346241 -0.347987 -0.015996 -0.641694 2.421016 -3.468278 0.116818 0.765279 -0.619153 1.543191 1.624020 -0.133552 0.501893 -0.598763 1.694144 -0.262647 0.887133 -0.155722 2.111978 -1.114799 -1.885704 -1.675836 0.836840 1.205586 -1.908783 -2.646229 -3.354871 -0.845225 1.201491 -1.356353 1.934952 4.210104 -1.476551 -2.374820 2.106634 -0.068022 0.190361 1.901618 0.734626 3.564071 -1.704797 -0.047318 -0.325001 -0.422899 1.045259 1.963577 -0.706133 -1.952053 1.987263 -0.644453 -1.280287 2.556747 -0.049484 -0.803259 -0.407980 0.280804 -0.987099 -1.523404 2.767285 -1.610176 2.459705 -1.154095 3.494517 -1.409369 -1.292729 0.758194 -2.516912 -0.842742 -1.836356 -0.033128 -0.308688 1.889887 -2.177214 -1.697737 -0.633912 -0.651458 -0.877379 2.746493 -0.906306 -0.101203 0.415319 -0.224016 2.183012 1.596099 -0.896025 -0.202937 -2.107982 0.946923 1.792699 0.304976 -3.313788 -1.039976 -0.955017 -0.847816 0.298669 0.179993 1.842544 -1.468780 -0.066213 0.965154 -0.161806 0.215570 0.141535 -2.523319 1.169320 -0.155910 0.932244 0.935267 3.233761 2.152792 2.112103 0.403670 0.963097 -0.234553 -0.915975 -1.520033 0.664519 0.663823 0.801993 1.459594 2.181649 1.327356 1.318601 1.849205 0.864051 0.171401 2.581727 0.481755 3.267991 -1.523748 -0.403511 0.566709 0.177433 2.251843 2.950733 -0.390820 -1.437850 1.212783 -0.724872 -1.378678 -1.347493 -0.118184 -0.410301 -0.418487 1.714866 1.796103 -0.214495 -0.815615 3.987576 -0.369734 -4.453322 2.244500 1.046946 1.532207 1.565824 -0.757607 1.083924 1.619689 0.164912 1.222910 1.967776 1.630072 -2.687491 -0.025192 0.273625 1.765422 1.681376 0.746737 -4.542594 0.426727 0.952915 2.838524 0.177928 2.408691 -1.799139 0.071236 0.549686 -0.172451 0.403006 -0.041574 1.378151 -0.814949 0.426669 -2.721805 -0.244138 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = 7.249841 -6.766733 8.385166 -14.916502 -9.032687 -2.106741 0.027931 -4.972013 -5.194440 8.813662 0.158925 -8.944506 -10.628006 13.421940 -3.914366 -13.339721 3.505478 -3.754159 4.007132 -0.796642 -3.776721 7.894636 0.106827 -6.350129 8.344197 -3.777884 -3.010031 13.331184 15.443845 -2.269090 2.115622 -7.363560 3.698927 22.275796 4.333210 -5.489698 -2.059359 31.785493 -1.867984 17.458093 -7.902848 -13.144640 25.098482 -3.121146 -3.400847 -12.413579 -8.368315 14.014866 -16.617104 -8.486554 3.752721 2.634487 6.065067 -13.454292 -9.047652 13.467681 -24.496405 9.231152 7.771282 -5.138885 -6.269552 -2.070296 -7.328959 2.939094 -7.230060 -13.531258 -1.518765 -2.241028 -12.702815 -3.012385 -6.336584 -2.854892 24.913103 5.746298 -5.234471 7.078473 5.686928 -7.119542 10.333789 -8.713189 -18.227041 -9.037915 -6.936212 -7.867756 19.497680 -0.807939 11.532910 -25.724666 8.916614 -26.148594 9.335853 -16.126297 8.601551 23.831123 -17.344430 18.250241 5.772352 8.308680 4.732769 -2.469586 20.078355 9.737577 0.829331 11.173326 12.660940 9.228095 -7.892009 -12.601601 -12.896635 -8.696659 1.051069 -9.904208 -27.784042 9.642217 -4.785292 6.945131 2.530869 2.041712 -9.298591 11.479395 -20.623980 1.031372 3.611398 -4.932523 3.140407 12.116608 -1.600290 -5.148096 -3.514205 18.983223 -3.919887 6.303482 6.552542 16.296904 -1.377885 -10.447173 -8.113747 2.239824 5.681088 -11.307118 -19.140830 -22.404216 -3.654216 0.968105 -10.235977 16.387235 32.021728 -5.904186 -10.333784 19.129494 -2.428969 6.156876 13.401280 5.211361 17.502922 -5.259850 -13.566934 -4.778721 -9.856428 7.646162 9.200857 1.481673 -8.122332 15.913681 -4.264076 -2.239757 7.898551 -1.560081 -5.988101 -3.999478 -2.348520 -11.714635 -15.398270 18.858095 -8.040750 13.673077 -2.551198 27.531913 5.462008 -15.716296 6.360059 -9.929492 -3.031218 -15.098824 1.562865 -0.010864 2.454253 -17.937950 -13.359299 -5.181631 1.794292 -9.756316 14.785486 -0.027680 3.142038 5.071581 3.852258 18.257840 11.085810 -6.129466 2.119361 -17.836342 6.345401 7.024261 -2.313214 -18.718765 -3.407158 -0.381835 -5.056436 8.937193 -2.211875 8.490385 -12.541211 -3.621468 4.589693 0.813431 -0.570552 3.475017 -23.218177 5.406723 8.983066 7.056010 13.593405 20.574719 18.395568 12.157509 0.528087 13.489231 -3.973038 2.936188 -12.015363 0.108455 0.806367 6.656755 9.328428 13.593287 12.723405 9.737425 15.458157 14.343580 -1.821502 17.219704 1.877290 21.128569 -0.563145 -10.981164 6.378692 2.143381 17.650321 20.596718 -2.778167 -5.044061 14.452381 -2.172260 -4.482223 -14.438375 6.013486 -2.877061 3.120200 12.644507 6.951076 1.567878 -0.856765 17.652489 -7.187174 -31.058171 15.664677 9.609513 11.219114 8.425674 1.415908 8.781466 6.783673 -8.095935 8.530048 12.753592 8.662997 -17.975101 7.147269 3.979523 10.293818 7.184277 12.957629 -25.295104 -4.787257 2.811635 14.679398 4.776607 12.448609 -9.686412 -10.862082 9.337498 -1.418447 -0.618814 -3.592070 3.408384 -9.240691 3.669327 -6.948835 -4.337193 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 1.629662 -1.710391 2.845980 -5.697970 -2.621366 -0.641348 5.119184 -3.894976 -2.340654 6.920259 0.987369 -3.647410 -4.375664 5.056071 0.505608 -3.800502 1.543228 -2.104620 -1.090230 -0.353557 -2.617928 2.608291 -1.717144 -4.287215 2.850941 -1.289065 1.726829 6.042439 0.339568 1.093691 0.742829 -3.774348 0.924029 9.504934 2.841388 0.641484 -2.989900 12.132946 -6.751626 10.607040 -7.123446 -7.774032 11.874487 -1.790832 -0.760048 -6.159914 -1.139562 5.979585 -3.096521 -5.527802 0.189278 0.068417 3.144287 -6.797845 -2.891987 6.138083 -7.768658 1.622911 4.148169 -5.639762 -7.026950 -2.802715 -0.425571 2.450415 -8.272339 -5.780587 -0.026754 -2.687690 -3.320811 0.242098 -5.617500 -4.731668 6.537846 2.761943 -2.103793 1.846104 -1.639433 -3.476924 4.229661 -0.074919 -6.243336 -4.343210 -0.697799 -4.614952 5.066252 1.881196 6.403083 -12.369505 1.718178 -11.810806 3.887732 -6.234750 4.934791 9.092973 -3.033632 7.822919 1.425770 4.558271 0.054035 -1.905818 5.215282 2.704555 3.783818 3.244018 6.677171 6.094091 -6.089737 -8.942965 -5.929829 -3.602773 2.738162 -3.843589 -8.823876 3.940617 -4.320378 0.303857 0.201520 0.886149 -3.868276 7.018022 -10.370496 2.031681 2.705077 -2.322235 4.229431 4.925826 -0.414686 0.261164 -1.093712 5.403472 -0.679168 4.224509 -0.604528 7.450283 -2.740713 -1.464217 -1.800944 1.613068 3.411341 -5.225220 -8.273532 -10.917861 -3.354916 4.370914 -4.351757 6.273538 12.646262 -4.102479 -6.071507 6.324352 -1.746266 2.220837 2.827240 2.446169 8.452560 -4.569890 -0.915761 -1.633914 -0.995044 3.922032 11.199489 -1.286871 -6.732599 6.991952 -3.489804 -2.569752 6.848100 0.352387 -1.868836 -2.656155 0.304628 -4.223261 -5.976455 8.954119 -7.758636 7.335239 -4.226887 10.744240 -3.190870 -2.479124 2.714101 -7.710733 -2.141973 -8.656570 -0.328315 -0.255400 4.357645 -6.723826 -5.700548 -3.174090 -1.248647 -2.477027 8.043622 -6.343228 -1.209698 0.609663 -0.035104 8.460159 3.881488 -2.944265 -1.841143 -6.381671 3.475567 3.692093 0.941780 -7.775827 -3.138885 -1.236710 -3.581133 1.623002 0.915376 5.089475 -5.134788 -0.241384 4.139763 0.346913 -1.431694 0.374877 -11.949986 2.885608 3.125391 2.516779 4.106415 9.791661 6.220326 5.615869 0.529198 3.481268 -1.994406 -0.992232 -8.517065 1.862321 0.684980 2.409993 4.468605 6.614855 4.942525 3.665420 6.537827 3.207795 -0.342413 7.308531 1.412869 8.642759 -1.948491 -3.228469 3.967904 0.650020 6.580053 7.195503 -0.020024 -4.284261 5.369231 -2.127850 -5.271523 -2.708481 -0.055129 -1.752415 0.531948 5.685739 4.382068 -1.137099 -1.639674 12.219212 -2.412281 -14.350011 5.233412 3.584711 6.242486 5.415396 -1.544873 4.847161 4.668760 -0.296205 5.208128 5.032686 3.980004 -7.683967 1.370841 1.243610 3.512109 6.969322 1.787150 -14.249659 -1.500770 0.734917 9.060999 1.407980 8.611260 -4.444047 1.632649 1.631609 -1.279491 1.677786 -1.308384 3.908117 -1.369357 0.808641 -10.254165 0.511421 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.823449 -0.187348 0.940889 -1.834807 -1.431146 -0.051870 0.388018 -1.630979 -0.637040 1.567142 0.604543 -1.488400 -0.984094 2.226003 -0.647049 -1.637458 0.062884 -0.264602 -0.378633 -0.546874 -0.580710 0.914370 -0.546641 -1.184848 0.732786 -0.564466 0.412974 1.645592 0.675070 0.009675 -0.256323 -0.948046 0.343639 3.167838 0.839638 0.113637 -0.494146 4.116020 -1.385797 2.600849 -2.926932 -2.478951 3.529482 -0.441862 -0.145509 -2.524058 -1.279010 1.671995 -1.662998 -0.689115 0.130760 -0.209173 0.406976 -1.840783 -0.473209 1.997593 -3.255594 1.652898 1.239333 -1.502413 -1.921743 -0.859263 0.000641 0.362189 -1.782005 -1.946016 0.184153 0.385468 -1.249522 0.469997 -1.622708 -1.941764 2.974841 0.635181 -0.883423 0.618918 -0.324433 -1.356191 1.436551 -0.913248 -2.195757 -1.228804 0.530767 -0.787634 1.751927 0.787859 1.976064 -4.301610 0.581542 -4.165570 1.346671 -2.306376 1.768457 2.911369 -2.055506 2.153664 0.679358 1.159539 0.907871 0.375398 2.096102 0.972377 0.894909 0.759245 1.891139 1.693784 -1.180385 -2.233747 -1.469914 -1.729367 0.224252 -0.840269 -4.194356 1.134374 -1.605711 0.690961 -0.423700 0.353513 -0.516042 2.172956 -3.520168 -0.195185 0.854544 -0.658072 1.493388 1.819618 -0.290885 0.371223 -0.921206 1.974250 -0.364847 0.904566 -0.367356 2.063504 -1.051711 -2.179988 -2.177427 0.420574 1.096888 -1.898040 -2.916672 -3.269761 -1.021899 1.101099 -1.322555 2.302617 4.375820 -1.468641 -2.572135 2.407035 0.091952 0.576010 2.270031 0.758278 3.554601 -1.697511 -0.006493 -0.515159 -0.325944 0.925048 1.163758 -0.521797 -1.972684 1.887139 -0.558715 -1.683440 2.719268 -0.175904 -0.781924 -0.718784 0.191219 -1.229137 -1.791348 3.117151 -1.423014 2.898915 -1.250431 3.784356 -1.534625 -1.776039 0.914696 -2.562099 -0.537350 -1.702492 0.019037 -0.381099 1.959246 -2.409173 -1.914252 -0.538377 -0.819632 -0.843468 2.524793 -0.241379 -0.144203 0.301348 -0.024368 2.407668 1.963392 -0.818836 0.137953 -2.446878 1.060752 1.936252 0.251002 -3.362363 -0.553049 -0.826594 -0.864235 0.182589 0.219709 1.581578 -1.513485 -0.429333 0.598375 -0.135485 0.552782 0.121498 -2.654993 1.060520 -0.270854 0.911360 1.079848 3.093665 2.613375 2.020312 0.529122 0.682071 -0.107506 -0.999735 -1.010181 0.649457 0.732338 0.801721 1.363414 2.482131 1.502204 1.095933 2.006068 1.200594 0.008793 2.647692 0.666778 3.622969 -1.436087 -0.478341 0.415159 -0.022674 2.492983 3.587802 -0.639479 -1.058276 1.468776 -0.072088 -1.176663 -2.018944 -0.304936 -0.464934 -0.755414 1.739739 1.217370 -0.456103 -0.657978 4.076926 -0.273724 -4.401075 2.313480 0.926486 1.435610 1.181702 -0.567269 0.616105 1.835424 -0.636989 1.236916 1.720865 1.699631 -2.568764 -0.352306 0.201382 1.802284 1.677775 0.904933 -3.843769 0.647838 1.322071 3.111145 0.520650 2.089203 -1.584305 -0.440709 0.467294 -0.416268 0.051333 0.023432 1.181965 -1.063793 0.302042 -2.396920 -1.011475 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 3.380419 0.073900 3.157231 -4.116421 -1.350887 -1.822756 9.336079 -6.125190 -3.733989 11.896861 2.368702 -5.616136 -2.955441 5.033449 0.410059 -1.592339 3.221103 0.188869 -2.334837 -1.457030 -3.262845 2.002098 -1.696794 -6.672847 3.546641 -0.602488 3.809842 8.014409 -4.329789 3.341747 1.441716 -3.258721 2.726704 10.435965 3.032341 0.635583 -5.595952 12.044240 -13.799544 12.866242 -9.662796 -8.353329 16.403446 -1.566664 0.972553 -9.649179 -2.115588 7.475409 1.475884 -9.580279 -2.389149 -0.564273 3.642713 -9.477069 -5.017732 9.129273 -7.079381 -1.199220 5.810137 -10.074685 -12.388682 -1.826663 2.322236 3.026941 -13.038345 -7.986655 -0.205237 -4.535032 -1.146731 2.320650 -10.085506 -7.455561 3.744535 0.711913 -0.923389 1.544727 -5.194621 -4.062386 4.702380 3.350944 -4.982749 -5.628373 0.851793 -4.782601 1.366309 3.905673 9.628416 -15.041433 0.528544 -13.752557 5.080559 -7.157492 6.455333 9.403676 -1.442669 9.584122 0.431006 6.372065 -0.643204 -0.046030 4.980718 3.566264 5.673732 1.349418 8.423983 9.357219 -8.165474 -13.398768 -7.794082 -3.756141 5.515443 -3.002664 -9.996308 5.382654 -8.054482 -2.342318 -0.311493 -0.311273 -1.611493 12.070943 -12.240108 4.729131 4.556940 -1.857352 4.769993 6.093117 0.542434 1.240538 -1.706510 3.873643 1.514952 4.513440 0.181100 8.849829 -6.645802 -4.163093 0.906437 2.011404 4.005757 -7.016944 -8.626889 -15.009157 -2.995293 6.674137 -5.812336 3.666416 13.434077 -4.793045 -7.124907 4.517486 0.345441 -1.357937 1.740898 2.332976 14.581782 -8.508871 1.660792 0.520238 1.102317 7.190070 16.670127 -4.154960 -9.842037 8.373302 -4.768360 -9.127837 12.828684 0.963422 0.168152 2.029074 1.444568 -1.121432 -5.990270 10.250401 -10.285592 9.947222 -8.884105 11.578190 -5.157925 -0.601678 2.915637 -10.871603 -3.463048 -10.396716 0.652438 -1.758903 8.461223 -6.238943 -6.181956 -4.164425 -4.303089 -0.775230 12.393756 -12.207937 -1.716111 -0.598277 -3.226727 6.774912 1.636505 -4.503273 -1.978290 -7.503441 3.445130 5.552485 3.368907 -11.724442 -5.231802 -3.991588 -4.412364 -3.427646 0.965681 7.622140 -6.208653 0.811642 6.654183 -0.195863 -3.752803 -1.953532 -11.442224 4.130074 1.473322 3.974428 2.958936 14.288036 6.590835 6.844657 -1.370158 2.824292 -1.306577 -4.263203 -14.469142 4.903147 0.053978 2.665686 4.868284 6.515758 4.032789 4.796404 6.334128 -1.683467 1.404939 9.509218 2.490235 8.973608 -4.605282 -1.732026 5.568773 0.050579 7.652053 6.526433 3.758356 -9.837711 3.915672 -5.386364 -10.027961 -0.444824 -2.029018 -0.504909 -2.633977 7.145684 7.095098 -1.321391 -2.822165 16.529256 -1.802447 -19.293995 6.294399 2.717119 5.991278 9.334212 -3.338010 8.048394 6.576415 5.724192 3.876918 5.447901 5.941151 -10.178105 0.881514 1.399246 4.744596 10.630944 -1.561066 -24.536827 1.077702 1.198964 11.908680 -1.189841 13.478761 -6.389674 7.552901 0.389423 0.181156 2.887543 -2.137627 6.376593 -0.419256 -0.580387 -16.979973 4.947433 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 0.911645 1.180012 1.002661 -1.742255 -2.756312 0.574632 -2.190847 -2.854300 -0.658178 1.623630 1.185441 -2.027585 -0.694420 2.197668 -2.197566 -1.961456 -1.218729 0.354847 -0.262692 -2.239524 0.006102 0.568630 -0.474005 -1.202875 -0.484028 -1.172972 0.640392 0.596034 1.717256 0.103258 -0.396127 -0.796880 1.108901 2.993571 1.488961 -0.279027 -0.504205 2.921934 0.664444 0.358946 -4.242371 -2.918262 2.553445 0.051793 0.762754 -3.515988 -1.753992 1.235387 -2.445718 1.198482 -0.426801 -0.929693 0.418080 -1.068244 -0.737231 1.297569 -3.185244 3.798635 0.736018 -2.286413 -1.318264 -0.326219 0.565431 1.063457 0.598153 -1.789272 -0.018186 2.785858 -1.334502 0.796063 -1.035214 -2.126330 3.516933 -0.164737 -1.427943 -0.172094 -0.731977 -0.843206 1.116758 -2.388243 -2.151872 -0.880576 1.513845 0.810718 0.604194 1.611163 1.642286 -3.899345 -0.047883 -4.141155 1.582448 -1.003340 1.860654 1.345159 -2.808427 0.848487 0.992288 -0.739710 2.598733 1.241812 1.825199 0.454795 1.199020 0.611797 0.955083 1.537361 0.280843 -0.799790 -0.269594 -2.450731 -0.534087 0.173264 -4.441587 0.766978 -1.728514 1.271216 -1.283128 -0.456633 0.347636 1.806310 -3.504004 -2.735590 0.552720 -0.427855 1.975218 1.067328 -0.095397 1.656826 -0.474676 1.776238 -0.643719 -0.277018 0.072546 1.665831 -0.612150 -4.829375 -4.889609 1.618418 1.404706 -1.928431 -2.593057 -2.175697 -1.079441 0.210014 -1.068780 1.776514 3.771020 -1.516591 -3.647341 2.105861 0.119947 -0.859695 4.032674 0.780572 4.301485 -1.937975 0.411388 -0.534087 -0.780454 0.907660 0.008498 -1.082830 -1.672224 1.428227 0.190629 -2.101855 -0.180949 -0.581948 -1.335013 -1.093372 0.300771 -0.862827 -0.357514 1.457855 -0.259758 2.601999 -1.368986 3.625911 -2.538177 -3.314265 0.347376 -2.758614 -1.028442 1.709815 0.681434 -0.192918 2.728954 -2.426705 -1.592567 0.380340 -1.358048 -0.893815 2.450394 1.086440 0.166971 0.983804 -0.464921 2.509585 2.453362 -0.421295 0.578638 -1.543207 0.806968 2.746690 1.288474 -4.652250 -1.077526 -1.892763 -0.353018 0.117203 0.028627 2.082113 -0.244777 -0.028406 -0.547026 -1.242627 2.106286 0.255333 0.703156 1.698459 -1.997976 1.215097 -0.294154 3.020831 2.146674 2.438424 1.021420 0.369580 0.363373 -2.524473 2.746117 0.690119 2.524499 -0.671502 1.343264 2.819457 0.933469 1.369052 2.370950 1.279965 -0.151198 2.582488 -0.985071 3.547301 -4.015579 1.451442 -1.157753 0.167201 2.407195 5.091960 -1.123758 -1.605920 0.626351 -0.249460 0.272410 -2.893476 -0.337756 -0.213714 -0.975034 1.661579 2.709614 0.000551 -1.345835 3.412511 0.873841 -2.825700 3.904235 0.766150 0.389062 0.203569 -1.568102 -0.971066 1.553346 -0.602182 -0.224634 2.458138 1.886175 -3.000599 -1.944940 -0.229624 2.882609 0.866466 1.177224 -2.772906 1.218514 2.979703 2.833911 0.060004 1.437931 -2.568088 -2.205560 0.934029 0.181879 -0.321582 0.765372 0.698558 -1.993902 0.680644 0.549949 -1.688192 +PE-benchmarks/union-find.cpp__main = 0.466304 -0.303912 1.789746 -2.704351 -2.084477 -0.277333 1.479240 -1.597962 -0.755273 1.355044 1.080158 -1.742837 -1.888586 2.212018 -0.362130 -2.216861 0.485255 -0.503515 -0.477367 -0.866901 -0.640170 1.151872 -0.607084 -1.580527 1.182197 -0.995852 0.231047 3.118637 1.007632 0.227830 0.209327 -1.245666 0.579619 4.213846 0.932480 -0.061841 -0.571877 5.335609 -2.300412 3.127773 -3.230802 -2.883988 4.920076 -0.660883 -0.669146 -3.717922 -2.137628 2.085787 -2.854635 -0.909650 0.453428 -0.071231 1.471652 -2.539159 -0.682931 3.057883 -4.362361 1.502518 1.587112 -2.446894 -2.163043 -0.819744 -0.928593 0.348988 -1.890896 -2.427248 0.038732 -0.217400 -0.965269 0.457974 -1.544852 -2.153818 4.350658 0.840894 -0.717565 1.125299 0.150297 -2.201950 2.009409 -0.384451 -2.820118 -1.890559 0.224135 -1.100980 2.753486 0.015867 2.292517 -5.152136 -0.205196 -5.128829 1.872510 -3.141410 1.908716 3.635868 -2.519615 3.128994 0.956859 0.354972 0.331087 -0.032373 2.712670 1.196694 1.844442 1.391507 2.628183 2.015113 -1.750000 -3.099873 -2.418937 -1.972255 0.412351 -1.687522 -5.232280 1.393262 -1.559834 0.204793 -0.075020 -0.180726 -0.591768 3.487088 -2.661193 1.362176 1.645964 -1.017552 0.974145 2.480914 -0.236260 -0.238724 -0.934477 2.698792 -0.716667 1.940170 -0.437799 2.862441 -0.590716 -3.392811 -1.992206 0.381661 0.987161 -2.191376 -3.694319 -3.527612 -1.076464 1.275791 -1.550028 1.720763 5.640760 -1.770361 -3.366867 3.161849 1.119226 0.793186 1.950047 1.334440 3.864593 -1.730494 -0.662100 -1.678162 -1.003946 1.405439 3.064843 -0.499036 -2.494073 2.952124 -0.696891 -2.776967 4.063617 -0.533532 -0.899197 0.416462 0.056989 -1.916582 -2.578275 4.010682 -0.361382 3.796096 -1.218942 4.852807 -1.432214 -2.801465 0.939157 -1.665686 -0.597394 -2.636230 0.032762 0.691918 1.506946 -2.605177 -2.785081 -1.495603 -0.634068 -1.032235 3.090003 -0.941279 -0.104482 0.496820 0.096564 1.991121 2.325957 -1.032828 0.056694 -2.998960 1.561846 1.728925 0.505099 -4.490771 -0.589387 -0.283395 -1.066317 0.427478 0.585548 2.370145 -1.477332 -0.341043 1.321494 -0.588503 -0.236287 0.157379 -4.340883 1.302219 0.448530 0.927848 1.304630 3.641314 3.869475 2.298545 0.283062 1.542841 -0.547093 -0.581204 -1.937085 0.471614 0.647647 0.840693 1.632886 3.136616 2.010369 1.361053 2.823133 2.173116 0.334247 3.104787 1.060600 4.110934 -0.670263 -1.232000 1.117281 0.286549 3.189085 3.929906 0.453562 -1.406276 2.081936 0.409839 -1.389476 -3.095527 -0.174868 -0.504676 -0.409450 3.295133 1.675130 -0.973225 -0.578958 4.741439 -0.340270 -5.508080 2.645590 1.517292 2.002355 1.049590 -0.511593 0.885367 2.290201 -0.693506 1.994565 1.924259 2.003180 -3.480168 -0.715147 0.541908 1.738508 2.277791 1.690231 -5.656469 -0.599852 0.901358 3.595059 0.433995 3.579476 -1.954115 -0.602354 0.690117 -0.466885 -0.093831 -0.082121 0.688187 -2.088349 0.658427 -3.107109 -0.887410 +PE-benchmarks/union-find.cpp__find(int*, int) = 0.721261 -0.156177 0.834523 -1.597058 -1.046506 -0.246389 1.362892 -1.523969 -0.754945 2.584207 0.755580 -1.328715 -0.229501 2.133049 -0.121033 -0.740913 0.336604 -0.343819 -0.562195 0.072309 -0.527019 1.024573 -0.561451 -1.434749 0.811911 -0.160361 0.458498 1.479842 -0.912827 0.277313 0.053894 -1.059077 0.540948 2.834332 0.750592 0.099220 -1.002003 3.107571 -2.784807 3.094374 -2.538806 -2.273228 3.413081 -0.499585 0.181290 -2.017572 -1.019297 1.757948 0.410508 -2.183436 -0.167227 -0.089253 0.877552 -2.123703 -0.757769 1.701330 -2.154214 0.162416 1.537726 -1.999675 -2.307658 -0.564128 0.282031 0.640515 -2.705359 -1.925342 -0.090177 -0.344433 -0.274362 0.104119 -1.569977 -2.174060 2.009607 0.414368 -0.612105 0.557711 -0.769152 -1.680114 1.604889 -0.078536 -1.722883 -1.279554 0.005306 -1.259872 1.018791 0.659573 2.288902 -3.751667 0.872822 -3.491248 1.382675 -1.643469 1.432548 2.554796 -1.057525 1.830668 0.575586 1.994545 0.626847 0.128294 1.601546 1.056140 1.086759 0.691813 1.910874 2.168932 -1.956972 -2.644830 -1.867529 -1.591901 1.299755 -1.081401 -2.744014 1.279515 -1.026806 -0.189933 -0.159127 -0.259336 -0.334819 3.048962 -3.154853 0.646690 1.315981 -0.607487 0.766148 1.577420 -0.103021 -0.009305 -0.819044 1.314175 -0.294124 1.030298 0.074902 2.211420 -1.885098 -1.112477 -0.319975 0.605924 0.694330 -2.015157 -2.243796 -3.726783 -0.482978 1.693326 -1.501711 1.555444 3.684369 -1.594975 -2.210335 1.789916 0.936951 -0.635451 0.821677 0.668767 3.034569 -1.697872 -0.152185 -0.528922 -0.445849 1.351762 3.163617 -0.482577 -2.144521 2.093248 -1.165724 -2.763236 3.681382 0.222235 -0.483609 0.085008 0.515607 -0.967439 -1.212211 2.482083 -1.797510 2.213822 -1.632859 3.192074 -1.199905 -0.523879 0.733644 -2.460236 -1.009222 -2.350406 -0.161864 0.161111 1.884858 -1.755628 -1.441341 -0.693208 -1.071776 -0.739663 2.564942 -2.453695 -0.132391 0.192904 -0.430449 2.055103 1.131706 -0.849046 -0.343922 -1.629308 1.024949 1.341378 0.313825 -2.908452 -1.170561 -1.053976 -0.887989 -0.306386 0.125234 1.885130 -1.647713 0.004597 1.352888 -0.343036 -0.620394 -0.326094 -2.572826 0.860959 0.013814 1.443251 0.800111 3.071713 1.818968 2.135209 0.235332 0.833054 -0.595564 -0.751663 -2.684009 0.948566 0.144163 0.446801 1.534971 2.062303 1.343508 1.301620 1.968223 0.478204 0.542489 2.577745 0.263059 2.577790 -0.606560 -0.472947 1.085447 0.252088 2.189808 2.315052 0.119939 -1.476102 1.185958 -0.954912 -2.091322 -0.248407 0.005799 -0.257423 -0.547366 1.465257 1.639575 -0.206762 -0.717661 3.623701 -0.499249 -4.100507 1.642494 0.849009 1.822240 1.820175 -0.567282 1.874124 1.274930 0.749512 1.412751 1.677150 1.669971 -2.637709 -0.369824 0.400006 1.292516 2.635943 0.844435 -4.722322 0.458263 0.494367 2.482888 -0.563325 2.671315 -1.793333 0.984172 0.454951 0.050209 0.451317 -0.375090 1.068716 -0.507305 0.091940 -3.332328 0.393699 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = 0.533452 0.146693 1.181156 -2.023044 -1.289855 -0.605785 1.882234 -1.569758 -0.745375 2.516168 0.949570 -1.653789 -0.650725 2.331818 -0.326009 -1.028315 0.289341 -0.505070 -0.914466 -0.338085 -0.414709 1.107959 -0.443872 -1.821842 1.033364 -0.370949 0.583228 2.056979 -0.586508 0.049880 0.346435 -1.074914 1.043613 3.229266 0.552950 0.183236 -1.251979 3.405348 -3.032231 3.061860 -3.212318 -2.561014 4.316883 -0.588952 -0.058912 -3.310377 -1.453838 1.952454 0.092961 -2.156556 -0.460846 0.085007 1.006020 -2.792639 -0.984162 2.345442 -2.671161 0.517512 1.698615 -2.563018 -2.643738 -0.503488 0.224243 0.620407 -2.601598 -2.243383 -0.203175 -0.558678 -0.566478 0.379892 -1.550113 -2.259601 2.813258 0.233769 -0.514661 0.920860 -0.952734 -1.966644 1.827329 -0.176884 -1.574796 -1.604764 0.523578 -0.828573 0.990907 0.550226 2.271885 -4.257471 0.091367 -3.738584 1.708349 -2.020674 1.628043 2.558092 -1.332601 2.413865 0.398987 1.201209 0.581305 0.302349 1.821946 1.097451 2.016801 0.687885 2.119981 2.366963 -1.999837 -3.149125 -2.106079 -1.882310 1.347383 -1.128885 -3.654978 1.397910 -1.285366 -0.601811 -0.016024 -0.664791 -0.092496 3.673149 -3.016043 1.004050 1.835867 -0.706872 0.574147 1.983208 0.002447 -0.185489 -0.844267 1.419885 -0.136800 1.394364 0.171956 2.494885 -1.728053 -2.316409 -0.345126 0.445543 0.481379 -2.169170 -2.488097 -3.848426 -0.577939 1.667409 -1.661556 0.982234 4.180096 -1.580668 -2.970740 1.915541 1.725889 -0.571097 0.801791 0.853702 3.764919 -2.051221 -0.079454 -0.698101 -0.420905 2.044620 4.028782 -0.734543 -2.668450 2.365020 -1.258414 -3.984566 3.900304 0.031636 -0.204301 0.804660 0.512898 -1.306041 -1.608862 2.775705 -1.061128 3.191081 -2.105020 3.671528 -1.680222 -1.164833 0.736318 -2.361409 -1.106079 -2.432293 -0.057251 0.463589 2.069174 -1.865816 -1.748242 -1.023049 -1.270363 -0.661690 3.096213 -3.131436 -0.164091 -0.070643 -0.623719 1.787435 1.112679 -1.284785 -0.141190 -2.023826 1.160052 1.677251 0.994466 -3.979643 -1.206522 -1.053733 -1.047109 -0.301702 0.151328 2.208877 -1.280420 0.093866 1.738262 -0.767381 -0.969600 -0.806087 -2.775830 0.914711 -0.255322 1.584465 0.484310 3.629186 2.512206 2.101061 -0.113409 1.036920 -0.591833 -1.247146 -2.778686 1.000780 0.088787 0.219578 1.754178 2.546056 1.454170 1.374033 2.649482 0.704936 0.269916 2.928426 0.354123 2.934376 -0.978845 -0.663034 1.249116 0.261519 2.537215 2.838434 0.753491 -2.079146 1.470243 -0.631312 -2.087641 -0.913982 -0.335714 -0.186497 -0.742118 2.593552 1.958345 -0.622035 -0.578061 4.194825 -0.370985 -4.618605 2.085971 0.952100 1.931755 1.426281 -0.868187 1.705225 1.918176 0.875023 1.052785 1.579114 1.946091 -3.180376 -0.974161 0.469893 1.655274 2.869195 0.876185 -5.905724 0.148861 0.702791 3.024999 -0.733054 3.386681 -1.966308 0.910685 0.424395 0.479036 0.387996 -0.353293 0.875249 -1.141720 -0.040642 -3.632964 0.599625 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.380066 -0.006895 0.347063 -0.925548 -0.588871 0.033074 0.082827 -0.621293 -0.213742 0.131150 0.375478 -0.567741 -0.479595 0.875980 -0.262974 -0.765421 0.093408 -0.438098 -0.244714 -0.118907 -0.186650 0.283171 -0.208207 -0.527993 0.240827 -0.139517 0.069306 0.645973 0.543936 -0.345227 -0.374449 -0.293532 0.160783 1.332370 0.356632 -0.134702 -0.026985 1.645011 -0.217270 0.695052 -1.106856 -0.748861 1.313634 -0.232884 -0.290649 -1.213865 -0.643428 0.662913 -0.827329 -0.115841 0.168010 -0.158565 0.106011 -0.737075 -0.222179 1.015887 -1.482287 0.926233 0.544369 -0.219007 -0.496859 -0.415303 0.052434 -0.015591 -0.278330 -0.786863 0.204614 0.110830 -0.650330 0.150745 -0.659294 -0.848761 1.576868 0.326683 -0.333101 0.248454 -0.151957 -0.791949 0.574513 -0.490057 -0.867507 -0.418362 0.245093 -0.072470 0.998613 -0.001745 0.424164 -1.685530 0.003080 -1.689214 0.401217 -1.043933 0.704912 1.127657 -1.027795 0.684840 0.182402 0.132405 0.270103 0.200558 0.942545 0.240241 0.358753 0.153310 0.769566 0.421810 -0.282962 -0.663827 -0.379895 -0.737703 -0.104511 -0.209884 -1.885843 0.486625 -0.702193 0.221520 -0.178831 0.126503 -0.180292 0.680378 -0.999445 -0.237468 0.287491 -0.301631 0.634687 0.974354 -0.161503 0.121032 -0.477936 0.859037 -0.023223 0.424362 -0.280366 0.729886 -0.133016 -1.347800 -1.044541 0.089813 0.500478 -0.743287 -1.313552 -1.073992 -0.336221 0.027346 -0.515918 0.879183 1.686422 -0.508588 -1.098375 1.080039 0.347672 0.458605 1.105064 0.246253 1.491415 -0.730565 0.105310 -0.147672 -0.144679 0.157792 -0.212245 -0.335119 -0.688626 0.592013 -0.202108 -0.764167 1.109347 0.025640 -0.300200 0.215078 -0.070669 -0.607931 -1.024926 1.309751 0.174405 1.207440 -0.067414 1.602900 -0.634025 -0.931464 0.443693 -0.287529 -0.067491 -0.530826 -0.142082 0.014200 0.683440 -0.852899 -0.827618 -0.119827 -0.079466 -0.380730 1.005427 0.429574 -0.020692 0.100144 0.043306 0.534114 0.928110 -0.488869 0.315983 -1.006857 0.462628 0.874504 0.088229 -1.319444 -0.114880 -0.322783 -0.292757 0.330348 0.079899 0.640772 -0.485479 -0.374713 0.352595 -0.028726 0.361428 0.088012 -1.046031 0.386367 -0.269718 0.098920 0.392877 1.224056 1.060816 0.735957 0.190954 0.082927 -0.011973 -0.243112 -0.258347 -0.093193 0.114916 0.493946 0.571443 0.863043 0.571059 0.382063 0.828723 0.599648 -0.084368 1.046565 0.490461 1.428806 -0.371188 -0.261151 0.113663 -0.231173 1.081603 1.574996 -0.411471 -0.368566 0.597165 0.262179 -0.263659 -1.217266 -0.198461 -0.201407 -0.382570 0.765233 0.298559 -0.192280 -0.261654 1.619035 -0.115769 -1.598427 0.945724 0.403226 0.537261 0.289993 -0.236444 0.144673 0.725192 -0.483919 0.443749 0.624435 0.769613 -0.866094 -0.274433 0.086591 0.753298 0.143928 0.431608 -1.165906 0.229979 0.575617 1.241367 0.453529 0.560726 -0.563122 -0.311088 0.154687 -0.029316 0.061231 0.003337 0.484445 -0.759367 -0.022460 -0.726758 -0.400775 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.356389 0.087370 0.834324 -1.633128 -0.819854 -0.444395 1.693652 -0.955844 -0.516877 1.488232 0.588550 -1.043252 -0.855915 1.529272 -0.105555 -0.792799 0.401935 -0.646273 -0.650598 -0.105661 -0.303174 0.778020 -0.298524 -1.099767 0.704775 -0.152162 0.375940 1.555029 -0.144754 -0.141290 0.084366 -0.744794 0.617999 2.249405 0.367507 0.084981 -0.899300 2.545373 -1.990961 2.287281 -2.223746 -1.541108 2.881101 -0.430411 -0.217287 -2.892087 -1.039328 1.377683 -0.030477 -1.524770 -0.156809 0.087810 0.616294 -1.876078 -0.598078 1.842099 -1.934425 0.334632 1.208360 -1.440049 -1.555080 -0.421415 0.185534 0.320425 -1.859387 -1.524226 -0.073664 -0.806958 -0.601648 0.346591 -1.207398 -1.497153 1.770672 0.401213 -0.458525 0.636940 -0.559193 -1.564733 1.233038 -0.166245 -1.100227 -1.048575 0.202524 -0.563669 0.956995 0.060656 1.302691 -2.948418 -0.087799 -2.599400 0.931393 -1.711206 1.085478 1.914756 -0.726779 1.728122 0.146807 0.547687 0.205067 -0.003710 1.261918 0.883346 1.540524 0.409534 1.663524 1.493083 -1.370809 -2.223743 -1.423720 -1.221764 0.805916 -0.824780 -2.664601 0.933725 -0.902882 -0.619621 0.082837 -0.327838 -0.234618 2.287774 -1.917345 0.746692 1.210432 -0.544271 0.406145 1.675787 -0.040015 -0.169720 -0.650803 1.111062 0.032720 1.348038 -0.010547 1.649093 -1.021624 -1.579713 -0.118974 0.122623 0.373840 -1.297058 -1.849126 -2.622837 -0.520870 0.835332 -1.092248 0.603069 2.903070 -0.981512 -2.014035 1.438550 1.099523 -0.039609 0.421101 0.520854 2.570286 -1.351613 -0.042054 -0.481134 -0.232195 1.184763 2.894500 -0.496230 -1.806334 1.545295 -1.080550 -2.841306 2.477915 -0.015375 -0.136402 0.724376 0.150599 -1.020983 -1.452255 2.118276 -0.893200 2.356862 -1.344705 2.444404 -0.998184 -0.779177 0.551737 -1.446969 -0.487851 -1.957445 -0.109427 0.334748 1.316910 -1.279403 -1.278667 -0.827610 -0.681454 -0.485299 2.096346 -2.365616 -0.211726 -0.103816 -0.152498 1.215672 0.836047 -0.970315 0.005370 -1.479199 0.933486 1.071556 0.712642 -2.658858 -0.647476 -0.609508 -0.796844 -0.107864 0.110139 1.357492 -0.824613 -0.121368 1.311084 -0.496706 -0.728372 -0.452048 -2.402540 0.570173 -0.069910 0.891131 0.392983 2.457650 1.766716 1.300372 -0.085881 0.591412 -0.316177 -0.642112 -2.247396 0.493393 -0.080189 0.120484 1.143315 1.557059 1.052202 0.810617 1.838721 0.625835 0.063529 1.908179 0.529111 1.979861 -0.279995 -0.756524 0.976224 -0.008189 1.627990 1.968427 0.783256 -1.263671 1.142678 -0.268719 -1.462460 -0.919919 -0.328153 -0.226523 -0.560541 2.042678 1.121568 -0.599659 -0.244593 2.948622 -0.389557 -3.289062 1.214284 0.671923 1.329270 1.014855 -0.478912 1.223569 1.414516 0.346025 0.850435 0.966696 1.232506 -1.978133 -0.669481 0.319763 0.906740 1.878202 0.502808 -4.184363 -0.156575 0.342591 2.322385 -0.234041 2.498676 -1.142209 0.693819 0.378416 0.333269 0.232013 -0.376504 0.767090 -0.797503 -0.301587 -2.674666 0.466578 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.092569 0.342035 3.206241 -4.594269 -5.316433 -0.748585 2.023088 -2.103443 -1.020666 2.337856 1.305119 -2.144861 -3.183210 4.847739 -1.459034 -3.727973 -0.920761 -2.239904 -0.828629 -1.804800 -0.670293 3.427120 -1.000176 -0.335139 2.029202 -1.605335 -0.566349 4.129233 2.128077 -1.445097 0.985502 -2.283714 0.412398 5.682230 0.662795 0.019489 -0.642874 9.376341 -3.100953 4.044212 -5.836649 -5.328879 6.234308 -1.175512 -0.920563 -7.133367 -3.469875 3.163087 -3.702227 -0.135900 1.663217 0.943922 1.071650 -2.709068 0.721003 3.146002 -7.424502 3.797765 2.348735 -3.540017 -2.211179 -1.202259 -2.309568 0.052310 -2.308179 -3.277906 -0.092976 0.374448 -1.882925 0.544602 -0.157802 -2.520641 6.860541 1.176432 -1.503330 2.392631 1.468811 -3.418496 3.811662 -3.185347 -5.207145 -2.410576 0.864907 -1.459602 4.103969 0.062265 2.911498 -7.954081 0.163729 -7.528931 2.537928 -4.879804 2.192370 5.709067 -3.963113 4.928606 2.160149 -0.014146 2.747474 -0.102296 4.504518 2.251840 3.566244 3.850380 2.711098 3.196872 -2.402146 -3.527514 -4.482625 -4.178699 0.621033 -2.079062 -8.272244 1.936899 -0.071151 -0.121267 0.051942 -0.364007 -0.263186 5.481948 -4.897860 1.636860 3.091756 -1.395564 0.365796 3.999756 -0.787016 -0.565065 -2.257043 4.506888 -2.643766 4.422939 -0.361537 4.046520 -0.796219 -5.412269 -4.409319 0.014243 0.390755 -3.009559 -4.652849 -5.261974 -1.333036 1.338856 -2.580546 2.731825 9.752629 -4.066631 -6.040122 6.156265 2.716681 1.018899 2.527778 1.781948 4.975087 -0.845311 -2.977980 -3.345495 -2.875853 1.924978 4.714037 1.283483 -3.030315 3.910526 -0.213010 -5.537021 5.254249 -1.461275 -2.803350 -0.544582 0.825562 -3.787596 -3.540468 5.496410 0.350657 6.150853 -1.739922 6.987288 -1.806277 -4.618442 1.148043 -3.801262 0.010659 -4.122289 -0.035329 1.568940 1.848147 -4.006976 -3.413285 -2.535478 -2.036610 -2.839726 2.676841 -2.348138 0.777419 1.285254 1.779063 3.660956 5.470026 -0.426416 0.214702 -5.063321 2.755215 2.092167 1.170387 -7.892412 -0.227626 -0.159860 -1.626754 1.446322 0.218239 2.737071 -1.122973 -0.299333 0.860704 -1.760473 -0.019234 0.924416 -5.984864 1.339278 -0.478718 3.195488 1.630236 4.027993 6.681332 4.181642 2.043143 3.332076 -0.636989 -0.843945 -0.264262 0.866450 1.815034 0.204124 2.932873 5.836403 4.570466 2.011363 5.091738 4.404071 -0.186352 5.024305 0.316618 8.357196 -2.461361 -2.184175 0.255870 2.185009 4.672246 7.233896 1.120810 -0.750697 3.612219 1.604461 -1.331640 -4.837474 0.437452 -1.245213 0.102246 5.196512 2.755685 -2.137679 0.087139 6.307264 -1.183623 -7.742209 4.082975 1.957450 3.462468 -0.091780 0.751744 -0.159204 4.030784 -3.140909 3.239977 3.731870 3.033620 -5.265858 -2.567556 0.676412 3.175086 3.354520 4.500717 -9.111315 -0.580586 2.196629 4.740845 -0.445309 5.285310 -3.037163 -3.462851 2.642040 -0.753579 -1.271289 1.506043 0.500039 -3.510568 1.497837 -3.217824 -3.272020 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 0.567593 -0.297144 2.365156 -4.889977 -5.342267 0.121337 1.884737 -2.927256 -1.186399 3.933996 1.612989 -1.823698 -2.166968 5.129683 -0.694901 -3.044113 -0.352568 -2.434060 -0.143261 -0.154521 -0.691863 3.711901 -1.537686 -0.255552 1.204104 -0.837328 -0.488094 3.128860 0.822375 -0.614472 -0.132469 -2.878501 -0.483521 5.508501 1.849572 -0.040928 -1.221440 8.958926 -4.211134 5.897216 -5.896366 -5.117848 5.157978 -1.125873 -0.198023 -6.331103 -2.760088 3.249952 -1.173387 -2.031047 2.275586 0.179754 2.021930 -1.802586 0.614069 2.093429 -5.624564 2.181652 2.850433 -3.229920 -1.688807 -1.353407 -1.622547 1.571521 -4.516308 -3.154506 0.062169 0.059989 -0.858472 -0.522245 -1.032975 -3.474802 5.427762 1.963288 -2.405769 1.123559 0.967064 -4.363458 3.890817 -2.799257 -6.037620 -1.874722 -0.868266 -2.528225 3.743216 0.133275 4.300978 -7.882828 1.904292 -8.168017 2.240365 -4.045199 2.044949 6.064841 -2.818732 3.439949 2.516465 2.656821 3.813800 -0.758760 3.914878 3.160637 2.519549 3.515122 3.317757 4.097949 -3.022890 -3.592199 -4.385098 -4.115030 1.396150 -2.399412 -7.393903 2.397895 0.424070 -0.106610 -0.529099 -0.125213 -0.838592 5.880432 -5.770287 0.933157 2.349393 -1.286127 0.766364 3.979190 -0.923449 0.077219 -2.131213 4.214778 -2.875307 4.523121 -0.215255 4.368552 -2.903944 -2.589883 -3.508323 1.210348 1.259629 -3.478095 -4.461542 -6.739835 -1.108573 2.057668 -2.823110 3.546074 9.245503 -4.943242 -5.395765 5.878915 1.810849 -0.814142 1.954800 1.177290 4.413978 -0.791620 -2.863709 -3.223141 -3.130070 0.572115 7.048038 1.574466 -2.826907 4.060528 -1.756562 -5.904875 5.420182 -0.332402 -3.569958 -1.640194 0.755627 -3.427416 -2.980125 5.039522 -3.145831 4.310404 -1.942314 6.366431 -1.230509 -2.500072 1.338915 -4.879460 -0.482802 -4.881607 -0.408892 1.912705 2.438462 -3.964510 -2.673074 -2.118593 -2.249431 -3.302726 2.620547 -4.198358 0.446693 2.107583 1.774706 5.449052 5.650707 0.397775 -0.675786 -3.581090 3.283865 1.707398 -0.039362 -6.316458 -1.626405 -1.268957 -1.642326 0.845180 0.051014 3.153357 -2.455304 -0.446062 0.906772 -1.204560 0.216379 1.875707 -6.826588 1.571917 0.389694 4.035133 1.975037 4.090367 4.449625 5.578821 2.988975 2.787715 -1.023255 -0.036940 -2.099846 1.085832 2.128497 -0.530439 3.104163 5.713514 4.553639 2.449870 4.975823 3.847005 0.926961 4.971884 -0.727818 7.478490 -1.310377 -1.968974 0.687563 2.067294 4.419447 6.874416 0.910176 -0.195649 3.041456 -0.223539 -2.892607 -2.470298 1.616291 -1.297364 0.396464 3.549459 3.348165 -0.641989 -0.979427 6.210593 -1.630353 -7.971572 3.223628 1.866871 4.140063 2.411379 0.848398 1.736064 2.319842 -2.318525 5.007221 4.796883 2.847242 -4.742224 -2.219001 0.805910 2.083273 4.756350 4.298159 -8.637676 -0.059198 1.730005 4.876605 -0.635102 5.678207 -3.754601 -1.655395 3.184379 -1.068515 -0.493557 0.436435 1.374747 -2.103355 1.159911 -4.217704 -2.389232 +PE-benchmarks/trie-suffixes.cpp__main = 3.721713 -3.969547 4.107199 -12.815002 -10.331057 -1.453296 -5.557683 -0.330743 -3.983337 5.762622 2.413136 -11.787747 -13.852712 12.642555 -1.325779 -12.435416 2.753569 -7.240030 5.406331 -1.225836 -0.841737 5.186611 2.775833 -3.283918 3.262850 0.792544 -11.167736 7.410055 24.141150 -6.466157 1.077954 -1.432238 2.305658 12.202903 0.160846 -10.786392 0.397490 21.587913 -0.494693 6.581534 -6.965718 -6.218367 16.739181 -1.823094 -2.713799 -11.104950 -6.675383 12.388841 -16.419331 -4.614924 3.711294 5.350118 3.853878 -8.832634 -9.644282 11.154165 -23.871323 15.066627 5.632392 1.442525 2.650349 3.923467 -5.774030 4.809767 2.046090 -8.912486 -3.134215 -5.197163 -11.588752 -6.416146 -2.992892 3.125372 16.987546 3.474933 -3.311003 6.035431 6.006385 -2.766376 9.342220 -15.383781 -13.861526 -2.140810 -7.408254 -5.494339 16.598063 -2.536633 4.063656 -15.344375 6.191833 -17.587654 6.995955 -13.728111 1.853998 17.331231 -12.360439 8.943892 3.425479 -4.431362 11.590055 0.236391 15.850885 5.257939 3.482841 10.761904 5.783176 6.549475 -3.076291 -1.098823 -7.593425 -7.816582 -3.823147 -3.601318 -17.123182 9.892931 -0.815068 4.111989 7.916493 -1.658832 -6.584847 3.934888 -6.358419 -3.176143 -0.226782 -2.526873 0.053224 12.355000 -2.897035 -4.286885 -3.951267 16.079514 -1.817703 8.312952 11.849213 10.132512 3.527480 -15.255182 -7.524042 5.803272 1.836424 -7.546550 -10.318425 -15.370241 3.360195 -9.237803 -7.317315 12.636945 22.274120 -1.983742 -6.434967 16.553677 -2.127947 6.184598 12.123534 -0.414967 15.780140 -0.671645 -13.461040 -1.669445 -10.166077 2.491087 3.759814 3.612968 -1.893915 6.948712 -0.694127 -1.767506 -5.759872 2.023710 -5.823598 -2.624926 -1.782552 -10.581899 -13.789734 9.603479 0.765710 7.348665 6.290635 18.694775 11.606823 -14.662832 10.690015 1.115218 -0.273103 -2.590749 -3.043598 4.551409 -5.399928 -10.460594 -7.000082 -7.931721 6.103227 -11.667893 6.865334 3.466772 6.813591 10.295674 4.917249 9.383719 7.148165 -4.228590 4.765515 -15.631321 3.259030 4.814455 -3.675248 -14.800512 -0.607800 -2.125929 1.178297 15.601089 -3.539604 8.650993 -6.967891 -6.652394 3.586790 1.926603 4.431042 3.825632 -11.506874 3.104289 5.111885 7.123443 10.846533 14.896286 8.995513 8.578289 0.156242 15.060139 -3.811341 8.139021 -0.608094 -6.134149 -2.019257 2.060842 7.366061 5.199570 7.677120 8.446166 14.259888 11.571344 -10.113996 12.039096 -2.841176 11.761527 -0.500291 -8.463324 3.184842 0.520042 12.404427 16.667500 -5.100531 -6.150388 10.409333 -1.829904 0.699770 -12.415389 4.450721 -2.900656 3.654631 8.910655 2.792482 3.919632 0.352710 4.979777 -2.845152 -19.769187 16.251893 6.365862 7.448469 4.204803 3.955402 1.794540 2.307960 -13.200262 2.039959 13.250011 4.284077 -10.580953 3.791067 4.539723 11.197477 -1.052388 14.006504 -17.797304 -5.799836 4.849762 4.367074 4.795363 5.479924 -7.301965 -18.928163 9.497458 1.028424 -2.938981 -5.946471 -2.624093 -11.510486 3.301471 6.403575 -3.297554 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 1.188176 -1.128149 1.361045 -2.951480 -2.679184 0.009434 -0.773133 -2.211684 -0.717261 2.849971 1.256543 -2.412586 -1.819966 3.435499 -0.011918 -2.381325 0.167156 -0.551326 0.997204 0.454174 -0.284562 1.456454 -0.894080 -0.783944 0.454501 0.007937 -0.722182 1.637985 2.267411 -0.033958 -0.946476 -1.566313 0.054304 4.023686 1.093283 -0.972109 -0.565035 6.165001 -1.772260 3.920048 -3.331183 -3.198440 3.846531 -0.809123 -0.083552 -2.414311 -1.327216 2.649630 -2.705584 -1.701248 1.071559 0.285360 1.278352 -1.988811 -1.015219 1.830867 -5.189215 2.398181 2.217189 -1.146091 -0.712404 -0.641994 -0.837571 1.232436 -2.438136 -2.067831 0.040181 -0.275715 -1.643013 -0.599121 -1.789263 -2.013081 4.246225 1.646644 -1.755523 0.897642 0.974528 -2.119554 2.855145 -2.110525 -4.293016 -1.309015 -1.458476 -1.957443 3.557726 0.535211 2.653861 -5.127836 2.380327 -6.163139 1.977534 -3.601980 1.503195 5.018635 -3.253678 2.165707 2.091409 2.319614 2.602460 -0.333154 3.284397 2.184642 0.292473 2.024506 2.319858 2.543169 -1.957371 -1.919763 -2.261346 -2.598166 0.059412 -1.600181 -5.022175 1.810102 -0.827723 1.684149 0.326395 0.271765 -1.075203 2.767028 -4.624540 -0.519888 0.779836 -0.879575 1.382026 3.074913 -0.732584 -0.038959 -1.532931 3.608656 -1.427891 1.637797 0.963193 2.973257 -1.577819 -1.932673 -2.884716 1.226907 1.297308 -2.898319 -3.635512 -5.041547 -0.496186 0.801516 -1.422230 3.980196 6.226217 -2.278452 -2.484877 4.154419 -0.868034 0.138540 3.606750 0.829312 4.091943 -0.957115 -1.819029 -1.521256 -2.042589 0.059993 2.231750 0.541189 -1.577768 2.674738 -0.709678 -0.996648 2.494912 0.302015 -2.087827 -1.966587 0.189555 -2.494625 -2.663907 3.557018 -2.883743 2.316071 -0.467773 5.301736 0.076458 -1.925478 2.141321 -2.780014 -0.419014 -2.284549 -0.664839 0.807185 1.599312 -3.616685 -2.228545 -1.188509 -0.456388 -1.986773 2.871791 -0.175438 0.479572 2.209410 0.690533 4.367279 3.184174 -0.666325 -0.133567 -3.077051 1.637980 1.459891 -1.356460 -3.763117 -0.709805 -1.596180 -0.466848 1.623072 -0.149977 2.718886 -2.969679 -1.416703 0.649001 0.052879 0.944124 0.982829 -4.463738 1.310648 0.691192 2.189238 2.771584 3.600394 2.262997 3.642770 1.479604 2.160867 -0.972250 0.755333 -1.199786 0.335798 0.682903 0.887139 1.865104 2.946672 2.412308 2.128495 2.760535 2.394402 -0.234553 3.766656 -0.167187 4.221024 -0.688154 -1.061113 0.825063 0.440837 3.716025 4.801981 -1.689163 -0.591228 2.116378 -0.757890 -1.612616 -2.103561 0.480218 -0.587572 -0.191000 1.515724 1.944952 0.711093 -0.880267 3.887614 -0.612070 -5.829435 3.046820 1.488416 2.340331 2.463424 0.252629 1.144958 1.178437 -1.673443 2.730395 3.314884 2.154203 -3.449923 0.325479 0.730366 2.230804 2.214824 2.979318 -4.670730 -0.129369 1.536201 2.726024 0.822490 2.688947 -2.865959 -1.957763 1.720860 -1.035560 -0.216315 -1.029763 0.932872 -1.383828 0.735891 -1.749667 -1.715699 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 1.483418 -0.474089 1.504125 -5.081162 -5.092980 0.374236 -2.031061 -3.399892 -1.331638 3.376729 1.979478 -3.406688 -3.220826 5.335996 -0.747332 -4.147381 -0.565818 -2.586171 0.895086 -0.271965 -0.679685 2.624591 -1.433445 -0.439957 0.453429 -0.068892 -1.613989 1.549817 4.468080 -2.128759 -1.566259 -2.232702 -0.197873 5.812021 1.922286 -1.761224 -0.573789 9.397843 -0.730335 3.736860 -5.720028 -4.597970 4.930088 -1.146573 -0.382916 -4.605680 -1.968431 3.991529 -4.249908 -0.683827 1.997364 0.143812 0.924689 -2.110966 -1.006298 2.472894 -7.895306 5.706742 3.267767 -1.136519 -0.517589 -1.020901 -0.680113 1.487823 -1.559878 -3.003579 0.353662 0.426903 -3.010479 -1.214262 -2.092823 -2.893467 6.076932 2.585458 -2.445932 1.105742 0.685153 -2.650993 3.900038 -5.026758 -6.588272 -1.456981 -0.952526 -2.105654 5.005030 0.818248 2.874737 -7.712324 2.932782 -9.138061 2.074223 -4.452267 2.317403 6.774876 -4.501942 2.672411 2.776869 0.803598 4.858003 -0.317944 4.921767 1.899290 0.741458 3.432447 2.614940 3.261581 -1.757890 -1.346886 -2.564123 -4.520797 -0.533879 -1.068193 -6.981342 3.065904 -1.265143 1.937500 -0.014643 0.682900 -1.445943 2.751735 -5.940952 -3.065250 0.643385 -1.300339 2.651098 5.009705 -1.068531 0.478381 -2.611346 5.117399 -2.278544 3.060000 0.781178 4.174697 -0.674389 -4.459138 -6.361888 1.799530 2.231750 -4.160303 -5.175908 -6.345566 -0.732935 -0.847878 -2.696625 6.563749 9.546377 -4.202558 -4.591279 6.882122 -0.827449 0.873959 5.926382 0.700006 6.466266 -1.147527 -2.703371 -1.630862 -3.420368 -0.421148 1.163814 0.958942 -1.764765 3.037637 -0.519125 -0.857886 1.305621 0.647903 -3.872885 -2.416519 0.544963 -3.638142 -4.454702 4.411995 -1.625058 3.725875 0.855367 7.581129 -0.556859 -3.830653 3.284517 -3.004782 -0.325812 -1.804890 -1.233589 0.953043 2.167948 -4.639764 -2.777544 -1.330449 -0.644489 -4.031604 3.204058 1.717054 1.222132 3.430414 1.550780 5.626243 6.128287 -0.653514 0.599418 -4.907007 2.646526 2.835995 -0.935720 -5.686869 -1.074041 -2.354005 -0.836906 3.827316 -0.636081 3.721470 -3.002957 -1.877492 0.576533 0.135301 2.929792 2.166642 -5.142394 2.052107 -0.375932 2.881524 3.339425 5.128015 3.141975 5.754563 2.885467 2.858223 -1.167197 0.924879 1.059425 -0.804398 1.298716 1.300786 3.320647 4.054440 4.159123 3.232680 4.973796 3.655803 -1.413066 5.603658 -1.288062 7.525131 -2.486758 -1.196908 -0.049100 0.614434 5.310261 8.378737 -3.109803 -1.000961 3.302606 -0.489116 -1.384778 -4.777847 1.179127 -1.243905 -0.036629 2.247579 3.018078 0.958322 -1.509800 5.781598 -1.267707 -7.978487 5.532847 1.998932 3.388451 2.134878 0.725309 0.326892 2.097453 -4.393476 3.121674 5.753548 3.416943 -4.709012 -0.224292 0.800298 4.192002 1.098261 4.744257 -6.024070 0.341448 3.347127 3.967105 1.583248 2.873725 -4.136414 -4.681475 3.290379 -1.024071 -0.576756 -0.235422 1.574324 -2.817883 1.267608 -0.622954 -3.026456 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 1.591600 -1.522294 2.123553 -3.979585 -3.177443 -0.278246 -0.478893 -2.364011 -1.272495 3.842271 1.505018 -3.273152 -2.780866 4.039088 -0.149945 -3.388443 0.680891 -0.415155 1.050478 -0.437992 -0.511752 1.562968 -0.649141 -2.073079 1.080878 -0.491913 -1.124447 2.894187 3.459784 0.232356 -0.178437 -1.767264 0.529632 5.584755 0.941136 -1.552214 -1.066688 7.982138 -2.469277 4.138747 -4.446437 -4.534184 6.640628 -1.178148 -0.014619 -3.775526 -2.065995 3.738593 -3.578255 -2.492591 0.455844 0.654709 2.103592 -3.832450 -2.462692 3.105332 -7.171971 2.774885 2.793255 -2.473981 -2.140340 -0.283660 -0.887973 1.594991 -2.865960 -3.279295 -0.111517 -0.623459 -2.147134 -0.593692 -2.450220 -2.275207 5.659662 1.559827 -1.421580 1.766172 1.123799 -2.586622 3.723962 -1.853826 -5.148996 -2.173269 -1.535285 -2.784946 4.599834 0.476856 3.832072 -7.083818 2.786654 -8.008257 3.005595 -4.853484 2.177175 6.438751 -4.348423 3.768774 2.475637 2.604530 2.794767 -0.311338 4.823503 2.633284 1.358507 2.855611 3.398458 3.363843 -2.591416 -3.029968 -3.423793 -3.297320 0.199472 -2.467068 -7.014164 2.888548 -1.593470 1.040582 0.776795 -0.257737 -1.402549 4.413769 -5.653618 0.162304 1.652814 -1.280270 1.157154 3.675346 -0.857391 -0.555447 -1.606331 4.801571 -1.577588 2.152849 1.981935 4.346421 -1.503687 -3.566854 -2.874115 1.732169 1.304564 -4.020428 -4.861547 -6.512011 -0.474229 1.081072 -2.142688 4.463282 8.518844 -2.370579 -3.733679 5.094798 -0.568984 0.363466 4.485896 1.379390 6.058593 -1.750222 -2.447108 -1.827449 -2.222304 1.481030 2.766710 0.209847 -2.387050 4.113632 -0.924628 -1.533312 3.747656 -0.205253 -1.878575 -1.425032 0.469561 -3.428869 -3.621078 4.721323 -2.438713 4.014200 -0.524273 7.269638 0.300704 -3.164901 2.685298 -3.460268 -1.106191 -2.671901 -0.382711 0.773954 1.595508 -4.400314 -3.480600 -2.367387 -0.483747 -2.248121 4.426204 -0.692757 1.026607 2.735127 0.342529 4.422503 3.177728 -1.303562 -0.086363 -4.574786 1.825246 2.433879 -1.060838 -5.581941 -1.278334 -1.725361 -0.485865 2.077726 0.148651 4.342285 -3.384477 -1.573063 1.437095 0.250955 0.448037 0.501068 -5.603138 1.684118 0.968442 2.836012 3.127285 5.792399 3.958454 4.297970 0.761626 3.456618 -1.058866 0.608873 -2.160617 0.124918 0.328838 1.451430 2.566800 3.631000 2.967287 3.139805 4.253765 3.125516 -0.560162 5.205823 -0.096404 5.469123 -1.272012 -1.733979 1.536389 0.568005 5.084999 6.060616 -0.832712 -1.695208 3.003210 -0.953469 -2.200795 -3.376047 0.437645 -0.486424 0.011628 2.620627 2.920857 0.449432 -1.092443 5.270887 -0.310023 -8.341188 4.888231 2.154703 3.220152 3.167372 0.004760 1.644182 1.998219 -1.454232 2.778723 4.160245 2.724518 -5.358367 0.642084 1.373976 3.829080 2.469988 3.677130 -7.332223 -0.102111 1.634124 3.418439 0.758413 3.921688 -3.736257 -2.615214 1.968372 -0.958623 -0.290555 -1.119984 0.743364 -2.524147 0.864049 -2.655942 -1.323022 +PE-benchmarks/m-coloring-problem.cpp__main = 0.432821 -0.127778 0.412490 -1.121263 -0.542351 -0.041745 0.606631 -0.584356 -0.287394 0.381409 0.320040 -0.604720 -0.806504 1.022775 -0.089737 -0.814584 0.269211 -0.789563 -0.264327 0.067093 -0.371140 0.422473 -0.278436 -0.604301 0.462125 -0.071442 0.042412 0.941945 0.493903 -0.406735 -0.361161 -0.426986 0.096104 1.612870 0.398181 -0.159879 -0.085143 2.185213 -0.685970 1.264915 -1.169721 -0.954704 1.725497 -0.322251 -0.383885 -1.361688 -0.525989 0.919487 -0.910585 -0.431884 0.309150 -0.078317 0.171200 -0.957511 -0.245355 1.331927 -1.817631 0.889876 0.702968 -0.192809 -0.654217 -0.579627 -0.078755 -0.027486 -0.660416 -0.975111 0.203822 -0.280365 -0.838194 0.103872 -0.907715 -0.873412 1.612695 0.529058 -0.361856 0.357781 -0.172709 -0.916584 0.711681 -0.561622 -1.074199 -0.526177 0.096742 -0.320657 1.291923 -0.000949 0.502352 -2.042016 0.005495 -2.022221 0.428686 -1.389740 0.822285 1.552993 -0.941909 1.036189 0.158031 0.285815 0.117608 0.006056 1.112929 0.376186 0.504385 0.306608 0.994826 0.644652 -0.635475 -1.019272 -0.657700 -0.700873 -0.010082 -0.308144 -1.977277 0.619065 -0.800889 0.176059 -0.002530 0.240669 -0.474736 0.817037 -1.320811 0.005541 0.311353 -0.385972 0.793725 1.208712 -0.174564 0.004921 -0.524102 1.069222 0.025764 0.755394 -0.379089 0.980612 -0.150976 -1.183935 -0.863028 0.011388 0.597479 -0.857904 -1.587661 -1.513207 -0.420154 0.092910 -0.681266 1.134712 2.107997 -0.606901 -1.103928 1.346000 0.129210 0.786059 0.982866 0.276693 1.591892 -0.789081 0.024075 -0.131443 -0.153819 0.186720 0.372469 -0.288639 -0.923313 0.731546 -0.322724 -0.667460 1.231385 0.165373 -0.340914 0.069116 -0.138399 -0.787432 -1.392247 1.726667 -0.277740 1.378978 -0.148750 1.919314 -0.574999 -0.858672 0.614345 -0.435884 0.014018 -1.152027 -0.273199 0.062071 0.623511 -1.055732 -1.001755 -0.318457 0.056581 -0.518270 1.210179 0.041546 -0.111872 0.058418 0.160977 0.824178 1.000203 -0.640771 0.262142 -1.279966 0.616279 0.790680 0.012857 -1.509828 -0.124220 -0.202123 -0.470173 0.580385 0.098620 0.686330 -0.687734 -0.439345 0.647934 0.098336 0.189399 0.155335 -1.690010 0.399842 0.047294 0.075004 0.699449 1.487545 1.214719 0.828110 0.161411 0.231705 -0.167839 -0.055252 -0.827582 -0.067776 -0.029987 0.659335 0.708796 0.991931 0.798820 0.431931 0.954786 0.710487 -0.214905 1.228635 0.700874 1.631196 -0.229942 -0.577876 0.406059 -0.238956 1.222402 1.551684 -0.455416 -0.493811 0.862015 0.204171 -0.512403 -1.088296 -0.166281 -0.351576 -0.286956 0.974746 0.258953 -0.262920 -0.196857 2.024878 -0.376738 -2.146166 0.928292 0.543405 0.854256 0.478639 -0.127854 0.413159 0.867867 -0.615075 0.763246 0.720636 0.834389 -0.963740 -0.095302 0.148706 0.703051 0.394804 0.434402 -1.776199 -0.035777 0.416605 1.531889 0.632137 0.867050 -0.544895 -0.181109 0.182618 -0.133042 0.164094 -0.116827 0.691500 -0.723530 0.000837 -1.224681 -0.257478 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.417459 0.117668 0.617941 -0.664108 -0.324160 -0.219351 0.811012 -0.683991 -0.420582 1.303019 0.061988 -0.751865 -0.931001 0.677747 -0.217668 -0.675783 -0.038172 -0.383479 -0.429400 -0.466483 -0.407182 0.221509 -0.156360 -0.845235 0.422529 -0.232585 0.495070 0.996125 -0.053058 0.179820 0.302557 -0.461202 0.545530 1.529370 0.338306 0.191315 -0.530868 1.634439 -1.084686 1.461730 -1.526718 -1.532898 2.111534 -0.190537 -0.016121 -1.335125 -0.031478 1.044204 -0.823037 -0.689612 -0.297138 0.111137 0.186129 -1.326944 -0.594224 1.199056 -1.606579 0.722469 0.513410 -1.081163 -1.405162 -0.272618 0.181951 0.342781 -0.838630 -1.028363 -0.123377 -0.330726 -0.754037 0.453828 -0.935386 -0.700384 1.015093 0.138163 -0.247514 0.351117 -0.418139 -0.094222 0.672405 -0.360292 -0.624646 -0.798610 0.303395 -0.391889 0.528280 0.670364 0.732475 -1.983688 0.052395 -1.681753 0.796468 -0.923288 0.780711 1.102471 -0.380710 1.413796 0.047469 0.073823 -0.049218 -0.210276 0.704052 0.333925 1.027027 0.416859 0.914510 0.975294 -0.975224 -1.572512 -0.977834 -0.670685 0.405159 -0.462105 -1.485598 0.504372 -0.869788 0.236817 0.205342 -0.087521 -0.408789 0.970258 -2.026458 0.211519 0.482321 -0.294701 0.811633 0.672042 0.002489 0.181422 -0.028189 0.770810 0.143256 0.454436 0.118319 1.066983 -0.232518 -0.817486 -0.482261 0.331361 0.512210 -0.705099 -1.208406 -1.751844 -0.546212 0.764952 -0.668081 0.870692 1.962034 -0.358239 -1.244633 0.800462 -0.282591 0.321070 0.586050 0.450163 1.716363 -0.970029 0.038740 -0.029686 0.024438 1.038720 1.723363 -0.441001 -1.257512 1.189422 -0.313333 -0.436720 0.521637 -0.097359 -0.043967 -0.215035 0.052537 -0.557768 -0.674801 1.229871 -0.954045 1.500784 -0.903620 1.703048 -0.859358 -0.654748 0.298645 -1.746345 -0.434809 -1.009440 -0.073449 -0.253390 0.830973 -1.286354 -0.864017 -0.594900 -0.325161 -0.246959 1.587981 -1.145963 -0.185334 -0.123374 -0.164543 1.411032 0.369989 -0.723345 -0.184885 -1.172101 0.381652 0.733980 0.571312 -1.720617 -0.457584 -0.258996 -0.543158 0.420932 0.078533 0.782711 -0.531348 0.150943 0.776127 -0.236164 -0.325711 -0.285942 -1.165746 0.389736 0.211616 0.410701 0.450001 1.780718 1.127105 0.686421 -0.126892 0.610036 -0.156332 -0.631038 -1.039528 0.344138 0.154810 0.287113 0.700890 0.910381 0.504237 0.471735 1.100266 0.485468 -0.456623 1.221643 0.209415 1.282681 -0.930775 -0.239832 0.523293 0.082676 0.930485 1.100212 -0.248240 -1.000761 0.828557 -0.375405 -0.664671 -0.406375 -0.361237 -0.308902 -0.132247 1.274311 0.933242 -0.415129 -0.131194 2.064966 -0.166431 -2.231939 1.045488 0.565094 0.690083 0.570731 -0.593204 0.499127 1.012132 0.133039 0.173956 0.642027 0.693814 -1.492215 0.172829 0.146371 0.853322 1.042588 0.062832 -2.676919 -0.490029 0.331352 1.611817 0.083577 1.554594 -0.808316 0.102385 0.145318 0.052645 0.233135 -0.089713 0.667837 -0.218009 0.152592 -1.529382 0.173550 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 0.578682 -0.334409 1.196757 -1.792652 -0.544880 -0.552330 2.885752 -1.122368 -0.913662 2.916783 0.521754 -1.511931 -1.212475 1.996662 0.479246 -0.944210 0.852916 -0.977066 -0.730244 0.132243 -0.927748 1.031439 -0.580787 -1.701168 1.391341 -0.077645 0.642753 2.360515 -0.955111 0.338985 0.433196 -1.208731 0.709542 3.444943 0.698285 0.184262 -1.237578 4.024083 -3.696790 4.323214 -2.532361 -2.653121 4.657192 -0.595723 -0.432321 -2.406350 -0.570740 2.357281 -0.279556 -2.816748 -0.022215 0.244945 1.032772 -2.869815 -1.084582 2.744211 -2.933657 -0.015349 1.733260 -2.117619 -2.925520 -0.806678 0.091785 0.553794 -3.262298 -2.124617 -0.150937 -1.739565 -0.707940 0.208844 -2.156719 -2.034303 1.956557 0.823232 -0.436984 0.924157 -0.887677 -1.472542 1.769888 0.303072 -1.787555 -1.745079 -0.200761 -1.781640 1.559449 0.625117 2.186431 -4.416745 0.411908 -3.924963 1.599620 -2.343736 1.706919 3.285741 -0.702648 2.968430 0.250544 1.483088 -0.385949 -0.685830 1.777970 1.052426 1.760632 0.955470 2.455577 2.656052 -2.853526 -3.750819 -2.586929 -1.330850 1.603694 -1.374304 -2.565107 1.427490 -1.575018 -0.520702 0.515783 -0.143032 -1.118727 2.948669 -3.297102 1.440982 1.416902 -0.819757 1.180681 2.121836 -0.001693 -0.229901 -0.630348 1.730721 0.054901 1.822804 -0.138265 2.696586 -1.405560 -0.791393 0.395875 0.356781 0.884624 -1.969197 -2.773207 -4.622474 -0.761027 1.730496 -1.768265 1.710286 4.473661 -1.395519 -2.222045 2.125281 0.556768 0.503961 0.293882 0.812055 3.321737 -1.963612 -0.201445 -0.455880 -0.245169 1.824448 4.960708 -0.558163 -2.596237 2.630838 -1.447492 -2.079082 3.625759 0.276236 -0.263879 0.194251 0.318180 -1.318262 -2.168592 3.313494 -2.168269 2.637112 -1.873762 3.806035 -1.177969 -0.570907 1.025363 -2.842966 -0.964261 -3.820594 -0.520006 0.113974 1.674629 -2.162678 -1.914415 -1.442576 -0.527206 -0.798322 2.957743 -3.498510 -0.425577 -0.185008 -0.220679 2.350842 0.870437 -1.386597 -0.564593 -2.431465 0.999481 1.186941 0.573669 -3.146513 -1.022308 -0.593247 -1.363849 0.336908 0.180486 1.811716 -2.011091 0.019979 2.254292 -0.228396 -1.284471 -0.411068 -4.424974 0.887063 0.974342 1.024812 1.453712 3.756854 2.273782 1.879590 -0.164251 1.347381 -0.819365 -0.385980 -4.281483 0.787840 -0.375538 1.010412 1.735987 1.851351 1.677021 1.196642 2.167376 0.635917 -0.148838 2.695519 0.922325 2.749963 0.035865 -1.191265 1.927185 0.128287 2.297206 1.982245 0.493722 -2.084084 1.959931 -1.043067 -2.471520 -0.434825 -0.224217 -0.602588 -0.196429 2.396443 1.482236 -0.720611 -0.375528 4.577592 -1.020091 -5.368008 1.578601 1.234095 2.289985 2.025841 -0.551845 2.318081 1.904843 0.474579 1.753448 1.526166 1.803018 -2.925635 0.541114 0.420977 1.132900 3.143402 0.526109 -6.383142 -0.662933 -0.092914 3.098023 0.021067 3.855463 -1.558671 1.378603 0.259269 -0.130099 0.611899 -0.664978 1.513039 -0.122357 0.101424 -4.675440 1.001392 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 8.062508 -9.564861 8.722410 -21.032413 -16.030954 0.757824 -2.798056 -6.378106 -5.666686 13.000932 6.284271 -13.139234 -12.729322 19.924941 0.488374 -16.625611 6.086591 -10.193506 5.412349 -1.848371 -3.039884 8.352608 -0.536655 -8.067006 4.875631 -2.009304 -10.021137 13.437956 20.248366 -5.287416 -0.877636 -6.897938 -1.681519 23.623006 4.310198 -11.543479 -2.975184 39.741720 -9.430676 15.737448 -16.640510 -16.321849 30.424988 -6.003971 -2.899079 -15.681823 -11.979839 18.690963 -13.333024 -11.605734 5.756473 3.697764 9.974727 -15.344248 -12.783194 14.808274 -32.167798 12.328046 11.376458 -6.768644 -7.083057 0.147984 -4.224250 9.280347 -10.605746 -15.612908 2.501982 -4.641074 -10.972853 -8.153572 -9.404186 -7.966536 25.189367 8.183487 -3.288268 7.336156 6.989576 -11.159673 17.168486 -9.782004 -26.270486 -7.414151 -10.680375 -18.239899 24.332120 -3.339846 17.312659 -32.595924 15.385734 -37.140199 11.691531 -22.034336 7.967594 29.422978 -18.229171 16.567598 9.790996 11.687389 15.086820 -2.381121 24.436255 10.410768 5.686605 15.780288 17.186561 13.049526 -9.182948 -8.851182 -16.717503 -15.078644 0.050367 -11.406675 -30.472711 17.895659 -4.468317 -0.192063 3.966931 1.085159 -9.074115 18.413306 -18.491233 2.091883 5.379763 -5.891092 2.443874 18.887480 -6.855057 -3.884703 -7.788811 23.176675 -8.287827 14.485913 10.986189 19.920990 -2.992884 -14.368402 -12.293507 9.726770 7.404052 -17.994042 -21.529691 -28.337400 1.039189 -1.585000 -13.304760 25.921601 41.190760 -11.399831 -16.015266 24.603388 1.488772 4.515223 18.552360 2.866178 28.134642 -5.832452 -15.380462 -7.278055 -12.090894 4.619689 6.964474 4.057395 -5.432654 17.505385 -4.441132 -5.753619 19.026445 0.641702 -10.396476 -1.065476 2.698235 -15.370372 -22.474326 21.180133 -1.960604 15.866523 7.637100 32.822187 7.678995 -14.786159 14.184561 -7.195209 -4.013513 -12.644835 -2.825740 2.675461 2.263172 -14.476050 -14.446486 -13.633751 -1.057827 -13.941376 15.456644 4.071806 9.525459 15.033284 4.417586 15.093716 17.350058 -2.351644 1.427349 -24.702419 8.747554 12.785292 -5.958554 -20.269982 -7.574567 -5.565324 -0.857450 13.408889 -0.214157 19.645905 -16.432713 -9.023001 5.316154 6.483222 3.914212 6.568849 -30.854387 6.029302 7.620929 13.464171 15.023750 26.873472 17.888106 20.138616 5.357365 16.669898 -5.731936 8.958569 -9.734205 -6.725667 -1.722670 9.051864 12.817586 14.734800 15.062473 15.163333 23.065539 15.273315 -4.443411 22.334279 -1.929239 26.918616 -2.947928 -12.112566 4.798284 2.152674 23.401172 29.393605 -1.146722 -6.436121 15.282569 -2.642539 -10.028702 -19.275515 7.273991 -4.147246 6.781562 9.907406 10.571663 4.577436 -5.896082 20.542583 -3.144504 -40.343522 23.329542 9.489698 16.926495 16.740484 3.655586 9.339663 5.556827 -13.675067 13.627138 22.293593 10.070586 -21.665839 5.774606 7.505763 17.861211 2.744468 19.295638 -32.232511 2.880544 6.307822 12.915312 5.101489 14.473112 -16.625615 -16.022842 12.218202 -5.288955 -1.070123 -1.453153 3.289124 -16.254985 5.167335 -9.671046 -4.839954 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 7.796061 -5.134417 4.477855 -8.844476 -3.850825 -0.097459 8.311221 -10.497574 -5.207415 18.421213 3.121278 -8.001438 -4.801070 11.207141 0.275377 -5.369693 4.262938 0.242729 -0.754013 0.161154 -5.813670 3.723571 -4.232230 -9.781162 4.077181 -1.263354 3.913771 11.554171 -3.110368 5.216765 -1.462609 -7.167941 1.367858 18.901884 6.698757 -1.703882 -6.270699 27.635697 -20.283014 21.918634 -14.745597 -15.822773 26.007433 -3.279455 -0.360105 -12.104618 -6.533479 12.035104 -3.212127 -13.500731 -1.040086 -1.934242 6.331494 -13.347252 -7.296448 14.739965 -17.879181 0.923667 9.568049 -11.607959 -17.260968 -4.833543 3.319752 5.742094 -19.596846 -12.057130 1.606704 -4.104322 -3.345583 0.463406 -15.183109 -13.573726 12.288056 4.845197 -4.245071 1.925679 -4.518360 -8.309533 8.845797 2.776650 -14.497524 -8.113938 -2.645064 -11.858874 8.645527 5.633008 17.043596 -25.424486 8.359819 -27.969668 7.446433 -15.391185 10.421279 20.169139 -8.098939 14.839298 4.251334 17.912248 2.074135 -2.352888 10.652227 7.921620 4.293123 3.967668 14.480790 14.663263 -12.651193 -18.052393 -13.285978 -7.371045 5.773110 -7.448280 -22.040628 8.952731 -11.260128 2.436033 -1.511153 2.977845 -6.626150 17.648075 -22.887922 6.719865 4.781380 -4.376864 9.642922 13.027860 -1.150947 1.675462 -3.470079 9.960087 -1.317575 7.123857 0.274718 14.586376 -11.357318 -4.450086 -4.100811 5.121178 8.279307 -13.146428 -16.648275 -25.268211 -5.242317 11.333251 -8.434193 16.011114 28.411256 -8.980976 -11.675641 11.085909 -3.954393 0.297849 9.570783 4.422019 25.059090 -12.023680 0.584542 -1.840096 -0.561716 6.280848 18.827659 -4.136163 -12.267485 13.969951 -7.154384 -5.656690 23.589294 1.924846 -3.275197 -3.638966 2.561234 -4.680420 -12.963127 20.940150 -20.461216 14.804308 -8.318739 22.119350 -6.099175 -1.925711 5.955590 -17.253858 -5.900606 -18.207930 -0.274368 -2.804989 13.214114 -12.385567 -10.681900 -6.289401 -5.383517 -3.566518 19.530175 -7.506738 -1.399634 2.566500 -2.808099 18.328743 7.564883 -5.444738 -3.680754 -14.801565 6.189943 10.042987 -2.700205 -18.613379 -8.156102 -6.128799 -5.700076 -1.564928 1.670279 12.597078 -15.454434 -1.813717 6.629705 2.529698 -1.743794 0.049398 -25.054298 6.913420 3.377881 7.205023 9.900516 22.392971 12.211204 14.143675 1.754184 5.194274 -3.598053 -3.834601 -19.178297 4.929660 1.036522 7.120718 8.432319 11.676772 7.370729 8.917505 9.457567 1.388169 2.707020 15.784196 5.293199 19.157850 -4.822058 -5.883850 7.175038 -0.828536 13.890616 14.837692 0.205522 -8.134702 7.922330 -8.236060 -14.682823 -5.480452 0.179106 -2.006337 -1.627019 11.008331 11.582440 0.326179 -6.072526 25.853295 -3.086706 -34.504534 10.998085 6.393871 11.266121 17.668460 -3.999182 12.874393 9.209553 5.950248 12.119341 11.647488 9.645323 -17.143679 5.350752 2.923836 8.742776 14.029715 2.307027 -34.747979 4.177523 2.768394 17.527753 1.751359 19.334918 -11.381898 7.909383 2.504924 -4.530721 4.323725 -3.247041 10.877588 -2.015714 1.666546 -25.321915 1.587723 +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.900154 0.410376 0.944478 -1.679234 -2.182548 0.556717 -0.521046 -1.269132 -0.418409 0.822857 0.732138 -0.107232 -0.153255 1.486493 -0.855385 -0.979199 -0.553051 -1.934124 -0.088209 -0.778289 -0.300993 1.102046 -0.646022 0.178187 0.159845 -0.521339 -0.412408 0.492929 0.217492 -1.090599 -0.369677 -0.805907 -0.544114 1.860524 0.784937 -0.867818 0.190997 3.209905 -0.279090 -0.349809 -1.734792 -1.870704 1.252828 -0.530142 -0.139906 -1.494119 -0.888282 0.956163 -0.048165 0.555708 0.936321 -0.257139 0.206640 -0.117600 0.067583 0.231831 -2.414690 1.530180 0.811149 -0.660788 -0.635819 -0.577552 0.018850 0.128892 -0.070294 -0.983483 0.908771 1.092194 -0.311797 -0.224052 -0.085450 -1.397888 1.889135 0.634639 -0.162902 0.253146 0.481871 -1.453149 1.408180 -1.221531 -2.337947 -0.419874 -0.017594 -1.172418 1.638006 -0.242641 0.934314 -2.606265 1.159521 -2.963022 0.202822 -1.087757 0.694070 1.677168 -1.384321 0.721505 1.267321 1.056131 1.542581 -0.267405 1.852784 0.450101 0.447043 1.570708 0.812178 0.753666 -0.300780 0.084433 -1.243256 -1.735389 0.006638 -0.342683 -2.429005 1.112864 0.087817 -0.727851 -0.726409 0.032444 -0.048592 2.025792 -1.911509 -0.710885 0.576688 -0.389087 0.218903 1.158933 -0.513743 0.251529 -0.976834 1.536914 -1.413894 1.200468 -0.194339 1.149485 -0.161137 -1.653068 -2.628363 0.492563 0.721553 -1.503366 -1.641149 -1.380687 -0.188175 -0.194713 -1.003756 2.237782 3.314213 -1.898425 -2.108604 2.342862 1.119640 -0.272352 1.875196 0.379797 1.698278 -0.083891 -1.186907 -0.952482 -1.259690 -0.229245 -1.280344 0.526978 0.164266 1.097654 0.433137 -0.303262 2.164502 -0.405665 -1.644148 0.551748 0.638743 -1.070333 -1.307425 1.248707 1.641407 1.409051 1.181609 2.411600 -0.537468 -1.278334 0.408260 -0.676863 0.150237 -0.627621 -0.021221 0.038878 0.789461 -0.671841 -0.928791 -0.390651 -0.837676 -1.305661 0.563791 1.181835 1.122017 1.133023 0.618234 0.424814 2.912252 0.415043 0.230754 -1.482805 1.011493 1.269268 0.098133 -1.761168 -0.628169 -0.470609 -0.185752 0.811432 0.011345 1.419119 -0.529020 -0.284999 -0.095228 0.151380 0.793724 1.108421 -1.604487 0.584654 -0.907616 1.068582 0.290448 1.197940 1.712308 2.111343 1.497375 0.520564 -0.029577 0.130210 0.951034 -0.566111 0.753080 0.860626 1.121746 1.963198 1.656930 1.190040 1.572595 1.492929 0.361221 1.844626 -0.592846 3.344143 -1.622124 -0.172644 -0.935098 0.873509 1.786744 2.934865 -0.026994 0.123016 0.740835 0.553546 -0.512859 -1.961441 0.785453 -0.416940 0.715264 -0.013360 1.470518 -0.058400 -0.610544 2.060360 -0.274497 -2.323818 1.647493 0.572373 1.166193 0.415164 0.441355 -0.105469 0.699634 -1.435860 1.332463 2.017571 1.193765 -1.700147 -0.480492 0.352553 1.777226 -0.983776 1.908280 -1.901457 1.267613 1.024073 0.975406 -0.000539 0.823087 -1.542696 -1.645665 1.426918 -0.414564 -0.293618 1.720568 0.883939 -1.804331 0.959828 -0.392904 -1.200242 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.829502 -0.054142 0.741522 -1.459864 -1.428062 0.215936 0.079493 -1.411749 -0.561190 1.249475 0.680683 -1.081523 -0.714529 1.573464 -0.523117 -1.196841 0.105218 -0.252875 -0.183769 -0.446734 -0.492212 0.633427 -0.538140 -0.889491 0.391193 -0.355568 0.189384 1.185443 0.507865 0.051808 -0.418974 -0.749253 0.181916 2.534843 0.899979 -0.309714 -0.271530 3.328835 -1.049285 1.582293 -2.264452 -1.958320 2.660105 -0.338009 -0.063987 -1.903696 -1.077238 1.352165 -1.189223 -0.525610 0.221856 -0.391139 0.568317 -1.234528 -0.536718 1.534931 -2.619104 1.289108 1.039261 -1.187785 -1.464540 -0.561812 0.177327 0.409043 -1.245180 -1.498386 0.236126 0.420291 -0.661622 0.152090 -1.279960 -1.730995 2.323343 0.501000 -0.702765 0.274138 -0.240687 -1.301845 1.159623 -0.539774 -2.038288 -0.858474 0.118846 -0.889409 1.532108 0.351271 1.689615 -3.378641 0.687243 -3.577920 0.911148 -1.674668 1.297771 2.255393 -1.687881 1.353065 0.692094 0.953104 0.824246 0.201248 1.697509 0.717316 0.542317 0.629866 1.501582 1.358256 -0.833456 -1.476557 -1.147670 -1.428833 0.139626 -0.612187 -3.275614 0.973037 -1.175282 0.598886 -0.417097 0.156341 -0.381185 1.931019 -2.426649 -0.196800 0.565439 -0.533064 1.130278 1.544167 -0.245178 0.332173 -0.681827 1.586438 -0.434722 0.701942 -0.221857 1.609120 -0.779767 -1.874044 -1.910745 0.600268 1.028559 -1.535760 -2.304579 -2.534773 -0.613270 0.769196 -1.045422 1.715832 3.588992 -1.371001 -2.064934 1.927519 0.132772 0.118557 1.982957 0.566632 2.886618 -1.276360 -0.105101 -0.517595 -0.485131 0.390104 0.716286 -0.442689 -1.250914 1.501285 -0.409357 -1.278164 2.428476 -0.038783 -0.776628 -0.063727 0.171551 -0.846353 -1.472310 2.287179 -0.697267 1.973152 -0.445223 2.962891 -1.008108 -1.439597 0.706192 -1.479486 -0.453432 -1.055528 -0.037861 -0.090021 1.482125 -1.654317 -1.444451 -0.394303 -0.616382 -0.792616 2.011189 0.263600 0.065095 0.542728 -0.072615 1.503653 1.707565 -0.525175 0.059041 -1.770706 0.845623 1.486862 -0.068260 -2.571330 -0.673085 -0.797955 -0.528716 0.248629 0.199850 1.493999 -1.195285 -0.368154 0.529763 -0.051305 0.578261 0.314393 -1.983693 0.927392 -0.273046 0.771020 0.813596 2.458645 1.872972 1.957432 0.529459 0.586491 -0.150758 -0.558470 -0.674905 0.178356 0.593529 0.776293 1.077998 1.792157 1.132945 1.017790 1.430220 0.896393 0.314802 2.079637 0.441152 2.905324 -1.120596 -0.324681 0.260966 -0.030767 1.964348 2.858645 -0.577358 -0.768117 0.932504 -0.158491 -1.000953 -1.722364 0.046443 -0.302709 -0.387517 1.100410 1.309976 -0.086826 -0.746631 3.038138 -0.180795 -3.558775 1.897644 0.736099 1.115916 1.250023 -0.388571 0.615792 1.102657 -0.308496 1.217164 1.739909 1.337773 -2.093110 -0.262478 0.243505 1.482923 0.905462 0.898784 -3.079922 0.588593 0.926628 2.177739 0.389284 1.723732 -1.535794 -0.357004 0.539670 -0.440513 0.057903 0.076533 0.966120 -0.968359 0.340849 -1.791653 -0.644769 +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.900154 0.410376 0.944478 -1.679234 -2.182548 0.556717 -0.521046 -1.269132 -0.418409 0.822857 0.732138 -0.107232 -0.153255 1.486493 -0.855385 -0.979199 -0.553051 -1.934124 -0.088209 -0.778289 -0.300993 1.102046 -0.646022 0.178187 0.159845 -0.521339 -0.412408 0.492929 0.217492 -1.090599 -0.369677 -0.805907 -0.544114 1.860524 0.784937 -0.867818 0.190997 3.209905 -0.279090 -0.349809 -1.734792 -1.870704 1.252828 -0.530142 -0.139906 -1.494119 -0.888282 0.956163 -0.048165 0.555708 0.936321 -0.257139 0.206640 -0.117600 0.067583 0.231831 -2.414690 1.530180 0.811149 -0.660788 -0.635819 -0.577552 0.018850 0.128892 -0.070294 -0.983483 0.908771 1.092194 -0.311797 -0.224052 -0.085450 -1.397888 1.889135 0.634639 -0.162902 0.253146 0.481871 -1.453149 1.408180 -1.221531 -2.337947 -0.419874 -0.017594 -1.172418 1.638006 -0.242641 0.934314 -2.606265 1.159521 -2.963022 0.202822 -1.087757 0.694070 1.677168 -1.384321 0.721505 1.267321 1.056131 1.542581 -0.267405 1.852784 0.450101 0.447043 1.570708 0.812178 0.753666 -0.300780 0.084433 -1.243256 -1.735389 0.006638 -0.342683 -2.429005 1.112864 0.087817 -0.727851 -0.726409 0.032444 -0.048592 2.025792 -1.911509 -0.710885 0.576688 -0.389087 0.218903 1.158933 -0.513743 0.251529 -0.976834 1.536914 -1.413894 1.200468 -0.194339 1.149485 -0.161137 -1.653068 -2.628363 0.492563 0.721553 -1.503366 -1.641149 -1.380687 -0.188175 -0.194713 -1.003756 2.237782 3.314213 -1.898425 -2.108604 2.342862 1.119640 -0.272352 1.875196 0.379797 1.698278 -0.083891 -1.186907 -0.952482 -1.259690 -0.229245 -1.280344 0.526978 0.164266 1.097654 0.433137 -0.303262 2.164502 -0.405665 -1.644148 0.551748 0.638743 -1.070333 -1.307425 1.248707 1.641407 1.409051 1.181609 2.411600 -0.537468 -1.278334 0.408260 -0.676863 0.150237 -0.627621 -0.021221 0.038878 0.789461 -0.671841 -0.928791 -0.390651 -0.837676 -1.305661 0.563791 1.181835 1.122017 1.133023 0.618234 0.424814 2.912252 0.415043 0.230754 -1.482805 1.011493 1.269268 0.098133 -1.761168 -0.628169 -0.470609 -0.185752 0.811432 0.011345 1.419119 -0.529020 -0.284999 -0.095228 0.151380 0.793724 1.108421 -1.604487 0.584654 -0.907616 1.068582 0.290448 1.197940 1.712308 2.111343 1.497375 0.520564 -0.029577 0.130210 0.951034 -0.566111 0.753080 0.860626 1.121746 1.963198 1.656930 1.190040 1.572595 1.492929 0.361221 1.844626 -0.592846 3.344143 -1.622124 -0.172644 -0.935098 0.873509 1.786744 2.934865 -0.026994 0.123016 0.740835 0.553546 -0.512859 -1.961441 0.785453 -0.416940 0.715264 -0.013360 1.470518 -0.058400 -0.610544 2.060360 -0.274497 -2.323818 1.647493 0.572373 1.166193 0.415164 0.441355 -0.105469 0.699634 -1.435860 1.332463 2.017571 1.193765 -1.700147 -0.480492 0.352553 1.777226 -0.983776 1.908280 -1.901457 1.267613 1.024073 0.975406 -0.000539 0.823087 -1.542696 -1.645665 1.426918 -0.414564 -0.293618 1.720568 0.883939 -1.804331 0.959828 -0.392904 -1.200242 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 2.556613 -0.570688 2.563294 -4.161997 -3.522614 -0.062804 3.089961 -4.339203 -2.127811 7.078450 1.885613 -3.517004 -1.530266 4.713632 -0.677455 -2.183449 1.319405 0.144131 -0.713747 -0.926167 -1.810335 2.128632 -1.715722 -3.683568 1.792337 -0.839847 1.376217 4.474381 -1.542496 1.904119 -0.005034 -2.829098 0.999804 8.011201 2.647656 -0.561488 -2.595186 10.047954 -7.039397 7.506158 -7.384873 -6.857905 10.115303 -1.142326 0.669125 -6.124784 -2.965226 4.758616 -0.375932 -4.869667 -0.627526 -0.875231 2.948651 -5.321752 -2.778696 4.889612 -6.599038 0.581863 3.871011 -6.143100 -6.990402 -1.204697 1.296680 2.267983 -7.706797 -5.104142 0.084474 -0.640101 -0.562779 0.489939 -4.851190 -5.808984 4.725584 1.299771 -1.690215 0.975219 -1.672195 -4.349765 3.923653 0.809591 -5.877170 -3.455155 -0.553277 -4.917959 3.223751 1.418059 7.596357 -10.908818 3.100343 -11.201625 3.297881 -4.952254 3.955889 7.325746 -3.155623 5.371289 1.882902 5.316094 1.652612 -0.054598 4.516127 3.354267 2.668533 1.982231 5.850455 6.184149 -4.548497 -7.106001 -5.141246 -3.960243 2.562153 -3.117792 -8.847431 3.490021 -3.641269 0.381521 -0.780481 -0.188865 -1.406730 8.757772 -8.490394 1.922154 2.882390 -1.731972 2.407417 4.476263 -0.267936 0.272415 -1.579934 3.992257 -1.044874 2.723760 0.368990 6.018663 -4.794838 -3.142281 -2.196434 2.121085 2.660212 -5.141674 -6.598569 -10.082708 -1.848901 4.943484 -3.716943 4.288494 11.434368 -4.549465 -6.316010 4.717386 0.607879 -1.716474 3.549353 2.056396 9.359847 -4.536922 -0.427992 -1.791444 -1.061085 2.959013 8.497801 -1.648350 -5.070838 6.033109 -2.986799 -6.132567 10.216478 0.137541 -1.313402 0.444101 1.189646 -2.081100 -4.056017 7.144244 -5.618739 6.356002 -3.782886 8.770891 -2.765749 -2.138716 1.896401 -6.995993 -2.605805 -5.548517 0.338934 -0.368755 5.340881 -4.652287 -4.371338 -2.269954 -3.258069 -1.807742 7.731191 -4.689720 -0.189629 1.239399 -1.366744 5.455167 3.337693 -1.991426 -1.333739 -5.023109 2.694521 4.034868 0.149733 -8.211917 -3.561440 -2.745931 -2.184755 -1.182705 0.870325 5.548075 -4.713294 -0.086959 3.213161 -0.198336 -0.907769 -0.299867 -7.819075 2.948962 0.390909 3.896855 2.410506 8.959495 5.368971 6.559572 0.474551 2.601053 -1.318280 -2.193316 -6.663793 1.876756 1.132021 1.684317 3.520096 5.673428 3.343783 3.788113 4.612749 1.360850 2.027969 6.739588 0.943558 8.081586 -2.817491 -1.574705 2.739158 0.416267 5.793257 7.075147 0.694492 -3.905871 2.807208 -2.686236 -5.987961 -2.512682 0.346836 -0.479224 -0.803293 3.855092 5.624508 -0.247355 -2.388239 10.091340 -0.769957 -13.164844 5.077136 2.263757 4.331442 6.292608 -1.578998 4.705408 3.395951 2.458776 4.467418 5.541590 3.828774 -7.750690 -0.184382 1.282092 3.934275 6.170630 1.873717 -14.077003 1.563104 1.158344 7.020770 -0.694305 8.693056 -5.459398 2.421392 1.528162 -1.175030 0.759658 -0.673220 3.302537 -1.439746 0.730964 -9.457155 0.749566 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 2.402706 -1.484120 2.316981 -3.934682 -1.477864 -1.137433 0.854617 -1.791929 -1.466639 2.986614 0.016157 -2.451070 -2.705093 4.130433 -0.984337 -2.739685 0.970107 -1.416929 0.872034 0.447399 -0.770754 1.943812 -0.071063 -1.689015 2.086860 -0.415242 -0.025749 3.419679 3.202760 -0.788242 0.011602 -2.215458 1.613518 5.864123 1.203912 -1.620467 -1.234726 8.234167 -1.929883 5.600655 -1.859268 -3.289725 6.572230 -0.943909 -1.260492 -4.071817 -2.326793 3.879989 -3.234817 -3.241864 0.894374 0.949674 1.210672 -4.016323 -2.569796 3.935308 -6.280811 2.158124 2.640308 -0.724306 -1.275906 -1.054223 -1.300351 0.487043 -2.706446 -3.404862 -0.234803 -1.839610 -3.821886 -0.623220 -2.591032 -1.069943 5.813289 1.804512 -1.473580 1.788010 1.055281 -2.293428 2.986711 -2.232261 -4.377003 -2.534478 -2.312205 -1.634757 4.851945 -0.047403 2.332205 -6.746404 2.060261 -6.735521 2.093409 -4.768231 2.238889 6.303553 -4.228712 4.891784 1.364653 2.779448 0.793298 -1.268576 4.909212 3.123105 0.092418 2.348391 3.829236 2.793368 -2.677223 -3.938396 -3.568779 -2.110178 0.794626 -2.786859 -7.006249 2.428365 -1.515068 0.682014 0.572163 0.205278 -2.728492 3.123358 -6.238473 0.503810 1.043947 -1.326218 0.859132 4.060199 -0.284480 -1.343211 -1.364268 4.559742 -0.475052 1.871179 1.799845 4.163613 -0.947413 -2.803175 -1.387350 0.129133 1.646070 -3.129214 -5.140844 -6.737338 -1.042575 -0.003871 -2.582062 3.971942 8.070424 -1.427730 -2.361988 4.791010 -0.149909 1.513950 3.365011 1.313073 5.206913 -1.665146 -3.389459 -0.699952 -2.741378 2.284891 3.137700 0.088167 -2.285816 4.180384 -1.559776 -1.252045 1.991117 -0.233526 -1.438710 -0.597496 -0.544559 -3.089004 -4.478253 5.202310 -3.187274 3.308826 -1.402691 7.081489 1.309622 -3.095923 1.759985 -3.313175 -0.435188 -5.189580 0.197362 -0.328583 1.605655 -4.933313 -3.388889 -1.319211 0.511913 -2.183922 4.638945 -2.171047 0.490522 0.791291 1.121225 4.907947 3.015370 -2.408212 0.980614 -4.524599 1.781303 2.065977 -0.068070 -5.608254 -0.607453 -0.588430 -1.689912 1.871412 -1.153171 1.884923 -3.917077 -1.230555 1.963358 -0.169996 -0.941862 0.568551 -6.609627 1.379873 2.007920 1.953781 3.967194 5.648621 4.171361 3.168742 0.252133 3.134286 -1.197589 0.692268 -4.810613 0.605106 -0.396561 1.747227 2.581312 3.482170 3.229872 2.498357 3.788356 3.241321 -0.701859 4.611349 1.038990 5.094805 0.752093 -2.945380 1.897130 0.207859 4.638827 5.284721 -0.166008 -1.997834 3.986944 -1.204601 -1.698534 -3.240863 1.126962 -0.579065 0.202826 4.018656 2.147207 0.467086 0.066127 5.182359 -2.662816 -8.510958 3.204404 2.620467 2.952947 2.697931 0.090145 3.147365 1.955119 -1.341630 1.975306 2.934345 2.769127 -4.613856 2.259265 0.880900 2.221580 2.948720 2.721299 -8.536605 -1.168137 0.725956 4.434460 1.066386 3.973151 -2.699819 -1.590266 2.496123 0.589165 0.535128 -1.580836 2.009816 -2.220998 0.282231 -2.591497 -0.093598 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 3.806460 -3.366066 4.283030 -10.412800 -5.099756 -1.178793 6.810751 -6.963308 -4.021864 13.335583 2.165910 -7.134663 -7.303751 9.726281 1.282243 -6.663659 2.649882 -4.546308 -0.597172 0.575470 -4.277224 4.646870 -3.241282 -7.053361 4.426878 -0.976586 1.615005 8.843601 1.780849 0.921138 -0.160000 -6.555416 1.251841 16.256365 4.714016 -0.732003 -5.160732 21.739416 -11.221352 17.707003 -12.435011 -13.372193 19.867519 -3.408374 -0.752380 -9.748391 -1.344441 10.994938 -4.940017 -9.998015 0.773155 0.523892 5.093398 -11.660727 -5.637089 9.795090 -14.577576 4.051992 8.184315 -7.757708 -10.431103 -4.490726 -0.172128 4.827244 -13.927641 -9.762223 0.293896 -4.960419 -6.198013 -0.777201 -10.249277 -8.144629 10.655753 5.665048 -3.838696 3.263485 -2.500279 -6.307172 8.199352 -2.148220 -12.028677 -6.941510 -2.327044 -8.599880 9.497111 3.397293 11.054042 -21.181200 5.200954 -21.497065 6.532538 -11.281210 8.084887 17.019839 -5.857078 12.454052 3.215924 8.794386 2.526043 -3.428381 9.735590 5.816401 5.438422 5.886107 10.960596 11.241362 -10.380875 -13.846782 -9.703206 -6.839009 3.938925 -6.004393 -14.910639 7.851819 -7.185161 1.085257 0.985894 1.611219 -6.935809 11.636733 -18.690101 0.966923 3.982005 -3.962610 7.468432 9.511502 -1.184899 0.152058 -2.829958 9.921909 -1.368812 7.177464 0.439376 13.065909 -5.413225 -2.417202 -4.110858 3.389124 6.101241 -10.158432 -14.197199 -20.045491 -4.618267 5.876696 -7.698784 13.114105 22.349129 -7.576878 -9.927223 11.839405 -4.264830 3.318184 6.819306 3.506090 15.442115 -7.398439 -2.311765 -2.188568 -2.499504 5.328464 17.337287 -1.495913 -10.585165 11.479273 -5.916593 -2.554134 9.879158 1.926752 -3.815906 -5.497508 0.942684 -7.737708 -10.995657 14.838434 -13.975616 11.436686 -5.645003 18.950225 -4.150443 -3.629104 6.311638 -13.241540 -3.570904 -13.965677 -1.519959 -0.116760 7.376572 -11.716061 -9.208522 -5.282683 -1.900159 -5.299025 13.864582 -8.860246 -1.228649 2.592969 0.137506 15.516859 7.487870 -5.114969 -2.526588 -11.430718 6.108440 6.393296 -0.118332 -13.041203 -5.717446 -3.363311 -5.491167 4.509784 0.861098 9.549572 -9.905885 -1.763676 7.190438 1.652568 -1.303109 0.945866 -20.105913 4.982968 4.911416 5.416545 8.226429 17.358454 8.985282 11.009865 1.620306 6.207068 -3.974156 -0.392345 -13.525804 2.258373 0.395277 4.447224 8.128647 10.747891 8.776144 7.142368 11.436614 5.358073 -1.906562 13.368056 1.124423 14.864698 -3.526207 -5.449168 6.671659 0.631574 12.061165 13.359927 -1.887560 -7.333226 9.291415 -4.654680 -9.889574 -4.289639 0.537023 -2.886837 0.880715 7.795140 7.848824 -0.485014 -3.188092 20.327934 -4.338119 -25.176991 9.836942 6.037773 11.111412 10.313586 -1.879891 8.481102 6.978130 -1.608127 9.375333 9.978662 7.272985 -13.255491 3.263986 2.592847 7.129677 10.666055 4.150110 -23.627498 -1.804756 2.152420 14.395938 3.077120 13.965918 -8.628599 1.344814 3.567630 -2.343216 2.783836 -3.025677 7.038852 -2.514990 1.545628 -15.842292 0.699591 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.483503 0.420282 0.637910 -1.152109 -1.099703 -0.108457 0.471337 -1.113581 -0.668778 1.348147 0.340107 -1.099377 -1.164484 1.270941 -0.634276 -1.093145 -0.249628 -0.482593 -0.425876 -0.969316 -0.416567 0.554697 -0.248598 -0.894979 0.377927 -0.511352 0.265143 1.039136 0.541070 -0.009341 0.210812 -0.619978 0.707049 2.039236 0.609312 -0.026964 -0.600229 2.479268 -0.800606 1.359503 -2.175222 -2.048620 2.487594 -0.195704 0.007490 -2.173239 -0.597938 1.172796 -1.113889 -0.195704 -0.244262 -0.073875 0.193522 -1.296128 -0.588856 1.480735 -2.250153 1.626480 0.656356 -1.407843 -1.372322 -0.423963 0.049509 0.345764 -0.589863 -1.245817 -0.180048 0.244339 -0.977913 0.480664 -0.968757 -0.980912 1.803682 0.279133 -0.516322 0.338270 -0.498931 -0.420913 0.827653 -1.006274 -1.188150 -0.830868 0.578919 0.083589 0.740452 0.857845 1.002578 -2.747697 -0.156484 -2.514073 0.928635 -1.246773 1.124579 1.491560 -0.911315 1.499990 0.314714 -0.308309 0.572385 0.149245 1.212953 0.355231 1.173343 0.703633 0.937207 1.259936 -0.739549 -1.469691 -0.831047 -1.075240 0.201924 -0.229604 -2.317187 0.657399 -1.064955 0.206475 -0.098722 -0.063129 -0.340714 1.168216 -2.260143 -0.546897 0.596340 -0.425303 1.156770 0.957791 0.020433 0.428579 -0.361954 1.216613 -0.055375 0.719563 -0.052782 1.350717 -0.250800 -2.116299 -1.567761 0.494577 0.646397 -1.127035 -1.730923 -1.934435 -0.708334 0.585420 -0.908286 1.043504 2.797462 -0.828442 -1.786797 1.508875 0.027218 0.404267 1.350316 0.545685 2.466541 -1.097639 -0.040011 -0.073967 -0.290651 0.957182 1.619759 -0.498020 -1.441265 1.211221 -0.178175 -0.938770 0.436081 -0.340216 -0.530335 -0.440192 0.041044 -0.782130 -0.965846 1.576812 -0.700321 1.980760 -0.944040 2.346453 -1.168226 -1.453480 0.483849 -1.717055 -0.503210 -0.720804 0.253676 -0.142445 1.168611 -1.650784 -1.195487 -0.383120 -0.476920 -0.665390 1.732847 -0.837799 -0.104873 0.223991 -0.037676 1.598269 1.042159 -0.705125 0.044534 -1.503793 0.584428 1.182654 0.802909 -2.720416 -0.450830 -0.465734 -0.592565 0.497063 0.056651 1.022335 -0.333786 0.088504 0.598841 -0.552988 0.264839 -0.023116 -0.859001 0.770331 -0.246415 0.598761 0.269992 2.163090 1.609316 1.151293 0.141682 0.728495 -0.118640 -0.927092 -0.247510 0.472376 0.686164 0.080876 0.971195 1.510898 0.854313 0.781522 1.700233 0.771761 -0.450987 1.627417 0.065969 2.222579 -1.583189 -0.172576 0.217880 0.114174 1.459214 2.281670 -0.212784 -1.283446 0.999446 -0.368359 -0.457236 -1.146968 -0.290045 -0.311449 -0.381734 1.727226 1.407980 -0.388642 -0.342369 2.586675 -0.152293 -2.724020 1.859731 0.771057 0.844345 0.420816 -0.644766 0.157751 1.458904 -0.173858 0.212483 1.253994 1.094518 -1.880738 -0.506255 0.048076 1.335513 1.017537 0.497553 -3.105885 -0.139642 1.065455 1.990804 0.112957 1.593358 -1.140885 -0.608446 0.446058 0.161930 -0.014918 0.135034 0.675329 -0.829997 0.306220 -1.102124 -0.294676 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.784417 -0.139030 0.776854 -1.455384 -0.779581 -0.169936 1.364356 -1.259832 -0.710645 1.444395 0.433366 -1.025390 -1.248755 1.485996 -0.298959 -1.026638 0.496969 0.083363 -0.431601 -0.318559 -0.760347 0.538053 -0.518591 -1.062365 0.763564 -0.282949 0.472476 1.711040 0.297043 0.213847 -0.229230 -0.820073 0.350118 2.729212 0.684476 -0.120222 -0.627259 3.613094 -1.688291 2.399943 -2.449750 -1.900870 3.522876 -0.477821 -0.355389 -3.128578 -1.246048 1.534800 -0.864589 -1.117565 -0.086677 -0.242273 0.463522 -1.827845 -0.632613 2.254653 -2.669131 0.758664 1.319920 -1.576026 -2.167229 -0.702126 0.320941 0.024195 -2.098266 -1.709050 0.151864 -0.541287 -0.854253 0.469467 -1.976206 -1.791918 2.039685 0.543181 -0.739605 0.563278 -0.506345 -1.318441 1.056700 0.231736 -1.651686 -1.154949 0.274352 -0.857703 1.506945 0.308090 1.800567 -3.807908 0.156386 -3.803791 0.785868 -2.319684 1.588494 2.579119 -1.367187 2.146873 0.425852 0.934942 -0.030849 0.101918 1.693806 0.971097 1.024948 0.398773 2.073607 1.562686 -1.187037 -2.487822 -1.487502 -1.189065 0.394846 -0.687588 -3.779715 0.983071 -1.794606 0.180949 -0.276917 0.364666 -0.569217 2.150727 -2.710189 0.729131 0.925559 -0.721066 1.258326 2.072984 -0.135024 0.141004 -0.804573 1.497957 -0.093608 1.177315 -0.455972 1.788575 -0.936439 -1.941219 -1.170536 0.072780 0.948509 -1.455522 -2.545870 -2.933285 -0.943188 1.045742 -1.124525 1.120705 3.813796 -1.157547 -2.167903 1.812127 0.032626 0.679432 1.510528 0.722681 3.636571 -1.654521 0.205735 -0.323398 -0.034027 0.863528 1.464034 -0.735581 -1.774097 1.638910 -0.736296 -2.057136 3.140807 -0.301497 -0.370542 0.635924 0.149018 -0.757921 -2.007931 2.946002 -1.426136 2.645045 -1.208954 3.096395 -1.120801 -1.126434 0.650785 -2.067998 -0.336372 -1.946751 0.073720 -0.484511 1.925214 -1.698621 -1.744414 -0.683976 -0.783353 -0.465038 2.704208 -1.070554 -0.301158 0.047378 -0.140715 1.545083 1.206162 -0.977697 0.025300 -2.206194 0.900513 1.657538 0.179479 -3.097270 -0.521034 -0.607570 -0.878393 -0.322871 0.296643 1.378782 -1.224784 -0.368002 0.998106 -0.053915 -0.030784 -0.082392 -2.764012 0.864001 -0.124891 0.661566 0.869738 3.084730 2.377634 1.571833 0.113740 0.678884 0.045656 -0.953713 -2.102852 0.432070 0.067962 1.075730 1.115363 1.622424 1.215441 0.893663 1.308089 0.380771 0.355766 2.164233 1.290739 3.012908 -0.766033 -0.922718 0.821154 -0.321937 1.928334 2.745944 0.359987 -1.039170 1.205701 -0.191193 -1.658380 -2.008503 -0.331487 -0.237607 -0.906422 1.993569 1.388159 -0.542923 -0.543168 4.046178 -0.495048 -4.429904 1.687444 0.788156 1.275980 1.625158 -0.346212 1.103170 1.766492 0.433097 1.028545 1.247921 1.446679 -2.457934 -0.013412 0.244481 1.300899 1.508292 0.244652 -4.630030 0.492735 0.589613 3.056669 0.429944 2.460678 -1.125060 0.714994 0.343524 -0.287229 0.241789 -0.235275 1.410376 -0.646606 -0.195831 -3.219939 -0.034171 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 1.761193 -0.214243 1.391883 -2.199798 -1.162084 -0.082540 2.345462 -2.538339 -1.319073 3.876643 0.712825 -1.802728 -1.351412 1.911926 -0.435243 -1.120495 0.753861 -0.206808 -0.595201 -0.679946 -1.177531 0.773539 -0.912207 -2.537617 0.955312 -0.541196 1.299927 2.806812 -0.748270 1.342861 0.071310 -1.617088 0.797171 4.603391 1.598630 -0.194875 -1.701929 5.397673 -3.863346 3.966706 -3.984748 -3.927640 5.898828 -0.669159 0.155828 -3.773923 -1.300034 2.719274 -0.666378 -2.802876 -0.806272 -0.548245 1.487955 -3.407175 -1.996539 3.194703 -3.911156 0.288094 2.069481 -3.383108 -4.325025 -0.885967 1.198585 1.296323 -3.978886 -2.959846 0.150526 -0.893213 -0.729784 0.668419 -3.317742 -3.098357 2.212771 0.762767 -0.798113 0.435889 -1.376905 -1.971906 1.948560 0.598066 -2.666116 -2.140595 -0.119179 -2.453845 1.583698 1.172786 3.751510 -5.815644 1.234185 -5.796968 1.740149 -2.930304 2.445604 3.804958 -1.316184 3.492445 0.760955 2.635898 0.285534 -0.451614 2.314418 1.534368 2.036299 0.830154 3.277855 3.203182 -2.650316 -4.133651 -2.933985 -1.920110 1.413299 -1.730120 -4.823643 1.944191 -2.641078 -0.165657 -0.450159 -0.131212 -1.164216 4.249892 -5.203902 1.241186 1.443890 -0.996622 1.856924 2.429188 -0.061191 0.421205 -0.521411 2.065213 -0.090749 1.431606 0.171185 3.381075 -2.380683 -1.875751 -0.966137 1.239498 1.790474 -2.819879 -3.858222 -5.463824 -1.377615 2.508285 -2.005973 2.385557 6.092645 -1.886347 -3.338682 2.248565 -0.319703 -0.185968 2.043216 1.234900 5.269413 -2.911277 0.268501 -0.449722 -0.035346 2.032242 4.418214 -1.427680 -3.091522 3.540558 -1.736448 -2.126250 4.529643 -0.046647 -0.364127 0.278647 0.542948 -1.156855 -2.460502 4.201688 -3.436843 3.863717 -2.173749 4.786007 -1.959185 -0.929959 0.910358 -4.256004 -1.540492 -3.336867 0.252597 -0.811967 3.133278 -2.873284 -2.601134 -1.433389 -1.389298 -0.660226 4.662715 -2.890709 -0.370364 0.324677 -0.893343 3.175043 1.339129 -1.531586 -0.712866 -2.914412 1.400005 2.359417 0.593822 -4.547222 -2.149453 -1.469616 -1.399390 -0.434586 0.566768 3.092290 -2.522543 0.072012 2.115996 0.050088 -0.775847 -0.414003 -4.549005 1.669609 0.260550 1.572246 1.199281 5.233154 3.096528 3.089139 -0.093538 1.202931 -0.476711 -1.559592 -3.984100 1.040251 0.463367 1.016406 1.938947 2.708617 1.590138 2.025801 2.575836 0.699745 0.589382 3.704294 0.942610 4.011440 -1.785585 -0.941156 1.656644 -0.039207 3.026025 3.373677 0.839631 -2.526226 1.672302 -1.783965 -3.139421 -1.562235 -0.199530 -0.308050 -0.483942 2.713183 3.159530 -0.386290 -1.320235 5.960891 -0.400386 -7.297395 2.819766 1.428304 2.316681 3.417468 -1.404713 2.728813 2.324353 1.632075 2.018938 2.589309 2.081827 -4.228831 0.409280 0.695667 2.288819 3.034108 0.269986 -8.184649 0.560546 0.536691 4.202434 -0.048999 4.848205 -2.862096 1.705617 0.559754 -0.360814 0.811114 -0.401388 2.364597 -0.550385 0.245851 -5.503624 0.976209 +PE-benchmarks/cut-vertices.cpp__main = 4.800740 -1.899701 5.070003 -8.429675 -9.246657 0.210193 -0.268269 -7.992092 -3.494334 9.184152 3.072767 -7.375164 -3.542126 11.005085 -3.975201 -8.045853 0.372652 1.972401 -0.003918 -2.912495 -3.936004 5.367237 -3.733984 -6.045357 4.838583 -3.557337 0.686885 7.660136 3.467624 2.506157 -1.108335 -5.724248 1.208484 17.256491 4.575620 -0.817377 -1.647474 22.794440 -5.988449 11.594796 -13.699223 -14.133092 18.015449 -2.382608 1.712295 -8.932828 -7.067207 8.637330 -9.954444 -2.880033 0.986481 -1.497352 3.559205 -9.106461 -2.079770 8.215832 -17.774009 8.197769 6.785915 -8.655404 -10.140523 -4.287746 -1.893503 1.391626 -8.248953 -9.824661 0.019156 5.072990 -4.182822 1.129249 -7.408424 -10.027237 14.975738 3.107599 -4.702768 3.657421 -0.165450 -6.974392 7.508397 -4.786368 -13.552202 -6.728347 1.960480 -5.169101 9.793537 4.968102 12.462710 -22.219691 5.699492 -23.076862 7.797205 -11.310629 9.497719 16.722016 -12.480141 11.043690 6.014247 7.618969 6.341191 3.124877 12.364868 5.639447 2.498820 5.146129 8.322168 9.711199 -5.918327 -10.167385 -7.883336 -8.905150 0.339945 -4.195341 -20.187523 5.858631 -7.435406 6.264894 -2.682775 1.883568 -2.791443 11.907212 -18.475364 -1.664795 4.916981 -3.934966 7.624591 7.674533 -1.604296 0.723828 -5.002048 10.978923 -4.374145 2.676292 -1.806416 11.895520 -5.943679 -11.896648 -12.954774 2.602605 5.392340 -11.173144 -15.654788 -17.223509 -4.276351 6.524632 -7.091038 11.564907 24.310533 -8.932303 -12.003035 13.384019 -1.308689 2.356465 13.645290 5.042187 16.638780 -7.674593 -1.339978 -3.771263 -3.025758 3.719565 3.352513 -1.519377 -9.583165 10.436599 -1.253410 -5.553419 14.620326 -1.302429 -4.794283 -6.452418 2.090910 -6.023375 -7.378710 16.197499 -7.266549 12.566558 -5.429582 20.402396 -6.746138 -10.225574 4.667879 -12.663842 -3.601019 -7.155274 1.240404 -1.193505 8.955889 -13.191343 -10.487172 -1.602972 -3.992485 -5.071560 12.013723 2.315728 -0.487464 3.295383 -0.505298 11.783018 9.991713 -2.694748 0.545982 -12.291818 4.903903 8.097264 -1.614624 -17.608289 -3.271641 -3.868089 -3.929746 1.295706 2.057323 8.699403 -7.725486 -2.177856 2.493407 -0.584946 3.821234 1.232444 -10.372009 6.001197 -1.007993 5.270065 6.157277 15.401823 14.418790 12.215687 3.057540 5.245738 -1.450074 -4.523498 -1.998143 3.950495 4.528276 4.617173 6.914598 12.452481 8.891618 6.402456 8.561394 5.924394 1.777177 14.286405 2.876881 19.648839 -8.178972 -2.087060 2.578614 0.549803 13.764079 17.957721 -4.421605 -4.443871 7.096497 -1.393568 -5.698906 -9.385381 1.089867 -1.499766 -3.664869 6.001813 7.271361 -1.299564 -4.387132 19.711409 -1.735833 -22.695187 13.413050 4.931298 8.272457 5.999693 -1.275492 3.148222 7.997754 -2.532844 8.403608 10.202952 9.140319 -14.497255 -1.914789 1.385599 10.149993 8.765110 6.626343 -17.888085 3.942139 6.646360 12.933874 2.098307 9.015774 -9.083412 -4.667337 2.131853 -4.572800 -0.993883 0.457721 4.752332 -4.440380 3.656345 -10.252373 -6.617048 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = 4.937717 -0.992165 4.618426 -6.259295 -5.486773 0.889288 3.723183 -7.573145 -3.617026 12.460398 3.189205 -5.917565 -2.107565 5.826817 -1.477138 -3.113216 2.263972 0.078107 -0.334998 -2.878524 -3.319229 2.594011 -3.012046 -7.580105 2.558875 -2.487063 2.724003 7.376318 -2.914758 5.562810 0.306092 -4.911960 2.017161 14.098452 5.530702 -1.355341 -4.174751 15.953652 -10.098227 11.246025 -10.863381 -12.779914 16.641144 -1.538001 2.775614 -6.574547 -3.299158 7.936000 -2.547524 -7.451882 -1.682789 -2.248682 6.014729 -8.950162 -6.207909 7.013736 -11.130592 0.850325 5.485090 -10.727129 -12.132203 -2.262223 1.781629 4.936443 -11.009274 -8.170046 0.143915 0.800249 -0.606083 0.784293 -8.418608 -8.957575 6.279723 2.238310 -1.846336 0.821760 -2.697424 -5.648030 6.106853 1.446176 -9.788779 -5.948717 -1.486409 -8.359891 5.251623 3.970353 12.844259 -17.136211 5.393168 -18.554925 6.243682 -6.803167 6.966725 11.617537 -5.131237 8.802536 3.974705 9.714176 2.524047 -0.256885 7.827228 5.121399 4.141536 3.795368 9.630855 10.329081 -7.447724 -10.870502 -8.081214 -6.022011 3.717709 -5.336193 -12.298231 5.796685 -6.909865 0.540591 -1.859530 -0.363897 -3.351956 13.356791 -15.393574 1.156394 3.975194 -2.798682 5.262300 4.348907 -0.268383 1.213472 -0.899981 7.121754 -1.988667 2.086120 1.006312 10.590298 -6.852268 -4.963839 -4.657347 5.304670 5.581766 -9.220747 -11.747695 -16.293689 -3.354350 8.212555 -5.943356 8.222470 17.977180 -6.187098 -9.150244 7.457053 -1.746991 -2.780531 7.555485 4.082040 13.882143 -7.750226 -0.392793 -2.324372 -1.702704 4.874583 12.714519 -3.395512 -8.095959 10.837166 -3.704304 -3.998731 12.871638 -0.354112 -2.149945 -2.290806 1.876574 -3.636141 -5.552799 11.077079 -9.564626 8.691384 -5.294072 14.993151 -5.025393 -4.280471 3.197953 -11.705200 -5.097752 -7.559345 1.728731 -1.321009 8.314781 -8.629818 -8.054108 -3.112130 -3.725529 -2.807459 12.699183 -5.851237 -0.252911 3.011091 -2.920620 8.991888 4.388011 -2.936648 -2.547300 -7.364747 3.632571 6.272342 0.609908 -12.237268 -6.884872 -4.610457 -3.266063 -0.917061 2.234536 10.036605 -7.525594 0.355994 5.323389 0.032914 -1.099630 -0.007535 -11.610539 5.776120 2.076904 5.096245 3.774493 15.067575 8.663527 10.485816 0.258236 4.416755 -2.451567 -3.505935 -9.393482 3.030075 2.944268 2.674565 5.376411 9.272338 5.127100 7.036428 7.669494 2.834011 2.758483 11.112636 0.309460 11.615222 -6.058628 -0.774297 4.543235 0.838373 9.838810 10.641874 1.319533 -7.610034 4.239728 -5.939463 -9.027473 -3.145688 1.135136 -0.610455 0.117971 4.432622 10.187489 0.520815 -4.909063 16.220864 -0.463885 -20.615270 9.587717 4.218539 7.139837 10.372139 -3.968211 7.590112 4.738174 4.205285 7.827099 9.257436 5.896336 -13.218673 0.601001 2.158422 7.399179 8.964342 2.539776 -20.537162 2.262920 1.646785 10.190778 -0.314482 12.617655 -9.941444 2.541589 1.688305 -3.084020 1.190962 -0.449602 5.751366 -2.146989 2.942729 -13.716943 1.414067 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/program-wish-womens-day.cpp__main = 3.892793 2.587473 3.727559 -7.737040 -2.858729 -1.323231 8.179237 -5.092062 -4.337880 13.999628 -1.006148 -3.666570 -5.433185 4.832257 -1.502987 -3.676883 1.551433 -5.729011 -3.802793 -3.319682 -5.501485 2.190064 -1.432856 -7.876043 3.237245 -2.420758 4.033446 7.263081 -3.826309 1.179091 2.857696 -5.006015 2.849256 12.290512 2.945324 0.969384 -5.188889 12.159818 -9.096629 11.787085 -11.693987 -9.998971 15.107224 -2.159099 1.640604 -13.464655 0.776054 7.182432 0.545031 -6.444756 -3.693903 -0.768957 2.166927 -9.865485 -4.178154 8.638934 -7.394578 2.108425 5.360349 -8.065134 -11.056633 -3.089301 3.222780 3.619193 -10.256898 -9.199433 -1.479411 -3.548320 -4.735137 3.400012 -10.136979 -4.745736 1.827174 3.758822 -1.862516 1.085235 -5.721909 -2.904987 3.213009 -3.244432 -4.200115 -6.535451 2.172351 -3.168969 2.522004 3.794213 7.895306 -13.670509 1.386707 -12.210706 2.274837 -6.985123 6.662810 9.350792 3.541073 9.278577 -0.617561 1.690378 -0.634992 -3.125873 4.324340 2.916485 8.693223 1.872315 8.285492 8.861918 -8.283415 -13.780516 -4.995353 -3.826958 3.722656 -3.293318 -7.983660 5.707758 -6.612652 -2.751490 0.360704 0.509400 -5.756578 8.312779 -14.933021 -1.975424 3.544440 -2.954740 5.472773 4.531927 0.505315 1.436428 1.344284 3.240204 3.376474 6.015278 0.567035 9.525803 -5.280209 -3.781030 -1.403784 0.945541 4.327893 -6.517973 -9.882474 -12.867863 -5.162985 4.757052 -5.766537 7.394970 15.274286 -3.145998 -8.595351 4.440844 -2.731030 0.410961 2.468685 2.972640 11.633263 -7.895373 0.907963 1.154592 1.680317 7.269792 19.973140 -5.086327 -10.153420 9.327350 -6.230181 -1.401212 1.272243 1.007441 0.823368 -0.293143 -0.517276 -2.707798 -5.681164 9.462133 -12.816788 12.339321 -7.506339 12.363917 -6.474999 -1.980314 3.142343 -12.675902 -2.501251 -10.234307 0.851012 -0.887155 7.184032 -6.965806 -7.125969 -4.161289 -3.681444 -1.089909 12.859427 -14.977487 -1.967805 -2.068587 -1.755351 14.656847 3.242000 -6.016221 -0.721632 -6.714750 6.243921 5.620638 5.801943 -10.841860 -6.036255 -0.793771 -5.906358 1.208691 0.910449 5.830457 -3.918175 2.084268 8.016605 -1.620577 -5.333326 -1.199784 -11.175757 3.853598 0.921639 3.474510 1.430055 14.246368 5.185770 4.941145 -1.868339 2.129696 -2.975307 -5.230394 -11.377894 3.955262 0.339063 -1.114302 6.039648 5.971512 3.495399 5.290567 9.297382 3.032094 -3.847596 8.550324 -0.153882 7.543114 -7.184728 -1.939157 4.950243 -0.687163 7.086893 7.762252 2.285170 -10.377820 6.787341 -5.418322 -7.621554 -2.105287 -3.091824 -1.983060 -0.654179 8.339834 8.995414 -3.020016 -1.275608 16.608692 -1.965279 -16.914288 6.334494 3.717392 5.596582 6.953651 -5.005466 6.386135 7.128156 3.736820 1.681700 4.847401 4.028743 -9.314721 2.060204 2.013603 5.050613 8.272911 -0.568333 -22.856707 -4.322950 1.971301 12.157735 0.542674 15.777413 -5.570046 4.965930 2.935199 2.490579 2.384867 -1.914184 5.470678 -1.736359 1.097654 -12.687912 5.620825 +PE-benchmarks/naive-algorithm.cpp__main = 0.754696 -0.130665 0.362078 -1.208468 -0.825102 0.228722 0.130083 -0.916192 -0.472812 0.815090 0.314790 -0.653561 -0.590370 1.126352 -0.177540 -1.000122 0.149763 -0.869255 -0.140387 -0.057255 -0.520930 0.560470 -0.463541 -0.530236 0.383616 -0.106007 0.025236 0.678029 0.505320 -0.341486 -0.494224 -0.596726 -0.076161 1.953077 0.704387 -0.344784 -0.068105 2.727772 -0.418844 1.186020 -1.364241 -1.378851 1.753492 -0.345563 -0.350253 -1.064152 -0.387865 1.101030 -0.843019 -0.373942 0.392213 -0.236754 0.122397 -0.850535 -0.358874 1.173936 -2.105304 1.127336 0.817406 -0.255683 -0.944884 -0.720018 0.200643 0.135174 -0.787960 -1.053684 0.363733 0.039663 -0.814098 0.017006 -1.092532 -1.197980 1.638574 0.770949 -0.535149 0.215975 -0.229128 -0.904870 0.838964 -0.635706 -1.572534 -0.566778 -0.020807 -0.742414 1.496964 0.180476 0.900338 -2.521592 0.739144 -2.616041 0.431931 -1.391355 1.046926 1.975938 -1.137101 1.008117 0.420712 0.866327 0.438417 -0.210811 1.408560 0.355295 0.219428 0.573104 1.024853 0.873352 -0.703400 -0.911792 -0.700312 -0.976683 0.042969 -0.321125 -2.124227 0.825048 -0.939642 0.348992 -0.194625 0.418355 -0.681319 0.835681 -1.986170 -0.685664 0.160566 -0.452427 1.187438 1.271290 -0.272217 0.299528 -0.644151 1.360656 -0.200620 0.713681 -0.408308 1.174622 -0.394030 -0.945476 -1.464240 0.293522 0.939802 -1.161482 -1.905084 -1.933299 -0.532645 0.137137 -0.860526 1.948512 2.707997 -0.951634 -1.287561 1.760561 -0.271815 0.708537 1.548953 0.273423 1.900708 -0.856785 -0.096834 -0.102186 -0.258776 0.008509 -0.113747 -0.228657 -0.755868 0.945255 -0.343804 0.178940 1.334945 0.145980 -0.743434 -0.321285 0.003844 -0.800235 -1.485184 1.884907 -0.521238 1.288649 0.127057 2.293017 -0.632621 -0.891661 0.742000 -0.976441 -0.167847 -1.200898 -0.271354 -0.267511 0.967308 -1.321535 -1.094717 -0.137600 -0.067840 -0.822330 1.221063 0.578979 0.058137 0.369471 0.267239 1.352156 1.471184 -0.470776 0.093394 -1.517264 0.633194 1.095036 -0.184791 -1.354449 -0.362207 -0.452892 -0.505594 0.698451 0.055558 0.857332 -1.037518 -0.477146 0.482501 0.308080 0.617392 0.484841 -2.000842 0.655097 -0.064818 0.239494 0.834379 1.741514 1.211537 1.287536 0.540888 0.245456 -0.069380 -0.040399 -0.624534 -0.167848 0.205779 0.954913 0.904670 1.081678 1.056483 0.707346 1.029703 0.792952 -0.153292 1.515666 0.471965 2.247930 -0.564745 -0.449337 0.175691 -0.157445 1.472696 2.095238 -0.783321 -0.423257 0.933638 -0.067705 -0.657403 -1.369553 0.041259 -0.449823 -0.084856 0.430151 0.542395 -0.124564 -0.450113 2.383035 -0.436780 -2.620950 1.317822 0.656413 0.995891 0.872602 -0.110260 0.491865 0.872499 -0.825479 1.038239 1.260984 1.034080 -1.222877 0.301802 0.119973 1.085669 0.098596 0.695043 -1.667944 0.412977 0.649072 1.604283 0.777545 0.879753 -0.849332 -0.405289 0.444799 -0.355963 0.115968 0.132323 1.045017 -0.564004 0.246520 -1.255963 -0.532756 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 1.429402 0.519020 1.818515 -2.503555 -1.334377 -0.503260 3.270273 -2.778492 -1.821895 5.703456 0.601894 -2.448608 -1.771606 2.259610 -0.326086 -1.426751 0.486437 -1.015523 -1.162972 -1.438686 -1.421105 1.083989 -0.884110 -2.996521 1.207215 -0.647779 1.805116 2.772752 -1.322391 1.283877 0.984464 -2.034038 1.756074 5.328490 1.736175 0.170973 -2.752796 5.686099 -4.403785 5.107949 -5.118094 -5.222015 6.930521 -0.740107 0.154088 -4.708129 -0.372574 3.601766 -0.061683 -3.573682 -1.285998 -0.084100 1.512682 -4.438556 -2.660476 3.645377 -4.111239 0.841822 2.393028 -4.621232 -5.416443 -1.023764 1.472528 1.899002 -4.417467 -3.208922 -0.332138 -1.434647 -1.194653 0.977892 -3.626905 -3.200341 2.191580 0.862392 -0.939328 0.690255 -2.189042 -1.296269 2.308059 0.160561 -2.536938 -2.770682 0.313970 -2.156926 1.029424 2.033817 3.937674 -6.918179 0.994570 -6.190838 2.463660 -2.765208 2.889169 4.096525 -0.516828 4.254295 0.439492 1.963903 0.158847 -1.199127 2.271563 1.333220 3.312506 1.426949 3.444228 4.370723 -3.671047 -5.503828 -3.269913 -2.359604 2.395147 -1.568941 -3.977894 2.247397 -2.962224 -0.843063 0.064649 -0.519299 -1.614818 4.315198 -6.338469 0.237058 2.023846 -1.187589 2.577172 2.493298 0.166442 0.951164 -0.263663 2.253035 0.190399 2.154003 0.431700 4.156651 -2.368786 -1.942405 -0.762913 1.597954 1.896527 -3.040022 -4.112859 -6.836195 -1.765712 2.859698 -2.650206 2.517646 6.879823 -2.056633 -4.077883 2.624127 -0.322475 -0.239704 1.408539 1.377488 6.103670 -3.444150 0.184489 -0.123000 -0.020597 3.395311 7.906301 -1.597300 -4.024758 4.396530 -2.232408 -1.909446 3.033528 -0.142943 -0.502106 -0.367317 0.669177 -1.577897 -2.509297 4.071707 -4.164318 4.139456 -3.352065 5.514465 -2.767363 -1.090832 1.006629 -5.935406 -2.132471 -4.132713 0.238914 -0.680655 3.817087 -3.642716 -2.841529 -1.592237 -1.706102 -1.014802 5.102667 -5.790738 -0.622397 0.073209 -0.881199 4.712949 1.157231 -2.047730 -1.259163 -3.352288 1.305930 2.585132 2.099646 -5.282172 -2.657044 -1.692831 -2.076942 0.033975 0.312347 3.265892 -2.284173 0.735430 3.072319 -0.837711 -1.412938 -0.762384 -5.154841 1.948411 0.594247 2.133527 0.924827 6.380481 2.906174 3.252577 -0.172214 1.785330 -0.737998 -2.170763 -4.929613 1.412528 0.616885 0.531782 2.690418 2.810818 2.129388 2.291539 3.889287 0.567987 -0.590379 4.240994 0.028455 4.243859 -2.596882 -0.751081 2.122584 0.370126 3.306006 3.807862 1.220238 -4.096714 2.508323 -2.743528 -3.553551 -1.087135 -0.541305 -0.616643 0.006214 3.511409 4.336684 -0.968487 -1.156041 7.163798 -0.894296 -8.270653 3.559527 1.876153 2.921063 3.538633 -1.978444 3.039267 3.042902 1.866901 1.530118 3.001756 2.664893 -5.211388 0.596590 0.512639 2.746519 4.176359 0.217802 -10.216460 -0.547927 0.771111 4.927038 -0.420144 6.202895 -3.331141 1.932310 0.876331 0.312282 0.919343 -0.428561 2.812129 0.037054 0.246572 -6.149640 1.824105 +PE-benchmarks/kmp-algorithm.cpp__main = 1.012409 -0.144074 0.572468 -1.375136 -1.013446 0.122032 0.902938 -1.256883 -0.658086 1.381164 0.468059 -0.983724 -0.978028 1.606886 -0.199447 -1.080797 0.260968 -0.780917 -0.285966 -0.070389 -0.785092 0.722561 -0.595990 -0.948634 0.623105 -0.154725 0.199746 1.453373 0.404918 -0.011360 -0.404182 -0.831789 0.136785 2.617091 0.881440 -0.457161 -0.300704 3.803714 -1.617244 2.097285 -1.985052 -1.899523 3.283166 -0.472711 -0.575068 -1.935771 -0.844410 1.603235 -0.916335 -1.016732 0.260929 -0.246120 0.393479 -1.432171 -0.639149 1.921309 -2.835973 1.056597 1.184221 -0.877705 -1.815271 -0.869021 0.229123 0.313204 -1.761946 -1.524518 0.319540 -0.443169 -0.755425 0.066855 -1.713027 -1.739602 2.343864 0.764565 -0.693920 0.350557 -0.470304 -1.243434 1.173591 -0.320770 -1.973551 -0.886840 -0.000276 -1.041712 1.668298 0.416239 1.586424 -3.573172 0.545170 -3.773988 0.769177 -2.088280 1.410355 2.622604 -1.415147 1.897774 0.510118 1.146966 0.436937 -0.134181 1.767759 0.758430 0.828569 0.707273 1.612893 1.686570 -1.260185 -1.883316 -1.551864 -1.238807 0.396623 -0.471704 -3.221664 1.130570 -1.438688 0.323005 -0.214768 0.468694 -0.784513 1.930372 -2.492783 0.271424 0.508795 -0.599114 1.463536 1.890532 -0.269193 0.313437 -0.771183 1.621988 -0.192464 1.128853 -0.388092 1.721525 -0.909285 -1.483866 -1.436550 0.437522 1.123489 -1.626257 -2.437138 -3.039608 -0.709890 0.663203 -1.220099 1.830272 3.914456 -1.324461 -1.858942 2.089288 0.055814 0.824634 1.674942 0.465538 3.195511 -1.426497 -0.069485 -0.167822 -0.278761 0.407787 1.298733 -0.420635 -1.334278 1.445031 -0.554331 -0.966282 2.837150 0.161963 -0.773851 0.261161 0.123293 -0.861104 -2.139620 2.817864 -0.816874 2.137130 -0.510077 3.198783 -0.913363 -0.961598 0.893685 -1.441603 -0.384389 -2.113053 -0.204855 -0.271626 1.540222 -1.683994 -1.476293 -0.606616 -0.355763 -0.909565 2.144404 -0.127740 -0.020091 0.360398 0.056579 1.410511 1.637990 -0.737819 -0.052772 -2.219911 0.816711 1.508810 -0.182053 -2.522704 -0.701017 -0.656641 -0.744250 0.478210 0.128832 1.314979 -1.475970 -0.427926 0.938153 0.238365 0.363575 0.354425 -2.941053 0.899562 0.002356 0.591544 1.041562 2.747272 2.044639 1.793686 0.508064 0.858243 -0.190210 -0.303804 -1.633566 0.167605 0.218366 1.236686 1.240642 1.716109 1.333283 1.017274 1.309246 0.546335 0.016169 2.110531 0.949754 3.238494 -0.839958 -0.862543 0.503885 -0.083409 2.010077 2.674752 -0.312586 -1.017003 1.157545 -0.412519 -1.400923 -1.590989 0.002653 -0.452672 -0.206460 1.347598 1.031458 -0.179949 -0.607033 3.633469 -0.577644 -4.251781 1.679156 0.864356 1.441103 1.532875 -0.278488 1.078184 1.567743 -0.235593 1.415397 1.661306 1.468513 -2.113302 0.293450 0.223367 1.381026 0.858774 0.716363 -4.011292 0.459166 0.691954 2.443913 0.618961 2.092574 -1.278312 0.078864 0.498983 -0.350608 0.274850 0.035041 1.454910 -0.683443 0.336805 -2.767409 -0.250902 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 2.717964 0.451971 2.870468 -3.336894 -2.276096 -1.036712 7.134546 -4.481946 -2.748264 8.533827 1.368243 -4.099420 -3.709897 4.662280 -0.435621 -1.830128 1.042462 -0.573829 -1.890867 -1.504359 -2.741911 1.894443 -1.546353 -5.088508 2.404659 -0.891367 2.677667 6.649472 -1.824404 2.934509 1.434673 -3.209350 2.820803 8.648560 2.621441 -0.390915 -3.915792 11.065807 -10.395786 9.664271 -8.222149 -7.825373 14.578890 -1.375850 -0.969990 -9.066225 -2.655298 6.112792 -0.428267 -6.787634 -1.942416 -0.130931 2.868088 -7.346734 -4.061853 7.382242 -7.764582 0.488129 4.227107 -7.731344 -9.768378 -1.768780 1.614926 2.789150 -9.287397 -5.563092 -0.553103 -3.848805 -0.901288 1.227134 -6.729381 -5.908451 5.718031 0.830472 -1.733183 1.363165 -3.394920 -2.989090 3.981192 1.735240 -4.542023 -4.370991 0.416625 -3.653415 1.886092 3.212632 7.368101 -12.176078 0.024700 -11.980573 4.149893 -6.249833 4.706315 7.329853 -1.907060 8.702580 0.886525 3.367098 0.151446 -0.815975 4.067559 3.348895 6.358213 2.097791 6.384429 8.436810 -6.454970 -10.361448 -7.527675 -3.670224 4.163416 -2.321839 -9.465078 3.775009 -5.457453 -0.972997 -0.036065 -0.267607 -2.130787 9.788653 -8.871531 5.022498 3.764990 -1.921026 3.957663 5.589505 0.181561 1.020710 -0.898826 3.559695 0.231178 4.229859 0.532779 6.891171 -4.945062 -4.634357 -0.624461 2.317951 2.814965 -5.363893 -6.773128 -12.367739 -2.651939 5.490026 -4.448070 1.926448 12.912114 -3.920766 -6.934785 4.267764 1.315670 0.340780 2.038484 2.338067 12.577682 -6.292707 0.321234 -0.451177 -0.120524 5.391701 14.968702 -2.557186 -6.916808 6.895413 -3.285041 -7.635552 10.544550 -0.063026 -0.654190 2.544911 1.266420 -1.882243 -5.781478 8.736493 -5.642498 8.381859 -6.537734 10.043295 -4.171074 -1.440518 1.765052 -8.261215 -3.215181 -8.693489 0.571410 -0.701233 6.681657 -5.455014 -4.749412 -3.937317 -3.145716 -1.450978 9.719372 -9.324336 -1.013535 0.027846 -1.934500 5.004724 1.991259 -3.382944 -1.989995 -6.865524 2.223513 4.654001 2.113337 -11.123443 -4.351095 -2.711579 -3.270217 -1.067231 0.678718 5.554125 -4.476432 0.981531 5.350580 -1.186287 -2.682021 -1.414466 -9.855896 3.170739 0.930116 3.893777 1.960746 11.409268 7.071682 5.783324 -0.336332 4.849268 -1.342150 -3.487786 -9.974774 3.089795 0.679822 1.940646 4.370281 5.982972 3.513390 3.841179 5.287001 -0.665096 0.256928 7.215318 2.417401 9.196680 -3.972950 -2.817115 3.763552 0.740308 5.992910 6.705434 3.573915 -7.065447 3.627861 -4.467598 -7.271150 -2.194314 -0.734332 -0.630893 -0.601807 8.098641 6.781998 -1.245414 -1.940642 13.415971 -1.598619 -16.424809 5.366197 2.915866 5.147125 6.840001 -2.819583 5.970861 6.519122 4.816330 3.415907 5.003368 4.837057 -9.663513 0.554828 1.029612 4.223303 7.977251 0.324399 -21.933201 -0.316984 0.985523 9.125187 -1.213063 12.266999 -5.476039 4.353072 1.147247 0.339058 1.713755 -0.914970 4.861593 -0.560138 0.697996 -13.706866 3.233374 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 1.529158 0.180952 0.529312 -1.509468 -0.915960 0.012461 1.184105 -2.129189 -1.273106 2.689659 0.719698 -1.650082 -0.923297 1.583363 -0.437536 -1.220906 0.492747 0.353228 -0.567291 -0.803368 -1.107926 0.329845 -0.634432 -2.003329 0.503914 -0.552415 0.708093 1.679030 -0.247352 0.804012 -0.304760 -0.998554 0.836707 3.466799 1.331982 -0.574238 -1.149388 3.888241 -2.298626 2.596983 -2.728138 -2.479012 4.168104 -0.397471 0.210979 -2.437994 -1.196575 1.885621 -0.193924 -1.545134 -0.560343 -0.632802 0.821223 -2.314929 -1.360940 2.744691 -2.623104 0.979191 1.549196 -2.340780 -2.888189 -0.743102 0.791810 0.781186 -2.416903 -2.334746 0.176434 0.082816 -0.564652 0.516964 -2.934525 -2.755938 2.196969 0.659212 -0.751286 0.165021 -1.324152 -1.272977 1.195498 0.383250 -2.015161 -1.402703 0.405706 -0.670169 1.090366 1.173455 2.632540 -4.577150 0.525513 -4.608196 1.286507 -2.144576 2.181912 2.860564 -0.996181 2.106400 0.515470 1.279514 0.231777 0.182466 1.884530 0.678770 0.997902 0.312800 2.070255 2.292567 -1.586220 -2.966786 -1.428069 -1.278114 0.748267 -0.435932 -3.449387 1.573282 -2.508204 0.179321 -0.544358 0.217052 -0.716713 2.772106 -3.441271 -0.339133 0.977585 -0.855251 2.168986 1.880574 0.009720 0.759144 -0.792860 1.535452 0.324670 0.732594 -0.314437 2.383087 -1.496557 -2.347627 -1.618491 0.994978 1.675067 -2.406182 -3.098214 -3.459866 -1.032868 1.617534 -1.645584 2.038157 4.459516 -1.600095 -2.200653 1.825814 -0.135518 0.167161 2.103195 0.870240 4.743700 -2.620147 0.797818 0.131970 0.178648 1.318066 2.271685 -1.375686 -2.428535 2.261165 -0.822354 -1.198086 3.144285 -0.145050 -0.482942 0.641497 0.308548 -0.200288 -1.695246 3.080760 -2.057893 2.728752 -1.287142 3.902776 -1.734389 -1.091902 0.887657 -2.260180 -1.206461 -1.764832 0.529482 -0.640295 2.565672 -2.021242 -2.036959 -0.338675 -1.082627 -0.517387 3.569617 -0.781145 -0.380111 0.240298 -0.859922 2.267867 1.407158 -1.094388 -0.271577 -2.291345 1.069842 1.956602 0.178974 -3.556090 -1.403766 -1.064560 -0.954416 -0.401918 0.308167 2.186718 -1.727564 -0.117932 1.299429 -0.080039 0.147456 -0.179954 -1.964035 1.511802 -0.167989 0.802880 0.654510 4.082397 2.212498 2.372761 0.193727 0.464246 -0.240432 -1.238881 -2.382939 1.040029 0.443290 1.122113 1.544919 1.923731 0.814021 1.449434 1.982647 -0.160366 0.636809 2.639808 0.696702 3.333161 -1.599896 -0.313987 0.900722 -0.641815 2.546595 3.208115 -0.285602 -2.329252 1.191215 -1.327903 -2.089271 -1.382578 -0.293957 -0.135595 -1.102488 1.876217 2.413691 -0.159275 -1.324871 4.753408 -0.268221 -5.231671 2.474083 1.228919 1.480157 2.533247 -1.184665 1.856493 1.757201 1.300848 0.883251 2.101105 1.999758 -3.130003 0.202145 0.288657 1.721773 1.609249 -0.047154 -5.561167 0.615342 1.326909 3.408877 0.207275 2.803923 -2.086193 1.067280 0.438840 0.146038 0.695539 -0.364316 1.871357 -1.124691 0.369068 -3.217175 0.629552 +PE-benchmarks/snake-ladder.cpp__main = 0.381309 -0.163225 1.938438 -3.409305 -1.925648 -1.059324 3.374870 -1.866456 -1.290047 2.071066 1.114914 -2.607789 -3.246204 3.160835 -0.150794 -2.267141 0.737297 -1.133586 -1.010520 -0.689586 -0.980624 1.532124 -0.551525 -2.219869 1.842859 -0.644775 0.346991 4.348627 1.760853 -0.240114 0.544261 -1.556087 1.369190 5.196760 0.870069 -0.233641 -1.202805 7.117842 -4.203400 4.713506 -3.891908 -3.455923 7.182098 -0.961431 -1.284730 -5.776691 -2.656652 3.212322 -3.176407 -2.247320 0.124099 0.450302 1.383553 -3.991021 -1.347787 4.895059 -5.756703 1.990536 2.461802 -2.708209 -2.958744 -1.142873 -0.889180 0.258531 -3.128173 -3.277264 -0.297433 -2.032969 -2.012360 0.404299 -2.596348 -2.227901 5.012219 0.810825 -0.822501 1.713524 -0.585346 -2.525088 2.550902 -0.419668 -3.013685 -2.328398 0.293901 -1.149141 3.186091 0.191190 2.215072 -6.681344 -1.131507 -6.159648 2.071093 -4.575250 2.407357 4.771757 -2.819898 4.630257 0.502752 0.153622 -0.123162 -0.136650 3.326873 1.445711 2.906456 1.694805 3.514543 2.961283 -2.819332 -4.629579 -3.450254 -2.300397 1.129298 -1.763779 -6.558863 1.953878 -2.404493 -0.658448 0.452100 -0.310913 -1.180237 4.204733 -3.623358 2.494581 2.115304 -1.292522 1.354671 3.940403 -0.107670 -0.506346 -1.259135 3.148866 -0.087138 3.128718 -0.207455 3.749130 -0.453939 -4.461235 -1.307066 0.127599 1.036626 -2.665676 -4.474483 -5.205842 -1.304068 1.012901 -2.222394 1.519316 7.266376 -1.941485 -3.944244 3.996111 1.219182 2.002754 1.719297 1.387948 5.828401 -2.415525 -0.845481 -1.153466 -1.184773 2.461976 5.238880 -0.871872 -3.765352 3.243151 -1.249616 -4.107958 4.363154 -0.274717 -0.787809 0.690152 0.077889 -2.548568 -4.283026 5.541604 -1.365265 5.192597 -2.205431 6.050282 -1.473270 -2.902244 1.535619 -2.141563 -0.578483 -4.472842 -0.291753 0.589580 1.922483 -3.201537 -3.312065 -2.284283 -0.282784 -1.458055 4.464892 -2.931303 -0.323392 0.118076 0.199292 2.138404 2.288164 -2.287153 0.189999 -4.317879 1.862731 2.305039 1.221696 -6.591615 -0.618666 -0.522178 -1.752383 0.912994 0.210369 2.730964 -1.857848 -0.415608 2.513120 -0.765241 -0.983516 -0.294384 -6.141202 1.557530 0.596321 1.113346 1.996430 5.277767 4.792514 2.530938 -0.176797 2.389644 -0.812496 -0.640945 -4.016775 0.828885 -0.096045 1.184255 2.449762 3.704945 2.744158 1.870633 3.761822 1.968891 -0.449873 4.198701 2.000791 5.197632 -0.575386 -2.285747 1.987736 0.237122 3.928991 4.546345 1.290716 -2.891617 3.002773 -0.061847 -2.225032 -3.517037 -0.614157 -0.728331 -0.759424 5.384151 1.899867 -1.250529 -0.215963 6.504807 -1.260852 -7.748578 3.177128 1.941305 2.938122 1.373344 -0.637726 1.759043 3.534411 -0.568935 1.930982 2.315070 2.581118 -4.346203 -0.565262 0.644420 2.238568 3.455852 1.503183 -9.576287 -1.080193 0.782364 5.010060 0.442041 4.953711 -2.160699 -0.101447 0.930430 0.235927 0.429742 -0.811578 1.518653 -2.415809 0.127381 -4.983383 0.004340 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 4.065672 -1.462912 2.971607 -6.274863 -1.815593 -1.004487 4.624174 -4.650761 -2.936206 9.069637 0.599024 -4.096003 -3.682906 6.076246 -0.406388 -3.052415 2.213664 -3.232078 0.038539 0.262331 -2.118495 2.780547 -1.522640 -4.544164 2.573786 -0.212233 1.496594 5.180526 0.335846 0.427984 -0.432670 -3.964056 1.638482 9.955601 3.045595 -1.655933 -3.640077 13.168518 -7.369529 10.095288 -7.106887 -7.658620 12.050922 -1.814091 -0.225471 -7.920379 -2.478317 6.444196 -1.293262 -6.483714 -0.263269 0.123982 2.442616 -7.325520 -4.443313 7.035231 -9.501139 1.989205 5.079653 -3.852936 -6.116626 -2.367775 1.329008 2.582862 -7.664964 -5.989976 0.495837 -3.933469 -4.052350 0.191669 -6.691279 -4.618245 5.119537 3.092672 -2.113077 1.617788 -1.732984 -4.500878 4.864468 -2.203126 -6.600960 -4.342253 -2.249127 -4.891390 5.389249 1.680371 6.335231 -12.328423 4.099457 -12.014726 3.344433 -7.442025 4.684245 9.952075 -3.346012 7.549021 1.593318 6.396282 1.439386 -2.350964 6.106196 4.505867 2.895235 2.715837 7.087200 6.831464 -6.165021 -8.088492 -5.998851 -3.654877 2.534576 -4.045023 -9.926433 4.738940 -4.361756 -0.799483 0.152524 0.040805 -4.291088 6.881833 -12.254197 0.619500 2.179518 -2.325131 3.405533 6.268031 -0.406364 -0.112007 -2.031927 5.808371 -0.059057 4.187036 1.380825 7.515969 -4.452461 -3.300617 -1.669020 1.746072 3.574604 -6.275981 -8.563130 -12.835778 -2.578960 2.599194 -4.503794 7.582494 13.483313 -3.515713 -5.971006 6.658043 -0.980499 1.090517 4.637300 1.948923 10.335600 -4.818726 -1.748748 -0.523166 -1.530084 3.706432 9.250350 -1.567385 -5.556419 7.130556 -4.170829 -2.551207 5.413621 0.957417 -1.741506 -1.724720 0.339433 -4.096853 -6.726199 9.236093 -8.776044 7.167206 -3.668114 10.922694 -1.412368 -2.055868 2.920271 -9.255487 -2.280666 -8.842067 -0.397609 -1.258181 5.282660 -7.163022 -5.413558 -3.258451 -1.206524 -2.819627 8.923328 -7.015491 -0.327256 1.117932 0.063079 8.973961 4.001561 -3.911536 -0.334069 -6.873259 3.294400 4.521212 0.702917 -9.500892 -3.314885 -2.607920 -3.249125 1.438358 -0.306255 5.407550 -6.749705 -1.286372 4.855531 0.600922 -1.641728 0.036022 -11.812999 3.113599 1.887969 3.631903 4.808142 10.791292 5.299316 6.277440 0.318768 2.940037 -1.970656 -1.078546 -9.332728 1.435859 -0.102237 1.947966 4.612654 5.408021 4.671906 4.417592 6.417379 3.092286 -1.073341 8.042184 1.299244 8.571602 -1.244895 -3.475759 3.816045 -0.260788 7.069722 7.700952 0.932051 -5.121436 5.450306 -4.151626 -5.791836 -3.277379 0.608204 -1.309420 -0.008884 5.690442 5.539601 -0.200689 -1.643672 11.477496 -2.799226 -15.676650 5.624526 3.886232 5.726685 6.964345 -1.439217 6.089443 4.231098 0.265887 4.510906 5.574782 4.633490 -7.844526 2.523171 1.531929 4.380953 6.295651 2.360863 -17.100089 -0.010105 1.303175 8.412519 1.206963 9.578404 -5.315498 1.656844 2.599347 0.249703 1.797811 -1.982308 5.258214 -1.678351 0.028968 -9.520294 1.959722 +PE-benchmarks/floyd-warshall.cpp__main = 1.181259 -0.283452 0.572426 -0.872239 -0.296762 -0.030403 1.308849 -1.089901 -0.767978 1.959104 0.107101 -0.798533 -0.912216 1.110333 -0.063972 -0.681566 0.416792 -0.449344 -0.262078 0.073443 -0.920202 0.459063 -0.555075 -1.165935 0.777494 -0.010487 0.494479 1.398761 -0.376589 0.455174 -0.194107 -0.818670 0.197246 2.417861 0.785249 -0.249529 -0.501562 3.330977 -2.229372 2.392253 -1.630517 -2.091498 3.173878 -0.443198 -0.203558 -1.256663 -0.339546 1.570257 -0.788386 -1.408451 0.001526 -0.161764 0.371277 -1.666645 -0.740168 1.885114 -2.597204 0.536405 1.106528 -1.049653 -2.166864 -0.803104 0.376155 0.242289 -1.865703 -1.553358 0.157132 -0.680055 -0.674454 0.264358 -1.942693 -1.504984 1.509190 0.578343 -0.469131 0.328756 -0.607654 -0.760192 0.999930 -0.056774 -1.583685 -1.043438 -0.123147 -1.293233 1.309191 0.771652 1.656615 -3.158468 0.892198 -3.156535 0.817194 -1.902015 1.335984 2.497068 -0.919017 1.950612 0.359133 1.579110 -0.045804 -0.373303 1.379152 0.722684 0.580481 0.496283 1.445648 1.605870 -1.597037 -2.149349 -1.588481 -0.766192 0.577412 -0.619941 -2.393975 0.993345 -1.415403 0.530282 0.010034 0.410182 -0.934383 1.593496 -3.040152 0.663622 0.453358 -0.537437 1.467611 1.432333 -0.171848 0.208600 -0.512883 1.279420 0.066375 0.841120 -0.260947 1.694348 -1.132553 -0.720495 -0.678586 0.391483 1.093627 -1.459207 -2.189783 -3.086513 -0.608985 1.176848 -1.135295 1.793660 3.480610 -0.894464 -1.288675 1.509785 -0.613574 0.694469 1.215263 0.533937 2.701259 -1.395377 0.119185 0.124621 0.067351 0.684467 1.451661 -0.564035 -1.550540 1.600497 -0.606599 -0.105428 2.394148 0.280814 -0.357300 -0.212264 0.140522 -0.591845 -1.470241 2.721933 -1.965842 1.767822 -0.818342 2.706052 -0.828324 -0.355197 0.690290 -2.199429 -0.524892 -2.342028 -0.273289 -0.545432 1.411075 -1.806883 -1.375899 -0.637889 -0.331164 -0.536987 2.277466 -0.768428 -0.277357 0.060777 -0.151666 1.799476 0.884992 -0.886668 -0.184778 -1.996749 0.645709 1.070307 -0.306209 -2.281521 -0.751981 -0.468289 -0.803458 0.331480 0.217969 1.169037 -1.626803 -0.223288 1.198636 0.339835 -0.160028 0.069282 -2.485227 0.701790 0.341000 0.531274 1.276211 2.639491 1.609821 1.448444 0.135117 0.731136 -0.267609 -0.455146 -2.139451 0.481119 -0.013240 1.244328 1.063252 1.099245 1.009734 0.803074 0.846546 0.351178 0.042139 1.914534 1.050909 2.427250 -0.749434 -0.779182 0.896144 -0.130965 1.623410 1.524044 -0.632474 -1.074508 1.061906 -0.822450 -1.475443 -0.486374 -0.087878 -0.428891 -0.313289 1.189726 1.124859 -0.246694 -0.504643 3.311876 -0.650170 -4.074355 1.293704 0.866640 1.358645 1.824478 -0.353311 1.375898 1.310981 0.381488 1.294205 1.243807 1.239058 -1.876266 0.915951 0.272396 1.088391 1.302862 0.174602 -3.984149 0.213226 0.299685 2.172756 0.469882 2.052350 -1.088046 0.733040 0.123765 -0.482724 0.556785 -0.226081 1.536041 0.011124 0.248661 -2.975715 0.239552 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 4.677960 -0.838961 2.554983 -2.213672 0.100611 -0.653051 7.350351 -4.737294 -3.464001 11.150853 0.140398 -3.454497 -3.244487 3.450450 0.062349 -1.010941 1.976085 -0.168871 -1.224578 -0.238797 -3.834885 1.187903 -2.088993 -5.899046 3.002250 -0.088173 3.505179 6.240171 -4.160966 4.482940 0.667800 -3.530058 1.827348 9.306316 3.327726 -0.540977 -3.768462 11.665057 -12.681815 11.184929 -6.829634 -9.235280 14.214012 -1.434741 0.151136 -5.023665 -0.650453 6.493926 -1.115218 -8.010178 -1.687991 -0.597888 2.779462 -7.832833 -4.290344 7.648426 -8.636642 -0.525211 4.442825 -6.959717 -11.046590 -2.537060 2.635383 2.503333 -10.020474 -6.364124 -0.130753 -4.081963 -1.215264 1.415930 -8.804994 -6.210292 3.307331 1.250753 -1.494797 0.836596 -3.766454 -2.231131 3.778542 2.139340 -5.024036 -4.844518 -0.855841 -6.254663 2.655364 4.407376 8.321035 -12.204549 3.430373 -11.807874 3.970756 -6.546550 5.270663 8.969729 -1.584870 8.508590 0.916509 7.549224 -1.061787 -2.317154 3.925823 3.397453 3.623203 1.501572 6.288065 8.208129 -7.979286 -10.829175 -7.599324 -2.281827 4.158152 -3.230054 -7.762375 3.923500 -6.122258 0.841999 0.316935 0.434452 -3.935670 8.345372 -12.989293 4.921095 2.424730 -1.957564 5.454107 4.740330 0.001367 1.120191 -0.600986 3.653975 0.927160 2.996695 0.108854 7.305523 -6.422158 -1.041763 0.266260 2.572081 4.234745 -5.797239 -7.694639 -13.793207 -2.514038 6.979129 -4.541128 5.298130 13.126244 -2.996325 -4.870122 3.765263 -3.043140 0.644417 2.725553 2.413212 11.335917 -6.485906 1.154028 0.719944 1.046679 4.753763 12.115768 -3.083206 -7.355840 7.657998 -3.516826 -1.320898 9.746115 1.179246 -0.191972 -0.884314 1.248670 -1.262193 -4.252813 10.238719 -11.517724 6.667984 -6.077702 9.767192 -3.771350 0.560927 1.946206 -11.704541 -3.517800 -10.348269 -0.522184 -2.455553 6.702982 -6.904248 -5.070842 -3.573268 -2.301732 -0.927151 10.575516 -8.409222 -1.790171 -0.407154 -2.107447 8.012493 1.041226 -3.840609 -2.123680 -6.975672 2.112650 3.952320 -0.225345 -9.798367 -4.623828 -2.424807 -3.585636 -0.675570 1.052371 5.470033 -7.029652 0.592879 5.973755 0.742069 -2.977187 -1.089670 -10.177782 3.145982 2.114589 3.210923 4.563596 11.639174 5.475751 5.705310 -0.600306 3.589795 -1.514993 -3.278184 -11.726774 3.711554 0.074268 3.648014 4.160742 4.168731 2.979833 3.484868 3.157535 -0.373847 0.673800 7.410503 3.436154 7.789218 -3.400874 -2.589795 4.874844 -0.047759 5.549621 3.858528 -0.112079 -6.373025 3.680211 -5.855316 -7.747507 1.010799 -0.540055 -1.204880 -0.848796 5.676597 6.637933 -0.988033 -2.307320 13.528695 -2.323886 -17.291568 4.559904 3.410906 5.472748 9.247617 -2.747658 7.404454 5.105192 5.424211 4.887749 4.662539 4.504025 -8.516138 4.415021 1.298896 3.796251 8.519902 -1.156879 -20.455110 0.222418 -0.007840 8.824061 0.055390 11.282492 -5.121897 6.248003 -0.026515 -1.459906 3.159030 -1.838581 6.556436 1.737806 1.016838 -14.656529 3.789086 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.421310 -0.002789 1.327421 -1.353993 -1.178420 0.039968 1.381258 -2.049493 -1.199169 4.029419 0.090975 -1.513033 -1.837562 1.576646 -0.464893 -1.449200 -0.114349 -0.683590 -0.377638 -0.864542 -1.311908 0.823075 -0.795928 -1.534439 0.877577 -0.497475 1.029662 1.974483 -0.284257 1.041792 0.439045 -1.461411 0.581686 3.773860 1.418002 0.077129 -1.062558 4.688780 -3.106226 3.672288 -3.304391 -4.108055 4.452613 -0.379133 0.157938 -2.105634 0.138280 2.575166 -1.853588 -1.784055 -0.074569 -0.096405 0.846723 -2.384511 -1.148006 2.401259 -3.994805 1.443563 1.315844 -2.611357 -3.413724 -0.840656 0.375667 1.209360 -2.569632 -2.401330 -0.131071 -0.319264 -1.219684 0.600091 -2.417699 -1.989324 2.010246 0.632698 -1.062491 0.361996 -0.743148 -0.329664 1.684102 -0.865977 -2.405939 -1.746345 -0.053287 -1.863437 1.494680 1.883947 2.562312 -4.889800 1.350455 -4.602982 1.775352 -2.165875 1.974116 3.244639 -0.921958 2.961121 0.754737 1.690345 0.481913 -1.025317 1.856806 1.001809 1.557006 1.451054 1.970375 2.715483 -2.664888 -3.418804 -2.608702 -1.569490 1.067227 -1.189588 -3.171002 1.296961 -1.794736 1.094184 0.212136 0.024940 -1.459875 2.486681 -5.517526 0.295430 0.669876 -0.705502 2.376226 1.628638 -0.122951 0.811716 -0.061016 2.178335 -0.322353 1.175504 0.105718 2.761711 -1.308615 -0.983745 -1.670853 1.303017 1.753280 -1.985093 -3.041904 -4.742267 -1.294362 2.127501 -1.678440 2.985177 5.325658 -1.507500 -2.488786 2.317977 -1.867743 0.462727 1.795120 0.997056 3.795779 -1.991288 -0.296722 -0.332289 -0.314461 1.657902 4.128278 -0.563084 -2.563916 3.037172 -0.673435 0.528166 1.440553 0.033358 -0.950851 -1.810608 0.346916 -1.051792 -1.388549 3.225949 -3.851257 2.510079 -1.794953 4.173970 -1.621162 -1.092702 0.760970 -4.706818 -1.068225 -2.907501 -0.250921 -0.634764 2.163087 -3.340882 -1.945644 -1.248900 -0.822830 -1.023219 3.341941 -2.379162 -0.346357 0.374692 -0.078729 4.474104 1.484409 -0.969663 -0.893966 -2.765339 1.030354 1.403632 0.404878 -3.715361 -1.460697 -0.842170 -1.281410 0.920592 0.180422 1.989623 -2.006605 0.319200 1.419657 -0.147788 -0.239837 0.247533 -3.446502 1.280506 0.795677 1.351794 1.606882 3.957019 2.186615 2.442276 0.532487 1.606134 -0.484238 -1.147099 -2.329368 1.091375 0.959246 0.866724 1.728511 2.190707 1.572162 1.390178 2.054492 1.119671 -0.505837 3.020648 0.305493 3.432741 -2.293574 -0.569707 1.050880 0.541851 2.222699 2.535542 -1.158374 -1.831369 1.812857 -1.524721 -1.856567 -0.543608 -0.036383 -0.904579 0.265539 1.926741 2.638118 -0.486214 -0.771406 4.834441 -0.721067 -5.761664 2.478337 1.435490 1.948342 2.315068 -0.937634 1.546579 1.695228 0.258489 1.521734 2.327934 1.669042 -3.448235 1.061484 0.347978 1.926241 2.638002 0.551390 -6.374137 -0.720545 0.724932 3.466685 0.347282 3.601833 -2.238639 0.243693 0.768789 -0.654769 0.614947 -0.135048 1.988262 0.114792 1.004874 -3.595470 0.037566 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 1.681754 0.052265 0.610097 -2.000844 -1.087626 0.100293 1.205915 -2.185316 -1.258266 2.838033 0.753402 -1.672571 -1.129823 1.982728 -0.376953 -1.455585 0.675043 -0.437234 -0.534157 -0.547178 -1.184422 0.622919 -0.775977 -1.919193 0.629487 -0.423364 0.584893 1.716593 0.052683 0.485368 -0.641699 -1.148717 0.559752 3.856998 1.462267 -0.755745 -0.996966 4.710533 -2.538761 2.897714 -2.928890 -2.774574 4.372871 -0.506232 -0.090317 -2.668645 -1.143708 2.107107 -0.468703 -1.574431 -0.147357 -0.668003 0.809343 -2.348082 -1.279302 2.955819 -3.284035 1.267218 1.729535 -1.882201 -2.830424 -1.036318 0.829822 0.810465 -2.603672 -2.517645 0.459069 -0.129738 -0.940356 0.408410 -3.058989 -2.904147 2.547454 1.024917 -0.905325 0.221907 -1.215560 -1.792902 1.478992 -0.063183 -2.498875 -1.380242 0.180169 -1.129149 1.753652 0.934346 2.641304 -5.079244 0.903501 -5.158524 1.180859 -2.597681 2.289549 3.460876 -1.295327 2.211378 0.548453 1.770186 0.443746 -0.100207 2.264004 0.943216 1.027004 0.474814 2.338475 2.439437 -1.798819 -2.984161 -1.616364 -1.453894 0.592236 -0.649507 -4.026773 1.770875 -2.553355 0.114585 -0.452909 0.336280 -1.096079 2.896405 -3.926759 -0.566838 0.815748 -0.926186 2.325960 2.353105 -0.154063 0.710519 -0.953396 2.041864 0.249390 1.108356 -0.468108 2.577614 -1.592183 -2.231392 -1.888673 0.965864 1.891700 -2.583811 -3.554292 -3.992751 -1.114251 1.350211 -1.754618 2.832594 5.130885 -1.750374 -2.466050 2.423449 -0.375047 0.457829 2.459312 0.766665 4.904291 -2.594020 0.666480 0.035696 0.086407 0.931288 2.133826 -1.205377 -2.405400 2.293050 -1.003359 -0.967495 3.269089 0.124953 -0.748191 0.190294 0.229058 -0.660884 -2.283999 3.639491 -2.388747 2.890763 -1.006519 4.367345 -1.679652 -1.215900 1.197931 -2.403443 -0.993089 -2.398425 0.167375 -0.565585 2.576125 -2.274888 -2.200396 -0.441073 -0.844109 -0.836075 3.629840 -0.597120 -0.302679 0.341877 -0.493757 2.732699 1.944513 -1.185154 -0.164929 -2.705303 1.316799 2.166944 -0.036316 -3.654459 -1.374858 -1.101867 -1.081695 0.029671 0.253468 2.262429 -2.086881 -0.487214 1.436577 0.211328 0.325840 0.121681 -3.060067 1.581470 -0.092549 0.781259 1.072770 4.293212 2.281638 2.637946 0.444492 0.336328 -0.309677 -0.960348 -2.578468 0.766509 0.404466 1.344364 1.704493 2.272299 1.167482 1.544016 2.140711 0.360154 0.371091 2.946584 0.889953 3.768856 -1.445873 -0.654849 0.918692 -0.701769 2.799400 3.668824 -0.661096 -2.150620 1.505635 -1.113911 -2.206486 -1.726542 -0.196507 -0.427377 -0.827941 1.757682 2.208455 -0.212378 -1.267447 5.180411 -0.465275 -5.844131 2.550130 1.343204 1.833173 2.696890 -1.012353 1.922389 1.805149 0.598831 1.459319 2.335269 2.084809 -3.038039 0.330527 0.356434 1.873402 1.477246 0.205374 -5.622702 0.719970 1.302694 3.737140 0.722647 2.931986 -2.126469 0.825459 0.569005 -0.072527 0.719425 -0.336867 2.233954 -1.314187 0.431072 -3.493423 0.371786 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 0.233610 -0.072105 0.762994 -1.221388 -0.427824 -0.482177 2.032881 -0.635588 -0.577482 1.330916 0.356994 -0.880780 -1.019791 1.478936 0.120459 -0.572575 0.373924 -0.583745 -0.584530 -0.106654 -0.336666 0.744694 -0.214857 -0.979649 0.842183 -0.100727 0.292570 1.733946 -0.297091 0.115536 0.382587 -0.641101 0.514951 1.894281 0.168753 0.248245 -0.907399 2.441186 -2.714456 2.636554 -1.963442 -1.662357 3.315379 -0.370771 -0.506030 -2.637952 -0.866962 1.266574 -0.225775 -1.603100 -0.174500 0.247922 0.494312 -1.768811 -0.526963 1.885736 -2.005931 0.026883 0.971827 -1.629568 -1.886720 -0.323156 0.152368 0.210201 -2.030601 -1.332775 -0.170373 -1.235855 -0.510981 0.258008 -1.169614 -1.226179 1.513678 0.327816 -0.189825 0.692131 -0.479119 -1.042661 1.121173 0.264159 -0.833583 -1.014631 0.093929 -0.827559 0.761743 0.241061 1.191618 -2.824730 -0.209777 -2.246265 0.952000 -1.662187 0.876085 1.692581 -0.383699 2.020430 0.093493 0.419729 -0.095231 -0.166414 1.033764 0.795115 1.591695 0.566807 1.613331 1.625038 -1.567988 -2.479071 -1.779410 -0.915257 0.965726 -1.008251 -2.511670 0.772856 -0.896816 -0.840202 0.371636 -0.288517 -0.314896 2.232258 -1.827543 1.593331 1.062345 -0.431443 0.262827 1.523694 0.041467 -0.360213 -0.456203 0.916827 0.020307 1.448919 0.074680 1.490360 -0.884903 -1.064650 0.409818 0.031635 0.165064 -1.117121 -1.439994 -2.693854 -0.387987 1.077416 -0.990861 0.500529 2.795386 -0.794117 -1.786315 1.190530 1.012373 0.296249 -0.030781 0.490019 2.564946 -1.093584 -0.221878 -0.406635 -0.197464 1.303942 3.404858 -0.300444 -1.631837 1.436044 -0.981723 -2.738410 2.700972 -0.153165 -0.019977 0.685324 0.193047 -0.901877 -1.436394 2.064270 -0.960531 2.243435 -1.509146 2.110860 -0.743170 -0.433018 0.507650 -1.969227 -0.664783 -2.388188 -0.247682 -0.002750 0.925689 -1.149126 -1.043801 -1.204853 -0.564356 -0.424449 2.144353 -2.921970 -0.141239 -0.203979 -0.180768 0.998873 0.469142 -0.893992 -0.211510 -1.636677 0.706008 1.069393 0.595647 -2.670983 -0.513903 -0.336904 -0.732926 0.087247 0.062484 1.118080 -0.891441 0.077392 1.288427 -0.337026 -0.962454 -0.509277 -2.573132 0.369684 0.303248 0.931796 0.583561 2.449438 1.764934 0.980216 -0.246542 1.045667 -0.383593 -0.434182 -2.712227 0.530147 -0.247652 0.262907 1.018728 1.545135 0.931889 0.714710 1.554793 0.552410 -0.044790 1.636144 0.721279 1.844684 -0.117303 -1.034780 1.059088 0.186860 1.323612 1.432383 0.962775 -1.176062 1.112827 -0.366930 -1.602794 -0.536040 -0.256264 -0.308419 -0.493751 2.306269 1.017882 -0.534815 -0.071759 2.947122 -0.422974 -3.557577 0.920304 0.633140 1.272670 1.000382 -0.348763 1.232104 1.518412 0.475653 0.740283 0.759888 1.008613 -1.987203 -0.198960 0.306341 0.711869 2.160156 0.369194 -4.609508 -0.235476 0.012469 2.299579 -0.333967 2.792103 -0.882572 0.875325 0.210249 0.208474 0.252993 -0.314374 0.799109 -0.425150 -0.207956 -3.254403 0.588198 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.753825 -1.679879 2.838668 -4.407225 -2.671945 -1.022791 4.325875 -1.978243 -1.142404 -0.434383 2.266813 -2.980154 -3.265176 4.077121 0.763717 -3.444332 1.745982 0.872783 -1.109765 -0.073850 -0.905870 2.029082 -0.952196 -2.488825 2.751895 -1.262256 0.178021 6.947635 2.584930 0.737124 0.462150 -1.869536 0.743457 6.948143 0.952535 0.606693 -0.484771 9.773601 -5.902793 6.901543 -3.996533 -3.096429 9.349212 -1.373803 -3.093421 -6.811835 -5.684299 3.289559 -5.991132 -2.745151 1.290520 0.194155 2.943355 -4.555399 -0.406518 6.619670 -7.343436 0.767279 3.207890 -3.638041 -3.362277 -1.713125 -2.645415 -0.717310 -4.979683 -3.934248 -0.176560 -2.401384 -0.883770 0.212637 -2.728402 -3.841591 8.947104 1.167530 -1.155618 2.639603 0.612067 -4.839431 3.372185 2.451198 -4.518685 -3.290475 -0.010500 -2.278939 5.589123 -1.423929 3.571473 -8.784565 -2.071046 -8.500103 3.010966 -6.820144 3.151341 6.941056 -5.624899 5.982891 1.347783 1.025114 -1.360709 0.277346 4.628928 2.003737 2.595069 2.006523 5.402573 2.998461 -3.535719 -6.361911 -5.053335 -3.051199 1.517085 -3.765879 -10.445359 1.982229 -2.893370 -0.414981 0.026529 -0.034390 -0.833179 6.559711 -1.846506 6.607447 3.451529 -1.914683 0.735657 5.753626 -0.440422 -1.396436 -2.224760 4.456715 -1.203952 4.417680 -1.691980 4.761044 -0.824024 -5.629860 -1.272654 -0.617113 0.898466 -3.304757 -6.324449 -5.945520 -1.617097 2.340775 -2.319090 0.845900 9.669747 -3.027800 -5.207383 5.588320 3.564367 3.095626 1.830688 2.366495 6.822299 -2.748367 -1.237242 -3.634294 -1.964161 2.363475 5.508855 -0.761683 -4.619422 4.649955 -1.825442 -7.636180 11.666360 -1.070940 -1.252977 2.196047 0.090644 -3.516387 -6.036220 8.882160 0.044154 6.855334 -2.697440 8.132565 -1.647583 -4.298765 1.741494 -0.846099 -0.659837 -6.943022 -0.667167 1.580624 2.087863 -3.647239 -5.075058 -3.366254 -0.192383 -1.396920 5.126203 -1.726719 -0.624012 0.219041 0.443767 0.902100 3.541944 -2.124077 -0.017621 -5.707039 2.581302 2.964728 0.129121 -7.890685 0.169991 -0.022822 -2.047745 -0.500789 1.164712 3.604131 -3.294931 -0.978385 2.454916 -0.936690 -1.263009 0.090431 -10.701367 2.039462 1.366042 0.715615 3.272702 5.798050 7.892034 3.204320 0.109090 3.303302 -0.809677 0.114500 -6.215107 1.102090 -0.193299 2.697479 2.684408 5.308325 3.921314 1.976400 3.756509 3.196168 1.979006 5.122583 4.742494 7.307472 2.412257 -3.715363 2.928642 0.436722 5.569022 6.031239 2.598836 -1.653804 3.696648 1.783786 -3.048298 -6.598839 -0.776542 -0.707031 -1.715109 7.442525 0.676933 -2.090926 -0.428723 8.553787 -1.280925 -10.007144 3.141057 2.477023 3.838943 1.652052 -0.095278 2.241366 4.628976 -1.005096 4.452519 2.306747 3.511693 -5.415096 -0.954157 0.850004 1.715780 5.551162 2.836452 -10.773910 -0.814939 0.109991 6.534382 0.710741 6.372039 -2.073723 0.566007 0.426112 -1.118215 0.131379 -1.304520 0.884386 -3.271680 0.088463 -7.905011 -1.769203 +PE-benchmarks/dfs.cpp__main = 0.697355 -0.227964 0.989883 -1.778610 -1.915683 -0.318916 -0.126888 -0.929084 -0.447509 0.441823 0.323171 -1.304530 -1.341478 2.564584 -1.048542 -2.168200 -0.197517 -0.106838 -0.138051 -0.392386 -0.712544 1.326881 -0.562451 -0.571013 1.329059 -0.581565 -0.357035 1.412898 1.830166 -0.713113 -0.415639 -0.883351 0.189577 3.101272 0.259877 -0.099371 0.268292 4.740405 -0.135619 1.777541 -2.616226 -2.218232 3.038063 -0.573984 -0.201131 -2.498793 -1.672916 1.513113 -3.051749 0.527824 0.729311 0.133212 -0.216423 -1.546653 0.508400 1.904761 -4.309873 2.927952 1.220721 -0.537620 -0.920279 -1.051556 -1.082431 -0.783040 -0.248033 -1.775265 -0.040580 1.041229 -1.718216 0.460189 -0.889738 -1.367740 3.948724 0.675303 -1.104654 1.270737 0.469333 -1.274613 1.382689 -2.388405 -2.448435 -1.151556 1.078110 0.243480 2.485153 0.706671 1.126441 -4.156082 0.333182 -4.014951 1.333408 -2.877105 1.775772 3.378456 -2.984491 2.305565 0.968399 -0.149208 1.366961 1.033092 2.678567 0.886890 0.547380 0.960119 0.914608 1.165109 -0.605410 -1.423693 -1.125603 -1.711667 -0.751740 -0.161273 -4.460288 0.809519 -1.165873 1.826775 -0.187919 0.647132 -0.327767 1.149435 -3.026337 -0.611812 0.960210 -0.804609 1.526411 2.036693 -0.465845 -0.164178 -1.591079 2.406650 -0.790653 0.941116 -0.866893 1.878963 -0.283748 -3.648861 -3.286766 -0.481312 0.600787 -1.768306 -3.062897 -2.624938 -0.755653 0.214896 -1.277248 2.040281 4.721449 -1.556411 -2.322151 3.157763 0.186032 1.847517 2.889307 0.857887 2.938665 -1.068490 -0.370783 -0.633615 -0.583107 0.376882 -1.124387 0.090931 -1.765431 1.281133 0.353753 -1.370486 1.994515 -0.316649 -1.008299 -1.211059 0.076732 -1.512787 -1.805577 3.459423 -0.046795 2.883173 -0.741467 4.011122 -1.284120 -2.809062 1.004972 -1.646228 0.115549 -1.198735 -0.073452 0.042023 1.133809 -2.818190 -2.055500 -0.112777 -0.387543 -1.176224 1.625186 1.504728 -0.174492 0.276615 0.572832 1.986205 2.396782 -0.696736 0.972341 -2.976798 0.981537 1.350515 -0.351187 -3.939777 0.520700 -0.133431 -0.780684 1.063342 0.221930 0.765913 -0.821175 -0.907031 0.235121 -0.355922 1.238181 0.286034 -1.281886 0.677677 -0.709071 0.555690 1.315260 2.304065 3.352360 1.723038 0.725120 0.937709 -0.036029 -0.761549 0.990251 0.509507 0.666873 1.012392 1.283454 2.183027 2.021829 0.553431 1.511674 1.617225 -0.462263 2.588343 1.260401 4.254706 -1.536139 -0.860580 0.150772 -0.115806 2.669220 3.796726 -1.669666 -0.216493 1.786041 0.959866 0.030482 -2.667984 -0.106641 -0.519209 -1.323102 1.764600 0.283005 -0.862880 -0.176069 3.589659 -0.650421 -3.707205 2.560703 0.907918 1.396174 -0.365006 0.418927 -0.544593 2.081982 -1.933389 1.066188 1.353006 1.969162 -2.169209 -0.928983 0.044683 1.898767 0.978880 1.663839 -2.510683 0.297240 1.867452 2.542850 0.952758 0.764141 -0.866464 -2.193853 0.322196 -0.693129 -0.602455 0.252345 0.527408 -1.270800 0.463726 -0.815332 -2.248445 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = 0.841580 -0.352297 1.228709 -1.904153 -1.530640 -0.073739 1.227412 -1.742399 -0.903987 2.471877 0.592426 -1.333757 -0.927673 2.479441 -0.403959 -1.353144 0.140570 -0.471685 -0.329366 -0.344781 -0.827927 1.282692 -0.774389 -1.244336 1.031587 -0.525442 0.403941 1.973580 -0.298877 0.315564 0.156353 -1.392307 0.241813 3.503714 1.023775 0.147364 -0.832912 4.695000 -2.646755 3.489256 -3.102950 -3.055427 4.048183 -0.608060 0.053424 -2.514448 -1.287996 2.039702 -1.153469 -1.530265 0.240184 -0.117271 0.860402 -2.093263 -0.542306 2.002144 -3.497305 1.008806 1.585233 -2.144109 -2.423140 -0.876008 -0.155029 0.479249 -2.579959 -2.119262 0.013567 0.007645 -0.735602 0.185762 -1.694176 -2.151857 2.574311 0.723618 -0.807772 0.724515 -0.338725 -1.463597 1.805511 -0.642490 -2.601831 -1.583460 0.028574 -1.620844 1.759712 0.992323 2.507414 -4.680753 1.013487 -4.572150 1.564779 -2.327747 1.770595 3.334523 -1.644824 2.578325 1.054030 1.775444 0.846045 -0.107026 2.135362 1.220764 0.992955 1.362916 2.165055 2.352797 -2.038771 -2.805726 -2.335476 -1.820684 0.949374 -1.279589 -3.711968 1.354299 -1.258390 0.339100 -0.315539 0.156244 -0.749118 2.949027 -4.049811 0.766755 1.233966 -0.789862 1.266846 1.808152 -0.227857 0.112230 -0.947224 2.002477 -0.859738 1.359096 -0.233137 2.619682 -1.422648 -1.660056 -1.528505 0.598831 1.012911 -2.231948 -2.925891 -4.170769 -0.889364 1.739400 -1.668992 2.446086 4.992741 -2.041245 -2.694470 2.618594 0.256871 0.331513 1.626280 0.992172 3.366461 -1.528158 -0.597223 -0.873320 -0.786001 1.247618 2.681100 -0.217249 -2.165156 2.563806 -0.754660 -1.847914 3.566873 -0.158983 -1.072911 -0.782302 0.546807 -1.358700 -1.705742 3.309343 -1.967728 2.685031 -1.523034 4.026154 -1.332556 -1.237827 0.799568 -3.425744 -0.845550 -2.584686 -0.110072 -0.196745 1.860649 -2.534430 -1.970004 -0.972401 -1.006570 -1.094297 2.688295 -1.626194 -0.066754 0.515805 -0.014862 2.796263 1.979824 -0.676670 -0.344950 -2.405835 1.222030 1.601479 0.210634 -3.788335 -0.970214 -0.755347 -1.069655 0.277941 0.276257 1.952902 -1.904953 -0.031978 1.083237 -0.236845 -0.123263 0.231330 -3.317539 1.047202 0.189714 1.396727 1.392568 3.356459 2.748662 2.553277 0.650909 1.387087 -0.551291 -0.704219 -1.994935 0.888614 0.651790 0.843767 1.703694 2.571010 1.958827 1.427587 2.169623 1.215025 0.362230 2.970962 0.515140 3.794908 -1.180199 -0.697457 0.874456 0.542408 2.615118 3.122963 -0.170115 -1.154841 1.702797 -0.716535 -1.859059 -1.291284 0.231459 -0.529772 -0.374110 1.958952 1.865643 -0.389337 -0.769364 4.436561 -0.701619 -5.058324 2.248685 1.197092 2.088778 1.637118 -0.279327 1.389828 1.716951 -0.183399 1.858672 2.164330 1.906689 -3.163121 -0.039313 0.390544 1.706721 2.729936 1.288634 -5.361035 0.302701 0.823202 3.014664 -0.114467 2.907734 -1.930187 -0.039751 0.719202 -0.558077 0.237078 0.095002 1.324342 -0.590664 0.570646 -3.269460 -0.504072 +PE-benchmarks/tug-of-war.cpp__main = 0.901934 0.034920 0.998614 -1.727865 -1.157073 -0.152904 1.406380 -1.528344 -0.787390 2.160026 0.649041 -1.342045 -0.828723 2.007828 -0.380308 -0.975548 0.373448 -0.683682 -0.495570 -0.414384 -0.696850 0.902900 -0.576174 -1.373559 0.797839 -0.363914 0.506059 1.713857 -0.175140 0.176005 -0.076106 -1.044740 0.553497 3.092608 0.875536 -0.155481 -0.849365 3.808925 -2.247577 2.775723 -2.659593 -2.450290 3.690743 -0.499141 -0.049940 -2.617274 -0.992427 1.814749 -0.483373 -1.467331 -0.048953 -0.181609 0.681776 -2.070943 -0.826617 2.102985 -2.811965 0.875875 1.400942 -1.711757 -2.217237 -0.874576 0.260421 0.476966 -2.267526 -1.900609 0.130970 -0.277683 -0.845600 0.387707 -1.845612 -2.000027 2.170376 0.582865 -0.657796 0.528388 -0.660241 -1.571577 1.459199 -0.338372 -1.930939 -1.264829 0.181542 -0.993513 1.437054 0.614421 1.954840 -4.134294 0.436246 -3.922463 1.208931 -2.142742 1.662998 2.780832 -1.323119 2.147940 0.517255 1.381667 0.461272 0.037257 1.887220 1.019242 1.267873 0.740271 2.031016 2.096024 -1.635225 -2.576714 -1.706347 -1.515060 0.793028 -0.758319 -3.273935 1.212784 -1.527115 -0.244686 -0.240673 0.022292 -0.663496 2.622913 -3.236243 0.212832 1.102112 -0.706912 1.266263 1.754994 -0.148086 0.267836 -0.801321 1.708852 -0.171888 1.199387 -0.249150 2.159256 -1.289676 -1.894187 -1.163552 0.459976 0.985024 -1.925405 -2.747631 -3.619629 -0.813171 1.186221 -1.439563 1.692358 4.093524 -1.415266 -2.308726 2.135739 0.457670 0.231182 1.479999 0.707682 3.423534 -1.747442 0.006580 -0.347579 -0.271607 1.109846 2.538885 -0.650304 -2.041600 1.957188 -0.891276 -1.955484 2.964261 -0.046275 -0.600723 -0.075730 0.240383 -1.098321 -1.819869 2.939922 -1.467994 2.540353 -1.369174 3.563145 -1.333703 -1.151565 0.836962 -2.309465 -0.639442 -2.235787 0.034556 -0.118778 1.912377 -1.981753 -1.829307 -0.666057 -0.722039 -0.766378 2.628924 -1.669239 -0.171653 0.204765 -0.186609 1.916710 1.446334 -0.995606 -0.082858 -2.101581 0.978646 1.652277 0.508133 -3.258487 -0.875740 -0.859365 -0.978849 0.032642 0.225447 1.719897 -1.462789 -0.224463 1.271708 -0.266977 -0.211662 -0.050358 -2.873881 1.047766 -0.076758 0.941628 0.822061 3.244742 2.255351 1.961647 0.280165 0.744812 -0.371750 -0.767841 -2.189587 0.727912 0.386771 0.649091 1.439242 2.154329 1.461865 1.215658 1.965630 0.720840 0.080003 2.531629 0.632663 3.064323 -1.106919 -0.541537 0.850280 0.036738 2.313705 2.852824 0.243429 -1.614779 1.373551 -0.624166 -1.721800 -1.206505 -0.240042 -0.383472 -0.507328 1.720591 1.562770 -0.463324 -0.620899 4.086877 -0.528948 -4.481789 1.956841 0.970325 1.669195 1.574961 -0.617017 1.311681 1.725175 0.167006 1.387081 1.680831 1.703765 -2.553840 -0.318655 0.282926 1.557525 1.946484 0.689935 -4.878292 0.384010 0.797611 2.856830 0.137487 2.645830 -1.649085 0.394586 0.450270 -0.145692 0.289361 -0.069457 1.456241 -0.841421 0.162976 -3.110678 0.066273 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 3.275296 0.719565 4.172721 -5.626737 -3.810599 -0.929231 6.894955 -6.526795 -3.456091 11.846899 2.364628 -5.476602 -2.715105 6.890616 -1.382706 -2.311509 1.425016 -1.108266 -2.023811 -2.642427 -2.809536 3.020918 -2.153334 -6.264086 2.775776 -1.735006 3.371665 6.775450 -3.105233 3.028943 1.246100 -4.433379 3.170975 11.620429 3.692894 0.022161 -5.185797 12.884756 -11.306517 11.889844 -10.949949 -10.627768 15.217768 -1.523484 1.277907 -10.037591 -2.691506 7.239668 0.472776 -7.653870 -1.815082 -0.716944 3.898540 -8.888856 -4.461246 7.594606 -8.728552 1.158401 5.345454 -9.619192 -10.700481 -2.650543 2.086181 3.634788 -10.995165 -7.416786 -0.246087 -1.616151 -1.945384 1.811649 -7.811702 -7.930595 5.473255 1.242640 -2.309534 1.478596 -3.808307 -5.040326 5.450543 0.600358 -6.385233 -5.472792 0.541418 -4.545339 2.754847 3.914651 9.209004 -15.707868 1.641609 -14.452900 5.473516 -6.637207 6.479855 9.519922 -2.913881 8.681124 1.787761 6.254066 1.440405 -0.592579 5.890508 4.264754 6.200977 2.733370 8.194138 9.852606 -7.639212 -11.860484 -7.511629 -5.485300 4.893296 -3.399481 -10.411767 4.653718 -6.233053 -2.318474 -0.867189 -1.149252 -2.610189 11.915373 -13.703144 1.777648 4.917046 -2.542649 4.664517 5.387276 0.144986 1.621973 -1.558653 5.319867 -0.409222 4.039815 0.240998 8.949918 -6.386472 -5.574592 -2.253666 2.988934 3.745962 -7.523875 -9.523330 -15.221734 -3.346775 6.688259 -5.652073 4.911329 14.957343 -5.299933 -8.841975 6.245935 0.972311 -1.573314 3.874472 3.023287 13.548531 -7.559697 0.514841 -1.198228 -0.510322 6.349111 16.044859 -3.115446 -8.927311 8.810750 -4.343642 -8.112435 10.526111 -0.414936 -1.496933 -0.917124 1.711223 -3.224600 -5.113817 9.959691 -8.997547 9.233114 -7.908618 12.849277 -5.807169 -2.837386 2.417906 -11.913061 -3.967602 -8.789738 0.988646 -0.675024 8.469016 -7.407014 -6.577667 -3.300712 -3.964860 -1.998912 11.270778 -11.619099 -1.139455 0.465198 -2.125236 8.552619 3.541529 -3.763657 -1.882746 -6.802291 3.356322 6.075407 3.394888 -12.912203 -5.150059 -4.112285 -4.140063 -1.599179 0.937967 7.555925 -5.669774 0.771915 5.673860 -1.876244 -2.756264 -1.314349 -10.607033 4.492568 0.326288 4.848516 2.198722 13.555261 7.585630 7.861778 0.327974 3.434665 -1.854415 -4.404042 -10.721107 4.548172 2.049902 0.895926 5.590600 8.295098 4.853491 5.230807 7.934957 1.104744 0.691147 9.679654 0.742356 10.147018 -5.444978 -0.992824 4.187912 0.854451 8.096404 9.362548 3.277080 -8.304264 4.776915 -4.946292 -8.278239 -1.788826 -0.917625 -0.982011 -1.350008 6.985406 8.542349 -1.622558 -2.894080 15.984031 -1.700431 -17.825741 7.420131 3.603971 6.493307 7.701425 -3.722436 6.536343 6.322097 4.054938 4.848605 6.608345 6.237141 -11.064647 -0.952422 1.205368 5.839441 10.465163 1.132184 -22.606408 0.887156 2.299393 11.072013 -1.355753 12.823847 -7.469821 4.068045 1.613577 -0.094095 1.786972 -0.793270 5.938030 -1.689464 0.748958 -13.938850 2.818215 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 1.560050 -0.481726 0.899114 -1.579294 -0.620956 -0.023634 1.707260 -1.609490 -0.959547 2.982525 0.255593 -1.337442 -1.185387 2.195779 -0.170050 -1.042574 0.665605 -0.845646 -0.252153 0.062763 -1.159575 0.823658 -0.757428 -1.681323 1.011614 -0.109699 0.696414 1.971927 -0.455247 0.499540 -0.325459 -1.245197 0.343388 3.556387 1.211089 -0.372630 -0.870721 4.928661 -3.229838 3.890326 -2.805616 -3.098345 4.681027 -0.577080 -0.420187 -2.339358 -0.772909 2.251358 -0.949135 -2.009252 0.040602 -0.283448 0.684750 -2.362123 -1.144925 2.784895 -3.718326 0.911060 1.596712 -1.647502 -3.019944 -1.172985 0.518046 0.611977 -2.877422 -2.130656 0.223823 -0.866626 -1.110176 0.301513 -2.634225 -2.176473 2.500273 0.997566 -0.846047 0.414413 -0.870185 -1.356114 1.482494 -0.498305 -2.371876 -1.474841 -0.261867 -1.755650 1.884634 1.066036 2.563992 -4.751757 1.180376 -4.823288 1.259522 -2.830221 1.939226 3.580828 -1.332290 2.818529 0.488682 2.427633 0.272309 -0.468551 1.999996 1.367974 1.061032 0.711505 2.392230 2.658726 -2.231764 -3.221005 -2.212960 -1.179191 0.758588 -0.934238 -3.753218 1.423667 -1.979014 0.679735 -0.076137 0.546272 -1.450102 2.513881 -4.227369 0.624605 0.627193 -0.789637 2.047109 2.290092 -0.190608 0.344675 -0.730880 1.953958 0.056436 1.409137 -0.336096 2.489591 -1.904367 -1.347911 -1.122829 0.617860 1.521440 -2.149346 -3.241361 -4.769104 -1.028081 1.694099 -1.635759 2.720711 5.115626 -1.333807 -2.179941 2.271957 -0.489380 0.755013 1.850906 0.721638 4.231269 -2.072888 0.131872 0.020425 -0.007089 0.938646 3.084249 -0.782267 -2.179453 2.299670 -1.091242 -0.946121 3.504171 0.501677 -0.597344 -0.510684 0.089356 -1.018721 -2.432915 3.881366 -3.025297 2.595066 -1.523341 4.085717 -1.243511 -0.765290 1.071119 -3.299610 -0.754577 -3.351589 -0.274175 -0.532800 2.312154 -2.653081 -2.029338 -0.940171 -0.626834 -0.854746 3.355002 -1.746691 -0.427202 0.164908 -0.192877 3.135442 1.416484 -1.280610 -0.196254 -2.845567 0.976615 1.806834 -0.189046 -3.629473 -1.081275 -0.797839 -1.184597 0.271512 0.259814 1.693553 -2.441393 -0.386243 1.711146 0.320759 -0.100305 0.134285 -3.997091 1.132690 0.495100 1.029183 1.733203 3.995762 2.237547 2.190029 0.214152 1.035689 -0.596299 -0.866603 -3.123034 0.700956 0.270285 1.292481 1.551659 2.003488 1.510857 1.212528 1.550630 0.599634 -0.148423 2.709521 1.282841 3.424770 -1.037550 -1.134493 1.258088 -0.223107 2.436942 2.752384 -0.678348 -1.671904 1.663707 -1.257716 -2.203275 -0.989829 -0.073685 -0.614096 -0.254007 1.968478 1.866384 -0.270196 -0.749172 4.855756 -0.865423 -6.168695 2.001655 1.283800 1.974721 2.742504 -0.606052 1.952531 1.915408 0.524758 1.894298 1.869739 1.835441 -2.856564 0.915175 0.339241 1.536894 2.309036 0.474073 -6.196458 0.395738 0.607740 3.298775 0.725970 3.305644 -1.638496 1.062660 0.314701 -0.571782 0.659393 -0.400877 2.068289 -0.160027 0.308529 -4.218249 0.293281 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 2.379834 -1.078941 2.052453 -3.858133 -1.351763 -0.992336 2.909836 -3.150805 -2.011335 5.165940 1.084192 -3.839089 -2.274252 4.381004 0.125901 -1.784918 1.880572 -0.535086 0.036810 0.428431 -1.748554 1.447352 -0.897762 -3.927539 2.149011 -0.203608 0.784997 3.845958 1.123966 0.742852 -0.305160 -2.588745 2.261688 7.426189 1.954292 -1.356739 -2.365190 9.577430 -4.982651 7.500289 -3.584021 -5.088802 9.313027 -1.293771 -0.710597 -4.355124 -2.073183 5.074612 -1.224447 -5.649301 -0.382355 0.283765 2.152265 -5.913937 -3.854625 5.644668 -6.435029 1.254771 3.863930 -3.211006 -4.530009 -1.668801 -0.226203 1.845779 -5.654551 -4.403603 -0.194212 -2.192105 -2.851793 -0.490248 -5.105269 -3.454498 6.348384 1.561538 -1.462135 1.596254 -1.213389 -2.857859 3.429880 -0.021445 -4.779037 -3.032824 -1.448745 -2.295720 3.998821 1.409168 4.746736 -9.147560 1.555780 -9.076694 3.296772 -5.537140 3.818938 7.385798 -3.465216 5.605001 1.377980 4.397698 0.380392 -0.039599 5.153781 2.683601 1.517205 1.722831 5.116267 5.019678 -4.497735 -6.396789 -4.297125 -2.669851 2.197996 -1.791844 -7.149653 3.453441 -3.918928 0.095988 0.224472 0.333779 -2.701349 5.124583 -7.304275 1.148199 2.163445 -1.790287 2.994763 4.986349 -0.147290 -0.147158 -1.386553 4.329685 0.170997 2.282069 1.079364 5.686888 -2.323399 -3.479053 -0.988189 1.306823 2.626799 -4.940825 -6.497501 -9.152988 -1.449145 2.397435 -3.522216 3.691193 10.152557 -2.403797 -3.106802 4.813317 -0.031546 1.433899 3.533844 1.702413 8.805427 -4.185734 -0.964385 0.133489 -1.300469 3.305064 6.872857 -1.474879 -4.592985 4.839768 -2.147825 -2.624128 5.759671 0.445648 -1.016162 0.013881 0.097496 -2.532522 -5.790500 7.047560 -4.705053 4.406972 -2.707318 9.056947 -0.784965 -2.119457 2.613821 -3.195254 -1.760567 -6.447981 0.330741 -0.381709 3.905678 -5.089380 -4.334897 -1.158312 -0.582652 -1.808051 6.752565 -3.963549 -0.391589 0.789311 -0.833140 4.754442 2.213496 -3.147405 -0.351120 -5.717475 1.764284 2.707513 0.017760 -6.949485 -2.312380 -2.240343 -2.229322 0.714628 -0.342026 3.989136 -4.636296 -1.071517 3.710157 -0.120173 -1.216445 -0.376184 -7.397181 2.414047 2.099716 2.368943 3.629792 8.448116 4.492459 4.715041 -0.090503 2.931078 -1.741822 -0.325662 -7.442126 1.636266 -0.757246 2.659282 3.515073 4.061483 3.400127 3.545042 4.558362 0.616250 -0.011902 6.213804 1.600544 6.133186 -0.723651 -2.639586 3.345428 -0.498820 6.097648 5.766811 0.062357 -5.070195 3.786929 -3.051794 -4.274064 -1.962089 0.418555 -0.331090 -0.657240 4.436205 3.954117 0.803093 -1.477368 8.637855 -2.379736 -11.895173 4.412281 2.651751 4.386201 5.432173 -1.156419 4.978233 3.121664 1.303965 2.903549 4.045298 4.037763 -6.341790 1.483816 0.936119 3.293265 4.197616 1.412996 -12.593748 -0.025515 0.863267 5.748248 0.826150 5.401985 -4.272584 1.394614 1.518588 0.156221 1.392577 -2.151260 3.656163 -1.634449 -0.093166 -6.843135 1.918158 +PE-benchmarks/n-queen-problem.cpp__main = 0.329389 -0.021552 0.337330 -0.557350 -0.150635 -0.124626 0.585028 -0.398426 -0.287312 0.410195 0.111962 -0.363396 -0.663340 0.384267 -0.071584 -0.497625 0.210871 -0.196948 -0.272041 -0.104463 -0.357165 0.079478 -0.159038 -0.572725 0.357373 -0.086414 0.240390 0.623328 0.140415 -0.113537 -0.082238 -0.298283 0.258056 1.098999 0.232711 0.046814 -0.265942 1.229145 -0.309590 0.781116 -0.801271 -0.718872 1.247403 -0.234932 -0.048469 -0.950319 -0.143189 0.683832 -0.548052 -0.434949 -0.063526 -0.030549 0.104797 -0.885766 -0.332349 0.925103 -1.040263 0.479760 0.488164 -0.421299 -0.733857 -0.317847 0.043636 -0.059581 -0.375872 -0.709758 0.025031 -0.215801 -0.565905 0.270253 -0.761317 -0.569809 0.910141 0.213426 -0.182678 0.281606 -0.249325 -0.320859 0.371940 -0.158868 -0.504591 -0.507531 0.205418 -0.020148 0.632530 0.195184 0.322684 -1.329281 -0.077939 -1.239979 0.364714 -0.822180 0.636036 0.897345 -0.420483 0.852041 0.066597 -0.019336 -0.218660 0.020300 0.634994 0.134153 0.435549 0.096934 0.650259 0.352287 -0.484194 -0.931647 -0.426485 -0.375500 0.083326 -0.146259 -1.044824 0.380686 -0.701985 0.225372 0.008342 0.164727 -0.255713 0.402022 -1.032106 0.061531 0.350072 -0.284032 0.658151 0.655866 -0.038981 0.036542 -0.214571 0.569941 0.123780 0.343124 -0.195724 0.716316 0.078155 -0.836037 -0.399503 -0.018763 0.420782 -0.506886 -1.029968 -0.932280 -0.362242 0.244582 -0.459433 0.442629 1.293740 -0.281069 -0.637497 0.640709 -0.085591 0.531585 0.526491 0.317366 1.122531 -0.697080 0.176587 0.072691 0.084818 0.450218 0.347678 -0.384478 -0.834955 0.648341 -0.208736 -0.300159 0.617462 -0.003687 -0.011440 0.200434 -0.085695 -0.370009 -0.729406 1.003194 -0.267499 0.995031 -0.271499 1.226017 -0.520617 -0.490352 0.258063 -0.372659 -0.087679 -0.648449 -0.030295 -0.076169 0.487367 -0.789952 -0.734395 -0.189631 -0.048428 -0.121962 1.022378 -0.213327 -0.212519 -0.106256 -0.074673 0.522400 0.342630 -0.553657 0.092512 -0.808402 0.335541 0.392706 0.217939 -0.979211 -0.172337 -0.108832 -0.383147 0.289492 0.137095 0.481960 -0.252174 -0.132088 0.589566 -0.042763 -0.099509 -0.108998 -0.682910 0.202855 0.107696 -0.030082 0.337212 1.144969 0.803775 0.445400 -0.108901 0.156664 -0.089706 -0.226854 -0.700711 0.050043 -0.127770 0.507450 0.436558 0.328008 0.427178 0.251263 0.581488 0.200170 -0.134606 0.833355 0.507038 0.890394 -0.358531 -0.311285 0.443559 -0.212887 0.743563 0.710210 -0.286310 -0.514945 0.553097 -0.016124 -0.364359 -0.532100 -0.238969 -0.128847 -0.314910 0.761395 0.401202 -0.251624 -0.148652 1.401086 -0.247768 -1.433960 0.649469 0.361303 0.515144 0.376585 -0.213017 0.370478 0.635689 0.024177 0.206447 0.315274 0.584522 -0.798088 0.020759 0.102580 0.489842 0.298198 0.022965 -1.361637 -0.242030 0.195424 1.030096 0.313695 0.573621 -0.378530 0.126133 0.004270 -0.011619 0.197999 -0.129552 0.490884 -0.243263 -0.179461 -0.939043 0.134425 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = 1.384773 -0.152690 1.078350 -2.050593 -0.550637 -0.314514 2.258135 -1.914296 -1.241940 3.064754 0.448847 -1.554221 -2.042603 1.344009 -0.122945 -1.382741 0.972839 -0.392035 -0.758429 -0.477445 -1.491207 0.377974 -0.795641 -2.216513 1.166640 -0.332172 1.170062 2.314138 0.195119 0.472419 -0.257389 -1.314226 0.769528 4.274822 1.295363 -0.260303 -1.274779 4.605214 -2.251937 3.261043 -2.870895 -2.863664 4.759014 -0.676938 0.083326 -2.901195 -0.251166 2.646317 -1.318244 -2.245001 -0.340206 -0.371785 1.018647 -3.235068 -1.551553 3.241761 -3.333976 0.967970 1.958517 -1.951820 -3.285541 -1.238903 0.765240 0.550747 -2.783571 -2.772896 0.224656 -1.016300 -1.574474 0.715035 -3.374900 -2.562165 2.090947 0.882733 -0.925175 0.630379 -1.308291 -1.617365 1.428119 0.251272 -2.108930 -1.844773 0.233167 -1.263262 2.075459 0.827121 2.052678 -5.173639 0.385875 -4.937048 1.197263 -2.758071 2.562939 3.668812 -1.289166 2.983848 0.233047 1.412452 -0.667125 -0.588423 2.265232 0.805804 1.513628 0.400667 2.713587 2.117433 -2.344364 -3.806171 -1.854920 -1.309125 0.751203 -0.978364 -3.438483 1.613110 -2.899350 0.168386 -0.077813 0.343054 -1.577726 2.508182 -4.405134 -0.030497 1.045918 -1.074289 2.562559 2.360560 -0.058026 0.438114 -0.486014 2.139632 0.504202 1.123180 -0.628673 2.936917 -0.705777 -1.783942 -1.098553 0.479512 1.950975 -2.174614 -3.964790 -4.214455 -1.574472 1.098174 -1.742262 2.163181 4.894273 -1.211913 -2.294289 2.295153 -1.350193 1.237244 1.957873 1.049611 4.313932 -2.880301 0.804588 0.085577 0.410825 1.593579 2.865742 -1.522096 -3.136647 2.664354 -1.327405 -0.289355 2.294786 0.271831 -0.171193 -0.198784 0.032347 -1.108726 -2.490486 3.877238 -3.074620 3.222367 -1.420584 4.554697 -1.858203 -1.243893 1.096481 -2.314630 -0.659072 -2.863967 -0.065178 -0.456809 2.341332 -2.754046 -2.675932 -0.851787 -0.159649 -0.500411 4.065062 -1.625078 -0.848352 -0.241032 -0.396908 2.765863 1.219851 -1.898812 -0.134635 -2.665397 1.324345 1.720365 0.563447 -3.321709 -1.240337 -0.849791 -1.579172 0.485254 0.479833 2.232946 -1.776009 -0.409423 2.200656 0.211152 -0.481551 -0.253063 -3.858161 1.423085 0.442228 0.159242 1.427343 4.600722 2.483877 2.074875 -0.229204 0.448638 -0.425709 -0.955924 -3.609142 0.715335 -0.116739 1.617248 1.730412 1.651218 1.546510 1.327935 2.003162 0.399821 -0.196267 3.198394 1.407475 3.186131 -1.222518 -0.892215 1.790323 -0.738295 2.642054 2.673879 -0.450517 -2.350382 1.951712 -0.862428 -2.169458 -1.524628 -0.659521 -0.525823 -0.579928 1.977487 1.884642 -0.801800 -0.866128 5.502015 -0.946636 -5.856004 2.374153 1.379991 2.138571 2.399870 -1.057072 2.107485 1.990709 0.629134 1.526372 1.663743 1.968538 -3.069412 0.612420 0.447826 1.815377 1.839367 -0.225002 -6.001603 -0.453196 0.429431 3.983929 1.166143 3.025543 -1.759831 1.284483 0.225756 -0.279361 1.000253 -0.810417 2.333058 -0.684612 -0.244781 -4.265714 0.927795 +PE-benchmarks/birthday-paradox.cpp__main = 0.160624 0.222781 0.152964 -0.240902 -0.359392 0.126326 -0.456745 -0.148240 -0.176832 -0.056207 -0.154119 0.067942 -0.253344 0.126837 -0.491898 -0.373386 -0.315535 -0.090565 -0.209815 -0.275267 -0.211737 0.006382 0.008744 -0.312882 0.137128 -0.289520 0.035354 0.161203 0.125771 -0.174561 0.051320 -0.081891 0.068994 0.437628 -0.016030 0.172366 0.187302 0.345656 0.527313 -0.096715 -0.451277 -0.452885 0.339665 -0.119164 0.228149 -0.484685 -0.075455 0.099825 -0.594501 0.350428 -0.143597 -0.211841 -0.325456 -0.128683 0.087799 0.073203 -0.535540 0.653922 0.072306 -0.064096 -0.118611 -0.134793 -0.041499 -0.134438 0.487447 -0.293631 -0.217316 0.480235 -0.344196 0.181025 -0.150350 -0.007432 0.564254 -0.001709 -0.015787 0.080696 -0.059872 0.110542 -0.035445 -0.629106 -0.178657 -0.207622 0.425949 0.352574 0.250311 0.267034 -0.085406 -0.340006 -0.087741 -0.371560 0.024550 -0.155895 0.256223 0.129799 -0.240367 0.129217 0.163653 -0.349371 0.181478 0.320764 0.247596 -0.142989 0.112443 -0.005528 -0.005070 -0.050187 0.085767 -0.132589 0.152062 -0.260756 -0.209187 0.141158 -0.468220 0.088466 -0.122127 0.461412 -0.205765 0.093111 -0.031444 -0.189024 -0.628308 -0.397819 0.074884 -0.107533 0.247691 -0.136308 -0.033636 0.050999 0.087135 0.041681 -0.042261 -0.167889 -0.061227 0.211222 0.213353 -0.652612 -0.759141 -0.137441 0.079288 -0.171909 -0.325251 -0.006132 -0.249670 -0.019961 -0.110389 0.181463 0.569488 -0.089304 -0.263028 0.168261 -0.067481 0.250123 0.555809 0.240857 0.286021 -0.117277 -0.051372 0.074341 -0.094194 0.175525 -0.620597 -0.299098 -0.187795 0.222812 0.228758 0.040804 -0.348081 -0.142915 0.006982 -0.038430 -0.069196 -0.079892 -0.080084 0.194067 0.209342 0.520441 0.115906 0.519628 -0.413743 -0.446146 0.141130 -0.162449 0.149256 0.256794 0.029034 -0.081386 0.093776 -0.355292 -0.260729 0.191779 -0.012407 -0.011768 0.301269 0.420059 -0.002727 -0.062606 -0.055966 0.347404 0.284978 -0.230363 0.296505 -0.219324 0.240504 0.267485 0.202011 -0.552010 -0.067037 0.034542 -0.083226 0.279544 0.074826 -0.029027 0.292787 0.086417 0.056862 -0.273690 0.134571 0.184335 0.538574 -0.019361 -0.328465 -0.062997 0.019675 0.298062 0.384204 0.085767 -0.030342 0.133196 -0.053746 -0.337476 0.704728 -0.047471 0.145585 0.137836 0.227735 0.180421 0.190637 0.131320 0.157001 0.253037 -0.167256 0.404679 -0.036904 0.442238 -0.713275 0.164037 -0.226231 -0.026703 0.365455 0.353186 -0.479081 -0.065069 0.116247 0.152878 0.327444 -0.442487 -0.175809 -0.004607 -0.258004 0.267621 0.243535 -0.012771 0.006366 0.503416 0.033837 -0.140021 0.368249 -0.028647 0.028749 -0.211487 -0.103683 -0.305581 0.255488 -0.180060 -0.360369 0.148400 0.257756 -0.359930 -0.118806 0.008595 0.353674 -0.297102 0.204435 0.066840 -0.028377 0.271610 0.243575 0.124780 -0.137902 -0.105515 -0.505005 0.132240 0.083309 -0.107747 0.106120 -0.059735 -0.187378 0.060613 0.154940 -0.273748 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.022134 0.710268 0.099097 -0.807674 -1.110188 0.350557 -1.109632 -0.014775 -0.698048 0.160289 -0.685885 0.543737 -0.153030 0.244649 -1.239874 -0.499402 -0.923850 -0.270574 -0.846470 -0.372280 -0.760219 0.288193 0.144037 -1.044381 0.692201 -0.873617 -0.186393 0.877013 -0.213466 -0.241137 0.613147 -0.160282 -0.135455 0.985855 -0.477762 0.424085 0.874153 0.519223 0.423071 -0.120807 -0.523192 -0.783169 1.030970 -0.379989 0.633171 -1.143078 -0.475006 -0.038872 -0.886636 0.409627 -0.606696 -0.797647 -0.963815 -0.082794 0.594331 -0.126440 -0.754777 0.676481 0.388079 0.006621 -0.313773 -0.337391 -0.058594 -0.342801 0.484710 -0.852727 -1.135789 0.707481 -0.136025 -0.026490 -0.444796 0.233820 0.617037 -0.012297 0.328111 0.202984 -0.447232 -0.225516 -0.324286 -1.019911 -0.200442 -0.493163 1.004741 0.218370 0.555465 0.239526 -0.155497 -0.270818 -0.303929 -0.391056 -0.616980 -0.189250 0.454935 0.340253 -0.111475 -0.047922 0.301629 -0.215330 0.357166 0.802881 0.404424 -0.469887 0.348930 -0.132652 -0.039459 0.246880 -0.204829 -0.602724 0.387263 -0.582020 -0.008198 0.049777 -0.649183 0.407850 0.149504 0.295978 -0.531985 -0.133555 -0.410305 0.244743 -1.098407 -0.407045 0.281833 -0.329967 -0.283792 -0.713453 -0.003106 -0.431154 0.580718 -0.624452 0.030963 -0.298312 -0.049857 0.633147 -0.160459 -0.587380 -0.999085 -0.819195 -0.321591 -0.489127 -0.389033 0.055740 -0.627159 -0.246231 -0.227672 0.047436 1.413066 -0.279939 -0.252687 0.101876 0.085694 0.320557 0.643072 0.580880 0.208116 0.064475 -0.588134 -0.062417 -0.572851 0.524245 -0.583845 -0.992830 -0.306469 0.511357 0.193734 -0.379972 -0.398921 -0.123054 0.346497 0.175507 0.072379 0.060503 -0.310536 0.609110 -0.128005 1.325805 0.362600 1.015601 -0.728175 -0.404630 0.827006 -0.066776 0.647429 -0.116731 -0.266304 0.076586 -0.111471 0.049660 -0.380036 0.399638 0.278787 -0.000527 0.593084 0.168421 0.123264 -0.442414 -0.210710 0.706675 0.504060 -0.770201 0.852849 -0.120850 1.061783 0.744554 0.408972 -1.207594 -0.458186 0.243804 -0.313337 0.262352 0.146268 -0.323913 0.733471 0.536769 0.479150 -0.828337 -0.445250 0.799227 0.543642 0.007760 -1.170837 -0.100688 0.156743 0.528630 0.768676 -0.060660 -0.357502 0.670687 -0.567648 -0.697379 1.095925 0.084540 -0.008554 0.182020 0.881281 0.745572 0.667480 0.694304 -0.000701 0.441520 -0.139289 1.121050 -0.293094 0.799665 -1.129230 0.329915 -0.567084 0.111795 0.882158 0.211568 -0.300297 -0.337896 0.093708 0.233638 0.423530 -0.944896 -0.511720 0.095732 -0.532541 0.451263 0.247682 0.070447 0.379617 1.272089 -0.065485 -0.028704 0.196332 -0.536052 0.287757 -0.424466 -0.072406 -0.289198 0.479165 -0.145501 -0.867412 0.399916 0.399095 -0.766104 -0.011469 0.190495 0.493387 -0.470506 0.737424 -0.143553 0.202883 -0.118975 0.207004 -0.046420 0.241031 0.082690 -0.738272 0.676897 0.530641 -0.325345 -0.235991 -0.559808 -0.490217 0.412189 -0.453961 -0.294118 +PE-benchmarks/edit-distance.cpp__main = 1.872998 -2.212474 2.587059 -7.501572 -4.539652 -1.814694 -0.995113 0.257602 -2.438583 4.741829 1.589269 -8.070453 -8.370857 6.867915 0.052104 -6.721709 3.124942 -3.513182 2.470060 -1.060123 -0.797624 1.990452 1.967621 -3.894082 2.392885 0.772187 -5.900458 4.846864 13.058533 -3.377631 1.248479 -0.387607 2.547615 7.685557 -0.668154 -6.208234 -1.222139 11.553880 -0.974712 4.659986 -5.298728 -3.331087 11.754542 -1.340307 -1.053018 -7.754388 -3.268710 8.012531 -8.249016 -4.544201 0.057944 3.360692 2.673689 -7.868151 -7.571550 8.173402 -13.496412 7.736639 4.011062 -0.663090 -0.613688 2.801944 -1.930030 3.121474 0.099872 -5.756115 -2.239919 -4.838268 -6.952212 -2.848070 -3.384718 1.399392 8.584882 1.675146 -1.285805 4.211192 1.816911 -1.468701 5.351264 -7.559729 -6.606817 -2.127740 -3.377512 -3.368693 8.786692 -1.319944 2.896888 -9.482878 2.734167 -10.272188 4.811011 -8.616441 1.795098 10.265365 -5.874753 6.203835 0.804054 -3.726916 5.233787 0.752160 8.894224 2.676849 3.867351 5.093533 4.225432 4.596896 -2.549189 -2.553947 -4.009840 -4.182787 -1.744767 -1.663378 -8.622317 6.360933 -2.460640 1.579793 5.557014 -1.278146 -3.855942 2.846579 -2.986568 -1.680252 1.029705 -1.848385 0.386296 7.562862 -1.244750 -2.753730 -2.102124 8.795567 0.545048 4.887321 7.367300 6.640343 1.905842 -9.534568 -2.137710 3.135905 0.693495 -4.678899 -6.457465 -9.887683 1.716281 -5.000519 -4.584386 6.377789 12.561867 -0.073259 -4.037884 8.500832 -0.942844 3.818445 6.262685 0.011544 10.979883 -2.351020 -5.958942 -0.114225 -3.954965 3.361040 5.064575 0.325405 -2.778325 4.589613 -1.531770 -2.246408 -2.600802 1.656335 -1.262718 0.371165 -1.001802 -5.925583 -8.819742 5.762705 0.223603 5.684122 2.392346 11.500358 5.805382 -8.164916 6.812881 1.126635 -0.887899 -1.242885 -1.570341 2.647160 -2.396910 -5.714219 -4.933011 -5.032138 3.345672 -5.551333 5.847388 -0.226567 3.214674 5.100224 1.046353 4.939382 1.525174 -4.281085 2.673021 -9.514485 1.406576 3.129643 -0.875542 -8.864080 -0.911341 -1.656767 0.343628 8.488736 -1.374432 6.201485 -3.977102 -3.872545 4.230066 1.062233 1.105270 0.002776 -6.972624 1.926709 2.985455 3.676754 5.585620 10.831898 5.104268 4.185820 -2.200593 8.364482 -2.698846 3.788874 -2.898182 -3.586406 -2.632672 1.207657 4.425269 1.673746 3.681161 5.023290 8.858001 4.811938 -6.894765 7.382581 -1.265187 5.242716 -0.583711 -4.864398 3.793787 -1.054852 7.529182 8.754279 -1.749272 -6.316010 6.344657 -1.923589 -0.865811 -7.000315 0.920076 -1.147315 1.353041 6.012915 2.142159 1.496429 0.119431 4.147882 -0.956164 -12.705386 10.275896 3.647451 4.514545 3.240670 1.210413 2.120748 2.376962 -5.448685 -0.137578 6.849126 2.836465 -7.009299 2.026455 2.947399 7.109331 0.024376 6.577462 -12.758332 -4.226417 2.291553 2.969710 2.718695 4.760771 -4.232946 -8.814725 4.186178 1.295247 -1.442568 -4.660479 -1.493008 -6.228687 0.586509 1.515874 0.829298 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 5.785706 -3.812585 7.424719 -15.351004 -7.717408 -4.028834 3.031404 -2.187254 -5.716431 15.282964 2.701207 -16.038291 -16.605709 12.725099 -1.230010 -11.662663 8.021692 -4.970136 3.514554 -3.090605 -3.575501 3.415354 3.214447 -9.520059 5.647610 0.739302 -7.467191 12.129119 21.199596 -4.664911 3.257343 -2.218453 5.916240 18.691208 0.452509 -11.686794 -5.137171 23.494057 -5.208803 13.236437 -13.068525 -7.018364 25.849275 -2.579256 0.183021 -19.098978 -6.378557 17.925744 -12.897667 -13.489197 -1.542471 5.189675 7.492355 -18.699595 -16.633111 18.812514 -25.266443 11.248973 9.540894 -5.560851 -6.257683 5.530608 -0.688385 7.660551 -5.379321 -14.806461 -3.930463 -10.329368 -13.524780 -3.307392 -10.656659 -1.096496 14.354783 2.306182 -4.017701 7.794206 1.370907 -4.773935 11.009043 -11.602910 -12.691653 -6.646753 -6.633550 -9.735687 16.438021 -2.448086 8.576746 -22.360501 6.344125 -22.580778 9.890311 -17.634005 6.146867 21.363891 -9.073655 14.741701 0.808544 -4.437256 7.325012 0.576168 17.566325 6.685430 9.235876 8.629723 11.953663 10.459829 -8.090124 -10.990449 -10.374691 -8.393474 -0.886436 -4.963801 -17.572874 13.276130 -7.716639 2.755318 9.848543 -2.816709 -8.582975 11.059617 -10.542448 -0.726982 3.941692 -4.526218 1.670173 16.315595 -1.549719 -4.628793 -3.113676 17.294921 1.942066 9.267748 14.016291 15.517427 1.465144 -17.286007 -1.733943 6.268900 3.463181 -9.736847 -15.473466 -22.865342 0.501810 -6.998815 -10.488842 12.908365 26.756024 -0.533292 -9.674453 15.313114 -3.073977 5.083144 10.959455 1.541510 24.909508 -9.070606 -9.743884 -1.327406 -5.775876 10.135646 17.551699 -2.135378 -9.238718 13.186674 -5.829635 -7.421532 -0.257168 3.284441 -0.898980 3.902397 -1.483094 -9.542062 -17.094379 13.594685 -6.073318 14.153830 0.699155 25.511018 8.978996 -14.964166 11.622430 -0.781123 -2.275302 -5.048061 -1.468988 4.078596 -0.723928 -12.294152 -11.848915 -10.253787 4.231393 -8.730287 16.793230 -6.297826 4.652754 7.768207 -0.246138 13.781760 1.946209 -10.106337 4.243575 -18.658305 4.424516 6.515862 0.486056 -19.099236 -4.624342 -4.326503 -1.667899 12.750815 -1.931607 14.540052 -10.155780 -6.224691 10.762756 1.448088 -1.580403 -1.566585 -17.591366 5.174999 5.894310 7.506785 10.538775 25.453648 11.845186 9.742252 -5.439098 14.944049 -5.930430 4.466552 -13.391581 -4.254381 -4.703778 2.399616 9.467585 3.956588 6.981606 10.567369 17.654180 7.016444 -10.496124 16.774964 -1.882699 10.279202 -2.870173 -8.998109 9.904545 -2.780721 15.409953 16.418888 -1.093171 -15.242440 13.111734 -5.493487 -5.873851 -13.060151 1.194900 -1.994095 2.639722 13.293339 7.960646 1.478618 -1.002524 13.074540 -2.477030 -29.589818 20.090209 7.656515 9.717724 10.613650 0.538038 9.221718 5.017516 -5.083729 0.002912 13.356039 6.580298 -17.076841 4.062979 6.434505 13.711231 3.856807 10.185395 -35.083875 -9.805244 2.686039 10.561686 3.982872 15.016633 -10.217904 -10.960438 8.973891 3.050115 -0.924041 -9.990465 0.196604 -11.703590 -0.009107 -4.145187 6.233468 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = -0.022933 0.090411 0.506092 -1.101433 -0.959595 -0.190387 0.712006 -0.421791 -0.223023 0.329462 0.483811 -0.493887 -0.803814 1.136523 -0.116401 -0.832808 0.016603 -0.568111 -0.272446 -0.044878 -0.121698 0.777642 -0.204966 -0.236406 0.564276 -0.137355 -0.273641 0.895476 0.460279 -0.605218 0.026956 -0.429937 0.154633 1.235967 0.060445 0.121330 -0.218165 1.845373 -0.884457 1.071113 -1.386432 -0.946175 1.527938 -0.268165 -0.325557 -1.811698 -0.810510 0.754811 -0.543424 -0.443874 0.365106 0.123684 0.252137 -0.747270 0.111973 1.036698 -1.605125 0.726745 0.676240 -0.684532 -0.421046 -0.167234 -0.404083 -0.113764 -0.463046 -0.823152 -0.098325 -0.212998 -0.434557 -0.038527 -0.207942 -0.722626 1.692568 0.282812 -0.304279 0.570592 0.021111 -0.883897 0.838701 -0.699010 -0.948289 -0.522678 0.270472 -0.002522 0.779441 -0.011371 0.546036 -1.739200 -0.256951 -1.587239 0.644895 -1.044533 0.588574 1.166767 -0.752353 0.974939 0.401385 -0.341099 0.541298 0.171475 1.031126 0.373730 0.835670 0.594620 0.615934 0.679147 -0.633292 -0.861579 -0.922385 -0.948166 0.272735 -0.273818 -1.808381 0.485201 -0.201684 -0.081217 0.153018 -0.171100 0.131260 1.131708 -0.775416 0.494160 0.730717 -0.297157 0.150143 1.203911 -0.041968 -0.295964 -0.580191 0.869491 -0.453025 1.077818 -0.142700 0.941763 -0.097481 -1.505902 -0.567654 -0.107176 0.016703 -0.824114 -0.959399 -1.268184 -0.068667 0.219589 -0.698435 0.295086 2.067329 -0.953680 -1.301616 1.277061 0.971346 0.255863 0.374581 0.285012 1.374707 -0.431674 -0.437115 -0.516649 -0.559840 0.496290 1.170699 0.168606 -0.831529 0.694018 -0.185901 -1.902587 1.381744 -0.112726 -0.453134 0.469559 0.128193 -0.784007 -0.958510 1.138677 0.393708 1.415178 -0.399907 1.532356 -0.473778 -0.911749 0.403096 -0.379611 -0.143782 -0.999471 -0.254423 0.516714 0.329625 -0.791172 -0.625387 -0.607185 -0.368100 -0.640733 0.742997 -0.779580 0.111965 0.160932 0.167303 0.417779 0.987368 -0.258709 0.160899 -1.101712 0.617860 0.429175 0.255200 -1.837350 -0.095121 -0.243025 -0.349644 0.498223 -0.070259 0.700884 -0.126415 -0.125279 0.484535 -0.420900 -0.064457 -0.004890 -1.045058 0.152871 -0.117033 0.565218 0.319955 1.116216 1.296117 0.951686 0.238470 0.680325 -0.160534 -0.109512 -0.436242 0.070633 -0.003206 0.212728 0.767699 0.988442 0.957174 0.467479 1.233101 0.686938 0.037644 1.204076 0.257146 1.667158 -0.247152 -0.622648 0.329912 0.209353 1.059192 1.414565 0.117545 -0.308355 0.775254 0.310613 -0.445874 -0.882287 0.136660 -0.231758 -0.405615 1.456232 0.517089 -0.247823 -0.127621 1.550444 -0.339113 -1.793718 0.939528 0.334731 0.856444 0.017861 0.189292 0.204733 0.863256 -0.540697 0.501320 0.750984 0.911036 -1.167184 -0.680666 0.144004 0.650249 0.821450 0.827018 -2.150858 -0.203609 0.428282 1.167805 -0.115878 1.105174 -0.592738 -0.455175 0.390381 0.050193 -0.134979 0.030041 0.077606 -0.675676 -0.019398 -1.016092 -0.205647 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.139511 0.448700 2.253521 -3.106159 -3.970101 -0.654329 1.003830 -1.470387 -0.694180 1.586859 0.775203 -1.737584 -2.352654 3.601626 -1.433649 -2.891757 -1.003216 -1.267212 -0.673196 -1.553052 -0.427589 2.434114 -0.610150 -0.236059 1.446116 -1.229702 -0.392698 2.701431 1.868754 -1.107795 0.731969 -1.533588 0.595520 4.011629 0.277596 0.153172 -0.423423 6.637902 -1.535601 2.648086 -4.466390 -4.001820 4.367576 -0.757304 -0.405418 -5.280386 -2.492671 2.224992 -3.000056 0.317999 0.942867 0.800215 0.319547 -2.001405 0.623681 2.165670 -5.541529 3.371673 1.524406 -2.514934 -1.555916 -0.789379 -1.677316 -0.072417 -1.163685 -2.347795 -0.267120 0.792711 -1.707383 0.688873 0.066932 -1.667137 5.217806 0.657149 -1.239367 1.825486 1.082426 -2.075838 2.647195 -2.923585 -3.591102 -1.686181 1.115898 -0.398538 2.730342 0.451065 1.939073 -5.727618 0.083775 -5.288466 2.001097 -3.506093 1.636914 3.974004 -3.068205 3.583826 1.505985 -0.460927 2.325018 0.404608 3.279253 1.587094 2.644680 2.628931 1.566823 2.209342 -1.406654 -2.386658 -2.924357 -3.129842 0.155039 -1.140275 -6.234468 1.220151 -0.081137 0.554712 0.053313 -0.182384 0.053186 3.479228 -3.930790 0.556133 2.243087 -0.958416 0.486907 2.695582 -0.582697 -0.280194 -1.673240 3.256293 -1.782512 2.792445 -0.138939 2.756238 -0.528083 -4.455647 -3.701463 -0.040443 0.175243 -2.079990 -3.287484 -3.643969 -1.005642 1.002622 -1.813519 1.874069 7.027730 -2.755709 -4.415936 4.383383 1.783147 0.840976 2.219185 1.299999 3.781364 -0.700168 -1.960627 -2.126630 -1.883110 1.528400 2.795853 0.882255 -2.323490 2.619929 0.113723 -3.991569 3.020244 -1.233490 -1.888573 -0.804344 0.548905 -2.665898 -2.230114 3.840790 0.311561 4.656121 -1.497753 5.029119 -1.565849 -3.697717 0.792472 -3.063303 -0.019487 -2.372151 0.182987 0.947361 1.488480 -3.237616 -2.403857 -1.485431 -1.657430 -1.995644 1.891516 -1.315055 0.481804 0.805427 1.244674 2.896121 3.842757 -0.376492 0.345476 -3.796566 1.802596 1.540381 0.928442 -6.012466 0.035397 -0.180535 -1.104744 1.097494 0.081091 1.674787 -0.451665 -0.228426 0.352289 -1.537017 0.296105 0.416529 -3.192995 0.874550 -0.692298 2.411919 0.944799 2.874711 5.020862 2.880027 1.422102 2.362982 -0.257456 -1.077686 0.710455 0.800959 1.502649 -0.070013 2.046380 4.179166 3.146706 1.282368 3.689961 3.123939 -0.462521 3.634245 0.173648 6.189826 -2.441577 -1.346037 -0.050763 1.462585 3.356743 5.527063 0.316008 -0.539332 2.570650 1.236660 -0.526782 -3.528220 0.082050 -0.843860 -0.325343 3.833480 1.954795 -1.639768 0.184001 4.406595 -0.679826 -5.338687 3.232201 1.306970 2.220186 -0.460772 0.399637 -0.586436 3.134414 -2.327267 1.787962 2.574628 2.221220 -3.844261 -2.201191 0.339058 2.551982 2.269566 3.185932 -6.072188 -0.348988 2.079284 3.419800 -0.344527 3.392916 -2.179424 -3.011762 1.799153 -0.450293 -1.161700 1.135669 0.189585 -2.471772 1.030346 -1.716286 -2.755755 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = -0.102031 0.058570 1.103195 -1.672878 -1.660705 -0.202625 1.306393 -0.771019 -0.366166 0.813565 0.732325 -0.657126 -0.829072 1.639009 -0.106113 -0.963783 -0.042041 -0.892136 -0.396435 -0.273618 -0.080052 1.251189 -0.348504 -0.170963 0.645011 -0.401493 -0.194451 1.636004 0.152422 -0.387491 0.361283 -0.800462 0.113471 1.881817 0.272800 0.100015 -0.401465 2.968584 -1.843492 1.846764 -1.833829 -1.583716 2.244431 -0.417816 -0.498998 -2.593318 -1.416863 1.082543 -0.375733 -0.843562 0.598851 0.265802 0.704869 -0.940910 0.124745 1.210429 -2.131973 0.397863 0.929425 -1.445294 -0.861560 -0.290283 -0.682922 0.164189 -1.479163 -1.123911 -0.009994 -0.377719 -0.150548 -0.005065 -0.093739 -1.162931 2.262996 0.426782 -0.399257 0.730489 0.405376 -1.597676 1.469445 -0.270843 -1.658395 -0.810936 -0.117792 -0.877432 1.300815 -0.356780 1.210103 -2.634622 -0.010264 -2.469535 0.866164 -1.615149 0.615661 1.860245 -1.024047 1.559391 0.750063 0.502317 0.638855 -0.184424 1.436447 0.882566 1.327227 1.307011 1.326453 1.213482 -1.195280 -1.513400 -1.874797 -1.480583 0.813355 -1.034425 -2.741696 0.735948 0.151476 -0.748429 0.050956 -0.353929 0.068298 2.503501 -1.270722 1.386570 1.288438 -0.448257 -0.310365 1.546000 -0.201973 -0.341694 -0.773882 1.406309 -0.937642 1.847663 -0.026204 1.429288 -0.627063 -1.407339 -0.580765 0.103319 0.009697 -1.102798 -1.423812 -2.018672 -0.270785 0.804658 -0.930123 0.560899 3.186540 -1.492107 -2.035165 1.971273 1.677102 -0.147877 0.171984 0.558197 1.737252 -0.331068 -1.136518 -1.351146 -1.130955 0.746598 2.597854 0.445658 -1.026463 1.479948 -0.482317 -2.859361 3.027419 -0.498691 -0.943734 0.635479 0.331299 -1.275348 -1.356588 1.874919 0.193024 2.039268 -0.711145 2.245490 -0.414815 -1.063077 0.359418 -1.005143 -0.165030 -2.047326 -0.117974 0.764659 0.648057 -0.981631 -1.051569 -1.109118 -0.805035 -0.941945 1.007193 -1.789714 0.362558 0.473431 0.491414 0.786352 1.684568 -0.101284 -0.235810 -1.484898 1.024977 0.654266 0.442623 -2.482714 -0.317190 -0.251993 -0.532799 0.075803 0.039530 1.196991 -0.592871 0.010577 0.580771 -0.676149 -0.543844 0.261230 -2.772225 0.417485 0.079312 1.237987 0.458338 1.443113 2.185191 1.519201 0.650078 1.201562 -0.297004 0.008897 -1.323745 0.317122 0.329652 0.106457 1.065969 2.007762 1.535020 0.871807 1.867191 1.344431 0.525161 1.721611 0.190838 2.580164 -0.082039 -0.914156 0.376325 0.877176 1.575755 2.166376 1.145470 -0.324047 1.099346 0.348419 -1.076246 -1.321182 0.244259 -0.364627 0.082017 1.991781 1.017610 -0.556672 -0.061761 2.215802 -0.425177 -2.809822 1.003196 0.638113 1.372321 0.491618 0.232044 0.637809 1.240611 -0.544757 1.376355 1.295983 1.053633 -1.898756 -0.877978 0.318269 0.759378 1.575780 1.549168 -3.730123 -0.144953 0.269669 1.668153 -0.579282 2.308467 -1.132155 -0.365145 0.976726 -0.107322 -0.273639 0.354169 0.219717 -1.152647 0.298864 -2.018175 -0.526268 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.341827 -0.113628 0.980208 -1.715398 -1.918482 -0.010206 0.683843 -1.035479 -0.403120 1.458037 0.417227 -0.582397 -0.705083 2.005160 -0.465343 -1.097904 -0.206557 -0.884229 -0.081103 -0.147894 -0.210819 1.395878 -0.508678 -0.118274 0.500186 -0.406466 -0.097335 1.050167 0.038744 -0.262608 0.031687 -1.072478 -0.097196 2.011286 0.553742 0.149842 -0.514966 3.343133 -1.302812 2.268015 -2.350490 -2.091657 1.879314 -0.457261 0.115215 -2.473495 -1.029726 1.121949 -0.240688 -0.648572 0.637449 0.124333 0.486373 -0.750950 0.262826 0.635243 -2.141037 0.838273 0.951376 -1.265192 -0.738613 -0.512438 -0.593797 0.446395 -1.599434 -1.132310 0.010898 0.273054 -0.482967 0.081679 -0.243492 -1.192448 2.042067 0.681449 -0.846172 0.507394 0.474133 -1.491859 1.432625 -1.291821 -2.160160 -0.754482 -0.161098 -0.787347 1.286587 0.222192 1.640476 -2.955588 0.884218 -2.944435 0.909892 -1.563948 0.759391 2.194540 -0.992482 1.452676 0.983733 1.105304 1.435363 -0.065257 1.471219 1.313208 0.964897 1.289918 1.192339 1.456126 -1.023424 -1.351936 -1.588491 -1.509975 0.476957 -0.854137 -2.843358 0.792757 0.252021 0.146777 -0.261274 0.089641 -0.180108 2.081919 -2.558645 0.270255 1.004503 -0.467998 0.225846 1.246340 -0.361338 0.001395 -0.851415 1.555569 -1.094424 1.542288 -0.001460 1.561651 -1.203295 -1.021538 -1.344006 0.307586 0.319721 -1.269230 -1.633183 -2.495597 -0.499583 1.068192 -1.005862 1.372397 3.475084 -1.743824 -2.038460 2.100556 0.783622 -0.332803 0.778007 0.544890 1.580616 -0.273205 -1.062268 -1.103314 -1.004639 0.363296 2.326783 0.585465 -1.072245 1.527684 -0.548669 -2.341689 2.124442 -0.343895 -1.210009 -0.705910 0.256541 -1.293054 -0.929665 1.842295 -1.141920 1.824592 -0.914388 2.352368 -0.558865 -0.918933 0.349197 -2.202325 -0.171020 -1.724546 0.101593 0.470878 1.018014 -1.648726 -1.042897 -0.630976 -1.107145 -1.084042 0.985205 -1.652917 0.174383 0.690821 0.607854 2.193805 2.002679 0.115082 -0.235085 -1.386580 1.133769 0.617310 0.103681 -2.473441 -0.508116 -0.395234 -0.589353 0.155204 0.066787 1.013492 -0.803564 -0.128347 0.244459 -0.554271 -0.005048 0.522313 -2.099630 0.424049 0.069864 1.627613 0.569107 1.451966 1.866426 1.956692 1.016679 0.999530 -0.315897 -0.259163 -0.575588 0.519950 0.869254 -0.293993 1.053477 2.172713 1.646166 0.842538 1.847350 1.465331 0.334291 1.840124 -0.254783 2.871309 -0.816749 -0.699996 0.178186 0.804041 1.662080 2.569513 0.303124 0.038427 1.120017 -0.074173 -0.992818 -0.803259 0.486068 -0.431367 0.025097 1.371766 1.320062 -0.332632 -0.265636 2.250531 -0.492936 -2.933377 1.209407 0.674856 1.448958 0.809140 0.281505 0.550317 1.053102 -0.724048 1.661399 1.627759 1.042312 -1.835570 -1.000123 0.262673 0.850144 1.775207 1.600523 -3.082039 0.114924 0.757137 1.776722 -0.398780 1.994988 -1.377205 -0.690090 1.108113 -0.388965 -0.329156 0.379268 0.487551 -0.686775 0.347266 -1.517034 -1.014010 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.164558 0.400619 1.986635 -3.012388 -3.549159 -0.709399 0.944894 -1.136910 -0.634409 0.698060 0.794687 -1.591511 -2.292526 3.272426 -1.249783 -2.832134 -0.768567 -1.510948 -0.731892 -1.345406 -0.507042 2.207179 -0.553252 -0.259254 1.603309 -1.052421 -0.647014 2.661135 2.236388 -1.576074 0.503034 -1.246205 0.477563 3.832043 0.081357 -0.200592 -0.019093 6.450656 -1.118901 1.774072 -3.780204 -3.324987 4.278998 -0.856532 -0.854581 -4.844473 -2.524519 2.091480 -3.248626 0.663899 1.005561 0.770732 0.082998 -1.999436 0.582626 2.437283 -5.607090 3.506024 1.553867 -1.790439 -1.330358 -0.896674 -1.648019 -0.638336 -0.507550 -2.254133 -0.044637 0.533246 -1.796008 0.550181 -0.032884 -1.477157 5.294433 0.685068 -0.868167 1.949793 0.958022 -2.083229 2.418038 -2.677042 -3.292142 -1.563485 1.267597 -0.226091 3.030496 0.006802 1.304967 -5.360578 -0.268740 -4.964400 1.610385 -3.616228 1.614578 3.878828 -3.300939 3.443585 1.258193 -0.900733 1.817191 0.504550 3.376701 1.135257 2.336459 2.383909 1.369559 1.706117 -1.071966 -1.940656 -2.539654 -2.840070 -0.171977 -0.820429 -6.039413 1.274808 -0.392942 0.347718 0.129624 -0.056393 0.035812 3.026990 -2.970223 0.537956 2.043527 -0.977074 0.488507 2.893562 -0.582053 -0.538707 -1.866336 3.121913 -1.487158 2.731379 -0.446925 2.511528 0.088628 -4.834580 -3.643425 -0.462416 0.136438 -2.007660 -3.308093 -2.999987 -0.805379 0.202223 -1.742668 1.809813 6.625943 -2.480433 -4.072662 4.381388 1.955748 1.542960 2.368268 1.163849 3.702695 -0.668397 -1.756223 -1.820656 -1.707365 1.261030 1.105730 0.693462 -2.032084 2.120954 0.363655 -3.353460 3.145433 -1.004711 -1.659530 -0.016941 0.451238 -2.573800 -2.749648 3.911551 1.574434 4.560514 -0.727753 4.923823 -1.371063 -3.783247 0.983393 -1.721810 0.248877 -2.209119 -0.049619 0.865562 1.074946 -2.737001 -2.425612 -1.348520 -1.103592 -1.935609 1.751880 0.005247 0.573944 0.628281 1.210908 1.733067 3.731028 -0.650404 0.768841 -3.945012 1.669011 1.643680 0.760081 -5.599616 0.364937 0.089444 -1.020993 1.441114 0.099835 1.528604 -0.304229 -0.508806 0.508614 -1.086716 0.485228 0.396143 -3.123438 0.792291 -0.895469 1.674890 1.021348 2.719811 4.947621 2.419541 1.148440 2.082858 -0.185715 -0.708136 0.860999 0.277100 0.918584 0.609116 1.962361 3.703944 3.067037 1.149582 3.268109 2.925398 -0.635779 3.440496 0.725580 6.023108 -2.047500 -1.549420 -0.074908 1.088915 3.349886 5.223582 0.088426 -0.561724 2.512499 1.708515 -0.251876 -4.062287 -0.053774 -0.789949 -0.449211 3.543300 1.250834 -1.669155 0.288248 4.278227 -0.762557 -4.984861 3.150089 1.253707 2.088173 -0.917570 0.604759 -0.794149 3.153434 -2.655548 1.504293 2.213633 2.241723 -3.387622 -1.882427 0.350403 2.594205 1.186594 3.040494 -5.271019 -0.178163 1.961595 3.118883 0.127775 2.661163 -1.671679 -3.115147 1.493969 -0.332020 -1.060370 1.187531 0.183790 -2.799966 0.929021 -1.420164 -2.641412 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.050182 0.105972 0.780265 -1.170066 -1.226961 -0.006837 0.554006 -0.598752 -0.245393 0.109331 0.613865 -0.357479 -0.428596 1.154730 -0.260339 -0.685174 -0.078443 -0.761176 -0.267228 -0.369377 -0.029850 0.822552 -0.250743 -0.079116 0.425024 -0.372586 -0.258505 1.086839 0.259117 -0.501732 0.132841 -0.455619 -0.015399 1.325796 0.209650 -0.139529 -0.023837 2.181314 -0.974317 0.684575 -1.199650 -1.000375 1.506099 -0.330668 -0.498957 -1.757627 -1.239177 0.630666 -0.433684 -0.129982 0.451704 0.034743 0.363062 -0.517045 0.087113 0.872297 -1.733851 0.545448 0.599652 -0.820005 -0.523180 -0.257576 -0.416375 -0.174012 -0.560204 -0.747342 0.205165 0.047717 -0.119472 0.000257 0.003087 -0.843513 1.796944 0.254858 -0.097024 0.508546 0.329910 -1.197043 0.989202 -0.203106 -1.227161 -0.519485 0.050844 -0.568356 1.089109 -0.394116 0.657095 -1.843830 -0.056377 -1.812645 0.454333 -1.169409 0.468315 1.220140 -1.055264 0.988310 0.630649 0.264259 0.427636 0.039755 1.191208 0.434105 0.708141 0.944358 0.873784 0.606441 -0.531696 -0.664614 -1.165449 -1.076479 0.359349 -0.587289 -2.136684 0.524244 -0.017834 -0.649129 -0.166146 -0.184779 0.172931 1.733984 -0.627278 0.855657 0.842683 -0.315490 -0.249737 1.102038 -0.161850 -0.237223 -0.698952 1.028006 -0.763351 1.194623 -0.170690 0.872121 -0.157763 -1.501514 -0.835118 -0.024990 0.014910 -0.856285 -1.096484 -1.083847 -0.142119 0.259622 -0.609031 0.542539 2.266406 -1.075019 -1.522445 1.513095 1.453634 0.057509 0.543681 0.415812 1.333365 -0.191094 -0.805393 -0.934492 -0.849907 0.365784 0.547044 0.228932 -0.423205 0.869672 -0.010976 -1.798826 2.483046 -0.473393 -0.753230 0.833155 0.276222 -0.874232 -1.126190 1.327448 1.063643 1.494584 -0.035927 1.673565 -0.319551 -1.018355 0.249153 -0.250960 -0.000151 -1.099962 -0.030717 0.362855 0.412107 -0.497791 -0.828470 -0.655486 -0.487314 -0.669652 0.635726 -0.291583 0.483686 0.425153 0.316977 -0.049899 1.430031 -0.064763 0.076037 -1.147045 0.656637 0.739503 0.318798 -1.820089 -0.080588 -0.147426 -0.246735 0.122003 0.068500 0.903557 -0.341579 -0.082264 0.243872 -0.345877 -0.099947 0.296815 -1.750297 0.335342 -0.305520 0.634281 0.252042 0.928733 1.714618 1.029403 0.488674 0.737482 -0.084418 0.036757 -0.406484 -0.021219 0.248966 0.392246 0.716620 1.446390 1.092008 0.680166 1.185835 1.006985 0.470436 1.220890 0.282879 2.063436 -0.237328 -0.555912 -0.050308 0.588687 1.236653 1.745009 0.751607 -0.135055 0.671083 0.532069 -0.520996 -1.491744 0.167919 -0.205588 0.018550 1.239740 0.640234 -0.354746 -0.114051 1.571001 -0.181417 -1.846689 0.901233 0.444958 0.831500 0.068084 0.226212 0.157041 0.948155 -0.597893 0.840259 0.942049 0.846487 -1.305552 -0.659118 0.209115 0.797328 0.469093 1.224595 -2.262155 0.319589 0.342238 1.021461 -0.303306 1.235848 -0.753732 -0.607842 0.655726 -0.089019 -0.263739 0.623025 0.176175 -1.183868 0.307207 -1.093979 -0.588015 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 0.258999 -0.787202 2.983365 -5.462571 -4.875098 -0.226478 3.174924 -2.878383 -1.254081 4.803460 1.467038 -2.143556 -2.400446 5.747876 -0.217243 -3.108811 0.049816 -2.703328 -0.388291 -0.029531 -0.749961 4.087685 -1.524054 -0.559357 1.696198 -1.038581 -0.131628 4.141465 -0.061463 -0.354226 0.530253 -3.230105 -0.478636 6.287106 1.746835 0.581914 -1.720788 9.655611 -5.679984 7.993899 -6.190722 -5.704177 6.294116 -1.233786 -0.429300 -6.494814 -2.948535 3.701069 -1.034344 -3.183110 2.188485 0.550477 2.353269 -2.685095 0.491245 2.657004 -6.033869 1.203285 3.041633 -4.046899 -2.625618 -1.532935 -1.802531 1.686608 -6.174421 -3.609213 -0.046179 -0.865341 -1.046765 -0.293068 -1.210595 -3.692377 5.352534 2.316383 -2.316976 1.576058 1.147003 -4.622591 4.431788 -2.202755 -6.061874 -2.486970 -1.317731 -3.944143 4.254758 0.072272 4.961440 -8.645461 2.215490 -8.482439 2.650639 -4.747126 2.210147 6.910913 -2.476006 4.546224 2.453095 3.737587 2.966913 -1.345897 4.091798 3.636776 3.024344 4.036821 4.520099 4.576046 -4.246248 -5.038471 -5.403192 -4.262528 2.205043 -3.741644 -7.370009 2.509325 0.456650 -0.778490 -0.149307 -0.136623 -1.402616 6.791132 -6.758517 2.249131 2.909528 -1.494352 0.356091 4.163433 -0.891530 -0.392484 -2.119816 4.641739 -2.923951 5.191191 -0.147284 4.988524 -3.444167 -1.370575 -2.303249 1.029747 1.063541 -3.630764 -5.031645 -7.866433 -1.634547 3.206076 -3.044461 4.370111 10.020084 -4.873292 -5.741377 6.253658 2.059795 -0.710848 1.131742 1.564504 4.493806 -1.024513 -3.275328 -3.900164 -3.197554 1.420162 9.367718 1.643560 -3.555184 5.051483 -2.486416 -6.404554 7.015847 -0.517286 -3.410240 -2.102656 0.838509 -4.073258 -3.421417 6.046675 -4.677082 5.196540 -2.944740 7.102541 -1.224129 -2.229282 1.450060 -6.183355 -0.694303 -6.720663 -0.515240 1.764597 2.645725 -4.441242 -3.285475 -2.932009 -2.456480 -3.253730 3.296820 -6.323729 0.302886 1.811765 1.911155 6.574776 5.448038 0.042344 -1.216990 -4.075041 3.608958 1.829050 0.367487 -6.533645 -1.562325 -0.980207 -2.092431 0.415150 0.236964 3.442193 -3.396587 -0.234259 1.512345 -1.224198 -0.937860 1.569014 -9.311278 1.657334 1.268158 4.313043 2.611625 4.715955 5.189512 5.454797 2.695280 3.184138 -1.517708 -0.006155 -4.358309 1.576196 1.887857 -0.433756 3.352045 6.380941 4.937518 2.674986 5.662692 4.494311 1.052556 5.393141 -0.424948 7.564216 -0.363794 -2.545969 1.511180 2.426929 4.693529 6.762276 1.549080 -0.484332 3.832223 -0.363367 -3.826286 -2.272311 1.329245 -1.612424 0.782304 4.358509 3.313104 -1.209730 -0.624678 7.093987 -1.794999 -9.146560 2.926976 2.248824 4.761216 3.051706 0.685477 2.657551 2.854281 -2.160153 5.591364 4.662111 2.802857 -5.415654 -1.617962 0.999828 1.831756 6.485927 4.519136 -10.365496 -0.515129 0.995181 5.684856 -0.901714 7.076495 -3.699074 -0.737663 3.224313 -1.232700 -0.436756 0.213691 1.494452 -1.960787 1.179094 -6.110318 -2.123658 +PE-benchmarks/sudoku.cpp__main = 0.934181 -0.143265 0.753065 -1.727415 -0.843986 -0.122133 1.165709 -1.185619 -0.756254 2.244395 0.142367 -1.135637 -1.848465 1.563034 -0.187921 -1.340277 0.272761 -1.465683 -0.393653 -0.203818 -1.091067 0.705617 -0.594133 -1.132378 0.887679 -0.182677 0.377567 1.420575 0.460289 -0.408078 -0.211648 -1.004874 0.216002 2.969155 0.921199 -0.178000 -0.553741 3.842868 -1.453619 2.638995 -2.223695 -2.511897 3.138213 -0.485699 -0.033139 -1.675961 0.254013 2.024100 -1.437878 -1.033471 0.339366 -0.010524 0.320653 -1.879507 -0.683782 2.023820 -3.028968 1.675109 1.210961 -0.882921 -1.813750 -0.991442 -0.004830 0.458465 -1.488821 -1.900569 0.166585 -0.488297 -1.739459 0.249612 -1.891200 -1.311371 1.828156 0.942145 -0.715121 0.514263 -0.566684 -0.758297 1.216190 -1.395045 -1.954149 -1.071363 0.117490 -0.969447 1.866021 0.876240 1.210485 -3.724359 0.572443 -3.608151 0.865336 -1.998331 1.588253 2.804434 -0.887725 2.156895 0.267993 0.745437 0.267753 -0.474522 1.754824 0.610109 1.046771 0.895320 1.584428 1.540026 -1.624149 -2.199075 -1.366207 -1.046327 0.159828 -0.504518 -2.273182 1.206400 -1.511536 0.677933 0.196106 0.540784 -1.381872 1.205318 -3.653401 -0.609795 0.303924 -0.651443 1.988563 1.648545 -0.190454 0.281568 -0.425661 1.868395 0.105849 1.153775 -0.412267 2.069623 -0.207839 -1.035151 -1.513438 0.404434 1.407533 -1.507730 -2.733602 -3.118095 -1.057834 0.576381 -1.388356 2.633811 3.890220 -1.091281 -1.656653 2.223403 -1.316460 1.238597 1.588244 0.558448 2.615153 -1.480553 -0.002817 0.094008 -0.127703 0.721426 1.922071 -0.449185 -1.984923 1.636290 -0.496262 0.471655 0.507072 0.498948 -0.637422 -1.211155 -0.100977 -1.215541 -1.934050 2.642191 -2.275456 2.155098 -0.598615 3.417677 -1.131876 -1.140046 1.080089 -1.960678 -0.130233 -2.113709 -0.368634 -0.192965 1.190534 -2.327783 -1.686540 -0.657306 -0.002741 -0.993586 2.355161 -0.759047 -0.381457 0.107854 0.253658 2.859891 1.493159 -1.119214 0.015983 -2.244191 1.100160 1.001296 0.223457 -2.415303 -0.643595 -0.308992 -1.092582 1.411409 0.125313 1.252554 -1.254665 -0.368677 1.305041 0.329383 0.176052 0.331850 -2.655422 0.813620 0.596558 0.377358 1.453754 2.922762 1.606021 1.622054 0.277329 0.622468 -0.590877 -0.353414 -1.529530 0.237916 0.195839 1.020088 1.362066 1.634623 1.455299 0.890301 1.784150 1.044726 -0.906061 2.301840 0.477927 2.672114 -1.345178 -0.800830 0.922629 -0.183409 1.919811 2.200879 -1.478458 -1.350682 1.723015 -0.382261 -1.080532 -0.795037 -0.138377 -0.803013 0.091208 1.266652 1.144030 -0.400406 -0.389544 3.675968 -0.896074 -4.093542 1.819396 1.076456 1.731232 1.242339 -0.352092 0.943386 1.349984 -0.839429 1.255190 1.541687 1.263856 -1.949059 0.423113 0.295321 1.380167 1.055785 0.424216 -3.690837 -0.602368 0.639422 2.716091 1.145236 1.734228 -1.204873 -0.240053 0.506546 -0.423643 0.506383 -0.228410 1.514745 -0.650964 0.361674 -2.167478 -0.073597 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.476200 -0.254680 2.103361 -3.077252 -0.924712 -0.643324 3.501151 -3.142875 -1.430525 5.304644 1.152048 -2.489569 -1.119846 3.138657 -0.495751 -1.544717 1.688345 -0.486482 -0.895314 -0.752288 -0.980346 1.260455 -0.847913 -3.277895 1.788995 -0.655630 1.915450 3.301882 -1.872110 1.065823 0.151238 -1.575325 1.052764 5.779334 1.570682 0.617693 -2.614223 5.599732 -4.683437 6.178898 -5.651569 -3.967679 6.680019 -0.770187 0.776791 -5.291851 -1.506932 3.201964 0.312746 -3.862016 -0.864742 -0.615498 1.888923 -4.472385 -2.062083 4.071753 -3.886547 -0.016608 2.807397 -4.192041 -4.844124 -0.698018 1.121991 1.437588 -5.096616 -3.809284 0.228263 -0.982759 -1.048100 1.530571 -4.046786 -4.160697 2.691413 0.970734 -0.974832 1.038868 -1.815038 -3.284287 2.658226 -0.192150 -2.598808 -2.942990 0.688608 -2.108143 1.519795 1.618413 4.437757 -7.358158 0.721978 -6.566306 2.761042 -3.558193 3.373923 4.588931 -1.185116 4.120007 0.591066 2.935371 0.476607 0.199897 2.770166 2.422954 2.497546 0.399401 4.131652 3.823352 -3.584627 -6.009431 -3.073893 -1.914188 1.767583 -2.325293 -5.256119 2.526139 -3.452613 -0.554053 -0.591598 -0.336398 -0.765827 5.735021 -6.224844 0.749714 2.203628 -0.898781 1.979427 2.986892 0.231816 0.501861 -0.982672 2.535202 0.307295 1.810513 -0.179607 4.382195 -3.312529 -2.438015 -0.522032 0.794014 1.900707 -3.557293 -4.733388 -6.881560 -2.149350 2.874118 -2.520608 2.770279 6.354100 -2.123753 -4.265460 2.571993 0.984575 -0.719774 1.799490 1.545460 5.879295 -4.305294 0.889967 -0.717224 0.610879 3.206572 6.985372 -1.913843 -4.408470 4.510969 -2.338164 -4.777099 5.747383 0.340734 0.020810 0.386428 0.453669 -1.414618 -2.613169 4.842037 -4.546200 5.144988 -4.290461 5.977879 -3.261841 -1.412471 1.086599 -5.318791 -1.393123 -4.051456 0.508008 -0.529666 4.098477 -3.950232 -3.426938 -1.209729 -2.060555 -0.211261 5.577355 -5.317747 -0.938364 -0.380554 -1.405944 4.670215 1.285340 -2.184280 -0.396315 -3.073186 2.054960 2.686976 1.889491 -5.733529 -2.163674 -1.962162 -2.042986 -1.523937 0.605487 3.703666 -3.177454 -0.077171 2.967399 -0.519033 -1.292280 -1.031543 -5.550577 1.935483 0.246118 1.819074 1.366656 6.359319 3.604907 3.318590 -0.656783 0.460371 -0.591283 -2.772785 -5.697917 2.059740 0.733758 0.678785 2.218023 3.820977 2.013588 1.916089 3.329438 0.586437 0.847612 4.893127 0.766460 3.967790 -1.932806 -0.626681 2.470411 -0.346923 4.096872 3.817681 1.138562 -3.736317 2.313462 -1.718136 -3.964383 -1.422349 -0.813119 -0.290081 -1.027226 3.345942 3.364256 -1.044232 -1.457995 7.563518 -0.264189 -8.262092 3.310462 1.571703 2.819356 3.698433 -1.571440 3.462253 2.845965 1.716894 1.985984 2.106862 3.044561 -5.020968 -0.839498 0.658845 2.263975 5.072510 -0.013713 -9.870763 0.168621 0.789384 5.757407 -0.092121 5.911280 -3.057778 2.761802 0.321850 0.125750 0.766786 -0.979380 2.547520 -0.769772 -0.501110 -6.730671 1.387872 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 2.455588 0.158232 1.909126 -3.620007 -1.339820 -1.061816 4.786881 -2.733538 -1.871230 7.055889 0.748277 -3.132938 -2.040380 4.768690 -0.483082 -1.154654 1.286977 -3.421519 -1.199270 0.298208 -1.869624 2.124174 -1.201937 -3.183489 2.168914 0.477019 1.201886 3.522953 -2.107920 -0.158055 -0.193069 -2.186795 1.185505 6.245624 1.778636 -0.939169 -2.336416 7.385051 -7.387667 7.479558 -5.875973 -4.885195 7.703323 -1.003671 0.575048 -5.612961 -1.099882 4.601664 0.119535 -4.423306 -0.032044 0.122573 1.147913 -4.953856 -1.918466 5.013100 -6.163052 1.744051 3.487180 -2.791250 -4.756161 -1.563669 1.096546 1.238334 -5.247232 -4.405392 -0.047769 -2.435382 -2.086411 0.713755 -4.755621 -3.676644 1.868142 1.407701 -1.154352 1.060889 -2.353092 -3.181395 3.276021 -2.861079 -3.357760 -2.676711 -0.142261 -2.882751 2.563086 1.915556 3.515637 -8.008788 1.395558 -7.410250 2.115645 -4.584420 2.959050 5.953099 -0.784982 4.654514 -0.027392 2.663684 1.260578 -0.552956 2.959114 2.630220 3.312357 1.164244 4.009029 5.324203 -4.676453 -5.907331 -3.898991 -2.245408 1.741270 -1.570629 -4.461588 3.053660 -2.876118 -0.689739 0.494868 -0.361816 -2.273581 5.171286 -7.515362 0.594768 1.699588 -1.257644 2.604180 4.067620 -0.133300 0.062154 -1.757871 2.929643 0.862937 3.285057 -0.004520 4.777542 -3.723445 -3.086879 -0.719669 0.993716 2.125221 -3.769606 -5.248178 -9.114803 -1.304130 1.748972 -3.542551 4.407548 7.701385 -2.480139 -4.270372 3.895683 0.347172 0.235731 1.788677 0.865656 6.453582 -3.770584 0.172782 0.274509 -0.250578 2.313012 7.905349 -1.418791 -4.881807 4.054094 -2.559073 -4.131179 4.005767 1.885375 -0.548860 -0.676837 0.528663 -2.052125 -3.573506 5.940196 -5.825735 4.610665 -3.516210 6.720128 -2.404366 -0.930943 2.155082 -6.304747 -0.914561 -5.643329 -1.020649 0.055932 3.607894 -4.283593 -3.165345 -2.009708 -1.040825 -1.833011 5.879650 -6.593889 -0.928789 -0.191525 -0.259918 5.720174 1.886815 -2.996924 0.505228 -4.096056 2.381920 2.522798 1.252058 -7.377018 -2.064647 -1.553516 -2.491741 0.953437 0.134354 3.279791 -3.789212 -0.452650 4.399204 -0.119421 -1.430212 -0.498341 -5.889775 1.825349 0.155437 2.375960 2.605660 7.077570 2.969363 3.746332 -0.143986 1.383080 -1.808663 -1.667251 -6.054260 1.668579 0.047808 0.393666 3.200291 3.527734 2.702851 2.002185 3.713740 1.106968 -1.564132 5.170284 1.036116 4.460509 -1.830695 -1.392632 2.887219 -0.312826 4.047415 3.842331 -0.442965 -4.506696 3.264523 -2.634974 -4.176288 0.140802 -0.409032 -1.223664 -0.795729 3.570939 3.176524 -1.129268 -0.721238 8.186732 -1.928567 -9.377279 3.294973 2.193558 3.949772 3.595422 -0.997766 3.956231 2.963479 0.568193 2.789552 3.170033 3.202164 -4.563669 -0.193478 0.875559 2.466226 5.648664 0.688609 -12.256362 -0.552406 1.070283 5.841934 0.214371 6.524463 -3.113428 1.893082 0.758324 0.442981 1.379843 -1.233049 3.477845 -0.844335 0.297858 -6.742869 1.877340 +PE-benchmarks/optimized-naive-algorithm.cpp__main = 1.031473 -1.466750 1.405680 -4.703208 -3.164358 -1.394450 -0.135561 0.497293 -1.554641 2.752581 0.927194 -4.997198 -5.928875 4.632594 0.369755 -4.441408 1.495980 -2.960261 1.431663 -0.375550 -0.436592 1.718045 1.097899 -2.159919 1.757261 0.741490 -4.325971 3.325560 8.487982 -2.316917 0.886150 -0.215374 1.247161 4.480194 -0.944425 -3.774427 -0.511310 7.974361 -1.849834 2.903475 -3.651549 -2.851886 7.870425 -1.063598 -1.044156 -5.174032 -2.064681 4.955529 -5.805822 -2.487735 0.253128 2.627095 1.188399 -4.819219 -4.031608 5.172016 -9.648221 5.400774 2.512681 -0.238446 -0.372509 1.616251 -1.755794 1.518866 0.074923 -3.561192 -1.554694 -3.544826 -4.353159 -1.743764 -1.742261 1.226500 5.821959 1.214346 -0.595566 3.046853 1.458141 -0.933947 3.707238 -5.438944 -4.244714 -1.164596 -1.913070 -2.084144 5.725749 -0.633057 1.563896 -5.938595 1.585235 -6.369243 2.971267 -6.140022 0.731422 6.740427 -3.739801 4.355798 0.652484 -2.574317 3.786157 0.468592 5.603306 1.910714 3.166683 3.722313 2.123015 3.083436 -1.849942 -1.432695 -3.033587 -2.712922 -1.281487 -1.120861 -6.115327 3.936217 -0.955411 0.928241 4.054452 -0.889543 -2.142202 1.886469 -2.075775 -0.123650 0.750413 -1.057057 0.000444 4.944249 -0.999731 -2.179095 -1.745252 5.621753 0.187673 4.009095 4.599399 4.061162 0.942318 -6.257385 -1.381341 1.714130 -0.148139 -3.009095 -3.722844 -6.255717 1.448343 -2.915264 -2.758381 3.966500 8.397379 -0.268657 -2.728779 5.836657 -0.513839 2.987402 3.700877 -0.089311 6.792281 -0.751778 -4.105182 -0.140715 -2.625606 1.748138 3.148022 0.817594 -1.887994 2.423072 -0.640248 -1.713126 -1.363219 1.125237 -0.957906 -0.401867 -0.519866 -4.276504 -5.674052 4.100513 0.207398 4.222543 1.504373 6.948836 3.772999 -4.835982 4.619457 0.205857 -0.401726 -1.551033 -1.520427 1.937891 -2.139431 -3.727658 -2.856077 -3.937708 2.060594 -3.895336 3.491083 -0.516109 2.137501 3.397639 1.166243 2.923417 1.144391 -2.615557 1.612773 -6.596973 1.092447 1.743904 -1.024856 -6.353233 -0.143658 -0.648226 0.383286 6.049844 -0.770003 3.795495 -2.112708 -2.549539 2.673954 0.882957 0.709742 0.000367 -4.355208 0.825665 1.794064 2.679434 3.698086 6.436642 3.527330 2.452795 -1.254398 5.934181 -1.722016 2.641496 -1.264915 -2.213659 -1.809462 0.622213 2.805962 1.468290 2.604536 3.025703 5.586474 3.683202 -4.905404 4.718688 -0.310629 3.916257 -0.604086 -3.828927 2.346035 -0.181532 4.664423 5.293876 -1.416137 -3.417738 4.032763 -0.822431 -0.519204 -3.949025 0.373688 -0.991536 0.622499 4.260862 0.879460 0.600519 0.585525 2.586216 -0.538008 -8.250381 6.305935 2.282153 3.157140 1.430482 1.245123 0.717694 2.117470 -4.047171 0.263529 4.274886 1.583841 -4.233611 0.941248 1.979528 4.573156 0.193041 4.603068 -8.101281 -2.628332 1.603774 1.750337 1.601477 3.085480 -2.338300 -6.119682 2.476796 0.585473 -1.139991 -2.704664 -1.301849 -3.975255 0.625769 0.624530 -0.268755 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.875290 1.035828 2.009121 -2.165498 -0.793428 -0.690368 4.594624 -2.663752 -2.216467 5.409097 0.098026 -2.471805 -3.477065 1.740476 -0.688897 -1.384267 0.386727 -1.588304 -1.314348 -2.448764 -1.655495 0.584511 -0.711434 -3.409698 1.219383 -0.712974 2.335056 3.746612 -0.274271 1.716817 1.231182 -1.895534 2.275353 5.339252 1.710126 -0.009110 -3.334740 6.239536 -5.285583 4.774806 -5.591568 -6.034867 8.796628 -0.626546 -0.671133 -6.519081 -0.300396 3.778806 -1.560971 -3.197777 -1.828133 -0.005436 1.250087 -4.914392 -3.245799 5.018409 -5.442684 1.501454 2.068869 -5.015948 -6.262244 -1.021838 2.340156 2.098965 -3.849805 -3.287421 -0.360641 -2.653151 -1.952871 1.613548 -4.367335 -3.048786 2.599366 0.681207 -0.805559 0.607011 -2.642608 -0.474690 1.989867 0.039198 -1.864450 -2.941425 0.757673 -1.673239 0.625838 2.544573 3.354756 -7.314449 -0.425677 -5.956756 2.471987 -3.622746 3.018613 3.599342 0.094331 5.626826 -0.131184 -0.055857 -0.260661 -1.618256 1.959523 1.304025 5.088788 1.130515 3.308003 4.604441 -3.654340 -6.300134 -3.982675 -1.887231 2.025129 -1.473632 -4.982144 2.104616 -3.870902 -1.351170 0.479871 -0.742870 -2.017657 3.894492 -6.288897 1.476950 1.707564 -1.126209 3.189853 3.142638 0.362867 1.275860 0.373100 2.131724 0.934052 2.822996 0.606688 4.043803 -1.857832 -3.301075 -0.879488 1.651971 2.150593 -2.694677 -4.133699 -6.945403 -2.082546 2.529692 -2.546260 1.464632 7.520288 -1.229808 -4.231662 2.075792 -0.400871 1.164186 1.583060 1.382692 7.770522 -3.837232 0.741864 0.551720 0.713005 3.877056 9.645534 -2.142002 -4.273097 4.423943 -2.383292 -1.805471 1.871811 -0.360053 0.093858 0.378710 0.349806 -1.426364 -3.326106 4.726977 -3.830560 5.301471 -3.783462 5.436284 -3.242699 -1.329080 0.867647 -6.343862 -2.414481 -4.673951 0.350366 -1.315739 3.829751 -4.000985 -2.909429 -2.793392 -1.390641 -0.632009 6.158685 -6.774568 -0.904359 -0.419268 -1.113809 4.290129 0.436833 -2.658355 -1.113363 -4.433006 1.027226 3.126509 2.775560 -6.719429 -2.762514 -1.479521 -2.233621 0.675148 0.327388 3.086252 -1.819996 0.913471 3.563369 -0.885384 -1.616630 -1.169760 -5.482710 1.940953 0.607382 1.683449 0.647505 7.321325 3.581757 2.607920 -0.778323 2.582772 -0.691967 -2.814715 -5.175002 1.356006 0.698684 0.287574 2.531592 2.592512 1.630493 1.974620 3.818880 0.487777 -1.772292 4.007159 0.881765 4.588107 -3.793945 -1.499967 2.196608 0.064010 2.919003 3.466795 2.172014 -4.930517 2.612068 -2.956770 -3.286213 -1.823303 -1.063143 -0.731409 -0.013579 5.698376 5.090918 -1.364896 -0.901785 7.837989 -0.745448 -9.800596 3.802421 1.984768 2.538325 3.605809 -2.572314 2.651266 4.277012 2.458875 0.638941 2.558339 2.471076 -5.362581 0.945619 0.455855 3.014213 3.796505 -0.962280 -12.868573 -1.123488 0.877560 5.669407 0.067681 7.691882 -3.201575 2.223233 0.577707 0.629609 1.088267 -0.378887 3.459496 0.161526 -0.036639 -7.348823 2.497530 +PE-benchmarks/finite-automata-algorithm.cpp__main = 0.140122 0.216339 0.706301 -1.141025 -0.918968 -0.357608 1.130964 -0.621338 -0.440451 0.889579 0.450369 -0.855118 -0.831977 1.325942 -0.180847 -0.755414 0.082238 -0.391171 -0.532375 -0.330447 -0.270399 0.669676 -0.204454 -0.632140 0.557543 -0.206252 0.115889 1.180745 0.143927 -0.176071 0.179231 -0.544685 0.541169 1.679431 0.184117 0.041436 -0.570492 2.288971 -1.379119 1.653045 -1.685595 -1.360837 2.269663 -0.323598 -0.214404 -2.266489 -0.977245 1.098371 -0.378154 -0.852707 -0.017306 0.217257 0.238654 -1.291222 -0.264711 1.350556 -1.758859 0.649580 0.845367 -1.147340 -1.158805 -0.332932 -0.139910 0.062472 -1.171639 -1.037968 -0.146700 -0.418401 -0.479117 0.274017 -0.704075 -1.030047 1.618130 0.258558 -0.305524 0.612615 -0.186354 -0.927400 0.972792 -0.283113 -1.031945 -0.735686 0.308404 -0.239343 0.814364 0.201881 0.925199 -2.356076 -0.184349 -2.166361 0.761732 -1.432523 0.771490 1.559667 -0.770770 1.454667 0.254487 0.084232 0.287567 0.174045 1.088089 0.602255 1.188401 0.572467 1.160438 1.171909 -0.945129 -1.606175 -1.174055 -1.083416 0.532920 -0.452660 -2.107195 0.651205 -0.575736 -0.393679 0.056638 -0.082818 -0.080074 1.530793 -1.370112 0.554777 1.013286 -0.425986 0.385525 1.288723 -0.111322 -0.077724 -0.611949 0.972434 -0.157493 1.135998 -0.024747 1.200317 -0.466988 -1.593540 -0.523655 0.067576 0.203937 -0.928309 -1.381398 -1.936160 -0.348771 0.609598 -0.853703 0.338609 2.551403 -0.864951 -1.569616 1.347269 0.940642 0.273526 0.452616 0.447095 2.143033 -0.849764 -0.241831 -0.349461 -0.384570 0.873641 1.883320 -0.179271 -1.271143 1.083604 -0.474367 -2.146723 1.889272 -0.301949 -0.312444 0.402782 0.193764 -0.819925 -1.181373 1.675889 -0.223498 1.845062 -0.926823 1.936537 -0.724872 -0.885583 0.439683 -1.058094 -0.264992 -1.420530 0.013251 0.201865 0.937050 -1.042557 -0.995072 -0.625770 -0.578252 -0.536790 1.364532 -1.446152 -0.044740 0.047734 0.100184 0.616745 0.877863 -0.580984 0.051650 -1.438942 0.607671 0.813699 0.556945 -2.304915 -0.256088 -0.364028 -0.561795 0.027159 0.053196 0.839185 -0.403438 -0.073239 0.829789 -0.576544 -0.359708 -0.219333 -1.515980 0.397042 -0.118502 0.764022 0.334431 1.799565 1.692079 1.029082 0.129436 0.730640 -0.155351 -0.459111 -1.231769 0.353020 0.024107 0.249685 0.890012 1.212880 0.979936 0.598236 1.430326 0.480151 -0.054940 1.466396 0.485619 1.943821 -0.392404 -0.611114 0.528509 0.152696 1.301229 1.803372 0.579753 -0.920097 0.932158 -0.094317 -0.913162 -0.951244 -0.234732 -0.207518 -0.471457 1.739797 0.856247 -0.540541 -0.074384 2.247170 -0.369715 -2.624899 1.067135 0.501136 0.995731 0.583038 -0.214337 0.616661 1.314255 0.022201 0.617833 0.862454 1.012846 -1.660079 -0.578020 0.148304 0.835368 1.299774 0.594043 -3.292407 -0.033221 0.455041 1.660411 -0.228177 1.733787 -0.875250 0.033748 0.384558 0.120721 -0.065712 -0.035172 0.551141 -0.664060 -0.103663 -1.818507 -0.041719 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 0.946554 0.677122 1.711727 -3.120264 -1.830876 -0.804556 3.343957 -2.732418 -1.806564 4.893067 1.170251 -2.785451 -2.208742 3.226666 -0.417213 -1.787854 0.599937 -0.471498 -1.525291 -1.574568 -1.267527 1.283787 -0.776444 -3.101031 1.287086 -0.801459 1.442179 3.237958 -0.478563 0.855833 0.754958 -1.920387 1.996187 5.502981 1.430921 0.035996 -2.775183 6.261689 -4.675618 5.377111 -5.541576 -4.866411 7.774207 -0.831987 -0.064813 -6.037359 -1.637229 3.604687 -0.166567 -3.496697 -1.284461 -0.029143 1.450115 -4.651304 -2.362429 4.033884 -4.107517 1.143876 2.672223 -4.603726 -5.237627 -1.133941 1.157936 1.393248 -4.906962 -3.356426 -0.365885 -1.505855 -1.246384 0.879933 -3.624593 -3.606897 3.124380 0.813904 -0.875650 1.071700 -2.126821 -2.269254 2.423646 0.604231 -2.856031 -2.602457 0.795319 -1.493972 1.331814 1.618632 4.019019 -7.542519 0.061641 -7.155655 2.310096 -3.289310 3.037703 4.502704 -1.532918 4.418774 0.421359 1.571180 0.281814 -0.336550 2.734207 1.649906 3.533519 1.233784 4.141143 4.541596 -3.345607 -5.839204 -3.191679 -2.801298 2.198062 -1.537063 -5.313816 2.330423 -3.263433 -1.729210 -0.246396 -0.286782 -1.181218 5.060349 -5.454127 0.479027 2.578231 -1.348213 2.323577 3.151159 0.116233 0.615775 -0.812465 2.379667 0.221256 2.439255 0.132077 4.182430 -2.046564 -3.306599 -1.010596 1.165212 1.549393 -3.257215 -4.453275 -6.771357 -1.746448 2.522686 -2.691771 1.565713 7.410643 -2.393223 -4.775096 3.084060 0.812476 0.021437 1.625887 1.425739 7.272332 -3.734628 0.378324 -0.239048 -0.248984 3.389928 7.597545 -1.726088 -4.359663 3.901115 -2.291048 -4.457513 4.546962 -0.550916 -0.443366 0.269490 0.754915 -1.878722 -3.161610 4.552022 -3.318053 5.171325 -3.645623 5.853540 -2.957082 -1.796945 1.279860 -4.934636 -1.886646 -3.994532 0.479057 -0.369331 3.979812 -3.239111 -3.153478 -1.731071 -1.750808 -1.097433 5.559040 -5.429544 -0.614569 -0.004195 -0.751631 3.005872 1.697943 -2.238226 -0.626314 -3.633388 1.583225 3.328702 2.196774 -6.396129 -2.171922 -1.819131 -2.066755 -0.467096 0.332733 3.378534 -1.920731 0.350626 3.110155 -1.187275 -1.268965 -1.014954 -4.981710 2.040080 -0.080619 2.106137 0.861104 6.934628 3.854224 3.391583 -0.248097 1.720499 -0.551091 -2.314228 -5.148220 1.427514 0.343466 0.827266 2.835225 3.494718 2.398971 2.422947 4.373052 0.336731 -0.206349 4.530920 0.653851 5.131497 -2.061215 -1.069880 2.087128 0.034669 3.734393 5.146697 2.027142 -4.324120 2.622116 -2.098122 -3.766453 -2.055228 -0.833910 -0.405250 -0.866265 4.403149 3.991837 -1.183064 -1.083144 7.838988 -0.892392 -8.958762 3.784832 1.723672 3.081376 3.424985 -1.938364 2.898650 3.748307 1.899311 1.766389 3.048809 3.010555 -5.655999 -0.436054 0.482211 2.931033 4.516587 0.329433 -10.981908 0.240824 1.095898 5.579861 -0.462654 6.219611 -3.235720 1.869149 0.834319 0.491626 0.697301 -0.573555 2.694133 -1.108525 -0.339251 -6.654337 1.586843 +PE-benchmarks/subset-sum-problem.cpp__main = 1.431534 0.138773 0.878361 -1.905982 -0.530748 -0.355598 2.458944 -2.030998 -1.341222 3.462777 0.591451 -1.907473 -1.732239 1.562699 -0.075180 -1.089222 1.058371 -0.297620 -0.898511 -0.778406 -1.542036 0.279236 -0.656266 -2.634521 0.979624 -0.563008 1.084359 2.214462 -0.547830 0.629849 0.007027 -1.223548 1.207459 4.172164 1.336496 -0.437617 -1.641157 4.458572 -2.770170 3.740757 -2.893155 -2.905156 5.182615 -0.568609 0.263959 -2.720927 -0.416862 2.554352 -0.056805 -2.475049 -0.770552 -0.417233 1.061825 -3.329854 -1.946045 3.494316 -2.660240 0.729568 1.861049 -2.779015 -3.680579 -0.998605 0.775760 0.978480 -3.250849 -2.753796 0.148331 -0.774584 -1.219432 0.724694 -3.557418 -2.746270 2.102464 0.919947 -0.663937 0.489128 -1.689560 -1.294948 1.382470 0.653479 -2.013629 -1.817941 0.408630 -1.063143 1.374266 1.226294 2.746706 -5.279852 0.155202 -5.157075 1.522476 -2.531953 2.590910 3.440029 -0.498869 3.033538 0.153699 1.258668 -0.637121 -0.120308 2.087966 0.687294 1.674269 0.411527 2.791461 2.691048 -2.388655 -4.177046 -1.791423 -1.133787 1.088244 -0.542889 -2.829146 1.848045 -3.158092 -0.101974 -0.090626 0.440879 -1.378617 2.993145 -3.997694 -0.272007 1.268313 -1.075753 2.715155 2.177807 0.141936 0.665869 -0.496087 1.843506 0.766640 1.119668 -0.396853 3.005040 -1.022430 -1.823443 -0.888806 0.825213 1.920587 -2.498402 -3.717084 -4.208126 -1.507878 1.895163 -1.965428 2.284793 5.058917 -1.431041 -2.140482 1.988682 -0.809551 0.792008 1.633472 1.081626 5.127791 -3.294831 1.132872 0.366891 0.560301 2.018061 4.332873 -1.697178 -3.340939 2.736607 -1.146929 -0.706791 2.926282 0.128999 -0.100953 0.505497 0.138786 -0.542062 -2.462131 3.575249 -2.890414 3.283658 -1.684264 4.733342 -2.060606 -1.032217 1.158040 -1.921016 -1.120422 -2.803748 0.577951 -0.500118 2.695569 -2.350694 -2.576368 -0.635173 -0.827967 -0.400717 4.322817 -1.956798 -0.738720 -0.197779 -0.986281 2.785373 1.050052 -1.800627 -0.525253 -2.760768 1.213283 1.694216 0.741014 -3.525318 -1.611940 -0.858419 -1.496743 -0.013451 0.419142 2.429584 -1.833556 -0.070052 2.241012 -0.002350 -0.651739 -0.511134 -3.310405 1.590479 0.608036 0.512571 1.020882 5.002176 2.434729 2.301186 -0.315459 0.530144 -0.712497 -1.175220 -3.993237 1.183531 -0.010834 1.447453 1.802909 2.112830 1.077143 1.632972 2.602751 -0.385940 0.125423 3.047238 0.849800 3.206180 -1.734539 -0.735887 1.771815 -0.824368 2.810134 2.977020 -0.099619 -3.434429 1.832581 -1.515736 -2.687626 -1.026840 -0.628076 -0.338590 -0.625462 2.312515 2.679616 -0.455174 -1.143919 5.741270 -0.665054 -6.345798 2.539746 1.483880 2.142736 2.979026 -1.473830 2.582073 2.140747 1.513202 1.099265 1.992655 2.131809 -3.489381 0.450249 0.418045 1.757952 1.964856 -0.524568 -6.973644 -0.373695 0.800486 4.017541 0.604325 3.481065 -2.144152 1.786515 0.337281 0.134247 1.014495 -0.673177 2.405580 -1.116198 0.193957 -4.424182 1.636508 +PE-benchmarks/partition-problem.cpp__main = 1.586157 0.196126 0.895522 -1.862966 -0.443425 -0.377324 2.580228 -2.167723 -1.453059 3.561155 0.594142 -2.000137 -1.994474 1.415773 -0.006557 -1.327361 1.130653 -0.417268 -0.861808 -0.992572 -1.663708 0.202587 -0.669026 -2.781404 1.022560 -0.626488 1.202950 2.446336 -0.395353 0.644196 0.103581 -1.264462 1.253201 4.291755 1.424526 -0.268488 -1.739371 4.659798 -2.885031 3.779018 -3.035978 -3.206794 5.609492 -0.578458 0.166862 -2.741164 -0.063223 2.677738 -0.509041 -2.344649 -0.754286 -0.410550 1.059522 -3.458477 -2.091832 3.693129 -2.829536 0.942964 1.852898 -2.992727 -3.987280 -1.142733 0.681511 1.025673 -3.223094 -2.889089 0.197269 -0.941296 -1.412085 0.937365 -3.864688 -2.588189 2.220482 0.917736 -0.543598 0.440048 -1.847017 -0.998373 1.311450 0.593530 -2.052324 -1.947666 0.540790 -0.735189 1.289982 1.444264 2.788150 -5.532655 -0.052595 -5.355772 1.653847 -2.616419 2.753554 3.534736 -0.564263 3.286941 0.067022 1.045911 -0.746568 -0.286623 2.166254 0.533040 1.787335 0.427776 2.859077 2.815161 -2.385882 -4.410906 -1.818497 -1.111468 1.077205 -0.411756 -2.997162 1.931826 -3.515416 -0.162511 -0.072168 0.435622 -1.399465 2.815503 -4.203402 -0.376615 1.172358 -1.050639 3.046992 2.134929 0.184828 0.843175 -0.390016 1.928818 0.958715 1.279666 -0.442155 3.149038 -0.867106 -2.207960 -1.072772 0.814222 2.116995 -2.604622 -3.872623 -4.408981 -1.536577 1.942697 -2.036065 2.277883 5.197703 -1.414587 -2.177292 2.055602 -1.035049 0.896759 1.745167 1.029259 5.354589 -3.409647 1.233555 0.645874 0.711232 2.170550 4.502549 -1.833797 -3.584404 2.850540 -1.188622 -0.376207 2.486158 0.227059 -0.086437 0.373863 -0.051604 -0.520380 -2.609608 3.686532 -2.939470 3.493716 -1.805626 4.908236 -2.145177 -1.165083 1.259326 -2.144438 -1.188451 -2.931726 0.530417 -0.544432 2.743093 -2.570318 -2.715353 -0.905188 -0.749371 -0.389362 4.515794 -2.082055 -0.809670 -0.222354 -0.993064 2.872755 1.096684 -1.884083 -0.548990 -2.975866 1.221534 1.870885 1.006697 -3.609747 -1.667094 -0.848327 -1.626534 0.084273 0.438205 2.543930 -1.769998 -0.020772 2.328255 0.142646 -0.597358 -0.402400 -3.328516 1.679925 0.821134 0.358895 1.041863 5.293520 2.334128 2.281050 -0.377256 0.525249 -0.671987 -1.188030 -4.071867 1.200044 0.057361 1.528147 1.802378 2.038688 1.149155 1.682305 2.774933 -0.313293 -0.218959 3.139856 0.910605 3.338329 -2.098980 -0.653823 1.829455 -0.821102 2.909327 2.968092 -0.221816 -3.760829 1.898108 -1.599191 -2.596747 -1.061451 -0.848419 -0.385806 -0.713921 2.370442 2.659487 -0.524091 -1.160736 6.055438 -0.679037 -6.684066 2.747590 1.537131 2.067559 3.008425 -1.630005 2.316749 2.350197 1.339537 0.984450 2.014188 2.259608 -3.415950 0.714903 0.415287 1.951101 1.932130 -0.661235 -7.117253 -0.461136 1.037501 4.279496 0.891601 3.644436 -2.159649 1.774270 0.200963 0.120175 1.138446 -0.642072 2.533751 -1.035207 0.174786 -4.521033 1.700978 +PE-benchmarks/boruvkas-algorithm.cpp__main = 1.130960 -1.596244 3.030433 -4.491358 -3.205222 -0.387420 3.681988 -3.909973 -1.784652 3.587329 2.366964 -3.555615 -1.527642 4.913906 -0.142493 -2.862864 1.488729 1.117465 -0.853286 -0.479693 -1.350377 2.276094 -1.567096 -3.860339 2.390444 -1.483005 1.163602 6.414280 -0.017671 2.255744 0.355503 -2.806026 0.976230 8.419028 2.273435 0.347927 -1.704108 10.816687 -7.420904 8.092933 -6.008355 -5.678372 10.706660 -1.427854 -1.077634 -6.398980 -5.333037 4.215115 -3.616212 -4.326775 0.136432 -0.608359 3.592087 -5.502679 -1.853949 6.120932 -7.731794 0.259160 3.837331 -5.779325 -5.932006 -1.791724 -0.913478 1.078877 -7.063157 -4.992690 -0.055928 -0.798337 -0.313040 0.358070 -4.106015 -5.563248 8.041245 1.179169 -1.521308 1.838452 -0.570410 -5.011942 4.085441 2.101835 -5.638976 -3.937505 -0.379909 -3.987525 4.632643 0.518898 6.595520 -10.646257 0.920109 -10.692744 3.917007 -6.465862 4.051020 7.737817 -5.231615 6.245198 2.200592 4.805068 0.340501 0.405002 5.020739 3.012687 2.534798 2.229586 6.215631 5.082380 -4.530868 -7.365047 -5.785760 -3.938083 2.511683 -4.201770 -10.891916 3.008324 -3.518463 0.059047 -0.987911 -0.206178 -1.112220 8.721921 -6.230822 5.290363 3.629457 -1.981632 1.683294 5.050026 -0.430819 -0.442332 -2.035070 4.534933 -1.585097 3.404353 -0.675095 6.154788 -3.788590 -4.916918 -1.943208 1.223383 2.008188 -5.104802 -7.223979 -8.900792 -1.937816 4.648987 -3.297796 3.245367 11.452674 -4.077122 -6.233863 5.505151 2.608985 0.416879 3.234733 2.723907 8.673967 -4.083459 -0.905765 -3.178159 -1.766830 3.134844 7.212019 -1.419095 -5.451363 6.349305 -2.585544 -7.289873 12.898155 -0.677275 -1.542281 0.646999 0.934336 -3.129747 -5.153626 9.204409 -3.385654 6.991199 -3.938425 9.494708 -2.753634 -3.329591 1.750675 -4.904539 -2.291132 -6.997938 0.117399 0.476354 4.407003 -4.908907 -5.369586 -2.842064 -1.991461 -1.564717 7.102798 -3.399426 -0.470243 0.974498 -0.846340 3.917751 3.620147 -2.027863 -0.935618 -5.667368 2.812893 4.027171 0.103332 -9.035358 -2.208243 -1.713160 -2.250609 -1.491781 1.344042 5.357912 -4.861854 -0.345455 2.812792 -0.671219 -1.227548 -0.110240 -10.263349 2.920005 0.954424 2.684523 3.054391 8.001351 7.597552 5.394424 0.457477 3.203144 -1.252115 -1.423565 -6.900073 2.196305 0.962149 2.206086 3.435586 6.482249 3.969249 3.407492 4.572688 2.662292 2.720515 6.709738 3.066710 8.240752 -0.272605 -2.571526 2.986891 0.823123 6.582075 7.040349 2.118768 -2.930392 3.376472 -0.921868 -4.950995 -4.858696 -0.081127 -0.450139 -1.418907 6.190697 3.598673 -1.027993 -1.916242 10.252848 -0.852509 -12.418536 4.615760 2.771757 4.609488 4.392226 -1.270056 4.037564 4.320898 1.267661 5.108450 4.176546 4.209784 -7.459118 -0.671306 1.193207 3.189747 7.009099 2.773963 -13.228920 0.987163 0.808324 7.192778 -0.439912 7.827050 -4.410322 1.747465 0.828778 -1.327468 0.654172 -0.924035 2.197458 -2.418676 0.808946 -9.466987 -0.886840 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.058238 -0.995212 1.001013 -1.481574 -1.105866 0.334024 0.434156 -2.467628 -0.893726 3.065174 0.946403 -1.400554 0.748250 2.480824 -0.209324 -0.877211 0.439353 1.365561 -0.187835 0.052772 -0.675801 0.916203 -0.939782 -1.921763 0.688705 -0.684295 1.024247 1.574994 -1.565587 1.609783 -0.105619 -1.524589 0.220582 3.714953 1.461366 0.624295 -1.115790 3.854010 -2.916121 4.176303 -2.833154 -3.020656 3.976888 -0.539581 0.611116 -0.957827 -1.493229 1.774105 0.299599 -2.678623 -0.290094 -0.724265 1.578657 -2.259753 -0.958879 1.383582 -2.039815 -0.645198 1.712836 -2.965980 -3.236809 -0.859244 0.393002 1.072207 -4.063396 -2.246047 0.126263 0.818939 0.287954 0.050824 -2.120479 -3.309994 2.751352 0.491856 -1.018206 0.290768 -0.634242 -1.952403 1.780671 1.247947 -2.629185 -1.737751 -0.341473 -2.246996 1.279235 1.230715 3.983393 -4.844151 2.125430 -4.881275 2.016517 -1.674947 2.146204 3.300340 -2.018629 2.000923 1.461675 4.400797 0.665498 0.327284 2.031495 1.470962 -0.052636 0.747904 2.784135 2.538580 -2.293553 -3.351985 -2.274755 -1.941857 1.711827 -1.942784 -3.784715 1.399633 -1.583238 0.651046 -1.126622 0.226227 -0.460694 4.005226 -4.696114 0.963137 1.469639 -0.784416 1.282068 1.226922 -0.202133 0.425811 -0.778517 1.670445 -1.030475 0.114301 -0.150393 2.833658 -2.896095 -0.230022 -0.870663 1.193898 1.322999 -2.816667 -3.082469 -4.619359 -1.005786 3.376115 -1.587615 2.598342 4.637006 -2.211253 -2.482976 1.932271 0.440110 -1.241008 1.797155 1.250385 3.609043 -2.282432 0.018385 -1.097274 -0.458931 1.492021 2.664807 -0.706585 -2.412030 3.147126 -1.371052 -2.474886 6.205658 -0.219564 -0.877211 -0.863709 0.858485 -0.834560 -0.847998 3.283578 -3.215281 2.227472 -2.173167 4.186097 -1.672954 -0.404049 0.556949 -3.934813 -1.774774 -2.594087 0.328489 -0.552407 2.959595 -2.514623 -2.083667 -0.368953 -1.695648 -0.454334 3.314914 -1.640109 -0.243372 0.582799 -0.953709 3.109328 1.577090 -0.410880 -1.049053 -1.634098 1.079658 1.990586 -0.379009 -2.830321 -1.756578 -1.593592 -0.936552 -1.467072 0.531168 2.611950 -2.951589 0.112808 0.743009 -0.081868 -0.288798 -0.060149 -3.396967 1.384321 0.304755 1.765014 1.276942 3.722194 2.423286 3.117501 0.685051 0.843635 -0.543823 -1.109118 -3.262842 1.658422 0.846602 1.126442 1.636294 2.882930 1.517568 1.858931 1.811650 0.430285 2.080281 3.217265 0.372668 3.463008 -0.699699 -0.021576 1.107713 0.424508 2.950261 3.107462 -0.185258 -1.031378 1.091128 -1.471546 -2.821985 -0.443484 0.316746 -0.039916 -0.715764 0.859160 2.287838 0.296013 -1.628365 4.656226 -0.201386 -5.174916 2.072457 1.080850 2.119263 3.157179 -0.937372 2.566191 1.122744 1.561939 2.372836 2.264800 2.094972 -3.619125 0.167992 0.430814 1.590031 3.692018 0.987341 -4.659510 1.645692 0.564375 3.017199 -0.703201 2.779940 -2.559416 1.638380 0.348252 -0.831665 0.651246 -0.323751 1.456706 -0.024278 0.357580 -4.451767 -0.231649 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 10.956568 -5.066277 7.256161 -12.255946 -8.879726 1.966309 7.822432 -18.901807 -8.017969 28.079585 6.049125 -11.689534 2.827318 16.913680 -2.447125 -4.851030 3.725393 4.146053 -1.126398 -0.950994 -6.245387 6.998058 -7.195583 -15.865110 4.623784 -3.795128 7.871139 13.935841 -11.210610 12.988053 -0.514353 -11.829597 2.573818 28.559293 12.427498 0.274882 -10.174617 32.802087 -27.513673 30.001624 -23.475894 -25.284348 33.657501 -3.956661 4.874685 -13.220867 -10.505851 15.462745 1.888578 -20.527141 -3.813030 -5.286495 12.224152 -18.315783 -10.778694 14.001160 -19.954603 -2.962806 13.406699 -22.758200 -26.622278 -6.242211 6.014111 11.057885 -31.160977 -17.843707 0.711783 2.302021 1.114807 0.707422 -18.984883 -22.966688 15.574504 4.459133 -6.877578 0.654390 -7.634093 -14.333975 13.409113 5.883312 -19.870389 -12.723798 -3.923198 -19.211114 8.620207 9.828069 30.510018 -36.786072 16.035306 -38.003579 13.263846 -15.294693 15.191393 25.278647 -11.166549 17.039063 8.654019 31.535425 6.861300 -0.267704 14.317927 12.430220 4.959052 6.150248 20.922446 22.902157 -17.837249 -25.314039 -18.212493 -13.367520 11.907456 -13.550076 -29.378753 12.488749 -13.057211 1.898573 -6.752787 -0.093865 -6.358894 31.279661 -36.786051 7.328630 8.998044 -5.703515 10.416268 11.041601 -1.194413 3.730623 -4.472623 12.307533 -4.752553 4.818275 1.391435 22.324795 -23.749899 -4.669053 -6.227134 11.161340 11.353844 -21.091145 -23.439927 -37.867912 -7.378780 22.401642 -12.980104 20.485980 37.259122 -15.474770 -19.484158 14.299007 -0.403618 -9.118234 13.604331 7.942762 30.536903 -17.140093 0.101591 -5.525590 -2.898678 10.583310 28.215835 -6.657490 -18.548935 23.609261 -12.052207 -15.590980 38.834781 1.106149 -5.724162 -7.237603 5.752607 -6.337580 -10.097964 26.458507 -29.253865 17.671563 -16.391714 30.612417 -11.603742 -2.021485 5.438619 -32.119639 -13.090024 -21.391787 2.365283 -4.451565 22.261922 -18.710760 -15.131691 -5.197295 -11.708537 -5.048555 27.630901 -17.715240 -1.815545 5.177038 -7.000401 25.787493 9.981422 -5.203995 -7.364774 -14.208818 8.805198 15.456483 -1.293827 -26.000544 -16.097822 -12.127888 -7.695510 -8.269810 3.843036 20.887783 -21.884411 1.172708 9.239176 0.832673 -2.938993 -0.340641 -28.691727 11.881607 2.278078 14.593774 9.023904 31.095366 16.583935 23.727631 3.419653 7.197899 -5.133986 -9.206406 -25.471418 11.122479 6.732888 4.879278 12.686903 21.630212 10.800885 14.912917 14.766452 3.685319 10.507257 24.244647 1.790504 25.274632 -9.394571 -2.427076 9.186874 2.807653 21.045719 22.354489 2.214634 -12.709459 8.164206 -15.165853 -22.882788 -3.332554 2.611096 -0.950812 -2.560028 9.233469 20.550011 2.139271 -11.639309 35.891630 -1.934839 -43.982226 16.865897 8.840655 16.379476 25.798495 -8.315068 20.432921 9.387638 12.911382 18.001902 19.202133 13.860594 -27.150509 2.115000 4.303789 13.149585 26.529303 5.512831 -44.852678 10.398987 4.104024 23.605940 -4.446658 26.944130 -20.640411 12.638580 3.875297 -4.809237 5.577979 -2.878608 13.559278 -0.708399 4.223695 -34.412651 2.254175 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 2.077929 -1.385689 2.295539 -3.249967 -2.068499 -0.034056 2.142574 -4.846724 -2.117819 6.965654 1.891144 -3.243238 0.772085 4.895435 -0.467150 -1.682128 1.004191 2.177154 -0.943606 -0.439489 -1.494392 1.785826 -1.718019 -4.467536 1.726349 -1.311083 2.319396 3.853072 -3.161601 3.152065 0.312463 -3.042920 1.192083 7.811921 2.690370 0.891435 -2.775400 7.782241 -7.003523 8.210813 -6.126856 -6.380013 9.113904 -1.185838 1.146596 -3.239515 -3.005114 4.038229 0.540009 -5.691308 -1.123536 -1.057785 3.223029 -5.581899 -2.435829 3.651756 -4.565062 -1.013530 3.761842 -6.479847 -7.217743 -1.707691 1.069024 2.064129 -8.165050 -4.942584 0.018822 0.606395 0.336005 0.489423 -4.726068 -6.489258 5.021630 0.723193 -1.648532 0.954860 -1.880325 -4.062040 3.732762 2.440820 -4.765215 -3.868064 -0.257500 -4.252195 2.356005 2.468084 7.597790 -10.063654 3.327977 -9.745111 4.047201 -3.713239 4.380514 6.653735 -3.722291 4.760117 2.298773 7.808584 0.856224 0.327335 4.015005 2.873166 1.249252 1.455812 5.771079 5.611584 -5.061732 -7.510224 -4.896363 -3.861817 3.656582 -3.959614 -7.487160 3.077914 -3.596775 0.098190 -1.769169 -0.279414 -1.088132 8.578676 -9.308415 2.239300 3.428421 -1.700580 2.434364 2.808979 -0.246574 0.628039 -1.507303 3.221716 -1.343946 0.832951 -0.065473 6.031052 -5.625312 -1.571652 -1.171939 2.239374 2.480587 -5.654526 -6.366757 -9.654696 -2.030908 6.252280 -3.423673 4.410258 9.445739 -4.110022 -5.499953 3.834969 1.212705 -2.304590 3.149657 2.566866 7.908044 -5.006590 0.233450 -1.900854 -0.734853 3.876691 6.871880 -1.929137 -5.616457 6.559416 -3.043986 -5.539310 11.596098 -0.311393 -1.181623 -1.112009 1.818415 -1.897070 -2.004153 6.829195 -6.375353 5.246673 -4.923681 8.528085 -3.667393 -1.058162 1.206279 -8.064654 -3.574790 -5.600035 0.558553 -0.865156 6.012590 -4.962017 -4.458351 -1.393941 -3.205709 -0.829035 7.415191 -5.047276 -0.670445 0.675343 -1.981996 5.808446 2.661134 -1.678041 -1.765733 -3.611513 2.271439 4.236138 0.285660 -6.864827 -3.593579 -3.036249 -2.236569 -2.787707 1.072751 5.532518 -5.452252 0.399771 2.562987 -0.498313 -1.436454 -0.787706 -7.023222 2.937572 0.327251 3.527223 2.331457 8.270751 5.084070 5.889312 0.673027 1.871641 -1.221329 -2.709811 -7.332702 3.436946 1.261383 1.872840 3.561346 5.719031 3.054839 3.743768 4.143834 0.775139 3.235449 6.728308 0.934451 6.715502 -1.597997 -0.262066 2.734754 0.745845 5.929101 6.024965 0.603180 -3.388465 2.558467 -3.140921 -5.853102 -0.943676 0.045225 -0.103004 -1.484045 2.719663 4.938335 -0.204929 -2.835211 9.898005 -0.588406 -10.907537 4.416898 2.376661 4.440483 5.993763 -2.287438 5.286340 2.914616 3.564538 4.292325 4.327256 4.303305 -7.594548 0.145902 1.012218 3.496919 7.842799 1.580498 -11.396761 2.639694 1.040590 6.482914 -1.580196 6.673880 -5.157309 3.668654 0.558952 -0.905326 1.538497 -0.900907 3.078036 -0.531904 0.546653 -9.427493 0.450745 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 1.363204 -0.138997 0.995081 -1.995575 -1.058787 -0.063416 1.626988 -1.872439 -1.151845 2.479998 0.573090 -1.412378 -0.989643 2.028374 -0.271993 -1.166663 0.650003 -0.858119 -0.514950 -0.371424 -0.896838 0.907721 -0.715035 -1.699358 0.860247 -0.301635 0.650280 1.944968 -0.243504 0.538190 -0.231025 -1.195565 0.445793 3.611983 1.142300 -0.353437 -1.147474 4.481568 -2.579528 3.159506 -2.956410 -2.770823 4.417923 -0.608806 -0.378120 -2.891365 -1.033091 2.096848 -0.599858 -1.780547 -0.069497 -0.296463 0.776334 -2.367503 -1.124558 2.650272 -3.293796 0.856845 1.673812 -2.027702 -2.941311 -1.034166 0.713484 0.622785 -2.763541 -2.180107 0.315668 -0.667739 -0.944348 0.495309 -2.647358 -2.602034 2.355583 1.028482 -0.782751 0.493770 -0.866546 -1.803765 1.612387 -0.033714 -2.219234 -1.479443 0.098838 -1.465190 1.840074 0.659135 2.380771 -4.857780 0.839621 -4.823692 1.285312 -2.571945 2.031076 3.299531 -1.325708 2.535893 0.500780 1.738852 0.322791 -0.362885 2.100202 1.131067 1.383182 0.782220 2.433561 2.393176 -1.933137 -3.201913 -1.999184 -1.470680 0.862898 -1.047705 -3.861392 1.623061 -2.281709 -0.248256 -0.241407 0.172497 -0.949970 2.946028 -3.734519 0.085076 1.004107 -0.842135 1.696779 2.237832 -0.208814 0.455688 -0.883157 1.956865 0.151445 1.470542 -0.314905 2.571892 -1.607981 -1.775330 -1.236712 0.600162 1.465415 -2.176526 -3.235918 -4.222761 -1.067951 1.224395 -1.632686 2.378337 4.788665 -1.517012 -2.652437 2.408492 0.186811 0.488567 1.779482 0.762965 4.166127 -2.277118 0.275945 -0.356443 0.048542 1.211588 2.749074 -0.834428 -2.149356 2.459381 -1.220825 -1.513428 3.586414 0.131568 -0.666726 0.288581 0.234425 -1.163818 -2.330270 3.538598 -1.886768 3.037743 -1.438044 4.157402 -1.531107 -1.053640 0.986554 -2.826442 -0.868605 -2.847183 -0.000914 -0.561321 2.251877 -2.359203 -2.085989 -0.857605 -0.712343 -0.882479 3.290157 -1.720828 -0.205377 0.229739 -0.190031 2.478736 1.654976 -1.208268 -0.183258 -2.552934 1.151791 2.119938 0.435994 -3.417870 -1.145058 -0.823874 -1.140151 0.044761 0.272215 2.088219 -2.010192 -0.335173 1.533667 0.072937 -0.167684 0.036804 -3.944641 1.259543 0.022283 0.941544 1.104563 4.063968 2.452569 2.198220 0.312841 0.716652 -0.395042 -0.875386 -3.089103 0.565149 0.300954 1.008990 1.646769 2.246949 1.476047 1.376207 2.050813 0.809562 0.178670 2.931428 0.883010 3.532057 -1.007989 -0.894099 1.016592 -0.222981 2.682637 3.230678 0.140633 -1.809059 1.610994 -0.824148 -2.141953 -1.660319 -0.218056 -0.503791 -0.501935 1.860294 1.850619 -0.512079 -0.773012 5.102432 -0.622038 -5.676123 2.138794 1.321056 1.911142 2.321244 -0.717238 1.785677 1.960264 0.307241 1.644989 1.932913 1.848686 -2.960850 0.297081 0.378872 1.707759 1.933030 0.495977 -5.646766 0.491188 0.829617 3.606241 0.428170 3.314505 -1.813183 0.926264 0.572269 -0.174314 0.474933 -0.155082 1.940942 -0.900174 0.327717 -3.998814 0.208068 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 4.465901 0.444023 4.470332 -5.574017 -2.112456 -1.627625 9.811749 -7.157013 -5.112086 13.719433 1.407921 -5.547238 -3.656052 5.722412 -0.661728 -2.090110 2.653283 -0.727541 -2.667559 -2.974029 -3.392055 2.434073 -2.100428 -8.169046 3.262176 -1.505616 4.738919 8.067248 -5.018022 5.624111 2.288757 -4.801201 3.928215 12.563399 3.839468 0.220605 -7.827960 13.285038 -13.740885 13.762946 -12.053871 -11.780397 18.672109 -1.865350 0.373432 -12.055065 -2.375355 8.104141 1.217048 -9.955999 -3.469237 -0.402477 4.348947 -11.057929 -6.227547 9.883879 -9.071799 -0.524373 6.105619 -12.830282 -14.800609 -2.350634 4.066203 4.295124 -13.260950 -8.157449 -0.556991 -4.517708 -1.720293 3.148381 -10.893154 -9.465696 4.636620 2.119338 -2.048751 1.723065 -5.155051 -4.543018 5.550830 3.039528 -5.395368 -6.855323 0.786008 -5.560086 2.205142 4.720541 10.736681 -17.223308 1.987951 -16.044479 6.274643 -7.555183 7.384039 9.845862 -0.768366 11.079071 0.920477 6.018590 -0.452475 -2.287721 5.154116 4.596587 8.272088 2.484382 9.467004 11.163554 -9.288717 -15.848916 -9.087245 -4.288717 6.151857 -4.679378 -10.913314 5.870483 -9.224793 -3.114931 -0.099848 -1.392843 -2.987024 13.289847 -14.813609 3.201261 5.490094 -2.873837 5.341024 6.359645 0.508266 1.937565 -0.974174 4.752806 1.805656 5.190095 0.971876 10.462857 -7.617243 -4.756047 0.279634 3.205536 4.578826 -7.510887 -9.806476 -17.046450 -4.254051 7.958255 -6.100612 4.786483 16.049689 -4.583124 -9.773857 5.214684 0.629886 -1.240853 2.386420 3.566548 16.031997 -9.859277 1.972221 -0.951454 1.653781 8.879157 20.713381 -4.227043 -10.108366 11.336452 -6.020947 -7.912545 12.220296 -0.173737 -0.206409 1.966534 1.785329 -2.825837 -5.847590 10.971185 -10.961034 11.587396 -10.254322 13.633005 -6.768718 -1.317200 1.967740 -14.843745 -5.513312 -11.336816 1.562722 -2.502444 9.499454 -8.459473 -7.037676 -4.778868 -4.637372 -1.240354 14.386112 -15.995596 -1.817769 -0.473034 -3.010625 10.299807 1.769780 -5.113548 -2.911090 -7.833095 3.477904 6.922880 4.752088 -13.828278 -6.478740 -3.279840 -4.927195 -2.663890 1.243836 8.751922 -6.607727 1.630205 7.662893 -1.597682 -4.859223 -2.629054 -13.359818 4.587349 1.330242 5.229606 2.181623 16.882578 7.993560 7.396455 -1.109407 3.917802 -2.185028 -5.908084 -15.996113 4.680170 1.068340 1.026263 5.950827 7.488122 3.840213 5.318863 8.176839 0.281313 0.897462 10.503477 1.481109 9.836929 -5.069785 -2.566149 5.869474 0.106141 8.451019 8.345181 4.849658 -10.255606 5.433589 -6.608140 -10.275247 -1.739932 -1.454630 -0.890713 -1.610200 9.316606 10.592661 -2.457431 -2.776015 19.341112 -1.803240 -22.043526 7.208933 4.874008 6.965129 10.483241 -4.669579 8.961300 7.627660 7.233637 4.060346 6.122089 6.147500 -13.061894 1.378575 1.660964 5.554488 12.075681 -1.065129 -27.791157 -0.346062 1.491441 13.764407 -1.916190 16.950612 -7.693126 8.102388 1.521244 0.901179 2.679229 -1.603397 7.072352 -0.808339 0.813101 -18.471396 5.423747 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 4.865388 0.664345 0.263734 -1.290905 -0.522742 0.119738 3.512473 -4.678127 -3.820814 7.735365 1.771229 -3.336684 -0.162116 2.590470 -0.369498 -1.664479 1.969248 3.506942 -1.222938 -1.714681 -2.927317 -0.333799 -1.476084 -6.098156 1.151809 -0.968210 2.048371 3.277260 -4.069013 4.683453 -0.875691 -1.908835 2.544350 7.259820 3.143004 -2.670896 -3.040040 8.181929 -8.136690 5.702595 -4.399003 -6.121712 10.756656 -0.751686 1.154715 -2.583121 -2.586813 3.839627 3.115417 -5.067153 -2.079911 -1.878130 2.412198 -5.469493 -3.927082 6.483070 -4.251544 -0.238879 3.522530 -6.755032 -8.630475 -1.815308 2.730735 1.711897 -7.587993 -4.959801 0.496491 0.198005 1.372062 1.036696 -8.477469 -7.575677 3.430138 1.186447 -0.683398 -0.224128 -3.880967 -2.890498 2.152490 5.365041 -4.490237 -3.087485 0.488788 -1.454231 1.061309 3.366965 8.416087 -10.178421 1.796310 -11.459881 3.055664 -4.183152 5.093240 6.779334 -1.599000 4.157432 1.166460 5.754022 -0.734534 0.387710 3.776244 1.803902 0.712561 -0.491073 4.760308 6.963931 -4.303427 -8.217699 -3.310179 -1.329347 2.751148 -0.644905 -6.363111 3.936100 -6.840013 -0.706609 -1.508742 0.243739 -1.480478 7.701047 -7.393113 -0.258135 2.494921 -1.840443 5.460876 3.224522 0.205958 2.025596 -1.570200 2.268363 1.890555 0.382824 -0.738235 5.189321 -5.508067 -4.467568 -1.766630 2.853405 4.106103 -6.462514 -6.566173 -8.671402 -1.349694 6.414294 -3.686667 3.132565 9.768053 -3.988926 -3.491066 2.462143 -0.554864 -1.180998 4.151227 1.961594 12.026243 -7.130995 3.452163 1.704989 1.713100 3.111754 5.611452 -4.026328 -5.362817 5.312216 -1.772326 -1.371441 10.352597 -0.431426 -0.176511 3.373771 1.233895 1.670730 -2.621736 6.953494 -6.117038 4.218905 -3.587863 8.221650 -3.811300 -0.608441 1.792222 -5.673281 -4.151018 -4.790957 2.107893 -1.975554 6.952486 -3.531274 -4.391020 -0.306949 -2.927207 -0.040220 9.341388 -2.087769 -1.127809 0.158374 -3.524596 3.480144 1.777366 -2.348796 -1.886168 -4.540923 1.334799 4.662304 -1.362207 -7.986685 -3.946470 -2.482719 -1.819088 -3.335132 0.988418 5.074659 -4.902898 -0.068908 3.842442 -0.029678 -0.643730 -1.056554 -2.232395 3.680905 0.184548 2.046153 1.373706 10.505130 4.090602 6.000321 -0.124304 0.500267 -0.162281 -3.405507 -8.556836 3.465695 0.193865 4.251400 3.131772 3.329143 0.330574 3.262148 2.836349 -3.402042 3.649653 5.319021 2.555806 7.008638 -2.739293 -0.053225 2.652316 -2.405003 5.523611 6.022564 -0.225949 -6.946033 1.384778 -5.231625 -6.463764 -0.498713 -0.592069 0.519552 -3.512016 2.723073 6.957233 0.125203 -3.949233 11.529475 -0.555407 -13.729718 4.690350 2.938872 3.194671 9.415072 -3.352508 6.311002 3.275569 7.369149 2.658331 5.087344 4.873175 -7.727482 2.512806 0.554147 3.402467 4.274941 -1.963105 -13.935894 3.463812 2.665456 7.256493 -0.265865 7.010458 -4.960725 6.177640 -0.362502 0.292136 2.446310 -1.175306 5.269824 -1.876236 1.121022 -9.486820 3.859745 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 22.313355 4.552728 0.841592 -1.345012 1.386705 -2.227945 22.418107 -19.264645 -18.022837 40.313318 6.404202 -13.917918 0.155119 8.282550 -0.892591 -2.772127 9.450663 19.300874 -6.545929 -7.846419 -13.473638 -2.781273 -5.459585 -28.644920 5.901647 -3.624308 10.645673 15.292845 -25.562842 25.133023 -0.298010 -7.844411 13.829271 28.725625 11.854240 -12.135196 -16.654364 30.618848 -44.655643 26.196022 -17.422865 -26.729653 49.022454 -2.790382 8.251906 -11.236935 -10.222770 16.353422 22.186381 -27.321680 -13.053123 -6.789267 11.478601 -26.126944 -18.509509 28.817248 -13.642075 -7.815644 15.245259 -34.772591 -42.082840 -5.632638 13.010438 7.991265 -37.933858 -22.172378 -0.052311 -2.383181 10.347961 6.214115 -38.803488 -32.550206 7.719627 2.206053 -0.840950 -0.920159 -19.097585 -10.923841 8.529255 29.013007 -15.077695 -14.172461 2.077698 -5.797462 -1.870173 16.654852 38.958065 -41.353783 6.672378 -46.050254 13.611805 -16.485375 20.793630 26.734592 -0.167364 19.449408 3.396689 26.228620 -6.262870 1.560308 12.871519 9.235407 5.851010 -3.762185 19.851238 33.282329 -21.818314 -40.546895 -16.699382 -2.278676 15.758630 -2.683675 -22.189721 16.871321 -29.332354 -6.617482 -4.690931 -1.848179 -4.808843 38.359761 -32.004926 5.067426 13.558959 -7.414989 21.009775 11.451580 2.506901 7.354745 -5.310204 5.450955 11.049383 1.337983 -0.511166 22.372727 -28.083194 -17.261042 1.313211 12.386241 15.532146 -27.572234 -24.488416 -38.285671 -4.341836 33.210461 -15.935844 6.656491 39.072270 -16.051356 -12.401291 4.815615 -1.928349 -9.951392 10.773451 8.953156 52.740626 -32.280155 16.455720 9.104512 9.904766 18.020057 35.702647 -18.825230 -26.041795 24.101669 -8.523040 -9.912846 47.065823 -2.288042 3.281216 19.074485 6.692060 11.713782 -6.475199 27.832184 -32.574147 17.668313 -21.320892 31.682555 -15.745968 2.997457 5.530764 -27.713195 -19.955033 -23.117886 11.554221 -8.369689 30.620083 -12.730281 -17.322584 -2.993183 -15.647798 3.154689 43.750705 -21.103658 -6.146004 -1.809880 -18.654418 13.849848 0.993998 -11.087713 -10.613292 -17.332766 5.007983 16.997718 -4.981982 -36.916816 -19.154058 -9.842823 -8.099509 -19.754633 4.533505 22.318228 -20.154058 2.810855 20.023223 -1.907515 -9.916153 -8.853491 -3.905661 14.992572 1.955291 11.294608 3.380460 46.785831 16.014951 24.501577 -4.129727 3.152870 -1.438068 -17.434594 -45.115152 19.926415 -1.117780 16.056293 12.608295 12.340906 -2.171239 13.630152 10.485447 -20.785983 18.195846 21.488402 11.071499 25.346024 -12.312756 -0.256429 14.731973 -10.035035 21.064382 18.583546 3.951736 -34.803608 3.832053 -27.591993 -32.341874 7.392132 -3.412762 4.134310 -16.831555 13.641665 34.075926 -0.365830 -16.376689 49.042184 -2.197266 -60.552635 16.984239 12.338918 13.351348 44.550510 -15.808756 32.320872 13.774550 43.065340 8.915643 19.927393 19.847308 -35.110902 11.330149 3.158062 12.163500 24.203247 -13.082679 -70.651062 13.245834 9.003736 30.762520 -6.995706 35.532792 -21.541467 35.133673 -2.943301 4.129228 12.361581 -6.855664 22.703714 -6.177760 4.524552 -46.381253 24.618661 +PE-benchmarks/z-algorithm-linear-time.cpp__main = 1.205667 -1.729862 1.460728 -5.314427 -3.701663 -1.517162 -0.658269 0.450975 -1.612875 2.970690 1.248275 -5.690224 -6.331359 5.350402 0.385798 -4.864777 1.754040 -3.076784 1.779570 -0.020124 -0.426695 1.946890 1.219950 -2.199580 1.871227 0.992405 -5.056522 3.468581 9.686695 -2.859673 0.642679 -0.199646 1.340285 4.967175 -0.995123 -4.530944 -0.297176 8.822955 -1.672125 3.159138 -3.678375 -2.553816 8.247096 -1.177295 -1.017202 -5.369875 -2.504874 5.554502 -6.247484 -2.892188 0.536539 2.868767 1.359993 -5.158208 -4.444577 5.578510 -10.492093 6.045340 2.980946 0.221264 0.179885 1.872478 -2.159775 1.639927 0.120105 -3.971413 -1.680485 -3.751852 -4.835377 -2.264863 -1.912601 1.328445 6.544638 1.342686 -0.825478 3.348778 1.800330 -1.305108 4.206476 -6.167885 -4.978814 -1.105031 -2.404871 -2.295427 6.638542 -0.980564 1.649393 -6.460942 2.008063 -7.230056 3.190638 -6.770742 0.754614 7.675924 -4.528900 4.427798 0.869347 -2.567830 4.432913 0.809364 6.455292 2.168300 2.889071 4.079682 2.371815 3.263763 -1.884221 -1.201378 -3.174941 -3.127072 -1.504772 -1.050343 -6.702618 4.469141 -0.941386 1.350635 4.396132 -0.879208 -2.301010 2.121398 -2.107312 -0.479512 0.742233 -1.178506 -0.101542 5.706944 -1.175313 -2.508218 -2.189138 6.369887 0.111115 4.198509 5.209029 4.476913 1.099329 -6.959422 -1.694842 1.890516 -0.087218 -3.438124 -4.191010 -6.885844 1.801881 -3.634730 -3.098051 4.578270 9.220957 -0.446024 -2.754383 6.691620 -0.558077 3.081657 4.385437 -0.202842 7.490749 -0.788561 -4.764813 -0.202318 -3.257722 1.627280 2.738836 1.011474 -1.891972 2.501205 -0.566144 -2.049997 -1.362062 1.445169 -1.265733 -0.226158 -0.575148 -4.643364 -6.384888 4.433494 0.372408 4.299696 2.036203 7.877989 4.589041 -5.442002 5.306193 0.985889 -0.175256 -1.424572 -1.719768 2.351623 -2.409198 -4.000244 -3.111118 -3.985906 2.413513 -4.482674 3.709342 0.219763 2.524847 3.990087 1.342812 3.077231 1.552709 -2.850570 2.017874 -7.188425 1.286750 1.788901 -1.506524 -6.778502 -0.071391 -0.927186 0.536988 6.687362 -1.047163 4.230709 -2.573263 -3.108851 2.798747 1.031837 1.023372 0.191546 -4.635792 0.969456 1.902444 2.997703 4.332219 6.973955 3.752019 2.987269 -1.175765 6.467049 -1.959564 3.315531 -1.286019 -2.522703 -2.147735 0.882902 3.149622 1.603678 2.956039 3.494489 6.076228 3.913405 -5.145457 5.358819 -0.470451 4.330776 -0.317128 -4.111756 2.515946 -0.329019 5.391118 6.118295 -1.935042 -3.687941 4.396931 -0.854561 -0.568594 -4.425371 0.635321 -1.006014 0.578705 4.279430 0.724235 1.054927 0.541552 2.589939 -0.766365 -8.863389 6.979642 2.465618 3.500121 1.651517 1.624907 0.978928 1.950271 -4.703621 0.382587 4.939278 1.874478 -4.597804 0.978554 2.215756 5.027443 -0.030063 5.404457 -8.597690 -2.788971 1.850241 1.749631 1.805146 2.912005 -2.723415 -7.054240 2.991905 0.678715 -1.260591 -3.233280 -1.485021 -4.705149 0.711585 1.226064 -0.400941 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.746260 -0.279731 2.284362 -5.221593 -3.479953 -1.303928 1.981084 -2.895340 -2.507635 6.499644 1.703429 -5.936937 -5.489484 5.329513 -0.608681 -3.501112 1.677028 -2.170918 0.425187 -0.671638 -1.606012 1.728735 -0.101177 -3.608002 1.789215 0.541598 -1.317700 4.461714 5.719296 -0.996964 0.013828 -1.816893 2.740972 7.774160 1.456633 -3.791692 -2.264070 10.482506 -4.397034 6.053122 -5.725699 -4.544517 10.679984 -1.195032 -0.536368 -7.498294 -2.501361 6.773669 -3.769278 -5.220041 -0.411075 1.202925 2.108052 -6.609341 -5.310645 7.050876 -9.662043 4.724284 4.410197 -2.717397 -3.500272 0.259299 0.320252 2.704270 -3.623897 -5.338527 -0.989598 -3.688279 -4.363963 -0.991947 -5.219034 -2.539062 6.212760 1.322908 -1.955119 2.116640 -0.931660 -2.330492 4.486057 -3.605508 -5.534950 -2.643596 -1.701334 -2.729656 5.189804 0.807038 3.782240 -9.926182 1.688467 -10.260822 3.568841 -6.776347 3.134576 8.276828 -3.851167 5.986824 0.953130 -0.023423 2.973121 0.085606 6.219455 2.591955 3.700729 2.917362 4.552004 5.506076 -3.825735 -5.143550 -4.689444 -3.957983 0.908706 -1.121044 -7.918601 4.769236 -3.800775 0.760800 2.188273 -0.691196 -2.811695 5.069137 -6.446582 -0.302360 1.666666 -1.733452 2.679926 6.956113 -0.515043 -0.369754 -1.846329 5.872394 0.551262 3.770064 3.654833 6.122556 -1.072774 -6.811264 -2.446994 2.533901 2.455197 -4.839822 -6.474530 -10.096034 -0.314855 -1.067639 -4.244610 4.523481 11.638176 -2.116646 -4.359682 6.350606 -0.622060 1.635460 5.005858 0.815039 11.262867 -4.021149 -2.556293 0.243704 -2.447572 3.272768 7.599603 -1.172601 -4.292990 4.814604 -2.012771 -3.489826 1.877598 1.239604 -1.445279 1.257255 0.073397 -3.260666 -6.880288 6.391879 -3.005513 5.687234 -1.124314 10.082049 0.837509 -4.359183 4.301327 -2.443699 -1.282133 -4.041642 -0.646337 0.752922 2.480918 -5.363917 -4.184638 -3.034381 0.373955 -3.568700 7.249976 -3.095211 1.032371 2.542971 -0.230962 5.059203 2.478419 -3.833418 0.912143 -7.390266 1.998741 3.351492 0.367220 -8.845772 -2.401176 -2.874318 -1.465109 3.862735 -1.058411 5.262321 -4.122769 -1.883089 4.187331 -0.140985 -0.048477 -0.213865 -6.885632 2.659905 1.149284 3.274794 3.818168 10.007890 4.705202 5.280287 -0.385159 5.247108 -1.879709 0.555461 -5.280518 -0.189212 -0.992677 1.591016 4.249891 3.269449 3.388005 4.318547 6.267650 1.638793 -2.972555 7.207817 0.082657 6.660702 -2.359154 -2.914111 3.046166 -0.673429 6.552481 7.588891 -0.422513 -6.281529 4.432910 -3.117422 -3.533168 -4.205033 0.245020 -0.803799 -0.232553 5.791214 4.314791 0.907142 -1.121653 7.856602 -1.887232 -12.865636 7.170958 2.902095 4.253234 4.710987 -0.673397 3.957436 3.441015 -0.823375 1.234231 5.880300 3.924259 -7.183549 1.132148 1.636993 5.285647 2.680982 3.044665 -15.350620 -1.926683 2.109893 5.665880 1.086023 6.824509 -5.127148 -2.449558 3.153254 1.095820 0.485269 -3.021967 2.543636 -3.487941 0.392442 -4.341154 1.836602 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.182160 0.152729 0.362538 -0.699634 -0.316787 -0.228938 0.535815 -0.405921 -0.250636 0.223702 0.216230 -0.598777 -0.812201 0.678291 -0.216088 -0.662420 0.043779 -0.373759 -0.386992 -0.279623 -0.163449 0.159368 -0.045909 -0.656973 0.321798 -0.121685 0.178812 0.787950 0.463707 -0.264190 0.014587 -0.205794 0.475562 1.080305 0.147011 0.058291 -0.267682 1.216175 -0.548241 0.768422 -1.219460 -0.787986 1.628382 -0.196064 -0.317578 -1.596161 -0.455123 0.651336 -0.857056 -0.199573 -0.166907 0.039627 0.056876 -0.972573 -0.372149 1.176112 -1.347552 0.871482 0.433769 -0.529822 -0.684308 -0.228343 0.032243 -0.022404 -0.216433 -0.727567 -0.081399 -0.295783 -0.705981 0.317492 -0.590415 -0.469890 1.332348 0.093668 -0.159525 0.343702 -0.349271 -0.346722 0.421872 -0.459564 -0.364994 -0.508616 0.438659 0.259153 0.541945 0.177570 0.214569 -1.474574 -0.490705 -1.257715 0.484220 -0.907242 0.562482 0.720301 -0.600450 0.927189 -0.090277 -0.553639 -0.006607 0.151618 0.602813 0.202709 0.817984 0.093822 0.676061 0.529747 -0.342854 -0.991942 -0.413142 -0.506833 0.013524 -0.131567 -1.629021 0.358366 -0.703166 0.110038 0.099367 -0.082982 -0.090393 0.602458 -0.765670 0.156180 0.385744 -0.237677 0.507314 0.820197 0.008197 0.010398 -0.235990 0.550009 0.233972 0.512337 -0.077724 0.671225 0.059373 -1.488424 -0.536016 0.000406 0.246384 -0.486050 -0.950231 -0.997608 -0.297576 0.114324 -0.458245 0.212828 1.350106 -0.209171 -1.099198 0.683300 0.358013 0.510862 0.575017 0.264027 1.522867 -0.704429 0.150282 0.031399 -0.004875 0.601808 0.741677 -0.444529 -0.911632 0.566975 -0.225875 -1.170288 0.558293 0.000653 0.039249 0.409331 -0.136417 -0.526446 -0.862512 1.020144 0.156556 1.314579 -0.551454 1.256635 -0.667016 -0.835217 0.299515 -0.478359 -0.171212 -0.509988 -0.095633 0.069183 0.505300 -0.792607 -0.688699 -0.349085 -0.086908 -0.200848 1.206760 -0.500940 -0.159569 -0.145649 -0.110929 0.418331 0.342001 -0.706501 0.250958 -0.936271 0.325583 0.759949 0.501439 -1.622686 -0.108526 -0.145869 -0.343625 0.376359 0.058802 0.516365 -0.074962 -0.089679 0.605749 -0.254508 -0.038303 -0.258180 -0.652672 0.234245 -0.125585 0.090837 0.184013 1.331311 0.942688 0.347622 -0.220899 0.317634 -0.063476 -0.465556 -0.496797 0.013115 -0.019827 0.182083 0.497062 0.684178 0.369787 0.244916 0.875255 0.431131 -0.414579 0.851571 0.465044 0.993636 -0.520921 -0.350101 0.328152 -0.165068 0.798752 1.110161 -0.131688 -0.727936 0.589429 0.111196 -0.262221 -0.878118 -0.388641 -0.142779 -0.417702 1.319364 0.440065 -0.335649 -0.044042 1.520649 -0.090647 -1.549568 0.858051 0.381330 0.415126 0.039330 -0.376221 0.079691 0.891966 -0.092507 -0.067495 0.315676 0.616676 -0.954512 -0.298357 0.080918 0.625103 0.503916 0.128736 -1.733997 -0.281098 0.430608 1.276712 0.212274 0.918670 -0.402019 -0.104243 -0.000955 0.270787 0.109798 -0.135331 0.275912 -0.559244 -0.152840 -0.884389 0.029811 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 0.364364 -0.011917 0.630741 -1.884845 -0.444999 -0.682565 2.936578 -0.454660 -0.680176 1.544505 0.296276 -1.076385 -2.133544 1.909540 0.437854 -1.027004 0.696348 -1.938614 -0.704369 0.381534 -0.563623 1.002691 -0.262160 -1.028328 1.092652 0.326369 0.040768 2.149711 0.388384 -0.618178 0.079758 -0.711614 0.473290 2.270409 0.235324 -0.161169 -0.882486 3.376040 -3.589423 3.329612 -2.522395 -1.705872 4.186230 -0.523610 -1.205975 -3.959096 -0.697371 1.753904 -0.548024 -1.833753 0.209325 0.423212 0.404983 -2.063620 -0.616575 2.862457 -2.925246 0.633307 1.312511 -0.895699 -1.611447 -0.617065 0.095821 0.183833 -2.426669 -1.628388 -0.150147 -2.533188 -1.200686 0.137607 -1.595410 -1.039539 1.774617 0.855899 -0.373577 0.797292 -0.755041 -1.448985 1.273494 -0.598450 -1.034452 -0.987263 -0.086032 -0.774453 1.448671 -0.155870 0.819861 -3.587404 -0.612044 -2.980009 0.675656 -2.500952 0.936463 2.347449 -0.206090 2.385116 -0.386970 -0.197447 -0.161467 -0.774441 1.254711 1.333280 2.207723 0.604116 2.089767 2.199708 -1.853013 -3.033265 -1.848652 -0.828900 0.744687 -0.825539 -3.268352 1.085009 -1.040202 -0.913846 0.919661 -0.249605 -0.905544 2.295182 -1.667582 1.518467 0.783693 -0.553916 0.646330 2.533139 -0.010567 -0.515796 -0.652148 1.305191 0.559070 2.530744 -0.118311 1.732973 -0.823637 -1.490137 0.509883 -0.178138 0.389051 -1.097533 -1.904851 -3.572747 -0.413262 0.317428 -1.271234 0.660996 3.403552 -0.762990 -2.261009 1.806000 0.642517 1.146620 -0.139844 0.188698 3.281794 -1.133537 -0.238404 -0.109660 -0.182076 0.965268 4.577081 -0.328543 -1.945340 1.257139 -1.409890 -3.409682 2.151443 0.588281 -0.064348 0.950887 -0.256478 -1.355103 -2.601791 2.816972 -1.314935 2.616230 -1.619968 2.474194 -0.545165 -0.549277 1.035642 -1.739879 -0.263175 -3.366875 -0.833940 0.473899 0.735595 -1.383786 -1.179908 -1.665959 -0.020178 -0.925409 2.717987 -3.723564 -0.351807 -0.317461 0.283063 1.363003 0.672610 -1.452882 0.104670 -2.265493 1.079727 1.354761 0.574534 -3.441852 -0.414955 -0.131281 -1.041678 0.970594 -0.083279 1.026732 -0.832964 -0.318888 2.021979 -0.065358 -0.942287 -0.309225 -3.816925 0.400587 0.588462 0.638479 0.998733 3.196877 1.632051 0.912778 -0.357860 1.113221 -0.504157 -0.091331 -3.684063 0.064137 -0.658996 0.263725 1.297604 1.699569 1.256325 0.613834 1.907676 0.957916 -0.965182 1.798430 1.224655 2.144933 0.264819 -1.904240 1.486372 -0.164597 1.443128 1.909387 0.646010 -1.517881 1.625702 -0.262620 -2.019804 -0.872389 -0.365244 -0.696010 -0.311033 2.964015 0.701454 -0.759500 0.226583 3.751063 -0.954364 -4.705455 0.933276 0.881215 1.676292 1.065875 -0.155278 1.395169 1.821320 -0.209705 1.049020 0.884019 1.057946 -1.998020 0.057925 0.390224 0.577430 2.296814 0.307320 -5.772663 -0.953563 -0.039950 3.194211 0.419616 3.655415 -0.618499 0.910883 0.357341 0.459573 0.445304 -0.786621 1.074168 -0.659497 -0.363008 -4.020688 0.902707 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.946951 0.021195 0.725402 -1.333354 -1.062988 0.112624 0.480443 -1.298958 -0.577041 1.537718 0.513623 -0.996466 -0.824813 1.225461 -0.435304 -1.021276 0.202375 -0.489529 -0.251322 -0.426665 -0.550026 0.496152 -0.480368 -1.116268 0.447928 -0.291326 0.356403 1.241109 0.270206 0.188464 -0.308882 -0.726985 0.332201 2.472396 0.862147 -0.324508 -0.397604 3.087579 -1.220310 1.577836 -2.160332 -2.013667 2.717785 -0.332490 -0.066997 -1.902752 -0.697143 1.386512 -1.045113 -0.712128 0.028325 -0.332286 0.575725 -1.441495 -0.759245 1.673362 -2.552238 1.112084 0.978532 -1.163665 -1.636177 -0.575799 0.304222 0.474837 -1.238620 -1.503832 0.197976 0.099215 -0.745932 0.286728 -1.456616 -1.530305 1.955320 0.489715 -0.582063 0.246970 -0.441484 -1.158948 1.061514 -0.454250 -1.723870 -0.919574 0.129619 -0.810090 1.344073 0.457828 1.566846 -3.155535 0.608018 -3.303645 0.883664 -1.616170 1.284452 2.108067 -1.348517 1.449951 0.469084 0.967574 0.553595 -0.046248 1.529126 0.737956 0.777419 0.500370 1.429570 1.410476 -0.993302 -1.624911 -1.115851 -1.172301 0.212378 -0.569603 -2.981079 0.949156 -1.312622 0.421989 -0.215542 0.010490 -0.539331 1.814473 -2.594873 -0.190821 0.510705 -0.505998 1.228981 1.376769 -0.160190 0.322439 -0.453709 1.459068 -0.132581 0.647268 -0.141916 1.601065 -0.835142 -1.706016 -1.490623 0.593141 1.043283 -1.443198 -2.225338 -2.570722 -0.634050 0.792055 -1.008520 1.574195 3.312208 -1.071936 -1.929562 1.659736 -0.215256 0.161309 1.723784 0.539063 2.710338 -1.368671 0.058074 -0.268016 -0.225202 0.573987 1.128840 -0.601425 -1.370918 1.524534 -0.495658 -0.793179 1.818207 0.052561 -0.506942 -0.070250 0.060273 -0.817487 -1.413792 2.200734 -1.074615 1.871295 -0.575283 2.806291 -1.066657 -1.227786 0.654497 -1.685625 -0.475607 -1.207606 -0.059487 -0.123716 1.463141 -1.677508 -1.409250 -0.439377 -0.464549 -0.641131 2.149236 -0.258609 -0.068089 0.333461 -0.148329 1.684259 1.286628 -0.742995 -0.011988 -1.651545 0.765942 1.349510 0.091340 -2.504805 -0.770823 -0.705048 -0.601196 0.358968 0.205314 1.442313 -1.122342 -0.284655 0.844881 -0.017156 0.245241 0.130284 -1.979806 0.870197 -0.091601 0.644788 0.744161 2.537735 1.658855 1.680046 0.242941 0.504871 -0.148129 -0.669451 -1.004735 0.197530 0.470730 0.651656 1.023738 1.584483 0.964506 0.924898 1.375288 0.816746 0.045948 1.955411 0.498042 2.438777 -1.156665 -0.358567 0.475174 -0.115712 1.772241 2.386031 -0.463345 -1.033049 0.941249 -0.356837 -1.020462 -1.385832 -0.089527 -0.321268 -0.275770 1.148023 1.392446 -0.195397 -0.637153 3.040702 -0.206076 -3.503977 1.766585 0.779989 1.097613 1.291720 -0.564447 0.772294 1.091292 -0.038119 1.107101 1.505124 1.227635 -1.980112 -0.070295 0.262214 1.396987 0.897594 0.552234 -3.224431 0.285868 0.740659 2.175544 0.459725 1.841477 -1.430665 -0.045730 0.375069 -0.293722 0.216666 -0.044792 1.076843 -0.787892 0.295047 -1.860968 -0.163253 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.296869 -0.044008 0.525303 -0.728653 0.078604 -0.257997 1.148518 -0.331029 -0.128598 1.051598 0.067087 -0.311467 -0.566657 0.625094 -0.064494 -0.319854 0.492866 -0.773569 -0.260771 -0.019963 -0.084163 0.343957 -0.016391 -0.734864 0.503466 -0.111556 0.321866 0.759146 -0.473257 -0.149110 0.072547 -0.300702 0.332134 1.074984 0.070586 0.167139 -0.484058 1.051780 -0.999319 1.457485 -1.190858 -0.928461 1.426599 -0.228090 -0.027551 -1.292735 -0.047591 0.549693 0.104929 -0.796492 -0.242854 0.004691 0.256125 -1.103021 -0.397144 1.007265 -0.993839 0.021083 0.416496 -0.597565 -0.872046 -0.232676 0.181673 0.171632 -0.785390 -0.669277 0.091416 -0.553498 -0.671628 0.438929 -0.571046 -0.495672 0.586465 0.235003 -0.096296 0.333558 -0.272665 -0.667658 0.564333 -0.421242 -0.263329 -0.595855 0.132100 -0.258046 0.393978 0.106394 0.607821 -1.404628 -0.007371 -0.946943 0.611610 -0.766909 0.576513 0.809146 -0.033148 1.011947 -0.083927 0.370415 -0.246315 -0.176343 0.568183 0.550786 0.892003 0.037637 0.830615 0.676325 -0.811182 -1.265666 -0.629573 -0.237051 0.381267 -0.483923 -0.967391 0.326477 -0.516790 -0.175439 0.275125 -0.194569 -0.279795 0.964013 -1.315168 0.248753 0.483033 -0.225898 0.255887 0.581085 0.072533 -0.150278 -0.078430 0.618430 0.189401 0.544118 0.017332 0.799318 -0.525879 -0.480062 0.344008 -0.133327 0.114542 -0.612689 -0.881375 -1.350605 -0.391843 0.612967 -0.365038 0.566729 1.231396 -0.112161 -0.890097 0.509486 0.249602 0.003322 0.067525 0.281268 0.873894 -0.778541 0.130803 -0.124289 0.300289 0.770760 1.855745 -0.326196 -0.907371 0.742094 -0.527720 -0.997986 0.744791 0.082361 0.234802 0.119521 -0.137847 -0.591891 -0.603719 0.902988 -0.779530 1.214510 -0.860780 1.178778 -0.618556 -0.315781 0.177973 -1.000825 -0.225950 -1.060600 -0.037274 0.090596 0.560009 -0.810946 -0.652014 -0.470266 -0.253274 0.022783 1.111450 -1.613588 -0.167391 -0.324390 -0.222368 1.124742 0.045467 -0.707530 -0.063331 -0.630112 0.318632 0.435767 0.532869 -1.205608 -0.215799 -0.138692 -0.422630 0.078271 0.047159 0.538126 -0.429780 -0.117376 0.843608 -0.201374 -0.651859 -0.473292 -1.285987 0.104456 0.282465 0.212962 0.159154 1.137629 0.735244 0.272901 -0.398859 0.063427 -0.206678 -0.474597 -1.359679 0.226654 -0.103958 -0.046427 0.370237 0.742932 0.331956 0.249492 0.840495 0.436137 -0.226151 0.815809 0.242155 0.550513 -0.253473 -0.361540 0.645365 -0.176217 0.725971 0.505454 0.194191 -0.706952 0.639153 -0.159439 -0.628359 -0.096100 -0.314580 -0.260353 -0.068033 1.043498 0.531734 -0.410373 -0.032503 1.364768 -0.065185 -1.564634 0.513340 0.392355 0.604001 0.517904 -0.384308 0.582740 0.737208 0.204611 0.273134 0.066637 0.497022 -0.787931 -0.228165 0.113693 0.357492 0.931682 0.032442 -1.941334 -0.430580 0.034107 1.186776 0.084347 1.322808 -0.352616 0.563273 -0.125816 0.170446 0.128598 -0.209656 0.423463 -0.291252 -0.213979 -1.415696 0.570240 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 3.143857 -0.194004 2.482695 -3.529444 -1.697245 -0.579363 5.094709 -3.775252 -2.207068 8.519668 1.050311 -3.091718 -2.081686 2.973616 -0.238388 -1.305622 1.805190 -1.039137 -1.051512 -0.825821 -2.099408 1.442257 -1.426860 -4.817449 2.076010 -0.518633 2.211314 4.752708 -2.730790 2.587398 0.545427 -2.717758 1.751232 7.698965 2.458495 -0.635456 -3.225558 8.841672 -7.894523 7.483872 -6.864270 -7.134638 10.403706 -1.114731 0.654071 -6.120065 -1.064751 4.930350 0.344620 -5.802260 -1.595179 -0.580965 2.985693 -6.356589 -3.891328 5.581764 -6.264704 -0.303260 3.567365 -6.022501 -7.848588 -1.274634 1.931153 2.596956 -7.673996 -5.131371 -0.106276 -2.245480 -0.984333 1.163129 -5.734468 -4.805534 2.885469 1.243347 -1.086704 0.839378 -2.676176 -3.635279 3.433110 1.237207 -4.305080 -3.760656 -0.499410 -4.521364 2.283578 1.950843 6.982509 -9.793285 2.704220 -9.830249 3.160462 -4.659765 3.889294 6.589114 -1.458801 5.855716 0.767853 5.388447 0.299359 -1.292075 3.674215 3.457465 3.844041 1.334750 5.490394 6.445252 -5.347727 -7.847771 -4.982151 -2.677585 2.925908 -2.904876 -7.374757 3.370617 -4.327970 -0.502965 0.227292 -0.918119 -2.197459 8.175038 -9.331515 1.952050 2.608717 -1.596643 2.900935 3.639275 0.157003 0.223744 -0.439341 3.355406 0.465831 2.450390 0.768695 5.978390 -5.071712 -2.302139 -0.095824 2.085450 2.733831 -4.678865 -6.202361 -10.262452 -1.952801 5.057779 -3.532436 3.580310 10.050446 -3.054138 -5.639150 3.378471 -1.132259 -1.502716 2.253488 1.918555 8.478444 -4.998476 0.387886 -0.543546 0.238559 3.878427 10.560572 -2.442030 -5.670859 6.149352 -3.418305 -3.707642 7.165131 0.594258 0.035026 0.411483 0.633257 -1.936770 -3.763430 6.712020 -7.505478 5.846720 -4.433184 7.987891 -3.058496 -1.079658 1.637928 -8.026690 -2.716680 -6.308907 0.230804 -0.537232 5.245964 -4.768242 -4.195337 -2.495320 -2.498908 -1.050320 8.421424 -7.300760 -0.855549 0.193060 -1.745314 6.358195 1.233006 -3.080521 -1.688888 -4.427305 2.296114 3.348107 0.947731 -7.879292 -4.050132 -2.281394 -2.547155 -0.631009 0.897644 5.289647 -4.348580 0.330537 4.788752 -0.027594 -2.572867 -1.220414 -7.799640 2.662990 1.298135 3.265700 2.063328 9.354948 4.298386 5.172641 -0.958038 2.192955 -1.305135 -2.748220 -8.312940 1.972627 0.518028 1.061133 3.248797 4.635054 2.501588 3.323652 4.338092 0.962617 0.683695 6.118462 1.228008 5.748852 -2.997837 -1.744134 3.810193 -0.008458 4.832725 4.712080 1.264558 -5.230534 2.850933 -3.677968 -6.085509 -0.830024 -0.333014 -0.572015 -0.244556 4.093159 6.036856 -0.790208 -1.840849 10.104159 -0.896360 -12.890857 4.421844 2.483207 4.239928 6.501092 -2.458376 5.487916 3.339126 3.810662 3.917100 4.367668 3.278084 -7.185698 0.776531 1.375636 3.504593 6.131288 0.140964 -14.799546 0.049479 0.228498 7.009797 -0.342099 9.281782 -4.933751 3.977765 0.705157 -0.441072 1.553474 -1.279848 3.856148 -0.537410 0.501954 -9.803732 3.157146 +PE-benchmarks/graph-coloring.cpp__main = 6.019375 -4.598558 5.337405 -10.435858 -6.899546 -0.270445 -0.118338 -6.898880 -4.216570 8.439313 1.287829 -6.479138 -5.312814 11.579889 -2.966973 -8.176782 1.860392 -1.650512 2.342375 0.201831 -3.296313 6.003550 -1.843727 -4.849460 5.005165 -2.484496 -0.371327 8.782414 7.312160 -0.020101 -0.357042 -6.552954 1.662907 17.146438 5.315544 -3.006999 -2.163758 24.460612 -5.144742 15.220888 -7.907088 -11.080899 18.218045 -2.467652 -1.674629 -8.742154 -7.059425 10.082656 -9.471613 -7.119312 2.878386 0.047346 4.532872 -8.985553 -5.403334 9.193345 -17.228152 5.911972 6.946808 -4.857040 -6.194365 -3.392311 -3.324557 2.660251 -9.091849 -9.975358 -0.085267 0.003393 -7.367342 -2.211750 -7.004707 -6.090706 17.048663 4.679448 -4.895243 3.493750 2.059198 -6.567338 7.926892 -4.826346 -14.588032 -6.610441 -4.697602 -7.015804 12.891456 1.636640 10.699366 -20.805928 7.719762 -21.760879 6.533268 -11.694799 7.624670 17.950275 -12.427500 12.293767 5.483786 10.272898 4.493456 -1.377901 13.718138 7.379635 -0.791343 7.318626 10.423905 8.601868 -6.900665 -10.201578 -9.937931 -7.373369 2.176500 -7.102519 -20.759817 7.141753 -4.929863 4.651429 -1.014106 2.300177 -6.556575 10.445458 -18.300465 0.813242 2.641041 -3.749526 4.686320 9.639391 -1.306743 -1.495693 -3.740313 12.691781 -3.814136 4.249376 2.419298 12.388820 -4.338913 -6.752774 -7.841845 2.653138 5.891232 -10.135373 -15.031323 -18.731298 -3.599076 3.405841 -7.817940 13.877360 24.605186 -7.192618 -8.588192 14.140164 -1.762181 3.178601 11.155480 4.043941 15.071155 -5.246780 -7.646525 -3.409046 -6.920092 4.373461 6.722233 0.298364 -6.797532 11.875420 -3.601604 -3.000299 10.922750 -0.605794 -5.964823 -4.584246 -0.156267 -7.444671 -10.822796 15.576016 -9.374179 9.655622 -3.416102 20.662403 0.815194 -8.844807 4.657610 -10.916728 -2.929504 -12.195655 0.903608 -1.461942 5.812893 -13.446865 -9.699181 -2.657166 -0.714186 -6.925601 12.040319 -0.697515 1.385729 4.023557 1.893619 14.692329 10.266200 -3.651754 0.582470 -12.477109 5.382643 6.925200 -2.204901 -14.969803 -3.765333 -2.621043 -4.317497 3.854605 -1.161343 7.279092 -11.315072 -2.395694 2.979491 0.765766 0.966590 3.399294 -17.748080 5.223614 4.550110 5.873141 10.062083 15.685869 12.790393 11.679862 2.801592 8.291162 -2.874083 0.689386 -9.466071 2.113984 2.111548 5.484477 7.551106 11.699395 9.709830 7.867654 10.271293 8.480666 1.335220 13.735571 1.830796 17.706718 -1.580301 -6.214471 3.823569 1.590515 13.655346 16.656787 -2.695314 -3.722585 9.452496 -3.386047 -5.866293 -9.472649 4.404247 -2.020612 0.603071 8.118411 6.805888 2.011883 -2.848415 16.523897 -5.490947 -24.433093 11.099894 6.792141 9.051045 8.679390 0.208736 7.761993 5.130980 -3.961147 8.435368 10.936449 7.920542 -13.827960 4.523761 2.320446 7.600419 8.232630 8.429324 -20.661934 0.413524 3.234044 12.596069 2.621367 9.781793 -8.755087 -4.751829 6.409656 -1.900511 0.883936 -2.045932 5.451002 -5.148979 2.900387 -8.690358 -3.575180 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 5.662083 -3.111922 3.677610 -9.454588 -6.777243 1.823411 3.147540 -10.494209 -5.078231 14.439641 2.644931 -6.138420 -4.697469 10.600121 -0.891706 -6.459891 1.113945 -2.661255 -0.396752 -0.507831 -5.581246 5.050077 -4.946652 -6.729899 3.384321 -2.067285 2.633122 7.639461 -0.363263 2.616732 -1.433879 -7.594816 -0.708578 17.792526 7.961626 -0.283409 -4.026931 24.046261 -11.557629 17.198977 -13.635959 -15.519545 18.973450 -2.932157 0.969576 -7.391011 -2.994019 10.610850 -5.384259 -8.328220 1.718765 -2.464490 5.219258 -9.047854 -4.203414 8.483044 -15.381740 4.738993 8.088424 -8.987471 -12.315558 -5.624264 1.177661 5.134811 -14.494796 -10.644372 1.411541 0.721953 -4.085418 -1.030605 -11.151141 -11.626405 11.293079 5.253363 -5.045662 1.000753 -3.332246 -6.423613 7.858877 -1.994449 -14.710235 -6.698282 -1.882472 -10.357004 9.234840 5.936021 13.910004 -23.266106 8.234917 -24.500916 6.213362 -9.820188 9.702535 17.318548 -7.382979 11.102482 5.373267 13.081308 4.441594 -2.523784 10.218042 5.071181 1.955567 6.337016 11.158751 11.571458 -10.006275 -12.820946 -10.399014 -8.147942 4.232590 -5.943605 -16.690044 7.945617 -8.019286 3.376261 -2.953011 3.003725 -6.817916 12.639044 -22.724437 -0.070287 2.657443 -3.904841 10.140238 8.750961 -1.444378 2.879597 -3.093077 9.954718 -3.647498 5.081538 -1.801245 13.512871 -7.181113 -2.769056 -9.123932 5.530093 8.759250 -11.864808 -15.571089 -20.902467 -5.555051 8.279998 -8.438670 16.929934 24.958947 -10.669937 -11.066487 12.786088 -5.619817 2.058651 10.297074 4.043026 16.903528 -8.286181 -1.448947 -2.473131 -3.122186 3.478068 11.668930 -1.822568 -10.112770 12.285935 -4.653515 -0.403210 13.884004 1.644079 -6.571009 -8.305338 2.321171 -5.842207 -9.086809 16.389684 -15.529519 10.639307 -4.851450 20.057790 -6.371640 -3.681106 5.134686 -16.531745 -4.675431 -12.606321 -0.940304 -2.520212 10.121076 -12.726467 -9.366910 -3.399948 -3.464707 -6.130419 13.948447 -3.775312 -0.896841 3.885667 -0.314478 17.384929 10.866924 -2.707063 -3.129457 -11.305824 6.563577 8.332425 -1.533793 -14.138258 -7.361829 -4.957306 -5.529362 2.721272 1.378813 10.573761 -11.718575 -0.731086 4.651266 2.426522 2.112595 3.610714 -18.479812 6.669210 2.880713 5.755989 8.572716 17.467852 9.957483 14.459173 4.667657 5.339022 -3.207328 -2.086597 -10.331543 3.452267 3.782638 6.020096 8.705198 12.265515 9.366152 8.282716 9.977318 4.932749 1.967957 14.745734 0.816006 18.857388 -6.647527 -2.922964 4.122501 1.476791 12.747895 15.470980 -4.938701 -5.516914 7.824546 -5.903354 -10.298659 -5.132802 2.548035 -3.159914 0.499131 5.151240 9.885104 0.961288 -6.179770 22.469111 -4.139986 -26.318335 11.254711 6.194901 11.168566 12.214447 -2.195212 8.575416 5.850896 -1.090653 11.462701 12.941404 8.468601 -14.304805 3.529706 2.106373 8.497996 10.787145 4.653771 -22.877851 2.927030 3.720810 15.090321 2.593921 11.974665 -10.488539 1.303357 4.182256 -4.390891 3.416864 -0.548667 9.246523 -1.611458 3.554364 -16.005737 -1.943014 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 4.576751 -1.898064 3.413320 -6.829793 -3.449961 -1.201132 0.214278 -3.617808 -2.167737 3.512216 0.599380 -4.343494 -2.819609 8.901308 -3.242305 -3.999211 1.686576 -2.307381 1.715244 1.310640 -0.842237 4.116895 -0.080281 -2.448726 3.159166 -0.637523 -0.449211 5.330240 6.039540 -1.553504 -1.331096 -3.508832 2.597283 9.857902 2.744090 -3.581261 -1.099772 14.353597 -3.631898 9.568115 -3.312389 -4.145240 10.367993 -1.125374 -2.595857 -8.404035 -6.875541 5.806924 -4.809512 -4.629977 2.216696 0.508505 1.809994 -5.362094 -3.477529 7.128480 -10.879338 4.346759 4.314172 0.139479 -0.579096 -2.171997 -2.122566 0.537044 -4.343756 -5.683342 -0.304060 -1.459278 -6.151248 -1.512349 -4.266044 -2.611506 11.224920 2.685754 -3.493727 2.145818 1.528110 -5.570618 4.701486 -5.196076 -7.728544 -3.362600 -3.735343 -1.658441 8.165930 -0.484022 4.260472 -11.778784 2.959017 -11.726590 3.203725 -8.476644 3.966791 10.433698 -8.334826 6.837022 2.235972 5.071517 3.103517 -0.091867 8.701182 5.897966 -0.946856 2.948175 6.427637 5.078044 -3.184590 -5.490002 -5.298259 -3.826165 0.747940 -3.655048 -14.033324 3.778251 -2.552661 1.285909 -0.465557 0.308625 -4.104873 5.865540 -9.405002 0.377827 1.187003 -2.084654 1.355153 7.876100 -0.535139 -1.703676 -3.343780 7.623917 -0.909752 2.916537 2.160109 6.388767 -3.497486 -7.581682 -3.855116 0.145394 2.894670 -5.597059 -9.093655 -11.824019 -1.384578 -0.825951 -4.588609 6.198720 13.847479 -2.939341 -4.348309 8.557696 2.069167 2.091554 6.889676 1.581334 9.999143 -3.059176 -5.265637 -1.063126 -5.068585 2.406993 3.676546 -0.011332 -3.207404 5.756461 -2.629705 -6.144303 5.387828 -0.095110 -3.176809 -0.288376 -1.246516 -4.539047 -7.944723 9.988191 -4.492511 4.997443 -2.858893 12.160223 2.067526 -6.268140 2.848741 -4.629906 -0.324616 -8.266573 0.747471 -0.489408 3.774861 -8.088640 -5.466871 -0.522972 0.693546 -4.192918 7.208006 -2.690336 0.872300 1.399200 1.847293 7.479894 6.086791 -3.604665 3.147114 -7.522030 2.988907 4.661478 -0.562565 -11.524632 -0.626484 -1.841604 -2.610230 1.648123 -2.368326 2.380168 -7.145076 -2.748748 2.389983 -0.977694 0.129053 1.680685 -10.203042 2.911185 1.506228 3.487461 6.134883 9.091102 7.488736 5.956542 1.278940 4.554660 -1.591140 0.415744 -6.793608 1.653939 0.555183 1.860385 4.329626 7.269648 5.375385 4.007376 5.754966 5.177230 0.082036 7.639188 2.543969 9.564575 1.473986 -4.656510 1.940999 -0.278752 8.287800 10.931072 -0.043707 -3.256267 5.937935 -1.902374 -2.416670 -6.576133 2.649021 -0.835089 -1.046704 7.092184 2.993986 1.561604 -0.458875 8.906223 -4.619665 -14.206201 5.532600 4.078244 4.432574 4.402189 0.340123 5.178902 3.023680 -2.446161 3.533661 5.423310 5.304592 -6.927433 1.644029 0.894279 3.370016 5.486545 4.895670 -14.796214 0.282073 2.535393 8.101111 1.486390 6.014548 -4.509157 -3.059704 4.321984 1.645139 0.512977 -2.639169 3.763758 -4.682618 0.592677 -3.389991 -1.025550 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.746676 -0.931564 1.920222 -4.460661 -4.440600 0.774158 -0.620126 -3.846447 -1.782602 4.015155 1.751234 -2.400084 -1.138629 5.518201 -0.945632 -3.556194 -0.258226 -1.438879 -0.130794 -0.625692 -1.773087 2.874105 -2.075213 -1.495173 1.589077 -1.070627 -0.194144 2.367487 0.818999 -0.778200 -0.853460 -2.911456 -0.761613 7.099992 2.598699 -0.491265 -0.646089 10.139130 -2.873535 4.889490 -5.567914 -5.836838 6.500608 -1.360634 -0.010420 -2.901959 -2.603320 3.980251 -2.691070 -1.464807 1.905824 -0.661766 1.465256 -2.760808 -0.334972 2.488950 -7.005437 3.450285 3.442966 -3.016260 -3.619570 -2.092004 -0.460282 0.832636 -3.605234 -3.919410 0.954422 1.755868 -1.352367 -0.885365 -2.739230 -4.907727 6.091088 2.143237 -1.731252 1.189368 -0.053153 -3.216326 3.807557 -2.277540 -6.836267 -2.503299 -0.064959 -3.621263 4.675312 1.591172 4.863960 -9.445004 3.540214 -10.104824 2.515332 -3.934325 3.624281 7.200500 -4.654791 3.832418 3.094280 3.940824 3.268672 -0.135614 5.143322 1.613333 0.174708 3.365268 3.728261 3.885310 -2.981041 -3.391510 -4.000203 -4.536935 0.943395 -2.105321 -7.057257 3.342974 -2.071637 1.126453 -1.599187 1.135106 -1.573466 4.849615 -7.486047 -1.010536 1.692405 -1.663465 3.060802 4.045865 -1.050751 0.606801 -2.616396 4.570292 -2.924255 2.463323 -1.049525 5.177232 -1.884049 -3.226979 -5.834348 1.589791 2.839437 -5.102659 -6.197690 -7.357273 -1.426148 1.917337 -3.603847 7.050824 10.718369 -5.368153 -5.336353 6.584048 0.434058 0.832193 5.216634 1.637260 6.500021 -2.366300 -1.756075 -1.987105 -2.602946 0.725393 0.525859 0.452859 -2.850936 4.560309 -0.690271 -1.304086 6.899826 0.059173 -3.672947 -2.190345 1.660184 -2.912645 -3.709573 6.119280 -1.710765 4.317077 -0.161491 8.513200 -2.390267 -3.134841 2.207366 -4.965638 -1.369281 -3.800572 -0.692193 -0.362917 3.518249 -4.588523 -3.702459 -1.189962 -1.799446 -3.331515 3.847779 1.394069 0.764379 2.234891 0.735587 4.995269 6.427575 -0.122061 -0.125331 -5.131287 2.732467 3.636161 -0.746352 -5.885350 -1.911392 -1.827838 -1.745259 1.627349 0.322340 4.078984 -3.971214 -0.811248 0.839319 0.553725 2.030527 2.042612 -6.085732 2.351920 -0.361823 2.735995 3.300687 5.947220 4.949215 6.415981 3.070139 2.307180 -1.086269 -0.321157 -1.006926 0.417137 1.551623 2.954920 3.790918 5.074333 4.802017 3.303917 4.374289 2.901341 0.891531 6.272072 -0.059444 9.197772 -2.474841 -0.940114 0.320217 1.085226 5.859461 7.947507 -2.423146 -0.924925 3.398242 -0.556373 -2.876376 -4.097576 1.654220 -1.234052 -0.132953 1.435929 3.386093 0.083458 -2.339907 8.234840 -1.686819 -9.413684 5.232346 2.245375 4.436628 3.022205 0.410627 1.770286 2.437443 -2.726442 4.559658 5.598766 4.202678 -5.792185 0.279717 0.752547 4.277385 2.779017 4.003667 -7.034021 2.440243 2.599227 4.873219 0.783336 3.288316 -4.261314 -2.167707 2.265146 -1.960924 0.221248 1.212711 2.679746 -2.017817 1.825337 -4.129144 -2.893896 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/ugly-numbers.cpp__main = 0.194266 0.171875 0.398657 -0.571757 -0.259086 -0.197164 0.357214 -0.430765 -0.192206 0.185259 0.154779 -0.515297 -0.700333 0.403801 -0.306338 -0.621176 -0.021822 -0.201570 -0.362782 -0.418765 -0.140742 0.028763 -0.020014 -0.699270 0.262063 -0.240582 0.300286 0.689532 0.385072 -0.127067 0.088968 -0.189234 0.519789 1.007674 0.148311 0.156205 -0.277251 0.970194 -0.141525 0.501586 -1.127144 -0.793768 1.427262 -0.176185 -0.155176 -1.355797 -0.304170 0.550900 -0.888467 -0.053849 -0.300415 0.001208 0.067031 -0.958270 -0.432986 0.976901 -1.132822 0.840482 0.322226 -0.619043 -0.699950 -0.192965 0.038226 0.020818 0.000811 -0.663221 -0.074750 -0.038311 -0.692838 0.421369 -0.533759 -0.384147 1.242257 0.013784 -0.117450 0.309472 -0.336382 -0.170234 0.322382 -0.383333 -0.262164 -0.538839 0.535164 0.366130 0.378940 0.275837 0.219268 -1.259010 -0.477169 -1.069096 0.524604 -0.699495 0.577832 0.522684 -0.575378 0.890518 -0.056164 -0.582631 -0.057346 0.202117 0.521203 0.078519 0.773098 0.045161 0.540077 0.348828 -0.216384 -0.860721 -0.300353 -0.443673 -0.035873 -0.090057 -1.447691 0.288095 -0.744795 0.225227 0.007301 -0.078952 -0.028300 0.460088 -0.848017 0.003040 0.388168 -0.211055 0.519516 0.542749 0.036869 0.089584 -0.094312 0.459232 0.209536 0.246371 -0.043663 0.618768 0.172121 -1.414438 -0.607450 0.032726 0.255525 -0.433041 -0.875455 -0.715118 -0.371693 0.207478 -0.372524 0.156943 1.151508 -0.118286 -0.986601 0.491416 0.221800 0.403226 0.623139 0.336025 1.282413 -0.720630 0.226271 0.042805 0.094834 0.706574 0.502792 -0.505429 -0.878300 0.610835 -0.112085 -0.749135 0.248860 -0.129547 0.113877 0.316273 -0.136359 -0.452358 -0.624757 0.792107 0.210939 1.272396 -0.519832 1.162581 -0.771304 -0.857577 0.167337 -0.495432 -0.198722 -0.213164 0.070935 -0.034269 0.518114 -0.803473 -0.689869 -0.218566 -0.146745 -0.044027 1.110429 -0.252456 -0.176300 -0.174553 -0.221591 0.432109 0.238559 -0.658992 0.187942 -0.776692 0.250145 0.647451 0.591732 -1.390838 -0.160535 -0.125637 -0.310091 0.298139 0.113108 0.514114 0.022988 0.001972 0.498747 -0.287330 -0.031923 -0.315031 -0.317861 0.217104 -0.123906 0.032786 0.048077 1.177987 0.911616 0.277184 -0.271701 0.235895 0.000826 -0.594692 -0.188317 0.043555 0.082437 0.154802 0.407008 0.612759 0.263637 0.217981 0.827604 0.389364 -0.363123 0.775971 0.305263 0.853003 -0.755690 -0.156722 0.247686 -0.141427 0.740720 0.963699 -0.131270 -0.715910 0.505628 0.115970 -0.087637 -0.826447 -0.422789 -0.065862 -0.378441 1.183892 0.517722 -0.329435 -0.084191 1.356232 0.040145 -1.249664 0.879816 0.350757 0.294835 -0.046831 -0.480762 -0.036421 0.843017 0.006697 -0.225043 0.219601 0.561547 -0.918031 -0.321279 0.065657 0.662126 0.312242 0.012530 -1.364746 -0.326130 0.455168 1.130343 0.183675 0.725873 -0.419306 -0.162367 -0.052147 0.248537 0.096868 -0.030546 0.224388 -0.513365 -0.116418 -0.593088 0.025828 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.622693 0.249907 0.743881 -1.137921 -0.295406 -0.267571 1.147493 -1.174395 -0.315305 1.202119 0.366866 -0.748254 -0.691068 0.435193 -0.365026 -0.636525 0.487560 -0.230503 -0.559187 -0.651571 -0.183441 -0.024455 -0.099679 -1.691264 0.498174 -0.572236 0.941200 1.275185 -0.499219 0.403370 0.112582 -0.444017 0.882501 1.976219 0.446282 0.481594 -1.012428 1.567938 -0.609984 1.261214 -2.072271 -1.722280 2.807748 -0.368186 0.272826 -2.126865 -0.309330 0.934849 -0.305697 -0.904812 -0.868423 -0.256788 0.604134 -1.946254 -1.134182 1.485105 -1.084824 0.327961 0.680782 -1.855158 -1.874043 -0.451531 0.381631 0.513753 -1.019503 -1.322441 0.009299 -0.064529 -0.832564 0.943528 -1.355685 -1.125750 1.526584 0.291676 -0.090110 0.401194 -0.932282 -0.873327 0.604619 0.029203 -0.455564 -1.066350 0.831838 0.331977 0.200026 0.526679 1.432958 -2.460209 -0.565639 -2.211691 1.096990 -1.063439 1.365411 1.024263 -0.505995 1.595451 0.001631 0.216735 -0.183715 0.359311 0.903060 0.547653 1.540977 -0.174918 1.531877 0.973017 -0.645822 -2.144123 -0.652583 -0.595591 0.362019 -0.576781 -2.401297 0.768462 -1.629829 -0.043565 -0.306560 -0.246063 -0.050503 1.858690 -1.981426 -0.122007 0.933684 -0.314356 0.797729 0.667968 0.145170 0.357465 0.087401 0.603244 0.462324 0.285667 -0.024094 1.411593 -0.515353 -1.852157 -0.372029 0.243794 0.662505 -1.153541 -1.706017 -1.640491 -0.937328 1.120826 -0.705789 0.040698 1.958904 -0.310376 -1.540405 0.472816 0.377865 -0.319100 0.745269 0.690109 2.298040 -1.826383 0.846502 0.112636 0.634540 1.562909 2.465178 -1.167961 -1.910462 1.428387 -0.774529 -1.752421 1.136221 -0.108554 0.452307 0.629040 -0.217538 -0.679275 -0.945976 1.384378 -0.697335 2.405719 -1.564906 1.997461 -1.683436 -0.889218 0.339927 -0.814435 -0.617692 -0.890233 0.693687 -0.097634 1.561831 -1.422084 -1.381141 -0.202388 -0.812347 0.325281 2.383967 -1.601220 -0.490422 -0.410276 -0.894702 0.829642 0.112212 -1.113365 -0.113454 -1.018047 0.640319 1.052614 1.297914 -2.034694 -0.916919 -0.583975 -0.669530 -0.464369 0.381773 1.419299 -0.118231 0.069653 1.141622 -0.448925 -0.440014 -0.765617 -0.845188 0.569677 0.173113 0.331619 -0.182259 2.550743 1.444192 0.779567 -0.654221 -0.135270 -0.089162 -1.395840 -1.621293 0.374593 0.226127 0.042982 0.695562 1.650692 0.401164 0.647807 1.679001 0.298042 0.073740 1.610166 0.130368 1.336892 -1.468100 -0.033656 0.695721 -0.371702 1.512133 1.557026 0.552539 -1.776979 0.659651 -0.276346 -1.102986 -0.757236 -0.789965 0.099578 -0.458735 1.684744 1.471732 -0.427604 -0.503864 2.760898 0.311798 -2.800403 1.296797 0.464893 0.788554 1.025784 -1.178806 0.772702 1.357366 0.983272 0.074304 0.373851 0.990023 -1.898772 -0.909161 0.224161 1.027301 0.960499 -0.508461 -2.731867 -0.242513 0.523399 2.203630 0.173466 2.044226 -1.103486 1.020208 -0.147691 0.308786 0.349290 -0.127978 0.650127 -0.795343 -0.388343 -2.135150 0.835189 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = 1.539813 0.133747 0.593674 -1.310660 -0.590179 0.051535 1.288746 -2.238254 -1.414570 2.868485 0.778083 -1.815686 -0.770018 1.337287 -0.213344 -1.176704 0.759275 0.788863 -0.649576 -0.951988 -1.328934 0.010838 -0.706247 -2.553067 0.614848 -0.594460 1.061713 1.707654 -0.564773 1.182515 -0.224985 -1.072075 1.134836 3.893891 1.532339 -0.486760 -1.340478 4.009274 -2.059561 2.775666 -2.663636 -2.716098 4.694918 -0.467074 0.274171 -1.901063 -0.834457 2.163236 -0.318628 -1.920708 -0.861295 -0.756533 1.025456 -2.836599 -1.912744 2.928002 -2.493535 0.810778 1.726298 -2.662551 -3.540858 -0.920303 1.037135 0.863323 -2.610034 -2.359816 0.169482 0.028126 -0.481149 0.548968 -3.400809 -3.006540 2.263050 0.665766 -0.619472 0.177187 -1.717957 -1.010582 1.124126 1.135955 -2.110195 -1.722924 0.511824 -0.797811 1.064020 1.482112 2.963846 -4.933922 0.500530 -5.095628 1.581179 -2.012569 2.581266 3.155738 -1.205606 2.407814 0.500778 1.431856 -0.333029 0.103514 1.976155 0.336771 0.824558 0.183095 2.318233 2.526854 -1.858639 -3.413773 -1.426573 -1.264404 1.047916 -0.380529 -3.087239 1.718747 -3.162651 0.302221 -0.632643 0.352884 -0.964879 2.592955 -3.582802 -0.574469 1.096768 -0.990975 2.776795 1.738992 0.074921 1.011053 -0.607824 1.551343 0.477683 0.336973 -0.439648 2.716041 -1.311308 -2.181556 -1.582615 1.156698 2.011060 -2.634498 -3.480210 -3.885858 -1.175423 1.906324 -1.804765 2.013810 4.687461 -1.623587 -2.150867 1.758529 -0.429024 0.423544 2.315037 1.052910 5.043655 -3.121766 1.170224 0.439413 0.446645 1.701619 2.373081 -1.802003 -2.670559 2.649005 -0.907848 -0.335082 3.354578 -0.130736 -0.318524 0.665710 0.370606 -0.143217 -1.857926 3.220965 -1.917969 2.573515 -1.353409 4.340748 -2.115668 -1.128438 0.958473 -2.275520 -1.539821 -1.815737 0.582461 -0.866006 2.932726 -2.230110 -2.374593 -0.212317 -0.908634 -0.338897 3.869903 -0.453369 -0.566550 0.132029 -1.201430 2.101233 1.136425 -1.357608 -0.579104 -2.383819 0.767320 2.159144 0.297983 -3.299879 -1.664911 -1.250665 -1.144313 -0.453763 0.443066 2.390859 -2.024614 -0.027013 1.694625 -0.065275 0.068606 -0.331527 -2.182370 1.730095 0.129257 0.487778 0.794492 4.654953 2.296769 2.538604 -0.029063 0.500759 -0.268613 -1.351724 -2.850553 0.992607 0.243619 1.777742 1.686524 1.569751 0.887339 1.593878 1.931386 -0.621604 0.688330 2.841682 0.823703 3.406093 -1.630128 -0.040293 1.241802 -0.841407 2.814654 3.208061 -0.307617 -2.908120 1.302005 -1.745484 -2.290922 -1.472464 -0.441638 -0.046271 -1.031858 1.692153 2.635924 -0.150886 -1.584812 5.310928 -0.377973 -5.687242 2.820723 1.363095 1.642247 2.966945 -1.525265 2.176318 1.920400 1.678222 0.986450 2.229735 2.332566 -3.464255 0.792989 0.212789 2.004914 1.613020 -0.341509 -5.699413 0.605629 1.206745 3.401876 0.419849 2.874152 -2.278087 1.476172 0.094098 -0.023263 0.900291 -0.479982 2.204217 -0.638499 0.264890 -3.698549 1.048235 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 6.881539 1.037054 2.552279 -3.426250 -0.613879 -1.403658 10.428289 -8.201183 -6.100491 16.446174 2.217155 -6.425381 -2.114195 4.370893 -0.115345 -1.036596 3.914390 3.828584 -2.981864 -2.805934 -5.760060 0.361121 -2.581977 -10.315450 3.180005 -1.526400 4.894040 7.489269 -7.674121 6.930841 0.981213 -4.484961 5.035329 13.782902 5.040682 -2.459912 -7.308903 13.581056 -15.110546 13.200327 -9.455902 -10.364502 18.969702 -1.745532 3.266031 -7.941700 -2.719667 8.646272 5.444851 -11.908448 -4.870480 -1.969993 4.887510 -12.123189 -7.713999 11.204041 -6.858900 -2.118090 7.260862 -12.869643 -16.069577 -2.442837 4.640804 4.003666 -14.909668 -9.875802 -0.295149 -2.630684 0.958638 2.731060 -14.264540 -11.767227 3.326395 1.394293 -1.584275 0.729916 -7.471985 -4.461775 4.714784 6.974870 -6.305105 -7.034379 0.717937 -4.893329 1.027009 6.240585 13.189069 -17.773606 2.680750 -17.757974 5.843223 -7.459078 8.994961 11.687699 0.022340 10.368801 1.304493 8.309229 -2.460343 -0.246447 5.916855 3.263148 5.055471 0.453345 9.150305 12.075773 -10.125629 -16.121883 -8.049914 -3.279082 6.966435 -2.137450 -8.510805 6.862322 -10.895197 -1.792437 -1.257886 -0.301888 -3.319985 14.417633 -14.810922 2.322090 6.086630 -3.616793 8.257426 5.904065 0.945360 2.591552 -2.086104 3.937078 2.768964 2.307963 -0.029860 10.884738 -8.978476 -5.277372 0.041514 4.339688 6.358887 -10.103837 -11.400874 -16.817264 -3.681577 10.316232 -7.342982 4.886148 16.808663 -6.174694 -6.730273 4.185016 -1.065741 -1.807630 3.893664 4.136845 18.995736 -12.273203 4.313208 1.815913 2.537550 8.606329 17.585590 -6.866793 -11.857716 11.161872 -4.818750 -4.770650 15.785989 -0.217330 0.496470 4.541278 2.545014 1.564485 -4.673236 11.817941 -12.614150 9.597528 -8.660173 14.682173 -6.879380 0.119461 2.593075 -11.255254 -6.360256 -10.278945 3.224298 -2.887671 11.539073 -6.983780 -8.121180 -2.275220 -5.536743 0.019587 16.370298 -10.870301 -2.660347 -0.571666 -5.802960 8.401759 1.140896 -5.366023 -3.749975 -7.807156 3.367652 5.790085 1.287030 -13.724043 -7.927919 -4.516438 -4.851482 -5.075615 1.775473 9.687332 -8.325558 1.438331 8.773916 -0.839080 -4.659562 -3.218251 -7.694500 6.116827 1.343001 4.163384 2.073239 18.251542 7.912842 9.555249 -1.469769 2.695499 -2.049681 -5.820149 -17.228855 7.045404 -0.235847 4.859416 6.250169 5.572735 2.284429 6.220724 6.446824 -5.378433 4.452398 10.557192 2.869339 10.447852 -5.746427 -0.869783 7.075114 -2.344042 9.306750 7.762686 2.687215 -13.211866 4.093216 -9.813919 -12.705877 0.905817 -1.492418 0.539710 -4.047954 6.877612 12.085828 -1.146873 -5.421099 20.000669 -2.017230 -22.923876 8.141572 4.945260 7.018080 14.198559 -5.690464 12.603882 6.804282 12.315506 3.986651 7.772470 8.093112 -14.052521 2.931838 1.636200 5.734852 10.614468 -3.122564 -29.563100 1.322790 2.347377 12.719419 -2.275388 15.144746 -9.064481 10.935632 0.509672 1.166104 4.469964 -2.885930 9.000338 -1.063791 0.954550 -18.689293 8.674838 +PE-benchmarks/aho-corasick-algorithm.cpp__main = 1.180732 -4.787627 2.544808 -8.594197 -5.313153 -1.588778 -0.003777 -0.476370 -2.896414 4.796279 1.309277 -7.692181 -10.147604 7.216908 1.675442 -9.382609 3.071137 -3.029688 2.361278 -0.170740 -1.920742 3.253000 0.734026 -3.972382 3.817537 0.047434 -5.755963 7.237139 13.858840 -2.616213 1.484106 -1.737472 0.977207 10.128738 0.020795 -4.078466 -0.252527 16.641784 -2.660761 8.387839 -6.192651 -6.241609 14.530298 -2.003222 -2.497349 -6.477223 -2.803686 8.560430 -13.328454 -4.718602 1.924855 3.277213 3.398924 -8.183391 -5.516241 9.239189 -16.276440 8.023204 4.644156 -1.464384 -2.280361 1.124618 -4.120371 2.718617 -2.707094 -7.191042 -1.923344 -5.012942 -7.238378 -2.953741 -3.759951 0.318129 12.450935 3.212317 -2.207364 5.096382 2.859886 -2.417626 6.292796 -6.201363 -9.613609 -3.362676 -3.341486 -5.448984 11.827453 -0.876777 4.738090 -12.753459 3.610844 -13.993350 5.652047 -10.481068 3.175196 14.120019 -8.959467 8.759067 1.804311 -0.679144 4.189052 -0.928141 10.283575 3.274763 3.135952 6.979337 5.296123 5.105203 -4.698144 -5.053801 -6.102272 -4.919653 -1.439736 -4.022049 -13.347266 6.633962 -2.875860 4.811643 5.813203 0.515658 -5.048383 4.022621 -6.323533 0.595760 1.160712 -2.470830 2.153983 8.272523 -1.676554 -3.149291 -2.295158 11.165854 -0.652239 6.315963 5.311830 8.553045 1.705785 -6.659332 -3.593652 2.872256 1.608216 -5.664759 -8.669828 -11.401349 0.152330 -2.221925 -4.803972 9.775291 16.593592 -2.058542 -5.582825 11.254881 -4.284442 6.285700 6.895774 1.071146 10.736733 -2.232279 -6.687495 -1.982423 -4.420907 2.680639 5.884004 1.301312 -4.633263 6.374592 -2.011371 0.527031 0.783554 1.719468 -2.668678 -4.035465 -1.077093 -7.731965 -10.057861 9.497072 -3.748815 8.062927 1.688078 14.114577 4.812140 -8.557143 7.376164 -1.465811 -1.436467 -5.404195 -2.856056 2.774320 -2.576466 -8.247573 -6.446325 -6.481215 3.570322 -6.685797 7.014703 2.319756 2.340897 5.152771 2.403990 8.983879 3.865814 -4.019225 0.692330 -11.521172 2.994588 3.315557 -3.316319 -9.274641 -0.841625 -0.387312 -0.857754 9.763368 -0.567745 6.884275 -6.106761 -4.110887 3.418160 2.465645 1.456929 1.298972 -12.926435 2.422856 5.334899 3.173409 8.688579 11.699282 7.589445 5.376743 -1.097226 9.623704 -2.865308 4.493402 -4.558956 -2.958825 -1.717301 3.564596 5.357699 4.289325 5.938921 5.370791 9.528346 7.538852 -5.964037 9.094275 1.035913 9.191496 0.079878 -6.904757 4.842178 0.202007 8.887491 10.000414 -4.363957 -3.371477 8.123963 -0.556782 -1.865715 -8.404073 1.003400 -2.459728 1.911943 6.800343 1.002057 0.406946 0.116917 7.577213 -1.757701 -16.176424 10.639466 4.902689 6.733735 3.676765 1.788714 2.247290 3.835909 -7.998099 4.258516 7.839808 3.223123 -8.316334 3.837181 3.207717 7.170941 2.095877 7.981751 -11.748106 -5.087324 1.825415 5.728810 4.566679 5.859021 -4.013261 -8.843427 4.180681 -2.023017 -0.966992 -4.706715 -1.206719 -5.641819 1.788554 -2.109353 -3.001078 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 9.401359 -2.044466 5.170889 -5.771445 -2.187595 -1.422141 7.361975 -10.080394 -5.754480 21.062138 2.652740 -9.275251 -2.107992 10.285866 -0.512443 -3.027956 4.119372 1.084065 -1.225273 1.339355 -6.514231 2.775888 -3.749686 -11.042362 5.403561 0.151398 5.212321 9.443952 -4.307381 6.876526 -0.884353 -6.556744 4.467738 19.577620 6.507074 -3.981253 -5.539112 22.838215 -20.681971 21.053408 -12.374117 -14.285075 24.689115 -2.721299 0.555288 -9.151376 -4.360255 13.351669 -2.185298 -15.683791 -1.778257 -1.118247 5.902129 -15.043320 -8.554695 14.766060 -17.467116 1.123011 9.878477 -10.576059 -17.910523 -4.588779 3.189863 4.597897 -17.466481 -12.903819 -0.034412 -4.976380 -2.835980 1.066933 -16.503443 -13.503104 12.116232 2.590989 -4.406039 2.228911 -5.542549 -7.109668 8.653329 2.169627 -11.196499 -8.899036 -2.481361 -9.950940 8.175637 6.663379 14.396152 -24.931564 7.988282 -25.227397 8.447213 -13.602396 10.644344 18.808108 -8.147251 13.144834 2.811438 16.422615 0.298314 -1.522740 10.673821 7.737556 3.379217 2.533009 13.204832 16.389922 -14.332343 -19.366891 -11.817517 -6.574839 6.889173 -5.340015 -17.283251 8.350654 -11.914836 3.500616 0.111759 0.320748 -6.688333 17.086302 -22.816759 3.994105 4.924420 -4.125030 10.476762 11.405859 -0.691437 1.735767 -2.978284 9.436943 1.189978 3.786570 1.158449 14.461191 -12.402226 -6.599977 -2.547534 5.118239 8.614880 -12.671117 -16.872425 -27.888285 -4.005954 9.324732 -9.137289 13.109564 25.411539 -6.535121 -9.400368 9.997079 -4.589892 0.703770 9.210151 4.471290 24.214889 -13.507532 1.067318 0.162310 -0.491067 7.938293 17.909463 -5.740210 -13.661936 14.100453 -6.365845 -6.088185 20.362412 3.215594 -1.688403 -0.634010 1.973355 -2.915270 -9.715817 19.773898 -19.558777 10.465639 -10.356384 22.727495 -5.565124 -2.442709 5.376693 -17.613521 -6.069148 -17.594475 -1.001352 -2.426733 13.606535 -13.415358 -10.735116 -3.005225 -3.390188 -2.965118 20.939117 -10.902343 -2.360243 0.678467 -3.742202 16.584745 4.693451 -7.672532 -1.927263 -13.855445 4.522697 8.785332 -2.129835 -19.853489 -8.261225 -6.499573 -6.200732 -0.882599 0.981032 11.322615 -14.911358 -1.346907 10.048160 0.743858 -3.463245 -1.446577 -19.075845 7.123373 3.020128 6.068188 9.676630 23.611750 9.672040 12.417292 0.247563 5.213964 -3.527688 -4.275878 -21.647534 6.716207 -0.028786 7.565778 8.703921 9.204239 6.661397 7.666918 6.336382 -1.100141 1.602413 16.053503 6.887023 15.136640 -4.452693 -3.960489 8.536584 -1.138538 13.805268 12.232209 -4.032107 -12.340195 7.542410 -10.173542 -14.324995 -0.684602 -0.575901 -2.024377 -2.876506 6.975306 10.708668 -0.146430 -4.935649 26.026450 -4.481032 -32.213785 10.547246 6.701074 10.353111 17.548182 -4.769385 14.745380 6.646143 8.264249 9.375945 9.910370 10.889954 -17.262284 6.540296 2.448684 8.430871 14.763821 1.208188 -34.794512 1.632300 1.908608 16.832658 1.071747 17.590704 -11.406096 8.631172 1.374665 -1.944022 5.241628 -4.802657 11.570744 -0.166382 1.941540 -24.142124 4.985187 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.116478 -0.577837 0.528011 -1.092302 -0.960920 0.338774 -0.183237 -0.662429 -0.149765 0.054952 0.340614 -0.128190 -0.138349 1.112092 0.002607 -0.889446 -0.039759 -0.248251 0.059966 0.060005 -0.138414 0.669159 -0.405552 0.051545 0.217653 -0.399990 -0.108650 0.644995 0.160167 -0.203149 -0.183859 -0.633717 -0.543234 1.316339 0.452253 0.292046 0.035539 2.237654 -0.246424 1.258652 -0.885132 -1.068031 0.952642 -0.329476 -0.287727 -0.518415 -0.786603 0.516675 -0.537953 -0.236000 0.670379 -0.102408 0.338682 -0.209890 0.260422 0.231808 -1.230126 0.195614 0.495151 -0.519196 -0.405099 -0.456822 -0.410746 0.106450 -1.013427 -0.595246 0.378258 0.431532 -0.197057 -0.204229 -0.091157 -0.975563 1.661793 0.666060 -0.371872 0.288796 0.615466 -0.878375 0.847935 0.004271 -1.588046 -0.436592 -0.335694 -1.094880 1.322361 -0.145476 1.114056 -1.793507 0.936825 -1.979263 0.441534 -0.972770 0.543099 1.491758 -1.049308 0.745811 0.895786 1.388378 0.474923 -0.171521 1.102800 0.548266 -0.212257 0.898049 1.067287 0.351918 -0.508513 -0.592161 -0.963453 -1.000767 0.241995 -0.944655 -1.901542 0.511516 0.037126 0.191478 -0.457378 0.504811 -0.226861 1.059002 -1.398303 0.403935 0.426904 -0.331475 0.177622 0.740792 -0.360191 -0.031426 -0.537775 1.096914 -1.000398 0.689025 -0.290258 0.878104 -0.339008 0.096472 -1.028514 0.172960 0.427563 -0.857134 -1.205044 -1.119140 -0.433875 0.824293 -0.496142 1.601215 2.231762 -1.155710 -1.075484 1.438138 0.390989 0.175568 0.819314 0.445831 0.823126 -0.092879 -0.728150 -0.953164 -0.710154 -0.050103 -0.170663 0.449904 -0.239266 1.022830 -0.200012 -0.502201 2.425439 -0.405787 -0.942268 -0.364193 0.238070 -0.853705 -0.908405 1.365349 -0.221373 1.008963 0.184272 1.617359 -0.210970 -0.525428 0.273796 -0.881587 -0.137576 -1.167109 -0.048951 -0.115940 0.537149 -0.839853 -0.792816 -0.368118 -0.545564 -0.617631 0.444345 0.523345 0.317784 0.579018 0.427136 1.000214 1.644576 0.352346 -0.319554 -0.992280 0.688797 0.624135 -0.400276 -0.619550 -0.189127 -0.154306 -0.236168 0.053413 0.161003 0.708835 -0.943290 -0.224661 -0.283749 0.197226 0.313850 0.648742 -2.095091 0.272282 0.298292 0.617993 0.749828 0.716733 1.357952 1.261320 0.886081 0.445030 -0.106976 0.306330 -0.420585 -0.059352 0.365352 0.752275 0.585314 1.328367 1.080831 0.639267 0.950258 1.104129 0.752733 1.107339 0.148373 2.058075 0.105299 -0.499580 -0.071958 0.465699 1.161119 1.742764 -0.170885 0.679097 0.706047 0.384927 -0.623582 -1.191175 0.431075 -0.298719 0.193454 0.366289 0.398695 0.015957 -0.387319 1.416842 -0.207288 -1.793131 0.608230 0.423217 0.889197 0.719072 0.280588 0.345893 0.456628 -0.850623 1.346528 1.015535 0.604811 -1.095395 0.105702 0.191405 0.540234 0.493484 1.142204 -0.766465 0.641084 0.232435 0.986349 0.134091 0.593733 -0.738102 -0.443710 0.649647 -0.726814 -0.146092 0.477196 0.354755 -0.499021 0.297766 -1.084995 -1.106239 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/shortest-common-supersequence.cpp__main = 1.558185 -0.070665 0.503449 -1.519016 -0.977045 0.604778 0.184626 -2.333554 -1.248651 2.274061 0.854640 -1.723192 -0.591932 1.450271 -0.280395 -1.610179 0.721921 0.598376 -0.240907 -0.956636 -1.323002 0.053155 -0.864687 -2.089519 0.347487 -0.719052 0.821362 1.236609 0.150708 0.958688 -0.765527 -1.090369 0.622859 4.014393 1.863876 -0.614704 -0.874548 4.592136 -0.939000 2.553274 -2.518321 -2.632293 3.995907 -0.386226 0.027765 -1.243276 -0.834164 2.012883 -0.961711 -1.174837 -0.248837 -1.085837 0.950756 -2.133659 -1.655582 2.669835 -2.774006 1.406792 1.549074 -1.992484 -2.882140 -1.170220 0.959331 0.929855 -2.109148 -2.056888 0.535922 0.754928 -0.729073 0.269492 -3.272944 -3.124804 2.752121 1.140341 -0.938380 -0.076538 -1.336178 -1.032159 1.039815 0.730420 -2.803838 -1.468027 0.299365 -0.978042 1.681182 1.336428 2.950722 -5.062815 1.132106 -5.544863 1.463512 -2.060759 2.733871 3.467082 -1.718238 1.959285 0.834727 1.613832 0.101443 0.025573 2.286223 0.160010 0.075064 0.322289 2.241377 2.218300 -1.411009 -2.651733 -1.017373 -1.414710 0.513852 -0.207924 -3.256276 1.661912 -3.222420 0.877906 -0.948831 0.898825 -1.279236 1.823159 -3.491985 -1.567188 0.552631 -1.028192 3.266552 1.939171 -0.100238 1.399126 -0.687433 2.026876 0.069245 0.301491 -0.862399 2.563126 -0.944190 -2.007923 -2.761954 1.294014 2.442596 -2.682612 -3.841916 -3.657638 -1.362200 1.474943 -1.713740 3.094544 5.122724 -1.885064 -2.012496 2.278886 -0.866635 0.853107 3.242724 0.948662 4.908236 -2.927430 1.126069 0.278135 0.280964 0.846576 0.975176 -1.546841 -1.998306 2.440478 -0.641855 0.961648 3.090540 -0.187430 -0.926211 -0.074512 0.223739 -0.275579 -2.247959 3.365523 -1.688729 2.129895 -0.490106 4.617823 -2.050708 -1.600142 1.176177 -1.917742 -1.330985 -1.511945 0.504647 -1.051278 2.922066 -2.409089 -2.463981 0.179195 -0.613501 -0.652475 3.179111 1.420400 -0.414061 0.553570 -0.859825 2.494787 1.993955 -0.901595 -0.427380 -2.618645 0.720753 2.306373 -0.214833 -2.650955 -1.444341 -1.336833 -1.010755 -0.019348 0.423868 2.195924 -2.350836 -0.412985 1.035171 0.227852 1.144970 0.397770 -2.678915 1.916824 0.148686 0.149610 1.120985 4.255053 2.181275 2.872463 0.604936 0.157690 -0.114152 -0.919204 -1.792624 0.522047 0.702027 2.173573 1.629410 1.611473 1.103610 1.585987 1.822206 -0.236246 0.714941 2.725480 0.641437 3.971545 -1.580757 0.085287 0.710196 -1.009077 2.976486 3.984427 -1.064387 -2.256989 1.378494 -1.393972 -1.777104 -2.418334 -0.130347 -0.244399 -0.771127 1.071709 2.324164 0.150824 -1.867957 5.213644 -0.359082 -5.637517 3.058370 1.373256 1.534612 2.960705 -1.301913 1.628924 1.696840 0.512030 1.455934 2.641241 2.402168 -3.115238 1.063869 0.028677 2.104302 0.746076 -0.002799 -4.289187 0.966688 1.550253 3.269195 1.215318 2.166497 -2.261385 0.578151 0.279071 -0.632050 0.628260 -0.189249 2.383322 -0.681695 0.533134 -2.911766 0.132951 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/boyer-moore-algorithm.cpp__main = 1.347513 -1.611968 1.477551 -5.066997 -3.468513 -1.471363 -0.243571 0.212851 -1.690488 3.599530 1.180860 -5.403727 -6.152869 5.283038 0.389205 -4.778188 1.740552 -2.951860 1.535445 -0.281114 -0.503414 1.885626 1.015365 -2.368583 1.790654 0.891366 -4.466771 3.400170 8.600428 -2.262247 0.551859 -0.342109 1.328732 4.970348 -0.857674 -4.182406 -0.737429 8.702052 -2.248695 3.473421 -4.371982 -3.273323 8.609662 -1.193061 -0.934322 -5.845370 -2.325775 5.362329 -5.770075 -2.913050 0.293167 2.609430 1.314166 -5.179629 -4.254352 5.495010 -10.233956 5.831333 2.971164 -0.408322 -0.760697 1.542069 -1.574910 1.650046 -0.425294 -3.831826 -1.481535 -3.729083 -4.488618 -1.794812 -2.315720 0.692436 6.169871 1.437573 -0.854074 3.153283 1.435889 -1.482363 4.088128 -5.592083 -4.767045 -1.264720 -2.093183 -2.289445 6.155927 -0.588766 1.970167 -6.823581 1.953496 -7.536628 3.141516 -6.665729 0.919693 7.456800 -4.236882 4.444936 0.796146 -2.174472 4.161484 0.481771 6.029036 2.455249 3.139688 3.730999 2.646595 3.733801 -2.150630 -2.012210 -3.105152 -2.997311 -1.333656 -1.280252 -6.999542 4.242061 -1.381602 0.950062 4.113068 -0.874938 -2.241904 2.560623 -2.695294 -0.491893 0.866230 -1.179256 0.234302 5.530417 -1.096402 -2.226369 -2.078036 6.059917 0.198467 4.094289 4.763671 4.414196 0.440636 -6.847558 -1.731996 1.811216 -0.020290 -3.452876 -4.213489 -7.248345 1.421837 -2.910463 -2.908495 4.431696 9.105386 -0.480430 -3.212052 6.338214 -0.622644 2.771266 4.285974 -0.085026 7.836744 -1.149477 -4.138673 -0.186346 -2.750986 1.651462 3.457306 0.751770 -2.115642 2.597986 -0.927739 -2.307956 -0.823550 1.276316 -1.090679 -0.288337 -0.511996 -4.483239 -6.159084 4.551913 -0.472339 4.598990 1.262503 7.733539 3.797121 -5.081875 5.010620 -0.336496 -0.468855 -1.636249 -1.644499 2.054055 -1.662213 -4.058338 -3.119709 -4.024079 1.919525 -4.088101 4.326060 -0.807554 2.180434 3.639160 1.178108 3.415245 1.518786 -2.871042 1.771637 -6.919153 1.302133 2.260281 -1.232475 -7.063671 -0.216540 -0.995560 0.348610 6.005242 -0.826763 4.185309 -2.489096 -2.931724 3.013142 0.908884 0.864308 -0.018295 -4.791796 1.010481 1.690417 3.031107 4.021923 7.361556 3.618067 2.928514 -1.183959 5.929078 -1.780312 2.592194 -1.824937 -2.216469 -1.843807 0.745948 3.014934 1.757533 2.800951 3.305477 5.798266 3.570434 -5.006991 5.221260 -0.153383 4.326341 -0.672819 -3.935991 2.522136 -0.386578 5.182791 6.142910 -1.629640 -3.712486 4.245214 -1.085339 -1.045715 -4.224737 0.323995 -1.012758 0.363247 4.237129 1.270444 0.706999 0.463449 3.442155 -0.569085 -9.373849 6.766449 2.423461 3.442926 2.194511 1.234836 1.047484 2.214049 -3.807120 0.604252 4.656825 2.001278 -4.855614 0.989974 2.080852 4.919235 0.613164 4.825670 -9.130071 -2.318152 1.900823 2.374217 1.757657 3.603107 -2.684172 -5.943756 2.635525 0.574432 -1.137997 -3.016511 -0.944701 -4.263966 0.425954 0.019810 -0.260034 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.455486 0.309742 2.368479 -3.984443 -2.314207 -1.074935 4.054576 -4.085959 -2.895698 9.643846 1.366353 -4.504454 -4.597035 4.992698 -0.591645 -3.068164 1.609586 -1.546300 -0.795439 -1.976588 -1.989605 1.422416 -1.124101 -4.453019 1.386352 0.036403 1.631056 4.119660 0.287962 1.990164 -0.440270 -2.529204 2.683207 7.790024 2.143882 -2.049005 -4.465338 9.877992 -7.279887 7.624536 -9.193732 -8.142051 12.492814 -1.273860 -0.121965 -9.875772 -1.605863 5.812807 -1.382232 -5.324350 -1.627938 -0.093759 1.878917 -6.716443 -4.359521 6.633378 -8.371358 3.654252 4.361286 -5.865328 -8.203180 -1.392747 3.244578 2.754865 -6.350889 -4.640595 0.005154 -3.574435 -2.630165 1.358309 -7.234631 -5.719106 4.338922 1.797346 -2.098100 1.139161 -2.753869 -3.216768 3.894315 -0.726496 -4.476109 -3.442042 -0.142895 -2.699744 2.776725 2.766028 5.386112 -11.739381 1.415631 -11.793678 3.323231 -6.251282 3.959972 7.181206 -2.391078 6.072514 0.587126 1.943369 1.615972 -1.552358 4.088174 4.026701 4.953812 1.173947 5.925905 7.856265 -5.157779 -9.197708 -4.340498 -3.309177 1.764283 -2.270587 -9.403217 3.633835 -6.001859 -1.242067 0.772952 -0.669848 -2.516169 7.265262 -9.386490 -0.364264 2.286652 -1.737203 4.359143 6.073478 -0.120488 1.039489 -1.290818 4.322544 0.988025 3.248965 1.428048 5.808974 -4.366240 -6.251941 -2.632763 2.137400 2.789837 -4.913584 -6.586922 -11.908543 -2.215077 2.553701 -3.296831 3.790608 11.060321 -2.288674 -6.648025 4.583577 -0.944897 0.083505 4.508545 1.404116 12.992838 -5.825728 0.574406 0.323565 0.086106 3.393677 11.191951 -2.471122 -5.411337 5.298513 -3.820746 -4.779624 4.570158 0.395338 -0.570008 0.946360 0.389155 -2.460040 -5.751266 6.983975 -7.229247 7.183706 -4.992810 9.359797 -3.122088 -2.558545 2.823461 -9.055627 -2.750130 -5.100031 -0.269992 -0.734922 6.215839 -5.654388 -4.227591 -3.225248 -2.095986 -1.595837 10.333569 -8.231793 -0.689695 0.788337 -1.054485 6.749273 2.308804 -3.935778 -0.319046 -6.043907 2.075656 5.708394 1.737466 -10.271618 -3.126922 -3.216189 -2.406998 0.452137 0.043587 5.035325 -3.701935 -0.997454 5.259308 -0.755749 -0.843799 -1.263068 -7.665654 2.865032 0.089148 3.441814 2.266688 11.945898 4.035440 4.986515 -0.426128 2.557254 -0.983446 -3.061224 -7.975111 1.341957 0.526960 0.906246 3.576453 4.038726 2.612566 3.373486 4.877841 -0.076063 -2.280229 6.520020 1.667994 6.638530 -4.137611 -2.035285 3.077114 -0.961223 5.510845 7.711962 1.104499 -6.404258 3.674324 -4.271308 -5.918769 -3.201863 -1.311612 -0.837517 -1.309839 5.579708 7.045835 -0.832498 -1.512167 12.117685 -0.900832 -15.417932 6.104992 2.691307 3.967256 7.425956 -2.623750 4.300216 4.759907 3.659130 2.342555 4.468037 4.558263 -8.472596 1.189252 0.962475 4.744605 5.897116 0.150729 -18.012522 0.427412 2.362807 8.788809 0.848581 10.280019 -4.930933 3.102863 1.371355 0.574405 1.098237 -1.938121 5.245237 -1.282027 -1.035711 -10.372423 2.541134 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 0.922604 0.279846 1.215092 -0.777009 -0.078686 -0.735514 3.165638 -0.752948 -0.839872 2.785301 0.016946 -1.066723 -1.614665 0.869084 -0.007068 -0.403731 0.510772 -0.972091 -0.756776 -0.381569 -1.020084 0.471805 -0.310308 -1.537089 1.284967 -0.032941 0.784548 2.351316 -0.963508 0.545137 0.731071 -0.785055 0.981339 2.552273 0.340581 -0.168699 -0.995277 3.099362 -3.598041 2.799130 -2.072277 -2.332996 4.238893 -0.450477 -0.083161 -2.524518 -0.104078 2.019255 -0.687124 -2.028330 -0.445302 0.378469 0.557440 -2.608517 -1.095483 2.734502 -3.013702 0.349994 1.174128 -1.962765 -2.911585 -0.495090 0.214304 0.228261 -2.015454 -1.855921 -0.280886 -1.770795 -0.776653 0.743578 -2.034153 -1.117399 0.996991 0.115973 -0.078338 0.810974 -0.885453 -0.492908 1.228762 -0.041642 -0.829572 -1.528911 0.211997 -1.038005 0.836376 0.897487 1.139878 -3.276421 -0.257971 -2.683796 1.233756 -2.110727 1.262888 2.175763 -0.077019 2.959509 -0.118746 0.228269 -0.739715 -0.643375 1.163546 0.610909 2.209438 0.670516 1.515116 2.158508 -2.384420 -3.224515 -2.399282 -0.622285 1.127979 -0.633444 -1.937143 0.953831 -1.511405 -0.302452 0.840661 -0.483053 -0.849117 2.348206 -2.972115 1.877059 1.142985 -0.557340 1.071257 1.529756 0.133213 -0.157129 -0.180201 1.131378 0.484426 1.422606 0.118334 1.981215 -0.709968 -1.524726 0.447977 0.160499 0.626426 -1.231023 -1.973548 -3.542953 -0.550706 1.203211 -1.312234 0.665393 3.430018 -0.575513 -1.641854 1.202443 -0.070313 0.762601 0.068903 0.734538 2.888543 -1.669760 0.011578 0.080352 0.196762 1.919949 4.285150 -0.762380 -2.302751 2.064905 -0.602944 -1.148444 1.813868 0.145010 0.264458 0.663841 0.176296 -0.667358 -1.528237 2.627138 -1.613745 2.422949 -1.771682 2.803606 -1.045415 -0.489448 0.517268 -2.630314 -0.519642 -2.926083 -0.316315 -0.106007 1.074626 -1.815287 -1.499961 -1.517973 -0.276811 -0.280027 2.821562 -3.366007 -0.421900 -0.512353 -0.378239 1.607697 -0.007032 -1.519343 -0.307070 -2.197576 0.588192 0.661175 0.837095 -3.451861 -0.778831 -0.141889 -1.112253 0.628221 0.195677 1.320263 -1.055082 0.284601 2.241341 -0.362807 -1.506008 -0.710024 -2.625147 0.544353 0.603402 0.568198 0.939216 3.137368 2.088125 0.972809 -0.633845 1.438057 -0.508936 -0.716472 -3.232708 0.835226 -0.372900 0.714446 1.205187 1.094582 0.954660 0.678400 1.271743 0.198677 -0.695929 2.023545 1.154216 1.916677 -1.037374 -0.975798 1.584010 0.150765 1.460119 0.684810 0.566225 -2.258586 1.408778 -0.970823 -1.605128 0.023773 -0.544162 -0.483642 -0.189591 2.588333 1.486512 -0.978670 0.041525 3.719589 -0.777836 -4.381641 1.273250 0.998129 1.495954 1.209184 -0.602997 1.608074 1.896121 0.920629 0.637479 0.813635 1.303722 -2.449520 0.554076 0.383659 1.064762 2.210541 -0.187689 -6.606343 -1.347243 -0.133964 2.515163 -0.112296 3.545857 -1.110192 1.039960 -0.009486 0.163852 0.615986 -0.360420 1.423218 -0.071417 0.264267 -3.808127 1.372103 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.442195 -0.128971 0.244726 -0.850629 -0.485296 0.116539 0.097329 -0.511603 -0.229752 0.167557 0.243631 -0.378331 -0.623785 0.706070 -0.114607 -0.735356 0.159035 -0.613228 -0.133033 0.042382 -0.352359 0.270366 -0.270679 -0.397107 0.295323 -0.077695 -0.022391 0.524881 0.558814 -0.403572 -0.446274 -0.329465 -0.048829 1.273735 0.402638 -0.188115 0.080616 1.742632 -0.085837 0.698179 -0.783509 -0.754283 1.121596 -0.260950 -0.265376 -0.731924 -0.250854 0.690673 -0.816642 -0.121260 0.353035 -0.158562 0.061845 -0.582002 -0.149698 0.880686 -1.411296 0.888867 0.510947 0.035958 -0.404402 -0.527287 -0.069916 -0.064472 -0.262356 -0.732241 0.264943 0.045172 -0.731919 0.031908 -0.709945 -0.708048 1.379080 0.482770 -0.329294 0.207715 -0.065436 -0.648803 0.497425 -0.522607 -0.978321 -0.331137 0.074249 -0.183526 1.154838 0.013348 0.329726 -1.585491 0.172363 -1.668648 0.253770 -0.999613 0.698869 1.239160 -0.875688 0.654699 0.229782 0.291721 0.144078 0.021825 0.972656 0.173331 0.132110 0.253317 0.676870 0.315697 -0.338403 -0.556035 -0.344993 -0.557577 -0.176001 -0.117923 -1.493749 0.488198 -0.662392 0.366644 -0.112825 0.352686 -0.410292 0.379361 -1.113725 -0.380321 0.089039 -0.304658 0.827010 0.885355 -0.190856 0.111477 -0.417638 0.922900 -0.053419 0.428155 -0.403147 0.717009 0.070566 -0.876948 -1.026347 0.045410 0.625787 -0.694462 -1.327685 -0.996509 -0.357126 -0.042804 -0.509523 1.110317 1.661921 -0.519067 -0.748461 1.147488 -0.158813 0.712905 1.064241 0.206888 1.170468 -0.582704 0.045507 -0.031175 -0.124299 -0.069074 -0.435304 -0.204868 -0.578215 0.480617 -0.091877 0.019769 0.772796 0.131992 -0.398259 -0.090152 -0.145918 -0.587467 -1.069174 1.277523 -0.077612 0.935391 0.218218 1.556049 -0.442243 -0.751402 0.510003 -0.111353 0.081177 -0.689304 -0.200075 -0.029440 0.459148 -0.870437 -0.800039 -0.060993 0.128362 -0.458788 0.839016 0.689083 -0.044375 0.148626 0.185351 0.637903 0.967956 -0.406050 0.235735 -1.005393 0.475465 0.615778 -0.156050 -0.900284 -0.077766 -0.163996 -0.317253 0.607965 0.084358 0.503786 -0.499922 -0.433125 0.340661 0.215100 0.433779 0.306364 -1.093318 0.326031 0.017031 -0.076065 0.588839 1.076146 0.865762 0.710757 0.270515 0.062165 -0.069602 0.051841 -0.289582 -0.187075 0.026775 0.735535 0.532000 0.695337 0.653982 0.348547 0.647149 0.579700 -0.135768 0.963441 0.512256 1.389805 -0.314159 -0.378726 0.162751 -0.243238 0.996121 1.305136 -0.754465 -0.204763 0.631300 0.256515 -0.237308 -0.942530 -0.055641 -0.293377 -0.179563 0.409945 0.157931 -0.091554 -0.250202 1.528941 -0.302767 -1.560169 0.802856 0.419462 0.635971 0.373745 -0.041438 0.188746 0.560808 -0.671444 0.626982 0.638861 0.668262 -0.663059 0.022844 0.090194 0.635049 -0.131176 0.385778 -0.802456 0.104852 0.421829 1.103844 0.709289 0.255566 -0.425734 -0.358411 0.175636 -0.236167 0.125669 0.018552 0.600680 -0.597378 0.047325 -0.663198 -0.397415 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 0.817259 -0.124011 0.798615 -1.039498 -0.174134 -0.323989 1.858779 -0.920937 -0.720366 2.384387 -0.096109 -0.937375 -1.479698 0.974504 0.062277 -0.781475 0.303347 -0.973754 -0.476720 -0.160923 -0.867923 0.476592 -0.381027 -1.242771 0.830797 -0.085214 0.701909 1.581944 -0.375346 0.399628 0.370424 -0.870766 0.490674 2.366592 0.622273 0.150875 -0.892780 2.996471 -2.596614 2.872373 -2.079009 -2.405910 3.355500 -0.386378 -0.310642 -1.976853 0.118489 1.750838 -0.895615 -1.631289 -0.240618 0.177146 0.422514 -2.029967 -0.921717 2.082876 -2.576457 0.554127 0.975869 -1.506810 -2.347210 -0.591963 0.312212 0.581940 -1.974895 -1.604620 -0.122929 -1.186148 -1.041077 0.459168 -1.816946 -1.043712 1.124370 0.548831 -0.395588 0.468922 -0.729254 -0.294745 1.044325 -0.380917 -1.105196 -1.230360 -0.031982 -1.191430 0.968857 0.947984 1.411400 -3.074835 0.472264 -2.681930 1.012407 -1.773799 1.184264 2.091293 -0.108426 2.310242 0.031490 0.816445 -0.263192 -0.785199 1.029474 0.742678 1.451173 0.708635 1.558472 1.788092 -1.931057 -2.643355 -1.757717 -0.719960 0.812774 -0.830708 -2.052474 0.932315 -1.324989 0.192143 0.489906 0.033713 -1.089999 1.564759 -3.219315 0.841910 0.558662 -0.497377 1.325218 1.389824 -0.007763 0.121559 -0.069685 1.178996 0.272845 1.263764 0.078601 1.807058 -0.832354 -0.529933 -0.119115 0.432567 0.907432 -1.148715 -1.907358 -3.204399 -0.806899 1.318431 -1.143880 1.651600 3.308223 -0.653282 -1.551714 1.278237 -0.901615 0.739532 0.490546 0.571362 2.564869 -1.369578 -0.035747 0.051127 0.105416 1.335727 3.348713 -0.528489 -1.916891 1.869426 -0.809124 -0.213311 1.141065 0.220838 -0.108224 -0.530859 0.039215 -0.831149 -1.465360 2.342858 -2.505497 1.994934 -1.379221 2.536560 -0.946619 -0.331884 0.603004 -2.868053 -0.598293 -2.601602 -0.348582 -0.432649 1.226826 -1.947184 -1.275158 -1.099576 -0.405873 -0.499204 2.452109 -2.483079 -0.404568 -0.182616 -0.125929 2.625957 0.452459 -1.109217 -0.465003 -2.008706 0.712910 0.845631 0.492349 -2.481700 -0.849038 -0.262421 -0.992807 0.671582 0.132998 1.152317 -1.255756 0.150582 1.520732 0.062578 -0.740644 -0.242228 -2.806233 0.567685 0.800368 0.711543 1.077977 2.785106 1.356476 1.122708 -0.187443 1.004881 -0.430131 -0.645380 -2.537099 0.520853 -0.031701 0.583683 1.118951 1.216681 0.937858 0.735797 1.439545 0.625793 -0.702696 1.828670 0.675088 1.826284 -0.924776 -0.985945 1.195226 0.088670 1.317914 1.167073 -0.333567 -1.472211 1.380888 -0.941020 -1.519932 -0.211517 -0.291267 -0.603605 0.026556 1.864394 1.392495 -0.531490 -0.195841 3.341303 -0.640556 -4.057107 1.228649 0.943478 1.397311 1.486470 -0.610630 1.348493 1.377956 0.359018 0.813295 1.040655 0.967471 -2.082189 0.806427 0.324318 0.957260 1.899345 -0.048459 -4.721046 -0.809315 0.071596 2.517121 0.303341 2.733477 -1.076414 0.804094 0.238646 -0.093962 0.589174 -0.379649 1.376844 0.135723 0.243477 -3.026830 0.678689 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 0.974510 -0.182195 1.025232 -1.674658 -0.431014 -0.424681 2.603798 -1.172794 -0.686833 2.949831 0.292472 -0.974950 -1.180665 0.693509 0.319807 -1.044561 0.791045 -1.014723 -0.603380 0.122821 -0.833067 0.694573 -0.525371 -1.792903 1.152891 -0.184338 0.919513 2.028326 -0.626193 0.438736 0.272619 -1.128685 0.779470 3.150466 0.783448 0.053817 -1.153929 3.129881 -2.073350 2.913065 -2.178405 -2.433660 3.921299 -0.590384 -0.207991 -2.156273 0.489074 1.979350 0.063291 -2.456481 -0.275070 0.021152 1.316681 -2.705055 -1.418127 2.326131 -2.152853 -0.118525 1.416596 -1.891629 -2.693875 -0.788906 0.254319 0.941928 -2.717215 -2.071215 -0.008754 -1.393589 -0.876542 0.514484 -1.950163 -1.721028 2.311196 0.771844 -0.737823 0.615051 -1.002019 -1.652711 1.372685 0.491011 -1.358900 -1.626621 -0.131840 -1.021017 1.302751 0.136467 1.930754 -3.753618 0.358037 -3.299355 1.358929 -1.784979 1.720924 2.683595 -0.635850 2.469477 0.007136 1.593205 -0.566671 -1.073333 1.622313 0.958898 1.879162 0.486347 1.798553 2.033031 -2.304533 -3.393095 -1.805605 -0.882517 1.216740 -1.029376 -2.796934 1.213332 -1.487827 0.030965 0.571437 -0.422466 -1.026749 2.907837 -3.352443 0.479320 1.133053 -0.704710 1.248114 1.536171 0.117693 -0.033092 -0.037541 1.632469 0.435632 1.152263 -0.093255 2.411257 -1.398866 -0.386262 0.480222 0.351125 1.023397 -1.649167 -2.613680 -3.585296 -0.962973 1.521425 -1.370174 1.141794 3.513744 -0.887728 -1.957632 1.555881 -0.329723 -0.059156 0.290807 0.727638 2.398827 -1.980556 0.163126 -0.403742 0.327181 1.693681 4.883088 -0.837607 -2.512039 2.443947 -1.605884 -0.994836 2.111482 0.484398 0.066437 0.369070 -0.300869 -1.199731 -1.679962 2.600391 -2.268271 2.466090 -1.706317 3.421146 -1.259055 -0.577959 0.651796 -2.014772 -0.848300 -3.057913 -0.181639 0.631246 1.477610 -2.136998 -1.789348 -0.812876 -0.317378 -0.402172 3.018341 -3.093439 -0.642268 -0.378720 -0.408013 2.775959 0.479270 -1.519988 -0.780100 -1.531681 1.065482 0.770543 0.448461 -2.126835 -1.443797 -0.502174 -1.290531 0.426839 0.248254 1.809193 -1.412929 0.006574 2.197886 -0.099180 -1.313990 -0.475282 -3.881948 0.845388 1.051031 0.659050 0.732188 3.374538 1.725413 1.478337 -0.452007 0.638962 -0.547790 -0.619939 -3.897623 0.664141 -0.152758 0.700371 1.392053 1.758162 1.239474 0.974452 1.947362 0.802809 -0.045123 2.325631 0.462573 2.026290 -0.658783 -0.946535 1.840932 -0.015586 2.012549 1.522602 0.217216 -1.901697 1.558288 -0.718461 -2.011213 -0.163309 -0.360452 -0.411115 0.324250 1.645987 1.564398 -0.707336 -0.360774 3.974869 -0.661180 -4.461960 1.401249 1.184233 1.926290 1.979258 -0.875061 2.084880 1.436866 0.935123 1.467753 1.090434 1.440415 -2.435323 0.382256 0.487329 0.952759 1.831728 0.216179 -4.809474 -1.341860 -0.163704 2.968839 0.429638 3.430711 -1.370891 1.577828 0.284456 0.147560 0.766127 -0.755816 1.197322 -0.337093 -0.042408 -3.917704 1.378192 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.833056 -0.095744 0.930600 -2.125724 -1.017226 -0.254520 1.633393 -1.389924 -0.787863 2.124239 0.530244 -1.347866 -1.981174 1.682088 -0.158656 -1.394423 0.559155 -1.220527 -0.610238 -0.289619 -1.049753 0.721468 -0.606639 -1.614390 1.030746 -0.370585 0.502307 1.958143 0.716144 -0.193514 -0.260317 -1.083829 0.530859 3.494596 0.957756 -0.246723 -0.693608 4.209717 -1.907782 2.800542 -2.401922 -2.590687 3.948417 -0.600571 -0.264788 -2.456238 -0.270018 2.134497 -1.334498 -1.412609 0.191160 -0.123112 0.781507 -2.402520 -0.914895 2.572516 -3.123234 1.425883 1.468245 -1.296894 -2.118021 -1.188239 -0.087810 0.457532 -2.001703 -2.228482 0.189822 -0.662705 -1.685713 0.322034 -2.190762 -1.778431 2.672971 0.878065 -0.772699 0.678484 -0.704063 -1.598832 1.389889 -0.651543 -2.046236 -1.272263 0.235434 -0.736508 2.122193 0.500259 1.485913 -4.352698 -0.033151 -4.165826 1.061764 -2.417195 1.940896 3.110335 -1.406730 2.455324 0.264062 0.946332 -0.053905 -0.275236 2.152239 0.774404 1.491001 0.723854 2.106781 1.759667 -1.775361 -2.790552 -1.558897 -1.244828 0.363775 -0.669650 -3.247369 1.316047 -1.920153 0.096139 0.087363 0.288231 -1.295084 2.153777 -3.432315 -0.177363 0.803824 -0.832496 1.930784 2.066188 -0.150480 0.189124 -0.507691 2.097304 0.216423 1.342841 -0.606138 2.390143 -0.382974 -1.764231 -1.333677 0.316048 1.406913 -1.843898 -3.295087 -3.344652 -1.182272 0.740369 -1.475636 1.946880 4.351820 -1.176360 -2.062443 2.434032 -0.704432 1.189382 1.661158 0.764071 3.324118 -1.959624 0.259742 -0.142665 -0.071402 1.018451 2.568412 -0.815030 -2.495226 1.840475 -0.772670 -0.700105 1.654883 0.302211 -0.484747 -0.589611 -0.164868 -1.469767 -2.371091 3.266999 -1.994797 2.791504 -0.973356 4.017301 -1.440862 -1.518585 1.158054 -1.353904 -0.214690 -2.558335 -0.162649 0.162131 1.533171 -2.321677 -2.180750 -0.729010 0.003309 -0.845473 2.957419 -1.231581 -0.517333 -0.029727 0.034939 2.280434 1.531525 -1.447360 0.055138 -2.424392 1.279821 1.344894 0.411403 -3.046239 -0.749568 -0.470623 -1.230322 0.952313 0.288179 1.696457 -1.215689 -0.502767 1.635368 0.079456 -0.137964 0.073238 -3.309186 1.074863 0.497654 0.310833 1.255868 3.487799 2.215654 1.753466 0.067113 0.600084 -0.539341 -0.528767 -2.330927 0.475555 0.103509 1.088521 1.530212 2.217784 1.596335 1.099661 2.147433 1.030432 -0.489099 2.673656 0.920581 3.034433 -1.120114 -1.039933 1.236282 -0.339763 2.414801 2.741875 -0.704732 -1.779416 1.812184 -0.161168 -1.430447 -1.258822 -0.389810 -0.655580 -0.190350 1.852925 1.279353 -0.592553 -0.495245 4.420601 -0.858989 -4.733160 2.020121 1.187166 2.004793 1.436067 -0.645216 1.253803 1.746426 -0.371446 1.551244 1.535013 1.572992 -2.356462 -0.124838 0.361756 1.505285 1.370283 0.361540 -4.548077 -0.487893 0.593472 3.298014 1.130264 2.218659 -1.398669 0.237716 0.380256 -0.263718 0.603004 -0.451900 1.592855 -1.280295 0.129587 -2.978359 0.165155 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.501837 -0.150070 0.737828 -1.487119 -0.799387 -0.202849 1.069017 -1.030671 -0.514408 1.146629 0.472549 -0.938922 -0.659535 1.433025 -0.171149 -0.870989 0.367767 -0.407489 -0.451975 -0.117893 -0.430625 0.670871 -0.386345 -0.896428 0.625233 -0.226525 0.324481 1.349305 0.068675 -0.131310 -0.090286 -0.724190 0.305370 2.283282 0.519280 -0.012927 -0.576052 2.769910 -1.286862 2.005987 -1.898505 -1.384426 2.528510 -0.442186 -0.227682 -2.172156 -1.002154 1.279036 -0.454335 -1.093528 -0.021499 -0.077392 0.460750 -1.575452 -0.507496 1.618817 -1.999452 0.507660 1.123984 -1.102812 -1.447741 -0.563677 0.167615 0.154452 -1.660904 -1.430476 0.118350 -0.383322 -0.660296 0.310553 -1.224808 -1.492158 1.803878 0.515070 -0.526635 0.535375 -0.364136 -1.370445 1.094262 -0.100690 -1.360338 -0.971926 0.119317 -0.841630 1.299335 0.043246 1.288902 -2.937099 0.350217 -2.764870 0.741363 -1.737278 1.156498 2.106720 -1.047694 1.597417 0.316673 0.878164 0.134273 0.042188 1.393640 0.721698 0.865486 0.489716 1.603906 1.168377 -1.104396 -1.853362 -1.193965 -1.154737 0.527004 -0.785882 -2.630369 0.896673 -1.015848 -0.109523 -0.165672 0.119368 -0.395087 1.889918 -2.013147 0.405136 0.915682 -0.574300 0.662920 1.540038 -0.147314 -0.026205 -0.747902 1.262605 -0.131202 1.024894 -0.230004 1.539078 -0.808607 -1.281588 -0.676720 0.097037 0.596075 -1.263314 -2.042106 -2.341031 -0.681877 0.709774 -0.995132 1.257943 2.946984 -1.003217 -1.776596 1.621193 0.584922 0.299298 0.945488 0.562072 2.397104 -1.225291 -0.079753 -0.499300 -0.234240 0.807186 1.494986 -0.470042 -1.488942 1.460338 -0.825422 -1.769850 2.632776 -0.057547 -0.364931 0.382269 0.131709 -0.904548 -1.522094 2.243977 -0.834903 2.145032 -0.855292 2.569659 -0.860923 -0.864812 0.577314 -1.259651 -0.341855 -1.683445 -0.035252 -0.037959 1.298762 -1.334232 -1.401215 -0.512130 -0.537595 -0.520387 1.908201 -0.946703 -0.129389 0.076953 -0.047936 1.316142 1.123583 -0.815035 0.013145 -1.566041 0.870394 1.163669 0.335964 -2.150152 -0.488119 -0.505925 -0.727020 -0.057902 0.199846 1.239868 -1.092384 -0.259749 0.905383 -0.137790 -0.238017 -0.105655 -2.480946 0.673761 -0.092251 0.592585 0.640728 2.234069 1.816509 1.311459 0.132351 0.454887 -0.245775 -0.438447 -1.754693 0.336692 0.066189 0.572515 1.028119 1.468645 1.102831 0.825170 1.458192 0.671675 0.233485 1.852278 0.652800 2.233661 -0.353516 -0.642388 0.696727 -0.050406 1.701388 2.112804 0.228142 -0.870264 1.091526 -0.111940 -1.245360 -1.348816 -0.258842 -0.253545 -0.449199 1.424033 0.856257 -0.480557 -0.346120 2.866613 -0.368043 -3.152945 1.281183 0.704621 1.203337 1.013757 -0.316660 1.023666 1.305542 -0.011693 0.970228 1.059197 1.175732 -1.815776 -0.280280 0.271053 0.992818 1.295354 0.644016 -3.274660 0.180728 0.423370 2.149661 0.106665 1.882003 -1.031520 0.347268 0.416428 -0.028507 0.162261 -0.154561 0.871290 -0.754597 -0.116681 -2.307562 -0.068353 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 3.167100 -0.282185 1.947118 -3.615358 -2.629548 0.490379 1.248761 -5.024428 -2.612522 6.270532 1.164413 -3.264254 -3.031706 3.819806 -1.392980 -3.669605 0.333956 0.129838 -0.694983 -1.748637 -2.265872 1.310190 -1.810251 -4.080981 1.427637 -1.244905 2.058249 3.923511 1.140041 2.253251 -0.623303 -2.841073 1.161795 8.394609 3.401313 -0.271979 -1.934383 9.878710 -5.249622 6.086100 -7.271939 -7.609769 9.489005 -0.887713 -0.056017 -5.519902 -1.835235 4.589815 -4.509275 -2.784712 -0.352015 -1.386661 2.093653 -4.955094 -2.530145 5.505561 -8.163542 3.707240 3.218087 -4.692494 -6.450236 -2.300782 1.450152 1.751673 -4.780806 -5.145337 0.297889 0.370659 -2.320565 1.054697 -5.842518 -5.355756 5.742820 1.461484 -2.390763 0.446387 -2.145557 -2.705489 3.052265 -0.841138 -5.385028 -3.480098 0.441780 -2.456106 3.655405 3.161397 5.516571 -10.904682 2.001752 -10.855863 3.211492 -4.901787 4.968000 6.899823 -4.389292 5.162491 1.765539 3.773980 1.278747 -0.977154 4.581392 2.112482 2.175820 1.554067 4.819443 5.120779 -4.059598 -6.375867 -3.983509 -3.540498 1.234414 -2.464126 -9.408383 2.870161 -5.133990 1.528343 -1.133215 0.051096 -2.556372 5.324012 -10.204706 -0.462770 1.313212 -1.733931 5.287015 4.092296 -0.296411 1.854310 -0.951854 4.534045 -0.429870 1.669641 -0.813287 5.661427 -3.046589 -4.938377 -4.961197 2.488635 4.048638 -5.033550 -7.491150 -9.186551 -2.735108 3.329191 -3.239010 5.313864 10.934242 -3.446564 -5.945451 5.043706 -2.634177 1.070072 5.948758 2.082675 9.317157 -5.043853 0.823407 -0.418108 -0.355109 2.502537 4.272826 -2.368334 -5.280099 5.621371 -1.853559 -0.821731 4.720218 -0.093522 -1.838197 -2.842846 0.644021 -2.310490 -3.489785 7.580952 -6.515169 5.743955 -3.306998 8.947410 -4.121559 -3.457239 1.834961 -8.248330 -2.490636 -4.600408 -0.209439 -1.519690 5.487971 -6.595378 -4.749483 -1.779595 -1.244101 -1.776632 7.678022 -2.340307 -0.980756 0.867161 -0.588653 7.031143 3.889375 -2.344949 -0.516316 -5.346750 2.296569 4.911249 0.509174 -8.694026 -2.802647 -2.612339 -2.389244 0.653965 0.719202 4.756074 -4.102572 -0.379611 2.470472 0.010251 1.006315 0.486610 -6.456417 3.371916 -0.133673 1.870484 2.903007 8.893035 4.945569 5.477088 0.947268 1.914021 -0.138433 -3.059616 -3.840190 1.922275 1.990487 2.297029 3.549186 4.821193 3.080436 3.122615 4.057402 2.181519 0.079399 6.579839 1.960672 7.924511 -3.929124 -0.893121 1.767377 -0.325249 5.443779 7.397565 -1.791644 -3.457395 3.254643 -2.461567 -3.539593 -3.881706 -0.374916 -1.149839 -1.358712 3.909414 4.943199 -0.694886 -2.566654 10.840121 -0.959383 -11.846364 6.135666 2.902743 3.724070 4.725734 -2.451887 2.755804 3.709307 0.580940 3.340828 4.906810 4.229839 -6.925110 1.142450 0.588721 4.712165 4.883207 0.843852 -11.258613 1.118272 2.486157 7.837816 1.603472 6.147568 -4.533105 0.600452 0.768245 -1.046035 1.500859 -0.761357 4.198756 -1.023319 0.995182 -6.976784 -0.682721 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.522647 0.013256 0.736461 -1.416613 -0.186198 -0.490184 2.281653 -0.424595 -0.360669 1.751471 0.024393 -0.535309 -1.417336 0.287866 0.313930 -0.883418 0.608214 -1.498348 -0.512212 0.128300 -0.514530 0.547253 -0.223807 -1.099681 0.914223 -0.043915 0.501753 1.514000 -0.077843 -0.254134 0.274884 -0.694658 0.583724 2.001868 0.303239 0.045709 -0.807564 2.083015 -1.112068 1.869252 -1.526522 -1.528936 2.618628 -0.442531 -0.436901 -2.079099 0.661071 1.347418 -0.122539 -1.480164 -0.116727 0.234118 0.725318 -1.913679 -0.946531 1.820483 -1.618292 0.191347 0.866926 -0.946569 -1.501427 -0.536996 0.043020 0.511542 -1.446281 -1.341439 -0.041811 -1.498791 -1.081125 0.472085 -1.128426 -0.674587 1.576376 0.711130 -0.431642 0.572837 -0.668146 -1.102976 0.866380 -0.180359 -0.661734 -1.074486 -0.007330 -0.354451 0.991662 -0.222063 0.752379 -2.316068 -0.235741 -1.860065 0.740725 -1.349913 1.023427 1.693976 -0.085890 1.850836 -0.330197 0.219924 -0.581742 -1.015317 1.031049 0.605202 1.793889 0.351359 1.077442 1.170953 -1.484489 -2.235514 -1.077376 -0.406218 0.611960 -0.559487 -1.811438 0.753958 -0.873812 -0.176978 0.792961 -0.353014 -0.822570 1.577528 -1.938246 0.214980 0.703070 -0.470719 0.726743 1.196700 0.149183 -0.241081 0.060808 1.152251 0.563907 1.239239 -0.083504 1.521226 -0.495649 -0.394650 0.587583 -0.096857 0.502113 -0.810266 -1.673837 -2.141418 -0.698736 0.548950 -0.874821 0.562473 2.200868 -0.328486 -1.350000 1.089937 -0.223801 0.371186 -0.183660 0.373167 1.280496 -1.147587 0.031367 -0.188246 0.325192 1.170730 3.812532 -0.501998 -1.709190 1.436568 -1.173348 -0.631949 0.412875 0.441383 0.221973 0.466477 -0.539688 -1.103432 -1.469423 1.623561 -1.246115 1.935691 -1.055768 2.137170 -0.749651 -0.540921 0.488002 -0.973049 -0.273777 -2.215443 -0.266303 0.709861 0.564761 -1.406910 -1.164635 -0.737264 0.071492 -0.337168 1.901018 -2.536112 -0.503643 -0.475108 -0.027998 1.907771 0.199105 -1.294449 -0.365252 -1.083358 0.814186 0.277727 0.615632 -1.404075 -0.756134 0.007427 -0.966503 0.852170 0.092823 0.967585 -0.526798 -0.056448 1.775656 -0.102414 -1.094306 -0.401422 -2.841994 0.352650 0.887344 0.214863 0.394162 2.133520 1.080357 0.572318 -0.575210 0.399859 -0.407837 -0.286573 -2.641651 0.114147 -0.323348 0.245172 0.894244 1.039269 0.867691 0.429082 1.570123 0.896321 -0.640857 1.358418 0.323171 1.117243 -0.366342 -1.010261 1.386289 -0.097391 1.149921 0.817426 0.248225 -1.336160 1.296594 -0.142043 -1.072375 -0.230804 -0.402955 -0.427374 0.419425 1.562081 0.809315 -0.757303 0.134534 2.514190 -0.555846 -2.848161 0.803050 0.836579 1.283656 0.867785 -0.494600 1.150945 1.159057 0.184029 0.757632 0.440604 0.794172 -1.330280 0.141420 0.344296 0.466876 0.891740 0.100224 -3.205009 -1.640304 -0.226468 2.092706 0.580245 2.468715 -0.553445 0.855672 0.228372 0.357044 0.447730 -0.554006 0.644457 -0.403532 -0.211617 -2.418120 1.162490 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.254359 0.113011 0.687073 -0.967501 -0.436589 -0.310998 1.015776 -0.605755 -0.295034 0.607361 0.295411 -0.738962 -0.850436 0.843033 -0.279638 -0.638832 0.262059 -0.260729 -0.436913 -0.333787 -0.263230 0.278850 -0.129676 -0.780571 0.465604 -0.216958 0.377099 1.111963 0.197748 -0.140506 0.064941 -0.389041 0.531116 1.535391 0.226737 0.088775 -0.520446 1.668400 -0.802599 1.311178 -1.571302 -0.907928 2.000235 -0.275710 -0.183262 -2.147630 -0.691161 0.892160 -0.645484 -0.600554 -0.221427 0.001125 0.285242 -1.320803 -0.471720 1.441616 -1.493669 0.603117 0.684686 -0.932769 -1.021286 -0.280357 0.111107 0.067110 -0.777930 -1.001960 -0.046915 -0.371981 -0.718470 0.486252 -0.876964 -0.859157 1.428461 0.144933 -0.323967 0.456594 -0.352758 -0.731862 0.644466 -0.278819 -0.583618 -0.768120 0.398307 -0.074889 0.703813 0.094642 0.585668 -1.986533 -0.388959 -1.707609 0.646296 -1.267778 0.808325 1.135189 -0.591135 1.300602 -0.003965 -0.291341 -0.090448 0.218756 0.813541 0.438513 1.046365 0.132982 1.068380 0.737611 -0.635746 -1.494882 -0.736744 -0.681706 0.210865 -0.301053 -1.914177 0.483877 -0.902008 0.020690 0.023589 -0.042639 -0.141205 1.177083 -1.136788 0.442347 0.739547 -0.383842 0.488258 1.116327 0.014419 -0.012377 -0.362234 0.760835 0.138510 0.716314 -0.123098 0.999107 -0.220967 -1.556039 -0.445486 -0.062178 0.308164 -0.671066 -1.355867 -1.441628 -0.533530 0.387117 -0.629589 0.329062 1.863022 -0.394536 -1.343351 0.860883 0.551619 0.388744 0.557807 0.455742 1.889068 -1.007818 0.162470 -0.251273 0.030200 0.853311 1.460240 -0.553518 -1.240085 0.986837 -0.490253 -1.665639 1.333542 -0.119509 0.049536 0.647404 -0.079431 -0.586542 -1.080030 1.447331 -0.216021 1.763778 -0.881197 1.769191 -0.833950 -0.896698 0.285148 -0.703599 -0.173452 -0.887084 0.075400 0.080323 0.856255 -0.976068 -1.033614 -0.409401 -0.352715 -0.122302 1.558496 -0.947591 -0.244689 -0.187999 -0.222292 0.756423 0.437920 -0.827771 0.182501 -1.133470 0.520112 0.787544 0.639482 -1.922151 -0.242216 -0.249470 -0.535635 0.042505 0.175733 0.789540 -0.354116 -0.100095 0.816374 -0.395536 -0.326872 -0.362909 -1.296931 0.367938 -0.113943 0.245651 0.214199 1.687982 1.371784 0.607549 -0.233229 0.348928 -0.186232 -0.595734 -1.061892 0.246567 0.042240 0.163709 0.622542 0.929544 0.562763 0.377546 1.082195 0.383127 -0.140731 1.179349 0.539803 1.268056 -0.571342 -0.424409 0.572122 -0.164525 1.100452 1.337894 0.256865 -0.932656 0.776753 0.061410 -0.631152 -1.053850 -0.446670 -0.116137 -0.494434 1.611614 0.730583 -0.505269 -0.117094 2.053087 -0.141883 -2.136979 0.968165 0.467306 0.633961 0.384274 -0.404369 0.466858 1.126095 0.180362 0.173353 0.415509 0.825524 -1.319876 -0.517896 0.151539 0.672549 0.922660 0.160032 -2.696288 -0.385959 0.366729 1.678310 0.076341 1.495793 -0.629379 0.193851 0.119242 0.211015 0.086877 -0.170963 0.494877 -0.632768 -0.260562 -1.488408 0.195681 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 2.159987 -0.237806 2.137106 -3.334339 -0.768315 -0.930594 5.474327 -3.525113 -1.983103 6.968163 1.187287 -3.251391 -2.332841 2.746122 0.175335 -1.337391 2.158998 -0.169742 -1.522314 -0.274498 -2.305960 0.992995 -1.266134 -4.309732 2.202540 -0.283456 2.398531 4.403520 -1.775579 1.497580 0.185764 -2.314172 1.871982 7.333996 2.012795 -0.172540 -3.137358 7.051823 -6.191118 7.464513 -5.678024 -4.616435 9.451972 -1.155645 0.332975 -5.587858 -0.619217 4.826696 0.574288 -6.178693 -1.396689 -0.560597 2.636128 -6.410615 -3.347959 5.790736 -4.510911 -0.497136 3.819584 -5.037201 -6.918428 -1.474019 1.975962 1.978534 -7.323987 -5.079579 -0.021766 -2.674990 -1.610918 1.130009 -5.994418 -5.316813 3.480294 0.956942 -1.700768 1.140413 -3.018953 -3.406887 2.942982 1.801365 -3.004181 -3.546741 0.181820 -3.201046 2.318231 1.232615 4.941946 -9.395771 0.881560 -8.364051 2.908288 -4.403754 4.341000 6.125662 -1.117118 5.445598 0.093511 3.504714 -1.159603 -0.530560 3.445801 2.095682 3.529361 0.427445 5.243945 5.053613 -5.096996 -8.256216 -4.147833 -2.454721 2.947018 -1.834403 -5.799606 3.029650 -4.926099 -0.171614 0.281873 -0.152131 -2.057668 7.082861 -7.394011 1.676328 2.809400 -1.764425 3.359005 4.368311 0.277264 0.443609 -0.757738 3.019773 0.995443 2.094296 -0.284876 5.519975 -3.286683 -1.858019 0.492716 1.025790 2.693129 -4.108837 -6.225507 -8.808320 -2.385388 3.433617 -3.420517 2.965871 8.340084 -2.349565 -4.444825 3.126786 -0.601651 -0.002105 1.588028 1.781403 8.447718 -5.687381 1.410509 -0.456791 0.921734 4.005466 9.928143 -2.822178 -6.117412 5.277563 -3.525725 -4.186793 7.170530 0.893763 0.330103 1.569575 0.380204 -1.348258 -4.081784 6.458373 -5.980402 5.903721 -4.417158 8.117663 -3.328662 -0.965459 1.758350 -4.658318 -2.111829 -5.992261 0.034336 -0.204851 4.832712 -4.134621 -4.261324 -1.616733 -1.554701 -0.455876 8.071867 -6.107525 -1.460363 -0.738582 -2.043190 5.237751 0.882712 -3.531376 -1.167859 -4.196884 2.253718 3.007358 1.264448 -5.995984 -3.258800 -2.239287 -2.873548 -0.629186 0.706383 4.643878 -3.842858 -0.068740 4.616452 -0.228240 -2.407844 -1.545002 -7.808353 2.515120 0.985720 1.482397 1.826834 8.897308 4.144298 4.007549 -0.945864 1.262466 -1.475282 -2.036788 -9.098611 2.213679 -0.428373 1.900905 3.287413 3.739193 2.379162 2.733675 3.851820 -0.540061 0.716756 5.855782 1.582881 4.892033 -1.999368 -1.429700 3.990073 -0.856902 4.825604 4.164585 0.660045 -5.319376 3.025593 -2.533001 -5.734369 -0.976761 -1.110742 -0.525916 -0.992374 3.944119 4.188820 -1.051231 -1.730179 10.169907 -1.363150 -11.232965 3.721566 2.119473 4.037384 5.458328 -2.201935 5.474113 3.512727 3.450032 2.590276 2.917763 3.669078 -6.350152 0.366133 0.998004 2.703877 5.288515 -0.564594 -13.512177 -1.121418 0.051865 7.385708 0.234594 7.759452 -3.758876 4.410531 0.487849 0.171482 1.883099 -1.992253 3.920213 -0.706808 -0.651694 -9.998383 3.391628 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.806177 0.150721 0.427836 -1.044458 -0.330723 -0.317846 1.543163 -0.823839 -0.779902 1.439068 0.235099 -0.924116 -1.224029 0.921283 -0.023678 -0.847468 0.440218 -0.526812 -0.491088 -0.353297 -0.733391 0.298916 -0.255295 -1.233845 0.627291 -0.223448 0.281443 1.346401 -0.091583 0.201101 0.047203 -0.572721 0.628771 2.050262 0.512572 -0.311889 -0.758218 2.531635 -1.893338 1.933389 -1.651451 -1.581302 2.930351 -0.336737 -0.235117 -2.155266 -0.535633 1.260938 -0.407835 -1.007774 -0.238407 -0.029368 0.361912 -1.665781 -0.762365 2.123779 -1.971342 0.713564 0.920164 -1.280735 -1.677329 -0.486377 0.140258 0.223268 -1.307536 -1.437003 -0.040306 -0.653480 -0.657565 0.424928 -1.770229 -1.215586 1.408320 0.550034 -0.245438 0.393001 -0.742687 -0.656727 0.755723 -0.088471 -0.979187 -0.954343 0.275976 -0.111618 0.813291 0.571711 1.147002 -2.763039 -0.211691 -2.561270 0.782622 -1.655226 1.170585 1.780591 -0.208343 1.749611 0.022566 -0.013820 -0.229939 -0.148665 1.093405 0.483427 1.151811 0.305668 1.235862 1.467491 -1.192990 -2.138306 -1.021114 -0.502981 0.422239 -0.257025 -2.112170 0.937352 -1.426230 -0.165250 0.202361 0.038964 -0.575228 1.501553 -1.812684 0.282748 0.691135 -0.544666 1.186252 1.352443 0.056811 0.104165 -0.479061 0.963208 0.471803 1.075524 -0.206550 1.471060 -0.586388 -1.650528 -0.470634 0.241454 0.766107 -1.254745 -1.803671 -2.160795 -0.542969 0.799505 -1.049935 0.911207 2.756345 -0.736439 -1.324209 1.172266 -0.004308 0.699362 0.676302 0.503813 2.743247 -1.400480 0.320378 0.187381 0.157279 0.982174 2.184755 -0.717699 -1.664536 1.327641 -0.521542 -0.910154 1.408613 -0.045706 -0.078156 0.609192 -0.072412 -0.372950 -1.363072 2.016371 -1.052588 1.891747 -0.915758 2.298729 -0.879046 -0.686345 0.605673 -1.319946 -0.529220 -1.700593 0.115314 -0.146791 1.060570 -1.281979 -1.263761 -0.604802 -0.411711 -0.369717 2.214248 -1.390064 -0.347177 -0.124209 -0.297746 1.310164 0.611423 -0.951067 -0.011752 -1.688582 0.719807 0.890595 0.324663 -2.512845 -0.582408 -0.138216 -0.714246 0.268203 0.160505 1.060850 -0.727941 -0.065589 1.269070 -0.127098 -0.364199 -0.253625 -1.439088 0.632925 0.299957 0.355394 0.522955 2.518850 1.425894 1.003037 -0.199978 0.537382 -0.251930 -0.544838 -1.917409 0.486503 -0.105638 0.578322 0.943723 1.058822 0.565044 0.623021 1.383078 0.169491 -0.203535 1.446151 0.717390 1.757787 -0.677872 -0.765342 0.903247 -0.398041 1.418062 1.548207 -0.000915 -1.577389 1.047800 -0.619436 -1.212011 -0.642371 -0.316829 -0.247145 -0.656774 1.821395 1.240174 -0.439598 -0.371196 2.992155 -0.408070 -3.392473 1.264899 0.881967 1.028192 1.168153 -0.549779 1.075205 1.326369 0.557192 0.411889 0.926419 1.136236 -1.799256 0.144365 0.224422 0.769266 1.118512 -0.101577 -3.913235 -0.427154 0.598479 2.279783 0.253053 2.078451 -0.899184 0.639007 0.170518 0.318417 0.426244 -0.334892 1.047974 -0.735042 0.122532 -2.121746 0.677688 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 1.773747 -0.148433 1.006200 -1.582102 -1.114322 0.176378 1.418379 -2.501001 -1.238179 3.335251 0.817424 -1.674060 -0.921467 1.881438 -0.531749 -0.938033 0.956013 0.792049 -0.393158 -0.302356 -1.414358 0.416069 -0.997202 -1.686327 0.671336 -0.063346 1.065933 1.682216 -0.245367 0.749347 -0.828339 -1.230136 0.444854 4.054479 1.660159 -0.690077 -1.118341 4.814067 -2.385909 3.492975 -3.428140 -2.222672 4.038320 -0.534644 0.457873 -3.067663 -1.266481 2.509634 -0.774209 -2.330059 -0.170858 -0.905758 1.004984 -2.438126 -1.302068 2.988855 -3.231683 0.935275 2.247508 -2.215269 -3.228762 -0.889085 1.379983 0.660943 -3.230889 -2.592629 0.368503 -0.339455 -0.654207 0.548585 -3.570878 -3.428688 1.920922 0.570629 -1.456471 0.124450 -1.246558 -1.816690 1.478885 0.532207 -2.778419 -1.567971 -0.024300 -1.948474 1.814510 0.826356 2.803526 -5.385060 1.340286 -5.795288 1.120349 -2.738616 2.459682 3.849551 -1.710792 2.118822 0.690714 1.967574 0.204545 0.176340 2.154495 1.023417 0.468088 0.164844 2.774173 2.380689 -1.993671 -3.446591 -1.790933 -1.678882 0.832012 -0.650570 -3.851504 1.623079 -2.838828 1.093467 -0.734463 0.652824 -0.980877 3.013300 -4.022513 0.077114 0.978685 -1.001916 2.478874 2.812044 -0.198633 0.919509 -1.055609 1.959352 -0.036803 0.899393 -0.554513 2.681055 -1.730442 -2.158891 -1.903539 0.846232 2.108516 -2.299285 -3.762062 -4.631914 -1.316914 1.291562 -1.777060 2.382141 5.274737 -1.828674 -2.416267 2.245109 -0.819871 0.254719 2.544881 0.885798 5.271600 -2.997938 0.786737 -0.169312 0.111795 0.886468 2.125150 -1.468632 -2.508659 2.589278 -1.225756 -1.708772 4.564375 0.346222 -0.696984 0.764416 0.434850 -0.209414 -2.194472 3.903880 -3.064435 2.685485 -1.383972 4.547487 -1.657427 -1.057581 0.935039 -2.405134 -0.680215 -2.070725 0.035447 -0.678394 3.227811 -2.414722 -2.351864 -0.283233 -0.965760 -0.561815 3.992712 -0.409094 -0.532243 0.351124 -0.692503 2.810184 1.677159 -1.275014 -0.035668 -2.561253 1.187302 2.056678 -0.221213 -3.581049 -1.434257 -1.635199 -1.236373 -0.602417 0.405232 2.383230 -2.630192 -0.525937 1.570622 0.050859 0.239634 0.121285 -3.443582 1.636449 -0.336832 0.732021 1.476561 4.558330 2.252500 2.827809 0.481647 0.342166 -0.302215 -1.101662 -3.154729 0.855236 0.365950 1.742336 1.644753 1.461241 1.391135 1.480702 1.226029 -0.541755 1.069286 3.256451 1.414013 3.753677 -1.501336 -0.309742 1.191445 -0.751323 2.745694 3.333262 -0.656405 -1.960210 1.241281 -1.341108 -2.734763 -1.978612 -0.243599 -0.269033 -1.097077 1.337874 2.432073 -0.210896 -1.475846 5.488793 -0.742966 -6.270724 2.554361 1.056497 1.734630 3.439169 -0.728464 2.358660 1.499100 1.202609 1.782666 2.215703 2.290335 -3.382875 0.482329 0.330241 1.849974 2.016669 0.163098 -6.674785 0.726636 0.857038 3.839117 0.507408 3.161495 -2.242787 1.552341 0.647192 -0.691173 0.755966 -0.661536 2.581839 -0.307334 -0.244832 -4.500782 0.572230 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.490390 0.027171 0.375699 -0.980073 -0.640718 0.072976 0.170213 -0.768977 -0.328366 0.358172 0.332507 -0.615573 -0.599339 0.939926 -0.288566 -0.846032 0.134035 -0.429076 -0.214620 -0.262927 -0.296437 0.289740 -0.254431 -0.563466 0.219404 -0.198735 0.128002 0.658469 0.492052 -0.271997 -0.331728 -0.390706 0.172269 1.481352 0.475035 -0.113320 -0.209933 1.862031 -0.253163 0.924207 -1.373670 -0.960040 1.581371 -0.248009 -0.231634 -1.449489 -0.582863 0.773457 -0.779935 -0.160141 0.106485 -0.202405 0.127241 -0.803562 -0.333067 1.085762 -1.513432 0.982095 0.607229 -0.502066 -0.735175 -0.417787 0.149958 0.123773 -0.460509 -0.841313 0.207937 0.102075 -0.688727 0.213036 -0.876623 -0.966939 1.491443 0.429238 -0.391841 0.205775 -0.268658 -0.653464 0.588687 -0.508347 -0.992077 -0.510250 0.252468 -0.128773 0.915155 0.167367 0.634849 -1.983576 0.098820 -1.996459 0.467639 -1.087060 0.847360 1.235948 -0.828111 0.856954 0.239646 0.013359 0.320533 0.103406 0.965342 0.261476 0.458393 0.240333 0.917670 0.629632 -0.347208 -0.905918 -0.460113 -0.770818 -0.055458 -0.129473 -1.911046 0.590372 -0.911784 0.242952 -0.222165 0.228215 -0.279276 0.726475 -1.193763 -0.361409 0.301436 -0.357040 0.862188 1.036623 -0.140124 0.274345 -0.468501 0.903675 -0.061312 0.522919 -0.263259 0.877861 -0.146126 -1.360849 -1.190148 0.189961 0.634686 -0.841819 -1.415121 -1.326017 -0.454735 0.117338 -0.627784 1.065566 1.963325 -0.631842 -1.225848 1.134581 0.226678 0.481488 1.174525 0.298139 1.836499 -0.852289 0.139691 -0.114324 -0.090460 0.247914 0.197797 -0.365337 -0.777749 0.769678 -0.292369 -0.685638 1.066088 -0.043804 -0.382176 0.220303 -0.040037 -0.515325 -1.100008 1.345402 -0.004142 1.313540 -0.173032 1.786204 -0.723494 -0.914700 0.451558 -0.625405 -0.187837 -0.570811 -0.033321 -0.142190 0.850816 -0.970777 -0.894373 -0.150360 -0.221452 -0.423507 1.192144 0.254453 -0.037427 0.169167 -0.016790 0.815762 0.997841 -0.459341 0.210884 -1.143851 0.500442 0.979971 0.194565 -1.422945 -0.266249 -0.359541 -0.366865 0.338433 0.089915 0.750888 -0.550938 -0.301264 0.384148 -0.031962 0.407534 0.131292 -1.115265 0.464788 -0.199701 0.166039 0.376771 1.523787 1.106581 0.898902 0.251490 0.151600 -0.049676 -0.298107 -0.388695 -0.072041 0.206744 0.488565 0.647306 0.882163 0.620589 0.471223 1.002009 0.489048 -0.114749 1.128460 0.345366 1.620459 -0.637741 -0.239263 0.133388 -0.242342 1.159715 1.765849 -0.343515 -0.543173 0.683118 0.050102 -0.467935 -1.282030 -0.160836 -0.216440 -0.389329 0.889519 0.602426 -0.160204 -0.383437 1.945234 -0.146294 -2.014682 1.115270 0.474611 0.597926 0.516314 -0.273564 0.238143 0.839058 -0.407197 0.410234 0.794372 0.875769 -1.116943 -0.147560 0.083361 0.830795 0.232415 0.371810 -1.612926 0.148480 0.675012 1.461933 0.446569 0.869069 -0.707014 -0.248866 0.268833 -0.041357 0.062344 0.054864 0.658523 -0.660370 0.035485 -0.928919 -0.278107 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 0.974459 0.327055 1.445616 -2.685927 -0.951914 -0.773984 3.222432 -2.105007 -1.167613 3.018254 0.816173 -2.218900 -1.473873 2.745672 -0.368734 -1.272421 1.074699 -0.661556 -1.126438 -0.966675 -0.733831 0.833003 -0.426694 -2.522170 0.930558 -0.578580 1.236644 2.747275 -0.629159 0.402451 0.374060 -1.313034 1.516038 4.148589 0.959807 0.203791 -2.346849 4.357369 -3.649188 4.665121 -4.660126 -2.963941 6.216824 -0.680260 -0.302166 -5.869581 -1.849621 2.440590 0.219231 -2.617800 -1.143101 -0.116633 1.118767 -3.754799 -1.880589 3.677364 -2.890828 0.514452 2.080525 -3.664503 -3.816190 -0.664145 1.059070 1.150042 -3.876090 -2.620503 -0.084124 -1.491306 -1.136334 1.134721 -3.131322 -2.913743 2.467744 0.776259 -0.700551 0.815931 -1.819162 -1.995647 1.795904 0.203950 -1.588155 -2.144358 0.669899 -0.895834 0.810467 0.734555 2.946420 -5.816803 -0.363111 -5.130925 1.837023 -2.997576 2.377976 3.086097 -0.363791 3.554040 -0.052754 0.226853 0.053128 -0.039011 1.784612 1.471416 3.136702 0.372527 3.605588 3.344448 -2.236788 -4.910184 -2.287134 -1.797621 1.446974 -0.967643 -4.565351 1.853435 -2.909541 -1.320355 -0.151299 -0.284540 -0.729908 4.110468 -3.225079 0.941207 2.086629 -1.088942 1.458524 2.869006 0.154467 0.418997 -0.885110 1.569707 0.543015 2.211607 0.108634 3.078895 -1.966768 -3.079882 -0.379115 0.544087 1.035310 -2.403440 -3.402529 -5.137805 -1.441747 1.774151 -2.038607 1.315997 5.217877 -1.448717 -3.856422 1.917520 1.844740 -0.016880 0.961388 1.082120 6.081386 -3.178110 0.763472 -0.417949 0.398337 2.655618 6.589441 -1.595088 -3.497088 3.127876 -2.344300 -4.957838 4.280968 -0.292994 0.125350 1.748620 0.273165 -1.048829 -2.772397 3.697164 -1.885782 4.501545 -3.123667 4.620204 -2.322873 -1.253854 0.869471 -3.514204 -1.450506 -3.049587 0.529195 -0.320205 3.209101 -2.221484 -2.492765 -1.327093 -1.674334 -0.381175 4.650430 -4.728738 -0.619120 -0.326272 -1.060752 2.620155 0.933340 -1.953665 -0.186888 -2.862239 1.386302 2.709154 2.035342 -4.983068 -1.622743 -1.155833 -1.563001 -0.850866 0.369962 2.689173 -1.737540 0.104007 2.455767 -0.890880 -1.236002 -1.164554 -4.189454 1.395470 -0.095818 1.441281 0.244656 5.511471 3.069316 2.196294 -0.515895 0.867416 -0.691200 -1.798781 -4.598990 1.052903 0.163538 -0.098358 1.951784 2.733248 1.295876 1.532917 3.601809 0.165450 -0.163407 3.139328 0.561750 3.364641 -1.460216 -0.919774 1.768184 -0.487539 2.934084 3.938893 2.115483 -3.479844 2.031645 -1.358650 -3.274234 -2.040677 -0.991684 -0.180327 -1.245165 4.202144 2.942116 -1.011993 -0.842117 6.232214 -0.331475 -6.948047 2.591706 1.359032 2.015532 2.525327 -1.566579 2.396543 3.030725 1.562416 0.714735 1.708296 2.351632 -4.163305 -0.739360 0.459347 1.732007 3.624654 -0.047941 -8.863244 -0.355331 0.995048 4.832530 -0.444223 5.581498 -2.309385 2.047537 0.547631 0.906934 0.502542 -0.622635 1.932447 -1.188770 -0.406628 -5.383488 1.664356 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.953811 -0.693564 0.907698 -2.469885 -1.846678 0.043751 -0.251555 -1.447783 -0.654161 0.962725 0.802329 -1.549107 -1.250843 2.708239 -0.471938 -1.973892 0.279100 -0.712065 0.140398 0.007651 -0.392064 1.166692 -0.433199 -0.936717 0.687152 -0.354891 -0.347661 1.733233 2.031751 -0.467113 -0.640385 -1.040755 0.099899 3.279819 0.902889 -0.687890 -0.176040 4.918781 -1.177820 2.524367 -2.345551 -2.036583 3.584412 -0.592509 -0.638297 -2.575700 -1.898877 1.892645 -2.152261 -0.863164 0.761394 -0.058322 0.711705 -1.673960 -0.696002 2.095480 -3.874260 1.936628 1.477507 -0.609416 -0.847255 -0.793796 -0.449345 0.398571 -1.495292 -1.935677 0.269787 0.016901 -1.542121 -0.410805 -1.473033 -1.634638 3.793643 1.020119 -0.982048 0.706175 0.311605 -1.844492 1.772186 -1.250852 -2.961427 -1.035839 -0.466211 -1.112910 2.801793 0.012487 1.759804 -4.398682 1.037477 -4.669403 1.207326 -2.770663 1.497794 3.512787 -2.790250 2.037351 1.035572 1.335218 1.367784 0.154846 2.752119 1.272389 0.389999 1.204380 2.108583 1.561668 -1.039380 -1.611849 -1.652873 -1.905312 -0.027424 -1.155080 -4.852132 1.494228 -1.149774 0.561531 -0.243942 0.351570 -0.876621 2.112916 -2.953054 -0.041160 0.601453 -0.764738 1.069594 2.524270 -0.540425 -0.086811 -1.232767 2.579173 -0.744558 1.297371 0.093846 2.215901 -0.731262 -2.407963 -2.286574 0.556149 1.144053 -2.103282 -3.145162 -3.429522 -0.574002 0.155079 -1.439816 2.727340 4.932061 -1.615412 -2.376210 3.119614 0.302973 0.894911 2.710455 0.585259 3.651819 -1.155458 -1.007857 -0.778645 -1.252832 0.360837 0.398228 -0.028373 -1.334223 1.852684 -0.611463 -1.637919 2.763615 -0.051754 -1.308574 -0.503553 0.091025 -1.761532 -2.566918 3.339753 -0.835121 2.452894 -0.217541 4.176269 -0.374014 -2.061249 1.348346 -1.560759 -0.316789 -1.985416 -0.253371 -0.012041 1.288603 -2.360328 -1.949099 -0.742354 -0.178205 -1.466885 2.338338 0.512543 0.352881 0.990482 0.505956 2.116573 2.565012 -0.707388 0.463566 -2.723292 1.244534 1.956792 -0.449093 -3.361640 -0.439438 -0.796125 -0.609283 0.978180 -0.077145 1.703730 -1.926560 -1.000579 0.486960 0.185596 0.830769 0.698686 -3.486766 1.019790 0.119013 1.045500 1.716931 3.108768 2.619370 2.379031 0.854922 1.250386 -0.307402 0.165792 -1.039413 -0.002595 0.357646 1.071233 1.549984 2.567320 1.888515 1.446788 2.284212 1.834568 -0.031395 2.786852 0.665805 3.909387 -0.406694 -1.173779 0.364966 0.001168 2.903587 4.152388 -0.626913 -0.610021 1.761191 0.057185 -1.022970 -2.671316 0.386619 -0.522911 -0.404997 1.813769 0.960828 0.181858 -0.672440 3.637240 -0.677648 -4.749401 2.472640 1.148659 1.794860 1.341742 0.003429 0.865490 1.373536 -1.507815 1.691789 2.254814 1.712414 -2.517395 0.034628 0.411525 1.800490 1.191831 1.778840 -3.719374 0.611638 1.238114 2.820900 0.803321 1.795008 -1.732563 -1.339207 1.048215 -0.411076 0.043192 -0.289982 0.990666 -1.721217 0.376185 -1.709382 -1.246724 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.265086 -1.597937 0.805536 -2.807015 -2.754458 1.095202 -1.653429 -2.026871 -0.421180 -0.229478 1.015090 -0.617480 -0.421858 2.889096 -0.224699 -2.618422 -0.143664 0.201861 0.584911 0.222532 -0.460176 1.595718 -1.193977 0.103793 0.330706 -0.984321 -0.453544 1.277618 1.726056 -0.287841 -1.035131 -1.611959 -1.552319 3.425086 1.559906 0.468711 0.372181 5.738320 0.116017 2.722401 -2.394542 -2.282452 2.167868 -0.735736 -0.672264 -1.147540 -2.193937 1.192012 -2.605452 0.136739 1.905981 -0.715930 1.062050 -0.156369 0.782518 0.566708 -3.160748 1.421596 1.404871 -0.857532 -0.395491 -1.306903 -1.125124 0.375171 -2.061566 -1.504371 0.868580 1.695204 -0.605878 -0.875662 -0.613360 -2.525307 4.517013 1.719678 -1.502489 0.411906 1.280050 -2.235658 1.777767 -0.490320 -4.373656 -0.924053 -0.650983 -2.165539 3.452738 -0.114632 2.828904 -4.644446 2.198056 -5.489715 1.037953 -2.344085 1.689226 3.948398 -3.450893 1.349410 2.330931 2.932378 1.883547 -0.046484 2.845751 1.189473 -1.203303 1.912094 2.359024 0.881019 -0.646217 -0.961775 -1.677829 -2.472351 -0.126179 -1.911442 -5.273402 1.318495 -0.475851 1.441739 -1.566160 1.470958 -0.750690 2.068919 -3.157842 -0.023087 0.481404 -0.889098 1.222069 2.091452 -0.903390 0.297262 -1.454387 2.831564 -2.527585 1.302570 -1.129055 2.287240 -0.729678 -0.551922 -3.828025 0.634826 1.519127 -2.330720 -3.344993 -2.640505 -1.160202 1.286513 -1.213508 4.113307 5.564517 -3.132878 -2.673190 3.839239 0.045480 0.807154 3.158430 0.974130 2.352012 -0.344218 -1.410078 -2.251086 -1.850447 -0.831567 -1.468400 0.937507 -0.643526 2.195087 -0.435250 -0.766572 4.931324 -0.582704 -2.689905 -1.850798 0.477069 -1.966087 -2.258226 3.542580 -1.035086 2.090515 0.576904 4.211301 -0.691077 -1.893408 0.949233 -1.876644 -0.361883 -1.921266 -0.210833 -0.187156 1.436114 -2.392260 -2.033770 -0.444941 -0.883741 -1.778192 1.109989 2.920214 0.471892 1.758974 1.030934 2.815604 4.466163 0.980835 -0.393890 -2.340805 1.800709 1.899727 -1.514888 -1.766052 -0.468910 -0.653266 -0.570177 0.391778 0.422541 1.813193 -2.437920 -0.895540 -1.159806 0.710233 2.032926 2.061109 -4.616384 1.132758 0.362645 1.158206 2.124771 1.870529 2.973660 3.498902 2.479168 0.922738 -0.173142 0.654953 0.267048 -0.159634 1.396306 1.765148 1.495401 3.325929 2.752347 1.589490 2.081267 2.644277 1.787721 2.823602 0.334608 5.336031 -0.001160 -0.977127 -0.422570 0.714861 3.091006 5.023926 -1.317710 1.796357 1.648324 0.920991 -1.051345 -3.638199 1.313710 -0.668221 0.000273 0.547527 0.771697 0.444783 -1.443719 3.669794 -0.560635 -4.293588 2.142076 1.069052 2.102193 1.545456 0.763776 0.306970 0.854777 -2.670390 3.454084 2.889964 1.690877 -2.443929 0.097462 0.348258 1.491748 1.148253 2.809379 -0.915118 1.803390 1.258312 2.660311 1.020715 0.779029 -1.812165 -1.768502 1.526565 -1.993190 -0.285016 0.689075 0.831307 -1.264768 0.837389 -1.634220 -3.399129 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 2.705520 -2.810656 2.131900 -6.625308 -4.836717 -0.231494 -0.667000 -3.144921 -2.109913 3.723701 1.895902 -4.006171 -3.681547 7.116495 -0.316558 -4.813841 1.329555 -1.839368 1.605404 1.027815 -0.959182 3.468733 -0.724583 -1.965497 1.977916 -0.323242 -2.067285 4.565411 6.448072 -1.108524 -1.167220 -3.039641 0.013272 7.936943 2.144702 -3.024401 -1.013978 13.392709 -4.220428 7.169108 -4.515641 -4.803994 9.797256 -1.702352 -1.579327 -5.933988 -4.786102 5.641655 -4.550098 -4.252238 2.366100 0.669646 2.760367 -4.432623 -2.883920 4.941387 -9.693618 3.781761 4.333461 -1.305465 -1.341182 -1.213224 -1.780593 1.835574 -4.913528 -4.961197 0.226969 -1.726927 -3.824604 -2.891778 -3.879183 -2.964586 8.850066 2.961062 -2.273420 1.977357 1.544502 -4.374509 5.078332 -2.827924 -8.525686 -2.563176 -3.597812 -4.261461 7.486782 -0.493475 5.098546 -11.006563 4.233825 -12.229503 3.106511 -7.121662 3.091947 9.872488 -6.711165 5.659617 3.299844 4.564819 4.180524 -0.652496 7.662384 4.072590 0.369775 4.329768 5.603915 4.683063 -3.417952 -3.965406 -5.431029 -4.648622 0.673585 -3.709710 -11.632466 4.780007 -1.897659 0.600646 0.307977 0.608571 -3.024607 5.880354 -7.421327 1.052740 1.318142 -1.945678 1.562608 7.009723 -1.483077 -1.326049 -3.074248 6.986850 -2.569813 4.054670 2.262185 6.412525 -1.923210 -4.434354 -3.908320 1.988914 2.742096 -5.750045 -7.364113 -9.911105 -0.370937 -0.396664 -4.181663 7.122719 13.302459 -4.453609 -4.770044 8.270564 -0.011701 1.773840 6.033030 1.107264 9.313741 -1.824718 -4.982925 -1.988460 -4.806925 1.137873 3.061664 1.161364 -2.580871 5.227472 -2.071356 -3.561319 6.248830 0.175751 -3.891909 -1.364905 0.595740 -4.721510 -7.052028 7.910082 -3.520724 4.814717 0.155238 10.548747 1.950003 -4.105373 4.076332 -3.912868 -1.058222 -6.413892 -0.753220 0.235850 1.936224 -5.714296 -4.409258 -2.940977 0.069622 -4.680086 5.909983 -0.437275 1.819921 3.802906 1.801483 5.631622 6.295243 -1.358044 0.728857 -7.123469 3.296540 4.114366 -2.156952 -8.083430 -1.827404 -2.081490 -1.293910 3.441616 -1.015696 4.760742 -5.758016 -2.730396 1.501097 1.205244 1.272701 2.380449 -10.149926 2.357985 2.127368 3.869197 5.548369 8.415679 5.765586 6.868964 2.283107 5.117591 -1.476054 2.576959 -4.548128 -0.322292 -0.213055 2.836839 4.313122 6.054620 5.458558 4.751702 6.330866 4.558372 -0.105262 7.338565 0.603521 9.662755 0.465649 -4.360429 1.658035 0.701651 7.570169 9.925699 -0.440193 -1.720701 4.906484 -1.358818 -3.588944 -5.529921 2.750276 -1.183380 0.160967 4.514397 3.029774 2.097799 -1.731284 8.089029 -2.866258 -13.503588 6.305474 3.114504 5.572705 4.937639 1.210873 3.947916 2.268819 -3.789618 4.770249 6.920442 3.987479 -6.862636 1.952231 1.653612 4.321887 3.559909 5.402856 -11.575834 0.971101 2.191501 6.218800 1.398758 5.262000 -5.001826 -3.779572 3.979629 -0.908760 0.446874 -1.764298 2.240738 -4.106722 1.109896 -4.278203 -1.866169 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 1.501466 -0.403975 1.169578 -1.577728 -0.657783 -0.205141 2.431725 -1.819677 -1.051036 3.160886 0.267179 -1.447513 -1.374135 1.793268 -0.187229 -0.875527 0.712211 -0.474750 -0.499231 -0.130086 -1.291259 0.755141 -0.789910 -1.757932 1.095424 -0.151135 1.003751 2.448180 -0.676713 0.719404 0.001331 -1.327677 0.475832 3.763254 1.191108 -0.194441 -1.135933 5.096266 -3.467639 4.080177 -2.996243 -2.976071 4.865976 -0.636350 -0.161762 -2.855736 -0.947702 2.467198 -1.017413 -2.399121 -0.264948 -0.225042 0.839899 -2.756806 -1.277802 3.070310 -3.702136 0.539549 1.793511 -2.209365 -3.430881 -0.976066 0.702214 0.711869 -3.314081 -2.451143 0.131336 -1.166714 -0.960138 0.568257 -2.896238 -2.387893 2.099879 0.743570 -0.857045 0.523877 -1.022709 -1.307182 1.618730 0.012905 -2.341356 -1.748636 -0.149792 -2.248135 1.678208 1.026620 2.644726 -4.882088 1.120347 -4.810984 1.349315 -3.006834 2.027246 3.688601 -1.063576 3.260134 0.444724 2.093330 -0.024523 -0.443971 1.898568 1.157112 1.452047 0.766054 2.510700 2.564562 -2.520859 -3.596554 -2.701414 -1.329539 1.149695 -1.079801 -3.769984 1.527334 -2.129214 0.646035 -0.033569 0.508845 -1.295584 2.980989 -4.384342 1.477327 1.045936 -0.867202 1.877099 2.348687 -0.139117 0.330719 -0.701101 1.838753 0.048647 1.509877 -0.194335 2.720863 -1.842162 -1.165547 -0.807626 0.614918 1.509059 -2.105026 -3.271858 -4.753004 -1.181657 1.890794 -1.766971 2.431267 5.376220 -1.466799 -2.267563 2.115708 -0.433130 0.752131 1.479979 0.921259 4.297530 -2.294911 0.146016 -0.222999 0.081071 1.476396 3.718143 -0.961273 -2.609822 2.750532 -1.245875 -1.222517 3.952886 0.312548 -0.428546 0.019701 0.302820 -0.849736 -2.374726 4.176270 -3.198025 3.125876 -1.773487 4.184905 -1.406775 -0.585078 0.890552 -3.383255 -0.795675 -3.476779 -0.146204 -0.678413 2.399016 -2.587691 -2.162581 -1.185329 -0.892981 -0.649948 3.606255 -1.980542 -0.475632 0.035056 -0.453037 3.096112 1.252556 -1.406510 -0.451058 -2.886978 1.137651 1.551011 0.051533 -3.831719 -1.347358 -0.858236 -1.355297 0.037879 0.371383 2.027936 -2.576321 -0.111415 1.887918 0.171136 -0.599397 -0.147829 -4.407887 1.181759 0.458702 1.076528 1.658394 4.092696 2.668940 2.343012 0.091021 1.202199 -0.595906 -0.916552 -3.520140 0.958734 0.213266 1.343193 1.648091 1.926184 1.509431 1.334600 1.676191 0.387153 0.256893 2.981054 1.322348 3.621480 -1.369241 -1.103067 1.505501 -0.075871 2.467742 2.478046 -0.148428 -1.959799 1.673715 -1.338579 -2.495492 -1.093178 -0.250705 -0.546595 -0.370865 2.524435 2.085389 -0.515770 -0.775543 5.091496 -0.842155 -6.280169 2.025329 1.264480 2.049481 2.808785 -0.695746 2.285189 2.163783 0.833749 1.820572 1.954871 1.824426 -3.137819 0.888302 0.470755 1.605871 2.549341 0.257561 -7.251909 -0.058361 0.401412 3.540011 0.263065 3.920838 -1.876051 1.326968 0.454332 -0.554165 0.749041 -0.422446 2.218503 -0.088332 0.265161 -4.814932 0.630572 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 0.231871 0.104917 0.694574 -1.424080 -1.106701 -0.271776 1.341717 -0.637032 -0.378680 1.416913 0.439901 -0.696670 -0.581657 1.618499 -0.043999 -0.544270 0.105002 -1.213968 -0.390093 0.167700 -0.158924 1.088168 -0.292495 -0.326061 0.510293 0.026552 -0.080979 1.029908 -0.360400 -0.418288 0.080222 -0.701313 0.183045 1.547644 0.275226 -0.040308 -0.580390 2.254322 -1.866746 2.089884 -1.693247 -1.343294 1.774348 -0.350630 -0.099796 -2.141337 -0.770599 1.107778 0.438617 -1.212462 0.349425 0.271187 0.350893 -0.976821 -0.046692 0.983252 -1.589524 0.313116 0.915638 -0.907026 -0.786911 -0.324600 -0.196108 0.323119 -1.585624 -1.039538 -0.091155 -0.626547 -0.339562 0.030010 -0.463126 -0.987394 1.201540 0.502173 -0.445551 0.471057 -0.041307 -1.343059 1.224006 -0.801211 -1.220375 -0.577286 -0.223462 -0.753637 0.904575 -0.044705 1.018720 -2.178082 0.363453 -1.976754 0.612096 -1.324050 0.477211 1.670659 -0.309897 1.159269 0.314910 0.730025 0.727918 -0.139447 1.000887 0.942519 1.175061 0.824797 1.129288 1.326260 -1.213220 -1.399542 -1.359309 -1.116278 0.740485 -0.681441 -1.744536 0.751558 0.110992 -0.580726 0.187845 -0.233206 -0.188245 1.841347 -1.634342 0.551316 0.904953 -0.348920 -0.023874 1.275610 -0.188380 -0.217241 -0.729694 1.021526 -0.337587 1.526848 0.129810 1.219642 -1.093060 -0.758017 -0.129274 0.169980 0.110464 -0.950188 -1.190776 -2.256060 -0.179438 0.647673 -0.938181 0.824186 2.409416 -1.101891 -1.497160 1.512291 1.093709 -0.318353 -0.006596 0.233876 1.470592 -0.455895 -0.681281 -0.599041 -0.679387 0.516578 2.694626 0.234610 -1.094879 1.090174 -0.790108 -2.434250 1.885348 0.081531 -0.601727 0.148438 0.171921 -0.995470 -1.020574 1.510064 -0.873184 1.503419 -0.862685 1.741660 -0.330060 -0.371866 0.490251 -1.344910 -0.144736 -1.884183 -0.241252 0.556012 0.747905 -0.966687 -0.717652 -0.711190 -0.670085 -0.856801 1.036886 -2.328899 0.089826 0.261007 0.379971 1.303797 1.082388 -0.352868 -0.093414 -1.097821 0.895304 0.472277 0.347651 -1.963060 -0.427396 -0.386162 -0.552742 0.138676 -0.068969 0.854422 -0.700719 -0.097362 0.864256 -0.460322 -0.550097 0.066779 -2.019480 0.293569 0.078157 1.196526 0.432868 1.436088 1.208657 1.253799 0.421957 0.721383 -0.432301 -0.072318 -1.569647 0.369600 0.106870 -0.246378 0.960717 1.436651 1.138559 0.661415 1.572704 0.864117 0.004982 1.444819 0.014666 1.711037 -0.080069 -0.722304 0.558087 0.449509 1.189438 1.562380 0.546896 -0.588507 0.933760 -0.262920 -1.182746 -0.185557 0.119628 -0.388677 -0.068157 1.321863 0.825687 -0.375553 -0.001137 1.881323 -0.532910 -2.386617 0.675424 0.513915 1.248119 0.786594 0.082930 0.967044 0.885920 -0.240372 1.114581 1.088472 0.822803 -1.344796 -0.705398 0.271653 0.495860 1.628221 1.005552 -3.203907 -0.148071 0.257942 1.492380 -0.463876 1.963807 -0.942103 0.131596 0.747785 0.144986 -0.038699 -0.061424 0.506840 -0.592974 0.036038 -1.826693 0.004581 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 1.017882 -0.096337 0.879382 -1.484235 -1.069177 0.057425 0.820782 -1.472119 -0.716468 1.838109 0.510686 -1.136363 -0.957164 1.379306 -0.385176 -1.148760 0.233008 -0.468052 -0.307733 -0.489832 -0.661652 0.593796 -0.541412 -1.342265 0.591241 -0.434509 0.481771 1.615358 0.119680 0.459018 -0.112985 -0.913633 0.396949 2.872008 0.964056 -0.214993 -0.589062 3.552734 -1.812940 2.144546 -2.390088 -2.425484 3.370971 -0.401492 -0.116412 -2.091622 -0.828713 1.592384 -1.192435 -1.019674 -0.055891 -0.295168 0.749530 -1.783457 -0.895823 1.938961 -2.870797 0.977879 1.111764 -1.644553 -2.125396 -0.665098 0.248188 0.588705 -1.697763 -1.756940 0.161329 -0.063715 -0.728441 0.341509 -1.708834 -1.737716 2.148102 0.580427 -0.567940 0.349649 -0.495269 -1.189850 1.252553 -0.271591 -1.898541 -1.193611 0.065311 -1.082311 1.446796 0.632755 1.921338 -3.647599 0.628188 -3.690111 1.134323 -1.873051 1.476279 2.434510 -1.343811 1.942058 0.577646 1.188596 0.421298 -0.183995 1.690311 0.787097 1.017726 0.708421 1.744426 1.738820 -1.359006 -2.133112 -1.545282 -1.281079 0.455689 -0.887141 -3.316675 1.110591 -1.467445 0.300457 -0.213794 -0.007080 -0.680638 2.248044 -3.033372 0.230848 0.709643 -0.602785 1.289576 1.470133 -0.150170 0.293526 -0.466766 1.615404 -0.196470 0.860720 -0.113621 1.951785 -1.004210 -1.670157 -1.379637 0.699393 1.127573 -1.715281 -2.512231 -3.044500 -0.778655 1.159692 -1.188880 1.809675 3.859402 -1.212242 -2.154645 1.839735 -0.169093 0.262686 1.699597 0.727925 3.054510 -1.550623 -0.028832 -0.402358 -0.271003 0.905990 1.808520 -0.646307 -1.692886 1.973510 -0.622523 -0.908105 2.333384 -0.075364 -0.551008 -0.158876 0.153673 -0.946669 -1.543692 2.613292 -1.373010 2.260329 -0.896114 3.201474 -1.188398 -1.211758 0.688934 -2.241776 -0.708552 -1.753756 -0.001839 -0.254197 1.591091 -1.963146 -1.663831 -0.720852 -0.569813 -0.677002 2.521629 -0.777990 -0.103952 0.340484 -0.219217 1.970777 1.357076 -0.816531 -0.183282 -1.953991 0.892548 1.482604 0.176820 -2.886492 -0.944549 -0.682580 -0.747983 0.298363 0.285798 1.703181 -1.392767 -0.159286 1.009898 -0.019898 0.033453 0.077988 -2.545900 0.997932 0.115573 0.771982 0.896028 2.938465 2.034634 1.857967 0.228999 0.798171 -0.226240 -0.728999 -1.548483 0.418654 0.480469 0.765208 1.204424 1.916351 1.117881 1.109921 1.668118 0.960099 0.113412 2.243016 0.564646 2.793050 -1.160462 -0.524840 0.674136 0.016477 2.035583 2.542472 -0.219580 -1.242308 1.168746 -0.560467 -1.295329 -1.371370 -0.084678 -0.365762 -0.274305 1.536190 1.581251 -0.284077 -0.709865 3.579021 -0.246199 -4.157364 1.923815 0.985783 1.357999 1.518436 -0.690503 1.051977 1.377194 0.110648 1.275964 1.654459 1.383998 -2.437941 0.103810 0.339180 1.495486 1.374565 0.589702 -4.058273 0.176769 0.709003 2.566878 0.344158 2.396543 -1.634027 0.117001 0.411095 -0.316245 0.304292 -0.043976 1.226326 -0.798423 0.446392 -2.497165 -0.118142 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.885042 -0.110102 0.769436 -1.884282 -1.297699 0.155063 0.580851 -1.293140 -0.614727 1.228288 0.519242 -0.979721 -1.393124 1.625525 -0.331376 -1.466032 0.205614 -1.323813 -0.287569 -0.256618 -0.811624 0.761903 -0.633027 -0.877526 0.660702 -0.299564 0.111698 1.408117 0.895889 -0.527811 -0.548047 -0.903135 0.003956 2.899127 0.964208 -0.437768 -0.149293 3.977262 -0.949546 1.819909 -2.099144 -2.068074 2.835831 -0.520675 -0.380413 -1.904576 -0.530231 1.685817 -1.604799 -0.492767 0.633658 -0.245842 0.419411 -1.415529 -0.460259 1.889249 -3.126483 1.761121 1.184152 -0.595472 -1.298229 -1.021116 -0.057733 0.252070 -1.095509 -1.695116 0.456158 -0.036671 -1.364546 0.072284 -1.562879 -1.588342 2.503250 0.934684 -0.725654 0.446668 -0.239555 -1.340847 1.266599 -1.047490 -2.233690 -0.900587 0.099360 -0.875530 2.191900 0.272645 1.122718 -3.698535 0.448224 -3.804866 0.729100 -2.087039 1.516601 2.745778 -1.618124 1.719688 0.562125 0.749909 0.524244 -0.262983 2.015186 0.562145 0.739686 0.884123 1.583430 1.252841 -1.106390 -1.591168 -1.231191 -1.347147 -0.033906 -0.490945 -3.123534 1.168161 -1.369337 0.411845 -0.176375 0.446985 -0.997599 1.498782 -2.804522 -0.532728 0.381868 -0.670956 1.639346 1.852970 -0.338448 0.313170 -0.733447 1.987437 -0.285683 1.143330 -0.609477 1.829410 -0.152358 -1.715654 -2.097389 0.365434 1.327381 -1.608159 -2.793811 -2.648857 -0.851065 0.176442 -1.238849 2.413441 3.928728 -1.345240 -1.955915 2.485958 -0.432491 1.143094 2.053841 0.530387 2.711524 -1.275332 -0.146612 -0.328851 -0.440804 0.243371 0.570560 -0.345572 -1.417536 1.450565 -0.328211 -0.107826 1.558450 0.203391 -0.965125 -0.447213 -0.034707 -1.276967 -2.154953 2.739370 -0.794035 2.123782 -0.015963 3.453568 -1.045028 -1.543794 1.017485 -1.159521 -0.040251 -1.710943 -0.348732 -0.038771 1.176376 -1.929615 -1.714731 -0.511047 -0.004717 -1.077048 1.993207 0.453573 -0.034940 0.411932 0.351907 1.851883 2.094110 -0.784349 0.215159 -2.181079 1.098836 1.387884 -0.030133 -2.419531 -0.496842 -0.449233 -0.819578 1.177674 0.160397 1.371581 -1.220608 -0.615673 0.854788 0.279752 0.621968 0.615004 -2.822429 0.905045 0.069814 0.285457 1.235972 2.592009 1.981103 1.819163 0.656819 0.506316 -0.281527 -0.115827 -0.901196 -0.092503 0.338447 1.208649 1.313652 1.863322 1.548554 0.965450 1.686162 1.266562 -0.344304 2.256043 0.652256 3.153920 -1.041593 -0.703212 0.409149 -0.145951 2.144343 2.893151 -0.999874 -0.833068 1.471506 0.156768 -0.865549 -1.852383 0.005492 -0.672543 -0.041715 1.140486 0.923167 -0.318226 -0.562273 3.552122 -0.673011 -3.799131 1.898297 0.986007 1.548049 0.999689 -0.192497 0.585108 1.313504 -1.202112 1.487356 1.693470 1.434381 -1.883542 0.084795 0.266342 1.508776 0.406290 0.890891 -3.043975 0.047832 0.861529 2.534629 1.132866 1.465432 -1.263138 -0.680268 0.636923 -0.495012 0.267615 0.124292 1.375342 -1.216179 0.412381 -1.818782 -0.649234 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 0.515762 0.214363 0.831615 -0.980350 -1.398403 0.226744 -0.162004 -1.334449 -0.542932 1.570134 0.302456 -0.930624 -1.010867 1.258649 -0.719032 -1.191327 -0.551666 -0.199843 -0.164384 -0.930996 -0.362438 0.636837 -0.383817 -0.469952 0.157822 -0.574420 0.340675 0.932792 0.487592 0.331211 0.175609 -0.748710 0.306748 1.976238 0.801922 0.178780 -0.366190 2.535430 -0.802161 1.550022 -2.253988 -2.259109 2.015559 -0.092496 0.199895 -1.607233 -0.452345 1.138004 -1.518983 -0.127648 0.133186 -0.138680 0.322764 -0.797671 -0.263155 0.894952 -2.299434 1.516949 0.493668 -1.428466 -1.226939 -0.328326 -0.035110 0.641516 -0.786334 -1.152629 -0.085884 0.697452 -0.753347 0.358732 -0.698333 -1.086754 1.677836 0.238120 -0.789792 0.152183 -0.005881 -0.253226 0.991054 -1.016958 -1.585959 -0.762145 0.226876 -0.572577 0.876152 0.993362 1.261834 -2.714583 0.558309 -2.650026 1.046893 -0.991590 0.974988 1.529178 -1.087537 1.292954 0.728468 0.372011 0.967350 -0.129980 1.165822 0.565512 0.796254 1.012643 0.962881 1.223157 -0.866449 -1.293667 -1.214353 -1.334000 0.261923 -0.609559 -2.413109 0.514353 -0.659193 0.757605 -0.222304 -0.013814 -0.349552 1.277283 -2.891316 -0.353285 0.398296 -0.323429 1.098505 0.743250 -0.149264 0.638170 -0.182954 1.397796 -0.633061 0.484519 0.080526 1.284821 -0.406685 -1.271530 -1.944957 0.843929 0.812203 -1.029818 -1.590887 -2.115956 -0.735846 0.959424 -0.771614 1.577828 2.944078 -1.051508 -1.859466 1.581538 -0.524316 -0.002170 1.531677 0.580071 2.081312 -0.811705 -0.434262 -0.564576 -0.615682 0.689861 1.450098 -0.074760 -1.101918 1.493621 -0.023841 -0.436427 0.564982 -0.471582 -0.959056 -1.179258 0.225732 -0.775058 -0.473266 1.428962 -1.283483 1.587196 -0.853887 2.296132 -1.030780 -1.339877 0.303902 -2.590394 -0.504258 -0.660221 0.075187 -0.261283 1.176195 -1.894087 -1.014780 -0.533895 -0.651190 -0.772136 1.449929 -0.500214 0.081099 0.555116 0.190125 2.262177 1.453814 -0.144012 -0.306798 -1.365229 0.612352 1.078807 0.391750 -2.350513 -0.547803 -0.622350 -0.459274 0.502288 0.027401 1.056129 -0.723508 0.160436 0.051860 -0.500455 0.480632 0.384409 -1.204297 0.752762 -0.082323 0.916003 0.586562 1.818739 1.581096 1.531850 0.718195 0.941627 -0.004262 -0.766749 0.086382 0.531217 1.123396 0.103149 0.907055 1.693027 0.947381 0.815997 1.480969 1.121316 -0.110414 1.670412 -0.272463 2.388235 -1.647316 0.097442 -0.105744 0.540314 1.327787 2.352657 -0.591848 -0.542275 0.890749 -0.363939 -0.465211 -1.033887 0.039546 -0.473351 -0.030773 1.211287 1.484287 -0.208623 -0.475380 2.384824 -0.061603 -2.603612 1.719766 0.698573 0.789285 0.659937 -0.499278 0.068904 1.015905 -0.511543 0.662646 1.535000 0.945341 -2.000679 -0.174639 0.061593 1.309393 1.262409 0.835622 -2.751375 -0.080356 0.980125 1.906426 0.018107 1.614637 -1.402732 -0.929073 0.736688 -0.384714 -0.104912 0.321787 0.705990 -0.472797 0.661638 -1.038667 -0.914640 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 0.802645 -0.348155 1.328005 -2.332484 -0.897539 -0.514696 3.408335 -1.854959 -1.213754 3.961286 0.892858 -2.001125 -1.447119 2.365630 0.551312 -1.005214 1.214182 -0.727460 -0.903223 0.140782 -1.352765 1.136611 -0.849782 -2.247601 1.540917 -0.143000 0.911798 2.758864 -1.078568 0.544351 0.265038 -1.579454 0.878501 4.528615 1.161124 0.091047 -1.683375 5.044187 -4.243722 5.326209 -3.198499 -3.140643 5.698578 -0.768868 -0.143332 -2.930223 -0.587024 3.079916 0.234800 -3.864366 -0.188882 -0.026526 1.541665 -3.615943 -1.573599 3.345586 -3.098453 -0.211018 2.385766 -2.893647 -3.821863 -1.051694 0.384930 1.006117 -4.566844 -2.881643 -0.112552 -1.824035 -0.837210 0.168476 -3.119842 -3.033954 2.404401 0.972448 -0.857033 0.939456 -1.370551 -2.094336 2.144242 0.858891 -2.449148 -2.075286 -0.235382 -2.254931 1.888659 0.758426 3.097495 -5.833143 0.641876 -5.366656 1.914053 -2.805322 2.454075 4.233980 -0.851050 3.436711 0.424522 2.313895 -0.469974 -0.528254 2.384706 1.233038 1.980556 1.017478 3.280568 3.294681 -3.478897 -4.805265 -2.996914 -1.806614 2.095779 -1.426355 -3.177396 1.946937 -2.366017 -0.493459 0.322361 0.073074 -1.390642 4.053823 -4.316486 1.297201 1.817535 -1.112923 1.876628 2.771859 0.012671 0.025085 -0.748674 2.191012 0.068984 1.973975 -0.281366 3.541878 -1.781365 -0.790844 0.279455 0.644516 1.462030 -2.671075 -3.761684 -5.718954 -1.180914 2.234585 -2.303067 2.156790 5.710961 -1.984887 -2.653273 2.664771 0.209331 0.339450 0.645037 1.054355 4.662744 -2.880859 0.102769 -0.510309 -0.175335 2.209247 6.287589 -0.991175 -3.492681 3.236608 -1.916188 -2.615019 4.823254 0.415420 -0.420854 0.363132 0.419595 -1.360668 -2.801824 4.133203 -3.252438 3.306687 -2.308207 5.073350 -1.640448 -0.624568 1.370833 -2.861258 -1.200211 -4.478379 -0.322279 0.135460 2.529776 -2.585697 -2.539008 -1.343868 -0.828842 -0.932571 4.060682 -3.976189 -0.620603 -0.085111 -0.605516 3.003009 1.177807 -1.720056 -0.882648 -2.903165 1.421049 1.527321 0.596853 -3.607182 -1.664869 -1.160811 -1.759373 0.067517 0.287892 2.634054 -2.531214 -0.049113 2.726468 -0.212694 -1.394386 -0.456164 -5.410901 1.403015 1.113132 1.219050 1.627935 5.030205 2.731272 2.765382 -0.078897 1.351307 -1.041069 -0.527596 -5.581718 1.163960 -0.383806 1.422709 2.264174 2.458250 2.104162 1.809226 2.764556 0.185757 0.368407 3.664650 0.935127 3.587101 -0.373496 -1.253641 2.439135 -0.062334 3.115478 2.795671 0.505851 -2.863942 2.237280 -1.473919 -3.483734 -0.503060 -0.247142 -0.605745 -0.326397 2.549733 2.197073 -0.566037 -0.907084 6.062583 -1.272314 -6.942457 2.182689 1.422671 2.979110 3.125386 -0.829293 3.295794 2.200794 1.093858 2.298420 2.224568 2.352931 -3.857630 0.393056 0.550610 1.542584 3.645316 0.425353 -8.067875 -0.555569 -0.072817 4.135498 0.068254 4.573810 -2.288314 2.129668 0.520111 -0.245521 0.919572 -1.011238 2.209936 -0.330526 -0.049843 -6.101763 1.500625 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.821966 0.032456 0.446301 -1.600009 -1.286610 0.124654 0.388535 -1.238305 -0.639622 1.148555 0.492129 -1.078312 -1.108048 1.690750 -0.399584 -1.303287 0.001284 -1.095777 -0.248778 -0.146449 -0.534577 0.861806 -0.505803 -0.700258 0.468591 -0.087204 -0.052730 1.187764 0.993247 -0.393399 -0.511179 -0.721040 0.115697 2.392025 0.844808 -0.428571 -0.151619 3.457741 -1.197653 1.687818 -2.140117 -1.839183 2.591779 -0.359995 -0.520599 -2.168630 -0.855167 1.418216 -1.409697 -0.415810 0.450431 -0.221059 0.210482 -1.100066 -0.356437 1.803867 -2.995237 1.781936 1.038470 -0.538315 -1.090838 -0.756066 0.104397 0.251638 -0.970431 -1.465102 0.176321 -0.149374 -1.091040 0.048621 -1.323648 -1.379946 2.347095 0.736307 -0.817174 0.281308 -0.393871 -1.202459 1.116283 -1.229261 -1.868001 -0.675687 0.112377 -0.574470 1.694363 0.340083 1.059077 -3.234432 0.436864 -3.252240 0.653558 -1.904113 1.199443 2.341745 -1.494920 1.360549 0.397315 0.525001 0.894688 -0.053418 1.656802 0.602737 0.787303 0.722884 1.195655 1.325344 -0.885076 -1.274907 -1.074962 -1.296944 0.019656 -0.380795 -3.246271 0.970265 -1.098151 0.454890 -0.099114 0.201803 -0.671341 1.327822 -2.443288 -0.434402 0.233420 -0.497552 1.346221 1.841040 -0.261899 0.323909 -0.819319 1.661152 -0.148696 1.193082 -0.352534 1.488877 -0.666724 -1.937591 -1.862538 0.439981 0.994570 -1.400313 -2.241514 -2.560323 -0.559150 0.118581 -1.094227 1.970859 3.482973 -1.193614 -1.914260 2.224031 -0.075428 0.708811 1.828619 0.277723 2.740719 -1.042829 -0.194435 -0.185979 -0.509064 0.116106 0.795328 -0.292952 -1.245528 1.088643 -0.477544 -0.910544 1.400865 0.270182 -0.929105 -0.381330 -0.052834 -1.062985 -1.813083 2.444761 -0.919202 1.948630 -0.327263 2.812480 -0.838623 -1.343857 0.939230 -1.494905 -0.231899 -1.488581 -0.425148 -0.031391 1.174797 -1.768992 -1.256870 -0.431018 -0.128537 -1.153393 1.770460 0.004514 -0.004263 0.460553 0.346981 1.829997 1.769842 -0.716089 0.272739 -1.955615 0.917712 1.440962 -0.048841 -2.626544 -0.424679 -0.624541 -0.628170 0.913932 -0.024105 1.124952 -1.100724 -0.505913 0.666977 0.072545 0.743600 0.501963 -2.269271 0.850847 -0.266285 0.557963 0.970299 2.302725 1.589812 1.611369 0.586968 0.633442 -0.140913 -0.319374 -0.632028 0.028432 0.450039 0.630284 1.194583 1.684879 1.267897 0.862700 1.497222 1.145636 -0.381121 1.966670 0.620056 2.857851 -0.919386 -0.691034 0.232891 -0.081183 1.804229 2.747479 -0.847041 -0.745808 1.146538 -0.122256 -0.739303 -1.665403 -0.016609 -0.585571 -0.375652 1.355518 0.827316 -0.189330 -0.451696 3.033362 -0.504688 -3.412551 1.777615 0.835571 1.216817 0.852705 -0.207068 0.451546 1.306347 -0.944605 1.119722 1.639097 1.277301 -1.615626 -0.152824 0.162917 1.333117 0.724855 0.941771 -2.962339 0.267565 1.015091 2.316056 0.723578 1.567714 -1.111286 -0.627662 0.614850 -0.162470 0.140507 -0.075427 1.091246 -0.933777 0.317216 -1.568452 -0.690049 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 0.924064 -0.319289 3.432886 -5.300304 -2.038076 -2.039138 8.477284 -2.905675 -2.124263 6.497513 1.209394 -3.579172 -3.742706 4.963953 0.397050 -2.387183 1.524627 -2.554985 -2.239912 -0.715022 -1.414729 2.758843 -0.964433 -4.264729 3.051498 -0.842259 1.932285 7.577727 -1.417154 0.997866 1.876939 -2.975505 2.193813 8.050909 1.246590 0.669721 -3.705475 10.253211 -10.291717 9.836480 -7.399768 -6.755758 12.592650 -1.578794 -1.400006 -10.064486 -3.314529 5.124950 -1.022834 -6.159272 -0.906235 0.984411 2.842559 -7.355767 -2.626840 7.426863 -7.714470 -0.116989 3.942772 -6.370056 -7.155461 -1.687713 0.259593 1.680996 -8.388938 -5.399681 -0.556219 -4.981454 -1.917954 1.339623 -4.452237 -4.402910 5.793209 1.471189 -1.004419 2.494966 -1.894739 -4.710807 4.425899 0.900871 -3.685841 -4.367582 -0.029867 -3.798372 3.273436 0.600054 5.173765 -10.723265 -0.526104 -8.931748 3.580764 -6.865283 3.537930 7.065657 -1.647878 8.356140 0.147725 2.832686 -0.675947 -1.762469 3.874598 3.464896 6.883171 2.403941 6.395061 6.400416 -6.305063 -9.577662 -7.104729 -3.398710 3.760540 -4.441000 -9.511920 3.250320 -3.128200 -3.128597 1.158946 -1.482301 -2.072339 9.152085 -7.608143 6.180882 4.245940 -1.912845 1.029821 5.642934 0.043485 -0.997303 -1.286699 3.859058 0.324719 5.889207 0.358635 6.343430 -3.969421 -3.772951 1.433111 0.563880 1.131490 -4.244265 -6.306710 -10.319499 -2.300835 4.244183 -3.740071 2.340900 11.153516 -3.010817 -7.008959 4.724058 3.185483 0.526653 -0.107960 2.203509 8.817954 -4.296260 -0.912031 -2.158995 -0.730411 5.282106 14.952836 -1.520298 -6.833539 6.537077 -4.295769 -9.020431 9.272711 -0.135076 -0.133309 1.686751 0.581732 -3.991660 -5.780911 8.737253 -5.399749 8.967658 -5.982432 8.513183 -3.056962 -1.845398 1.719429 -7.594578 -2.218133 -9.712716 -0.490620 0.785588 4.068867 -4.812549 -4.754881 -4.935198 -2.030908 -1.492677 8.082501 -11.408777 -0.981964 -0.741179 -0.394510 5.521286 2.065314 -3.706122 -1.227221 -6.020080 3.185832 3.593443 2.807812 -10.175380 -2.570106 -1.027833 -3.315351 -0.265636 0.676467 4.808576 -3.793493 0.434263 5.331414 -1.292205 -4.208171 -1.729681 -12.073018 2.154160 1.586571 3.311966 2.231665 9.063019 7.126326 3.961537 -0.942442 3.821450 -1.769205 -2.058621 -10.402106 2.397422 -0.254447 0.253857 3.966727 6.385705 3.820146 2.905568 6.432759 2.892273 -0.398702 6.426882 2.443886 7.180696 -0.564798 -3.865519 4.356377 1.016935 5.301588 5.534330 4.660803 -5.093759 4.646921 -1.706757 -5.840254 -2.716189 -1.269408 -1.204816 -0.368903 9.101419 4.235604 -2.788169 -0.144341 10.886209 -1.644247 -13.533784 3.575362 3.005897 5.222942 4.081002 -1.953380 4.980373 6.009157 1.834193 3.838889 3.121812 3.512812 -7.396640 -0.648237 1.416361 2.657577 8.559015 1.508948 -18.414833 -1.842151 -0.149551 8.522884 -1.001251 11.695648 -3.778734 3.530856 1.178253 0.832671 1.248015 -1.420367 2.867771 -2.045477 -0.174938 -12.030512 2.213445 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 1.517376 0.001977 0.947377 -2.407297 -1.720183 0.295445 0.190163 -2.858524 -1.276775 2.966571 1.151740 -1.526811 -0.524838 2.376590 -0.947043 -1.623324 0.329339 0.472260 -0.460993 -0.895363 -0.679242 0.834756 -0.955779 -2.078712 0.400408 -0.715654 0.998070 1.503447 0.134748 0.925103 -0.785379 -1.488884 0.536797 4.196258 1.686459 -0.228453 -1.302732 4.342804 -2.041862 2.459819 -3.865142 -3.289167 4.063506 -0.543824 0.604210 -3.388756 -1.775958 1.953110 -0.588722 -1.557327 -0.282445 -0.964145 1.231567 -2.385093 -1.104670 2.036255 -3.042774 1.165127 1.950556 -2.392969 -2.782190 -1.096763 1.186272 0.868359 -2.653135 -2.544379 0.454717 0.848756 -0.606778 0.454786 -2.753571 -3.505973 2.508495 0.723627 -1.210986 0.169858 -1.033348 -2.645972 1.737282 -0.003729 -2.777076 -1.594596 0.293786 -1.036705 1.629482 1.020877 3.047756 -5.427579 1.286680 -5.506749 1.411336 -2.120983 2.518981 3.334910 -2.429843 1.819252 1.187103 2.668254 1.240873 0.037848 2.472856 1.378731 0.902696 0.386078 2.789333 2.401530 -1.593581 -2.838911 -1.617652 -2.326186 0.743038 -1.477138 -4.899843 1.645787 -2.316698 -0.418930 -1.336617 -0.221399 -0.636694 3.415321 -4.782339 -0.933596 1.256465 -0.951994 1.936045 2.017966 -0.287797 0.877554 -0.988275 2.087752 -0.538262 0.614864 -0.387684 2.812772 -2.085067 -2.752040 -2.475719 1.214336 1.821782 -2.936166 -3.797579 -4.319625 -1.227456 1.443991 -1.614640 2.230718 5.018299 -2.118919 -3.412942 2.500993 0.109583 -0.645768 3.163860 1.035661 4.704215 -2.697100 0.608036 -0.526067 -0.312204 1.083134 1.180147 -1.249892 -2.478383 2.732741 -1.420925 -2.265080 3.495339 -0.386281 -0.959176 -0.670024 0.709956 -1.234788 -1.358544 3.404239 -2.604683 3.010645 -1.563611 4.273515 -2.277601 -1.579152 0.772018 -3.717252 -1.366746 -1.584237 0.284146 -0.588308 3.255857 -2.688932 -2.372708 -0.519504 -1.167237 -0.747906 3.694310 -1.269181 -0.276717 0.599134 -0.416802 2.528138 2.361265 -0.866795 0.065383 -1.931150 1.420202 2.906488 0.450375 -4.081724 -1.590724 -1.926290 -1.030158 -0.736375 0.402342 2.790693 -1.865203 -0.466657 0.990180 -0.278206 0.506964 0.047617 -2.642173 1.751969 -1.011233 1.292101 0.739691 4.353926 2.511901 3.188180 0.761470 0.125475 0.176457 -1.685336 -1.888800 0.994281 0.981302 0.748752 1.827700 2.603632 1.605700 1.822668 2.413194 0.884562 0.961729 3.517922 0.514111 4.005800 -1.460646 0.072117 0.602178 -0.369786 2.999807 4.436365 0.245214 -1.443913 1.301283 -1.068104 -2.103185 -2.156242 -0.086212 -0.170085 -1.253628 1.386830 2.634439 -0.292280 -1.652941 5.225843 -0.207170 -5.316982 2.986288 1.156851 1.900135 2.559313 -1.279048 1.624758 1.597695 0.674902 1.909195 2.495038 2.352525 -3.484900 -0.536976 0.354195 2.428255 2.453461 0.644294 -4.908734 1.825225 1.518820 3.780546 0.218656 2.725535 -2.639611 0.665624 0.556864 -0.231071 0.600099 -0.254255 2.070019 -1.134178 -0.151897 -3.342226 -0.296442 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 28.259369 0.347374 19.718264 -45.906794 -24.859155 -1.682745 25.077282 -57.879060 -28.872635 81.267818 22.788923 -31.786413 -2.733515 45.924531 -13.891557 -19.608306 13.284856 18.938734 -13.130924 -16.774828 -12.570568 16.600946 -17.982829 -51.247200 10.592939 -13.180600 28.406659 34.554292 -19.535864 32.584348 -6.328757 -32.553695 17.815163 82.874416 31.334992 -0.805926 -41.756334 75.090896 -68.892182 63.075060 -79.838977 -67.789933 91.817577 -11.036108 19.260283 -75.369038 -36.411992 40.033570 16.583955 -54.538399 -18.857199 -17.138304 33.223238 -60.237502 -30.075841 41.071600 -43.802550 -3.022535 43.822652 -65.635840 -71.352616 -18.378124 32.273238 23.508951 -78.411294 -53.495902 4.098746 3.143622 -0.006427 11.320301 -61.900638 -74.502802 28.593874 9.879957 -19.973766 4.055893 -30.622947 -58.689381 35.766698 20.148124 -45.206733 -37.460831 2.926243 -28.097032 16.165102 22.858131 73.396203 -107.685107 25.954574 -104.006167 30.773723 -37.948306 50.250936 63.453425 -33.474240 41.680178 19.458323 68.263733 17.436353 -3.093812 41.374699 35.101833 28.659876 3.006503 64.006409 60.942176 -44.480490 -74.880019 -40.411023 -43.090823 31.349997 -38.866345 -87.397072 35.044142 -47.418318 -29.737437 -25.463950 -14.486458 -11.853329 88.384060 -99.077487 -2.628189 36.029698 -19.463307 28.413808 36.464145 -1.352840 13.153496 -16.068057 31.242004 -5.530607 14.451649 -0.445487 61.892719 -60.335717 -42.151300 -19.302608 25.415762 30.386159 -61.497932 -70.260822 -98.529360 -24.079667 43.273342 -33.893817 28.404767 93.705764 -40.817169 -68.703419 36.876725 9.752122 -30.592490 42.938038 22.554712 96.624194 -60.644880 16.238117 -10.200291 -0.794337 37.218571 67.011721 -30.429477 -60.222690 62.714972 -43.229145 -68.349727 83.822509 -8.156631 -8.184499 -7.676081 20.361209 -20.917505 -18.617991 65.781132 -75.673212 62.210664 -53.253637 77.564835 -47.048374 -14.306066 11.062545 -91.943261 -37.263063 -44.606353 10.355510 -11.924388 73.153512 -47.763853 -46.021490 -17.232437 -31.954394 -6.769543 84.586031 -73.943229 -10.178028 5.389671 -17.513254 50.378417 29.794178 -21.702632 -6.188536 -29.831367 28.303321 57.198429 18.170888 -85.841020 -41.663263 -42.758970 -24.626868 -34.660341 9.499731 62.365811 -40.131270 -1.550587 31.770880 -10.011212 -11.960697 -12.599356 -58.885008 36.156564 -17.923507 35.117257 8.053896 95.730833 45.457479 62.797828 4.858489 3.144104 0.473858 -42.152960 -70.891788 32.737407 14.099855 3.936623 37.556270 51.670769 28.194227 39.812179 50.716580 5.273498 26.130798 71.168406 7.494310 66.897527 -21.278896 0.884744 25.206883 -5.857039 55.939629 75.066657 32.357661 -42.375455 23.914487 -37.440920 -61.035140 -22.838824 -4.106430 1.933041 -27.304936 33.293955 63.049487 -8.994581 -33.148927 107.934288 -4.061827 -113.084671 52.679785 22.138092 42.390999 64.229296 -32.469575 51.704871 32.704516 42.101789 38.593750 45.497694 45.410569 -76.478340 -11.964029 9.845848 43.321561 76.764071 2.171076 -128.690997 37.715238 19.649803 77.812002 -12.149292 76.340985 -56.050030 42.408674 7.340539 3.212008 17.718829 -13.627181 43.290559 -13.736407 -9.906627 -92.172377 16.823600 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.713959 -0.083096 0.371307 -1.318001 -1.029836 0.206149 0.101943 -0.998730 -0.519129 0.763999 0.455125 -0.760390 -0.727994 1.385422 -0.250707 -1.126496 0.124951 -0.683709 -0.198277 -0.155883 -0.530497 0.628520 -0.473224 -0.560610 0.399410 -0.170179 -0.045177 0.827151 0.691743 -0.353015 -0.531237 -0.607968 -0.017932 2.078361 0.708898 -0.398569 -0.059584 3.012297 -0.569741 1.297661 -1.554626 -1.439853 2.052159 -0.358861 -0.371540 -1.350340 -0.682357 1.158703 -0.994497 -0.338896 0.410065 -0.258129 0.138971 -0.888247 -0.306302 1.287914 -2.244622 1.284278 0.890839 -0.337958 -0.998655 -0.756544 0.122170 0.050993 -0.930377 -1.131862 0.345570 0.089542 -0.799578 0.003001 -1.136669 -1.346272 1.915845 0.744697 -0.565852 0.276295 -0.214431 -1.105112 0.899519 -0.545620 -1.770069 -0.561780 0.078825 -0.649145 1.593761 0.180642 1.017473 -2.800359 0.587111 -3.014404 0.450348 -1.530054 1.128131 2.151284 -1.458989 1.096179 0.486381 0.834201 0.530653 -0.035636 1.568173 0.447000 0.252304 0.602023 1.186693 1.007300 -0.680969 -1.031955 -0.769499 -1.124098 0.014593 -0.329037 -2.533511 0.855576 -1.043657 0.261084 -0.289332 0.473437 -0.598560 1.090943 -1.947393 -0.630827 0.273435 -0.494651 1.222256 1.412849 -0.286250 0.289492 -0.765991 1.459221 -0.262624 0.755480 -0.475229 1.236565 -0.359283 -1.315600 -1.663205 0.275144 0.923593 -1.265800 -2.046573 -2.050236 -0.543772 0.139902 -0.900564 1.794843 2.995576 -1.110394 -1.522897 1.942190 -0.103341 0.747529 1.710359 0.314799 2.265520 -0.949246 -0.093112 -0.150747 -0.362227 0.012091 -0.144119 -0.257273 -0.851102 0.910952 -0.306625 -0.325950 1.734010 0.032637 -0.817485 -0.261307 0.046631 -0.852266 -1.599357 2.050808 -0.403597 1.534721 0.032145 2.479093 -0.706371 -1.115198 0.800720 -0.925510 -0.149196 -1.174426 -0.210623 -0.217657 1.063290 -1.335489 -1.203169 -0.195362 -0.101495 -0.890251 1.392023 0.722812 0.077470 0.417289 0.303516 1.067836 1.682581 -0.488110 0.190924 -1.624646 0.698549 1.312088 -0.198637 -1.740980 -0.293564 -0.519544 -0.509584 0.610277 0.062893 0.939290 -1.018189 -0.534389 0.464977 0.207627 0.710268 0.492087 -1.968632 0.736232 -0.219506 0.279148 0.874684 1.950076 1.498154 1.429557 0.584565 0.322453 -0.017727 -0.109104 -0.627176 -0.119114 0.247558 1.067387 0.973328 1.305732 1.159890 0.786626 1.132487 0.759632 -0.020796 1.655978 0.613819 2.601659 -0.571450 -0.481441 0.132188 -0.173505 1.625413 2.494830 -0.664428 -0.491522 0.964331 0.008515 -0.716373 -1.609537 0.009323 -0.421536 -0.262186 0.639942 0.576424 -0.155543 -0.480790 2.647038 -0.440271 -2.930791 1.474071 0.665162 1.053514 0.915523 -0.112788 0.456823 1.063440 -0.799885 1.160057 1.393839 1.174418 -1.440518 0.120024 0.107552 1.204210 0.237330 0.779370 -2.011865 0.606741 0.778251 1.803090 0.757123 0.973489 -0.915844 -0.483101 0.473632 -0.381124 0.064131 0.137835 1.065009 -0.806429 0.203496 -1.410986 -0.652719 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 1.225718 0.756865 1.864661 -3.051218 -2.358049 -0.616128 3.129570 -3.191179 -2.053476 5.448001 1.303572 -2.982752 -2.459726 3.554964 -0.691923 -2.058624 0.362375 -0.087792 -1.452419 -1.931825 -1.468938 1.424241 -0.932526 -3.148391 1.286185 -0.968638 1.453049 3.518359 -0.390274 1.226235 0.799399 -2.090244 2.047221 5.954912 1.758728 -0.097953 -2.710195 7.108721 -5.158271 5.666151 -6.070017 -5.527024 8.423855 -0.806596 0.047652 -6.139071 -1.845036 3.890135 -0.819076 -3.398454 -1.196736 -0.190978 1.595548 -4.627115 -2.397617 4.215269 -4.807826 1.626531 2.760197 -5.032608 -5.685302 -1.206395 1.080160 1.478096 -5.129551 -3.599816 -0.422954 -1.185253 -1.122057 0.907868 -3.847590 -3.941800 3.577933 0.731134 -1.092846 0.991853 -2.115557 -2.297481 2.610833 0.610993 -3.524615 -2.745691 0.812129 -1.690583 1.513408 2.034644 4.523347 -8.312012 0.234403 -8.182649 2.555748 -3.458703 3.295194 4.973255 -2.126268 4.694608 0.767838 1.803275 0.620028 -0.323253 3.069625 1.791741 3.476885 1.571544 4.253426 5.040463 -3.558895 -6.104642 -3.615849 -3.096678 2.253269 -1.608501 -6.024315 2.400037 -3.482299 -1.282602 -0.408883 -0.243890 -1.201020 5.591508 -6.144585 0.511245 2.588192 -1.398707 2.751261 3.201092 0.096277 0.900986 -0.872865 2.745860 -0.119624 2.362996 0.097097 4.466367 -2.195054 -3.793027 -1.757737 1.506060 1.815485 -3.561609 -4.820301 -7.420880 -1.821349 2.873522 -2.850395 1.749301 8.317715 -2.850431 -5.254561 3.532272 0.519897 -0.044744 2.215565 1.584368 7.927725 -3.906451 0.203098 -0.365803 -0.537856 3.413220 7.754440 -1.740375 -4.500926 4.225015 -2.046513 -4.433894 5.028851 -0.709657 -0.872359 -0.067427 0.883111 -1.838049 -3.080161 4.901211 -3.576115 5.369815 -3.826622 6.444843 -3.136113 -2.208517 1.300226 -5.680752 -2.039220 -4.000356 0.542569 -0.431387 4.296998 -3.712486 -3.383792 -1.881046 -1.874379 -1.354409 5.957465 -5.071572 -0.525732 0.312300 -0.699814 3.291349 2.214215 -2.134401 -0.771516 -3.889199 1.632704 3.670393 2.030413 -7.214828 -2.313830 -2.026092 -2.096890 -0.406894 0.349025 3.675683 -2.187528 0.449217 2.984698 -1.339979 -0.948557 -0.726152 -4.993787 2.354088 -0.179191 2.331797 1.126353 7.423288 4.339258 3.962679 0.046171 2.170319 -0.479732 -2.514287 -4.942826 1.656198 0.825782 1.094151 3.033708 3.931090 2.646423 2.687937 4.403207 0.401387 0.072103 4.942552 0.737724 6.012504 -2.630407 -0.911601 1.905071 0.289829 4.069589 5.805823 1.814704 -4.438040 2.661788 -2.362426 -3.848401 -2.287054 -0.700985 -0.475210 -0.880438 4.560361 4.506828 -1.123382 -1.309427 8.483815 -0.911754 -9.819859 4.340770 1.919900 3.209180 3.753240 -1.991081 2.864055 3.997607 1.994871 2.139209 3.666034 3.366585 -6.299595 -0.312302 0.450535 3.339224 4.870030 0.639435 -11.936065 0.420892 1.417011 5.921074 -0.522251 6.671576 -3.663703 1.543247 1.020491 0.186476 0.660159 -0.401000 2.912089 -1.175069 0.031451 -6.924752 1.224288 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 1.068509 0.251082 1.190294 -2.125617 -2.616126 0.590304 -0.422267 -2.356293 -0.768808 1.979148 0.868883 -1.083814 -0.507814 2.429808 -1.130505 -1.402977 -0.432419 -0.880244 -0.048476 -1.097596 -0.356054 1.337558 -0.820763 -0.676492 0.183973 -0.842061 0.114742 1.211437 0.439682 -0.046102 -0.278652 -1.264274 -0.014259 3.098575 1.413144 -0.463404 -0.360693 4.396166 -1.354506 1.569887 -3.447130 -3.145902 2.844525 -0.427736 0.072143 -2.916038 -1.590194 1.465711 -1.047637 0.034055 0.517816 -0.597772 0.713434 -0.862321 -0.319283 1.127923 -3.294928 1.993935 1.142980 -1.945443 -1.658763 -0.769730 0.069034 0.783286 -1.392147 -1.725989 0.501394 1.255526 -0.621748 0.152990 -0.974874 -2.065085 2.922205 0.648489 -0.959824 0.135363 0.006131 -1.877646 1.667603 -1.323105 -2.992678 -0.986944 0.054104 -1.351870 1.740402 0.583073 2.244857 -4.358018 1.161414 -4.580725 1.081870 -1.708999 1.494655 2.575291 -1.985383 1.503754 1.412476 1.477028 1.891904 0.061535 2.255167 1.131449 0.816922 1.572194 1.843720 1.916534 -0.979490 -1.362619 -1.671720 -2.192399 0.282911 -0.796754 -4.462476 1.204678 -0.862594 0.041049 -1.024073 -0.036010 -0.334060 2.916533 -3.588037 -0.688826 0.774333 -0.623513 1.033503 1.553479 -0.357728 0.810558 -0.994582 2.138578 -1.363668 1.200846 -0.218658 1.993827 -1.276312 -2.536111 -3.221471 1.050352 1.154238 -2.113874 -2.704944 -3.059030 -0.959218 0.842885 -1.309694 2.502585 4.728667 -2.265493 -3.337576 2.865426 0.684670 -0.469211 2.657096 0.768583 3.344556 -1.080224 -0.778961 -1.198594 -1.187805 0.381294 0.861678 -0.047903 -1.056797 1.990433 -0.188022 -1.786830 2.803588 -0.499158 -1.826502 -0.575161 0.529233 -1.299690 -1.375896 2.407147 -0.461944 2.426060 -0.530290 3.688987 -1.308545 -1.937538 0.476411 -2.606742 -0.591140 -1.024984 0.161315 -0.216794 1.951482 -2.049965 -1.677976 -0.469704 -1.221943 -1.408753 1.984927 -0.174325 0.571773 1.246748 0.305966 2.235588 3.056744 -0.007723 -0.112262 -1.940686 1.279161 2.154961 0.301535 -3.642430 -0.989462 -1.102113 -0.568968 0.170735 0.121229 2.156516 -1.362760 -0.150124 0.029311 -0.346992 0.966863 0.986166 -2.275873 1.337426 -0.846178 1.563822 0.653232 2.700971 2.364485 2.861848 1.430092 0.978470 -0.106501 -0.833139 0.127547 0.403932 1.652297 0.314817 1.491235 3.221749 1.882421 1.613709 2.350859 1.747024 0.578405 2.720982 -0.467608 4.263887 -2.212248 -0.063665 -0.530746 0.815774 2.485417 4.295466 -0.149147 -0.740205 1.132583 -0.336487 -1.064567 -2.374679 0.532136 -0.469919 0.076343 1.052848 2.392801 -0.091905 -1.052660 3.792429 -0.140321 -4.185322 2.647844 1.027156 1.476936 1.255199 -0.273263 0.285278 1.423382 -0.904245 1.746407 2.695242 1.706190 -2.868988 -0.888309 0.277696 2.156030 1.147516 1.934769 -4.000511 1.233713 1.572573 2.576269 -0.068436 2.236750 -2.233280 -1.236395 1.418034 -0.468811 -0.217458 1.086241 1.306930 -1.642373 0.874325 -1.650961 -1.337795 +PE-benchmarks/permutations-of-a-given-string.cpp__main = 0.778069 -0.861899 1.237895 -3.678637 -2.521315 -1.084801 -0.231157 -0.486487 -0.938112 2.217552 1.378078 -3.939157 -3.476648 3.846655 0.234191 -2.882984 1.119750 -1.583073 0.961293 -0.019516 -0.030449 1.195097 0.402432 -1.702215 0.992620 0.618128 -2.602394 2.127391 5.248218 -1.608692 -0.042722 -0.436655 1.224636 3.687910 -0.448610 -2.591370 -0.792043 5.882631 -1.383271 2.624399 -3.408210 -2.005040 5.594086 -0.939602 -0.539860 -4.454632 -2.015996 3.577298 -3.290419 -2.168580 -0.001253 1.556579 0.999535 -3.751091 -2.943682 3.637590 -6.675823 3.693545 2.466188 -0.630665 -0.330950 0.876015 -0.844934 1.093662 -0.642894 -2.468814 -0.857656 -2.268170 -2.856336 -1.057792 -1.735636 -0.213900 4.436047 1.076906 -0.702886 2.133450 0.738483 -1.529482 3.033110 -3.466764 -3.343869 -1.116864 -1.207874 -1.265295 3.925970 -0.385576 1.535282 -4.789625 1.160251 -5.474622 2.317967 -4.640464 0.910638 5.113127 -3.106732 2.876505 0.909123 -1.275475 2.934765 0.741213 4.077012 1.677481 2.062614 2.204749 2.069551 2.611408 -1.389819 -1.362652 -1.960665 -2.530015 -0.634061 -0.672805 -4.829646 2.853874 -1.171304 0.493545 2.280636 -0.583783 -1.008159 2.115012 -1.801445 -0.538588 1.143297 -0.928996 0.204551 4.134672 -0.664777 -1.320078 -1.817667 3.931611 -0.098442 2.692352 3.028497 3.133180 -0.007549 -5.058088 -1.467993 1.106249 0.039568 -2.773941 -3.160388 -5.019016 0.846765 -1.742675 -1.968999 2.786999 6.269841 -0.806887 -2.471101 4.311663 0.484957 1.355874 3.294059 0.202812 5.793346 -1.099172 -2.431358 -0.376291 -1.980662 1.234092 2.378567 0.198108 -1.608232 1.971672 -0.696846 -2.586436 0.525057 0.708595 -0.798000 0.422366 -0.095211 -3.076580 -4.327442 3.108316 0.248029 3.281423 0.524310 5.552024 1.847131 -3.310637 3.425085 0.019749 -0.357003 -1.006900 -0.913998 1.492645 -0.220261 -2.744216 -2.317943 -2.266924 0.718888 -2.490034 3.091073 -0.561602 1.351697 2.504115 0.351695 2.034902 1.332598 -2.086670 1.223551 -4.540308 0.978627 1.674365 -0.530829 -5.011178 -0.269011 -1.358558 0.149591 3.425712 -0.520265 3.230594 -1.886935 -2.048652 2.051032 0.125249 0.527785 -0.309903 -3.321115 0.887336 0.559810 2.233125 2.460035 4.988209 2.523273 2.496085 -0.575060 3.641417 -1.275841 1.485860 -1.169283 -1.227959 -1.228282 0.507309 2.178670 1.457161 2.021824 2.461617 4.148478 2.076235 -2.814894 3.907097 -0.273236 3.161845 -0.466200 -2.182483 1.694009 -0.392391 4.017177 4.767200 -0.636621 -2.767168 2.744765 -0.760586 -1.023327 -3.258588 -0.055437 -0.318332 -0.385719 3.138316 1.297695 0.628321 -0.046813 2.769991 -0.294012 -6.267804 4.648551 1.514095 2.309879 1.464391 0.561657 0.841937 1.795912 -2.237928 0.426325 3.224744 1.949432 -3.635814 -0.015380 1.297268 3.445280 0.720233 3.313946 -6.378629 -1.224740 1.603144 1.725653 0.840745 2.674792 -2.401999 -3.700965 1.719137 0.508427 -0.800868 -2.035920 -0.450909 -2.905554 0.026328 -0.193667 -0.105178 +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.002255 0.225093 0.761669 -1.228362 -1.413046 -0.209522 0.434223 -0.754763 -0.288063 0.426486 0.631830 -0.728569 -0.510545 1.525614 -0.461583 -0.836806 -0.267690 -0.313163 -0.401120 -0.370086 -0.015486 0.806454 -0.230706 -0.356162 0.347547 -0.326897 -0.073703 0.945853 0.295571 -0.374003 0.096127 -0.565352 0.347164 1.440505 0.199094 0.146709 -0.380735 2.065039 -0.991159 1.132860 -1.809424 -1.253237 1.709950 -0.331474 -0.070567 -2.280616 -1.358071 0.831387 -0.455431 -0.347783 0.213376 0.158548 0.283127 -0.854282 0.090471 0.841732 -1.661219 0.903102 0.773742 -1.170207 -0.607571 -0.182248 -0.410252 0.097262 -0.647562 -0.918608 -0.112939 0.268522 -0.281144 0.110845 -0.155053 -1.004667 2.005157 0.095602 -0.357223 0.561902 0.142542 -0.996723 1.054882 -0.748079 -1.177215 -0.604406 0.378564 -0.021612 0.736039 0.145300 0.877959 -2.086747 -0.130145 -1.982414 0.816779 -1.177665 0.549364 1.206118 -1.018095 1.057189 0.582173 -0.081790 0.945004 0.503457 1.049673 0.604241 1.005415 0.713218 0.889329 0.880842 -0.520928 -1.011031 -1.099436 -1.341519 0.343030 -0.439607 -2.345261 0.611325 -0.060209 -0.189243 -0.246762 -0.217342 0.359786 1.587814 -1.109304 0.565264 1.058774 -0.336468 -0.005926 1.147587 -0.211676 -0.082905 -0.737357 0.877971 -0.640677 1.064672 0.068067 1.073450 -0.453915 -1.966497 -1.076359 0.174304 0.050365 -0.952302 -1.096041 -1.458226 -0.146737 0.559969 -0.787655 0.274924 2.387877 -1.153808 -1.741153 1.368347 1.502692 -0.157773 0.633595 0.457733 1.825040 -0.469370 -0.548253 -0.715215 -0.792995 0.652556 1.162164 0.131249 -0.983988 1.022654 -0.201623 -2.712224 1.957801 -0.397269 -0.618595 0.454726 0.339991 -0.867123 -0.813965 1.302233 0.465716 1.690356 -0.681889 1.762144 -0.708278 -1.073752 0.259671 -0.866224 -0.223992 -0.804418 0.057993 0.441838 0.804639 -0.914600 -0.786540 -0.533915 -0.879522 -0.640643 0.951170 -0.960126 0.189543 0.347724 0.140507 0.490176 1.285724 -0.141887 0.170067 -1.190170 0.727546 0.754505 0.500929 -2.375876 -0.272137 -0.419632 -0.336742 -0.025082 0.038893 0.915119 -0.166169 -0.027487 0.316818 -0.726927 -0.040095 -0.011504 -0.834067 0.276968 -0.423072 1.087237 0.123797 1.299117 1.675316 1.286265 0.512355 0.785683 -0.157863 -0.459042 -0.141042 0.306761 0.359381 -0.104867 0.859645 1.476977 1.034413 0.620392 1.539011 0.791609 0.215003 1.456749 0.053798 2.047880 -0.653898 -0.392997 0.074644 0.459910 1.351059 2.040476 0.466519 -0.404466 0.723691 0.203640 -0.573183 -1.085727 0.071467 -0.110657 -0.513231 1.643852 0.972736 -0.319667 -0.211409 1.745234 -0.185149 -1.967949 1.128540 0.382128 0.887432 0.159655 -0.017671 0.180623 1.016119 -0.296355 0.549914 0.992022 0.996568 -1.589842 -1.136509 0.186708 0.885174 1.171828 1.062790 -2.577650 0.229645 0.764207 1.333497 -0.565798 1.283537 -1.058128 -0.565898 0.610717 0.119448 -0.222530 0.269199 0.135528 -0.957416 0.058767 -0.983273 -0.617215 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 2.060009 0.171411 1.761647 -3.889399 -1.863603 -0.428787 2.968557 -4.058078 -1.834138 4.864077 1.721064 -3.196405 -1.701620 3.174859 -0.716044 -2.130335 1.742301 0.388023 -1.103535 -1.127430 -1.623713 0.999005 -1.213300 -3.396632 1.159973 -0.803606 1.854574 3.514002 -0.071140 0.638961 -0.603389 -2.069434 1.383998 6.756266 2.232916 -0.287238 -2.664024 6.812306 -3.506519 5.411470 -6.070111 -3.506556 7.229597 -0.932016 0.501883 -6.667816 -2.297967 3.751023 -0.391357 -3.580364 -0.927271 -1.122534 2.061836 -4.849645 -2.456287 5.037664 -4.174250 0.965667 3.541503 -4.231809 -4.868105 -1.346747 1.763747 1.485704 -5.300398 -4.495695 0.473304 -0.709436 -1.463250 1.386233 -5.269733 -5.152793 3.552130 1.116791 -1.844840 0.638842 -2.429135 -3.712502 2.498988 0.554592 -3.472352 -2.960389 0.751196 -1.590522 2.219195 0.860389 4.532566 -8.634351 0.672099 -8.314678 2.253644 -4.204564 4.168795 5.535305 -2.090709 4.001452 0.583046 2.046927 0.298779 0.298627 3.530067 1.786266 2.423648 0.149395 4.842340 3.864876 -2.913659 -5.969765 -2.513734 -2.995103 1.599947 -1.390512 -6.690609 2.889302 -4.636841 -0.385279 -1.147114 0.095495 -1.045126 5.658574 -5.748992 -0.381569 2.479759 -1.704296 3.107549 4.319164 0.038980 1.081389 -1.616371 3.035042 0.458768 2.097472 -0.661450 4.746367 -2.729296 -4.458935 -2.158063 0.948666 2.728572 -4.059746 -6.109703 -6.839721 -2.348940 1.993218 -2.955700 2.986042 7.759415 -2.810827 -4.854186 3.527755 0.499805 -0.282962 3.235347 1.509761 8.305101 -5.071647 1.463115 -0.633312 0.428020 2.745640 5.623469 -2.682162 -5.024088 4.503865 -2.964609 -4.778589 6.165509 0.178112 -0.514094 1.590555 0.372197 -1.090818 -3.706521 5.803370 -4.018135 5.917518 -3.228587 7.352240 -3.321704 -2.229841 1.560973 -3.550540 -1.577619 -3.387595 0.664525 -0.345560 5.076394 -3.606967 -4.147164 -1.049107 -1.982968 -0.642957 6.537053 -3.130323 -1.010436 0.084612 -1.409538 4.228195 2.540055 -2.473526 -0.032904 -3.787344 2.473960 3.694712 1.643913 -6.011155 -2.487973 -2.516648 -2.309583 -1.501030 0.681728 4.435204 -3.111267 -0.566538 2.816434 -0.439277 -0.458598 -0.654954 -5.769980 2.789193 -0.685708 1.346433 0.970471 7.524090 4.012971 4.227871 0.044154 0.084770 -0.528100 -2.272881 -5.518132 1.665626 0.629741 1.122855 2.811943 3.340735 2.254605 2.642676 4.132945 0.008454 1.016049 5.357449 1.143081 5.451493 -2.213571 -0.480738 2.278347 -1.236578 4.811480 5.972711 1.072879 -4.190732 2.506228 -1.662079 -4.247824 -3.630095 -1.124941 -0.162351 -2.066934 3.586472 3.710278 -1.006182 -2.136323 8.853165 -0.609007 -9.322021 4.333003 1.803464 2.830353 4.208073 -1.989692 3.444072 3.337811 1.735574 1.999343 3.187205 3.757544 -5.339607 -0.879379 0.684720 3.050969 3.880606 0.192070 -10.489820 0.648939 1.897540 6.813478 0.475721 5.977023 -3.658946 2.523164 0.925051 0.355235 1.078226 -1.214964 3.248800 -1.857882 -0.813917 -6.677406 1.485655 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = -0.058941 0.117925 0.580296 -0.915040 -0.748446 -0.307250 0.920610 -0.416419 -0.177758 0.379906 0.507050 -0.626084 -0.198705 1.231802 -0.118689 -0.327250 0.050110 -0.363405 -0.457795 -0.039583 0.098649 0.627782 -0.076615 -0.384247 0.335667 -0.106431 0.004818 0.924957 -0.201956 -0.211054 0.145603 -0.331542 0.378815 1.018090 -0.000280 0.125001 -0.384673 1.383357 -1.380585 1.324262 -1.183976 -0.724872 1.447350 -0.231246 -0.219219 -1.840365 -1.194342 0.608921 0.210778 -0.784938 0.016527 0.212723 0.232957 -0.835832 -0.035656 0.878487 -1.074005 0.090242 0.599832 -0.862557 -0.606136 -0.106372 -0.186097 0.038304 -1.028290 -0.696165 -0.110651 -0.305297 -0.071421 0.145919 -0.180713 -0.811129 1.299107 0.059823 -0.142446 0.471445 0.012492 -1.041882 0.855539 -0.115983 -0.604710 -0.448129 0.111825 -0.260214 0.503394 -0.148084 0.694642 -1.478498 -0.191340 -1.254525 0.574029 -1.045342 0.305886 0.916956 -0.535810 0.868536 0.198111 0.311239 0.346031 0.360256 0.684848 0.616973 0.923125 0.383658 0.927672 0.790108 -0.662381 -1.061214 -0.977730 -0.900771 0.580673 -0.543402 -1.701702 0.427733 -0.006726 -0.616233 -0.011285 -0.283600 0.276452 1.545927 -0.620803 0.957602 0.951584 -0.235856 -0.333846 0.963738 -0.112953 -0.250394 -0.602412 0.562511 -0.213810 0.966884 0.126303 0.736770 -0.727889 -1.169579 0.000645 0.010861 -0.164511 -0.650732 -0.759550 -1.318717 -0.053722 0.624685 -0.564116 0.007035 1.601895 -0.653329 -1.226788 0.876189 1.578567 -0.264192 -0.019420 0.283749 1.398187 -0.459624 -0.345920 -0.534317 -0.461617 0.633533 1.558210 -0.008059 -0.834401 0.743752 -0.465742 -2.713345 2.255178 -0.255503 -0.199203 0.744141 0.214056 -0.653616 -0.765331 1.174081 0.179648 1.382783 -0.792043 1.207809 -0.395751 -0.480445 0.230484 -0.584656 -0.187780 -1.153821 -0.001648 0.364437 0.667923 -0.463336 -0.579747 -0.517017 -0.663147 -0.345095 0.831541 -1.502758 0.109588 0.048822 0.036238 0.153202 0.612940 -0.322096 0.059315 -0.855427 0.502182 0.565427 0.448334 -1.748273 -0.145585 -0.327577 -0.277827 -0.392434 0.016085 0.653719 -0.349711 -0.033442 0.515301 -0.583974 -0.516334 -0.271856 -1.214347 0.169574 -0.221504 0.846139 0.064682 1.019665 1.292926 0.722195 0.122047 0.531793 -0.176593 -0.282875 -1.085087 0.357692 -0.004687 -0.156524 0.602407 1.140530 0.632822 0.442016 1.126332 0.467557 0.286228 1.005471 0.327746 1.236639 0.093149 -0.469265 0.332592 0.281241 0.940538 1.269434 0.865910 -0.488236 0.522670 0.065443 -0.793807 -0.572092 -0.161927 -0.068793 -0.437105 1.427984 0.507774 -0.358277 0.021899 1.319958 -0.121629 -1.585825 0.482907 0.266375 0.692140 0.340491 -0.117896 0.576199 0.866965 0.144258 0.497044 0.520631 0.660337 -1.113369 -0.872714 0.161510 0.409550 1.269272 0.660701 -2.413122 0.211103 0.240226 1.062232 -0.624387 1.361626 -0.675488 0.200218 0.327434 0.256962 -0.119065 -0.001400 0.140855 -0.703640 -0.135724 -1.411904 -0.086990 +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.002255 0.225093 0.761669 -1.228362 -1.413046 -0.209522 0.434223 -0.754763 -0.288063 0.426486 0.631830 -0.728569 -0.510545 1.525614 -0.461583 -0.836806 -0.267690 -0.313163 -0.401120 -0.370086 -0.015486 0.806454 -0.230706 -0.356162 0.347547 -0.326897 -0.073703 0.945853 0.295571 -0.374003 0.096127 -0.565352 0.347164 1.440505 0.199094 0.146709 -0.380735 2.065039 -0.991159 1.132860 -1.809424 -1.253237 1.709950 -0.331474 -0.070567 -2.280616 -1.358071 0.831387 -0.455431 -0.347783 0.213376 0.158548 0.283127 -0.854282 0.090471 0.841732 -1.661219 0.903102 0.773742 -1.170207 -0.607571 -0.182248 -0.410252 0.097262 -0.647562 -0.918608 -0.112939 0.268522 -0.281144 0.110845 -0.155053 -1.004667 2.005157 0.095602 -0.357223 0.561902 0.142542 -0.996723 1.054882 -0.748079 -1.177215 -0.604406 0.378564 -0.021612 0.736039 0.145300 0.877959 -2.086747 -0.130145 -1.982414 0.816779 -1.177665 0.549364 1.206118 -1.018095 1.057189 0.582173 -0.081790 0.945004 0.503457 1.049673 0.604241 1.005415 0.713218 0.889329 0.880842 -0.520928 -1.011031 -1.099436 -1.341519 0.343030 -0.439607 -2.345261 0.611325 -0.060209 -0.189243 -0.246762 -0.217342 0.359786 1.587814 -1.109304 0.565264 1.058774 -0.336468 -0.005926 1.147587 -0.211676 -0.082905 -0.737357 0.877971 -0.640677 1.064672 0.068067 1.073450 -0.453915 -1.966497 -1.076359 0.174304 0.050365 -0.952302 -1.096041 -1.458226 -0.146737 0.559969 -0.787655 0.274924 2.387877 -1.153808 -1.741153 1.368347 1.502692 -0.157773 0.633595 0.457733 1.825040 -0.469370 -0.548253 -0.715215 -0.792995 0.652556 1.162164 0.131249 -0.983988 1.022654 -0.201623 -2.712224 1.957801 -0.397269 -0.618595 0.454726 0.339991 -0.867123 -0.813965 1.302233 0.465716 1.690356 -0.681889 1.762144 -0.708278 -1.073752 0.259671 -0.866224 -0.223992 -0.804418 0.057993 0.441838 0.804639 -0.914600 -0.786540 -0.533915 -0.879522 -0.640643 0.951170 -0.960126 0.189543 0.347724 0.140507 0.490176 1.285724 -0.141887 0.170067 -1.190170 0.727546 0.754505 0.500929 -2.375876 -0.272137 -0.419632 -0.336742 -0.025082 0.038893 0.915119 -0.166169 -0.027487 0.316818 -0.726927 -0.040095 -0.011504 -0.834067 0.276968 -0.423072 1.087237 0.123797 1.299117 1.675316 1.286265 0.512355 0.785683 -0.157863 -0.459042 -0.141042 0.306761 0.359381 -0.104867 0.859645 1.476977 1.034413 0.620392 1.539011 0.791609 0.215003 1.456749 0.053798 2.047880 -0.653898 -0.392997 0.074644 0.459910 1.351059 2.040476 0.466519 -0.404466 0.723691 0.203640 -0.573183 -1.085727 0.071467 -0.110657 -0.513231 1.643852 0.972736 -0.319667 -0.211409 1.745234 -0.185149 -1.967949 1.128540 0.382128 0.887432 0.159655 -0.017671 0.180623 1.016119 -0.296355 0.549914 0.992022 0.996568 -1.589842 -1.136509 0.186708 0.885174 1.171828 1.062790 -2.577650 0.229645 0.764207 1.333497 -0.565798 1.283537 -1.058128 -0.565898 0.610717 0.119448 -0.222530 0.269199 0.135528 -0.957416 0.058767 -0.983273 -0.617215 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.187887 0.086533 0.391515 -0.474035 -0.309552 -0.137872 0.428170 -0.226878 -0.197557 0.047409 0.140333 -0.271662 -0.558366 0.363487 -0.129131 -0.499591 0.009117 -0.419752 -0.282835 -0.235764 -0.213974 0.176236 -0.081226 -0.331614 0.369902 -0.138268 0.020108 0.627198 0.233063 -0.332846 0.085486 -0.174160 0.216439 0.848387 0.053215 -0.031215 -0.031425 1.131050 -0.228839 0.304085 -0.635439 -0.616542 1.100863 -0.225020 -0.258444 -0.851814 -0.280476 0.518757 -0.661639 -0.052073 0.029063 0.089283 -0.015219 -0.659418 -0.178572 0.782802 -1.155081 0.619783 0.331979 -0.337193 -0.539726 -0.206138 -0.144351 -0.236521 0.032684 -0.537712 0.046824 -0.128794 -0.450128 0.215989 -0.311322 -0.323390 1.061391 0.098994 0.022344 0.378032 -0.044702 -0.230656 0.399983 -0.247180 -0.432938 -0.421519 0.284979 0.005208 0.624712 0.017458 0.077668 -1.067641 -0.208592 -0.948584 0.313834 -0.721371 0.407560 0.669203 -0.534738 0.796700 0.105604 -0.311393 -0.143306 0.040775 0.635062 0.001585 0.477225 0.315565 0.388850 0.205112 -0.308527 -0.573019 -0.475900 -0.412463 0.040068 -0.100486 -1.044590 0.299124 -0.404172 0.059651 0.092825 0.023899 -0.038981 0.445266 -0.578056 0.252801 0.375616 -0.207094 0.295972 0.567780 -0.050827 -0.099888 -0.271594 0.531633 -0.038912 0.432603 -0.130946 0.517411 0.294509 -1.029351 -0.481080 -0.118941 0.156740 -0.393816 -0.749283 -0.570654 -0.170731 0.050053 -0.374862 0.332561 1.185074 -0.281833 -0.704731 0.700197 0.343466 0.519554 0.431643 0.277526 0.886135 -0.370017 -0.131809 -0.092765 -0.127892 0.426623 -0.040972 -0.168616 -0.509352 0.487363 0.088855 -0.349755 0.723334 -0.132775 -0.104827 0.486039 -0.016033 -0.417633 -0.705329 0.788324 0.618125 0.968464 -0.009491 1.055808 -0.362490 -0.655227 0.194008 -0.096302 0.001562 -0.495923 -0.079175 0.014545 0.190260 -0.527375 -0.584653 -0.279847 -0.046007 -0.216496 0.667887 0.120446 0.060927 -0.034344 0.036169 0.057872 0.463119 -0.416362 0.149982 -0.834751 0.243745 0.378937 0.272363 -0.992214 0.007857 0.057495 -0.237707 0.427875 0.073649 0.388081 -0.053929 -0.062204 0.415841 -0.096837 -0.073454 -0.055919 -0.570931 0.104240 -0.045249 -0.000478 0.226372 0.793898 0.929245 0.298044 -0.051526 0.337075 -0.039098 -0.103867 -0.235743 -0.113455 -0.113843 0.506483 0.388583 0.421299 0.459004 0.224220 0.556106 0.397935 -0.178765 0.695915 0.409391 0.980414 -0.389520 -0.316961 0.170680 0.044735 0.678929 0.702204 -0.138538 -0.363807 0.487820 0.275283 -0.111774 -0.755225 -0.185962 -0.138813 -0.144251 0.778301 0.255157 -0.314445 0.016808 1.068695 -0.157317 -1.099361 0.624997 0.316290 0.389385 -0.081061 -0.048639 0.022859 0.684161 -0.267181 0.062048 0.277932 0.519461 -0.723803 -0.060890 0.095981 0.553687 -0.040012 0.320585 -1.137061 -0.200851 0.220320 0.706236 0.151377 0.471316 -0.275901 -0.303833 0.087062 0.043799 0.011087 0.199811 0.217716 -0.493250 0.042198 -0.573902 -0.108857 +PE-benchmarks/cutting-a-rod.cpp__main = 0.570913 0.042775 0.438397 -1.067017 -0.645443 0.004452 0.318146 -0.990540 -0.462442 0.670558 0.414718 -0.852806 -0.798545 1.101623 -0.367157 -0.863247 0.129914 -0.283022 -0.347851 -0.381504 -0.405468 0.293215 -0.299091 -0.903546 0.345230 -0.220567 0.278267 0.964040 0.606288 -0.135751 -0.288689 -0.457580 0.343897 1.860979 0.575214 -0.143087 -0.295504 2.309201 -0.780823 1.183474 -1.708368 -1.326787 2.224017 -0.279771 -0.332090 -1.805621 -0.775145 1.019180 -1.089639 -0.372753 -0.070854 -0.255258 0.224861 -1.188205 -0.541524 1.556821 -2.006308 1.126583 0.775187 -0.797486 -1.215398 -0.498447 0.296963 0.138892 -0.750622 -1.167361 0.154465 0.023059 -0.830616 0.269961 -1.183642 -1.184438 1.880491 0.316542 -0.443166 0.266960 -0.482545 -0.781387 0.704740 -0.358228 -1.096852 -0.678575 0.387188 -0.284087 1.037201 0.350714 0.910205 -2.475570 0.003138 -2.451328 0.599834 -1.398017 1.066719 1.510581 -1.166966 1.170908 0.207578 0.258740 0.223888 0.202166 1.155979 0.356171 0.619973 0.231547 1.158022 0.867433 -0.578895 -1.289018 -0.686315 -0.906618 0.066839 -0.296079 -2.545196 0.692814 -1.249412 0.280569 -0.230905 0.149627 -0.352860 1.124867 -1.673735 -0.097526 0.392386 -0.413568 1.068900 1.321805 -0.096624 0.268752 -0.466674 1.037173 0.054555 0.571534 -0.268219 1.133642 -0.336369 -1.740517 -1.277648 0.262598 0.760313 -1.049644 -1.743936 -1.734195 -0.573693 0.388727 -0.758021 1.095577 2.483258 -0.699036 -1.536264 1.277971 0.093755 0.560539 1.426482 0.400884 2.491028 -1.169208 0.242107 -0.052222 -0.073152 0.514625 0.417932 -0.622925 -1.153169 0.952047 -0.347118 -0.945224 1.503894 0.007985 -0.310271 0.177620 0.006353 -0.625206 -1.361260 1.821464 -0.426315 1.710123 -0.479449 2.193136 -0.980169 -1.090763 0.551106 -0.896845 -0.305860 -0.846144 -0.061789 -0.230325 1.177041 -1.219375 -1.126760 -0.281708 -0.284086 -0.428189 1.785500 0.059335 -0.116070 0.097254 -0.157652 1.005396 0.962506 -0.758903 0.222258 -1.475689 0.568318 1.317460 0.254079 -2.114327 -0.383186 -0.522449 -0.493336 0.250368 0.124442 1.003721 -0.728917 -0.280010 0.597604 -0.029770 0.332661 -0.007340 -1.455526 0.645232 -0.257268 0.261875 0.530696 2.056658 1.383896 1.058736 0.098089 0.309399 -0.064139 -0.652343 -0.677007 0.104100 0.202612 0.658396 0.813712 1.181297 0.701768 0.649478 1.099426 0.498654 -0.083757 1.495102 0.669710 1.933927 -0.890651 -0.396014 0.300587 -0.268674 1.397753 2.008575 -0.438163 -0.855728 0.778589 -0.054799 -0.664386 -1.501940 -0.294336 -0.231649 -0.506757 1.259554 0.882654 -0.211828 -0.450234 2.516631 -0.170167 -2.678227 1.434756 0.575195 0.761118 0.759107 -0.480034 0.415418 1.097362 -0.092845 0.470336 0.957522 1.018459 -1.477587 -0.151497 0.127180 1.133150 0.562934 0.312530 -2.451257 0.340437 0.722982 1.885783 0.460709 1.166504 -0.878980 -0.016758 0.191098 -0.038423 0.215869 -0.076895 0.836576 -0.767570 -0.011989 -1.424327 -0.195157 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 1.192728 0.065144 1.332800 -2.317815 -0.879341 -0.680726 3.692574 -2.274130 -1.574519 4.072151 0.708035 -2.066535 -2.206666 2.742583 -0.148475 -0.834370 0.963732 -0.255220 -1.071239 -0.692542 -1.353467 1.059373 -0.770675 -2.539252 1.388685 -0.244953 1.185283 3.164628 -0.489208 0.796590 0.401366 -1.575089 1.135640 4.501189 1.170617 0.008293 -2.184492 5.846223 -5.543958 5.326514 -4.589609 -3.949868 6.984572 -0.734152 -0.532167 -5.680662 -1.767277 3.049451 -0.351178 -3.436257 -0.881564 -0.146714 1.210796 -3.840213 -1.748590 4.321005 -4.147446 0.325755 2.411819 -3.878200 -4.756231 -0.855212 1.142567 0.917166 -4.860100 -3.168301 -0.215299 -1.905197 -1.102407 0.712194 -3.623509 -3.119217 2.722780 0.597779 -0.888102 0.838754 -1.749024 -1.950988 2.021672 0.808509 -2.229963 -2.145889 0.332759 -2.124021 1.328004 1.295251 3.671787 -6.468507 0.160319 -5.997998 1.670286 -3.715000 2.507700 4.001457 -0.849445 4.066681 0.300184 1.799415 -0.211583 -0.212630 2.205187 1.866234 2.753048 0.832428 3.738058 3.719272 -3.193999 -5.380553 -3.328358 -1.848190 1.927965 -1.459830 -5.379749 1.920523 -2.979629 -0.871620 0.057339 -0.107865 -1.145870 4.673861 -4.809890 2.315529 1.895209 -1.083062 1.958082 3.591256 0.139530 0.145538 -0.807526 1.914435 0.276407 2.628925 0.007715 3.485769 -2.434697 -2.557473 -0.275760 0.642427 1.369107 -2.635353 -3.689059 -6.053746 -1.412903 2.753717 -2.254718 1.476449 6.662843 -1.971792 -3.660517 2.364460 0.360345 0.424791 1.102771 1.135329 6.892953 -3.106888 0.330793 -0.221581 0.045472 2.575505 6.611304 -1.415800 -3.799044 3.187820 -2.036331 -4.319571 5.424012 -0.024260 -0.171980 0.891513 0.566524 -1.113934 -3.262733 4.812575 -4.062678 4.466281 -3.271758 4.947386 -2.087749 -0.793282 1.086835 -4.169351 -1.332103 -4.524884 0.091738 -0.627634 3.419233 -2.663682 -2.533034 -1.855975 -1.734731 -0.716769 5.418993 -5.094426 -0.638604 -0.179620 -0.825981 3.204100 0.932662 -2.014219 -0.556094 -3.731217 1.540511 2.638925 1.089588 -6.040693 -1.771754 -1.354925 -1.769928 -0.781580 0.310538 2.813289 -2.267978 0.155399 2.682453 -0.383653 -1.438890 -0.829863 -5.181656 1.481379 0.420368 1.884189 1.272795 6.052386 3.253512 2.800774 -0.382907 1.701610 -0.722720 -2.007648 -5.356971 1.468157 -0.110266 0.952459 2.202644 2.900269 1.821118 1.915835 2.848805 0.011221 0.376412 3.833426 1.721099 4.173533 -1.730633 -1.938160 2.198982 -0.125422 2.932749 3.467495 1.229610 -3.170383 2.034358 -1.760469 -3.922116 -1.647291 -0.552126 -0.442220 -1.041386 4.313221 3.540947 -0.747000 -0.908090 6.992800 -0.987718 -8.574863 2.693236 1.360261 2.659539 3.691659 -1.125164 3.122990 2.987379 2.289717 1.623052 2.332215 2.249101 -4.576220 0.023379 0.598338 2.086931 4.260530 -0.011750 -10.743689 0.365693 0.453156 5.167866 -0.378849 5.693056 -2.404528 2.725653 0.614712 0.081480 0.936704 -0.866802 2.581212 -0.534168 -0.420180 -6.801314 1.708200 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 2.458204 -10.576063 2.802171 -5.554354 -1.223984 -1.142521 6.125730 -2.818557 -9.044472 10.928375 0.155893 -3.506432 -17.847747 6.002172 0.371593 -11.257593 1.956524 2.351419 -1.331733 -7.245827 -2.925783 1.750932 -1.403865 -4.345506 3.169952 -0.353118 1.886661 10.878666 -2.786010 6.947796 -0.117493 -2.878404 1.284438 9.263211 2.396135 -0.454465 -9.115614 25.490960 -19.595623 21.338451 -16.462216 -22.712614 32.531676 -1.555735 -6.394921 -28.528408 -3.762377 6.030033 -11.284920 -3.904282 0.660047 0.261042 2.169431 -7.020033 -2.894528 12.574142 -14.152413 3.901228 3.694039 -10.537769 -22.669526 -3.020303 7.251928 1.627754 -14.725156 -5.804038 0.289006 -9.029743 -5.219575 1.332366 -13.639456 -10.540641 3.445733 3.016961 -2.306929 1.888980 -2.173974 -3.166910 3.505270 11.652852 -14.493162 -4.160112 0.058923 -2.975283 5.918697 1.133167 12.197410 -27.797773 -4.666175 -29.697432 2.987926 -11.422005 4.731657 18.343270 -12.393151 12.145797 -0.574720 15.047370 -1.102442 -10.083597 4.665344 11.004053 -0.297326 1.807099 14.915191 14.679404 -5.648490 -24.994897 -9.119749 -2.249320 0.745671 -9.746395 -39.492997 3.353336 -12.596135 -3.055858 1.962083 10.185144 -4.781364 14.093748 -20.987134 9.506617 1.182307 -2.158485 5.294701 10.250311 -0.221444 0.205629 -0.562119 5.547552 1.600700 8.872081 -1.288487 6.398884 -10.161834 2.044530 -2.152159 0.547622 3.792663 -3.864629 -8.472152 -19.500251 -3.486701 10.311243 -3.719290 4.585824 15.526846 -1.942688 -15.342374 5.972386 -15.841669 -0.162681 3.264817 1.683991 28.714096 -5.049577 0.462375 -0.508072 0.480791 -6.025766 17.304431 -2.168180 -6.665214 5.796928 -10.320748 -6.569512 12.983467 -5.199535 -0.547521 -7.059922 -1.308067 -4.253474 -11.358230 18.012758 -28.534120 11.914190 -12.781843 10.310176 -3.418507 -3.645604 3.016859 -34.749921 -7.830530 -12.489015 -2.005325 -6.671272 12.271360 -7.067949 -5.564549 -14.818639 -7.905799 -2.163599 24.818110 -11.858082 -2.021626 -0.864389 0.530769 16.414945 12.074271 -4.712836 -0.118845 -11.061874 3.285463 19.886887 -8.659103 -21.834790 -1.915623 -0.196565 -3.779199 -4.730187 0.662180 3.884275 -7.265717 -1.189485 4.823547 0.755846 -1.184966 -0.005520 -26.260741 2.543741 2.747616 9.244782 14.292053 26.072369 9.623580 3.477478 -0.693742 6.668463 5.249946 -10.137857 -24.273547 0.419926 -0.109017 2.332137 3.882578 7.381659 3.850785 1.885292 5.326250 3.884049 -3.566775 6.264676 11.773183 11.131960 -1.904132 -7.971567 4.286089 -1.079858 5.393343 24.237420 0.450729 5.031059 5.765521 -0.801943 -12.275055 -8.089245 -1.429237 -2.547500 -6.650188 15.080524 18.741194 -2.612267 -0.369244 28.648948 -2.517729 -38.670399 4.727105 3.766079 4.979518 28.674304 -1.819463 3.234070 9.331820 14.085243 13.776301 3.226855 3.608826 -15.161359 8.995908 1.114411 3.071777 14.040391 -6.660916 -22.017687 11.489899 0.758749 26.309552 4.128681 22.667151 -2.701951 17.138503 0.649995 -10.270890 1.950732 -2.198965 11.374491 -1.753303 -6.517923 -29.693846 -8.567373 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 1.710830 -10.108666 2.558136 -4.770871 -0.600607 -1.985417 8.729707 -1.440734 -9.036619 11.599623 -0.104188 -2.802976 -17.285453 5.462544 1.423483 -9.499028 2.175880 1.386287 -1.720163 -6.355246 -2.608069 2.334966 -1.017868 -3.423933 3.547477 0.516737 1.230282 10.709537 -4.943676 6.575651 1.046218 -2.581914 1.392027 7.360471 1.209678 -0.493775 -9.682032 23.674519 -21.849743 21.511518 -15.039053 -21.644004 31.581040 -1.545719 -6.304271 -28.489151 -3.339822 5.734855 -7.629247 -5.646659 0.420914 1.323117 1.897036 -6.679985 -2.530788 11.811437 -12.245689 1.408914 3.634797 -10.689364 -22.472695 -2.149108 7.047568 1.280392 -15.754294 -5.059105 -0.368913 -11.144246 -3.724013 0.968333 -12.508569 -9.465989 0.746215 2.595388 -1.323648 2.213199 -2.164823 -3.033711 3.558907 12.603233 -13.056733 -3.683090 -0.675973 -3.437925 4.364671 0.369147 11.584856 -25.721302 -4.914625 -27.103927 2.324816 -10.624219 3.236261 17.244332 -9.766220 11.923824 -1.118079 14.977704 -1.706744 -10.533264 3.510646 11.157215 0.632449 2.221276 14.176459 14.956681 -6.512896 -24.985424 -9.919787 -1.589974 2.330957 -9.656234 -36.500846 3.151371 -10.648049 -5.402295 3.137183 9.331910 -4.056334 14.777550 -19.108619 11.703388 1.975375 -1.784190 3.011658 9.814084 0.066612 -1.002177 -0.649150 4.212569 1.770556 10.190856 -0.347878 5.743781 -10.796754 3.980183 1.631268 -0.098435 2.081992 -3.000329 -6.162595 -19.150293 -2.248568 10.458944 -3.667720 2.338426 13.770012 -1.742462 -14.099321 4.918634 -14.025407 -1.411385 -0.481775 1.117714 26.962885 -3.756304 -0.638404 -0.398953 0.147357 -5.523890 20.648422 -1.184470 -6.176435 5.075143 -10.764953 -8.669854 13.661022 -5.088363 0.008979 -5.238266 -0.881639 -3.739294 -10.642880 16.481869 -28.147661 10.980356 -13.207940 7.955773 -1.795844 -1.310382 2.624925 -34.039376 -7.648009 -13.978962 -2.197757 -5.887290 10.985139 -5.129502 -4.097736 -15.549591 -8.323981 -2.189741 23.474002 -16.102932 -1.588804 -1.202018 0.767830 14.605411 10.466860 -4.410897 -0.744870 -10.082270 3.025039 18.051705 -8.217173 -20.829015 -1.868148 0.314674 -3.635844 -5.350389 0.197773 3.167883 -6.379223 -0.401797 5.706127 0.285824 -3.514748 -0.687255 -25.912798 1.529879 3.240653 10.129419 13.462314 24.688829 8.561379 2.552047 -1.265434 7.365667 4.841091 -9.144776 -26.577255 0.686848 -1.480211 1.327928 3.650991 6.224287 3.687415 1.669287 4.959703 2.760040 -3.346220 5.259927 11.308522 9.326507 -0.294948 -8.724720 5.011717 -0.132442 3.975762 21.389726 2.974797 4.820970 5.235266 -1.519646 -13.365654 -5.181845 -1.098854 -2.349882 -6.152833 15.154054 18.402081 -2.788265 0.716271 26.658856 -3.082561 -37.401744 2.717289 3.173427 5.143642 28.540857 -0.847621 4.474378 8.931185 15.444376 13.438102 2.492094 2.760930 -14.383862 8.737766 1.295684 1.672794 14.906510 -6.697404 -23.571547 10.765660 -0.888693 24.600886 2.019056 23.588980 -1.975834 18.664361 0.955691 -9.354487 1.810696 -2.266790 10.717059 -0.831868 -6.925054 -30.748218 -6.586888 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 1.002869 -0.267480 0.545128 -0.908677 -0.203735 -0.085658 1.330544 -0.821146 -0.606339 1.643237 -0.003325 -0.669839 -1.079269 0.913965 0.007993 -0.675091 0.491398 -0.816479 -0.242398 0.151861 -0.846098 0.470446 -0.468516 -0.976923 0.773470 0.020267 0.368928 1.314041 -0.159974 0.186448 -0.190895 -0.731413 0.129714 2.155890 0.632376 -0.211733 -0.377436 3.054762 -1.773301 2.162476 -1.442497 -1.812213 2.811429 -0.430361 -0.297999 -1.225827 -0.119841 1.397464 -0.875070 -1.143349 0.106857 -0.088310 0.281747 -1.500804 -0.620073 1.765759 -2.432142 0.633210 0.959093 -0.703723 -1.763772 -0.751887 0.186919 0.176846 -1.485587 -1.376343 0.195745 -0.810110 -0.843208 0.301997 -1.656232 -1.111544 1.450334 0.644216 -0.421361 0.374004 -0.475378 -0.676574 0.897791 -0.325369 -1.370128 -0.930699 -0.116472 -1.091169 1.323455 0.571658 1.232410 -2.753820 0.640212 -2.725302 0.674479 -1.800246 1.145206 2.246707 -0.678021 1.854894 0.221034 1.079593 -0.108517 -0.425476 1.249112 0.664915 0.692774 0.481483 1.258909 1.337704 -1.427933 -1.888118 -1.397529 -0.570778 0.359947 -0.492833 -2.103233 0.882736 -1.249739 0.513892 0.188484 0.415085 -0.952436 1.222091 -2.631038 0.540584 0.340674 -0.489903 1.368477 1.360005 -0.158034 0.098342 -0.412248 1.283633 0.114801 0.900463 -0.265109 1.504811 -0.760690 -0.659970 -0.580707 0.216973 0.943731 -1.187846 -1.968678 -2.674595 -0.591748 0.877083 -0.966751 1.725080 3.104102 -0.683792 -1.103889 1.454310 -0.652529 0.884064 1.023329 0.439621 2.227389 -1.158027 0.084250 0.129041 0.115009 0.527529 1.468653 -0.413087 -1.402976 1.380062 -0.518055 0.094959 1.708127 0.350058 -0.317033 -0.219219 -0.015875 -0.675742 -1.506206 2.444861 -1.655304 1.667468 -0.617206 2.468963 -0.662919 -0.389986 0.672083 -1.709856 -0.291329 -2.219050 -0.309929 -0.367482 1.042605 -1.661008 -1.237244 -0.611867 -0.154228 -0.510507 1.939489 -0.685568 -0.262947 0.002886 0.011528 1.756232 0.808440 -0.868036 -0.136398 -1.879983 0.637977 0.790705 -0.195233 -1.940582 -0.569878 -0.232279 -0.772311 0.573115 0.168711 0.926694 -1.331977 -0.293129 1.150593 0.356356 -0.172180 0.108245 -2.454700 0.540623 0.464347 0.320102 1.170926 2.274717 1.431309 1.146822 0.080831 0.631166 -0.318607 -0.260473 -1.880217 0.297887 -0.082809 1.060825 0.899154 1.010358 0.928289 0.659892 0.830632 0.491649 -0.266657 1.653752 0.984434 2.083266 -0.673329 -0.880111 0.850586 -0.166068 1.410671 1.279299 -0.667042 -0.972533 1.102974 -0.565636 -1.217062 -0.525626 -0.100966 -0.491609 -0.099795 1.174741 0.849585 -0.289911 -0.295559 2.942178 -0.615397 -3.585552 1.104676 0.817104 1.280673 1.406683 -0.241300 1.147867 1.231416 0.019267 1.103748 0.971589 1.032538 -1.495528 0.770848 0.257154 0.902731 0.931751 0.155709 -3.441790 -0.208783 0.217328 1.979461 0.653179 1.820482 -0.825207 0.477504 0.116821 -0.377804 0.459754 -0.194275 1.378289 -0.069581 0.252163 -2.547686 0.227241 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 0.843284 -0.045213 0.814929 -1.028896 -0.229719 -0.304859 1.677281 -1.014272 -0.734342 2.405687 -0.076766 -1.033899 -1.533488 0.959867 -0.051571 -0.876154 0.211282 -0.888283 -0.506113 -0.330373 -0.864900 0.410729 -0.367917 -1.317716 0.779796 -0.151740 0.765315 1.575167 -0.231057 0.428619 0.374792 -0.850171 0.585960 2.436616 0.663592 0.151779 -0.887982 2.984709 -2.443334 2.740169 -2.201050 -2.507080 3.418772 -0.351739 -0.281580 -2.006115 0.126006 1.771422 -1.117274 -1.491741 -0.317666 0.141387 0.405245 -2.077160 -0.990175 2.129562 -2.674744 0.773514 0.940929 -1.582333 -2.414219 -0.578440 0.376209 0.636568 -1.824131 -1.648448 -0.130226 -1.030048 -1.133979 0.523779 -1.844795 -1.075176 1.244746 0.485080 -0.429242 0.447353 -0.786235 -0.202044 1.028597 -0.460518 -1.097628 -1.253003 0.097425 -1.084873 0.937548 1.057501 1.405392 -3.151054 0.412979 -2.746774 1.079332 -1.737851 1.253980 2.040307 -0.230416 2.313731 0.019425 0.683386 -0.209679 -0.735533 1.053076 0.670585 1.494094 0.680109 1.528547 1.781165 -1.861463 -2.634456 -1.694075 -0.783798 0.741760 -0.787641 -2.177350 0.923734 -1.448184 0.310061 0.456038 0.000000 -1.073872 1.521697 -3.325193 0.654424 0.526536 -0.494149 1.453541 1.363464 0.004342 0.228959 -0.010864 1.211192 0.310630 1.130637 0.099064 1.814482 -0.750509 -0.738337 -0.353453 0.517525 0.980184 -1.168489 -1.966797 -3.173111 -0.864876 1.298670 -1.138343 1.694170 3.353541 -0.615429 -1.658913 1.276960 -1.003996 0.747429 0.700371 0.597073 2.723162 -1.477699 0.050776 0.088178 0.138015 1.408138 3.226792 -0.623878 -1.969220 1.896648 -0.740272 -0.094400 0.921788 0.185891 -0.098711 -0.611312 0.040308 -0.822513 -1.426592 2.323484 -2.461724 2.074250 -1.397876 2.627862 -1.095313 -0.514992 0.603526 -2.935465 -0.652536 -2.388845 -0.314732 -0.483626 1.322172 -2.041228 -1.314511 -1.062449 -0.411529 -0.482214 2.548434 -2.291723 -0.410331 -0.186404 -0.182560 2.700877 0.478370 -1.154651 -0.434483 -2.049850 0.680906 0.972565 0.576127 -2.600451 -0.872719 -0.328857 -0.984989 0.715545 0.127633 1.203046 -1.209669 0.169033 1.469112 0.014835 -0.621952 -0.275755 -2.652742 0.637756 0.699859 0.688061 1.035899 2.885391 1.408135 1.139607 -0.195642 0.987965 -0.382123 -0.800590 -2.306123 0.530040 0.071767 0.576992 1.136280 1.268538 0.885228 0.754894 1.501063 0.647792 -0.786780 1.881518 0.622531 1.889424 -1.159330 -0.858600 1.112702 0.056164 1.359353 1.326653 -0.461501 -1.569045 1.381076 -0.929387 -1.408103 -0.363897 -0.365092 -0.602254 -0.001087 1.907084 1.484088 -0.543081 -0.240039 3.411074 -0.553849 -4.063926 1.404051 0.958577 1.325957 1.427803 -0.748370 1.216042 1.429465 0.344044 0.680267 1.080553 1.005092 -2.168891 0.781038 0.298725 1.105644 1.820568 -0.082375 -4.696076 -0.797804 0.212635 2.591665 0.356652 2.700793 -1.154591 0.676415 0.223916 -0.070257 0.584702 -0.357999 1.377549 0.056575 0.287735 -2.886936 0.606130 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 3.786014 -0.759101 2.418492 -2.395863 0.565746 -0.929326 7.458827 -3.393521 -2.655804 9.571517 -0.411731 -2.811027 -4.079752 2.468613 0.422172 -0.978570 2.349118 -2.004545 -1.126182 0.153293 -3.464365 1.244817 -1.656198 -4.953986 2.982130 0.065601 2.877424 5.816571 -3.077888 3.139309 0.683859 -3.093774 1.489688 7.996458 2.563362 -0.351996 -3.147832 10.283981 -10.401459 10.036043 -5.889535 -7.838856 12.401763 -1.370558 -0.321068 -4.869487 0.448074 5.629964 -1.548638 -6.684669 -1.161341 -0.230616 2.331810 -7.003630 -3.689868 7.051654 -7.811334 -0.041188 3.705651 -5.230066 -9.031127 -2.280975 1.689202 2.176117 -8.119891 -5.479046 0.062314 -4.732237 -2.059037 1.604122 -7.372685 -4.243091 3.013050 1.580116 -1.255945 1.062837 -3.105075 -1.813041 3.267848 0.796363 -3.956254 -4.280825 -0.822469 -5.244345 2.726682 3.407405 6.200009 -10.181311 2.170443 -9.651708 3.257181 -6.037702 4.316774 7.717925 -0.379887 8.030000 0.226015 5.051639 -1.375352 -2.578018 3.275622 3.108609 4.184670 1.427569 5.354369 6.867300 -7.133763 -9.523021 -6.644568 -1.304757 3.070826 -2.594516 -6.308663 3.370456 -5.293936 0.760047 1.209184 0.458966 -4.025936 6.488347 -10.943724 4.305906 1.861308 -1.719893 4.958439 4.378688 0.070435 0.568904 -0.097809 3.675044 1.169287 3.293406 0.088041 6.357834 -4.562840 -0.739141 0.755657 1.699533 3.485262 -4.440435 -6.589110 -11.733618 -2.427850 5.480304 -3.698407 4.955230 11.243706 -1.942964 -3.946193 3.487887 -3.237912 1.592392 1.765883 1.941632 8.966570 -5.299156 0.979355 0.742046 1.284970 3.969075 12.200726 -2.328465 -6.618017 6.555826 -3.074106 -0.318962 6.316010 1.525466 0.009361 -0.919090 0.466682 -1.681678 -4.432642 8.853361 -9.965032 6.166218 -5.072023 8.581748 -2.944323 0.386983 1.855170 -9.256681 -2.349987 -9.733379 -0.705384 -1.565803 4.860632 -6.174873 -4.377571 -3.443156 -1.417050 -0.794753 8.885629 -7.994924 -1.718117 -0.696611 -1.291476 7.796271 0.658467 -3.747446 -1.881782 -6.391845 2.073987 2.554307 0.329535 -8.093674 -3.713312 -1.244757 -3.429903 0.532601 0.806083 4.258320 -5.555527 0.243677 5.733542 0.824674 -3.037947 -0.894854 -10.025148 2.340147 2.731325 2.155063 4.037174 9.815306 4.583191 4.197198 -0.871739 3.089947 -1.769983 -2.304819 -10.430601 2.795395 -0.273574 2.730496 3.340251 3.724295 2.572611 2.768959 3.077965 0.328511 -0.870180 6.106591 3.103779 6.069300 -3.020348 -3.094439 4.647057 -0.223276 4.485925 2.634800 -0.284923 -5.863152 3.885551 -4.571244 -6.455600 0.814542 -0.605498 -1.518470 0.218677 5.601671 5.261565 -1.204122 -1.261904 11.680203 -2.150025 -14.847550 3.614761 3.163230 5.082886 7.158638 -2.187600 6.264297 4.707368 3.613107 3.935463 3.301451 3.471426 -6.612451 3.689505 1.222683 2.867952 6.664350 -1.251347 -17.743311 -1.887626 -0.419622 7.857589 0.971879 10.123152 -3.807700 4.970322 -0.061235 -0.935309 2.673872 -1.679550 5.767674 1.334276 1.034347 -12.516381 3.727531 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 1.029878 -0.181191 1.230564 -2.107654 -0.916821 -0.312407 2.007014 -1.723058 -0.778864 2.369891 0.642437 -1.406363 -1.104100 1.956809 -0.351366 -1.166912 0.755169 -0.662371 -0.610662 -0.310968 -0.653002 0.871795 -0.565330 -1.821921 0.958535 -0.431538 0.866145 2.277910 -0.148940 0.465482 -0.116008 -1.152731 0.670971 3.605500 0.937462 -0.077034 -1.068374 4.129837 -2.733542 3.386777 -3.213449 -2.615230 4.540044 -0.632566 -0.269545 -3.708386 -1.263948 1.921216 -0.677359 -1.867928 -0.286255 -0.264620 1.019096 -2.672247 -1.095226 2.696677 -3.106917 0.551719 1.638350 -2.050064 -2.707861 -0.941050 0.476398 0.607952 -2.879173 -2.233029 0.253406 -0.779860 -1.026599 0.685069 -2.306646 -2.313031 2.538336 0.678056 -0.795257 0.647703 -0.780489 -2.152526 1.635115 0.054154 -1.889462 -1.622902 0.165512 -1.229269 1.702315 0.315578 2.246473 -4.749744 0.368699 -4.347798 1.380607 -2.624437 1.924212 3.097475 -1.464440 2.676804 0.359308 1.594598 0.067395 -0.201459 2.018855 1.344724 1.741477 0.475731 2.666540 2.292637 -1.913042 -3.370704 -2.012072 -1.483360 0.896114 -1.294130 -4.435784 1.340776 -1.958065 -0.373213 -0.204908 -0.149171 -0.810413 3.359287 -3.581542 0.887346 1.326991 -0.845505 1.214437 2.201721 -0.130746 0.151267 -0.759694 1.916791 0.047213 1.428183 -0.258431 2.493513 -1.671470 -2.057686 -0.779640 0.345336 1.078165 -2.075774 -3.206073 -4.093484 -1.146293 1.400080 -1.419988 1.674875 4.492357 -1.254273 -2.887361 2.144362 0.489161 0.231425 1.479059 0.899430 3.912325 -2.201286 0.224740 -0.635403 0.036081 1.462944 3.390209 -0.992416 -2.487887 2.443235 -1.414380 -2.754718 3.659804 -0.093081 -0.282761 0.354977 0.107359 -1.336657 -2.140502 3.536738 -2.009694 3.314610 -1.948870 3.971316 -1.614178 -1.228464 0.760314 -2.845433 -0.739013 -2.780418 0.047604 -0.159518 2.228741 -2.269775 -2.214416 -1.000596 -0.772665 -0.491020 3.438658 -2.555248 -0.391895 -0.074139 -0.362480 2.366394 1.322634 -1.429493 -0.126524 -2.289499 1.209687 2.022660 0.663410 -3.762890 -1.030629 -0.874820 -1.183240 -0.270112 0.364897 2.050129 -1.798995 -0.357602 1.656858 -0.248508 -0.640037 -0.383406 -3.989903 1.154171 0.041825 0.881899 0.852799 3.820291 2.688910 1.917805 -0.051719 0.660665 -0.234784 -1.068563 -3.216142 0.799156 0.285597 0.587201 1.474008 2.560766 1.432267 1.229092 2.148797 0.977698 0.217807 2.813106 1.012565 3.156126 -0.846365 -0.885778 1.252294 -0.201352 2.587130 3.094712 0.761643 -1.751613 1.596374 -0.550062 -2.172804 -1.744554 -0.515515 -0.397717 -0.642293 2.508688 1.650391 -0.796500 -0.641448 4.854242 -0.406263 -5.274045 1.998963 1.180017 1.828879 1.891378 -0.917286 1.711423 2.078487 0.486600 1.548433 1.436308 1.779845 -2.955313 -0.335312 0.409460 1.530184 2.481499 0.441973 -6.016596 0.084088 0.618903 3.752814 0.265051 3.626078 -1.704372 1.073848 0.329485 0.006502 0.457186 -0.415290 1.674599 -1.036799 -0.092310 -4.099855 0.355704 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 3.459453 -0.100489 3.327398 -6.677618 -3.043600 -1.209799 6.258590 -7.092090 -3.318343 12.219384 2.858455 -5.114675 -0.576732 6.682057 -0.732071 -2.592130 2.053919 -0.114331 -2.386899 -1.281425 -1.883360 3.110633 -2.141939 -7.149443 2.500885 -1.463197 3.811824 6.074072 -4.210848 2.793818 0.746881 -4.614185 3.015174 11.500597 3.487518 0.876637 -6.046041 10.722381 -10.758400 11.363206 -11.113232 -9.643394 14.288556 -1.793911 1.513534 -9.976309 -3.149072 6.522873 3.551537 -9.252572 -2.715181 -1.034492 4.587823 -9.671519 -4.841962 6.678668 -6.123217 -1.267969 6.070833 -9.835526 -10.879487 -2.416647 3.283630 3.874344 -12.501451 -7.936211 0.039261 -1.844611 -0.938152 1.773359 -7.736788 -8.983601 5.510233 1.458697 -2.295765 1.386936 -4.678643 -7.262817 5.556145 2.253468 -5.612159 -5.767971 0.320390 -4.494103 1.980805 2.587384 10.368116 -15.005232 3.196933 -13.652370 5.173893 -5.621799 6.551949 9.171600 -3.214237 7.417389 1.509205 9.111146 1.442809 -0.877935 5.640909 4.746586 5.592350 1.373814 8.851303 9.206821 -7.475339 -11.916225 -6.602695 -5.954793 5.770361 -4.942771 -11.347794 5.139727 -5.806841 -3.512758 -1.543965 -2.075828 -1.601381 13.308994 -13.596366 1.267795 5.644579 -2.570381 3.084753 5.264750 0.230748 0.807844 -1.930198 4.397630 0.048888 3.529157 0.691343 9.128433 -8.701939 -4.115697 0.045793 2.738127 3.233405 -8.225235 -9.239923 -14.840262 -3.088539 7.452544 -5.505406 4.589581 13.395451 -5.451662 -9.532640 5.286855 2.571806 -4.626563 3.043695 2.802494 12.784811 -8.206977 1.172520 -1.567094 0.023547 6.892950 15.224437 -3.729672 -9.522807 9.227542 -6.762116 -10.760647 12.821127 0.229693 -0.489864 0.387490 1.870446 -3.456245 -4.023611 9.159642 -9.966366 9.829409 -8.436348 11.866669 -5.931194 -1.381180 2.120256 -11.899818 -5.149383 -8.758698 0.804812 -0.119508 9.379111 -6.571962 -6.241390 -3.168605 -4.925146 -1.318190 11.948351 -13.100081 -1.310879 -0.020854 -2.796704 8.698809 3.162708 -4.042577 -1.976567 -4.955238 4.112085 6.722428 3.370598 -11.074325 -6.166115 -5.067392 -4.107568 -3.762798 0.959877 8.661911 -6.065508 0.616928 5.879511 -1.310994 -3.762879 -2.447634 -10.913285 4.360244 -0.394055 5.577755 1.250319 13.647371 6.217945 8.043678 -0.306220 1.532653 -1.541945 -4.961121 -12.716641 4.567851 1.087227 0.263344 5.690174 8.003719 4.375066 5.662707 8.694309 1.232471 2.289609 9.978616 0.231662 8.895935 -3.343890 -0.871778 4.857925 0.297096 8.108269 9.211856 3.990585 -7.508289 4.279133 -5.007904 -9.439255 -1.292632 -1.194964 -0.199404 -2.274642 5.658277 8.130904 -1.532543 -3.361582 15.241951 -0.984926 -16.720176 6.735045 3.286257 6.549187 8.671380 -4.441730 7.922863 5.394410 5.664606 4.993027 6.022649 6.249748 -10.664131 -1.299109 1.730107 5.542159 11.213995 1.095603 -19.843069 2.555727 1.937903 11.107360 -2.247590 12.697454 -7.525871 6.676884 1.320114 1.139603 2.543679 -1.886850 5.001140 -1.794532 -0.915155 -14.604923 3.912547 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 10.606190 -0.962427 4.340985 -8.149418 -2.954088 -0.793224 13.992194 -12.377054 -8.195078 21.048030 3.320444 -9.529489 -6.498697 7.548959 0.247124 -5.638014 5.452456 0.810314 -3.095652 -1.445906 -8.671875 2.263635 -4.997750 -14.141688 5.812106 -1.387122 6.295618 13.863534 -4.515048 8.364235 -1.234808 -7.512364 4.818658 23.440734 8.795038 -3.876452 -7.468666 26.228052 -21.009110 20.031020 -14.779018 -17.376526 29.985866 -3.261673 0.442579 -12.718236 -3.647869 14.303754 -2.525307 -15.688589 -2.596586 -3.093976 8.029853 -17.307436 -10.026077 19.140281 -18.142493 1.554614 11.293543 -14.780105 -22.122160 -6.125542 4.973893 5.899669 -19.973185 -15.702331 0.862738 -5.483240 -2.477788 2.481742 -20.975197 -17.264832 12.225559 4.355378 -4.972184 1.546578 -9.102416 -9.271458 8.476513 5.824758 -12.525030 -10.479141 -0.553031 -8.569494 8.463672 6.722472 17.386421 -29.691041 3.738885 -29.170946 8.812589 -15.121813 14.189647 20.898431 -6.037619 16.335346 2.285214 13.242480 -1.886061 -3.363471 11.812620 5.390675 7.675272 1.960953 13.875857 17.109387 -15.280133 -23.071891 -13.051556 -6.303522 7.365814 -5.221956 -20.690632 10.383257 -16.192435 1.219213 -0.700992 -0.174465 -7.839627 19.999129 -24.495126 3.997387 5.960236 -5.553804 14.287818 12.443235 -0.017802 3.600254 -3.141835 10.355847 3.060507 5.446033 -2.047016 17.219547 -12.295820 -9.311559 -4.067608 6.133859 11.535807 -15.175514 -20.662209 -27.449680 -6.119479 11.375269 -10.878342 11.436289 28.480904 -8.834367 -12.062808 11.205522 -4.680421 2.390143 9.942910 5.412634 26.602168 -17.058317 4.685737 0.710137 2.185217 8.972489 21.834875 -8.580146 -17.184450 16.721050 -7.970918 -3.783673 20.811713 2.532541 -1.705668 1.880033 1.558506 -2.320626 -12.066910 23.040615 -19.168007 15.196510 -10.157575 25.542092 -9.651725 -3.342931 5.984604 -16.865738 -7.820580 -18.630830 0.212965 -2.308687 15.493868 -14.525018 -13.424022 -4.934347 -3.899422 -2.921927 24.192639 -12.330179 -4.180577 0.015372 -5.101151 16.275436 5.724386 -8.733101 -3.597916 -14.438682 6.513077 10.068931 -0.736837 -21.087883 -10.592187 -6.234501 -7.860563 -1.393983 2.398665 14.286988 -14.042888 -0.834900 12.639727 1.372621 -3.230649 -1.311481 -21.426648 9.511588 3.129724 4.674291 7.488971 27.346714 13.677469 14.434043 -0.172495 4.074072 -2.806459 -6.088485 -24.137174 7.312008 0.511303 8.711305 10.260691 10.885167 6.645603 8.688712 9.516039 -1.112482 2.851546 17.611534 7.544723 17.779365 -6.698649 -4.126119 10.196389 -3.190242 15.759186 14.300377 -0.204777 -15.568788 8.506903 -10.417852 -15.993202 -4.082755 -1.498538 -1.829390 -3.756689 10.719692 14.047418 -1.966922 -7.307228 31.969645 -4.465387 -36.199511 13.062219 8.558253 12.221798 19.129249 -6.935015 16.020398 10.233419 10.310255 10.067277 11.910883 12.452687 -19.312118 5.750448 2.721093 9.277289 13.761135 -1.296462 -40.265648 0.351648 3.365273 21.656517 2.834072 21.975926 -12.561573 11.996906 1.117892 -0.745363 6.872080 -5.231419 13.764373 -2.385146 2.304196 -27.867040 7.484132 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 10.010177 -0.521487 4.028614 -7.220639 -2.205742 -1.539203 16.365153 -11.062513 -8.196225 21.924685 2.915870 -8.695747 -5.706739 6.895089 1.209961 -3.716453 5.621238 -0.139987 -3.391220 -0.570371 -8.365940 2.755313 -4.625924 -13.224487 6.046389 -0.527464 5.758002 13.405839 -6.960231 8.130992 -0.088757 -7.248271 4.865046 21.398970 7.714315 -3.905310 -8.104229 24.141699 -23.030024 20.118724 -13.310361 -16.346183 28.746149 -3.241245 0.780852 -12.375774 -2.971049 13.912059 1.433949 -17.366857 -2.962967 -2.114861 7.701154 -16.848357 -9.742407 18.032822 -15.921464 -1.024575 11.141689 -14.911588 -21.939858 -5.275950 4.924348 5.665151 -20.998067 -14.852696 0.235617 -7.389436 -0.949855 2.169939 -19.863683 -16.100708 9.124883 3.938252 -3.986319 1.699562 -9.144194 -8.955112 8.401326 6.704110 -11.024248 -9.954689 -1.367708 -9.083753 6.720002 6.118753 16.838316 -27.417363 3.795756 -26.437925 8.048895 -14.075667 12.634283 19.635731 -3.192183 15.945189 1.755632 13.458298 -2.430127 -3.846294 10.476425 5.576842 8.411031 2.325169 13.073286 17.351376 -16.034368 -22.922913 -13.657230 -5.508275 8.910784 -5.088274 -17.344588 10.149003 -14.185142 -1.034264 0.321781 -0.927700 -7.180684 20.499457 -22.885295 5.864033 6.612777 -5.137016 12.058772 11.658954 0.267308 2.528713 -3.136636 8.869400 3.242078 6.519892 -1.040530 16.482541 -13.081690 -7.003295 -0.311359 5.593220 9.891419 -14.253226 -18.246310 -27.028786 -4.944659 11.630213 -10.761935 9.364837 26.426726 -8.556210 -10.658167 9.940521 -3.151671 0.926504 6.229714 4.834078 24.588148 -15.689346 3.638436 0.956576 1.950446 9.390654 24.980881 -7.638692 -16.581101 15.982512 -8.429615 -5.463406 21.139814 2.669454 -1.143560 3.400634 1.969623 -1.688344 -11.055685 21.242824 -19.134415 14.005570 -10.595015 22.973579 -8.013725 -0.761651 5.475115 -16.468115 -7.664473 -19.877636 0.168273 -1.721614 14.278682 -12.591634 -11.877735 -5.453516 -4.394899 -2.862193 22.806823 -16.573731 -3.775347 -0.272238 -4.920217 14.725595 3.997461 -8.357110 -4.296722 -13.188268 6.198383 8.201642 -0.297842 -19.778588 -10.669427 -5.732519 -7.685345 -2.125718 1.979995 13.507067 -13.186300 0.029280 13.424776 0.993741 -5.508207 -1.939503 -20.732159 8.486069 3.630207 5.591452 6.569195 25.847822 12.293505 13.473563 -0.730502 4.617113 -3.227467 -5.180258 -26.279670 7.618963 -0.717698 7.568032 9.926734 9.627183 6.359201 8.463416 9.013821 -2.312075 3.079203 16.470598 6.840374 15.728416 -5.310110 -4.682699 10.825258 -2.218770 14.205584 11.273072 2.191265 -15.720243 7.840254 -11.369120 -17.067129 -0.839147 -1.120757 -1.583174 -3.148896 10.388746 13.841571 -2.026789 -6.282675 29.790940 -4.968926 -34.682264 10.975413 7.950381 12.291469 19.121989 -6.027363 17.281730 9.646183 11.844726 9.668343 11.165075 11.467339 -18.419095 5.590764 2.896015 7.831213 14.562011 -1.444254 -41.415334 -0.248747 1.728506 19.788639 0.675172 22.700775 -11.846944 13.600682 1.425309 0.156004 6.778468 -5.211159 13.184212 -1.251050 1.913751 -28.705510 9.499829 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.043753 0.303027 1.695902 -2.525701 -2.993535 -0.785831 0.945265 -1.034954 -0.578338 0.806741 0.620857 -1.598770 -2.049433 3.052450 -1.137624 -2.442881 -0.700532 -0.924298 -0.767216 -1.231970 -0.378009 1.816443 -0.377211 -0.525483 1.391108 -0.947749 -0.341572 2.375195 1.786470 -1.177968 0.619767 -1.076160 0.728710 3.334056 -0.003550 0.160790 -0.304924 5.532209 -1.245653 2.093547 -3.692983 -3.153889 4.002312 -0.707325 -0.633458 -4.593360 -2.286303 1.837107 -2.812868 0.352236 0.459564 0.726928 0.025251 -2.076475 0.339886 2.271519 -4.764184 2.997443 1.340274 -1.904081 -1.412765 -0.678910 -1.330807 -0.451700 -0.722858 -2.031282 -0.290388 0.380100 -1.665278 0.668531 -0.109963 -1.251763 4.650545 0.426881 -0.776924 1.736167 0.589566 -1.674106 2.029041 -2.343654 -2.722204 -1.491344 1.320472 0.057927 2.254396 0.349740 1.429232 -4.793269 -0.343301 -4.330162 1.634750 -3.125814 1.457572 3.245203 -2.775804 3.193735 0.940658 -0.849607 1.591161 0.679730 2.730280 1.159428 2.213973 1.874472 1.263884 1.706415 -0.982949 -2.023852 -2.180190 -2.456451 -0.016716 -0.762128 -5.472476 1.047516 -0.482308 0.534850 0.126788 -0.051516 0.137586 2.676529 -2.828202 0.637102 1.912458 -0.835330 0.475310 2.426549 -0.404420 -0.449241 -1.513433 2.507861 -1.081731 2.247298 -0.211255 2.250245 -0.165393 -4.296850 -2.906842 -0.360579 0.010943 -1.724779 -2.788826 -2.864068 -0.794797 0.632191 -1.521649 1.340909 5.801438 -2.104590 -3.732763 3.510039 1.713243 1.202223 1.914360 1.092371 3.491658 -0.816935 -1.299737 -1.412535 -1.292086 1.523083 1.696779 0.377239 -2.157738 1.951525 0.138321 -3.675686 2.763234 -0.901515 -1.149785 -0.160354 0.379265 -2.191602 -2.217980 3.388297 0.841446 4.232532 -1.222497 4.216049 -1.440714 -3.227762 0.781780 -2.076250 -0.044122 -1.866259 0.092904 0.637295 1.226823 -2.573991 -2.109566 -1.187711 -1.230111 -1.483927 1.836684 -0.629181 0.288919 0.351406 0.784486 1.876318 2.931596 -0.776768 0.603141 -3.427019 1.370794 1.493285 0.899419 -5.306698 0.240123 -0.020996 -0.948263 1.009918 0.103630 1.330248 -0.244089 -0.266651 0.495756 -1.160351 0.234687 -0.040103 -2.414859 0.655879 -0.756243 1.699852 0.798985 2.597670 4.320186 2.099024 0.701313 1.888254 -0.208791 -1.021366 0.590223 0.513477 0.875805 0.165947 1.702150 3.319415 2.470623 0.977010 3.007530 2.366654 -0.648140 3.023937 0.654583 5.175767 -1.938969 -1.315441 0.126328 0.871012 2.874624 4.566211 0.116099 -0.727772 2.187080 1.217031 -0.280061 -3.315431 -0.273762 -0.588761 -0.687411 3.570177 1.310447 -1.473299 0.255908 3.778571 -0.535188 -4.541163 2.820884 1.077008 1.745418 -0.777605 0.215586 -0.601986 2.940882 -1.865475 1.100157 1.885445 1.940981 -3.117841 -1.905770 0.274004 2.254524 1.722395 2.392265 -4.994114 -0.184434 1.776915 2.887459 -0.132855 2.613102 -1.616531 -2.423200 1.103514 -0.125886 -0.862736 0.782821 0.044005 -2.200065 0.597036 -1.450758 -2.144949 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 0.283667 -0.292330 1.093653 -2.053220 -2.188815 -0.204784 1.717226 -0.964690 -0.491557 2.011179 0.478750 -0.815397 -1.175916 2.649050 -0.104261 -1.097464 0.079103 -1.431322 -0.273791 0.131909 -0.297492 1.609155 -0.519197 -0.241970 0.738130 -0.210481 -0.111036 1.689668 -0.137998 -0.391739 0.122468 -1.154288 -0.047716 2.342887 0.523897 0.103963 -0.669576 4.552976 -2.927247 3.629660 -2.810109 -2.585718 2.586047 -0.508814 -0.446910 -3.448484 -1.308253 1.487182 -0.101793 -1.352517 0.756168 0.318898 0.623766 -1.142885 0.158865 1.468163 -2.741883 0.556811 1.191148 -1.302030 -1.002571 -0.588857 -0.587881 0.517463 -2.671360 -1.402712 -0.035690 -0.854787 -0.578950 0.023718 -0.506055 -1.339948 2.284146 0.893062 -0.844453 0.664007 0.348116 -2.221390 1.725606 -1.172341 -2.728589 -0.884449 -0.427707 -1.282082 1.597423 0.001539 2.113201 -3.708128 0.918663 -3.667671 0.957546 -2.259256 0.793692 2.796084 -0.888965 1.973862 0.763303 1.528207 1.396379 -0.417148 1.591141 1.865833 1.403416 1.425730 1.600501 2.191296 -1.656107 -1.929540 -2.200465 -1.575951 0.845195 -1.190096 -3.630495 0.977102 0.222760 -0.156517 0.133364 0.084487 -0.479026 2.882758 -2.647339 1.206228 1.143095 -0.549392 0.156772 1.994271 -0.355394 -0.212525 -0.930645 1.768720 -0.870990 2.399943 0.016596 1.830457 -1.686266 -0.865707 -0.689156 0.254571 0.321270 -1.352318 -1.883177 -3.541860 -0.515965 1.385269 -1.216750 1.549777 4.527781 -2.150493 -2.542697 2.393677 0.972533 -0.173740 0.316256 0.489705 2.085675 -0.441912 -1.178780 -1.192506 -1.057145 0.546912 4.185382 0.591922 -1.413615 1.747878 -0.969207 -3.667481 3.260985 -0.083685 -1.154045 -0.372785 0.211832 -1.547442 -1.704922 2.629250 -1.880060 2.275996 -1.121609 2.668298 -0.434492 -0.748501 0.615915 -2.641832 -0.155484 -3.000233 -0.239014 0.694134 1.269863 -1.716286 -1.180606 -1.216873 -1.211546 -1.266360 1.273859 -2.813528 0.111288 0.552872 0.757134 2.684605 2.348107 -0.187731 -0.335660 -1.968784 1.332304 0.590821 0.047615 -3.319740 -0.522767 -0.369337 -0.808044 0.296627 0.000674 1.148169 -1.299911 -0.186422 0.664624 -0.516840 -0.484981 0.439712 -3.732475 0.480234 0.408554 2.079575 1.024269 1.829324 2.144406 2.363855 0.895623 1.322004 -0.554291 -0.006376 -1.803026 0.546802 0.786800 -0.489759 1.279500 2.687023 1.833470 0.925153 2.146215 1.608868 0.157979 2.061588 0.277811 3.567020 -0.215209 -1.384024 0.648744 0.790193 1.771843 2.874855 0.693123 -0.175364 1.462906 -0.179138 -1.476463 -0.921267 0.372403 -0.654894 0.172402 2.213769 1.440427 -0.542754 -0.078388 2.676865 -0.758640 -4.244685 1.045628 0.827834 1.816494 1.132903 0.284739 1.098974 1.403051 -0.777435 2.530281 2.082384 1.097499 -1.945778 -1.176507 0.359020 0.699668 2.700510 1.655655 -4.850369 -0.004676 0.415249 2.161714 -0.355097 3.286344 -1.754451 -0.221144 1.176505 -0.420709 -0.191294 0.054545 0.669723 -0.729079 0.292516 -2.707175 -0.739981 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = -0.118725 0.056033 0.643406 -1.060193 -1.095547 -0.094207 0.680581 -0.496863 -0.225589 0.056227 0.616190 -0.425214 -0.438692 1.147680 -0.105518 -0.615804 -0.027994 -0.489283 -0.291549 -0.164999 0.020082 0.784128 -0.199520 -0.096139 0.403626 -0.247519 -0.262028 1.044564 0.231642 -0.403095 0.140987 -0.412276 0.066840 1.146427 0.125097 0.033488 -0.122355 1.884188 -1.119793 0.957562 -1.128000 -0.811706 1.422674 -0.282315 -0.454741 -1.753723 -1.249946 0.601033 -0.333457 -0.390503 0.397321 0.100228 0.369656 -0.529223 0.139891 0.869713 -1.450543 0.351662 0.610388 -0.822896 -0.421294 -0.154268 -0.465683 -0.126109 -0.705813 -0.687584 0.022141 -0.132065 -0.026953 -0.058916 -0.001015 -0.796085 1.688899 0.193225 -0.154340 0.500036 0.259417 -1.098156 0.918116 -0.113651 -1.040524 -0.464685 0.029852 -0.396518 0.875439 -0.324987 0.649176 -1.647104 -0.187345 -1.579451 0.513348 -1.080767 0.381640 1.101267 -0.878723 0.896459 0.530355 0.130812 0.407379 0.151352 0.990934 0.443497 0.712377 0.783401 0.835263 0.623737 -0.583461 -0.770118 -1.120691 -1.012252 0.464591 -0.565635 -1.952109 0.458357 0.045794 -0.545485 -0.075457 -0.206565 0.255519 1.574747 -0.430579 1.034058 0.863063 -0.278746 -0.285431 1.104893 -0.125778 -0.282909 -0.659621 0.851029 -0.652732 1.179872 -0.097153 0.823089 -0.245782 -1.354948 -0.488345 -0.022491 -0.080933 -0.752463 -0.887477 -1.096820 -0.048259 0.370706 -0.583202 0.209457 2.016373 -1.006324 -1.346157 1.307818 1.481611 0.000571 0.239318 0.351396 1.280502 -0.201528 -0.713049 -0.846296 -0.810302 0.407879 0.990204 0.238785 -0.552880 0.784359 -0.160584 -2.203785 2.390192 -0.390670 -0.626473 0.800919 0.249939 -0.779045 -0.990046 1.222167 0.774723 1.364075 -0.270725 1.430126 -0.259430 -0.813990 0.251401 -0.225431 -0.082741 -1.137296 -0.092050 0.463040 0.370670 -0.463027 -0.669710 -0.662936 -0.494844 -0.612031 0.594853 -0.687690 0.337669 0.343578 0.258836 -0.051704 1.155563 -0.064622 0.019737 -1.011407 0.612750 0.558729 0.276642 -1.739226 -0.070791 -0.200239 -0.241008 0.008870 0.020319 0.787684 -0.288258 -0.046847 0.287719 -0.452463 -0.205743 0.162622 -1.538315 0.240687 -0.175228 0.684788 0.241797 0.871639 1.523981 0.955831 0.402509 0.767932 -0.118791 0.053069 -0.630126 0.091506 0.123918 0.226348 0.679151 1.248535 0.973326 0.586698 1.142170 0.793307 0.488243 1.113796 0.320546 1.763320 0.042965 -0.591011 0.124805 0.510261 1.088143 1.500803 0.764786 -0.144363 0.608661 0.387556 -0.591749 -1.153570 0.145489 -0.159704 -0.192931 1.390039 0.525939 -0.278966 -0.091946 1.397203 -0.217039 -1.700595 0.718161 0.356944 0.803958 0.122244 0.212149 0.289716 0.856743 -0.404117 0.755078 0.818804 0.782216 -1.200717 -0.724695 0.179936 0.563693 0.828508 1.070762 -2.245511 0.173458 0.258565 0.991307 -0.428381 1.227499 -0.680764 -0.361538 0.556665 -0.011555 -0.216677 0.310346 0.062446 -0.920355 0.121793 -1.179487 -0.436570 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.379858 0.356841 0.418429 -1.018484 -1.042787 -0.003752 0.019474 -0.884916 -0.425893 0.560586 0.446534 -0.832968 -0.954912 1.126748 -0.559578 -1.047207 -0.221906 -0.395265 -0.292729 -0.584641 -0.192426 0.422723 -0.202225 -0.572477 0.171020 -0.271310 0.043058 0.766344 0.885826 -0.236971 -0.187446 -0.381490 0.439162 1.494784 0.480927 -0.157865 -0.221792 1.902605 -0.561032 0.753653 -1.829938 -1.296678 1.776117 -0.154082 -0.215090 -2.110679 -0.814249 0.812372 -1.187688 0.120460 0.078054 -0.145844 0.136919 -0.774856 -0.253862 1.245528 -1.948042 1.572682 0.553932 -0.753346 -0.650668 -0.301775 0.003333 0.164189 -0.140340 -0.939373 -0.049822 0.238101 -0.746205 0.260914 -0.681155 -0.845075 1.812987 0.200761 -0.513871 0.213191 -0.284326 -0.605044 0.652288 -1.010023 -0.985198 -0.496066 0.480403 0.351391 0.779631 0.390096 0.552996 -2.130687 -0.303101 -2.065363 0.623662 -1.087628 0.783562 1.083362 -1.054682 0.850132 0.249880 -0.523499 0.713460 0.233187 0.979413 0.354910 0.826966 0.362100 0.727147 0.853605 -0.284592 -0.895585 -0.493996 -0.954649 -0.127201 -0.081369 -2.403210 0.501475 -0.752521 0.297802 -0.144534 -0.136715 -0.070953 0.885894 -1.295271 -0.407095 0.349898 -0.299648 0.835056 1.087789 -0.080105 0.330372 -0.441083 0.967715 -0.073489 0.653394 -0.129953 0.892072 -0.154657 -2.229368 -1.560072 0.353903 0.526521 -0.832880 -1.332148 -1.377413 -0.361713 0.063186 -0.637698 0.606771 2.102968 -0.684755 -1.614885 1.260890 0.280625 0.329245 1.304385 0.291957 2.123855 -0.782027 0.006623 -0.138863 -0.356981 0.370210 0.606781 -0.352239 -0.948927 0.727200 -0.106353 -1.390792 0.470500 -0.124648 -0.504564 0.031482 -0.042634 -0.638530 -0.883340 1.278132 -0.019745 1.466110 -0.523403 1.750299 -0.866458 -1.354472 0.420432 -0.947438 -0.240607 -0.306154 -0.042429 0.135218 0.857146 -1.184782 -0.831944 -0.297332 -0.286218 -0.599169 1.322531 -0.235569 -0.034949 0.255551 0.079502 0.909903 1.069104 -0.482227 0.341107 -1.177206 0.538821 1.118691 0.429719 -2.344750 -0.226597 -0.451702 -0.329687 0.464206 -0.006116 0.780537 -0.140992 -0.172198 0.340183 -0.433351 0.529002 0.114761 -0.558351 0.547884 -0.472057 0.432889 0.215162 1.623232 1.203027 0.952676 0.274767 0.444133 0.051910 -0.659305 0.148080 0.111198 0.510326 0.047064 0.732523 1.174808 0.634674 0.489347 1.225337 0.742135 -0.336958 1.236733 0.241524 1.783384 -1.023441 -0.184902 -0.017000 -0.060556 1.153284 2.088900 -0.348855 -0.699459 0.665313 0.038055 -0.210906 -1.359192 -0.183417 -0.239611 -0.532452 1.395590 0.899385 -0.239175 -0.313368 1.960744 -0.076214 -2.003169 1.435205 0.515412 0.527614 0.170154 -0.386684 -0.131234 0.965554 -0.416644 0.184058 0.956156 0.918098 -1.339790 -0.612388 0.038505 1.009649 0.596281 0.533764 -2.095312 0.031037 1.006004 1.647626 0.248759 1.071377 -0.840197 -0.674513 0.359202 0.179690 -0.028918 0.016066 0.417394 -0.894138 0.128392 -0.616690 -0.492129 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 0.939415 0.058788 0.126634 -2.658412 -0.734585 -0.609003 3.159679 -0.999883 -1.152158 2.288728 0.752680 -1.587231 -2.200176 2.710942 0.655578 -1.421211 1.112989 -2.266432 -0.832717 0.797320 -0.762943 1.260592 -0.484881 -1.545767 1.059337 0.612193 -0.220707 2.248864 0.542293 -0.662858 -0.690017 -0.892467 0.524037 3.080745 0.683797 -0.804724 -1.114457 4.433064 -4.713072 4.039952 -3.141412 -2.034312 5.030002 -0.612172 -1.480956 -5.074032 -1.434584 2.165573 0.221933 -2.472733 0.397277 0.122943 0.563931 -2.391784 -0.822481 3.861893 -3.524921 0.912690 1.986239 -0.910199 -1.942094 -0.931929 0.510800 0.346885 -3.243607 -2.242323 -0.000678 -2.985424 -1.125699 -0.136153 -2.723830 -2.071835 2.269413 1.471630 -0.706907 0.621505 -1.372598 -2.557055 1.585860 -0.682828 -1.661738 -0.983466 -0.260015 -0.608699 1.921695 -0.230775 1.561032 -4.830455 -0.427398 -4.390559 0.628705 -3.285341 1.455826 3.322406 -0.428556 2.260876 -0.423385 0.464204 0.282719 -0.770842 1.827638 1.709934 2.249034 0.321481 2.715867 3.073189 -2.178862 -3.550830 -1.775205 -1.162560 0.839939 -0.793102 -4.567565 1.758656 -1.690273 -1.410605 0.783754 -0.314583 -1.161767 2.972889 -2.066511 0.855776 0.777922 -0.802382 1.298438 3.639761 -0.104320 -0.352476 -1.308541 1.692037 1.002378 3.179868 -0.370182 2.253155 -1.922243 -2.444064 0.203002 0.143808 0.958738 -1.980287 -2.777465 -4.732881 -0.306693 0.226523 -1.811363 1.215580 4.448823 -1.337353 -2.818703 2.537668 0.885409 1.048974 0.484192 -0.028408 4.916915 -1.851264 0.217917 0.274128 -0.186216 0.566633 4.840280 -0.685092 -2.445696 1.348981 -2.085794 -4.593737 3.039428 0.990695 -0.332373 1.462807 -0.282634 -1.381807 -3.408228 3.874476 -2.167427 2.949799 -1.661099 3.211229 -0.701171 -0.553378 1.688610 -1.989408 -0.587668 -4.144736 -1.069761 0.585086 1.582484 -1.601133 -1.465349 -1.599099 -0.182289 -1.432773 3.579154 -4.324507 -0.495475 -0.126872 0.324026 1.800656 1.308212 -1.714503 0.424750 -2.806048 1.573867 2.125103 0.168616 -4.445914 -0.761812 -0.669650 -1.202144 0.718582 -0.211717 1.539739 -1.368884 -0.830067 2.513589 0.148130 -0.526095 -0.152821 -4.433910 0.898375 0.271350 1.004955 1.185447 4.388105 1.610584 1.678910 -0.103208 0.755381 -0.430762 -0.203333 -4.735800 0.099835 -0.893168 0.424291 1.833953 2.071079 1.406756 0.986572 2.473358 0.803953 -0.842636 2.398903 1.706174 2.990520 0.842560 -2.314429 1.776788 -0.882667 2.099603 3.161733 0.580177 -2.040067 1.847747 -0.786030 -2.884681 -1.271102 -0.292741 -0.768281 -1.095431 3.210569 1.050497 -0.588522 -0.258535 5.036380 -1.228330 -6.168531 1.394544 1.180305 2.172630 2.176558 -0.336462 2.201305 1.958730 0.059511 1.627345 1.614048 1.688788 -2.390512 -0.038551 0.448216 0.758694 2.695344 0.266505 -6.877590 -0.138603 0.519975 4.271398 0.760678 4.264059 -1.039444 1.637162 0.497345 0.841288 0.780341 -1.412596 1.741807 -1.160290 -0.537216 -4.924427 1.223218 +PE-benchmarks/vertex-cover-problem.cpp__main = 1.212195 -0.905930 1.330657 -3.001135 -2.692267 -0.122254 0.264505 -2.249775 -1.117066 2.220721 0.734428 -2.160649 -1.532963 4.135824 -0.930504 -2.908630 0.103405 0.027222 -0.180290 -0.237201 -1.419749 2.045312 -1.232819 -1.542831 1.861813 -0.871655 -0.041255 2.306469 1.513968 -0.222526 -0.549924 -1.933932 0.076771 5.446877 1.242411 0.094434 -0.380040 7.792058 -1.607837 4.406551 -4.195811 -4.131222 5.542699 -1.012058 -0.022661 -3.012266 -2.174270 2.844561 -3.254879 -0.920017 0.839321 -0.180203 0.544169 -2.841814 -0.043770 2.800738 -5.806712 3.050198 2.398820 -1.876381 -2.655936 -1.835887 -1.020841 -0.155322 -2.648715 -3.105108 0.066668 1.151793 -2.013328 0.164537 -2.333093 -3.045764 5.406999 1.422226 -1.724329 1.493417 -0.002767 -2.206885 2.399839 -2.108580 -4.404004 -2.072803 0.782157 -1.241155 3.615773 1.490396 3.308342 -7.267897 1.583620 -7.274847 2.244060 -4.065165 3.127173 5.804845 -4.013131 3.735211 1.769814 2.101537 1.831693 0.929782 4.054236 1.580798 0.479241 1.759874 2.554193 2.759597 -1.986787 -3.279661 -2.425234 -2.804245 0.063653 -1.069440 -6.423872 1.901983 -2.235891 2.175982 -0.725831 1.228727 -1.169113 2.913386 -5.901777 -0.570694 1.509736 -1.375180 2.761977 3.036166 -0.647207 0.086930 -2.122096 3.611926 -1.364058 1.462597 -1.158847 3.768820 -1.462257 -3.511407 -4.126431 0.162385 1.631072 -3.482320 -5.109632 -5.471049 -1.482814 1.664109 -2.442763 4.193983 7.931415 -3.098244 -3.615572 4.812503 -0.319333 2.004329 4.047960 1.458141 5.074259 -2.195819 -0.532715 -0.984569 -0.983197 0.944629 0.445927 -0.120203 -3.185009 2.926760 -0.451779 -1.743391 4.614087 -0.173406 -1.827048 -2.352830 0.502262 -2.270071 -2.975278 5.636095 -2.234791 4.169398 -1.571060 6.665329 -2.076564 -3.040462 1.732415 -3.757161 -0.709614 -3.032526 -0.054876 -0.375929 2.587377 -4.386951 -3.332487 -0.365593 -0.987202 -1.927454 3.400849 0.921823 -0.352285 0.778274 0.390342 4.091831 3.699190 -0.983080 0.377861 -4.339653 1.785823 2.451551 -0.675110 -5.428818 -0.474779 -0.846345 -1.541484 1.008943 0.458394 2.158849 -2.534019 -0.980442 0.794519 0.005465 1.426516 0.649885 -3.796726 1.563415 -0.189564 1.388079 2.461167 4.628577 4.667101 3.696582 1.297826 1.620452 -0.534614 -0.951480 -0.793855 1.126700 1.004923 1.946060 2.460953 3.838377 3.355166 1.755389 2.835123 1.994238 0.172418 4.568143 1.400255 6.741959 -1.991531 -1.260110 0.882309 0.065881 4.485268 5.852080 -2.133769 -0.912245 2.811576 0.052033 -1.622143 -3.128149 0.289511 -0.789730 -1.421861 2.203575 1.445039 -0.605883 -1.086433 6.581913 -1.247799 -7.174870 3.952358 1.674474 3.030833 1.443869 0.180573 0.889370 2.846085 -1.818415 2.733390 3.037557 3.143914 -4.125155 -0.452242 0.302963 2.911690 2.757676 2.290101 -5.188103 1.049306 2.225480 4.426462 1.107989 2.163589 -2.225421 -1.674302 0.755285 -1.349451 -0.162940 0.054198 1.664868 -1.252376 0.775421 -3.256010 -2.487244 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 2.689375 -1.428593 2.233073 -5.947217 -3.410554 0.460823 3.723704 -5.480651 -3.034200 8.700958 1.642590 -4.169772 -3.246182 6.502291 0.161431 -3.388811 1.322921 -2.579102 -0.877063 -0.283151 -3.352676 2.913587 -2.645478 -4.553175 2.349145 -0.979554 1.695126 4.759928 -0.807930 1.070335 -0.488305 -4.371785 0.447842 10.657051 4.304608 -0.063708 -3.152480 13.880583 -7.170063 11.299195 -7.937181 -9.093833 11.917954 -1.768486 0.360799 -4.911421 -1.146882 6.756840 -1.815846 -6.049566 0.550566 -0.950708 2.925701 -6.368411 -3.156261 5.682506 -8.381548 2.330651 4.974275 -5.447110 -7.682524 -3.466355 0.866852 3.129205 -9.224139 -6.152028 0.580817 -1.109958 -2.914872 -0.546013 -6.954167 -6.701208 5.767400 3.381964 -2.486496 0.968787 -2.651847 -3.765976 4.660673 -0.767942 -8.024914 -4.030873 -0.932983 -5.793909 5.157099 3.406106 7.861185 -13.943058 3.604574 -14.214106 3.785798 -5.909338 5.835854 10.290649 -3.261750 7.020824 2.329101 6.869837 1.668787 -1.518321 5.894785 2.813619 2.208403 3.512256 7.184330 7.457096 -6.505235 -8.580100 -5.972783 -4.626386 3.118588 -3.123484 -8.300158 4.893873 -5.216737 0.428428 -1.108210 1.771329 -4.473012 7.149120 -12.768355 -0.516164 2.075492 -2.462776 6.132009 5.242900 -0.625448 1.522874 -1.696368 5.729604 -1.203345 3.520643 -1.035747 8.204483 -3.812607 -1.331888 -3.924696 2.967180 4.955606 -6.905646 -9.310974 -12.982236 -3.369377 4.724424 -5.348197 9.186527 14.381344 -5.816409 -6.283258 7.411842 -2.640786 1.857088 4.901062 2.252512 10.227759 -5.443035 -0.340970 -0.668518 -1.341823 2.834833 9.474215 -1.460950 -6.579713 7.078571 -3.357631 -0.925775 7.533459 1.038891 -3.158632 -4.194504 1.172799 -3.789366 -6.303503 9.621469 -8.933827 6.442574 -3.402942 11.967052 -3.995053 -1.935348 3.526421 -9.073907 -2.769871 -8.278098 -0.472421 -1.306980 6.075698 -7.157766 -5.717630 -2.010559 -1.728916 -3.535156 8.352316 -4.517557 -0.887566 1.622286 -0.335365 9.440549 5.498596 -2.435666 -1.919375 -6.767211 3.581755 4.782966 0.210888 -8.108022 -4.257206 -2.871211 -3.707616 1.743092 0.693549 5.947208 -6.537589 -0.408530 4.013066 1.008193 0.253399 1.372936 -11.538986 3.852344 2.270148 3.128944 4.767138 11.050748 5.766664 7.978367 1.953121 3.067083 -2.275352 -1.093347 -8.009121 1.925831 1.295225 3.457016 5.376667 6.915447 5.573393 4.828333 6.725026 2.189340 0.161695 8.578295 0.635222 10.424654 -3.189985 -1.918554 3.395593 0.346404 7.535076 8.930373 -1.690421 -4.859645 5.189267 -3.865419 -6.668638 -2.370349 0.893568 -1.920011 0.360548 3.720603 5.704289 0.180575 -3.204299 13.800774 -2.899342 -15.870988 6.413584 3.670986 7.037328 7.348223 -1.711109 5.767332 4.090544 -0.324564 6.478530 7.247179 5.076759 -8.439636 1.887979 1.089918 4.778474 6.799433 1.943372 -14.673495 1.046379 1.706626 9.147770 1.648573 7.715666 -5.993317 1.694314 2.100414 -2.024118 2.062604 -0.773351 5.855968 -0.822025 1.420167 -10.526754 0.317098 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.308902 0.047684 0.571793 -1.283826 -0.992979 -0.122976 0.572058 -0.793270 -0.431118 0.267280 0.533704 -0.870420 -0.978534 1.184532 -0.264411 -1.109091 0.057683 -0.543057 -0.405482 -0.365102 -0.230790 0.578406 -0.228530 -0.661395 0.470279 -0.263922 0.044180 1.330255 0.959080 -0.313372 -0.145109 -0.453128 0.323438 1.821101 0.421984 -0.178849 -0.152940 2.524624 -0.837140 1.080666 -1.585675 -1.189134 2.246614 -0.314894 -0.585146 -2.069498 -1.075674 0.991859 -1.473221 -0.222586 0.211272 -0.061872 0.315132 -1.100155 -0.295087 1.623979 -2.264403 1.250551 0.748672 -0.648380 -0.825115 -0.503232 -0.129860 -0.024046 -0.567583 -1.125932 0.085505 -0.209479 -0.790589 0.176055 -0.806774 -0.985313 2.215807 0.352278 -0.405761 0.441455 -0.208140 -1.037140 0.872045 -0.447881 -1.207057 -0.696086 0.294297 -0.176937 1.295761 -0.053608 0.603935 -2.477138 -0.340536 -2.342226 0.636019 -1.547423 0.905402 1.603103 -1.408611 1.293795 0.228708 -0.129916 0.270486 0.082485 1.294679 0.348405 0.879871 0.509551 1.025861 0.787446 -0.612915 -1.172509 -0.861376 -1.022585 0.077395 -0.495417 -2.801823 0.642756 -0.862647 0.006025 -0.030524 -0.062617 -0.227360 1.256186 -1.199448 0.304968 0.551943 -0.426313 0.682310 1.417662 -0.158931 0.041689 -0.624739 1.243416 -0.116351 0.961616 -0.305328 1.130541 -0.124839 -2.020880 -1.190510 0.119522 0.512746 -0.947667 -1.724683 -1.566092 -0.438774 0.030076 -0.744595 0.822116 2.517189 -0.774232 -1.673694 1.608327 0.550844 0.734396 1.172807 0.375531 2.119542 -0.841779 -0.173973 -0.405653 -0.429046 0.472397 0.663658 -0.347556 -1.092279 0.941790 -0.339847 -1.354237 1.552762 -0.104763 -0.493260 0.286451 -0.022476 -0.937015 -1.495968 1.930334 0.183858 1.843602 -0.369793 2.197328 -0.764958 -1.365181 0.588621 -0.593217 -0.178084 -1.083665 -0.200197 0.175698 0.765593 -1.164845 -1.153044 -0.553121 -0.072013 -0.652807 1.454495 -0.036556 0.000000 0.176108 0.204861 0.665138 1.220452 -0.686172 0.268988 -1.506420 0.676150 1.187546 0.324896 -2.270012 -0.134327 -0.297043 -0.479247 0.509787 0.082424 0.924562 -0.539189 -0.329925 0.569259 -0.212705 0.237446 0.128537 -1.893963 0.595148 -0.225625 0.240591 0.527408 1.759048 1.721332 0.941614 0.192620 0.576328 -0.053926 -0.279763 -0.600427 0.026110 0.203240 0.492012 0.850072 1.386206 0.952196 0.597431 1.304520 0.967875 -0.172871 1.455354 0.748901 2.126060 -0.466309 -0.596385 0.246780 -0.000774 1.468004 2.116664 0.021836 -0.682043 0.930750 0.329038 -0.420325 -1.790809 -0.265307 -0.337752 -0.389574 1.596761 0.521297 -0.421135 -0.197644 2.315351 -0.252565 -2.478721 1.384704 0.641340 0.877144 0.246669 -0.267106 0.193797 1.232620 -0.651097 0.635822 0.955250 1.006180 -1.356896 -0.402018 0.121122 0.991722 0.624364 0.760018 -2.430348 0.011139 0.696842 1.834149 0.380868 1.319648 -0.761559 -0.496063 0.303497 0.016891 0.045425 -0.014808 0.481234 -1.096808 0.083553 -1.285843 -0.515847 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.762502 -0.126717 0.703458 -1.600493 -1.083082 -0.055586 0.794506 -1.515049 -0.699732 1.516332 0.726576 -1.199436 -0.411910 1.834486 -0.353617 -0.931132 0.313575 -0.118101 -0.452623 -0.176999 -0.470238 0.776589 -0.533179 -1.174281 0.568010 -0.267248 0.387143 1.388901 0.024578 0.181516 -0.283472 -0.865339 0.374344 2.706872 0.809510 -0.128294 -0.647794 3.189814 -1.750408 2.230384 -2.326555 -1.757447 2.994268 -0.450333 -0.093664 -2.354609 -1.395758 1.448685 -0.401365 -1.296861 -0.080068 -0.308628 0.618073 -1.710472 -0.632504 1.759105 -2.310639 0.642324 1.354814 -1.418313 -1.806142 -0.665357 0.373778 0.305576 -2.031707 -1.706534 0.144740 -0.048517 -0.490086 0.240442 -1.598590 -2.051132 2.118055 0.480655 -0.696963 0.423356 -0.574019 -1.703625 1.291082 -0.014942 -1.732695 -1.059896 0.134935 -0.945574 1.349812 0.315266 1.797160 -3.569020 0.605060 -3.486925 0.946710 -1.867778 1.446104 2.437203 -1.498376 1.603557 0.553391 1.445642 0.521214 0.265419 1.675274 0.867334 0.768877 0.481373 1.859860 1.594919 -1.239956 -2.054231 -1.370022 -1.494402 0.675554 -0.869493 -3.314237 1.096820 -1.315444 -0.108786 -0.473248 0.041565 -0.341397 2.432962 -2.578030 0.279581 0.999807 -0.631921 0.923790 1.721282 -0.188195 0.183433 -0.934277 1.423397 -0.247685 0.907544 -0.237888 1.824006 -1.324671 -1.725761 -1.095100 0.424312 0.838435 -1.744167 -2.413798 -2.965368 -0.674518 0.965553 -1.202074 1.482667 3.501317 -1.354507 -2.156457 1.881625 0.702420 -0.002857 1.497037 0.627830 3.135927 -1.573771 0.039972 -0.482386 -0.350155 0.816057 1.366921 -0.640254 -1.708599 1.687265 -0.916491 -2.239614 3.353968 -0.079774 -0.575306 0.255105 0.326973 -0.892414 -1.518668 2.621591 -1.124203 2.298029 -1.077513 3.031616 -1.133784 -0.979376 0.693601 -1.802763 -0.641981 -1.724619 0.006119 -0.182932 1.812214 -1.601334 -1.569808 -0.445237 -0.734352 -0.658989 2.343236 -0.930446 -0.098263 0.275851 -0.210244 1.440472 1.413872 -0.806785 0.024294 -1.718725 0.951437 1.651400 0.221353 -2.759835 -0.764010 -0.947211 -0.740090 -0.311964 0.209203 1.630977 -1.425687 -0.299762 0.883862 -0.178022 0.017092 -0.052343 -2.465968 0.970366 -0.404729 0.858548 0.698453 2.764363 2.028527 1.842520 0.331373 0.516570 -0.164340 -0.688514 -1.828962 0.583939 0.295030 0.651385 1.265020 1.865693 1.220102 1.133840 1.605568 0.596572 0.547492 2.301189 0.694416 2.774189 -0.593901 -0.463726 0.631145 -0.064578 2.100887 2.743265 0.198994 -1.058862 1.040790 -0.436027 -1.563087 -1.457861 -0.174385 -0.200456 -0.770745 1.406412 1.209015 -0.293085 -0.700206 3.486169 -0.326866 -3.749049 1.711323 0.790138 1.385495 1.415548 -0.509125 1.262668 1.398240 0.235736 1.220867 1.515624 1.529913 -2.268811 -0.410046 0.276221 1.355974 1.698264 0.733090 -3.821407 0.779443 0.737850 2.514817 -0.029774 2.085911 -1.476519 0.456078 0.445788 -0.059440 0.258725 -0.190602 1.155885 -0.843669 -0.028653 -2.675053 -0.188211 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 2.572099 -0.121953 2.183746 -4.124805 -3.050297 -0.106320 2.892532 -6.057608 -2.912830 8.319862 2.266827 -4.068105 -0.519124 4.976589 -1.112625 -1.920083 0.791298 1.951940 -1.440846 -1.420000 -1.767885 2.003191 -1.897208 -4.594612 1.298435 -1.131377 2.585668 4.110473 -2.058152 2.998351 0.197567 -3.309346 1.837577 8.632127 3.276491 0.250995 -3.856263 8.619162 -7.354347 7.950718 -8.259687 -6.762077 10.154828 -1.088476 1.417966 -6.935134 -3.484810 4.932629 0.945740 -6.150815 -1.845346 -1.371866 3.146611 -6.121037 -3.229332 4.732029 -5.240024 -0.023093 4.545368 -7.500932 -8.047036 -1.360576 2.682439 2.735909 -8.781643 -5.762822 -0.161759 -0.016373 -0.042205 0.854298 -6.068708 -7.431211 4.071644 0.700868 -2.376779 0.597273 -3.156116 -4.452835 3.985613 2.086515 -5.018943 -3.969441 0.182200 -4.094922 1.778808 2.712306 7.817449 -11.505691 2.976675 -11.090597 3.706485 -4.149412 4.969507 6.933148 -3.098667 5.145105 2.049086 6.266003 1.706925 0.220010 4.255122 2.889718 2.846808 1.450736 6.317593 6.540791 -5.131849 -8.142552 -5.152981 -4.841138 3.962992 -3.432884 -8.862872 3.706914 -4.726937 -0.924601 -1.960650 -0.697140 -1.028643 9.388531 -10.145476 1.221900 3.654066 -1.905400 3.169299 4.252355 -0.030754 1.405564 -1.738909 3.411322 -0.933275 1.832387 0.370471 6.593521 -5.740149 -3.396833 -2.006502 2.885002 3.067251 -6.013332 -6.893612 -10.713374 -2.465317 5.247190 -4.054231 3.982587 10.762833 -4.695742 -6.952223 4.326265 0.855288 -2.644809 3.784907 2.365376 10.711732 -6.004803 0.605638 -1.429432 -0.765275 4.348618 8.678013 -2.666086 -6.378475 6.830424 -3.873151 -7.074350 10.404069 -0.541167 -1.457695 0.021568 2.107423 -1.625095 -2.720671 6.999063 -7.247658 6.723965 -5.527066 8.988248 -4.316501 -1.392913 1.439443 -9.037886 -3.857348 -5.206576 0.818071 -1.348533 7.227725 -5.133334 -4.519957 -1.783219 -3.735176 -1.386770 8.780313 -6.630957 -0.650307 0.973040 -2.086490 6.125389 3.072810 -2.197915 -1.615646 -4.190464 2.799269 5.284261 1.509505 -8.647947 -4.498849 -4.283614 -2.623741 -2.751621 0.704951 6.442922 -4.944452 0.580331 3.069373 -1.015721 -1.133396 -0.950761 -7.053450 3.722275 -1.013076 4.018944 1.486554 10.043196 5.333734 6.856600 0.787052 2.069946 -0.636090 -3.569790 -7.661636 3.430961 1.566775 1.131489 4.269401 5.702872 3.257680 4.504741 5.316650 0.113682 2.856623 7.711126 0.448551 7.868779 -3.136572 -0.195027 2.634619 0.411564 6.127621 7.674868 2.064555 -4.754559 2.651593 -4.087994 -6.783622 -2.244574 -0.206090 -0.071158 -2.198114 4.068989 6.488430 -0.322733 -3.296093 11.560817 -0.672674 -12.659052 5.737089 2.377675 4.542617 6.605755 -2.839225 5.744253 3.833358 4.101725 3.514012 5.542993 4.777458 -8.800142 -0.603787 1.025668 4.529206 7.951215 1.060361 -15.002569 2.675130 1.818187 8.189528 -1.941234 8.598212 -6.149722 3.887823 1.598735 0.017816 1.598855 -1.136811 4.216849 -0.865242 -0.048645 -10.368229 1.441318 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = 1.052527 -0.090404 0.792626 -2.300061 -1.447534 -0.082748 1.913271 -1.512628 -1.132389 1.700174 0.822542 -1.431020 -1.315936 2.214402 -0.096493 -1.453019 0.690593 -0.586759 -0.745718 -0.236884 -1.292643 1.058481 -0.680369 -2.129647 1.250809 -0.568072 0.103798 2.699861 0.349790 0.226241 -0.255803 -1.080040 0.373199 3.899357 0.904886 -0.654582 -0.385979 5.204792 -3.344788 3.210255 -2.439761 -2.258656 5.008795 -0.741858 -0.855135 -3.331870 -2.104327 1.969161 -1.092252 -1.579331 0.114656 -0.498139 0.827907 -2.312115 -0.716948 3.541346 -3.884568 1.007746 1.834899 -1.549612 -2.350659 -1.202766 -0.155580 0.128445 -2.762744 -2.742767 0.010956 -0.732795 -0.636746 0.105164 -2.706354 -2.471580 3.467453 1.049469 -0.556254 0.673263 -0.884387 -2.369356 1.510566 0.254846 -2.470204 -1.504549 0.297060 -1.056513 2.381735 0.215801 2.226940 -4.723854 0.160426 -4.920982 0.948041 -3.329553 2.097608 3.778972 -1.724963 2.514541 0.518631 1.266833 0.137627 0.154810 2.437473 0.787652 1.309566 0.595119 2.454065 2.254896 -1.975338 -3.073897 -1.876901 -1.430118 0.672382 -0.890095 -4.657705 1.697924 -2.102308 -0.302356 -0.285818 0.301507 -1.033233 3.269491 -2.695647 1.032107 1.261393 -1.014760 1.563449 2.702968 -0.199592 -0.025768 -1.036318 1.835373 0.170629 1.987487 -0.812722 2.639279 -1.414057 -2.926952 -1.445625 0.125934 1.221319 -2.523302 -3.602124 -3.728867 -0.874065 1.069480 -1.735085 2.013309 5.669059 -1.822868 -2.333766 2.624573 0.810141 1.219458 1.929003 0.940953 4.593198 -2.125981 0.097473 -0.409690 -0.458955 1.025440 2.330164 -1.132316 -2.346944 2.280387 -0.824084 -2.154600 4.796755 0.032766 -0.615622 1.096622 0.107336 -1.032869 -3.065612 4.409318 -1.189362 3.449702 -0.747485 4.486917 -1.314934 -1.472401 1.357757 -1.178777 -0.501922 -3.378873 -0.131657 0.147845 1.782594 -1.924401 -2.457073 -0.932680 -0.461464 -0.900448 3.221880 -0.690386 -0.157643 0.103351 -0.245813 1.557226 2.025836 -1.384664 0.195556 -3.036560 1.788021 1.929802 -0.127667 -4.259199 -0.857040 -0.495841 -1.156531 0.061508 0.380335 2.026164 -1.943939 -0.481198 1.839409 -0.015240 -0.346478 0.339739 -4.106591 1.385658 -0.185891 0.635295 1.340225 3.790674 3.002158 2.179101 0.170307 0.994227 -0.794228 -0.567403 -2.846545 0.695500 -0.099717 1.433132 1.936138 2.541289 1.638836 1.474559 2.039782 0.840176 0.609825 2.899592 1.820466 4.010651 -0.327948 -1.426072 1.144052 -0.376710 3.119202 3.411367 0.150109 -1.997530 1.689112 -0.401206 -2.004683 -2.417589 -0.329445 -0.418615 -1.007776 2.847077 1.280247 -0.494231 -0.712708 5.262042 -0.753679 -5.770900 2.105801 1.205933 2.070353 1.973544 -0.481321 1.803130 2.282030 0.197102 1.748269 2.042907 2.157559 -2.876956 0.081483 0.462564 1.355311 1.783910 0.841311 -6.305306 0.312984 0.817331 3.428250 0.593694 3.250260 -1.535351 0.562650 0.471117 -0.046820 0.480132 -0.465573 1.564214 -1.763136 0.582068 -4.038689 0.163606 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = -0.068670 0.233332 0.580616 -1.010911 -0.523251 -0.065616 0.819701 0.264625 -0.283445 1.072363 -0.355120 0.143752 -0.395897 1.144538 -0.397433 -0.134520 0.220810 -0.953524 -0.557317 -0.040186 -0.525588 1.040807 -0.044860 -0.774464 1.129088 -0.296476 -0.178478 0.844922 -0.828546 -0.272815 0.513742 -0.402771 -0.162107 1.054411 -0.550979 0.221386 0.188916 1.055723 -1.190044 1.559895 -0.997195 -0.816210 1.220536 -0.407148 0.247013 -1.166751 -0.262769 0.336538 0.170091 -0.542618 -0.294155 -0.174619 -0.397789 -0.575880 0.457316 0.605668 -1.378002 0.097839 0.457923 -0.168359 -0.639336 -0.449987 -0.172608 -0.295444 -0.924351 -1.025958 -0.588615 -0.259779 -0.424607 0.080938 -0.303489 0.037909 0.213316 0.268802 0.117141 0.510921 -0.182101 -0.736179 0.419237 -1.038936 -0.302899 -0.553352 0.411502 -0.643889 0.655707 0.067372 0.239753 -0.843304 0.262026 -0.543009 -0.108952 -0.771444 0.372217 1.040711 0.227476 0.728416 0.044067 0.273124 0.339447 0.316690 0.532059 0.474771 0.948170 0.090768 0.823003 0.604845 -0.968907 -1.138952 -0.391260 -0.458350 0.305122 -0.642607 -0.686155 0.302390 0.124252 -0.427968 0.091504 0.128354 -0.334311 0.870977 -1.337448 0.369366 0.629198 -0.193075 -0.304009 0.020745 -0.051812 -0.536111 0.148515 0.082563 0.003767 0.738947 -0.054095 0.816833 -0.614602 -0.405697 0.098350 -0.745857 -0.533648 -0.636435 -0.747891 -1.286322 -0.301834 0.284817 -0.348265 0.650952 1.634415 -0.243402 -0.713971 0.417228 0.566497 0.243827 0.190579 0.417368 0.422885 -0.161859 -0.552325 -0.071223 -0.346874 0.774137 1.333412 -0.322567 -0.527459 0.730538 -0.282931 -0.990137 0.981885 0.031520 0.275726 -0.251981 0.042189 -0.709145 -0.489211 0.927708 -0.824910 1.303408 -0.594223 1.095416 -0.442956 -0.225132 0.386668 -1.116728 0.268317 -1.385429 -0.329423 0.199393 0.049467 -0.547442 -0.571787 -0.436828 -0.147540 -0.120193 0.622954 -1.623360 0.088204 -0.494634 0.197154 0.998731 0.289762 -0.715127 0.434001 -0.493901 0.920002 0.562647 0.510236 -1.315239 -0.001937 0.144982 -0.529825 0.296695 0.032070 0.088478 -0.120099 0.110808 0.967218 -0.484248 -1.006404 0.159757 -1.081238 -0.134357 -0.392360 0.506228 0.250575 0.637342 0.697032 0.002075 -0.400320 0.568945 -0.790716 -0.543011 -0.662981 0.409424 -0.305482 -0.120984 0.709587 0.759133 0.813729 0.438827 0.530323 0.685492 -0.254977 0.878970 0.200372 0.542824 -0.077215 -0.374718 0.355159 0.355372 0.805574 0.244861 0.055635 -0.375196 0.634474 -0.013800 -0.394329 0.040708 -0.324607 -0.333929 -0.233847 0.762884 0.101955 -0.344572 0.560843 1.279326 -0.286521 -1.066141 0.110807 -0.220248 0.742696 0.073963 0.253785 0.345848 0.779747 -0.178044 0.187325 0.191956 0.333850 -0.623319 -0.254451 0.204177 0.038503 1.187085 0.723922 -2.041042 -0.335023 -0.247221 0.571627 -0.025010 1.126660 0.102473 -0.098110 0.021109 0.080372 -0.336105 -0.089147 0.047241 -0.178147 0.165236 -1.367717 0.182364 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 6.212270 0.904048 1.109760 -6.042355 -3.115532 -0.319877 7.938633 -6.628810 -5.041750 13.816441 1.854017 -4.982809 -1.902841 6.773378 -0.326216 -1.831552 2.482039 -2.049287 -2.698630 -0.694514 -5.330899 3.017495 -2.515257 -9.190265 3.181582 -1.218102 2.006138 6.496547 -4.629110 3.062895 -0.420715 -4.215586 2.382704 12.344776 4.125726 -3.150931 -4.418241 14.816036 -15.186781 12.196124 -9.011243 -9.593236 17.114727 -2.011136 0.646874 -9.247407 -3.763178 7.298745 5.294662 -9.345769 -2.601813 -2.094245 2.925379 -8.980572 -5.004151 10.475264 -9.241418 0.236449 6.576135 -7.814973 -11.610117 -3.316191 3.598135 3.490324 -13.434473 -9.815504 -0.248102 -2.889949 -0.565103 0.477503 -11.832901 -9.626624 4.816634 3.264958 -1.456829 0.479062 -6.489844 -6.548306 4.722762 1.700746 -6.897599 -4.975025 0.428912 -5.046473 3.113323 4.198208 10.856917 -15.422928 4.236548 -15.764413 3.146999 -8.430787 7.351143 11.379458 -0.119006 7.596326 1.060912 8.677014 1.458369 -0.276087 6.243013 3.226514 5.027359 1.058550 7.924086 10.969389 -8.546560 -11.856191 -6.415312 -3.780222 4.876044 -2.019901 -10.490098 6.988591 -7.884393 -2.863334 -1.083733 0.273114 -4.260539 12.777594 -13.887899 0.434195 3.895092 -3.011731 6.477157 7.077056 0.152854 1.404705 -2.202670 3.610707 2.370089 5.176029 -0.458504 9.536800 -9.595910 -5.386479 -1.492135 3.001811 5.227076 -9.919756 -10.456665 -15.538127 -2.717468 6.645699 -6.957999 8.122586 18.019546 -6.339987 -6.513183 5.737115 0.197193 -0.550060 4.748206 2.472069 16.902639 -9.191067 2.274955 1.801477 0.628498 5.177066 14.121313 -5.012959 -9.051517 8.354884 -4.526611 -5.333087 13.819086 1.495548 -0.799280 2.844516 1.709842 -0.662136 -7.323221 12.259287 -11.301060 9.975525 -4.883263 13.338957 -5.222088 0.063916 4.255556 -9.450161 -4.356044 -11.689925 0.916689 -1.555885 8.756921 -5.748229 -6.460179 -2.192281 -4.256480 -2.309879 12.936498 -9.183920 -0.869562 0.079943 -3.543695 8.812888 3.895241 -4.701926 -1.477513 -8.420514 5.682496 6.118420 0.080861 -13.400663 -6.756291 -3.736622 -4.167109 -1.868514 0.761720 8.044084 -7.603817 0.119640 7.869678 0.595245 -3.132469 -0.678774 -10.204636 5.150296 -0.706907 4.796625 2.679728 15.058478 5.817508 8.773764 -0.113378 2.122141 -3.445136 -4.080515 -13.174083 4.676637 -0.402151 2.865781 7.013311 7.506925 3.374560 6.193608 7.243974 -1.335710 2.144196 9.756361 2.766457 11.251861 -4.147202 -3.230932 4.853792 -1.788689 9.260843 9.098939 0.902388 -10.537366 4.350934 -7.433953 -10.500056 -0.815909 -0.420622 -0.743951 -2.913935 6.800102 8.613342 -0.002762 -4.081997 18.224239 -2.339917 -20.834227 6.835163 3.921040 7.322008 11.352663 -3.735832 10.252494 6.308483 6.788153 4.738638 8.235353 6.796962 -10.672447 1.874255 1.843481 4.920160 8.058422 -0.464652 -25.664145 2.592537 2.715468 11.077898 -0.693152 13.310451 -7.351061 6.901571 1.698299 1.410932 3.511316 -2.167379 7.728563 -3.152963 2.304699 -16.238895 5.901975 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 1.275705 -0.383312 0.889293 -2.255314 -1.637141 0.318544 0.692042 -1.883532 -0.673120 1.460287 0.900509 -1.387936 -0.818971 2.452703 -0.443522 -1.511624 0.392263 -1.076883 -0.249731 0.028979 -0.651765 1.154442 -0.816968 -1.189881 0.687173 -0.314420 0.203647 1.950079 0.795384 0.052499 -0.889855 -1.093371 -0.054113 3.629084 1.261392 -0.619842 -0.116995 5.041839 -2.249425 2.787720 -2.715975 -2.353028 3.876688 -0.570486 -0.780403 -2.640347 -1.721658 1.820580 -1.465446 -1.068351 0.680611 -0.515852 0.754537 -1.650696 -0.531478 2.437229 -3.894568 1.387705 1.548687 -0.831918 -1.758497 -1.227648 0.215960 0.475856 -2.338590 -2.084504 0.669324 -0.081060 -0.986201 0.037086 -2.037927 -2.581251 3.408145 1.067144 -1.066614 0.392313 -0.267822 -2.472186 1.787546 -0.526117 -2.831887 -1.079795 -0.169791 -1.610175 2.639469 0.094084 2.130825 -4.821543 0.933628 -4.935782 1.068912 -2.902333 1.855982 3.592695 -2.469933 2.071503 0.835783 2.124134 0.964821 -0.050110 2.556585 1.302929 0.812797 0.830792 2.336259 2.030051 -1.487391 -2.155569 -1.948858 -1.873144 0.344408 -1.090031 -5.073815 1.437795 -1.672746 0.189887 -0.524549 0.299349 -0.943303 2.968410 -3.371015 0.238610 0.650464 -0.784938 1.526468 2.609103 -0.500961 0.385880 -1.227532 2.449682 -0.466761 1.429669 -0.632342 2.215665 -1.633997 -2.089393 -2.234850 0.625222 1.479065 -2.316146 -3.490163 -3.939668 -0.883941 0.786195 -1.456673 2.833358 5.107035 -1.770272 -2.748076 3.038402 0.457258 0.718923 2.645698 0.601059 3.948124 -1.748574 -0.139826 -0.782848 -0.563282 0.156809 1.007375 -0.463931 -1.619812 1.934622 -0.860892 -1.744131 4.200942 0.110793 -1.217831 -0.123403 0.161941 -1.459944 -2.649131 4.022849 -1.167225 2.820946 -0.603886 4.315328 -1.239099 -1.606229 1.214258 -2.069447 -0.418494 -2.692136 -0.376001 -0.223525 2.048721 -2.267593 -2.078792 -0.714902 -0.408518 -1.227448 2.647534 0.189490 0.080620 0.604402 0.218186 2.075602 2.599751 -0.813036 0.153564 -2.734204 1.289572 2.284403 -0.451573 -3.425998 -0.752668 -1.037772 -0.844146 0.345483 0.201761 1.904241 -2.327399 -0.897451 0.823825 0.299063 0.707858 0.626790 -4.368219 1.346738 -0.297748 0.826836 1.440737 3.291555 2.836888 2.484222 0.959152 0.732407 -0.087630 -0.338393 -1.871291 0.320387 0.629060 1.254201 1.586323 2.926671 1.763873 1.355031 1.842290 1.505115 0.410084 2.889592 1.205601 4.255549 -0.669187 -0.947030 0.417435 -0.138764 2.888054 4.066668 -0.319944 -0.816521 1.491567 -0.064142 -1.707444 -2.511942 0.019102 -0.662352 -0.467081 1.558266 1.003841 -0.271443 -0.881896 4.658929 -0.500897 -5.192726 2.169464 1.159244 1.858297 1.812922 -0.403090 1.238320 1.792627 -0.920461 2.320407 2.170944 1.898377 -2.524155 -0.102978 0.319054 1.779180 1.361389 1.246496 -4.437242 1.071814 1.096846 3.385421 0.896900 2.608638 -1.788697 -0.197435 0.698537 -0.602923 0.245907 0.001501 1.817555 -1.478542 0.552571 -3.277082 -1.018460 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 1.015776 -0.228407 0.816683 -2.118206 -1.423910 0.095337 0.706780 -1.853649 -0.758186 1.601662 0.950845 -1.428366 -0.533419 2.303796 -0.442666 -1.279426 0.466635 -0.482035 -0.419879 -0.122610 -0.548766 0.989747 -0.692036 -1.317228 0.642897 -0.307155 0.332305 1.677471 0.396694 0.046927 -0.659966 -1.006249 0.236773 3.378245 1.090192 -0.408100 -0.483137 4.159260 -1.932986 2.560592 -2.714546 -2.018511 3.486551 -0.542653 -0.338285 -2.718208 -1.734673 1.701295 -0.831260 -1.275758 0.219969 -0.498594 0.764438 -1.851101 -0.657984 2.214167 -3.082525 1.039814 1.612777 -1.250539 -1.881602 -0.967587 0.413124 0.359170 -2.280564 -2.032844 0.420510 0.014774 -0.755826 0.182852 -1.946751 -2.535491 2.810712 0.774105 -0.939048 0.434341 -0.546034 -2.353841 1.598538 -0.231133 -2.345379 -1.147327 0.052653 -1.247427 2.061735 0.127996 2.064008 -4.425797 0.784637 -4.424386 1.026895 -2.433197 1.793485 3.157231 -2.137777 1.776783 0.685237 1.873335 0.730896 0.218457 2.232338 1.076168 0.744609 0.567312 2.270528 1.838970 -1.370887 -2.216981 -1.538361 -1.804326 0.542709 -1.042509 -4.304352 1.351978 -1.646154 -0.057129 -0.601283 0.133392 -0.601770 2.869344 -3.006828 0.036852 0.949400 -0.779236 1.252613 2.282418 -0.328025 0.289912 -1.204916 2.001100 -0.317809 1.141823 -0.490312 2.146432 -1.548418 -2.158603 -1.716623 0.501679 1.194450 -2.163508 -3.161309 -3.547093 -0.845791 0.812400 -1.391758 2.213411 4.370387 -1.644623 -2.632499 2.571701 0.705427 0.226798 2.207554 0.656840 3.745079 -1.865276 0.059505 -0.669411 -0.451071 0.558739 1.111104 -0.717437 -1.831670 1.881016 -1.041874 -2.310353 4.004656 0.045030 -0.877150 0.160254 0.271469 -1.216537 -2.137640 3.409994 -1.210454 2.695393 -0.912828 3.861601 -1.312437 -1.426893 1.002671 -1.843176 -0.576007 -2.098871 -0.149283 -0.145725 2.130601 -1.954665 -1.975914 -0.481648 -0.611312 -0.936330 2.691139 -0.411346 -0.045772 0.430545 -0.064811 1.791377 2.077914 -0.941655 0.187028 -2.186571 1.208095 2.152250 0.004941 -3.227427 -0.780849 -1.129871 -0.848616 -0.149499 0.231435 1.940236 -1.920725 -0.665816 0.943991 -0.003563 0.369804 0.210748 -3.463275 1.278375 -0.526094 0.827179 1.032113 3.235940 2.472856 2.268977 0.590629 0.436524 -0.149343 -0.627402 -1.983587 0.478784 0.440662 0.947150 1.506705 2.435798 1.545190 1.340368 1.857662 1.005278 0.585642 2.772649 0.963613 3.543458 -0.570560 -0.605163 0.592107 -0.226454 2.663100 3.633407 -0.025584 -1.082063 1.309294 -0.250970 -1.718562 -2.189178 -0.164974 -0.387143 -0.779253 1.464023 1.180522 -0.334622 -0.879010 4.252891 -0.399296 -4.552530 2.106733 1.006446 1.677025 1.688919 -0.535372 1.345776 1.618020 -0.249905 1.783869 1.908588 1.857432 -2.500319 -0.436532 0.307876 1.669102 1.638615 1.038433 -4.186752 1.060870 0.995877 3.099919 0.419226 2.346715 -1.715478 0.265599 0.567125 -0.239735 0.273239 -0.196815 1.506070 -1.321788 0.105973 -3.013005 -0.541921 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 2.716681 -0.069691 2.551946 -4.457033 -3.157376 -0.161214 3.324604 -6.257638 -2.933857 8.710625 2.325751 -4.236273 -1.151098 5.004897 -1.241836 -2.315239 1.067742 1.617472 -1.455741 -1.658948 -1.834509 2.071862 -1.903125 -4.912229 1.519028 -1.292621 2.766217 4.649361 -1.720058 3.051495 0.120645 -3.400560 2.007847 9.275469 3.406387 0.133084 -3.862911 9.333419 -7.575523 8.343508 -8.794411 -7.215887 10.854119 -1.152644 1.289967 -7.611019 -3.436562 5.172937 0.185890 -6.130643 -1.771289 -1.452791 3.422639 -6.544986 -3.371988 5.417000 -6.051652 0.362995 4.661555 -7.642378 -8.306127 -1.529990 2.623344 2.893188 -8.777215 -6.053950 -0.001830 -0.197240 -0.526465 1.144042 -6.374348 -7.623160 4.632250 0.786007 -2.573053 0.713594 -3.110328 -4.797936 4.232898 1.790447 -5.275951 -4.237375 0.302718 -4.049818 2.233787 2.651701 7.946555 -12.311769 2.695020 -11.678721 4.070707 -4.635489 5.344329 7.397110 -3.445717 5.655312 2.004053 6.075120 1.521671 -0.037461 4.663483 3.091105 3.360846 1.433556 6.610308 6.779941 -5.415442 -8.713223 -5.429079 -4.875207 3.865038 -3.608470 -9.627298 3.781104 -5.151498 -0.730559 -1.760405 -0.876872 -1.303919 9.752257 -10.641950 1.181149 3.713652 -2.034763 3.554491 4.649858 -0.038174 1.519893 -1.613922 4.011441 -0.830745 2.050073 0.241166 6.975270 -5.676830 -4.001150 -2.310110 2.861897 3.332469 -6.237090 -7.512331 -11.193998 -2.766866 5.222817 -4.075181 4.201277 11.491358 -4.620386 -7.417363 4.732532 0.541422 -2.352299 4.177265 2.518625 11.129230 -6.426994 0.737696 -1.630635 -0.568710 4.551813 9.509476 -2.843874 -6.752273 7.183212 -3.933059 -6.979690 10.170364 -0.523903 -1.434219 -0.106060 1.897051 -1.949492 -3.110157 7.590216 -7.517596 7.280596 -5.781752 9.747239 -4.693217 -2.016411 1.525003 -9.244090 -3.804426 -5.540605 0.764092 -1.129945 7.412122 -5.693618 -4.966870 -2.072296 -3.549722 -1.359214 9.266973 -6.859828 -0.775352 0.835817 -2.070676 6.770923 3.271656 -2.537205 -1.596983 -4.606191 2.917405 5.510917 1.693864 -9.334074 -4.472572 -4.274020 -2.824464 -2.494017 0.736345 6.675194 -5.080770 0.346809 3.384003 -1.148686 -1.213592 -1.012300 -7.924953 3.914926 -0.810665 3.829431 1.631118 10.522095 5.859450 6.931153 0.685614 2.070143 -0.593979 -3.792930 -7.955840 3.453649 1.718038 1.165257 4.350325 6.134268 3.411932 4.505710 5.575087 0.520451 2.588380 8.076930 0.678985 8.238795 -3.396003 -0.303974 2.831814 0.216164 6.543954 8.079063 2.037869 -5.080390 3.002050 -3.907038 -6.756194 -2.782168 -0.422716 -0.315921 -2.058835 4.644215 6.671892 -0.672889 -3.316958 12.254069 -0.654834 -13.419573 6.137716 2.650236 4.730160 6.724407 -3.072749 5.667749 4.208313 3.854185 3.747695 5.521830 5.010384 -9.080520 -0.678312 1.013633 4.756242 8.057908 1.071954 -15.852256 2.123974 1.957938 8.887957 -1.459253 9.259573 -6.290061 3.823691 1.510659 -0.064621 1.600888 -1.287685 4.459189 -1.245490 0.025465 -10.757365 1.464847 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 1.030368 -0.259394 0.532967 -1.525276 -1.171528 0.359718 0.098993 -1.459459 -0.673165 1.347103 0.534104 -1.053921 -0.642512 1.728778 -0.334996 -1.204632 0.214781 -0.711246 -0.122822 -0.095323 -0.754569 0.744480 -0.694538 -0.758653 0.486906 -0.174221 0.117344 1.023972 0.462186 -0.135200 -0.665963 -0.849152 -0.119037 2.742539 1.086984 -0.462358 -0.111029 3.760037 -0.964190 2.007345 -2.042301 -1.864334 2.610473 -0.422951 -0.315896 -1.464198 -0.803738 1.537328 -1.151388 -0.623762 0.492240 -0.450482 0.314740 -1.149452 -0.488894 1.605326 -2.813656 1.406339 1.204848 -0.680401 -1.510966 -0.908081 0.305726 0.255880 -1.473192 -1.518581 0.454458 0.190561 -0.893466 -0.025286 -1.706482 -1.854359 2.080328 0.885676 -0.815726 0.220287 -0.366111 -1.228883 1.171097 -0.615087 -2.276751 -0.824297 -0.060130 -1.280094 1.944726 0.409180 1.628893 -3.638009 1.092854 -3.878559 0.691002 -1.870220 1.497709 2.784086 -1.699180 1.415084 0.688711 1.426399 0.697223 -0.041297 1.884470 0.594761 0.103558 0.752097 1.604121 1.414382 -1.017941 -1.439758 -1.132478 -1.389151 0.149256 -0.486814 -3.086278 1.140713 -1.478561 0.626662 -0.458777 0.651617 -0.859419 1.505960 -2.887913 -0.618041 0.259411 -0.624719 1.630867 1.765879 -0.342553 0.478733 -0.937751 1.799617 -0.400294 0.812165 -0.550959 1.693270 -0.811970 -1.299649 -2.081508 0.527729 1.342562 -1.685887 -2.637437 -2.906565 -0.743589 0.464709 -1.221759 2.687771 3.804930 -1.433264 -1.858551 2.347408 -0.386891 0.694395 2.231658 0.447005 2.917768 -1.298569 -0.096035 -0.264628 -0.434332 0.049302 -0.021205 -0.382275 -1.116731 1.421971 -0.442748 -0.189443 2.444884 0.135792 -1.073396 -0.434745 0.170876 -0.877166 -1.888684 2.655357 -1.091018 1.754239 -0.111862 3.262263 -0.912228 -1.183073 0.981236 -1.792798 -0.319362 -1.517981 -0.293822 -0.529433 1.597826 -1.806596 -1.534692 -0.218819 -0.314443 -1.062875 1.902053 0.812775 0.059088 0.589505 0.173229 1.914182 2.030837 -0.573211 0.106617 -2.042797 0.860149 1.660718 -0.370119 -2.126424 -0.578586 -0.776377 -0.683097 0.562322 0.123064 1.329667 -1.735929 -0.577868 0.551636 0.386720 0.899321 0.673251 -2.699542 1.030778 -0.197021 0.525336 1.272350 2.561425 1.764327 1.988394 0.799929 0.491568 -0.109085 -0.231685 -0.978183 0.014785 0.442387 1.333064 1.250284 1.660239 1.406950 1.066271 1.261805 0.842590 0.137569 2.175737 0.638373 3.197678 -0.843696 -0.435325 0.237915 -0.171515 2.103894 3.019626 -0.990532 -0.658178 1.176299 -0.273645 -1.148828 -1.835083 0.126096 -0.525320 -0.346532 0.622054 0.957483 -0.028284 -0.796133 3.536314 -0.549131 -3.813872 1.887085 0.881432 1.350156 1.464018 -0.163529 0.823400 1.180064 -0.795561 1.499753 1.879944 1.498893 -1.934218 0.387243 0.166756 1.502811 0.630600 0.875798 -2.796461 0.835899 0.929891 2.392981 0.851273 1.435824 -1.329931 -0.359846 0.605881 -0.626092 0.197118 0.123124 1.531781 -0.702181 0.429615 -2.007978 -0.766692 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 2.807760 -0.124629 2.672961 -4.087597 -3.066507 0.151720 3.114820 -5.494825 -2.823660 8.363521 1.698468 -4.450407 -2.032316 5.271741 -1.113367 -2.449302 0.811525 -0.225476 -1.075148 -1.629025 -2.589300 2.004040 -2.039096 -4.138604 1.723664 -0.988846 2.265655 4.502466 -1.538063 2.315308 0.125771 -3.296166 1.541695 9.275800 3.649159 -0.416898 -2.967419 10.847423 -7.130515 9.214571 -8.508393 -7.649431 11.215426 -1.127046 0.325869 -6.708363 -2.451941 5.783259 -1.603531 -4.822783 -0.785861 -1.152744 2.474393 -5.933140 -3.310575 5.802331 -7.652996 2.236835 4.330243 -6.744821 -8.246855 -1.964082 1.997943 2.502531 -7.843626 -5.533410 0.121487 -0.680159 -1.591494 0.766429 -6.696654 -6.482235 4.400351 1.436026 -2.342215 0.711816 -2.873954 -2.916336 3.968726 0.263657 -6.058021 -4.058276 0.117354 -4.845327 3.268230 3.177338 7.580445 -12.500264 2.763118 -12.503427 3.759020 -5.159531 5.143085 8.137265 -3.327222 6.289132 1.779486 4.764262 1.452875 -0.351556 4.651112 2.530548 2.733158 2.321913 6.340569 7.075873 -5.243754 -8.143656 -5.430744 -4.421946 2.926581 -2.397385 -8.788151 3.825723 -5.656818 0.545288 -1.256112 0.647009 -2.505317 7.666592 -10.847184 0.575170 2.518067 -2.049051 4.794316 4.966239 -0.185238 1.847191 -1.731667 4.447838 -0.807971 2.646422 -0.281556 6.749892 -4.458488 -3.713271 -3.849250 2.768984 3.910331 -5.662047 -7.774619 -11.702523 -2.820431 4.497560 -4.456370 6.213945 12.364487 -4.464785 -6.932830 5.558363 -0.897853 -0.310415 4.822060 2.245402 11.188968 -5.653069 0.188482 -0.935208 -0.898377 3.599273 8.369011 -2.365390 -5.829072 6.780111 -2.727127 -3.751357 8.583220 -0.193882 -2.151917 -0.934617 1.504337 -1.962552 -4.526796 7.923955 -7.013216 6.467406 -4.546659 10.360694 -4.165397 -2.547891 2.202806 -10.017188 -2.890048 -5.718129 0.126576 -1.990264 6.969679 -6.068021 -5.041404 -1.998329 -2.939118 -2.217526 8.507617 -4.621758 -0.617644 1.173380 -1.351248 7.523075 3.955491 -2.559901 -1.193050 -5.979951 2.440704 5.413540 1.173006 -9.142044 -3.738940 -3.310258 -2.964457 -0.646669 0.649877 5.627566 -5.776228 0.231823 3.417993 -0.444515 -0.003295 0.179666 -8.648340 3.826817 -0.066765 3.562739 3.114683 10.480037 5.670120 6.756866 1.122994 3.015891 -0.936522 -3.127192 -6.697862 2.325696 1.799929 2.422535 4.418491 5.703622 3.881723 4.086162 5.049798 0.816178 0.863928 7.541349 0.860498 8.992600 -3.991636 -0.681025 2.433704 0.299778 6.461996 8.429799 0.184184 -5.271321 3.721630 -3.773226 -6.010677 -3.414787 -0.117120 -0.994129 -1.302166 4.470923 6.412125 -0.487085 -2.886142 12.930194 -1.456054 -14.235261 6.405840 3.001248 4.692391 6.495715 -2.244789 4.696943 4.580725 2.016494 3.837688 6.096556 4.988956 -8.768096 1.023793 0.746555 4.832226 6.836378 1.121577 -15.859046 1.566683 2.175209 8.870531 -0.051501 8.983251 -5.734134 2.159524 1.681741 -1.038364 1.325091 -0.474552 5.245952 -0.653831 1.162048 -9.909712 0.654423 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 1.276949 0.001676 1.040170 -1.940208 -1.658296 0.064421 1.052336 -2.103169 -0.970923 2.662875 0.928573 -1.660076 -0.787713 2.192187 -0.529155 -1.150710 0.429370 -0.244495 -0.453743 -0.432067 -0.849309 0.874039 -0.779298 -1.553199 0.667546 -0.283787 0.576285 1.820263 -0.075849 0.356312 -0.381073 -1.155243 0.491327 3.654731 1.283206 -0.463299 -0.881235 4.486184 -2.466526 2.915743 -3.305347 -2.649942 4.054422 -0.512218 0.120674 -2.888526 -1.369848 2.173428 -0.666568 -1.747153 -0.080878 -0.498094 0.976531 -2.225337 -1.104019 2.380376 -3.241098 1.074098 1.771189 -2.106493 -2.679367 -0.718745 0.687785 0.782448 -2.732583 -2.328278 0.201459 -0.079182 -0.635207 0.286449 -2.320671 -2.712232 2.446168 0.585170 -0.952938 0.364764 -0.851860 -1.962713 1.707269 -0.173566 -2.618351 -1.395329 0.033464 -1.651741 1.707493 0.613939 2.690458 -4.896229 1.070369 -5.017621 1.302307 -2.329784 1.906656 3.269053 -1.752607 2.111832 0.735603 1.775062 0.824577 0.178620 2.152824 1.119075 1.054680 0.718941 2.379723 2.403819 -1.752953 -2.763978 -1.922602 -1.912408 0.821671 -0.913808 -4.054569 1.552204 -1.854495 0.369683 -0.466966 0.027332 -0.626650 3.321368 -3.634955 0.159699 1.085660 -0.795793 1.521973 2.249822 -0.211847 0.437329 -0.942190 1.929267 -0.302892 1.099984 -0.122443 2.510048 -1.672446 -2.141865 -1.715835 0.898283 1.425935 -2.270163 -3.183519 -4.215162 -0.867405 1.391825 -1.680393 2.202918 4.970484 -1.972884 -2.834079 2.385833 0.204128 -0.181444 2.129374 0.788767 4.334916 -2.178767 0.054029 -0.544421 -0.443241 1.021026 2.472143 -0.890902 -2.199392 2.384500 -1.079350 -2.348436 3.967631 0.154607 -0.787296 0.343186 0.422623 -0.918599 -1.996591 3.272172 -1.858815 2.762474 -1.241245 4.120901 -1.458383 -1.336338 0.965435 -2.472438 -0.860038 -2.040182 -0.030795 -0.196341 2.424693 -2.177287 -2.002980 -0.645774 -0.997873 -0.934088 3.293016 -0.972962 -0.088254 0.525916 -0.427342 2.298595 1.880486 -1.027924 -0.177405 -2.331447 1.216664 2.003146 0.134821 -3.710766 -1.338626 -1.341945 -0.969897 -0.109361 0.267819 2.329454 -2.023526 -0.302402 1.323341 -0.131397 0.107176 0.060079 -3.136500 1.382280 -0.323238 1.265496 1.072562 3.905073 2.422119 2.853882 0.459034 0.827887 -0.418233 -0.919223 -2.285373 0.640800 0.528684 0.961345 1.667370 2.340722 1.506071 1.568593 2.010036 0.602860 0.596657 3.074136 0.605830 3.735358 -1.429309 -0.441016 0.871901 -0.082088 2.698056 3.533266 -0.196080 -1.721505 1.294525 -0.895470 -2.177419 -1.722081 -0.052090 -0.331482 -0.621661 1.626955 2.132864 -0.188219 -1.084140 4.626526 -0.430610 -5.416590 2.479996 1.038784 1.792039 2.345954 -0.720391 1.743618 1.594134 0.463302 1.726511 2.466830 1.954581 -3.172318 -0.213122 0.427923 1.956189 2.012605 0.855467 -5.703344 0.669916 0.937976 3.255531 0.084528 3.137319 -2.318643 0.574676 0.725304 -0.339353 0.390109 -0.231828 1.706152 -0.960647 0.251874 -3.532660 0.047258 diff --git a/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt b/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt new file mode 100644 index 00000000..801cfdb2 --- /dev/null +++ b/src/test-suite/oracle/FA_llvm14_p/ir2vec.txt @@ -0,0 +1,118 @@ +10.247385 0.741624 10.317583 -18.339573 -9.126705 -2.689177 16.994670 -18.883530 -9.882630 33.458738 6.132629 -11.843038 -4.055669 17.672426 -4.063170 -7.316411 3.959881 -1.155323 -6.654241 -6.539762 -5.227804 8.665795 -5.757722 -18.188886 6.782456 -5.482322 10.282012 16.596266 -10.981466 8.776538 2.649361 -12.650642 7.676984 31.601765 9.204080 1.261871 -16.561288 31.422238 -28.758368 28.752255 -31.177141 -29.000669 39.151326 -4.757768 4.752306 -30.504103 -9.752972 17.094441 9.192767 -22.732745 -7.682566 -2.674963 10.994708 -25.269952 -12.323758 17.517227 -19.690884 -2.131998 15.167692 -27.384679 -30.245555 -6.303367 10.074116 9.410783 -32.181499 -21.036198 0.648616 -3.449925 -3.123085 5.917811 -20.261351 -24.671908 13.188925 4.829952 -5.978579 4.305333 -10.508406 -19.617874 15.463000 5.625781 -15.877457 -15.647601 1.040615 -13.785165 6.465179 7.808145 27.296571 -41.633882 9.584288 -37.595803 12.958304 -16.423499 17.656906 24.611603 -7.627312 22.058312 5.763812 24.241332 4.177926 -3.754254 16.058996 13.882695 17.054962 5.633855 23.984344 24.542813 -20.358568 -31.842870 -19.740412 -16.001901 14.465352 -15.084127 -32.478898 13.254945 -15.047505 -11.909602 -4.458375 -5.374456 -5.279120 36.462285 -40.395972 3.585486 15.534626 -7.137680 7.990342 13.579809 0.270739 2.258459 -5.002574 13.039640 -1.608623 9.817487 1.900689 24.029917 -22.148957 -10.851871 -2.152235 7.622537 8.611934 -21.767896 -25.363948 -39.125685 -9.953255 19.910690 -14.208746 13.351425 38.860131 -14.548667 -27.191903 15.010493 5.852608 -10.367573 9.852153 9.019169 35.285192 -21.204641 1.943888 -5.222308 -0.261853 18.624984 38.573515 -9.146681 -23.732504 25.569139 -16.056701 -26.278316 33.391018 -3.683598 -2.189328 -0.018826 6.257465 -10.200553 -10.007905 25.252873 -26.930919 28.498231 -22.020405 31.507019 -16.614723 -4.695598 4.288965 -36.992727 -13.281730 -23.917349 4.008138 -3.678909 24.970241 -18.745419 -17.448788 -9.064805 -13.953679 -3.606532 32.417068 -36.140923 -2.441206 0.351674 -5.969305 23.420228 9.865064 -9.909477 -5.324850 -14.934490 11.173834 18.721122 9.416311 -32.837587 -15.767833 -12.471438 -10.567132 -9.164412 2.926153 22.577324 -15.025206 1.978635 14.735379 -4.319043 -10.064464 -6.339770 -29.037744 11.499685 -2.443932 15.669130 2.899667 36.696713 20.624478 21.491183 -0.080154 5.350613 -2.203408 -14.749155 -32.084075 12.223702 4.193383 1.123428 15.083231 23.053435 11.986142 15.077717 23.212412 5.240508 6.621719 26.916300 0.803852 26.989159 -10.890207 -3.496022 11.264435 1.632281 21.064738 26.506928 13.609257 -18.078087 12.174671 -12.770421 -24.749086 -5.644756 -2.376423 -1.080661 -5.080816 17.397662 24.524859 -5.658269 -8.476043 42.160529 -2.152833 -46.842095 18.614890 9.461073 17.671704 22.831286 -11.484286 20.729806 16.356728 14.936743 13.267718 16.568138 15.977528 -31.371332 -3.425528 4.544823 15.927498 28.821716 2.858790 -56.739090 7.582797 4.841760 30.752891 -6.473128 35.631230 -20.470319 15.503683 5.024327 2.257851 5.290663 -2.159253 15.130909 -5.850871 -1.422677 -39.926176 8.732418 +35.116762 -21.749650 30.892514 -95.182452 -55.856162 -23.818392 10.097454 -6.383770 -39.590607 79.433720 20.630954 -102.264379 -99.886047 88.886734 1.285742 -83.741539 42.099572 -49.903764 20.199507 -11.146168 -20.178636 30.028217 19.304663 -59.319220 36.339364 9.283283 -66.223812 72.237646 141.702510 -35.608890 14.881379 -10.248395 34.580208 110.532357 -0.378189 -80.899911 -17.905181 157.401018 -47.314869 71.933244 -70.575558 -53.333986 166.225425 -17.301789 -10.348504 -104.040872 -45.602369 107.850180 -88.600449 -70.122585 3.547173 38.551289 36.048692 -105.539009 -90.711667 116.875722 -173.057867 90.059827 57.271038 -18.143972 -27.826192 26.437813 -21.194539 39.216008 -17.532877 -88.783083 -25.113109 -63.603783 -77.624376 -30.900522 -60.639473 -0.945001 109.987674 20.619120 -16.391948 50.603788 11.633461 -31.026291 71.117730 -86.448624 -86.737362 -31.598091 -39.262260 -45.714491 110.222621 -13.223833 46.001393 -139.354912 33.232698 -143.144079 61.326213 -113.327221 31.885066 139.168975 -70.015793 85.850009 6.014866 -31.462911 59.525756 7.401649 116.203854 36.734255 55.893455 61.421533 63.170197 72.572472 -48.546873 -54.510523 -63.440307 -54.289909 -10.167053 -22.044440 -119.422211 87.033460 -39.455845 9.314597 66.786969 -21.563943 -50.350966 58.072161 -56.687580 -13.247863 18.396876 -26.340040 13.703430 99.299394 -16.215126 -30.479318 -30.605084 111.137258 14.340350 68.396390 82.452724 92.681827 5.471638 -125.650548 -23.639865 42.664143 18.288846 -68.950667 -92.991207 -141.506349 19.244422 -52.255053 -68.452824 81.723596 171.794195 -9.990526 -61.426316 111.719817 -5.547854 43.993178 72.220261 1.372014 153.483917 -44.613970 -65.412955 2.646303 -45.853880 46.928668 78.422379 -2.702263 -52.627598 66.010101 -26.452164 -45.583477 -7.794884 25.119705 -16.542544 13.353620 -9.483491 -66.961109 -108.223113 91.527604 -11.868816 81.900118 18.491680 155.700050 63.342417 -97.071938 82.915893 0.864707 -17.084422 -39.731102 -21.900516 31.293509 -18.723370 -73.570379 -67.293157 -66.184212 36.188882 -71.639756 89.423334 -24.477098 34.817653 55.820034 12.825563 64.228365 25.420050 -55.963216 32.447988 -125.499461 26.681155 45.546385 -12.383880 -128.916929 -21.039579 -20.910950 -4.298238 95.846026 -15.756445 84.803316 -57.532764 -45.267835 64.179828 14.509301 5.509761 0.687676 -91.642857 30.546867 35.932160 48.327611 70.193510 152.180740 71.721292 61.038596 -23.616615 99.736658 -32.321563 41.053199 -65.198887 -32.100444 -32.678622 20.215821 63.153900 30.246930 49.232923 63.952077 111.537922 54.116822 -77.361570 102.278482 -4.630074 78.971976 -7.621306 -63.160427 53.416548 -14.196107 99.273487 111.514605 -19.910946 -91.654386 81.798169 -31.720615 -28.549664 -74.132480 11.599079 -18.406955 8.980826 76.345121 30.688591 9.913364 -2.549822 78.697027 -19.057824 -180.452844 126.599706 51.170201 65.886404 54.583816 10.470137 44.859916 34.667545 -56.883868 9.504762 90.982100 43.567148 -95.129016 25.869745 38.004915 88.298777 15.133194 75.891392 -191.616966 -46.143870 30.125231 58.088937 30.975788 77.026839 -58.337259 -87.837129 52.691813 20.101610 -7.415015 -58.009502 -2.091865 -81.695533 10.904812 -11.196077 20.459470 +3.729472 -0.462909 4.248341 -5.911423 -3.847000 -0.955403 6.032234 -6.703342 -3.564543 10.913185 1.858916 -4.953464 -2.397815 6.571968 -1.245369 -3.479089 1.155659 0.300547 -2.336951 -1.524974 -2.959761 3.131402 -2.387551 -5.818051 3.118607 -1.571796 3.406006 6.525197 -3.151770 2.556686 0.960545 -4.700976 2.539959 12.310972 3.441095 0.859689 -4.841798 13.496415 -8.836516 11.895484 -10.858183 -10.144908 14.412079 -2.078793 1.458800 -9.604473 -3.265433 7.461448 0.208279 -8.168772 -1.811123 -0.448689 3.234443 -9.252469 -3.860526 7.046944 -9.039709 0.751643 5.941661 -9.314768 -10.900126 -2.406699 1.958282 2.715232 -11.093995 -8.050610 -0.236658 -1.048584 -1.928660 2.181570 -7.431568 -8.784721 7.257574 1.666712 -2.976279 2.203075 -2.848062 -5.273322 5.954982 1.006377 -6.958896 -6.027975 0.421268 -5.379577 4.131088 3.274961 9.475998 -16.066192 4.005661 -14.862409 5.424290 -7.313799 6.585913 10.611797 -3.756930 9.158307 2.518119 7.480058 1.077285 -0.345067 6.510948 4.360431 5.008673 2.929177 8.305442 8.183628 -7.694067 -11.957197 -7.862731 -6.203682 4.909934 -4.583013 -11.952952 4.872821 -5.462069 0.205600 -1.153298 -0.072878 -1.976379 11.580584 -15.076904 2.400712 5.554369 -2.836136 4.336314 5.885239 -0.425182 0.950414 -2.522494 5.782996 -1.123984 3.633231 0.312628 9.191381 -6.513107 -4.134280 -2.404228 2.441152 3.731081 -7.429333 -10.025582 -14.639046 -3.775294 7.525767 -5.745599 6.265095 15.875992 -5.734663 -9.080186 6.845525 1.007173 -1.377151 4.179872 3.695529 13.115930 -7.453677 -0.203739 -2.077656 -0.702850 6.461696 12.274407 -2.739040 -9.124547 9.861512 -4.622719 -8.021535 13.478892 -0.890516 -1.653555 0.080295 1.875176 -3.414310 -4.792917 10.579185 -8.799834 10.443312 -7.147550 13.380912 -5.492808 -2.463805 1.962346 -11.994150 -3.932942 -9.111264 0.927898 -1.330581 8.541191 -8.338834 -6.957952 -2.756242 -4.849927 -1.981923 11.554211 -9.212998 -1.068623 0.510314 -1.727751 9.673952 4.265575 -3.661961 -2.196035 -7.336715 4.022770 5.484631 2.095827 -11.488648 -5.000888 -3.821732 -4.126157 -1.843820 1.164683 7.519305 -6.245925 0.531765 5.114415 -1.434853 -2.762097 -1.395817 -10.721342 3.797691 0.372378 5.183445 2.778378 13.219643 8.895697 8.248334 0.736462 3.458775 -1.399678 -4.072623 -10.874709 4.125460 1.310621 2.398824 5.716025 7.580610 5.300139 5.142765 7.565542 1.730191 2.266232 10.522058 1.509670 11.351079 -4.542195 -1.802007 4.326106 0.973249 8.646872 9.564704 1.423775 -5.897254 5.083805 -4.025951 -8.455503 -2.702208 -0.809332 -0.851537 -1.971898 6.508431 7.882047 -1.890965 -2.827651 15.866501 -1.732031 -17.866155 7.125072 3.765509 6.754592 7.997793 -2.936515 7.369161 6.328984 3.998636 4.853460 6.418043 6.380775 -11.867800 -0.270276 1.545312 5.778359 9.665695 2.217173 -20.369811 0.943020 1.925247 11.274975 -1.746229 11.723723 -7.414437 4.026345 2.235578 -0.413980 1.610651 -0.802347 5.476261 -1.128748 0.056337 -14.372029 1.415213 +15.393172 0.489796 5.365480 -12.139642 -4.350766 -2.046344 21.775889 -22.142518 -14.776531 36.819791 6.371414 -16.318039 -8.380388 13.055288 -0.877988 -6.531418 7.470896 9.236865 -7.135014 -7.098432 -12.976528 2.222213 -6.738224 -24.825851 7.021983 -5.679573 11.174224 19.748868 -11.786095 15.561323 1.433614 -11.966180 10.847587 35.774872 13.293288 -3.057724 -17.409444 36.735506 -34.322211 32.301451 -25.223239 -27.895281 48.059621 -4.317464 6.205176 -22.221109 -9.698944 20.688998 8.046022 -27.188625 -10.804335 -5.527118 12.150662 -28.994283 -17.548735 28.145782 -19.774838 -2.149660 17.548595 -31.637036 -37.816572 -6.893620 10.223719 10.552041 -35.291054 -25.389238 -0.352685 -4.595286 -0.598850 5.584107 -33.640862 -30.035891 14.713872 4.967308 -5.987984 2.023743 -16.961676 -12.229196 12.348697 14.568215 -17.196795 -17.020904 2.141498 -11.177183 5.146858 15.246502 32.266580 -46.144470 6.497557 -44.994976 15.104725 -20.118628 23.379884 28.657934 -4.043461 26.463751 5.116518 21.501498 -3.185380 -0.103573 16.902894 7.791303 13.300247 2.648034 23.540664 27.467241 -23.271373 -38.328486 -19.764428 -11.007438 15.615531 -8.222070 -28.871399 16.943778 -26.776772 -2.839597 -4.835205 0.037016 -8.183645 34.592283 -39.689154 5.823142 13.966538 -9.015312 20.890128 16.290302 1.771983 6.485890 -4.990893 12.144709 4.595726 7.089295 -0.767885 27.633779 -20.285419 -14.932272 -3.955958 11.531591 16.435922 -26.293508 -29.983900 -39.828551 -11.247436 24.917003 -17.810326 15.457811 44.982218 -15.776177 -18.989605 13.361383 -2.585206 -2.302256 13.297288 10.752101 49.288961 -30.176067 9.625500 2.481751 4.428198 20.521089 39.841891 -15.794593 -29.842333 27.596627 -12.218467 -13.772018 38.336045 -1.919450 -1.016712 6.937237 5.912187 0.299702 -13.968971 31.867093 -31.699610 28.629881 -20.148400 38.355357 -18.050444 -2.622488 7.344879 -27.860111 -16.806938 -25.965694 7.690726 -7.713186 28.617797 -19.838728 -20.811719 -6.946047 -13.412902 -1.746754 40.425150 -24.336052 -6.062504 0.033455 -12.839365 22.354213 6.594150 -12.108073 -8.130752 -21.706618 10.219826 16.526542 3.608751 -34.646023 -19.223417 -11.938889 -11.682060 -10.349881 4.163805 25.055532 -19.204125 2.854306 17.774516 -1.043542 -7.701314 -6.373254 -23.117274 15.648407 2.648397 10.467483 5.844819 44.932664 22.664192 24.232759 -1.690996 7.301509 -4.201669 -13.966494 -38.747173 16.647149 1.569880 11.137671 16.340663 18.201144 7.304603 16.858179 19.847424 -8.338805 10.520524 28.066117 7.028557 30.585832 -14.088637 -4.257684 15.583921 -5.071927 24.743599 23.861196 6.285427 -28.591175 11.435201 -21.044152 -29.189530 -3.409166 -3.085630 0.512838 -10.379045 20.669286 28.569620 -1.566990 -14.435094 50.221076 -3.803369 -58.158180 22.215065 12.562092 18.219064 32.400803 -14.684089 28.487218 18.388162 25.441633 10.136134 19.909225 19.818071 -35.517684 4.721115 4.097294 15.747610 25.757470 -5.134558 -70.217031 5.395431 7.533737 34.281675 -3.598692 35.525296 -23.162638 22.770234 2.631841 2.005863 10.592768 -6.817639 20.604846 -5.319553 2.086570 -45.834925 15.848086 +1.651876 0.673908 2.238946 -2.119419 -1.419432 -0.818623 3.832054 -3.560887 -2.181176 4.631929 1.268086 -3.174754 -2.912833 2.743691 -1.195036 -1.279870 1.042515 2.651225 -1.768623 -2.040710 -2.218096 0.328303 -0.961652 -3.288606 1.691781 -0.890764 2.074758 3.804967 -0.757784 1.019894 0.527235 -1.683313 2.310283 6.337915 1.541480 0.185882 -2.676103 6.948811 -3.882291 5.606488 -5.776649 -4.295990 8.403559 -0.877646 0.953798 -6.225657 -2.298443 4.163472 -0.975222 -3.851440 -1.955313 -0.660249 1.175437 -5.377809 -2.565615 5.360967 -4.662593 1.113261 3.188944 -5.792566 -6.607953 -0.731238 1.608653 0.411681 -5.354744 -4.464136 -0.441555 -0.564904 -1.625822 1.875543 -5.015635 -4.797060 3.881551 -0.352618 -1.403558 1.282072 -2.306540 -1.534956 2.196785 2.084553 -3.017134 -3.100932 1.603454 -1.792507 1.561591 1.972514 4.561609 -8.717023 -0.236789 -8.353474 2.529983 -4.232837 4.068502 5.155409 -2.178678 5.238241 0.766811 1.037820 -1.061580 1.566119 3.302257 1.246815 2.764856 0.524307 4.609837 3.518817 -3.170766 -6.972521 -3.483114 -2.816967 2.034569 -0.625640 -6.263780 2.153794 -4.900202 1.119168 -0.774090 0.668296 -0.375170 5.395015 -6.316075 1.943258 3.174461 -1.629069 3.321625 3.985988 0.323979 0.852229 -1.258672 2.514283 0.236947 1.371445 -0.363664 4.411248 -1.218034 -4.606900 -1.742765 0.609532 2.147269 -3.236933 -5.428419 -6.409983 -2.368194 3.777619 -2.917436 0.928118 8.456226 -2.738070 -4.286161 2.798211 0.151591 0.602541 2.676607 2.259995 9.606356 -5.169568 1.338803 -0.074786 0.473738 4.074812 5.189945 -2.915786 -5.439761 4.282827 -1.335844 -5.327520 7.901473 -1.025908 0.053973 2.734247 0.867016 -0.262346 -3.361182 5.496314 -3.105806 6.378219 -3.881585 7.281513 -3.465534 -2.273365 0.952869 -3.483918 -1.463083 -3.012603 1.364138 -1.369964 5.101625 -3.645432 -4.137640 -1.105492 -2.633120 -0.046488 7.429754 -2.475544 -0.965705 -0.353863 -2.081982 2.523401 1.019335 -2.898271 -0.470631 -4.655297 1.539200 3.182599 1.603620 -7.242556 -1.964634 -2.132348 -2.191097 -1.687966 0.797259 3.871257 -2.224420 0.365694 2.900918 -1.316477 -1.220399 -1.526187 -3.571463 2.136551 -0.340041 1.381245 1.275408 8.035472 5.501237 3.994288 -0.732193 1.761955 -0.456467 -3.114998 -5.630108 2.218840 0.077098 2.783127 2.633435 2.590535 2.007052 2.511105 3.063098 -1.616652 1.880557 5.461440 2.216141 6.189020 -3.760660 -0.665755 2.439218 -0.678877 4.435509 4.776211 0.447421 -4.652501 2.170075 -1.647999 -4.274935 -2.928538 -1.484505 0.158036 -2.601054 4.993924 4.857132 -0.993855 -1.706805 9.198313 -0.794480 -10.363648 4.435644 1.482381 2.595113 4.492883 -1.775686 3.472812 4.246585 3.925783 0.560997 3.121541 3.683506 -6.838860 -0.360485 0.479688 3.422695 3.941696 -0.505720 -12.916203 0.515092 1.145009 6.567025 -0.709242 5.536494 -3.532864 2.805747 0.597319 -0.405962 0.855765 -0.629784 3.255764 -1.076063 -1.044153 -8.037049 1.872114 +6.434769 0.424961 5.339686 -10.821788 -3.753448 -2.316514 12.471585 -10.340896 -5.581568 19.040216 3.560416 -7.843490 -5.175411 10.728006 -1.412092 -4.618339 4.181024 -2.426125 -4.032951 -2.184011 -3.677526 4.269697 -3.110244 -11.628195 4.490243 -1.602354 6.019720 10.730174 -4.483826 3.585552 0.125404 -6.776876 4.903195 18.646514 5.298949 0.115052 -9.121907 19.815294 -18.890909 18.621510 -18.766980 -15.767062 24.423768 -2.947745 1.004060 -19.774348 -5.233895 10.865821 2.795687 -13.565047 -3.930743 -1.502904 5.887394 -15.901721 -7.654101 13.902106 -13.589553 0.414227 9.538342 -13.549188 -17.170094 -4.492497 5.852468 4.869215 -18.724520 -12.709427 0.545165 -6.064104 -3.962444 3.759331 -14.112677 -13.278223 7.761432 2.996429 -3.415427 2.423692 -7.544204 -11.423390 8.404219 1.497072 -8.997996 -8.988326 0.889516 -6.535207 4.689873 4.137251 14.673433 -25.036113 3.400587 -22.825867 7.246476 -11.749298 10.593570 15.413990 -4.780662 13.291659 1.152109 11.196644 0.977232 -2.352874 9.115767 7.986520 10.266157 1.354800 14.651272 14.954799 -11.902889 -19.496852 -10.629417 -8.189106 7.323578 -7.133684 -19.923092 8.008890 -10.824772 -5.447891 -1.252257 -2.948692 -4.189945 19.154052 -21.552338 2.702304 7.706491 -4.269861 6.637516 10.739801 0.176643 1.340451 -3.061924 7.748362 1.760697 7.648342 0.306553 14.062162 -12.260548 -9.357427 -0.698547 3.390766 5.905305 -12.261991 -15.713012 -24.531503 -5.332932 9.891678 -8.418439 7.207235 23.219441 -7.638820 -15.651763 8.867911 1.854802 -3.128293 5.925791 4.105598 22.493521 -13.447236 2.946008 -0.791765 1.266935 10.020859 23.899226 -6.668214 -15.136311 13.615241 -10.114647 -16.613321 17.761957 0.697774 -0.014699 1.434913 1.975289 -5.916971 -8.954626 16.792847 -16.590226 17.152823 -12.909927 18.787181 -9.534938 -3.094482 3.929823 -19.446844 -6.577865 -14.991065 0.254249 -1.201407 14.542880 -11.316758 -10.439805 -6.385875 -6.131869 -2.032045 20.104377 -21.037001 -2.717172 -1.001433 -3.382819 13.681562 4.984903 -8.001462 -1.729848 -10.430410 6.390767 11.361976 5.366722 -20.558739 -8.205377 -6.993660 -6.838846 -3.945721 1.443567 12.482532 -9.252608 -0.369835 10.737179 -1.567521 -5.583171 -3.929403 -18.400083 6.539981 -0.652682 7.494382 3.296707 22.715423 10.470599 11.799908 -1.372173 2.373986 -1.718013 -8.287917 -20.452857 5.911528 0.664376 1.383968 8.652500 11.866437 6.567014 7.710739 12.871758 2.456675 0.935751 15.431308 3.674016 15.376132 -5.123255 -3.561302 8.077210 -1.469256 12.231890 14.747621 5.494909 -12.343499 7.690924 -7.347823 -14.244251 -4.251558 -2.944030 -1.368940 -4.262970 11.983961 12.299295 -3.742478 -4.399277 25.702821 -2.296788 -29.500738 10.678840 5.639054 10.050979 13.715264 -6.947907 11.620741 10.064093 7.604852 7.880816 9.014494 9.657513 -16.254118 -1.105039 2.500929 8.776398 16.999480 0.012898 -35.298864 2.792708 3.123788 19.470073 -0.857867 21.832283 -10.806493 10.282593 1.185553 1.614678 4.258219 -3.579452 9.741816 -3.125508 -2.082002 -24.394158 6.660795 +5.293787 0.800500 8.450300 -15.160334 -8.259127 -3.128445 13.008275 -14.718230 -6.684802 20.505303 6.254302 -12.010725 -4.565746 14.605594 -3.425702 -6.852503 4.141367 2.374572 -5.984523 -4.487342 -4.276035 5.966626 -4.061322 -12.639946 5.493688 -3.330373 7.444398 13.391725 -4.365720 2.705655 1.152830 -8.424519 6.562495 25.082768 6.275085 1.954750 -12.281256 24.447389 -16.193172 22.963113 -25.936047 -16.114854 28.699940 -3.803153 3.016213 -28.096841 -10.833975 14.502374 3.312428 -17.016268 -5.872786 -2.133809 7.482807 -20.263883 -8.951978 16.588589 -15.321831 0.814986 13.583452 -20.830262 -21.383591 -2.926930 7.200653 5.840025 -23.052494 -17.037633 -0.378134 -2.779223 -4.093196 5.176242 -15.908883 -20.002273 13.491146 2.644537 -6.412496 4.699430 -8.504942 -14.465888 11.672239 2.929455 -11.865512 -12.307257 3.512010 -8.851548 6.003830 4.180453 19.094422 -32.751658 4.156552 -29.726214 10.277061 -14.850657 14.334447 19.524427 -6.874549 16.872733 3.313880 10.502153 2.856868 2.210768 12.609846 8.437866 12.285387 2.750362 18.851453 15.878189 -13.337900 -24.628350 -13.115057 -13.843195 9.586003 -8.747547 -26.058617 10.538677 -13.673513 -3.831193 -3.684270 -1.537688 -1.512421 25.976531 -25.018287 3.317169 13.093690 -5.967433 6.805379 15.320869 0.414840 1.681747 -6.052543 10.101254 -0.807390 8.335615 0.558986 18.561189 -12.951757 -13.613640 -3.891501 3.702361 6.497730 -15.158402 -20.332760 -27.812353 -8.556121 11.987552 -11.708418 9.150124 30.226296 -11.630081 -21.556807 12.373172 7.093027 -4.960655 8.221092 7.059982 30.886745 -18.179485 2.545622 -4.934627 -0.274342 14.814671 27.491975 -8.300660 -19.774201 18.998402 -12.115848 -26.855473 28.984484 -1.791533 -1.174743 6.516728 4.177851 -6.244221 -11.698232 20.222857 -15.536035 24.740733 -16.561690 26.531758 -13.470726 -6.795384 4.162773 -19.814535 -7.975807 -14.560814 3.051232 -1.750249 19.858097 -13.822525 -14.335060 -5.094754 -11.574676 -2.495243 25.192149 -21.277575 -2.627745 -0.198464 -5.928510 16.514918 7.859849 -9.086471 -2.046240 -13.633351 9.281426 13.750859 8.449858 -25.435963 -10.428063 -10.408063 -8.604535 -7.479629 2.139951 17.319734 -10.962829 0.552232 11.000534 -4.676303 -5.726832 -5.700154 -21.798744 8.776953 -3.610304 10.486157 2.291407 28.714422 17.875472 16.685282 -0.646224 3.678555 -2.311359 -11.260849 -22.797187 7.946931 2.046381 2.021059 11.797363 15.459772 9.634530 10.893303 17.983273 0.976851 5.675769 21.943145 2.182942 21.262641 -8.642037 -2.758631 9.132842 -0.850344 17.806308 22.432830 8.313444 -14.843671 9.837947 -6.783153 -18.190794 -10.986279 -3.443867 -0.018663 -7.173898 16.647091 16.898981 -4.421725 -6.770265 33.011482 -1.691064 -35.620719 15.918020 6.048925 12.335311 15.314844 -7.367040 15.085348 13.719858 9.850278 6.571502 12.112186 13.779336 -24.630145 -6.041596 3.135240 12.177631 20.395033 2.693559 -44.476770 3.362726 4.892021 25.207720 -4.589627 25.789514 -15.303464 10.583661 4.719585 2.380165 2.728712 -3.403719 10.143728 -5.472355 -3.863721 -29.236167 5.827801 +46.611108 -50.995501 85.661627 -161.187134 -150.006259 16.829304 9.910242 -107.676632 -38.720800 75.643828 63.615238 -64.519909 -51.615424 167.935278 -14.192333 -123.960278 7.237613 -46.134748 -3.832014 -21.737410 -22.848818 91.709467 -45.659877 -39.667240 41.370963 -47.789536 -12.494801 111.418422 39.529748 -28.394736 -18.489019 -87.652130 -23.069106 212.784597 59.094395 -0.106616 -31.556641 332.918579 -77.986274 169.571948 -182.936692 -174.565004 210.179335 -51.868106 -18.730492 -153.957850 -119.699283 114.587486 -70.750827 -63.704955 54.717276 -4.751694 59.039192 -93.226127 -16.398987 88.153800 -217.360058 69.930906 93.729538 -111.839394 -92.919226 -50.246501 -37.826419 32.668600 -133.948273 -120.664175 38.197471 34.483352 -49.806678 -12.713282 -58.263092 -145.059546 234.453904 72.699301 -47.313968 48.228650 45.674266 -126.765900 139.241724 -29.598717 -216.600499 -83.253127 -28.257269 -118.305394 163.414938 -2.757620 164.066161 -299.379090 102.550549 -318.977887 92.222013 -158.632782 94.620801 221.744524 -151.945498 137.421083 108.523713 140.639606 88.876734 -7.235484 174.092477 84.589617 35.672173 114.865412 152.583902 94.329518 -84.767506 -116.168559 -140.681368 -150.808511 39.787998 -107.081773 -288.815299 101.067545 -33.690983 9.894056 -38.970871 33.890525 -22.080573 187.859742 -214.791027 37.644004 88.517112 -53.616699 42.482130 133.722994 -46.175483 -3.684782 -85.466305 162.525702 -107.423326 110.163457 -6.543604 155.626139 -59.855533 -98.752208 -146.644469 40.094649 64.444947 -148.814819 -193.447931 -209.403503 -44.291492 87.874613 -96.653228 190.647262 346.932905 -158.448254 -180.314677 203.472710 67.201794 6.825626 135.422608 59.374459 205.949058 -59.551148 -85.140610 -102.406272 -90.616404 39.536309 51.535944 27.537170 -79.434261 158.918172 -33.229566 -128.933884 297.574853 -43.284696 -109.416542 -8.097429 38.487252 -113.437613 -140.113591 197.081624 -23.166818 175.604918 -8.099392 262.845245 -48.692545 -102.349808 59.897978 -130.159594 -36.993166 -143.428933 1.487427 3.500631 99.055429 -136.820179 -127.759901 -68.575815 -88.291264 -87.539306 126.366359 12.202205 41.641155 80.657808 36.040734 136.136855 203.578882 7.155818 -21.225645 -168.777377 99.086747 109.924130 -17.259368 -181.121211 -53.101819 -49.611732 -40.234437 19.832096 17.692072 138.401762 -113.901328 -35.338067 11.912613 2.928516 25.125105 55.077165 -247.706498 52.412802 18.576567 106.120211 83.506358 177.669801 195.145631 187.002972 90.635079 78.953587 -22.841773 7.913075 -72.923326 4.440748 37.900990 79.394016 102.786730 182.817282 148.151103 105.473687 174.459360 125.470918 63.329900 190.738932 14.817493 291.404292 -46.147368 -63.912568 12.824368 46.360056 192.476853 269.320481 -1.448084 1.232169 109.249894 15.963622 -102.824625 -162.131749 38.415002 -33.801464 2.585005 100.047903 106.859533 -2.796279 -61.065199 240.714776 -28.127235 -311.742434 147.196739 67.171523 135.004276 113.665173 12.105669 63.701642 89.550818 -80.289913 147.345979 162.496564 114.233256 -195.928002 -18.811986 31.641100 117.444538 86.714596 148.768037 -236.185543 66.032256 67.252424 168.227931 3.228618 132.977580 -142.480166 -64.873931 84.698785 -63.623738 -11.967445 48.031637 55.668782 -102.249067 32.365090 -162.311914 -94.139857 +37.724696 -55.715315 76.594952 -152.739435 -135.218459 22.131697 1.701751 -94.949607 -32.162485 49.899177 56.932077 -47.555115 -45.841679 151.485535 -5.506073 -117.090695 6.743065 -52.636393 -0.525175 -13.058543 -17.237319 84.704347 -40.892313 -24.695336 32.634135 -44.584047 -15.389534 97.083280 39.683793 -37.479205 -19.971920 -81.222171 -32.998764 187.453310 55.583077 5.196549 -25.024205 303.141540 -54.262199 154.965541 -154.003489 -149.839536 175.590467 -49.063592 -26.680052 -130.428283 -107.412567 99.644601 -59.236727 -56.241597 61.177039 -4.074730 52.683487 -72.306904 -9.757226 70.172159 -187.125805 55.865470 81.441261 -90.857488 -70.115211 -47.129142 -38.956915 30.233083 -120.065144 -103.250463 42.695825 30.115357 -47.530462 -19.713743 -43.338753 -129.083609 218.576235 75.047848 -41.839704 41.367857 52.804306 -114.450281 126.882219 -20.849293 -202.029876 -71.289893 -37.177477 -115.238427 157.503094 -14.468054 144.022995 -265.363547 100.846033 -285.086093 77.461490 -140.238343 80.380832 199.011627 -135.334185 118.853391 103.506262 136.604355 77.207703 -16.676586 158.641032 74.752185 20.512808 111.467288 143.610594 71.223077 -72.689021 -95.878459 -127.606123 -138.000603 37.651788 -105.335404 -259.389070 92.560777 -19.497355 3.367516 -39.270576 40.648608 -23.017947 160.283239 -188.329935 36.947737 75.655503 -48.293762 32.674470 121.835136 -46.131816 -4.360672 -77.387778 150.149704 -106.902938 106.046694 -7.590673 137.012526 -43.620319 -65.906734 -131.382425 35.442990 60.626999 -131.048263 -172.174581 -178.073957 -41.360098 76.680430 -85.616837 186.701321 312.153018 -146.704560 -158.370559 188.330944 65.361603 10.088849 117.009462 51.900501 173.197669 -42.670523 -88.980613 -99.889587 -90.187915 27.712759 30.562376 35.574354 -57.588602 143.729224 -31.234094 -106.109229 277.020822 -43.806399 -109.015414 -3.507689 33.064460 -107.809279 -134.377977 173.418691 -10.452646 152.722829 10.760988 233.790363 -33.694427 -86.532469 52.696470 -106.918896 -29.617765 -136.699592 -0.905666 0.533620 81.911438 -117.948620 -112.401807 -63.700979 -79.516836 -83.360007 101.262290 24.653422 44.783400 78.633913 42.746003 123.066709 197.855423 17.249313 -24.097624 -151.156329 93.577554 97.670549 -19.959522 -138.702224 -46.492184 -40.366222 -34.395088 22.231118 13.543803 121.402565 -106.555018 -33.994427 0.054788 10.278537 25.096167 62.446179 -244.374408 41.903589 28.238825 94.802536 80.016618 149.020985 173.728611 169.569996 93.186566 69.476273 -19.919844 24.012107 -68.990590 -8.036547 31.163337 80.369425 92.146853 164.916299 139.167076 96.613489 162.843996 123.842008 64.687891 167.658800 9.540598 266.435929 -24.974379 -64.678915 5.224066 46.645213 172.745098 246.229220 -0.596928 20.864513 101.873503 23.495114 -91.621725 -154.911585 43.156777 -34.259023 14.313677 85.269853 89.950683 3.834181 -56.248220 209.045359 -28.876924 -275.636665 123.350290 60.992173 124.282289 106.001287 18.485572 58.842071 73.288573 -88.710776 140.007344 148.088832 98.538600 -170.659913 -7.453568 29.084618 98.659284 64.752003 143.147680 -189.439048 62.909432 54.677106 148.838426 7.107936 108.883609 -126.158007 -62.836450 86.317189 -62.086782 -10.395282 50.904292 50.260573 -94.901975 27.331702 -143.252156 -92.488455 +3.308362 0.216164 3.017007 -5.173209 -2.279002 -1.261710 6.759645 -4.953634 -3.196181 9.340946 1.154501 -4.322059 -4.464110 4.983296 -0.628101 -3.155190 1.215583 -1.913214 -2.383949 -1.288029 -2.915574 2.328205 -1.724040 -5.602050 3.072484 -0.826802 2.656649 6.317476 -1.183090 1.513733 0.813893 -3.591462 2.659292 10.316277 2.691104 0.101925 -4.003579 12.357087 -9.384896 10.175254 -9.293928 -9.391821 13.835927 -1.690819 -0.326051 -9.880120 -1.876225 6.763474 -1.450245 -6.700929 -1.634319 -0.053771 2.287003 -8.502990 -3.916298 8.252964 -9.517552 2.046863 4.799469 -7.136770 -9.625211 -2.372368 1.827436 2.121807 -8.779029 -7.045881 -0.329856 -3.211886 -3.197788 1.824716 -7.301518 -6.176715 6.242647 1.691249 -1.965107 1.939630 -3.477510 -3.822153 4.607638 0.029053 -5.204685 -4.887596 0.732432 -3.729506 3.598959 3.009482 7.002950 -13.660442 1.252496 -12.508341 4.118236 -7.156443 5.629322 8.868891 -2.621315 8.472558 0.816114 4.615072 0.043511 -1.277176 5.357885 3.355565 5.842094 2.207845 6.871902 7.443623 -6.833985 -10.543366 -6.471048 -4.300326 3.579900 -3.058615 -11.008619 4.204828 -5.782484 -0.554765 0.399468 -0.510960 -2.790776 8.819808 -12.521418 2.277071 3.696288 -2.289330 4.720814 5.996837 0.007101 0.615669 -1.408624 4.886896 0.688295 4.381821 0.092332 7.676079 -4.474127 -4.817568 -1.445685 1.821145 3.423917 -5.975943 -8.528897 -12.706208 -3.100245 5.406469 -4.924000 4.828147 13.906151 -3.993222 -7.663848 5.733670 -0.791484 1.041799 3.284864 2.555020 12.210282 -6.585223 0.517720 -0.182004 0.112154 5.570675 11.789262 -2.890558 -8.224194 7.344592 -3.719593 -5.576874 8.153438 0.067938 -0.640509 0.070231 0.791138 -3.337940 -5.878548 9.709839 -8.079711 9.228342 -5.997984 11.058438 -4.744826 -2.365645 2.426972 -9.952028 -2.931458 -8.929012 -0.153309 -1.116876 6.578831 -7.148144 -5.722064 -3.271402 -2.716572 -1.967083 10.662766 -8.999833 -1.313783 -0.348399 -1.214629 8.116520 2.731300 -4.452401 -1.235465 -7.366025 3.284011 4.929969 2.183166 -11.451011 -3.943065 -2.624795 -3.799711 0.426040 0.630436 5.961610 -4.572565 0.242634 5.733031 -0.668962 -2.488890 -1.484348 -10.096012 3.118517 1.071121 3.526751 2.896602 12.197764 6.939545 6.008281 -0.523383 3.136336 -1.073082 -3.695109 -9.888796 2.750356 0.197798 2.373385 4.989882 6.226268 4.146583 3.978620 6.695157 1.722591 -0.398626 8.569689 2.624462 9.356531 -4.124460 -2.979061 4.297461 0.016472 6.712662 7.435011 0.908324 -6.440953 4.852906 -3.394820 -6.839449 -2.507069 -1.290630 -1.351958 -1.501087 7.391290 6.479129 -1.929442 -1.731616 14.370172 -1.992203 -16.611416 6.194790 3.466008 5.840244 6.506403 -2.916084 5.754829 6.019250 2.921223 3.570063 5.172600 5.068666 -9.531690 0.709590 1.284188 5.007440 7.537688 0.410221 -19.233393 -0.456551 1.414246 10.607272 0.100228 10.577675 -5.404461 3.592488 1.233600 0.170040 2.044783 -1.346385 5.283560 -1.361072 0.047289 -12.647396 2.585024 +4.564021 -6.722092 11.348455 -24.363292 -18.634731 3.266005 2.610426 -18.621783 -6.556039 16.318810 6.895735 -7.942665 -8.714503 21.208993 -3.912215 -18.297725 0.986422 -0.534828 0.020261 -4.407822 -3.331679 12.238354 -7.934804 -8.587959 4.323850 -9.191838 4.644845 16.466444 5.121934 5.260795 -2.115517 -15.064757 -2.541992 32.231154 12.448762 4.909186 -8.082415 42.542411 -13.241268 28.973237 -29.424333 -27.991929 29.387872 -5.436207 -0.534457 -26.594282 -14.417675 13.242902 -12.468864 -8.613322 5.850800 -4.134549 12.696959 -13.125794 -1.671356 11.153827 -25.269269 6.896314 12.610655 -19.130922 -14.535061 -9.794170 -2.881884 8.096308 -24.679488 -16.770278 3.251975 5.395305 -6.180980 0.959973 -11.225877 -21.369835 28.330669 11.109782 -11.659959 3.848306 2.944013 -21.186803 15.873617 -2.202063 -28.407330 -13.015614 -3.250410 -14.051739 19.765876 3.090435 26.178713 -42.186419 11.657557 -43.700152 12.264557 -19.526786 16.100555 30.016161 -19.748102 18.486912 13.572233 22.581925 10.978629 -5.466401 20.088368 15.030775 6.770101 12.310011 23.823213 16.475182 -13.236954 -22.006731 -17.860834 -18.645817 5.298862 -19.210985 -43.018984 10.789783 -7.738640 0.017057 -8.986973 2.067143 -7.507304 26.831700 -36.197413 1.922945 10.225627 -7.788520 8.997647 15.088622 -3.901069 3.162813 -6.727637 21.295343 -12.910893 13.154623 -4.285621 23.012390 -13.911775 -9.393699 -19.409101 7.055980 10.981756 -19.576910 -28.771079 -31.368258 -12.531558 16.460742 -10.914312 21.963072 44.578509 -20.316140 -27.849154 25.332254 1.063744 -1.664774 18.246608 10.005683 24.460462 -10.526034 -6.530036 -15.615111 -9.285153 5.775872 21.403176 0.420701 -16.162564 24.874399 -11.578042 -17.755845 30.394506 -6.411755 -13.915576 -14.276610 3.020007 -17.569701 -13.505603 28.847617 -23.506352 24.856759 -12.087011 34.062796 -12.297711 -13.888911 4.602449 -31.784610 -7.384474 -21.254537 1.946555 0.292519 18.151300 -23.802682 -19.401384 -8.952376 -9.962921 -9.481691 20.840329 -12.592535 -1.127282 8.128718 4.537739 29.666608 25.721526 -0.160387 -4.975419 -16.084890 15.096778 16.858485 0.582351 -27.319251 -9.174764 -7.482638 -8.768126 -2.605797 4.250782 18.785215 -16.330223 -2.693107 2.048153 -2.061189 2.858102 7.148261 -38.122102 11.002510 2.956082 13.457256 10.672379 25.545673 24.439324 25.520494 11.234099 7.496593 -1.411022 -6.035521 -13.658630 6.456146 12.032643 3.115126 13.282230 28.693792 19.130289 13.193370 23.507060 20.409123 9.498326 25.144090 1.055855 36.141650 -4.898061 -6.858913 4.323962 5.340048 23.418943 36.742777 4.178752 0.595176 15.235727 -1.185126 -14.400629 -20.327511 4.145433 -4.511052 -0.825026 15.838913 17.244251 -3.531876 -9.240611 36.961209 -3.250014 -41.902357 18.520015 11.011890 18.320514 16.924712 -3.450516 8.977456 12.542835 -6.585154 24.310123 20.237879 14.083927 -26.200037 -3.714342 3.671792 12.655986 24.389027 14.616346 -32.995861 6.482812 8.139350 29.746744 2.579184 24.899295 -17.976047 -1.973207 9.908581 -8.157204 0.522830 0.933184 9.683234 -8.960804 2.597621 -25.216732 -12.957037 +2.237719 0.984732 3.072070 -5.326331 -3.517271 -1.339475 4.943322 -4.723515 -3.044529 7.578013 1.665575 -5.035434 -4.649507 5.791168 -1.261540 -4.263133 0.255320 -2.378205 -2.604784 -2.439183 -2.157566 2.760600 -1.265591 -5.021085 3.082084 -1.240898 1.738248 6.148859 0.259975 0.239949 1.132961 -2.842150 3.017541 9.977626 2.093136 0.558482 -3.380871 11.885732 -7.239193 8.610652 -9.632825 -9.061048 13.378921 -1.421014 -0.109390 -9.573888 -2.408100 6.402211 -2.821513 -4.680277 -1.354495 0.319564 1.258279 -7.789712 -3.189120 7.714512 -10.111377 4.363269 4.237923 -6.581754 -8.131329 -1.841481 0.772000 1.476327 -6.034782 -6.618861 -0.699083 -1.568238 -3.656068 2.039650 -5.679932 -5.550426 7.705041 1.427821 -1.609936 2.513507 -2.898564 -3.213682 4.749339 -2.209286 -5.095858 -4.529628 2.182577 -1.848921 3.553798 3.530796 5.588115 -13.329999 0.170491 -11.803652 4.693466 -6.705774 5.398107 8.170932 -3.589583 8.474472 1.016903 1.639330 1.370677 0.193661 5.801996 2.438382 6.152578 2.803280 5.604269 6.629210 -5.720856 -9.051452 -6.075564 -4.960544 2.773424 -2.421567 -10.760739 4.006787 -5.301676 -0.279327 0.383618 -0.565250 -1.546212 7.559298 -11.412024 0.558702 3.721759 -1.861644 4.534858 5.310873 -0.003728 0.798253 -1.913008 5.243285 0.361838 3.889669 0.101373 7.175970 -2.727369 -6.752947 -3.468444 1.663642 2.776241 -5.842280 -8.083906 -11.324424 -2.862549 3.860446 -4.866093 4.688031 13.596219 -3.994107 -8.102503 6.580457 1.173280 1.391028 4.158542 2.462520 11.876339 -6.106902 0.025200 -0.149715 -0.576701 5.681043 9.980437 -2.404236 -7.736859 6.549379 -2.238251 -6.316802 6.508098 -0.490501 -1.182996 -0.457070 0.780814 -3.804885 -5.281894 8.734342 -4.537160 10.113881 -5.526775 11.069321 -5.243990 -4.433147 2.731828 -8.823525 -2.600019 -7.081589 0.005188 -0.905228 5.671807 -7.440097 -5.556340 -2.774304 -2.445339 -2.591411 9.089563 -6.948760 -0.690837 -0.023677 -0.789212 6.649535 3.622293 -4.076020 -0.498718 -7.814348 2.988333 5.098821 3.278258 -11.912039 -2.793488 -2.643782 -3.323621 1.470344 0.252041 5.438425 -3.161624 0.250758 4.701530 -1.602253 -1.024854 -1.336993 -7.584801 3.044099 -0.080489 3.201282 2.393804 11.244867 7.975533 5.604554 -0.280101 3.440123 -0.644226 -3.774021 -6.345277 2.454978 0.902511 1.980277 4.986989 6.736189 4.454751 3.785955 7.485926 2.509495 -1.284020 8.737640 1.423975 10.247119 -5.116567 -1.900208 3.041398 0.445701 7.135368 8.772489 0.288499 -6.478554 4.914284 -2.207930 -4.889525 -3.436841 -1.605466 -1.422353 -1.872855 8.056948 5.436727 -2.102274 -1.355781 13.347310 -1.376751 -14.889414 7.327849 3.192216 5.201893 3.737333 -2.682727 3.598647 7.074093 0.406669 2.228609 5.177953 5.413012 -9.350618 -0.958454 0.814694 5.813077 6.452850 1.496679 -17.258071 -0.496337 2.798476 9.809309 0.027071 9.239360 -5.293065 0.442120 1.362680 0.645686 0.803467 -0.508704 4.020341 -2.402768 0.393748 -9.972722 0.537640 +4.790796 -0.339657 5.598410 -9.180279 -3.170220 -1.524695 8.551691 -8.783694 -3.453493 15.353161 2.644141 -6.549614 -3.326866 7.681503 -1.961205 -4.091110 3.842694 -1.274117 -2.719729 -2.017769 -3.269468 3.108262 -2.597784 -9.151261 3.867255 -2.101333 5.615051 8.100182 -3.873087 2.074646 0.111062 -5.555061 3.767918 16.205921 4.664269 0.500377 -7.128426 14.829950 -9.675408 15.175316 -15.536172 -11.120511 17.959918 -2.504647 2.005805 -14.323149 -2.710882 9.013969 1.358740 -10.432076 -3.402973 -1.942515 5.671200 -13.254022 -6.669782 10.508876 -9.855536 0.597963 7.763917 -11.356624 -13.477327 -3.048487 4.637567 4.835570 -13.763561 -10.510451 0.734867 -2.277019 -4.442918 3.546343 -10.700282 -11.318300 7.855261 2.432421 -4.205253 2.218461 -5.633970 -8.719188 6.780363 0.199682 -7.142897 -8.037654 1.310192 -6.053512 4.571777 2.734615 11.768683 -20.256055 3.469168 -18.092363 6.774072 -8.590691 9.498378 12.423101 -3.632618 10.694466 1.168365 8.113716 0.348573 -0.923174 7.683106 5.667308 7.556045 0.943538 11.367380 10.179119 -9.064781 -15.790358 -7.350473 -6.442022 5.051821 -5.318764 -14.222421 6.276349 -9.258189 -0.394786 -1.190460 -1.024639 -3.549102 15.240941 -17.759747 -0.110323 6.356870 -3.795528 6.010635 8.191793 0.461727 1.405335 -1.925702 7.083704 0.626243 3.895448 -0.195036 11.940303 -8.389805 -5.847762 -1.830319 2.327996 5.270237 -9.465769 -13.670145 -18.095722 -6.114034 7.595485 -6.734363 8.285179 17.911857 -5.567962 -12.324221 7.106526 0.387502 -2.694255 5.630086 4.283756 16.515645 -11.827364 2.619598 -2.547920 1.686813 8.698406 19.321765 -5.763154 -12.360230 12.111282 -7.775624 -10.600846 13.549139 0.950876 0.102355 1.156967 0.987637 -4.427341 -6.983761 12.441442 -12.700832 13.808908 -10.078247 17.449945 -8.789818 -4.049076 2.648763 -13.032569 -4.711137 -9.589391 1.293004 -0.351985 11.767559 -9.965432 -9.447672 -2.836646 -5.267763 -0.812415 16.323430 -13.202203 -2.575830 -1.006483 -4.115199 14.412500 3.787992 -6.818868 -1.670223 -7.524481 5.411232 7.860250 4.510613 -14.002266 -7.001737 -5.401771 -5.852450 -2.515017 1.639824 10.487744 -8.082817 -0.296738 8.178409 -1.542690 -4.016823 -3.385565 -15.427584 5.488174 0.073646 4.666571 2.330543 17.867389 9.068135 9.289286 -1.383051 0.985497 -2.500544 -6.912764 -15.015112 4.536190 1.606970 1.207750 6.758704 9.732749 5.309669 6.026680 10.275472 1.786172 1.500928 12.850244 0.771689 10.944739 -6.227432 -1.412964 6.647518 -1.495784 10.922077 11.838365 2.079132 -9.868965 6.730011 -4.619528 -10.472224 -4.534348 -2.193462 -0.988427 -1.834589 8.296649 10.429522 -2.817241 -4.205348 20.582342 -1.175314 -21.997301 9.586577 4.728856 7.968111 10.287699 -5.458031 9.410055 7.422414 5.724640 5.102038 6.434498 8.014661 -13.759514 -1.745659 2.005835 6.991702 11.660577 0.724425 -25.628818 -0.620034 2.371636 15.762937 -0.030792 16.206717 -8.808941 7.354386 1.623359 0.806927 2.773578 -2.712186 7.028837 -2.945858 -1.359939 -17.696022 5.138664 +14.543414 -7.992597 7.943137 -15.294328 -6.977734 2.341103 10.688545 -24.772568 -10.683675 34.624877 8.021268 -15.099688 1.827734 22.648925 -1.602413 -6.717631 7.397099 6.990270 -2.916125 0.083926 -8.969778 7.056111 -8.864242 -22.807092 6.661546 -5.174091 11.289146 17.901544 -14.330324 16.530058 -2.652594 -14.368965 3.847332 38.050364 15.878224 1.004228 -12.743290 42.006330 -36.252731 42.781106 -28.736216 -30.237609 46.618515 -5.540495 4.113771 -16.089343 -14.011726 19.258785 3.670348 -27.857370 -5.225726 -7.889984 14.775104 -25.380217 -13.759943 21.731521 -23.991491 -4.905568 17.815363 -27.385347 -34.979421 -10.017149 8.411214 12.169582 -41.849427 -23.854042 2.810842 1.466231 -0.173952 1.822179 -28.797393 -32.607992 23.399348 6.529668 -8.734989 1.197745 -11.320756 -19.418305 16.460155 11.876154 -24.369065 -16.832945 -3.457175 -22.206279 12.321242 12.731900 38.379595 -50.170762 18.324482 -50.158208 17.509665 -20.300853 22.388221 33.752251 -15.119871 24.033353 9.960334 40.279923 3.558610 0.678758 19.308274 14.919314 5.622118 4.738582 29.269339 28.594878 -23.910836 -36.126827 -22.675298 -15.408541 15.975892 -16.694795 -39.427568 16.239191 -21.756364 2.019182 -9.332656 2.221453 -9.089712 39.752618 -47.306154 9.170027 11.845409 -8.235237 16.893217 15.283394 -1.381419 5.722944 -6.980759 16.069006 -3.450175 4.169433 -1.644243 28.662192 -29.818884 -5.177911 -6.870677 12.446111 16.190691 -28.685595 -32.705010 -48.582158 -11.021926 29.852145 -16.648974 27.631286 48.556131 -19.004782 -23.970244 18.137037 0.376599 -8.438627 18.348681 10.748828 43.639596 -26.131723 4.535038 -5.210211 -0.162195 14.527694 32.668354 -11.197795 -25.665496 29.750799 -15.310679 -20.392285 55.507344 0.529327 -6.019244 -5.771232 6.668570 -6.638069 -13.246158 36.999106 -36.906434 25.678572 -21.619913 42.023560 -17.232408 -2.025115 7.687430 -39.551706 -16.926791 -29.730145 3.185799 -8.232182 30.805684 -24.027386 -21.415178 -5.167579 -14.325791 -4.036008 38.186541 -19.813193 -3.871648 3.762484 -10.691942 31.651633 13.185782 -8.679552 -8.758647 -20.043884 11.006475 22.199185 -2.556592 -32.936397 -18.923914 -15.158439 -10.635330 -12.698998 5.001852 26.251807 -30.558075 -0.281149 12.288216 2.060601 -3.814515 -1.745420 -37.643601 15.451638 3.316083 14.813050 12.768989 42.059233 23.277958 28.901562 3.725669 6.764106 -5.302766 -12.000088 -38.379856 15.574809 6.251842 10.988842 16.467320 28.013191 12.332438 18.330304 18.075398 1.536623 15.246771 31.209381 6.037411 34.486498 -8.799991 -2.753927 12.920812 -0.456159 28.861701 30.037364 0.605036 -17.296075 11.491997 -18.340757 -30.791641 -4.709463 0.742428 -1.475218 -7.204709 14.310146 24.065856 2.029418 -16.062745 51.255738 -2.873028 -59.081605 20.890904 12.334152 21.209265 34.859660 -12.164096 28.231574 15.281675 17.931652 22.325174 22.124891 20.075153 -34.769989 4.450521 4.557971 15.914517 33.993735 3.250615 -58.776431 14.791345 6.034081 34.723093 -3.043337 34.363553 -24.759237 20.838929 2.318756 -5.185061 9.410295 -5.263959 20.602036 -2.451144 3.599749 -48.734162 4.203850 +9.596054 -5.754010 22.021121 -38.696038 -36.523889 -0.546331 11.767641 -22.027516 -11.099984 19.386957 15.156686 -18.773768 -18.580448 43.033367 -4.688192 -30.650805 -0.326165 -16.337334 -6.433961 -3.863601 -7.864714 24.322041 -10.471416 -10.685831 15.057696 -8.439424 -3.892222 29.326463 8.489229 -11.637248 -2.211977 -20.232914 0.263800 52.783576 10.720857 0.454776 -7.246240 80.587750 -24.376393 44.247914 -45.481287 -43.988965 55.872098 -12.149253 -4.612187 -44.624097 -27.987204 31.729485 -19.985616 -17.167421 13.490595 2.673250 9.333657 -27.212984 -1.817867 27.578442 -59.964014 23.543925 24.610226 -26.325997 -24.458818 -11.764804 -11.326019 2.366662 -26.890140 -30.955187 3.705164 3.395361 -14.918483 -1.303373 -13.985956 -32.694665 59.843465 15.214601 -10.445099 16.278763 7.794835 -28.029321 34.264959 -17.161223 -48.460634 -20.981260 -0.869438 -20.486242 39.004327 3.316958 32.210869 -72.859672 16.263796 -73.961208 23.581648 -41.047797 22.818342 54.088476 -33.552324 37.838802 22.364029 19.343971 19.574990 2.703603 42.064208 17.850986 16.275522 27.778328 32.397369 25.665885 -25.058672 -32.429391 -36.493931 -37.716940 10.143186 -19.674627 -66.945255 23.167801 -7.781718 3.850855 -3.619038 5.752680 -3.355311 41.007490 -50.906814 11.173232 23.834185 -12.844797 12.118704 35.663454 -9.086187 -3.454103 -22.208920 38.752746 -21.725971 30.285016 -2.023061 38.276073 -10.609178 -34.768668 -32.655550 6.359270 12.433245 -33.938673 -45.784246 -54.060901 -8.456157 18.758106 -26.750558 38.832386 84.912990 -36.478055 -44.428969 51.189945 21.092331 8.082320 28.177411 14.458486 52.061243 -15.501625 -20.183165 -19.617561 -22.198697 13.090881 19.387732 6.116474 -25.584322 36.646328 -6.608083 -38.986576 64.924084 -8.211713 -23.460096 1.732947 8.384254 -29.068670 -35.047167 49.577821 0.373301 46.493017 -5.576209 66.101583 -14.458669 -27.685262 15.617104 -30.192635 -6.912891 -39.030580 -3.112590 4.330305 21.543923 -35.351108 -30.334015 -16.930998 -18.355374 -23.684545 31.505468 -7.343197 7.673742 14.767123 8.952980 29.327946 44.965225 -4.271519 -1.088328 -44.989443 22.606497 21.858857 0.269303 -53.919691 -9.082905 -9.645523 -11.945285 12.130417 2.352461 29.144809 -21.089412 -7.025133 10.537584 -5.318148 2.402065 8.823748 -51.055467 9.798892 2.876259 25.145884 20.023731 45.251355 50.714690 42.573340 18.121589 23.413756 -7.057229 0.693544 -17.983015 2.140680 5.121709 18.517840 27.368049 40.414079 36.976833 22.775159 42.757415 28.709991 6.637933 47.692338 7.748198 69.943105 -12.581975 -18.215235 7.028032 11.087243 46.105635 60.420884 -3.896357 -5.683868 28.885293 4.344358 -22.375452 -33.790375 6.766334 -9.591038 -5.041817 32.964653 24.383203 -4.614645 -9.461418 60.900368 -11.132816 -75.568180 36.127001 16.473168 34.448239 19.452020 3.966031 14.896790 27.041624 -19.526420 30.281199 36.502674 30.841344 -48.242308 -8.322281 6.791632 28.661360 23.905683 34.828325 -67.110473 7.615434 16.654835 41.528027 -1.259042 34.204494 -31.522739 -17.448639 18.207875 -10.700725 -3.481061 8.980174 12.851795 -22.309067 6.355828 -40.115366 -20.048817 +6.548416 1.340500 3.035406 -6.577036 -2.182615 -1.755465 10.310602 -9.726226 -6.604881 15.798577 3.269651 -8.213284 -3.928619 5.784111 -0.366809 -3.849161 4.273101 3.003935 -3.948675 -3.657622 -5.671528 0.890078 -2.669540 -10.925282 3.267551 -1.996601 5.259117 8.321795 -5.054394 4.949398 0.478175 -4.876354 5.609621 16.421452 5.503825 -1.344875 -8.561752 16.133237 -12.937372 14.549510 -12.829391 -11.119441 20.795055 -2.183268 2.520938 -13.070472 -3.588207 10.043388 4.190874 -12.056471 -5.049828 -2.060157 4.709103 -13.880395 -8.440567 13.297044 -8.214917 -0.052529 8.552899 -13.927049 -16.693660 -2.774021 5.131467 4.417947 -15.666755 -11.618560 -0.036919 -2.767574 -1.399982 3.772737 -15.611318 -13.371116 6.485365 2.426156 -2.552279 1.416264 -8.248803 -5.913165 5.601568 5.916824 -7.421757 -7.890620 2.035754 -3.643492 2.431400 5.521088 13.649246 -21.520370 2.493199 -20.684309 6.476709 -9.460298 10.616171 13.420462 -1.192511 11.519839 0.967988 6.801236 -1.810409 0.398562 7.650528 3.507706 6.358996 0.451901 11.306816 12.044185 -9.650757 -17.972688 -7.279842 -5.386894 6.587323 -2.524486 -12.845163 8.140876 -12.847059 -2.122118 -1.847520 0.401146 -2.909940 14.947135 -15.969140 -0.037554 6.946257 -4.141528 9.350912 8.604187 0.842682 3.162911 -3.038510 5.588899 3.368530 4.173941 -0.408307 12.408172 -8.153507 -8.266293 -1.909386 4.036288 7.308476 -11.057447 -13.973321 -17.962727 -5.261871 9.505213 -8.429143 6.271177 19.712459 -6.964282 -9.572492 6.371558 -0.337113 -1.061865 5.452257 4.368905 23.138474 -14.131492 4.886009 1.671594 2.667708 9.677135 18.108896 -7.914997 -13.976595 12.248175 -6.553499 -8.035201 16.487644 -0.496286 0.202236 5.566209 1.730092 0.075668 -7.647250 13.644970 -12.477198 13.621999 -9.429802 17.506125 -8.456612 -2.196994 3.707276 -10.921258 -6.437528 -10.631122 3.489558 -2.965604 13.331550 -8.578108 -9.872602 -2.184910 -6.375626 -0.672619 18.477271 -11.118095 -2.984781 -0.591562 -5.648830 10.020885 3.118950 -6.630006 -2.966772 -10.002909 4.952898 7.942956 3.494374 -14.981175 -8.186539 -5.601212 -5.839505 -4.958116 1.748409 11.116631 -7.807467 0.766868 9.144024 -1.122729 -3.636209 -3.332368 -10.325978 6.952941 0.706922 4.245616 1.784153 21.129763 9.376337 10.606805 -1.450004 1.539900 -1.498874 -6.561567 -18.238716 6.336067 -0.020799 4.866794 7.360659 7.027862 3.617784 7.095808 9.939708 -4.112546 3.613542 12.875650 2.849223 12.894823 -6.630617 -1.409377 7.361118 -3.193027 11.529278 11.954538 2.760462 -14.404215 5.607357 -8.531591 -13.319052 -3.142143 -2.910423 0.371282 -5.466103 8.891722 12.355631 -1.864250 -5.787311 23.344819 -1.802653 -26.124743 10.308156 5.273274 7.593653 14.329451 -6.545025 12.232708 8.738085 10.638802 3.522666 8.622004 9.434474 -15.663414 1.257948 1.746024 7.196825 10.384614 -2.760543 -30.661299 1.463848 3.929531 16.592430 -1.027500 16.182518 -10.063259 10.465782 1.486219 2.001568 4.160337 -3.264242 9.589888 -2.924635 -0.875475 -19.850499 7.863143 +43.212996 -59.178412 81.125733 -163.500153 -144.897904 24.387023 1.967629 -104.133787 -37.000248 62.071858 60.019089 -53.577285 -49.376691 164.411946 -7.769057 -125.488541 7.591165 -56.018868 -0.867890 -14.489549 -21.991797 91.743504 -45.169340 -29.871480 36.353788 -47.624250 -14.640395 104.203326 41.494536 -36.950908 -21.262757 -88.614014 -34.546806 205.297992 62.990927 4.216786 -27.881074 328.037535 -62.609917 170.612485 -167.275768 -164.570767 193.328951 -51.798505 -25.854760 -137.719046 -113.241248 110.387316 -64.886844 -62.822767 64.724497 -6.129055 57.730801 -79.946664 -12.856987 76.954727 -203.025150 62.036169 88.757391 -98.845851 -80.326699 -52.182443 -39.223362 34.687222 -132.120505 -113.863611 44.196406 33.292759 -51.623147 -22.091145 -51.717762 -140.283831 231.926379 80.252914 -46.511013 42.766948 51.774325 -121.504236 135.512842 -25.169500 -218.529291 -77.686745 -39.594034 -125.845048 168.468779 -10.324801 158.011642 -289.416972 110.682693 -310.361630 84.135032 -149.439508 89.568861 216.819323 -144.828281 129.361710 109.941473 148.913594 84.064424 -17.861761 170.792106 79.874669 21.266897 119.474878 154.405770 81.659745 -81.314011 -106.191163 -137.901018 -147.813924 40.999524 -111.939467 -277.021468 101.001266 -24.907555 6.364498 -42.649835 43.717654 -28.909678 172.331316 -209.283342 35.649945 78.969779 -52.335859 40.848636 130.311684 -48.403649 -2.389187 -82.064224 161.591696 -112.762529 111.586972 -9.053881 150.461977 -50.047255 -70.393114 -142.423448 40.939496 68.656599 -142.520347 -188.164079 -198.334990 -45.743344 83.072875 -95.141941 204.687496 338.029828 -158.237618 -170.600883 202.918560 63.402929 11.847925 128.188149 55.546315 189.258561 -49.435203 -93.351367 -103.613844 -95.707322 30.538442 37.285189 35.544601 -65.607290 156.334007 -35.351584 -108.755923 292.685335 -43.594051 -117.421525 -11.210341 36.068800 -114.437498 -143.037102 189.224447 -20.643602 162.669827 8.552596 254.822941 -38.530589 -93.031246 57.747905 -122.316023 -34.056869 -147.901697 -1.458842 -1.743124 90.744283 -130.269855 -121.891973 -66.916737 -83.536530 -91.148342 112.400481 23.947861 45.862491 83.946704 44.275491 138.834057 211.089016 16.819537 -25.867021 -163.176102 100.254092 106.748628 -21.594151 -152.596187 -52.948899 -44.696531 -39.186979 25.486672 14.751682 131.173874 -117.777087 -35.395436 2.714839 12.152819 28.728071 67.614606 -261.776683 47.973046 30.293974 101.626350 88.086756 165.483623 185.477064 184.462882 99.320680 75.745637 -22.871419 23.255314 -75.813117 -5.947441 35.563461 86.187220 101.301658 177.660467 150.116299 104.883772 174.377294 131.052351 66.950373 182.151041 9.569766 287.363168 -30.603946 -67.723973 7.516912 49.284412 186.213487 264.560379 -5.137158 17.391142 110.382832 19.604016 -99.957042 -162.582341 47.646332 -37.663791 15.515689 89.273354 98.733216 5.079588 -62.149618 229.713516 -33.365420 -301.139637 136.061650 66.852354 135.631497 116.586687 18.057897 66.288224 78.131771 -93.394335 151.509228 162.305611 107.289368 -184.835590 -5.226108 30.911102 107.820245 74.083993 151.320330 -209.027977 67.901231 59.735705 162.775232 8.789345 118.746473 -136.862539 -65.931856 91.671875 -66.984660 -8.842917 52.433087 57.436607 -98.353544 31.510986 -155.911669 -97.385494 +2.559172 0.418538 3.141820 -2.826169 -0.798765 -1.294806 4.295556 -3.426034 -2.101688 6.686044 0.395122 -3.154196 -3.117914 2.438805 -1.154591 -2.540190 0.955356 0.308534 -2.062958 -2.045772 -2.427995 0.458186 -0.975418 -4.543406 2.474402 -1.121148 3.010807 4.119497 -1.663525 0.962765 1.028583 -2.289228 2.774369 7.745425 1.457604 0.833680 -3.166838 6.978515 -3.418916 6.109211 -6.799018 -6.226359 9.300519 -1.204778 1.292367 -5.972264 -0.188254 4.998361 -1.736510 -4.287186 -2.164135 -0.008501 1.251188 -7.211717 -3.241298 5.578959 -6.083863 1.824711 3.245236 -5.755853 -7.565226 -1.259659 1.680102 0.947524 -4.323035 -5.267393 -0.342945 -0.882095 -2.947029 2.730853 -5.271499 -4.554399 4.194461 0.379777 -1.287617 1.924326 -2.447549 -1.263843 2.878773 -0.168096 -2.604553 -4.393952 1.878219 -1.531525 2.139454 2.788054 4.050074 -9.454893 0.884839 -8.057651 3.698586 -4.307644 4.646099 5.549196 -1.690495 6.465580 0.445867 1.290516 -1.271327 -0.140368 3.677487 1.366672 3.933376 0.754035 4.461589 3.931442 -4.504413 -8.004522 -3.849531 -2.945890 2.074805 -1.691830 -5.809334 2.558077 -4.968486 1.473351 0.249887 -0.023687 -1.384538 4.969841 -9.421657 0.401292 3.361873 -1.823608 4.007719 3.202615 0.212295 0.655180 -0.597067 3.249252 0.750804 1.020724 0.028071 5.444550 -1.394235 -4.143426 -1.565810 0.711843 2.553278 -3.758302 -6.402355 -7.846661 -2.864512 3.843828 -3.335019 3.238065 8.761194 -1.790190 -5.172466 3.041398 -0.940863 0.861569 2.890761 2.670421 8.274426 -5.838176 1.388877 0.011594 1.213962 5.461361 6.475075 -3.042893 -6.522360 6.079858 -1.923311 -2.369422 4.605093 -0.476952 0.721603 0.846584 0.512318 -1.619701 -2.788742 5.783140 -4.227754 7.101123 -4.339134 8.484165 -4.564049 -2.660769 0.963662 -6.464965 -2.102683 -3.988107 0.597507 -1.206399 4.919370 -5.732073 -4.818899 -1.517845 -2.214347 0.048441 8.106686 -4.753530 -1.418207 -1.179492 -1.919596 5.868449 0.958589 -3.798532 -0.596409 -4.948357 1.776829 2.925056 2.631944 -7.100852 -2.512239 -1.620633 -2.855929 0.254739 0.906024 4.169840 -2.432551 0.473122 4.237960 -1.160070 -2.193277 -2.233896 -4.216721 1.841125 0.334437 1.394765 1.441087 8.860220 5.462132 3.433559 -1.264232 1.412569 -0.815347 -3.573176 -5.938679 2.051811 -0.060435 2.282787 3.148818 2.703279 2.274606 2.202232 4.277218 0.298921 -0.569231 6.174378 1.524344 5.465892 -4.385483 -0.548709 3.295521 -0.639412 4.834790 4.374917 -0.910022 -5.051768 3.572299 -1.835418 -3.745054 -1.901352 -1.921906 -0.516936 -1.609324 4.752480 4.896917 -2.151623 -1.252391 9.955175 -0.848289 -10.334360 4.969559 2.330599 3.236871 3.616284 -2.670831 3.510637 4.427946 2.815764 0.447944 2.294375 4.072062 -7.295216 0.458161 0.784089 4.067052 4.286039 -0.349438 -12.257226 -1.693385 1.227901 7.120133 0.144578 6.422629 -3.825333 2.322810 0.124630 0.247635 1.280186 -0.699302 3.339671 -0.513234 -0.596418 -7.861017 2.217651 +2.880274 0.889706 3.709892 -7.823623 -3.151720 -0.975184 6.978488 -7.358248 -3.912875 11.242215 3.159522 -5.683648 -3.599031 5.560114 -0.549710 -3.755226 2.871308 -0.046626 -3.234133 -3.398811 -3.026783 1.653603 -2.239858 -8.222764 2.275884 -2.382101 4.791749 6.006146 -2.003597 2.074097 0.272484 -4.883967 4.286722 13.432096 4.221274 1.229474 -7.295008 12.383323 -6.405563 11.115464 -11.570314 -10.747009 15.470490 -1.999077 1.737041 -11.722827 -1.567602 7.798430 2.795138 -9.024310 -3.327923 -1.432404 4.312470 -11.141285 -6.442154 8.020104 -5.804333 0.408608 6.376121 -10.571677 -11.840509 -3.464167 3.895883 4.137434 -11.634634 -8.090781 0.442147 -1.773154 -3.431669 2.520014 -9.664554 -9.753051 6.254041 2.463989 -2.456439 1.525223 -5.465285 -6.233723 4.915413 3.343896 -6.251812 -6.094376 1.557402 -2.546236 2.824304 3.113530 9.822727 -17.207498 1.023014 -15.962922 5.226965 -6.264400 8.549494 9.908565 -2.858323 8.630382 1.318781 6.388317 -0.596565 -0.789439 6.781735 3.229056 6.716227 1.027220 10.438801 8.592219 -6.940194 -13.265854 -5.418038 -6.383910 5.171057 -3.275662 -10.556778 5.585229 -8.876075 -4.215749 -2.176646 -0.094722 -2.954585 10.491058 -14.112544 -2.364563 6.012434 -3.449856 6.624072 6.034678 0.317582 2.479912 -1.093179 5.562206 0.901448 3.610288 -0.566525 10.016136 -4.621710 -5.599033 -2.141296 2.828633 5.250918 -8.337022 -11.717540 -14.283441 -5.111123 6.637130 -6.046039 4.090630 15.222006 -5.168196 -9.311598 6.051329 0.582715 -1.441779 4.723950 3.528997 15.492892 -10.248413 3.196054 0.171059 1.297720 7.645506 14.930174 -5.329102 -10.647881 9.459501 -6.538062 -7.558148 9.491461 -1.285845 -0.326041 0.623474 1.122705 -3.951849 -6.671850 9.727776 -8.933905 11.200897 -7.343845 13.942954 -7.847177 -3.272492 2.830428 -9.153845 -4.712382 -8.110245 2.353701 -1.174586 10.712645 -7.426388 -8.201601 -2.177611 -4.212265 -0.964314 12.859441 -11.514768 -2.245005 -0.372519 -2.918710 7.651122 3.615033 -5.018243 -2.072434 -6.578217 3.873479 7.223331 5.415165 -10.190202 -6.238943 -5.388584 -5.078663 -2.777629 1.386282 8.724463 -4.165471 0.167038 6.660826 -1.795621 -2.903559 -2.391344 -10.986687 5.041852 0.556684 3.501918 0.623531 15.972317 7.377167 8.257247 -0.565145 0.508354 -1.032287 -5.218795 -12.879136 3.452309 0.608991 2.288887 6.100656 6.878682 5.005819 6.010083 10.497523 -0.092496 1.082635 10.640197 0.614282 10.385947 -4.868533 -0.772001 5.436752 -1.591413 9.104724 11.446683 4.411169 -9.628953 5.510927 -4.672709 -9.118836 -4.059266 -2.350647 -0.213802 -2.358351 6.854556 9.465830 -1.895002 -4.086621 17.900363 -1.637492 -18.770800 8.453736 3.530957 7.026955 9.554267 -5.700980 7.612165 7.069600 5.300770 4.272399 6.340228 7.045270 -11.675878 -1.231628 1.121416 6.752000 8.339247 -0.968235 -20.117792 1.799580 2.412884 12.790534 0.394886 11.611360 -8.061967 6.468438 1.236032 0.601267 2.551409 -1.705555 7.085170 -2.184213 -2.518835 -15.140096 4.865596 +11.768140 -8.748122 26.265811 -47.426246 -48.557567 1.651863 4.580840 -24.624757 -11.521420 13.444484 17.001329 -18.175517 -21.221916 51.361661 -7.868374 -40.570026 -3.438708 -20.359088 -5.308701 -5.269785 -6.731640 30.382826 -10.908216 -6.724673 15.805568 -11.962921 -8.807701 32.076048 18.339769 -19.201881 -3.741183 -23.339341 -3.795394 58.733442 11.214040 -0.379641 -4.567890 98.562528 -16.230142 43.307605 -51.206719 -49.717045 59.103192 -15.126508 -7.444376 -52.631904 -37.079836 34.893285 -26.167983 -13.260644 19.756254 4.024203 8.850109 -26.096100 0.935968 27.185913 -71.553402 31.651463 26.328802 -26.030846 -20.853198 -12.730292 -16.609768 1.576288 -24.438103 -34.621049 6.961133 9.971298 -19.679732 -4.035549 -9.296826 -34.992644 78.186044 18.463301 -12.599586 19.489519 16.500811 -32.676593 40.718969 -23.860379 -61.801590 -22.324734 -2.573593 -23.918651 49.852331 -1.013596 36.338984 -84.412150 23.877710 -87.128994 26.361596 -48.237686 24.317918 62.797133 -44.459645 42.142025 30.247769 23.156117 28.289374 3.949571 52.866689 21.183111 14.645525 36.905864 35.390471 23.253828 -23.225916 -29.237490 -41.866923 -46.901746 8.181697 -23.645583 -86.623171 27.355096 -2.502392 7.099312 -6.080074 8.922429 -1.172994 45.489569 -57.584386 12.329190 27.237657 -14.700528 9.924091 41.903690 -13.473216 -4.748635 -28.184018 48.052691 -31.588176 36.205343 -0.654800 42.248543 -7.930649 -41.968766 -44.976354 6.890408 13.404274 -38.259693 -52.116657 -55.928345 -8.610802 18.150439 -30.414621 49.065068 102.209345 -45.271858 -53.019738 63.091525 27.347536 10.743570 36.562867 16.267718 58.147226 -12.066391 -30.905918 -26.323708 -30.746310 12.161418 5.463902 12.551138 -22.437048 41.556924 -4.188631 -44.411019 78.142178 -13.694499 -32.574310 4.093137 9.939193 -35.949937 -42.045668 55.900031 11.838218 54.293172 3.071883 76.960456 -11.883231 -35.843708 17.017453 -30.118751 -5.674138 -41.324026 -2.163534 4.263743 21.438982 -40.235899 -34.296653 -18.837613 -23.545502 -30.196127 30.555642 5.594545 14.644713 21.731408 14.949461 32.436832 60.910645 0.793522 -0.397858 -54.545420 27.472066 25.830393 -2.959011 -59.928994 -8.965204 -9.574133 -10.828989 16.976140 1.604325 32.766252 -22.549411 -10.419524 4.078377 -4.890999 7.950422 15.212124 -58.463653 8.681809 2.485597 31.730657 22.838330 47.348943 62.825911 51.651105 26.655987 28.878288 -5.648156 5.328769 -9.680863 -2.714129 7.623878 23.384364 31.463305 49.263391 45.809561 27.432168 52.028116 39.416965 10.097479 54.869651 6.874028 89.039541 -15.674835 -23.491910 0.957512 16.229431 55.064756 77.121927 -5.832799 2.913565 33.693678 11.747311 -20.479149 -48.482422 12.032659 -11.471776 -2.587753 36.279203 27.322466 -3.034096 -10.809212 64.949716 -12.254078 -85.895313 43.421631 18.219628 39.312607 19.772642 9.442174 12.239735 29.326183 -31.653970 35.311322 45.641206 34.703300 -55.082922 -10.828360 8.148159 35.419299 16.956967 48.156588 -67.287011 13.389045 22.470482 45.401283 -1.585810 32.657782 -37.436914 -31.281023 26.575544 -14.154058 -7.105164 16.623818 11.119277 -31.600151 8.069351 -37.259225 -32.058077 +5.133755 1.537494 2.773459 -4.736806 -1.692150 -1.513802 7.555290 -6.599572 -4.585619 11.652962 1.685493 -5.645651 -4.578566 4.574412 -1.490182 -3.465457 2.257888 0.928346 -2.990281 -3.635021 -4.028215 0.941131 -1.531194 -8.299899 2.890866 -2.180600 3.533601 6.394285 -3.117582 3.083549 0.885718 -3.502470 4.749820 12.008657 3.466600 -1.048541 -5.812271 12.420553 -9.751702 10.364222 -10.285373 -10.057581 15.935991 -1.492202 1.784127 -10.089065 -2.478094 7.021735 1.206696 -7.224143 -3.947429 -1.214438 2.865444 -10.434149 -5.802081 10.441934 -8.434113 2.052969 5.254031 -10.345966 -12.148341 -2.054429 2.996856 2.784719 -9.362706 -8.579337 -0.322874 -1.012530 -2.694323 3.377541 -10.351157 -8.607386 6.114823 1.439778 -1.716584 1.501644 -5.491136 -3.489442 4.162157 1.711648 -5.130360 -5.893892 2.392583 -1.344705 1.809451 5.008958 9.361849 -15.814793 0.893266 -14.654768 5.411226 -7.184992 7.746886 9.216076 -1.004370 9.267522 0.764716 3.448544 -1.082965 0.368270 5.903479 2.699416 5.855338 0.797406 7.249646 8.728597 -6.993928 -12.901508 -5.479493 -3.501290 3.914468 -1.514090 -10.337698 5.167913 -8.929478 -0.504759 -0.417909 -0.224145 -2.285853 10.518234 -13.160375 -0.040592 4.967026 -2.979989 7.011896 5.631347 0.882283 1.868770 -1.641223 4.622954 2.357853 2.912995 -0.137633 8.865161 -5.126930 -7.910743 -2.267321 2.661801 4.689971 -8.032510 -10.086475 -12.593987 -3.953471 7.545674 -5.833588 4.785742 15.229498 -4.537816 -7.567408 4.768124 -0.828112 0.193152 4.569348 3.635620 16.363631 -10.050946 3.315523 1.251037 2.083340 7.725238 13.372419 -5.514979 -10.419616 8.602146 -3.220160 -4.929696 9.390080 -0.997526 0.419746 2.646424 0.885055 -0.695868 -4.957106 9.823544 -8.846983 10.702847 -7.232761 13.196263 -6.896543 -3.115123 2.329131 -9.084117 -4.605365 -7.281395 2.788207 -1.916861 8.899828 -7.370553 -7.264630 -2.013201 -4.529033 -0.467069 13.828891 -8.429218 -2.061527 -0.895956 -4.069187 8.599950 2.137448 -5.318839 -1.528825 -7.819825 3.364129 5.544794 2.825919 -13.699851 -5.226677 -3.057798 -4.035752 -1.800643 1.138706 7.561773 -4.541826 0.770953 6.683360 -1.644444 -2.825949 -3.054289 -5.513996 4.462637 0.540205 3.109307 1.062194 15.199243 7.875731 7.044173 -1.653259 1.891942 -1.198855 -5.908165 -11.027397 4.899116 0.603936 2.924382 5.246972 6.185831 2.248957 4.723334 7.807239 -1.514652 1.399853 9.200647 2.118560 9.650295 -6.877498 -1.458984 4.955981 -2.126107 8.273395 8.762941 0.478693 -10.524612 4.621567 -5.530703 -8.023975 -1.942700 -2.186757 -0.273011 -3.750781 8.473246 9.865576 -1.851110 -3.614203 16.878838 -0.929479 -19.042886 8.297833 4.353415 5.421651 8.934185 -5.100035 7.410957 7.015675 7.324201 1.533211 5.902624 6.754668 -11.852086 0.221556 1.124308 5.777406 7.406644 -1.793228 -22.985778 -0.308038 3.599008 12.326811 -0.643754 11.590360 -7.021370 5.779285 0.677832 1.685060 2.648169 -1.643542 6.281523 -3.293598 0.317381 -12.859557 5.421110 +1.682469 2.061668 2.965172 -4.155524 -4.990644 -0.016428 -1.361743 -4.892176 -1.452507 4.653596 1.445705 -3.985776 -2.878738 4.888568 -4.400278 -4.156418 -1.861189 -0.071575 -1.144609 -4.660259 -0.518063 2.149798 -0.725869 -2.432702 0.762931 -2.600487 1.340964 2.523562 2.605906 -0.747931 0.710203 -1.942888 2.553307 6.939303 1.931709 0.577247 -1.885132 7.116228 0.604909 2.914384 -9.836798 -6.693359 6.673174 -0.244126 1.306732 -8.751859 -2.850539 3.285226 -4.338390 1.158924 -1.612149 -1.024886 0.468249 -3.966953 -1.697503 3.871761 -7.625821 6.801872 1.807898 -5.612299 -4.188465 -0.527138 1.080383 1.293444 -0.527837 -4.354980 -0.581687 4.027727 -3.907601 2.619491 -1.840930 -3.700262 6.688590 -0.133042 -2.793772 1.063813 -1.488932 -1.668807 2.794668 -5.274046 -3.806189 -3.009143 3.441028 0.849461 1.569824 3.111945 3.745154 -9.211323 0.192126 -8.273967 3.657722 -3.181921 4.246058 3.940284 -4.401674 4.164095 1.659039 -1.653905 3.854792 2.099451 4.331958 1.377824 3.704252 1.984120 2.559286 3.326247 -0.902304 -3.647919 -1.708817 -4.890808 -0.204663 -0.409235 -9.207261 1.455151 -3.500590 2.589294 -1.326214 -0.640090 0.452276 4.600578 -8.606695 -3.885982 2.360893 -1.242720 3.261449 2.796720 0.390813 1.897460 -1.280843 4.209601 -1.323731 0.665474 0.174901 4.131043 -1.062732 -8.987111 -7.566685 1.528910 1.594722 -3.736906 -5.720050 -5.557198 -3.036066 1.885768 -2.610426 3.892319 9.080058 -2.961546 -7.865184 4.806567 0.486513 -0.800142 6.503686 2.187885 8.559787 -4.203430 0.054606 -1.500838 -0.944895 3.811196 3.262593 -1.980013 -4.574034 4.146308 -0.050801 -4.996774 1.196268 -1.824047 -1.820206 -1.729686 0.464897 -2.445668 -1.616439 3.844526 -1.464705 7.711471 -4.045988 8.309814 -5.340698 -6.849244 0.755242 -6.678447 -1.743845 1.352875 1.736448 -0.603988 5.138156 -6.049808 -4.012466 -0.130210 -3.144271 -1.708990 5.836852 -0.866124 0.106249 0.916025 -0.997560 6.769348 4.018669 -2.098927 0.795293 -4.191236 1.920043 4.922586 3.731726 -10.028756 -1.485263 -2.803401 -1.572333 0.751011 0.130765 4.021717 -0.592080 0.531957 0.303959 -2.994064 2.064594 -0.718210 -0.664377 2.829993 -3.426100 2.615923 -0.485544 6.843211 6.006174 4.316824 0.578711 1.633955 0.195805 -5.369371 3.005253 1.964868 4.188241 -1.143445 3.022552 5.923358 2.602468 2.801305 6.090210 3.068870 -0.757498 6.033423 -1.516596 7.766835 -8.284304 1.409789 -0.819417 0.649017 5.115822 9.524313 -1.426019 -3.593781 2.805569 -0.166519 -0.217625 -5.980363 -1.214767 -0.552064 -1.873922 5.320316 5.707792 -1.326928 -1.653133 8.137635 1.097602 -7.567539 7.923754 1.911947 1.522977 -0.080762 -2.598916 -1.274615 4.780015 -0.782339 -1.008676 4.299801 4.090755 -7.131476 -4.011980 -0.061544 5.898301 3.119773 2.628319 -8.967430 0.376275 5.087249 6.774412 -0.498371 4.744996 -4.461200 -3.888130 1.939753 0.664148 -1.205314 1.427949 1.045164 -3.491097 0.895589 -1.306514 -2.287506 +2.637784 -0.772066 11.410186 -20.278810 -22.100751 -1.551292 13.453810 -10.578346 -4.977425 16.719435 5.558240 -8.527453 -12.872104 23.088925 -3.072856 -12.898941 -1.242633 -12.766733 -2.695334 -1.783204 -3.013668 15.390763 -5.253155 -2.167635 6.812713 -3.472841 -1.356632 16.728968 3.076151 -4.284125 1.350885 -11.216194 0.278588 23.789066 5.573693 0.384794 -5.631071 42.324469 -22.369688 28.210991 -26.874940 -23.970503 26.242775 -4.825483 -2.999882 -32.377441 -13.115614 14.688537 -6.727777 -9.325335 7.710735 2.697880 6.289072 -10.735588 1.675457 13.625882 -28.733185 9.894191 11.410512 -13.923887 -9.489305 -5.451651 -6.480296 4.973135 -19.713897 -14.112322 -0.298617 -3.735690 -6.285297 0.455823 -4.146956 -13.290083 25.471936 7.659105 -8.657666 6.716683 3.776043 -18.620052 16.893691 -12.982488 -25.185251 -8.924657 -1.898748 -9.949730 15.885801 0.729193 17.288047 -35.250594 5.516642 -34.881624 10.149533 -21.301712 8.633437 26.207256 -11.279697 19.711362 8.535178 8.731545 13.819264 -3.225957 16.823860 14.148313 15.338618 14.731569 14.105922 18.570834 -14.219478 -17.401243 -21.698722 -16.937076 6.463491 -10.144251 -35.388678 9.570224 1.233965 -0.461723 0.484080 -0.375805 -3.506456 25.835158 -25.109738 9.486966 11.287070 -5.471574 2.783710 19.371262 -3.492765 -0.936232 -8.830902 18.213299 -9.724035 21.930774 -0.120594 18.140179 -11.772697 -13.925474 -12.198049 3.230789 3.864724 -13.662645 -19.089122 -30.478077 -5.170593 10.060583 -11.998041 14.029489 43.443156 -19.789473 -24.770774 24.562892 10.363666 -0.713807 6.587691 5.410378 21.920928 -4.553848 -11.677292 -12.302479 -11.376196 5.683046 35.234302 5.628877 -13.626822 17.325594 -6.963272 -30.065790 26.028630 -2.092546 -12.457771 -4.167811 2.490075 -15.249579 -15.335545 24.677504 -11.577130 23.684292 -9.553065 27.688341 -5.956007 -11.470831 5.744337 -22.167482 -1.515362 -24.720650 -1.788789 7.352713 10.831067 -17.549067 -12.132995 -12.127090 -10.234920 -12.944536 12.480514 -21.108578 1.784098 6.308894 7.360130 23.085778 23.035631 -1.269856 -2.311872 -19.675659 13.003794 6.943707 1.787211 -32.480047 -5.155046 -3.939398 -7.537104 4.614792 -0.014749 12.197952 -9.946101 -1.574701 5.502155 -6.138007 -2.157488 5.000621 -32.066737 5.510170 1.899002 17.877211 8.628036 18.381652 23.492217 22.083824 9.796699 14.113179 -4.381715 -1.414219 -11.368345 4.683375 7.844972 -2.619011 13.005421 25.031705 18.503805 9.403022 21.899262 16.638022 0.933964 21.162461 0.596414 34.775711 -6.243460 -10.977381 4.211699 8.260547 18.426225 29.095764 6.056124 -2.481276 14.296492 0.067118 -11.750255 -12.194488 3.830771 -6.144832 1.493593 22.659487 14.101777 -5.519336 -1.528254 26.914199 -6.662635 -38.387440 13.451216 8.222535 17.027266 8.500736 2.456917 7.223210 14.828932 -9.348078 20.572868 19.432571 11.918840 -20.639972 -10.731853 3.282194 9.481550 21.249390 17.223173 -45.582509 -1.857415 6.623517 21.402325 -2.808688 29.425069 -16.224702 -6.537379 12.230936 -3.732627 -2.613376 2.193481 5.720974 -9.503892 4.180623 -21.946922 -9.105440 +21.414831 -7.688364 33.446792 -54.123335 -52.888500 0.179594 17.592387 -39.371177 -18.860356 47.098421 22.505022 -33.134819 -25.779767 60.126937 -10.763886 -41.774210 3.521011 -14.647738 -7.218847 -10.644281 -15.205340 32.392584 -17.366729 -26.281060 22.703886 -14.340907 0.646544 46.903198 7.662001 -1.571941 -3.211398 -31.179352 4.563258 86.454062 21.650994 -3.575442 -13.873901 121.749550 -46.927997 68.687353 -73.078639 -74.353909 94.127823 -15.904085 1.305399 -62.530514 -38.579716 49.839414 -31.973270 -30.118364 12.303269 -1.442444 21.283975 -47.331213 -11.510157 45.014913 -91.201560 31.826051 37.837595 -48.351960 -49.807980 -17.483597 -10.143194 10.822469 -49.380096 -51.251633 4.327647 8.123206 -18.959708 1.700271 -31.556608 -53.829198 81.033452 19.561508 -17.136365 20.428352 4.744231 -43.909991 49.934837 -19.962927 -73.754178 -34.439412 -1.466881 -36.664933 54.532686 11.829858 60.875418 -115.674045 28.903075 -119.142251 38.878334 -60.144495 39.668793 84.041711 -51.932391 59.195647 32.269080 39.524927 28.850950 4.346294 63.255342 31.028339 25.917546 36.343694 52.383082 48.608204 -41.086971 -56.627749 -55.812327 -53.279489 15.389404 -31.493569 -102.584376 35.818029 -22.495628 10.491400 -7.144006 4.253045 -9.553393 72.417858 -87.761313 12.682128 33.586933 -19.598743 24.462713 49.276580 -11.044161 -1.568036 -27.142579 58.404692 -27.317104 35.987881 -1.035696 62.513969 -26.412038 -52.758965 -49.564228 16.069970 24.505701 -55.668602 -74.598315 -91.524317 -15.892767 36.057825 -40.034568 58.182601 131.157557 -52.574380 -68.170985 72.231673 17.433435 3.497688 49.969901 23.936391 85.591064 -33.173505 -21.718545 -26.831892 -26.700666 22.922002 42.496898 0.189896 -45.234642 60.314376 -12.745856 -52.043325 95.401374 -8.983501 -29.519675 -5.687735 12.746517 -38.793693 -47.292309 78.279003 -20.595892 69.892704 -17.973751 103.291671 -26.789544 -42.720741 23.461133 -56.862334 -16.232375 -55.747413 -0.475905 3.503570 40.466269 -58.147737 -49.644080 -24.634726 -26.918007 -31.188349 60.080104 -15.387748 7.143984 21.047611 4.790446 51.940143 59.727031 -11.009279 -3.985474 -65.425506 32.167031 36.760622 -0.890864 -87.870033 -21.120393 -19.533954 -19.320748 11.177348 6.686481 50.780540 -37.917051 -9.164970 20.685348 -6.437928 2.822520 8.947452 -75.223254 22.583562 4.257097 37.341797 30.386915 78.648911 74.796319 68.055054 20.726459 33.418662 -11.335952 -8.884306 -33.205280 10.222929 13.101102 25.087344 39.919193 64.479062 50.322279 37.180796 59.643804 38.171770 12.254312 75.245504 10.734969 102.569005 -28.149645 -20.987960 15.599494 12.326125 70.666617 89.689091 -6.524398 -20.012424 39.982726 -4.330067 -39.763819 -44.883131 8.579625 -12.157657 -7.709520 44.831273 45.176917 -6.204385 -19.244017 98.526116 -12.499599 -123.964343 60.058626 26.206934 50.657866 39.870448 -3.016009 27.963988 39.858577 -15.056529 49.180563 57.942293 45.976865 -78.254840 -9.889177 11.305846 47.434105 44.418355 43.896037 -113.635284 12.969430 24.390827 66.791288 -0.222502 61.804438 -53.647263 -16.959907 22.229010 -18.657387 -2.529197 7.676184 24.397454 -30.858176 13.642679 -68.191877 -23.192544 +0.649867 0.806606 1.136058 -1.373628 -1.260881 -0.238376 0.873472 -1.094326 -0.499846 0.673606 0.073146 -1.068757 -2.533989 0.484154 -0.737917 -1.739120 -0.412356 -0.657853 -0.862447 -1.331350 -0.469321 0.322494 -0.115238 -1.588766 0.646198 -0.756486 0.470672 1.716526 1.291793 -0.479139 0.265684 -0.581575 1.375380 2.531559 0.329229 0.448221 -0.653488 3.178843 0.885391 1.214721 -3.274662 -2.812171 3.916007 -0.373163 -0.036090 -3.725577 -0.368796 1.552179 -2.596326 -0.008252 -0.387556 0.183737 -0.078533 -1.923541 -0.664893 2.209642 -3.059046 2.639594 0.517314 -2.175899 -1.760237 -0.446940 -0.263963 0.059712 0.119470 -1.627714 -0.279922 0.114537 -2.072231 1.127440 -1.162728 -0.817893 3.627948 0.294082 -0.719431 0.813387 -0.244660 0.082908 0.971068 -1.259456 -1.144203 -1.110948 1.367092 0.869730 1.180629 0.888239 0.534502 -3.653119 -1.122576 -3.477502 1.440351 -1.850519 1.427949 1.533590 -1.140392 2.467382 0.318868 -1.881701 0.060824 0.544571 1.704353 0.166559 2.307161 0.747272 1.735980 0.971463 -0.542678 -2.451024 -1.207035 -1.501651 -0.097454 -0.024498 -4.411490 0.555944 -1.809254 1.470584 0.252262 0.323853 0.006624 1.065995 -2.877164 -0.508770 0.960673 -0.489168 2.078478 1.373433 -0.075379 0.593601 0.041768 1.649984 0.041432 0.878039 -0.005995 1.476624 1.011421 -3.684053 -2.245974 0.246508 0.780229 -0.986238 -2.162591 -1.843459 -1.302060 0.825000 -0.953565 0.245555 3.769049 -0.576380 -2.346449 1.766236 -0.429141 1.198391 1.698872 0.853750 3.771302 -2.102274 0.353802 0.242840 0.064510 1.622495 2.216771 -0.672390 -2.171710 1.461425 0.256577 -1.486322 0.064720 -0.641883 -0.286119 0.528546 -0.401089 -1.236461 -1.652351 1.904495 0.600529 3.609329 -1.149136 3.244835 -1.984837 -2.402274 0.386671 -0.259273 -0.501291 -0.617063 0.376857 -0.077902 1.246369 -2.508108 -1.587459 -0.570300 -0.644643 -0.531586 2.905064 -0.721832 -0.178216 -0.112074 -0.053885 1.065173 1.192285 -1.146874 0.068500 -2.488205 0.665838 1.448112 1.287450 -3.599549 -0.302562 -0.321604 -0.690780 1.288142 0.070730 1.147967 0.868134 0.032715 0.799792 -1.025659 0.275717 -0.369335 -0.379170 0.360300 0.058132 0.336860 0.057700 3.270955 2.677508 1.019690 -0.039699 1.081518 0.077096 -1.199453 -0.361094 0.062243 0.472602 0.511487 1.089557 2.261349 0.993548 0.790844 2.475514 0.985502 -0.918258 2.115743 0.478294 3.153917 -2.757412 -0.509571 0.149463 -0.031868 1.840000 3.075292 -1.031741 -1.762904 1.329323 0.489851 -0.575232 -2.215231 -0.811384 -0.471073 -0.448112 2.956007 1.899757 -0.631087 -0.276867 4.115176 0.016228 -4.017895 2.275982 0.748694 0.982895 0.236491 -1.087686 -0.272149 2.334672 -0.246467 -0.459039 0.974021 1.283565 -2.822523 -0.974552 0.032380 1.882462 -0.172526 0.352317 -3.884137 -1.527257 1.309985 3.380823 0.564996 2.011370 -1.289744 -0.988282 0.436908 0.097705 -0.177668 0.458060 0.925327 -1.382254 0.023205 -1.994034 -0.144539 +7.064679 -0.791811 6.426154 -11.260092 -3.512699 -2.364943 14.741509 -8.706828 -5.663775 18.408108 2.152909 -7.699654 -8.767937 9.653978 -0.059151 -6.556472 4.482972 -6.934282 -3.677679 -0.440981 -5.732360 5.010897 -3.660594 -11.042913 6.804840 -0.817040 4.926754 13.244887 -2.669961 2.615171 0.034919 -7.200006 3.866520 20.942758 5.576020 -1.079292 -6.816553 24.506071 -19.363781 20.752123 -16.769871 -16.980564 26.393532 -3.591992 -1.289791 -17.501938 -2.542990 13.225683 -4.044536 -13.452871 -0.801585 -0.307974 5.765526 -16.449993 -7.002845 16.760562 -19.521071 3.388919 9.738117 -10.608736 -16.695205 -5.873922 2.805423 3.975835 -16.506888 -13.669778 0.492484 -7.860315 -6.553814 3.081686 -14.821329 -11.987372 11.462416 4.943759 -4.126171 3.758334 -5.900846 -10.208707 9.464023 -1.489697 -10.702694 -9.694639 -0.405980 -8.130975 9.776452 3.867036 12.126068 -26.428158 3.027188 -24.096932 7.755323 -14.916822 10.969307 18.925123 -5.365511 16.227330 1.038432 9.592090 -0.675173 -4.896749 10.923770 7.253574 10.883786 3.678963 13.583870 14.514093 -14.514324 -20.388242 -12.781817 -7.071485 6.055888 -7.190046 -19.872650 8.339263 -10.860639 -1.630944 1.864248 -1.448858 -7.488283 16.848147 -23.481761 3.998691 6.202724 -4.738505 9.227112 12.421122 -0.422460 0.487986 -2.937849 10.897518 1.849422 9.393019 -1.163408 15.284666 -9.224500 -8.240215 -1.837188 2.737729 7.305115 -11.750146 -18.106875 -25.849060 -5.815912 7.989155 -9.297451 11.120099 26.178222 -6.839767 -14.098280 12.208339 -2.003574 2.950556 6.273148 4.450383 20.485275 -12.553922 1.075014 -1.271750 0.525834 8.728363 24.047896 -5.216574 -15.492720 14.544283 -8.424322 -8.026904 14.386180 2.336754 -1.276809 -1.216586 0.341386 -7.787133 -12.210584 20.367687 -16.728817 16.566105 -10.389506 22.223201 -8.361938 -4.689852 5.434674 -18.193200 -4.528456 -19.606417 -2.325961 -0.046152 11.118000 -14.471373 -11.876137 -7.270063 -2.318992 -4.025770 19.781711 -18.012943 -3.242486 -1.103525 -1.049838 16.956971 6.006019 -9.134190 -1.540636 -13.655291 7.016547 8.631788 2.924416 -20.717944 -6.849963 -4.043999 -7.816076 2.677131 1.487966 11.234251 -10.627948 -1.391224 12.710563 -0.204310 -5.261256 -1.850518 -23.621731 6.102063 3.181111 4.998070 7.391644 22.741663 12.495883 10.828001 -0.933582 4.717928 -2.937188 -4.903317 -21.178041 4.433231 -0.185548 4.450435 9.455496 11.584319 8.550818 6.599457 11.951843 5.406318 -2.139395 16.145419 5.937170 16.035103 -4.326913 -6.284683 9.609771 -1.059725 13.228790 13.025895 0.762442 -11.658242 10.481513 -5.726808 -12.651696 -4.140431 -2.196042 -3.726340 -1.533432 12.940279 9.976318 -4.687370 -2.848051 27.545045 -4.822462 -31.454627 10.605686 7.553028 12.151728 12.313895 -4.848542 11.693947 10.622271 2.837594 9.867916 8.770921 9.926105 -15.963920 2.317336 2.741549 8.071224 14.759531 1.424877 -35.657124 -3.244391 1.666699 20.336040 2.932377 21.329907 -9.302999 7.201258 1.554778 -0.150326 4.497715 -3.971677 10.646960 -2.885322 0.347095 -24.277472 5.196868 +5.069135 0.647547 2.476208 -5.267521 -1.241673 -1.586107 8.897858 -6.313043 -4.857615 12.388145 1.660820 -5.823161 -4.777338 5.430762 -0.123746 -3.268435 3.572483 0.367743 -2.932604 -2.081941 -4.787871 1.438644 -1.996077 -7.745586 3.376240 -1.352203 3.058036 6.914953 -3.399464 3.108744 0.311986 -3.887086 3.790652 12.527604 3.640328 -1.374044 -5.749584 14.240663 -12.114115 12.710188 -9.790827 -9.682627 16.745756 -1.760097 0.781966 -10.346811 -2.701621 7.656522 1.759738 -8.662842 -2.916182 -1.168721 3.025325 -10.513353 -5.523715 11.225049 -8.880125 0.910153 6.154076 -9.796167 -12.739753 -2.423931 2.806987 2.662857 -11.610235 -9.021072 0.061415 -3.194304 -2.316417 2.713027 -11.302421 -9.149842 5.756308 2.414507 -1.935336 1.712907 -5.442332 -4.372870 4.625162 2.684357 -6.084619 -5.894172 1.104810 -3.501865 3.092236 4.307366 9.982715 -16.788318 1.651199 -15.984397 4.820867 -8.482034 7.726809 11.011241 -0.463971 9.734286 0.741030 5.010856 -1.568899 -0.432496 6.211605 3.396607 5.264405 1.106209 8.463580 9.603220 -8.273989 -13.956424 -6.518474 -3.321960 4.294402 -2.065619 -10.708754 5.875235 -9.192256 -0.846919 0.055835 0.640340 -3.302585 11.229544 -13.052350 1.528294 4.865497 -3.283607 7.117156 7.298491 0.583358 1.309373 -2.346329 5.275147 2.286107 4.277859 -0.525214 9.429909 -5.806182 -6.214838 -1.131696 2.454735 5.091298 -8.180760 -10.651943 -14.339391 -3.847878 7.640324 -6.239270 6.150139 16.627152 -5.037225 -7.293622 5.746851 -1.438328 1.113765 3.947644 3.358501 17.226929 -9.835364 2.978150 1.015595 1.859294 6.711590 14.459522 -4.930448 -10.565686 8.902912 -4.107154 -5.553897 12.229459 -0.149236 -0.112713 3.186865 1.086079 -0.763056 -6.727980 11.502761 -10.660364 10.441592 -6.932207 13.754976 -5.700177 -1.812655 3.208325 -9.087580 -4.248369 -10.158126 1.775889 -1.953339 8.891586 -7.101077 -7.388494 -2.612421 -4.381947 -1.000518 14.167413 -9.211528 -2.130566 -0.649956 -3.365700 9.220136 2.722033 -5.249735 -2.196247 -9.006336 4.012312 5.358649 1.565429 -13.221490 -5.293333 -2.846955 -4.511807 -1.976713 1.087894 7.616676 -6.109969 0.097275 7.321172 -0.541540 -3.155824 -2.300001 -8.983577 4.565574 1.580856 3.171108 2.655549 15.955663 7.718381 7.712803 -1.087774 2.107837 -1.836449 -4.412649 -14.121112 4.615995 -0.475453 4.116863 5.517390 6.167549 2.851422 4.999417 7.301026 -1.807754 1.686002 9.595409 3.479809 10.291648 -4.738094 -3.080986 5.931148 -2.420825 8.449972 8.807295 0.284803 -10.184825 5.290444 -5.832102 -9.767674 -2.140384 -1.634667 -0.701357 -3.458651 8.239704 9.190217 -1.683729 -3.499040 18.094076 -1.896079 -21.273205 7.425768 4.506649 6.521015 10.471008 -4.004777 9.126240 6.812082 6.979620 3.214481 6.304697 6.788598 -11.799770 1.683548 1.453786 5.051208 8.409579 -1.780847 -24.646987 -0.171668 2.485542 13.060245 0.057996 12.710068 -6.851567 7.053434 0.977651 1.041289 3.070393 -2.332904 7.412731 -2.578133 0.333983 -15.647481 5.677676 +5.644377 1.388089 2.980947 -6.743432 -2.447402 -1.849192 13.501554 -7.417430 -4.975958 8.843432 1.468378 -6.768067 -10.754613 4.703604 -0.675671 -5.349564 2.384923 -1.433510 -3.090141 -4.576852 -4.767340 1.598150 -1.642717 -8.964056 3.043705 -3.543246 3.670234 12.745796 1.978692 3.253608 2.240458 -4.585215 5.021123 13.906599 4.128362 -0.406061 -6.921671 18.620277 -12.881598 13.078023 -12.287191 -11.270654 23.667485 -1.666406 -3.503437 -17.469648 -5.607652 7.894898 -3.698333 -7.113819 -3.987305 -0.739033 3.579700 -11.679674 -6.775232 16.184328 -13.094320 2.601500 5.446393 -12.882706 -13.783174 -2.679197 1.794453 4.310938 -11.119481 -9.988407 -0.223644 -6.542084 -3.784206 4.113443 -12.181219 -8.348794 11.204900 3.237791 -2.161027 1.628986 -6.042149 -2.976395 4.574398 1.238650 -5.762135 -7.162927 2.446236 -0.821091 2.116825 5.252055 10.766854 -18.581593 -4.251662 -16.971036 6.362643 -12.395330 8.873477 10.378800 0.404464 16.351886 0.492317 -2.683310 -1.403579 -1.300243 6.817298 2.436237 12.614832 2.276077 8.810435 10.719046 -7.731551 -15.325296 -10.476867 -3.906288 4.497150 -1.734927 -17.003095 6.370345 -10.708725 -1.192328 0.134420 0.083338 -3.283057 12.139176 -10.539095 7.622410 5.429349 -3.642367 8.072523 10.310527 1.225327 2.211910 -1.553726 5.891728 3.005740 9.358973 -0.132765 10.591118 -5.212335 -12.536967 -2.887577 2.979266 5.512723 -9.237141 -11.695794 -14.138185 -5.487726 8.257089 -6.992556 2.477402 21.735120 -4.923474 -9.442368 6.256616 2.519725 4.727727 4.192835 3.959772 22.472360 -10.919209 2.791808 0.772849 2.239285 9.306747 22.114231 -5.581087 -12.219938 10.751259 -4.338308 -9.331333 12.167086 -1.818633 -0.208830 7.445809 -0.109609 -1.201378 -10.862928 15.154510 -6.269069 18.182080 -8.501139 15.957797 -7.202322 -3.968763 3.097708 -7.809414 -5.493030 -13.743404 3.635458 -2.076620 9.400135 -8.520516 -8.623169 -7.637009 -5.351297 -1.241734 15.499559 -12.105712 -2.277136 -0.675285 -3.903048 8.892767 3.421880 -5.466727 -2.490369 -13.741869 4.793999 6.301922 4.524228 -18.550005 -6.296985 -2.074928 -5.132855 -1.052454 1.253090 8.770703 -4.804105 1.513341 7.027475 -1.126816 -3.256800 -2.521152 -13.258948 5.505638 2.292456 3.469416 0.661850 17.458646 13.247593 7.167199 -1.421716 4.814713 -1.362497 -5.354881 -13.089299 5.399035 1.475233 1.746047 6.148134 8.748841 2.868077 5.740038 11.562663 -0.061087 -0.249403 9.778269 4.695853 15.546666 -8.056667 -6.609337 5.651003 -1.791721 9.606031 11.277491 6.591006 -12.346447 6.504032 -5.997424 -9.590435 -7.409629 -2.652459 -0.752870 -3.513835 19.026155 10.516544 -2.569003 -3.731091 20.614067 -0.870519 -26.176294 9.618843 5.804554 6.093630 8.666441 -6.084258 7.590575 13.429218 5.899174 1.326573 6.624096 7.295688 -13.612392 0.552739 1.509182 6.131119 8.406998 -1.782037 -35.410014 -2.939238 5.098042 16.279875 0.077324 20.192937 -7.834082 5.870101 1.970342 2.665925 2.822537 -1.364463 6.704607 -4.719099 1.762205 -18.716385 5.803439 +9.807505 -6.516256 22.682093 -40.339367 -37.517723 -0.594219 10.628749 -22.281212 -10.945650 19.805336 14.365927 -18.903110 -20.650633 44.486331 -5.543757 -33.082898 -0.848304 -17.692177 -5.906965 -4.170018 -7.939415 25.476129 -10.642889 -10.049173 15.658201 -9.008467 -4.238385 29.837166 10.649128 -12.907093 -2.360850 -20.868037 -0.671380 54.104324 10.761556 1.034753 -6.792840 83.269240 -23.227824 45.526810 -47.743986 -45.633674 56.375142 -12.358937 -4.891593 -45.984454 -27.896324 32.089579 -23.813686 -15.285150 14.541416 2.984894 8.775916 -27.286211 -0.650779 27.872208 -63.024202 26.308745 24.622837 -25.666711 -23.784679 -12.214407 -12.194427 2.225911 -25.991761 -31.629836 3.996038 4.017250 -17.328702 -0.835157 -13.463088 -32.166026 61.341318 16.263487 -11.432036 16.945989 9.026676 -27.952955 34.993589 -21.028395 -49.992245 -21.521866 -0.461162 -20.939174 40.875998 3.766976 32.308395 -74.674044 17.450134 -75.395182 24.087434 -42.327524 23.314152 55.777887 -34.805942 39.195185 22.848871 18.510138 21.012783 1.933813 43.183860 18.756090 16.522267 28.869609 32.555967 25.484620 -25.020604 -32.428732 -36.880757 -38.362343 8.638964 -20.787590 -69.435399 23.255483 -7.535336 6.087783 -3.257158 6.346063 -4.293961 40.136222 -53.750814 9.867061 23.204571 -13.107124 12.810622 36.436975 -9.500748 -3.714391 -22.553517 40.609672 -22.612727 31.140500 -2.294119 39.047535 -10.109206 -35.246866 -35.295914 5.858100 12.732856 -34.217085 -47.045046 -54.829100 -9.527888 18.355063 -26.819076 42.216145 87.375693 -36.969816 -46.144624 53.212246 19.093473 9.569410 30.038185 14.757424 51.828147 -15.008735 -21.223247 -20.698525 -22.606543 12.802158 18.580666 7.153604 -25.934366 37.348888 -6.406321 -37.486384 62.397099 -8.153192 -24.368001 -1.566724 8.040047 -30.734665 -35.471085 50.762072 -1.548191 48.306324 -5.651397 67.677385 -14.882880 -29.597974 15.956291 -33.118488 -6.423940 -39.192061 -3.769124 4.092826 21.180760 -37.732861 -31.020384 -17.876622 -18.303177 -24.650297 31.671523 -6.091605 7.689168 14.996389 10.336354 33.558654 47.065113 -4.231597 -0.536752 -46.497970 23.594916 22.427943 0.047233 -55.369359 -8.183925 -8.859672 -12.357854 14.213656 2.229274 28.918381 -21.619142 -7.707747 9.694018 -4.870789 3.670018 9.542600 -52.610428 9.707543 3.136050 25.401190 21.441664 45.368956 51.907480 43.017016 18.880525 23.797903 -7.084179 0.332467 -15.601014 1.715754 6.209026 18.112170 27.648739 41.886065 38.133121 22.550659 43.933781 31.804045 4.978485 48.615332 7.397274 71.978518 -13.700247 -19.007475 6.512079 11.268585 46.803601 62.431445 -6.464105 -4.083592 30.561054 5.672624 -21.142981 -35.757999 6.975015 -10.761401 -4.672274 33.871946 24.008249 -5.481514 -9.049063 61.745754 -11.222331 -76.772842 37.384429 17.164777 34.870909 18.266360 4.578543 13.110415 27.797409 -23.065118 30.794807 36.900593 30.877380 -48.571334 -8.128444 6.864019 29.447105 24.316080 36.329372 -66.387968 6.570659 17.917842 43.181072 0.285970 34.553455 -31.297444 -20.303911 18.841445 -11.527927 -4.156877 9.297959 12.537915 -22.937075 7.039129 -38.748082 -22.658606 +4.724162 -1.099420 5.331333 -8.339535 -4.964479 -0.560996 6.984912 -7.785822 -4.639557 11.906538 2.117098 -6.451723 -6.255186 8.847004 -1.251050 -6.524620 1.549429 -2.432178 -2.140720 -2.057287 -4.275559 4.090986 -3.291129 -7.151649 4.393855 -1.980429 3.381164 9.582547 -0.187974 2.738055 0.178769 -5.928639 2.307287 16.604610 5.201476 0.081088 -4.249758 20.167304 -11.812314 15.386404 -13.345052 -13.915514 19.380499 -2.381339 -0.455537 -11.795745 -3.732846 9.813338 -6.691122 -7.456621 0.362339 -0.699100 4.016894 -10.766863 -4.108659 10.985520 -15.841833 4.862018 6.934943 -8.769891 -11.875752 -4.532320 0.772304 2.636341 -11.339946 -9.971743 0.251654 -2.250964 -4.581124 1.992770 -10.088063 -9.721896 10.648528 3.627324 -3.831378 2.666799 -2.809182 -6.367081 7.383891 -1.538330 -10.434644 -7.374367 -0.036546 -6.370095 8.399965 4.360979 9.900686 -21.243721 3.221399 -20.424968 6.566043 -10.889775 8.680067 14.981050 -6.973550 12.142348 2.992490 6.917618 1.314685 -2.403869 9.184006 5.084397 5.942050 4.472846 10.433504 10.522809 -9.773769 -14.169162 -9.887675 -7.032015 3.812972 -5.928539 -16.583778 5.938647 -7.976066 0.904307 -0.627668 0.248377 -5.110771 11.632887 -18.761137 2.118501 4.523103 -3.711086 7.791031 8.448761 -0.823264 1.499032 -2.900521 9.387409 -1.123825 5.785225 -1.365503 11.685160 -5.570474 -7.399977 -6.133558 3.169565 6.179087 -9.265709 -14.451975 -19.128633 -4.980647 6.684211 -7.072652 10.010264 21.515780 -6.841450 -11.552073 10.955004 -1.573736 2.853900 7.804579 4.264052 15.947348 -8.618902 -0.503662 -2.221922 -1.621554 5.837824 13.133896 -2.985299 -10.788878 11.812867 -4.537413 -5.054091 12.093133 -0.361551 -3.371195 -3.595120 1.192260 -6.046032 -8.215775 15.548895 -10.977710 12.327321 -7.015853 18.082290 -6.679458 -5.768780 3.868366 -15.493589 -3.767436 -12.432423 -0.885561 -1.420288 8.856535 -12.322866 -9.651364 -4.879879 -2.323136 -4.000951 13.846685 -8.369581 -1.728253 1.018547 0.102018 12.782728 7.337556 -4.953154 -1.332036 -10.888291 5.102978 7.670820 1.674062 -16.212491 -4.440424 -3.371843 -5.423921 1.890496 1.386419 8.497955 -8.461829 -0.671003 6.577469 -0.695453 -1.106076 0.518850 -16.206102 5.351289 1.680304 4.198074 6.415671 16.667637 11.467687 9.906696 1.550529 5.047687 -1.649565 -3.637922 -11.526242 3.619300 2.241747 4.284318 7.298560 9.896933 7.521769 5.640030 9.200792 5.309136 -0.300607 12.835905 3.934164 15.376409 -4.459539 -3.325611 5.151291 0.534009 11.019612 13.145419 -0.756992 -6.839681 8.045506 -3.750561 -8.110513 -5.955264 -0.780116 -2.726309 -1.707460 9.233107 7.931536 -2.854772 -3.029156 21.119682 -3.226505 -23.417828 9.802506 6.005749 8.841353 8.274147 -3.192160 6.783412 8.292262 -0.076387 7.908429 8.558066 8.136305 -13.500044 1.648294 1.547845 7.392075 11.454058 3.096149 -24.473370 -0.461254 3.084597 15.145803 1.966209 14.165042 -8.124597 1.558439 2.112942 -1.921543 2.210530 -1.263124 7.559770 -2.232853 1.628154 -16.013143 -0.496308 +8.016177 1.279073 6.153943 -11.561157 -5.443489 -4.608339 12.527041 -9.715168 -8.176191 20.311025 4.346761 -13.745975 -10.995563 11.150365 -0.751912 -7.113757 4.799007 -2.012197 -3.253289 -4.290599 -5.862356 3.036674 -1.871947 -13.722259 5.793267 -1.050684 2.146622 13.154979 2.699703 3.011973 1.669134 -6.014073 9.072637 22.235097 4.327241 -5.874357 -9.733623 25.092983 -18.320097 18.244861 -17.394282 -16.026615 30.665207 -3.462624 1.047577 -21.238913 -6.281209 16.027387 -3.220988 -15.395936 -5.109806 1.469907 5.915986 -20.634918 -12.797815 20.014521 -21.153829 6.564145 11.870221 -14.656085 -17.581517 -1.987008 3.291800 5.265553 -14.799363 -15.406877 -2.024628 -7.846771 -6.744380 2.601358 -17.783357 -12.190511 12.217612 3.410244 -3.064800 5.319283 -6.962680 -7.621515 10.651081 -1.185369 -10.934018 -10.229572 0.092238 -4.874266 8.352093 5.737330 13.087121 -28.206479 1.633022 -27.063733 10.015671 -16.928840 11.510096 20.033451 -5.500054 17.607814 1.853596 3.228208 1.418668 -0.509249 13.514965 6.159186 12.393733 4.552827 13.689858 16.848956 -13.553314 -20.829217 -12.211235 -8.719579 6.182588 -4.201355 -19.566925 11.460379 -13.880805 -3.103643 3.198821 -2.723303 -5.608510 18.270616 -20.426821 1.339378 8.934437 -5.560227 9.260530 14.552198 0.217480 0.285250 -4.770516 11.626262 3.609647 8.720446 4.626195 17.134881 -7.062584 -17.709870 -3.080902 5.304790 6.778374 -14.592573 -18.491142 -26.406583 -3.807944 5.612569 -11.187347 8.667772 28.956152 -6.532263 -13.437678 12.818267 0.153251 2.525412 9.504892 5.143480 30.434174 -15.232259 0.228234 1.263449 -1.078756 12.913765 24.392638 -7.331260 -16.922797 15.608476 -6.617577 -10.809716 12.678579 0.046848 -0.481810 4.809953 1.838958 -5.683201 -13.739483 18.874516 -11.988843 18.384206 -9.662128 25.567522 -5.919308 -7.622945 8.188350 -13.265163 -6.561663 -14.318940 1.320928 -0.382037 11.922450 -13.736704 -13.214282 -7.101005 -3.679111 -4.512263 23.579776 -17.065582 -1.186551 1.889196 -4.074590 12.723225 4.124166 -11.065414 -0.079915 -17.096101 6.008090 9.573811 4.527628 -26.002943 -7.874129 -6.529018 -6.220243 2.466708 0.352232 14.969715 -9.260259 -1.563731 13.906251 -2.347429 -5.143222 -4.634717 -15.773886 7.887507 1.437157 7.493058 5.815957 28.430206 14.193895 12.622530 -2.996966 8.694703 -3.665557 -4.734223 -20.392698 5.255261 -2.212083 4.416824 10.949029 9.622811 6.845670 10.201995 15.952171 0.404349 -3.406389 18.626028 3.601269 16.551770 -7.377177 -5.529499 10.396247 -2.804601 16.590977 17.126584 3.500129 -19.487705 10.740014 -9.902342 -13.741535 -6.775909 -3.170649 -0.845807 -5.093348 16.430572 14.774922 -2.380591 -4.106453 27.620393 -3.532734 -34.894582 16.642648 8.310703 11.472208 13.831131 -6.178431 13.272546 12.192118 7.145007 3.430698 12.044808 12.192623 -21.564860 1.298887 3.584721 12.352131 13.024228 1.848182 -44.425508 -3.272719 5.373081 19.195856 -0.163371 21.944680 -13.430112 3.953595 3.773743 3.871983 3.450528 -6.201544 9.437380 -7.349389 0.268962 -20.201286 8.693608 +7.047499 0.785808 3.045979 -6.103696 -0.098552 -2.627440 14.316627 -7.817453 -6.135908 16.921230 1.898260 -7.331785 -5.498029 6.101130 0.340458 -2.739267 4.878421 -0.118463 -3.881311 -2.603237 -5.900084 1.339772 -2.101087 -11.949446 4.568577 -1.979637 4.641037 10.460094 -6.710953 5.460532 1.509053 -4.826312 5.790795 15.751221 4.490367 -2.059853 -8.162889 17.061030 -18.756664 17.223977 -12.176460 -12.275486 23.427480 -2.202655 1.092080 -13.194491 -3.749346 9.549518 4.108326 -12.621657 -5.103257 -1.191229 4.853227 -14.661589 -8.237206 15.657168 -10.600194 -0.899257 7.627386 -13.668975 -17.148028 -3.011848 3.813580 4.078053 -15.997398 -11.552699 -0.342357 -5.413655 -1.865257 3.602339 -15.472860 -11.423324 6.129904 2.915283 -1.333065 1.968969 -8.057703 -5.593220 5.658734 4.636048 -6.161075 -8.125487 1.408897 -4.093872 2.304314 6.102952 13.452000 -20.639788 0.465923 -19.274847 6.825706 -10.892178 9.874826 13.108617 1.005340 13.689936 0.125361 6.496320 -3.313812 -0.970748 7.017275 4.435111 8.655259 0.812418 10.945153 13.589970 -11.577575 -19.056096 -9.263561 -2.996314 6.885607 -2.988254 -12.539224 7.674246 -12.161107 -2.955651 0.532274 -0.595934 -4.435105 16.044483 -16.159864 4.230126 6.698659 -4.133304 8.601563 8.438270 1.357981 1.330323 -2.316912 5.288390 4.303664 5.714781 -0.206629 12.331416 -9.319880 -7.920673 1.177286 3.325466 6.074817 -11.101716 -13.106704 -18.830654 -4.644112 11.004495 -8.209593 6.381893 20.066461 -5.708460 -9.006312 5.557112 -0.005774 0.616088 3.146142 4.449939 21.836164 -13.442645 4.470542 1.812590 3.309137 10.358172 23.301560 -7.300305 -14.218622 12.016239 -5.794964 -7.939647 15.860506 -0.099625 1.407597 5.480235 1.274553 -0.330754 -8.106250 14.985756 -14.018042 13.881945 -10.563865 17.072741 -7.834160 -1.147762 3.659219 -12.777331 -6.421396 -14.221597 2.920861 -2.445857 11.448729 -8.493959 -9.462012 -4.397888 -5.724400 -0.366692 19.085099 -15.687124 -3.231141 -1.833776 -5.748282 11.267740 1.277327 -7.432683 -3.132635 -10.786633 4.759749 6.664771 2.730920 -18.240453 -7.575789 -3.187611 -5.843174 -3.475034 1.673084 10.193336 -8.411841 1.087165 10.805191 -0.844036 -6.156700 -4.411467 -11.868850 5.951090 2.740916 4.371875 2.538875 20.832945 10.120874 8.742905 -3.003441 3.258558 -2.626338 -6.541907 -20.270705 7.127159 -0.977821 3.966763 7.101161 8.363189 2.576145 6.257332 9.751178 -3.098802 2.127935 11.491227 4.334108 11.775122 -5.684153 -3.968545 8.765827 -3.199961 10.557131 9.343820 3.540972 -14.991354 6.464803 -9.104082 -13.524081 -0.583800 -2.528896 -0.482271 -4.532919 12.488353 12.359880 -2.480646 -4.565114 23.445574 -2.177524 -27.238771 8.941454 6.282831 8.299977 13.800115 -6.470864 13.124953 9.502798 11.371321 3.291938 7.184753 8.555502 -15.414129 2.086003 2.044772 5.751113 12.521594 -3.540646 -35.148313 -1.113118 2.845127 16.779372 -1.205148 19.017300 -8.710524 11.437853 0.347465 2.605102 4.751844 -3.664938 9.232365 -3.409187 0.972239 -21.489211 9.867374 +9.279071 0.662285 4.570666 -7.785751 -1.199872 -2.062066 17.950807 -12.841166 -9.062303 25.186284 3.479005 -10.162872 -6.471208 7.674006 0.606220 -2.360767 6.541586 2.132860 -5.093853 -3.702919 -8.834761 1.410852 -4.237074 -16.972888 5.580664 -2.567900 8.125529 13.472172 -9.670188 9.660141 1.483161 -7.943009 7.758341 23.206101 8.214783 -1.962142 -11.985852 23.907829 -23.792616 23.102043 -15.881947 -19.070069 32.559840 -3.339074 3.509534 -13.632282 -2.586616 14.643342 6.412410 -19.917641 -7.138275 -2.763841 8.038552 -20.404352 -12.870019 18.375036 -12.378447 -2.579699 11.543816 -20.120316 -26.006179 -5.284998 6.851051 7.364199 -24.233947 -15.647220 -0.060849 -6.434369 -1.705239 3.721381 -22.138561 -17.782626 7.504274 3.458476 -2.735350 1.798550 -11.671164 -7.630747 8.250583 9.800153 -10.457267 -11.258787 0.646950 -8.745653 3.488602 9.476039 20.265132 -29.982390 2.712691 -28.711200 9.863018 -12.746170 14.747067 18.989042 -0.814536 18.211616 1.903266 14.143817 -4.046467 -1.693818 10.362158 5.364216 10.459657 1.801846 16.477072 19.149867 -16.931135 -26.660246 -13.912119 -6.160803 11.134583 -4.860864 -14.583274 11.075657 -17.701356 -4.122592 -1.447544 -0.025137 -7.169513 21.765192 -25.984550 3.917729 9.116455 -5.800288 14.045223 10.213354 1.185186 4.080387 -1.890682 7.949354 3.949813 5.308636 -0.229503 18.395845 -12.302072 -6.803092 0.593232 6.876267 10.528199 -16.100068 -19.371145 -28.325321 -7.129572 16.025383 -11.647430 8.739642 28.628612 -8.976862 -11.429400 8.293883 -2.831630 -0.291085 6.236612 6.570795 30.052623 -19.533732 6.619727 2.917533 3.827794 13.914516 31.232787 -10.299181 -19.824725 17.800662 -8.757015 -7.308273 22.593054 0.117711 0.425868 3.688640 3.284531 -1.246144 -10.912230 20.468088 -21.235789 17.351039 -13.777751 24.707894 -11.711470 -0.293304 5.157377 -17.874541 -9.982988 -19.592348 4.035184 -4.460427 18.057455 -12.777942 -13.533337 -4.847845 -7.283581 -0.874107 26.122297 -20.427342 -4.409603 -1.066092 -8.059623 13.932401 2.325493 -9.449143 -6.089690 -13.979470 5.662903 9.749385 3.966719 -20.997353 -12.783054 -7.359110 -8.615011 -5.272231 2.671902 15.576706 -12.287018 1.738958 14.510385 -0.611888 -7.430399 -4.717092 -18.209840 9.445179 3.863712 6.183965 4.457724 29.954094 13.630024 14.765278 -2.396475 4.816198 -3.619547 -8.371533 -28.995288 9.931331 -0.582864 7.542943 10.606358 11.165284 5.561228 10.705532 12.917618 -5.892847 4.225286 18.085131 4.848706 17.886239 -8.950205 -3.498413 11.945910 -3.128222 15.484124 13.151010 5.206281 -21.022873 8.261518 -14.524299 -19.943604 0.456585 -2.537847 -0.476020 -4.125346 13.279593 18.575518 -1.572296 -8.069277 33.365036 -3.886046 -38.440282 13.203991 8.038827 13.317478 22.016838 -9.666506 19.617361 12.405117 16.556599 7.844877 11.977183 12.445542 -22.094685 4.329140 2.706132 9.808946 17.075610 -4.942464 -47.094727 1.297810 2.299117 21.702815 -1.291942 24.275040 -14.428524 16.750916 0.689381 0.948648 7.419025 -4.691306 15.442765 -1.533336 0.708303 -32.626017 13.259739 +3.612845 0.372206 4.475110 -7.239526 -2.340459 -1.872384 9.052780 -6.279757 -2.994793 11.362331 2.174405 -5.688646 -2.743356 6.615708 -0.599390 -3.522089 2.947633 -3.018462 -2.761847 -1.492103 -1.940156 2.940734 -1.696062 -7.390589 3.594227 -1.508739 3.491377 7.691956 -3.604893 0.688041 0.681515 -4.018541 4.106757 12.642299 2.741337 -0.145508 -5.430806 13.111170 -10.619636 12.509546 -11.561442 -9.541363 15.934447 -2.147336 0.908283 -13.399409 -4.361302 7.262064 1.480437 -8.431629 -2.344018 -0.431196 3.465826 -10.779952 -4.537903 9.927841 -9.573351 1.207104 6.161401 -9.046677 -10.406377 -2.512749 2.084055 2.377963 -9.791018 -8.460692 0.118338 -3.312652 -3.145335 3.257814 -8.461996 -8.448029 7.590118 2.399966 -1.960809 2.723096 -3.981652 -7.096736 5.877556 -0.195083 -5.573785 -6.220386 1.252631 -4.072348 3.639868 1.913396 8.008049 -15.949635 0.458620 -14.150954 5.656023 -8.566212 6.911260 9.909330 -2.647886 9.589705 0.730908 4.380024 -0.197004 -0.082175 6.549874 4.684451 7.520186 1.526278 8.833484 8.517718 -7.671055 -12.702333 -6.735089 -5.038994 4.433645 -3.505683 -11.715873 5.098524 -6.667640 -2.322491 0.232616 -1.913792 -2.059569 12.197513 -13.491198 1.574575 5.970326 -3.043692 3.938557 6.989593 0.161543 0.318141 -2.713264 5.642496 1.116687 5.027220 0.005361 9.365340 -7.174412 -7.646269 -0.984710 1.442823 3.243299 -7.863255 -10.522182 -13.980077 -3.769808 5.468595 -5.813549 4.924787 14.886900 -4.344485 -10.607804 6.419169 3.506702 -1.098926 2.970142 3.478221 14.239230 -8.812774 1.394401 -1.571771 0.298620 7.233503 14.744908 -4.128545 -9.977574 8.577822 -5.656614 -12.040022 12.037837 0.351367 0.094531 2.671803 0.776337 -3.957797 -6.419400 10.918080 -6.759261 12.109836 -8.496730 13.881892 -6.197581 -3.295946 2.005203 -8.960931 -3.657040 -9.557386 0.279069 -0.007560 8.592092 -7.037114 -7.517569 -3.044725 -4.542507 -1.070541 12.596482 -12.629090 -1.521333 -0.919230 -2.501377 8.559349 3.049202 -5.564038 -0.718971 -7.481349 4.320816 6.196878 3.804787 -14.095262 -4.610291 -3.525295 -4.428134 -2.012985 0.846505 7.907635 -5.689293 -0.381026 7.101361 -1.821242 -4.015812 -3.003724 -10.799680 3.879074 0.390924 3.948872 1.817791 14.113825 8.269335 6.437873 -1.158866 1.809011 -1.806990 -5.000106 -12.478490 3.656789 0.602369 1.026978 5.503133 8.096918 4.618821 4.460935 7.828149 1.698469 0.724552 9.875724 2.099361 9.405670 -4.176106 -2.050224 5.282801 -0.643129 8.630128 9.370760 2.988267 -9.087026 5.431293 -3.260262 -8.332550 -3.442836 -2.278739 -0.957834 -2.309973 8.717669 7.098081 -3.210094 -2.288401 16.397046 -1.054648 -18.250771 7.337741 4.024932 6.601584 7.115690 -3.969293 7.525644 7.607737 3.797419 3.705835 4.778219 6.620215 -11.141585 -1.849124 1.192173 5.178393 9.654964 1.088701 -22.404724 0.112703 2.120253 12.539551 -0.714764 13.828728 -6.588095 5.338813 1.240624 1.437392 1.824364 -1.409166 5.691820 -3.476689 -0.856766 -14.724904 4.046620 +1.661350 0.297140 2.630095 -3.757628 -1.025801 -1.401426 6.149791 -3.127825 -2.001500 5.306912 1.089013 -3.119689 -3.866526 3.526218 -0.634572 -1.948915 1.711339 -0.749522 -1.893086 -1.324754 -1.708883 1.338348 -0.797323 -4.250838 2.457145 -0.778416 2.053437 5.383047 -0.786821 0.752549 0.730622 -2.104484 2.349128 7.096478 1.335611 0.265731 -3.156435 8.384370 -7.004746 7.245147 -7.005665 -5.724882 10.478937 -1.232557 -0.611293 -8.962272 -2.557431 4.371972 -1.229671 -4.618947 -1.664047 -0.162605 1.825162 -6.548084 -2.827217 7.047893 -6.689655 0.990110 3.396723 -5.592914 -6.817631 -1.338527 1.364567 0.933422 -6.040922 -4.843953 -0.228543 -2.792944 -2.536225 1.865186 -5.170036 -4.313532 4.372129 0.638223 -1.061015 1.755074 -2.507543 -3.136763 3.015198 0.668809 -2.811501 -3.660903 1.153315 -1.987305 2.245352 1.419627 4.662628 -9.675451 -0.852981 -8.349674 3.040719 -5.697734 4.020918 5.700144 -1.732591 6.499967 0.083889 1.642163 -0.990307 -0.167047 3.564136 2.493284 4.732846 0.771554 5.414149 4.865616 -4.420962 -8.164880 -4.478552 -2.562407 2.352132 -2.148844 -8.142807 2.598904 -4.706548 -1.061493 0.350388 -0.555400 -1.403181 6.699264 -7.056755 3.278939 3.246564 -1.700890 2.629589 4.923274 0.360917 -0.037820 -1.037751 3.146006 0.815283 3.520768 -0.178975 5.233326 -2.634110 -5.165823 -0.163117 0.307762 1.725443 -3.852821 -5.934475 -8.291393 -2.364012 3.704904 -3.107270 1.536824 9.430819 -2.264817 -5.696122 3.434811 0.744438 1.131335 1.726552 2.046805 9.404745 -5.104228 0.936372 -0.464456 0.613828 4.569933 9.327778 -2.655286 -6.107624 4.885396 -2.749735 -6.358868 7.034313 -0.323689 0.473105 1.976024 0.302186 -2.195092 -4.887793 7.105581 -4.612405 7.568494 -5.025733 7.753914 -3.689920 -2.279114 1.392678 -5.607561 -1.777983 -5.990857 0.324390 -0.502338 4.718772 -4.382468 -4.398633 -2.838272 -2.112098 -0.458529 8.120001 -7.150612 -1.159212 -0.950039 -1.558814 4.231033 1.052487 -3.814458 -0.498877 -5.310270 2.169481 3.762419 2.462794 -9.309603 -2.127000 -1.583920 -2.711208 -0.664333 0.662232 4.189125 -2.583244 0.035518 4.456001 -1.131113 -2.520322 -1.978850 -7.222406 1.979093 0.327881 1.905904 1.513127 8.783575 5.753404 3.425272 -1.429156 2.038548 -0.756368 -3.232650 -7.719464 1.977921 -0.242431 1.333011 3.074914 4.225599 2.500911 2.431255 4.624483 0.661842 0.027222 5.747509 2.793563 5.866032 -2.580397 -2.412099 3.448676 -0.596521 4.767556 4.911775 2.135132 -5.165883 3.366645 -1.626510 -4.761409 -3.004000 -1.605211 -0.633035 -1.835422 7.259492 4.678207 -1.862968 -1.020047 10.309221 -1.016024 -11.944995 4.242249 2.237472 3.677122 4.232302 -2.174473 3.820537 5.009743 2.958544 1.546102 2.552531 3.636324 -6.705168 -0.543265 0.831410 3.159484 5.759682 -0.336543 -15.274836 -0.622880 0.760425 7.981801 -0.132941 8.211806 -3.261753 3.436678 0.235155 0.510578 1.211967 -1.212052 3.383273 -1.710357 -0.939023 -9.534601 2.636220 +4.449069 -0.276999 3.999837 -6.053020 -3.307298 -1.301311 7.903485 -7.402565 -4.533252 13.412713 1.898444 -6.104391 -3.879294 7.479203 -0.908524 -3.278189 1.172521 -0.998660 -2.892589 -1.717524 -3.737886 3.324055 -2.520736 -7.837773 3.845380 -1.349466 3.758223 8.362428 -3.403295 3.540103 1.565162 -5.078982 3.436477 13.726976 4.062077 0.424676 -5.549152 16.046472 -14.239877 14.358019 -11.960239 -13.052423 19.181423 -2.213918 0.381730 -10.272731 -3.027577 8.879213 -0.507804 -9.794925 -2.544805 -0.327242 3.699969 -11.150149 -5.356068 9.719393 -11.736148 1.438220 6.454392 -11.102566 -14.062070 -3.034641 2.460904 3.553071 -13.068911 -9.379581 -0.627529 -2.954816 -2.629839 1.865651 -9.494224 -9.136053 8.610985 1.608190 -2.440070 2.232781 -4.667338 -4.925328 6.516315 1.360877 -7.379195 -6.647983 0.471671 -6.327012 4.028620 4.978574 10.882350 -18.365220 3.440809 -16.821935 6.273571 -8.592796 7.357629 11.774799 -3.891730 11.469823 1.912009 8.570602 0.784374 -0.986645 6.915470 4.259576 7.072391 3.443112 9.164440 10.722109 -9.669917 -14.274926 -9.885454 -6.084121 5.952960 -4.949843 -13.883947 5.801546 -7.206985 -0.673691 -0.299498 -0.795924 -3.281269 13.325723 -17.430442 4.234513 5.252865 -2.873198 5.761463 6.779095 -0.065223 1.046679 -1.945559 6.037836 0.037779 4.719581 0.672409 10.618304 -7.623446 -4.707997 -1.650737 3.457687 4.462434 -8.782451 -10.960181 -17.764438 -3.753202 8.759237 -6.780480 7.194374 18.777235 -6.075446 -9.950555 7.337024 0.289409 -0.618566 4.314180 3.705074 16.397050 -8.704671 0.177089 -0.774846 -0.502972 7.802733 16.738422 -3.625904 -10.947898 10.541044 -5.018662 -8.148755 14.161764 0.062272 -1.354095 -0.860103 1.989578 -3.946109 -6.226326 12.739900 -11.455370 11.848268 -8.643581 14.980616 -6.310785 -2.180027 2.984901 -14.544415 -5.165166 -12.219929 0.190859 -1.873061 9.295058 -9.446049 -7.415596 -4.253985 -4.450041 -2.610207 14.324158 -12.362788 -1.353523 0.196806 -2.441434 10.763795 3.842159 -5.157341 -2.609391 -9.432533 4.109792 6.888389 2.348310 -14.972849 -6.149087 -4.125236 -4.793324 -0.715758 1.001223 8.676044 -7.461629 1.054661 7.020920 -0.887155 -3.455290 -1.883393 -13.032125 4.551956 1.202122 5.755085 4.018545 16.248531 9.370741 8.980773 -0.156277 5.117969 -2.118911 -4.896599 -13.538284 4.880658 1.039085 3.010714 6.845168 9.314768 5.514197 6.098558 8.645091 1.755219 1.006450 11.837355 2.306677 12.877447 -5.781275 -2.968759 5.469263 1.145794 9.481891 9.924512 1.167821 -8.700176 5.804238 -5.844509 -9.624230 -1.346721 -1.055872 -1.434571 -1.773677 9.066141 9.349763 -1.621400 -3.042937 18.927805 -2.297830 -22.381219 8.315269 4.659765 8.130723 9.613884 -4.136904 8.629291 7.919961 5.259379 5.472600 7.700397 6.936084 -13.370630 1.058532 1.822413 6.848790 11.693941 1.365830 -26.178851 0.951739 1.872509 13.249038 -1.538242 14.490166 -8.281732 5.420806 1.665130 0.108701 2.934705 -1.454882 6.912812 -1.264912 0.919681 -17.776154 3.010748 +19.797259 -16.383917 36.134380 -65.250953 -54.551432 -2.093625 17.500582 -31.844029 -19.129935 33.765031 16.148305 -29.895374 -38.101360 63.246333 -8.096594 -54.778684 3.366421 -27.403594 -4.920068 -6.130135 -14.129335 37.928819 -11.722450 -20.591477 27.131822 -16.354951 -6.025741 52.464024 28.688830 -16.856904 1.423243 -33.734471 3.221116 88.749109 18.395149 -2.593976 -12.515545 135.329024 -28.269681 74.146959 -64.751958 -70.899316 97.193601 -19.190464 -10.677065 -69.118302 -38.870002 54.852824 -42.088059 -31.812477 20.141752 6.659760 19.149805 -48.866041 -13.520742 48.034142 -96.953992 37.147846 36.503489 -39.045785 -38.688928 -17.734438 -21.821521 9.101037 -43.392215 -53.770555 4.040428 -0.551531 -35.554635 -4.484676 -23.949275 -41.105136 102.428776 26.639358 -18.850226 26.890856 15.938651 -40.626847 52.392952 -27.347802 -80.181454 -36.081631 -9.713247 -36.057389 69.707948 1.244642 53.262577 -119.413089 30.908065 -120.001392 39.035054 -67.038345 37.851671 91.848077 -57.059454 68.895094 32.418889 35.191551 25.879836 -4.018824 73.106617 32.020174 23.779312 48.108948 54.890195 39.205979 -40.021919 -55.827036 -59.563036 -54.850648 14.874949 -37.270270 -115.797769 39.509708 -13.840442 13.007410 -0.610070 10.842238 -16.669311 62.698706 -88.992375 15.928173 32.708026 -21.364361 19.462687 55.186835 -13.620410 -8.623168 -27.639605 68.982723 -30.490373 45.841501 4.829598 65.385421 -12.622143 -46.004842 -45.995589 11.249114 23.184570 -51.629954 -77.499121 -88.501235 -17.446761 26.595661 -44.090244 67.184641 140.345681 -50.795208 -66.298020 82.462441 17.510607 18.172945 45.289581 23.378051 80.515180 -24.538927 -40.422282 -29.368710 -36.146146 26.511378 39.668450 9.257782 -41.106002 64.401569 -15.481206 -45.180969 85.706375 -12.941048 -35.432062 -3.466967 5.721092 -50.134240 -60.888838 81.023924 -11.990175 74.588649 -8.276904 110.876121 -12.138674 -49.113206 25.020142 -48.461757 -12.184333 -68.159827 -1.114846 4.272725 28.144023 -63.990146 -52.338312 -27.793066 -21.379657 -39.067518 55.807588 -11.203731 12.625819 22.892612 16.449548 60.908177 67.853188 -11.314062 -3.612226 -74.933635 36.196977 33.885629 -1.288392 -81.206209 -17.767208 -9.875105 -21.289655 26.825103 1.097151 45.111860 -38.309733 -11.538728 17.174856 -3.769988 0.555916 15.835264 -94.457111 16.550930 19.203371 38.289628 38.358571 78.650803 82.445868 64.607437 22.915002 43.475291 -12.103410 5.467770 -39.237126 0.627556 7.590967 30.417247 43.973127 66.956046 59.703274 38.805833 73.004374 53.720188 5.701584 76.200038 10.078887 110.896714 -17.713361 -37.311501 15.647133 17.338361 74.691864 96.465530 -7.080015 -10.621061 52.695046 4.456841 -32.578041 -57.452100 14.482441 -16.604003 3.020765 54.705179 38.614137 -4.592842 -12.160554 95.039100 -21.621291 -129.612587 60.319784 31.242391 56.403105 35.620474 4.984091 29.210167 40.740878 -33.702450 47.753834 59.312999 44.119579 -78.489493 -0.296086 13.072583 45.397737 33.693129 55.152074 -107.537351 0.708831 21.391382 70.776645 5.485886 57.557489 -49.297009 -31.472737 34.045986 -15.675876 -3.041520 8.620727 19.725861 -37.750923 10.891683 -60.739292 -28.317526 +6.276506 0.331917 6.720667 -9.328858 -4.690102 -3.077224 14.640862 -11.493080 -6.498233 20.020557 4.331590 -10.782353 -6.605980 11.532355 -0.960851 -5.455767 4.211643 -0.888801 -4.596475 -3.444310 -5.563393 4.699678 -3.183430 -11.830758 6.611546 -1.962264 6.234844 14.514903 -5.398779 4.176645 2.137476 -6.409182 5.232823 20.729169 5.367497 1.604614 -9.258618 24.478092 -22.171994 23.295003 -19.992249 -17.224434 30.233138 -3.105065 1.325048 -19.575253 -5.259294 13.985594 -0.665829 -15.093726 -3.606183 -0.676654 5.409157 -17.498436 -8.054215 16.871673 -16.650270 1.845173 10.439919 -17.668164 -21.461118 -3.855999 3.265487 4.774517 -21.165304 -15.114936 -0.375912 -5.787277 -4.442823 4.678395 -16.789398 -13.966409 11.253092 1.889824 -2.752283 3.815073 -7.951862 -7.780855 9.660434 2.101011 -10.638854 -10.542627 2.743132 -7.534807 4.786863 7.416181 16.903361 -29.405877 1.454649 -26.811397 10.189950 -14.428277 12.279875 18.266270 -5.304715 18.170672 1.802334 10.019861 0.809253 0.869091 10.918781 6.890057 10.871774 3.577303 15.307825 16.440717 -14.056044 -23.554583 -14.181897 -8.950446 8.567304 -5.696691 -21.932217 9.596707 -13.942520 -2.076507 -0.723537 -0.187947 -2.723951 21.082052 -24.550596 6.617970 8.742836 -3.839129 9.216728 11.927753 0.339403 2.167304 -4.079513 9.080915 1.491260 8.356472 0.116406 16.419499 -11.004459 -10.827663 -2.432413 3.502045 7.150052 -13.352095 -17.317262 -27.515785 -6.011357 12.026290 -10.898226 8.922503 27.455311 -9.355234 -15.455140 10.762166 1.622564 -0.999897 6.118843 4.950514 27.535429 -15.285557 2.080363 -0.085449 0.897127 12.926526 26.726635 -6.786159 -18.078598 15.653066 -7.582535 -17.339494 22.783242 0.557741 -0.884141 2.211167 2.435752 -4.209505 -11.493147 19.865014 -16.321062 20.323616 -15.407604 23.508042 -10.573602 -4.405866 5.549181 -20.805794 -6.083914 -17.876987 1.023708 -3.063230 15.540847 -13.701992 -12.213949 -7.195298 -8.182536 -2.646047 22.522977 -19.355518 -2.579381 -0.617492 -4.708509 14.157417 5.591321 -8.250055 -2.525683 -15.455965 6.777970 11.187916 6.162205 -23.845585 -8.395125 -7.106769 -7.888775 -4.013643 1.613078 13.653301 -10.736250 0.802431 11.019121 -1.420979 -5.064820 -3.285549 -19.882171 7.243172 1.462944 7.856221 5.652520 26.257879 14.734402 13.251038 -1.314300 5.781918 -2.112898 -8.405713 -22.240816 8.187053 1.202130 4.837506 9.651673 13.754753 8.472006 8.750202 13.526252 0.092089 1.444710 18.634853 4.520012 19.453487 -9.929146 -3.436922 8.799604 0.342896 15.416677 15.778148 4.182122 -16.215066 8.561754 -7.735940 -16.225628 -3.862537 -3.717979 -1.632364 -5.393208 14.629123 12.957411 -3.102316 -4.811089 31.042475 -2.990878 -35.522200 13.417133 5.603006 11.193917 14.818373 -6.009335 12.432886 13.304357 7.253092 6.808465 10.681261 11.771141 -19.907523 -0.080322 2.373760 10.380851 18.483266 -0.368495 -42.968977 1.934474 4.271210 22.779327 -1.532443 23.407010 -12.211140 9.563916 1.501596 0.092487 3.964176 -2.653157 10.934457 -2.590309 -0.518113 -28.596171 5.561807 +1.353883 1.698131 2.196000 -3.694190 -3.118806 0.244375 -0.482909 -4.548491 -1.009798 2.684373 2.278835 -3.758566 -1.118602 3.899933 -2.080190 -3.101592 -0.435725 0.231609 -1.144124 -2.353846 -0.012470 0.891109 -0.729240 -2.751082 0.158238 -1.468201 1.538789 1.955959 0.784531 -0.867015 -0.461739 -1.487277 2.406778 5.976929 1.709241 0.145222 -2.014947 5.672195 0.507777 3.498267 -7.157840 -4.440947 6.127811 -0.362519 1.169447 -8.117767 -3.607995 2.840363 -1.640627 -0.992272 -1.299928 -1.045361 0.503488 -3.731098 -1.694357 3.982020 -4.967183 4.294946 2.222168 -4.820368 -3.539930 -0.432815 0.989931 1.002158 -0.341792 -3.963837 -0.091695 2.429030 -2.630802 1.990355 -2.899279 -4.751114 6.759193 0.555308 -1.975064 0.744504 -1.788813 -2.218553 2.348836 -2.192443 -3.251936 -2.241296 2.694111 0.767291 0.971469 1.925093 2.976610 -7.186550 -0.707046 -7.414136 3.110471 -3.162445 3.893860 3.104437 -3.727705 3.038291 1.221821 -1.498386 2.315000 2.410276 3.587978 1.297976 3.265021 0.591229 3.036034 2.842723 -0.868815 -3.558847 -1.232697 -4.201808 0.478186 0.222924 -6.896058 1.773891 -3.788878 1.086506 -1.242376 -0.326679 0.896705 3.766098 -6.041065 -3.138572 2.602853 -1.150904 3.183040 2.990467 0.003398 1.786189 -1.273219 2.966967 -0.221361 0.793192 0.094782 3.752612 -1.396781 -7.699438 -5.609099 1.660114 2.131544 -3.828359 -5.073728 -4.829173 -1.948407 0.743760 -2.629191 2.773614 7.279613 -2.515681 -6.445045 3.443254 1.938639 -1.224817 4.872356 1.740063 8.860292 -4.660122 1.378787 -0.842277 -0.548530 3.233465 2.523890 -2.499666 -4.419058 2.449304 -1.307652 -7.235353 3.115189 -0.688416 -1.066698 1.655810 0.229550 -1.567213 -2.122995 3.512480 -0.388011 6.220385 -3.918409 7.262369 -4.087506 -4.292363 0.642086 -4.173063 -2.420128 0.204650 0.933280 -0.338038 5.378593 -3.280090 -3.404854 0.346653 -3.537332 -0.710591 5.474803 -0.916716 -0.062988 0.562526 -1.486645 3.580733 3.228899 -1.704066 0.553055 -3.803588 1.739333 3.977890 2.708392 -8.269728 -2.243034 -3.440337 -1.294058 -0.951114 0.109034 4.008978 -0.588682 -0.338616 0.493594 -1.950303 1.651228 -1.062769 -0.552994 2.301020 -2.113061 1.887464 -0.378425 6.757923 4.683205 3.655272 0.698123 0.143105 0.284219 -4.148091 0.187449 1.012865 2.291032 -0.135107 2.670112 3.820328 2.055176 2.420169 4.068302 0.899226 0.619333 4.830844 -0.169612 5.942100 -5.109922 1.369989 -0.056022 -0.414924 4.624035 8.024444 -0.807480 -3.938121 1.541691 -0.291675 -1.665774 -4.095770 -1.439481 -0.540863 -2.649995 4.365597 4.019025 -0.500206 -1.991216 7.285054 1.415399 -6.738425 6.129180 1.139751 1.474067 1.707404 -2.713943 0.912660 3.829383 0.175308 -0.615678 3.253882 3.824041 -6.120407 -2.925063 -0.584207 4.291638 2.352525 1.351907 -6.890905 2.037351 3.748302 5.965759 -0.209746 4.350137 -4.163438 -0.918617 1.193332 0.647565 -0.194832 1.053252 1.723134 -2.937986 -0.825411 -2.822454 -0.443218 +5.706786 -1.414402 7.355686 -13.060249 -9.822261 -0.451447 6.103170 -10.814575 -4.864386 13.908620 5.780327 -9.442606 -3.983322 13.229304 -2.465740 -8.372601 2.518277 -2.159567 -2.447619 -3.091869 -3.395522 6.382589 -3.791799 -10.215402 5.042354 -4.114309 2.164322 12.277783 -1.784588 2.874538 0.155263 -7.173593 3.239606 21.836392 6.100697 -0.676452 -5.398779 25.104379 -14.494942 18.086275 -18.425620 -16.910155 25.121918 -3.274841 0.553651 -16.042217 -9.654433 11.205682 -4.366845 -9.376751 -0.612869 -1.779457 7.273169 -13.961034 -5.829600 12.905756 -18.828750 4.245680 9.227748 -14.667447 -14.833540 -3.772443 -0.126293 4.311712 -14.489860 -13.451123 0.365564 0.993591 -2.742347 1.836982 -10.172363 -14.340434 17.648941 4.255668 -3.631199 3.932011 -2.568802 -11.940921 10.900933 -1.425018 -14.383548 -9.501073 0.302858 -8.197110 10.310232 3.157421 16.614678 -27.380189 5.226251 -27.391085 10.011444 -13.267448 10.529527 18.463196 -10.143651 14.052917 5.614540 10.241829 4.650163 1.288906 13.470541 7.728517 7.840862 6.031328 14.238925 13.604179 -10.412275 -16.510627 -12.018038 -11.110902 5.077459 -8.485331 -24.353310 8.875901 -8.416598 0.016110 -2.194220 -1.065757 -2.397243 21.098495 -19.988991 3.067582 8.641162 -4.830747 5.448868 10.566834 -0.927425 -0.179290 -5.329932 11.894602 -3.307304 7.036306 -0.048854 15.676457 -10.004327 -13.059003 -8.025648 4.615951 5.806488 -14.383515 -18.342448 -22.611678 -4.735470 10.644693 -9.557728 12.306777 28.521016 -10.563313 -17.273840 14.375786 5.876362 -2.591325 10.449995 6.232070 22.072043 -11.189526 -1.878894 -6.010025 -3.927265 8.104091 16.831583 -3.736300 -13.396342 15.851797 -5.818628 -15.907259 24.534157 -1.402162 -4.137373 1.248363 2.217638 -7.776829 -10.108448 18.606581 -7.574390 18.024175 -8.321897 24.579077 -8.361620 -9.438773 5.075156 -14.602749 -6.485935 -13.134841 1.378343 0.798056 11.869161 -13.157280 -12.800854 -5.233621 -7.003980 -5.246924 18.275622 -9.075210 0.053651 3.261975 -2.562218 13.179697 10.391361 -5.021296 -1.156963 -13.254844 7.744493 10.511518 1.975747 -21.858939 -7.185650 -5.376559 -5.164887 -1.105887 2.498564 14.290058 -10.242967 -0.759682 7.365553 -1.997485 -1.670507 -0.692211 -18.342190 7.308607 0.607629 8.410161 5.093726 21.510725 16.471054 14.788562 1.517629 6.221771 -3.302359 -5.155967 -13.045588 4.487046 3.459569 3.315583 9.432514 16.548796 9.139293 9.447309 15.063508 7.557802 4.064942 17.617771 1.972656 20.415779 -6.040487 -3.733096 5.911362 1.211625 16.920460 20.256847 1.566490 -9.230494 8.731512 -3.740385 -11.810521 -9.157898 0.333100 -1.491983 -3.159256 11.805015 12.261989 -1.902003 -5.631657 25.502292 -0.941493 -29.858459 14.325472 7.101221 11.173428 10.846943 -4.439520 9.415014 9.986661 2.238274 10.133643 12.298691 11.121380 -19.823361 -3.457157 3.134143 10.457299 14.039401 7.481302 -30.052478 2.673669 5.305272 18.098550 -1.307134 18.778133 -13.158613 1.512290 3.653138 -1.339458 0.795473 -0.391965 5.875912 -8.105062 3.075742 -19.063442 -1.021958 +2.419060 0.158262 3.541408 -7.639483 -3.468533 -1.696819 7.679341 -5.004648 -2.847809 8.529515 2.286472 -4.799127 -4.244754 6.283834 -0.245130 -3.773286 2.131474 -3.196847 -2.689237 -0.499555 -2.108982 3.308987 -1.762824 -5.347296 3.081734 -0.581923 2.246939 6.969526 -0.613121 -0.003047 0.119447 -3.837386 2.482274 11.064520 2.584214 -0.151899 -4.407524 12.265679 -8.873826 10.650400 -10.172544 -7.580166 13.422015 -2.021907 -0.674360 -12.334322 -3.310665 6.890454 -0.289264 -7.374659 -0.753717 0.018489 3.222918 -8.818293 -3.482497 8.418390 -8.776382 1.540703 5.853821 -6.477246 -7.889136 -2.409529 1.671946 2.239824 -9.389126 -7.389974 -0.015381 -4.070774 -3.048855 1.516259 -6.826049 -7.174525 6.926528 2.458188 -2.561981 2.365460 -3.190955 -7.043277 5.506553 -0.408862 -5.639358 -4.995277 0.316081 -3.699337 4.797446 0.546204 6.465633 -14.201446 0.767529 -12.868949 3.867504 -7.704064 5.523862 9.644012 -3.001750 8.011307 0.528074 3.688065 0.640503 -1.333117 5.861919 4.009912 6.687187 1.950169 7.945576 7.301061 -6.782656 -10.637947 -6.386582 -5.298630 3.666158 -4.005036 -11.684649 4.756878 -5.003589 -2.505616 0.305410 -1.147264 -2.423296 10.318539 -10.376849 1.960392 4.746097 -2.689519 3.147497 7.576491 -0.222032 -0.114029 -2.534342 5.473291 0.550013 5.892631 -0.213132 8.122927 -4.923830 -5.572411 -0.893072 1.171764 2.920390 -6.172806 -9.315047 -12.837331 -3.078014 3.552154 -5.204138 4.347173 13.673814 -4.546641 -9.021121 6.843380 2.374962 -0.002542 2.583073 2.315670 11.801477 -6.644107 0.144028 -1.818179 -0.647970 5.097701 13.745214 -2.699783 -8.507011 7.631143 -5.600836 -9.795522 9.687211 0.591252 -0.875447 1.927356 0.543073 -4.552906 -6.823611 10.014730 -6.674502 10.349039 -5.881471 11.680736 -4.584644 -3.065144 2.810182 -7.727864 -2.393040 -9.311037 -0.637480 0.975824 6.467679 -6.438731 -6.203958 -3.648990 -2.532104 -2.436769 10.342755 -10.516421 -1.330003 -0.286603 -0.567594 7.431222 4.011702 -4.697340 -0.481160 -6.670828 4.546334 5.151252 2.873791 -11.142449 -3.768190 -2.950496 -4.105688 0.015183 0.612204 6.622660 -4.680301 -0.650171 6.362712 -1.293928 -2.997475 -1.475807 -12.423952 3.321710 0.236775 3.673351 2.424860 12.091547 7.253620 6.401565 -0.220870 2.306958 -1.530569 -2.769474 -11.172189 2.141874 -0.148210 1.004514 5.451533 6.900215 4.966164 4.044504 8.227791 2.824359 -0.094152 9.025899 2.036284 9.115295 -1.677619 -3.293682 4.784076 -0.343334 7.485678 9.000988 2.801318 -6.187252 5.505191 -2.143279 -7.246610 -3.983848 -1.375544 -1.339819 -1.677268 7.965651 5.546950 -2.649802 -1.523585 14.356860 -2.165818 -15.979282 5.853229 3.506960 6.460296 5.886063 -2.504804 6.297723 6.092684 1.584276 4.638446 5.088785 5.492602 -9.078896 -1.512742 1.593033 4.346412 8.221348 1.792216 -19.179351 -1.031713 1.352187 11.236529 -0.006304 11.868223 -5.498950 3.733178 2.026115 1.139604 1.696050 -2.111107 4.610463 -3.063262 -1.086922 -12.730551 2.578106 +1.529553 -1.587469 13.362067 -22.076633 -23.978356 -0.955593 11.000400 -12.156017 -4.965546 15.468717 6.850102 -9.340831 -12.074632 24.611683 -3.879368 -15.030502 -1.866544 -10.521017 -2.532585 -3.522223 -2.605067 16.282602 -5.731412 -2.114159 7.008010 -5.626918 -1.205788 18.095404 3.993485 -3.343689 1.942852 -12.145127 -0.222979 26.437393 6.289669 1.543250 -5.158674 43.972712 -20.486284 28.918757 -28.140485 -25.431748 27.283525 -5.083460 -3.147120 -31.957040 -15.153634 14.857438 -9.833611 -8.030624 8.691854 2.286568 7.777404 -10.978122 2.514664 13.070112 -29.693978 10.588046 11.732258 -16.515715 -10.214708 -5.945710 -8.255249 4.850062 -20.268360 -15.003901 0.149441 -0.543477 -6.004515 0.529902 -3.372580 -15.132824 28.488053 7.784707 -9.258428 7.580843 5.824610 -19.575792 18.354445 -11.465174 -27.156191 -10.192894 -1.702666 -11.566116 18.332117 0.339946 19.220741 -38.074624 6.120031 -37.801160 11.766151 -21.473183 9.791307 28.089200 -15.072643 20.081752 10.761513 10.572764 14.025841 -2.651307 18.971556 14.408762 13.745949 16.626869 16.527846 18.151100 -14.376247 -18.648774 -22.132654 -19.206614 6.591604 -12.794476 -38.191124 9.706801 0.925407 -0.513871 -1.158979 -0.275401 -3.051793 28.278643 -26.616891 9.101387 12.839164 -6.141208 2.233866 18.653715 -3.976046 -0.889465 -9.552698 20.445636 -12.492191 21.066372 -0.928028 19.603585 -11.204995 -14.739310 -15.416356 3.557078 4.097177 -15.006101 -21.493081 -30.587249 -6.455331 11.770210 -12.191361 15.891821 45.290039 -21.098866 -27.173867 27.153823 10.943169 -0.873932 8.940419 7.147201 22.265858 -4.729864 -13.204070 -15.815832 -13.343370 6.405988 32.257078 6.190073 -14.079458 19.803953 -6.384376 -30.200587 30.527074 -4.592448 -14.308983 -5.407818 3.334986 -16.936729 -15.538851 25.884905 -10.630254 25.027291 -10.131360 31.116958 -7.033378 -14.631238 5.526085 -23.320259 -1.968000 -24.018958 -0.990449 7.216357 11.747898 -19.020667 -14.429255 -11.816011 -11.177482 -13.350736 13.359399 -18.561366 2.510296 7.503541 7.824170 23.678213 25.718086 -0.203502 -2.771425 -20.026748 13.958509 9.086185 2.088221 -32.975127 -4.693883 -4.019502 -7.663447 3.137332 0.813773 13.953916 -11.148718 -1.534956 3.905376 -6.948098 -1.325022 6.014219 -34.436199 6.679752 1.709892 18.131701 9.460972 19.358766 26.390915 23.412326 11.377196 14.227940 -4.110109 -1.900213 -10.515769 5.367454 9.507982 -1.223404 13.676213 28.234845 20.338627 10.613058 23.680122 19.358796 3.463373 23.115231 0.262707 36.944978 -6.159720 -10.178267 3.321275 9.783374 20.946104 32.941570 6.080303 -1.315893 15.443674 2.056416 -11.868907 -15.942798 4.110072 -6.217645 1.394902 21.836950 14.716448 -6.143724 -2.294015 29.618552 -5.925784 -39.030523 15.322368 9.078494 17.829859 8.434808 2.422197 6.269585 15.014536 -10.842857 21.783883 20.281781 13.133001 -23.625486 -10.948106 3.431665 10.861266 22.637298 19.802742 -43.884811 -0.602994 7.500621 23.472089 -3.149301 28.599840 -17.060522 -8.452026 13.142489 -5.220560 -3.611693 3.581364 5.158754 -11.760426 5.347068 -21.692398 -12.666926 +13.439155 -10.575545 25.357537 -53.129226 -49.338282 -2.795119 -1.475835 -21.201389 -13.448267 22.364994 18.194595 -32.456647 -36.612112 56.096987 -5.206857 -45.675105 0.663761 -25.382846 3.496850 -3.419189 -4.539590 28.843970 -5.729004 -9.837593 14.677512 -5.056191 -20.845072 33.719919 44.706924 -21.876042 -3.272597 -19.715335 2.448637 60.386983 7.734641 -14.874890 -5.430565 101.191254 -18.585978 44.813297 -51.207668 -46.795211 67.588224 -14.500970 -9.178192 -57.811186 -34.309249 43.486084 -40.442465 -19.276246 18.309922 11.588916 11.815132 -33.649028 -13.016537 36.313172 -87.443945 44.489875 30.054078 -18.377301 -11.545175 -4.505494 -18.717040 8.594827 -19.158790 -36.785923 0.047568 -4.540210 -30.432233 -9.890026 -13.769476 -23.728200 79.474870 20.049900 -15.397745 23.266488 19.244021 -29.931728 45.495012 -38.811371 -63.303915 -19.924622 -12.543211 -23.674015 58.606820 -2.818546 31.322439 -83.185914 24.477792 -89.285603 29.732555 -57.659762 19.947833 71.466247 -48.554661 43.181818 27.655395 10.603860 37.432397 1.873343 59.032180 25.019741 19.044875 40.562354 34.710450 29.141925 -24.132861 -25.656901 -41.644085 -46.419205 1.864425 -22.305980 -86.821909 33.084470 -4.097090 9.956809 8.547104 2.218619 -8.769592 41.288448 -53.800771 4.464164 21.316718 -14.292868 8.246780 51.067578 -13.566874 -9.053555 -27.725373 57.287708 -24.386641 40.012158 16.868291 45.201328 -4.516670 -52.364502 -42.326413 12.820509 11.477298 -40.153805 -52.570136 -65.665204 -1.723207 2.198605 -30.623579 51.778014 105.129154 -35.973968 -48.558218 69.720224 16.759208 13.814203 43.973788 11.750499 67.417051 -10.607389 -39.413519 -22.306221 -36.380438 12.046322 17.858293 13.460580 -21.736110 40.033289 -5.308031 -38.151658 48.634552 -5.965727 -31.429458 -1.247958 4.901992 -42.868327 -50.758764 54.578890 4.186936 51.786406 6.373513 82.657359 5.017022 -43.439327 29.652710 -23.459445 -3.875345 -36.099716 -7.935160 12.167862 11.333857 -45.740930 -34.719491 -26.310065 -9.712349 -37.312048 35.602867 0.512258 18.346278 30.702759 16.962750 39.288032 53.641925 -8.270628 5.309305 -61.013699 25.669117 25.218723 -6.893009 -67.003511 -6.676676 -13.285559 -6.407921 33.662305 -4.082592 38.056757 -27.203724 -18.138957 11.169306 -2.987584 9.920581 13.931208 -60.690388 11.192763 7.396888 34.660337 32.250414 56.429650 55.720565 50.338730 19.847900 41.797769 -10.367672 14.587992 -11.393433 -7.997590 1.693266 18.143964 33.446785 44.068173 43.519659 32.111683 58.064835 44.041688 -8.188397 58.653928 0.974803 79.152658 -12.183635 -28.065372 7.244507 12.029696 58.472569 79.779725 -11.072588 -8.756272 38.807639 4.242969 -17.353096 -49.657901 10.741233 -11.784947 -0.145233 41.626013 25.600868 2.547744 -6.804913 57.328085 -12.023557 -91.278288 53.049767 22.277590 39.358917 21.869545 10.745036 11.943776 27.283086 -38.489565 29.026075 50.797485 33.098929 -56.566693 -4.170741 12.517206 41.007071 16.001878 54.019362 -79.647896 -1.103917 24.017588 41.208295 4.890391 36.684455 -39.040768 -45.777235 32.073539 -7.604259 -8.956460 0.098162 6.039310 -37.870768 9.025903 -22.440995 -26.455014 +3.523067 -0.213514 5.705307 -10.109920 -3.723121 -2.842543 13.143444 -5.946427 -4.166713 13.257648 2.179299 -7.262475 -8.800927 9.582827 0.192735 -5.625893 3.066233 -6.825791 -3.863996 -0.836442 -4.405358 4.727847 -2.486467 -8.316625 6.065420 -0.936018 3.084908 11.697612 -1.133046 -0.125386 1.206918 -5.605552 3.757294 16.701622 3.432168 0.079893 -5.641582 20.180343 -15.667719 18.146143 -13.974942 -13.391865 22.109818 -2.848780 -1.511925 -15.445705 -2.711432 11.184719 -3.899042 -10.568366 -0.327903 0.974383 3.981297 -13.710150 -5.009481 14.075553 -16.034522 3.899676 7.771227 -8.893679 -12.523742 -4.324913 0.595333 2.656989 -13.028422 -11.007359 -0.391265 -7.070878 -6.521437 2.106740 -10.473975 -8.649843 10.241897 3.825620 -2.718584 4.249605 -4.349861 -7.470722 8.069213 -2.557506 -8.431200 -7.681439 0.594567 -5.910135 7.989476 3.080048 8.498465 -21.373326 -0.032910 -19.065375 6.603820 -12.348135 8.392090 14.987400 -3.921977 14.256428 0.462741 4.324197 -0.491907 -2.671067 8.926131 5.296442 10.299246 4.106768 11.266146 11.551312 -11.725293 -16.690267 -10.907824 -6.430472 4.999265 -5.338177 -15.234137 6.660530 -8.097213 -2.185735 2.281823 -0.786374 -5.598743 13.182634 -17.242464 4.446324 5.902248 -3.858918 6.571786 10.579969 -0.103906 -0.582131 -2.675755 8.868610 1.277871 8.936658 -0.840298 12.401852 -4.941576 -7.706373 -1.285366 1.441976 4.715470 -8.950786 -14.124668 -20.248070 -4.664695 5.953325 -8.041766 8.280699 21.612769 -5.866892 -11.810115 10.610951 0.629531 3.790330 3.669950 3.696439 16.816406 -9.577134 -0.074122 -1.362513 -0.649088 8.115771 21.669653 -3.424969 -13.138090 11.139726 -6.015552 -9.552995 11.387763 1.392565 -1.065281 -0.328856 0.410335 -7.248064 -11.140986 16.091250 -10.993965 14.879098 -8.575153 18.431416 -6.757676 -5.013928 5.028985 -12.760632 -2.940248 -15.935369 -1.888555 0.769520 7.776357 -11.119585 -9.575321 -6.735715 -1.883459 -3.947621 15.249505 -15.324885 -2.337492 -1.153392 -0.414252 12.127548 5.182479 -7.646374 -0.843901 -12.012873 5.881369 6.423097 3.924601 -17.806559 -4.385234 -2.503380 -6.533168 3.457925 0.853923 8.579575 -7.285020 -0.671245 10.379779 -1.186007 -4.739246 -1.919855 -18.923174 4.342728 2.952714 4.197663 6.051550 18.217342 11.492837 8.429041 -1.028513 5.181852 -3.355749 -3.323882 -16.523426 3.371958 -0.667671 3.235326 8.121257 10.311299 7.643502 5.352421 11.656334 4.749424 -2.928320 13.134719 4.249920 13.755206 -3.428519 -5.706157 7.963147 -0.231184 10.859903 11.334325 1.226215 -10.261129 9.572951 -3.263803 -9.724567 -3.938430 -2.058395 -3.262687 -1.266320 13.118830 7.410401 -4.092962 -1.296091 22.129835 -4.345650 -25.155780 8.758620 5.909366 10.308174 7.698230 -3.372322 8.562245 9.875795 0.494335 7.000937 7.150035 7.946551 -13.328632 0.135855 2.120376 6.523154 12.668545 1.838155 -30.315747 -3.917747 1.400930 16.520440 1.768546 17.237659 -7.236365 3.986136 1.737022 0.249322 2.884228 -2.801504 7.377848 -3.664872 0.232323 -19.255967 3.823755 +83.653592 -46.696503 105.608886 -228.167514 -206.914545 20.512455 41.966459 -150.838445 -58.367349 133.310382 86.358229 -97.123359 -81.882855 233.914030 -21.144514 -152.251740 15.406789 -131.648476 -9.104302 -26.562034 -40.379077 131.808945 -63.312990 -51.927467 52.332922 -42.341451 -30.505041 149.230622 56.999919 -67.429980 -35.086134 -117.245188 -25.320742 290.607699 87.621293 -36.339166 -45.563168 459.555675 -145.411190 219.229468 -260.736105 -227.523881 293.454414 -71.099398 -38.027638 -244.780608 -150.809426 172.080562 -62.686948 -96.367916 79.470111 -3.889390 71.559241 -125.051891 -35.542270 146.165295 -310.576435 114.112793 138.336111 -131.655636 -125.849129 -69.191418 -27.868125 56.454973 -185.267108 -173.429149 59.526712 9.786983 -74.734461 -19.818605 -98.497469 -198.587413 287.443934 102.390038 -68.206419 55.454955 34.672297 -186.852446 192.186836 -72.499808 -290.597306 -99.144395 -41.714152 -160.690954 218.289307 -11.941305 202.202395 -408.232339 126.704339 -435.508888 103.059702 -228.049798 127.637997 301.420657 -184.391442 178.914235 121.877793 171.278734 142.243160 -26.620037 234.632775 113.047915 78.213898 151.815704 204.868451 151.842605 -114.242623 -146.786788 -194.318994 -204.225001 56.135329 -117.781173 -381.221969 153.235299 -54.657436 -23.773773 -42.227194 34.747881 -44.755174 267.491187 -277.649729 27.774716 106.516135 -70.122685 63.662991 214.932031 -65.938526 2.476491 -122.903779 218.177011 -116.278863 183.415808 -3.577461 209.810136 -91.731502 -160.794283 -198.869332 58.956416 96.912440 -210.527460 -260.807557 -308.414065 -47.739625 73.469459 -148.393966 265.356576 476.155540 -214.896485 -249.383082 284.666135 101.459653 5.059631 178.259939 57.369972 307.742000 -89.722443 -107.102607 -114.330840 -118.821101 40.143568 111.175883 31.772820 -107.211528 193.740293 -55.194439 -188.944418 368.183497 -24.449970 -150.666718 18.864392 43.949687 -143.672018 -218.210771 269.666573 -27.031393 237.901292 -0.226117 352.418411 -57.139661 -131.277621 99.823768 -153.756737 -38.100086 -201.382623 -18.453919 14.676691 138.422593 -168.469402 -158.768621 -100.977823 -108.178004 -136.957368 173.656692 -8.124115 62.409982 108.117925 54.575310 179.871139 281.972786 -6.203233 -7.815235 -239.798278 140.349242 160.717519 -9.082475 -260.330828 -83.945621 -79.888126 -59.760575 46.344428 10.011034 193.409326 -158.784090 -54.408681 42.404396 13.402056 36.183977 79.982312 -353.483815 80.812805 5.923879 147.936201 111.072206 257.851540 239.783965 257.951408 126.084777 97.898493 -38.455960 13.327273 -114.871126 -4.878096 42.646348 93.306003 152.064090 239.989073 200.163368 144.797769 244.878324 156.484218 50.742253 265.234691 13.474995 393.875113 -78.434758 -88.681964 16.357914 47.774225 257.624621 369.593529 11.151458 -32.032619 149.054216 6.289923 -154.272666 -213.169353 49.252644 -52.461285 16.248079 135.108545 142.271423 -7.763443 -77.607372 337.591502 -49.491039 -438.190454 200.798192 93.447120 184.428989 158.068416 17.176314 96.790960 126.017953 -116.842370 198.679624 233.509441 159.442679 -250.137894 -36.165837 46.285113 165.248520 98.054721 192.401381 -380.333414 86.511530 97.095192 234.632609 14.237117 203.447701 -195.802269 -80.860367 131.318302 -62.368960 -6.587563 63.327361 105.167495 -156.864163 48.422917 -225.971901 -94.407936 +40.781596 -11.959945 43.703484 -99.288117 -92.780625 11.270147 23.922603 -75.325111 -26.945137 69.974240 35.404657 -40.956761 -29.568803 105.296054 -15.681474 -58.537260 3.667258 -66.882106 -6.928480 -14.841082 -21.746658 62.662854 -34.103704 -18.875875 21.801066 -18.338503 -6.217841 60.708304 9.357918 -30.610945 -17.186526 -55.273689 -12.679366 130.474958 46.436218 -14.080640 -22.211090 201.250205 -69.636143 100.148573 -125.589211 -103.123803 121.595485 -28.875056 -13.861234 -113.618370 -60.634216 73.166721 -15.961949 -35.870982 34.178251 -8.730233 26.841645 -48.147021 -9.493504 61.884564 -130.024892 51.676207 61.457285 -60.515662 -60.905167 -37.177003 -3.964846 24.199354 -90.444883 -77.228285 28.634597 8.614941 -30.165348 -1.001113 -47.338633 -93.882631 108.819990 46.629854 -35.515820 16.823167 3.830355 -87.575044 80.404613 -38.614036 -126.990157 -42.844339 -12.248731 -70.950910 87.247257 -0.286933 90.615318 -182.439209 55.170882 -193.065046 36.869265 -94.581776 60.457588 130.305086 -72.848731 74.541725 48.713916 77.395521 65.115664 -14.565479 96.588452 49.702375 34.696439 63.186713 89.538386 74.178635 -48.916433 -65.189878 -80.467878 -88.313665 26.613267 -45.217399 -161.117808 64.076932 -28.696226 -13.361387 -26.865584 17.410760 -22.105582 122.068676 -130.508957 -2.999583 43.289635 -30.609640 34.824610 92.296511 -25.540114 8.630969 -55.885195 90.666657 -46.818410 81.966734 -13.387334 90.629352 -51.500811 -68.593265 -95.776315 23.004252 46.461988 -92.714849 -116.895715 -140.735567 -28.389150 33.181357 -66.766849 121.095136 207.200677 -101.356397 -115.512788 125.279068 41.650780 -5.017941 78.089869 23.285608 132.855808 -42.774897 -37.607980 -47.939940 -46.955360 12.284917 59.978488 9.386978 -50.741615 81.038449 -27.812924 -86.497861 157.773445 -5.483480 -68.927817 2.002000 18.159768 -55.984467 -90.598077 118.402573 -26.413647 105.263806 -10.554276 150.596978 -35.999994 -54.108462 40.049250 -81.052090 -14.918174 -87.425538 -6.873780 2.680926 72.567957 -73.845968 -67.970292 -36.754732 -52.588954 -61.218844 75.874141 -12.284284 21.582651 42.006054 24.170728 89.567432 129.528350 -3.518447 -2.031238 -97.948992 65.250049 74.629813 3.478564 -117.483240 -39.310450 -37.781910 -33.013733 11.730413 4.896731 81.953727 -71.424437 -18.422958 19.081656 4.792709 19.508758 38.155872 -154.344487 42.605919 -9.294991 63.907551 43.709460 110.900205 98.163520 116.221219 58.827917 31.900249 -17.130559 -5.968390 -48.374658 5.565934 30.192005 31.844198 67.301203 111.174349 88.954618 61.536854 103.764587 65.305032 23.890116 115.844956 2.597417 177.063290 -46.385648 -29.872949 3.759656 20.156605 108.270726 165.360894 3.889520 -18.046408 62.829000 -1.915100 -72.156263 -89.358777 19.142229 -24.552167 5.438051 51.275469 64.851521 -9.247744 -35.056344 157.320844 -23.880490 -190.108154 85.271318 40.845053 77.476403 66.642688 4.622562 40.888988 58.903741 -49.501961 91.626899 105.311506 71.257261 -104.791238 -24.974039 16.781590 70.518883 50.983838 78.995799 -172.212519 42.935707 46.876695 110.752746 6.215572 96.727474 -85.750458 -26.811611 58.896301 -25.602186 -2.247539 33.991143 56.509918 -64.227531 24.195238 -103.629191 -40.581382 +19.760110 -15.409101 33.857291 -63.788341 -53.086153 -1.233067 19.194964 -35.899445 -19.076187 40.338149 19.354594 -30.104284 -34.317663 64.685768 -4.525681 -50.248483 2.747060 -27.830596 -6.458469 -3.751240 -14.378747 36.562226 -15.658194 -21.072910 23.899719 -13.184429 -3.597446 48.379142 18.333617 -14.542084 -2.589135 -34.539561 0.330304 86.930610 19.598935 -1.407186 -15.278302 132.686855 -38.359952 76.238969 -69.485444 -73.102783 94.926234 -20.272507 -8.151668 -66.658523 -36.030430 54.359787 -32.938346 -34.909746 19.015905 5.098680 18.901617 -48.392981 -11.897864 44.686076 -94.080343 33.754803 39.777710 -40.435878 -41.665232 -19.743411 -15.223227 10.920936 -50.928649 -51.899963 6.726079 -2.150750 -30.111005 -4.403544 -28.710505 -48.113919 92.500095 28.094937 -18.078800 24.516261 11.171556 -42.610976 54.104261 -23.607734 -79.873059 -35.288655 -9.059692 -40.282032 65.075752 5.011060 55.608871 -118.911749 33.810836 -121.827561 37.447539 -66.033592 37.796994 91.155829 -52.085083 64.899097 33.915097 41.510342 28.031700 -5.309697 68.085498 32.203282 24.302583 45.695662 55.714964 43.084103 -43.449091 -56.278842 -59.572495 -56.182151 17.216024 -36.775457 -109.031649 40.401432 -15.676988 7.916284 -2.735033 10.618219 -15.150699 66.073912 -91.867659 15.614928 33.404205 -21.121990 22.185247 56.236821 -14.300384 -5.529893 -29.939537 64.339117 -30.914267 46.672357 2.256704 64.975153 -18.552585 -40.488291 -45.582303 13.304488 24.480050 -54.670263 -76.031642 -91.886841 -16.982879 30.452250 -43.138780 70.557772 137.952863 -54.815949 -67.419293 80.180580 16.786555 14.132209 45.321916 22.624591 82.986899 -26.139908 -34.384519 -28.534678 -33.548354 23.502760 41.217292 8.107127 -41.802396 63.249936 -16.786047 -45.181284 92.664719 -9.926171 -35.924789 -5.546980 10.438856 -48.537731 -59.183585 80.278726 -18.085815 72.854516 -8.826162 107.836259 -17.821193 -39.362923 27.098340 -55.206514 -13.170010 -68.514977 -4.345614 3.139397 34.022718 -60.837443 -50.068960 -29.022435 -25.222433 -37.366177 57.282200 -15.660493 11.394534 24.090607 14.034238 60.807211 68.957154 -10.325244 -6.095072 -72.299470 37.122385 35.510700 -2.294054 -79.567594 -20.247567 -14.871476 -20.995067 23.547436 2.858195 48.989947 -40.963199 -12.015510 19.115927 -1.588204 0.986207 14.817042 -95.309533 17.256842 14.506539 40.190866 37.648960 78.682826 76.083905 68.260550 25.940338 39.446412 -13.036276 4.356444 -40.904078 2.169522 6.693437 30.885422 44.506855 65.731470 58.466224 39.667705 70.535520 48.087660 6.684744 76.854834 9.176155 109.501447 -18.906443 -33.193694 15.721510 16.635465 73.799268 94.816771 -7.591837 -11.377971 49.518337 0.693577 -39.455469 -51.282860 12.005391 -16.084061 0.471034 49.520940 41.485826 -3.932472 -15.349592 98.880979 -19.982472 -129.767524 57.797375 29.301800 57.856059 40.422400 3.596296 31.021607 40.134141 -29.410041 51.299856 60.611445 45.468784 -77.982679 -1.052352 13.165246 45.768758 37.722677 51.898002 -109.617439 7.381143 22.193946 70.205815 3.660435 59.637183 -52.078572 -23.595867 31.471524 -17.397329 -0.435638 8.733933 24.256345 -33.499879 10.146269 -68.037552 -26.175327 +2.275754 0.980858 2.177204 -4.692262 -2.170100 -1.167442 5.348661 -3.700079 -3.005851 7.566544 0.694835 -4.219636 -4.724294 4.737785 -0.789090 -3.292004 0.531921 -2.987063 -2.198004 -2.539682 -2.431532 1.922010 -1.008710 -4.788587 2.281516 -1.343133 1.741046 4.565568 -0.544683 0.340151 1.176949 -2.814152 2.976832 8.441432 2.152935 0.146052 -3.893244 9.869092 -5.917160 8.234469 -7.939957 -8.505814 11.614921 -1.129889 0.005307 -8.025817 -0.785110 5.490530 -1.105807 -4.086683 -1.729032 0.253717 1.003445 -6.972461 -3.476318 6.764646 -7.641827 3.635390 3.288048 -6.050270 -7.398728 -2.037805 1.174863 1.939982 -5.405327 -5.413920 -0.632087 -2.014388 -3.887112 1.774058 -5.628854 -4.313854 4.980376 2.017404 -1.269467 1.620193 -3.179330 -1.689997 3.383591 -2.155093 -3.949730 -3.825592 1.486253 -1.193236 2.438672 3.605369 4.918459 -11.317632 -0.011151 -9.824735 3.632560 -5.351721 4.770151 6.672682 -0.923113 7.219484 0.306882 0.677806 0.356605 -0.686774 4.348076 1.876333 5.486091 2.302442 5.005832 6.219100 -4.987072 -8.276645 -4.158446 -3.291873 2.338331 -1.565224 -7.101487 3.467273 -4.997196 -0.992580 0.558205 0.096933 -2.711666 5.221520 -10.055320 -1.061515 2.774502 -1.958742 4.876669 4.052479 0.299285 1.019834 -1.024004 4.170955 1.148736 3.672082 0.032473 6.225104 -2.159453 -5.019202 -2.462776 1.703548 2.826905 -4.918140 -7.019907 -9.566352 -3.004618 3.729123 -4.301071 4.720128 11.219188 -2.883887 -6.058783 5.051685 -0.395951 1.940147 3.019856 2.083390 10.147152 -5.369783 0.654526 0.860492 0.221844 4.966115 10.763362 -2.436712 -6.870887 5.523763 -2.453728 -3.210911 2.765887 -0.506989 -0.713996 -1.070694 0.211865 -2.946778 -4.814857 6.958106 -5.757913 8.085680 -4.652447 9.267888 -4.456761 -3.058992 2.433142 -7.843530 -2.683048 -6.150305 0.763463 -1.186452 4.992559 -6.196147 -4.822474 -2.303038 -2.038811 -2.076459 8.198719 -7.556881 -1.142419 -0.245176 -0.824468 7.162297 2.439400 -3.764317 -0.769537 -6.328708 2.451408 4.090680 3.231727 -9.526861 -2.773726 -1.560081 -3.183124 1.648363 0.295400 4.206115 -2.421731 0.513173 4.544605 -1.155636 -1.283957 -1.212877 -5.764185 2.700961 0.980605 2.480695 1.588847 10.142745 5.528509 4.271625 -0.594746 2.573291 -1.344260 -3.208303 -6.242849 2.164752 0.718156 1.006403 4.210621 5.235961 3.168718 3.224656 7.118953 1.650640 -2.221185 6.490430 0.747520 7.717921 -4.657269 -1.999377 3.092749 -0.345231 5.544156 7.086802 0.147390 -6.598937 4.679974 -3.090528 -4.365339 -1.750637 -1.356325 -1.351522 -1.112535 7.023155 5.812265 -1.662410 -1.234264 11.515674 -1.505550 -12.959811 6.063614 3.256002 4.570621 4.077795 -2.952079 3.571147 6.005612 1.300180 1.434986 4.377241 4.134891 -7.662650 -0.141285 0.591286 4.404331 5.389916 0.144169 -15.053544 -1.112707 2.504722 8.580819 0.521653 8.203417 -4.349503 1.261755 1.161825 0.970777 1.123017 -0.573969 4.042143 -1.885041 0.395492 -8.288539 1.964950 +4.634289 0.490407 5.823394 -8.224174 -4.968732 -2.336570 12.451341 -8.929916 -5.789726 14.631830 3.383206 -7.371401 -7.223088 9.736376 -1.392069 -4.886282 2.316670 1.707864 -4.327159 -3.105363 -4.508866 3.998679 -3.075536 -8.800559 5.289255 -1.923626 4.342616 12.292895 -2.950371 4.356408 1.603945 -6.000227 4.692955 17.531912 3.953403 0.622084 -7.080724 21.446882 -18.269301 17.883676 -17.352436 -15.663485 26.156091 -2.885586 -0.612692 -21.278054 -7.908300 10.932762 -0.821740 -11.982792 -2.973867 -0.383782 4.417281 -14.201663 -5.526019 14.359132 -15.754959 1.361119 9.014083 -15.886310 -18.346966 -3.060044 2.914080 2.044720 -17.257202 -11.935231 -0.815960 -5.109414 -2.552152 3.251876 -12.830362 -12.642473 11.062828 1.539036 -3.449611 3.991197 -4.869976 -7.914276 8.241597 4.393817 -9.199000 -8.691964 1.734259 -6.259029 5.637711 4.440123 14.225937 -25.131321 0.812352 -23.710462 7.351754 -13.156946 9.794474 15.190850 -6.183689 15.444327 2.999428 7.985047 -0.111926 -0.052251 9.706837 6.864461 10.187156 3.514430 13.987357 13.599881 -11.261975 -19.807009 -13.334936 -8.725229 7.178115 -6.218477 -22.903171 6.868696 -10.500429 -2.703732 -0.873130 -1.006271 -2.140843 18.660091 -20.027498 8.902578 8.810437 -4.248678 6.162096 11.912959 -0.097621 0.540567 -3.939218 7.913421 -0.693394 8.144939 -0.083084 13.033222 -9.073300 -11.484149 -2.702218 2.465098 4.756272 -10.584590 -14.286903 -22.300383 -4.806546 11.288122 -8.271732 3.571071 25.076285 -8.227207 -15.250715 9.709633 3.005796 -0.252531 5.609467 5.287276 25.002652 -11.674065 0.586019 -2.055733 -0.815913 10.116670 19.535844 -4.795550 -13.842219 13.144993 -6.009163 -18.515368 22.655738 -3.013532 -1.351500 5.112576 3.089383 -4.483982 -9.889837 17.553377 -11.554504 17.709986 -12.165659 18.975968 -8.159344 -4.575571 3.133798 -18.838850 -5.386504 -15.202953 0.872300 -2.714650 13.677538 -10.804343 -10.150546 -6.987611 -7.749664 -2.520622 19.465894 -18.017655 -1.668077 -0.148358 -2.599127 9.592450 5.198562 -6.278963 -2.326043 -13.378620 5.448369 10.315120 3.646538 -22.976135 -6.093776 -5.434336 -5.975912 -4.357121 1.472424 10.898989 -7.346999 0.579032 8.604036 -2.768374 -4.749569 -3.105091 -16.452206 5.393940 -0.212607 8.134601 4.004720 22.099614 15.449712 11.311033 -0.240396 7.020578 -0.131773 -8.023269 -18.505209 5.730513 0.017669 4.878651 8.367231 11.334690 7.450445 7.202684 10.534279 0.813116 3.342018 15.259164 6.440287 18.568706 -5.628783 -5.327991 7.015378 0.353844 12.036001 15.539739 6.826211 -9.850773 7.288984 -5.095985 -14.110260 -7.298318 -2.015719 -0.913723 -5.927592 15.445006 12.915732 -3.621448 -3.667242 26.965313 -2.983814 -30.516716 10.707041 5.067081 9.524830 12.561878 -4.094669 10.333624 11.942335 8.348256 6.071605 8.788929 9.795920 -19.323876 -0.552385 2.087932 8.833900 15.754707 0.778795 -38.102666 2.898754 2.526012 19.805074 -2.453311 20.807677 -9.838055 8.503861 2.237688 -0.085873 2.528243 -1.911178 9.028178 -2.499298 -1.106692 -25.623678 3.648553 +9.023221 -1.163614 7.450308 -10.204175 -4.848002 -1.105006 15.352290 -13.079411 -7.362607 24.092338 2.988112 -9.020915 -6.566412 8.620930 -1.402144 -3.688663 4.458058 0.303369 -2.998234 -3.590803 -6.435111 4.003404 -4.730733 -13.685504 5.232509 -2.701753 7.828976 15.166036 -7.354054 9.642010 2.384468 -8.979661 4.597110 23.207905 8.176121 -0.410760 -10.975949 26.706359 -24.084686 22.612254 -20.597957 -21.362645 31.705898 -3.280946 2.170927 -19.466298 -5.622393 14.378758 0.107899 -17.762820 -5.834490 -2.408836 9.013965 -18.633757 -11.466417 15.930880 -17.989924 -2.567972 10.903398 -20.643661 -25.020935 -3.660697 7.114877 8.176317 -24.341051 -15.348986 -0.193577 -6.720385 -1.728699 3.603376 -17.817380 -15.843486 7.162960 3.344401 -3.581696 2.010007 -8.060837 -9.436424 10.051835 5.872436 -12.759385 -11.800334 -1.738016 -14.924390 5.466117 7.106095 21.690933 -29.414630 7.301910 -28.935135 9.366204 -14.073366 12.234541 19.106221 -3.484904 19.258587 3.800529 15.701050 0.567757 -3.716185 10.435697 8.888351 11.964552 4.623908 17.482821 18.603124 -15.857898 -23.706512 -17.128155 -9.053909 9.808267 -10.156080 -22.177245 10.165745 -13.238385 -2.721160 -1.723965 -1.747626 -6.318457 24.385232 -28.143533 9.381150 8.436315 -5.015850 8.374255 11.379145 0.400356 1.752351 -1.389592 9.207155 -0.395660 7.815862 2.418395 18.286113 -14.640642 -6.095219 -0.693096 7.110544 8.614297 -14.499897 -18.430700 -30.035818 -7.105454 15.748312 -10.548496 10.520494 31.026825 -9.756655 -16.554255 9.529746 -2.557055 -3.448443 7.155077 6.698989 26.729685 -15.166452 1.042402 -2.441107 0.279127 12.589252 30.465014 -7.386712 -16.912337 19.828575 -10.488697 -11.777971 24.109036 -0.423459 -0.820168 1.320872 3.761630 -4.922455 -11.090640 20.779649 -22.386284 19.501962 -14.050126 23.145942 -9.583170 -1.701615 3.795424 -25.545348 -9.393350 -19.324514 2.116565 -4.608057 16.699378 -14.254610 -12.747382 -8.828805 -8.619913 -2.543004 25.045501 -21.857742 -2.330448 1.343528 -5.729085 17.595357 4.230268 -7.715485 -5.851739 -13.931389 7.020375 10.855535 3.834430 -23.344971 -12.969790 -7.813294 -7.729400 -4.367117 3.111257 16.707369 -13.532475 2.184269 12.244089 -0.052550 -7.190593 -3.376122 -24.466414 8.655992 2.841978 9.830009 5.624285 27.736294 15.041802 16.155424 -1.601879 7.394362 -3.116578 -8.784103 -24.860259 7.200863 2.125432 3.749192 9.919783 13.493546 7.737732 11.055111 13.150123 1.826065 4.021661 18.901117 3.732467 18.904471 -9.137568 -5.097707 10.347771 0.912434 14.376125 14.335508 7.878396 -14.578192 8.190669 -12.283401 -18.980692 -4.206995 -0.533027 -1.067785 -1.551344 14.495608 18.585953 -1.955997 -6.857731 30.618792 -2.213030 -39.081302 13.404259 7.225619 12.543053 20.069698 -7.724969 16.873081 11.734674 12.558072 10.745321 13.380375 9.875405 -23.020648 3.158365 4.060811 10.873167 19.363211 -0.035318 -47.462723 2.056808 0.684652 21.330157 -2.795681 28.784276 -15.499176 12.482959 2.963510 -1.685037 4.792544 -2.801514 12.532444 -0.302979 1.285816 -32.062621 8.327705 +20.871051 -7.516450 31.252859 -50.444592 -50.999482 0.655070 16.747143 -39.164206 -18.368357 44.700346 22.328357 -31.212463 -18.773798 58.321970 -10.323357 -37.890392 2.304616 -9.699655 -7.375940 -9.491638 -13.717097 31.361139 -16.920594 -25.723577 20.906498 -14.112190 1.416371 44.117390 3.092426 1.044348 -2.325927 -30.427536 4.943050 81.988469 20.739666 -2.076052 -14.769976 115.730964 -45.749781 65.884083 -69.956629 -71.211239 90.490367 -15.596177 2.016220 -59.932268 -39.810721 46.756829 -23.533283 -31.844793 9.525502 -1.900711 20.734204 -45.385890 -11.806183 41.136969 -83.864431 26.007915 36.713132 -49.514756 -49.967363 -16.575502 -8.251646 10.780861 -51.753115 -48.813842 3.601245 9.853036 -14.123551 1.298369 -29.938115 -54.123661 78.854321 17.752118 -16.495913 19.149024 3.423562 -43.262439 47.900952 -13.373467 -70.395738 -33.342595 -1.413989 -35.519671 49.135426 11.831437 62.025323 -110.966442 29.391714 -114.530640 37.879281 -56.915373 38.229590 79.805522 -50.088838 55.847155 32.450888 43.937243 28.538289 6.186385 60.214286 30.406477 23.436305 34.583005 50.526513 47.917452 -39.371057 -54.963441 -53.993417 -52.542241 18.156773 -30.210907 -100.699882 34.498468 -20.777232 8.263692 -9.248349 3.906478 -6.359802 73.539069 -85.010119 14.697004 34.826157 -18.683867 21.537870 45.692778 -10.492369 -1.023470 -27.186259 53.696022 -27.540379 32.937985 -0.193983 59.769846 -30.254444 -48.971439 -45.255212 16.144906 22.125138 -54.830020 -70.233046 -88.728991 -14.470795 39.148940 -38.945794 53.239865 125.343510 -52.434884 -65.849967 67.542671 21.458286 -0.531739 46.476610 23.457826 83.698041 -32.199974 -20.758913 -25.973304 -25.739615 23.561027 40.861104 -0.173021 -43.248735 58.699529 -13.579241 -55.790848 101.241792 -10.615838 -28.527906 -2.286087 13.868330 -35.743295 -43.974420 75.053813 -18.770869 66.901784 -19.852211 98.229244 -26.173131 -37.666211 21.125900 -57.048764 -18.214475 -54.101129 1.750691 1.964722 41.857838 -54.299495 -46.970081 -21.378785 -29.781896 -28.972076 58.046885 -17.111353 7.472358 20.722772 2.396283 47.513074 56.472335 -9.129087 -6.108274 -61.077567 30.246621 36.506576 -1.400859 -84.239329 -22.622640 -20.985508 -17.995956 5.250673 6.721202 49.804126 -37.377282 -7.092659 18.641117 -7.231872 1.638320 7.449318 -71.002673 21.802234 2.124566 38.840817 26.640594 75.907852 72.927125 67.039834 20.594445 32.318945 -9.864937 -9.844586 -34.335017 12.301174 12.943159 24.172036 38.891640 63.116204 48.150933 37.214333 57.251619 33.612981 17.065392 72.654670 10.057898 99.956773 -27.180478 -19.044063 14.326531 13.577628 68.500614 87.154377 -1.589873 -18.838838 36.207253 -6.396539 -41.335173 -41.618768 8.743439 -9.460396 -9.192831 42.260935 45.252777 -4.430951 -19.867859 95.374004 -11.123277 -119.282441 57.079085 24.269454 48.756427 40.871015 -3.551086 29.722512 38.548798 -8.786601 47.219707 56.707956 45.329157 -77.385540 -10.398710 10.833378 45.698296 44.800535 42.324631 -110.419539 17.518480 23.402523 63.354168 -5.075182 59.891812 -53.091772 -12.570041 21.719350 -16.991127 -2.275248 8.505366 23.430759 -27.724664 12.162330 -69.082304 -21.495621 +3.927811 3.055710 4.024198 -7.963418 -3.439302 -1.419105 8.120140 -5.099958 -4.614375 13.663538 -1.062768 -3.807738 -6.006372 5.500501 -1.967486 -4.274388 0.918129 -6.160789 -4.430047 -3.990744 -5.868702 2.467606 -1.266203 -8.338483 3.718537 -2.728962 3.930818 7.598491 -3.869462 0.422462 3.164678 -5.087756 3.224334 13.079381 2.555491 1.670156 -5.004531 12.968484 -8.338794 11.917043 -12.680496 -10.930256 16.052111 -2.370528 1.933092 -14.531386 0.525969 7.639579 -0.089516 -6.233692 -4.000229 -0.626384 1.318523 -10.462545 -3.989221 9.071786 -8.543994 3.355446 5.526287 -8.308402 -11.544420 -3.100257 3.000433 3.076499 -9.563730 -10.025470 -2.017532 -2.993657 -5.533002 3.898529 -10.246863 -4.770561 3.187899 3.821910 -1.908088 1.597687 -5.823266 -2.448668 3.404100 -4.539260 -4.352127 -6.950940 3.196574 -2.431794 2.872098 4.249791 7.764960 -14.377005 1.129230 -12.861491 2.539681 -7.562128 7.107535 9.887663 3.074873 9.940847 -0.471960 0.875524 -0.397395 -2.366658 4.953363 2.661383 9.257189 2.051115 8.216620 8.669193 -8.533970 -14.280819 -4.970756 -4.595403 3.638054 -3.055859 -8.973493 5.925622 -6.804550 -2.054115 0.431315 0.990085 -5.456083 8.028233 -16.227343 -2.385201 3.995316 -3.083009 5.942278 4.563344 0.468027 1.351760 1.159598 3.525053 3.466230 6.110992 0.604185 9.913282 -4.849463 -5.077036 -2.330669 0.519486 4.157831 -6.885240 -10.467570 -13.183523 -5.334896 5.071028 -6.183747 7.758262 16.577911 -3.316964 -9.272631 4.950245 -2.175940 1.022880 3.121031 3.344640 12.366040 -8.255375 0.790694 1.478815 1.576735 7.897085 19.262341 -5.382581 -10.598541 9.565774 -5.760265 -1.803616 1.343294 0.712526 0.917791 0.093437 -0.643893 -3.146611 -5.859495 9.906262 -11.880900 13.773277 -7.744831 13.432667 -7.218996 -2.805127 3.482133 -13.174943 -2.394036 -10.219284 0.860766 -1.095136 7.308764 -7.879234 -7.613317 -3.990459 -4.112536 -1.271050 13.431656 -14.688208 -1.859137 -2.342677 -1.729775 14.968365 3.665017 -6.578729 -0.279712 -7.574703 6.595704 6.015665 6.372294 -11.897564 -5.877369 -0.751176 -6.138103 1.981009 0.835841 5.793022 -3.403096 2.309540 8.334700 -2.229101 -5.394714 -1.438139 -10.308290 3.656668 0.465545 3.554761 1.414325 14.942451 6.363414 5.001235 -2.080225 2.567916 -3.082455 -5.835789 -10.647819 3.977515 0.140547 -0.733246 6.580390 6.129654 3.944279 5.569265 10.001173 3.530239 -4.311241 9.438327 0.124823 8.622694 -8.518917 -1.815544 4.869015 -0.566794 7.834811 8.657469 1.495587 -10.621173 7.330526 -5.128526 -7.285829 -2.721836 -3.606741 -2.083349 -1.318809 9.216199 9.231502 -3.319490 -1.037886 17.536310 -1.993945 -17.340905 7.113837 3.676576 5.776476 6.472436 -5.175383 5.984385 8.142028 3.358741 0.862876 4.926146 4.680862 -10.115576 1.638372 1.975735 5.884930 8.073516 -0.097943 -23.243564 -4.515384 2.491455 12.660520 0.410801 15.626186 -5.721950 4.063737 3.094200 2.779626 2.048588 -1.559086 5.304016 -2.024186 0.976362 -12.806344 5.216596 +2.352671 0.630743 2.396109 -3.786370 -2.365239 -0.422077 3.244596 -3.693626 -2.367278 6.338402 0.776753 -3.320896 -2.858277 3.620467 -0.846505 -2.977718 0.272092 -2.047689 -1.622303 -1.832160 -2.019877 1.671135 -1.259205 -3.615527 1.763731 -0.865117 1.837527 3.469658 -0.534963 0.443304 0.586653 -2.608767 2.040716 7.621968 2.229977 0.104601 -2.801430 8.853731 -4.030585 6.249175 -7.006725 -7.189126 9.002581 -1.152028 -0.084919 -6.218386 -0.693054 4.992877 -1.520152 -3.633593 -1.060807 -0.068983 1.020261 -5.677528 -2.986620 5.089434 -7.041774 2.933533 3.166686 -4.969115 -6.608254 -1.750998 1.564340 1.730497 -4.529385 -4.517344 -0.108781 -1.008619 -2.725745 1.436637 -4.603120 -4.367070 4.679686 1.581413 -1.517625 1.249666 -2.311567 -1.716404 3.310045 -1.320023 -4.149462 -3.510739 0.872800 -2.307263 2.731518 2.619985 4.583648 -9.918325 1.685691 -9.056038 3.217974 -4.490244 4.127118 6.232196 -1.937035 5.733705 0.892471 2.143496 0.693430 -1.024047 4.038313 1.536384 3.840490 2.147555 4.335100 5.028564 -4.294242 -6.547103 -3.967734 -3.721702 2.237177 -1.641032 -6.644838 3.055761 -3.995483 0.218156 0.027420 0.110784 -2.065376 4.616595 -9.156185 -0.916831 2.401517 -1.689061 4.150539 3.822846 -0.185521 1.291493 -1.070046 3.931817 0.050285 2.775209 0.114673 5.403284 -2.266292 -3.742283 -2.917830 1.758597 2.825705 -4.228871 -6.293947 -8.814452 -2.431403 3.147554 -3.684781 4.759552 10.195340 -2.950449 -5.714325 4.730318 -0.556000 0.954544 3.426409 1.830572 8.508856 -4.506923 0.075013 0.052513 -0.206275 3.815135 6.968004 -1.869462 -5.126445 5.454138 -2.200125 -1.700151 3.972857 -0.301731 -1.203003 -0.711126 0.576489 -2.608200 -4.088512 6.120030 -4.089588 6.177363 -3.222303 8.335045 -3.795002 -2.602622 1.799444 -7.195110 -2.275187 -5.089918 0.042317 -1.182513 4.901314 -5.617589 -4.155864 -1.597782 -2.005841 -1.938292 6.560566 -4.752983 -0.526772 0.307151 -0.530850 6.371658 2.813431 -2.783987 -0.980144 -5.509692 1.901758 3.769095 2.212282 -7.183626 -2.769647 -2.091769 -2.628686 1.242341 0.302394 3.969925 -2.912236 0.258206 3.553101 -0.825926 -0.625926 -0.510811 -6.315239 2.385446 0.362345 2.436851 1.708522 8.445799 4.794905 4.509258 0.328980 2.176943 -0.667492 -2.551024 -4.866989 1.159557 0.787835 1.749366 3.744434 3.868778 3.307417 2.934220 5.344194 1.630278 -1.220741 6.128695 0.642091 7.121181 -3.960682 -1.188608 2.163541 0.185194 5.068971 6.411142 -0.367714 -4.569816 3.744617 -2.509493 -3.804875 -2.789289 -0.835514 -1.179494 -0.440548 4.447766 4.971544 -1.348425 -1.415373 9.880885 -1.289816 -11.149753 5.386096 2.605155 3.872755 4.003327 -2.205601 3.105991 4.467607 0.699007 1.960981 4.259010 3.974574 -6.864814 0.711157 0.551557 4.355031 3.867576 1.095301 -11.815022 -0.331644 1.912971 6.839941 0.418622 6.735547 -4.282662 0.816740 1.332824 0.047764 0.804883 -0.012146 3.818477 -0.655621 0.389923 -7.121609 0.878285 +5.297041 0.403651 5.120284 -5.805319 -3.984803 -1.802216 12.335842 -7.166714 -4.684586 13.292271 2.039227 -6.803152 -7.428395 8.365675 -0.763089 -4.123515 1.723535 -1.834512 -3.386488 -2.052898 -5.085470 3.405395 -2.696728 -8.292716 4.817499 -1.215698 3.958394 11.906767 -2.259360 3.896427 1.876839 -5.290217 4.415097 15.316274 4.063661 -0.718526 -5.569350 20.707235 -17.429319 16.613224 -14.025236 -13.606493 25.265571 -2.591171 -2.286984 -15.641443 -4.639527 10.863093 -2.998283 -10.913464 -2.341202 0.141540 3.838271 -12.600940 -6.161111 13.668006 -15.744736 2.313569 7.244006 -11.742446 -16.320437 -3.401059 2.042387 3.405582 -14.775141 -9.959404 -0.654099 -6.647818 -2.677868 2.369527 -11.623525 -9.956685 11.264821 1.805851 -2.944787 2.999080 -4.946204 -5.086115 7.166291 1.837984 -8.446740 -7.511284 0.933215 -6.126575 5.012148 5.250290 11.499129 -21.670515 0.133010 -21.250774 7.055027 -12.152736 8.196736 13.603701 -4.309761 15.502428 1.665233 5.111609 -0.079421 -1.308571 7.988790 5.784146 10.443978 3.869921 10.745817 13.801294 -11.131409 -17.537343 -13.176366 -6.447280 6.281726 -3.887738 -17.841786 6.411561 -9.418919 -0.153799 0.595352 0.139383 -3.727752 15.830184 -16.012816 8.905287 6.183576 -3.391465 7.359478 10.373072 -0.105986 1.258076 -2.257095 7.112570 0.272090 7.549461 0.352013 11.647248 -7.347233 -8.961065 -2.111141 3.161472 4.989892 -9.134916 -12.371389 -21.379294 -4.327942 8.931468 -7.747196 4.495589 23.360838 -6.754903 -12.036198 8.505512 1.801164 2.632616 4.431991 4.040208 21.723207 -10.576654 0.204767 -0.554505 -0.272618 8.631508 22.331803 -3.981063 -11.744274 11.551277 -4.651252 -12.099200 18.510322 -0.147212 -1.341095 4.458283 1.760089 -3.682998 -10.874346 16.270255 -8.368290 15.025886 -9.983911 18.110595 -6.844529 -3.344065 3.470140 -13.975597 -4.660105 -15.514459 0.095270 -1.471308 10.635521 -10.224299 -8.538937 -6.913182 -4.696094 -2.935119 16.661531 -13.593263 -1.522358 -0.124320 -2.458603 8.579850 4.406853 -6.105096 -2.791153 -13.227715 3.946011 7.848079 2.655944 -19.665470 -6.281563 -3.928100 -5.540200 -0.175517 1.067835 8.903494 -7.713957 0.884237 9.065538 -1.554314 -4.036063 -2.039674 -16.918567 4.834614 1.799807 5.943528 4.476375 19.529194 13.375862 9.649985 -0.326843 8.446157 -1.929689 -5.206735 -16.498252 4.528078 0.453458 4.952813 7.554648 10.041825 6.458080 6.078070 8.612674 -0.138993 -0.044449 12.758258 5.830284 17.038667 -6.568179 -5.603543 6.323471 0.943045 10.674161 11.894285 4.045361 -10.896901 6.822187 -6.270264 -11.726152 -4.736216 -1.475597 -1.681325 -1.658249 14.169879 10.309512 -2.595836 -2.764113 23.594050 -3.184887 -28.817842 9.274152 5.207191 8.882353 10.940500 -4.018649 9.539062 11.606405 6.424921 6.056088 8.324950 8.676420 -16.441223 1.622053 1.757940 7.552651 12.423831 1.091024 -36.822086 -0.952966 1.936302 16.135506 -0.919516 20.102559 -8.760765 6.054116 1.792973 -0.094384 2.723651 -1.242326 8.572586 -1.345615 1.301862 -23.265767 4.219393 +7.634725 0.757545 2.288877 -5.971175 -1.860455 -1.308477 10.463688 -9.526590 -6.847211 16.675763 2.583743 -7.826564 -3.749707 6.666085 -0.551965 -3.627967 3.764959 2.980640 -3.422549 -3.122821 -6.030876 1.198374 -2.760895 -10.906578 3.194652 -2.175366 4.449568 8.659488 -5.940044 5.860566 0.245892 -5.062213 5.073342 16.086921 5.639267 -2.214696 -8.056989 17.152984 -15.527921 15.728917 -12.314133 -12.047761 21.693527 -1.972774 2.258498 -11.510172 -4.760464 9.492032 4.782037 -11.825320 -4.796313 -2.215536 4.419837 -13.135610 -7.781799 13.727456 -9.660288 -0.034785 7.975500 -13.886808 -16.852219 -2.879541 4.786461 4.430534 -15.945528 -11.617012 -0.068817 -2.517682 -0.958910 3.042539 -15.736599 -13.602069 6.574203 2.945386 -2.606511 1.047373 -7.843957 -5.432731 5.599049 5.278691 -7.799704 -7.548531 1.286126 -4.402116 2.488608 6.580427 14.628049 -21.526954 3.017012 -20.798391 6.529374 -10.013427 10.362718 13.543976 -0.403226 11.623880 1.575016 8.160979 -1.167360 0.202890 7.570053 4.091409 6.159342 0.888911 10.762347 12.930838 -10.161857 -17.686268 -8.341362 -4.652032 6.417982 -2.627488 -13.126782 8.003692 -12.248354 -1.372003 -1.568874 0.647821 -3.618734 15.364674 -17.357419 1.272262 6.298110 -4.226311 9.536746 8.275347 0.791673 2.783870 -3.303220 5.503600 2.992054 4.062165 -0.359542 12.161489 -9.775124 -7.726397 -2.035580 4.612609 7.253281 -11.733840 -13.628975 -18.342892 -4.817479 11.064910 -8.489343 8.023085 20.629619 -7.275252 -9.001177 6.316561 -0.300390 -0.865855 5.797238 4.465659 23.218041 -13.644047 4.560644 1.648355 2.429587 8.934780 18.287851 -7.213064 -13.403288 12.048386 -5.728783 -7.472888 17.517556 -0.764224 -0.270597 4.943615 2.117462 0.712293 -7.088779 14.492058 -14.049672 13.208016 -9.143794 17.452458 -7.885409 -1.329878 3.740228 -13.118712 -7.204690 -11.607029 3.579588 -3.734524 13.075527 -8.713396 -9.349111 -2.417393 -6.934001 -1.044318 18.752068 -11.113425 -2.708268 -0.229338 -5.748787 11.482672 3.352467 -5.891093 -3.165621 -10.465646 4.926669 7.781686 1.409995 -16.646233 -8.151760 -4.836649 -5.284009 -4.601262 1.632248 10.686139 -8.918975 0.849394 8.505523 -0.600068 -3.311400 -3.085880 -9.576018 6.781636 1.009148 5.101147 2.409615 20.916181 9.827690 10.864630 -0.882777 2.578071 -2.012907 -6.493496 -17.916021 7.128330 0.320731 4.807925 7.396951 7.983251 2.800105 7.099242 9.439298 -3.923615 4.107571 12.234850 3.355429 13.851393 -6.466264 -2.330734 6.992061 -3.238001 11.265366 11.869827 1.642857 -13.561547 5.579191 -9.466319 -13.568764 -1.832937 -1.729186 0.043235 -5.702448 9.915489 13.148137 -1.073851 -6.134128 23.311348 -1.760215 -26.905943 9.975951 5.857858 7.799584 15.165302 -6.289331 12.885961 8.690093 11.452247 3.713406 9.145024 9.186422 -16.036327 2.231823 1.791082 6.654070 11.178734 -2.639843 -32.107581 2.085473 4.353186 16.517359 -1.516556 16.716325 -10.082800 10.459998 1.528784 1.788954 4.344454 -3.046829 9.714874 -3.170417 0.967010 -20.156750 7.551193 +32.954689 -49.092716 60.220514 -121.924421 -101.435986 20.152708 2.559526 -79.538681 -26.289472 45.179300 44.085608 -36.323174 -34.415038 116.607136 -0.911032 -90.744049 10.211633 -42.341569 1.661232 -12.037775 -14.354124 63.803550 -33.223409 -23.059199 23.258999 -36.768217 -7.779024 78.380854 27.921763 -25.285242 -16.601680 -65.859472 -29.342039 150.935263 48.677654 3.075871 -23.131888 242.126848 -45.925422 124.831804 -122.296717 -119.429907 141.688880 -39.735934 -22.416832 -99.193573 -82.563691 79.064561 -43.147482 -47.967068 46.076209 -6.608393 46.519672 -58.886765 -13.864448 57.230390 -144.183935 37.129150 64.723525 -73.888192 -60.499253 -39.506378 -24.672612 29.620678 -103.592681 -82.905493 39.617937 20.098317 -37.430477 -15.470396 -41.000564 -105.585774 165.556145 62.292748 -32.296563 28.642011 39.020973 -92.332848 100.213813 -5.441230 -161.368423 -58.310131 -34.675620 -101.545191 125.267321 -13.655561 119.789236 -213.370169 85.391337 -229.794093 59.976728 -110.836636 66.185816 159.095521 -105.681568 94.535869 81.467418 121.248161 56.283147 -21.720122 124.885315 59.944255 13.719261 87.282982 121.222162 56.959437 -59.307596 -78.730192 -101.270444 -106.246433 32.336556 -89.843598 -204.916074 76.401274 -21.316788 -3.365953 -34.115807 33.596856 -24.583751 131.247826 -153.918745 29.387796 57.497555 -39.327944 28.125530 95.837256 -37.189699 -0.206804 -58.509884 119.281282 -83.537419 83.509382 -6.809482 110.671213 -37.339565 -41.506361 -101.498966 31.268657 53.537885 -106.388454 -140.355696 -143.424711 -36.969080 62.473578 -66.763790 156.955549 247.998051 -115.712811 -125.708459 146.994494 44.880329 6.178391 94.310733 41.093374 139.160487 -37.531231 -67.485518 -80.258748 -67.656672 22.701229 26.824684 24.477162 -44.126836 118.067163 -29.088003 -72.355990 223.780615 -33.916621 -86.343808 -4.642881 26.719570 -83.956148 -109.636068 139.513871 -18.753612 120.304326 9.945059 185.618443 -26.851568 -63.528414 41.758609 -89.521659 -26.270520 -111.027407 0.116032 -4.817621 69.105852 -92.357927 -91.700452 -53.552143 -63.111507 -62.945425 84.822657 20.670569 35.444703 63.078843 32.477151 102.802908 157.418304 13.611955 -23.335178 -118.507527 75.342116 83.432609 -15.684495 -102.970345 -41.824497 -33.756524 -28.451473 12.992099 12.612094 101.674562 -92.880414 -27.422790 0.249937 15.133280 18.779468 51.526454 -209.778023 37.175844 25.859058 72.754464 65.466936 122.118495 133.691974 134.942912 73.685452 50.183947 -15.857983 19.075977 -65.129537 -7.560564 25.124963 66.600748 72.564199 131.744525 109.015314 79.329448 129.563188 97.540963 54.452263 132.848140 6.937708 210.149105 -17.648998 -50.179351 5.002814 34.960722 137.334037 195.608091 4.596170 14.542624 81.392327 14.596865 -78.195304 -126.343106 33.588021 -27.609851 17.969978 63.203026 74.029038 3.854786 -48.852061 169.933261 -21.194091 -224.482944 97.465729 50.388417 99.159066 94.156204 10.736885 51.605288 56.238463 -67.716746 115.239065 118.969536 76.273245 -135.401293 2.318685 24.044569 78.411997 50.762472 109.825611 -153.053896 53.906363 40.314666 121.398423 9.814499 91.002884 -102.171388 -41.358930 68.518960 -51.357553 -3.767228 40.947113 45.655311 -75.765705 21.787779 -121.756226 -68.028950 +7.449102 -0.882813 4.670345 -4.514251 -1.580330 -0.791024 9.884698 -7.875630 -5.503718 16.959233 0.198543 -5.984791 -6.490565 6.371935 -0.809396 -3.692552 1.914420 -1.464716 -2.183239 -1.366115 -6.144836 2.496717 -3.351549 -8.688189 4.830220 -0.707466 5.036496 9.632292 -4.539704 5.480819 1.009151 -5.788141 2.967083 15.838438 5.320391 -0.434966 -5.313111 20.124672 -17.225370 17.204676 -12.288932 -16.023092 22.159071 -2.323430 0.216762 -8.832068 -0.784334 10.929430 -4.372643 -10.888653 -1.928056 -0.604186 3.382643 -12.272426 -6.145788 12.204920 -16.053882 2.419132 6.821449 -10.712926 -16.874106 -4.188037 3.278374 3.651302 -13.779768 -10.573551 -0.245068 -4.694917 -3.826397 2.722117 -13.049070 -9.673348 7.676298 2.409866 -3.069568 1.870783 -5.010653 -2.836253 6.625595 0.371712 -9.053650 -7.807579 -0.452639 -8.819256 5.664364 7.468667 12.285599 -20.731370 5.625003 -19.816549 6.885685 -10.948121 8.771785 14.871169 -3.708951 13.891617 2.062647 10.131946 -0.529512 -3.329884 7.519970 4.969814 6.069246 3.596410 9.570106 12.313971 -12.161007 -16.528811 -11.794016 -5.002924 5.601852 -4.790549 -13.870069 6.197123 -9.426015 3.178693 0.696502 1.081302 -6.099166 11.891266 -22.378518 5.411923 3.765069 -3.249548 9.683872 7.859559 -0.373180 2.181308 -1.337117 7.429856 0.731689 4.920846 0.044908 11.833593 -8.366802 -3.600406 -2.773857 4.133701 7.071029 -9.268906 -13.202331 -21.666945 -4.550432 10.434197 -7.528912 10.370362 22.540033 -5.340471 -8.996464 7.938656 -5.486167 2.287324 6.204852 4.123866 18.337433 -10.078558 0.963849 0.789975 0.872667 7.507447 16.871158 -4.253829 -11.816115 12.408020 -4.420775 -0.867805 13.185199 1.188650 -1.457586 -2.929709 1.639577 -3.135897 -7.205634 16.350016 -16.738854 11.695142 -8.688291 17.174777 -6.615855 -1.507101 3.448280 -18.894051 -5.085786 -15.354106 -0.971636 -3.870097 10.394062 -12.705351 -8.612003 -5.328002 -3.687626 -2.588517 16.431759 -11.098036 -2.376397 -0.107214 -2.254732 14.592624 3.595643 -5.962420 -3.016800 -12.377900 3.751348 6.515186 0.170750 -16.342254 -6.586903 -3.681313 -5.716653 1.086418 1.385250 8.475394 -10.253604 0.688713 8.590328 0.637820 -3.207432 -1.006123 -15.269068 4.910216 3.084182 5.157821 7.396005 18.559487 9.949380 9.565176 0.027604 6.073223 -2.126955 -5.220292 -15.508435 5.198925 0.985445 6.021738 7.101851 7.434966 5.683275 5.613454 6.483776 1.366340 -0.266968 12.717720 4.934227 14.278602 -7.242937 -3.926873 6.687134 0.335640 9.686000 8.426156 -2.707558 -9.328747 6.857630 -7.900746 -10.673438 -0.351783 -0.999783 -2.651377 -1.258453 9.299269 10.493376 -1.976315 -3.392588 22.009065 -3.653863 -27.385737 8.840692 5.785626 8.735537 12.979255 -4.155501 9.901789 8.663607 5.721773 7.096312 8.230551 7.687725 -14.271188 6.205221 1.838215 7.333726 12.053386 -0.248431 -30.744014 -0.481596 1.509566 14.772122 0.933775 16.589574 -8.550771 6.514455 0.877733 -2.505953 4.100334 -1.915618 10.042070 1.735051 2.167203 -20.943720 3.653139 +7.786412 0.810724 3.817535 -8.759526 -2.332709 -2.335548 13.649441 -9.923262 -7.356822 19.303413 2.638989 -8.964329 -6.394052 9.172500 -0.376991 -4.859404 4.690098 -0.731841 -4.465887 -2.983107 -6.450060 2.857826 -3.049899 -12.097748 4.807248 -1.891159 4.885641 10.734011 -5.371204 4.946311 0.556632 -6.198782 5.645165 19.041066 5.673812 -1.844381 -9.270157 21.553072 -19.739580 19.494374 -15.746456 -15.514352 26.506121 -2.718806 0.798740 -16.376497 -4.710656 11.653415 3.276502 -13.713877 -4.533616 -1.523269 4.808502 -16.093288 -8.550294 16.660724 -13.967310 1.147828 9.372210 -14.863323 -19.273222 -3.831540 5.155654 4.918938 -18.219977 -13.646538 0.103036 -5.335694 -3.403333 3.691940 -16.920586 -14.280762 8.964245 3.847675 -2.937633 2.396708 -8.462248 -7.484557 7.617527 3.448923 -9.088780 -8.940976 1.283215 -6.114659 4.455051 6.499936 15.307104 -25.670482 3.130480 -23.808521 7.518237 -12.921042 11.321488 16.368956 -0.965757 14.828921 1.036790 8.839656 -1.007794 -1.133528 9.189207 5.835608 9.554603 1.935781 13.091230 15.270158 -12.822697 -21.100644 -10.991842 -5.860486 7.098925 -4.524848 -17.214904 9.169529 -13.283622 -2.863807 -0.094382 -0.050984 -5.089406 17.945715 -21.178774 2.695825 7.307438 -4.753948 9.864370 11.006085 0.669494 1.924813 -3.511571 7.719630 3.320313 7.022824 -0.085911 14.441827 -10.469825 -8.886334 -1.333092 4.323289 7.432468 -12.830074 -15.933104 -22.902224 -5.608149 11.491177 -9.667055 9.900530 25.271158 -7.692483 -12.137014 8.741754 -0.216487 0.249461 5.813868 4.755255 26.192276 -14.668270 3.971941 1.187954 2.327577 10.357627 23.952584 -7.206389 -15.872343 13.838701 -7.586025 -10.289980 18.538552 -0.025965 -0.256883 3.666479 1.911905 -2.211614 -10.096087 17.761983 -16.662831 16.699843 -11.114136 20.589619 -8.918127 -2.255549 4.904726 -16.608752 -7.332517 -16.283150 2.116021 -3.153248 13.754553 -10.978552 -10.777696 -4.544575 -6.765733 -2.041378 21.642785 -16.225868 -2.939226 -0.839163 -4.939303 14.544292 4.278630 -7.935277 -3.161671 -13.446851 6.282951 9.257150 2.918056 -20.640647 -8.692969 -4.991054 -6.790116 -2.772884 1.454472 11.967207 -9.905382 0.333786 11.171717 -0.749145 -4.988288 -3.659133 -15.344158 6.978302 1.827329 6.115456 3.852671 24.427554 11.551486 11.881876 -1.412016 3.507957 -2.881504 -6.919486 -21.557005 6.978154 -0.254778 4.701781 8.846928 10.582958 4.642278 7.892494 12.106189 -1.422749 1.846127 14.846427 4.413578 15.969324 -6.952913 -4.707720 8.721265 -2.923933 12.876418 13.801335 1.888828 -15.208460 8.056836 -9.310308 -15.310318 -2.784547 -2.314559 -1.253248 -4.974086 13.359864 14.062254 -2.484287 -5.244457 27.526116 -2.675097 -32.477594 11.195184 6.857933 10.232656 15.843211 -6.626738 14.016932 10.923257 10.228592 5.155296 9.848781 10.115218 -17.893950 1.956125 2.405260 7.964048 13.928199 -2.074351 -38.338448 0.719367 3.877858 20.091413 -0.618229 20.909786 -10.925229 10.701563 1.762891 2.060252 4.770309 -3.479730 11.339826 -3.869933 0.540599 -24.510768 8.309593 +5.144469 -4.830227 7.971994 -15.306814 -9.228875 -0.931391 11.810256 -13.777849 -6.966248 15.880393 6.893499 -12.044848 -6.457418 16.879116 0.215910 -9.555039 4.799584 1.338875 -3.468089 -0.419716 -5.403217 7.659327 -5.469076 -12.990664 7.398850 -3.422120 4.224488 18.383523 -0.644547 6.294823 -0.030033 -9.617454 3.075203 28.013374 8.246828 1.311998 -6.993361 34.408506 -24.069946 29.179483 -21.036156 -19.955512 34.789157 -4.525129 -2.791573 -19.787916 -13.076613 15.202673 -8.479589 -16.652683 -0.028877 -2.139347 10.083770 -18.551614 -6.855671 19.224218 -23.630946 1.601680 13.198431 -17.569242 -20.452642 -6.511089 -0.018494 4.689486 -25.407131 -17.282391 -0.052233 -4.348059 -3.193711 0.897284 -16.130517 -19.280892 23.074749 5.304357 -6.123368 5.062921 -4.302122 -15.573967 13.324852 5.328844 -18.412902 -12.254505 -1.540922 -13.608324 14.528138 3.543671 21.618481 -36.350152 5.234480 -35.817760 11.962044 -19.525146 14.192832 26.241545 -14.641833 19.648866 6.176548 17.304457 1.644850 -0.053952 16.253201 9.923597 8.158564 6.807403 20.843105 17.766409 -16.317995 -25.204702 -17.949394 -13.198715 9.123657 -13.064317 -33.391488 10.731347 -12.979107 0.034222 -2.605156 0.362053 -5.510746 26.630295 -25.520843 11.634227 10.271717 -6.456551 8.567499 16.577280 -1.347548 -0.147526 -6.514204 14.872814 -3.440951 10.572682 -2.026811 20.505756 -13.352610 -11.357397 -5.745826 4.945418 8.258466 -17.328719 -24.080667 -31.897881 -7.074426 15.195292 -11.820229 13.932678 37.351015 -13.625405 -20.085011 18.325973 4.342177 1.222259 10.819242 7.699708 29.597193 -14.894153 -1.542474 -7.413077 -4.443246 10.072806 24.733505 -5.173877 -18.930788 20.061513 -10.282257 -20.966133 37.491840 -0.772509 -5.220048 -0.381455 2.878615 -10.050087 -16.139161 28.732193 -16.808505 22.475212 -13.251709 31.082527 -9.616812 -8.398160 7.069820 -19.979405 -8.263016 -23.635687 -0.788212 -0.534912 15.883668 -17.276963 -16.616776 -8.637126 -6.303842 -6.193279 24.807057 -13.666255 -2.154711 2.752375 -2.443908 16.696874 11.860355 -7.583267 -3.543205 -18.153636 9.631981 14.104207 0.205546 -27.068649 -8.411915 -7.228932 -8.166925 -3.044426 3.182392 17.243644 -16.885168 -1.421269 10.144366 -0.862589 -3.306405 -0.339041 -32.775657 9.681145 3.551349 8.889981 10.714230 28.508590 21.439550 18.500350 1.905545 9.408531 -3.838884 -4.762734 -25.304470 7.133576 2.264317 7.792633 12.400706 20.281545 12.871087 11.722242 16.072687 7.506493 7.094742 22.809065 8.580163 26.857318 -1.682616 -7.868527 10.328796 1.312026 20.930110 23.539206 3.394911 -10.525318 11.738156 -5.460722 -18.021506 -11.932315 -0.512200 -2.587509 -5.116940 17.340458 12.224089 -2.457951 -6.784310 35.730878 -3.987157 -41.955942 15.305804 9.082942 16.008585 17.067679 -4.973248 15.235937 13.652149 4.078745 16.320243 15.017051 13.875563 -24.271697 -0.085318 3.634730 10.914500 23.103685 7.241164 -42.431903 3.772230 3.016961 25.865766 -0.186046 25.205645 -14.670627 7.559706 3.294782 -3.643064 3.590536 -4.331579 10.153137 -5.908058 1.364639 -32.707911 -0.897485 +7.894722 -4.985153 19.459940 -34.501448 -35.222968 0.297624 5.833490 -18.904855 -8.627129 11.340675 13.912290 -15.071080 -16.037395 37.893620 -5.590927 -29.218780 -2.480072 -13.483236 -5.180695 -4.063750 -5.097760 22.207294 -8.714811 -6.639243 12.324865 -8.442868 -5.587815 24.669935 11.251875 -12.548002 -2.634511 -17.097926 -0.940098 44.632365 8.023507 0.920583 -4.248366 71.195782 -15.461472 34.010951 -39.951643 -37.754794 45.988099 -10.836250 -4.639046 -40.536118 -27.334602 25.876328 -19.610148 -10.886280 13.082626 2.621386 6.654876 -21.060617 0.922242 21.844853 -53.729593 23.031953 20.318072 -21.854745 -17.939155 -9.386162 -11.822382 0.511680 -19.273290 -26.094615 3.725667 6.865965 -13.235745 -1.204756 -8.099596 -27.906798 57.370959 13.066594 -9.413078 14.962410 10.302928 -24.863120 30.398448 -16.881225 -43.597912 -17.292898 0.261644 -15.638802 35.267912 1.108816 27.121363 -62.730164 14.725613 -64.224582 20.540291 -36.146049 18.812190 46.239772 -32.445030 31.834463 21.742064 15.179379 19.943245 4.450219 38.338826 15.598388 13.261922 25.512241 26.468021 19.077410 -18.456632 -24.297867 -31.132146 -35.072526 6.910918 -16.908577 -63.446906 19.420439 -3.855899 5.248218 -4.019928 5.514131 0.430059 34.981658 -42.833894 9.542647 21.500611 -10.884325 8.364224 31.228948 -8.966766 -3.690034 -20.841495 34.881134 -21.929413 26.413399 -1.371657 31.760880 -7.480034 -33.491374 -32.495495 4.718635 9.269855 -29.200471 -38.915474 -42.938500 -6.473718 15.535272 -22.379363 33.446363 75.044106 -32.942150 -40.135479 46.195021 21.377944 6.893411 26.708794 12.782970 44.831665 -10.992360 -20.034380 -19.233749 -21.364888 9.942971 8.479283 7.628903 -19.758492 30.718943 -3.422504 -36.483806 58.539111 -9.841256 -22.240093 3.283240 7.417552 -26.368761 -30.201183 42.184071 7.275923 42.148758 -1.980978 57.252940 -11.821151 -26.829503 12.889832 -23.649109 -5.147771 -30.948538 -1.949823 4.261806 17.394332 -30.441888 -25.805066 -14.161056 -17.753452 -21.501088 24.818911 0.160810 8.924266 14.617294 9.277017 23.152686 42.526260 -1.241112 -0.171806 -40.013839 20.117200 19.151368 -0.979444 -47.097097 -6.333350 -8.142918 -8.588331 11.086729 1.763737 24.819833 -15.798021 -6.930114 5.193925 -5.432575 4.580316 8.732693 -41.335180 7.142173 0.545569 22.997728 15.951803 36.498233 47.035898 37.585255 17.937099 20.895868 -4.290272 1.298625 -8.747956 0.298779 5.420235 16.352457 23.278990 36.445614 33.011008 19.795088 38.163655 27.762640 7.564060 41.561507 6.334229 64.344895 -12.212014 -16.296018 2.727679 11.044442 40.880446 56.118196 -3.968621 -0.168490 24.394069 7.851944 -16.693287 -33.804626 6.734666 -8.050481 -5.309587 29.167280 20.363531 -3.597066 -8.030325 50.467645 -8.170011 -63.559907 32.373301 13.395663 28.808761 14.052404 5.184060 9.289285 23.782315 -20.357039 25.451325 32.162606 26.859751 -42.178071 -9.934988 5.811551 26.107309 16.540678 33.940383 -52.717299 8.658111 16.678063 34.941463 -1.956836 26.356333 -27.527675 -20.541990 17.436916 -9.932456 -5.500990 10.541269 8.426771 -22.138682 5.609617 -30.572493 -22.519097 +8.422020 2.065074 11.242829 -16.312192 -8.908833 -3.617599 18.757828 -16.936848 -8.169875 29.663179 6.537812 -14.121883 -6.384153 17.760534 -3.707259 -6.812078 5.033856 -2.509738 -6.030602 -7.043732 -6.200061 7.809101 -4.993899 -16.415703 7.193145 -4.923491 9.550339 17.559348 -8.211038 5.286934 3.326083 -11.399205 8.689486 29.873135 8.148224 1.993001 -14.869796 31.453239 -26.770052 30.149408 -29.936157 -25.731077 38.430991 -4.175634 3.369617 -29.749340 -7.802387 17.917719 3.780830 -19.940818 -6.015156 -1.684239 9.499894 -24.483813 -11.613013 20.031986 -20.203421 1.320245 14.262987 -25.345757 -27.449294 -6.672330 6.384932 8.345789 -28.960468 -19.800486 -0.020331 -4.789419 -6.050162 6.902105 -19.958730 -20.436484 13.784440 3.114879 -5.546053 4.477057 -10.355259 -14.688604 13.798943 1.772479 -14.783087 -14.894846 2.791630 -9.596690 5.918688 8.040312 23.846096 -40.092438 3.916051 -36.018759 13.738693 -17.435971 17.233099 24.003611 -7.263655 22.510806 3.556907 15.491932 2.691851 -0.930984 15.367761 11.492386 16.950963 5.205823 22.675789 23.766756 -18.288078 -31.019451 -17.754265 -15.124584 12.827396 -8.959903 -28.157931 11.888633 -16.559791 -8.038421 -2.835235 -3.354873 -4.709457 30.902397 -34.219315 3.744281 14.624380 -6.896260 10.056103 14.622227 0.762017 3.223227 -4.953793 13.154386 -0.055491 11.411628 0.696324 22.857128 -17.003348 -16.510647 -4.020021 5.271705 8.310093 -19.373081 -24.845352 -38.002133 -9.095892 17.389187 -14.299136 11.124001 37.384971 -13.084210 -24.184310 15.270132 5.655753 -6.304212 8.992213 7.653355 35.500173 -20.627516 2.540791 -3.218496 0.280669 18.103819 40.377844 -9.210217 -24.358615 22.835430 -13.623877 -26.115045 29.030427 -1.577607 -1.899190 1.019144 3.730489 -8.537997 -13.469217 25.156677 -21.964899 27.396442 -21.596959 32.723392 -15.568243 -7.590303 5.777291 -29.238512 -10.104565 -22.082316 3.349020 -1.286637 23.322146 -17.997954 -17.633453 -9.158904 -12.156080 -3.518751 29.571862 -31.886439 -3.175385 -0.261768 -6.044523 21.174618 8.868154 -10.692174 -3.699500 -17.123216 9.428677 16.587118 11.573027 -32.249346 -12.718916 -11.127857 -11.166331 -7.283039 2.607545 20.111510 -13.331928 1.599144 14.764427 -5.202821 -8.822985 -5.378774 -27.210984 11.013091 -0.733209 12.441003 3.337172 35.085301 19.465212 19.151583 -0.603143 5.819093 -4.094118 -12.631860 -29.043907 11.574526 4.191708 0.893752 13.902201 20.057535 12.184351 13.448481 22.576802 2.944991 2.007999 25.023224 2.033263 25.332764 -13.302885 -2.403052 11.366981 0.928974 20.899118 24.838952 10.945191 -21.499289 12.488377 -11.073137 -21.782365 -6.746288 -4.695443 -1.590385 -5.929113 18.914829 20.995537 -5.843134 -6.928252 40.848034 -3.253302 -45.053263 18.868721 8.390446 15.445840 19.170968 -10.456225 16.193784 17.540061 10.954750 10.624698 15.039975 16.514074 -27.538124 -4.399173 3.352313 15.345448 26.956010 2.446768 -56.994511 3.443565 6.778912 29.565642 -3.980567 33.569802 -18.463354 12.347387 3.617193 1.461006 4.242239 -2.128597 14.122347 -5.407659 -1.302452 -36.313252 8.672390 +39.646361 -51.118387 64.445813 -126.548905 -103.050470 19.300530 13.254166 -87.331984 -31.105316 64.015837 45.605335 -43.935326 -37.173912 127.126683 -0.506905 -92.573301 13.791272 -42.330139 -0.162355 -11.189550 -20.344690 67.164044 -36.804427 -33.074671 28.323398 -36.955226 -2.646284 87.489171 19.988836 -18.693715 -16.187662 -72.128152 -25.533320 167.309470 54.361774 2.951126 -29.840314 262.510579 -66.924077 148.101930 -135.635687 -135.645019 165.878363 -41.907951 -22.849557 -107.859362 -84.870375 90.592346 -42.197488 -63.116955 43.917765 -7.620626 51.499670 -71.985301 -20.797578 69.792563 -157.762999 36.627778 72.635496 -86.714679 -79.122069 -44.170107 -21.651732 34.898855 -122.627212 -93.100722 38.599276 15.670275 -39.475282 -14.188011 -54.690526 -117.453476 176.033554 65.231556 -36.278390 30.243480 32.758849 -97.310421 107.217949 -3.627810 -170.892637 -66.026956 -36.080850 -110.506927 129.805227 -5.562152 135.824681 -235.958120 90.968458 -252.167407 68.452657 -122.151202 75.674184 175.106079 -108.971219 108.543037 83.492638 135.960226 56.856172 -22.738662 132.373549 67.114721 19.998950 89.727037 133.098382 73.352502 -72.989094 -98.378601 -113.628547 -111.419666 39.915135 -93.935018 -218.739218 83.016538 -31.033139 -0.199128 -34.038704 35.277125 -30.751852 146.414881 -174.695301 35.362285 62.442735 -42.790364 38.039294 105.273104 -37.159693 1.993894 -60.477582 126.238375 -82.574183 88.986421 -6.999604 123.558622 -50.578495 -44.498047 -101.827100 35.909568 60.240379 -117.183264 -154.077117 -169.752326 -41.228266 76.391374 -75.411411 166.160944 271.473631 -122.084747 -134.644289 154.550680 43.634565 5.671463 99.145673 44.945874 160.862319 -49.447554 -65.331699 -79.259072 -66.540525 30.340217 52.666256 19.964433 -57.086109 130.551474 -35.671584 -81.271017 244.985197 -31.215520 -87.491452 -6.711475 28.339100 -86.526594 -118.530572 156.911167 -37.827453 130.561183 -2.630071 204.502759 -33.889907 -63.673819 46.281671 -107.881290 -32.608023 -129.089591 -0.031960 -6.849164 82.635496 -104.825757 -100.490611 -57.416630 -68.742097 -65.455176 102.450901 3.608436 31.969497 62.877820 28.502822 118.986971 159.840009 7.608384 -27.094321 -130.822588 78.632138 90.528455 -16.110511 -120.373418 -49.557571 -39.220422 -34.603467 10.241783 14.027641 110.368256 -105.382933 -26.918210 10.287349 14.709066 14.997220 49.717591 -226.890919 42.703534 30.024202 80.384078 72.641783 143.144039 142.935842 146.157245 73.488779 56.735883 -20.029274 12.907824 -85.779685 -0.346779 26.267436 71.445861 80.285921 141.158046 114.979307 85.537732 136.562553 95.551076 55.706905 145.795388 11.840578 223.567151 -22.941436 -54.371951 13.620341 34.647904 148.425310 205.749699 2.841851 2.980302 88.144246 4.092381 -92.555020 -123.693520 33.223713 -29.378679 16.217695 72.796697 85.922950 3.621176 -53.298107 194.011015 -25.377173 -255.707259 105.930424 55.858267 109.394774 111.241811 6.111813 65.035838 64.972287 -57.862758 124.174466 127.734134 85.464396 -151.303716 6.535770 25.481381 84.498508 68.128468 109.658142 -188.206302 55.661605 41.653914 136.775751 9.473415 109.594691 -111.660488 -30.304161 68.698357 -53.871467 0.375382 37.149875 55.733287 -72.553660 23.088593 -146.884318 -62.440713 +6.753125 0.135327 5.969832 -7.430832 -1.078439 -2.320912 13.383424 -9.052320 -6.244369 16.778997 2.026996 -7.004177 -7.237271 4.910540 -0.625022 -4.034810 4.980614 1.327311 -4.057499 -2.956406 -6.440541 1.060123 -3.380862 -11.055016 5.324807 -1.360392 7.191231 11.361196 -3.532478 5.339577 0.472313 -6.015965 5.010839 18.895840 5.396630 -0.741504 -7.986123 18.547101 -14.382207 15.594336 -13.773157 -12.998350 22.752819 -2.779653 1.743414 -15.354368 -2.539468 11.967209 -2.439815 -13.280135 -3.795797 -1.530282 5.633420 -16.173311 -8.164404 15.097335 -13.518656 0.220284 9.311620 -12.335876 -17.840208 -4.181369 5.548957 2.951081 -15.182148 -12.675119 0.257929 -5.934859 -3.975127 4.582405 -16.259956 -12.941670 5.989637 2.245333 -3.510256 2.793114 -6.946842 -7.407160 6.675571 4.932223 -7.528713 -9.608984 0.886902 -6.757919 6.233080 4.372631 10.973953 -22.904728 1.934197 -21.055725 6.279734 -11.997178 11.345226 15.306049 -3.699210 14.215911 0.900693 7.566729 -4.230498 -3.041085 8.656908 4.639897 8.438219 0.767591 13.028658 11.288643 -12.381090 -19.882947 -10.328640 -5.791254 6.106257 -5.685712 -14.563750 7.067033 -13.226559 -1.720818 -0.383419 -0.646337 -5.687910 14.529783 -20.063954 3.897077 6.957683 -4.766240 9.635265 10.140846 0.358080 1.869486 -1.781035 7.776700 2.554984 4.837688 -1.275575 13.507098 -6.196113 -8.154279 -0.996215 2.621097 7.804085 -9.783573 -16.520470 -20.833706 -6.548245 7.495423 -7.843165 6.101718 21.068879 -4.999312 -10.856901 7.579352 -3.605939 2.308202 6.171086 5.368799 20.765749 -14.284687 4.222358 0.017454 2.688723 9.972702 17.927084 -7.934337 -15.026538 14.153232 -7.496179 -5.575743 14.288388 0.012107 0.984670 2.417366 1.624870 -3.166097 -8.964067 17.052082 -15.187691 14.711666 -9.773891 19.015755 -8.855589 -3.314780 3.186045 -14.231155 -4.762595 -13.838110 0.558758 -2.701092 12.428977 -11.592704 -11.704328 -5.097534 -2.964611 -0.260625 19.907315 -14.017830 -4.105738 -2.021583 -3.586319 11.364212 2.587158 -8.727122 -1.655911 -10.919463 5.171325 7.664227 4.104295 -16.724861 -7.008692 -4.947273 -7.250186 -1.894006 2.461950 11.080899 -8.429596 -0.219138 11.418104 -0.805422 -5.737270 -3.486650 -16.947305 6.385509 1.168213 2.413649 4.822454 21.870346 11.564581 9.272786 -2.328056 2.546595 -1.454689 -6.343019 -20.544533 5.283868 -0.987299 5.955311 7.551621 5.856136 5.680610 6.059244 8.094763 -0.814273 1.062019 14.376642 6.766539 12.413542 -4.891517 -3.096027 9.379393 -2.810119 10.942862 9.571237 3.090846 -12.247683 7.704955 -6.523095 -12.343353 -4.994090 -3.564936 -1.146503 -3.808641 10.494243 10.984287 -4.569017 -4.070858 25.113292 -3.565124 -27.247527 9.734526 5.832930 9.039857 12.866694 -5.925731 12.121356 9.214688 8.419442 5.890943 6.552655 9.233629 -15.743465 2.906599 2.243911 7.728957 12.251695 -2.600573 -33.443338 -1.754785 0.580175 17.792157 1.582886 17.897985 -8.962106 10.144770 0.381112 -0.118739 4.880230 -4.153982 10.955653 -0.835013 -2.075461 -23.236432 7.536434 +0.351330 1.175437 0.467576 -1.122923 -1.675339 0.329345 -1.722137 -0.161957 -0.947450 -0.076062 -0.979935 0.392951 -0.902673 0.605991 -2.074651 -1.423634 -1.603493 -0.524050 -1.375228 -0.983766 -1.049797 0.321250 0.241228 -1.446033 1.002228 -1.274468 -0.143864 1.057093 0.194413 -0.914785 0.760880 -0.220175 0.294343 1.763883 -0.704378 0.874862 1.080926 1.304738 1.742428 -0.262316 -1.498860 -1.824313 1.689203 -0.565512 0.972566 -2.073870 -0.483076 0.351035 -2.096588 1.074086 -0.917315 -0.757617 -1.904089 -0.599914 0.714860 0.216885 -2.115548 2.294779 0.416637 -0.149675 -0.679312 -0.479401 -0.208923 -0.780919 1.648198 -1.401097 -1.493480 1.574081 -1.197216 0.596274 -0.478829 0.257640 2.030822 -0.065934 0.269174 0.627117 -0.400501 0.369761 -0.196710 -2.493895 -0.419089 -0.874062 2.010326 1.163020 1.010905 0.912252 -0.495267 -1.089378 -0.439693 -1.011774 -0.270046 -0.678826 0.902181 0.629785 -0.634948 0.552588 0.497549 -1.251434 0.634810 1.509537 1.010210 -0.765008 0.769930 0.009321 -0.178511 -0.018818 -0.038857 -0.866796 0.541815 -1.228191 -0.418324 0.439968 -1.660120 0.479634 -0.066240 1.469617 -0.580354 0.171284 -0.210987 -0.478564 -2.558261 -1.273089 0.573822 -0.486545 0.349828 -0.791503 -0.116489 -0.339354 0.505621 -0.264645 0.049208 -0.558675 -0.019802 0.916381 0.549418 -2.094395 -2.448903 -1.089516 -0.252926 -0.688403 -0.990288 0.004651 -1.009875 -0.115473 -0.512109 0.522295 2.590074 -0.311425 -0.864596 0.615768 0.056502 1.056391 1.667798 1.001398 0.998614 -0.258789 -0.652148 0.289623 -0.593947 1.111085 -2.028992 -1.335433 -0.840083 0.846523 0.798578 -0.308812 -1.142619 -0.570737 0.396016 0.114553 -0.093348 -0.249457 -0.484651 0.966592 0.677305 2.595503 0.481213 2.062792 -1.536936 -1.470905 1.018950 -0.512488 0.821816 0.383755 -0.162513 -0.239148 0.099223 -0.958970 -0.860384 0.723472 0.034481 -0.113455 1.131189 1.047256 0.158026 -0.640550 -0.183566 1.360630 0.974054 -1.266045 1.334978 -0.980315 1.264921 1.100966 0.908409 -2.306610 -0.275619 0.332300 -0.442712 1.051812 0.155583 -0.506239 1.435713 0.623108 0.534293 -1.398322 -0.141059 0.750294 1.922660 -0.229663 -1.666386 -0.099856 0.125734 1.150496 1.830074 -0.005748 -0.427538 0.950040 -0.481509 -1.374717 2.487811 -0.048053 0.102203 0.582526 1.258362 0.902274 0.979663 0.760958 0.581503 0.963896 -0.783614 1.897764 -0.188327 1.871296 -2.641560 0.505762 -0.928049 0.057605 1.537883 1.072796 -1.584009 -0.452810 0.512611 0.688257 1.157053 -1.719983 -1.022996 -0.021903 -1.152451 1.225090 0.583684 -0.197699 0.576763 2.109559 0.009612 -0.426874 1.073328 -0.492109 0.272308 -1.043861 -0.292986 -1.019920 1.286859 -0.667975 -1.835157 0.544586 0.932452 -1.556584 -0.317510 0.118035 1.369904 -1.174987 1.124314 -0.007331 -0.022188 0.645424 0.759199 0.139580 -0.243972 -0.125014 -1.953559 0.820831 0.705395 -0.663520 0.154221 -0.658212 -0.806265 0.369633 -0.015026 -0.980931 +8.036215 -5.587343 11.427960 -25.452437 -14.529115 -6.453230 3.934254 -2.987417 -8.829288 21.591024 5.074258 -25.518028 -26.858337 22.582541 -1.681184 -20.312296 10.904131 -10.428308 5.003132 -4.364125 -4.731588 7.298292 4.773055 -14.065377 9.287964 1.289356 -13.715095 18.920244 34.640117 -9.565135 4.709413 -3.715312 9.162337 29.500776 -0.090560 -17.535594 -7.138393 39.587492 -8.142674 21.012626 -21.971324 -13.227180 41.224671 -4.604716 -1.184103 -31.252507 -11.160992 28.090946 -21.866941 -19.375703 -0.937018 9.197108 10.154256 -28.680275 -24.106650 29.275988 -42.782735 20.989849 15.100086 -7.907699 -8.326255 7.833501 -3.327436 10.687701 -6.652077 -22.680004 -6.500238 -15.620817 -21.968105 -5.722240 -14.596127 -1.375873 26.683304 4.714386 -6.096486 13.390483 3.274224 -7.984856 18.586035 -21.507737 -21.507125 -10.047735 -9.384415 -13.268462 27.113858 -3.418414 12.784026 -36.239215 9.136770 -36.666118 16.280696 -28.952711 9.198772 34.626414 -16.293764 23.551037 2.361160 -8.461980 13.924181 1.746246 28.850751 10.526396 15.422515 15.290175 17.790336 16.846621 -12.405622 -15.936999 -16.663734 -15.026120 -1.818922 -7.333405 -30.290824 20.857139 -10.361588 4.385395 15.903816 -4.287433 -12.265141 16.344967 -16.770320 -1.829983 6.824171 -7.069724 2.568667 26.416236 -3.104565 -7.854927 -6.687918 28.299631 1.757008 16.667261 21.461983 24.391185 2.676968 -29.938896 -5.259258 9.334729 4.273219 -16.217415 -24.357110 -36.322225 1.836939 -10.981352 -16.883893 20.698822 44.402156 -2.604305 -16.859994 26.948929 -1.913476 9.324809 18.059040 2.251602 39.239168 -12.515183 -16.833863 -2.279622 -10.896971 14.920870 25.657049 -1.450261 -14.289270 19.672832 -7.961327 -13.974420 0.013505 4.604813 -3.174021 4.869036 -2.281314 -17.477190 -27.987235 22.169546 -5.733223 23.505808 1.831615 40.812955 13.585522 -25.032827 19.379473 -1.662271 -3.426588 -8.930908 -3.460248 7.564133 -1.926391 -20.419567 -18.344583 -16.472246 6.306981 -15.880315 24.657338 -9.174096 8.106708 13.154841 1.430599 20.749271 5.726154 -15.264479 7.169705 -31.012464 7.306890 10.635884 0.510792 -32.310731 -5.808596 -6.558502 -2.272807 22.386365 -3.510779 22.143543 -14.550559 -10.319954 16.339894 1.332804 -0.920067 -1.735189 -26.788084 7.330086 8.673805 13.009112 16.826535 39.161654 20.131421 16.102702 -7.018958 24.856395 -9.082226 7.733733 -17.608495 -7.485677 -7.267614 3.836294 15.770616 8.031709 12.880047 16.654887 29.743189 13.648775 -17.825333 27.178474 -2.734403 19.529505 -4.580160 -15.195649 14.451598 -3.204198 25.478034 28.658154 -2.982633 -22.505157 21.468060 -7.067641 -7.962204 -21.460911 2.035796 -3.874873 3.157084 22.590555 11.538048 2.096296 -0.821072 20.988242 -4.263957 -46.733687 32.489803 12.225203 16.292634 14.250866 1.903776 12.089102 9.695861 -11.655898 0.873859 22.040892 11.426203 -27.028670 4.516134 9.716507 22.489514 5.923475 18.777882 -53.127590 -14.580035 6.156605 16.500201 6.183034 22.499284 -16.087880 -20.809024 14.309929 4.631987 -2.770715 -14.398235 -0.750627 -19.329597 0.490873 -5.188103 6.448636 +2.955981 -1.982837 11.273683 -18.023213 -18.812058 -0.673576 9.370989 -10.471913 -4.134175 15.583235 3.900088 -7.041804 -9.563578 20.687410 -4.056348 -12.213625 -1.428242 -9.224996 -1.488043 -2.723371 -2.363863 13.696315 -4.769346 -2.460535 5.935564 -5.013964 0.282691 13.913059 0.879812 -2.007058 1.591279 -10.820622 -0.144151 22.371367 5.487316 2.244797 -5.465922 36.773740 -15.733252 26.386817 -24.872655 -23.200200 22.524144 -4.425842 -0.774334 -26.239531 -10.469402 12.246603 -6.009700 -7.344067 5.940394 1.573278 5.579923 -9.698102 1.629155 9.615046 -24.388514 8.177215 9.269350 -14.134820 -9.845408 -5.501821 -5.900622 4.787268 -18.277893 -12.530601 0.324045 0.597729 -6.464950 2.018424 -3.186988 -12.179563 22.334472 7.151428 -8.314693 5.953175 4.857862 -15.660945 15.026795 -11.521372 -22.488279 -9.010369 -1.529802 -9.896678 14.588156 2.047919 17.504766 -32.364454 7.861045 -31.486124 10.261562 -17.723042 8.669116 23.742679 -11.110743 17.758546 9.027114 11.669982 11.867073 -2.418765 15.528269 13.768518 11.408849 13.519099 13.946301 15.674211 -12.292657 -16.499777 -17.987429 -15.203106 5.548250 -10.922152 -31.550663 7.801735 0.890599 1.537187 -1.279910 0.899607 -3.374761 22.769419 -27.260510 5.451630 10.437761 -5.101816 2.827078 13.571268 -3.282359 -0.202071 -7.441418 17.345166 -10.057722 16.343524 -0.197103 16.667147 -11.629964 -9.631666 -12.534689 2.933825 3.635897 -12.683287 -18.302480 -27.074738 -6.752356 12.452100 -10.025062 15.392774 37.940125 -16.936813 -22.381103 21.834860 6.756961 -1.582402 7.879607 6.378703 17.445052 -4.307904 -10.469653 -12.127393 -9.340337 5.639073 28.243643 4.879366 -12.378532 17.280589 -6.150282 -23.183372 23.525291 -3.983930 -11.264298 -7.829893 2.092407 -14.251916 -11.431684 21.343602 -13.484094 21.422159 -10.470469 25.981465 -6.571619 -10.742389 3.887507 -24.188639 -2.157253 -20.371654 0.629424 4.250740 11.062356 -18.040887 -12.314755 -8.655597 -10.646332 -10.318733 11.997517 -17.961964 1.342126 5.746988 6.071154 24.472248 20.350778 -0.561321 -3.269868 -16.169929 11.434892 7.266373 1.957072 -26.827466 -4.601781 -3.282415 -6.809347 1.926651 0.990613 10.913753 -9.958112 -1.177048 3.233023 -5.517646 -1.666250 4.344086 -27.629190 5.078626 2.346982 15.996065 7.414773 16.455096 21.535155 19.289905 8.877795 11.074655 -3.484439 -3.181539 -9.261283 5.580621 9.066830 -2.183567 10.864037 23.897070 16.551998 8.665523 19.777377 16.457599 2.464833 19.267396 -0.722203 30.534263 -7.421879 -8.174002 3.112812 8.021451 17.327136 26.928392 3.803002 -0.582354 13.045956 0.011324 -10.357656 -10.603829 3.114372 -5.278166 1.533353 17.131142 13.363491 -5.126819 -1.867608 24.898375 -4.542352 -33.267967 12.688667 7.874888 14.890438 8.524408 1.233690 5.984408 12.895205 -7.656382 18.143095 16.466550 10.421400 -19.844846 -8.797474 2.731804 9.017392 19.934772 15.751690 -35.387741 -0.461035 6.523937 20.122307 -2.718156 24.128477 -14.376781 -6.024350 10.597418 -4.781789 -3.092391 3.293727 5.295027 -7.680348 4.006992 -18.775379 -10.367843 +1.602499 -0.978390 9.290282 -16.315808 -17.249176 -1.503634 9.070349 -7.896427 -3.886894 11.427106 4.127040 -7.014039 -10.241261 18.226496 -2.574787 -11.598863 -1.536765 -9.406405 -2.426999 -2.105221 -2.656340 12.158623 -4.083081 -1.531320 6.149189 -3.451551 -1.476759 13.236585 3.538974 -4.341157 1.603559 -8.726913 0.088184 19.541921 3.767308 0.863609 -3.618363 33.414299 -14.363892 20.943792 -20.577018 -19.054510 20.720791 -4.044724 -2.863441 -23.545261 -9.856561 11.723265 -7.620979 -5.778803 6.196171 2.616461 4.090022 -9.014263 1.740621 10.497693 -23.214550 9.298082 8.872375 -10.844731 -7.824027 -4.641963 -6.058097 2.436167 -13.982988 -11.488465 -0.200825 -1.733200 -6.017743 0.602272 -2.696220 -10.142139 21.142628 6.218649 -6.428635 6.460428 3.700112 -13.557003 13.372686 -10.235023 -19.773242 -7.582695 -0.439594 -7.849810 13.964783 0.530885 12.921839 -28.219808 4.581150 -27.633827 8.174530 -16.606433 7.335773 21.384926 -10.635719 15.923754 7.043310 6.257711 10.115537 -2.048256 14.392553 10.119510 10.733159 12.417037 11.124928 13.202899 -10.710472 -13.513891 -16.029406 -13.897621 4.304966 -8.308637 -27.673146 7.490223 0.406902 0.436267 0.411736 0.466781 -2.740518 19.149793 -20.253598 5.727506 9.194833 -4.633871 2.432591 14.313452 -2.914568 -1.392146 -7.531525 15.127028 -8.108430 16.079028 -0.755582 14.436475 -7.285247 -11.162117 -11.186403 1.562336 2.807649 -10.839581 -15.979418 -22.700777 -4.590250 7.634935 -9.574253 12.454109 34.093276 -15.323162 -19.715523 20.562046 7.242694 1.362161 6.483649 4.916774 16.554485 -3.458744 -9.671566 -10.095004 -9.229551 5.034954 22.518496 4.571582 -10.863531 13.824368 -4.384318 -20.440298 20.286063 -2.526676 -9.924407 -3.772545 2.083746 -12.754946 -12.590175 19.425028 -7.145364 19.371099 -6.615826 23.154489 -4.941562 -10.796907 4.872380 -16.735416 -0.977128 -18.345684 -1.425775 4.955500 7.989169 -14.406784 -10.560420 -8.686257 -7.715909 -10.419916 9.859042 -12.905488 1.718536 4.783110 6.208114 17.628867 18.764112 -1.298131 -1.331451 -16.185189 10.229265 6.147569 1.486071 -24.358215 -2.850254 -2.140362 -6.039157 4.568185 0.252417 9.404508 -7.541764 -1.386569 3.806884 -4.373068 -0.922376 3.937746 -24.596660 4.301638 1.259544 12.929289 7.471123 14.664030 19.564053 16.626440 7.621157 10.756390 -3.250050 -1.017863 -7.383208 3.152014 5.782467 -0.119332 10.483340 19.771482 15.337936 7.437329 17.592618 14.181582 0.391015 17.221922 0.923475 27.997077 -5.135897 -8.632913 2.935291 6.658067 15.315032 23.870366 2.591535 -1.443904 12.231944 1.895500 -8.171514 -11.540341 2.531280 -4.968840 0.841822 16.287326 9.914489 -5.084715 -0.710441 21.948202 -5.225397 -29.377110 11.575362 6.759008 13.404487 5.029831 2.346977 4.304271 12.067767 -9.168841 15.151376 14.808263 9.777501 -16.943260 -7.380237 2.569596 8.537027 15.110024 14.437256 -31.897384 -1.163644 5.660426 17.109503 -1.380756 20.436911 -11.822976 -7.123759 9.479867 -3.360730 -2.624768 2.627572 3.847954 -8.364500 3.679809 -15.634111 -8.985953 +8.559362 -0.999718 10.187765 -16.897932 -5.976668 -4.582411 22.982017 -12.003577 -8.440517 28.283547 2.815683 -12.503442 -14.318849 17.332674 -0.009907 -9.652591 5.896809 -12.108077 -5.892246 -0.717168 -8.563105 8.930786 -5.019065 -14.397623 11.162432 -0.728324 6.146641 19.423812 -5.779973 1.001037 1.947470 -10.295283 5.256681 30.172973 7.046286 0.361369 -10.822121 36.400472 -29.787986 34.585713 -26.675981 -25.266940 38.317177 -5.079480 -0.775299 -26.840367 -3.526872 20.641659 -4.954337 -20.232743 -0.575143 1.213295 6.543604 -23.927089 -8.850456 24.192227 -29.070433 6.068488 14.562652 -16.785080 -24.313817 -6.911423 2.428118 5.151004 -24.717102 -20.372693 -0.583188 -12.239555 -10.568144 4.699196 -20.371339 -16.297850 14.900296 7.267205 -5.331973 6.928738 -8.108782 -12.713369 14.870687 -6.565480 -15.822332 -14.355137 0.267387 -12.762678 13.498619 7.703168 17.522471 -38.984088 4.280785 -34.806682 12.000165 -21.914370 15.153060 27.795440 -4.944548 25.279731 1.586892 10.977138 0.685184 -5.267284 15.476075 10.949703 16.487096 7.558614 19.763433 21.710813 -22.345025 -30.506407 -20.013995 -10.823115 9.359532 -10.343135 -25.864701 12.734440 -14.409312 -1.668218 3.665978 -0.836166 -9.942793 23.961398 -35.359874 6.986301 9.603094 -6.286269 12.499018 18.444446 -0.242639 -0.295193 -5.410385 15.715669 1.944958 15.739926 -0.815868 22.867913 -12.373334 -11.249492 -2.243892 3.253870 9.413460 -16.537652 -24.982932 -39.038463 -8.594253 12.316013 -14.932882 18.086224 38.979437 -11.343378 -20.903884 18.701162 -1.231413 4.599511 6.791748 6.507745 29.560079 -17.346211 -0.587371 -1.851142 -0.639098 14.271215 38.541015 -5.840933 -23.350719 21.485141 -11.095443 -15.556638 20.823952 3.694302 -2.456634 -2.382347 1.253025 -11.342909 -17.897101 28.456367 -25.064615 25.523879 -16.635225 32.459396 -11.784468 -6.614852 8.540744 -28.888266 -5.491049 -29.059211 -3.593382 -0.675254 15.394214 -21.789774 -16.611031 -11.428836 -5.437134 -7.131247 27.820844 -29.640514 -4.224983 -1.468614 -0.932188 26.801139 9.118931 -12.977243 -2.007461 -21.341478 10.990673 10.866783 6.341458 -31.620836 -8.892032 -5.238730 -11.865880 4.796961 1.450760 15.634842 -15.248839 -0.775327 18.631234 -1.039160 -8.129801 -2.694385 -32.887555 7.741445 5.426190 9.382420 11.982106 32.938726 18.619860 16.283247 -1.389465 8.925810 -5.809535 -7.262435 -30.420725 7.006593 -0.267388 5.628727 14.327906 17.408008 13.710392 9.558581 19.017536 7.771993 -4.538054 24.472442 6.894760 23.949074 -7.580024 -9.653568 14.356911 0.092065 19.219759 18.394752 -0.262753 -17.749379 16.599543 -8.512822 -18.932900 -4.267192 -2.803186 -6.031239 -2.388314 20.647480 14.878254 -6.796837 -3.047527 39.927495 -7.812803 -46.314807 15.656078 10.614405 18.339873 16.476743 -5.048854 17.021082 16.302606 2.203862 12.829567 13.434625 14.467883 -24.364137 1.806044 4.016419 11.507306 24.550314 3.173234 -55.315948 -6.030815 2.518079 29.738625 2.344701 31.703047 -13.630147 8.855761 3.637883 -0.037510 5.347922 -5.041538 14.554550 -3.285842 0.669502 -35.140336 6.960495 +3.075336 -0.188534 3.630317 -6.943054 -4.163544 -2.232357 4.303302 -2.165401 -3.843679 7.981534 0.885289 -7.687730 -9.902240 6.607576 -0.662020 -6.376521 1.518598 -4.711476 -0.201629 -3.160533 -2.169929 2.329232 0.474912 -5.658386 3.149544 -0.082815 -1.983740 7.091048 8.495819 -1.099187 2.213745 -2.088911 3.883317 10.159847 0.555116 -3.505126 -3.826579 14.653757 -6.343373 7.633486 -9.767507 -9.475013 16.985621 -1.756503 -1.604043 -12.139219 -2.297693 9.024416 -7.982244 -5.371482 -1.742028 2.873529 1.823668 -10.122048 -7.244677 10.460547 -15.916136 7.866603 4.537802 -5.346593 -6.881681 0.587196 0.475531 3.314151 -3.098840 -7.103351 -2.055711 -5.811612 -7.023025 0.311523 -5.993280 -1.791035 9.270856 1.843625 -1.444274 3.997300 -1.077864 -0.923902 5.860126 -6.244624 -6.149154 -4.279299 -0.575761 -3.165307 6.556716 2.317207 4.664288 -13.731599 1.111534 -12.575157 5.765637 -10.096449 3.941057 10.499502 -3.928575 10.453917 0.553567 -3.316908 3.621663 -0.763773 7.921018 3.062608 8.564028 5.000329 5.297036 7.472367 -5.424077 -7.864311 -7.013772 -4.985568 0.542703 -2.345460 -11.640187 6.024150 -4.919930 0.289298 4.691719 -1.420684 -3.929097 5.246677 -9.196219 0.885075 2.675081 -2.232311 3.576225 8.145145 -0.716611 -0.862435 -1.534385 8.071603 1.182231 6.739617 5.297369 8.176976 -0.418991 -10.412862 -2.951506 3.233222 1.991830 -5.731139 -8.132548 -13.246078 -0.767250 -0.234852 -5.478689 5.724528 16.525187 -1.440647 -7.309323 8.258079 -0.876421 4.637299 5.752854 1.473042 15.067280 -4.794998 -3.375959 0.688705 -1.839504 6.036509 11.969007 -1.367913 -6.506910 6.959369 -2.647453 -3.488241 0.112975 0.460416 -0.821510 -0.045682 -0.266591 -5.932936 -9.094188 8.990906 -3.027194 10.273272 -2.276384 12.912683 0.135281 -6.785191 5.537919 -6.421267 -2.791075 -5.981293 -1.095305 0.387804 1.807238 -8.381980 -5.985124 -6.599045 0.438054 -4.628505 9.886604 -6.831901 1.270631 2.842842 0.135544 7.520098 1.766241 -5.539392 0.685035 -11.670120 2.082307 4.959340 2.048130 -13.619668 -2.656568 -2.073793 -1.896485 7.234907 -0.508126 6.728447 -3.523249 -1.636146 6.235603 -0.298722 -0.737268 -1.402662 -8.997474 2.548557 2.234362 4.426712 4.294907 14.081770 7.786280 5.029860 -2.072415 8.663111 -2.274097 -0.513082 -5.752759 -0.942775 -1.145606 1.172458 5.486899 4.037084 4.356576 4.935658 9.830558 4.440317 -7.154766 9.097881 0.712807 9.133756 -5.197086 -5.317084 4.407909 -0.145008 7.873696 9.268712 -0.048754 -8.398101 6.947487 -3.477460 -3.399338 -6.104929 -1.024923 -1.835974 0.247014 10.465444 6.062844 -1.019752 -0.125480 10.758259 -1.242197 -18.309127 10.617102 4.339511 5.651267 4.628383 -1.444088 2.943818 6.946688 -1.930710 0.295094 6.829496 4.330518 -10.026742 1.699632 2.354329 8.110212 3.582167 3.823243 -20.900472 -3.948515 2.974123 7.728364 1.730379 10.430260 -5.642064 -4.606730 3.066197 1.306527 -0.282151 -2.799459 2.118977 -3.942400 0.485959 -6.440298 1.815710 +5.441618 1.099420 6.481937 -10.355492 -4.117937 -3.286563 15.481358 -9.371962 -6.381031 20.176464 2.762797 -8.692849 -7.682337 9.429898 -0.422974 -4.753972 3.701733 -3.176513 -4.974432 -2.773987 -5.583479 4.586648 -3.253637 -10.979892 5.954724 -1.325089 5.858987 12.256018 -4.460475 3.370659 2.467646 -7.207887 5.851321 19.821149 4.956082 -0.065775 -9.850474 21.905726 -19.471165 20.458203 -18.292938 -16.490739 26.837796 -3.273265 0.238251 -20.205671 -3.679185 13.550827 1.027920 -15.540467 -4.041604 0.091907 5.716469 -17.440832 -8.427081 15.556793 -15.295611 0.940114 10.279889 -15.571921 -19.538302 -3.835569 4.848731 4.923453 -18.990435 -13.331717 -0.960076 -7.905166 -4.314192 3.547526 -14.513950 -12.914437 8.550399 3.140477 -3.541616 3.852715 -7.715255 -8.534208 9.079342 2.015996 -9.078686 -10.036903 0.983997 -8.061385 5.287113 4.983032 13.928726 -25.940738 2.567660 -23.390002 7.876337 -12.814744 10.755913 16.759629 -2.520689 16.508089 0.970033 7.996728 -0.687494 -3.173569 9.326067 6.431158 12.593281 3.811864 14.173493 15.611109 -14.378852 -21.898816 -12.990375 -8.372782 8.719116 -6.360930 -17.146139 8.568623 -11.103316 -4.487816 0.889572 -1.713313 -5.238918 18.826901 -21.686319 4.851561 8.805250 -4.759650 7.767353 12.100811 0.511873 0.942903 -2.700028 8.348240 1.525630 9.363706 0.701035 15.417402 -9.368209 -8.191394 0.261036 3.346086 5.921514 -11.375787 -15.862506 -25.414120 -5.975181 9.672911 -9.889952 7.206791 25.750046 -7.718770 -14.888869 9.974780 0.623249 -0.181859 3.595366 4.924916 23.718329 -13.509557 1.259085 -1.049622 0.410798 12.108778 29.005692 -6.005870 -16.310666 15.149473 -9.301265 -13.360960 16.898318 0.290577 -0.420565 2.177418 2.343703 -5.725047 -10.920728 17.435890 -15.958966 17.740119 -12.939841 20.642788 -9.141179 -3.185632 4.279796 -18.334843 -6.184345 -17.732388 0.176805 -1.114499 13.314843 -12.078719 -10.948491 -6.973076 -5.908142 -3.129438 20.544088 -22.509884 -2.858184 -1.106092 -3.079518 14.284666 4.107092 -8.744592 -2.933329 -12.993237 6.396884 8.902607 6.169572 -21.000470 -8.565443 -5.755238 -7.967872 -1.115397 1.293992 12.239940 -8.755732 1.106872 12.799852 -2.446682 -7.140624 -4.008177 -20.388225 6.372414 1.476489 7.412389 4.268492 24.114948 12.412020 11.552930 -1.689848 5.729889 -2.889339 -7.042516 -22.589153 5.739169 -0.381904 3.100332 9.871788 10.494867 8.067275 7.947411 13.435708 1.039739 -0.391979 16.331904 3.532604 15.834176 -6.250950 -5.236750 9.689409 -0.098217 12.466215 13.245346 5.558877 -14.457496 9.428303 -8.107987 -15.053663 -3.825003 -2.559156 -1.956075 -2.434113 14.505476 13.526681 -4.457911 -3.431715 27.478702 -4.168431 -32.088255 11.219196 6.318750 11.618002 13.513978 -5.790553 13.276057 11.720289 7.936490 6.858321 9.488409 10.090542 -18.846708 0.581163 2.637608 8.782202 16.603280 0.307156 -40.908490 -1.839950 1.441012 19.787774 -1.547663 23.545677 -10.871267 9.698149 2.747040 1.554350 3.927464 -3.398518 10.357008 -1.760237 -1.176483 -26.353319 8.147423 +6.933224 0.444859 3.139257 -6.333393 -0.833659 -1.738553 12.707355 -9.046656 -6.587352 17.583721 2.399253 -8.042833 -4.674663 6.082389 0.582119 -2.428671 5.782962 1.939208 -3.503215 -2.723130 -6.966900 0.968786 -2.980118 -11.921778 4.087374 -1.999211 5.206327 9.170993 -6.770941 5.718059 0.780836 -5.482021 5.524827 17.106621 5.859926 -2.150509 -8.870702 17.794880 -15.647721 18.041071 -11.874279 -11.565582 22.680002 -2.186183 2.469909 -11.194109 -2.822551 10.582033 4.800505 -13.776563 -4.716257 -2.163799 5.483313 -14.483007 -9.130865 14.935317 -8.496073 -1.315281 8.633506 -14.460634 -17.815278 -3.231047 4.741053 4.899951 -17.646438 -11.538152 0.107164 -4.205493 -1.519454 3.081910 -16.871298 -13.226042 5.266516 3.695294 -2.516191 1.421402 -8.451962 -5.419541 5.661195 6.735921 -7.925791 -8.334833 0.711171 -6.058945 3.007420 6.151259 14.749383 -22.173142 2.241374 -21.934038 6.943167 -10.158509 11.026896 14.644362 0.779097 12.870719 0.947760 7.744848 -3.252204 -0.541065 7.575352 3.766000 6.457178 1.007989 12.380743 13.763534 -11.720799 -19.822642 -8.669425 -3.904371 7.074531 -2.598568 -9.673576 8.340677 -13.883747 -1.776178 -0.720873 1.454158 -5.243833 15.103486 -16.514023 1.056169 6.561563 -4.668116 10.927041 8.847621 1.180633 2.943349 -2.480779 6.052540 3.387669 4.669187 -0.849349 13.244689 -7.983198 -5.727479 -0.278311 4.195903 7.823284 -11.455954 -14.527144 -19.781914 -5.672447 10.909021 -8.818198 8.416731 21.093039 -6.930562 -7.977237 6.410901 -2.374480 0.736193 4.566944 4.737395 23.109541 -15.013186 5.556060 1.852957 3.102779 9.669755 23.066494 -7.616055 -14.556089 12.988600 -6.273512 -5.046544 17.017993 0.217724 0.226384 4.486235 1.903916 0.440323 -8.836167 14.894229 -15.060711 12.638561 -9.364733 18.876961 -8.229437 -0.964472 4.130839 -10.554527 -6.823877 -13.335250 3.629373 -3.032285 13.017805 -8.737203 -10.222016 -2.789604 -5.703027 -0.645946 19.192087 -12.405393 -3.414730 -0.853852 -5.952242 11.835282 2.474356 -6.840310 -3.917133 -10.756062 4.610027 6.524051 2.486693 -14.917099 -8.531366 -4.436617 -6.385694 -3.816702 1.907540 10.994537 -9.450695 0.878425 10.274592 -0.320236 -4.767694 -3.202901 -13.740388 7.109946 2.852190 3.690129 3.649068 22.207946 9.464247 10.733028 -1.704541 2.569944 -3.186652 -5.483573 -21.383044 7.191488 -0.535818 5.705427 7.555612 7.606374 3.418920 7.525719 10.027622 -5.358511 3.395574 12.474085 3.464107 12.412460 -6.109859 -2.775071 8.799536 -3.607926 11.359908 10.756810 3.008170 -16.153872 6.677699 -10.150099 -14.826957 -1.564569 -1.899500 -0.294948 -3.842449 9.580131 13.481899 -1.263529 -5.942176 24.841812 -2.723665 -28.618976 9.749261 6.173762 9.169318 16.162059 -6.481905 14.554615 8.512894 11.445732 4.763839 8.818673 9.569160 -16.014329 3.201654 1.910343 6.214287 11.646237 -3.678792 -34.232262 -0.575343 2.596993 16.562567 -0.364017 17.838326 -9.895954 12.066230 1.248765 1.131204 4.834430 -3.706291 11.130273 -2.217275 0.787222 -22.278933 10.234520 +7.761086 0.553761 3.809387 -6.937255 -0.482461 -2.302200 15.211933 -9.763662 -7.180565 18.406014 2.832225 -8.909231 -6.098350 6.365417 1.321485 -3.573141 6.934663 0.600453 -3.563607 -3.322939 -7.556914 1.134424 -3.117628 -13.063266 4.834654 -2.194383 5.890809 11.632199 -6.588790 5.764915 1.260184 -5.974854 5.851944 18.518957 6.193676 -1.261944 -9.744769 20.167938 -18.575032 20.117690 -13.154515 -13.319964 26.407863 -2.508641 1.431223 -12.972902 -2.015623 11.698967 3.046516 -14.295018 -4.292457 -1.860832 5.913536 -15.955380 -9.837003 17.056899 -10.094666 -1.040548 9.215276 -15.968383 -19.889954 -4.363665 3.898690 5.065296 -19.193816 -12.792871 0.496208 -6.313996 -2.401863 4.359553 -19.034310 -13.002127 6.556089 3.959585 -1.806865 1.591779 -9.169468 -5.356137 6.011784 6.821189 -8.522441 -9.401127 1.052477 -4.817571 3.215285 6.646116 15.573686 -24.671059 0.762398 -23.928903 7.946788 -12.025551 12.054720 16.267381 0.263378 15.127341 0.374559 7.435018 -4.047923 -1.417001 8.504103 3.884307 7.920030 1.120170 13.969840 15.342541 -12.591920 -22.391788 -9.892705 -4.108189 7.630499 -2.554391 -11.885261 9.177160 -15.827734 -3.421332 -0.457981 1.162079 -5.388420 15.826370 -17.575762 2.187618 6.915431 -4.763331 12.077666 9.741459 1.268914 3.382471 -2.549108 6.962380 4.543990 6.925066 -1.229337 14.625072 -8.315329 -8.398724 -0.275317 3.721130 8.645732 -12.525912 -16.130940 -22.396944 -5.748045 11.671394 -9.615509 8.060013 22.958618 -7.177408 -8.815993 7.401160 -1.828991 1.190190 4.496375 4.530558 25.230158 -15.975116 5.934675 2.861407 3.795302 10.742119 26.204029 -8.331741 -16.594100 14.167432 -7.373936 -6.155340 17.468902 0.842874 0.421544 4.766520 0.834826 -0.015780 -10.740061 17.088780 -15.584365 14.821555 -10.921172 20.707984 -8.609342 -1.563244 4.999042 -11.959496 -7.021564 -16.136139 3.184646 -2.690510 13.715961 -9.991940 -11.590873 -5.041869 -5.577718 -0.642697 20.870264 -15.382321 -3.916094 -1.217812 -5.833816 12.064573 2.986447 -7.670063 -3.882949 -12.655942 5.168296 7.752230 4.097700 -16.642775 -8.755432 -4.409744 -7.464698 -4.105752 2.156512 12.012705 -9.857051 0.794289 11.622868 0.242310 -5.500645 -2.840413 -16.116520 7.659332 4.243887 3.385514 4.052044 24.532710 9.864374 10.925292 -2.116248 2.736914 -3.276348 -5.346863 -24.158836 7.696787 -0.558014 5.954662 7.861223 8.099263 4.355077 7.920803 11.560398 -4.658602 1.819329 13.550813 4.721595 13.713933 -6.907863 -3.193180 9.898008 -3.582042 12.604865 11.205939 3.869678 -18.378198 7.521916 -10.493422 -15.466437 -1.875160 -3.358019 -0.634378 -4.711430 11.088155 13.172539 -2.179190 -5.766501 27.739665 -3.142472 -32.075141 10.499941 6.653749 9.472714 16.992754 -7.212995 14.078331 10.350959 10.717409 5.227011 8.897923 10.711228 -15.981294 4.039473 2.119713 6.969765 13.053880 -4.130575 -37.601887 -0.917240 3.585399 18.960402 0.910065 20.449259 -10.152522 13.066220 0.477945 1.170900 5.548396 -3.872394 12.185439 -2.274444 0.336809 -24.928331 10.949590 +15.671398 -8.975700 14.444264 -22.645913 -16.554777 2.027346 14.187966 -30.929605 -13.132694 42.224809 12.212999 -20.754008 2.236642 29.660934 -3.595302 -11.052828 6.990763 8.686057 -3.184324 -2.618165 -9.876070 12.354148 -11.674201 -27.068282 9.859355 -7.814606 12.151567 27.154192 -15.537270 20.286246 0.150812 -19.535205 5.305708 50.432097 19.292345 1.716247 -15.918695 57.387148 -45.648516 50.716691 -39.877421 -41.824612 59.882660 -7.281200 5.592837 -25.227172 -21.541496 26.390343 -2.087123 -33.570494 -5.270713 -8.022736 21.587354 -32.806421 -16.916369 26.387526 -36.449380 -3.951760 23.331646 -39.567659 -44.349210 -10.410280 6.474974 15.535876 -50.727963 -31.147838 0.822009 3.246251 1.531644 1.658444 -30.409968 -39.376016 33.085317 6.961839 -10.824958 4.138963 -10.693282 -26.416194 23.975846 11.872094 -34.212032 -23.044234 -4.887812 -30.567511 17.937914 13.852505 50.112259 -64.394449 22.588148 -65.754816 24.146692 -28.110242 26.502611 44.197236 -23.422361 31.192335 15.362278 48.681274 9.125749 1.220062 26.911285 20.246615 9.582894 11.281208 36.900091 36.964875 -30.164658 -44.333903 -32.253954 -24.259662 19.912847 -24.458471 -53.961307 20.744141 -22.564504 2.501925 -10.745226 -0.791630 -8.730641 54.697129 -57.716780 16.425386 18.311286 -10.505417 15.776707 20.965063 -2.030172 3.925850 -8.999665 22.916960 -9.275997 9.619326 0.825953 38.657787 -36.123679 -13.595143 -11.116158 16.373023 17.512673 -35.932809 -41.628275 -62.332547 -12.387158 37.192964 -21.977737 31.199703 65.390017 -26.616048 -35.369705 26.827451 4.731002 -12.774316 23.095678 15.135518 52.820671 -29.361901 -0.999141 -12.485320 -6.552693 19.756381 45.510466 -11.138092 -32.750015 40.984057 -19.075275 -32.292157 71.885406 -0.516510 -9.501197 -7.403184 9.594449 -12.905495 -19.209860 47.009272 -41.073377 33.894276 -27.282844 54.920666 -20.162244 -8.431397 9.448996 -48.893516 -21.376370 -36.899941 3.627815 -5.119976 36.136384 -31.772728 -28.214399 -10.583129 -19.020605 -8.407822 47.062571 -27.367229 -2.676148 8.098925 -11.269910 38.158362 18.569832 -9.688344 -11.003566 -26.381975 15.463595 26.614124 -1.021818 -46.701947 -24.335385 -19.010246 -13.158203 -13.805723 7.149921 36.155518 -35.398810 1.315279 15.982374 -0.564025 -5.951567 -1.430012 -50.533653 19.826177 3.840811 23.073077 15.807102 52.998882 33.494937 39.412915 4.926282 14.006560 -8.348787 -14.702364 -43.353774 18.085484 9.967789 10.589299 21.926116 37.969881 20.027316 25.065246 26.631808 8.464733 19.129169 42.496352 6.312473 45.430832 -12.710901 -5.584090 16.439465 4.966371 38.044665 40.242091 5.367368 -20.960774 15.583849 -20.641672 -37.264210 -11.249229 3.124941 -1.431804 -6.290095 20.114722 32.663211 1.313670 -18.657995 62.419857 -3.137407 -75.068239 29.728843 15.492249 28.229494 39.936789 -13.208541 32.748993 18.516138 19.506245 30.463127 31.174968 25.286199 -47.863280 1.165245 7.387189 22.841814 45.235563 11.788747 -76.492515 16.012424 6.733964 41.278489 -7.320597 45.779683 -34.190084 19.124495 5.849922 -8.228341 8.067767 -4.722753 20.265304 -5.012350 6.429871 -59.013942 1.569075 +5.997678 0.547413 5.680928 -7.643939 -3.377003 -1.838580 11.282977 -9.028394 -6.336501 16.019288 1.841079 -7.178343 -5.141995 7.985291 -1.276600 -3.807619 2.939177 -1.748571 -3.501453 -3.681672 -4.366734 3.368470 -2.727016 -9.957174 4.295323 -1.918582 5.396373 10.031093 -4.979418 5.663215 2.154146 -5.974768 4.734811 16.515783 4.771182 0.145580 -8.955963 18.206465 -15.528370 16.877658 -15.534671 -15.139479 23.408600 -2.540515 0.106559 -15.392537 -3.341062 10.491070 0.001740 -11.422514 -3.705756 -0.447069 4.510462 -13.813870 -7.319375 12.804272 -13.190825 1.296847 7.735684 -14.950183 -17.988847 -3.392017 4.670856 4.614230 -15.348450 -10.592294 -0.381699 -4.799082 -3.381636 4.085429 -13.424195 -12.036479 7.841734 3.095892 -2.874652 2.560271 -5.914994 -5.862048 7.326237 2.160936 -7.654592 -8.508044 1.464482 -6.433200 4.250345 5.785368 12.863088 -22.559642 2.779549 -21.117330 7.882339 -10.460810 9.606138 13.305125 -2.377179 14.086257 1.453524 7.070709 -0.033518 -2.264715 7.612507 5.575523 9.963827 3.414103 11.766584 13.341220 -11.141650 -19.182312 -11.083938 -6.144812 6.813817 -5.478050 -15.317423 7.476861 -11.600118 -2.650960 -0.183859 -1.008617 -3.706233 15.701591 -19.379674 2.818113 6.711306 -3.765017 7.423730 8.655735 0.219705 2.434054 -2.019564 7.027797 2.017608 6.568163 0.748253 13.106759 -8.728700 -7.385779 -1.647755 3.672818 6.033617 -9.714780 -13.318399 -21.314169 -5.455048 9.333369 -7.907346 7.458215 21.445874 -6.042318 -12.775176 7.968806 0.854987 -0.266575 4.634818 4.509174 20.702601 -12.342382 2.235524 -1.030198 1.775421 10.502061 22.637905 -5.104975 -12.603540 13.908186 -6.865686 -9.395617 15.411093 -0.346937 -0.830597 2.232592 1.923222 -4.219723 -8.271891 14.673198 -12.251833 15.374397 -11.689660 18.317970 -8.694843 -2.990968 3.005109 -17.953449 -6.356785 -13.940307 1.636565 -3.298112 11.868249 -11.472014 -9.343284 -5.504418 -5.581614 -2.223994 17.913105 -17.257648 -1.985657 -0.378824 -3.117547 13.085095 3.609772 -6.587296 -2.908724 -11.026171 4.592330 9.131745 5.485508 -17.793153 -7.374195 -4.049759 -6.113495 -2.109214 1.450540 10.686842 -8.208463 1.294954 9.194841 -1.821041 -4.857287 -2.825519 -16.464016 5.628830 1.185440 6.234980 3.235502 21.270349 11.123322 9.563821 -0.836259 4.780611 -2.440184 -7.123332 -18.398059 5.160198 1.334466 2.297924 7.746942 9.711353 5.437807 6.630404 10.652855 1.360213 0.599062 13.806939 2.505790 13.998378 -6.876829 -3.448438 6.751333 -0.144326 11.423926 12.083901 4.185660 -12.114511 7.347239 -7.130547 -12.011121 -3.732851 -2.008154 -1.507533 -2.474041 11.683106 12.535746 -3.224885 -3.358247 24.777597 -2.384019 -27.977799 9.856474 6.267653 8.832073 12.396578 -5.503714 10.321835 10.140130 7.198464 5.097959 8.051273 8.271786 -16.453294 1.488421 1.958781 7.785091 13.601331 -0.386696 -33.368541 -0.051569 2.813847 17.679268 -1.426799 19.918016 -9.608498 8.318371 2.105207 0.818310 2.923734 -1.474387 8.974625 -1.837183 1.037649 -22.186215 5.218750 +27.347315 5.459461 1.320841 -2.710264 0.658204 -2.255746 25.774820 -23.941714 -21.916222 47.868539 8.035500 -17.473329 -0.503297 11.107526 -1.604968 -4.987452 11.055803 22.644905 -8.087811 -9.897320 -16.478797 -3.088396 -6.847222 -34.831846 7.226356 -4.703849 12.701219 18.588981 -29.349746 29.317390 -1.077287 -9.731248 16.734425 36.325846 14.786659 -14.527681 -19.674933 39.240636 -52.000289 31.853823 -22.346258 -33.439625 60.097678 -3.608427 9.517867 -14.266162 -12.742199 20.483130 24.686348 -32.074802 -15.300056 -8.415527 13.275980 -31.984875 -22.403861 35.570440 -18.718850 -7.090147 18.724041 -41.619822 -50.960242 -7.455163 15.632342 9.399482 -44.845809 -27.386917 0.303804 -1.798811 11.003028 7.692550 -47.164641 -40.094632 11.999297 3.340572 -1.567498 -0.800851 -22.871949 -13.329604 10.844765 33.533169 -19.607922 -17.433225 3.146122 -6.659617 -0.603735 20.427508 47.119788 -52.010758 8.420664 -57.759293 16.989852 -21.002208 26.077892 33.673658 -2.049469 24.078133 4.595416 31.295909 -6.901237 2.333910 17.005953 10.887178 6.872127 -4.105758 24.477564 40.030750 -26.041536 -48.896077 -20.007070 -3.993438 18.308838 -3.079547 -29.095549 20.790737 -36.265984 -6.611863 -6.042276 -1.392713 -6.058559 45.526525 -40.229585 4.341067 16.270984 -9.304477 26.856579 14.734360 2.633112 9.421141 -7.042637 8.037445 13.000445 1.628333 -1.158119 27.634059 -33.094738 -22.583012 -1.144096 15.106767 19.627625 -34.062115 -31.330594 -47.002030 -5.824577 39.775474 -19.796559 10.082452 49.447843 -19.982464 -16.241239 7.623388 -2.444923 -10.646679 15.393594 11.094410 65.271346 -39.617137 19.895241 11.087200 11.690963 21.543126 40.489550 -22.895063 -31.750430 29.526238 -9.919279 -11.253931 57.022804 -3.024236 3.147243 22.425732 7.829423 13.154444 -9.190966 34.949093 -38.095216 22.636476 -24.906050 40.431768 -19.952287 1.768887 7.373801 -33.669739 -24.080921 -27.665151 13.736871 -10.579591 37.689488 -16.914892 -21.933223 -3.168077 -18.806904 3.013308 53.328929 -22.732651 -7.236324 -1.787035 -22.095904 17.636544 2.956380 -13.701989 -12.313836 -22.513830 6.305417 21.748949 -6.046763 -45.450506 -22.850924 -12.271588 -9.964746 -22.579850 5.456412 27.239587 -24.647499 2.741869 23.863946 -2.233489 -10.390263 -10.143314 -5.297612 18.455416 1.972755 13.404590 4.703481 57.614766 20.782747 30.471043 -4.293725 3.799294 -1.460464 -21.179964 -52.984831 23.306988 -0.958743 20.570364 15.889412 15.646331 -1.719118 16.827634 13.747000 -23.918686 21.368429 27.179457 13.768977 32.984054 -15.851105 -0.297844 17.249556 -12.467525 26.878263 25.114151 2.921155 -41.799487 5.519487 -32.521878 -38.399559 6.560819 -4.340299 4.540833 -20.705478 16.870943 41.125625 -0.496002 -20.135141 60.905712 -2.711413 -74.540502 22.183336 15.350380 16.501821 53.557675 -19.278161 38.206732 17.602325 50.092075 10.966599 25.011007 24.996083 -43.268934 13.655720 3.631154 16.088810 28.070809 -14.863329 -84.517574 16.512951 12.161981 38.327633 -7.200349 42.196150 -26.604381 40.601032 -3.294108 4.512810 14.577463 -7.746878 27.934869 -8.182666 5.542405 -55.584079 28.065341 +8.740918 -0.454864 9.767917 -16.224309 -10.811020 -5.209895 11.743173 -8.916400 -7.611454 22.127031 4.973289 -18.352211 -18.870557 17.307158 -2.393943 -11.008669 5.114642 -7.188208 -0.421854 -3.741084 -5.006001 5.809011 -0.546520 -12.623099 6.917258 0.685543 -2.610647 17.506420 14.132030 -1.886915 1.866207 -5.980457 8.964834 25.504123 3.018696 -9.748045 -8.200201 35.565168 -18.860563 21.110268 -22.433977 -18.023347 37.944878 -4.549494 -1.655368 -28.747986 -9.832118 21.360942 -12.126579 -16.533445 -2.970217 4.657367 6.143653 -23.321139 -15.734768 24.425147 -34.189221 13.838939 13.829520 -12.488189 -15.289158 0.677363 1.251991 7.527159 -13.260417 -17.646600 -2.931077 -12.935398 -13.111585 0.412547 -16.221999 -9.192333 20.446569 3.380042 -5.017352 8.386028 -2.431567 -8.020636 15.561729 -11.047626 -16.658643 -10.258838 -2.991087 -9.812750 15.692252 3.597906 13.675109 -33.350773 4.158838 -33.012649 12.999036 -24.813102 10.223561 26.529672 -11.113354 23.432587 3.237958 -0.179597 8.335176 0.751045 19.270775 9.659175 17.052827 9.503572 15.424793 18.581915 -13.972764 -19.488015 -18.493986 -13.120112 3.680665 -5.045904 -28.132170 14.555881 -11.825381 1.607942 7.461858 -3.027599 -7.148122 19.432104 -23.154482 5.542497 8.537428 -5.756327 7.236516 22.455808 -1.924366 -1.761010 -6.380738 18.526146 1.236078 14.678527 11.145707 19.966363 -5.691529 -24.010322 -6.685524 6.896256 5.979806 -15.568057 -20.900494 -33.445813 -1.855322 1.366383 -13.181245 12.625118 39.966313 -6.777101 -17.070656 19.569890 1.625080 5.468025 14.355412 4.265114 37.466886 -13.537631 -7.094389 -0.864990 -5.651320 12.911068 28.129764 -4.057871 -15.807505 17.373634 -6.146731 -16.449826 13.026562 1.961292 -2.909066 6.158639 1.207068 -11.252845 -21.700620 23.374085 -8.405457 23.942925 -6.849752 32.651876 -0.433910 -13.531997 12.293014 -12.825978 -4.359895 -15.539836 -1.541882 1.972687 9.345944 -18.026975 -14.698504 -12.936475 -2.221798 -9.371979 24.619880 -14.746887 2.855626 6.655224 -1.524860 15.869122 6.872474 -12.681387 1.904120 -26.051069 6.543353 10.883389 2.931834 -32.806918 -7.187142 -8.072863 -4.989148 9.960494 -1.399004 17.649801 -12.443967 -5.046345 14.577526 -1.807889 -3.178304 -3.218830 -23.482972 7.312199 2.659081 12.056660 10.689091 32.337017 19.837968 16.015908 -2.371616 17.959946 -5.542362 -1.421056 -17.731448 0.937504 -2.727832 4.247423 13.097543 11.849897 10.691643 12.788813 20.368827 6.232764 -9.277831 23.653060 2.859929 23.663926 -9.994835 -10.388339 10.429701 -0.964598 21.076239 23.308077 2.103310 -19.798065 14.412243 -8.717435 -12.568186 -13.949832 -1.720710 -2.734278 -1.814159 23.582970 15.140914 -0.833699 -2.504264 27.483944 -4.014315 -43.957962 22.614725 9.322788 13.845666 14.602127 -2.894938 11.835237 15.422971 -0.440118 4.185543 16.939254 12.756831 -24.978756 1.322131 5.572355 17.590562 11.590292 9.513299 -55.478197 -6.104731 6.633418 19.449951 1.297925 26.751312 -16.380606 -5.936918 8.223008 2.602377 0.528717 -7.363630 7.782234 -10.714897 1.145930 -19.669000 5.351577 +0.546524 0.140812 0.993279 -2.584479 -0.761786 -0.911503 3.472393 -0.860581 -0.930812 1.768207 0.512506 -1.675162 -2.945746 2.587831 0.221767 -1.689424 0.740127 -2.312373 -1.091361 0.101911 -0.727072 1.162058 -0.308069 -1.685302 1.414450 0.204684 0.219580 2.937661 0.852092 -0.882368 0.094346 -0.917408 0.948853 3.350714 0.382336 -0.102878 -1.150168 4.592214 -4.137665 4.098034 -3.741854 -2.493857 5.814611 -0.719674 -1.523553 -5.555256 -1.152494 2.405240 -1.405080 -2.033326 0.042418 0.462839 0.461859 -3.036193 -0.988724 4.038569 -4.272798 1.504788 1.746280 -1.425521 -2.295754 -0.845409 0.128064 0.161429 -2.643102 -2.355956 -0.231546 -2.828972 -1.906667 0.455099 -2.185825 -1.509429 3.106965 0.949567 -0.533101 1.140994 -1.104312 -1.795707 1.695367 -1.058013 -1.399446 -1.495879 0.352627 -0.515299 1.990616 0.021701 1.034430 -5.061978 -1.102749 -4.237724 1.159876 -3.408194 1.498946 3.067751 -0.806540 3.312305 -0.477248 -0.751086 -0.168074 -0.622823 1.857524 1.535989 3.025707 0.697938 2.765827 2.729455 -2.195867 -4.025207 -2.261794 -1.335734 0.758211 -0.957107 -4.897373 1.443375 -1.743368 -0.803808 1.019027 -0.332587 -0.995937 2.897640 -2.433252 1.674647 1.169437 -0.791594 1.153645 3.353336 -0.002370 -0.505399 -0.888138 1.855201 0.793043 3.043081 -0.196035 2.404198 -0.764264 -2.978561 -0.026132 -0.177732 0.635435 -1.583584 -2.855081 -4.570355 -0.710838 0.431752 -1.729478 0.873824 4.753659 -0.972161 -3.360207 2.489300 1.000530 1.657483 0.435173 0.452724 4.804660 -1.837966 -0.088121 -0.078262 -0.186952 1.567076 5.318758 -0.773071 -2.856971 1.824114 -1.635764 -4.579970 2.709736 0.588934 -0.025099 1.360218 -0.392895 -1.881549 -3.464302 3.837116 -1.158379 3.930809 -2.171422 3.730829 -1.212180 -1.384494 1.335156 -2.218238 -0.434386 -3.876863 -0.929573 0.543082 1.240895 -2.176393 -1.868607 -2.015044 -0.107085 -1.126257 3.924747 -4.224504 -0.511376 -0.463110 0.172133 1.781334 1.014612 -2.159383 0.355628 -3.201764 1.405310 2.114710 1.075973 -5.064538 -0.523481 -0.277150 -1.385303 1.346953 -0.024477 1.543097 -0.907926 -0.408567 2.627728 -0.319866 -0.980590 -0.567405 -4.469597 0.634833 0.462877 0.729315 1.182747 4.528188 2.574739 1.260400 -0.578759 1.430855 -0.567633 -0.556888 -4.180860 0.077252 -0.678823 0.445807 1.794666 2.383747 1.626112 0.858750 2.782931 1.389046 -1.379761 2.650001 1.689699 3.138569 -0.256102 -2.254341 1.814523 -0.329666 2.241881 3.019548 0.514323 -2.245817 2.215131 -0.151424 -2.282025 -1.750506 -0.753884 -0.838789 -0.728735 4.283379 1.141520 -1.095149 0.182542 5.271712 -1.045011 -6.255023 1.791328 1.262545 2.091417 1.105205 -0.531499 1.474860 2.713286 -0.302212 0.981526 1.199696 1.674621 -2.952532 -0.240433 0.471143 1.202533 2.800730 0.436056 -7.506660 -1.234662 0.390657 4.470922 0.631890 4.574084 -1.020518 0.806641 0.356386 0.730360 0.555102 -0.921953 1.350080 -1.218741 -0.515848 -4.905076 0.932518 +4.556250 0.025570 3.948915 -5.665798 -2.887388 -0.872274 6.567910 -5.404182 -2.985277 10.928842 1.491090 -4.618378 -3.969456 5.058676 -1.081065 -3.197597 2.136323 -2.465146 -1.882550 -1.608669 -2.811439 2.309042 -1.835172 -6.757349 3.200303 -1.032846 2.896758 6.771840 -2.651733 2.127666 0.405506 -3.723448 2.776371 11.586746 3.180643 -0.514413 -4.087749 13.420890 -9.322108 10.474399 -10.739850 -10.665025 14.866658 -1.741669 0.670769 -9.761658 -1.742101 7.156636 -1.211013 -6.996850 -1.976730 -0.656689 3.202725 -9.289543 -5.014988 8.532513 -10.636012 1.794282 4.918646 -7.875931 -10.603739 -2.090325 2.308217 2.939745 -9.021964 -7.559218 0.042740 -2.313398 -3.118888 2.330526 -7.645813 -6.800260 6.276786 1.916137 -1.808212 1.763342 -3.283722 -4.977150 5.221978 -0.483164 -6.332269 -5.449363 0.341945 -4.997424 4.226759 2.920756 8.902812 -14.832001 3.256843 -14.329995 4.978120 -7.376526 5.941281 9.666060 -3.123571 8.788906 1.185276 6.039704 0.702806 -1.128774 6.129714 4.594074 5.822020 2.020258 7.616598 8.316543 -7.072007 -10.869831 -6.725084 -4.472352 3.318614 -3.709370 -11.865944 4.629567 -6.250999 0.455812 0.444270 -0.890469 -2.785823 10.419241 -14.073103 1.541758 3.819559 -2.377583 4.771731 5.655387 -0.010402 0.436706 -1.133712 5.751031 0.583158 3.549301 0.735392 8.450784 -5.936210 -5.342620 -1.933115 2.412384 3.881032 -6.762120 -9.585078 -14.228736 -3.111742 6.613520 -5.080041 6.014629 15.201570 -4.180417 -8.807691 5.893323 -1.059624 -0.852374 4.513714 2.918547 12.567153 -7.351675 0.564121 -0.658152 0.386743 5.634489 12.720607 -3.413155 -8.294967 8.528334 -4.065597 -5.468452 9.332512 0.424411 -0.194577 0.438230 0.459151 -3.576216 -5.874973 9.979159 -8.763656 9.681783 -5.866542 12.500523 -5.138728 -3.243354 2.521214 -10.996403 -3.393106 -8.333421 0.208799 -0.804699 7.386033 -7.910034 -6.476219 -3.272908 -3.448631 -1.769828 11.918946 -8.714181 -1.053540 0.066602 -2.032902 9.473748 2.750117 -4.796526 -1.578583 -7.349104 3.343323 5.222310 1.869367 -12.136711 -4.787151 -3.071180 -3.617131 0.316145 1.084606 7.116787 -5.491247 -0.071572 6.475521 -0.542420 -2.809865 -1.796690 -10.224990 3.419581 1.321915 4.187280 2.915959 13.354116 7.369679 7.094733 -1.153649 2.907410 -1.520056 -4.232130 -9.990196 2.311689 0.849973 1.929033 4.792118 6.938751 3.919596 4.433376 6.979079 2.484839 0.026421 9.261717 2.109876 9.367535 -5.207031 -2.452431 4.795998 -0.327873 7.621207 8.111607 0.190774 -7.020381 4.733991 -3.892503 -7.328252 -2.644557 -1.072588 -1.266664 -0.950265 6.790886 8.053501 -1.651353 -2.319724 14.843683 -1.126361 -18.217618 7.210515 3.728140 5.897344 7.902807 -3.524029 6.417808 5.719832 3.634740 4.689959 5.935700 5.278341 -10.384291 0.290836 1.670488 5.781914 7.553185 0.908095 -19.895929 -0.291927 1.496053 10.680738 0.263194 12.098966 -6.819221 3.785027 0.966104 -0.472902 1.668309 -1.250204 5.317785 -1.745224 0.479852 -12.796402 3.151068 +18.568289 -13.079132 28.466776 -53.950865 -49.467902 2.246686 10.223442 -33.125056 -17.025529 29.869643 16.669717 -24.090553 -25.952560 57.592853 -8.319504 -44.127863 -0.154339 -21.074892 -4.363576 -4.153732 -12.646403 33.538837 -13.813971 -15.369897 20.025533 -13.336195 -4.346884 40.731553 17.939211 -12.800451 -3.125136 -30.169904 -1.397231 75.420137 19.446958 -1.374120 -9.561934 118.006978 -28.470252 63.231321 -58.108644 -62.405281 78.864863 -16.399366 -6.917403 -56.268837 -36.657329 45.032825 -30.624206 -25.854162 18.826150 1.581650 15.201819 -36.350422 -7.335655 37.095502 -82.522240 31.129109 32.672657 -33.882845 -33.931219 -17.268587 -14.983072 7.863656 -41.074257 -45.019020 6.134221 6.679646 -24.517690 -4.949261 -21.743413 -42.639598 85.928416 22.836371 -17.646619 19.335666 11.736571 -37.022152 45.548017 -21.957493 -72.300521 -29.025651 -7.602182 -33.599829 57.162563 4.724933 49.620448 -103.456852 31.317934 -106.630288 31.648768 -55.883576 33.235005 78.366172 -49.777866 54.064646 31.956158 38.838529 27.337708 -1.170744 61.174007 27.335900 14.981646 40.872806 46.521844 35.156009 -33.932911 -44.594764 -51.356211 -50.027369 14.179643 -30.597645 -100.172446 33.788689 -11.726747 11.345219 -6.896511 11.371092 -11.400648 56.715832 -80.130079 13.172345 27.152209 -17.774324 19.386456 47.730959 -12.629236 -3.245767 -26.886032 56.753860 -30.278236 37.721193 0.293538 54.995785 -16.489238 -38.346860 -45.938247 12.168575 22.181992 -47.610932 -66.025896 -77.372130 -14.611573 26.897715 -37.860029 62.792587 122.113867 -50.319894 -58.434223 71.490357 16.506983 11.778602 43.049629 19.760305 71.810601 -21.080451 -32.156681 -25.689865 -32.023952 17.516940 24.941610 8.532495 -33.144804 53.683168 -11.563989 -40.362069 85.029332 -10.790238 -35.095493 -5.493408 8.978163 -39.792309 -49.796952 70.841576 -11.897678 61.504147 -5.712298 93.963446 -14.417820 -37.410498 20.898715 -46.924376 -11.438050 -56.782901 -1.406492 0.684684 29.988634 -53.255033 -42.718261 -20.927023 -22.950351 -34.485319 46.445054 -3.576057 11.781251 22.483607 13.190418 52.251961 64.280670 -5.124436 -4.327718 -62.672092 31.907186 31.888691 -4.415302 -70.704995 -17.239148 -13.165402 -17.276116 18.213758 1.553229 40.470560 -35.845186 -9.415792 10.659374 -2.068667 5.762530 16.809645 -78.831784 15.885284 10.161229 35.194108 32.269543 65.256148 69.683452 61.698625 26.127640 34.412986 -9.239881 3.045700 -28.589459 2.824561 10.208498 27.909040 38.374870 59.249152 51.749301 35.042692 59.177353 42.677865 11.735724 66.805853 8.491171 100.579277 -18.353865 -27.603296 8.824506 16.243302 64.681338 85.977167 -8.704448 -5.114250 40.944217 1.642569 -31.321984 -48.462876 14.439667 -13.814855 -0.398104 41.771259 35.692695 -0.861277 -15.129467 84.123261 -17.699953 -111.057245 51.348632 25.222952 48.501945 33.870132 4.777148 25.344794 33.339996 -27.140551 45.168827 55.297739 40.240193 -67.500457 -2.176364 10.212245 40.166507 30.137933 48.178231 -90.904713 11.681945 21.508173 60.008436 1.759627 46.273196 -45.587619 -24.747008 29.647814 -16.230129 -1.827360 11.116389 20.843215 -30.008345 11.086687 -54.194283 -28.475337 +49.457534 -60.773422 86.100351 -172.754515 -150.299580 23.794629 5.287322 -108.897206 -40.108973 64.241019 60.689177 -55.570201 -53.472879 173.715088 -10.899251 -131.556815 8.267004 -63.124108 -0.874687 -13.039481 -22.812157 97.140437 -45.209837 -31.604880 40.033226 -48.637364 -14.882916 111.700555 46.436059 -42.028176 -22.449693 -93.264474 -32.379896 216.783501 66.095533 1.287038 -29.277619 348.697854 -66.789490 180.097578 -171.829259 -171.993645 205.428397 -54.345068 -31.621806 -150.918627 -121.374959 117.454609 -67.393513 -69.184378 68.407822 -5.101572 58.752336 -85.815558 -16.134268 86.608234 -216.968500 66.051695 93.727261 -99.734227 -82.562481 -54.864018 -41.071163 34.756414 -137.294012 -121.247869 46.106822 30.442100 -59.142665 -23.228462 -54.997382 -144.436908 249.322556 84.030100 -49.683364 45.772582 54.671037 -129.262699 142.447061 -29.321412 -229.400205 -81.807454 -43.936928 -129.158996 179.060608 -13.187522 163.215538 -304.928761 115.279159 -325.136243 87.278381 -160.714288 93.714364 228.712707 -153.902031 138.009640 113.288987 157.671089 86.320900 -20.795909 181.940459 86.500271 21.793882 125.161483 162.421406 85.632602 -85.810196 -113.222815 -146.706879 -154.082248 44.300605 -117.494852 -298.088817 106.202485 -25.511398 6.221655 -43.198176 44.263602 -32.102826 181.627566 -221.854191 39.948026 81.833583 -54.684088 41.063125 141.147411 -49.944761 -4.355120 -86.000717 171.152003 -115.205987 118.540799 -6.319874 157.787991 -53.206463 -78.151424 -146.132825 40.900482 72.224688 -149.093920 -198.151234 -210.850917 -47.389317 84.505880 -101.074847 212.897937 358.196287 -164.308580 -177.870694 213.947398 68.709951 13.861921 133.824275 57.634155 201.480259 -52.266363 -101.638754 -105.768043 -102.317187 34.455801 40.122540 36.928318 -68.293642 164.324480 -38.529377 -117.239022 305.607362 -45.426009 -122.318137 -5.080457 34.695182 -120.868051 -155.019676 201.441140 -21.180068 171.323448 8.857663 269.102287 -36.388067 -98.826628 59.736447 -126.167012 -34.326776 -161.846064 -0.933230 -2.327157 95.488604 -138.921373 -127.755576 -68.954919 -85.593803 -96.671100 120.805343 20.709209 49.241219 85.386730 47.759403 146.806307 221.933387 13.359012 -24.351846 -173.801829 105.060238 111.963934 -21.558210 -165.608885 -55.171939 -46.240639 -42.303258 28.133608 11.263024 134.877922 -124.826859 -37.713236 5.296743 11.081705 26.825708 70.372480 -278.109899 49.401508 32.937413 107.629612 94.247834 175.797943 196.589014 193.336594 102.644723 81.214568 -23.521509 24.726698 -86.236264 -6.713528 35.162038 91.253170 107.278762 187.243591 157.623570 110.604736 183.471059 138.974572 69.264590 192.222046 13.558694 303.188251 -29.472104 -75.963847 8.359119 51.025897 196.425890 278.081034 -3.980530 16.502384 117.644699 19.700282 -103.861067 -172.684467 51.098320 -39.648704 16.912535 99.868842 104.873329 6.136065 -62.444938 240.806978 -39.063155 -320.678861 141.203666 71.876535 142.150297 123.571436 18.919050 73.411414 82.740373 -96.253985 157.055068 170.142775 113.731949 -194.065988 -2.873482 32.530501 112.537837 75.683524 158.497051 -228.245745 69.104000 61.562330 173.245768 9.312059 127.134690 -143.650678 -68.166350 99.193873 -64.800682 -7.503277 53.168040 62.885128 -105.758337 31.388278 -163.312713 -98.297496 +1.537626 0.510223 2.384969 -3.711972 -0.691008 -1.308892 5.027900 -2.708749 -1.229667 3.658028 0.662494 -2.346668 -3.700224 2.006800 -0.491952 -2.591495 1.423978 -2.231630 -1.856152 -1.446408 -0.912362 0.719670 -0.293995 -4.345388 2.195959 -1.113879 2.179415 4.651879 -0.526503 0.209102 0.913974 -1.442694 2.341706 6.028190 0.908721 1.523481 -2.904368 5.957701 -3.588256 5.310890 -6.554281 -5.170456 9.352354 -1.175056 -0.418401 -7.765150 -0.625281 3.479787 -1.785425 -3.094095 -1.812016 0.094903 1.339017 -5.984815 -2.960586 5.510174 -5.087796 1.573539 2.293376 -4.928834 -5.452830 -1.235894 0.602228 1.093404 -3.576619 -4.137171 -0.251377 -2.229671 -3.030289 2.633871 -4.045992 -2.705767 4.908313 1.158381 -0.306048 1.801530 -2.526116 -2.238687 2.312817 -0.839010 -1.547632 -3.434109 2.042894 0.378371 1.346285 1.482713 3.338727 -7.762778 -1.921660 -6.634966 3.139249 -4.195138 3.722671 3.825104 -1.005887 5.958231 -0.331872 -0.595732 -0.750971 -0.076817 2.846247 1.776415 5.321773 0.433710 4.456594 3.420486 -3.051766 -7.060515 -3.097188 -1.779761 1.298194 -1.840317 -7.385069 2.399767 -4.486094 -0.494737 0.420746 -0.694142 -0.716794 5.075429 -6.029340 1.184556 2.628766 -0.992843 2.316349 3.083132 0.465382 0.354182 -0.108315 2.424901 1.422235 2.606137 -0.001760 4.432626 -1.091299 -5.103272 -0.394219 0.199049 1.560721 -3.065377 -4.932551 -6.154660 -2.526214 2.830438 -2.516722 0.842974 6.856833 -1.070864 -5.181649 2.347990 1.171913 0.761130 1.290745 1.841330 6.947507 -4.741763 1.427789 0.150323 1.429832 4.722201 8.694042 -2.637891 -5.741387 4.448577 -2.375706 -5.299631 3.119448 -0.118109 1.065586 1.922330 -0.732741 -2.611148 -3.869968 4.886946 -2.087280 7.629611 -4.685432 6.363033 -4.180534 -2.613341 1.193466 -4.126783 -1.418304 -4.422722 0.743819 -0.177429 3.515490 -4.598944 -3.918973 -2.129326 -1.646380 0.054263 6.918351 -6.384778 -1.311001 -1.329251 -1.585639 3.468539 0.539623 -3.611576 -0.293855 -4.145390 2.111985 2.876976 3.751481 -7.050514 -2.117173 -0.955239 -2.349923 0.274128 0.734748 3.753474 -0.833786 0.294248 4.085686 -1.072409 -1.944914 -2.028219 -4.752647 1.275524 1.042797 1.039197 0.496969 7.732270 4.740101 2.032173 -2.005130 0.963620 -0.375016 -3.247232 -5.802988 0.942770 0.022304 0.546563 2.428765 4.441345 1.889576 1.626505 5.259190 1.749530 -1.078329 4.863676 1.184537 4.465307 -3.546014 -1.566938 2.796161 -0.546125 4.184973 4.192905 1.504507 -5.015466 3.010081 -0.639505 -3.414544 -2.345887 -2.196856 -0.424100 -1.161349 6.458666 3.564981 -1.867107 -0.592123 8.812660 -0.041413 -9.411038 3.777689 1.861322 2.822096 2.328150 -2.569058 2.328410 4.730629 1.422370 0.353441 1.229130 3.071781 -5.739430 -1.418660 0.776814 2.791570 3.707715 -0.831152 -10.528559 -2.189345 1.124169 7.131582 0.659770 7.095412 -2.633032 2.286162 -0.070731 1.143054 0.941173 -0.663680 2.045418 -1.792267 -0.984931 -7.168220 2.416058 +8.718221 1.126793 3.671257 -5.465563 -1.125454 -1.610119 12.865553 -10.770466 -7.643659 20.366257 3.062325 -8.552534 -3.450870 6.333274 -0.393183 -2.533154 5.166531 3.843878 -3.892212 -3.777885 -7.173158 0.715915 -3.304615 -13.603380 4.298319 -2.232416 6.277619 9.956069 -8.712151 7.964246 0.828775 -5.857738 6.502299 18.751777 6.643607 -2.779533 -9.133438 18.642110 -18.169427 17.433478 -13.310396 -14.009061 25.091219 -2.440696 3.512651 -11.135498 -3.601715 11.359201 5.231152 -14.625648 -5.974629 -2.721835 6.169090 -16.062809 -10.023887 15.139308 -10.346274 -1.286229 9.403656 -16.129758 -20.482480 -3.595815 5.859612 5.038622 -18.305092 -12.904895 -0.034252 -3.156056 -0.194139 3.718957 -18.236395 -15.269439 6.175911 2.295062 -2.300044 1.240661 -9.462607 -6.140016 6.403242 7.689582 -8.678629 -9.353157 1.361861 -5.949186 2.485008 7.829091 16.760735 -24.112156 3.173909 -23.800545 8.036013 -10.238555 12.152740 15.652583 -1.216414 13.788562 1.721344 10.111499 -3.039687 -0.319276 8.461192 4.150706 6.772032 0.674077 12.299153 15.278952 -12.795450 -20.801322 -10.106060 -4.780536 8.395619 -3.001903 -12.565436 8.907547 -14.574638 -1.665655 -1.615404 -0.143572 -4.564659 17.974601 -19.708893 1.996374 7.666431 -4.833666 11.290108 8.224142 1.092814 3.452327 -2.772358 6.106851 3.436048 3.189054 -0.452177 14.400096 -10.815663 -7.938991 -1.197092 5.363058 8.484489 -13.351024 -15.762458 -22.053727 -5.248844 12.835522 -9.512784 7.466687 22.727519 -7.910441 -9.771238 6.453031 -1.245163 -1.380764 6.276225 5.471022 24.913285 -16.173510 5.614236 2.131037 3.284484 11.078708 21.814416 -8.994992 -15.435645 14.552971 -6.254318 -6.103719 19.885358 -0.265705 0.412748 5.326509 2.777773 0.829376 -7.134881 15.941895 -15.311650 13.385552 -10.874362 20.201699 -9.613605 -1.324759 3.729521 -14.531599 -8.126027 -13.155282 3.769485 -3.663081 15.031808 -10.024836 -11.147786 -2.957803 -6.698651 -0.296526 21.351651 -12.937257 -3.394288 -0.764026 -7.226757 11.627734 2.322788 -7.431161 -4.392410 -10.821087 4.453604 8.384996 2.117883 -18.229531 -9.808629 -5.905795 -6.418425 -5.451107 2.265698 12.616317 -10.779952 1.293942 11.312149 -1.105729 -5.242815 -4.023070 -11.162857 7.951377 1.754724 4.864124 3.026886 24.044123 10.944856 12.366754 -1.897691 3.259684 -2.524972 -7.646471 -21.439087 8.264665 -0.096186 6.590732 8.306931 7.885417 3.503724 8.064094 9.218706 -5.563900 4.914577 14.214684 3.935197 14.404458 -7.630029 -1.271616 8.962281 -3.361666 12.847375 11.476200 2.573789 -16.826938 6.034374 -11.718842 -15.625157 -0.662747 -2.248635 0.233085 -5.147845 9.613263 15.253487 -1.708132 -7.038414 26.676365 -2.460389 -30.175752 11.475635 6.700709 9.264328 17.683408 -7.600037 15.362940 9.461890 14.198340 5.246235 10.068842 10.922700 -18.304707 3.496663 1.962682 8.097258 13.159170 -3.431632 -37.203846 1.497840 3.588229 17.308072 -1.771192 19.341705 -11.695185 12.975076 0.477953 1.313287 5.498853 -3.575568 11.628019 -1.993541 1.005461 -23.803538 10.293313 +43.873843 -53.665730 65.886751 -128.234511 -105.745582 17.428539 7.681066 -89.850048 -34.674738 73.795848 47.408608 -53.262951 -42.567295 129.357425 -0.301855 -99.474096 16.153288 -36.676011 1.850699 -12.251104 -23.744098 66.106387 -35.933746 -39.189574 31.308701 -36.103372 -5.684648 91.573897 32.677103 -15.959043 -14.930949 -71.916175 -21.786054 176.610082 54.703857 -4.076530 -28.753260 271.610271 -70.088412 150.927928 -139.343114 -138.080960 177.687231 -42.482426 -20.792835 -108.351125 -86.271287 99.328946 -56.748022 -68.527667 42.772109 -5.748547 55.164688 -81.021142 -27.764880 78.964230 -172.024480 44.241037 77.063620 -88.583248 -84.379410 -41.103014 -23.128686 36.873461 -122.234009 -101.745535 35.642545 13.516960 -43.109637 -15.345209 -62.397797 -119.447640 185.337122 63.771283 -38.692248 33.951133 33.136844 -96.594207 111.611307 -5.843244 -176.393145 -69.814665 -37.171015 -114.113351 138.066667 -3.279482 138.196204 -246.355009 95.423421 -264.106688 74.595013 -129.326395 79.866284 186.017393 -119.778044 112.896320 84.288778 134.965797 58.766259 -21.308633 141.074833 68.018922 19.115643 92.598793 135.692421 78.611633 -77.800168 -103.601556 -116.112987 -115.204667 38.433284 -94.919118 -227.538177 88.588474 -38.156071 9.460065 -28.162299 33.331076 -33.695946 150.600404 -181.044869 32.582751 62.779482 -44.599149 43.591749 110.692436 -38.228875 0.979656 -61.108804 134.967487 -80.605161 86.976516 -0.694367 130.818142 -49.692580 -53.925469 -106.106985 40.665835 63.754929 -122.317646 -161.806268 -180.105553 -39.977890 72.097973 -79.205415 174.312954 282.274716 -121.486044 -137.462809 161.333537 32.375319 10.061328 108.667775 46.368557 173.492173 -55.773306 -67.599079 -78.981226 -68.583872 34.338818 50.097698 17.236033 -63.457207 136.448720 -35.534253 -76.270540 242.852265 -28.166259 -87.328153 -9.124719 28.560279 -88.078884 -121.548743 163.923977 -43.669701 134.007664 -2.292111 217.939709 -30.620354 -72.043726 52.162065 -108.529741 -35.473590 -128.022576 -3.029976 -5.447253 81.649576 -112.143382 -106.251111 -59.498991 -64.020565 -68.724240 113.235760 12.207159 33.182466 66.612802 27.022296 126.632252 159.362173 2.383227 -25.631017 -139.958933 79.462466 94.036053 -21.595772 -129.922223 -51.983678 -41.783346 -34.583159 18.216422 13.764506 118.376413 -111.641163 -30.261784 13.070051 16.861993 16.675258 48.593507 -229.569844 46.590621 32.285410 80.414956 80.620479 156.414203 146.345286 149.892889 70.825027 63.207587 -21.142742 15.042688 -89.401749 -0.357120 24.364386 77.196752 84.393770 140.367474 116.620744 89.869175 138.752179 96.010757 51.291274 154.916647 15.033669 227.737679 -26.380102 -55.787142 18.221025 32.895058 155.693403 211.406442 -7.913319 -3.362101 92.509057 0.952934 -93.981974 -128.178819 31.879446 -30.548865 14.379930 72.113756 86.169831 4.179407 -54.675949 201.308898 -25.142554 -267.176085 117.518488 59.742597 112.394410 115.570633 5.213144 68.339880 64.401997 -59.526054 124.296502 133.591574 89.635184 -159.993008 12.924003 28.353967 92.961196 68.694280 113.479697 -196.103141 50.493730 43.998931 141.183244 13.329206 111.509421 -116.630414 -37.200509 70.052236 -55.574213 1.376139 30.478671 55.411646 -76.198350 25.851657 -147.400515 -63.304032 +7.959399 1.283590 3.679611 -5.779166 -2.668036 -1.285982 10.933080 -9.584885 -6.732982 17.425074 2.884672 -8.154338 -3.867956 6.498386 -0.727402 -3.618785 4.155627 2.370372 -3.511551 -3.417195 -6.838157 1.337563 -3.145209 -10.889028 4.052477 -2.066429 4.680869 8.850703 -6.088127 5.568085 0.286508 -5.325049 5.439259 17.529529 5.884381 -2.811325 -7.437574 19.438663 -15.442982 15.919779 -12.296753 -12.600561 21.959379 -2.199631 2.587470 -10.654702 -4.130492 10.839666 3.458353 -12.164217 -4.058432 -2.137299 4.707182 -13.842321 -8.013955 14.581591 -11.489764 0.991643 8.554797 -13.663836 -17.272230 -3.314121 4.267091 4.011463 -15.493540 -12.029959 0.038310 -1.748969 -1.244454 3.321296 -16.101224 -13.936302 8.089602 2.748714 -2.825679 1.567062 -7.519411 -5.519928 6.297438 4.862280 -9.363762 -8.185240 1.325794 -5.158751 3.779592 6.619176 14.528469 -22.583274 4.220433 -22.551715 7.231720 -10.871733 11.114838 15.400371 -1.638643 12.839787 1.995689 7.816367 -1.611270 0.380239 8.716252 3.419026 6.023625 1.507278 10.595789 13.126229 -11.218606 -17.923006 -9.325794 -5.193813 6.666129 -1.833917 -12.643518 8.138841 -12.681513 0.158443 -1.137653 0.930220 -4.018409 15.299359 -17.625344 1.431496 6.906833 -4.572803 10.581938 9.422944 0.635695 3.108840 -3.492856 6.759865 2.508346 4.688829 -0.908628 12.959357 -8.557928 -8.683103 -3.260592 4.459188 7.859865 -11.980405 -15.015961 -19.540789 -4.880414 10.814180 -9.118363 8.653019 23.284357 -8.208114 -8.772155 7.572096 -0.645894 0.097497 6.614998 4.903302 23.575300 -14.251623 4.296307 1.445126 2.181984 9.151900 18.127202 -7.258889 -13.726602 12.903991 -4.694008 -5.103903 18.632557 -0.563890 -0.739123 4.835507 2.185760 0.471556 -7.984647 15.569661 -12.898969 13.029917 -8.393527 19.504543 -8.257654 -2.649106 4.003000 -11.458461 -6.264179 -12.589342 3.227508 -3.013447 13.083203 -9.678826 -10.410397 -2.468144 -6.126856 -1.345946 18.220948 -8.750861 -2.682421 -0.165554 -5.535535 11.499205 4.152766 -6.302851 -2.988927 -12.024266 4.622338 6.709363 1.178424 -17.123063 -7.963878 -4.966717 -5.782972 -3.413190 1.795857 10.926289 -9.745251 0.605792 9.558144 -1.215956 -3.361267 -2.691041 -10.467272 7.038947 1.422202 4.396780 3.379949 21.113852 10.920994 12.066894 -0.581807 2.967296 -2.313567 -5.845597 -17.459042 6.969253 0.379862 6.660661 7.873611 7.303700 3.958633 7.140671 9.007242 -4.217618 4.190274 13.272529 3.534707 15.285085 -7.487215 -2.140473 7.446480 -3.006919 12.251097 11.984467 0.329454 -14.437838 6.215162 -9.240208 -13.171691 -2.457728 -1.779376 -0.315434 -4.978570 9.686553 13.180560 -1.657582 -6.070323 24.247228 -2.641970 -28.423671 10.918849 6.140720 8.474464 15.207714 -5.810761 12.899562 9.138723 10.298180 4.915991 10.164464 10.363825 -16.543814 2.610321 1.654826 7.562038 10.347292 -1.886126 -33.809814 0.616225 4.229216 16.030284 -0.935150 16.793949 -10.609391 9.166709 1.533528 0.636948 4.084024 -2.576534 10.468120 -2.821968 1.426390 -20.277654 7.504952 +6.126046 -0.675076 5.971211 -11.326876 -7.173866 -3.701128 8.162600 -5.262029 -5.877308 17.265447 2.864129 -11.890302 -13.442526 12.997824 -0.596385 -9.345198 3.601804 -6.847130 -0.725807 -2.807790 -3.749868 4.894691 -0.623092 -8.773521 5.145165 0.810049 -2.124970 10.919930 7.846591 -0.644321 1.019296 -4.335683 5.537127 17.200690 1.691431 -6.162006 -6.758963 24.373587 -14.201325 15.942177 -17.855629 -15.679924 27.434284 -3.334388 -1.127998 -20.833103 -4.738930 14.592251 -8.016264 -11.164161 -1.597671 3.417197 3.486597 -15.869846 -9.723319 16.116264 -24.033771 11.113070 9.378468 -9.235640 -12.909299 -0.677585 1.579034 4.652611 -9.701218 -11.622618 -1.988797 -9.314495 -8.951992 0.778825 -11.931313 -7.100213 13.556855 3.801137 -3.519213 5.917911 -2.138137 -6.050361 10.598232 -8.006309 -11.333092 -6.986237 -1.667907 -6.188755 10.878733 3.435736 9.260513 -24.496020 3.426585 -24.240014 8.632981 -16.685470 6.810787 18.644160 -7.297981 15.107521 1.611704 0.040458 5.861825 -1.467518 12.639832 7.883246 11.786556 6.547761 11.082923 14.859323 -10.825844 -15.965459 -11.201750 -8.430465 2.098151 -4.616692 -20.627154 9.564603 -8.877492 -0.462956 6.071921 -2.049317 -5.564674 13.481155 -17.519787 1.103993 5.417925 -3.871764 6.026756 14.467519 -1.351804 -1.520450 -4.440982 12.853491 1.393838 10.200235 6.531145 13.496038 -5.232108 -16.236645 -4.736733 4.146216 3.495813 -10.575039 -14.240739 -25.000859 -1.656431 1.644842 -8.629789 10.005277 26.612660 -4.388690 -13.347972 13.982156 -0.505855 3.784729 9.325742 2.467164 25.693194 -9.306848 -4.246611 -0.103771 -3.074407 7.892982 20.804483 -2.290625 -11.270428 11.163931 -5.765450 -10.639917 7.050208 1.593426 -1.955418 1.447778 0.128844 -8.836175 -14.553192 15.836505 -9.592547 16.458323 -6.361967 22.166166 -1.095460 -9.121864 8.892415 -13.650610 -3.858231 -11.302854 -2.397300 1.534790 6.493074 -13.148037 -9.784531 -9.346435 -1.355256 -6.921927 18.754914 -14.275477 1.196154 4.040622 0.208464 13.382565 5.087961 -8.944511 1.237731 -16.898599 4.823919 9.191055 1.987163 -23.297215 -4.300085 -4.685846 -3.769532 7.734192 -0.721979 11.242021 -7.537376 -3.742016 11.376327 -0.966289 -1.865975 -2.157876 -16.261633 4.495374 2.294041 8.301474 7.610011 24.204714 11.627481 10.110783 -1.861668 10.791928 -3.565110 -1.597682 -13.915245 0.245192 -1.617705 2.382933 8.906636 8.303774 7.628283 7.954112 13.945757 4.826503 -8.455237 15.581679 2.825164 15.221978 -6.726929 -7.657569 7.606613 -0.775015 13.633463 16.610103 -0.216650 -13.013682 10.564733 -6.288648 -9.346280 -7.920985 -1.747619 -2.835622 -1.566247 14.233238 10.720945 -1.735096 -0.817550 21.494805 -2.739403 -31.818187 15.328862 6.699401 10.110056 11.208336 -2.025877 7.497676 10.308204 0.189852 4.091491 11.023240 8.961667 -17.553075 1.840669 3.617585 11.747305 9.941662 5.976717 -36.883461 -3.582749 4.880397 15.479190 2.091286 19.045689 -9.769588 -2.379618 4.756874 1.549121 0.307100 -5.092383 6.191925 -6.339053 -0.412621 -15.703439 3.244719 +5.352739 0.232861 6.380581 -10.565894 -4.180486 -2.592500 13.551730 -8.201207 -4.975561 16.547552 2.973035 -7.456927 -9.030821 7.811194 -0.375303 -5.741161 3.864364 -5.216091 -4.301142 -1.952489 -5.591065 3.853897 -3.197150 -11.121259 6.459925 -2.018620 4.920580 12.282050 -1.370752 2.112696 0.841595 -6.534270 5.045371 19.751393 4.953292 -0.712763 -6.599519 21.219516 -15.503372 17.138494 -14.469325 -15.840590 24.853949 -3.372170 -0.330035 -15.421336 -1.093081 12.385168 -2.296545 -12.376220 -1.608226 -0.308610 6.358264 -16.150703 -7.320331 14.983439 -15.552812 3.094116 8.836056 -11.709722 -16.000189 -5.450473 1.308864 3.966755 -14.857372 -13.170157 0.130659 -5.841142 -6.488438 3.017637 -13.131829 -11.198804 12.926371 3.432395 -3.533111 3.970725 -5.752634 -9.636260 8.424367 0.567068 -9.316238 -8.942492 1.039705 -5.086451 8.463471 3.266489 10.836660 -24.492715 0.004882 -22.232058 7.585808 -12.482224 10.986201 16.331600 -5.465873 15.197517 1.009908 7.684225 -1.867262 -2.827792 10.820201 5.520989 11.173891 3.337294 12.433996 12.503162 -12.748342 -19.495746 -11.111099 -6.667564 5.720873 -5.197346 -17.470800 7.577343 -10.769236 -2.223406 1.291652 -1.435182 -6.067630 16.957070 -20.497140 2.806287 7.115237 -4.556715 8.790702 10.552262 0.170152 0.547851 -1.694948 10.061462 1.941292 7.401422 -1.463306 14.512644 -6.038685 -8.668258 -1.883765 2.417036 6.738073 -10.960247 -17.212704 -21.459852 -6.044738 7.795641 -8.688974 7.096698 23.614808 -6.196692 -12.486685 10.839993 -1.386038 2.202242 5.505787 4.964800 19.292251 -12.636740 1.868675 -1.189624 0.754059 9.633005 23.247429 -5.732835 -15.756485 13.119150 -6.605337 -8.158062 13.044998 1.203623 -0.546618 0.197401 0.032419 -7.154652 -11.040054 17.505443 -12.896009 16.232589 -9.678146 21.755586 -8.907257 -5.871659 4.863600 -11.602542 -3.761265 -16.604289 -0.111492 1.477286 10.270420 -12.589521 -11.942249 -5.391526 -2.210595 -2.874156 18.989026 -16.072151 -3.325309 -1.492231 -2.166962 12.868678 5.006728 -8.978977 -1.759723 -12.015769 6.605187 7.096156 4.154733 -18.438075 -6.832414 -3.661233 -7.435852 1.944849 1.819424 11.249078 -7.219627 -0.678808 11.916930 -1.247875 -5.589708 -2.469355 -19.218051 5.986960 3.168905 3.894216 5.014133 21.526571 12.409813 9.847573 -1.690343 4.183676 -3.108787 -5.111534 -19.235077 4.949288 -0.113212 4.561929 8.839337 12.078553 7.928821 6.681806 12.263656 3.743620 -1.000248 15.403147 4.489696 14.866715 -6.227131 -5.275478 9.225650 -0.828295 13.101624 12.418219 1.167139 -12.748579 9.425747 -3.908685 -11.310673 -3.326592 -2.666403 -2.509317 -0.982342 11.864172 10.325579 -4.167369 -2.858502 25.789436 -4.193148 -28.166959 10.537750 6.731231 11.614497 10.557318 -5.356347 10.580905 10.145801 4.397394 8.099574 7.770717 9.370538 -15.697176 -0.489780 2.567453 8.059237 11.889416 0.583426 -32.370244 -3.741001 1.406761 18.736880 2.511022 17.958937 -9.212068 6.704484 1.448708 0.290800 4.288053 -3.263483 8.970766 -5.101901 0.075372 -21.951949 5.801115 +1.945221 -0.113066 3.822136 -5.984470 -3.027312 -1.529348 6.121397 -5.068041 -2.678162 7.746399 1.814782 -4.618638 -3.025000 5.684127 -0.850940 -3.210545 1.400269 -0.297700 -2.576753 -1.614087 -1.986877 2.558320 -1.502085 -4.863626 2.710878 -1.385918 2.795429 6.320871 -1.535371 0.861972 1.181326 -3.532820 2.596509 10.197483 2.220308 1.000419 -4.375815 10.899455 -6.997759 10.002355 -9.567401 -7.271131 12.253681 -1.747258 0.272764 -10.430260 -3.674910 6.130224 -0.451819 -6.564355 -1.866329 -0.021379 2.639344 -8.375290 -3.340404 7.062704 -7.490671 0.789358 5.040898 -7.769480 -8.547673 -1.666944 1.680938 1.872993 -8.946918 -6.751338 -0.331214 -2.141303 -2.396155 2.178167 -5.816172 -6.852155 6.294174 1.366806 -2.223512 2.392337 -2.585316 -4.920376 4.883138 0.843199 -4.932560 -5.153478 0.929249 -4.035478 3.570717 1.507712 6.913848 -13.137549 1.513658 -11.678966 4.199424 -6.680851 5.294877 8.415816 -2.867556 7.997219 1.133791 3.927984 0.035849 -0.139841 5.174435 3.346597 5.363083 2.117812 7.528510 6.167238 -6.009258 -10.228569 -6.141192 -5.223838 3.889242 -4.074143 -10.367027 3.953149 -4.786186 -1.039954 -0.500457 -0.332774 -1.432465 9.606035 -10.432358 2.676085 5.117679 -2.502932 2.696652 5.910789 -0.078217 0.166366 -2.201695 4.669364 -0.276486 4.099770 0.198006 7.460113 -4.293210 -4.647587 -1.186902 1.138395 2.386668 -5.504102 -8.313814 -11.214732 -3.505229 5.166521 -4.599096 4.290594 12.779144 -4.185090 -8.306801 5.640027 2.231779 -0.447725 2.616326 3.036968 11.317964 -6.380217 -0.009216 -2.178432 -0.484627 6.054314 11.495801 -2.727680 -7.998778 7.899191 -4.463707 -8.923759 11.105841 -0.833613 -0.640367 1.732613 1.203032 -3.390354 -5.241066 8.887359 -6.071027 10.150795 -6.191794 10.979071 -4.699214 -2.888561 1.747796 -8.206902 -2.796394 -7.467782 0.679114 -0.543233 6.816625 -6.156980 -6.058038 -2.911154 -3.812134 -1.390504 9.812200 -8.494347 -1.020035 -0.232439 -1.396698 7.172475 3.236372 -3.941317 -1.203959 -6.330772 3.648094 4.884965 3.167430 -10.067686 -3.450474 -2.797059 -3.654092 -1.599886 0.944297 6.242353 -4.500673 0.335656 4.745901 -1.664394 -2.956434 -1.929759 -10.282861 3.078241 -0.010511 3.759717 1.882102 11.059766 7.885122 5.891444 -0.318438 2.586083 -1.330430 -3.535383 -9.614175 2.843639 0.478353 1.348228 4.712447 6.311609 4.282699 4.038873 7.281164 1.799933 1.214973 8.507210 1.637510 8.856760 -2.830533 -2.127657 3.982138 0.340838 7.026476 8.283291 2.624154 -5.501798 4.760976 -2.195362 -6.735321 -4.181798 -1.605936 -0.698949 -1.870468 7.432855 5.958505 -2.444651 -1.675527 13.083378 -1.222689 -14.592618 5.831773 3.052664 5.323155 5.501256 -2.654207 5.694792 6.081679 2.807338 3.127190 4.555639 5.048309 -9.620654 -1.228062 1.336000 4.531566 8.097491 1.729060 -17.793527 -0.145221 1.344348 9.994446 -1.341977 10.539617 -5.515707 3.468443 1.872492 0.554766 1.083306 -1.089258 3.845895 -2.138608 -0.869182 -11.946838 1.663664 +11.608317 -1.044774 8.926045 -14.500881 -7.218575 -2.018437 16.291652 -16.900179 -9.959144 29.162983 5.264362 -13.229695 -9.012958 16.210719 -1.884218 -9.943142 4.902634 -1.406747 -5.640161 -2.617617 -8.695092 6.526683 -6.394822 -18.079771 8.871884 -2.402333 8.608327 17.850787 -5.034773 7.923003 -0.295945 -11.173231 6.902015 32.736312 9.912323 -0.485042 -10.947180 35.982192 -29.481129 30.119407 -27.109348 -27.704743 40.678160 -4.623265 0.700537 -23.477496 -7.184922 19.846124 -4.837728 -21.318649 -3.283538 -2.496034 9.290539 -24.734077 -11.117914 23.373557 -27.790466 5.107177 15.367470 -20.846895 -28.922247 -7.864748 6.209467 6.404090 -26.589354 -21.633109 0.047057 -5.956531 -6.071628 4.352981 -23.501663 -22.855722 19.504265 4.960991 -7.008145 4.614504 -10.095193 -14.659998 14.401466 1.830154 -17.617525 -15.130369 0.722843 -11.889626 12.094045 9.627495 22.899376 -42.511115 7.161566 -39.811124 13.742625 -20.187180 18.530016 27.966506 -11.971851 22.855805 4.644333 18.439924 1.259974 -3.394481 17.300857 10.477986 12.972102 4.766061 21.169772 23.080488 -21.501820 -31.300242 -19.656724 -13.591267 10.969193 -11.051117 -32.431516 12.750633 -18.190341 -0.495892 -1.097595 -2.339162 -8.231322 28.065340 -38.249570 5.698842 10.809356 -7.129491 15.383224 17.550550 -0.528105 2.856430 -5.163872 15.482751 0.636804 9.437992 -1.196912 23.794943 -16.850150 -15.175668 -6.433166 7.123509 12.203021 -20.516499 -27.736340 -40.469941 -8.332232 16.571583 -14.711558 15.721423 41.408126 -13.206761 -22.436380 17.511327 -1.441294 0.034420 13.593169 8.064327 36.394041 -21.725522 3.221027 -1.703571 0.052714 14.628676 30.345137 -9.368687 -24.216162 23.625431 -11.617083 -15.734454 29.734338 1.216622 -2.881292 -2.048688 3.675230 -8.846890 -14.355818 30.284539 -25.162433 24.484930 -17.386321 34.763481 -15.016201 -7.655383 7.396456 -30.511198 -10.606404 -25.915392 -1.475494 -2.762722 21.719477 -22.587256 -18.100960 -8.920324 -7.336397 -5.259073 32.076758 -24.064828 -4.359754 -0.097854 -4.524975 23.720900 10.088012 -11.857301 -3.231241 -20.303275 9.445583 16.037748 3.500985 -33.552695 -12.376014 -10.311226 -10.751524 -1.360485 2.520002 19.542188 -17.061494 -0.728477 16.263084 -1.548847 -5.609047 -3.409035 -28.875222 10.943314 1.332725 10.109243 10.025948 36.911500 20.090198 20.546188 0.178137 7.788398 -3.091171 -10.890033 -29.619680 9.749743 1.607566 8.470928 15.055073 17.937930 12.157296 12.258819 17.162716 4.326697 2.172052 26.807836 8.746766 27.565393 -9.460923 -5.933275 12.884637 -1.205396 21.652180 23.415405 0.029659 -17.658661 13.379536 -11.386677 -20.856614 -6.989574 -2.618921 -3.442194 -6.253488 17.387711 18.881099 -4.546493 -7.968487 43.395110 -5.531060 -48.639638 19.463210 10.578327 17.625553 21.627723 -9.143891 18.875542 15.480316 9.388681 13.801528 16.331021 17.475906 -28.511505 2.768235 3.638366 15.613842 24.983184 2.181183 -54.034290 2.462848 4.843620 30.442891 0.883449 30.241851 -17.739300 11.853141 1.911237 -0.993848 7.023211 -5.474024 16.317342 -2.865275 0.665793 -37.926411 5.843327 +3.461218 0.177083 4.673413 -6.641534 -1.760882 -2.239184 10.035607 -5.681599 -3.301439 10.690085 1.570185 -5.906587 -6.072156 5.221962 -0.644876 -3.631489 3.259275 -1.171475 -3.205073 -1.621072 -3.825664 1.904010 -1.782035 -7.121601 4.168023 -0.953527 4.207462 8.317301 -1.663757 1.009473 0.842932 -3.910762 3.857329 13.139286 2.765764 0.416004 -5.698411 13.178731 -8.814756 12.923890 -11.684797 -8.424435 17.045009 -2.137551 0.155107 -13.227350 -1.681806 8.618019 -1.079879 -9.209601 -2.716920 -0.341220 3.365877 -11.788451 -5.526698 11.099540 -9.716701 1.259624 6.378091 -8.887671 -11.702880 -2.353693 3.149472 2.572286 -10.992844 -9.023208 -0.294893 -4.656306 -4.799168 3.286661 -9.782735 -8.460889 7.411614 1.716429 -3.067724 2.873922 -4.711132 -5.170340 5.218765 0.869630 -4.876973 -6.634669 1.626475 -4.233924 4.505201 2.092167 7.339527 -17.007609 0.303721 -14.539885 5.256829 -8.897835 7.600543 10.540338 -1.968361 10.876203 -0.185601 2.616701 -2.040984 -0.370946 6.295459 3.701545 7.676705 1.036054 9.208469 7.968013 -8.087886 -14.616877 -7.066309 -4.747582 4.110439 -2.829356 -11.750044 4.902890 -8.659912 0.401576 0.911600 0.125706 -3.137517 11.090923 -13.103179 2.765083 5.433257 -3.238734 5.759184 8.317087 0.513578 0.492247 -1.653364 5.811808 1.825553 4.593809 -0.451463 9.445609 -4.002202 -5.823039 -0.416703 0.737680 4.087962 -6.393266 -11.191365 -14.669323 -4.875248 5.309666 -5.948414 5.038482 15.428132 -3.576694 -9.057666 5.993564 -0.306991 1.608611 3.141728 3.495370 15.558803 -9.795001 2.159989 -0.945654 1.725740 7.812306 16.723428 -4.935373 -11.060667 9.287934 -5.723206 -8.629522 10.964025 0.531857 0.881657 3.548129 0.088623 -3.149240 -7.981896 11.513260 -8.597947 12.655150 -8.040307 14.709407 -6.437443 -3.512092 2.813893 -8.454225 -2.974309 -9.710784 0.424075 -0.659411 8.174657 -8.100963 -7.994344 -3.162989 -3.118737 -0.756693 14.359963 -10.488265 -2.568694 -1.788293 -3.056740 9.582873 1.867012 -6.855827 -1.149863 -8.610824 4.117187 5.514235 3.777866 -12.195986 -4.556607 -3.133584 -5.225274 -0.093887 1.238201 7.439453 -5.261057 -0.118153 7.994939 -1.339293 -4.141805 -3.230109 -12.948959 3.763553 1.171601 2.372048 2.705749 15.736293 8.914143 6.144792 -2.123837 2.543106 -2.308499 -4.354211 -14.103137 3.244096 -0.585913 2.778825 5.647995 6.542692 4.388564 4.175420 7.865171 0.286751 -0.239081 10.315248 3.129165 9.388953 -4.840809 -3.074958 6.612557 -1.576708 8.516069 8.412800 1.093426 -9.135197 6.210905 -2.939643 -8.711523 -4.008537 -2.874945 -1.147143 -2.381304 9.509454 7.353788 -3.038997 -2.060748 18.167720 -2.116629 -19.896222 7.244139 3.810749 6.486986 7.636264 -3.770022 7.875718 7.785080 4.647412 2.780363 4.408749 6.487396 -11.592524 -0.513398 1.592930 5.244567 8.594632 -0.665762 -24.305291 -3.359584 0.952560 13.965056 0.648186 13.909533 -6.058337 5.761242 1.135813 0.818289 2.327670 -2.731889 6.326703 -1.995688 -1.813480 -16.458136 5.051739 +4.627841 0.676115 1.503891 -4.649772 -0.752365 -1.689026 8.677923 -3.885356 -4.335002 9.050232 0.513005 -4.475286 -6.078561 4.018603 0.567839 -3.710298 2.507124 -2.833949 -2.382026 -1.503500 -4.245379 1.424222 -1.312436 -6.225068 3.263457 -0.834510 1.440110 6.369080 -1.695237 1.629454 0.562544 -2.933977 3.019364 9.975456 2.561588 -1.907164 -4.325900 12.489078 -10.663899 10.435317 -7.544932 -8.269032 14.782109 -1.541532 -0.839410 -9.505446 -1.370668 6.488337 -0.265793 -6.143665 -1.561976 0.051486 1.631552 -8.434686 -4.197086 10.554065 -9.060181 2.426121 4.550385 -6.612435 -9.341299 -2.364431 1.333632 1.585472 -7.913363 -7.251822 -0.247511 -4.120142 -2.949677 2.018656 -9.669602 -6.058511 4.956505 3.220462 -1.028292 1.707638 -4.264760 -2.583958 3.579659 0.340025 -4.626430 -4.694440 0.838789 -1.474745 3.380173 3.435123 6.395833 -13.675234 0.003622 -12.506639 3.633438 -7.942956 5.869380 9.167056 0.749943 8.949958 -0.200559 1.116276 -1.674375 -1.708062 5.110358 2.511081 5.654399 1.628700 6.014680 8.124131 -6.876028 -11.350604 -5.310807 -1.773490 2.785857 -1.266222 -8.916869 4.969908 -7.336285 -1.273205 1.622204 0.404330 -3.655064 7.570688 -10.063236 1.021040 3.099222 -2.705169 6.367671 6.337102 0.466333 0.545692 -2.086916 4.490778 2.978171 5.405132 -0.734444 7.452302 -3.766820 -5.879143 -0.962841 1.467100 4.089987 -6.408421 -8.630975 -11.447690 -2.743184 4.710656 -5.469360 5.456286 13.700647 -3.584699 -5.652567 5.386903 -1.678110 3.351105 2.447434 2.267004 13.664328 -7.169834 1.780751 1.696266 1.432479 5.127135 12.686934 -3.510557 -8.392662 6.703779 -3.000306 -2.417417 6.352971 0.038566 -0.122363 2.464918 -0.208133 -1.097189 -6.487991 9.855961 -7.694096 8.840247 -4.784522 10.993700 -3.888616 -1.868396 3.240994 -7.873532 -3.131456 -9.638875 0.667604 -1.468801 5.339131 -6.184284 -5.887085 -3.131906 -2.229291 -1.856876 11.313667 -8.372977 -1.848261 -0.821593 -1.635511 7.735338 2.332736 -4.696870 -0.878229 -8.445299 3.490047 3.935188 1.090287 -11.547974 -3.445900 -0.509750 -3.751998 1.293907 0.596370 5.110099 -4.218476 -0.025804 6.770593 0.075805 -2.447874 -1.415299 -7.525150 3.231758 2.357154 1.982438 2.819323 12.962427 6.224026 4.933450 -1.185694 2.630831 -1.413336 -2.473401 -11.419290 2.883972 -1.010089 3.124925 4.746406 4.757852 2.411470 3.242834 6.656907 -0.082096 -1.154044 6.894452 3.209815 8.273314 -3.235808 -4.095102 5.072398 -2.184835 6.517827 6.675497 -0.103167 -8.474414 5.277126 -4.423937 -7.185678 -1.362235 -1.375350 -1.399718 -2.839483 8.182445 6.529730 -2.045535 -1.856399 15.081714 -2.361006 -17.728871 5.770018 4.509949 5.356279 7.199538 -2.802032 6.617210 6.340386 3.778191 2.131975 4.804355 5.283076 -8.980250 2.270138 1.181720 3.434098 5.789436 -1.383388 -20.459357 -2.277132 2.481808 11.385031 1.208486 11.103657 -4.394332 4.529965 0.948390 1.619469 2.518790 -1.986528 5.955179 -2.747662 0.973086 -11.682113 4.664888 +9.699603 -0.703382 7.020550 -10.158631 -5.882394 -1.114656 14.682764 -13.979834 -7.688319 23.834335 4.618589 -10.474982 -5.243722 12.679704 -1.830949 -3.631218 6.713186 3.334234 -3.627195 -0.547324 -8.135824 4.053729 -5.547595 -10.788521 5.385726 0.374189 6.875227 11.767819 -6.063783 4.873419 -2.611542 -8.079581 3.934328 24.180485 8.542192 -3.047307 -9.427110 28.419442 -20.545707 25.930187 -21.599600 -14.097974 26.520336 -3.621228 3.297542 -21.561193 -7.892987 16.045584 1.149187 -19.002301 -2.369991 -3.544770 6.665720 -17.106935 -8.242648 18.536993 -17.886241 1.345255 14.526293 -16.076208 -21.481606 -4.635195 8.174116 4.585763 -24.428307 -16.199733 0.778132 -6.094849 -2.702888 3.752704 -21.208289 -20.445536 9.033040 3.201336 -7.981977 1.992465 -8.157131 -12.213378 10.246213 4.384078 -15.217214 -10.387634 -1.032470 -13.298447 9.000889 4.649277 18.382759 -32.565050 7.902581 -33.495260 7.477747 -17.116572 13.806844 23.527107 -6.579438 14.934023 3.148171 13.468496 0.354609 0.441048 11.897030 8.276835 6.298537 1.603038 18.157438 16.944469 -15.231157 -24.462727 -13.550732 -10.060316 8.490317 -5.609568 -21.388646 10.225563 -15.126602 2.767910 -2.648840 2.328567 -5.502875 21.946692 -24.891153 4.893123 8.720151 -6.090949 11.746982 17.208804 -0.714683 3.532725 -6.616406 10.661858 0.441552 8.321988 -1.565044 17.265637 -13.827023 -10.443035 -4.915705 4.337637 10.326314 -13.808240 -21.283894 -31.029098 -7.372644 10.653225 -11.621989 11.834754 31.816838 -11.118619 -14.986714 12.572487 -1.386711 -1.055266 9.542339 5.450048 31.430187 -17.966773 3.526557 -1.586517 0.615661 8.318890 23.776530 -8.233251 -17.306499 17.003636 -10.113771 -17.340115 30.944478 2.224741 -2.680852 6.339218 3.229633 -1.904578 -12.886104 23.702003 -21.726563 17.680257 -12.537277 26.476975 -9.234175 -3.233960 5.269299 -17.381994 -4.818641 -17.259197 0.371559 -2.762892 19.681144 -13.838223 -13.688369 -3.701408 -7.854069 -3.101886 25.033185 -13.998699 -3.616423 0.864365 -4.484866 17.779923 7.520035 -8.619492 -1.574864 -15.073568 7.771870 10.784110 0.622266 -23.118499 -9.513686 -9.568692 -8.439650 -5.848664 2.254938 14.619668 -16.067329 -1.780036 12.390806 -1.277372 -3.781791 -1.629728 -23.292224 8.893176 -0.587753 7.325087 8.104817 28.350469 13.743135 16.639288 1.314133 3.529985 -3.288430 -6.956789 -25.951438 7.184405 0.573708 7.786117 10.528147 9.508358 8.812914 9.169774 9.226689 -4.001163 6.581186 19.975958 7.990887 20.966504 -6.936907 -3.646799 10.027598 -3.130239 16.036532 17.579695 0.942141 -13.843606 8.228086 -10.096749 -20.074564 -7.275577 -1.833379 -1.462703 -6.422898 10.888644 15.718125 -2.536878 -7.322873 33.379593 -5.358747 -39.559342 13.241721 6.353369 12.152968 22.161116 -4.319442 17.852873 10.067704 10.713585 11.210046 12.557388 13.403613 -21.564131 1.600056 2.657762 9.447173 17.900608 0.839375 -47.429096 2.695317 2.866716 23.657007 -0.728187 24.081510 -13.699588 13.581690 4.212998 -2.409837 4.736137 -5.127180 15.168087 -0.601709 -2.637055 -32.295306 7.115619 +3.290815 0.535216 3.601412 -5.720410 -1.931352 -1.587947 7.079709 -4.837769 -2.948666 7.683763 1.394844 -4.655877 -4.356378 5.523583 -1.007005 -3.831651 2.246897 -1.852517 -2.624551 -2.102061 -2.457804 1.835690 -1.192908 -6.045356 2.935256 -1.393783 2.804715 6.332185 -1.550776 0.704390 0.600196 -3.152812 3.355720 10.526628 2.229193 0.419777 -4.604298 11.150482 -7.341578 10.397668 -10.430105 -8.129661 14.214717 -1.779058 -0.100018 -11.808534 -2.814496 6.218372 -1.003170 -5.853525 -2.204233 -0.237912 1.998866 -9.086104 -4.083366 8.831168 -8.596718 2.319667 4.761081 -7.695429 -9.251191 -1.937839 1.978070 1.800868 -7.481651 -6.781609 0.010482 -2.618805 -3.600612 3.034059 -7.519364 -6.752778 6.605476 1.934595 -1.710243 2.296103 -3.527848 -3.917201 4.445327 -0.587437 -4.312224 -5.371621 1.808094 -1.834344 3.208159 2.492526 6.346118 -14.154790 0.189677 -12.351085 4.769541 -7.259583 6.075982 8.135118 -1.698446 8.821638 0.459062 1.120942 -0.515673 -0.294751 5.283583 2.971588 6.496201 1.210401 7.536250 6.988624 -5.840349 -11.249176 -5.557687 -4.124081 2.992464 -2.325979 -10.662142 4.231988 -6.815461 -0.802844 0.179009 -0.225848 -1.944429 8.429663 -10.325630 1.293313 4.585771 -2.625738 4.673356 6.234190 0.157348 0.807944 -2.026896 4.774756 1.111400 4.231836 -0.138916 7.517307 -3.564457 -7.128631 -1.869482 1.033509 3.075210 -6.000217 -8.821824 -11.923281 -3.453677 4.580656 -4.854369 4.551797 13.168350 -3.332091 -8.427733 5.300920 2.032304 1.133433 3.425445 2.936704 13.286587 -7.602723 1.567024 -0.462565 1.121131 6.250011 12.039396 -3.595169 -8.375590 7.670583 -4.015486 -7.936137 8.786234 -0.770797 0.115495 2.936660 0.358933 -2.721443 -5.936286 9.064325 -4.650346 10.575305 -6.223552 11.768638 -5.621507 -3.531430 2.101293 -8.650806 -3.089175 -7.270388 0.814195 -1.130941 6.859021 -6.805138 -6.344559 -2.883263 -3.336908 -1.002552 10.995583 -8.831976 -1.426244 -0.908332 -2.110022 7.241031 2.633731 -4.779963 -0.470456 -7.422545 3.164729 5.481496 3.692058 -11.464302 -3.345652 -2.258767 -3.697885 -0.246121 0.860661 5.965070 -3.948706 -0.085657 5.841090 -1.642581 -2.583623 -2.452711 -8.500480 2.850769 0.405585 2.621330 1.503753 12.701832 7.814036 5.191446 -1.100743 2.086383 -1.145797 -3.958601 -9.762592 2.332525 0.047383 1.652726 4.616415 5.731436 3.339363 3.402953 7.647128 1.110194 -0.593008 8.077490 2.126639 8.641620 -4.157357 -2.181306 4.239853 -1.278496 7.308797 8.502485 1.801895 -7.243371 5.153152 -2.707689 -6.621460 -4.099829 -2.211022 -0.957959 -2.885980 8.796539 6.496759 -2.576286 -1.941368 14.821444 -1.107626 -16.184894 6.598184 3.577328 4.957382 5.600593 -3.371429 5.285173 6.980882 2.822373 1.727696 3.915908 5.881765 -9.891496 -0.643213 1.038392 4.740629 6.998738 0.136924 -19.091962 -1.499077 2.490985 11.290288 0.009501 11.332979 -5.281806 3.688057 0.875052 1.310104 1.335462 -1.137537 4.892607 -2.458561 -0.632864 -11.967065 3.152718 +51.740805 -39.971944 90.122494 -205.761902 -204.975188 26.141950 7.016934 -138.337322 -46.094330 63.687265 87.215502 -78.340427 -67.014105 213.907887 -23.936899 -151.299651 -2.229168 -88.943859 -9.573159 -17.820060 -27.525477 123.776061 -60.572509 -24.413199 39.727894 -43.955655 -32.537875 125.347681 71.786047 -68.638139 -41.465010 -105.966342 -31.139625 250.832689 80.677071 -9.236185 -26.604497 399.964704 -88.856742 185.087896 -227.935484 -184.051964 228.924044 -61.614977 -38.032546 -222.050411 -159.137100 137.785518 -79.783296 -60.150021 91.922710 -9.431448 59.871465 -83.044344 2.928755 111.406058 -261.748829 114.316062 120.594144 -110.806486 -77.812145 -63.504212 -49.570638 36.383581 -143.720724 -144.321564 48.881853 41.687609 -57.821731 -24.782972 -63.899159 -183.112616 293.773612 88.816946 -74.412576 48.516883 47.800511 -167.401738 166.360640 -66.824308 -264.251514 -81.358729 -26.587267 -113.220119 198.442705 -16.204957 169.488939 -355.686656 95.808230 -381.594772 91.822192 -193.337275 110.562282 256.181994 -184.564983 139.348548 122.959282 126.266137 137.597175 -2.837084 206.938342 92.090205 48.776214 135.008407 174.501907 109.929104 -80.238306 -114.446620 -161.541611 -195.657383 42.410195 -101.072879 -357.989931 123.398985 -32.687634 0.912928 -57.510499 39.152989 -17.192218 217.721121 -222.431800 26.209173 97.764721 -61.791895 54.319446 192.756822 -61.873638 5.647825 -119.261166 191.673899 -126.139457 159.155681 -22.444834 177.350572 -63.208521 -161.173949 -208.110725 45.185354 83.019378 -178.792221 -225.766235 -242.202868 -42.283232 64.633013 -126.806012 214.692497 415.554497 -208.574685 -225.336163 261.816963 113.723962 10.500832 162.291068 54.564018 259.102802 -64.504277 -101.829142 -119.670668 -125.998591 18.549999 53.026669 42.329460 -89.421627 163.796278 -39.058074 -203.467094 340.177503 -36.393025 -153.524159 18.376611 38.557123 -128.437183 -184.149864 234.099761 11.286184 205.031513 4.988004 306.168648 -57.424987 -133.220784 77.821541 -114.000473 -27.896276 -158.863502 -16.094466 22.917621 118.998761 -150.144119 -135.394473 -74.318491 -102.207468 -127.688988 129.853435 28.711806 52.710238 101.068924 59.654186 142.039196 276.838397 16.740784 -3.057915 -202.174824 131.101308 137.276564 -13.277986 -225.874582 -60.260151 -69.692689 -49.947340 34.003489 7.580327 157.584727 -122.068280 -47.710170 10.558604 -4.746962 55.664454 86.721791 -284.067379 66.010039 -3.058644 127.629408 92.994248 201.233644 223.785688 236.957179 136.341597 85.163665 -24.515693 16.721732 -60.331570 -4.560219 50.330090 83.474651 133.216315 218.288498 187.830896 120.429503 215.789393 148.101454 71.768815 231.606080 14.531623 364.832842 -55.397624 -72.996645 -2.913245 49.655556 230.057994 347.428728 -3.835685 6.931827 126.734055 32.541886 -117.200151 -212.744805 54.167117 -44.097683 -7.755564 128.216314 112.472843 -1.450842 -74.086801 290.346548 -47.362766 -356.989476 171.915838 76.029459 157.916693 115.620515 28.168347 63.392316 105.295356 -126.806046 176.075800 205.611398 147.247882 -216.135431 -56.607092 32.969434 133.767989 87.967798 186.849394 -286.669119 82.077098 98.683844 211.036893 7.301627 146.649636 -168.324549 -93.484620 122.817613 -59.412908 -14.771860 60.649313 77.614280 -140.507392 36.841385 -171.314922 -122.188365 +7.897086 -1.513978 7.839396 -9.209386 -3.925670 -2.396837 17.247287 -10.714994 -6.412014 20.980892 1.798294 -9.346363 -8.545001 10.780211 -0.932197 -4.269456 4.134372 -2.277095 -3.807301 -1.459588 -7.243217 4.725287 -4.248212 -11.090747 6.709015 -0.991559 6.761909 15.770385 -5.787557 5.371019 1.831761 -8.060837 4.363994 22.104702 6.478903 -0.350002 -8.462754 29.070494 -23.996594 26.055103 -18.931297 -18.387805 30.379684 -3.570078 -0.396964 -19.321281 -6.028493 15.091508 -4.279586 -16.349904 -2.791480 -0.453614 5.881040 -17.725581 -8.137576 18.768110 -21.066521 1.533145 10.825511 -15.924134 -21.750861 -4.810790 4.192722 5.239178 -21.547069 -14.851767 -0.418463 -8.499682 -4.748617 3.928742 -16.909250 -14.095326 11.371050 3.311958 -4.791138 3.521029 -6.662319 -7.671683 10.143027 1.025110 -12.634510 -11.033607 -0.714673 -13.326491 7.932991 6.578853 16.461141 -28.880750 5.250462 -27.574891 9.040620 -17.511958 11.536452 20.974737 -4.533664 20.425217 2.055437 11.628254 -0.445560 -2.798511 10.180436 7.525173 11.320107 4.701827 15.405166 16.758297 -16.463440 -23.581814 -17.626636 -8.107523 8.713978 -7.174826 -21.608183 8.957403 -11.969530 1.975490 0.663344 1.280652 -6.964927 19.986424 -25.864338 11.428019 7.875515 -5.025109 9.623317 13.812870 -0.281357 1.577229 -3.445401 10.013342 0.658026 9.968605 0.215000 16.686639 -12.105918 -7.033805 -1.982552 4.032720 7.814657 -12.186381 -18.271933 -29.377672 -6.804818 12.899356 -10.719428 11.599679 31.655253 -8.496715 -14.221449 11.335697 -0.761792 2.492189 5.926134 5.764482 26.106484 -14.035721 0.586641 -1.886387 0.338756 11.182208 29.417552 -5.843734 -17.020528 17.455682 -8.413923 -11.525869 23.898585 1.418345 -1.579682 1.132008 2.337708 -4.963436 -13.077104 24.193355 -20.398343 19.429946 -13.487162 24.178498 -8.740859 -2.738386 4.621469 -21.840389 -5.567467 -21.807467 -0.470773 -2.995555 14.722515 -15.060860 -12.475363 -8.492728 -6.595951 -3.283761 22.290449 -18.318080 -3.167892 -0.461335 -3.391977 18.596336 5.674978 -8.756259 -3.564263 -16.655102 6.766930 8.557598 2.282304 -24.677706 -8.787038 -5.380745 -8.439220 -1.277872 2.084420 12.614275 -14.659278 0.714007 12.515575 -0.861828 -6.307336 -2.491721 -26.364440 6.883068 3.121613 8.083807 8.796791 25.025992 16.091503 13.741567 -0.425041 8.359618 -4.086517 -6.639512 -23.529761 7.242489 1.207564 5.774938 10.033690 11.902445 8.593346 8.053064 11.190174 1.600881 1.504900 17.821877 7.011548 20.236731 -8.135540 -6.566485 10.141767 0.517311 14.112983 13.551368 2.299058 -13.565328 9.990456 -9.214761 -16.151229 -4.486618 -1.995695 -2.937409 -2.180580 17.660907 14.067029 -3.833706 -4.041419 30.258747 -4.843143 -37.858986 11.535385 7.416138 12.439552 17.063485 -5.001337 14.770107 13.455338 7.544180 10.136525 11.239026 10.642159 -19.909295 4.016007 2.998599 8.991984 18.734500 0.996108 -48.145364 -1.919931 1.589015 21.440904 -0.932661 26.640910 -11.876231 9.834613 2.822483 -2.082485 4.542719 -3.248364 12.553740 -0.114588 1.231206 -30.707684 5.823129 +4.684966 -0.635609 4.347491 -5.842430 -3.003126 -0.945474 7.461423 -6.112115 -3.693242 11.679588 1.406384 -5.146295 -4.196904 5.356650 -0.715803 -3.642652 1.827257 -1.562713 -1.960242 -1.967710 -3.397032 2.550950 -2.185043 -7.378473 3.556720 -1.780389 3.327101 8.258188 -3.081634 3.900097 1.508336 -4.542632 2.832723 12.909434 3.721510 -0.024465 -4.752435 15.160039 -11.878570 12.417172 -10.927528 -12.207467 17.359172 -1.927593 0.401830 -9.602140 -2.483927 7.842178 -2.199878 -8.045630 -2.239171 -0.438676 3.989428 -10.238292 -5.437313 9.118841 -11.553529 0.967973 5.301537 -10.163691 -12.667005 -2.393443 1.790341 3.451322 -10.991433 -8.408588 -0.268560 -2.737481 -2.342310 2.220281 -8.588076 -7.549058 6.847014 2.225409 -1.627181 2.045855 -3.333770 -4.494904 5.803880 1.034038 -7.116966 -6.497727 -0.176004 -6.372703 4.449119 3.863925 10.421942 -16.379762 3.385235 -15.701851 5.870461 -8.150899 6.515732 10.815574 -3.062192 10.729603 1.920573 6.995418 0.155337 -1.778915 6.528641 4.338135 6.371862 3.230924 8.675115 9.610281 -8.455047 -12.653367 -8.672100 -4.887967 4.397213 -5.130670 -12.912131 5.271695 -6.663150 -0.097940 0.179638 -0.801324 -3.353873 12.056659 -15.388928 3.823017 4.530156 -2.732407 4.879414 5.634487 -0.022817 0.413507 -1.133625 6.070619 0.010419 4.285899 0.887831 9.755786 -6.424739 -4.647401 -1.611210 3.183224 4.272233 -7.781927 -10.425065 -15.720801 -3.587530 8.206374 -5.797161 6.860779 17.253337 -4.910097 -9.268088 6.463831 -1.032246 -0.247433 4.301066 3.770446 13.758292 -7.664847 -0.088121 -1.339915 -0.188349 6.855748 14.942943 -3.356249 -9.319403 10.480097 -4.299062 -5.160022 11.678786 -0.425497 -0.693773 -0.213044 1.157400 -3.759414 -6.050652 11.551513 -9.774492 10.801472 -6.930745 13.692844 -5.250615 -2.831403 2.549859 -13.332479 -4.564824 -10.549718 0.591965 -1.678182 7.593723 -8.812919 -7.351690 -4.491493 -3.826938 -2.007836 13.041856 -10.216881 -1.101329 0.433133 -2.235860 10.068116 3.127337 -4.530218 -2.543015 -8.533663 3.784325 5.585108 1.849375 -13.221224 -5.613705 -2.797681 -4.075221 -0.125758 1.520351 8.143866 -6.684017 0.798017 6.622014 -0.357492 -3.428736 -1.637174 -12.335565 4.081533 2.282496 4.737478 3.668009 14.620863 8.889107 7.889360 -0.838447 4.603784 -1.782043 -4.114822 -11.893009 3.411778 1.012365 2.656774 5.505995 8.187030 4.507892 5.294021 7.895559 2.908819 0.657357 10.171535 2.267345 10.942660 -4.976338 -3.088533 5.344411 0.641476 8.475287 8.544800 1.459168 -7.568982 5.459823 -4.954840 -8.349094 -2.461684 -0.728913 -1.273278 -0.873444 8.076390 8.654596 -1.773061 -2.723495 16.708829 -1.301913 -20.573306 7.640555 4.570550 6.855659 8.745199 -3.896057 7.513166 6.698039 4.322729 5.430003 6.765074 5.719495 -12.343335 1.563629 2.018595 6.015418 9.483327 1.100464 -22.957645 -0.515942 1.272012 11.841966 -0.514555 14.106551 -7.686778 4.198138 1.308074 -0.778485 2.065470 -1.035648 5.791223 -1.517155 1.601903 -15.197883 2.851491 +5.195527 -0.106361 7.811829 -12.685470 -7.528593 -1.762495 13.071944 -10.207258 -6.005931 18.526901 3.576944 -9.460375 -10.004433 12.491290 -1.018844 -7.590894 2.838466 -5.943414 -4.141525 -2.827457 -6.467156 6.031480 -4.220688 -9.918947 6.588133 -2.503999 4.324748 13.409139 -1.513818 1.188485 1.065174 -8.179000 4.133378 22.923802 6.391507 -0.011142 -7.156480 27.608266 -16.860942 22.494315 -18.590129 -18.885435 27.123398 -3.633200 0.293920 -17.492097 -3.235045 14.885760 -4.401664 -12.853158 -0.038787 -0.147174 5.804176 -16.209349 -6.452714 15.653233 -19.798110 5.726060 10.237350 -13.550423 -17.024874 -5.828899 0.884842 4.697170 -17.321713 -14.384177 0.013825 -4.569289 -7.426362 2.406651 -13.665628 -13.341459 14.066564 4.805662 -4.940387 4.420211 -4.758907 -9.039796 10.730326 -2.332499 -13.840225 -9.823894 0.519526 -8.720317 10.690754 5.331762 13.506712 -29.622095 2.870150 -27.811489 9.080757 -14.749828 12.037196 20.371364 -6.433668 17.378399 3.239730 8.399780 1.059128 -2.452685 12.835244 6.425525 10.844709 6.729070 14.828576 14.915968 -14.499425 -20.880756 -14.028453 -10.058264 6.680407 -6.322227 -19.474063 8.960862 -10.730276 -0.519322 0.459815 0.590481 -6.940922 17.695391 -25.127090 2.666890 7.747481 -5.300389 10.451760 12.628398 -0.662916 1.577666 -3.528022 12.675498 -0.941736 9.604050 -1.397575 16.833180 -6.217717 -9.010648 -6.112621 3.824731 7.986392 -12.711978 -19.577688 -26.221427 -7.081456 9.328497 -10.809020 12.871032 30.165407 -9.910228 -15.370245 15.076740 -1.203741 3.211634 7.811181 5.709398 22.913038 -12.697177 -0.631659 -2.713989 -1.982443 9.713740 25.059601 -4.090556 -16.347775 15.638365 -6.421076 -9.476589 16.404094 0.272752 -4.005001 -2.408755 1.546131 -8.413480 -13.119348 20.279265 -14.921710 18.150517 -9.916056 25.859212 -9.438328 -7.294046 6.093087 -16.903246 -4.221554 -18.280047 -0.522229 -0.097157 12.110910 -15.367123 -13.186764 -6.557342 -4.188056 -5.707750 19.440707 -15.379455 -2.262885 0.801380 -0.782048 17.246678 9.321727 -7.678190 -2.594102 -15.453286 7.746452 8.703453 4.169036 -21.593545 -7.040002 -4.815855 -8.204586 3.216084 1.502303 12.355675 -9.991315 -0.468616 10.905539 -1.792037 -3.661430 -0.409518 -22.815065 6.979224 3.357275 6.382918 7.577768 23.852968 15.546276 13.987904 1.426413 6.766658 -4.007397 -4.463630 -18.543832 5.095968 1.680709 5.477811 10.896907 14.371960 10.970051 8.540343 15.105320 5.248805 -0.885868 18.436631 3.294037 20.758021 -7.722219 -5.089576 8.432838 0.794320 15.568814 17.515327 -0.029525 -12.400534 11.634382 -5.058754 -12.907763 -5.909737 -1.289743 -3.869579 -0.893871 13.711865 12.304458 -3.736189 -3.882383 29.542673 -5.344181 -33.220097 13.283181 7.630915 13.596522 12.077149 -4.274111 11.051786 11.871695 1.065221 10.243919 12.082757 11.164161 -19.251788 0.000357 2.460373 10.047409 14.943484 3.740647 -37.669726 -2.726731 3.173182 21.106159 1.812090 20.416567 -11.879480 3.643863 4.052454 -1.742283 3.137101 -1.841408 10.636458 -4.562800 1.517602 -23.869834 2.614996 +4.796102 0.696132 6.019056 -12.827187 -8.379073 -1.939792 11.458837 -9.622234 -5.658676 14.564032 3.627132 -9.729600 -9.570700 13.241743 -1.961121 -8.360863 1.060351 -7.214712 -3.965712 -2.535944 -3.933904 6.848941 -3.224423 -8.624417 5.150720 -1.512550 2.655866 13.969552 2.546419 0.345454 0.544611 -6.716456 4.089920 19.960468 5.506336 -0.916624 -5.856374 26.449689 -18.220547 19.142254 -19.441911 -17.156909 26.806509 -3.023874 -3.243423 -22.262721 -7.330872 12.566968 -7.269753 -9.308023 -0.066295 0.120861 4.413707 -13.844212 -5.322236 16.743047 -22.161747 8.331767 9.040032 -11.403598 -14.159684 -4.752866 1.531753 4.179036 -14.227441 -13.042364 -0.555079 -6.173020 -7.024186 2.167226 -11.369336 -11.336709 16.486690 4.196139 -5.099757 3.719070 -4.879548 -9.870993 10.065510 -4.896362 -12.039446 -8.222312 0.983925 -6.441618 9.754149 3.595362 11.311820 -27.020623 1.016440 -24.719547 7.709286 -15.660115 9.516355 17.760244 -7.890287 15.746258 1.684725 4.949632 3.955586 -2.147724 11.203663 6.713218 12.636343 5.908901 12.494836 14.315751 -11.529414 -17.441018 -13.208931 -10.016658 4.948630 -6.607084 -25.324761 8.012001 -8.855965 -1.496442 0.988423 -1.676211 -5.133378 16.962627 -20.887950 4.709230 6.021504 -4.217581 7.609128 14.326097 -0.747051 1.064144 -4.401414 11.400972 0.088333 11.746317 -0.251702 14.182483 -8.232634 -13.692187 -6.773604 3.685551 5.854897 -11.174715 -16.777521 -24.087037 -5.257895 6.201275 -9.344135 10.789275 28.382065 -8.638684 -17.270149 14.630212 2.795933 2.437305 7.981908 3.793035 23.596370 -10.268245 -1.533179 -2.900332 -3.001772 7.721485 23.757716 -3.584549 -14.255669 12.836804 -7.268778 -15.247095 15.057659 0.956427 -4.070874 -0.446749 0.714252 -8.902603 -13.655052 20.198292 -12.007505 19.237571 -9.929297 22.152563 -8.113446 -8.191755 5.900382 -17.554666 -4.477736 -17.038638 -2.122494 0.634498 10.882175 -13.949671 -10.707070 -7.773074 -3.679939 -6.756412 18.130283 -15.490001 -1.373437 1.175568 0.421367 15.822933 9.485644 -7.675404 -0.604958 -15.385837 7.538843 10.928924 4.117893 -24.872413 -5.732497 -4.804485 -6.698870 3.394896 0.428855 11.029839 -8.884017 -0.891970 9.312135 -2.110337 -1.754001 -0.387251 -22.599844 6.678208 0.231369 7.278124 6.185317 21.644893 14.769040 12.061983 1.263779 7.702376 -2.651741 -5.317181 -14.536632 3.788851 2.551428 1.724607 10.128048 15.143764 9.480242 7.486600 14.766104 7.905693 -2.699392 16.436769 4.487504 20.610161 -6.533869 -6.693801 6.013117 1.109419 13.849804 18.765554 1.824213 -10.618938 10.199486 -3.881617 -10.240286 -9.598536 -1.805198 -3.891694 -2.267074 17.468699 10.305606 -3.934092 -2.447841 26.389748 -3.704154 -31.187033 12.841181 7.169619 11.159166 8.914551 -4.293784 7.789469 12.949733 -0.659079 8.366566 11.396172 9.760957 -16.655755 -1.917154 2.249724 9.533418 14.506358 5.312135 -36.653850 -1.277162 4.927521 20.688121 1.107422 21.775571 -10.230306 1.637407 4.233708 0.903008 2.235733 -2.297014 8.252808 -6.094625 1.398723 -20.935182 0.251411 +37.155838 0.439750 26.737567 -60.876313 -33.144054 -2.093906 33.425458 -74.033225 -36.566570 103.554874 28.853320 -40.854834 -6.365037 59.487562 -18.153388 -27.663128 17.119753 20.234148 -17.049163 -21.205081 -16.561881 22.265559 -23.174367 -65.625674 14.645360 -17.144712 36.055317 45.819107 -23.231531 39.388241 -8.690241 -42.206234 22.845821 108.597328 40.296594 -1.036612 -52.590211 100.334992 -86.017224 82.371390 -104.082236 -88.721065 119.437760 -14.822286 23.322774 -99.008115 -45.466444 52.677527 18.334399 -69.021210 -22.681521 -21.491825 42.086922 -78.133221 -38.442315 54.769333 -60.401148 -0.751657 56.266205 -82.995748 -91.125948 -24.663226 39.797289 29.951141 -99.214485 -69.635963 5.793158 3.646932 -3.349799 15.508303 -79.144217 -95.225293 41.739093 14.180830 -26.685789 6.162039 -38.079786 -75.963251 47.024601 22.321911 -59.709644 -48.694036 4.056728 -35.240951 24.084923 28.372734 93.319853 -140.847192 32.893020 -135.737535 40.391100 -51.357055 65.309542 83.751706 -44.238839 55.589019 24.929547 85.956025 22.291091 -4.632571 55.268637 45.519702 38.410696 4.942664 82.343450 77.818802 -57.424724 -96.891382 -52.406694 -55.905534 38.974744 -49.351402 -115.729212 45.194715 -60.853345 -35.343212 -31.293615 -17.684210 -16.085784 112.838010 -129.397469 -4.510430 46.163403 -25.404803 37.972393 48.448058 -2.209702 16.811060 -20.950626 43.032205 -7.028503 20.215038 -1.336015 80.283354 -76.051899 -55.753582 -27.002465 31.739237 39.689881 -79.034455 -92.619928 -127.497614 -31.894003 55.131562 -44.091659 38.837375 123.607859 -52.409618 -89.600445 50.149238 12.023618 -36.680446 56.412880 29.260156 124.285353 -77.948038 19.976506 -13.639043 -0.966428 47.464145 86.755334 -38.539091 -77.987596 81.220129 -55.024561 -86.612260 106.513825 -10.176256 -11.278193 -9.686316 24.101558 -29.053533 -26.704940 86.666681 -95.468663 82.384368 -67.481185 103.023942 -60.912659 -21.055926 14.954324 -117.113993 -46.373328 -59.049388 12.710494 -13.992326 93.223521 -64.063118 -60.650025 -22.082001 -40.280027 -9.802024 109.119492 -93.434473 -13.119429 6.770384 -21.153406 67.700256 40.198943 -28.973876 -7.675555 -40.746190 37.246536 73.012277 23.168185 -111.274257 -52.723876 -53.729141 -32.268521 -41.055490 12.155038 79.677539 -51.464051 -3.088496 41.634912 -12.990377 -14.842326 -15.325411 -78.502383 45.946859 -21.527849 44.467699 11.248267 123.664006 60.751347 80.694640 6.580951 4.482351 0.400593 -53.377348 -90.521308 40.675918 18.379991 6.053176 48.741810 67.939861 37.666393 50.639835 66.803722 9.965438 31.671984 92.499599 10.391568 88.474798 -28.836595 -0.449673 32.563689 -7.559542 73.588633 98.483008 38.760117 -53.958617 32.671327 -45.754757 -77.129144 -31.361413 -5.772448 1.109815 -33.883788 44.580529 80.368749 -12.570894 -41.620403 140.642216 -5.778704 -147.498211 68.693170 29.529866 55.333441 81.650014 -41.231066 65.294568 43.651793 50.681686 50.314318 58.619013 59.117263 -98.651291 -15.713929 12.662837 56.179089 96.210869 4.490083 -165.333240 45.201742 25.999126 102.111864 -13.119004 98.701089 -71.809367 51.901299 10.151314 3.650463 22.050481 -16.812195 55.808272 -19.172937 -12.303712 -118.349964 20.178753 +4.762851 0.647777 4.627218 -6.149878 -4.262910 -1.546943 8.902213 -6.844172 -4.622873 13.434920 2.129774 -6.348468 -6.038063 8.512859 -1.297382 -4.493024 1.436388 -1.088864 -3.238530 -2.724866 -4.346440 3.264546 -2.397421 -7.487585 4.079369 -1.375270 3.403440 9.160988 -2.465126 2.804288 1.228252 -4.804291 4.049514 14.282787 3.783736 -0.594611 -5.242364 18.419744 -14.524622 14.916707 -13.477216 -13.239020 20.813483 -2.223983 -0.284552 -12.804617 -3.773994 9.736090 -2.834152 -8.940739 -2.024697 -0.123246 3.008209 -11.277127 -5.199773 11.131528 -13.600596 3.401337 6.580658 -10.211225 -14.157991 -3.325643 2.264169 2.473536 -12.584191 -9.125637 -0.488385 -4.020478 -3.023766 2.460626 -10.005960 -9.305230 8.883488 1.942931 -2.354752 2.709432 -4.400006 -5.457757 6.514806 1.001824 -8.670855 -6.684404 1.231629 -5.466932 4.981280 4.908239 10.513368 -19.935364 1.900278 -19.733196 6.000069 -9.894994 7.695090 13.037865 -5.105253 12.236700 1.671315 6.103985 0.632789 -1.093287 7.654437 4.968161 7.551539 3.434923 9.843915 11.920990 -9.624594 -15.001278 -9.887547 -6.410093 5.029573 -4.044159 -14.925172 5.700098 -8.165012 -0.728565 0.037352 0.153272 -3.421492 13.384983 -16.267236 3.539015 5.570899 -3.227223 6.930029 8.066248 -0.187220 1.343390 -2.516088 6.887867 0.010949 5.473819 -0.047016 10.430371 -6.178191 -7.867458 -3.251347 2.787633 4.589951 -8.445509 -11.860589 -19.042625 -3.797407 7.825308 -6.887892 5.695639 20.708168 -6.358971 -11.531166 8.423288 0.310430 1.266217 5.240793 3.676628 18.499933 -9.330488 0.442396 -0.342595 -0.519101 7.436601 16.681528 -3.854662 -10.630045 10.123033 -4.237695 -8.986604 14.418946 -0.520345 -1.535848 0.407510 1.694252 -3.931959 -7.774062 13.495456 -9.218690 12.780465 -8.455790 15.949079 -6.642026 -4.110950 3.301827 -14.243001 -4.052677 -11.806676 0.109791 -1.456467 9.628007 -9.598422 -8.123043 -5.003392 -4.043509 -2.950313 14.750389 -10.855769 -1.338157 0.072522 -1.508492 8.643791 5.073988 -5.584537 -1.664392 -10.451708 3.833338 7.777592 2.624545 -17.204165 -4.949418 -3.877334 -4.965987 -0.010052 0.941867 8.061549 -6.887672 0.349207 7.734355 -1.818539 -2.871226 -1.684130 -12.739687 4.669711 0.627725 5.200060 4.493590 17.567115 10.926762 9.090059 -0.091683 5.382446 -1.460728 -5.128930 -13.358300 3.879217 0.910270 4.456407 6.933352 8.791714 6.045754 5.568697 8.430504 1.000722 0.191090 11.797360 4.170618 14.618437 -5.699255 -3.389729 5.186666 0.345179 9.663353 11.950228 1.729215 -9.436541 6.467810 -5.359295 -9.515450 -3.879658 -1.676733 -1.685651 -2.158416 10.403465 9.412162 -2.832572 -2.520847 20.565439 -2.755796 -24.812193 9.089858 4.766197 7.820811 9.753922 -3.856190 7.767861 9.456483 4.748162 6.082935 7.926835 8.103223 -14.454495 1.257077 1.388912 7.406236 11.224118 1.393243 -29.229630 0.587500 2.569768 14.033447 -0.406362 16.015536 -8.025239 4.435625 1.636666 -0.597091 2.134969 -1.027783 7.719213 -1.973080 0.585429 -18.242769 2.862394 +2.426597 -0.146539 3.571178 -5.495694 -4.374528 -0.349372 4.268432 -5.663226 -2.384899 7.089248 1.505939 -4.042378 -2.594947 6.445189 -0.817999 -3.058652 0.876135 -0.975741 -1.448364 -1.633136 -1.484416 2.986206 -1.811777 -4.342532 2.091270 -1.552081 1.720303 5.633222 -1.116232 1.069192 0.592200 -3.591522 1.811541 9.347473 2.675155 0.364576 -2.962830 12.164561 -8.022537 9.063235 -10.040370 -9.524738 11.861505 -1.478494 -0.311845 -9.917614 -3.939094 5.354201 -1.869542 -4.333259 -0.405500 -0.301492 2.129299 -6.086282 -2.156094 6.034956 -8.565135 2.549949 4.019631 -7.498789 -8.074519 -1.921577 0.334927 2.376242 -7.653110 -5.899700 0.289572 -1.128211 -2.099247 1.412984 -4.767615 -5.703855 8.062549 1.632069 -1.932580 1.715317 -1.426840 -4.896482 4.689163 -0.714051 -6.394716 -4.190750 0.259626 -4.469485 3.962320 2.071501 7.148394 -13.248555 1.736649 -12.279413 4.394014 -6.161358 4.686034 7.835947 -3.018282 7.273082 2.100771 3.875617 1.682973 -0.071079 5.617167 3.814871 4.609171 3.122619 7.362477 6.843380 -5.894353 -8.875674 -6.423903 -5.132197 2.912511 -3.110207 -12.844414 3.624532 -4.109982 -0.397857 -0.912524 -0.328035 -1.501182 8.893480 -10.701162 2.187101 3.749709 -2.165531 2.924348 5.312482 -0.421180 1.150844 -2.186059 5.094230 -1.479576 4.296907 -0.037226 6.665901 -4.660650 -5.609630 -3.526079 1.924553 2.613274 -5.683145 -7.666744 -10.986731 -3.313703 4.892769 -4.198326 4.648880 13.682270 -4.991917 -9.452852 6.408818 2.463732 -0.025348 3.788403 2.643142 11.346844 -5.284168 -0.523992 -2.370268 -1.100722 4.409722 9.503281 -1.392775 -6.086363 6.892571 -2.680714 -8.422649 10.339868 -0.800915 -2.144564 0.457773 1.159824 -3.429543 -4.994340 8.504972 -3.906801 8.978866 -4.907357 10.683143 -3.997062 -3.394983 1.317235 -8.231618 -3.003585 -6.911427 -0.316338 -1.074981 5.966611 -6.227950 -5.260082 -2.882731 -3.811811 -2.416321 8.361672 -7.322906 -0.145182 1.032229 -0.491321 6.586617 5.096547 -2.344595 -1.606950 -6.767394 3.345268 5.267950 1.543498 -11.074742 -3.004974 -2.589647 -2.794508 -0.833399 0.412323 6.286863 -4.616628 0.110255 3.187822 -1.197354 -1.242602 -0.166427 -8.434762 2.996832 0.197307 4.428147 2.591645 10.361736 7.183614 6.749113 1.286473 3.519656 -1.145313 -2.840740 -7.176272 2.319308 1.763639 1.399399 4.389437 8.309530 4.674059 3.972657 7.262772 2.915821 0.922106 7.979061 0.877556 10.542969 -3.851159 -2.226488 2.204686 1.164864 6.608365 9.466465 0.841330 -4.968309 4.329658 -2.584428 -5.686517 -4.362938 -0.160602 -1.179956 -1.017443 6.025948 6.626068 -1.501495 -2.038914 12.893966 -1.133612 -15.199660 5.999254 3.054780 5.005395 5.572724 -1.772216 3.875020 5.678583 0.737151 4.357246 5.510843 4.770206 -9.247051 -1.180870 1.104312 4.765358 6.999000 2.994028 -16.766409 1.046611 2.140849 9.146927 -0.708233 9.651880 -5.588094 1.629703 2.295463 -0.375501 0.533888 0.519073 4.472992 -2.554377 0.209598 -10.865320 0.251678 +2.972915 0.291497 4.336208 -8.376623 -7.340590 -2.671184 1.155105 -4.292807 -2.965918 8.217755 3.405847 -8.803735 -7.410182 9.996378 -1.766921 -6.859824 0.147130 -3.285962 -0.186843 -1.996325 -0.847517 3.876193 -0.503495 -4.758104 2.959514 0.019148 -2.810941 5.815770 7.491288 -2.717905 0.311858 -2.745018 4.125242 11.191232 0.229396 -3.528321 -3.094932 15.582632 -5.801105 7.644289 -12.053867 -9.471029 15.169825 -2.355862 0.085777 -13.119959 -4.993754 8.884702 -6.645047 -4.775840 -0.744157 2.762724 1.520474 -9.826543 -5.159937 8.664563 -16.758451 9.662423 6.356332 -5.596301 -4.967437 0.268869 -1.037155 1.970082 -3.099833 -7.447729 -1.793804 -2.361802 -6.311775 0.144986 -4.857890 -4.044726 11.878899 1.785289 -2.401421 4.907342 0.110301 -4.165564 8.026988 -8.405271 -8.305200 -4.434299 0.310025 -1.607538 7.366726 2.303551 5.220716 -14.954116 2.247629 -15.246744 6.606981 -10.586686 4.272585 11.933205 -7.687869 8.725279 3.106556 -1.447916 6.991037 2.028234 9.633326 4.214492 6.784672 5.230978 5.353298 7.812190 -4.967252 -6.519989 -6.473974 -7.994764 0.406772 -1.874569 -14.228021 6.075660 -3.722805 1.421660 3.183795 -1.847659 -0.868314 8.087557 -10.794021 -1.198196 4.826345 -2.469228 2.537130 9.247112 -1.204687 -1.483329 -4.629656 8.862156 -1.155256 5.843930 4.970917 8.615621 -2.041381 -13.912727 -6.334282 2.504400 1.085261 -7.971887 -9.070214 -13.876721 0.089906 0.075460 -5.612008 6.437022 17.684215 -4.419900 -9.418698 10.629580 2.360839 1.409277 8.561488 2.161046 15.878915 -4.708060 -4.155587 -1.282018 -4.258824 5.188647 7.439987 -0.483586 -6.886528 6.784084 -1.203292 -8.897951 4.308650 0.039739 -2.509693 0.270986 1.100186 -6.926193 -8.073081 8.860985 -1.003209 10.963924 -2.728681 14.938627 -1.163653 -8.129520 6.172649 -6.316351 -1.980183 -4.043882 -1.185030 2.228372 3.775777 -8.989175 -6.321781 -4.698908 -1.896230 -5.321643 9.894049 -4.791328 2.049942 4.127661 0.177472 7.117695 5.324955 -5.015773 2.096208 -11.087195 3.376731 5.388861 1.276687 -16.268219 -1.779228 -4.168167 -1.372978 5.891537 -0.884520 8.097364 -3.629566 -2.777705 5.034186 -2.142279 0.452717 -1.554006 -6.011544 2.715991 -1.110890 6.750928 4.304315 13.379877 8.777790 7.883558 0.097846 7.644283 -2.186709 -0.983335 -2.377926 0.308802 -0.515037 1.077977 6.322159 6.649146 5.875402 5.930662 10.727806 4.913859 -4.820098 11.533327 -0.288304 11.549242 -5.719186 -3.393929 3.098045 0.484304 10.502276 13.315616 -1.754414 -7.155342 6.595053 -2.018114 -3.639527 -6.713698 -0.980658 -1.002381 -2.765473 9.295012 6.498776 -0.397420 -0.821505 11.619640 -0.982361 -17.001117 11.720337 3.841941 6.121346 3.222151 -0.595397 2.050320 6.838789 -2.891590 1.258653 8.091759 6.883318 -11.749928 -2.285031 2.300794 9.442719 4.997127 7.048070 -19.398924 -1.493686 5.592841 7.869708 -0.129259 8.802354 -7.700744 -6.818702 3.809095 1.351282 -1.304175 -2.281467 1.233315 -6.269044 0.617813 -4.355616 -1.138769 +31.795691 -1.618207 39.059831 -83.511525 -67.044326 -13.967742 68.117518 -67.197048 -30.940758 90.044344 30.281971 -58.734887 -41.799229 95.553523 -8.939956 -45.985615 15.995992 -34.544131 -20.220018 -12.088157 -22.748461 51.071093 -23.680169 -40.900276 28.711338 -9.186867 9.988535 70.409074 -3.411928 -12.726139 -2.503016 -49.611402 20.402468 122.834648 32.718749 2.316075 -49.362254 165.353784 -95.573154 130.279537 -134.982538 -90.565806 140.335333 -24.370468 -0.126072 -146.856393 -55.799447 78.761368 -0.966551 -70.054778 3.412339 1.307637 26.926754 -79.335740 -22.403746 85.588032 -105.660398 34.637865 66.619740 -82.112877 -76.769535 -25.660187 1.480541 27.020086 -107.837966 -83.302612 2.443215 -21.692192 -30.543405 17.339879 -66.866069 -86.984534 87.889297 29.008563 -37.984954 22.160464 -22.762747 -72.737805 69.668328 -29.041283 -88.394926 -51.591535 4.027071 -34.424141 49.318400 16.457815 87.759743 -173.388376 20.474695 -167.732365 50.118015 -94.042823 62.921322 116.138141 -43.422876 87.696442 22.696886 39.849454 44.948456 0.810789 74.090515 50.592378 64.404109 34.837634 88.074371 87.392175 -60.945422 -103.397620 -75.312582 -74.257883 41.366548 -33.539418 -141.843584 57.542945 -44.854286 -10.806283 -10.230328 3.834876 -12.491193 116.594309 -120.733906 14.448134 59.487432 -30.179584 38.189715 92.305405 -13.039181 5.777984 -48.026584 68.254186 -13.020044 79.546897 -2.440662 93.334796 -62.903430 -86.494256 -48.097866 15.515926 34.129855 -82.207011 -104.206249 -151.915967 -27.455816 46.305981 -67.823773 63.856166 181.120824 -79.837049 -104.841007 92.913179 44.751497 -10.276524 41.751405 22.935244 149.055297 -66.241075 -10.151082 -25.646588 -22.298340 46.344464 143.821311 -12.794318 -90.278347 81.500424 -48.385074 -142.109351 131.516770 0.829820 -33.846006 15.481511 10.924202 -39.204824 -74.759681 113.006614 -64.522739 116.176298 -64.946528 134.663350 -46.446607 -41.245875 35.904601 -89.641697 -25.903824 -90.249696 -0.295551 11.001631 81.804106 -78.102842 -64.571928 -38.974097 -56.958246 -39.900363 98.835086 -92.550509 -5.431095 15.469296 3.124637 93.072089 76.626415 -28.362503 -2.360252 -89.595678 57.593594 59.657927 28.093535 -138.680363 -41.300186 -42.080716 -42.607178 -10.816914 3.938757 74.964187 -55.204906 -7.786677 46.915199 -19.380431 -12.441421 0.613964 -118.568609 37.860957 -3.874784 64.085609 27.327945 128.603385 87.750455 95.185911 24.782875 31.322622 -20.243478 -30.332378 -90.134843 32.522453 14.964624 3.431971 63.722407 85.542846 68.642006 49.281795 104.253912 27.996423 10.850190 110.059744 12.736979 136.848243 -42.709233 -28.540698 36.261021 3.067947 95.364610 132.551780 24.345120 -57.648831 60.538523 -26.773226 -83.665737 -51.551962 -5.638674 -14.259480 -28.251189 90.382239 67.229152 -20.592235 -26.260179 159.287369 -24.715938 -189.151281 77.660620 35.846379 69.876909 68.397880 -13.935663 58.190688 71.047762 -0.752330 58.510200 79.553902 71.634505 -105.751585 -41.315055 13.538648 54.442059 99.800992 42.348883 -221.112306 8.829371 42.905124 124.227897 -11.623686 122.041787 -78.107768 15.671095 37.973026 1.179349 6.057560 -4.264952 50.324876 -39.112522 -3.536599 -127.286613 3.357240 +0.694620 0.193668 1.069779 -1.134195 -0.624665 -0.447094 1.669633 -0.978615 -0.726293 1.679164 0.344694 -1.121495 -1.377413 1.201194 -0.235207 -1.039726 0.147027 -0.723305 -0.783975 -0.552725 -0.730585 0.517671 -0.307862 -1.343639 1.020178 -0.281423 0.491121 1.840056 -0.148748 -0.050965 0.421170 -0.698982 0.832700 2.611774 0.377392 0.068062 -0.641132 3.015625 -2.013645 2.083962 -2.204838 -2.230972 3.658618 -0.478197 -0.269617 -2.260888 -0.484741 1.762852 -1.165428 -1.234051 -0.277311 0.204291 0.327337 -2.254841 -0.841087 2.262398 -2.928432 1.052854 1.092625 -1.645805 -2.288925 -0.489407 0.048719 0.027025 -1.215666 -1.779744 -0.115936 -0.680851 -0.972982 0.603116 -1.485074 -1.325358 2.152508 0.183163 -0.179734 0.847379 -0.600308 -0.596635 1.257107 -0.313304 -1.149084 -1.365933 0.544194 -0.570902 1.186051 0.694077 1.053334 -3.377053 -0.130227 -2.909306 1.258447 -1.827788 1.335054 2.059370 -0.969606 2.412306 0.219897 0.056364 -0.285084 -0.102703 1.526957 0.417429 1.582686 0.754475 1.448178 1.492096 -1.650999 -2.504162 -1.793491 -1.167866 0.754816 -0.610140 -2.617784 0.949732 -1.400775 0.110879 0.370558 -0.190025 -0.391600 1.952060 -2.683528 0.898724 1.111884 -0.563634 1.076414 1.482792 -0.012542 -0.061026 -0.460443 1.349033 0.083828 1.029308 -0.033367 1.826509 -0.219675 -1.995642 -0.641091 0.179299 0.642309 -1.372239 -2.108166 -2.794765 -0.581511 1.002147 -1.242905 1.078558 3.481370 -0.841049 -2.017680 1.620389 0.377874 0.732145 0.885473 0.782743 2.946509 -1.558687 -0.097532 -0.146986 -0.137448 1.651129 2.097373 -0.659299 -1.996437 1.851990 -0.312781 -1.290843 2.123998 -0.155258 -0.114672 0.646007 0.184918 -0.921335 -1.503847 2.319613 -0.332179 2.579724 -1.094758 3.045343 -1.236645 -1.192196 0.581576 -1.853414 -0.559825 -1.958473 -0.232385 -0.142114 1.146166 -1.814620 -1.553248 -0.999942 -0.447705 -0.493783 2.512851 -1.440634 -0.116845 -0.196828 -0.275097 1.265540 0.778526 -1.245742 -0.069196 -2.179714 0.663082 1.121692 0.768702 -3.051451 -0.565296 -0.323171 -0.862591 0.707032 0.153803 1.396162 -0.786451 0.098861 1.496397 -0.368913 -0.661057 -0.466930 -1.972085 0.549676 0.157662 0.525637 0.772194 2.899429 2.255997 1.191553 -0.245140 1.105490 -0.281270 -0.703076 -1.911629 0.411544 -0.163655 1.003501 1.260831 1.383866 1.102512 0.838270 1.647623 0.641363 -0.394679 2.193857 0.839383 2.452438 -1.162051 -0.668483 0.959397 0.143169 1.829834 1.743748 -0.191942 -1.619845 1.357566 -0.270724 -1.171654 -0.964721 -0.495932 -0.409732 -0.442186 2.170766 1.292001 -0.732623 -0.192959 3.519735 -0.467668 -3.809238 1.730611 0.919896 1.327833 0.740384 -0.579639 0.938740 1.799739 0.201597 0.424394 1.028123 1.481523 -2.497031 0.113512 0.299980 1.472892 1.364502 0.417054 -4.636348 -0.605373 0.430882 2.432040 0.030193 2.369721 -1.222193 0.157123 0.171014 0.118285 0.340396 0.005136 1.011754 -0.676358 0.185561 -2.748504 0.372795 +2.060510 0.063911 2.296501 -4.113485 -1.446181 -0.934271 5.159238 -3.595699 -2.165560 5.794308 1.189839 -3.230808 -3.571868 4.469301 -0.580127 -2.017471 1.586513 -1.311811 -1.679862 -1.094010 -1.843098 1.696545 -1.086157 -4.177662 2.237381 -0.577076 1.785417 4.887815 -0.356177 0.511729 0.185224 -2.333370 1.811671 7.437152 1.816417 0.032346 -2.964053 9.207204 -7.324100 7.967473 -7.488835 -6.205116 10.635188 -1.242013 -0.891808 -8.779018 -2.590013 4.618324 -1.335888 -4.605502 -1.195272 -0.397281 1.691782 -6.131440 -2.687258 6.885092 -7.147593 1.473421 3.603503 -5.273251 -6.843675 -1.586335 1.621202 1.227690 -6.396112 -5.004939 0.030581 -2.435635 -2.604651 1.421085 -5.378197 -4.799327 5.189737 1.149324 -1.427564 1.439272 -2.504234 -3.400034 3.290745 0.029039 -3.590144 -3.420319 0.852048 -2.666154 2.759183 1.752360 5.189812 -10.348705 0.156086 -9.396269 2.881729 -5.879925 4.150932 6.321184 -2.049558 6.249535 0.423834 2.428570 -0.234010 -0.186807 3.929348 2.773190 4.265024 1.101612 5.726694 5.263030 -4.584076 -7.935238 -4.644245 -2.991859 2.376071 -2.239832 -8.892337 2.939815 -4.745832 -0.766490 0.101559 -0.152806 -1.778525 6.762740 -7.798793 2.466756 2.770628 -1.722527 3.282869 5.494145 0.115439 0.264013 -1.352629 3.570038 0.520363 3.744577 -0.243172 5.418729 -3.296945 -4.778052 -1.209400 0.771698 2.243963 -4.297686 -6.314370 -9.138546 -2.378438 3.755411 -3.377778 3.138755 10.377497 -2.782989 -6.086878 4.151917 0.703702 0.988652 2.596778 1.817481 10.257874 -5.054638 0.703703 -0.398092 0.272609 3.860891 8.884981 -2.364921 -5.859584 4.881960 -2.911168 -6.262781 7.672697 0.066086 -0.247449 1.188655 0.435030 -2.331032 -5.227712 7.537026 -5.268524 7.390914 -4.611988 8.319301 -3.686475 -2.199826 1.815914 -6.067021 -1.863912 -6.431628 -0.007325 -0.767363 5.156282 -4.694002 -4.311808 -2.607949 -2.272091 -1.122176 8.315943 -6.648679 -0.922065 -0.406756 -1.206001 5.334238 1.940634 -3.480652 -0.397167 -5.837018 2.427460 4.392152 1.876536 -9.360628 -2.370739 -2.016067 -2.685894 -0.452941 0.482139 4.355137 -3.426674 -0.241987 4.123666 -0.614797 -1.758088 -1.310496 -7.923170 2.231066 0.445565 2.359026 1.962646 9.246674 5.372652 4.132411 -0.683676 2.074435 -0.993538 -3.134588 -7.393657 1.798911 -0.011612 1.564428 3.386593 4.824498 2.854841 2.814804 4.788727 0.946012 0.066504 6.144338 2.632963 6.657973 -2.874757 -2.695715 3.144934 -0.570313 5.056474 5.981524 0.985638 -4.733063 3.452101 -1.974706 -5.214862 -3.245331 -1.161041 -0.934223 -1.616176 6.616273 4.955336 -1.369201 -1.390828 10.874199 -1.223071 -12.817724 4.641332 2.327811 4.024658 4.968669 -1.989506 4.121148 4.821949 2.401483 2.366522 3.356374 3.764582 -6.841738 -0.356283 0.839211 3.577573 5.755145 0.333222 -15.136280 0.275550 1.210245 8.240426 0.166207 8.182367 -3.636124 3.272167 0.679993 0.213503 1.281170 -1.153353 3.841251 -1.592990 -0.646148 -9.641337 2.083282 +4.169034 -20.684729 5.360308 -10.325225 -1.824590 -3.127937 14.855437 -4.259292 -18.081091 22.527998 0.051705 -6.309409 -35.133200 11.464716 1.795076 -20.756621 4.132404 3.737706 -3.051896 -13.601073 -5.533851 4.085898 -2.421733 -7.769439 6.717428 0.163619 3.116943 21.588204 -7.729686 13.523447 0.928724 -5.460318 2.676465 16.623682 3.605813 -0.948240 -18.797646 49.165479 -41.445366 42.849969 -31.501269 -44.356618 64.112716 -3.101454 -12.699192 -57.017559 -7.102199 11.764888 -18.914167 -9.550941 1.080961 1.584159 4.066467 -13.700018 -5.425317 24.385579 -26.398102 5.310142 7.328835 -21.227133 -45.142221 -5.169411 14.299496 2.908146 -30.479450 -10.863144 -0.079908 -20.173989 -8.943588 2.300700 -26.148025 -20.006630 4.191947 5.612349 -3.630577 4.102180 -4.338797 -6.200622 7.064177 24.256085 -27.549894 -7.843203 -0.617050 -6.413208 10.283368 1.502314 23.782266 -53.519075 -9.580800 -56.801359 5.312742 -22.046224 7.967917 35.587602 -22.159371 24.069621 -1.692800 30.025074 -2.809187 -20.616860 8.175990 22.161269 0.335122 4.028375 29.091650 29.636085 -12.161386 -49.980321 -19.039536 -3.839294 3.076628 -19.402629 -75.993842 6.504706 -23.244183 -8.458153 5.099266 19.517054 -8.837698 28.871299 -40.095753 21.210005 3.157683 -3.942676 8.306359 20.064395 -0.154832 -0.796547 -1.211269 9.760121 3.371257 19.062937 -1.636365 12.142665 -20.958588 6.024714 -0.520891 0.449186 5.874655 -6.864959 -14.634747 -38.650543 -5.735270 20.770188 -7.387010 6.924250 29.296858 -3.685150 -29.441695 10.891019 -29.867076 -1.574066 2.783042 2.801705 55.676981 -8.805880 -0.176029 -0.907025 0.628147 -11.549656 37.952853 -3.352650 -12.841649 10.872070 -21.085700 -15.239367 26.644489 -10.287898 -0.538541 -12.298188 -2.189707 -7.992768 -22.001110 34.494627 -56.681780 22.894546 -25.989784 18.265949 -5.214352 -4.955986 5.641783 -68.789297 -15.478539 -26.467977 -4.203082 -12.558562 23.256499 -12.197451 -9.662284 -30.368230 -16.229780 -4.353340 48.292112 -27.961014 -3.610430 -2.066406 1.298600 31.020357 22.541131 -9.123733 -0.863714 -21.144143 6.310502 37.938592 -16.876276 -42.663806 -3.783771 0.118108 -7.415043 -10.080577 0.859953 7.052158 -13.644940 -1.591282 10.529674 1.041670 -4.699714 -0.692774 -52.173539 4.073620 5.988269 19.374201 27.754367 50.761198 18.184960 6.029525 -1.959176 14.034131 10.091037 -19.282633 -50.850803 1.106775 -1.589229 3.660065 7.533569 13.605947 7.538200 3.554579 10.285953 6.644088 -6.912995 11.524603 23.081706 20.458467 -2.199079 -16.696286 9.297806 -1.212300 9.369105 45.627145 3.425526 9.852030 11.000787 -2.321589 -25.640709 -13.271090 -2.528091 -4.897382 -12.803022 30.234577 37.143275 -5.400532 0.347027 55.307804 -5.600290 -76.072142 7.444394 6.939505 10.123161 57.215161 -2.667084 7.708448 18.263005 29.529619 27.214403 5.718949 6.369756 -29.545221 17.733674 2.410095 4.744572 28.946901 -13.358320 -45.589234 22.255559 -0.129943 50.910438 6.147737 46.256131 -4.677785 35.802864 1.605686 -19.625377 3.761428 -4.465754 22.091550 -2.585171 -13.442977 -60.442064 -15.154260 +5.632166 -1.071794 3.778550 -4.333436 0.132292 -1.319843 10.466652 -5.228939 -3.996484 13.620440 -0.491822 -4.514765 -6.692509 4.342445 0.378594 -2.529816 3.051798 -3.709307 -1.874693 -0.025219 -5.175363 2.125992 -2.492631 -7.248625 4.535397 -0.065872 4.011667 8.705779 -3.468919 3.754376 0.867756 -4.675358 2.205361 12.588963 3.859330 -0.411950 -4.413250 16.323452 -14.618095 14.938689 -9.533082 -12.158149 18.631964 -2.152658 -0.900647 -8.101430 0.454239 8.798850 -3.540981 -9.319759 -1.372150 -0.177539 3.018802 -10.581594 -5.300116 10.946976 -12.918220 1.365536 5.605674 -7.516122 -13.209118 -3.611302 2.252329 2.989531 -11.429609 -8.503837 0.127832 -6.572394 -4.036225 2.429898 -10.873711 -6.429811 5.708130 2.709411 -2.106548 1.884195 -4.366689 -2.691659 5.194236 0.010475 -6.424010 -6.464527 -0.841516 -7.420387 4.987685 5.036564 8.837811 -16.086186 3.223634 -15.123783 5.010992 -9.575799 6.715960 12.004939 -1.288324 12.198625 0.466475 6.814618 -1.693548 -3.739027 5.577809 4.444109 6.371538 2.589161 8.141825 9.986168 -10.423160 -14.045594 -9.736172 -2.659333 4.172532 -3.874991 -10.589245 5.176926 -7.991859 1.584000 1.853706 0.874142 -6.052243 9.232135 -16.899955 5.500914 2.728518 -2.703944 7.780458 7.102157 -0.083257 0.896205 -0.520921 6.169868 1.594718 5.324506 -0.078004 9.677126 -6.074039 -2.137449 -0.178504 2.434031 5.409176 -6.796770 -10.524584 -17.581324 -3.884473 7.656057 -5.803501 8.374480 17.701349 -3.242186 -6.708996 6.219156 -4.894436 3.223884 3.489583 2.978326 13.917122 -7.934881 1.114381 0.959265 1.537994 5.904742 16.896172 -3.365429 -9.990212 9.832536 -4.332433 -0.318403 8.945924 2.061415 -0.406383 -1.749622 0.491115 -3.179933 -7.365441 13.621706 -14.082059 9.907936 -7.087106 13.678572 -4.702555 -0.517996 3.130779 -13.902002 -3.293852 -14.341275 -1.330045 -2.416911 7.225409 -9.877108 -6.929326 -5.117472 -1.982807 -1.787475 13.373553 -10.972216 -2.391395 -0.880129 -1.462509 12.253379 1.945278 -5.770132 -2.452664 -10.321679 3.392870 4.317576 0.710428 -12.634707 -5.155910 -1.805893 -5.187203 1.821261 1.102427 6.388060 -8.097173 0.119581 8.353248 1.195865 -3.832079 -1.062365 -15.132590 3.518526 3.895531 3.163227 6.243999 14.975413 7.422635 6.483627 -0.986551 4.709078 -2.470713 -3.365882 -14.616941 3.623323 -0.284616 4.368313 5.375686 6.003192 4.386128 4.183745 5.409660 1.467953 -1.923616 9.641861 4.710744 10.041990 -4.853007 -4.833150 6.610345 -0.333180 7.255949 5.240752 -1.413466 -8.404731 6.369602 -6.066267 -9.080764 -0.074981 -1.071556 -2.612333 0.117796 8.683497 7.595239 -2.037114 -1.797502 18.033454 -3.319271 -22.497029 6.123488 4.938912 7.689516 9.993124 -3.177270 8.628205 7.368249 3.976417 5.719478 5.353593 5.509055 -10.276871 5.241391 1.778561 4.876327 9.416669 -1.178013 -25.881177 -2.894213 0.010340 12.428715 1.981710 14.644427 -5.787497 6.124241 0.279501 -1.383370 3.718328 -2.231825 8.523512 1.321270 1.574245 -17.951002 4.560901 +8.569571 -0.620507 9.050689 -15.071730 -6.016006 -2.718393 16.540957 -16.070178 -7.452745 27.823310 5.106699 -11.415459 -5.131843 13.968252 -2.281739 -6.602765 5.461875 -1.368465 -5.138189 -3.781057 -5.196883 6.334991 -4.771359 -16.740415 6.383143 -3.844810 9.800747 16.091657 -7.891590 7.809999 1.784482 -10.548737 6.934088 27.780548 8.430029 1.515314 -13.333399 27.349819 -25.214727 28.123239 -26.993815 -23.556715 36.046471 -4.326310 2.380622 -26.456895 -6.507342 15.572558 3.391366 -20.182151 -6.268944 -2.523569 10.546392 -23.021253 -11.652217 17.878528 -17.574468 -1.422767 13.466549 -22.759379 -26.348733 -5.891368 7.453294 9.130477 -28.405580 -18.359799 0.639999 -5.787288 -4.528502 5.464031 -19.486691 -19.936268 13.290092 3.743739 -5.895657 3.439158 -9.898128 -15.437981 12.690291 4.660440 -13.080015 -14.017176 0.815952 -11.381045 6.436188 6.176969 22.956999 -36.668745 6.159900 -32.917818 12.348793 -15.261300 15.696132 21.941193 -6.978037 20.145018 3.039076 18.291159 1.309839 -3.267728 13.227318 11.225387 14.701849 3.284662 21.517417 21.490164 -17.743265 -29.649539 -16.653501 -12.194150 11.914597 -11.671549 -29.278958 11.410010 -15.481115 -5.962888 -2.559256 -3.791603 -5.713136 30.325303 -33.036010 5.555739 12.013623 -6.222901 8.998597 13.332842 0.415059 2.464996 -3.248930 11.729201 0.555362 8.761079 1.090602 21.403741 -18.089214 -10.129963 -1.084044 5.958711 8.630823 -17.959590 -22.725421 -35.094671 -9.039504 16.668696 -12.028411 11.634243 33.031457 -10.918951 -22.751182 12.532205 2.228544 -6.605113 8.137947 7.318477 30.884961 -19.444104 2.969890 -4.037895 1.366612 16.051282 37.186669 -9.078182 -22.040693 22.210504 -14.537444 -22.252486 27.514150 -0.441228 -0.757962 0.643229 3.216837 -8.299656 -11.175112 23.291665 -24.322179 24.415209 -20.243769 28.925200 -14.306340 -4.580977 4.461711 -29.790455 -10.619393 -21.368362 2.082972 -1.986211 21.080203 -17.195328 -15.700082 -8.388976 -10.043217 -2.296248 29.464522 -30.500574 -3.697695 -0.742324 -6.253955 22.375903 6.839820 -10.466252 -4.851913 -13.724511 9.232722 15.800184 7.786405 -27.658265 -13.495700 -10.127925 -9.996793 -6.666004 2.687860 19.226340 -14.576377 0.904575 14.139150 -2.749293 -8.703884 -5.496676 -28.506649 10.058167 0.827375 10.938952 4.043463 32.610918 16.744891 17.316789 -1.387890 4.789047 -2.748005 -11.739631 -30.072691 9.939599 3.055960 1.444732 12.420035 19.463014 9.847648 12.027648 18.859323 3.869882 3.744431 22.895819 2.369092 21.431751 -9.244277 -3.542026 11.577616 -0.007599 18.876425 21.387361 9.217085 -17.389208 10.979121 -10.829103 -21.529039 -5.784545 -3.387777 -1.549923 -4.218230 16.829569 18.940089 -4.738363 -7.242718 37.960379 -2.272728 -41.720386 15.891701 8.599860 14.971855 19.848508 -10.422460 17.705170 14.240873 11.941060 11.292959 12.772887 13.794339 -25.828595 -1.548353 3.814227 12.599252 25.358387 0.926039 -50.955524 2.248939 3.842635 28.762642 -2.818197 32.156168 -16.727497 14.861666 2.790287 1.537916 5.683794 -4.345727 13.508205 -4.079019 -1.309976 -35.760629 8.649959 +20.616367 -1.483914 8.369599 -15.370057 -5.159829 -2.332426 30.357347 -23.439567 -16.391302 42.972716 6.236314 -18.225236 -12.205436 14.444047 1.457084 -9.354467 11.073694 0.670327 -6.486872 -2.016277 -17.037816 5.018948 -9.623675 -27.366175 11.858494 -1.914586 12.053620 27.269373 -11.475279 16.495227 -1.323565 -14.760634 9.683703 44.839704 16.509354 -7.781762 -15.572896 50.369751 -44.039134 40.149745 -28.089379 -33.722709 58.732016 -6.502918 1.223430 -25.094010 -6.618918 28.215813 -1.091358 -33.055446 -5.559553 -5.208837 15.731007 -34.155792 -19.768484 37.173103 -34.063957 0.530039 22.435232 -29.691692 -44.062018 -11.401492 9.898241 11.564820 -40.971252 -30.555027 1.098355 -12.872675 -3.427643 4.651681 -40.838880 -33.365540 21.350442 8.293630 -8.958502 3.246139 -18.246609 -18.226569 16.877838 12.528867 -23.549278 -20.433830 -1.920739 -17.653246 15.183674 12.841226 34.224737 -57.108405 7.534642 -55.608871 16.861484 -29.197480 26.823930 40.534162 -9.229802 32.280535 4.040846 26.700779 -4.316188 -7.209765 22.289045 10.967517 16.086303 4.286123 26.949143 34.460763 -31.314501 -45.994805 -26.708786 -11.811797 16.276598 -10.310230 -38.035220 20.532259 -30.377577 0.184950 -0.379211 -1.102165 -15.020311 40.498587 -47.380421 9.861419 12.573013 -10.690821 26.346590 24.102189 0.249506 6.128967 -6.278471 19.225247 6.302584 11.965925 -3.087546 33.702088 -25.377510 -16.314854 -4.378967 11.727079 21.427226 -29.428740 -38.908518 -54.478466 -11.064138 23.005482 -21.640277 20.801126 54.907630 -17.390577 -22.720975 21.146043 -7.832092 3.316648 16.172625 10.246712 51.190316 -32.747662 8.324174 1.666713 4.135663 18.363142 46.815756 -16.218838 -33.765551 32.703562 -16.400532 -9.247079 41.951527 5.201994 -2.849227 5.280667 3.528129 -4.008970 -23.122595 44.283439 -38.302422 29.202080 -20.752591 48.515671 -17.665449 -4.104583 11.459719 -33.333853 -15.485052 -38.508466 0.381238 -4.030301 29.772549 -27.116652 -25.301757 -10.387864 -8.294321 -5.784120 46.999462 -28.903910 -7.955924 -0.256865 -10.021369 31.001030 9.721847 -17.090211 -7.894638 -27.626950 12.711460 18.270574 -1.034679 -40.866471 -21.261614 -11.967020 -15.545908 -3.519701 4.378660 27.794055 -27.229188 -0.805620 26.064503 2.366362 -8.738855 -3.250984 -42.158808 17.997657 6.759932 10.265743 14.058166 53.194536 25.970974 27.907606 -0.902997 8.691185 -6.033926 -11.268743 -50.416844 14.930971 -0.206395 16.279338 20.187425 20.512350 13.004804 17.152128 18.529860 -3.424557 5.930749 34.082132 14.385097 33.507781 -12.008759 -8.808818 21.021647 -5.409011 29.964770 25.573450 1.986489 -31.289031 16.347157 -21.786972 -33.060331 -4.921902 -2.619295 -3.412564 -6.905586 21.108438 27.888989 -3.993711 -13.589902 61.760585 -9.434313 -70.881774 24.037632 16.508634 24.513267 38.251238 -12.962378 33.302128 19.879602 22.154982 19.735620 23.075958 23.920025 -37.731213 11.341212 5.617108 17.108501 28.323146 -2.740717 -81.680982 0.102901 5.093780 41.445155 3.509244 44.676701 -24.408517 25.597589 2.543201 -0.589359 13.650548 -10.442578 26.948584 -3.636197 4.217947 -56.572550 16.983961 +1.345271 -1.611207 6.164974 -10.476907 -10.395033 -0.631444 6.051521 -5.782881 -2.300129 8.100924 2.632711 -4.313480 -5.204577 12.487121 -1.809348 -6.606611 -0.099937 -5.073988 -1.192396 -1.037969 -1.213292 7.615735 -2.599049 -1.958556 3.625129 -2.640579 0.078637 8.653281 0.501879 -1.239863 0.858345 -5.873395 -0.006676 12.838712 2.948919 1.247671 -3.012938 21.591294 -10.739830 15.913885 -14.141147 -12.805634 13.695531 -2.612759 -1.540920 -15.815312 -7.238015 6.862598 -3.364524 -4.694426 3.069296 0.854588 3.431012 -6.151781 0.537735 6.709698 -13.971371 3.950856 5.592802 -7.767349 -5.705372 -3.235732 -3.200572 2.212743 -11.341428 -7.276259 0.168397 -0.946366 -3.415339 0.899870 -2.299107 -7.186157 13.221937 4.022657 -4.274163 3.577467 2.152109 -9.989705 8.464134 -5.288076 -12.890179 -5.226678 -0.888311 -5.878437 8.453974 0.481901 10.424640 -18.816092 3.847280 -18.400402 5.644472 -10.832632 5.027170 13.739398 -6.743055 10.293660 4.676601 7.018839 6.155709 -1.025489 8.842505 8.151258 6.325897 7.150681 8.593875 9.301361 -7.082482 -9.687111 -10.284115 -8.415377 3.355659 -6.520314 -19.040188 4.587510 -0.164716 0.033972 -0.746375 0.524719 -1.905606 13.925006 -14.036796 4.697600 6.102606 -3.005404 1.185453 8.652373 -1.712104 -0.649806 -4.584130 9.456687 -5.202144 9.812415 -0.467497 9.496565 -7.002399 -6.029061 -5.997820 1.216055 1.819565 -7.400261 -10.662031 -15.833492 -3.664598 7.042909 -5.718197 8.343049 21.956488 -9.811608 -13.173599 12.298527 5.000188 -0.484375 4.099706 3.574279 10.783407 -2.873271 -5.505420 -6.875370 -5.158814 3.530546 16.296619 2.177985 -7.262148 9.579315 -3.933280 -15.527533 16.142583 -1.932598 -5.865186 -2.892469 1.184399 -8.126418 -7.703899 13.149396 -7.178723 12.655015 -6.010563 14.888112 -3.658198 -6.013152 2.543293 -12.935361 -1.295996 -12.451589 0.038011 2.446887 6.578817 -9.535593 -7.288036 -5.281044 -5.866813 -5.602155 7.329762 -10.249751 0.659822 2.890340 3.029691 12.729273 11.543215 -0.968952 -1.437454 -9.616833 6.492322 4.743981 1.025614 -16.220935 -2.349755 -1.851654 -3.911759 0.575868 0.703810 6.494161 -6.292270 -0.817143 2.253435 -2.812571 -1.291290 2.037788 -17.284211 3.061469 1.138219 8.891964 4.585291 9.745223 12.521170 10.958366 4.353746 6.211095 -2.147175 -1.589004 -6.643316 3.031874 4.552042 -1.059825 6.233154 14.034396 9.243676 5.010210 11.084235 9.000408 1.732646 10.948373 0.942120 17.700290 -2.782852 -5.373508 2.296577 4.037044 10.086671 15.573205 3.020431 -0.807512 7.422769 0.251565 -6.334948 -7.007041 1.383405 -2.802815 0.286709 10.702633 7.086599 -2.958217 -1.064073 14.605147 -2.570389 -19.894681 7.003695 4.498626 8.544429 4.780534 0.574573 3.919683 7.738125 -4.017384 10.805964 9.365331 6.100974 -11.099459 -5.392822 1.650386 4.917531 12.165010 8.655675 -21.322412 0.539112 3.264450 11.679108 -1.455178 14.460273 -8.168863 -2.459265 5.415958 -2.385062 -1.421597 1.335506 2.863668 -4.862672 1.866150 -11.927333 -5.350644 +1.487846 0.658016 0.760578 -3.751243 -1.983132 -0.760293 3.023394 -1.883741 -1.650623 2.669171 1.059282 -2.638926 -3.651389 4.072195 -0.246879 -3.019264 0.526975 -2.824608 -1.444390 -0.123539 -1.033210 1.709991 -0.598659 -2.207013 1.403256 0.229552 -0.170474 3.034084 1.710228 -1.398916 -0.781050 -1.251960 1.324002 4.915930 0.954139 -0.684177 -1.316778 6.775528 -4.482061 4.748811 -5.495741 -3.919249 7.124687 -0.832612 -1.584800 -7.630818 -2.181448 3.268026 -1.581205 -2.038242 0.308309 0.228970 0.086032 -3.555077 -1.043614 5.377542 -6.298194 3.449747 2.496423 -1.755744 -2.839690 -1.240920 0.405302 0.207395 -2.707905 -3.436434 -0.190876 -2.360959 -2.588900 0.566500 -3.288668 -2.885658 4.931932 1.620464 -1.263927 1.178132 -1.550320 -2.677363 2.401169 -2.537729 -2.686927 -1.652811 0.800025 0.334768 2.906454 0.565012 1.859664 -7.439696 -0.778522 -6.705080 1.574750 -4.706650 2.430411 4.565501 -1.766344 3.582300 -0.141238 -0.746029 1.092346 -0.151764 3.165240 1.912712 3.384557 0.831082 3.309032 3.711284 -2.383249 -4.577898 -2.266710 -2.502624 0.511799 -0.625438 -7.513492 2.243447 -2.536410 -0.400577 0.796616 -0.239570 -1.001959 3.324499 -4.193328 -0.019544 1.344925 -1.151074 2.519421 4.785809 -0.264173 0.018697 -1.911857 2.977878 0.989395 3.740787 -0.408853 3.217239 -1.580376 -5.527835 -2.047747 0.364832 1.474635 -2.840534 -4.385617 -6.155251 -0.801452 0.440428 -2.623109 2.115746 7.159311 -1.964289 -4.782469 4.144188 1.204323 1.863930 2.257493 0.443209 7.545248 -2.839279 0.211898 0.412965 -0.470100 1.348158 4.622511 -1.080835 -3.740442 2.188534 -1.816060 -5.954173 3.114311 0.561279 -0.794400 1.471764 -0.421799 -2.250405 -4.385599 5.316024 -1.591203 5.165166 -2.181797 5.489091 -1.962648 -2.527979 2.159856 -3.220108 -0.803143 -4.207198 -1.037433 0.485957 2.556548 -3.439253 -2.516911 -1.764376 -0.700406 -2.133102 5.138521 -4.101300 -0.492935 -0.006850 0.486637 3.017111 2.562332 -2.462210 0.951481 -4.623395 2.075322 3.332721 0.895762 -7.337669 -0.738805 -1.067398 -1.577980 1.692703 -0.283345 2.166977 -1.100420 -1.002343 2.852053 -0.581516 0.172527 -0.271329 -4.151817 1.228197 -0.367791 1.501673 1.349925 6.335141 3.490805 2.600732 0.131865 1.345671 -0.238966 -1.202500 -3.900563 0.125910 -0.417670 0.734026 2.715821 3.222168 2.162977 1.411253 4.123899 1.815427 -1.656664 4.007670 2.089369 5.403296 -0.979937 -2.487521 1.625054 -0.970710 3.543157 5.758674 -0.573309 -2.789372 2.815716 -0.446233 -2.689508 -2.962894 -0.811626 -1.120920 -1.989789 5.112364 2.042348 -1.083071 -0.381122 7.331177 -1.263284 -8.429849 3.338495 1.768306 2.656045 1.938804 -0.840043 1.644929 3.476490 -0.699547 1.204027 2.566474 2.882487 -4.160851 -0.838175 0.405666 2.291186 2.884246 0.982724 -8.903520 -0.304260 2.018768 6.227644 1.070657 4.988335 -1.981831 0.252368 0.868242 1.112424 0.520996 -1.112438 2.120532 -2.183098 -0.511994 -5.257122 0.318024 +8.790081 -6.178977 19.124526 -36.274632 -34.337420 0.319217 9.309296 -20.656623 -9.936872 15.503010 14.028769 -16.742750 -17.533238 39.025950 -3.922263 -29.244676 -0.673045 -14.300624 -5.703714 -3.027503 -6.942218 22.339947 -9.609904 -9.585936 13.110152 -8.228999 -4.120094 26.607217 10.083639 -10.956320 -2.858988 -18.707174 -0.434368 48.428553 9.984096 1.138732 -6.385853 75.600125 -19.067535 40.206201 -41.448949 -40.652672 51.190048 -11.484556 -4.520001 -40.912780 -25.844002 28.691045 -18.388957 -15.655324 12.179388 2.119787 8.215308 -24.410237 -1.778079 24.559349 -54.607883 21.597830 22.262036 -23.691708 -21.890871 -11.178577 -10.591688 2.760160 -25.441923 -28.344803 3.766191 4.247123 -14.550889 -1.706502 -12.527601 -30.236137 57.566782 14.849600 -10.216229 14.716741 7.741972 -25.827449 31.278689 -14.540419 -45.591593 -18.587487 -0.934774 -18.484420 36.458647 2.560629 30.613127 -67.554827 15.700406 -69.060534 21.486630 -38.095933 21.304820 50.134213 -31.727335 34.675861 21.350264 19.526177 18.428609 3.121420 39.633712 16.513578 14.094963 25.792075 30.088741 22.426628 -21.834928 -29.072215 -32.894823 -35.361824 9.074847 -17.980061 -64.728645 21.479119 -7.190163 4.703007 -3.985719 6.922929 -2.795608 37.186643 -47.931907 9.446043 21.621558 -11.853659 11.819287 32.721430 -8.824378 -2.832246 -20.315686 36.246627 -20.533251 27.299815 -1.802074 35.049571 -9.403147 -30.434955 -30.958031 6.116752 11.846089 -31.560058 -42.458889 -48.450143 -8.380404 18.161467 -24.348425 36.664201 79.207078 -34.051489 -40.644044 47.637108 17.907940 8.289141 26.946743 13.286862 48.599486 -14.010441 -18.654770 -17.890556 -20.285255 11.334330 15.567155 5.959466 -23.190261 33.018459 -6.218615 -34.936332 60.436005 -8.500236 -22.204201 0.995897 7.160146 -27.305585 -33.461819 46.115247 0.155743 43.865954 -4.135286 61.128295 -13.098366 -25.258931 14.741399 -26.614021 -6.631339 -35.772425 -1.902991 3.106999 19.990736 -32.689128 -27.908293 -14.514579 -17.475617 -22.119453 29.031980 -3.661807 7.441095 14.398467 8.316397 27.247035 42.401940 -3.198898 -2.129000 -41.899728 21.165272 20.506850 -1.099305 -47.944880 -8.870935 -9.324597 -10.554944 11.269280 2.157485 26.884256 -18.994411 -6.984462 7.980911 -3.976854 3.563360 8.638127 -47.642895 8.868027 3.402513 23.191410 17.974968 41.617636 47.708822 39.783050 17.395985 21.380253 -5.563618 1.372726 -15.889490 1.397757 4.749552 18.038964 25.126449 38.405451 34.303126 21.739892 40.376197 26.807605 7.466835 44.187255 7.093096 66.429209 -12.217907 -17.562006 5.746236 10.091385 43.097153 57.687743 -3.985805 -3.547616 26.225791 4.708075 -20.910713 -32.462719 6.487861 -8.711955 -4.654926 30.083576 22.083655 -2.912058 -9.386025 56.241403 -9.745575 -70.360220 33.594056 14.789974 31.960200 18.992952 3.512083 13.699785 25.069866 -18.498542 28.281765 34.343674 27.881320 -44.635872 -7.641580 6.234127 26.757207 19.654752 32.213924 -58.709926 8.418137 15.712617 38.977500 -0.493032 29.645849 -29.300825 -16.612493 17.422668 -10.549288 -3.449716 8.514392 11.871927 -21.016550 5.278099 -37.131732 -19.838875 +1.004548 1.020289 2.715426 -4.319616 -3.978598 -1.102474 2.998592 -3.170894 -2.069402 2.869191 1.529783 -3.768624 -4.545807 4.139083 -1.584028 -4.263604 -0.653128 -1.368208 -2.038856 -2.977303 -0.788525 2.282609 -0.486370 -2.837516 1.890546 -1.556346 0.915757 5.535214 3.241592 -0.311846 1.067876 -1.877911 2.416642 6.815251 1.291206 0.016169 -1.727559 9.093705 -3.754033 4.339051 -7.246836 -6.134553 9.600797 -0.915849 -1.402888 -9.045839 -3.530020 4.078446 -5.758346 -1.036151 -0.513117 0.329821 1.123124 -5.028694 -1.660594 6.186758 -8.726496 5.047291 2.401049 -4.576479 -4.558762 -1.307184 -0.201905 0.509900 -2.315312 -4.517516 -0.609248 -0.806329 -3.259580 1.579199 -2.753248 -3.139459 7.645463 0.509167 -1.480561 1.852568 -1.249673 -2.474088 3.354407 -1.908070 -3.790778 -3.250149 1.838527 -0.218567 3.286077 1.122809 2.661743 -9.700033 -1.777407 -8.341617 3.229185 -5.294167 3.445012 5.305570 -4.423303 6.059295 0.648956 -1.563109 1.058887 0.057574 4.399161 1.386415 5.084117 2.466472 3.466994 3.734446 -2.925374 -5.610906 -3.887460 -4.047845 1.044155 -2.138399 -10.371596 2.091239 -3.168473 -0.113453 0.467822 -1.107686 -0.517938 5.205478 -6.174944 1.462358 2.749240 -1.486093 2.512019 4.408189 -0.185615 0.407576 -1.564046 4.450389 -0.313757 3.501909 -0.129681 4.579244 -0.564134 -7.984655 -4.028623 0.914578 1.460007 -3.250717 -5.921663 -6.334999 -2.048302 1.212097 -2.885939 2.090599 9.666978 -2.562754 -7.038203 5.432139 1.453519 2.055576 3.661085 1.798085 8.499073 -3.411889 -0.928351 -1.425077 -1.485443 3.762197 5.963630 -1.488882 -5.133743 4.366079 -1.308753 -5.447494 3.823457 -1.263752 -1.427013 0.141310 0.249663 -3.456830 -4.397407 6.531182 -0.687306 7.876513 -3.341717 8.071656 -3.623005 -5.369964 1.625609 -4.984406 -1.515553 -3.817801 -0.018621 0.341112 3.292944 -5.159777 -4.231429 -2.734153 -1.177382 -2.206801 6.312531 -3.231744 -0.146667 0.340286 0.482631 3.872978 3.542981 -2.869762 0.257355 -5.687170 2.261460 4.454288 2.859932 -10.091513 -0.958472 -1.160515 -2.068706 1.761113 0.177037 3.584356 -1.062675 -0.030530 2.345506 -1.992832 -0.158970 -0.457862 -6.025058 2.279111 -0.802097 1.823427 1.086516 7.360051 6.992995 3.206711 0.090998 3.201477 -0.133534 -2.529995 -2.179979 1.211990 1.452744 0.502203 3.299809 5.554544 3.355686 2.402432 5.850969 3.625304 -1.423216 5.648637 1.884494 7.907147 -3.764062 -1.813956 1.031634 0.897150 5.114766 7.701952 1.146127 -3.800738 3.688714 0.325579 -1.553491 -5.899496 -1.516806 -1.265516 -1.253864 7.517972 3.597705 -2.201691 -0.327620 8.915292 -0.588375 -9.792543 5.981532 2.515309 3.152165 0.629094 -1.897916 0.508516 5.492186 -1.207454 0.996123 3.641153 3.570680 -6.332156 -1.826926 0.328603 4.261176 3.883937 2.548816 -11.695300 -1.026958 2.909012 7.399726 0.108602 6.611955 -3.392824 -1.947432 1.275837 0.642166 -0.031142 0.150003 1.378437 -3.598864 0.498056 -5.213978 -1.335019 +3.503174 -0.006282 3.102719 -5.799646 -4.339139 -0.309445 3.531278 -7.571599 -3.685133 9.656050 2.853472 -5.486268 -1.427334 7.045580 -1.809121 -3.402061 0.740765 1.670929 -2.212414 -1.933218 -2.315964 2.806456 -2.341941 -5.857663 2.039344 -1.509956 2.979986 5.518251 -1.751466 2.680780 0.010508 -4.152688 2.572724 11.679400 3.875416 0.401113 -4.484586 12.248835 -8.312711 10.136308 -11.110632 -9.107784 13.467663 -1.605168 1.435548 -9.735849 -4.813183 6.671395 -0.071076 -7.133645 -2.092435 -1.428623 3.149866 -8.219946 -3.829106 6.761256 -8.375894 1.583607 5.856434 -9.011444 -10.100105 -2.033150 2.947387 2.737806 -10.137308 -7.724095 -0.157395 0.321474 -1.249285 1.536479 -7.550981 -9.451092 7.039231 1.129595 -3.116892 1.364065 -3.623532 -5.671724 5.439716 1.226695 -6.791628 -5.202615 0.896771 -4.448420 3.333748 3.433264 9.360246 -15.553265 3.533711 -14.826680 4.975578 -6.350871 6.606633 9.530084 -4.880148 7.219955 2.634744 7.024911 2.324305 0.871320 6.288585 3.604920 3.924243 2.079610 8.043472 7.920199 -6.291601 -10.328265 -6.520513 -6.720956 4.437607 -4.053344 -12.719826 4.787050 -6.135998 -0.321160 -2.276501 -0.443847 -1.139278 11.287209 -13.555052 1.033257 4.870978 -2.586366 4.479017 6.031895 -0.298696 1.629798 -2.835419 5.152846 -1.120453 2.647456 0.223864 8.489538 -6.568296 -5.976997 -3.792279 3.176435 3.895062 -7.784867 -9.583415 -13.723699 -3.272882 6.363463 -5.430352 5.758648 14.871670 -5.992431 -9.457562 6.553520 1.595998 -2.161955 5.750861 3.172866 14.352136 -7.784561 0.632967 -1.634119 -1.042332 5.575991 9.220385 -3.349845 -8.432894 8.630043 -4.413555 -9.283608 13.362421 -0.925710 -1.990464 0.254148 2.337865 -2.747577 -4.333369 9.784069 -7.775892 9.771252 -6.601873 12.547427 -5.845303 -2.992418 2.183860 -11.123912 -4.474198 -6.687503 0.898947 -1.765812 9.156857 -7.388006 -6.309383 -2.096401 -4.701427 -2.146919 11.360385 -7.102626 -0.711081 1.113361 -2.213625 7.872413 4.671698 -3.270181 -1.405728 -6.549329 3.713341 7.024589 2.028284 -11.954787 -5.013255 -5.176871 -3.409981 -2.553669 0.848643 7.920600 -5.960683 0.280491 3.951515 -1.490039 -0.946684 -1.236372 -8.678974 4.474579 -1.584889 4.941322 2.134323 13.131364 8.039455 8.668265 1.078731 2.732673 -0.660544 -4.598166 -8.803440 3.929778 1.826977 2.045545 5.683767 7.544847 4.599329 5.573915 7.347422 0.979592 2.927045 10.384350 1.284638 11.272361 -4.529528 -0.646943 3.131031 0.319500 8.518778 10.926174 1.458919 -5.863266 3.995039 -4.222280 -7.940629 -4.035037 -0.715943 -0.384642 -3.330765 5.981606 7.789911 -0.871193 -3.805519 15.381039 -0.958280 -16.666251 7.957158 3.240403 5.883915 7.613394 -3.465247 6.581779 5.783804 3.995046 4.127503 7.054888 6.582971 -11.499502 -1.201068 1.220834 6.408023 9.242099 1.975907 -18.754593 3.257878 3.048826 11.012966 -1.909788 10.337022 -7.728430 3.633620 2.056217 0.049821 1.627152 -1.043321 5.334065 -1.837580 -0.180467 -12.759288 0.840042 +12.848111 0.438054 3.510884 -18.120155 -11.550783 3.540533 7.383506 -15.712906 -9.547237 22.200917 5.729626 -8.132209 -1.375732 17.271617 -2.705319 -7.450639 3.975611 -7.815693 -4.830633 -1.837334 -10.870586 8.320325 -6.701692 -16.266731 6.454639 -4.145284 1.736364 12.243913 -6.482427 0.410778 -4.255682 -9.742452 -0.544713 29.241273 9.620430 -6.398672 -4.581444 35.267450 -21.024733 21.248546 -20.869648 -18.623585 31.778475 -5.813056 0.153236 -18.821004 -10.476953 14.423896 7.109257 -14.362361 -1.564982 -7.561009 4.953076 -15.009566 -7.441646 18.426580 -22.202447 4.210827 14.866535 -12.060132 -20.663832 -8.739364 7.626863 5.230755 -24.499806 -21.431493 2.815735 0.645847 -2.687780 -1.108250 -22.465981 -23.057890 15.943596 9.843239 -4.256215 1.021563 -10.343851 -18.258239 11.338029 0.526771 -20.216508 -10.139312 0.914668 -14.391185 14.056624 4.078133 22.133799 -35.243403 13.392530 -38.297885 4.000223 -18.032158 16.809165 27.263628 -7.363098 12.771084 6.177510 21.158614 6.448231 0.318475 18.070695 5.971480 5.511586 4.103127 19.051770 18.016352 -14.902896 -19.981366 -11.018769 -12.791364 7.296358 -6.135569 -27.944919 15.898202 -15.445742 -4.858744 -6.634150 4.197700 -8.604050 26.677976 -29.376237 -4.766948 7.338742 -7.183850 12.822042 15.908521 -1.753671 2.775913 -7.054608 11.108109 -0.297643 10.084877 -3.989585 20.483283 -16.624548 -11.315390 -12.561746 4.631961 12.064759 -23.020229 -25.962452 -30.323870 -7.063897 9.757661 -14.631657 25.953972 41.475536 -16.992529 -17.752958 17.890367 2.821148 -0.366449 18.048633 5.835288 34.329242 -17.432986 1.446222 -0.693496 -2.549895 6.049503 12.080828 -9.321558 -13.881086 17.964146 -8.245140 -8.452045 35.816178 2.316230 -6.118331 6.846605 3.956111 -4.960981 -18.834177 26.717389 -14.446009 22.336701 -2.013793 32.819645 -11.376467 -4.179059 10.584007 -15.062039 -6.386278 -21.024208 0.190871 -3.862763 18.287690 -11.968882 -15.748439 -2.391250 -8.441110 -7.464399 24.880557 -3.588698 2.050570 3.091407 -4.708428 17.769328 17.860252 -7.939222 -0.122715 -18.093057 14.662325 17.681970 -1.730073 -23.490987 -13.241093 -8.872409 -8.118274 -1.050594 1.873946 18.305669 -17.676705 -2.390831 12.291885 3.477729 -0.674049 4.082808 -27.322969 11.549214 -5.372088 8.455139 7.507063 30.204191 15.534169 21.585681 4.234628 2.535871 -6.523663 -5.669598 -20.440851 4.373296 0.279612 10.807804 16.306565 18.540367 11.749569 15.658527 16.301036 3.295750 7.490393 23.800045 4.296716 29.864615 -8.847245 -4.825649 5.027073 -2.780774 23.694545 27.720528 -1.490750 -14.995195 10.171022 -9.198636 -19.953570 -12.831049 0.886452 -2.526869 -4.690273 8.385296 15.808332 1.411000 -10.163705 39.713957 -4.311840 -41.965773 16.868292 7.112014 16.196627 22.070127 -4.886046 17.993478 12.341814 5.004507 13.089541 20.307686 16.338164 -22.882858 3.197017 4.301466 13.619914 8.559402 6.341900 -42.054354 10.959846 7.098813 23.279471 2.015514 22.327586 -16.046136 7.305083 7.089286 -0.203447 4.850335 -0.065270 15.922876 -11.198411 5.392051 -30.210051 4.659366 +4.253248 -0.874114 4.075234 -6.108985 -4.005067 -0.307836 6.733125 -6.784247 -3.104202 9.513545 2.091480 -5.023881 -3.658132 7.050389 -1.180138 -3.774670 1.242646 -1.638714 -1.773735 -0.887298 -2.712738 3.522329 -2.476701 -6.070432 3.128001 -1.488728 2.943411 8.247199 -1.160670 3.346264 0.127421 -4.564195 1.993468 12.609603 3.909236 0.050508 -3.581314 15.946931 -12.170212 12.890574 -11.128087 -10.795048 17.022891 -1.980044 -1.065845 -10.812012 -4.383960 7.263570 -2.463244 -7.554625 -0.743820 -0.805998 3.617452 -8.647250 -3.730021 8.885015 -12.002293 1.577502 5.520745 -7.938753 -10.346175 -3.066131 1.485699 3.287450 -11.422932 -7.940900 0.487618 -2.414733 -2.350190 1.523859 -8.067275 -8.718542 9.454834 2.137165 -3.035116 1.799864 -2.532450 -6.058836 6.338298 0.672790 -7.726534 -5.586736 -0.152995 -5.930477 5.271690 3.111947 9.636378 -17.130322 2.728203 -16.056056 5.782823 -9.061799 6.601255 11.147005 -4.994233 10.326830 2.527927 7.390881 1.754211 -0.905043 7.113260 5.312264 6.205675 3.067969 8.724658 9.428065 -7.920583 -11.960369 -9.579465 -5.940242 4.412643 -4.756107 -15.984528 4.951798 -6.198550 -0.081056 -0.806380 -0.400899 -2.810739 12.683982 -14.742113 4.952787 4.351206 -2.607211 4.831327 7.504461 -0.680923 1.176429 -2.289431 6.731345 -1.063762 5.027670 -0.011753 9.161712 -7.324408 -5.364142 -3.222614 2.969478 4.274220 -8.062753 -10.549349 -16.116688 -3.455151 7.322539 -5.584454 6.546120 17.954651 -5.620818 -9.826952 7.686007 1.288788 0.356439 5.334513 3.226076 14.817527 -7.317607 -0.305166 -2.221454 -0.809173 5.274062 13.544698 -2.375833 -8.450054 9.444055 -4.197665 -8.490465 14.670243 -0.655055 -2.222886 0.124416 1.405042 -4.123205 -6.906520 12.930675 -8.056877 11.249914 -7.083012 14.240934 -5.457472 -3.034819 2.662732 -12.722344 -3.841842 -11.435106 -0.001084 -1.563456 8.197531 -8.822277 -6.911221 -4.427711 -3.782095 -2.590487 11.886383 -8.511998 -0.726081 0.797151 -1.426206 9.058516 5.108121 -3.609480 -2.099875 -9.170828 3.909652 6.732516 0.914808 -13.827067 -4.908728 -3.810475 -3.848038 -0.642679 0.926044 7.546635 -7.496025 -0.243262 4.965375 -0.648862 -1.837141 -0.595767 -14.088846 4.143511 0.888185 4.936656 3.709070 13.629074 10.171809 8.414981 1.236152 4.956547 -0.782255 -3.541321 -11.067595 3.802378 1.885527 2.654141 5.755811 9.852896 5.325152 5.143836 7.368337 3.136405 1.633938 10.524556 3.113154 13.324486 -4.370246 -3.393619 3.858428 0.933861 9.212429 10.837274 2.209885 -5.712684 5.184320 -3.704027 -8.627498 -4.092376 -0.444257 -1.609664 -1.652099 8.766365 7.075021 -1.430331 -2.968698 17.505751 -1.579631 -20.407613 7.283446 4.182439 7.056904 8.115804 -3.112251 6.917547 7.509684 2.390421 6.277420 6.799120 6.414126 -11.778280 0.246921 1.469935 5.932432 9.799853 2.032830 -23.011294 1.200160 2.265175 12.796471 -0.389020 13.858952 -7.456737 3.227647 1.874391 -0.978821 1.784270 -0.760314 6.510654 -2.015560 1.445576 -16.198533 0.530945 +3.901030 -0.055710 3.584144 -6.649586 -4.787045 -0.213415 3.875623 -8.110229 -3.764615 10.132143 3.136665 -5.883366 -2.180818 7.543199 -2.027381 -4.145511 1.170269 0.972526 -2.194563 -2.117777 -2.461116 3.088284 -2.506714 -6.318226 2.334824 -1.711107 3.105697 6.345708 -1.041256 2.599335 -0.442907 -4.384811 2.605423 12.994115 4.285994 0.003396 -4.326576 13.932538 -8.716465 10.859305 -12.033347 -9.822658 14.659238 -1.761656 1.062928 -10.775333 -5.103850 7.164313 -1.260820 -7.092370 -1.718342 -1.699515 3.572258 -8.784525 -3.997243 7.901288 -9.959408 2.367185 6.230584 -8.985116 -10.434656 -2.504794 2.927638 2.948679 -10.381737 -8.341532 0.278304 0.203898 -1.999286 1.768633 -8.204782 -10.127400 8.292493 1.508184 -3.555250 1.491371 -3.549759 -6.667042 5.994457 0.714436 -7.661321 -5.557980 0.935007 -4.705169 4.500651 3.185389 9.756199 -17.216120 3.431634 -16.352266 5.419985 -7.402367 7.328836 10.714074 -5.866600 7.903388 2.721557 7.261722 2.348732 0.566888 7.254010 4.015141 4.414011 2.148369 8.746855 8.403401 -6.706125 -11.061686 -6.964949 -7.064947 4.206808 -4.401946 -14.474367 5.116398 -6.891269 -0.075461 -2.204292 -0.531751 -1.674927 12.087319 -14.480324 0.749776 4.880156 -2.863044 5.193031 6.990534 -0.445946 1.850606 -2.981070 6.330668 -1.088047 3.099421 -0.157865 9.193714 -6.728724 -7.014156 -4.717409 3.230697 4.516295 -8.427965 -10.949644 -14.786048 -3.745704 6.185936 -5.640987 6.708083 16.469265 -6.207191 -10.398744 7.649863 1.285139 -1.639790 6.853736 3.355126 15.378786 -8.498258 0.784559 -2.022346 -0.946684 5.521867 9.796031 -3.604815 -8.929762 9.176581 -4.598846 -9.259687 13.779404 -0.783641 -2.268832 0.031670 2.071989 -3.396097 -5.341828 11.163625 -8.132082 10.725247 -6.691874 14.136404 -6.400672 -4.063433 2.578489 -11.370528 -4.355303 -7.395784 0.689566 -1.510017 9.659642 -8.301621 -7.162402 -2.421889 -4.392933 -2.396704 12.194948 -6.812398 -0.783635 1.130833 -2.052378 8.868852 5.534585 -3.744340 -1.224331 -7.432903 4.088135 7.752094 1.996231 -13.108506 -5.003818 -5.349936 -3.719230 -2.133601 0.902269 8.462130 -6.592039 -0.319084 4.326275 -1.448544 -0.674168 -1.034820 -10.547784 4.975239 -1.503842 4.720439 2.612547 14.081839 9.009500 9.169276 1.236549 2.652825 -0.603437 -4.760195 -9.252269 3.847310 2.123872 2.375078 6.006376 8.546347 5.078669 5.781413 7.857953 1.795068 2.696952 11.221614 1.784269 12.411645 -4.765618 -0.897327 3.289188 -0.037777 9.497324 12.220512 1.207654 -6.212298 4.614000 -3.856266 -8.068677 -5.303946 -0.923157 -0.816091 -3.199995 6.614444 7.944880 -1.262885 -4.005188 16.841013 -1.012870 -18.230252 8.753195 3.729272 6.362987 8.005418 -3.725018 6.588384 6.378540 3.261866 4.924188 7.426688 7.143416 -12.011389 -1.302080 1.240455 6.948188 9.289143 2.292842 -19.969626 2.988150 3.446604 12.296496 -0.978806 11.259187 -8.107728 3.379009 2.089478 -0.212910 1.643699 -1.200408 5.926590 -2.695949 0.028268 -13.486376 0.509861 +4.935373 -0.238717 4.423846 -6.772377 -4.892809 -0.147402 5.605564 -8.024492 -4.515654 12.467926 2.438874 -6.940075 -4.236202 8.595281 -1.512323 -4.764131 1.284366 -1.827672 -2.178039 -1.901821 -4.473817 3.513128 -3.189611 -6.459167 3.604948 -1.155579 2.966249 7.543915 -1.848288 2.199389 -0.109876 -5.108910 2.439073 15.243971 5.157736 -0.799465 -3.954566 18.388909 -10.806848 14.446841 -12.985776 -12.365780 18.085057 -2.170935 0.093700 -10.336834 -3.407710 9.789881 -3.592508 -7.647223 -0.515439 -1.118294 2.965189 -9.926378 -4.690824 10.001748 -13.944087 4.694482 7.041891 -9.259776 -12.708836 -3.541698 2.290371 2.821213 -11.277711 -9.323189 0.247865 -1.529191 -3.621195 1.474817 -10.401420 -10.048379 8.745543 2.665018 -3.579241 2.003646 -3.925592 -4.734374 6.815294 -0.989030 -9.846690 -6.508426 0.447362 -6.998263 6.726023 4.692577 10.625564 -20.306357 4.326158 -19.935783 6.046173 -9.369042 8.215346 13.893659 -5.839835 10.671551 2.716722 6.862887 1.853632 -0.533144 8.389847 3.803655 4.592164 4.016367 9.592604 10.531255 -8.751529 -12.921454 -8.913003 -7.211735 4.250575 -3.550359 -14.393894 6.201618 -8.548238 1.807095 -1.010108 1.280323 -4.001851 11.289915 -17.708664 0.882006 4.172028 -3.377426 7.974109 8.485233 -0.685111 2.243358 -3.401910 7.962279 -0.971862 4.699988 -0.756536 10.780288 -6.026059 -6.696838 -6.336919 3.553945 6.120099 -9.014699 -13.001724 -18.612919 -4.150038 6.516370 -7.390666 10.498771 20.489191 -6.974331 -10.751664 9.981029 -1.211132 1.208222 7.810793 3.558961 17.466174 -8.854234 -0.088746 -1.086412 -1.436214 5.553426 11.329532 -3.352167 -9.629992 10.533954 -3.737131 -5.258508 13.575395 0.061194 -3.392016 -1.073647 1.892928 -3.839493 -8.006857 13.563737 -9.508532 11.012213 -6.141462 17.361479 -6.327631 -4.626509 4.027283 -14.436101 -3.854593 -10.176538 -0.597339 -2.640958 10.021618 -10.420027 -8.368935 -3.233035 -3.868965 -4.033486 13.391628 -6.148746 -0.880942 1.489657 -1.326989 11.641072 6.760616 -4.646062 -1.346467 -10.734479 4.121189 7.899795 1.328439 -14.616699 -5.042730 -4.508359 -4.815967 0.807030 0.881796 8.386059 -8.740119 -0.301213 6.045166 -0.492449 -0.122078 0.301596 -13.551911 5.368792 0.284306 5.006137 5.621839 16.582049 9.956426 10.332856 1.773539 4.884056 -1.584947 -3.978012 -10.619997 3.109752 1.804480 5.044344 7.280638 8.646246 6.732654 6.069386 8.102561 2.146433 0.440260 12.498970 2.585690 15.059135 -6.025898 -1.988692 4.172849 0.282658 10.761751 13.137038 -1.647821 -7.868001 6.625508 -4.835929 -8.905686 -5.328795 -0.538511 -2.137390 -2.254811 7.250812 8.799921 -1.391362 -3.784077 20.661311 -2.951940 -22.809003 10.075275 5.004285 7.910088 9.379988 -2.908412 7.224970 7.758687 1.664380 6.137800 9.289093 8.307882 -13.632856 1.815684 1.274441 7.875736 9.478534 2.540983 -24.329153 1.466804 3.491904 14.081620 0.734214 13.173903 -8.577557 2.338179 2.535789 -1.647740 2.000366 -0.656948 8.228680 -1.531684 1.737900 -15.596684 0.455336 +6.471242 0.057384 6.006792 -10.002349 -7.644542 -1.175274 10.192465 -10.535447 -5.598649 18.045097 4.353604 -8.985244 -3.761853 11.852436 -1.623674 -4.198621 3.110428 -1.435343 -3.226394 -1.453415 -4.681897 5.320575 -3.904855 -8.970134 4.524842 -0.849504 3.813205 10.517525 -4.615208 2.865575 -0.019969 -6.693607 3.582034 19.153417 5.911636 -1.554606 -7.085865 23.015066 -17.666835 19.134239 -18.112334 -14.897511 23.234225 -2.942579 1.724550 -16.524902 -6.501336 12.436221 1.393944 -13.622970 -2.039671 -1.385041 5.702329 -13.866391 -6.733184 12.750584 -15.364859 1.858399 10.173730 -13.842357 -16.777737 -3.039921 4.231815 4.936896 -18.785976 -12.876158 -0.118938 -3.456828 -2.122471 1.919930 -12.722225 -14.383547 9.836950 2.756036 -4.382717 2.607607 -5.514622 -10.475142 9.756179 0.820972 -12.656205 -8.285321 -0.590545 -10.542920 6.917872 3.706327 16.055383 -26.049619 6.401772 -25.643662 7.490462 -12.215347 9.575203 17.493488 -5.824860 12.907519 3.183230 11.244241 3.302928 0.257328 10.304601 7.272521 7.768648 4.118843 13.616188 14.926533 -12.031949 -17.838111 -12.295326 -9.792219 7.333590 -5.972113 -19.084030 8.672932 -8.874455 -0.263314 -1.151550 -0.828053 -3.218188 20.337949 -20.632770 3.947441 7.691208 -4.239377 6.249921 11.588231 -0.581254 1.059085 -4.715863 8.975319 -0.965700 7.248327 0.964712 14.325006 -11.527211 -8.235665 -3.757669 4.546540 6.172865 -12.061408 -15.643566 -25.000834 -4.299465 10.246844 -9.684425 10.044421 26.329243 -10.575837 -14.841852 11.252712 2.300790 -3.230563 6.873134 4.369375 22.911321 -11.889605 -0.272233 -2.791333 -1.901164 8.062544 21.619305 -4.589209 -13.453319 14.036211 -7.830134 -16.236254 23.369613 1.035857 -2.713225 2.947764 2.943022 -4.586464 -9.788621 17.014858 -13.562508 15.317767 -9.864217 20.951067 -7.200584 -3.950754 4.699117 -16.061363 -5.618480 -14.152456 0.176973 -0.775034 13.343237 -11.064453 -10.104235 -4.752215 -7.065380 -4.407154 18.707062 -13.715614 -0.917313 1.806729 -3.104640 13.338821 7.350188 -6.151439 -2.601166 -11.896223 6.624326 9.180637 1.945035 -20.129930 -8.405563 -7.140032 -5.959447 -2.433423 1.343509 12.755926 -11.169290 -0.158040 9.366927 -1.486809 -3.536498 -1.677850 -17.898647 6.681191 -0.272214 8.895086 5.160083 21.856601 12.422675 15.118652 0.963725 5.503462 -3.366304 -5.328487 -17.883996 5.114255 1.408520 3.587217 9.244389 12.169903 7.975593 8.707469 11.519773 1.629505 3.561810 16.603078 2.529114 18.307547 -6.669491 -3.307893 7.089084 0.499592 13.639565 16.051942 2.147066 -11.032671 7.148256 -7.227777 -14.824382 -4.751509 -0.413763 -1.456273 -3.025737 9.942843 12.789963 -1.573466 -4.970278 24.875181 -2.941288 -30.515278 11.653065 5.402472 10.708015 14.496903 -3.992456 12.630060 8.885599 6.198278 9.247868 12.727767 9.965797 -18.094394 -1.043360 2.822708 9.275494 14.939791 3.700608 -36.031978 2.294870 2.903788 17.466260 -2.536215 20.515018 -12.736577 7.075786 3.941114 -0.772149 2.541675 -2.224185 9.177018 -3.083477 0.470831 -23.237547 3.848474 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/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt new file mode 100644 index 00000000..d47232d0 --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm14_f/ir2vec.txt @@ -0,0 +1,2145 @@ +PE-benchmarks/subset-sum.cpp__printSubset(int*, int) = 0.537936 0.365896 0.606053 -0.890162 -0.342835 0.134246 0.484955 -0.567353 0.082442 1.586485 0.479877 -0.582045 -1.028952 1.119348 -0.322980 -0.928398 0.439253 -0.415963 -0.153204 -0.339222 -0.104594 0.392572 -0.070358 -0.679940 0.515070 -0.243805 0.093966 0.750147 0.227642 -0.186810 -0.634656 -0.096867 0.221813 1.586274 -0.116416 0.101819 -0.145108 1.581362 -1.333730 1.429351 -1.857445 -1.541980 1.616811 0.156860 -0.034086 -1.292640 -0.183536 0.703384 -0.600721 -0.863912 0.233739 -0.317224 0.151894 -1.009146 0.049538 1.542611 -2.154071 0.661563 0.234722 -0.466642 -0.919517 -0.243413 0.744855 0.182213 -0.500211 -1.050886 0.277819 0.047569 -1.008292 0.371662 -0.898842 -1.499188 1.060959 0.367728 -0.599623 0.420215 -0.097083 -1.132682 0.818497 -0.951440 -0.668842 -0.478187 0.605333 -0.184012 0.718828 0.579864 0.856479 -2.156425 0.011349 -1.631197 1.174739 -1.058012 1.302664 1.240805 -0.657397 0.682502 0.324759 0.394646 0.436892 -0.092514 1.389232 0.482829 0.987547 -0.222572 0.768322 0.913192 -1.181659 -1.109361 -0.835076 -1.055683 0.143417 -0.323286 -1.680118 0.111814 -1.154779 0.115350 0.665675 -0.499821 -0.255622 1.108313 -2.221623 -0.587959 0.418596 -0.255239 1.095896 1.284011 0.022845 0.168783 -0.020281 1.274352 -0.115052 0.081843 -0.345354 0.697984 -0.510687 -1.163011 -0.658388 0.027983 0.438311 -1.188900 -1.482668 -2.005393 -0.307081 0.571372 -0.418885 1.181193 2.304274 -0.392249 -1.358494 0.962322 -0.209823 0.203367 1.364574 0.188411 2.153280 -1.718580 0.834690 -0.236439 0.542070 0.621519 1.459107 -0.315023 -0.891146 0.552039 -0.063844 -0.824819 0.612303 -0.116862 0.108267 -0.414748 0.126809 -0.596836 -0.606943 1.434432 -0.990002 1.547460 -0.684446 1.929677 -1.368449 -1.248580 0.685275 -1.441399 -0.472402 -0.981024 -0.654464 0.004275 1.124862 -1.326662 -0.733216 -0.754699 -0.299899 -0.078172 1.179104 -0.971832 0.004297 -0.386069 -0.349592 1.385837 0.728955 -0.372004 0.240847 -1.418751 0.218214 0.919700 -0.049386 -1.903817 0.049327 -1.053822 -0.198058 0.584799 -0.221196 0.801019 -0.619983 -0.682024 0.435275 -0.458901 0.153879 -0.662993 -1.305510 0.350771 -0.423479 0.157749 0.507541 1.692555 1.280682 0.919275 0.099421 -0.273749 0.312967 -0.850660 -0.776111 0.391741 0.026147 0.509662 0.687275 0.889438 0.276067 0.291379 1.053704 0.377276 -0.197466 1.383325 0.502477 1.479997 -0.460021 0.042056 0.332587 -0.841978 0.856477 1.670571 -0.735986 -0.475727 0.770768 0.260772 -0.438684 -0.709535 -0.325004 -0.648151 -0.724447 1.081531 0.536209 -0.409209 -0.519009 2.121095 0.202331 -2.275828 1.209619 -0.021694 0.410928 0.782772 -0.638013 0.237563 0.823194 -0.508777 0.529419 0.493627 1.199983 -1.236212 -0.196361 -0.101523 1.091848 0.811210 -0.123679 -2.423231 0.140558 0.561714 1.697659 0.779801 1.492849 -0.730066 0.103474 -0.354511 -0.432267 -0.164645 -0.395541 0.830047 -0.453554 -0.073301 -1.805311 0.193829 +PE-benchmarks/subset-sum.cpp__comparator(void const*, void const*) = 0.486063 0.513829 0.488513 -1.115288 -1.263727 0.264360 0.321171 -0.646218 0.113419 0.733977 0.911150 -0.624756 -0.230298 1.346560 -0.272786 -0.392219 0.046802 -1.045925 -0.340173 0.059536 0.051037 0.567139 -0.256268 -0.095129 -0.066359 0.059853 -0.147893 0.418687 0.254618 -0.527692 -0.963557 -0.182489 0.068100 1.154989 0.226664 -0.563982 0.087547 1.673005 -1.176897 0.836072 -1.050471 -0.844447 0.817839 0.029996 -0.118150 -1.379907 -0.815049 0.734344 0.708789 -0.824601 0.790546 -0.113177 0.176153 -0.226188 0.211870 0.822303 -1.322007 0.442448 0.481944 -0.022150 -0.179863 -0.252160 0.361473 0.600715 -0.905792 -0.756927 0.581400 0.223575 -0.317167 -0.180964 -0.451835 -1.700918 1.438096 0.351368 -0.570435 0.076299 0.264883 -1.724780 1.127528 -0.526863 -1.136867 0.197240 -0.047339 -0.415680 0.955004 -0.304802 0.670438 -1.758233 0.180850 -1.771703 0.479127 -1.085102 0.556913 1.094233 -0.709768 0.035682 0.397108 1.031646 1.122975 0.275515 1.225511 0.729729 0.856445 0.057387 0.880836 0.844658 -0.663616 -0.521292 -0.942345 -1.372040 0.234331 -0.050212 -1.944282 0.541728 -0.158647 -0.658631 -0.000934 -0.268684 0.067058 1.658904 -1.123867 -0.349798 0.473328 -0.155146 0.351248 1.547935 -0.410561 0.336123 -0.485521 1.136554 -0.253210 0.674849 -0.051266 0.463709 -0.851744 -0.985312 -0.955894 0.519556 0.603688 -0.979733 -1.132498 -1.572786 0.079192 0.174113 -0.596755 0.805486 2.080817 -0.800954 -1.097831 1.195697 1.084674 -0.430127 0.998985 -0.136800 2.059647 -0.974274 0.191550 -0.379388 -0.259955 -0.299923 0.864905 0.188896 -0.299793 0.277278 -0.171265 -1.938000 1.897383 -0.044657 -0.542770 0.609188 0.271499 -0.527132 -1.077635 1.330852 0.162102 0.965278 0.199457 1.639617 -0.645423 -0.681924 0.706486 0.135401 0.117871 -1.079653 -0.339547 0.498393 1.105700 -0.383676 -0.346568 -0.281093 -0.568711 -0.571928 0.527306 -0.442040 0.394623 0.228428 0.201529 0.168190 1.494314 0.135539 0.244236 -1.158034 0.537851 0.685186 -0.327614 -1.252471 -0.304961 -1.104864 -0.022659 0.012338 -0.314855 0.727093 -0.588273 -0.780524 0.165122 -0.350183 0.264422 0.120448 -1.445554 0.328844 -0.560710 0.874891 0.122161 1.093770 1.155645 1.401774 1.000580 -0.213059 0.159588 -0.053137 -0.731886 0.091499 0.107776 0.311631 0.700611 1.385988 0.485593 0.461007 1.092976 0.298717 0.289150 1.194262 0.160261 1.746711 -0.165309 -0.121458 -0.199369 -0.308507 1.040913 2.186478 0.096142 -0.244035 0.346143 0.401804 -0.863922 -0.635985 0.076454 -0.396611 -0.214619 0.459427 0.500668 0.023502 -0.413282 1.513252 -0.056340 -1.833096 0.493851 -0.088736 0.674291 1.150331 -0.237354 0.617608 0.331437 -0.496606 1.134775 0.968268 0.838885 -0.883997 -0.941252 0.039511 0.737228 -0.011841 0.445663 -2.057777 0.902325 0.588915 1.204776 0.248511 0.973349 -1.183928 -0.026088 0.569237 -0.252466 -0.156101 0.089030 0.950382 -1.247907 0.102496 -1.399042 -0.257183 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 4.523950 1.665229 4.028006 -4.411453 -1.482390 1.855958 1.626715 -5.258707 0.719641 13.478189 2.673314 -2.037952 -1.446874 5.935316 -3.508538 -3.061114 2.758836 2.091873 0.386935 -3.444207 0.209387 2.175588 -1.088620 -4.453161 1.871599 -3.155883 3.136761 2.546964 -2.705778 3.369848 -3.397125 -1.697283 0.922831 8.980258 0.392892 1.412835 -3.283887 6.642026 -8.241086 8.372121 -12.021509 -10.405805 8.107006 1.815681 3.059852 -7.474211 -1.648119 2.247218 3.129692 -6.484538 -0.672514 -3.722508 3.098890 -5.248511 -0.608327 5.620142 -7.937895 -1.637143 0.877887 -6.309607 -7.585685 -0.831653 7.392618 3.462099 -7.451123 -5.665269 2.565445 3.614759 -2.907050 2.930680 -5.610368 -11.354286 1.817830 1.677150 -4.217602 0.757099 -0.978116 -8.658001 4.418025 -1.297244 -3.541997 -3.248268 2.645822 -3.273059 0.434863 4.449396 9.803606 -12.314047 3.651100 -9.535549 7.041896 -3.632548 8.695821 5.727414 -2.731543 2.828535 3.650374 9.558226 4.048900 -0.906115 7.336899 5.788488 4.806130 -2.664906 5.859438 7.043859 -6.902507 -7.459862 -5.041344 -6.035263 2.292408 -3.806559 -10.011439 0.103276 -7.021182 -2.175610 0.709740 -3.885635 -0.962625 10.982249 -16.667438 -4.317815 3.379203 -1.317457 4.832088 4.822670 0.919315 2.021619 1.200441 6.236391 -2.286499 -2.404380 -1.240518 4.289766 -8.360399 -3.081096 -2.363044 1.628807 2.753295 -8.295767 -8.108151 -12.838607 -3.142031 7.469794 -1.696650 6.087756 12.240241 -2.749164 -8.430556 2.486626 -1.524873 -4.949547 8.370476 1.944407 12.391872 -11.361468 6.301668 -2.728230 4.704414 4.624666 10.819808 -2.346401 -4.446102 5.112275 -2.234958 -6.217583 7.110778 -3.093241 1.308660 -4.179778 2.574100 -1.794389 0.548386 6.744284 -11.513710 8.164198 -7.519926 9.828966 -9.460200 -4.778019 1.736454 -14.724072 -5.025455 -4.540355 -0.296040 -2.112431 10.315345 -7.183726 -4.019472 -3.354757 -5.235913 2.042618 7.714143 -10.022099 -0.169513 -2.172012 -4.139293 9.964841 3.153230 -0.141349 -0.323137 -4.816342 0.887147 6.489409 0.003430 -10.258397 -2.442122 -8.543795 -0.944073 -2.990919 -0.632885 6.201060 -5.112591 -2.755597 0.686052 -2.968128 -0.368269 -4.867806 -7.098297 3.142793 -4.043859 3.352095 0.273659 10.193601 6.874679 6.902950 0.816286 -3.600850 3.036947 -8.505854 -6.214253 5.514799 2.907832 0.661864 3.014104 6.836297 0.293036 2.737383 5.370734 0.491707 3.346704 7.706190 0.409021 7.694912 -4.210962 2.663879 1.430177 -4.473409 4.214708 10.218155 0.963179 -2.108177 2.667447 -0.986174 -5.327457 -2.334215 -0.725849 -1.857935 -4.122908 3.436296 7.044395 -1.526324 -5.089723 12.544468 3.255275 -13.432042 6.620615 -0.929955 1.794026 8.319974 -5.376219 3.575995 3.303475 2.652491 4.049987 2.870264 6.607956 -8.909110 -2.006865 -0.613685 6.483335 8.129181 -2.687444 -15.301557 5.490537 2.948207 9.845639 1.980335 10.964441 -6.076716 4.485484 -2.053946 -3.304930 -1.066746 -1.282959 5.674042 -0.902144 -0.677996 -12.977378 2.805695 +PE-benchmarks/subset-sum.cpp__generateSubsets(int*, int, int) = 2.031574 1.120470 1.870084 -2.191494 -1.559716 0.704786 0.769670 -1.832380 0.333582 4.780310 1.332948 -1.224694 -1.101215 2.976757 -1.425701 -1.746526 0.841437 -1.109517 -0.044134 -1.320266 -0.067904 1.301158 -0.396475 -1.366943 0.926384 -1.077562 0.386995 1.514548 -0.389166 0.216514 -1.616703 -0.462609 0.328496 3.950172 0.068480 -0.494376 -0.329175 4.075236 -3.567493 3.008882 -4.534616 -4.127874 3.544960 0.550069 0.377190 -3.060272 -0.971930 1.343223 0.266962 -1.797491 0.732526 -1.064772 0.799242 -1.831325 0.158366 3.009347 -4.896439 0.919592 0.399237 -1.615540 -2.404963 -0.597101 2.054663 1.066320 -1.947128 -2.456895 1.277616 1.300357 -1.574135 0.988872 -1.916014 -4.370734 2.323014 0.966214 -1.575447 0.621978 0.195050 -3.727660 2.347055 -1.922192 -2.147360 -1.035294 1.075403 -1.187050 1.538390 1.170813 3.092670 -5.458413 1.029013 -4.425729 2.808476 -2.456248 3.187789 3.051539 -1.656502 1.341103 1.356317 2.781379 1.971327 -0.303881 3.666156 2.021147 2.338831 -0.322446 1.933112 2.896420 -2.763124 -2.461590 -2.347412 -2.740040 0.458338 -0.934740 -4.641336 0.393534 -2.348813 -0.586889 0.920923 -1.538987 -0.467799 4.485320 -5.925220 -1.865224 1.247748 -0.587349 2.035992 2.767388 -0.047400 0.744341 -0.211085 3.350167 -0.829696 -0.000452 -0.679649 1.655394 -2.792635 -2.577116 -2.150934 0.569462 1.195344 -3.390221 -3.714931 -5.150059 -0.808174 1.955569 -1.028303 3.349270 5.946164 -1.350420 -3.626130 2.376862 0.259701 -1.014577 3.780014 0.533744 5.297104 -4.117315 1.788574 -1.262921 1.208104 1.169017 3.696969 -0.449380 -1.454991 1.753117 -0.055609 -2.228348 3.047860 -0.858166 -0.194888 -0.849443 0.724360 -1.126248 -0.950511 3.512760 -2.395251 3.511721 -1.729320 4.956401 -3.357599 -2.929467 1.331010 -4.290279 -1.207628 -2.364842 -0.700571 -0.049565 3.478991 -2.886487 -1.814838 -1.433787 -1.639765 -0.117143 2.607173 -2.502710 0.493650 -0.522449 -0.898837 3.610272 2.479460 -0.135761 0.396956 -3.123990 0.614368 2.502407 -0.400681 -4.766761 -0.401938 -2.850096 -0.267677 0.151656 -0.467102 2.289986 -2.103084 -1.621954 0.469384 -1.185596 0.367739 -1.261641 -3.525012 1.284912 -1.644784 1.292744 0.570525 3.882130 3.508016 2.865700 0.971782 -0.972136 0.947865 -2.458016 -1.702151 1.568335 1.074269 0.736491 1.547551 3.384759 0.581728 1.000425 2.503342 1.044841 0.500776 3.302295 0.436748 4.163894 -1.782574 0.619687 0.081814 -1.595834 2.367657 4.984148 -0.548703 -1.044265 1.503273 0.464101 -1.592182 -1.725426 -0.310392 -1.314086 -1.159176 1.623423 2.178858 -0.937956 -1.554296 5.206630 0.962821 -5.710996 2.885881 -0.000569 0.941719 2.618930 -1.626698 0.865515 1.725897 -0.637313 1.987063 1.649037 2.958257 -3.399640 -0.990967 -0.209006 2.824746 1.834970 0.083912 -6.443622 1.575665 1.758479 3.943279 1.313632 4.344149 -2.479550 0.276306 -0.275815 -1.229096 -0.763394 0.011371 2.280871 -1.825894 0.708674 -4.392469 0.184033 +PE-benchmarks/subset-sum.cpp__main = 0.515901 0.260879 0.279822 -0.747753 -0.689829 0.151293 -0.280249 -0.401891 0.106686 0.043730 0.471760 -0.726864 -0.334404 1.137643 -0.455553 -0.684754 0.026099 -0.584014 -0.183040 -0.020958 0.024623 0.293561 -0.113869 -0.181625 0.056330 0.047785 -0.102652 0.318563 0.838784 -0.491333 -0.894858 0.037455 0.145203 1.029356 0.136912 -0.439308 0.387866 1.370128 -0.210652 0.533853 -0.911548 -0.473277 0.660855 0.097262 -0.293799 -1.017256 -0.777232 0.483384 -0.803365 0.082859 0.538563 -0.152481 -0.238820 -0.259242 0.197644 1.025529 -1.695190 1.184894 0.237897 0.532699 0.057328 -0.323189 0.242663 0.030098 0.038535 -0.594357 0.373528 0.377591 -0.785164 0.150102 -0.479437 -1.027973 1.457846 0.293640 -0.573344 0.123798 0.144081 -1.032212 0.621087 -1.055997 -0.734232 0.064688 0.287327 0.099344 1.057350 -0.066410 0.103583 -1.380780 -0.001151 -1.348497 0.375980 -1.129877 0.592410 0.995199 -1.150972 0.114708 0.063637 0.146666 0.761616 0.445111 1.007539 0.401527 0.316939 -0.240003 0.473299 0.385079 -0.154698 -0.186045 -0.203806 -0.853051 -0.439706 0.098155 -1.907810 0.205807 -0.555386 0.349885 0.038320 -0.001801 -0.102659 0.417584 -0.880791 -0.785591 -0.004039 -0.145830 0.689853 1.212254 -0.289835 0.294053 -0.525730 1.047302 0.135687 0.157292 -0.295299 0.200946 -0.401980 -1.514426 -1.354940 0.143004 0.521710 -0.598978 -1.191293 -1.083580 -0.111613 -0.314645 -0.319976 1.005637 1.473524 -0.200463 -0.874490 1.054469 0.393993 0.419456 1.498730 -0.101533 1.614217 -0.864437 0.437969 -0.041759 0.047782 -0.394174 -0.688268 -0.148199 -0.288222 0.018404 0.043430 -0.878542 0.765375 0.088833 -0.257295 -0.041220 -0.089895 -0.442932 -0.905412 1.357067 0.200977 0.886871 0.140172 1.439977 -0.639748 -1.152100 0.655788 -0.059818 0.200452 -0.321065 -0.387013 0.101643 0.797004 -0.775577 -0.502434 0.043466 0.029020 -0.385230 0.498461 0.833870 0.072889 -0.013595 0.228992 0.458111 1.051351 -0.284034 0.677906 -1.113898 0.227058 0.842783 -0.324823 -1.272689 0.294968 -0.648433 -0.022184 0.338709 -0.192598 0.210632 -0.574914 -0.839455 0.007499 -0.171217 0.754236 0.053962 -0.782403 0.331595 -0.692072 0.114777 0.382276 0.847696 1.012744 0.623663 0.491732 -0.330943 0.250951 -0.289653 0.205927 -0.039513 0.206388 0.342263 0.388589 0.823820 0.210908 0.044443 0.502268 0.517051 -0.314352 0.800841 0.646923 1.300014 -0.184468 -0.001610 -0.249600 -0.633964 0.833210 1.869219 -0.792095 -0.116799 0.421648 0.569197 0.039352 -1.197918 -0.310997 -0.375148 -0.597891 0.446186 -0.206028 -0.202241 -0.144984 1.207247 0.071495 -1.186364 0.705619 0.076667 0.150989 0.262340 -0.269546 -0.136750 0.505036 -0.937361 0.466705 0.456248 0.709987 -0.392030 -0.549814 -0.128509 0.695732 -0.177253 0.302019 -0.744088 0.576300 0.851917 1.079494 0.782307 0.273708 -0.479471 -0.610029 0.041432 -0.193865 -0.233368 -0.101184 0.585276 -0.920355 0.070623 -0.358867 -0.742345 +PE-benchmarks/karatsuba.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/karatsuba.cpp__makeEqualLength(std::__cxx11::basic_string, std::allocator >&, std::__cxx11::basic_string, std::allocator >&) = 1.221415 1.692518 2.219184 -3.278588 -1.757086 0.350436 1.504193 -1.538382 0.601270 5.810657 1.190264 -1.918055 -3.203357 3.781303 -1.446093 -2.783066 1.253396 -2.157091 -0.141951 -1.762723 -0.111124 1.765314 -0.085970 -1.364038 1.433183 -1.065277 0.158128 1.837823 0.848121 -1.079378 -1.578558 -0.392755 0.635034 4.715373 -0.546178 0.143182 -0.834192 4.990481 -3.071888 4.476971 -6.604938 -4.815535 4.306753 0.625277 0.118217 -4.953978 -0.146442 2.042514 -1.076008 -2.026472 0.616213 -0.843090 0.322834 -2.772670 0.223481 4.137142 -6.336649 2.422135 0.464350 -1.695783 -2.436938 -0.644802 2.580471 1.139418 -1.577465 -2.749989 0.823816 0.292302 -3.595173 1.348413 -2.073766 -4.100707 2.155248 1.498615 -2.246803 1.305212 -0.148075 -3.429425 2.477446 -4.202447 -2.136955 -1.364844 2.092089 -0.885903 1.796763 1.672573 2.852419 -6.636157 0.225423 -4.788823 3.549231 -3.066644 3.947650 3.823060 -1.108534 2.091285 0.863207 0.451983 2.179319 -0.555565 4.179194 1.748234 3.810617 -0.233414 2.095829 3.268893 -3.298147 -3.004579 -2.158322 -3.417631 0.218374 -0.542447 -4.268854 0.194025 -3.192187 -0.043134 2.284956 -1.504002 -1.113388 3.351099 -6.832645 -3.447067 1.340569 -0.841199 3.148948 3.870465 0.171713 0.803000 0.034354 4.123273 -0.668600 0.746229 -0.918298 2.042192 -1.773677 -3.089659 -2.510894 -0.116806 0.959407 -3.355053 -4.396522 -6.216556 -1.436828 1.214300 -1.246958 4.162610 7.239012 -1.286358 -4.613108 3.223138 -0.838195 0.295049 4.060605 0.404079 6.281587 -4.931931 2.262116 -1.181716 1.734171 1.922055 6.745832 -0.550507 -2.274263 1.500515 -0.387887 -2.360542 0.014225 -0.532420 0.063737 -2.086228 0.344309 -2.091836 -1.974881 3.799957 -3.540908 4.881692 -2.560108 5.861019 -4.315707 -4.291132 2.113669 -5.088406 -1.160928 -2.515528 -1.536220 0.135549 3.704673 -3.967420 -2.150779 -2.061976 -1.437504 -0.508115 2.767858 -4.019871 0.180214 -1.035472 -0.851971 5.662663 2.463592 -0.847334 0.631895 -4.305541 0.642195 2.781456 0.624621 -5.672735 0.215877 -3.268879 -0.761258 1.864292 -0.827734 2.130645 -1.648213 -2.038805 1.013458 -1.903266 0.701192 -2.011689 -4.731499 1.318502 -1.626413 0.933675 0.936190 4.822045 3.741659 2.798535 0.534567 -0.986623 0.827141 -3.012328 -1.409426 1.182878 0.882477 0.218284 2.093871 3.204883 1.171464 0.882095 3.949903 1.386539 -1.399146 3.964859 0.039042 4.672013 -2.382825 0.411617 0.574590 -2.396472 2.407988 5.983599 -1.320921 -1.780414 2.697366 0.776863 -1.128778 -2.734380 -0.911643 -2.205639 -1.328678 3.210560 2.113025 -1.657514 -1.340879 6.208963 0.751331 -6.813691 4.071670 -0.261273 1.075884 2.011076 -1.810330 0.081177 2.868945 -2.376164 1.459059 1.772511 3.440848 -3.702528 -1.266463 -0.510250 3.458227 2.388579 -0.030124 -7.869836 -0.005193 2.097391 5.117188 2.380057 5.554818 -2.206462 -0.478422 -0.414255 -1.313885 -1.399221 -0.748209 2.455239 -1.405504 0.037804 -4.793054 0.448742 +PE-benchmarks/karatsuba.cpp__std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char, std::__cxx11::basic_string, std::allocator > const&) = 0.858085 0.667822 1.600177 -2.149659 -2.089855 -0.013222 -1.582144 -0.056290 0.826240 1.389014 1.233187 -1.961255 -2.713555 3.192838 -1.291949 -2.485920 0.453359 -0.942946 1.109323 -0.847288 0.929101 1.074287 0.821162 0.063273 0.614930 -0.332910 -1.879995 1.212854 4.429731 -1.543503 -1.526214 0.580380 0.633914 2.201448 -1.357242 -1.641116 0.878837 3.833296 -0.981296 1.117448 -2.479666 -1.798723 2.323614 0.575877 -0.719541 -2.968797 -1.996357 1.185151 -3.191343 -0.399749 1.323618 0.422066 -0.156334 -1.078787 0.135181 2.719702 -6.087298 3.107483 -0.016958 0.863831 1.150271 0.674769 0.150751 0.321648 1.277885 -1.299413 0.350408 0.325852 -2.957303 -0.225455 0.006818 -1.192509 3.665631 0.541001 -1.259022 1.541652 2.270529 -2.124485 2.208628 -4.061047 -2.039261 0.020453 0.252471 0.081972 2.758275 -0.034036 0.580667 -3.197254 0.214927 -2.714030 2.452867 -3.118494 1.292383 2.681150 -3.067896 0.886452 1.285100 -0.692917 2.931564 0.618440 4.028696 1.699435 1.493128 0.430147 0.667898 1.150612 -0.897069 0.220506 -1.590209 -2.669355 -1.184905 -0.348876 -4.617370 0.129329 -0.824916 0.573992 2.326617 -1.383044 -0.072893 1.542257 -2.471966 -1.509865 0.394571 -0.237233 0.415258 3.483613 -0.489868 -0.551327 -0.538811 3.805066 -0.975816 0.228436 1.333151 0.505710 -0.008072 -4.283951 -2.600222 0.002923 -0.134786 -2.047767 -2.218818 -3.093816 0.666583 -1.229423 -0.254029 2.312855 5.093130 -0.073483 -2.092047 3.000412 0.386570 0.789652 4.241156 -0.107973 4.654768 -1.805268 -0.577760 -1.148209 -0.685328 0.367018 0.625566 0.891496 0.326634 0.038584 1.285417 -1.958786 -0.608885 -0.835648 -0.364438 -0.552721 0.083358 -1.917476 -2.144298 2.369383 0.676248 2.481322 0.339640 3.950473 -0.126892 -4.412818 2.143972 -0.592138 0.105627 -0.498248 -1.271084 0.718320 0.687414 -2.305679 -0.965622 -1.804433 0.072705 -1.095644 0.837380 0.557658 1.636853 0.590376 0.322424 1.653228 2.248448 -0.197628 1.795139 -3.970106 -0.055491 1.572385 -1.120213 -4.455777 1.499134 -2.113418 0.899147 2.382021 -1.477626 1.058158 -1.026344 -2.628440 -0.557516 -1.239866 1.306343 -0.930345 -2.108728 0.371786 -1.109396 1.167605 1.563343 2.255880 3.210823 1.716141 0.725591 0.914583 0.786944 -0.260602 1.280937 -0.141331 -0.094852 0.463454 0.954602 2.012634 0.539851 0.777723 2.388918 1.925159 -1.424525 2.548687 0.326678 3.206226 -0.391811 -0.546025 -0.569198 -1.484224 2.078846 4.950908 -1.270751 -0.174115 1.597713 1.559750 0.819471 -3.482255 0.024201 -1.187044 -1.083808 2.566435 0.256009 0.016087 -0.230943 1.506125 0.717508 -3.762512 2.999321 -0.351922 -0.032540 0.440999 -0.129862 -1.054166 1.184835 -3.352889 0.337226 1.339286 1.937235 -2.173861 -0.641506 -0.066716 2.744141 -0.296381 1.743386 -4.185385 0.275794 1.909357 1.635472 1.734424 1.876605 -1.578502 -3.639987 0.564775 -0.731884 -1.867610 -0.985949 0.260957 -2.913618 0.492678 0.150820 -1.383595 +PE-benchmarks/karatsuba.cpp__addBitStrings(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 2.466029 1.425295 2.703036 -3.024952 -0.814983 0.534201 -0.162593 -2.183136 1.139701 5.510767 1.925781 -2.561326 -2.055650 3.534770 -1.420677 -1.952139 2.625264 0.061340 1.434761 -1.223835 0.801517 0.949923 0.307644 -2.157596 1.529193 -1.146591 0.022396 1.840702 2.494597 -0.610285 -2.907528 -0.048476 1.690716 5.324833 -0.848458 -1.408058 -0.549820 5.068325 -2.685586 3.616654 -5.958185 -3.746299 5.100581 1.230513 -0.036586 -5.451868 -2.073808 1.594939 -2.016212 -2.919030 0.445597 -1.647132 0.993143 -3.202402 -0.744492 5.623264 -6.932891 1.819863 0.459067 -1.099272 -1.760471 0.134806 2.747375 0.827971 -0.311073 -3.160969 1.533018 0.465770 -3.905575 0.876195 -3.189309 -4.712908 4.375470 0.984978 -2.280272 1.385621 0.401462 -4.899115 2.387005 -3.287313 -2.211413 -1.548919 1.400345 -0.733536 2.076200 1.353203 2.929995 -6.850992 0.043727 -5.127210 4.320922 -3.309080 5.142502 3.853534 -2.743058 1.755516 1.701826 1.043990 1.909602 0.572974 6.311905 2.658739 2.263988 -1.734354 2.901216 3.393739 -3.477734 -2.920556 -2.218124 -3.460724 -0.040359 0.037368 -6.504260 -0.086988 -5.112060 -0.052152 2.256861 -2.107110 -0.664260 3.752562 -6.590979 -3.712104 1.269230 -0.964961 3.167141 5.164752 0.723633 0.294865 0.404766 4.989605 -0.842397 -1.283406 -0.168209 1.906541 -2.099147 -5.989933 -2.393618 -0.284759 1.262537 -4.799335 -5.156673 -6.563239 -0.916546 0.116008 -0.734575 3.216081 8.087693 -0.511686 -4.053448 2.885541 -0.211502 0.114207 6.545388 0.636879 9.038116 -6.742924 2.996440 -1.406763 1.882394 2.234225 4.759367 -1.355287 -1.588717 1.141877 0.317895 -2.930480 0.812280 -0.980021 0.913659 0.855096 0.218248 -1.163219 -2.461524 4.119367 -1.938114 4.796531 -2.649797 7.536827 -3.579982 -5.739740 1.879465 -2.753724 -2.063101 -1.772197 -1.825887 -0.269197 4.392366 -3.808143 -2.519763 -1.500657 -1.358697 0.503188 4.021905 -1.966067 0.762779 -1.174779 -2.397725 3.715590 2.194243 -1.152595 1.683906 -5.190341 -0.169440 3.444736 -1.060368 -7.174558 0.372217 -5.030870 0.008483 1.240118 -1.886890 3.171027 -2.846141 -3.330232 0.428012 -2.093393 0.716541 -3.013248 -3.713479 1.794785 -1.830995 0.365136 1.891369 6.140542 4.082353 3.366463 0.002368 -1.423337 1.478507 -3.051849 -2.424623 1.582313 0.080250 1.622490 1.792381 3.369661 0.472779 1.485412 3.342525 -0.161738 0.152858 4.764990 0.795282 4.718605 -1.392531 0.480457 0.661418 -4.188945 3.196272 6.851798 -1.618193 -2.863237 2.395854 0.443685 -1.208889 -4.231760 -0.245534 -1.721869 -3.142227 3.013075 2.836326 -0.053824 -2.551293 6.566046 1.380287 -8.035139 5.076334 -0.693070 0.012113 3.430273 -2.173728 0.799064 2.390925 -1.425263 0.795888 1.520761 4.768164 -4.761839 -0.194035 -0.640265 4.346445 1.186077 -0.487218 -9.432495 1.163717 2.159203 5.091495 3.201999 5.187611 -2.993618 -0.196357 -0.969024 -1.255900 -1.464168 -1.492858 3.071190 -2.603804 -0.800460 -5.017282 2.039268 +PE-benchmarks/karatsuba.cpp__multiplyiSingleBit(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 0.716743 0.237229 0.320200 0.097717 0.010325 0.232931 0.028432 -0.525984 -0.104949 0.798352 0.131987 -0.191876 -0.075021 0.024049 -0.456256 -0.135553 0.347586 0.678760 0.121126 -0.450510 -0.372817 -0.181213 -0.146668 -0.272862 0.140713 -0.285168 0.281934 -0.001808 -0.343630 0.241853 -0.299121 -0.047439 0.177141 0.754842 0.243023 -0.164336 -0.165119 0.376101 0.272975 0.328975 -0.721431 -0.227694 0.316591 0.162340 0.546105 -0.430949 -0.073915 0.242002 0.133793 -0.154623 -0.146100 -0.532806 0.141604 -0.298627 -0.218156 0.695926 -0.486755 0.119821 0.129396 -0.549157 -0.581819 0.101292 0.497257 0.003756 0.005393 -0.495250 0.177769 0.744511 -0.136833 0.481000 -0.808677 -0.942329 0.118989 0.016206 -0.409712 -0.080060 -0.223311 -0.113410 0.044340 -0.081990 -0.227744 -0.366469 0.355848 0.173209 -0.036440 0.472757 0.538253 -0.881316 0.221785 -0.855868 0.472495 -0.261868 0.869142 0.364350 0.046720 0.197587 0.322505 -0.162820 -0.055729 0.377210 0.534967 0.038514 -0.123082 -0.364143 0.158949 0.233890 -0.212184 -0.514392 0.021660 -0.113319 -0.093322 0.444186 -0.239561 0.009627 -0.968777 0.759514 -0.148584 0.147488 0.091823 0.401029 -0.817920 -0.640394 0.205976 -0.192904 0.850704 0.357653 0.226802 0.376452 -0.092301 0.417274 -0.059543 -0.507243 -0.321328 0.308700 -0.115417 -0.911193 -0.657486 0.042740 0.491026 -0.534144 -0.756293 -0.505468 -0.351979 0.359256 -0.241184 0.463284 0.770131 -0.187961 -0.206013 0.050741 -0.309476 -0.083404 0.901809 0.312206 1.167266 -1.081827 0.698124 0.014507 0.534897 0.300250 -0.083341 -0.502781 -0.327698 0.474385 0.281372 0.103816 0.645745 -0.302433 0.077301 0.573317 0.033754 0.644852 0.107877 0.326838 -0.184521 0.419988 -0.239168 1.021808 -0.691778 -0.547727 -0.021208 -0.228674 -0.198921 0.405130 0.428398 -0.312419 0.768309 -0.539634 -0.509316 0.351189 -0.437913 0.353754 0.707120 0.523474 -0.136950 -0.108907 -0.641053 0.622586 0.098176 -0.078319 0.118991 -0.384178 -0.028792 0.119379 -0.062264 -0.637414 -0.157694 -0.448661 -0.077359 -0.273272 0.079174 0.409463 -0.301230 -0.097951 0.043085 -0.258247 0.230727 -0.216423 0.562408 0.306410 -0.366880 -0.229104 -0.135915 0.796679 0.543608 0.466573 -0.036506 -0.367949 0.154978 -0.594236 -0.079273 0.428105 0.298210 0.451547 0.075471 -0.162178 -0.220831 0.103098 -0.082251 -0.668178 0.548936 0.435372 0.143470 0.433874 -0.874262 0.492684 0.095185 -0.608529 0.435055 0.504378 -0.479475 -0.446413 0.055339 -0.186107 -0.206709 -0.390496 -0.054632 0.104002 -0.635548 0.096211 0.770032 0.034471 -0.609725 1.017011 0.234383 -0.855802 0.741260 0.057417 -0.176032 0.558408 -0.244852 0.298155 0.177928 0.609744 -0.329575 0.175123 0.752550 -0.774800 -0.117654 -0.129541 0.413984 -0.082059 -0.369146 -1.143818 -0.025417 0.488016 0.649796 0.187622 0.404452 -0.430448 0.199329 -0.109971 -0.190512 -0.095233 0.050600 0.470312 -0.020350 0.032053 -0.433369 0.461702 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.611464 0.883139 8.140696 -6.770330 -4.152632 0.538219 -4.423262 4.454007 3.425402 11.138178 2.608059 -8.411529 -16.187452 8.290815 -4.389079 -12.882908 7.544198 -0.668414 6.903991 -8.238172 1.325220 1.501565 6.860468 -4.595229 6.006522 -4.564122 -9.973982 8.249169 20.592541 -3.428587 -0.757902 5.165979 2.797388 10.265976 -8.692271 -6.899858 3.597055 13.700349 -3.762968 4.501874 -10.090980 -8.968252 15.748654 3.744251 -0.054106 -7.454164 -3.340392 5.975346 -16.500150 -4.113873 2.034064 1.600377 3.072801 -9.373937 -4.583940 15.818146 -27.522970 9.732122 -3.552391 -1.276200 -1.099779 7.249408 0.944486 3.204288 8.105496 -8.341532 -0.309234 0.695051 -13.676698 0.190787 -1.305453 -1.457565 12.697805 -0.103955 -2.706929 8.732131 9.832319 -3.390459 7.096405 -15.457005 -5.744149 -2.184938 2.363785 -2.471943 10.714561 1.458163 6.048996 -14.005032 0.700307 -9.097052 15.633938 -11.671169 8.041337 10.930423 -8.903780 7.495561 4.028754 -7.263897 7.657037 2.467050 19.445810 4.489806 9.054844 2.255135 2.502715 4.759909 -6.025836 -1.931970 -7.783592 -7.610963 -5.612772 -1.106528 -12.995397 1.036010 -7.784192 5.187684 16.105769 -7.593457 -2.777039 6.325136 -9.923826 -4.725898 1.689717 -1.352990 2.838713 10.312683 -0.392184 -3.974765 3.639791 17.986047 -2.982250 -2.317593 8.164682 4.112620 4.426987 -16.803814 -4.975478 0.984842 -1.619353 -8.993266 -9.580761 -12.849526 2.886641 -2.674589 -1.590262 10.344702 22.352433 4.701266 -7.463516 9.150088 -5.036908 5.786928 15.939275 0.811967 19.562463 -11.872438 -0.575694 -4.402225 2.838664 8.147810 8.867524 1.845741 -0.161177 2.749601 7.378734 -0.458154 -7.471263 -4.288715 4.005843 -2.574209 -0.688144 -6.123396 -6.537960 8.323732 2.357572 12.064788 1.509840 19.134221 1.233375 -22.852977 8.964165 -1.861961 -2.883951 1.124864 -4.223673 2.343970 -2.487782 -10.092097 -6.704666 -12.007138 2.686920 -1.557663 5.101276 1.371772 7.659067 1.431475 -3.668579 8.764041 0.694579 -1.341995 5.690649 -19.268648 -3.590727 4.714141 -4.981504 -17.322688 5.174100 -6.229652 5.095831 13.374686 -4.122999 7.506508 -3.616877 -9.878519 -0.405929 -3.221736 2.731881 -7.797929 -6.944711 1.226237 1.180985 1.474994 6.473470 13.799234 15.324487 3.672787 -4.337343 6.629291 3.119341 -1.834979 2.692027 -1.259332 -2.134395 4.073774 2.784400 3.394178 -0.973459 3.405653 10.525943 6.194918 -7.936930 10.190358 0.293821 8.690478 -4.746971 -2.434057 2.139513 -8.646308 7.494393 14.276248 -6.602399 -4.993654 8.268463 5.735868 4.743674 -12.787178 0.368011 -5.736757 -1.368176 10.944742 1.494117 -1.090505 -2.333609 5.185330 6.839346 -18.709273 17.934272 -1.129603 -1.002199 3.297518 -1.667436 -4.076640 4.213154 -12.110929 -2.735871 3.958798 6.849869 -11.714529 2.363060 1.256854 14.110617 -2.919444 4.337163 -21.176085 -4.973158 4.557881 4.880472 9.622266 9.903946 -4.707958 -15.777966 -1.222049 -5.441046 -8.938800 -5.854330 -2.606281 -11.016688 3.706204 -0.445954 0.841840 +PE-benchmarks/karatsuba.cpp__main = 1.998881 1.760976 9.162445 -7.864347 -8.562564 -0.064027 -13.443611 7.977338 4.060051 6.691977 0.665788 -11.294380 -22.847683 9.995272 -8.224652 -18.704114 4.000236 -1.623325 8.588767 -13.041719 2.980651 2.168263 10.787780 -2.412721 6.125804 -6.116690 -15.144795 8.654107 35.658632 -7.224420 1.736383 7.765873 4.351131 9.510455 -12.050640 -9.059801 7.564924 16.424509 5.794700 -2.050445 -9.558406 -9.931672 16.066873 4.803467 -1.983839 -7.302613 -4.179387 6.616621 -30.490508 2.965379 2.305512 5.099049 -0.470216 -8.915447 -5.013825 15.863745 -35.724106 20.841457 -7.291799 2.401791 3.474609 10.066021 -2.691907 2.802670 18.634542 -8.058436 -2.809325 3.550160 -21.079901 -0.619165 4.960985 6.213529 19.134163 -1.981866 -3.224095 11.652851 15.262399 2.109856 7.252212 -25.446127 -6.736604 -0.422732 4.053900 0.105254 15.013950 1.657155 1.921933 -13.418257 0.186324 -7.067031 17.429491 -12.924228 5.977991 11.168607 -14.766484 8.815546 3.709893 -15.666492 12.069577 4.035923 23.539173 2.835355 10.106918 6.470615 -1.547984 1.383876 -1.633660 4.095027 -6.811391 -9.883431 -10.799160 -0.858965 -17.689404 0.171770 -5.233842 10.765636 20.403475 -8.108967 -3.634332 -0.319662 -9.473326 -9.442280 -0.783906 -0.616609 1.771279 9.855228 -1.828577 -5.117998 5.034729 22.708108 -3.770707 -4.109885 13.222568 2.325334 12.147133 -22.630230 -11.878519 1.325980 -3.865898 -6.483992 -8.804774 -9.515955 4.137384 -8.846783 -0.556632 13.043723 25.575271 8.442365 -8.094087 13.320235 -9.067148 11.336219 21.739243 -0.011485 19.927936 -8.534570 -6.296704 -4.604510 -0.185097 9.101556 1.524434 4.804083 2.764909 0.408702 12.629442 6.333508 -22.313759 -6.440254 2.982511 -8.743871 -2.262402 -10.041240 -7.923074 7.176860 8.135853 13.811472 5.719794 20.710351 5.390460 -32.966051 10.809726 -0.016385 -1.455183 7.559240 -4.813304 2.165647 -8.029632 -13.500160 -6.520165 -13.181351 6.464384 -5.319154 1.720455 11.032287 11.517629 3.560641 -0.167383 10.731669 2.069422 -1.420721 8.561016 -24.550204 -5.861864 5.818906 -4.759949 -19.876347 9.752134 -4.388277 7.637722 21.870751 -6.665311 4.754160 -0.113696 -11.582330 -4.846693 -4.372161 7.587272 -7.385714 -3.736613 0.610441 0.934993 1.917468 8.428217 12.581826 19.805826 1.175121 -4.643786 11.947402 4.589144 -0.972999 15.352224 -4.771277 -1.108850 2.782773 2.754635 4.693526 -0.402599 3.544487 14.272786 13.001094 -15.624637 10.750484 -2.176138 11.767872 -8.442846 -3.497168 -2.012061 -7.633494 7.994317 19.750668 -12.055348 -3.412019 10.685671 9.813524 13.611630 -20.322708 0.471298 -7.938780 1.418506 13.604137 -1.552105 -1.496830 1.007305 -0.901684 8.090594 -16.581777 23.684080 -1.078214 -3.593206 -3.748980 -0.772143 -12.424161 5.551010 -22.283255 -7.764652 5.343959 4.623053 -11.935331 3.282029 1.098940 18.928423 -9.918362 9.623328 -15.945904 -8.217183 7.724773 2.252371 12.201233 4.603771 -3.652096 -30.713497 1.223982 -5.164324 -13.584159 -5.497805 -7.571277 -15.991115 6.516340 12.220199 -6.986058 +PE-benchmarks/karatsuba.cpp____gnu_cxx::__alloc_traits, char>::_S_select_on_copy(std::allocator const&) = 0.167518 0.264147 0.200340 -0.416801 -0.572875 -0.007497 0.082565 -0.090472 -0.011934 -0.065494 0.291056 -0.349412 -0.301579 0.589217 -0.097828 -0.396717 -0.131990 -0.573611 -0.265599 0.024554 -0.015633 0.255920 -0.054587 0.110482 0.061482 0.134409 -0.218943 0.210399 0.373375 -0.536816 -0.348338 0.013263 0.082925 0.452636 -0.055944 -0.249275 0.211013 0.848118 -0.199944 0.166457 -0.347472 -0.279653 0.302390 -0.024464 -0.209046 -0.582914 -0.396702 0.407610 -0.238077 -0.092597 0.424700 0.171751 -0.270092 -0.105613 0.224816 0.474750 -0.944225 0.637747 0.205457 0.246860 0.040843 -0.075481 -0.020124 -0.047743 0.080163 -0.308454 0.158249 0.002544 -0.308629 -0.014268 -0.048661 -0.512016 0.834262 0.139748 -0.171770 0.204997 0.230245 -0.429302 0.504194 -0.554316 -0.461079 0.087302 0.109355 -0.012470 0.619120 -0.148666 -0.108082 -0.691564 0.010278 -0.648591 0.159536 -0.631613 0.110953 0.544250 -0.443024 0.128842 0.081532 -0.109619 0.420508 0.163496 0.558587 0.103090 0.345069 0.149882 0.172849 0.145645 -0.201176 -0.078035 -0.378510 -0.644949 -0.039464 0.068027 -0.844811 0.223041 0.046169 0.007619 0.174988 -0.019129 0.095554 0.219672 -0.321768 -0.147626 0.174708 -0.067126 0.174629 0.757859 -0.257300 0.050250 -0.384821 0.551570 -0.036399 0.403812 -0.000940 0.107404 0.014850 -0.737382 -0.613375 0.079285 0.179865 -0.245647 -0.437748 -0.507842 0.134026 -0.210396 -0.285207 0.431044 0.941099 -0.270711 -0.448730 0.710817 0.528048 0.250100 0.459781 -0.089211 0.835683 -0.241377 -0.100982 -0.052446 -0.228904 -0.150446 -0.310475 0.180643 -0.095165 0.035105 0.109638 -0.612151 0.565191 -0.013352 -0.269777 0.364545 0.076284 -0.286721 -0.586478 0.627127 0.600648 0.498872 0.356563 0.692602 -0.139786 -0.480884 0.367031 0.231638 0.183541 -0.398073 -0.330686 0.182270 0.228708 -0.251101 -0.123278 -0.152454 -0.100435 -0.404074 0.063717 0.305123 0.228156 0.078661 0.325429 -0.071259 0.726794 -0.032665 0.265204 -0.766284 0.182164 0.221453 -0.140355 -0.569896 0.156319 -0.263629 0.002964 0.370832 -0.200311 0.078092 -0.103653 -0.372064 0.075800 -0.159111 0.224565 0.090219 -0.396921 0.001314 -0.274172 0.272770 0.195947 0.348434 0.653139 0.428305 0.442041 0.067575 0.097220 0.137952 0.029799 -0.187599 -0.133418 0.326432 0.319508 0.302960 0.282480 0.062399 0.423459 0.276944 -0.210961 0.496576 0.280524 0.877907 -0.001600 -0.160615 -0.157508 -0.103766 0.432038 0.914467 -0.328461 0.007363 0.274409 0.377375 -0.071605 -0.530435 -0.084083 -0.258482 -0.192737 0.331366 -0.097171 -0.157547 0.062600 0.496521 -0.130407 -0.639124 0.242573 0.007015 0.214840 0.106193 0.063259 -0.003564 0.290093 -0.624572 0.247339 0.354839 0.366656 -0.289554 -0.258104 -0.011599 0.375372 -0.311474 0.396000 -0.597109 0.185291 0.354182 0.401589 0.181462 0.139125 -0.337386 -0.444405 0.268996 -0.049010 -0.168080 0.100546 0.278663 -0.533225 0.050305 -0.251579 -0.408934 +PE-benchmarks/karatsuba.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.167518 0.264147 0.200340 -0.416801 -0.572875 -0.007497 0.082565 -0.090472 -0.011934 -0.065494 0.291056 -0.349412 -0.301579 0.589217 -0.097828 -0.396717 -0.131990 -0.573611 -0.265599 0.024554 -0.015633 0.255920 -0.054587 0.110482 0.061482 0.134409 -0.218943 0.210399 0.373375 -0.536816 -0.348338 0.013263 0.082925 0.452636 -0.055944 -0.249275 0.211013 0.848118 -0.199944 0.166457 -0.347472 -0.279653 0.302390 -0.024464 -0.209046 -0.582914 -0.396702 0.407610 -0.238077 -0.092597 0.424700 0.171751 -0.270092 -0.105613 0.224816 0.474750 -0.944225 0.637747 0.205457 0.246860 0.040843 -0.075481 -0.020124 -0.047743 0.080163 -0.308454 0.158249 0.002544 -0.308629 -0.014268 -0.048661 -0.512016 0.834262 0.139748 -0.171770 0.204997 0.230245 -0.429302 0.504194 -0.554316 -0.461079 0.087302 0.109355 -0.012470 0.619120 -0.148666 -0.108082 -0.691564 0.010278 -0.648591 0.159536 -0.631613 0.110953 0.544250 -0.443024 0.128842 0.081532 -0.109619 0.420508 0.163496 0.558587 0.103090 0.345069 0.149882 0.172849 0.145645 -0.201176 -0.078035 -0.378510 -0.644949 -0.039464 0.068027 -0.844811 0.223041 0.046169 0.007619 0.174988 -0.019129 0.095554 0.219672 -0.321768 -0.147626 0.174708 -0.067126 0.174629 0.757859 -0.257300 0.050250 -0.384821 0.551570 -0.036399 0.403812 -0.000940 0.107404 0.014850 -0.737382 -0.613375 0.079285 0.179865 -0.245647 -0.437748 -0.507842 0.134026 -0.210396 -0.285207 0.431044 0.941099 -0.270711 -0.448730 0.710817 0.528048 0.250100 0.459781 -0.089211 0.835683 -0.241377 -0.100982 -0.052446 -0.228904 -0.150446 -0.310475 0.180643 -0.095165 0.035105 0.109638 -0.612151 0.565191 -0.013352 -0.269777 0.364545 0.076284 -0.286721 -0.586478 0.627127 0.600648 0.498872 0.356563 0.692602 -0.139786 -0.480884 0.367031 0.231638 0.183541 -0.398073 -0.330686 0.182270 0.228708 -0.251101 -0.123278 -0.152454 -0.100435 -0.404074 0.063717 0.305123 0.228156 0.078661 0.325429 -0.071259 0.726794 -0.032665 0.265204 -0.766284 0.182164 0.221453 -0.140355 -0.569896 0.156319 -0.263629 0.002964 0.370832 -0.200311 0.078092 -0.103653 -0.372064 0.075800 -0.159111 0.224565 0.090219 -0.396921 0.001314 -0.274172 0.272770 0.195947 0.348434 0.653139 0.428305 0.442041 0.067575 0.097220 0.137952 0.029799 -0.187599 -0.133418 0.326432 0.319508 0.302960 0.282480 0.062399 0.423459 0.276944 -0.210961 0.496576 0.280524 0.877907 -0.001600 -0.160615 -0.157508 -0.103766 0.432038 0.914467 -0.328461 0.007363 0.274409 0.377375 -0.071605 -0.530435 -0.084083 -0.258482 -0.192737 0.331366 -0.097171 -0.157547 0.062600 0.496521 -0.130407 -0.639124 0.242573 0.007015 0.214840 0.106193 0.063259 -0.003564 0.290093 -0.624572 0.247339 0.354839 0.366656 -0.289554 -0.258104 -0.011599 0.375372 -0.311474 0.396000 -0.597109 0.185291 0.354182 0.401589 0.181462 0.139125 -0.337386 -0.444405 0.268996 -0.049010 -0.168080 0.100546 0.278663 -0.533225 0.050305 -0.251579 -0.408934 +PE-benchmarks/karatsuba.cpp___GLOBAL__sub_I_karatsuba.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/sort-array-wave-form-2.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/sort-array-wave-form-2.cpp__sortInWave(int*, int) = 2.527629 0.424753 2.283449 -1.529374 -0.667182 1.299701 0.654857 -2.806273 0.422708 7.443697 1.151728 -0.935927 -0.825255 2.496726 -1.507896 -1.665703 1.652674 1.810957 0.625496 -1.503809 -0.627631 0.926222 -0.777027 -2.021550 1.346228 -1.636890 1.551932 1.349094 -1.769941 1.932387 -1.678846 -0.932685 0.040004 5.033092 0.351808 0.848365 -1.183810 4.057257 -3.583182 4.850438 -5.732618 -5.325428 4.147943 0.825652 1.826801 -1.872742 0.193313 1.604415 0.843303 -3.677935 -0.017668 -2.094380 1.751618 -2.669062 -0.264195 2.922193 -4.418860 -0.943059 0.509419 -3.455269 -4.446274 -0.444279 3.403872 1.735395 -3.900461 -3.113043 1.287972 2.220536 -1.493367 1.409611 -3.162238 -6.010882 1.378308 0.840589 -2.534960 0.504148 -0.199525 -3.488996 2.240164 -0.391800 -2.400582 -1.978809 1.256537 -2.463333 0.747424 2.674260 5.443227 -6.783747 2.686624 -5.441889 4.156800 -1.874710 4.925054 3.690926 -1.415352 1.766431 2.352925 5.188305 1.464039 -0.461530 4.169864 2.382612 1.504657 -0.952668 2.661163 3.402805 -4.063668 -4.123234 -2.905339 -2.986597 1.332771 -1.526233 -4.203113 0.010497 -3.975819 1.150754 0.746326 -1.208509 -0.745647 5.375515 -9.192481 -2.040749 1.592044 -0.804685 3.477427 2.413193 0.448294 1.241678 0.780141 3.646510 -1.708856 -1.873234 -0.985622 2.537059 -3.677231 -0.429485 -1.576932 0.749993 1.866536 -4.338112 -4.540586 -6.817156 -1.795016 4.422548 -1.035468 4.276385 7.016988 -1.758001 -3.626873 1.605143 -2.289681 -1.935397 4.549599 1.308484 6.198952 -6.053053 3.065541 -1.682339 2.529781 2.424230 5.486579 -1.045677 -2.337570 3.066588 -0.442475 -1.027936 4.349245 -1.283475 0.327326 -2.324444 1.251054 -0.348556 0.230833 3.698337 -6.167085 3.730018 -3.411287 6.058346 -4.720439 -2.489325 0.980700 -7.035651 -2.530194 -2.473373 -0.349031 -1.179865 5.110415 -4.257169 -2.370977 -1.351498 -2.651503 1.051145 3.967788 -3.290791 -0.086761 -0.923548 -2.513279 6.214007 1.673479 0.163815 -0.875678 -3.013710 0.280585 2.542654 -0.970296 -4.255963 -1.331082 -4.226838 -0.583051 -0.880782 -0.187733 3.273235 -3.309735 -1.356346 0.200509 -1.182066 0.110535 -2.131935 -4.025996 1.644044 -1.172736 1.232280 0.970949 5.274340 3.756730 3.945837 0.690394 -1.443352 1.200695 -3.744000 -3.295587 2.881304 1.453877 1.699111 1.619701 3.031858 0.460850 1.484834 2.008985 -0.362077 2.257947 4.320900 0.244233 4.405131 -2.759152 1.579052 0.978534 -2.177134 2.537774 4.632650 -1.405517 -0.877732 1.470694 -0.554607 -2.813615 -0.881338 -0.048283 -1.196540 -1.654832 0.897006 3.599000 -0.445593 -3.007330 6.821367 1.384637 -7.443536 3.685550 -0.432124 1.067018 4.772729 -2.251778 2.115493 1.444302 1.249835 2.334856 1.775440 3.771551 -4.981307 0.113979 -0.333452 3.383993 3.564569 -1.086510 -7.759895 1.880119 1.191664 4.873573 1.424559 5.295757 -3.217835 2.191436 -1.018897 -2.697220 -0.553309 -0.644077 3.097752 0.390791 0.221199 -7.108707 1.294023 +PE-benchmarks/sort-array-wave-form-2.cpp__main = 0.773556 0.392456 0.759687 -1.053914 -0.711406 0.332204 -0.009910 -0.684367 0.157004 1.484497 0.501190 -0.677007 -1.136008 1.378080 -0.610664 -1.246848 0.319967 -0.586620 -0.022764 -0.511276 -0.143637 0.487570 -0.156697 -0.476390 0.468238 -0.361640 0.014941 0.747906 0.733403 -0.280517 -0.961032 -0.101601 0.049818 1.889687 0.005609 -0.158827 0.222010 2.210911 -0.957548 1.289070 -1.964023 -1.741807 1.512954 0.216226 -0.102964 -1.263345 -0.341839 0.747865 -1.273551 -0.344388 0.614016 -0.406338 0.012194 -0.769657 0.287732 1.609781 -2.836192 1.276868 0.149575 -0.088830 -0.708896 -0.448526 0.675076 0.140218 -0.227720 -1.111228 0.524647 0.509633 -1.317592 0.442135 -0.897244 -1.685336 1.495338 0.538640 -0.860556 0.397978 0.259273 -1.349402 0.955484 -1.448531 -1.121321 -0.381730 0.623946 -0.284694 1.298630 0.538102 0.813298 -2.535848 0.234511 -2.111986 1.173506 -1.428180 1.465098 1.647293 -1.226897 0.652323 0.498030 0.546656 0.769318 -0.078215 1.793242 0.607026 0.817710 -0.126451 0.778182 0.871506 -1.042621 -0.859574 -0.818790 -1.271314 -0.276211 -0.292226 -2.277699 0.074757 -1.229576 0.469560 0.572874 -0.331701 -0.439194 1.013539 -2.619222 -1.119557 0.216087 -0.301509 1.404225 1.496169 -0.164430 0.382465 -0.169321 1.796962 -0.269683 0.007355 -0.561697 0.648480 -0.475465 -1.503494 -1.602189 0.076203 0.711959 -1.274344 -1.945224 -2.115882 -0.463100 0.319586 -0.390257 1.838055 2.818947 -0.446773 -1.530571 1.465353 -0.505687 0.523624 2.176283 0.187410 2.354025 -1.752369 0.822645 -0.392230 0.483230 0.191979 0.560659 -0.197326 -0.687935 0.516152 0.212068 -0.267654 0.525718 -0.214459 -0.205910 -0.905041 0.071218 -0.756064 -0.814796 1.892879 -0.943341 1.642250 -0.350620 2.405480 -1.459252 -1.808945 0.841620 -1.521388 -0.209307 -0.891078 -0.696777 -0.081383 1.269833 -1.667033 -0.957083 -0.628644 -0.174261 -0.260699 1.051798 0.020510 0.103445 -0.237043 -0.038181 1.716717 1.351488 -0.244729 0.470723 -1.797786 0.265884 1.155192 -0.351571 -2.091274 0.306988 -1.093068 -0.150104 0.801321 -0.227269 0.713278 -0.849307 -1.029846 0.101765 -0.388851 0.701717 -0.329697 -1.617375 0.521408 -0.647787 0.078244 0.749910 1.660295 1.678173 1.094525 0.499853 -0.408050 0.476700 -0.843047 -0.140814 0.320664 0.370441 0.704742 0.687370 1.218623 0.419808 0.238240 0.990029 0.793690 -0.320546 1.522549 0.660599 2.071459 -0.682699 0.129938 -0.032781 -0.942322 1.086127 2.395847 -1.212771 -0.177450 0.907256 0.635660 -0.129336 -1.363025 -0.334386 -0.844708 -0.663627 0.844580 0.359373 -0.525982 -0.524491 2.334126 0.245571 -2.463836 1.446998 0.040638 0.349046 0.726812 -0.576553 -0.142997 0.899422 -1.213954 0.845342 0.688170 1.305950 -1.211343 -0.206974 -0.184961 1.345281 0.388361 0.142697 -2.111363 0.385160 0.924199 1.882974 1.278408 1.294955 -0.801112 -0.556234 -0.232347 -0.783885 -0.389618 -0.175882 1.029026 -0.800181 0.216052 -1.465578 -0.542662 +PE-benchmarks/sort-array-wave-form-2.cpp___GLOBAL__sub_I_sort_array_wave_form_2.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/word-wrap.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 9.648524 0.523043 4.950438 -5.519087 1.656531 4.506085 4.463916 -9.959636 0.213431 25.531114 6.357709 -5.114217 -4.886769 8.029746 -2.036200 -8.200891 10.130555 11.625008 1.811660 -5.845191 -4.016737 1.010459 -2.483003 -11.827274 6.673439 -7.679289 4.246777 7.139118 -5.027346 8.854435 -7.212642 -1.969114 1.484087 20.548393 0.988149 2.048771 -4.701876 14.517589 -17.401236 19.275573 -17.817622 -17.593309 20.190402 4.280071 4.443106 -3.925177 -1.493652 4.893077 3.022291 -15.259674 -0.675732 -9.650356 8.714569 -12.193794 -2.349740 18.102820 -15.101349 -6.026541 2.241519 -14.078100 -18.000452 -1.206360 12.111135 5.044075 -14.824792 -13.657860 5.367802 7.404634 -3.840058 3.903784 -17.043286 -26.080900 7.387158 4.976220 -7.333083 2.293939 -3.968592 -13.904353 6.738744 5.534979 -7.472631 -8.294005 6.422230 -5.090310 2.000977 10.911816 21.915688 -26.891541 4.844826 -21.772319 17.140542 -7.439425 22.485957 14.141320 -4.537765 7.367352 8.197886 16.067174 0.300081 -0.907464 17.520142 5.847754 4.181325 -6.849703 10.604699 13.590065 -16.611606 -18.469433 -9.442759 -8.060620 5.278915 -4.735527 -15.652630 1.336467 -21.900459 1.874885 3.762595 -4.762303 -3.200061 21.302632 -28.112449 -7.186543 6.092404 -4.122551 16.583468 11.271723 4.088798 3.323325 2.817951 13.400330 -2.927881 -8.163591 -6.915014 10.794647 -11.492112 -5.593818 -3.147742 2.360134 8.673396 -20.405369 -18.977696 -23.325411 -6.287643 17.398754 -4.853303 15.027675 27.178666 -6.586036 -11.190958 4.784693 -7.868323 -3.363391 17.693224 5.545881 28.975428 -28.312706 16.976812 -4.159266 12.650203 11.122164 20.049976 -7.072894 -11.130593 11.217163 -0.499760 -2.044844 20.714668 -5.760238 3.882416 -2.930102 4.714533 2.562917 -1.015449 15.916678 -20.311432 15.117985 -11.474443 25.074092 -19.288539 -10.582313 6.136272 -19.182336 -13.052138 -10.796557 -0.399875 -4.805240 18.638890 -13.748743 -10.469436 -5.995271 -8.124657 5.891910 18.019288 -8.289381 -1.731415 -5.718274 -13.373610 17.929252 4.904820 -0.412798 -2.554131 -13.334905 0.826211 10.114345 -5.824058 -17.175348 -4.512986 -14.968077 -2.026609 -4.030053 -0.792948 14.184891 -13.026718 -5.787589 2.207556 -2.668729 0.533535 -10.292342 -13.457205 7.928988 -2.589335 -0.135366 4.006115 23.661223 15.332835 14.058449 -0.421003 -7.229451 4.878836 -13.391386 -17.821039 12.319211 1.803408 11.651599 6.571714 10.280433 -1.812131 6.080110 8.341767 -6.144084 11.374043 15.429098 4.826488 16.094425 -5.041058 4.410323 6.968571 -14.188321 11.015240 17.462505 -5.631752 -7.700130 6.417580 -2.322239 -12.228696 -4.915430 -0.512571 -3.303392 -11.424943 6.733382 12.577594 -0.541100 -14.427304 29.571473 6.003257 -31.302493 15.381985 -0.271418 3.983156 19.273359 -10.518246 10.803906 6.167642 7.883196 6.821329 5.508615 17.017475 -20.093870 2.957796 -1.664426 11.815252 12.977650 -9.118357 -31.309855 7.244384 5.547361 20.902404 8.274890 19.905986 -11.096505 12.388211 -7.525752 -8.593681 0.164970 -5.867736 11.308437 -2.341108 1.606774 -29.007522 10.163096 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.248467 0.885558 1.306295 -1.000549 -1.800318 0.937620 -1.260868 -1.956981 0.138460 2.857488 1.086416 -1.258640 -0.671592 2.063796 -1.689903 -1.489388 -0.246243 0.778628 0.175821 -1.569282 -0.030818 0.597039 -0.428655 -0.583521 0.018986 -0.975151 0.534897 0.519481 0.648689 0.603384 -1.189870 -0.356380 0.339003 2.666106 0.611828 -0.014889 -0.021143 2.538707 -1.023581 1.547999 -3.493864 -2.921433 1.707702 0.692897 0.847411 -1.758517 -0.959028 0.922166 -1.304113 -0.308444 0.528369 -1.074748 0.502725 -0.590604 0.255222 1.487338 -3.346499 1.694696 0.092818 -1.469473 -1.379847 -0.107896 1.327672 1.056252 -0.585021 -1.548770 0.621000 2.419376 -1.051860 0.690003 -1.083371 -3.148202 2.053230 0.080210 -1.700927 -0.029984 0.278587 -1.604462 1.407543 -1.680860 -1.844313 -0.545768 0.987209 -0.416384 0.775871 1.575986 2.171901 -3.703498 0.875140 -3.377725 2.135035 -1.113564 2.241705 1.671886 -1.983696 0.378443 1.389992 1.328657 2.177651 0.522442 2.311065 1.052226 0.819992 -0.164572 1.019262 1.624260 -1.183273 -1.165112 -1.256464 -2.350318 -0.104233 -0.324141 -3.474947 -0.024190 -1.700164 1.186054 -0.159045 -0.718020 0.060106 2.274087 -4.376120 -1.944654 0.461747 -0.270334 2.014727 1.570067 -0.075407 1.340762 0.048318 2.344309 -1.088465 -0.931503 -0.341467 1.001821 -1.365790 -2.481987 -3.242454 1.145070 1.310432 -2.059583 -2.445224 -3.125243 -0.782307 1.397734 -0.574133 2.297558 4.015137 -1.128493 -2.558885 1.582122 -0.595051 -0.932165 3.732912 0.510062 3.968625 -2.788276 1.210877 -0.954692 0.358067 0.543849 1.065693 -0.338184 -0.883993 1.300883 0.531357 -1.150939 1.303523 -0.918320 -0.726701 -1.590022 0.689472 -0.335164 0.106685 1.917220 -1.780400 1.921401 -1.158225 3.453974 -2.629857 -2.699593 0.630088 -3.256647 -0.923378 0.128179 -0.143566 -0.348660 2.802983 -2.513682 -1.118609 -0.408673 -1.310282 -0.171364 1.629819 0.139736 0.292573 0.202699 -0.635108 2.901867 2.091907 0.396056 0.242494 -1.889983 0.199211 1.896607 -0.280582 -3.402878 -0.350791 -2.484081 0.014646 -0.055610 -0.345531 1.557911 -1.295072 -0.831349 -0.738599 -1.203047 1.415424 -0.339253 -0.838827 1.168466 -1.583705 1.022852 0.372813 2.474332 2.393310 2.481479 1.286669 -0.402590 0.862095 -2.160079 0.843892 1.268530 1.794025 0.377537 0.936525 2.198055 0.291699 0.757688 1.400741 0.567573 0.630009 2.357490 -0.140334 3.146853 -2.374826 1.408663 -0.707031 -0.803892 1.620094 4.084679 -1.396341 -0.349731 0.641127 0.194445 -0.344727 -1.793292 -0.060478 -0.709992 -1.078553 0.873922 1.994290 -0.112610 -1.514299 3.243830 0.951298 -3.293486 2.648408 -0.110534 0.143010 1.575491 -1.285590 -0.206959 0.815461 -0.551689 0.878873 1.656088 2.048293 -2.612111 -0.993120 -0.401191 2.341324 1.255935 0.259913 -3.497977 1.391489 1.939717 2.567724 0.767861 1.980814 -2.230925 -0.911430 0.104623 -1.263644 -0.705262 0.177453 1.355256 -0.908336 0.696491 -1.655065 -1.017722 +PE-benchmarks/word-wrap.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +PE-benchmarks/word-wrap.cpp___GLOBAL__sub_I_word_wrap.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.425743 0.095052 1.314232 -1.755512 -0.804617 0.956568 0.508132 -2.551882 0.149039 4.072537 2.022359 -1.948690 -1.200069 2.765037 -0.772066 -1.601349 1.795704 2.813122 -0.014350 -0.755382 -0.792807 0.460229 -0.853974 -1.702060 1.113280 -0.918627 0.976893 1.588199 0.547699 0.889982 -2.241541 -0.497745 0.225951 4.687430 0.538364 0.422770 -0.652160 4.008861 -2.921142 4.338447 -4.148280 -2.797941 3.843623 0.836719 0.761198 -2.212108 -1.595641 1.868240 -0.380777 -3.447061 0.494131 -1.934398 1.518723 -2.353200 -0.126742 3.947816 -3.728094 -0.452803 1.280686 -2.230199 -3.199426 -0.251393 2.650442 0.983531 -3.653494 -3.069974 1.150657 1.455891 -1.307707 0.425382 -3.525556 -6.133936 2.420813 0.577188 -2.363379 0.507153 -0.614776 -3.552485 1.937792 0.959863 -2.334701 -1.249181 1.183625 -1.750986 1.429965 1.524306 4.024933 -6.235978 0.958183 -5.552649 3.036092 -2.421226 4.538501 3.617144 -2.407658 1.266135 1.698412 3.268209 0.854915 0.964265 3.955997 1.396191 0.571169 -1.453266 3.068167 2.370428 -3.057728 -3.682710 -2.278474 -2.994872 0.912725 -0.867096 -4.627653 0.462108 -4.488449 0.903657 0.051531 -0.263911 -0.399213 4.283205 -5.504159 -0.965142 1.296474 -0.895172 3.414428 4.017783 0.362682 0.938887 -0.109952 3.265302 -0.945205 -1.191199 -1.438509 2.300113 -1.874125 -2.022250 -1.776705 0.611954 2.210148 -3.776671 -4.474467 -5.388745 -1.439999 2.574311 -1.299757 2.962002 6.405077 -1.809572 -2.778157 1.920155 -1.089905 -0.283869 4.432208 0.907245 7.303434 -5.913427 3.227978 -1.121920 1.736020 1.510482 2.641644 -1.348267 -2.478906 2.005994 -0.492644 -2.713373 5.960127 -0.845067 0.207898 -0.278609 1.264199 0.136454 -1.612546 4.263898 -3.935530 3.531084 -1.986320 5.865625 -3.871049 -2.650376 1.702058 -2.532565 -1.737943 -2.027483 -0.534982 -0.867718 4.541899 -2.859574 -2.248037 -0.979168 -1.538876 0.595070 3.759071 -0.231164 -0.320108 -0.784807 -2.104466 2.884640 1.958759 -0.304764 0.065978 -3.403059 0.484726 2.570622 -1.186666 -3.839552 -0.679793 -4.073432 -0.601844 -1.049977 -0.355891 2.965429 -3.019758 -1.771841 0.153239 -0.681959 0.867600 -1.574590 -3.871827 1.787150 -1.403013 0.263341 1.367087 5.148095 3.842001 3.738320 0.712535 -1.299838 0.972004 -2.439902 -3.480397 2.064958 0.339493 2.781534 1.664276 2.211513 0.476652 1.460758 1.598373 -1.433006 2.499853 4.071161 1.782517 4.388171 -0.855896 0.791598 1.171493 -2.835088 2.771252 4.976092 -1.331790 -1.158825 1.343952 0.274727 -2.744807 -2.669358 -0.270909 -0.686752 -2.780449 1.647525 2.016086 0.138024 -2.880984 6.493641 0.691219 -6.910037 3.274923 -0.499393 1.147729 4.102274 -1.682911 2.278309 1.345870 0.787406 1.898480 1.742494 3.607107 -4.177074 -0.446906 -0.389703 2.847704 2.678995 -1.276495 -6.984795 2.404929 1.148237 4.795621 1.817369 3.374486 -2.751135 1.996470 -0.839654 -2.256258 -0.116183 -1.444045 2.803510 -0.652259 -0.552551 -6.437407 0.955195 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.181759 0.208490 0.090014 -0.179250 -0.400344 0.164174 -0.376477 -0.263293 -0.078423 -0.202862 0.153164 -0.218278 -0.410269 0.250034 -0.310966 -0.454828 -0.187272 -0.145365 -0.035870 -0.240240 -0.025902 0.080439 -0.037535 0.007140 -0.026018 -0.073244 -0.112395 0.069478 0.591027 -0.248208 -0.224900 0.013757 0.107721 0.370664 0.156966 -0.064382 0.208663 0.511498 0.418219 -0.094557 -0.468597 -0.302318 0.166800 0.045222 -0.070488 -0.463030 -0.180655 0.167903 -0.801818 0.402981 0.169350 -0.139935 -0.167858 0.045359 0.057454 0.368678 -0.816515 0.900604 -0.007750 0.105793 0.115243 -0.064298 -0.063721 -0.120719 0.549399 -0.195323 -0.003700 0.400858 -0.405325 0.134494 -0.066322 -0.167775 0.779318 0.027348 -0.259960 -0.007631 0.040846 -0.017808 0.111950 -0.652584 -0.321383 -0.006933 0.230830 0.413569 0.361540 0.155274 -0.153336 -0.488623 -0.164507 -0.523767 0.166704 -0.270119 0.239738 0.220363 -0.532465 0.036196 0.137594 -0.516933 0.290877 0.230595 0.385160 -0.097396 0.033760 0.081716 -0.051413 -0.057822 0.137133 0.127597 0.073293 -0.314444 -0.281812 0.231803 -0.732610 -0.032557 -0.224869 0.527429 -0.030896 0.056779 0.082719 -0.228725 -0.343196 -0.476678 -0.099839 -0.031638 0.458959 0.284356 -0.028507 0.228944 -0.145290 0.435967 -0.063244 -0.009085 -0.145124 0.052058 0.308455 -0.993470 -0.899821 0.098054 0.211652 -0.133648 -0.403610 -0.127738 -0.076124 -0.214305 -0.090140 0.251169 0.539292 -0.121966 -0.356533 0.484184 -0.066195 0.299554 0.728379 0.036006 0.517413 -0.186159 0.028660 0.051806 -0.133753 -0.131053 -0.650586 -0.085924 -0.088271 -0.018009 0.287402 -0.030072 -0.263368 -0.104758 -0.278930 -0.084810 -0.154243 -0.142135 -0.193401 0.257395 0.403446 0.323280 0.167231 0.526887 -0.261442 -0.715537 0.138285 0.045666 0.074383 0.307446 -0.065010 0.022036 0.116247 -0.484241 -0.204458 0.111453 0.110175 -0.245843 0.146867 0.724493 0.051552 0.149677 0.128699 0.173681 0.442684 -0.089110 0.236828 -0.357081 0.043561 0.258716 0.026779 -0.611307 0.166576 -0.171759 0.030756 0.438227 -0.070122 0.055453 0.115291 -0.148853 -0.125106 -0.203738 0.523411 0.188562 0.310486 0.118552 -0.270361 -0.118786 0.071021 0.242943 0.380136 0.205851 0.173913 0.070912 0.166454 -0.125811 0.676875 -0.108232 0.272476 0.155827 0.129301 0.150605 0.124727 0.046359 0.205560 0.310638 -0.149917 0.294705 0.160910 0.572143 -0.471056 0.116672 -0.242810 -0.092775 0.295647 0.683616 -0.600326 0.011941 0.115009 0.220917 0.381367 -0.605152 -0.085247 -0.136343 -0.270886 0.316112 0.075886 0.011007 -0.093044 0.378832 0.048695 -0.250599 0.546615 0.108771 -0.059171 -0.226539 -0.064919 -0.390261 0.245577 -0.480321 -0.119242 0.290025 0.316299 -0.211062 -0.255554 -0.110044 0.374765 -0.293993 0.248185 -0.004962 -0.051620 0.482486 0.355161 0.282863 -0.175667 -0.159694 -0.686575 0.082765 -0.042465 -0.145351 0.104369 0.064453 -0.294629 0.064632 0.347923 -0.434336 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp___GLOBAL__sub_I_count_number_binary_strings_without_consecutive_1s.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/binary-insertion-sort.cpp__binarySearch(int*, int, int, int) = 2.303176 0.963438 2.276640 -2.613543 -0.557200 0.865429 1.452279 -2.519047 0.779881 6.686181 1.628994 -1.244942 -1.424335 3.364564 -1.665999 -1.890372 2.043929 -0.073835 0.250651 -1.530922 0.201598 1.218558 -0.354714 -2.495669 1.255758 -1.525594 1.369936 1.879218 -1.017358 0.890964 -2.080062 -0.623255 0.506471 4.817582 -0.069433 0.739497 -1.349407 3.802798 -4.742906 4.935982 -6.627971 -5.181901 4.711703 0.894031 0.937367 -4.397547 -0.667583 1.229139 0.837543 -3.265005 0.002249 -1.975142 1.594965 -2.986780 -0.234037 3.947631 -4.951497 -0.340166 0.396426 -2.727585 -3.569908 -0.620665 3.554040 1.656075 -3.407096 -3.069640 1.561183 1.231406 -2.332418 1.694825 -3.039597 -5.610992 1.704851 0.938304 -2.111630 0.569833 -0.529889 -4.725051 2.372887 -1.643777 -1.720766 -1.696613 1.669897 -1.147632 0.620553 1.973177 4.704299 -6.720664 1.002662 -4.961489 4.042485 -2.434623 4.694026 3.154261 -1.540568 1.665057 1.489058 3.975298 1.814916 -0.382837 4.140290 2.907163 2.972091 -1.674840 3.149089 3.651622 -3.635048 -3.984076 -2.545140 -3.054807 0.951247 -1.522676 -5.545429 -0.017935 -4.067993 -0.858383 1.017855 -2.161436 -0.519736 5.550013 -8.080143 -2.124423 1.631304 -0.689479 2.775529 3.177400 0.541229 0.917951 0.619220 3.639928 -0.824672 -0.721942 -0.944593 2.230456 -3.955077 -2.643252 -1.164826 0.304537 1.339203 -4.424163 -4.524618 -6.923871 -1.468320 3.483870 -0.848463 3.352683 6.620608 -1.171442 -4.563948 1.618486 -0.464811 -2.031918 4.397063 0.757995 6.739334 -6.232816 3.573496 -1.344095 2.794979 2.381633 6.459765 -1.355745 -2.535544 2.272746 -1.070778 -3.812273 3.442481 -1.017985 0.924348 -1.652525 0.746181 -1.214032 -0.590762 3.923613 -5.221139 4.745153 -3.864898 5.718027 -5.076212 -3.154307 1.334904 -6.626596 -2.280162 -2.721212 -0.751069 -0.450942 5.105643 -3.825973 -2.270355 -2.212219 -2.311942 1.081644 4.075824 -5.169582 -0.091753 -1.453522 -2.299684 5.254374 1.683850 -0.529371 0.218681 -3.069850 0.454440 3.483726 0.204035 -5.787177 -0.807282 -4.357594 -0.546690 -0.857306 -0.458771 3.226197 -2.656860 -1.927181 0.761149 -1.554433 -0.184328 -2.703849 -4.463148 1.502080 -1.826324 1.163336 0.330742 5.427066 3.595103 3.256768 0.110213 -2.109532 1.387502 -4.176749 -3.418420 2.517398 1.222287 0.357460 1.550181 3.682119 0.155470 1.224012 3.123074 0.540717 0.994843 4.065090 0.629413 3.917852 -2.144691 1.189336 0.963361 -2.829831 2.484258 5.348696 -0.046434 -1.537292 1.660684 0.076050 -2.479805 -1.596132 -0.809209 -1.368055 -2.293551 2.510425 3.014502 -0.971939 -2.528094 6.851379 1.728909 -7.319872 3.623144 -0.519967 0.835353 3.938645 -2.855687 1.359183 2.092418 0.467323 2.042564 1.131153 3.756486 -4.136361 -1.295182 -0.384029 3.397265 3.967377 -1.378807 -8.338078 2.106569 1.773715 5.586510 1.796536 6.067326 -2.837110 2.187022 -1.535149 -1.651423 -0.586776 -0.939242 2.917724 -1.011460 -0.452328 -6.890275 1.746394 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 1.637988 0.633666 1.618978 -2.261401 -1.008027 0.592482 1.234732 -1.985518 0.168994 4.730149 1.604441 -1.429437 -1.304897 3.170618 -0.930872 -1.686080 1.409155 0.253705 -0.126575 -0.733239 -0.128557 1.134655 -0.527177 -1.733020 1.080300 -0.744574 0.679307 1.752431 -0.260217 0.658635 -1.906695 -0.575314 0.329734 4.190119 0.112592 0.135402 -0.801844 3.933492 -4.384481 4.121078 -4.724590 -3.805074 3.962164 0.589232 0.442528 -3.463770 -1.442348 1.567858 0.110487 -3.026349 0.614705 -1.260571 1.155075 -2.315714 0.145885 3.477556 -4.530637 0.054335 0.915152 -1.802596 -2.681841 -0.541881 2.440269 0.955415 -2.990921 -2.699702 1.029952 0.591845 -1.370692 0.735734 -2.677000 -5.023302 1.937839 0.894155 -1.819752 0.665897 -0.235313 -4.078156 2.299802 -0.882253 -2.044857 -1.211011 0.931374 -1.371369 1.407030 1.319840 3.454785 -5.740007 0.869195 -4.704939 2.926571 -2.588319 3.554979 3.341412 -1.831440 1.356915 1.350553 3.139037 1.587504 -0.137876 3.557998 2.153355 2.032547 -0.946425 2.689272 2.984748 -3.256481 -3.252348 -2.570752 -2.892449 0.891999 -1.457359 -4.791886 0.405722 -2.982669 -0.714429 0.756908 -1.462675 -0.501045 4.405621 -5.926011 -0.964442 1.422017 -0.697361 2.268981 3.392574 0.069013 0.568322 -0.208736 3.129053 -0.757416 -0.030530 -0.857930 1.988917 -2.931891 -2.350705 -1.245819 0.509672 1.333955 -3.549513 -3.901393 -5.853042 -0.840611 2.252003 -1.102963 2.662736 5.975008 -1.481038 -3.537203 2.088557 0.077761 -0.880429 3.555677 0.579070 5.943985 -4.754050 2.369266 -1.133588 1.366524 1.377403 4.142185 -0.787960 -2.116301 1.910415 -0.848792 -3.484294 3.998879 -0.704735 0.174334 -0.936923 0.970308 -1.053344 -1.074270 3.977228 -3.756535 3.574018 -2.386398 4.840542 -3.532029 -2.438554 1.472547 -4.564424 -1.605624 -2.857007 -1.091258 -0.224089 3.886824 -3.010844 -1.868991 -1.819663 -1.480242 0.152795 3.187884 -3.360480 -0.028933 -0.787363 -1.166584 3.306291 2.002684 -0.351455 0.377039 -3.041211 0.657123 2.659552 -0.530360 -4.879016 -0.472057 -3.453685 -0.482131 -0.410288 -0.440369 2.535896 -2.449943 -1.747796 0.779980 -1.160722 0.119494 -1.641282 -3.984686 1.301905 -1.511987 1.126230 1.034522 4.516149 3.370838 3.140699 0.681170 -1.056086 1.006062 -2.527845 -3.132940 1.805590 0.479722 1.061095 1.673139 2.715950 0.622221 1.068876 2.304261 0.339766 1.038455 3.644079 1.273457 3.884944 -0.545194 0.397601 0.900854 -2.130707 2.284771 4.671427 -0.263451 -0.964846 1.536616 0.096866 -2.271919 -1.644610 -0.366119 -1.153384 -2.149042 2.153352 1.978928 -0.730848 -1.911238 5.725814 0.688051 -6.290353 2.724965 -0.228628 1.216062 3.314895 -1.711970 1.660730 1.612779 0.012711 2.273868 1.508789 3.181759 -3.552369 -0.808491 -0.214036 2.589234 3.301788 -0.571448 -7.110592 1.904663 1.242780 4.438762 1.327302 4.493077 -2.453225 1.493628 -0.773226 -1.429229 -0.337179 -1.065127 2.529816 -0.916714 -0.304830 -5.782205 0.755974 +PE-benchmarks/binary-insertion-sort.cpp__main = 0.791409 0.381528 0.713055 -1.028783 -0.491628 0.255817 0.062933 -0.692774 0.145743 1.508561 0.477389 -0.751819 -1.099638 1.305061 -0.587419 -1.206552 0.388873 -0.525094 -0.113219 -0.527465 -0.146225 0.358936 -0.107953 -0.709695 0.488879 -0.359537 0.143471 0.783269 0.658792 -0.243741 -0.917324 -0.059010 0.191128 1.927250 -0.015080 -0.111329 0.127896 2.044348 -0.956955 1.297608 -1.988338 -1.715269 1.694837 0.203142 -0.122309 -1.259821 -0.284229 0.759530 -1.229957 -0.439387 0.381630 -0.420493 0.011230 -1.004486 0.085514 1.741691 -2.744253 1.217141 0.166184 -0.158151 -0.899772 -0.451105 0.824480 0.151934 -0.266209 -1.169522 0.504907 0.409115 -1.391161 0.522310 -1.036754 -1.685071 1.479430 0.485695 -0.777378 0.412369 0.046251 -1.295100 0.885979 -1.299264 -0.926226 -0.458705 0.731540 -0.222461 1.188094 0.580198 0.815552 -2.535171 0.135485 -2.044119 1.200050 -1.396074 1.530338 1.563831 -1.195491 0.723210 0.342538 0.529797 0.573703 -0.039046 1.725297 0.536934 0.882944 -0.286708 0.844170 0.871538 -1.044739 -1.000936 -0.718408 -1.194027 -0.241619 -0.298268 -2.267652 0.102229 -1.438877 0.430234 0.584842 -0.359805 -0.457355 1.014433 -2.624106 -1.136161 0.232407 -0.309599 1.453864 1.450984 -0.102798 0.369472 -0.101996 1.682610 -0.057453 -0.120352 -0.533350 0.675467 -0.486377 -1.527348 -1.421429 0.054990 0.717161 -1.289990 -1.975088 -2.114451 -0.516836 0.368482 -0.392460 1.793285 2.689563 -0.294932 -1.552143 1.301152 -0.514428 0.537436 2.155629 0.208323 2.473814 -1.936489 1.018269 -0.248446 0.664000 0.387504 0.609466 -0.420029 -0.838583 0.538727 0.110419 -0.272604 0.514441 -0.150612 0.013383 -0.782480 0.035192 -0.728633 -0.849844 1.890625 -0.971019 1.761005 -0.477334 2.417638 -1.586021 -1.772160 0.847934 -1.518140 -0.315206 -0.846835 -0.667994 -0.171034 1.361230 -1.650696 -1.008856 -0.595409 -0.151236 -0.123022 1.282792 -0.055370 0.019718 -0.386165 -0.223229 1.686783 1.117136 -0.459887 0.484348 -1.774025 0.216308 1.277845 -0.214793 -2.092198 0.242627 -1.109038 -0.190689 0.736982 -0.195911 0.772113 -0.861482 -0.992325 0.248514 -0.346451 0.597078 -0.533164 -1.588195 0.543877 -0.658429 -0.021838 0.691576 1.840436 1.629938 0.963492 0.264405 -0.501433 0.457605 -0.992098 -0.335813 0.329742 0.260632 0.728981 0.688609 1.177139 0.292421 0.244818 1.020559 0.681503 -0.399889 1.528189 0.718052 1.910111 -0.714389 0.156679 0.084184 -1.067700 1.097417 2.310355 -1.207873 -0.407611 0.907623 0.566470 -0.176767 -1.348888 -0.496228 -0.787640 -0.733729 0.913947 0.365597 -0.552838 -0.531131 2.434359 0.312543 -2.497682 1.489897 0.059633 0.314861 0.743447 -0.769387 -0.063644 0.977706 -0.991466 0.658915 0.565861 1.308999 -1.244247 -0.149360 -0.171997 1.390580 0.408002 -0.055229 -2.141507 0.379868 0.894361 1.967935 1.297237 1.327934 -0.774996 -0.326876 -0.386180 -0.644089 -0.280668 -0.275882 1.043573 -0.798348 0.113552 -1.587988 -0.324128 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__kthSmallest(int*, int, int, int) = 1.923293 1.210736 2.467536 -3.020995 -0.731086 0.743692 1.734297 -2.670992 0.932076 6.220008 1.560916 -1.555309 -1.757923 2.878146 -2.019338 -1.617978 2.251099 0.776890 0.114152 -1.792975 -0.059388 0.888351 -0.396639 -1.853624 1.027803 -1.466001 1.712311 1.604037 -0.351828 0.107798 -2.054790 -0.534240 0.595844 4.893584 0.034127 0.651386 -1.856892 3.324690 -2.335405 4.680566 -7.243342 -3.395398 3.775573 0.996036 1.224565 -6.227604 -0.960532 1.502245 1.316489 -3.262770 -0.500722 -2.251066 1.592908 -3.054315 -0.648764 4.295707 -4.032763 -0.433041 0.791465 -3.039002 -3.317674 0.114923 4.414688 1.797052 -3.513979 -3.188826 1.425164 1.191452 -2.703036 1.971369 -3.251344 -5.956160 1.069076 0.911841 -2.901918 0.531171 -1.000709 -4.603707 1.988397 -1.350210 -1.344475 -1.794071 1.987793 -1.503167 0.372272 1.211002 4.309492 -6.496627 0.768506 -4.892494 3.376653 -2.483280 4.917134 2.847183 -0.576589 1.572529 1.096007 2.063147 1.528394 0.243676 3.750745 2.542729 3.051603 -2.073814 3.303976 2.844165 -2.933845 -4.016122 -1.766297 -3.095815 0.572612 -0.810138 -5.056881 -0.008932 -4.634440 -0.073290 0.734772 -1.377883 -0.354466 5.359734 -6.852883 -2.619010 1.809481 -0.909823 2.754922 4.146466 0.910799 1.041303 0.495273 3.341622 -0.711723 -0.699460 -1.033557 2.136166 -3.006937 -2.615806 -1.301429 -0.078355 1.448064 -3.600313 -4.572337 -5.921355 -2.360367 2.442388 -0.981379 3.149863 6.260146 -1.117291 -4.671194 1.197571 -0.624501 -1.776647 4.205063 0.893016 7.446957 -6.710459 3.917909 -1.778995 3.064128 2.576635 6.942547 -1.888074 -2.568563 2.325627 -1.501367 -4.632586 3.535856 -1.087103 1.189718 0.324878 0.648352 -0.423160 -1.317222 3.389017 -4.974811 5.366393 -3.803221 5.830962 -5.201795 -3.365684 1.081977 -4.845342 -1.687994 -1.328513 -0.022220 -0.617819 5.483144 -3.239446 -2.398467 -1.301198 -2.771162 1.411621 4.388461 -4.200337 -0.389802 -1.597738 -2.795693 5.555061 1.354016 -0.905574 0.385595 -2.881787 0.763139 3.075734 0.805389 -5.074524 -1.004950 -4.538387 -0.817763 -1.224089 -0.389126 3.281161 -2.437014 -1.742935 0.706220 -1.794351 -0.043001 -2.940692 -4.632243 1.677179 -2.482099 0.752966 -0.298299 5.599376 3.701492 3.220164 -0.230729 -2.509035 1.199176 -4.466045 -3.348936 2.132814 1.244409 0.181097 1.473896 2.890214 -0.034464 1.149979 3.064941 -0.582795 1.470963 3.941876 0.172601 3.532119 -2.759842 1.218689 1.093966 -3.339543 2.257136 5.630528 0.422330 -1.817907 1.698171 0.466108 -2.638148 -3.260657 -0.932959 -0.907424 -2.350030 2.984173 3.516679 -0.958043 -2.659396 6.905453 1.798343 -7.126284 3.814853 -0.809417 0.400388 3.800905 -2.570581 1.745217 2.121352 1.021835 0.800954 1.050701 3.614433 -4.515351 -2.049690 -0.384197 3.132953 3.089599 -1.754699 -9.155695 1.153132 1.534138 6.012133 1.669832 6.359996 -2.759953 2.383821 -0.658360 -1.300877 -0.913356 -1.100264 2.818311 -1.027220 -1.246517 -6.700800 2.468029 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 0.950227 0.511929 0.523298 -1.120540 -0.927986 0.418769 -0.170509 -1.456496 -0.095194 1.764495 1.226869 -1.241438 -0.201234 1.832926 -0.774479 -1.092188 0.454502 0.676585 -0.182029 -0.525240 0.093722 0.508213 -0.349458 -0.869128 0.311033 -0.253663 0.356144 0.567449 0.460039 0.281233 -1.348606 -0.052252 0.330950 2.194302 0.350544 -0.022172 -0.338611 1.909679 -1.456330 1.519261 -2.545808 -1.556747 1.734023 0.489149 0.386845 -2.061916 -1.382124 0.826435 -0.051786 -1.164321 0.351317 -0.833531 0.373415 -0.854858 0.015120 1.839583 -2.240540 0.604756 0.649876 -0.772167 -1.144370 0.027309 1.337403 0.558016 -1.203792 -1.474273 0.562234 1.008129 -0.466145 0.412247 -1.526995 -3.068380 1.611674 0.322681 -1.072417 0.138952 -0.383505 -2.245681 1.209798 -0.566000 -1.169272 -0.385620 0.823355 -0.082567 0.547226 0.867329 1.762930 -3.033031 0.268657 -2.764937 1.445378 -1.326210 1.928585 1.583933 -1.578561 0.257846 0.718075 1.358759 1.589288 0.792698 1.917763 1.057621 0.618869 -0.817854 1.194496 1.399403 -1.094814 -1.369373 -0.893074 -1.711384 0.129493 -0.409264 -3.309335 0.487652 -1.830480 -0.082502 -0.268241 -0.619473 0.342178 2.165452 -2.702721 -1.214318 0.513587 -0.134465 1.378598 1.995776 0.028347 0.707920 -0.476274 1.596607 -0.148874 -0.315081 -0.397996 0.957897 -1.639992 -2.259256 -1.552833 0.654376 1.065413 -1.959069 -2.026593 -2.822669 -0.398852 0.729501 -0.737212 1.156180 2.902584 -0.920457 -1.925461 1.142071 0.612668 -0.651010 2.564814 0.132303 3.730000 -2.740444 1.496686 -0.196641 0.612164 0.429808 0.608718 -0.615023 -1.035192 0.837442 -0.305374 -2.548663 2.400785 -0.326666 -0.087909 -0.060078 0.568330 -0.161905 -0.645442 2.022448 -1.232902 1.879899 -1.155309 2.512979 -2.072648 -1.600463 0.901714 -1.871110 -0.782705 -0.625662 -0.265125 -0.318455 2.417907 -1.632655 -0.848943 -0.263238 -0.911167 -0.059986 1.614314 -0.463955 -0.011219 -0.199865 -0.644008 1.105120 1.324799 -0.115708 0.575735 -1.558160 0.370957 1.725450 -0.209114 -2.737309 -0.343160 -2.319189 -0.115050 -0.700559 -0.380998 1.366931 -1.230027 -0.988974 0.045877 -0.612335 0.905107 -0.612774 -1.067951 0.924015 -1.437252 0.708351 0.321989 2.485700 1.844302 1.944728 0.547088 -0.807449 0.906198 -1.686254 -0.844394 0.964480 0.575884 0.680796 0.844585 1.492667 0.194450 0.579908 1.066062 -0.147314 0.823788 2.113069 0.700155 2.327538 -0.663023 0.603419 0.051733 -1.254013 1.499016 3.139592 -0.312654 -0.691833 0.452516 0.074921 -1.044260 -1.491456 -0.251268 -0.243349 -1.695422 0.910272 0.945882 -0.028461 -1.233405 2.986735 0.598512 -3.065951 1.795423 -0.229065 0.370727 1.669593 -0.952665 0.711597 0.769514 -0.023076 0.774018 1.030167 1.870269 -1.900910 -1.006344 -0.251427 1.611620 1.291234 -0.365075 -3.079864 1.812551 1.303617 2.394265 0.679458 1.593247 -1.567975 0.404378 -0.240303 -0.504692 -0.271661 -0.534544 1.272314 -0.725490 -0.304315 -2.305144 -0.137189 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__partition(int*, int, int) = 1.779480 0.540174 1.680705 -1.711035 -1.282351 0.711392 0.526170 -2.127316 0.280140 5.028595 1.548869 -1.693821 -0.534603 3.391150 -1.168584 -1.501883 0.991468 0.808192 -0.014107 -0.744278 -0.215909 1.186676 -0.600893 -1.543912 1.047226 -0.805975 0.705338 1.416923 -0.662944 0.891316 -1.751537 -0.571467 0.352273 4.141550 0.163241 0.164558 -0.522079 3.920100 -4.093765 4.229988 -4.527174 -3.943461 3.742181 0.685349 0.799236 -2.249836 -1.353219 1.638066 0.228349 -2.957190 0.595704 -1.195300 1.018018 -2.114366 0.228326 2.996640 -4.468786 0.123072 0.808639 -2.046146 -2.958918 -0.396512 2.236841 1.182707 -3.128206 -2.673782 0.952339 1.437214 -1.133895 0.674448 -2.365779 -5.157437 2.302206 0.584721 -1.973030 0.627762 -0.044851 -3.536227 2.421069 -0.965685 -2.239675 -1.160722 0.988346 -1.722281 1.244090 1.758292 3.882686 -5.763848 1.576973 -4.780661 3.268085 -2.342807 3.518885 3.392151 -2.102706 1.288819 1.605140 3.799478 2.013806 0.384559 3.599824 2.112274 1.507401 -0.724035 2.333432 3.121320 -3.245707 -3.151529 -2.698120 -3.076091 1.006892 -1.220799 -4.595720 0.381831 -2.748888 0.352979 0.614961 -1.205599 -0.278437 4.599979 -6.417021 -1.092025 1.403478 -0.598741 2.352434 3.025127 -0.018711 0.767615 -0.262864 3.162655 -1.045399 -0.677079 -0.627722 1.979127 -3.321572 -1.898060 -1.699407 0.807156 1.388154 -3.627968 -3.743508 -6.014980 -0.769627 2.875648 -1.213059 3.265846 6.140191 -1.641525 -3.324826 2.095020 -0.032315 -1.280840 3.832605 0.648206 5.957829 -4.717453 2.151945 -1.238347 1.238227 1.431599 3.756757 -0.548004 -2.012173 2.052984 -0.412603 -3.110253 4.741820 -0.680371 -0.046990 -1.331588 1.211621 -0.680309 -0.653344 3.882086 -3.750928 3.224006 -2.452530 5.179291 -3.526382 -2.403267 1.437048 -4.818226 -1.740907 -2.532409 -0.878216 -0.388838 4.129039 -3.192669 -1.730806 -1.309520 -1.931026 0.089256 3.006720 -2.428452 0.146525 -0.594578 -1.386822 3.834371 2.069038 -0.052434 0.090398 -3.152483 0.420238 2.501673 -0.954450 -4.620217 -0.617103 -3.588525 -0.361002 -0.637865 -0.496244 2.467347 -2.881755 -1.558558 0.313712 -1.166735 0.393455 -1.549885 -3.456285 1.346062 -1.525780 1.564152 1.120832 4.354139 3.539641 3.436188 1.026614 -0.782746 0.835808 -2.633185 -2.586715 2.178732 0.858743 1.243899 1.675422 3.029248 0.593974 1.161974 2.004721 0.056953 1.330817 3.764962 0.884505 4.192263 -1.257430 0.851596 0.589015 -1.751826 2.511811 4.803646 -1.090529 -0.922582 1.352019 -0.077198 -2.295473 -1.207073 -0.190444 -1.078897 -1.963933 1.458796 2.094880 -0.419639 -2.015911 5.552940 0.814737 -6.191373 2.867013 -0.286302 1.150800 3.458019 -1.648014 1.675484 1.427208 0.200468 2.193116 1.765322 3.243847 -3.840099 -0.727874 -0.280056 2.794291 3.258073 -0.216480 -6.793942 2.224951 1.501167 4.073980 0.951627 4.104601 -2.794620 1.163741 -0.622958 -1.740791 -0.511092 -0.751772 2.389862 -0.691557 0.279826 -5.528754 0.226893 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.528132 0.311904 0.357379 -0.742027 -0.855229 0.350004 -0.526080 -0.557281 0.127688 -0.076256 0.539932 -0.675272 -0.544922 0.947860 -0.570639 -0.798676 0.055384 -0.338117 -0.027597 -0.185373 -0.068040 0.187869 -0.191953 0.032033 -0.063660 -0.024463 -0.084579 0.258092 1.171676 -0.512705 -1.053051 0.032784 0.004676 1.093165 0.307346 -0.491521 0.472547 1.438056 0.292179 0.335041 -1.007343 -0.291585 0.371500 0.168287 -0.219347 -1.131675 -0.752039 0.490491 -1.188608 0.329417 0.718809 -0.367193 -0.131393 -0.011013 0.262680 1.053897 -1.734290 1.370680 0.224891 0.549928 0.251177 -0.254646 0.292784 0.073069 0.291346 -0.576681 0.460312 0.623509 -0.829812 0.154059 -0.559596 -1.149789 1.444480 0.302836 -0.802430 -0.009797 0.235076 -0.958883 0.532786 -1.098999 -0.912041 0.090259 0.285332 0.118148 1.155590 -0.105373 0.037413 -1.420045 -0.033750 -1.527566 0.331528 -1.089710 0.722193 0.983137 -1.195752 -0.043266 0.210859 -0.235574 0.802655 0.438282 1.060033 0.273180 0.129011 -0.261447 0.441332 0.183699 0.010672 -0.029419 -0.090570 -0.891921 -0.644424 0.270277 -1.879303 0.133301 -0.724052 0.709924 -0.084102 0.140479 -0.113302 0.221058 -0.739591 -1.000396 -0.139879 -0.176615 0.946439 1.366771 -0.264477 0.504863 -0.458108 1.181461 -0.052593 0.076487 -0.457701 0.173173 -0.027006 -1.693163 -1.821050 0.193273 0.747418 -0.518613 -1.303457 -0.873284 -0.249747 -0.557622 -0.268012 1.064031 1.548872 -0.297063 -0.851048 1.108050 0.046263 0.535267 1.804017 -0.068369 1.703951 -0.928132 0.501471 -0.191405 0.017313 -0.596015 -0.956669 -0.166501 -0.143749 0.037532 0.198435 -0.543951 0.516331 0.018173 -0.440047 0.036151 -0.127574 -0.262246 -0.935431 1.269717 0.275127 0.780542 0.385990 1.550665 -0.686845 -1.404088 0.602631 0.259379 0.338179 0.076746 -0.342631 0.110076 0.817989 -0.815470 -0.558255 0.125353 0.082979 -0.369499 0.419345 1.474823 0.064102 0.125846 0.230409 0.545623 1.268226 -0.121641 0.701806 -1.099139 0.255882 0.770108 -0.392113 -1.149040 0.309865 -0.739576 -0.002024 0.435990 -0.174920 0.261323 -0.533741 -0.892962 -0.206561 -0.198844 1.069886 0.287541 -0.733335 0.428910 -0.753033 -0.101353 0.402865 0.787185 1.011425 0.780038 0.674131 -0.410865 0.326911 -0.238024 0.590138 -0.154021 0.408528 0.466747 0.330796 0.623568 0.220010 0.028387 0.361956 0.420691 -0.155115 0.789954 0.593317 1.377938 -0.385357 0.162101 -0.388388 -0.734395 0.811055 2.001039 -0.975466 0.039309 0.378047 0.702082 0.211893 -1.635974 -0.204656 -0.382411 -0.585554 0.387560 -0.072810 -0.109307 -0.341248 1.227966 0.095404 -1.141209 0.860755 0.031053 0.008287 0.276522 -0.175095 -0.310883 0.366250 -1.111160 0.439911 0.570582 0.774968 -0.403227 -0.554293 -0.182709 0.716920 -0.489346 0.290499 -0.677016 0.408439 0.933655 1.131241 1.006943 0.172306 -0.535049 -0.843288 0.179646 -0.403562 -0.302235 -0.062783 0.651630 -0.908234 0.075007 -0.108556 -0.842246 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/tarjan-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tarjan-algorithm.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCCUtil(int, int*, int*, std::stack > >*, bool*) = 4.395779 2.127566 5.989714 -3.971772 -7.323666 3.242394 -3.466830 -6.938310 1.073865 12.765371 4.562439 -5.451547 -0.733906 10.256841 -5.310000 -5.059659 -0.466358 2.998600 0.656942 -4.729725 -0.222649 3.340198 -1.943278 -2.373276 1.038541 -3.784417 1.911197 3.246828 0.021654 3.535758 -4.355655 -1.862526 0.698733 11.240040 1.744105 -0.031479 0.317614 12.206092 -8.789806 9.717544 -12.260614 -12.589127 8.395877 2.406142 2.898201 -3.878152 -4.727877 4.241038 -3.349722 -3.826734 3.287809 -3.045514 2.675695 -2.990345 1.976445 5.468696 -13.526977 3.909598 0.833666 -6.334072 -6.756438 -1.146451 3.879250 4.720995 -6.301253 -6.308131 2.872800 8.679791 -2.704357 1.664041 -3.917470 -13.693165 8.867442 0.717324 -6.171743 0.917934 2.732627 -7.758013 7.253849 -4.698365 -8.620262 -2.327561 2.608927 -5.110058 4.415368 5.975666 10.856201 -15.940422 5.212337 -14.404187 9.616199 -5.831223 8.571841 8.931762 -8.393587 2.710783 6.181544 10.415188 8.593913 1.797238 9.980366 5.650899 3.112451 0.412513 5.446916 8.351127 -7.172078 -6.449965 -7.901786 -9.975819 1.341467 -3.279061 -13.688020 0.573796 -5.388729 3.443599 -0.049189 -2.730897 -0.473543 12.143908 -18.371059 -4.374551 3.105694 -1.270752 6.680251 6.616030 -1.277329 4.329355 -0.397717 9.997459 -5.234429 -2.922967 -1.141822 4.821651 -8.166528 -6.215229 -10.938262 4.630560 4.821433 -9.241909 -10.163612 -15.161608 -2.490129 8.317326 -2.853576 10.796786 18.116657 -5.355992 -9.735665 7.238538 -0.604286 -4.099482 13.424437 2.277601 15.688111 -10.846818 3.695821 -5.258346 0.802938 2.369665 7.307557 0.281615 -3.706937 6.307873 1.773469 -5.748798 11.490425 -3.487755 -3.156078 -7.483867 3.994640 -2.135466 -0.321198 10.241542 -8.565535 7.304925 -5.265112 15.114163 -9.683821 -9.236532 3.281115 -14.244795 -3.906233 -4.086086 -1.250280 -0.998305 11.608540 -9.774459 -4.780113 -2.750636 -6.156284 -0.955264 5.955195 -1.570827 1.631641 0.730758 -2.124853 11.873749 9.054585 2.498000 -0.176650 -9.109028 0.900963 7.150532 -3.035980 -13.136665 -1.364390 -9.558422 -0.128214 -1.711224 -1.215770 6.297414 -7.950660 -3.785843 -2.678308 -4.250991 3.944890 -1.448244 -8.069478 4.537797 -4.571364 6.018491 3.343173 9.856790 11.171020 10.888595 6.303208 -0.573202 2.352573 -7.317158 -0.413125 6.331297 6.318661 2.553744 4.267233 11.070610 2.206190 3.303544 5.584332 2.448208 3.526461 10.132543 0.135347 13.949263 -6.718771 4.487419 -1.947307 -2.174298 7.548758 16.444757 -4.633468 -1.032332 3.309204 0.709787 -3.790106 -5.155852 0.327747 -3.348419 -3.117354 2.657043 6.946251 -0.833484 -5.582978 13.648784 3.042885 -15.345660 8.858896 -0.398626 2.358707 8.374703 -4.470702 1.321534 3.263650 -2.169616 6.940540 6.840178 8.224428 -11.104645 -2.849270 -1.191362 8.708630 7.679455 2.134816 -16.169235 7.036829 6.404544 9.850658 2.264074 9.461349 -9.561307 -1.965678 0.327659 -6.616409 -2.862035 0.683496 5.904654 -3.547982 4.182057 -10.352520 -5.027321 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/tarjan-algorithm.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::top() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 2.764605 0.278961 3.554713 -3.212729 -2.973139 1.628716 -1.344836 -2.434581 1.354616 6.367312 2.875539 -2.563121 -2.466168 4.058362 -1.744329 -3.203627 1.915322 0.478194 1.785564 -1.829249 0.441794 1.303313 -0.566778 -1.905278 1.215733 -1.723115 -0.356577 2.626783 1.592773 1.432114 -3.151682 -0.377232 -0.080612 6.232904 -0.132970 -0.980490 0.345915 6.953813 -4.540742 4.518226 -6.389193 -6.380543 5.593125 1.164270 1.014295 -2.706409 -2.001958 2.095070 -3.392117 -2.606074 1.675261 -1.808971 2.372972 -2.582560 -0.131200 4.207691 -9.188072 1.266194 0.365984 -2.492267 -2.791775 0.189948 2.177246 2.119727 -2.067308 -3.287482 1.823590 2.491684 -2.309157 0.636556 -2.390462 -6.234213 4.223730 1.510327 -2.259574 1.264449 2.341281 -5.205995 4.030220 -2.799342 -4.561077 -1.514282 0.356513 -3.328610 3.701399 1.657660 5.661519 -7.780110 2.712147 -7.693828 5.356810 -4.143848 4.518415 5.282389 -4.324691 1.912787 3.622832 4.375421 3.850455 0.255651 6.600673 3.827343 2.333537 -0.229983 3.455713 3.878315 -3.822451 -2.683686 -4.006619 -4.650648 -0.550356 -2.506690 -7.651647 0.307683 -3.709770 1.354712 1.906408 -2.068760 -0.449207 6.441024 -8.378633 -1.835899 1.331590 -0.765960 2.681244 4.425828 -0.311664 0.227763 0.398842 6.327719 -2.723278 -1.296826 0.188879 2.708932 -3.162222 -4.026066 -4.139614 1.523927 1.930788 -5.493766 -5.885522 -7.820458 -0.598469 3.167160 -0.743662 5.654808 10.059721 -1.639689 -4.781077 3.896007 -1.265784 -1.698265 7.882480 1.283176 8.317451 -5.853313 1.902554 -3.202731 0.830298 0.936700 4.077982 -0.015952 -1.165861 3.012435 0.974443 -2.004909 4.860893 -1.551431 -0.136354 -2.355873 1.204522 -2.209823 -1.854030 5.300942 -3.494391 4.695560 -1.294762 8.224163 -3.872222 -5.811841 2.887553 -5.171929 -1.968174 -2.222517 -1.367107 0.230357 4.346892 -4.939271 -3.049832 -3.153497 -1.936221 -0.140758 4.023950 -0.357217 1.419804 0.696051 -1.791485 4.947329 3.576846 0.460131 0.702313 -5.517121 0.419863 3.145775 -2.529605 -6.683055 -0.213039 -4.979516 0.731766 1.090725 -0.494566 4.463833 -3.849782 -3.403604 -0.242980 -1.245406 1.395359 -1.808395 -5.772033 1.945547 -1.073106 2.003942 2.414177 5.885473 5.694368 5.167157 1.268342 -0.243967 1.073138 -2.572613 -1.045437 1.411767 1.469904 1.898729 1.530568 4.738352 0.669765 2.095333 3.199311 2.344550 1.222476 5.465868 0.666754 5.934682 -2.043710 0.847226 0.459742 -2.730093 4.120708 7.698320 -2.058380 -0.439493 1.925536 1.115757 -1.965485 -3.857272 0.372661 -1.714160 -1.676074 2.079019 3.348476 0.158651 -3.071737 6.460894 2.535619 -9.356783 5.236001 -0.520152 1.009329 4.682027 -2.076494 0.688443 1.512680 -1.818638 3.954385 2.864731 4.067996 -5.897701 -0.762540 0.083519 4.888347 2.415355 1.010766 -8.372395 2.335447 2.080874 4.576469 2.957773 6.030987 -4.700633 -1.470029 -0.834918 -4.205594 -2.199875 -0.860878 2.293940 -2.689249 1.613266 -5.781960 -0.945688 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::stack >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/tarjan-algorithm.cpp__main = 2.248726 3.414159 2.663570 -0.068861 -4.309716 -1.117682 -6.394036 -0.054823 0.527098 -0.866547 -2.144053 -4.131136 -4.781856 2.650936 -7.379477 -5.639546 -4.115297 0.460391 -0.097055 -7.021504 -0.470709 0.680785 0.885356 0.854076 1.295168 -2.975001 -0.148974 0.689869 10.218873 -1.386990 -0.153037 1.263027 3.034852 3.784199 -1.334517 -2.261422 3.918615 6.077432 8.973999 -4.929477 -4.282341 -4.446029 1.535041 1.348964 0.507669 -3.820868 -1.460440 0.687607 -14.897985 11.274165 -0.028383 1.105281 -5.138546 -0.699198 2.077070 3.049262 -11.960629 14.698743 -2.568692 2.615590 0.803500 -1.655471 -2.042811 -2.962323 9.298430 -1.483032 -0.538935 7.463055 -8.254329 5.428280 1.344762 2.157041 6.950767 -1.066186 -3.210035 2.241078 2.855850 2.304270 0.085582 -11.844315 -1.366510 -0.370951 6.525731 5.973436 4.339609 3.198183 -3.693081 -4.586335 -2.129926 -3.006333 1.827804 -5.172113 2.813672 3.241341 -8.503525 3.415873 -0.587702 -7.774480 3.711522 3.623695 4.696892 0.062756 2.176186 0.554034 -3.784564 -0.755234 3.869600 2.133361 2.758014 -1.832058 -7.767610 3.529351 -8.553811 -2.544934 -2.946175 8.322017 1.043035 0.700073 -0.823657 -4.609761 -6.539589 -10.008534 -1.257636 -0.515600 5.039158 0.436677 -0.888147 2.371606 -1.413695 6.131055 1.268204 -3.200222 -1.578396 -1.114993 3.234063 -13.168439 -14.253301 -1.678920 0.659072 0.852011 -5.438573 0.753548 -3.279811 -4.449879 0.870611 3.951633 5.380121 3.133598 -3.618032 5.417880 -5.548505 6.970149 11.593781 1.111220 3.978144 -1.508487 1.319699 0.632028 1.536527 -0.337102 -11.241306 -0.869170 -1.317265 -1.556406 6.033736 6.936177 -11.677047 -2.831575 -0.624579 -8.994413 -1.880348 -2.092849 -0.153002 4.874824 1.880266 5.725292 -1.088617 6.249841 -4.015746 -12.636939 1.170077 -3.664557 3.284770 6.337069 1.894723 -1.765963 1.590200 -7.593997 -3.952773 2.946277 1.814001 -1.008914 0.238578 11.618607 -0.539603 -1.081674 2.913442 5.671933 3.471568 -2.467527 5.302507 -6.416874 -1.356765 3.329329 1.163373 -9.104215 6.052809 1.435722 -0.122821 4.142280 -0.094887 -3.480330 2.358654 -2.754018 -3.530942 -2.845462 6.761652 -0.159897 5.533895 2.098150 -5.842448 -2.091113 0.360839 0.683474 7.901910 -2.535374 0.494800 -0.224902 2.903124 -5.906191 14.882850 1.626476 5.668781 -1.074688 -0.590586 3.823852 0.504407 -2.500304 -0.004625 5.344689 -7.520237 1.635900 2.269338 6.808387 -10.164530 2.403179 -4.726605 -1.588547 2.462359 9.283974 -7.606263 -0.782606 2.803712 5.546941 9.040327 -9.614114 -4.511925 -1.839403 -2.257574 1.925302 -2.306931 -5.360992 3.237039 2.447595 1.924085 -0.232753 6.975356 1.198727 -3.455799 -8.171999 -1.387039 -10.334094 5.880127 -8.301222 -4.032869 -0.609489 1.374100 -0.841103 -3.508270 -2.162343 5.882835 -4.712213 2.021146 2.704111 -1.077479 8.147551 3.202439 5.597937 -3.147111 1.173363 -13.075991 -0.614880 -1.193289 -4.876646 2.611423 -0.697417 -5.062474 3.579766 9.784320 -10.345385 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/tarjan-algorithm.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/tarjan-algorithm.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/tarjan-algorithm.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/tarjan-algorithm.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/tarjan-algorithm.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/tarjan-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/tarjan-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.325439 -0.233739 0.229898 -0.050501 -0.064952 0.009877 -0.270475 0.314062 0.097829 0.053585 -0.072202 -0.013206 -0.354571 0.227450 -0.131088 -0.411677 0.233532 -0.051586 0.185391 -0.138262 0.226358 0.043553 0.457536 -0.104319 0.086832 -0.148075 -0.266791 0.104488 0.664960 -0.231484 0.006674 0.186231 0.038482 -0.119709 -0.345164 -0.208824 0.015401 0.204861 0.437195 0.034304 -0.131876 -0.049106 0.262156 -0.016388 0.078217 -0.136153 -0.181392 0.188324 -0.301581 -0.193808 -0.025309 0.126447 0.027537 -0.249613 -0.319970 0.196869 -0.494168 0.321194 -0.315466 0.211235 0.278132 0.213445 -0.014060 0.048809 0.526223 -0.143811 -0.032380 0.070408 -0.683386 -0.122653 0.062658 0.400167 0.440188 -0.071214 0.048551 0.110919 0.358024 0.279520 0.124586 -0.536923 -0.115728 -0.077896 -0.206709 0.104380 0.218269 -0.090565 0.025425 -0.313267 0.252990 -0.136035 0.499171 -0.196371 0.082321 0.108206 -0.224869 0.202373 0.142718 -0.155507 0.179332 0.177353 0.479143 0.074762 0.065390 0.127981 -0.081518 -0.264475 -0.013504 0.225609 -0.003183 -0.066134 -0.151982 -0.055757 -0.337552 0.043250 0.136732 0.363067 0.471229 -0.081289 0.039328 -0.273387 -0.301686 0.046605 0.074248 -0.007773 -0.028408 0.024065 -0.148478 -0.101067 -0.022440 0.429189 -0.204984 -0.084504 0.448225 0.008323 0.256812 -0.396575 0.134172 0.069943 -0.105698 0.019514 -0.153384 -0.103445 0.211801 -0.231083 -0.089443 0.271756 0.221551 0.292975 0.081313 0.011259 -0.141356 0.230168 0.282866 -0.093622 0.294724 -0.090206 -0.353361 0.115986 -0.021985 0.336462 -0.306170 0.078185 0.194713 0.084961 0.165927 0.046826 -0.300920 -0.250761 -0.005210 -0.048522 -0.058358 -0.166435 -0.031199 -0.081070 0.297835 0.044790 0.271640 0.385598 0.302171 -0.385918 0.196101 0.009681 -0.054929 0.167878 0.084494 -0.099173 -0.250719 -0.304854 -0.139678 -0.232584 -0.030119 0.047695 0.054361 0.174525 0.340668 0.218489 0.023973 0.230793 -0.142994 0.080927 0.104462 -0.433093 -0.181378 0.110596 -0.065524 -0.243596 0.141113 -0.032124 0.280206 0.505838 -0.096977 -0.002104 0.041694 -0.351324 -0.200917 -0.083320 0.065892 -0.067576 0.223460 -0.316979 0.276330 0.082505 0.015836 0.274157 0.238333 -0.187588 -0.123539 0.294750 0.097707 0.242427 0.243365 -0.184842 -0.152444 0.051060 0.019348 -0.116168 -0.038475 0.037874 0.400373 0.194482 -0.288099 -0.008776 0.012875 0.066042 -0.203301 -0.182465 -0.162657 -0.064789 0.192499 0.242920 -0.161048 0.049620 0.192695 0.135960 0.421700 -0.192415 0.061178 -0.152430 0.112851 0.259692 0.058054 0.273479 -0.020522 -0.216543 0.126324 -0.340052 0.571634 -0.077932 0.045613 0.152870 0.062724 -0.035169 -0.116929 -0.367422 -0.479519 0.112692 0.061820 -0.092025 0.108077 -0.048621 0.260598 -0.304524 0.242482 -0.063123 -0.119596 0.275888 0.013386 0.020224 -0.153859 -0.052624 -0.678435 -0.072331 -0.095938 -0.116914 0.022723 -0.367365 -0.247345 -0.144540 0.322152 0.083373 +PE-benchmarks/tarjan-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/tarjan-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/tarjan-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/tarjan-algorithm.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::back() = 0.215504 0.337586 0.106763 -0.326868 -0.750053 0.103383 -0.418850 -0.264952 -0.065238 0.001345 0.239846 -0.431888 -0.383615 0.611286 -0.344567 -0.546790 -0.337045 -0.311835 -0.133688 -0.157122 -0.019719 0.259085 -0.073296 0.156397 -0.060419 0.054412 -0.226826 -0.000344 0.684577 -0.416593 -0.381978 -0.009444 0.119719 0.445977 0.086716 -0.205692 0.243000 0.794306 0.223589 0.030882 -0.575052 -0.416190 0.127924 0.060253 -0.004720 -0.568879 -0.325735 0.355607 -0.645460 0.266122 0.378507 0.046728 -0.331693 0.071337 0.264478 0.323755 -1.019579 1.103667 0.111139 0.223926 0.180468 -0.061194 -0.054395 0.013857 0.388782 -0.281914 0.022497 0.431677 -0.432869 0.039566 -0.023747 -0.408386 0.879359 0.080021 -0.397720 0.067386 0.186781 -0.179764 0.375228 -0.982785 -0.539574 0.127996 0.236816 0.304053 0.499841 0.169368 -0.095410 -0.702885 0.050291 -0.721808 0.218502 -0.466082 0.182615 0.475079 -0.600094 -0.012638 0.166919 -0.366880 0.740600 0.317444 0.533036 0.055505 0.189881 0.157464 -0.051170 0.137692 0.021777 0.125052 -0.119511 -0.662003 -0.256861 0.256094 -0.912001 0.111510 -0.015046 0.502440 0.049382 0.034257 0.114265 -0.107184 -0.579078 -0.671568 -0.014621 -0.037041 0.459174 0.571139 -0.218583 0.273583 -0.339427 0.594912 -0.099190 0.154040 -0.013091 0.080857 0.062864 -1.014863 -1.141102 0.222478 0.266136 -0.226253 -0.447736 -0.441188 0.048535 -0.268638 -0.240046 0.486775 0.898908 -0.297105 -0.476172 0.749841 0.097220 0.224607 0.833196 -0.084415 0.825452 -0.210975 -0.056909 0.035803 -0.269980 -0.257613 -0.564472 0.147833 -0.116652 -0.041105 0.253435 -0.347343 -0.181662 -0.040018 -0.425713 -0.208633 0.007671 -0.221156 -0.286106 0.455773 0.303205 0.381898 0.237670 0.679559 -0.251956 -0.730308 0.327976 -0.074789 0.134583 0.119134 -0.218615 0.117404 0.282840 -0.538483 -0.099304 0.072303 -0.075418 -0.483507 0.031949 0.632775 0.149325 0.217602 0.337197 0.322859 0.776520 0.039820 0.309733 -0.644094 0.138804 0.270804 -0.139442 -0.738338 0.168706 -0.354275 0.039175 0.483204 -0.216401 0.012075 0.023549 -0.321904 -0.175048 -0.273162 0.627401 0.219078 0.231590 0.106102 -0.418635 0.260251 0.149787 0.308234 0.524794 0.492298 0.524186 0.092890 0.172910 -0.075251 0.735432 -0.076120 0.235942 0.102432 0.286680 0.309439 0.251428 0.056338 0.392710 0.332479 -0.304196 0.490279 0.076215 0.920123 -0.455739 0.089998 -0.351474 -0.092971 0.407173 1.105629 -0.728119 0.053033 0.204927 0.252325 0.239460 -0.553688 -0.043861 -0.251094 -0.321738 0.245979 0.028649 -0.040325 -0.037913 0.428354 -0.054389 -0.444115 0.534146 0.026226 0.070036 -0.067091 0.007918 -0.324994 0.246303 -0.740227 0.070779 0.500435 0.381038 -0.283541 -0.395316 -0.107510 0.487385 -0.271454 0.431308 -0.231052 0.152579 0.678703 0.424187 0.238969 -0.116259 -0.376174 -0.851525 0.296513 -0.080364 -0.247648 0.083617 0.194943 -0.417571 0.134820 0.301536 -0.694908 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator--() = 0.047131 -0.590731 0.907326 -0.926820 -1.160533 0.679881 -0.942351 -0.629356 0.454210 0.178362 0.395102 -0.472155 -0.423654 1.449042 -0.222625 -1.421521 -0.120662 0.613497 0.270037 -0.131655 0.140803 0.417947 -0.277192 0.326535 -0.164777 -0.646673 0.186779 0.647454 0.750345 0.404134 -0.846175 -0.381178 -0.583434 1.459867 0.268526 0.687470 0.443292 2.348598 -0.030917 2.138309 -1.106965 -1.400884 0.422020 0.202706 -0.127038 -0.121694 -0.899564 0.355654 -1.669085 -0.166878 1.224659 -0.149580 0.235680 0.185251 0.966863 0.294108 -1.740751 0.403648 -0.138561 -0.195259 -0.011823 -0.434946 -0.317259 0.683495 -1.124292 -0.484345 0.578494 1.191458 -0.663587 0.104260 0.023426 -1.633558 2.191270 0.730601 -1.187614 0.192677 1.570226 -0.960908 1.028143 -0.380716 -1.791080 -0.124966 -0.245620 -1.158814 1.718795 0.200637 1.411893 -2.055281 1.123103 -2.091829 1.173201 -1.352946 0.784534 1.698794 -1.524763 0.386099 1.083394 1.880439 0.936377 -0.079709 1.324785 1.005048 -0.229626 0.377920 1.257814 0.292982 -0.699395 -0.749785 -1.121646 -1.477155 -0.166059 -1.264303 -2.605695 -0.110327 -0.021639 1.301310 -0.167472 0.559425 -0.376911 0.696831 -2.361254 -0.064402 0.199863 -0.248817 0.790613 0.961641 -0.696102 0.590123 -0.088449 1.826265 -1.142276 -0.075498 -0.377873 0.427335 -0.679923 0.572789 -1.874012 0.520864 0.823686 -0.674424 -1.559203 -1.486582 -0.755127 1.504796 -0.027478 2.245077 2.684513 -0.714687 -1.059324 1.418752 -0.440533 0.296058 1.731112 0.417629 1.263770 -0.718634 -0.049703 -1.429856 -0.242726 -0.415480 0.239181 0.706674 -0.130141 1.036188 0.037509 -0.252730 2.052861 -0.833359 -0.915170 -1.853375 0.151889 -0.876971 -0.529098 1.987063 -1.577232 1.001980 -0.147539 1.998504 -0.766856 -1.241068 0.414793 -1.737991 -0.076294 -1.151370 -0.290941 -0.188756 1.205350 -1.644792 -0.819519 -0.449649 -0.745162 -0.255839 0.115487 0.936781 0.135836 0.363963 0.602546 2.340780 2.032478 0.922547 -0.412210 -1.482677 0.424671 0.649851 -1.139601 -0.513091 0.349965 -0.718908 0.031304 -0.222121 0.019854 0.268953 -1.492624 -0.883248 -1.187835 -0.275254 0.874866 0.524525 -2.692484 0.310047 0.422313 0.752678 1.158642 0.503100 1.968895 1.405223 1.586250 -0.067455 0.371059 -0.096902 -0.025130 0.413000 0.952812 0.650462 0.288586 1.703040 0.574121 0.107568 0.815649 1.387999 0.738956 1.030938 0.413626 2.261767 0.365629 0.016107 -0.430241 -0.135407 0.997923 2.674553 -1.055923 1.459802 0.782577 0.939281 -0.237827 -1.528246 0.083862 -0.754965 -0.051616 0.433586 -0.005078 -0.207512 -0.478575 1.368183 0.336418 -1.883514 0.391323 0.031453 0.339031 1.316538 -0.237485 -0.089623 0.278901 -1.533950 1.843302 0.770449 0.544266 -1.037684 0.097580 -0.156765 0.437334 0.886031 0.836429 -0.333017 0.710825 0.596509 1.487537 0.922468 0.717259 -0.979525 -0.683248 0.399295 -1.684495 -0.637256 0.033887 0.592086 -0.359012 0.446868 -1.244923 -2.216360 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::pop_back() = 0.918230 -1.149242 1.753199 -1.596206 -1.963741 1.770420 -2.598979 -1.037501 0.735647 0.475596 0.682584 0.037161 -0.276611 1.620457 -0.405541 -2.351140 -0.103374 -0.291990 0.762865 -0.938894 0.193405 0.340228 -0.286547 0.641573 -0.562022 -1.443195 0.082265 0.795565 1.347646 0.047445 -1.403416 -0.480231 -1.734811 2.169082 0.633069 -0.079472 1.127793 4.051462 0.853475 1.261528 -0.961143 -2.378315 0.466189 0.110019 -0.434101 1.451160 -0.866772 0.655697 -2.247734 0.245104 2.231727 -0.500880 0.730667 0.597582 0.683426 -0.136148 -2.896516 0.590082 -0.599286 0.052992 -0.201234 -0.653838 0.255767 1.423600 -0.837118 -0.738875 2.104021 2.299757 -1.195771 -0.505532 0.138038 -2.452042 3.060027 1.327140 -0.944159 0.001101 2.885880 -1.286660 1.817755 -0.010946 -3.488540 -0.155032 -1.100696 -3.446864 3.336979 -0.432375 2.233487 -3.318906 3.034002 -3.688724 1.515401 -1.572407 1.211679 2.484837 -2.585206 0.350164 2.233209 4.129574 1.330292 -1.200330 2.749489 0.973816 -0.927433 1.385276 2.002952 -0.228252 -0.895151 0.042024 -1.943861 -2.406913 -0.403220 -2.355085 -3.577952 0.479139 0.054499 1.015559 -0.359184 0.836146 -1.040653 1.458476 -3.782048 -0.532866 -0.124706 -0.380726 1.021108 1.146553 -1.433926 1.085542 0.178001 3.257919 -2.535701 -0.391788 -0.212392 0.625911 -0.059877 1.806302 -3.450305 1.381351 1.907376 -1.349225 -2.623406 -1.602202 -0.988119 1.447222 -0.123825 5.404902 4.479136 -1.209621 -1.627066 2.325247 -1.175248 0.385184 3.591818 0.529168 1.833532 -0.880477 -0.872335 -2.416448 -0.678941 -0.749490 -2.254427 1.288898 1.356239 1.961129 0.736162 2.874563 3.432796 -1.521113 -1.975834 -2.112637 0.771194 -1.425118 -1.314572 2.439070 -0.522328 0.957589 2.254419 3.561672 -0.665221 -1.933578 0.769702 -1.875727 -0.083150 -1.340108 -0.464953 -0.997033 1.480473 -1.699602 -1.379584 -1.156319 -1.046228 -0.486335 -0.073778 3.926081 1.562197 1.344612 0.998934 2.889490 4.116787 2.062613 -0.842016 -2.631720 0.556419 1.713611 -1.984935 0.600366 -0.031635 -1.036087 0.527301 0.585232 0.039087 1.214179 -2.731362 -1.639086 -2.346731 0.791932 1.702045 1.603347 -5.336304 0.503793 0.784517 0.943872 1.893622 0.861519 2.909905 2.477356 2.987407 -0.209425 0.676445 0.813834 0.597583 -0.676034 1.280139 2.405680 0.569210 2.695710 1.029281 0.844744 1.484982 2.600194 1.193224 1.587135 -0.135528 4.064781 -0.083210 0.198282 -1.700375 0.180356 1.814742 4.456023 -1.601469 2.542948 1.198771 1.898249 -0.151723 -3.470114 0.804071 -1.411762 1.863311 -0.985594 0.612795 0.254755 -1.262431 1.812689 0.777528 -3.210893 1.238153 0.079541 0.693120 2.668548 -0.219770 -0.183942 -0.352166 -3.232553 2.971782 1.966262 0.692997 -1.722710 1.708904 0.040377 1.671445 -1.401067 1.824990 0.269346 2.115415 0.773715 1.496592 1.907137 0.572694 -2.045704 -1.942468 1.147328 -3.162841 -0.724719 1.534449 1.230560 -1.684337 1.499686 -1.339405 -3.281534 +PE-benchmarks/tarjan-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::_M_pop_back_aux() = 0.974669 -1.461739 1.905192 -1.908787 -2.578135 2.615678 -4.035521 -2.051347 0.782826 -0.682803 1.162549 0.063182 0.849882 1.771904 -0.555926 -2.552360 -0.772355 0.131950 0.666786 -1.131071 0.047891 0.040934 -1.122577 1.001084 -1.273395 -1.802464 0.680549 0.608426 1.077273 0.404575 -2.108812 -0.872733 -2.386426 2.959599 1.701521 0.117404 1.723074 4.947593 1.597742 0.886484 -0.590916 -2.736865 -0.132975 0.157218 -0.777157 2.537541 -1.494878 0.432544 -2.724521 1.181526 3.012793 -1.016788 0.812211 1.475906 1.166680 -0.773838 -2.834452 0.456626 -0.389181 0.031238 -0.481517 -1.181059 0.354723 1.752230 -1.481384 -0.615207 3.160482 3.717729 -0.416399 -0.581880 0.188067 -4.019429 4.113826 1.746927 -1.144473 -0.441962 3.431898 -1.968723 2.145254 1.361001 -4.622459 0.053753 -1.323038 -4.668994 4.305941 -0.667555 2.804075 -3.754068 3.929550 -4.902985 0.993929 -1.687984 1.349662 2.833664 -3.831554 -0.141452 2.923275 6.105425 1.541161 -1.410984 2.918379 1.043709 -2.108826 1.533796 2.956521 -0.482530 -0.460108 0.199907 -2.254790 -3.175308 -0.592097 -3.090122 -4.914134 0.703223 -0.115691 0.971787 -2.015719 1.651576 -1.174617 2.015262 -4.183605 -0.798558 -0.464631 -0.445555 1.293975 1.299092 -1.861057 1.811517 0.074798 3.611481 -3.128833 -0.842698 -0.885171 0.618705 -0.222671 2.623817 -5.454229 2.075909 3.041103 -1.742446 -3.309742 -1.348739 -1.635369 2.201622 -0.002487 6.933791 5.326433 -1.971712 -2.176863 2.939042 -0.821345 0.153579 4.978841 0.899732 2.131238 -0.896026 -0.705628 -3.243976 -1.100194 -1.826624 -5.090077 1.449807 1.962770 2.555647 0.904830 3.919278 6.043375 -1.966351 -2.808082 -2.191072 1.183284 -1.467899 -1.812761 3.302858 0.058748 0.970089 3.342287 4.168636 -1.220699 -2.039040 0.570685 -1.879852 0.009330 -1.328177 -0.326744 -1.633117 2.505507 -1.580798 -1.685373 -0.685589 -1.392904 -0.625349 -0.218874 6.832246 1.761895 1.753468 1.342435 2.627539 6.020165 2.767778 -1.099389 -2.723790 0.901089 2.518582 -2.659364 1.602788 -0.332086 -1.340519 0.506431 -0.407027 0.306601 1.611783 -3.833813 -1.675801 -3.329952 1.485265 2.632729 2.627483 -6.901713 1.138659 0.410941 1.065127 2.355302 0.597933 3.680905 3.619775 4.401904 -0.859895 0.930872 0.843032 1.047335 -0.973229 2.074143 3.625403 0.551696 3.725309 1.239519 1.142380 1.136344 3.222083 2.458998 1.949286 0.031388 5.480485 0.184547 0.737488 -2.528290 0.409828 2.349440 6.002724 -1.972262 3.673205 1.023988 2.552891 -0.583354 -5.092640 1.017249 -1.297294 2.242912 -2.109221 0.683128 0.335748 -1.821670 2.483866 1.061348 -3.381319 0.809683 0.317925 0.650862 3.369787 -0.482953 -0.300468 -0.544496 -3.650436 4.447171 2.514764 0.741860 -2.105618 2.166247 0.108895 1.978924 -2.248993 2.191690 1.740958 3.943166 0.890654 1.712296 2.476164 -0.059663 -2.831209 -1.908423 1.734773 -4.088683 -0.675081 2.506556 2.123611 -2.231889 2.190821 -1.593475 -5.050970 +PE-benchmarks/tarjan-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.464034 -0.071382 0.471198 -0.518118 -0.806042 0.143180 -0.519990 0.061232 0.162025 0.141849 0.295585 -0.438094 -0.458544 0.938642 -0.309163 -0.816912 0.081002 -0.340352 0.091953 -0.202988 0.270419 0.317929 0.335684 0.063556 0.001825 -0.143925 -0.403973 0.318575 1.169158 -0.441761 -0.446411 0.143526 -0.019400 0.407948 -0.245069 -0.523250 0.286760 1.155518 0.110039 0.293765 -0.506591 -0.368345 0.479752 0.054562 -0.098184 -0.543004 -0.756936 0.502456 -0.695120 -0.182787 0.531879 0.166363 -0.010483 -0.167866 -0.010886 0.521687 -1.380785 0.864630 -0.157987 0.402418 0.379846 0.090252 -0.000552 0.260972 0.327654 -0.417542 0.240077 0.327409 -0.848980 -0.229896 0.003977 -0.306895 1.232717 0.100100 -0.300228 0.176540 0.725434 -0.364723 0.663592 -0.942650 -0.792099 0.060041 -0.228891 -0.212329 0.904404 -0.242436 0.219701 -1.104003 0.447748 -0.984977 0.699582 -0.812348 0.250973 0.755913 -0.899990 0.186401 0.350518 0.189640 0.839050 0.264547 1.062619 0.356850 0.255352 0.267930 0.223047 0.030033 -0.198144 0.179370 -0.428562 -0.785662 -0.255802 -0.200897 -1.398858 0.240690 0.160021 0.357664 0.461970 -0.132868 0.002168 0.223218 -0.720733 -0.182496 0.146584 -0.078557 0.155129 0.776633 -0.463622 0.111663 -0.332749 1.097338 -0.403778 0.182995 0.401698 0.130660 -0.026805 -0.908942 -0.750810 0.346964 0.220219 -0.304017 -0.706881 -0.725623 0.231091 -0.351694 -0.289225 0.933226 1.264891 -0.056500 -0.452313 0.762592 0.190229 0.283323 1.019489 -0.176134 1.167226 -0.364896 -0.416489 -0.211816 -0.302359 -0.000299 -0.477571 0.318444 0.210216 0.212015 0.217312 -0.452142 0.409455 -0.304450 -0.424467 -0.152987 0.118060 -0.450085 -0.524851 0.697224 0.417778 0.402378 0.541820 1.161337 0.110645 -0.952433 0.568640 -0.048348 0.084153 -0.190779 -0.197537 0.065620 0.191904 -0.585146 -0.304876 -0.396176 -0.174483 -0.342039 0.064759 0.639536 0.567933 0.419032 0.377498 0.454958 0.809056 0.270454 0.305488 -1.133033 0.031791 0.509772 -0.395999 -0.795542 0.238101 -0.438201 0.315217 0.599640 -0.261506 0.169643 -0.379421 -0.805576 -0.406350 -0.195840 0.490172 0.177223 -0.614921 -0.094790 -0.051391 0.467959 0.311399 0.578519 0.916939 0.435529 0.561570 0.281463 0.229489 0.298080 0.377846 -0.207940 0.044340 0.244197 0.302273 0.528656 0.231297 0.147563 0.766037 0.579386 -0.314069 0.484693 0.172215 1.053071 -0.144476 -0.188889 -0.469420 -0.152215 0.660581 1.487536 -0.376720 0.193592 0.429242 0.507491 0.299270 -0.922041 0.074736 -0.428891 0.053920 0.376474 0.006576 0.157416 -0.100845 0.312769 0.113067 -1.041126 0.828230 -0.081345 0.232370 0.469034 0.045677 -0.072464 0.027657 -1.076087 0.119405 0.606198 0.373699 -0.393525 -0.138420 -0.077939 0.633433 -0.378683 0.676856 -0.627505 0.343873 0.703169 0.486419 0.300135 0.135281 -0.533272 -1.140770 0.259053 -0.382060 -0.326927 0.093386 -0.031322 -0.859202 0.113638 0.078662 -0.626862 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/tarjan-algorithm.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/tarjan-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/tarjan-algorithm.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/tarjan-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/tarjan-algorithm.cpp___GLOBAL__sub_I_tarjan_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/topological-sorting.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/topological-sorting.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.184262 0.673657 1.722379 -1.729688 -2.872859 1.172808 -1.831732 -1.899786 0.316874 2.962551 1.453898 -2.066758 -1.086592 3.824071 -1.518946 -2.523166 -0.386599 -0.082141 0.195002 -1.342631 -0.216299 1.270136 -0.635684 -0.076153 0.292887 -0.898102 -0.128919 0.948204 1.462100 -0.079143 -1.905324 -0.421027 -0.180178 3.749085 0.530247 -0.341129 0.873852 4.996156 -1.827698 2.951108 -3.728051 -3.780690 2.243919 0.718219 0.216330 -0.975374 -1.575939 1.685365 -2.908533 -0.273586 2.008016 -0.685445 0.048792 -0.459747 1.227776 2.055208 -5.592654 2.955369 0.287867 -0.666953 -1.195878 -0.637730 0.788272 1.038659 -0.857009 -1.900391 1.062246 2.627106 -1.716215 0.192012 -1.037798 -4.060280 3.520084 0.798124 -2.128030 0.482563 1.379097 -2.102946 2.464913 -2.937750 -3.458069 -0.367829 0.848341 -1.624168 2.706325 1.670638 2.492420 -5.337874 1.662418 -5.019692 2.762476 -2.500338 2.561745 3.581958 -3.273680 0.728893 1.894970 2.112883 3.081772 0.473154 3.616766 1.257057 0.599984 0.618364 1.510049 2.170252 -1.979060 -1.211431 -2.260315 -3.579095 -0.322637 -0.755323 -4.461280 0.322103 -1.563156 1.845620 0.335402 -0.217447 -0.578988 2.260672 -5.431610 -2.325003 0.365171 -0.483943 2.762211 2.860175 -0.836432 1.480855 -0.651806 3.893236 -1.705890 -0.348532 -0.720358 1.331737 -1.402818 -2.443968 -4.930360 1.338421 1.856011 -2.693941 -3.631095 -4.629611 -0.705185 1.334648 -1.035267 4.800283 6.454432 -1.871057 -3.087712 3.533007 -0.600326 0.282674 5.086799 0.392728 5.059277 -2.973574 0.740128 -1.524302 -0.282788 -0.202962 0.388398 0.582765 -0.726963 1.475357 1.040132 -0.529993 2.504058 -0.782855 -1.722821 -2.968790 1.051484 -1.177828 -1.132662 3.774473 -1.774559 2.259514 -0.255806 5.226501 -2.692983 -3.764295 1.751021 -3.649892 -0.595970 -1.257197 -1.242324 -0.315169 3.122900 -3.399655 -1.548665 -0.928575 -1.198859 -1.224665 1.109891 1.712382 0.780214 0.589121 0.348034 3.896514 4.055729 0.871388 0.483028 -3.888752 0.401342 2.386292 -1.414902 -3.913600 0.421635 -2.729113 0.008557 0.984329 -0.655308 1.430073 -2.586777 -1.850399 -1.175986 -1.017782 2.437171 0.342579 -3.113045 1.393307 -1.418875 1.455569 1.961392 2.810849 3.727366 3.514634 2.712990 -0.056237 0.736030 -1.387879 1.151648 1.008192 1.802587 1.491047 1.574048 3.192085 1.213480 0.842469 1.943447 1.546383 0.033689 3.291094 0.401220 5.298773 -1.673501 1.094961 -1.108114 -0.923650 2.580114 6.121421 -3.026271 0.249537 1.615321 0.982890 -0.346546 -2.921147 0.097847 -1.707814 -0.891073 0.773322 1.135932 -0.394682 -1.461058 4.208830 0.516072 -4.824208 3.077813 -0.010519 0.777921 1.971372 -0.844108 -0.466594 1.196555 -3.007206 2.423251 2.612663 2.665642 -2.965700 -0.427604 -0.533618 2.974231 1.237289 1.446530 -3.872692 2.007123 2.531025 3.096303 1.820548 2.055831 -2.719839 -2.277580 0.455236 -2.467523 -1.238332 0.308071 1.982357 -1.496076 1.576753 -2.126189 -2.957943 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/topological-sorting.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 1.755732 0.493673 2.583960 -2.597074 -0.599804 0.871930 -0.512903 -1.224499 1.287664 5.350704 0.982167 -0.768680 -3.425284 3.494354 -1.602015 -2.558129 2.194657 -0.477076 2.007819 -1.143049 0.536433 1.279331 0.840571 -1.188073 1.614902 -1.693807 -0.565956 1.987274 2.223307 -0.303584 -2.031072 -0.133070 0.444249 4.365112 -1.073312 -0.263971 -0.104977 5.107932 -2.949404 4.825147 -3.938846 -4.363202 4.203318 0.888081 -0.328541 -2.325547 -0.327067 1.258404 -1.796418 -3.118097 1.080680 -1.196430 1.131853 -2.324295 -0.276792 3.731251 -6.410060 0.881932 -0.477386 -0.788509 -0.838201 -0.317669 1.738927 0.965711 -0.993369 -2.292132 0.948843 0.613094 -4.316146 0.169561 -1.676131 -3.081133 3.285191 1.447926 -2.150262 1.527105 1.999796 -3.241023 2.233366 -3.355655 -2.576308 -1.287810 0.333337 -0.887106 2.581673 1.543816 3.330955 -5.920999 0.941007 -4.198632 4.476499 -2.856542 4.078858 3.793354 -2.351859 1.965909 2.427657 2.807078 1.470157 -0.955398 5.703700 2.523838 1.322467 -0.131405 2.360585 2.368326 -3.371976 -2.222700 -2.774116 -2.772342 0.348835 -1.505741 -4.516075 -0.616703 -3.133028 0.560411 2.897605 -1.658940 -1.593474 3.442876 -7.528034 -2.213205 0.749538 -0.655684 2.486559 3.522640 0.399619 -0.144112 1.164953 4.915353 -1.956779 -1.320183 0.146327 1.650007 -1.004712 -1.663035 -1.431807 -0.641542 0.688889 -3.981666 -4.268502 -5.985722 -0.866253 1.667936 -0.287815 4.219401 7.647240 -0.587963 -2.560706 2.865891 -2.049883 0.248003 5.114417 0.831625 5.940568 -4.679788 0.929328 -1.706911 0.903225 2.329906 5.902463 0.112959 -0.554128 1.367199 0.960721 -0.482156 -0.213301 -1.586072 0.082745 -2.458378 -0.080196 -2.095698 -1.855456 3.397941 -4.058629 3.315792 -2.063903 6.219632 -2.318713 -4.784939 1.941372 -4.199081 -1.373367 -3.205723 -1.176112 -0.526272 2.814568 -4.398765 -2.164416 -2.266831 -0.670336 0.176169 2.731730 -3.095332 1.236658 -0.729383 -1.503335 5.493031 2.264282 -0.139982 0.563152 -4.489185 -0.143913 2.322877 -1.067801 -5.125587 0.847940 -3.559640 0.152467 2.083803 -1.725545 1.946341 -2.648032 -2.777296 -0.294282 -1.833849 0.386255 -2.088018 -5.227875 0.979880 0.142765 0.481386 2.448498 4.360776 3.971126 2.874518 0.392861 -0.249752 1.080221 -1.771584 -2.243277 1.587066 0.276242 1.569355 1.546788 3.523467 0.804680 1.527571 3.241273 1.473532 0.377934 3.987345 0.164851 4.268204 -0.708700 -0.090717 0.448293 -2.701538 2.638483 5.472849 -1.573727 -0.587628 2.481890 0.667374 -0.514789 -2.471471 0.596907 -2.059758 -0.974399 3.243872 2.185365 0.375658 -1.956415 4.781773 0.588799 -7.249466 3.792201 -0.607437 0.441345 3.134708 -1.491149 0.742960 1.553468 -2.197244 1.620969 1.432791 3.615456 -4.070406 0.963726 -0.481544 3.169916 2.058541 0.057604 -7.793990 0.113289 1.028412 4.188994 2.848048 4.687612 -2.330341 -0.842934 -0.429942 -1.984382 -1.429025 -1.675336 2.476755 -1.647754 0.237839 -4.253147 0.887192 +PE-benchmarks/topological-sorting.cpp__std::stack > >::stack >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/topological-sorting.cpp__std::stack > >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/topological-sorting.cpp__std::stack > >::top() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/topological-sorting.cpp__std::stack > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/topological-sorting.cpp__std::stack > >::~stack() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/topological-sorting.cpp__main = 0.452614 0.582778 0.454754 -0.186541 -0.817762 -0.191546 -0.898848 0.001044 0.061102 -0.314553 -0.259664 -0.757951 -0.972719 0.659843 -1.167380 -1.083687 -0.618538 -0.193836 -0.109721 -0.960108 -0.117403 0.204611 0.117575 0.147804 0.287232 -0.353441 -0.148242 0.193629 1.797307 -0.506260 -0.231796 0.203549 0.505113 0.797053 -0.232346 -0.412794 0.718952 1.337506 1.433820 -0.594359 -0.815104 -0.738334 0.374255 0.161539 -0.026666 -0.922691 -0.371188 0.285922 -2.537236 1.728603 0.184016 0.224852 -0.976485 -0.183359 0.430448 0.766029 -2.325490 2.642944 -0.289801 0.644402 0.230097 -0.343129 -0.408097 -0.617902 1.581901 -0.368065 -0.068512 1.107038 -1.525112 0.877716 0.118381 0.202917 1.526306 -0.058423 -0.603638 0.454159 0.514949 0.207106 0.161302 -2.208468 -0.387391 -0.040841 1.071562 1.104717 1.013080 0.443607 -0.723641 -1.005212 -0.398168 -0.750693 0.333015 -1.159030 0.512422 0.788614 -1.519802 0.622203 -0.088936 -1.415859 0.670333 0.711191 0.975189 0.044045 0.414052 0.086312 -0.532022 -0.131996 0.559392 0.292742 0.376100 -0.462189 -1.310498 0.667546 -1.709691 -0.332700 -0.493166 1.485426 0.252466 0.207809 -0.103873 -0.846712 -1.131861 -1.635227 -0.157323 -0.127557 0.957239 0.412505 -0.230820 0.349701 -0.445212 1.196685 0.246938 -0.304596 -0.335042 -0.125769 0.586932 -2.492642 -2.465431 -0.339812 0.171269 0.060829 -1.094156 -0.088211 -0.463170 -0.834750 0.010493 0.744943 1.191758 0.416090 -0.672458 1.168881 -0.687126 1.375907 2.004441 0.142234 0.915992 -0.325176 0.205970 0.181547 0.187219 -0.176812 -2.041770 -0.109912 -0.310539 -0.287048 0.980199 0.790375 -1.663544 -0.393180 -0.181794 -1.239139 -0.391504 -0.463280 -0.326608 1.080861 0.549586 1.113429 -0.033402 1.278187 -0.656404 -2.187750 0.351759 -0.377742 0.651693 0.812559 0.142364 -0.188637 0.263039 -1.393266 -0.721399 0.475627 0.346286 -0.324353 0.096131 2.003118 -0.084130 -0.168130 0.606147 0.863239 0.773631 -0.494084 1.015979 -1.326539 -0.127316 0.544309 0.090561 -1.689988 1.096691 0.189910 -0.044014 0.899904 -0.068952 -0.598091 0.369907 -0.632044 -0.445965 -0.502609 1.185275 0.026233 0.842141 0.267601 -0.963491 -0.347612 0.188934 0.253424 1.477729 -0.299064 0.173591 -0.020877 0.479150 -0.814081 2.329963 0.138292 0.765832 0.005616 0.016539 0.591359 0.212622 -0.431736 0.113423 0.951915 -1.304359 0.440650 0.630163 1.373013 -1.527660 0.222653 -0.713879 -0.379963 0.579272 1.737436 -1.488113 -0.082705 0.579050 1.034318 1.455981 -1.689365 -0.768794 -0.392457 -0.579153 0.516800 -0.514075 -0.888682 0.557192 0.620918 0.177700 -0.287860 1.183433 0.224121 -0.444251 -1.304335 -0.127420 -1.625628 1.074816 -1.592307 -0.570161 -0.022797 0.402396 -0.167411 -0.678755 -0.358500 0.995801 -0.863682 0.454482 0.312278 -0.220489 1.425154 0.712316 1.039809 -0.566788 0.165344 -2.240098 -0.067031 -0.185543 -0.812392 0.365118 -0.003282 -0.924733 0.461905 1.465143 -1.768309 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/topological-sorting.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/topological-sorting.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/topological-sorting.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/topological-sorting.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/topological-sorting.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/topological-sorting.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/topological-sorting.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/topological-sorting.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/topological-sorting.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/topological-sorting.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/topological-sorting.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/topological-sorting.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/topological-sorting.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/topological-sorting.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/topological-sorting.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/topological-sorting.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/topological-sorting.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/topological-sorting.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/topological-sorting.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/topological-sorting.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/topological-sorting.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/topological-sorting.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/topological-sorting.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/topological-sorting.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/topological-sorting.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/topological-sorting.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/topological-sorting.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/topological-sorting.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/topological-sorting.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/topological-sorting.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/topological-sorting.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/topological-sorting.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/topological-sorting.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/topological-sorting.cpp__std::deque >::empty() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/topological-sorting.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/topological-sorting.cpp__std::deque >::back() = 0.215504 0.337586 0.106763 -0.326868 -0.750053 0.103383 -0.418850 -0.264952 -0.065238 0.001345 0.239846 -0.431888 -0.383615 0.611286 -0.344567 -0.546790 -0.337045 -0.311835 -0.133688 -0.157122 -0.019719 0.259085 -0.073296 0.156397 -0.060419 0.054412 -0.226826 -0.000344 0.684577 -0.416593 -0.381978 -0.009444 0.119719 0.445977 0.086716 -0.205692 0.243000 0.794306 0.223589 0.030882 -0.575052 -0.416190 0.127924 0.060253 -0.004720 -0.568879 -0.325735 0.355607 -0.645460 0.266122 0.378507 0.046728 -0.331693 0.071337 0.264478 0.323755 -1.019579 1.103667 0.111139 0.223926 0.180468 -0.061194 -0.054395 0.013857 0.388782 -0.281914 0.022497 0.431677 -0.432869 0.039566 -0.023747 -0.408386 0.879359 0.080021 -0.397720 0.067386 0.186781 -0.179764 0.375228 -0.982785 -0.539574 0.127996 0.236816 0.304053 0.499841 0.169368 -0.095410 -0.702885 0.050291 -0.721808 0.218502 -0.466082 0.182615 0.475079 -0.600094 -0.012638 0.166919 -0.366880 0.740600 0.317444 0.533036 0.055505 0.189881 0.157464 -0.051170 0.137692 0.021777 0.125052 -0.119511 -0.662003 -0.256861 0.256094 -0.912001 0.111510 -0.015046 0.502440 0.049382 0.034257 0.114265 -0.107184 -0.579078 -0.671568 -0.014621 -0.037041 0.459174 0.571139 -0.218583 0.273583 -0.339427 0.594912 -0.099190 0.154040 -0.013091 0.080857 0.062864 -1.014863 -1.141102 0.222478 0.266136 -0.226253 -0.447736 -0.441188 0.048535 -0.268638 -0.240046 0.486775 0.898908 -0.297105 -0.476172 0.749841 0.097220 0.224607 0.833196 -0.084415 0.825452 -0.210975 -0.056909 0.035803 -0.269980 -0.257613 -0.564472 0.147833 -0.116652 -0.041105 0.253435 -0.347343 -0.181662 -0.040018 -0.425713 -0.208633 0.007671 -0.221156 -0.286106 0.455773 0.303205 0.381898 0.237670 0.679559 -0.251956 -0.730308 0.327976 -0.074789 0.134583 0.119134 -0.218615 0.117404 0.282840 -0.538483 -0.099304 0.072303 -0.075418 -0.483507 0.031949 0.632775 0.149325 0.217602 0.337197 0.322859 0.776520 0.039820 0.309733 -0.644094 0.138804 0.270804 -0.139442 -0.738338 0.168706 -0.354275 0.039175 0.483204 -0.216401 0.012075 0.023549 -0.321904 -0.175048 -0.273162 0.627401 0.219078 0.231590 0.106102 -0.418635 0.260251 0.149787 0.308234 0.524794 0.492298 0.524186 0.092890 0.172910 -0.075251 0.735432 -0.076120 0.235942 0.102432 0.286680 0.309439 0.251428 0.056338 0.392710 0.332479 -0.304196 0.490279 0.076215 0.920123 -0.455739 0.089998 -0.351474 -0.092971 0.407173 1.105629 -0.728119 0.053033 0.204927 0.252325 0.239460 -0.553688 -0.043861 -0.251094 -0.321738 0.245979 0.028649 -0.040325 -0.037913 0.428354 -0.054389 -0.444115 0.534146 0.026226 0.070036 -0.067091 0.007918 -0.324994 0.246303 -0.740227 0.070779 0.500435 0.381038 -0.283541 -0.395316 -0.107510 0.487385 -0.271454 0.431308 -0.231052 0.152579 0.678703 0.424187 0.238969 -0.116259 -0.376174 -0.851525 0.296513 -0.080364 -0.247648 0.083617 0.194943 -0.417571 0.134820 0.301536 -0.694908 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator--() = 0.047131 -0.590731 0.907326 -0.926820 -1.160533 0.679881 -0.942351 -0.629356 0.454210 0.178362 0.395102 -0.472155 -0.423654 1.449042 -0.222625 -1.421521 -0.120662 0.613497 0.270037 -0.131655 0.140803 0.417947 -0.277192 0.326535 -0.164777 -0.646673 0.186779 0.647454 0.750345 0.404134 -0.846175 -0.381178 -0.583434 1.459867 0.268526 0.687470 0.443292 2.348598 -0.030917 2.138309 -1.106965 -1.400884 0.422020 0.202706 -0.127038 -0.121694 -0.899564 0.355654 -1.669085 -0.166878 1.224659 -0.149580 0.235680 0.185251 0.966863 0.294108 -1.740751 0.403648 -0.138561 -0.195259 -0.011823 -0.434946 -0.317259 0.683495 -1.124292 -0.484345 0.578494 1.191458 -0.663587 0.104260 0.023426 -1.633558 2.191270 0.730601 -1.187614 0.192677 1.570226 -0.960908 1.028143 -0.380716 -1.791080 -0.124966 -0.245620 -1.158814 1.718795 0.200637 1.411893 -2.055281 1.123103 -2.091829 1.173201 -1.352946 0.784534 1.698794 -1.524763 0.386099 1.083394 1.880439 0.936377 -0.079709 1.324785 1.005048 -0.229626 0.377920 1.257814 0.292982 -0.699395 -0.749785 -1.121646 -1.477155 -0.166059 -1.264303 -2.605695 -0.110327 -0.021639 1.301310 -0.167472 0.559425 -0.376911 0.696831 -2.361254 -0.064402 0.199863 -0.248817 0.790613 0.961641 -0.696102 0.590123 -0.088449 1.826265 -1.142276 -0.075498 -0.377873 0.427335 -0.679923 0.572789 -1.874012 0.520864 0.823686 -0.674424 -1.559203 -1.486582 -0.755127 1.504796 -0.027478 2.245077 2.684513 -0.714687 -1.059324 1.418752 -0.440533 0.296058 1.731112 0.417629 1.263770 -0.718634 -0.049703 -1.429856 -0.242726 -0.415480 0.239181 0.706674 -0.130141 1.036188 0.037509 -0.252730 2.052861 -0.833359 -0.915170 -1.853375 0.151889 -0.876971 -0.529098 1.987063 -1.577232 1.001980 -0.147539 1.998504 -0.766856 -1.241068 0.414793 -1.737991 -0.076294 -1.151370 -0.290941 -0.188756 1.205350 -1.644792 -0.819519 -0.449649 -0.745162 -0.255839 0.115487 0.936781 0.135836 0.363963 0.602546 2.340780 2.032478 0.922547 -0.412210 -1.482677 0.424671 0.649851 -1.139601 -0.513091 0.349965 -0.718908 0.031304 -0.222121 0.019854 0.268953 -1.492624 -0.883248 -1.187835 -0.275254 0.874866 0.524525 -2.692484 0.310047 0.422313 0.752678 1.158642 0.503100 1.968895 1.405223 1.586250 -0.067455 0.371059 -0.096902 -0.025130 0.413000 0.952812 0.650462 0.288586 1.703040 0.574121 0.107568 0.815649 1.387999 0.738956 1.030938 0.413626 2.261767 0.365629 0.016107 -0.430241 -0.135407 0.997923 2.674553 -1.055923 1.459802 0.782577 0.939281 -0.237827 -1.528246 0.083862 -0.754965 -0.051616 0.433586 -0.005078 -0.207512 -0.478575 1.368183 0.336418 -1.883514 0.391323 0.031453 0.339031 1.316538 -0.237485 -0.089623 0.278901 -1.533950 1.843302 0.770449 0.544266 -1.037684 0.097580 -0.156765 0.437334 0.886031 0.836429 -0.333017 0.710825 0.596509 1.487537 0.922468 0.717259 -0.979525 -0.683248 0.399295 -1.684495 -0.637256 0.033887 0.592086 -0.359012 0.446868 -1.244923 -2.216360 +PE-benchmarks/topological-sorting.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/topological-sorting.cpp__std::deque >::pop_back() = 0.918230 -1.149242 1.753199 -1.596206 -1.963741 1.770420 -2.598979 -1.037501 0.735647 0.475596 0.682584 0.037161 -0.276611 1.620457 -0.405541 -2.351140 -0.103374 -0.291990 0.762865 -0.938894 0.193405 0.340228 -0.286547 0.641573 -0.562022 -1.443195 0.082265 0.795565 1.347646 0.047445 -1.403416 -0.480231 -1.734811 2.169082 0.633069 -0.079472 1.127793 4.051462 0.853475 1.261528 -0.961143 -2.378315 0.466189 0.110019 -0.434101 1.451160 -0.866772 0.655697 -2.247734 0.245104 2.231727 -0.500880 0.730667 0.597582 0.683426 -0.136148 -2.896516 0.590082 -0.599286 0.052992 -0.201234 -0.653838 0.255767 1.423600 -0.837118 -0.738875 2.104021 2.299757 -1.195771 -0.505532 0.138038 -2.452042 3.060027 1.327140 -0.944159 0.001101 2.885880 -1.286660 1.817755 -0.010946 -3.488540 -0.155032 -1.100696 -3.446864 3.336979 -0.432375 2.233487 -3.318906 3.034002 -3.688724 1.515401 -1.572407 1.211679 2.484837 -2.585206 0.350164 2.233209 4.129574 1.330292 -1.200330 2.749489 0.973816 -0.927433 1.385276 2.002952 -0.228252 -0.895151 0.042024 -1.943861 -2.406913 -0.403220 -2.355085 -3.577952 0.479139 0.054499 1.015559 -0.359184 0.836146 -1.040653 1.458476 -3.782048 -0.532866 -0.124706 -0.380726 1.021108 1.146553 -1.433926 1.085542 0.178001 3.257919 -2.535701 -0.391788 -0.212392 0.625911 -0.059877 1.806302 -3.450305 1.381351 1.907376 -1.349225 -2.623406 -1.602202 -0.988119 1.447222 -0.123825 5.404902 4.479136 -1.209621 -1.627066 2.325247 -1.175248 0.385184 3.591818 0.529168 1.833532 -0.880477 -0.872335 -2.416448 -0.678941 -0.749490 -2.254427 1.288898 1.356239 1.961129 0.736162 2.874563 3.432796 -1.521113 -1.975834 -2.112637 0.771194 -1.425118 -1.314572 2.439070 -0.522328 0.957589 2.254419 3.561672 -0.665221 -1.933578 0.769702 -1.875727 -0.083150 -1.340108 -0.464953 -0.997033 1.480473 -1.699602 -1.379584 -1.156319 -1.046228 -0.486335 -0.073778 3.926081 1.562197 1.344612 0.998934 2.889490 4.116787 2.062613 -0.842016 -2.631720 0.556419 1.713611 -1.984935 0.600366 -0.031635 -1.036087 0.527301 0.585232 0.039087 1.214179 -2.731362 -1.639086 -2.346731 0.791932 1.702045 1.603347 -5.336304 0.503793 0.784517 0.943872 1.893622 0.861519 2.909905 2.477356 2.987407 -0.209425 0.676445 0.813834 0.597583 -0.676034 1.280139 2.405680 0.569210 2.695710 1.029281 0.844744 1.484982 2.600194 1.193224 1.587135 -0.135528 4.064781 -0.083210 0.198282 -1.700375 0.180356 1.814742 4.456023 -1.601469 2.542948 1.198771 1.898249 -0.151723 -3.470114 0.804071 -1.411762 1.863311 -0.985594 0.612795 0.254755 -1.262431 1.812689 0.777528 -3.210893 1.238153 0.079541 0.693120 2.668548 -0.219770 -0.183942 -0.352166 -3.232553 2.971782 1.966262 0.692997 -1.722710 1.708904 0.040377 1.671445 -1.401067 1.824990 0.269346 2.115415 0.773715 1.496592 1.907137 0.572694 -2.045704 -1.942468 1.147328 -3.162841 -0.724719 1.534449 1.230560 -1.684337 1.499686 -1.339405 -3.281534 +PE-benchmarks/topological-sorting.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/topological-sorting.cpp__std::deque >::_M_pop_back_aux() = 0.974669 -1.461739 1.905192 -1.908787 -2.578135 2.615678 -4.035521 -2.051347 0.782826 -0.682803 1.162549 0.063182 0.849882 1.771904 -0.555926 -2.552360 -0.772355 0.131950 0.666786 -1.131071 0.047891 0.040934 -1.122577 1.001084 -1.273395 -1.802464 0.680549 0.608426 1.077273 0.404575 -2.108812 -0.872733 -2.386426 2.959599 1.701521 0.117404 1.723074 4.947593 1.597742 0.886484 -0.590916 -2.736865 -0.132975 0.157218 -0.777157 2.537541 -1.494878 0.432544 -2.724521 1.181526 3.012793 -1.016788 0.812211 1.475906 1.166680 -0.773838 -2.834452 0.456626 -0.389181 0.031238 -0.481517 -1.181059 0.354723 1.752230 -1.481384 -0.615207 3.160482 3.717729 -0.416399 -0.581880 0.188067 -4.019429 4.113826 1.746927 -1.144473 -0.441962 3.431898 -1.968723 2.145254 1.361001 -4.622459 0.053753 -1.323038 -4.668994 4.305941 -0.667555 2.804075 -3.754068 3.929550 -4.902985 0.993929 -1.687984 1.349662 2.833664 -3.831554 -0.141452 2.923275 6.105425 1.541161 -1.410984 2.918379 1.043709 -2.108826 1.533796 2.956521 -0.482530 -0.460108 0.199907 -2.254790 -3.175308 -0.592097 -3.090122 -4.914134 0.703223 -0.115691 0.971787 -2.015719 1.651576 -1.174617 2.015262 -4.183605 -0.798558 -0.464631 -0.445555 1.293975 1.299092 -1.861057 1.811517 0.074798 3.611481 -3.128833 -0.842698 -0.885171 0.618705 -0.222671 2.623817 -5.454229 2.075909 3.041103 -1.742446 -3.309742 -1.348739 -1.635369 2.201622 -0.002487 6.933791 5.326433 -1.971712 -2.176863 2.939042 -0.821345 0.153579 4.978841 0.899732 2.131238 -0.896026 -0.705628 -3.243976 -1.100194 -1.826624 -5.090077 1.449807 1.962770 2.555647 0.904830 3.919278 6.043375 -1.966351 -2.808082 -2.191072 1.183284 -1.467899 -1.812761 3.302858 0.058748 0.970089 3.342287 4.168636 -1.220699 -2.039040 0.570685 -1.879852 0.009330 -1.328177 -0.326744 -1.633117 2.505507 -1.580798 -1.685373 -0.685589 -1.392904 -0.625349 -0.218874 6.832246 1.761895 1.753468 1.342435 2.627539 6.020165 2.767778 -1.099389 -2.723790 0.901089 2.518582 -2.659364 1.602788 -0.332086 -1.340519 0.506431 -0.407027 0.306601 1.611783 -3.833813 -1.675801 -3.329952 1.485265 2.632729 2.627483 -6.901713 1.138659 0.410941 1.065127 2.355302 0.597933 3.680905 3.619775 4.401904 -0.859895 0.930872 0.843032 1.047335 -0.973229 2.074143 3.625403 0.551696 3.725309 1.239519 1.142380 1.136344 3.222083 2.458998 1.949286 0.031388 5.480485 0.184547 0.737488 -2.528290 0.409828 2.349440 6.002724 -1.972262 3.673205 1.023988 2.552891 -0.583354 -5.092640 1.017249 -1.297294 2.242912 -2.109221 0.683128 0.335748 -1.821670 2.483866 1.061348 -3.381319 0.809683 0.317925 0.650862 3.369787 -0.482953 -0.300468 -0.544496 -3.650436 4.447171 2.514764 0.741860 -2.105618 2.166247 0.108895 1.978924 -2.248993 2.191690 1.740958 3.943166 0.890654 1.712296 2.476164 -0.059663 -2.831209 -1.908423 1.734773 -4.088683 -0.675081 2.506556 2.123611 -2.231889 2.190821 -1.593475 -5.050970 +PE-benchmarks/topological-sorting.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/topological-sorting.cpp___GLOBAL__sub_I_topological_sorting.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__minCoins(int*, int, int) = 2.286334 0.779311 2.443157 -3.399693 -0.744459 0.977279 2.489353 -2.716687 0.441931 8.315539 2.078827 -1.673306 -3.556641 3.888148 -0.828802 -3.276770 2.775398 0.282336 0.094275 -1.346553 -0.674577 1.622549 -0.653069 -3.088711 2.517051 -1.575420 0.853432 3.204333 -0.023720 0.931381 -2.550457 -0.784407 0.256245 6.899775 -0.341786 0.810571 -1.160967 6.416376 -6.671956 6.590945 -7.356896 -6.796567 7.068502 0.873355 0.398510 -4.078224 -0.259973 2.502694 -0.816913 -5.066709 0.745019 -2.103228 2.076668 -4.280826 0.032873 6.001531 -7.571153 -0.043304 1.029527 -3.160133 -4.978544 -1.017114 3.775422 1.309396 -4.388559 -4.498170 1.515526 0.321446 -3.069777 1.179566 -4.401345 -7.359469 3.055496 1.724131 -2.728366 1.554739 -0.547818 -5.658190 3.243770 -1.184608 -2.973850 -2.367648 2.006910 -2.202634 2.296889 2.548483 5.564201 -9.354155 0.985795 -7.153529 5.238577 -3.748719 6.440258 5.511188 -2.421325 2.887484 2.161949 4.509926 1.205830 -1.199795 6.151140 2.568589 3.480777 -1.232313 3.772235 4.450557 -5.898897 -5.570088 -4.110710 -4.043484 1.526522 -2.218566 -6.574998 0.317421 -5.639755 -0.369785 2.495844 -2.301282 -1.473673 6.524137 -10.198624 -1.807072 2.036966 -1.211414 4.614279 5.002278 0.563904 0.568952 0.692399 5.305694 -1.261021 -0.469263 -1.876438 3.455848 -3.274763 -2.383618 -1.239905 0.126484 2.019187 -5.847899 -6.396549 -8.999950 -1.724289 3.908010 -1.538405 4.751659 9.942018 -2.127502 -5.242653 3.318968 -2.210019 -0.231048 5.428009 1.169624 8.874098 -8.008699 4.123584 -1.752606 3.025215 3.071372 8.014417 -1.349699 -3.739338 2.926729 -0.821755 -2.539861 4.462442 -0.977046 0.752211 -2.425104 1.168499 -1.921421 -1.838728 6.087558 -6.718125 6.074795 -3.756800 8.119662 -5.985458 -4.231798 2.595004 -7.098867 -2.918969 -5.066326 -2.220570 -0.400611 5.358980 -5.268661 -3.237287 -3.465071 -1.668621 0.513409 5.306409 -5.240792 -0.175798 -1.790614 -2.401795 6.223902 2.545757 -0.842868 -0.150300 -5.266584 0.819050 3.732937 -1.020197 -6.980653 -0.616729 -5.047875 -0.962851 0.967350 -0.679153 4.196565 -3.487807 -2.680689 1.541695 -1.400290 -0.031146 -3.111799 -7.122132 1.967299 -1.240370 0.597796 2.137995 7.478200 5.317918 4.488234 0.263242 -1.560682 1.583838 -3.859380 -5.368630 2.718842 0.196258 2.737731 2.759461 4.045712 1.138961 1.769358 3.820859 0.541014 1.228603 5.966781 1.934795 6.181546 -1.344449 0.289965 2.114280 -3.702671 3.450058 6.397392 -1.658427 -1.703141 2.952473 0.493993 -3.292491 -2.250983 -0.636663 -2.372948 -2.760883 3.471890 2.961479 -1.309237 -3.178686 9.592475 1.053600 -10.564718 4.871766 -0.409105 2.115453 4.998267 -2.770587 2.319016 2.893636 -0.472208 3.431806 2.061980 5.169301 -5.818944 0.053080 -0.353414 4.408583 4.594044 -1.455746 -11.079012 1.491717 1.276204 7.250781 3.230510 7.300170 -3.256711 2.465523 -1.906415 -2.857831 -0.420115 -2.026305 3.892264 -0.932889 -0.300194 -9.911507 2.024980 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.491882 0.322953 0.274994 -0.710253 -0.906049 0.318848 -0.605452 -0.496920 0.094978 -0.114510 0.548559 -0.676382 -0.476510 1.024055 -0.517586 -0.829165 -0.101619 -0.510287 -0.083041 -0.145241 0.008862 0.254845 -0.162441 -0.024082 -0.069303 0.000000 -0.177666 0.250978 1.142702 -0.487943 -0.982881 0.039065 0.049397 0.998484 0.264898 -0.488286 0.527365 1.411393 0.048823 0.249715 -0.895487 -0.484002 0.460303 0.147426 -0.297170 -0.922919 -0.746317 0.457697 -1.189538 0.361014 0.737960 -0.249558 -0.182267 0.010667 0.296983 0.938799 -1.784592 1.453322 0.174198 0.581557 0.262949 -0.291178 0.152679 0.077966 0.364256 -0.532174 0.405623 0.607665 -0.752405 0.055864 -0.405825 -1.029252 1.591976 0.279501 -0.666101 0.015332 0.259344 -0.917437 0.588971 -1.162626 -0.905957 0.144671 0.267948 0.201986 1.127804 -0.032410 0.009857 -1.342909 -0.053317 -1.436472 0.368591 -1.013809 0.585950 0.922637 -1.291744 -0.059914 0.211484 -0.108551 0.917241 0.395739 1.035186 0.265318 0.188663 -0.148171 0.337284 0.267391 -0.021164 0.050929 -0.165019 -0.919337 -0.577984 0.194485 -1.932982 0.163373 -0.525122 0.557209 -0.033763 0.008678 -0.077505 0.231175 -0.768355 -0.933865 -0.151686 -0.122172 0.840034 1.215619 -0.315088 0.451453 -0.457237 1.133140 -0.039418 0.110432 -0.354585 0.151538 -0.117025 -1.681447 -1.776121 0.286804 0.662118 -0.563238 -1.170059 -0.893481 -0.086283 -0.484022 -0.275392 1.009015 1.514352 -0.309646 -0.865711 1.144405 0.200797 0.472854 1.723705 -0.114533 1.574714 -0.765772 0.365308 -0.118410 -0.114000 -0.592752 -1.000151 -0.058201 -0.121739 -0.014617 0.248107 -0.553411 0.423119 0.040735 -0.485628 -0.143825 -0.090693 -0.397705 -0.839947 1.226141 0.406775 0.698108 0.409770 1.433206 -0.628097 -1.346797 0.633685 0.111227 0.248140 -0.039269 -0.435233 0.172453 0.699337 -0.808940 -0.451114 0.044623 0.123120 -0.487682 0.330651 1.323444 0.137534 0.167767 0.326345 0.413608 1.291646 -0.084815 0.674420 -1.083423 0.228195 0.803946 -0.418962 -1.226862 0.300692 -0.686862 0.052361 0.540859 -0.219762 0.226592 -0.466434 -0.844921 -0.198397 -0.196345 1.046312 0.303942 -0.598591 0.376862 -0.707463 0.043531 0.419172 0.718541 0.966541 0.761293 0.713448 -0.270156 0.323656 -0.189968 0.681576 -0.154210 0.381200 0.412979 0.376983 0.763403 0.243070 0.049625 0.450181 0.593889 -0.276643 0.776957 0.547188 1.409653 -0.319139 0.119356 -0.445945 -0.577585 0.807491 1.980288 -0.999414 0.052262 0.360937 0.653826 0.263080 -1.396075 -0.170331 -0.414149 -0.525823 0.375772 -0.132702 -0.087726 -0.260475 1.106364 0.080462 -1.048928 0.819451 0.069426 0.078769 0.180686 -0.203480 -0.375066 0.363660 -1.181865 0.501113 0.615403 0.729087 -0.365431 -0.526931 -0.166114 0.745328 -0.426791 0.403813 -0.500012 0.510954 0.965278 1.001590 0.904217 0.084817 -0.553189 -0.949236 0.152548 -0.327494 -0.266235 -0.019520 0.559809 -0.961358 0.196511 -0.002535 -0.962762 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/largest-independent-set-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/largest-independent-set-problem.cpp__max(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 1.817386 -0.385721 4.033958 -4.524223 -4.326572 2.785902 -2.325679 -4.090286 1.293504 6.069174 1.967553 -1.399519 -1.911495 5.656409 -2.587500 -4.725675 0.327631 1.405361 1.343975 -2.542695 0.758314 2.149336 -1.165036 -0.677709 -0.316159 -3.364344 1.676249 2.478603 1.200446 2.722782 -3.179415 -1.967042 -1.375009 6.846644 1.468656 1.878364 -0.373492 8.336867 -3.121977 7.538205 -8.128172 -8.077861 3.702636 1.153037 1.082357 -4.348920 -2.775704 1.237373 -3.204084 -1.559911 2.882355 -2.203521 2.406239 -0.743722 2.132096 1.983377 -7.211775 1.057811 -0.348305 -3.291955 -2.194599 -1.616554 1.864558 3.579631 -5.007838 -2.985924 2.470353 4.896224 -2.609508 1.423831 -1.624123 -7.641632 5.503024 2.569464 -4.683950 0.168367 3.684881 -6.052248 4.024546 -2.396056 -6.207554 -1.471000 0.104445 -3.812785 4.180448 2.144261 7.273939 -9.549994 3.896047 -8.925805 5.205391 -4.192792 4.931938 5.843941 -4.665044 1.633719 4.392489 7.911053 4.763536 -1.313187 5.728947 5.078504 1.779628 0.519197 5.204332 3.674493 -3.710151 -3.904952 -4.376958 -5.774271 -0.016048 -4.757133 -10.461129 -0.371716 -2.152028 1.436921 -0.707672 -0.689029 -1.562981 6.255719 -12.235551 -2.583431 1.460878 -1.053174 3.448114 3.440418 -1.323480 2.719979 0.629727 6.886290 -4.263349 -0.620791 -1.382098 2.668695 -4.995361 -0.314831 -6.585661 2.367817 3.064430 -4.695938 -6.825085 -8.100873 -3.343939 6.000392 -0.357577 7.494617 10.953715 -3.075122 -6.525376 4.576537 -2.013637 -1.973898 7.734117 1.816181 6.869872 -5.177085 1.690523 -5.137899 0.576836 0.208111 5.750552 0.997311 -1.497981 4.574765 -0.747844 -2.693619 5.431302 -3.506834 -2.526729 -7.345663 1.124784 -3.377956 -0.435994 6.711450 -8.764338 5.243200 -3.407512 8.086229 -5.494795 -5.336749 1.146655 -10.939191 -1.892337 -3.716944 -0.340585 -0.844184 6.685706 -6.833657 -3.595917 -2.563946 -3.754826 -0.132855 2.885855 -2.543903 0.399516 0.811804 0.376993 10.195920 6.823118 2.727783 -1.137955 -4.483303 1.774548 4.380568 -2.070926 -5.878933 -0.420074 -4.817235 -0.213454 -1.597601 0.056839 3.318968 -4.983223 -2.905832 -3.059590 -2.157592 2.401512 0.270893 -9.204336 2.382892 -0.791944 3.413896 2.366056 4.578608 6.831563 6.260961 4.607415 -1.438788 2.143719 -3.813928 -0.818523 3.094772 4.897471 0.211906 1.703713 7.708143 1.772348 1.494343 4.540621 4.824760 2.870801 5.125876 -0.086514 8.354900 -1.704107 1.407429 -1.275035 -1.282976 3.796318 10.937477 -1.055235 2.964888 2.733800 1.699148 -1.964526 -4.909184 0.383452 -2.614546 -0.769311 2.382773 3.721019 -1.147303 -3.235342 7.749433 2.317370 -9.106471 3.828928 0.018256 1.397621 5.895023 -2.724437 0.169539 1.728740 -3.218210 6.533116 3.523138 3.437344 -5.718859 -1.300664 -0.544532 3.530880 5.484396 1.506060 -6.544019 3.582492 2.983351 7.354176 2.891364 6.542545 -4.930654 -0.913943 0.805344 -5.232929 -2.131280 0.202873 3.459979 -1.809135 1.356776 -6.544431 -4.858496 +PE-benchmarks/largest-independent-set-problem.cpp__newNode(int) = 0.223375 0.021244 1.102916 -1.085291 -1.505314 0.422153 -0.439441 -0.610929 0.323233 -0.121991 0.753848 -0.684216 -0.322735 1.620681 -0.536543 -1.064264 -0.203469 -0.192030 -0.087961 -0.388182 0.199561 0.515573 -0.262149 0.277408 -0.102963 -0.468379 0.044389 0.882650 0.808562 -0.087197 -0.831406 -0.241559 -0.203356 1.455169 0.241353 -0.104608 0.531631 2.389605 -0.612532 1.231211 -1.107681 -1.070759 0.724176 0.139419 -0.380203 -1.204045 -1.584448 0.514152 -1.316702 0.118490 1.248689 -0.041907 0.178017 0.076212 0.782929 0.786374 -2.162107 0.819622 0.122696 -0.075880 0.062171 -0.350734 -0.268998 0.376735 -0.607988 -0.591847 0.701492 0.932117 -0.457224 0.136893 0.018909 -1.671889 2.320219 0.406148 -0.798035 0.264313 1.314826 -1.490386 1.237511 -0.553499 -1.625434 -0.044285 -0.082753 -0.816257 1.736987 -0.293603 0.787498 -2.020182 0.377889 -2.110062 0.825456 -1.630425 0.569124 1.470314 -1.713542 0.406559 0.820654 1.070440 1.065570 0.208093 1.408903 0.947639 0.375026 0.365169 1.179966 0.457803 -0.488094 -0.539627 -1.245589 -1.566220 -0.237848 -0.841411 -2.913591 0.140447 0.014638 0.215754 -0.259433 0.063181 -0.031231 1.326304 -1.334575 0.258329 0.461616 -0.233480 0.280507 1.462697 -0.666809 0.433122 -0.503935 1.720891 -0.859375 0.488949 -0.294643 0.365655 -0.560503 -1.126284 -1.995834 0.454168 0.670470 -0.700842 -1.535119 -1.377724 -0.359283 0.588893 -0.246919 1.445539 2.628069 -0.708314 -1.401382 1.569539 0.960325 0.182964 1.702712 0.280301 1.798602 -0.684263 -0.174616 -1.279605 -0.538080 -0.448981 -0.215793 0.517523 -0.029782 0.830453 0.221263 -1.440880 2.562951 -0.756744 -0.877014 -0.323831 0.282702 -0.832765 -0.993345 2.048951 0.202881 1.212825 0.190020 2.056743 -0.702562 -1.556334 0.449424 -0.684284 0.291770 -1.008474 -0.256342 0.201348 1.136032 -1.037383 -0.827907 -0.533678 -0.614076 -0.419266 0.200669 0.848385 0.401566 0.355815 0.676135 0.806394 2.156038 0.560924 0.253939 -1.618777 0.476086 0.887560 -0.594164 -1.479879 0.386041 -0.691535 0.054857 -0.250613 -0.054338 0.442029 -1.093794 -0.904201 -0.681889 -0.500644 0.657630 0.492406 -2.333334 0.385312 -0.369454 0.802852 0.721277 0.638743 2.210119 1.321077 1.453118 0.036011 0.344507 -0.127510 0.113539 0.185455 0.775655 0.515442 0.411356 1.778794 0.613181 0.150794 0.856022 1.281500 0.480140 1.089116 0.655107 2.338012 0.177029 -0.054226 -0.603971 -0.048928 1.180601 2.842731 -0.157353 0.754093 0.668253 1.155965 -0.197796 -2.005256 -0.045009 -0.563938 -0.150456 0.846342 0.132912 -0.436285 -0.234346 1.454198 0.237961 -1.829728 0.507790 0.106128 0.347679 0.786569 -0.153958 -0.172087 0.536875 -1.398239 1.530365 0.795140 0.751376 -1.042340 -0.633980 -0.078554 0.694341 0.380823 0.994741 -1.438725 0.911181 0.787118 1.345484 0.588324 0.937394 -1.085644 -0.923511 0.554215 -1.042472 -0.625322 0.417231 0.634110 -1.300797 0.510688 -0.989852 -1.860777 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.380293 -0.562656 2.259091 -2.117253 -4.191772 1.899972 -3.772736 -2.516434 0.577121 -0.186039 1.477286 -1.582268 -0.526321 3.700440 -2.007397 -3.078842 -1.228515 1.818515 0.875478 -1.582669 0.494127 1.053409 -0.908359 0.933987 -1.115735 -1.876944 0.450514 1.255779 2.879675 1.403529 -1.953650 -1.049659 -0.966003 3.402884 1.715692 0.503171 1.271056 5.455077 0.441572 3.043127 -3.204813 -3.091022 0.650345 0.636220 0.081181 -1.766976 -3.591060 0.606312 -5.059134 1.753488 2.881955 -0.970566 0.943135 1.375568 2.074157 0.371125 -4.442671 2.798021 -0.217844 -0.809522 0.742709 -0.937767 -1.098345 1.632260 -1.164028 -0.984627 1.215848 4.435339 -0.929126 0.269215 0.213937 -3.596545 5.471314 0.914848 -2.994416 -0.323101 3.369367 -2.417959 2.185274 -1.804261 -4.683045 -0.090847 -0.402048 -1.590221 3.695315 0.629257 2.868159 -4.712658 1.792307 -5.584846 2.205814 -2.806929 1.595875 3.280479 -4.847686 0.243189 2.841019 2.942050 3.617222 0.711544 2.870666 2.318929 -0.747731 1.147082 2.469420 0.936898 -0.184730 -0.589332 -1.985485 -3.539984 -1.281069 -2.177554 -7.118160 -0.225029 -0.031438 2.821043 -1.898789 0.838394 -0.348829 2.000074 -4.363906 -0.872693 0.143602 -0.486716 1.688450 2.005474 -1.504523 2.166858 -0.645699 4.142432 -2.992657 -0.209164 -0.898315 0.939400 -1.480998 -2.096074 -6.868619 2.035654 2.215484 -1.528522 -3.702895 -2.798731 -1.681778 2.128867 -0.081374 4.075531 5.865091 -2.073556 -3.190455 3.616963 -0.196783 -0.055639 5.475834 1.036144 3.370511 -1.068851 -0.529363 -3.447779 -1.714365 -1.757771 -1.308290 1.268889 0.092503 2.292734 0.781096 -1.585343 3.907897 -2.214422 -3.131730 -4.249700 0.481578 -1.686904 -0.672578 4.165700 -2.158656 1.785407 -0.252240 4.597829 -1.880091 -4.180637 0.485518 -3.688252 0.210421 -0.366988 0.258217 -0.108637 3.039257 -3.691744 -2.063240 -0.333494 -1.540496 -1.054132 0.219222 3.647523 0.461447 1.863933 1.640166 4.311467 5.510391 2.324872 0.008334 -2.675294 1.090075 2.303800 -1.845255 -3.215637 0.629921 -1.838377 0.269736 -1.039933 0.234597 0.988070 -2.827765 -1.660262 -3.366136 -1.288135 3.296363 2.295054 -4.056998 1.593293 -0.663590 1.941723 1.900710 0.936103 4.490296 3.705131 4.173936 0.272442 0.982864 -0.937849 2.870494 1.175459 3.997973 0.260517 0.566376 4.638085 1.414125 0.524479 1.612197 3.543760 1.829376 2.289794 0.416017 5.564688 -0.848369 1.018246 -2.246162 0.383410 2.642103 7.389509 -1.636148 2.817008 1.146456 1.925429 0.509022 -4.875060 0.514110 -1.146398 -0.345247 1.102498 1.053510 -0.179792 -1.405504 2.966228 1.020558 -3.439525 2.007660 0.493876 0.314637 1.866459 -0.579206 -1.467549 0.537721 -3.494352 3.832898 2.652400 1.421669 -2.480204 -1.452519 -0.487250 1.560716 1.947113 2.622223 -1.013221 2.350828 2.750252 3.183628 1.537856 1.176975 -2.857386 -3.383703 1.556082 -3.335793 -1.641218 0.907453 1.061023 -2.044377 1.773888 -0.290590 -6.178712 +PE-benchmarks/largest-independent-set-problem.cpp___GLOBAL__sub_I_largest_independent_set_problem.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/reservoir-sampling.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/reservoir-sampling.cpp__printArray(int*, int) = 0.516486 0.479720 0.639234 -0.906266 -0.744708 0.279102 0.182296 -0.683773 0.036282 1.578847 0.549767 -0.592942 -1.142823 1.208424 -0.450022 -1.088647 0.209673 -0.427173 -0.067794 -0.496614 -0.087497 0.552955 -0.122745 -0.395109 0.427112 -0.301954 -0.075778 0.689983 0.496555 -0.230103 -0.640532 -0.132398 0.125802 1.587558 -0.028338 0.046821 -0.006478 1.804453 -1.182616 1.277048 -1.950654 -1.694614 1.421750 0.219336 -0.001150 -1.314410 -0.257201 0.712150 -0.870338 -0.602826 0.458725 -0.339095 0.119801 -0.690425 0.247885 1.403607 -2.387197 0.984043 0.173774 -0.478269 -0.730047 -0.195119 0.596292 0.206845 -0.302811 -1.014530 0.250203 0.333835 -0.967898 0.298995 -0.692330 -1.503753 1.206924 0.369466 -0.752613 0.361249 0.104243 -1.080190 0.901141 -1.221731 -0.944880 -0.379525 0.565311 -0.173923 0.814684 0.637147 0.851270 -2.232219 0.104003 -1.784428 1.190019 -1.018644 1.263447 1.298884 -0.821206 0.569060 0.541808 0.272006 0.769636 -0.102698 1.512816 0.460784 0.916035 0.047810 0.612136 0.911519 -1.119908 -0.868625 -0.913855 -1.251962 0.090254 -0.270507 -1.812117 0.061035 -0.956158 0.287393 0.630578 -0.505536 -0.181808 1.068495 -2.312306 -0.754928 0.348684 -0.227270 1.141456 1.301699 -0.023598 0.294597 -0.070850 1.470330 -0.391406 0.154935 -0.339642 0.666892 -0.399435 -1.324271 -1.120706 0.169667 0.472729 -1.187687 -1.457951 -1.970933 -0.270836 0.486755 -0.421874 1.289443 2.536114 -0.608346 -1.447917 1.239836 -0.300085 0.155283 1.566028 0.169736 2.138722 -1.526885 0.571871 -0.393847 0.253679 0.434166 1.297281 -0.086039 -0.724567 0.525808 0.147555 -0.711851 0.422605 -0.251445 -0.248754 -0.662869 0.178720 -0.623272 -0.507843 1.367356 -0.892926 1.459374 -0.518652 1.980075 -1.291427 -1.474069 0.685537 -1.514635 -0.418352 -0.826000 -0.668007 0.073640 1.059042 -1.434455 -0.665893 -0.761359 -0.327494 -0.325761 0.937730 -0.680052 0.157074 -0.128850 -0.129133 1.496411 1.087059 -0.114649 0.199448 -1.469664 0.251866 0.884491 -0.135415 -2.021377 0.106945 -1.119292 -0.122995 0.752196 -0.302906 0.786099 -0.537621 -0.661046 0.160041 -0.579718 0.436538 -0.379316 -1.178855 0.410953 -0.514517 0.286584 0.533696 1.533073 1.381019 1.130329 0.418303 -0.088691 0.394610 -0.761877 -0.276091 0.384282 0.297607 0.467857 0.728189 1.001585 0.426310 0.360653 1.105405 0.568217 -0.133851 1.444178 0.332944 1.804529 -0.657590 0.135091 0.068592 -0.630892 0.876370 1.951731 -0.870357 -0.259375 0.752228 0.320034 -0.267278 -0.874908 -0.155961 -0.733665 -0.644791 1.036864 0.629062 -0.342186 -0.553134 2.029769 0.191558 -2.224900 1.367360 -0.018076 0.393285 0.676700 -0.492255 0.002781 0.782591 -0.836968 0.626615 0.782408 1.232593 -1.298745 -0.294914 -0.153979 1.195737 0.713558 0.187754 -2.358635 0.159906 0.741326 1.636348 0.738299 1.413134 -0.848987 -0.383848 -0.103641 -0.568967 -0.332694 -0.223519 0.772746 -0.519774 0.130733 -1.484619 -0.184393 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 1.321865 1.119144 1.591013 -2.434975 -1.307270 0.586664 0.867000 -2.066766 0.158112 5.225361 1.748396 -1.957722 -2.429289 3.279659 -1.050831 -2.743461 1.268102 -0.097692 -0.180131 -1.602097 -0.229728 1.305008 -0.327834 -2.093700 1.640491 -1.149858 0.326054 1.992589 0.824419 0.151254 -1.646518 -0.232335 0.647149 4.832348 -0.194022 0.477799 -0.654918 4.633645 -3.821104 3.930580 -5.547023 -4.903193 4.958041 0.765207 0.244032 -3.183354 -0.594845 1.880670 -1.256596 -2.542989 0.489656 -1.271836 0.897617 -2.774340 -0.013734 4.233449 -5.792536 1.528861 0.661542 -2.217230 -3.213331 -0.454040 2.286715 0.936757 -2.025951 -3.083236 0.825733 0.946790 -2.378219 0.924095 -2.664944 -4.948394 3.053402 1.009790 -1.794785 1.173299 -0.559653 -3.525369 2.380360 -1.994294 -2.177153 -1.444276 2.163421 -0.600070 1.420636 2.293510 3.556415 -6.695844 0.034470 -5.184814 3.865588 -2.596824 4.422074 3.650466 -2.308082 1.935430 1.391905 1.918370 1.850847 0.064002 4.430706 1.454539 2.610893 -0.616972 2.080825 3.190610 -3.490880 -3.388511 -2.455820 -3.177042 0.635812 -0.941029 -5.065540 0.453887 -3.975048 -0.016532 1.499086 -1.608368 -0.501200 4.108516 -6.748107 -2.392958 1.262921 -0.590971 3.439509 3.498622 0.386705 0.805958 0.160193 3.826934 -0.658260 -0.325849 -1.115536 2.354625 -1.924850 -3.235803 -2.233764 0.426437 1.450613 -4.114068 -4.363223 -6.063173 -1.127784 2.092272 -1.324178 3.274200 7.041667 -1.591177 -4.058274 2.774034 -0.777385 0.016587 4.485302 0.652971 6.744088 -5.543709 2.752870 -0.774128 1.753752 2.187928 4.744318 -0.938629 -2.581967 1.744309 0.023181 -2.248718 2.229600 -0.692059 0.194327 -1.838841 0.828137 -1.414686 -1.497241 4.034567 -3.293969 4.496493 -2.618387 5.860321 -4.551874 -3.935751 2.110573 -4.661146 -1.917732 -2.563263 -1.312424 -0.303991 3.851051 -3.948446 -2.165912 -1.885243 -1.250560 -0.146078 3.338558 -2.654818 0.078225 -0.997640 -1.512869 3.952433 2.169175 -0.644341 0.346085 -4.065664 0.453210 3.015241 -0.068572 -5.657140 -0.238322 -3.736540 -0.565291 0.928002 -0.728516 2.773067 -1.951217 -1.772694 0.780802 -1.356284 0.923698 -1.981932 -3.760442 1.603996 -1.491992 0.687473 1.242798 5.287778 4.006136 3.222608 0.328659 -0.853352 1.277077 -3.186718 -2.043655 1.823088 0.674026 1.672654 2.073082 3.326216 0.925770 1.262009 3.132769 0.545200 0.179796 4.413126 0.912585 4.916977 -1.981061 0.628554 0.818061 -2.361672 2.820672 5.496368 -1.522118 -1.860318 2.053254 0.483339 -1.605538 -2.289322 -0.654118 -1.575063 -2.098008 2.685333 2.047509 -0.853233 -2.087369 6.619661 0.949904 -7.088767 4.232128 -0.270251 1.256470 2.614332 -2.033645 0.731760 2.464227 -1.120124 1.655893 1.837232 3.830723 -4.212714 -0.779308 -0.480119 3.692136 2.713474 -0.651268 -7.315311 1.388676 1.894087 4.980644 2.201090 4.466389 -2.533130 0.364528 -1.092243 -1.591188 -0.728822 -1.032745 2.381043 -1.219865 0.099794 -5.525473 0.494865 +PE-benchmarks/reservoir-sampling.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +PE-benchmarks/reservoir-sampling.cpp___GLOBAL__sub_I_reservoir_sampling.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/min-cost-path.cpp__minCost(int (*) [3], int, int) = 2.001502 0.707922 2.091608 -1.781187 -0.669146 1.032908 0.527300 -2.382701 0.810353 5.392853 1.245645 -1.187916 -0.901308 2.348066 -1.769892 -1.402240 1.554200 0.983850 0.442905 -1.424051 -0.190544 0.646831 -0.463658 -1.748611 0.904897 -1.398783 1.407766 1.236169 -0.671464 0.881045 -1.766529 -0.480932 0.355267 4.207850 0.300342 0.499787 -0.900394 3.038994 -2.209052 3.868055 -5.493893 -3.584720 3.338980 0.852958 1.134996 -3.189742 -0.396774 1.182393 0.350827 -2.430917 -0.114367 -2.027514 1.483666 -2.254166 -0.441610 3.180965 -3.863474 -0.105128 0.336311 -2.516513 -3.035853 -0.195183 3.105654 1.577153 -2.628045 -2.596321 1.227413 1.907418 -1.941366 1.469396 -2.597059 -4.973136 1.800424 0.588715 -2.394220 0.294614 -0.469464 -3.393933 1.708920 -1.121960 -1.575313 -1.521483 1.496628 -1.349158 0.597443 1.662834 3.989323 -5.552351 1.178658 -4.409325 3.364641 -1.845715 4.187506 2.574386 -1.315303 1.244850 1.410973 2.844500 1.433856 0.257163 3.375217 2.028407 1.786246 -1.457636 2.328135 2.575126 -2.635589 -3.178500 -1.721962 -2.459132 0.435836 -0.671349 -4.312426 -0.146759 -3.764901 1.076655 0.531842 -1.101251 -0.398038 4.499954 -6.545146 -2.136763 1.183775 -0.642008 2.803534 2.701926 0.595608 1.150676 0.618111 3.057215 -0.949611 -1.441454 -0.969472 1.826011 -2.816664 -1.874329 -1.762926 0.384360 1.508295 -3.333764 -3.965765 -5.244158 -1.741918 2.824552 -0.752588 3.219715 5.469905 -1.014945 -3.538848 1.151115 -1.101470 -1.530703 4.188327 0.913956 5.779284 -5.464024 3.117272 -1.487037 2.412222 1.892555 4.854736 -1.386444 -1.946565 2.140828 -0.486421 -2.373238 3.313751 -0.839336 0.620331 -0.841429 0.544646 -0.286356 -0.496836 3.047247 -4.127340 3.704271 -2.995597 5.312162 -4.379956 -2.959628 0.879542 -4.614617 -1.661201 -1.151080 -0.119936 -0.566605 4.481612 -3.315956 -2.091833 -0.796554 -2.114615 1.115632 3.529026 -2.305150 -0.223058 -1.048148 -2.426483 5.009037 1.301571 -0.396755 0.000000 -2.464551 0.293816 2.503183 -0.188999 -4.173376 -0.906238 -3.697645 -0.462135 -0.755617 -0.202733 2.722223 -2.543741 -1.409753 0.227570 -1.316510 0.413646 -2.036425 -3.401923 1.486355 -1.645744 0.644028 0.269419 4.486141 3.189896 2.924173 0.178254 -1.722875 0.964262 -3.616173 -2.142848 2.104761 1.511873 0.739859 1.182564 2.851298 -0.023271 0.978700 1.956993 -0.225178 1.484983 3.372396 0.213272 3.282121 -2.741455 1.431756 0.632013 -2.393849 2.201246 4.547295 -0.949715 -1.229254 1.205804 0.200161 -1.858053 -1.964273 -0.481924 -0.872647 -1.644242 1.625285 2.903212 -0.429481 -2.458859 5.778323 1.582463 -5.921898 3.354800 -0.464751 0.389165 3.335125 -2.199522 1.238915 1.456984 0.789985 1.215887 1.119276 3.200857 -3.877801 -1.088775 -0.389714 2.806622 2.519774 -1.127727 -6.717114 1.199983 1.454813 4.590171 1.563227 4.672240 -2.540874 1.535809 -0.888089 -1.724623 -0.664403 -0.640837 2.348540 -0.586792 -0.128994 -5.304618 1.290959 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 0.835847 0.371756 1.116604 -1.508597 0.224626 0.218154 1.590468 -0.493278 0.747282 3.230389 0.454703 -0.259188 -1.629181 1.674385 -0.448046 -1.007074 1.586217 -1.769206 0.237546 -0.137077 0.146877 0.879646 0.163745 -1.138070 1.148701 -0.455677 0.062144 1.147888 -0.496173 -0.576630 -1.069270 0.008459 -0.016172 2.152300 -0.602314 0.276420 -0.258654 2.045334 -2.552670 3.033962 -3.275561 -2.250121 2.342921 0.193128 -0.074748 -2.129038 0.447940 0.536245 0.061543 -1.612647 0.209005 -0.759235 0.474493 -1.621303 0.126104 2.438938 -3.116649 0.186851 0.014184 -0.452767 -1.215250 -0.385712 1.387279 0.440302 -0.989742 -1.324774 0.758852 -0.424936 -2.050463 0.807033 -1.141401 -1.869562 0.825738 0.801066 -0.848760 0.700170 -0.065668 -2.243618 1.163377 -2.179799 -0.532757 -0.763592 0.914652 -0.552803 0.824711 0.605801 1.598382 -3.129686 0.039546 -1.752279 2.085010 -1.508742 2.089279 1.683291 -0.063335 1.109535 0.296569 0.972761 0.358301 -0.456604 2.100864 1.254741 1.926898 -0.690486 1.165063 1.521285 -2.058565 -1.789629 -1.140898 -0.908314 0.238569 -0.517595 -1.930705 -0.158518 -1.768566 0.052182 1.652855 -1.002350 -0.643391 2.146597 -3.575595 -0.937251 0.534397 -0.316168 1.361271 1.803018 0.301650 -0.094605 0.367162 2.017461 -0.188567 0.218552 -0.651274 0.971016 -1.345106 -0.858432 0.159109 -0.665928 0.143191 -1.922440 -2.066268 -3.260596 -0.620094 1.135350 -0.229804 2.226017 3.182387 -0.172378 -2.023479 1.097141 -0.534064 -0.003450 1.514717 0.178781 2.438122 -2.748573 1.544199 -0.654826 1.668999 1.085722 4.332178 -0.407058 -1.123916 0.487212 -0.269305 -1.420672 0.541949 0.178752 0.702676 -0.804174 -0.220033 -1.114751 -0.910599 1.887069 -2.283985 2.492894 -1.663972 2.814497 -2.228355 -1.669255 0.948498 -2.464752 -0.610720 -1.918761 -1.059890 0.253145 1.486589 -1.933415 -1.019016 -1.361429 -0.519625 0.377791 1.667201 -2.937465 0.019800 -1.056787 -1.047970 3.202550 0.461729 -0.731876 0.204672 -1.841083 0.209332 1.169060 0.033166 -2.713390 0.228430 -1.461244 -0.281496 0.984787 -0.369455 1.120087 -1.123654 -1.334490 0.936169 -0.637051 -0.340198 -1.570003 -2.964107 0.234174 -0.207920 -0.066514 0.543521 2.207778 1.545290 0.848069 -0.479556 -0.977559 0.305581 -1.493824 -1.832797 0.639071 -0.014126 0.130235 0.692397 1.761948 0.194327 0.228369 1.565344 0.716355 -0.428922 1.809451 0.401761 1.452649 -0.753548 -0.103441 0.823346 -1.663425 1.124520 1.787140 -0.865139 -0.723958 1.214800 0.509504 -0.796857 -0.419793 -0.481033 -1.305997 -0.598730 1.710977 0.702416 -0.724460 -0.783424 3.065274 0.640029 -3.467777 1.579879 -0.213648 0.576136 1.263427 -0.947620 0.400032 1.267641 -0.841896 0.908555 0.009652 1.666193 -1.394379 -0.561944 -0.189340 1.279896 1.472911 -0.467783 -3.943734 -0.419609 0.444510 2.691992 1.482067 3.100006 -0.583785 0.806769 -1.054820 -0.727794 -0.459650 -0.743575 1.242712 -0.620825 -0.216479 -3.328063 1.188592 +PE-benchmarks/min-cost-path.cpp__main = 0.380077 0.121490 0.176142 -0.313987 -0.350761 0.235514 -0.498287 -0.255548 0.059174 -0.265476 0.181824 -0.284615 -0.329733 0.394495 -0.341345 -0.543463 -0.062745 -0.297771 -0.035008 -0.156825 -0.052986 -0.017556 -0.075873 -0.058996 -0.052306 -0.062091 -0.015241 0.093046 0.683443 -0.298431 -0.575779 0.052525 0.011833 0.586114 0.180652 -0.232293 0.380871 0.780996 0.470878 -0.025570 -0.405139 -0.291516 0.191007 0.054584 -0.170165 -0.318245 -0.245857 0.221282 -0.938890 0.431276 0.363219 -0.181103 -0.220329 -0.006354 0.099079 0.513973 -1.064488 0.967928 -0.001797 0.451633 0.127621 -0.242761 0.087880 -0.066369 0.478935 -0.267630 0.295124 0.470022 -0.607361 0.165270 -0.263589 -0.462962 0.975147 0.186862 -0.326291 -0.004594 0.185656 -0.304253 0.215580 -0.685571 -0.471266 0.044131 0.203701 0.195387 0.751508 0.019290 -0.140305 -0.708124 0.004501 -0.780245 0.160086 -0.575988 0.369570 0.480167 -0.787047 0.011663 0.100466 -0.126567 0.301385 0.202038 0.584502 0.032597 -0.044031 -0.120426 0.165742 -0.080378 0.123190 0.102762 0.070433 -0.397837 -0.495206 0.154356 -1.053174 0.034002 -0.410678 0.562359 -0.068668 0.180319 -0.120613 -0.205664 -0.548756 -0.694684 -0.197397 -0.078876 0.642156 0.523625 -0.192154 0.315956 -0.195573 0.667158 0.040124 -0.122758 -0.281149 0.020026 0.187820 -0.932093 -1.178138 0.102977 0.468118 -0.227413 -0.754969 -0.296043 -0.170986 -0.294007 -0.081054 0.740318 0.763929 -0.014124 -0.391154 0.603810 -0.139692 0.509162 1.153079 0.002525 0.758852 -0.430458 0.280391 0.041261 0.062237 -0.358568 -1.165019 -0.139304 -0.015468 -0.005534 0.270864 0.256662 0.016387 -0.031792 -0.223532 -0.148066 -0.174648 -0.221201 -0.484601 0.679985 0.364816 0.401213 0.400565 0.842317 -0.394252 -0.844356 0.301732 0.119575 0.212291 0.146410 -0.178496 -0.083849 0.344936 -0.565433 -0.364145 0.155222 0.178901 -0.174002 0.218005 1.234605 0.041890 0.051598 0.183187 0.276493 0.696081 -0.124735 0.408586 -0.631658 0.064977 0.466789 -0.230751 -0.498748 0.252286 -0.245233 0.034517 0.425797 -0.044904 0.037030 -0.225892 -0.493764 -0.158741 -0.003454 0.685357 0.211687 -0.199070 0.173753 -0.328319 -0.214618 0.273875 0.363248 0.566118 0.266070 0.328648 -0.255209 0.226334 -0.112127 0.583745 -0.209220 0.222912 0.427053 0.119128 0.294676 0.073072 -0.046746 0.133196 0.410704 -0.241285 0.363776 0.413820 0.752360 -0.318366 0.112685 -0.306140 -0.395022 0.445987 1.038036 -0.851729 0.112480 0.216150 0.470359 0.353803 -0.922314 -0.197456 -0.240807 -0.252341 0.095343 -0.146029 -0.082043 -0.123459 0.606975 0.090927 -0.481897 0.486437 0.094490 -0.063366 0.013601 -0.164018 -0.362257 0.230869 -0.745850 0.155701 0.225720 0.367288 -0.134572 -0.111014 -0.113532 0.456162 -0.582645 0.154825 0.165119 0.224510 0.556847 0.539494 0.718678 -0.237138 -0.206880 -0.650188 -0.004965 -0.250875 -0.133499 0.098385 0.352401 -0.514485 0.100899 0.191590 -0.645326 +PE-benchmarks/box-stacking.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/box-stacking.cpp__max(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/box-stacking.cpp__compare(void const*, void const*) = 1.028389 -0.073255 0.732120 -1.203349 -0.965302 0.798027 -0.486514 -1.078750 0.183889 1.019242 0.755861 -0.411491 0.542170 1.456070 -0.407518 -0.754898 0.286838 -0.296333 0.098853 -0.328020 0.007537 0.320502 -0.395875 -0.173755 -0.344327 -0.640047 0.245983 0.257679 -0.602360 0.110563 -1.116986 -0.383128 -0.432461 1.613889 0.625414 -0.338631 -0.037735 1.924209 -0.641997 1.477330 -1.291152 -1.083832 0.557345 0.179825 0.131322 -0.658300 -1.133741 0.334361 0.907810 -0.496374 0.820506 -0.631413 0.461711 -0.000329 0.190059 0.626392 -1.092208 -0.215925 0.215131 -0.529931 -0.500875 -0.264814 0.727445 0.939249 -1.353533 -0.784638 1.184113 1.314068 -0.028154 0.099827 -0.747141 -2.495478 1.295410 0.934739 -0.667350 -0.212168 0.649412 -1.737402 1.106185 0.017186 -1.602176 -0.175204 -0.297000 -1.268952 1.086671 -0.048025 1.792723 -2.184359 1.398173 -2.381462 0.783212 -1.052422 1.028477 1.337374 -0.545397 0.031088 0.970477 2.223441 1.028863 -0.057199 1.369839 1.028052 -0.041234 -0.001572 1.453020 0.834373 -0.655588 -0.710478 -0.862208 -1.279959 0.110873 -0.768517 -2.153371 0.586344 -0.528457 -0.258882 -0.622140 0.205209 -0.180982 1.971794 -1.909609 -0.809023 0.393651 -0.323258 0.582034 1.158679 -0.410967 0.661278 -0.450669 1.395334 -0.712068 0.053111 -0.295848 0.583744 -1.456213 -0.073867 -1.540509 0.794318 1.109070 -1.450289 -1.637814 -1.587907 -0.534342 1.241583 -0.502195 2.576632 2.510090 -1.008810 -1.292402 1.028263 0.844744 -0.795275 1.761916 0.283650 2.175576 -1.394228 0.449730 -1.007025 0.098902 -0.288287 0.150195 0.119201 0.114071 1.192558 -0.181430 -0.786601 3.220478 -0.695340 -0.708891 0.366782 0.441954 -0.104577 -0.679378 1.532799 -0.489424 1.025549 0.320422 2.157152 -0.988647 -0.680337 0.426736 -1.162745 -0.389608 -0.890750 0.254217 -0.365867 1.786728 -0.651822 -0.781397 -0.124660 -1.338804 -0.089049 0.708188 0.572411 0.485335 0.379053 -0.154898 1.522783 2.080641 0.761604 -0.100969 -1.161217 0.619250 1.090413 -0.759893 -0.688377 -0.498002 -1.053622 0.081977 -0.842612 -0.024320 1.035206 -1.698517 -0.767000 -0.581351 0.020272 0.554397 0.316375 -2.121017 0.610325 -0.350290 0.925825 0.268086 1.191788 1.497128 1.792034 1.389034 -0.803751 0.251153 -0.335089 -0.780646 0.326938 0.742838 0.669852 0.492012 1.717562 0.082802 0.563784 1.131769 0.517072 1.228270 1.041369 -0.155726 2.031583 -0.072962 0.318235 -0.492348 -0.586760 1.271770 2.855525 -0.091834 0.338250 0.480542 0.283237 -1.129133 -1.339234 0.317439 -0.328310 -0.134352 -0.061627 1.057045 0.112354 -1.071695 1.897168 0.571006 -2.255962 0.615838 0.179851 0.367741 2.022212 -0.547660 0.865807 0.090982 -0.317084 1.416333 1.090347 0.992795 -1.393386 -0.162235 0.029558 0.694129 0.094047 0.408600 -1.547768 1.563500 0.913019 1.528836 0.438750 1.344210 -1.522601 0.257029 0.628836 -0.795519 -0.275329 0.560263 1.149521 -1.267287 0.601252 -1.487996 -0.628987 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 8.660684 -3.055077 8.222956 -5.612010 -2.930383 7.142810 -4.559881 -12.831725 2.293344 22.378063 7.531528 -7.043983 0.865664 14.155906 -4.844261 -8.877397 5.669442 14.763557 2.705395 -4.888951 -1.271782 2.002500 -3.875893 -10.184917 3.739153 -8.106826 7.044677 7.319730 -3.728545 12.513542 -9.182882 -3.487723 -0.461934 22.134564 3.672124 4.834087 -1.372195 18.729720 -17.340714 23.133866 -19.003142 -21.435377 18.949164 4.473985 4.182239 0.327683 -6.606443 5.210923 -4.643067 -13.432194 2.687761 -9.447758 9.076528 -9.366835 0.310034 12.704200 -18.861475 -4.265704 1.487493 -12.926242 -17.249047 -3.209541 10.434301 7.912735 -18.357385 -12.466351 6.711548 13.406738 -3.497727 2.859308 -13.141944 -28.389982 14.789617 3.242637 -10.134219 1.106973 1.676635 -15.566761 9.991142 5.024817 -12.836852 -7.210826 3.419809 -11.865638 6.913279 11.368956 25.108822 -29.209129 10.949249 -26.090319 18.890180 -9.199347 20.442339 16.575850 -15.217784 5.982965 11.354416 28.458144 6.303610 0.979385 17.935084 10.121383 -0.102750 -5.058705 14.578679 13.664044 -15.781225 -17.259677 -13.059281 -13.493718 4.631791 -10.952231 -25.169984 0.264118 -17.521100 6.675829 -1.290634 -3.151646 -3.327589 22.805213 -35.135462 -3.503329 4.880168 -3.157715 14.861892 10.289961 0.107062 6.074779 2.614686 16.306269 -7.694223 -11.147153 -5.454056 10.355174 -16.647984 -1.982818 -10.515898 6.651437 10.551630 -19.604657 -20.907014 -28.067925 -7.195165 22.171337 -3.530477 20.367195 30.322830 -7.499640 -14.476001 7.515015 -6.552664 -6.194598 23.818419 6.189292 28.158026 -25.686357 13.580717 -8.745791 8.129251 7.263744 12.137408 -4.226068 -9.079021 13.894633 -0.909019 -5.200836 30.270041 -6.524891 -0.214862 -13.520832 6.474592 -1.904203 -0.262843 20.924533 -24.152304 13.455420 -12.436993 27.538920 -19.812038 -12.094283 5.442378 -27.829663 -12.318655 -11.324386 -1.896315 -6.296873 22.896317 -18.113134 -11.113866 -5.494097 -9.487046 4.580409 16.488667 -2.282741 -0.627752 -2.590535 -9.854414 22.112070 10.452036 2.677892 -3.406357 -14.000310 0.457481 14.592058 -8.984076 -17.547029 -4.157862 -17.948660 -0.993824 -7.858124 0.017038 13.865767 -19.641669 -7.156724 -3.632891 -2.738373 4.322067 -6.380075 -20.851207 8.656372 -3.312958 5.036520 8.468761 21.610501 18.954771 17.918821 5.851743 -5.391413 5.227072 -14.215331 -13.299230 13.086211 7.538774 11.235636 6.214543 17.367081 0.623101 6.365176 6.769093 0.679871 13.288813 17.671758 5.883954 20.967637 -4.343682 6.909931 2.541338 -9.396835 13.325171 24.319498 -8.523341 -0.588618 5.716327 -0.306469 -11.210765 -8.179604 -0.120210 -4.256221 -8.853956 3.541219 10.837766 0.536588 -14.206168 28.943046 7.271846 -31.410072 14.260155 -0.551005 4.484720 21.602361 -11.393794 8.566955 4.555314 3.609337 14.194934 7.992263 15.585811 -20.684501 2.519828 -1.854795 13.420558 18.097244 -3.652317 -25.214635 15.224261 6.335430 20.758431 7.857187 17.261453 -14.818931 8.524765 -6.357565 -14.487426 -0.937227 -3.795114 11.928595 -1.160594 3.613068 -29.300203 -2.507361 +PE-benchmarks/box-stacking.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/detect-cycle-in-a-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclicUtil(int, bool*, bool*) = 1.606678 0.727184 3.041909 -2.474828 -2.927710 1.769781 -0.985133 -2.704090 0.693999 6.051805 2.222632 -2.615426 -1.769181 5.416821 -1.681975 -3.123100 0.799602 0.158304 0.524042 -2.024172 -0.533284 1.669600 -0.883262 -1.170511 1.178570 -1.750472 0.355221 1.980178 0.352677 0.657609 -2.469699 -0.757497 -0.177724 6.125823 0.557480 0.208294 0.452322 7.170764 -4.496201 6.165075 -6.017632 -6.330639 4.708207 1.075516 0.494459 -1.202559 -1.476111 2.515154 -2.906893 -2.146907 2.378405 -1.541303 1.101382 -1.813239 1.140624 3.792332 -7.844009 2.383565 0.400976 -2.332758 -3.187267 -1.051756 1.779284 1.715002 -2.600599 -3.019896 1.649611 3.077149 -2.452535 0.439555 -2.380352 -6.572216 4.284691 1.337672 -2.766935 0.957295 1.446333 -3.476170 3.544983 -3.006668 -4.654098 -1.347702 1.327132 -3.019090 3.341746 2.999558 4.903420 -8.534729 2.069684 -7.554305 5.060419 -3.464684 4.817129 5.382461 -3.752604 1.848244 2.972120 4.025941 3.174073 0.187632 5.553095 2.001707 1.410081 0.483024 3.085734 4.017878 -4.297170 -3.320187 -3.952858 -4.765993 0.510009 -1.479861 -5.304762 0.282150 -3.524159 1.803879 1.025935 -0.657629 -1.321074 4.485073 -8.730291 -2.534616 1.166236 -0.915306 4.456452 4.072563 -0.568893 1.888949 -0.119445 5.649534 -2.650543 -0.759457 -1.523138 2.625277 -2.386633 -2.543526 -5.283147 1.544231 2.590604 -4.757421 -5.799143 -8.032158 -1.394069 3.471696 -1.583249 6.800345 9.927650 -2.696020 -4.497836 4.452195 -1.069698 0.163184 6.747106 1.073023 7.794521 -5.691308 2.071699 -2.393470 0.681656 1.031846 4.091584 0.245554 -1.695420 2.833302 1.207306 -0.912624 4.870365 -1.314753 -1.613304 -4.134564 1.642118 -1.669066 -1.679710 5.698516 -3.831108 3.631160 -1.663112 8.318622 -4.876893 -5.137689 2.527497 -6.229467 -1.693271 -3.120841 -1.745580 -0.603288 5.092938 -5.141641 -2.851406 -2.039914 -1.990556 -0.793632 2.515203 -0.189523 0.784643 0.109376 -0.862146 6.105812 4.760217 0.963995 0.030477 -5.703357 0.252405 3.441768 -1.639368 -5.958992 0.200577 -4.347711 -0.315011 1.024631 -0.666617 2.845189 -4.280150 -2.483801 -0.734887 -1.682681 2.279878 -0.574425 -5.931612 2.104796 -1.194262 1.659655 2.949624 5.204956 5.524366 5.173359 2.916153 -0.304953 0.782490 -2.588323 -0.816831 2.134894 2.179432 2.653638 2.413552 4.692459 1.661073 1.495182 3.073410 1.357760 0.713682 5.118330 0.715640 7.203576 -2.173459 1.601795 -0.335553 -1.916364 3.875545 7.980361 -3.490236 -0.617614 2.669214 0.814990 -1.569854 -3.263381 0.152174 -2.529062 -1.259851 1.773343 2.574698 -0.574369 -2.819183 7.517738 0.887245 -8.534855 4.689657 -0.129744 1.575061 3.996422 -1.781087 0.441198 2.061679 -2.983774 3.916698 3.366959 4.562319 -5.177195 -0.117469 -0.790299 4.313449 3.352453 0.961746 -8.034069 2.505089 2.681217 5.052004 2.762786 4.699855 -4.040723 -1.282223 -0.433886 -4.074349 -1.517677 0.026045 3.419821 -1.325944 1.949041 -5.801006 -2.180084 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 1.185438 0.386240 2.029341 -2.116195 -1.172200 0.614091 1.026595 -1.463085 0.420154 4.281221 1.232023 -1.344607 -2.224238 3.240266 -0.764098 -2.207263 1.231186 -0.401708 0.120358 -0.804790 -0.317087 1.203327 -0.380958 -1.214210 1.325980 -0.908973 0.260650 2.199466 0.232770 0.292547 -1.608524 -0.465664 -0.074451 4.177342 -0.143035 0.300015 -0.034829 4.711624 -4.206812 4.551350 -4.356332 -4.018979 3.854581 0.489743 0.009481 -2.416863 -0.940716 1.661576 -1.959871 -2.203790 1.322890 -0.862672 0.868489 -2.010161 0.774410 3.493940 -5.607476 1.000436 0.477572 -1.347041 -2.193236 -0.769418 1.320130 0.611972 -2.110742 -2.501106 0.923170 0.525414 -2.004307 0.734231 -2.065503 -4.098575 2.552307 1.042516 -1.768861 1.043901 0.727844 -3.175569 2.339006 -1.973745 -2.440793 -1.236358 0.905865 -1.665111 2.388901 1.420540 2.856199 -5.686536 0.692930 -4.577844 3.194356 -2.998202 3.261069 3.761036 -2.011554 1.796301 1.449606 2.281123 1.246437 -0.453453 3.682606 1.759772 1.875727 -0.135467 2.343367 2.554198 -3.399502 -2.959062 -2.843079 -2.726311 0.429330 -1.528809 -4.208027 0.090149 -2.508571 0.517495 1.465650 -1.028738 -0.965542 3.441783 -5.869966 -0.556187 1.107332 -0.710180 2.530601 3.207391 -0.196385 0.465647 -0.076166 3.670283 -1.141710 0.228944 -1.125074 1.851976 -1.791715 -1.952552 -1.938506 0.176916 1.218682 -3.052413 -3.998549 -5.498390 -0.938115 2.107917 -0.888938 3.636327 6.395621 -1.343267 -3.238874 2.755666 -0.760345 0.427416 3.569630 0.721155 5.006200 -4.017583 1.648300 -1.606776 0.983743 1.118253 4.087122 -0.186066 -1.884449 1.856434 0.060510 -1.786100 2.993354 -0.602007 -0.261460 -2.073930 0.633857 -1.515368 -1.323862 4.294371 -3.470806 3.432671 -1.827773 5.203977 -3.146048 -3.134710 1.623033 -4.313162 -0.984134 -3.163222 -1.627338 0.016478 2.928760 -3.518022 -2.098358 -2.204039 -0.940172 -0.166394 2.496387 -2.253198 0.102001 -0.641440 -0.556310 4.112346 2.446597 -0.148984 0.285124 -3.750368 0.621022 2.090389 -0.877564 -4.677655 0.376526 -2.513617 -0.453339 0.855453 -0.338603 1.993576 -2.514435 -1.869453 0.477506 -1.108212 0.421346 -1.113843 -4.700048 1.067355 -0.631655 0.694874 1.998118 3.776870 3.738551 2.742694 0.985705 -0.427968 0.629536 -1.793536 -2.169094 1.486450 0.629494 1.408340 1.567399 2.842164 0.997302 0.698916 2.164404 1.266786 0.259160 3.469514 1.406854 4.138654 -0.533412 0.131164 0.707672 -1.720977 2.264807 4.370248 -1.673220 -0.407311 2.034316 0.815216 -1.340717 -1.856490 -0.390532 -1.817893 -1.389246 2.322305 1.242179 -1.094961 -1.411000 5.330643 0.460777 -6.053741 2.641827 -0.031535 1.184246 2.485842 -1.189525 0.718165 1.754764 -1.636843 2.587514 1.423833 2.935649 -3.207270 -0.188200 -0.253328 2.389004 2.963141 0.158426 -6.460548 0.642715 1.133279 4.142812 1.976731 4.142784 -1.989144 0.192938 -0.734362 -2.135925 -0.681938 -0.833346 2.188753 -0.970615 0.454678 -5.008042 -0.436637 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.456324 0.663793 0.643798 -0.311950 -0.748799 -0.090793 -0.859610 -0.020737 0.126592 0.318694 -0.332162 -0.689435 -1.558084 0.791385 -1.210707 -1.342233 -0.503638 -0.531116 0.017052 -1.183504 -0.220091 0.276950 0.156909 0.128523 0.458749 -0.493753 -0.219165 0.307724 1.774129 -0.686484 -0.216628 0.205084 0.353545 1.032226 -0.335081 -0.258595 0.718261 1.599480 1.151169 -0.229969 -1.309292 -1.234501 0.570801 0.217862 0.025710 -0.854886 0.062304 0.397805 -2.987822 1.719846 0.285063 0.133864 -0.989487 -0.305228 0.536767 0.986514 -2.897400 2.931638 -0.426088 0.519256 0.073591 -0.364920 -0.262619 -0.626179 1.791969 -0.517912 -0.037055 1.078485 -1.959482 0.954459 0.034194 0.203350 1.289947 0.077523 -0.649704 0.573363 0.571254 0.378121 0.224827 -2.841050 -0.495856 -0.189463 1.247056 0.911262 1.120172 0.807986 -0.654959 -1.323651 -0.361704 -0.877851 0.633410 -1.165358 0.788362 0.947716 -1.302222 0.796140 0.034015 -1.669900 0.653841 0.415397 1.193179 -0.058587 0.597991 0.248054 -0.528297 -0.047201 0.201261 0.214238 0.216818 -0.546764 -1.354356 0.600949 -1.357301 -0.440968 -0.723699 1.689988 0.651788 0.137396 -0.353083 -0.975075 -1.777910 -1.902082 -0.242883 -0.160029 1.335156 0.464954 -0.146627 0.366779 -0.220314 1.462725 0.052374 -0.309636 -0.469314 -0.014389 0.906372 -2.382580 -2.627939 -0.435650 0.204316 -0.100026 -1.286654 -0.385831 -0.598634 -0.764022 0.012676 1.376413 1.632254 0.354854 -0.868894 1.347898 -1.302326 1.623531 2.227706 0.209161 0.999852 -0.560104 0.290390 0.081723 0.327222 0.027712 -1.468198 -0.067782 -0.385357 -0.221683 1.223457 1.430753 -2.397604 -0.361163 -0.197967 -1.807617 -0.381506 -0.621982 -0.283135 1.074921 0.082468 1.318244 -0.071066 1.580499 -0.945373 -2.504405 0.480322 -0.929845 0.585408 0.728570 -0.170863 -0.267901 0.213092 -1.748813 -0.825750 0.093338 0.389494 -0.347329 0.178705 1.753318 -0.024480 -0.241334 0.527204 1.582068 0.887029 -0.478158 0.983100 -1.624161 -0.123362 0.570373 0.164739 -1.939616 1.231562 0.136424 -0.077327 1.507714 -0.119656 -0.474600 0.334109 -0.683332 -0.410906 -0.542762 1.258098 -0.073705 0.606291 0.263281 -0.847271 -0.508339 0.484260 0.445156 1.502256 -0.218431 0.142430 -0.012154 0.427563 -0.927368 2.492827 0.117600 0.813067 0.113958 0.132273 0.602487 0.294443 -0.402698 0.347343 1.147255 -1.615691 0.647942 0.469785 1.508298 -1.833933 0.299822 -0.670729 -0.503464 0.537808 1.735774 -2.058254 -0.099494 0.850751 1.087792 1.607642 -1.660295 -0.746543 -0.741064 -0.458365 0.688757 -0.341116 -0.991005 0.440243 0.908033 0.212974 -0.620228 1.522854 0.190869 -0.422284 -1.350120 -0.161897 -1.844085 1.176539 -2.059887 -0.560098 0.072030 0.572895 -0.345631 -0.418049 -0.390473 1.239348 -0.729701 0.427347 -0.109333 -0.592984 1.436240 0.920150 1.362532 -0.261863 0.163115 -2.462090 -0.186160 -0.457179 -0.890751 0.362251 0.118890 -0.825239 0.600995 1.318598 -1.678741 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/detect-cycle-in-a-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/detect-cycle-in-a-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/detect-cycle-in-a-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/detect-cycle-in-a-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/detect-cycle-in-a-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/detect-cycle-in-a-graph.cpp___GLOBAL__sub_I_detect_cycle_in_a_graph.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__findLength(char*) = 5.009757 1.064634 2.684106 -3.792921 0.182242 2.108587 2.778032 -5.398952 0.136410 12.758258 3.673628 -3.138298 -2.481477 4.631066 -1.445311 -4.281675 5.434455 4.599711 0.722588 -3.022524 -1.648809 0.880609 -1.254657 -5.711757 3.080115 -3.376445 2.262333 3.482510 -2.003154 3.335841 -4.243292 -0.899974 0.966454 10.568269 0.663911 0.788090 -2.904644 7.558501 -8.019074 9.622940 -10.434083 -8.195763 9.878897 2.154125 2.189281 -4.961631 -1.264615 2.823686 2.229400 -7.609026 -0.238564 -4.960431 4.066126 -6.151777 -1.417903 9.629405 -7.780797 -2.297231 1.674780 -6.647763 -8.468175 -0.499816 6.861610 2.780262 -7.438219 -6.986103 2.910279 3.171084 -2.437009 2.481275 -8.958986 -13.419559 3.502370 2.745721 -4.095116 0.975280 -2.553991 -8.040172 3.609036 1.440496 -3.803115 -4.018266 3.561383 -1.861791 0.891041 4.864517 10.691574 -13.984595 1.911104 -11.427244 8.257835 -4.393736 11.372268 7.299701 -2.139573 3.377363 3.560013 6.891635 1.211346 -0.055219 8.885416 3.427094 2.953305 -3.984844 5.721707 7.077742 -7.749729 -9.165197 -4.166403 -4.645692 2.309628 -1.713923 -8.824120 1.081375 -11.306811 0.109345 1.573031 -2.549833 -1.159746 10.668847 -13.618446 -4.949271 3.140839 -1.987561 8.262147 6.855385 2.029755 2.135048 0.776182 6.902100 -0.913555 -3.005868 -3.401219 5.437379 -6.267740 -4.617594 -2.171039 1.008901 4.505492 -10.164747 -9.889154 -12.391509 -3.261757 7.329668 -2.768486 7.110044 13.646602 -3.429782 -6.545660 2.801689 -2.631036 -2.166571 9.174254 2.210537 15.553116 -14.615092 8.876890 -1.709896 6.504496 5.227028 10.738947 -3.919278 -5.690287 5.390505 -1.220503 -3.521323 9.809659 -2.399950 1.917385 -0.251771 1.967793 1.086956 -1.575445 8.119227 -9.643290 8.395110 -6.147367 12.683864 -10.019753 -5.780307 3.397381 -9.309958 -5.950754 -5.007723 -0.221618 -2.050712 10.186901 -6.896864 -5.294699 -2.760035 -4.374046 2.665845 9.042616 -5.110755 -0.948397 -2.841817 -6.451167 8.917290 2.881236 -0.634875 -0.438708 -6.785785 0.804925 5.717035 -1.741138 -9.269154 -2.359754 -8.393182 -1.275586 -2.423501 -0.641773 7.235695 -6.275247 -3.381150 1.557631 -1.753603 0.685819 -5.095274 -7.196516 4.201578 -2.380786 0.209629 1.328209 12.391935 7.423122 7.348181 -0.161992 -4.452486 2.758937 -7.195297 -8.880521 5.702528 1.129541 4.838806 3.422083 4.990189 -0.600728 2.989130 4.907789 -3.097125 4.990210 8.101176 2.209707 8.225151 -2.967089 2.420789 3.328262 -7.592705 5.791775 9.967185 -1.682982 -4.590703 3.244868 -1.080742 -6.318409 -3.739318 -0.773490 -1.564781 -6.273433 3.842265 6.322677 -0.565963 -7.140307 15.301393 3.032345 -16.025715 8.113474 -0.445052 1.753312 9.673918 -5.319002 5.194116 3.553601 3.326437 3.132588 2.967201 8.935463 -9.727015 0.109963 -0.935394 6.198439 6.270057 -4.584089 -16.604028 3.891522 3.532042 11.259466 4.376387 10.787042 -5.770525 6.160868 -3.317192 -3.588355 -0.283571 -3.053815 6.117803 -1.450482 -0.256997 -14.432701 5.365913 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp___GLOBAL__sub_I_longest_even_length_substring_sum_first_second_half.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/strongly-connected-components.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/strongly-connected-components.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__Graph::DFSUtil(int, bool*) = 1.192989 0.637377 1.666744 -1.547270 -2.688976 1.307119 -2.144803 -2.005551 0.298187 2.920588 1.370681 -1.887651 -1.076805 3.469171 -1.604357 -2.520198 -0.435835 0.169104 0.311724 -1.562071 -0.231060 1.069421 -0.628456 -0.176258 0.207933 -1.063552 0.001711 0.807568 1.447438 0.081222 -1.785397 -0.419866 -0.194100 3.646786 0.650080 -0.191398 0.824037 4.647946 -1.397686 2.614619 -3.735474 -3.831725 2.136509 0.747912 0.321492 -0.703899 -1.300744 1.519794 -3.076258 -0.012299 1.798675 -0.881856 0.153787 -0.395684 1.044970 1.882338 -5.344240 2.961929 0.136736 -0.856115 -1.272260 -0.584954 0.876796 1.070377 -0.552402 -1.810062 1.050974 2.886394 -1.710941 0.243519 -1.026153 -3.890573 3.380867 0.708617 -2.055171 0.343810 1.233831 -1.760973 2.216991 -2.802487 -3.316552 -0.447313 0.937011 -1.478241 2.440026 1.863761 2.503888 -5.131594 1.623786 -4.861775 2.765134 -2.112160 2.634537 3.238295 -3.212542 0.648141 1.954929 1.957331 2.928309 0.407129 3.461276 1.043781 0.412655 0.579859 1.379241 1.986010 -1.783528 -1.073219 -2.019714 -3.382080 -0.401295 -0.697801 -4.216604 0.216332 -1.739461 2.031110 0.185182 -0.197453 -0.570513 2.035334 -5.443158 -2.504358 0.213642 -0.447611 2.895334 2.481454 -0.687151 1.589952 -0.388222 3.720459 -1.762744 -0.685563 -0.752024 1.298914 -1.126765 -2.379983 -5.017859 1.399897 1.909973 -2.651745 -3.515308 -4.285125 -0.822220 1.403939 -0.913750 4.739382 6.148043 -1.788567 -3.021717 3.249114 -0.963806 0.215019 5.190982 0.488473 4.831354 -2.970556 0.841983 -1.461819 -0.178704 -0.082062 0.120192 0.416539 -0.648146 1.509118 1.173656 0.057230 2.025801 -0.861755 -1.668361 -3.090591 1.004337 -1.043158 -0.853389 3.376595 -1.741106 2.113197 -0.238342 5.062446 -2.817920 -3.789106 1.560360 -3.730746 -0.745595 -0.773213 -1.076847 -0.483048 3.058967 -3.405174 -1.540054 -0.826782 -1.151893 -1.047369 1.166321 2.017412 0.744260 0.610590 0.124343 3.940182 3.862726 0.894156 0.375381 -3.592427 0.291812 2.413257 -1.269916 -3.717731 0.295308 -2.688134 0.045458 1.027898 -0.573192 1.509133 -2.426969 -1.642288 -1.299444 -0.955105 2.538170 0.351063 -2.678630 1.423687 -1.376518 1.229795 1.828411 2.759204 3.490003 3.410110 2.544813 -0.100634 0.773772 -1.551255 1.513051 0.969606 1.968752 1.512272 1.464211 3.042689 1.068233 0.879212 1.841364 1.491330 0.114757 3.156073 0.192763 5.058896 -2.024079 1.316358 -1.180740 -0.891312 2.454071 5.874861 -3.151265 0.244397 1.485426 0.886271 -0.132926 -2.923071 0.145216 -1.603598 -0.795972 0.647447 1.368875 -0.244607 -1.628488 4.095006 0.674165 -4.556793 3.236910 0.010696 0.611206 1.848736 -0.975601 -0.658020 1.085944 -2.817504 2.143743 2.557320 2.609946 -2.977589 -0.272235 -0.553127 3.034996 1.067376 1.276074 -3.451573 1.929242 2.523047 2.970767 1.850475 1.845265 -2.680277 -2.314232 0.343362 -2.475180 -1.154627 0.417097 1.874703 -1.343715 1.603370 -1.814746 -2.828152 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/strongly-connected-components.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator*() const = 0.445558 -0.165646 0.488523 -0.405564 -0.721509 0.220246 -0.508348 0.052503 0.150266 0.229311 0.217821 -0.200668 -0.270606 0.775796 -0.246385 -0.621746 0.079998 -0.289926 0.180074 -0.167195 0.276918 0.275849 0.308232 0.136093 -0.095022 -0.176245 -0.329347 0.193656 0.775013 -0.280423 -0.338654 0.061535 -0.148505 0.226931 -0.171070 -0.416608 0.173833 0.933009 0.104611 0.318252 -0.376512 -0.359775 0.244497 0.018616 0.059142 -0.322015 -0.611675 0.398366 -0.313408 -0.266631 0.498324 0.135583 0.090202 -0.022110 -0.026477 0.166929 -0.971716 0.497547 -0.206434 0.253635 0.377614 0.122387 -0.012581 0.351277 0.185957 -0.278442 0.250140 0.364788 -0.614340 -0.269305 0.094190 -0.212581 0.877671 0.099084 -0.214645 0.067690 0.789797 -0.240823 0.596320 -0.724626 -0.774512 0.057917 -0.427921 -0.386738 0.724901 -0.221936 0.333993 -0.868401 0.656426 -0.822977 0.620558 -0.569140 0.109905 0.578090 -0.599554 0.097258 0.459866 0.463127 0.776311 0.133027 0.853237 0.400173 0.114635 0.357596 0.249931 -0.018452 -0.198968 0.219954 -0.458312 -0.662143 -0.123424 -0.307294 -1.004245 0.221508 0.376318 0.246763 0.327552 -0.078312 0.009010 0.231902 -0.731216 -0.013269 0.156823 -0.048395 -0.011333 0.479529 -0.459072 0.123680 -0.231253 0.909732 -0.560937 0.160189 0.474103 0.105374 -0.095055 -0.419826 -0.527987 0.413669 0.187690 -0.224684 -0.498210 -0.607282 0.229607 -0.128539 -0.231678 0.877877 1.019134 -0.105882 -0.291154 0.550680 0.163430 0.024548 0.737745 -0.130396 0.792040 -0.154388 -0.558157 -0.280630 -0.364115 -0.013924 -0.325571 0.405743 0.350999 0.312220 0.174332 -0.319034 0.470580 -0.370883 -0.476779 -0.188581 0.164189 -0.368869 -0.278959 0.416613 0.247140 0.142806 0.544122 0.885795 0.247725 -0.600093 0.377118 -0.218089 0.052680 -0.182032 -0.069122 0.006035 0.125811 -0.452229 -0.212126 -0.386028 -0.308457 -0.259761 -0.055411 0.371450 0.591850 0.517384 0.355648 0.487228 0.719793 0.460038 0.101707 -0.839921 0.036865 0.334193 -0.379473 -0.461981 0.088258 -0.361358 0.338884 0.415535 -0.187393 0.175315 -0.375554 -0.636364 -0.466675 -0.154633 0.328415 0.274807 -0.531141 -0.174820 0.132621 0.568491 0.240553 0.378160 0.681733 0.453010 0.609630 0.305090 0.161702 0.388469 0.278449 -0.186685 0.100988 0.148626 0.213805 0.431085 0.212728 0.176067 0.676911 0.524555 -0.096783 0.337855 -0.045272 0.820836 -0.110941 -0.139552 -0.473615 0.041155 0.513207 1.156664 -0.173430 0.348362 0.307403 0.322063 0.187597 -0.573619 0.234924 -0.357809 0.251178 0.166051 0.191101 0.271880 -0.153670 0.082858 0.109370 -0.844775 0.610982 -0.092959 0.241324 0.625447 0.111567 0.059931 -0.178448 -0.836683 0.199096 0.597746 0.226404 -0.352026 -0.034711 -0.031213 0.452347 -0.281806 0.668583 -0.481370 0.352856 0.511348 0.266112 0.078147 0.115059 -0.555442 -0.944970 0.333621 -0.435120 -0.271711 0.211877 -0.045217 -0.631014 0.113919 0.069649 -0.514974 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/strongly-connected-components.cpp__Graph::getTranspose() = 1.276118 0.126182 1.577210 -1.825262 -2.067591 1.223938 -1.847768 -1.838646 0.483372 3.010400 1.004513 -1.393654 -1.543027 3.086816 -1.274603 -2.778696 -0.043603 -0.023050 0.403146 -1.210757 -0.346412 1.012181 -0.697672 -0.266245 0.398869 -1.143968 0.053828 1.054281 1.464342 0.028224 -1.899844 -0.483503 -0.635654 3.808368 0.396913 0.118113 0.768186 4.785336 -1.313688 2.857891 -3.553088 -3.927489 2.187775 0.571460 0.133456 -0.429155 -0.748167 1.455365 -3.218695 -0.256928 1.742972 -0.829920 0.208311 -0.640265 1.036980 1.841654 -5.319961 2.440787 0.079977 -0.544044 -1.345392 -0.860825 0.992685 0.942962 -0.981100 -1.946298 1.223129 2.393303 -2.115527 0.313040 -1.259353 -3.763727 3.130860 1.185349 -1.992509 0.505389 1.417172 -1.954008 2.122028 -2.517292 -3.229126 -0.605062 0.743061 -1.934598 2.892284 1.589310 2.578417 -5.068138 1.986050 -4.802354 2.577059 -2.401734 2.791989 3.558819 -2.987856 0.907536 1.952918 2.655239 2.316295 -0.274729 3.529794 1.185277 0.292345 0.527606 1.665526 1.595530 -2.019210 -1.219724 -2.001773 -3.078352 -0.561590 -1.270377 -4.334099 0.193185 -1.870281 1.993800 0.511325 0.016751 -1.058364 1.930018 -6.065538 -2.357581 0.155667 -0.550921 2.920367 2.414259 -0.640451 1.185845 -0.199304 3.759227 -1.655034 -0.640105 -0.975149 1.346622 -1.009028 -1.181353 -4.386963 0.882740 1.859595 -2.554945 -3.785685 -4.118347 -1.157813 1.575450 -0.693880 5.371477 6.117270 -1.548530 -2.856348 3.131055 -1.916780 0.671565 5.039042 0.586400 4.348256 -2.978316 0.940272 -1.567717 0.228597 -0.045560 0.010254 0.333615 -0.720110 1.599920 0.841407 1.117643 1.837848 -0.793173 -1.427615 -3.544679 0.772401 -1.368032 -1.042931 3.653745 -2.771074 2.463254 -0.084978 5.012055 -2.693884 -3.440553 1.615370 -4.015984 -0.681580 -1.419090 -1.316340 -0.763139 2.786186 -3.541170 -1.749163 -1.170248 -0.976221 -0.728120 1.417416 1.913237 0.603534 0.360417 0.141240 4.570603 3.767997 0.817916 0.192137 -3.629038 0.606642 2.329847 -1.615181 -3.025397 0.371337 -2.362015 -0.081948 1.310457 -0.313036 1.566640 -2.639480 -1.879843 -1.196707 -0.359702 2.273137 0.182942 -3.760737 1.243069 -0.938473 0.800660 2.208860 2.737493 3.448536 3.053229 2.249061 -0.459486 0.746383 -1.299854 0.802702 0.803982 1.564541 1.890009 1.433592 3.012586 1.127839 0.776028 1.839726 1.921005 0.095299 3.086052 0.514614 4.901677 -1.507370 0.845637 -0.763771 -1.112410 2.209298 5.446859 -3.414969 0.790230 1.738339 1.237679 -0.292422 -2.906174 -0.016875 -1.723174 -0.590269 0.462272 0.893463 -0.439783 -1.473067 4.241786 0.631885 -4.853618 2.839209 -0.041751 0.658188 2.027994 -0.916773 -0.506016 1.043567 -3.018950 2.465196 2.146042 2.353493 -2.775732 0.413526 -0.364561 2.863058 0.879968 1.033323 -2.855955 1.697293 2.006279 3.307448 2.435393 1.895033 -2.271089 -1.836640 0.137442 -2.717509 -0.988379 0.181013 1.977421 -1.206938 1.342400 -2.420963 -2.718656 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/strongly-connected-components.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/strongly-connected-components.cpp__Graph::fillOrder(int, bool*, std::stack > >&) = 1.184262 0.673657 1.722379 -1.729688 -2.872859 1.172808 -1.831732 -1.899786 0.316874 2.962551 1.453898 -2.066758 -1.086592 3.824071 -1.518946 -2.523166 -0.386599 -0.082141 0.195002 -1.342631 -0.216299 1.270136 -0.635684 -0.076153 0.292887 -0.898102 -0.128919 0.948204 1.462100 -0.079143 -1.905324 -0.421027 -0.180178 3.749085 0.530247 -0.341129 0.873852 4.996156 -1.827698 2.951108 -3.728051 -3.780690 2.243919 0.718219 0.216330 -0.975374 -1.575939 1.685365 -2.908533 -0.273586 2.008016 -0.685445 0.048792 -0.459747 1.227776 2.055208 -5.592654 2.955369 0.287867 -0.666953 -1.195878 -0.637730 0.788272 1.038659 -0.857009 -1.900391 1.062246 2.627106 -1.716215 0.192012 -1.037798 -4.060280 3.520084 0.798124 -2.128030 0.482563 1.379097 -2.102946 2.464913 -2.937750 -3.458069 -0.367829 0.848341 -1.624168 2.706325 1.670638 2.492420 -5.337874 1.662418 -5.019692 2.762476 -2.500338 2.561745 3.581958 -3.273680 0.728893 1.894970 2.112883 3.081772 0.473154 3.616766 1.257057 0.599984 0.618364 1.510049 2.170252 -1.979060 -1.211431 -2.260315 -3.579095 -0.322637 -0.755323 -4.461280 0.322103 -1.563156 1.845620 0.335402 -0.217447 -0.578988 2.260672 -5.431610 -2.325003 0.365171 -0.483943 2.762211 2.860175 -0.836432 1.480855 -0.651806 3.893236 -1.705890 -0.348532 -0.720358 1.331737 -1.402818 -2.443968 -4.930360 1.338421 1.856011 -2.693941 -3.631095 -4.629611 -0.705185 1.334648 -1.035267 4.800283 6.454432 -1.871057 -3.087712 3.533007 -0.600326 0.282674 5.086799 0.392728 5.059277 -2.973574 0.740128 -1.524302 -0.282788 -0.202962 0.388398 0.582765 -0.726963 1.475357 1.040132 -0.529993 2.504058 -0.782855 -1.722821 -2.968790 1.051484 -1.177828 -1.132662 3.774473 -1.774559 2.259514 -0.255806 5.226501 -2.692983 -3.764295 1.751021 -3.649892 -0.595970 -1.257197 -1.242324 -0.315169 3.122900 -3.399655 -1.548665 -0.928575 -1.198859 -1.224665 1.109891 1.712382 0.780214 0.589121 0.348034 3.896514 4.055729 0.871388 0.483028 -3.888752 0.401342 2.386292 -1.414902 -3.913600 0.421635 -2.729113 0.008557 0.984329 -0.655308 1.430073 -2.586777 -1.850399 -1.175986 -1.017782 2.437171 0.342579 -3.113045 1.393307 -1.418875 1.455569 1.961392 2.810849 3.727366 3.514634 2.712990 -0.056237 0.736030 -1.387879 1.151648 1.008192 1.802587 1.491047 1.574048 3.192085 1.213480 0.842469 1.943447 1.546383 0.033689 3.291094 0.401220 5.298773 -1.673501 1.094961 -1.108114 -0.923650 2.580114 6.121421 -3.026271 0.249537 1.615321 0.982890 -0.346546 -2.921147 0.097847 -1.707814 -0.891073 0.773322 1.135932 -0.394682 -1.461058 4.208830 0.516072 -4.824208 3.077813 -0.010519 0.777921 1.971372 -0.844108 -0.466594 1.196555 -3.007206 2.423251 2.612663 2.665642 -2.965700 -0.427604 -0.533618 2.974231 1.237289 1.446530 -3.872692 2.007123 2.531025 3.096303 1.820548 2.055831 -2.719839 -2.277580 0.455236 -2.467523 -1.238332 0.308071 1.982357 -1.496076 1.576753 -2.126189 -2.957943 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/strongly-connected-components.cpp__Graph::printSCCs() = 2.397802 0.383376 3.864559 -4.079189 -1.209553 1.603128 -0.295511 -1.871831 1.823129 7.889175 1.922610 -1.467045 -4.702082 5.012817 -1.924878 -3.841641 3.549805 -0.424283 2.593530 -1.829325 0.501856 1.858967 0.779890 -2.176950 2.367702 -2.638502 -0.583017 3.336466 2.819622 0.259685 -3.011214 -0.329222 0.317024 7.052182 -1.120791 -0.145488 -0.176784 7.922491 -4.972340 7.550438 -6.061959 -6.815411 6.793178 1.414482 -0.318927 -3.163378 -0.680531 2.041309 -2.441487 -4.856597 1.680984 -2.073721 2.332001 -3.556017 -0.488419 5.649751 -9.368032 0.474491 -0.543735 -1.938923 -2.306048 -0.485690 2.674442 1.943612 -2.663330 -3.644704 1.658708 1.075461 -5.417955 0.259515 -2.758890 -5.540332 4.939552 2.235319 -2.999599 2.043368 2.717868 -5.398656 3.517335 -3.635218 -4.218665 -1.984613 0.372366 -2.451025 4.034186 2.086051 5.882060 -9.248647 1.668119 -7.069897 6.632874 -4.276136 6.219919 5.924106 -3.487035 3.026051 3.583404 5.043112 2.047858 -1.292865 8.422546 3.830706 2.255627 -0.244318 4.206595 3.928832 -5.307340 -3.908834 -4.432969 -4.338617 0.625422 -2.694816 -7.001099 -0.574096 -4.949852 0.425942 3.840545 -2.208587 -2.378271 5.893540 -10.855658 -2.727857 1.269851 -1.075845 3.817097 5.125733 0.491442 -0.133995 1.823560 7.466666 -2.894536 -1.763399 -0.200978 2.884784 -2.044595 -1.894184 -2.093011 -0.313735 1.489836 -6.101657 -6.821969 -9.271220 -1.485511 3.380560 -0.690701 6.519109 11.752146 -1.128197 -4.335942 4.293395 -2.754509 0.099079 7.513640 1.389386 9.043976 -7.320186 1.912337 -2.934195 1.639388 3.091694 8.951332 -0.022468 -1.200440 2.595376 0.931826 -1.026865 1.859553 -2.331871 0.268264 -3.595873 0.157596 -3.073705 -2.995338 5.731885 -6.064495 5.226563 -2.866716 9.629447 -3.899967 -6.998688 2.935316 -6.312695 -2.359841 -5.038471 -1.678355 -0.668921 4.470258 -6.218590 -3.560779 -3.643212 -1.134124 0.229468 4.277691 -4.281404 1.612224 -0.910837 -2.335859 7.764898 3.333048 0.023210 0.414534 -6.672952 -0.042281 3.617634 -1.863092 -7.145743 0.685080 -5.315247 0.125906 2.399945 -1.901538 3.512710 -4.333878 -3.958716 -0.206870 -2.196093 0.475958 -2.932546 -8.967492 1.829994 0.455126 0.790257 3.470609 6.903302 6.346974 4.667410 0.535684 -0.516767 1.500614 -2.680669 -4.027004 2.314422 0.596738 2.646460 2.220152 5.451746 1.207657 2.389502 4.838002 2.259904 1.124323 6.015877 0.622624 6.548041 -0.805995 -0.188746 1.185815 -3.977689 4.085282 8.252755 -1.877954 -0.908858 3.577054 1.051423 -1.617138 -3.825104 0.891868 -2.961794 -1.242941 4.325841 3.235554 0.386537 -3.254013 7.742746 1.250983 -11.422952 5.676588 -0.795019 1.065885 5.355843 -2.490649 1.592649 2.274723 -2.845949 3.496092 2.409986 5.167354 -6.337682 1.268237 -0.533476 4.722206 3.357965 0.005583 -11.483959 0.857644 1.147427 6.409967 4.300930 7.241957 -3.832953 -0.569280 -0.966061 -3.693867 -2.162457 -2.303690 3.697564 -2.365338 0.617540 -7.598484 1.124614 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::stack >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::top() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::~stack() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/strongly-connected-components.cpp__main = 0.411483 0.525723 0.392591 -0.200305 -0.762153 -0.163999 -0.791417 -0.009017 0.047082 -0.294137 -0.200434 -0.692845 -0.887066 0.627887 -1.020401 -0.991224 -0.548203 -0.213625 -0.113463 -0.812899 -0.111145 0.199204 0.093504 0.136568 0.254829 -0.282235 -0.158936 0.171058 1.622189 -0.499738 -0.251696 0.177206 0.443557 0.732971 -0.200311 -0.379018 0.647197 1.238738 1.255721 -0.501007 -0.744448 -0.656520 0.344000 0.135741 -0.037841 -0.853077 -0.348060 0.290042 -2.249405 1.499001 0.204823 0.204864 -0.880960 -0.164569 0.398534 0.711422 -2.108475 2.383879 -0.224854 0.604425 0.223768 -0.308867 -0.362529 -0.547319 1.403921 -0.349673 -0.054628 0.965409 -1.366471 0.752026 0.085027 0.134791 1.413812 -0.031561 -0.553534 0.408697 0.456189 0.153175 0.175449 -1.999971 -0.383559 -0.022640 0.946485 0.991478 0.939218 0.384879 -0.649951 -0.935920 -0.348825 -0.718598 0.301979 -1.062090 0.461113 0.739956 -1.366029 0.540578 -0.071348 -1.271236 0.633950 0.646491 0.897575 0.037589 0.373851 0.077671 -0.460850 -0.108460 0.480138 0.258744 0.315891 -0.456253 -1.159020 0.609682 -1.560910 -0.265952 -0.434397 1.331846 0.233920 0.193072 -0.083148 -0.758508 -1.010525 -1.464853 -0.136548 -0.117920 0.876773 0.434732 -0.223790 0.312717 -0.428784 1.087619 0.217898 -0.232851 -0.300201 -0.096749 0.524898 -2.251774 -2.217680 -0.289006 0.175125 0.028808 -0.993616 -0.121191 -0.385192 -0.763865 -0.022343 0.685611 1.116003 0.331127 -0.613669 1.085399 -0.574190 1.238811 1.798426 0.108520 0.873554 -0.305164 0.180433 0.175315 0.142495 -0.184963 -1.833852 -0.082338 -0.287145 -0.261084 0.861570 0.640356 -1.440920 -0.323257 -0.187355 -1.059229 -0.344723 -0.424807 -0.338130 0.991645 0.523270 0.999962 0.010955 1.172212 -0.582885 -1.947271 0.348770 -0.292084 0.583798 0.689800 0.083318 -0.142830 0.240920 -1.248451 -0.633219 0.415523 0.306927 -0.329083 0.089416 1.798583 -0.065746 -0.134592 0.557389 0.753118 0.738155 -0.436407 0.918441 -1.219808 -0.091224 0.485963 0.051565 -1.518183 0.968459 0.137878 -0.039367 0.842249 -0.081263 -0.520834 0.321774 -0.591306 -0.379290 -0.445704 1.078402 0.039564 0.740132 0.228966 -0.860102 -0.290118 0.190691 0.255521 1.321132 -0.215386 0.192071 -0.014960 0.424144 -0.687959 2.053972 0.094188 0.648124 0.038103 0.046909 0.517861 0.213121 -0.374694 0.132024 0.843438 -1.165066 0.429780 0.577216 1.269658 -1.330943 0.176636 -0.629709 -0.356363 0.544086 1.591500 -1.369988 -0.066321 0.527929 0.926015 1.272441 -1.507770 -0.668988 -0.364574 -0.544840 0.475262 -0.466326 -0.770293 0.480983 0.585066 0.130453 -0.300755 1.061242 0.195217 -0.364589 -1.131009 -0.096379 -1.420213 0.951932 -1.454529 -0.481528 0.017494 0.390621 -0.158927 -0.614600 -0.315939 0.896432 -0.786009 0.426414 0.254648 -0.186521 1.285378 0.659073 0.937760 -0.513311 0.120293 -2.000632 -0.039455 -0.163272 -0.714125 0.306159 0.021514 -0.835238 0.393064 1.277713 -1.576861 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/strongly-connected-components.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/strongly-connected-components.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/strongly-connected-components.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/strongly-connected-components.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/strongly-connected-components.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/strongly-connected-components.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/strongly-connected-components.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/strongly-connected-components.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/strongly-connected-components.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/strongly-connected-components.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/strongly-connected-components.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/strongly-connected-components.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/strongly-connected-components.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/strongly-connected-components.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/strongly-connected-components.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/strongly-connected-components.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/strongly-connected-components.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/strongly-connected-components.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/strongly-connected-components.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/strongly-connected-components.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::empty() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/strongly-connected-components.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::back() = 0.215504 0.337586 0.106763 -0.326868 -0.750053 0.103383 -0.418850 -0.264952 -0.065238 0.001345 0.239846 -0.431888 -0.383615 0.611286 -0.344567 -0.546790 -0.337045 -0.311835 -0.133688 -0.157122 -0.019719 0.259085 -0.073296 0.156397 -0.060419 0.054412 -0.226826 -0.000344 0.684577 -0.416593 -0.381978 -0.009444 0.119719 0.445977 0.086716 -0.205692 0.243000 0.794306 0.223589 0.030882 -0.575052 -0.416190 0.127924 0.060253 -0.004720 -0.568879 -0.325735 0.355607 -0.645460 0.266122 0.378507 0.046728 -0.331693 0.071337 0.264478 0.323755 -1.019579 1.103667 0.111139 0.223926 0.180468 -0.061194 -0.054395 0.013857 0.388782 -0.281914 0.022497 0.431677 -0.432869 0.039566 -0.023747 -0.408386 0.879359 0.080021 -0.397720 0.067386 0.186781 -0.179764 0.375228 -0.982785 -0.539574 0.127996 0.236816 0.304053 0.499841 0.169368 -0.095410 -0.702885 0.050291 -0.721808 0.218502 -0.466082 0.182615 0.475079 -0.600094 -0.012638 0.166919 -0.366880 0.740600 0.317444 0.533036 0.055505 0.189881 0.157464 -0.051170 0.137692 0.021777 0.125052 -0.119511 -0.662003 -0.256861 0.256094 -0.912001 0.111510 -0.015046 0.502440 0.049382 0.034257 0.114265 -0.107184 -0.579078 -0.671568 -0.014621 -0.037041 0.459174 0.571139 -0.218583 0.273583 -0.339427 0.594912 -0.099190 0.154040 -0.013091 0.080857 0.062864 -1.014863 -1.141102 0.222478 0.266136 -0.226253 -0.447736 -0.441188 0.048535 -0.268638 -0.240046 0.486775 0.898908 -0.297105 -0.476172 0.749841 0.097220 0.224607 0.833196 -0.084415 0.825452 -0.210975 -0.056909 0.035803 -0.269980 -0.257613 -0.564472 0.147833 -0.116652 -0.041105 0.253435 -0.347343 -0.181662 -0.040018 -0.425713 -0.208633 0.007671 -0.221156 -0.286106 0.455773 0.303205 0.381898 0.237670 0.679559 -0.251956 -0.730308 0.327976 -0.074789 0.134583 0.119134 -0.218615 0.117404 0.282840 -0.538483 -0.099304 0.072303 -0.075418 -0.483507 0.031949 0.632775 0.149325 0.217602 0.337197 0.322859 0.776520 0.039820 0.309733 -0.644094 0.138804 0.270804 -0.139442 -0.738338 0.168706 -0.354275 0.039175 0.483204 -0.216401 0.012075 0.023549 -0.321904 -0.175048 -0.273162 0.627401 0.219078 0.231590 0.106102 -0.418635 0.260251 0.149787 0.308234 0.524794 0.492298 0.524186 0.092890 0.172910 -0.075251 0.735432 -0.076120 0.235942 0.102432 0.286680 0.309439 0.251428 0.056338 0.392710 0.332479 -0.304196 0.490279 0.076215 0.920123 -0.455739 0.089998 -0.351474 -0.092971 0.407173 1.105629 -0.728119 0.053033 0.204927 0.252325 0.239460 -0.553688 -0.043861 -0.251094 -0.321738 0.245979 0.028649 -0.040325 -0.037913 0.428354 -0.054389 -0.444115 0.534146 0.026226 0.070036 -0.067091 0.007918 -0.324994 0.246303 -0.740227 0.070779 0.500435 0.381038 -0.283541 -0.395316 -0.107510 0.487385 -0.271454 0.431308 -0.231052 0.152579 0.678703 0.424187 0.238969 -0.116259 -0.376174 -0.851525 0.296513 -0.080364 -0.247648 0.083617 0.194943 -0.417571 0.134820 0.301536 -0.694908 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator--() = 0.047131 -0.590731 0.907326 -0.926820 -1.160533 0.679881 -0.942351 -0.629356 0.454210 0.178362 0.395102 -0.472155 -0.423654 1.449042 -0.222625 -1.421521 -0.120662 0.613497 0.270037 -0.131655 0.140803 0.417947 -0.277192 0.326535 -0.164777 -0.646673 0.186779 0.647454 0.750345 0.404134 -0.846175 -0.381178 -0.583434 1.459867 0.268526 0.687470 0.443292 2.348598 -0.030917 2.138309 -1.106965 -1.400884 0.422020 0.202706 -0.127038 -0.121694 -0.899564 0.355654 -1.669085 -0.166878 1.224659 -0.149580 0.235680 0.185251 0.966863 0.294108 -1.740751 0.403648 -0.138561 -0.195259 -0.011823 -0.434946 -0.317259 0.683495 -1.124292 -0.484345 0.578494 1.191458 -0.663587 0.104260 0.023426 -1.633558 2.191270 0.730601 -1.187614 0.192677 1.570226 -0.960908 1.028143 -0.380716 -1.791080 -0.124966 -0.245620 -1.158814 1.718795 0.200637 1.411893 -2.055281 1.123103 -2.091829 1.173201 -1.352946 0.784534 1.698794 -1.524763 0.386099 1.083394 1.880439 0.936377 -0.079709 1.324785 1.005048 -0.229626 0.377920 1.257814 0.292982 -0.699395 -0.749785 -1.121646 -1.477155 -0.166059 -1.264303 -2.605695 -0.110327 -0.021639 1.301310 -0.167472 0.559425 -0.376911 0.696831 -2.361254 -0.064402 0.199863 -0.248817 0.790613 0.961641 -0.696102 0.590123 -0.088449 1.826265 -1.142276 -0.075498 -0.377873 0.427335 -0.679923 0.572789 -1.874012 0.520864 0.823686 -0.674424 -1.559203 -1.486582 -0.755127 1.504796 -0.027478 2.245077 2.684513 -0.714687 -1.059324 1.418752 -0.440533 0.296058 1.731112 0.417629 1.263770 -0.718634 -0.049703 -1.429856 -0.242726 -0.415480 0.239181 0.706674 -0.130141 1.036188 0.037509 -0.252730 2.052861 -0.833359 -0.915170 -1.853375 0.151889 -0.876971 -0.529098 1.987063 -1.577232 1.001980 -0.147539 1.998504 -0.766856 -1.241068 0.414793 -1.737991 -0.076294 -1.151370 -0.290941 -0.188756 1.205350 -1.644792 -0.819519 -0.449649 -0.745162 -0.255839 0.115487 0.936781 0.135836 0.363963 0.602546 2.340780 2.032478 0.922547 -0.412210 -1.482677 0.424671 0.649851 -1.139601 -0.513091 0.349965 -0.718908 0.031304 -0.222121 0.019854 0.268953 -1.492624 -0.883248 -1.187835 -0.275254 0.874866 0.524525 -2.692484 0.310047 0.422313 0.752678 1.158642 0.503100 1.968895 1.405223 1.586250 -0.067455 0.371059 -0.096902 -0.025130 0.413000 0.952812 0.650462 0.288586 1.703040 0.574121 0.107568 0.815649 1.387999 0.738956 1.030938 0.413626 2.261767 0.365629 0.016107 -0.430241 -0.135407 0.997923 2.674553 -1.055923 1.459802 0.782577 0.939281 -0.237827 -1.528246 0.083862 -0.754965 -0.051616 0.433586 -0.005078 -0.207512 -0.478575 1.368183 0.336418 -1.883514 0.391323 0.031453 0.339031 1.316538 -0.237485 -0.089623 0.278901 -1.533950 1.843302 0.770449 0.544266 -1.037684 0.097580 -0.156765 0.437334 0.886031 0.836429 -0.333017 0.710825 0.596509 1.487537 0.922468 0.717259 -0.979525 -0.683248 0.399295 -1.684495 -0.637256 0.033887 0.592086 -0.359012 0.446868 -1.244923 -2.216360 +PE-benchmarks/strongly-connected-components.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::pop_back() = 0.918230 -1.149242 1.753199 -1.596206 -1.963741 1.770420 -2.598979 -1.037501 0.735647 0.475596 0.682584 0.037161 -0.276611 1.620457 -0.405541 -2.351140 -0.103374 -0.291990 0.762865 -0.938894 0.193405 0.340228 -0.286547 0.641573 -0.562022 -1.443195 0.082265 0.795565 1.347646 0.047445 -1.403416 -0.480231 -1.734811 2.169082 0.633069 -0.079472 1.127793 4.051462 0.853475 1.261528 -0.961143 -2.378315 0.466189 0.110019 -0.434101 1.451160 -0.866772 0.655697 -2.247734 0.245104 2.231727 -0.500880 0.730667 0.597582 0.683426 -0.136148 -2.896516 0.590082 -0.599286 0.052992 -0.201234 -0.653838 0.255767 1.423600 -0.837118 -0.738875 2.104021 2.299757 -1.195771 -0.505532 0.138038 -2.452042 3.060027 1.327140 -0.944159 0.001101 2.885880 -1.286660 1.817755 -0.010946 -3.488540 -0.155032 -1.100696 -3.446864 3.336979 -0.432375 2.233487 -3.318906 3.034002 -3.688724 1.515401 -1.572407 1.211679 2.484837 -2.585206 0.350164 2.233209 4.129574 1.330292 -1.200330 2.749489 0.973816 -0.927433 1.385276 2.002952 -0.228252 -0.895151 0.042024 -1.943861 -2.406913 -0.403220 -2.355085 -3.577952 0.479139 0.054499 1.015559 -0.359184 0.836146 -1.040653 1.458476 -3.782048 -0.532866 -0.124706 -0.380726 1.021108 1.146553 -1.433926 1.085542 0.178001 3.257919 -2.535701 -0.391788 -0.212392 0.625911 -0.059877 1.806302 -3.450305 1.381351 1.907376 -1.349225 -2.623406 -1.602202 -0.988119 1.447222 -0.123825 5.404902 4.479136 -1.209621 -1.627066 2.325247 -1.175248 0.385184 3.591818 0.529168 1.833532 -0.880477 -0.872335 -2.416448 -0.678941 -0.749490 -2.254427 1.288898 1.356239 1.961129 0.736162 2.874563 3.432796 -1.521113 -1.975834 -2.112637 0.771194 -1.425118 -1.314572 2.439070 -0.522328 0.957589 2.254419 3.561672 -0.665221 -1.933578 0.769702 -1.875727 -0.083150 -1.340108 -0.464953 -0.997033 1.480473 -1.699602 -1.379584 -1.156319 -1.046228 -0.486335 -0.073778 3.926081 1.562197 1.344612 0.998934 2.889490 4.116787 2.062613 -0.842016 -2.631720 0.556419 1.713611 -1.984935 0.600366 -0.031635 -1.036087 0.527301 0.585232 0.039087 1.214179 -2.731362 -1.639086 -2.346731 0.791932 1.702045 1.603347 -5.336304 0.503793 0.784517 0.943872 1.893622 0.861519 2.909905 2.477356 2.987407 -0.209425 0.676445 0.813834 0.597583 -0.676034 1.280139 2.405680 0.569210 2.695710 1.029281 0.844744 1.484982 2.600194 1.193224 1.587135 -0.135528 4.064781 -0.083210 0.198282 -1.700375 0.180356 1.814742 4.456023 -1.601469 2.542948 1.198771 1.898249 -0.151723 -3.470114 0.804071 -1.411762 1.863311 -0.985594 0.612795 0.254755 -1.262431 1.812689 0.777528 -3.210893 1.238153 0.079541 0.693120 2.668548 -0.219770 -0.183942 -0.352166 -3.232553 2.971782 1.966262 0.692997 -1.722710 1.708904 0.040377 1.671445 -1.401067 1.824990 0.269346 2.115415 0.773715 1.496592 1.907137 0.572694 -2.045704 -1.942468 1.147328 -3.162841 -0.724719 1.534449 1.230560 -1.684337 1.499686 -1.339405 -3.281534 +PE-benchmarks/strongly-connected-components.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/strongly-connected-components.cpp__std::deque >::_M_pop_back_aux() = 0.974669 -1.461739 1.905192 -1.908787 -2.578135 2.615678 -4.035521 -2.051347 0.782826 -0.682803 1.162549 0.063182 0.849882 1.771904 -0.555926 -2.552360 -0.772355 0.131950 0.666786 -1.131071 0.047891 0.040934 -1.122577 1.001084 -1.273395 -1.802464 0.680549 0.608426 1.077273 0.404575 -2.108812 -0.872733 -2.386426 2.959599 1.701521 0.117404 1.723074 4.947593 1.597742 0.886484 -0.590916 -2.736865 -0.132975 0.157218 -0.777157 2.537541 -1.494878 0.432544 -2.724521 1.181526 3.012793 -1.016788 0.812211 1.475906 1.166680 -0.773838 -2.834452 0.456626 -0.389181 0.031238 -0.481517 -1.181059 0.354723 1.752230 -1.481384 -0.615207 3.160482 3.717729 -0.416399 -0.581880 0.188067 -4.019429 4.113826 1.746927 -1.144473 -0.441962 3.431898 -1.968723 2.145254 1.361001 -4.622459 0.053753 -1.323038 -4.668994 4.305941 -0.667555 2.804075 -3.754068 3.929550 -4.902985 0.993929 -1.687984 1.349662 2.833664 -3.831554 -0.141452 2.923275 6.105425 1.541161 -1.410984 2.918379 1.043709 -2.108826 1.533796 2.956521 -0.482530 -0.460108 0.199907 -2.254790 -3.175308 -0.592097 -3.090122 -4.914134 0.703223 -0.115691 0.971787 -2.015719 1.651576 -1.174617 2.015262 -4.183605 -0.798558 -0.464631 -0.445555 1.293975 1.299092 -1.861057 1.811517 0.074798 3.611481 -3.128833 -0.842698 -0.885171 0.618705 -0.222671 2.623817 -5.454229 2.075909 3.041103 -1.742446 -3.309742 -1.348739 -1.635369 2.201622 -0.002487 6.933791 5.326433 -1.971712 -2.176863 2.939042 -0.821345 0.153579 4.978841 0.899732 2.131238 -0.896026 -0.705628 -3.243976 -1.100194 -1.826624 -5.090077 1.449807 1.962770 2.555647 0.904830 3.919278 6.043375 -1.966351 -2.808082 -2.191072 1.183284 -1.467899 -1.812761 3.302858 0.058748 0.970089 3.342287 4.168636 -1.220699 -2.039040 0.570685 -1.879852 0.009330 -1.328177 -0.326744 -1.633117 2.505507 -1.580798 -1.685373 -0.685589 -1.392904 -0.625349 -0.218874 6.832246 1.761895 1.753468 1.342435 2.627539 6.020165 2.767778 -1.099389 -2.723790 0.901089 2.518582 -2.659364 1.602788 -0.332086 -1.340519 0.506431 -0.407027 0.306601 1.611783 -3.833813 -1.675801 -3.329952 1.485265 2.632729 2.627483 -6.901713 1.138659 0.410941 1.065127 2.355302 0.597933 3.680905 3.619775 4.401904 -0.859895 0.930872 0.843032 1.047335 -0.973229 2.074143 3.625403 0.551696 3.725309 1.239519 1.142380 1.136344 3.222083 2.458998 1.949286 0.031388 5.480485 0.184547 0.737488 -2.528290 0.409828 2.349440 6.002724 -1.972262 3.673205 1.023988 2.552891 -0.583354 -5.092640 1.017249 -1.297294 2.242912 -2.109221 0.683128 0.335748 -1.821670 2.483866 1.061348 -3.381319 0.809683 0.317925 0.650862 3.369787 -0.482953 -0.300468 -0.544496 -3.650436 4.447171 2.514764 0.741860 -2.105618 2.166247 0.108895 1.978924 -2.248993 2.191690 1.740958 3.943166 0.890654 1.712296 2.476164 -0.059663 -2.831209 -1.908423 1.734773 -4.088683 -0.675081 2.506556 2.123611 -2.231889 2.190821 -1.593475 -5.050970 +PE-benchmarks/strongly-connected-components.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/strongly-connected-components.cpp___GLOBAL__sub_I_strongly_connected_components.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/overlapping-subproblems-property.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/overlapping-subproblems-property.cpp___initialize() = 0.275847 0.066511 0.551072 -0.520020 0.137442 0.005706 0.881391 -0.111988 0.052118 1.101489 0.111403 -0.049155 -1.038334 0.445738 0.049890 -0.643443 0.571632 -0.327636 -0.056796 -0.152091 -0.204841 0.232773 -0.006515 -0.458277 0.643812 -0.221302 0.051838 0.757447 -0.121524 -0.100863 -0.210671 -0.095504 0.014163 1.086302 -0.279521 0.295961 -0.144580 1.176984 -1.045296 1.211944 -1.063364 -1.120664 1.248821 -0.006868 -0.097425 -0.729085 0.198641 0.466004 -0.496751 -0.791829 0.165276 -0.126086 0.139667 -0.857578 0.089038 1.147431 -1.512062 0.065257 0.108053 -0.391017 -0.783515 -0.233034 0.323142 -0.174790 -0.382468 -0.694485 0.152969 -0.367147 -0.738734 0.362837 -0.623428 -0.781384 0.514145 0.364292 -0.228880 0.504513 0.098589 -0.621490 0.485137 -0.386448 -0.359781 -0.530791 0.344382 -0.256920 0.618412 0.340017 0.513276 -1.418527 -0.053603 -0.932633 0.839678 -0.826110 0.929970 0.963359 -0.150111 0.816506 0.267681 0.218837 -0.320644 -0.391220 0.976148 0.267660 0.706329 -0.020320 0.573878 0.459048 -1.088349 -1.003895 -0.763466 -0.454529 0.222260 -0.398424 -0.740046 -0.039122 -0.789218 0.042883 0.740213 -0.252187 -0.318879 0.612309 -1.563706 0.108171 0.422035 -0.240432 0.712155 0.754750 0.075604 -0.148585 0.103181 0.889763 -0.165367 0.210440 -0.389229 0.536393 -0.018342 -0.365201 0.082039 -0.345485 0.135867 -0.715103 -1.022820 -1.290058 -0.281230 0.581848 -0.206635 0.708919 1.600662 -0.181200 -0.706221 0.611905 -0.389875 0.515630 0.505888 0.290738 1.048339 -1.070024 0.465109 -0.248674 0.508800 0.637487 1.298914 -0.151980 -0.659935 0.499868 0.011119 -0.100605 0.462593 -0.200738 0.224366 -0.233348 -0.008329 -0.494442 -0.448530 1.038360 -0.765712 1.140478 -0.482844 1.259040 -0.798187 -0.698315 0.365068 -1.008581 -0.262643 -1.137080 -0.511861 -0.033942 0.429954 -0.961364 -0.649884 -0.784200 -0.074815 0.112980 0.781604 -1.028676 -0.062154 -0.429911 -0.216259 0.940139 0.259568 -0.299290 -0.016038 -1.047276 0.131233 0.292075 -0.036108 -1.077553 0.208317 -0.356301 -0.224902 0.576308 -0.025473 0.459143 -0.333892 -0.404762 0.505464 -0.247171 -0.301052 -0.544406 -1.237008 0.039100 0.165283 -0.178956 0.528278 1.059580 0.988307 0.363598 -0.176088 -0.077767 0.167987 -0.358723 -1.023877 0.225664 -0.281676 0.637412 0.392597 0.305530 0.301337 0.100548 0.592140 0.299744 -0.086452 0.871715 0.607495 0.876176 -0.009977 -0.262398 0.548631 -0.540631 0.461465 0.533892 -0.412198 -0.162449 0.688057 0.278131 -0.328713 -0.298571 -0.237798 -0.528863 -0.376608 0.897301 0.242123 -0.486597 -0.218904 1.470824 -0.003985 -1.665402 0.616213 0.027025 0.372368 0.493233 -0.241895 0.253859 0.672554 -0.333143 0.448619 0.052860 0.782593 -0.828349 0.253158 -0.021737 0.543797 0.619107 -0.165404 -1.778763 -0.379480 -0.050782 1.097193 0.623354 1.152055 -0.191512 0.301890 -0.419920 -0.467130 -0.098075 -0.280233 0.542452 -0.011104 -0.162298 -1.647584 0.379545 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.124626 0.080738 1.115961 -0.560178 0.288196 0.574208 0.428256 -1.207173 0.308375 3.039997 0.491541 -0.429142 -0.724981 0.828714 -0.683403 -0.872801 1.098841 1.136475 0.283127 -0.808886 -0.394833 0.067751 -0.256928 -1.260768 0.859859 -0.877057 0.883111 0.848548 -0.633683 0.763925 -0.741884 -0.240494 0.153316 2.471440 0.060119 0.626341 -0.486536 1.640732 -1.251320 2.238662 -2.709933 -2.202608 2.235332 0.420914 0.633884 -0.851735 0.245208 0.693016 -0.303136 -1.574024 -0.267458 -1.191478 0.854624 -1.596749 -0.388717 1.974495 -2.232535 -0.368365 0.139369 -1.619957 -2.251131 -0.149771 1.687864 0.481506 -1.346264 -1.540364 0.603530 0.930146 -1.086315 0.881016 -1.724835 -2.691929 0.897047 0.279036 -1.056824 0.352173 -0.370093 -1.324574 0.744356 -0.000514 -0.716502 -1.173952 0.948346 -0.840620 0.334057 1.293586 2.270182 -3.126832 0.692179 -2.379064 2.086204 -0.889964 2.634909 1.509057 -0.737787 1.056422 0.900001 1.656179 -0.047265 -0.054432 1.961775 0.717705 0.606087 -0.810045 1.261694 1.211616 -1.800814 -2.090519 -1.068004 -1.062844 0.411517 -0.522069 -1.878137 -0.184149 -2.567129 0.992448 0.486750 -0.443861 -0.363008 2.135075 -3.929881 -0.785968 0.657537 -0.418868 1.948113 1.201691 0.492531 0.467443 0.580753 1.644091 -0.549355 -1.211754 -0.756414 1.169939 -1.020454 -0.657272 -0.581070 -0.007243 0.887147 -1.955548 -2.296926 -2.847323 -1.041592 1.965730 -0.378478 1.879905 3.075831 -0.452142 -1.615954 0.455692 -1.291324 -0.327167 2.285557 0.771116 3.056542 -3.267077 1.908286 -0.643242 1.628486 1.485990 2.191172 -0.968908 -1.274772 1.395573 -0.010364 -0.140204 1.980331 -0.564256 0.610131 -0.593990 0.344856 -0.000854 -0.128023 1.729095 -2.391359 2.027138 -1.614028 3.055539 -2.519235 -1.540872 0.435795 -2.697379 -1.210095 -0.820982 -0.177985 -0.700133 2.269215 -2.056089 -1.364438 -0.613585 -0.923612 0.907257 2.218472 -0.878125 -0.242760 -0.808808 -1.644586 2.681472 0.305632 -0.366251 -0.239224 -1.510536 -0.067528 1.248536 -0.242058 -2.028553 -0.411005 -1.832516 -0.325166 -0.173490 0.024064 1.571338 -1.462083 -0.619320 0.283809 -0.477739 0.033056 -1.335647 -1.764487 0.732915 -0.468591 -0.186743 0.513293 2.689281 1.860386 1.408346 -0.299928 -0.830583 0.546144 -1.942180 -1.584527 1.195759 0.450827 1.242972 0.628318 1.038184 -0.044712 0.554945 0.735934 -0.399960 0.986626 1.941865 0.552031 1.728183 -1.385463 0.753463 0.726556 -1.442728 1.183869 1.792148 -1.052963 -0.673615 0.767649 0.027464 -1.004765 -0.889039 -0.318300 -0.491664 -1.029683 0.841584 1.526096 -0.242649 -1.488846 3.434553 0.808572 -3.486937 1.969477 -0.184256 0.250531 1.881310 -1.229848 0.802848 0.876123 0.701582 0.513425 0.380212 1.924988 -2.344310 0.244095 -0.218201 1.641542 1.405384 -0.940961 -3.559153 0.434932 0.437961 2.450013 1.077092 2.325297 -1.172673 1.155738 -0.980810 -1.242911 -0.152418 -0.450608 1.319759 0.213567 -0.115725 -3.389399 1.026614 +PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.226644 0.314298 0.146336 -0.385686 -0.626354 0.088307 -0.398814 -0.320215 -0.054157 -0.111000 0.268902 -0.479205 -0.522066 0.578199 -0.430721 -0.652630 -0.225336 -0.214865 -0.119572 -0.282704 -0.022427 0.203394 -0.049661 -0.056638 0.055713 -0.065545 -0.164642 0.176080 0.880877 -0.393566 -0.358686 0.018757 0.213312 0.622795 0.101600 -0.167003 0.252163 0.851066 0.286784 0.001304 -0.750349 -0.443846 0.437997 0.065120 -0.130859 -0.790109 -0.403963 0.321119 -1.012176 0.407461 0.248478 -0.089033 -0.229175 -0.118438 0.123941 0.637355 -1.239853 1.237795 0.100712 0.143435 0.076357 -0.104076 -0.034673 -0.103697 0.534841 -0.379027 0.018446 0.451144 -0.599710 0.149907 -0.148308 -0.399355 1.143451 0.049504 -0.390681 0.115022 0.033614 -0.252594 0.292399 -0.955317 -0.460924 -0.020365 0.416266 0.488876 0.534244 0.183047 -0.101559 -0.857504 -0.235386 -0.828149 0.311859 -0.549571 0.396247 0.478009 -0.827380 0.144451 0.117786 -0.607493 0.559852 0.382191 0.641517 -0.003473 0.242917 0.038571 0.000811 0.119993 0.077668 0.023358 -0.016526 -0.572629 -0.370136 0.276300 -1.217482 0.055837 -0.361642 0.568648 0.041540 -0.021082 0.094055 -0.044514 -0.526015 -0.659274 -0.017014 -0.077241 0.580768 0.629827 -0.086048 0.235178 -0.290009 0.657602 -0.015743 0.067097 -0.164735 0.157172 0.194149 -1.455850 -1.204103 0.099047 0.263889 -0.313265 -0.649376 -0.419356 -0.072049 -0.321088 -0.214046 0.396724 0.960295 -0.204477 -0.636534 0.747961 0.072380 0.399332 1.044379 0.008647 0.996520 -0.418483 0.128675 0.034737 -0.127668 -0.102716 -0.624406 -0.091192 -0.257437 -0.014753 0.284474 -0.384029 -0.169309 -0.063035 -0.288632 -0.118054 -0.100603 -0.267371 -0.406938 0.587657 0.448650 0.629399 0.090101 0.888597 -0.458989 -1.040261 0.331157 -0.006151 0.075915 0.230073 -0.169295 0.102203 0.313346 -0.657904 -0.299331 0.065046 0.063932 -0.363027 0.284719 0.792567 0.058249 0.098342 0.159600 0.278458 0.668024 -0.184237 0.426691 -0.695026 0.108794 0.465385 -0.000889 -1.054580 0.227116 -0.332277 -0.006443 0.530838 -0.148011 0.122741 0.046381 -0.329150 -0.089726 -0.288436 0.668194 0.094209 0.180003 0.203860 -0.499253 -0.001788 0.133277 0.507838 0.678354 0.372956 0.260219 0.058108 0.207335 -0.277934 0.774817 -0.057955 0.281922 0.166934 0.280176 0.400727 0.215215 0.065275 0.413809 0.391702 -0.321340 0.545968 0.258099 0.943561 -0.579008 0.083249 -0.267675 -0.232942 0.517868 1.185726 -0.730323 -0.120864 0.267343 0.366360 0.371522 -0.894823 -0.168540 -0.210631 -0.458553 0.517568 0.037666 -0.099296 -0.091166 0.692704 0.044684 -0.582950 0.785450 0.102619 0.019052 -0.255384 -0.122910 -0.456244 0.436540 -0.704330 -0.076613 0.397540 0.511731 -0.374711 -0.458695 -0.129357 0.607681 -0.239943 0.324945 -0.350513 0.064266 0.738402 0.630967 0.408668 -0.030766 -0.288030 -0.871848 0.094979 -0.027529 -0.223479 0.034357 0.132987 -0.550765 0.095794 0.267259 -0.599564 +PE-benchmarks/overlapping-subproblems-property.cpp___GLOBAL__sub_I_overlapping_subproblems_property.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/count-1s-sorted-binary-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 1.625410 1.042629 2.068683 -2.533186 -0.339252 1.087849 1.785814 -2.342297 0.704351 6.162604 1.789182 -1.108966 -1.765514 2.481686 -1.100767 -1.627120 2.414730 0.505749 0.225846 -1.964107 -0.217374 0.678710 -0.444327 -2.707074 1.211716 -1.889853 1.549878 1.577839 -0.769543 1.014436 -1.826383 -0.722762 0.762124 4.885468 0.174094 1.068773 -1.849302 3.614187 -3.275753 4.736834 -5.890510 -5.091686 4.832020 0.891887 0.935215 -3.790172 0.269039 1.342623 1.684358 -3.583210 -0.316521 -2.229044 1.985262 -3.124505 -0.966286 3.804905 -3.507766 -0.932759 0.358255 -3.363299 -3.910530 -0.818865 3.493817 1.880201 -3.635397 -2.702609 1.486534 1.183764 -2.366396 1.371760 -3.362843 -5.591656 1.602607 1.204211 -1.924928 0.466248 -1.028363 -4.104945 1.769537 0.007537 -1.686320 -1.708466 1.786759 -0.700858 0.224622 2.070512 4.854991 -6.686412 0.145973 -5.193253 3.957751 -1.834515 5.246351 2.904859 -0.938716 1.785205 1.565838 3.466250 0.799299 -0.339795 4.165192 2.072204 2.881595 -1.649779 3.387207 3.495657 -3.439266 -4.252003 -2.036798 -2.769127 1.228466 -0.691795 -4.128700 0.010004 -4.944478 -1.418805 0.710229 -1.391771 -0.885238 4.848528 -7.235648 -2.843106 1.767221 -0.891283 3.623175 2.883977 0.904045 1.289708 1.221651 3.444017 -0.804672 -0.916287 -1.450070 2.446310 -2.558132 -1.940499 -0.925410 0.336256 1.728034 -4.397468 -4.718627 -6.272314 -1.953624 3.611693 -1.007366 2.434947 6.522728 -1.262481 -3.754148 1.309082 -0.991711 -1.359562 4.066551 0.987329 6.925308 -6.577138 4.117728 -0.832278 3.121598 2.710194 7.228128 -1.740505 -2.587634 2.156162 -0.971855 -2.525531 2.979687 -1.517408 0.990869 -1.270880 0.592199 -0.980656 -1.277699 3.396221 -4.608492 4.368036 -3.526241 5.875847 -5.342941 -3.092819 1.443550 -4.889008 -2.406292 -2.571443 0.068097 -0.631592 5.180031 -3.364552 -2.601216 -1.587015 -2.062181 1.322791 3.886344 -4.809167 -0.396090 -1.456039 -2.770270 4.131349 1.241809 -0.489653 -0.398638 -2.938290 0.118055 3.103284 0.690543 -4.453458 -1.192483 -4.378200 -0.808317 -0.862373 -0.249748 3.265187 -1.952327 -1.579257 0.921748 -1.559165 -0.148414 -2.602139 -4.431733 1.731963 -1.024626 0.392808 -0.110966 5.795395 3.398948 3.268046 -0.170131 -2.170888 1.297980 -3.868000 -3.927960 2.307351 0.972194 1.182633 1.595250 3.172927 0.346363 1.534555 3.421163 -0.618443 1.331244 3.823679 0.313856 3.901201 -2.352219 1.207951 1.387604 -3.092177 2.526436 5.271615 0.713099 -2.341462 1.714799 -0.135458 -2.690454 -1.733791 -0.695210 -1.001340 -1.898734 2.387934 3.539699 -0.486614 -2.979627 7.281688 1.423430 -7.558298 3.841279 -0.619009 1.093121 4.331337 -3.029815 1.655498 2.247983 1.080308 1.884776 1.256109 3.857925 -4.361103 -1.068914 -0.588361 3.354830 3.091164 -2.244251 -8.051910 1.894839 1.298746 5.379392 2.253142 5.518147 -2.845685 2.668726 -1.612235 -1.949014 -0.483994 -0.825441 3.223757 -0.596176 -0.842340 -7.300851 2.711038 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.453803 0.263989 0.317914 -0.554750 -0.732772 0.345815 -0.602637 -0.485169 0.092932 -0.139152 0.388143 -0.505392 -0.518567 0.664270 -0.531283 -0.735874 -0.029344 -0.210269 0.007295 -0.268468 -0.096926 0.095123 -0.165929 0.094718 -0.088749 -0.082073 -0.051424 0.152119 1.056091 -0.442357 -0.843664 0.025663 -0.026865 0.897072 0.287211 -0.370763 0.431674 1.193631 0.572775 0.116200 -0.817458 -0.273022 0.193637 0.142441 -0.133381 -0.831182 -0.517836 0.392944 -1.170624 0.452955 0.593148 -0.325763 -0.164528 0.060803 0.222732 0.789533 -1.451601 1.266581 0.126455 0.447592 0.220402 -0.201520 0.223180 0.033763 0.429907 -0.446888 0.392728 0.669544 -0.752400 0.177276 -0.418201 -0.887585 1.209768 0.243187 -0.680424 -0.026546 0.253512 -0.606170 0.384576 -0.956629 -0.787662 0.066009 0.276711 0.130630 0.978329 -0.031978 -0.028025 -1.145868 0.023624 -1.261922 0.256223 -0.840700 0.611025 0.771332 -1.008060 -0.037615 0.229255 -0.313494 0.633703 0.345792 0.879349 0.128917 0.013832 -0.156581 0.294488 0.014880 0.104951 0.066284 -0.007197 -0.731292 -0.618338 0.272400 -1.493519 0.071500 -0.612287 0.780524 -0.112207 0.213487 -0.097273 -0.008860 -0.680075 -0.962677 -0.172562 -0.146758 0.878738 1.034195 -0.223887 0.487974 -0.332196 1.005902 -0.106847 -0.032412 -0.397673 0.112990 0.184058 -1.388550 -1.709015 0.169760 0.673633 -0.365701 -1.081243 -0.560629 -0.276972 -0.485430 -0.186960 0.971518 1.277695 -0.235554 -0.670127 0.924860 -0.159033 0.531143 1.604920 -0.012831 1.337417 -0.720238 0.382366 -0.157890 0.009299 -0.505111 -1.092721 -0.130068 -0.056022 0.049177 0.287230 -0.093057 0.212191 -0.063292 -0.420711 -0.049334 -0.125188 -0.182782 -0.719587 0.958816 0.306779 0.623866 0.440423 1.287469 -0.578464 -1.243977 0.443855 0.228373 0.312290 0.251472 -0.224980 0.002449 0.638359 -0.733487 -0.483069 0.167088 0.074763 -0.297805 0.297908 1.546441 0.072365 0.149122 0.216075 0.519472 1.103340 -0.051601 0.551453 -0.913465 0.186942 0.604485 -0.313520 -0.832775 0.280363 -0.559956 0.011918 0.450310 -0.124304 0.181751 -0.367406 -0.701971 -0.283241 -0.146783 0.994002 0.314034 -0.454773 0.347643 -0.606664 -0.161461 0.331097 0.587336 0.854711 0.630340 0.599539 -0.335143 0.306865 -0.195278 0.746352 -0.188433 0.411818 0.469666 0.236337 0.431914 0.185849 0.013274 0.257706 0.379121 -0.139538 0.629818 0.436646 1.184671 -0.494882 0.204491 -0.414567 -0.574194 0.648667 1.657060 -0.971214 0.120344 0.308598 0.632357 0.313667 -1.466630 -0.162312 -0.321808 -0.425266 0.242106 -0.019512 -0.083455 -0.297735 0.960658 0.103023 -0.855289 0.778552 0.035949 -0.062669 0.156871 -0.126859 -0.395387 0.289990 -1.003582 0.271668 0.486658 0.616573 -0.344441 -0.375885 -0.169826 0.645961 -0.614976 0.263272 -0.333366 0.279514 0.814569 0.887488 0.894829 -0.019099 -0.434487 -0.871692 0.191605 -0.403968 -0.285725 0.054691 0.525078 -0.717674 0.100231 0.107448 -0.813539 +PE-benchmarks/count-1s-sorted-binary-array.cpp___GLOBAL__sub_I_count_1s_sorted_binary_array.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/bfs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/bfs.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = 2.066174 0.750682 3.419485 -2.800888 -3.105134 1.559004 -3.219361 -2.712950 1.059859 5.729225 1.902904 -2.880761 -3.237581 5.530730 -2.477314 -4.422276 0.613803 0.829930 1.838773 -2.524252 0.202952 1.710718 -0.137523 -0.737843 1.249054 -2.051682 -0.632394 2.097840 3.553927 0.053987 -2.822229 -0.342328 0.133434 6.209652 -0.321356 -0.473508 1.143068 7.932394 -2.863247 4.875876 -6.153686 -6.448432 4.738140 1.321698 -0.073484 -1.772413 -1.937536 2.254153 -5.955814 -1.095664 2.457029 -1.274446 0.675741 -1.830772 1.033324 4.302167 -10.191021 4.275855 -0.099128 -1.321036 -1.616308 -0.407796 1.428940 1.418652 -0.354786 -3.140080 1.538492 3.430946 -4.225580 0.443111 -1.765759 -5.306328 5.946579 1.186317 -3.238396 1.649021 2.873766 -3.201557 3.713576 -5.062946 -4.976735 -1.389228 1.331273 -2.028057 4.260419 2.912553 4.250316 -8.530765 2.227199 -7.287999 5.763562 -4.072958 4.938684 5.722945 -5.521983 2.036003 3.656815 2.845091 4.067961 0.154341 7.063422 2.424575 0.937815 0.730537 2.415441 3.248464 -3.784919 -2.113644 -3.826231 -5.140130 -0.669718 -1.691264 -7.534820 -0.250482 -3.675696 3.113915 2.175376 -1.419551 -1.130533 3.774411 -9.536390 -3.361294 0.693261 -0.854785 4.125382 4.753323 -0.497997 1.303616 0.047220 6.907437 -3.166636 -1.686131 -0.376301 2.230310 -1.167094 -4.377953 -6.571805 0.973159 2.023313 -5.049361 -5.933611 -7.552344 -1.148848 2.067186 -0.796728 7.319389 10.943330 -1.978026 -4.810916 5.251253 -2.251052 0.824485 8.954294 1.162769 8.633088 -5.519917 1.072465 -2.904243 0.073373 1.431478 2.312965 0.670834 -0.847376 2.416706 2.408841 0.221339 1.882233 -1.951465 -1.663155 -4.710907 1.186899 -2.246637 -1.879608 5.492072 -3.441988 4.271193 -1.204128 9.024106 -3.830978 -7.298675 2.754132 -6.237451 -1.638050 -1.871583 -2.077058 -0.838311 4.367910 -6.234990 -2.906327 -2.517190 -1.439493 -0.966807 2.721188 1.652534 1.666745 0.454876 -0.684586 7.081357 5.323582 0.790833 0.902019 -6.786517 -0.012091 3.785516 -2.311326 -7.333700 1.359535 -4.728766 0.420601 2.569804 -1.626140 2.882095 -4.204079 -3.444873 -1.815579 -2.009569 3.108112 -1.001911 -5.291132 2.062270 -1.549675 1.558523 3.825276 5.219185 6.252638 5.044552 2.758592 0.329213 1.455030 -2.558391 1.282155 1.841516 2.123495 2.685857 2.257346 4.851760 1.550865 1.752366 3.497885 2.585051 0.007836 5.683429 0.455571 7.778988 -2.490580 1.323709 -1.087191 -2.334614 4.232687 9.237174 -4.725342 -0.035874 3.068872 1.569880 0.194395 -5.264857 0.400886 -2.728609 -1.703809 2.693548 2.459813 -0.168066 -2.601564 6.605623 1.390573 -8.739068 5.964042 -0.266303 0.537335 3.068845 -1.546478 -1.061781 2.197496 -4.785202 2.724261 3.384891 4.858896 -5.651650 0.546435 -0.802267 5.390764 2.088274 1.957736 -7.919387 1.906590 3.515620 5.023909 3.616091 4.369286 -4.052048 -3.883488 0.065094 -3.860708 -2.340196 -0.596707 2.786276 -2.547964 2.006413 -3.495192 -3.086941 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::empty() const = 0.442644 -0.349111 0.575004 -0.691838 -0.772054 0.794765 -0.786097 -0.611585 0.253591 -0.122362 0.444443 0.110729 0.172895 0.435629 -0.031966 -0.753772 -0.051010 -0.260639 0.126591 -0.074470 0.005137 0.041910 -0.353950 0.200851 -0.344716 -0.385888 0.189551 0.233832 0.161703 0.018624 -0.827545 -0.279624 -0.660919 0.971937 0.501187 -0.012929 0.439332 1.544171 0.364718 0.394529 -0.256326 -0.808490 0.075564 -0.027161 -0.272189 0.410273 -0.315331 0.241959 -0.354431 -0.060785 0.962018 -0.326054 0.315250 0.321739 0.269142 -0.043644 -0.850464 -0.042965 0.002757 0.073733 -0.155325 -0.385768 0.193763 0.598077 -0.587578 -0.276339 0.984310 0.844044 -0.123941 -0.170075 -0.103665 -1.400710 1.462620 0.626514 -0.422983 -0.133165 0.948093 -0.897555 0.740209 0.466965 -1.391288 0.020397 -0.469236 -1.233950 1.345245 -0.383132 0.853764 -1.257277 1.104695 -1.577090 0.353580 -0.637417 0.460467 0.936387 -0.985394 -0.059584 0.840255 1.881266 0.416722 -0.477021 0.976076 0.407773 -0.387723 0.319085 0.945610 -0.071093 -0.292328 -0.118776 -0.752320 -1.003503 -0.036694 -0.795662 -1.662428 0.292980 -0.037969 0.216731 -0.459551 0.409126 -0.282035 0.782449 -1.293304 -0.192025 -0.015142 -0.153440 0.445976 0.625652 -0.574870 0.529547 -0.003047 1.135316 -0.831001 -0.072630 -0.269021 0.245513 -0.227317 0.742931 -1.354874 0.596824 0.953416 -0.612926 -1.072231 -0.621309 -0.383151 0.700241 -0.092692 1.838785 1.701148 -0.637718 -0.673669 0.895672 -0.020249 -0.059362 1.308415 0.204470 0.789189 -0.430505 -0.103124 -0.888162 -0.219641 -0.569164 -1.041855 0.391128 0.483514 0.779756 0.075653 0.736336 2.027915 -0.478645 -0.777289 -0.134979 0.208846 -0.478105 -0.728764 1.071947 0.137825 0.378039 1.002239 1.347662 -0.393290 -0.468909 0.220809 -0.302849 0.008676 -0.715324 -0.195180 -0.243691 0.796780 -0.492499 -0.495890 -0.192300 -0.449280 -0.192388 0.065214 1.595387 0.486591 0.465077 0.345140 0.709680 1.759166 0.743006 -0.380701 -0.831090 0.352268 0.624114 -0.869663 0.500514 -0.260985 -0.537225 0.123616 -0.047888 0.052401 0.559873 -1.083986 -0.612744 -0.703009 0.369338 0.606699 0.710939 -2.192255 0.239898 0.226902 0.355029 0.590462 0.351818 1.084630 1.193324 1.299412 -0.349592 0.316975 0.362636 -0.188789 -0.372782 0.402463 1.141813 0.245138 1.035329 0.392939 0.334641 0.451303 0.864910 0.825724 0.685941 0.106054 1.642566 0.169616 0.073543 -0.562290 -0.011638 0.787687 1.758860 -0.490761 1.035764 0.288266 0.735400 -0.407040 -1.301370 0.308403 -0.402314 0.592787 -0.510316 0.266668 0.140220 -0.595544 0.941653 0.233331 -1.252705 0.143837 0.064271 0.327609 1.297943 -0.155256 0.216156 -0.161144 -0.904886 1.454797 0.748272 0.369318 -0.664350 0.530066 0.068132 0.506360 -0.792368 0.584572 0.235806 0.990147 0.171491 0.685928 0.763436 0.205079 -0.925894 -0.233976 0.528412 -1.113575 -0.122458 0.605693 0.793122 -0.642973 0.429664 -0.907807 -1.140094 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::front() = 0.112380 0.154523 0.168359 -0.408831 -0.730788 0.171313 -0.347400 -0.265259 -0.003859 -0.219462 0.343573 -0.408819 -0.390441 0.646418 -0.178675 -0.604283 -0.205925 -0.175794 -0.104497 -0.015096 0.002515 0.219837 -0.108848 0.163108 -0.081131 0.040797 -0.197314 0.165885 0.710341 -0.321639 -0.487099 -0.035712 0.003225 0.525400 0.132264 -0.111967 0.289253 0.937012 0.063123 0.309945 -0.474657 -0.324740 0.175656 0.051640 -0.152008 -0.527790 -0.499876 0.350628 -0.777542 0.108214 0.561273 0.010306 -0.161550 0.102711 0.340833 0.413420 -1.003623 0.858651 0.144327 0.239262 0.242127 -0.099070 -0.147931 0.060843 0.159941 -0.279186 0.109894 0.335208 -0.336012 -0.055959 -0.068204 -0.583609 1.098122 0.162869 -0.433983 0.067889 0.340409 -0.358065 0.439592 -0.656985 -0.672598 0.115420 0.075662 0.117986 0.703915 0.011234 0.012556 -0.783426 0.027374 -0.865254 0.273683 -0.601063 0.200839 0.594404 -0.713745 -0.009325 0.245633 -0.159051 0.616089 0.250133 0.572009 0.122191 0.091157 0.127064 0.188422 0.096248 -0.075075 -0.006801 -0.273446 -0.704353 -0.200975 0.038621 -1.106872 0.118940 -0.020940 0.480352 0.004433 0.098498 0.071228 0.002349 -0.429363 -0.303371 0.016530 -0.068560 0.428117 0.734675 -0.278062 0.253269 -0.325525 0.678404 -0.194862 0.234291 -0.105249 0.118697 0.059809 -0.832865 -1.055654 0.243693 0.349338 -0.245527 -0.549550 -0.495441 0.025287 -0.128430 -0.212269 0.508241 1.020101 -0.355680 -0.465796 0.785625 0.210216 0.297061 0.791814 -0.044717 0.860497 -0.246301 -0.054530 -0.163927 -0.320971 -0.344886 -0.463472 0.197584 -0.097255 0.078072 0.162643 -0.516766 0.359458 -0.077256 -0.469272 -0.109277 0.006977 -0.274913 -0.451700 0.679383 0.275597 0.373119 0.300183 0.775047 -0.217577 -0.699603 0.348685 0.070174 0.140712 -0.144339 -0.303599 0.182377 0.302050 -0.518620 -0.172973 -0.059096 -0.052886 -0.437396 0.030044 0.698722 0.124949 0.235676 0.369336 0.255438 0.902109 0.137675 0.231222 -0.704360 0.197207 0.265765 -0.308563 -0.620596 0.187016 -0.363841 0.040942 0.362507 -0.169310 0.068483 -0.181641 -0.411231 -0.214707 -0.226588 0.587449 0.299667 -0.285297 0.105169 -0.219568 0.230619 0.320944 0.302908 0.651150 0.587309 0.632790 0.089683 0.161497 0.096119 0.411086 -0.109393 0.179521 0.270163 0.276355 0.372926 0.281253 0.045734 0.377531 0.391586 -0.074597 0.499662 0.268500 0.976235 -0.043457 -0.022287 -0.266565 -0.132097 0.468606 1.163189 -0.633325 0.238936 0.244297 0.373207 0.114364 -0.715091 -0.001218 -0.275193 -0.314864 0.355050 -0.072077 -0.010309 -0.108776 0.514424 -0.068565 -0.599786 0.379224 0.030623 0.138659 0.142527 0.029368 -0.186032 0.181095 -0.788100 0.365010 0.486299 0.394402 -0.297235 -0.299934 -0.085926 0.341643 -0.129119 0.445957 -0.268197 0.175746 0.533453 0.523186 0.334015 -0.021946 -0.407672 -0.671409 0.279430 -0.254706 -0.203619 -0.015754 0.232256 -0.428187 0.092299 -0.000149 -0.772117 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::pop_front() = 0.129835 0.042766 0.246645 -0.489255 -0.797326 0.187076 -0.438969 -0.299429 0.042099 -0.171689 0.317468 -0.478615 -0.319190 0.857763 -0.228006 -0.693804 -0.221469 -0.071912 -0.078613 -0.010875 0.026912 0.295752 -0.127720 0.184504 -0.065322 -0.034828 -0.155834 0.208584 0.713973 -0.246186 -0.521003 -0.085701 -0.044023 0.662121 0.128113 -0.029092 0.309887 1.169146 0.062407 0.591617 -0.563787 -0.461562 0.225694 0.063931 -0.133337 -0.507888 -0.633199 0.358123 -0.854099 0.096290 0.608354 0.030895 -0.188991 0.082384 0.433537 0.389992 -1.131457 0.841919 0.129018 0.222486 0.197730 -0.166789 -0.184231 0.095087 -0.060610 -0.319837 0.148762 0.472728 -0.409441 -0.003185 -0.046021 -0.702814 1.247459 0.238855 -0.540183 0.112901 0.493328 -0.461833 0.531183 -0.689487 -0.815473 0.088621 0.053235 -0.048653 0.853176 0.043260 0.203689 -0.978276 0.228889 -1.038786 0.363043 -0.766942 0.266888 0.801789 -0.874032 0.082348 0.323998 0.178104 0.706991 0.292538 0.688783 0.296372 0.031649 0.161296 0.331725 0.155736 -0.129373 -0.107528 -0.357366 -0.812723 -0.216601 -0.129353 -1.375274 0.101216 -0.001489 0.592545 -0.046725 0.197133 0.014537 0.099804 -0.740868 -0.321085 0.058053 -0.098302 0.439267 0.762245 -0.347936 0.267637 -0.384038 0.837672 -0.276234 0.197571 -0.125473 0.159660 -0.144319 -0.692015 -1.181370 0.244951 0.372739 -0.306640 -0.709057 -0.674498 -0.088741 0.083708 -0.210530 0.784095 1.252781 -0.386597 -0.554733 0.914047 0.179547 0.308243 0.944751 0.010354 0.937033 -0.290350 -0.071488 -0.292574 -0.310330 -0.359794 -0.486453 0.263806 -0.133576 0.178838 0.119219 -0.574411 0.660113 -0.175590 -0.517326 -0.404673 0.030998 -0.372902 -0.474916 0.924433 -0.017065 0.508724 0.176397 0.956138 -0.269252 -0.770900 0.379249 -0.243176 0.132326 -0.294511 -0.255345 0.085467 0.460534 -0.693798 -0.277374 -0.041769 -0.167413 -0.439926 0.052247 0.736814 0.115731 0.238802 0.434030 0.559924 1.045181 0.191866 0.200513 -0.840302 0.228696 0.358390 -0.414105 -0.673388 0.252082 -0.391711 0.024391 0.220354 -0.145165 0.043079 -0.389730 -0.489718 -0.348408 -0.226500 0.635399 0.308118 -0.566580 0.141695 -0.204144 0.346731 0.427563 0.336579 0.875007 0.663964 0.741299 0.067260 0.182129 0.029087 0.369080 0.009167 0.292461 0.273699 0.279859 0.604247 0.337993 0.050029 0.431289 0.539947 -0.005275 0.582938 0.324164 1.191185 -0.001008 -0.039093 -0.297711 -0.127363 0.573353 1.432121 -0.685346 0.380860 0.333992 0.437535 0.058747 -0.827510 -0.030318 -0.320539 -0.337934 0.343400 -0.126617 -0.071943 -0.096058 0.635818 -0.026471 -0.775800 0.386262 0.047924 0.173623 0.255852 0.007203 -0.169978 0.255480 -0.889471 0.540071 0.514815 0.404991 -0.384801 -0.305682 -0.101442 0.371130 0.056779 0.534193 -0.252788 0.341858 0.596423 0.661700 0.375249 0.037350 -0.456271 -0.708979 0.298849 -0.404966 -0.293741 0.001603 0.270071 -0.440064 0.137440 -0.135004 -1.039484 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/bfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/bfs.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::~list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp__main = 0.493447 0.671428 0.528235 -0.177348 -0.971186 -0.123700 -1.122314 -0.075851 0.079852 -0.319918 -0.236427 -0.809980 -1.045236 0.680907 -1.321758 -1.188537 -0.729483 -0.144443 -0.079422 -1.132905 -0.106425 0.181177 0.110539 0.194906 0.214367 -0.430738 -0.125449 0.173646 1.980829 -0.471595 -0.283783 0.214994 0.527340 0.850319 -0.179987 -0.454720 0.796027 1.407761 1.596694 -0.726395 -0.915413 -0.841444 0.317286 0.216395 0.017572 -0.965875 -0.404674 0.283807 -2.817722 1.951598 0.247554 0.185182 -0.995930 -0.094089 0.481368 0.756864 -2.495933 2.901786 -0.360915 0.645475 0.289219 -0.344228 -0.418865 -0.570790 1.776770 -0.369106 -0.040121 1.338960 -1.602172 0.935201 0.152477 0.166297 1.652663 -0.094922 -0.694150 0.414346 0.605038 0.248180 0.174615 -2.389219 -0.472686 -0.014797 1.141256 1.189589 1.067918 0.520231 -0.753664 -1.072101 -0.421394 -0.844582 0.385955 -1.172677 0.550910 0.777881 -1.673212 0.579254 -0.028730 -1.534200 0.815441 0.745299 1.033292 0.038179 0.424135 0.101695 -0.583561 -0.151139 0.644244 0.379029 0.400104 -0.545217 -1.445286 0.717127 -1.857206 -0.384634 -0.518864 1.637840 0.206902 0.191917 -0.095883 -0.905866 -1.240559 -1.824811 -0.212034 -0.119131 1.071095 0.409370 -0.261851 0.484301 -0.411278 1.309267 0.189784 -0.396336 -0.350021 -0.161691 0.663260 -2.716950 -2.827036 -0.251497 0.257963 0.071275 -1.166639 -0.053993 -0.510984 -0.889204 0.044690 0.812159 1.285302 0.422402 -0.754632 1.237045 -0.795053 1.395640 2.265987 0.159867 1.003854 -0.353741 0.228925 0.136416 0.159782 -0.240669 -2.224209 -0.103023 -0.266139 -0.278047 1.119063 0.929993 -1.892711 -0.473781 -0.268872 -1.403799 -0.394572 -0.465306 -0.265075 1.095763 0.595591 1.121134 0.010280 1.371566 -0.754366 -2.421401 0.339094 -0.448214 0.691829 1.012858 0.171969 -0.195438 0.328197 -1.513110 -0.755900 0.508315 0.345038 -0.342323 0.065130 2.257911 -0.063014 -0.114080 0.653818 0.963807 0.919373 -0.429167 1.071546 -1.383165 -0.146559 0.607826 0.091622 -1.819516 1.140712 0.139495 -0.007675 0.952937 -0.076459 -0.606571 0.405574 -0.667750 -0.584814 -0.584284 1.366035 0.099920 0.967978 0.326675 -1.067863 -0.345633 0.181304 0.239228 1.572924 -0.243497 0.291562 -0.031791 0.551076 -0.911213 2.680156 0.153325 0.953287 -0.026913 0.000289 0.669043 0.195446 -0.456376 0.117345 1.047115 -1.360099 0.462508 0.587158 1.492067 -1.740497 0.354145 -0.870997 -0.381488 0.604897 1.948058 -1.621306 -0.044230 0.574571 1.114078 1.625056 -1.871127 -0.784967 -0.427204 -0.573874 0.517946 -0.447183 -0.912977 0.528372 0.633460 0.249140 -0.258737 1.310415 0.225808 -0.531786 -1.369070 -0.181400 -1.824405 1.080617 -1.735482 -0.590285 0.038397 0.429322 -0.205330 -0.749777 -0.401680 1.101738 -0.964442 0.495392 0.368021 -0.209474 1.589315 0.751489 1.128876 -0.618159 0.087166 -2.490866 -0.027949 -0.259837 -0.887278 0.440981 0.011776 -1.021552 0.562797 1.684519 -1.980596 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/bfs.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/bfs.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::~_List_base() = 0.082991 0.077019 0.148786 -0.260417 -0.432988 -0.017330 -0.204082 -0.093907 -0.022608 -0.130651 0.066098 -0.323810 -0.309835 0.508329 -0.196834 -0.502406 -0.217826 -0.091718 -0.142823 -0.095125 -0.017877 0.215971 -0.019260 0.081056 0.094668 -0.043881 -0.126513 0.135957 0.471174 -0.299736 -0.145172 -0.028517 0.098981 0.417830 -0.057782 0.060832 0.164539 0.742777 0.255886 0.281525 -0.399494 -0.386367 0.255908 -0.000759 -0.069724 -0.374930 -0.295750 0.258494 -0.613112 0.155163 0.200314 0.140640 -0.323070 -0.113979 0.226756 0.293414 -0.831528 0.708262 0.059102 0.094461 -0.003177 -0.090881 -0.167090 -0.122806 0.138499 -0.239349 -0.021545 0.280509 -0.436095 0.140306 0.048702 -0.245413 0.839292 0.106070 -0.259005 0.216349 0.250001 -0.070002 0.297141 -0.598994 -0.379247 -0.023953 0.224760 0.141903 0.481968 0.123655 0.009204 -0.620705 0.095667 -0.539080 0.246271 -0.509448 0.182319 0.496187 -0.527126 0.255599 0.128128 -0.131478 0.336349 0.265408 0.466303 0.094151 0.116373 0.172720 0.075989 0.030389 -0.048803 -0.098079 -0.163535 -0.478206 -0.151435 0.009924 -0.831415 0.038327 -0.019703 0.487029 0.079705 0.165115 0.062211 -0.101916 -0.593408 -0.285067 0.109019 -0.070433 0.282765 0.378702 -0.170807 0.066706 -0.284404 0.510195 -0.086547 0.109711 -0.036373 0.109031 0.060280 -0.578915 -0.708011 -0.004005 0.094084 -0.148249 -0.419514 -0.341270 -0.088044 0.053902 -0.161818 0.469998 0.800514 -0.158050 -0.365961 0.602763 0.081420 0.357218 0.546020 0.055307 0.563493 -0.155814 -0.093954 -0.049363 -0.131780 -0.012167 -0.464312 0.130034 -0.199649 0.079579 0.158633 -0.256904 0.203922 -0.168791 -0.222267 -0.254370 -0.021360 -0.277898 -0.287937 0.535963 0.140318 0.529999 0.031167 0.617541 -0.193039 -0.567774 0.225267 -0.217504 0.076872 -0.131323 -0.092225 -0.040951 0.204758 -0.531655 -0.211580 0.025763 -0.117334 -0.282348 0.084650 0.468966 0.067404 0.051901 0.265327 0.373912 0.517086 -0.043379 0.156787 -0.632179 0.094409 0.197897 -0.100453 -0.521509 0.255311 -0.110532 -0.026317 0.276072 -0.098079 -0.066194 -0.058606 -0.223401 -0.150582 -0.179988 0.331869 0.049835 -0.071482 0.013555 -0.160062 0.172831 0.202998 0.247200 0.667427 0.240022 0.280627 0.127636 0.119798 -0.080593 0.357613 0.008371 0.102022 0.197842 0.188986 0.311306 0.244920 0.013738 0.333901 0.364472 -0.188169 0.396551 0.230191 0.799756 -0.220559 -0.081123 -0.154195 -0.038893 0.369671 0.827702 -0.543566 0.140738 0.289414 0.310221 0.153771 -0.513927 -0.143170 -0.192482 -0.277273 0.329665 -0.122307 -0.164409 0.087727 0.402792 -0.029216 -0.462166 0.356853 0.064957 0.090643 -0.094431 0.015247 -0.223870 0.370659 -0.565893 0.051214 0.231714 0.261342 -0.300771 -0.196896 -0.075205 0.342824 -0.061324 0.359495 -0.109598 0.089965 0.424411 0.403020 0.179310 -0.075559 -0.169256 -0.594773 0.144635 -0.133897 -0.246441 0.076863 0.062903 -0.251782 0.050464 0.017970 -0.648227 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_clear() = 0.852053 -0.019051 1.602884 -1.744744 -2.629333 0.933311 -1.399237 -0.839525 0.494337 1.285755 0.938165 -0.891218 -0.837313 2.553527 -0.819677 -2.034897 -0.248089 -0.906330 0.309898 -0.760463 0.334478 1.027256 -0.060038 0.584026 -0.263136 -0.750799 -0.421554 0.897138 1.679796 -0.430781 -1.336977 -0.304461 -0.708908 2.004596 0.170415 -0.665233 0.762908 3.872877 -0.611873 1.640757 -1.920953 -2.159832 0.935223 0.218758 -0.135515 -0.944765 -1.523978 1.125798 -1.675229 -0.222312 2.002881 0.000000 0.299837 0.176366 0.878617 0.700625 -3.549554 1.637167 -0.138458 0.107183 0.211378 -0.335111 0.091359 1.213215 -0.629065 -1.053727 1.159842 1.533003 -1.333416 -0.310546 0.038977 -2.193586 2.871446 0.823574 -1.310574 0.271306 2.220926 -1.747925 2.080952 -1.847063 -2.952836 0.061628 -0.533938 -1.898489 2.671146 -0.188012 1.598474 -3.435031 1.806739 -3.410108 1.657596 -2.068212 0.955594 2.518167 -2.208192 0.397206 1.555043 2.164433 2.387568 -0.231522 2.646188 1.343528 0.549868 1.103690 1.351355 0.777250 -1.079134 -0.203984 -1.921970 -2.648586 -0.313414 -1.280699 -3.718882 0.504424 0.347666 0.665138 0.369603 -0.072040 -0.442874 1.755684 -3.248832 -0.738676 0.380515 -0.311209 0.781978 1.985522 -1.261302 0.860014 -0.522347 3.082842 -1.768857 0.548670 0.207653 0.659058 -0.819722 -0.679069 -3.107414 1.178019 1.179924 -1.291329 -2.292300 -2.517664 -0.272251 0.524558 -0.570861 3.618712 4.421324 -1.194247 -1.977327 2.594243 0.036404 0.049874 2.971908 0.052524 2.762089 -1.016816 -0.800634 -1.759313 -0.896522 -0.559761 0.053594 1.213053 0.439963 1.254963 0.479084 -0.435640 2.158460 -0.963262 -1.745476 -1.606189 0.651320 -1.385480 -1.196389 2.482938 -0.571998 1.339237 0.971116 3.362933 -0.661289 -2.285386 1.124025 -1.774363 0.162000 -1.338380 -0.684818 0.088438 1.492308 -1.832642 -0.988360 -1.138101 -1.064834 -1.034945 0.077375 1.305180 1.253912 1.110595 1.140849 2.559900 3.499322 1.370072 0.033317 -2.777612 0.645318 1.405575 -1.302449 -1.693064 0.235484 -1.411006 0.388386 0.765613 -0.418910 0.891428 -1.810723 -1.704807 -1.402040 -0.441900 1.401671 0.965834 -3.568607 0.451603 -0.204010 1.625336 1.284525 1.242353 2.771974 2.357898 2.592705 0.253742 0.539498 0.273329 0.687297 -0.033047 1.138857 0.782923 0.917992 2.586947 1.079126 0.603187 1.909975 2.070618 0.144243 1.835658 -0.080038 3.774973 -0.461383 0.041786 -1.336963 0.016666 1.778467 4.569225 -1.054837 1.232016 1.192121 1.349821 -0.140028 -2.500582 0.449426 -1.380070 0.652760 0.365222 0.622998 -0.119437 -0.671303 1.844443 0.359057 -3.191374 1.536908 -0.059961 0.777753 1.872957 -0.088611 -0.182410 0.223795 -2.916401 2.215285 2.017628 1.076912 -1.641270 -0.166268 -0.097891 1.616802 -0.129716 1.888035 -2.026807 1.348493 1.475935 1.802518 1.056322 1.387564 -2.016979 -2.199219 1.203121 -1.927910 -0.995332 0.714584 0.970327 -1.896225 1.089397 -1.039140 -2.634114 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/bfs.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/bfs.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.435709 -0.117656 0.480470 -0.517183 -0.782692 0.103124 -0.343564 0.154305 0.170226 0.120636 0.275905 -0.387434 -0.404505 0.955320 -0.202963 -0.721921 0.133942 -0.426370 0.078651 -0.060203 0.267637 0.351105 0.332211 0.137891 0.012207 -0.065956 -0.434814 0.333526 1.024246 -0.452735 -0.449889 0.130494 -0.074368 0.338217 -0.285513 -0.544935 0.280976 1.167966 -0.043557 0.415506 -0.362971 -0.271901 0.405262 0.018823 -0.110759 -0.515511 -0.779398 0.514226 -0.496279 -0.323163 0.608061 0.248285 -0.022858 -0.134356 0.056401 0.462643 -1.281766 0.681208 -0.122170 0.477252 0.437051 0.076259 -0.065080 0.243643 0.175748 -0.374046 0.246696 0.170147 -0.755426 -0.271330 0.030504 -0.287094 1.120382 0.140350 -0.266377 0.198021 0.812015 -0.426699 0.703126 -0.862262 -0.799949 0.098477 -0.358967 -0.326102 0.955081 -0.352417 0.197433 -1.028258 0.507531 -0.920896 0.631947 -0.875730 0.141163 0.807724 -0.777887 0.183447 0.335242 0.316986 0.791497 0.220297 1.012889 0.428483 0.252839 0.297603 0.270289 0.036696 -0.267766 0.149132 -0.513304 -0.756549 -0.183942 -0.253978 -1.273924 0.264681 0.316204 0.239325 0.495356 -0.098650 -0.014351 0.249311 -0.624853 0.005874 0.194803 -0.080801 0.026639 0.804806 -0.520282 0.044184 -0.392368 1.065178 -0.406792 0.317324 0.424086 0.108458 -0.108712 -0.701511 -0.558057 0.306900 0.174113 -0.245265 -0.647582 -0.756539 0.289113 -0.332070 -0.295895 0.890505 1.219594 -0.065585 -0.345139 0.762734 0.308137 0.275521 0.808378 -0.205008 1.043485 -0.255809 -0.506592 -0.239986 -0.347700 -0.072426 -0.355154 0.413569 0.248220 0.206768 0.147384 -0.571206 0.602987 -0.277065 -0.434576 -0.072088 0.127512 -0.459364 -0.564219 0.739998 0.378360 0.323228 0.574975 1.069765 0.260432 -0.767988 0.567945 0.019181 0.162762 -0.403232 -0.231096 0.116868 0.129602 -0.492117 -0.265737 -0.432991 -0.189104 -0.360003 -0.030863 0.446934 0.573578 0.423664 0.468245 0.380018 0.801228 0.315222 0.274191 -1.123359 0.064307 0.383082 -0.465173 -0.666124 0.260855 -0.370954 0.308068 0.529638 -0.255734 0.100064 -0.425623 -0.831189 -0.353639 -0.173726 0.358901 0.211416 -0.768821 -0.164659 0.049714 0.533539 0.353756 0.478877 0.888639 0.418859 0.611327 0.299459 0.180498 0.453845 0.149042 -0.217463 -0.059646 0.234269 0.285512 0.476719 0.266899 0.109937 0.716132 0.557496 -0.277571 0.432424 0.224108 0.989995 0.087128 -0.294536 -0.409607 -0.110208 0.619882 1.358943 -0.248273 0.268477 0.429354 0.494391 0.186403 -0.769195 0.104281 -0.439442 0.100195 0.333767 -0.085288 0.131433 -0.024154 0.221675 0.025428 -1.021657 0.619406 -0.095425 0.292036 0.554877 0.149624 0.061215 -0.021893 -1.060713 0.252708 0.567332 0.308635 -0.309328 -0.112749 -0.049269 0.484764 -0.319963 0.711544 -0.670345 0.326492 0.578191 0.411936 0.232969 0.167993 -0.494628 -1.017799 0.303011 -0.396292 -0.321671 0.071585 -0.004483 -0.806777 0.079044 -0.044458 -0.604983 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/bfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/bfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/bfs.cpp__std::allocator >::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/bfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/bfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/bfs.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/bfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/bfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/bfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/bfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/bfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/bfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/bfs.cpp__std::__cxx11::list >::_M_erase(std::_List_iterator) = 0.800178 0.248955 1.078364 -1.079929 -2.170708 0.540055 -1.567813 -0.538904 0.214035 0.503489 0.635024 -0.862958 -0.501920 1.784770 -0.978498 -1.560184 -0.591584 -0.670307 0.065775 -0.976774 0.306455 0.684725 0.115589 0.472423 -0.269652 -0.571312 -0.443726 0.441936 1.832041 -0.609486 -0.789740 -0.043074 -0.197862 1.230833 0.041032 -0.896772 0.711166 2.658299 0.368723 0.079290 -1.208444 -1.423161 0.598936 0.167154 -0.067308 -0.740190 -1.336507 0.856028 -1.515081 0.502874 1.211957 0.177035 -0.144622 0.148047 0.401273 0.430235 -2.754070 1.972283 -0.196525 0.262924 0.268791 -0.086678 0.036133 0.681645 0.403827 -0.739165 0.765633 1.494870 -1.154227 -0.176900 0.262204 -1.197071 2.329081 0.272597 -0.742904 0.212908 1.527083 -0.834374 1.434751 -1.672287 -1.998435 0.152413 -0.131393 -0.906930 1.831245 -0.159321 0.687570 -2.314417 1.199656 -2.318919 1.030115 -1.396032 0.525789 1.538554 -2.004986 0.267502 0.994992 0.930749 1.974880 0.216981 1.982485 0.677145 0.398854 0.917119 0.519080 0.303588 -0.240053 0.377131 -1.065235 -1.963005 -0.529943 -0.530962 -2.894212 0.458633 0.331707 0.543309 0.162735 -0.106359 -0.056370 0.930077 -2.033266 -0.976497 0.215768 -0.161986 0.457302 1.275795 -0.959321 0.672012 -0.578726 2.188471 -1.117652 0.220011 0.447299 0.303545 -0.192790 -1.450972 -2.788866 0.950578 0.786136 -0.767602 -1.510380 -1.302450 -0.023736 -0.262480 -0.484051 2.433600 2.976826 -0.658442 -1.437765 1.913060 0.228630 0.164693 2.533819 -0.057289 2.187113 -0.543050 -0.810703 -0.907876 -0.830143 -0.326114 -1.425707 0.793094 0.509569 0.684049 0.715563 -0.047719 1.014630 -0.838582 -1.309699 -0.870612 0.542513 -0.895108 -0.831048 1.494390 0.704867 0.972657 1.118082 2.381764 -0.328981 -2.040623 0.819132 -0.816480 0.224533 -0.169685 -0.218505 -0.097153 0.929630 -1.184399 -0.646377 -0.531263 -0.692110 -0.894724 -0.036938 1.954077 1.158014 0.949451 0.946743 1.218113 2.533735 0.850725 0.370084 -2.123021 0.283232 1.236855 -0.671037 -1.463746 0.266467 -0.913733 0.429235 0.758723 -0.400694 0.509987 -0.870963 -1.184645 -1.192825 -0.343985 1.325338 0.748942 -1.522346 0.320756 -0.637235 1.183055 0.588844 0.859658 2.126987 1.455426 1.804887 0.361640 0.531704 0.104628 1.519237 -0.225820 0.878951 0.558232 0.651212 1.755244 0.711572 0.467158 1.389835 1.495978 -0.303004 1.242034 -0.146836 2.875846 -0.992788 0.178457 -1.424423 0.165574 1.363412 3.574528 -0.827621 0.624693 0.757892 1.107514 0.429921 -2.267345 0.199664 -0.833701 0.467513 0.145548 0.441220 -0.064883 -0.283052 0.976982 0.339562 -1.907480 1.537230 -0.001470 0.358442 0.770026 -0.060946 -0.595114 0.267029 -2.250169 0.848504 1.544535 0.718693 -1.147349 -0.310888 -0.123442 1.592736 -0.934358 1.571587 -1.018067 1.231977 1.542663 0.978727 0.599963 0.359083 -1.462781 -2.438160 1.010022 -1.039556 -0.825922 0.907974 0.416157 -1.841791 0.924984 0.289193 -2.176526 +PE-benchmarks/bfs.cpp__std::__cxx11::_List_base >::_M_dec_size(unsigned long) = 0.083667 -0.239879 0.322195 -0.647996 -0.436112 0.229037 -0.055862 -0.343169 0.183619 -0.157195 0.423355 -0.430975 -0.231190 0.882333 -0.033556 -0.589883 0.257593 0.247110 -0.019794 0.224595 0.020127 0.215759 -0.164956 0.030858 0.046454 -0.062650 0.029422 0.389794 0.461925 -0.183739 -0.662453 -0.111130 -0.165258 0.855704 0.125569 0.195302 0.130381 1.153096 -0.125583 1.207121 -0.694836 -0.182142 0.399012 0.079712 -0.215952 -0.714675 -0.781210 0.336609 -0.511429 -0.430614 0.552657 -0.192261 0.108225 -0.142962 0.320963 0.713703 -0.893005 0.132783 0.253843 0.074554 0.020672 -0.131133 0.085231 0.141612 -0.666044 -0.432530 0.296423 0.228432 -0.384505 0.000146 -0.348547 -1.102297 1.182704 0.364195 -0.623167 0.130550 0.374163 -0.839983 0.522022 -0.099854 -0.748683 -0.073956 -0.038100 -0.394030 0.859916 -0.161705 0.548988 -1.159723 0.246830 -1.180713 0.458743 -0.900153 0.551214 0.918916 -0.734178 0.167455 0.328653 0.524734 0.344320 0.298406 0.746974 0.447070 -0.068544 -0.159187 0.793729 0.151067 -0.335721 -0.512329 -0.430636 -0.755515 -0.046860 -0.347615 -1.484668 0.098122 -0.382618 0.498387 -0.094686 0.307046 -0.038532 0.461012 -0.649567 0.081770 0.188897 -0.183197 0.421787 1.082559 -0.212479 0.139450 -0.329427 0.836139 -0.288054 0.177502 -0.310775 0.291324 -0.317146 -0.341808 -0.646679 0.062184 0.421443 -0.447909 -0.918065 -0.890843 -0.278741 0.376297 -0.213563 0.842593 1.338040 -0.396329 -0.584018 0.714133 0.302579 0.257910 0.815858 0.098656 1.199445 -0.718776 0.260034 -0.497450 -0.008913 -0.200890 0.036944 0.065239 -0.261289 0.361833 -0.227060 -1.081524 1.668077 -0.167770 -0.256294 0.056246 0.024975 -0.272746 -0.746396 1.159302 -0.356533 0.733527 -0.056326 1.165316 -0.424652 -0.602687 0.389316 -0.108356 0.016121 -0.605505 -0.237997 0.013412 0.714577 -0.602135 -0.442205 -0.130839 -0.286689 -0.121689 0.355909 0.486792 -0.025269 0.028693 0.084407 0.636528 0.864916 0.099556 0.112091 -0.832194 0.283623 0.421110 -0.474633 -0.503068 0.164245 -0.568168 -0.064755 -0.164538 -0.064623 0.260676 -0.770704 -0.582742 -0.223267 -0.119424 0.387213 0.072653 -1.334989 0.165272 -0.063969 0.175527 0.496492 0.602765 0.969310 0.728379 0.524999 -0.194377 0.134949 -0.016210 -0.518443 0.070565 0.095382 0.490643 0.254799 0.571404 0.252438 0.090181 0.410913 0.262352 0.461875 0.648161 0.571983 1.059043 0.440300 -0.161607 0.061084 -0.453988 0.640584 1.371678 -0.394574 0.388113 0.393549 0.490298 -0.368612 -1.029202 -0.049333 -0.240159 -0.511333 0.540831 -0.117877 -0.001526 -0.326725 1.004282 0.050528 -1.187207 0.276610 -0.034079 0.229038 0.691252 -0.061152 0.294140 0.244811 -0.535153 0.683287 0.333627 0.537501 -0.523243 -0.242131 -0.072045 0.206396 0.402529 0.233936 -0.693153 0.401958 0.290842 0.987821 0.478280 0.429579 -0.430107 0.010918 0.115145 -0.539279 -0.197745 -0.251909 0.390337 -0.302596 -0.185911 -0.972634 -0.564535 +PE-benchmarks/bfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/bfs.cpp___GLOBAL__sub_I_bfs.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/binomial-coefficient.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 3.313561 0.425454 1.297446 -2.336009 0.270104 1.456792 1.549419 -3.198279 -0.037700 8.086059 2.174139 -1.808709 -2.243835 2.929887 -0.662735 -3.166863 3.417817 2.903112 0.571980 -1.742772 -1.371031 0.635967 -0.787555 -3.776110 2.293595 -2.331953 0.825037 2.297161 -0.885860 2.088818 -2.729234 -0.565641 0.458502 6.886744 0.296539 0.299656 -1.389649 5.225667 -5.415496 6.200042 -6.176170 -5.598958 6.656007 1.364723 1.129793 -2.098416 -0.544542 1.705418 0.734836 -4.658187 0.062447 -3.198942 2.549890 -3.907438 -0.636107 6.499319 -5.581588 -1.049860 0.867968 -3.991731 -5.319503 -0.489209 3.867104 1.376122 -4.242919 -4.640498 1.734499 2.199840 -1.771339 1.192334 -5.734587 -8.439742 2.826440 2.057655 -2.571009 0.807805 -1.501012 -4.844569 2.217364 0.736048 -2.625827 -2.564909 2.287461 -0.975602 1.017048 3.395285 6.733615 -9.077484 1.210295 -7.399549 5.440666 -2.797755 7.496413 4.938166 -1.460516 2.334542 2.517189 4.191830 0.426739 -0.228081 6.091358 1.780214 1.587367 -2.227455 3.207932 4.455553 -5.246077 -5.700266 -2.691969 -2.673826 1.332162 -1.025685 -5.509070 0.595431 -7.323030 0.687162 1.537121 -1.519104 -1.108005 6.541547 -8.887646 -3.204324 1.779823 -1.425189 5.785646 4.278178 1.386710 1.000831 0.517739 4.696979 -0.696212 -2.119815 -2.520922 3.548011 -3.467341 -2.815831 -1.487774 0.539104 2.856586 -6.851706 -6.474963 -7.610837 -1.938271 4.842868 -1.794714 5.171902 9.226521 -2.327030 -3.852734 2.171831 -2.499426 -0.540258 6.089055 1.557159 9.816702 -9.282705 5.594176 -1.058075 4.082142 3.257230 6.321260 -2.304016 -3.690311 3.213380 -0.128300 -0.852823 5.887279 -1.603095 1.064413 -0.681761 1.192476 0.662834 -0.882482 5.351935 -6.158932 5.259825 -3.362990 8.452326 -6.254155 -3.942351 2.430541 -5.632012 -4.062182 -3.490259 -0.389989 -1.267792 5.798756 -4.619863 -3.438303 -1.882444 -2.316209 1.430041 5.843116 -2.380011 -0.549385 -1.799138 -4.108601 5.922427 2.006373 -0.360999 -0.362862 -4.689371 0.521697 3.365562 -1.953780 -6.089062 -1.213843 -4.830276 -0.684353 -0.472551 -0.471405 4.534105 -3.948559 -2.233174 0.917539 -0.855873 0.675746 -3.194945 -4.144510 2.617360 -1.077675 -0.318695 1.309582 7.892665 4.946548 4.613780 -0.132590 -2.474926 1.640399 -4.137324 -5.393348 3.663396 0.441383 3.751114 2.360938 3.307381 -0.439076 1.962522 3.147890 -1.754352 3.206621 5.135085 1.663642 5.604449 -1.655496 1.104961 2.246984 -5.050046 3.776512 6.240565 -2.336259 -2.653621 2.356187 -0.549071 -3.703873 -2.034547 -0.147441 -1.291322 -4.106082 2.571271 3.828464 -0.179100 -4.678135 9.916129 1.771131 -10.403500 5.422135 0.035745 1.374996 5.869168 -3.214755 3.260899 2.265282 1.767958 2.052119 2.034843 5.836239 -6.345497 0.632791 -0.604863 3.945789 3.700990 -2.780753 -10.153423 2.020564 2.308029 7.193240 3.179449 6.408311 -3.406293 3.432575 -2.317402 -2.450818 -0.057595 -2.079602 3.686478 -1.260798 0.452886 -8.937524 3.335431 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/binomial-coefficient.cpp__main = 0.501941 0.680012 0.502514 -0.518229 -1.216896 0.416022 -1.201834 -0.868005 0.075519 0.420739 0.524825 -0.767104 -0.477974 0.997274 -1.119726 -0.918931 -0.584057 -0.008990 -0.032395 -0.946120 0.145614 0.205407 -0.107956 -0.112151 -0.280707 -0.424950 0.100560 0.055244 1.101890 -0.133174 -0.627759 -0.023976 0.360627 0.986814 0.365346 -0.203724 0.269919 1.035219 0.405865 -0.070712 -1.602886 -1.124004 0.441199 0.335944 0.216463 -1.196873 -0.669826 0.330185 -1.364675 0.815125 0.322702 -0.390958 -0.116936 0.042639 0.174439 0.604329 -1.757844 1.857591 -0.106431 -0.234118 -0.006571 -0.040823 0.311599 0.397567 0.748159 -0.528701 0.211998 1.465994 -0.794092 0.369258 -0.142016 -0.989184 1.534477 -0.096685 -0.787162 -0.117201 0.183761 -0.445124 0.518474 -1.558281 -0.791900 0.005151 0.684885 0.579490 0.455945 0.637448 0.304750 -1.380761 -0.088360 -1.382225 0.742837 -0.497097 0.712772 0.394216 -1.292969 -0.067296 0.439632 -0.442197 1.393075 0.588284 0.906478 0.259690 0.446980 -0.048662 0.103437 0.400958 0.180259 0.089918 -0.091491 -1.115036 -0.606853 0.274717 -1.986933 -0.056210 -0.559003 0.828094 -0.259167 -0.279538 0.217008 0.358185 -1.424438 -1.410647 -0.057516 -0.030659 0.926715 0.670588 -0.134172 0.799877 -0.105591 1.043110 -0.304787 -0.381422 -0.083326 0.166290 -0.123443 -2.175821 -2.367081 0.633840 0.612009 -0.605831 -0.979385 -0.787792 -0.280987 -0.053056 -0.188886 0.817349 1.503106 -0.328722 -1.277847 0.854591 -0.002311 -0.149685 2.081935 0.093857 1.741318 -0.897968 0.416319 -0.217616 -0.118066 -0.101999 -0.610733 -0.163074 -0.219146 0.226110 0.549417 -0.599328 -0.435416 -0.394910 -0.520975 -0.692686 0.070944 -0.273596 -0.042768 0.636092 0.196189 0.842839 -0.145910 1.403297 -1.157460 -1.770480 0.279438 -0.878847 -0.093321 0.876393 0.014065 0.005467 1.039290 -1.138685 -0.402878 0.122747 -0.359294 -0.319128 0.472829 1.006383 0.179337 0.259823 0.023325 0.955866 1.203091 0.094440 0.541283 -0.824176 0.079833 0.987129 0.121006 -1.809646 0.068963 -0.947773 0.133439 0.348411 -0.219124 0.415225 -0.081558 -0.414585 -0.569389 -0.699829 1.190315 0.121492 0.506258 0.503188 -1.066658 0.384585 -0.058083 0.808624 1.033609 0.903451 0.707135 -0.131577 0.462668 -1.012586 1.695884 0.240287 1.104589 -0.163258 0.338190 1.054890 0.056532 0.167974 0.733511 0.644738 -0.269279 0.847317 -0.159095 1.441095 -1.519402 0.751074 -0.812784 -0.288015 0.728649 2.265450 -0.963717 -0.152372 0.208269 0.414206 0.592974 -1.348372 -0.173664 -0.286839 -0.536350 0.587885 0.721586 -0.047250 -0.459323 1.055562 0.509548 -0.831593 1.379217 0.030374 -0.219381 -0.050494 -0.610063 -0.857788 0.434396 -0.818750 -0.066751 0.769804 0.777262 -0.856903 -0.948144 -0.265126 1.161242 -0.103743 0.362355 -0.733622 0.530218 1.416233 1.029046 0.476635 0.240412 -0.936377 -1.373103 0.221272 -0.252715 -0.451144 0.304183 0.333268 -0.924290 0.411922 0.555421 -1.082427 +PE-benchmarks/binomial-coefficient.cpp___GLOBAL__sub_I_binomial_coefficient.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/tower-of-hanoi.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tower-of-hanoi.cpp__towerOfHanoi(int, char, char, char) = 1.207577 1.575991 1.424878 -1.474981 -2.370541 0.893178 -1.973480 -2.112914 0.420029 2.759171 1.060821 -1.729643 -1.206622 2.487243 -2.635469 -1.930418 -0.720883 0.088820 0.139688 -2.385384 0.297705 0.821703 -0.185990 -0.393970 -0.162855 -1.266873 0.422969 0.295642 1.803406 -0.277832 -1.163812 -0.121403 0.717884 2.680918 0.487822 -0.119591 0.057668 2.419726 0.292654 0.915349 -4.707118 -2.989617 1.487510 0.953131 0.801029 -3.186430 -1.050836 0.776476 -2.047115 0.964199 0.220168 -1.182986 0.036586 -0.491840 0.199949 1.767860 -4.032241 3.302742 -0.271153 -1.349273 -0.883998 0.113854 1.612848 1.164422 0.560265 -1.581126 0.531116 3.092913 -2.164300 1.165932 -0.596797 -2.716749 2.469293 -0.040383 -2.086938 -0.046654 0.050880 -1.474283 1.280044 -3.520819 -1.567910 -0.409222 1.843403 0.443787 0.523719 1.688591 1.685326 -3.780911 0.264747 -3.209855 2.164758 -1.088205 2.382360 1.206414 -2.170800 0.286165 1.040038 -0.339134 3.019625 1.038083 2.425388 0.972865 1.512066 -0.241190 0.554880 1.482277 -0.363379 -0.528032 -0.470295 -2.614075 -0.894265 0.364762 -4.176294 -0.301291 -1.924933 1.635985 -0.048958 -0.896016 0.266842 1.929945 -4.429511 -3.501608 0.198617 -0.179397 2.154919 1.737082 0.170168 1.599215 0.081067 2.599170 -0.874036 -1.011584 -0.256318 0.709265 -0.984642 -4.007997 -4.456740 1.008653 1.088232 -1.853450 -2.500481 -2.683174 -1.152994 0.568816 -0.473028 2.581569 4.024647 -0.824207 -3.384419 1.790079 -0.620811 -0.898049 4.578117 0.352468 4.441182 -2.950251 1.406816 -0.924477 0.513730 0.660986 1.090971 -0.559495 -0.860295 0.783008 0.829204 -1.603290 -0.633516 -0.974697 -0.692853 -1.856928 0.342928 -0.550502 -0.007487 1.481222 -1.257464 2.744407 -1.435225 3.702741 -3.225843 -4.009109 0.707734 -3.252426 -0.672225 1.523289 0.127096 -0.274924 2.975891 -2.794715 -1.099708 -0.051227 -1.408503 -0.332062 1.626028 0.636322 0.390278 0.118249 -0.692713 3.664369 2.273625 0.033762 0.854434 -2.012667 0.183691 2.421577 0.569252 -4.353051 -0.037018 -2.667953 0.077688 0.501690 -0.585256 1.417960 -0.664439 -0.876706 -1.114731 -1.692250 2.157630 -0.566764 -0.053436 1.357871 -2.567591 0.957228 -0.273847 2.495832 2.543996 2.176633 1.062531 -0.644062 1.018576 -3.063168 2.730493 1.135749 2.573714 -0.609936 0.910598 2.787032 0.104064 0.671835 2.083078 1.110175 -0.314055 2.334401 -0.832160 3.336508 -3.921568 1.808843 -1.373436 -0.992098 1.617584 5.215607 -1.770337 -0.765692 0.778281 0.729932 0.623946 -2.937032 -0.461596 -0.819980 -1.157091 1.511121 2.181411 -0.321388 -1.321548 3.191645 1.487638 -2.884504 3.579774 -0.190813 -0.437991 0.409437 -1.624122 -1.431866 1.347578 -1.384094 -0.235621 1.695572 2.055870 -2.590556 -2.133481 -0.624355 2.947743 0.660067 0.423817 -3.369535 1.086620 2.925541 2.996728 1.032060 2.035554 -2.159059 -2.267532 0.334144 -0.765029 -1.280837 0.491480 0.939703 -1.750554 0.801236 -0.214571 -1.419010 +PE-benchmarks/tower-of-hanoi.cpp__main = 0.231657 0.075639 0.140884 -0.370049 -0.219541 -0.035556 0.222357 -0.030549 0.017225 -0.192657 0.156715 -0.264866 -0.318220 0.545138 -0.132926 -0.290299 0.151679 -0.439152 -0.105574 0.184810 -0.031540 0.203453 -0.032282 -0.068601 0.182038 0.124473 -0.147276 0.257759 0.358992 -0.364200 -0.403709 0.015686 0.078324 0.468995 -0.015126 -0.191174 0.193915 0.740355 -0.152455 0.428473 -0.367685 -0.077043 0.370574 -0.043122 -0.215681 -0.744214 -0.410907 0.254784 -0.402283 -0.020413 0.294249 -0.003760 -0.190121 -0.184899 0.149555 0.644863 -0.905570 0.558752 0.177008 0.402815 0.151835 -0.210294 -0.094287 -0.252784 0.083130 -0.277033 0.075584 -0.078481 -0.437590 0.130540 -0.248936 -0.301131 0.757775 0.188092 -0.237896 0.160448 0.089357 -0.526435 0.259095 -0.621287 -0.291205 -0.010179 0.097185 0.243360 0.623181 -0.145376 -0.150877 -0.614341 -0.181842 -0.578172 0.110647 -0.737279 0.227893 0.568752 -0.466015 0.194720 -0.035429 -0.198451 0.166421 0.280444 0.479986 0.222960 0.182823 -0.110344 0.213240 0.114909 -0.091996 -0.150008 -0.080220 -0.249875 -0.234158 0.138147 -0.872772 0.061729 -0.202842 0.206940 0.117835 0.082437 -0.034197 0.037160 -0.223904 -0.123245 0.068593 -0.101682 0.269579 0.653511 -0.116945 -0.032085 -0.397939 0.494227 0.138314 0.308754 -0.236684 0.101047 -0.099151 -0.922097 -0.423690 -0.178090 0.109159 -0.191801 -0.589434 -0.508438 -0.003551 -0.247583 -0.174032 0.229598 0.644926 -0.049654 -0.295902 0.569521 0.351004 0.447513 0.480033 -0.034564 0.609550 -0.283986 0.127440 0.055109 0.008702 -0.230247 -0.304577 -0.067974 -0.221719 -0.066210 -0.001306 -0.697647 0.441820 0.085506 -0.078008 0.191885 -0.206775 -0.268319 -0.562677 0.754713 0.243288 0.475898 0.018834 0.648552 -0.145846 -0.509325 0.305446 0.199002 0.258486 -0.356540 -0.202020 0.162192 0.164960 -0.406710 -0.309734 0.033745 0.148947 -0.202889 0.220777 0.194114 -0.059617 -0.064653 0.199455 0.053804 0.365725 -0.279174 0.425629 -0.556034 0.144093 0.205034 -0.133802 -0.721948 0.309787 -0.100244 -0.065799 0.255469 -0.044796 -0.047247 -0.154969 -0.428987 0.204944 -0.130498 0.216115 0.029036 -0.301639 0.026858 -0.212963 -0.081324 0.223199 0.334590 0.517852 0.119614 0.078377 -0.073493 0.058043 0.018486 -0.087366 -0.055891 -0.066197 0.160588 0.150725 0.215474 0.188310 -0.084407 0.155154 0.264841 -0.196822 0.325092 0.577506 0.523450 0.115454 -0.236614 0.063160 -0.318751 0.395714 0.638648 -0.331590 -0.035259 0.258343 0.316012 0.057217 -0.470247 -0.188879 -0.172185 -0.434046 0.434551 -0.282993 -0.175089 0.085928 0.569448 -0.126954 -0.550359 0.214564 0.094398 0.131153 -0.040198 0.060810 -0.023287 0.351689 -0.461423 0.203026 0.067126 0.358820 -0.060781 -0.360484 -0.054145 0.141296 -0.008544 0.183751 -0.424017 0.000887 0.302436 0.514850 0.363465 0.093082 -0.005577 -0.265934 -0.048930 -0.007363 -0.120886 -0.123833 0.220743 -0.361053 -0.128771 -0.221428 -0.260637 +PE-benchmarks/tower-of-hanoi.cpp___GLOBAL__sub_I_tower_of_hanoi.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/quicksort-on-singly-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 0.219849 0.245343 0.858384 -1.155050 -1.592788 0.260702 -0.038050 -0.621294 0.175193 0.255654 0.875653 -0.803868 -0.261432 1.815247 -0.426978 -0.812044 -0.172352 -0.501393 -0.207239 -0.091715 0.209273 0.737970 -0.262656 0.237398 -0.068102 -0.139139 -0.155147 0.743860 0.563689 -0.290724 -0.829641 -0.260905 -0.059205 1.298469 0.201693 -0.256633 0.293269 2.173192 -1.189859 1.363400 -1.272725 -0.932466 0.775784 0.097550 -0.267098 -1.615164 -1.590862 0.664326 -0.529384 -0.360403 1.147411 0.039019 0.149406 -0.006499 0.714672 0.826446 -1.944156 0.741231 0.384281 -0.107807 0.099523 -0.222853 -0.149106 0.428195 -0.821327 -0.665728 0.471286 0.535547 -0.257837 -0.052706 -0.077868 -1.674811 1.965594 0.348521 -0.786243 0.236659 0.920892 -1.641915 1.308921 -0.797626 -1.491291 0.051256 -0.119088 -0.620217 1.378519 -0.263837 0.763263 -1.943123 0.290855 -1.993491 0.742451 -1.503036 0.431689 1.408525 -1.309610 0.256025 0.668565 0.863509 1.359599 0.344626 1.270610 0.981611 0.637811 0.335123 1.040109 0.787582 -0.635703 -0.565426 -1.254099 -1.617879 0.048390 -0.579224 -2.601348 0.323424 0.178072 -0.130097 -0.117189 -0.170440 0.140197 1.513773 -1.128910 0.242346 0.572824 -0.194381 0.128440 1.645883 -0.588311 0.312859 -0.699881 1.457182 -0.692352 0.823023 -0.096858 0.450502 -0.895434 -1.308109 -1.528705 0.496154 0.487944 -0.801458 -1.258690 -1.686194 -0.030326 0.403611 -0.473655 1.037060 2.478214 -0.902870 -1.399635 1.540672 1.357552 -0.182667 1.243639 0.064012 1.948095 -0.656849 -0.233190 -1.002919 -0.671923 -0.411991 0.570798 0.532933 -0.214821 0.637677 -0.048328 -2.355064 2.439215 -0.420369 -0.861309 0.040205 0.350405 -0.746287 -0.955581 1.806141 0.112489 1.102624 -0.014971 1.810969 -0.560805 -1.177416 0.569812 -0.592455 0.196401 -1.132467 -0.400567 0.479888 1.097673 -0.821900 -0.535314 -0.540467 -0.693616 -0.656132 0.245320 -0.103534 0.396667 0.394679 0.615367 0.610736 1.940928 0.443801 0.314832 -1.443619 0.567176 0.756596 -0.465739 -1.733319 0.166934 -0.896425 0.016426 -0.201241 -0.224388 0.512942 -0.913322 -0.814540 -0.310013 -0.634896 0.469910 0.366930 -1.888273 0.328381 -0.527760 1.096335 0.529616 0.781750 1.789976 1.461394 1.362533 0.156668 0.201979 -0.068253 -0.223083 0.241256 0.535219 0.155942 0.604079 1.610762 0.668196 0.263613 1.030428 0.936872 0.379850 1.179292 0.447580 2.134079 0.235330 -0.145425 -0.407328 -0.022716 1.125434 2.632084 0.065170 0.384728 0.569432 0.726402 -0.518122 -1.362087 0.075092 -0.504234 -0.372878 0.947990 0.262148 -0.272687 -0.231071 1.407140 0.022422 -1.834199 0.482940 0.036483 0.538261 0.845980 -0.044264 0.179761 0.478589 -1.091716 1.407497 0.973590 0.840590 -1.009663 -0.965127 -0.032070 0.615506 0.717083 1.001470 -2.014217 0.856832 0.790283 1.287889 0.169166 1.143649 -1.158064 -0.648360 0.661689 -0.616830 -0.510151 0.166855 0.629285 -1.177936 0.316413 -1.125434 -1.325391 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__printList(Node*) = 0.266388 0.181607 0.715947 -0.688597 -0.696641 0.254541 -0.120505 -0.474700 0.204757 0.997904 0.240705 -0.392912 -0.663243 0.965833 -0.399327 -0.836523 -0.050486 -0.314078 -0.021096 -0.406848 0.030881 0.338713 -0.059827 -0.121279 0.075738 -0.379048 0.140638 0.453917 0.163908 -0.066562 -0.384896 -0.186964 -0.002911 1.088450 0.016828 0.283028 0.002674 1.373394 -0.443933 1.237072 -1.400853 -1.332947 0.729028 0.111179 0.117639 -0.764085 -0.166636 0.459743 -0.685489 -0.273552 0.403577 -0.087418 0.025063 -0.362210 0.308634 0.566584 -1.520781 0.661606 -0.046464 -0.434992 -0.413893 -0.192599 0.212501 0.435450 -0.378793 -0.576911 0.247873 0.538150 -0.782828 0.344818 -0.185240 -0.981716 1.067850 0.321826 -0.630480 0.238354 0.527777 -0.562907 0.725497 -0.988187 -0.833026 -0.250400 0.269963 -0.392198 0.731973 0.446995 0.759702 -1.546052 0.404840 -1.267968 0.936572 -0.790636 0.681705 0.921715 -0.515846 0.455948 0.476297 0.545147 0.660173 -0.074772 0.921654 0.534120 0.616484 0.204961 0.622132 0.506595 -0.685597 -0.652017 -0.724886 -1.000498 -0.002448 -0.442218 -1.349872 -0.008934 -0.277750 0.541280 0.296922 -0.082582 -0.178759 0.662211 -1.961480 -0.478847 0.298343 -0.153117 0.671765 0.661911 -0.242848 0.368392 0.039068 1.108345 -0.466058 0.055529 -0.087696 0.401396 -0.390941 -0.336721 -1.057811 0.252740 0.380322 -0.613436 -1.018450 -1.293655 -0.414714 0.785092 -0.193983 1.317686 1.839483 -0.375550 -1.047224 0.852110 -0.227247 0.006830 1.064566 0.236642 1.222362 -0.839678 0.185442 -0.579104 0.095413 0.256687 1.073839 0.155962 -0.414863 0.622990 0.099920 -0.407137 0.405908 -0.363615 -0.307134 -0.873850 0.074175 -0.596955 -0.263029 0.998373 -0.891884 1.051998 -0.410444 1.437417 -0.892857 -0.993834 0.321083 -1.424451 -0.157096 -0.596411 -0.277529 -0.021205 0.870147 -1.174046 -0.530213 -0.446471 -0.572296 -0.157059 0.491188 -0.423352 0.127372 0.009048 0.071799 1.670425 0.985660 0.167447 -0.083920 -1.060285 0.248183 0.521303 -0.121221 -1.071024 0.072162 -0.629430 -0.066054 0.307187 -0.097124 0.402213 -0.548694 -0.438373 -0.207725 -0.473813 0.288540 -0.125330 -1.137080 0.183729 -0.068676 0.514724 0.420645 0.811382 1.138526 0.834294 0.607628 -0.058417 0.178964 -0.524001 0.004979 0.300814 0.505011 0.118715 0.393927 1.030692 0.307412 0.154596 0.920950 0.742465 -0.083050 0.918738 -0.032579 1.328110 -0.578954 0.160244 -0.151551 -0.200805 0.639947 1.590931 -0.708536 0.169164 0.588943 0.356666 -0.142461 -0.610138 -0.146544 -0.583317 -0.104058 0.650963 0.502114 -0.316029 -0.283367 1.218691 0.256376 -1.446749 0.709610 0.004592 0.227590 0.637756 -0.402711 -0.097900 0.489846 -0.756556 0.633697 0.520384 0.611173 -0.938288 -0.226231 -0.081675 0.684955 0.552535 0.340899 -1.270868 0.054051 0.546421 1.150068 0.445908 0.975471 -0.745258 -0.407883 0.152349 -0.628816 -0.377674 0.057424 0.509669 -0.363301 0.222284 -0.902193 -0.676922 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__getTail(Node*) = 0.385251 0.094835 0.998097 -0.802732 -0.602621 0.374882 0.401011 -0.334921 0.425422 1.523052 0.161997 -0.000766 -0.950102 0.981395 -0.311052 -0.828834 0.430279 -0.802529 0.261075 -0.210957 0.051585 0.546194 -0.043453 0.027894 0.274285 -0.409410 0.043782 0.604028 -0.171568 -0.043535 -0.631548 -0.213823 -0.344770 1.193196 -0.128572 0.246947 0.100801 1.756594 -0.923572 1.823830 -1.549127 -1.530895 0.651573 0.070580 0.168890 -0.854001 0.115230 0.367184 -0.476037 -0.546138 0.754951 -0.182874 0.178913 -0.263154 0.629368 0.642427 -1.832111 0.285344 -0.143834 -0.232683 -0.282383 -0.326636 0.180883 0.472659 -0.601573 -0.513262 0.511501 0.314657 -0.941045 0.448176 -0.194135 -1.076442 0.787815 0.583821 -0.773009 0.309680 0.980436 -1.011370 0.901375 -1.300245 -1.035977 -0.252057 0.056748 -0.711102 1.046958 0.283178 0.967618 -1.806095 0.620583 -1.324567 1.149681 -1.071409 0.799535 1.268076 -0.223506 0.548533 0.665721 0.991252 0.562282 -0.451472 1.194594 0.935437 0.785111 0.207178 0.753644 0.623537 -1.085321 -0.825365 -1.040223 -0.874001 0.028321 -0.617976 -1.235419 -0.156525 -0.164382 0.536663 0.656934 -0.142897 -0.412241 0.914520 -2.408594 -0.355926 0.331321 -0.193355 0.713237 0.817536 -0.325547 0.304452 0.138431 1.520792 -0.731441 0.288304 -0.272729 0.436254 -0.640463 0.146047 -0.795423 -0.014225 0.339265 -0.735638 -1.201665 -1.678677 -0.470501 0.973537 -0.023965 1.645243 2.207414 -0.380083 -0.993359 1.041959 -0.528804 0.044338 0.967904 0.243827 0.913637 -0.883537 0.180167 -0.912152 0.346190 0.067133 1.987024 0.434022 -0.255279 0.635294 0.119927 -0.245466 0.440747 -0.376559 -0.341265 -1.167218 -0.051583 -0.779365 -0.301851 1.259950 -1.484378 1.055491 -0.492564 1.608676 -0.871777 -0.962505 0.323179 -1.717133 0.041052 -1.225298 -0.456512 0.157889 0.795494 -1.382287 -0.618522 -0.743911 -0.577310 -0.052075 0.302947 -1.081943 0.173175 -0.066262 0.167252 2.277614 1.110740 0.361434 -0.228128 -1.202639 0.288545 0.259258 -0.409222 -1.036280 0.262048 -0.595998 -0.061840 0.422034 -0.099953 0.332058 -0.750655 -0.791361 -0.145068 -0.513899 0.069388 -0.119465 -1.974062 0.043762 0.290954 0.440394 0.600445 0.625384 1.273290 0.868738 0.734481 -0.250836 0.233543 -0.354678 -0.456806 0.350053 0.489731 0.093455 0.276776 1.168025 0.429039 0.014931 0.810947 0.944519 0.016467 0.953615 0.060236 1.369502 -0.338421 -0.006821 -0.017982 -0.363910 0.646919 1.417459 -0.642302 0.519495 0.714907 0.505460 -0.286219 -0.367450 -0.024931 -0.915171 0.132858 0.626258 0.433997 -0.499107 -0.307949 1.324322 0.229043 -1.789575 0.489871 -0.063373 0.351083 0.999306 -0.201209 0.002195 0.456875 -1.064821 1.222671 0.340922 0.655104 -0.803716 -0.177921 -0.107098 0.479550 0.684936 0.370960 -1.654596 -0.268911 0.312374 1.304330 0.760574 1.464358 -0.634111 -0.202940 0.043275 -1.044638 -0.557070 -0.004174 0.786491 -0.263642 0.235367 -1.466578 -0.576518 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__partition(Node*, Node*, Node**, Node**) = 0.811569 1.155923 4.155124 -4.551252 -5.693830 0.973220 1.124879 -2.141249 1.306239 5.281199 2.482423 -2.553456 -2.300266 6.790308 -1.540253 -3.316285 0.016033 -2.391652 -0.070001 -0.830192 0.670032 3.275762 -0.716464 0.808124 0.281876 -1.151864 -0.211930 3.199908 0.784399 -0.123740 -2.663712 -1.253272 -0.587377 5.421951 0.003524 -0.158777 0.357478 8.588557 -6.257932 7.538783 -6.469404 -5.658740 3.439812 0.622075 -0.019546 -5.810516 -3.657694 2.626541 -1.395404 -2.780759 4.166980 0.235731 1.116919 -0.711982 3.098709 2.881738 -7.843431 1.817549 0.731214 -1.655973 -0.688870 -0.964428 0.106408 2.825097 -4.628382 -2.815558 1.610733 1.508532 -1.889720 0.502124 -0.403376 -6.343817 5.483127 1.870725 -3.782543 1.293485 4.069361 -6.233818 5.250628 -4.308881 -5.639796 -0.371007 -0.280975 -3.620695 4.759235 0.176455 4.480271 -8.274117 2.073673 -7.343365 4.294538 -5.614249 2.427393 6.109158 -3.056612 1.745981 2.788444 4.550405 5.230125 -0.412655 5.121905 4.658061 4.011074 1.568962 3.980205 4.251578 -4.387654 -3.514713 -5.715464 -6.154325 0.788425 -2.987521 -8.329244 0.548156 0.633303 -0.078197 1.466234 -1.405220 -0.615657 6.709830 -7.818257 0.083322 2.501520 -0.834073 1.187092 5.631859 -2.070894 1.351149 -1.228738 6.289068 -3.174577 2.888950 -0.242712 2.126485 -4.605184 -1.895353 -4.680008 1.603092 1.509617 -3.371101 -5.074582 -8.240400 -0.919073 3.320084 -1.420438 5.391143 10.562547 -3.245291 -5.670803 5.674584 2.221971 -1.355544 4.113328 0.487566 6.773579 -3.329544 -0.428593 -4.745260 -1.245396 -0.400812 8.682135 2.513390 -1.479288 3.100053 -0.481994 -7.178865 6.404018 -1.637233 -2.775484 -3.133285 1.260441 -3.390883 -2.399046 6.868144 -4.490024 4.740337 -2.155784 7.335207 -3.047728 -4.396872 2.173989 -6.129930 0.213232 -5.813773 -1.983952 1.974627 4.644712 -4.555635 -2.208587 -3.255664 -3.407609 -1.938442 1.131511 -4.845595 1.210227 0.832655 1.901021 6.865094 6.761534 2.122494 -0.103230 -5.794331 2.167968 2.172376 -1.844836 -6.608527 0.471101 -3.722237 -0.250315 -0.196291 -0.883297 2.110442 -3.937554 -3.175907 -0.984818 -3.035628 0.744471 0.332151 -9.272839 1.246568 -0.858297 4.727600 2.411406 3.351106 6.683914 5.688184 5.054204 0.328747 0.664779 -1.222610 -2.092798 2.180000 2.596091 -0.606570 2.383214 6.897453 2.581567 0.836060 4.711633 3.972925 0.753341 4.872513 0.277032 7.836566 -0.035143 -0.273567 -0.829450 -0.263243 3.668435 9.484022 -0.102406 1.417226 2.919639 2.184845 -2.528092 -3.120221 0.222334 -3.076831 -0.292002 3.597974 1.911344 -1.954733 -0.942281 5.993977 0.423248 -8.277002 1.933615 -0.279919 2.224033 4.394146 -0.682711 0.889957 2.005340 -4.337703 6.296883 3.513302 3.113014 -4.449185 -2.937772 -0.159197 2.316401 4.716176 3.220915 -9.918754 1.413748 2.396672 5.765799 1.126106 7.180094 -4.519004 -1.542204 2.191770 -3.440047 -2.471192 -0.057767 2.899970 -3.165958 1.641968 -6.259864 -4.220290 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSortRecur(Node*, Node*) = 0.765485 1.339610 3.414904 -3.443641 -5.234836 1.043101 -0.143148 -1.989533 1.007211 4.075271 2.033678 -2.182083 -2.033120 5.299145 -1.762956 -3.016377 -0.636369 -1.687944 0.006823 -1.306946 0.550824 2.499071 -0.610010 0.975082 -0.171197 -1.114586 -0.174510 2.231192 1.350592 -0.056630 -2.236003 -0.952705 -0.371685 4.287908 0.225999 -0.300502 0.570677 6.897738 -4.036940 5.123229 -5.332508 -4.827929 2.243568 0.682332 0.246803 -4.549664 -2.874320 2.094364 -2.006093 -1.300174 3.531386 0.132649 0.680908 -0.056634 2.658289 1.957892 -6.617443 2.516742 0.322978 -1.300882 -0.247799 -0.666840 0.002671 2.459683 -2.759325 -2.144647 1.300475 2.151843 -1.649257 0.502674 -0.036936 -5.051336 4.738674 1.282181 -3.301064 0.814010 3.544439 -4.492873 4.178983 -4.096500 -4.792418 -0.078979 0.018417 -2.445694 3.819868 0.478880 3.321754 -6.593126 1.675852 -6.025876 3.486142 -4.251842 1.890715 4.636138 -2.881830 1.061633 2.467134 3.026747 4.831865 -0.188481 4.154171 3.493327 3.129685 1.440973 2.723058 3.190677 -3.030840 -2.245020 -4.373904 -5.250710 0.179116 -2.030838 -6.905626 0.303705 0.636427 0.593186 0.947020 -1.128180 -0.325299 4.858539 -6.506816 -0.804749 1.730646 -0.575488 1.342517 4.305845 -1.801897 1.639497 -0.859677 5.264368 -2.771985 1.930563 -0.088564 1.484909 -3.208972 -2.210465 -5.149262 1.742770 1.526103 -2.533492 -4.022656 -6.169891 -0.774477 2.341052 -1.037811 4.427607 8.565758 -2.645923 -4.668436 4.724941 1.312254 -1.106923 4.115398 0.378967 5.556306 -2.521946 -0.440197 -3.797452 -1.263128 -0.613490 5.905634 2.150108 -0.896857 2.413141 0.211525 -4.952055 3.903453 -1.593327 -2.666090 -3.043720 1.057314 -2.590920 -1.521244 5.164925 -3.161322 3.566826 -1.308690 5.918522 -2.622446 -4.185140 1.633839 -4.973128 0.294915 -3.634254 -1.444587 1.538069 3.797842 -3.934832 -1.656643 -2.346936 -2.763223 -1.757400 0.583774 -2.680389 1.134278 1.014396 1.782960 5.666713 5.948307 2.065121 0.020040 -4.688635 1.629828 1.806735 -1.472781 -5.432942 0.423760 -3.139077 -0.007899 0.156768 -0.810236 1.574450 -2.766180 -2.517126 -1.399897 -2.696859 1.357217 0.667326 -6.398164 1.134972 -1.069308 3.884943 1.770251 2.445124 5.455920 4.786493 4.596364 0.338169 0.813989 -1.188808 -0.060612 1.669491 2.723317 -0.590572 1.854992 5.550711 2.007048 0.617845 3.749792 3.399598 0.367338 3.893198 -0.182841 6.656139 -0.966708 0.339018 -1.382625 -0.036534 2.908767 8.205529 -0.695301 1.336524 2.180243 1.915249 -1.323851 -2.964191 0.232484 -2.521109 -0.130747 2.637859 1.829478 -1.501464 -0.843712 4.507870 0.530862 -6.180788 1.975769 -0.252300 1.426202 3.191462 -0.646747 -0.077857 1.471352 -3.965020 4.761232 3.155521 2.477714 -3.627389 -2.538647 -0.281460 2.248794 3.065761 2.810043 -7.302601 1.171536 2.557985 4.460718 1.041902 5.193959 -3.941150 -2.330255 2.080945 -2.917528 -2.224787 0.338789 2.281469 -2.765491 1.706441 -3.812219 -4.198722 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.257716 0.399466 0.577873 -0.553533 -1.164344 0.170828 -0.247950 -0.501522 0.012415 0.505156 0.399656 -0.455909 -0.126556 1.101676 -0.580150 -0.420108 -0.409559 -0.337603 -0.115778 -0.336548 0.136888 0.496440 -0.142498 0.221622 -0.167370 -0.153174 -0.040592 0.172145 0.134553 -0.128440 -0.331869 -0.222406 0.097439 0.660454 0.177138 -0.119603 0.032891 1.119754 -0.454971 0.626602 -1.051628 -0.857482 0.243429 0.081572 0.242719 -1.124724 -0.785226 0.394587 -0.117503 0.008226 0.506204 0.049797 -0.081559 0.103501 0.418539 0.142157 -1.105961 0.753349 0.132783 -0.304664 0.034819 -0.047160 -0.062820 0.337944 -0.226766 -0.348478 0.126082 0.708577 -0.181239 0.148490 0.115079 -0.824162 0.917035 0.061148 -0.523913 0.049746 0.537589 -0.649464 0.750823 -0.990836 -0.860999 0.042587 0.044589 -0.116663 0.497551 0.196841 0.453825 -1.075174 0.333026 -1.092481 0.472437 -0.653015 0.159893 0.616792 -0.566287 0.098305 0.490265 0.328652 1.156552 0.332111 0.624855 0.623649 0.485804 0.350564 0.382569 0.532224 -0.243679 -0.190565 -0.652410 -1.022264 0.002206 -0.146305 -1.308316 0.127622 0.329537 0.095178 -0.173051 -0.141721 0.231393 0.752937 -1.107235 -0.262363 0.370629 -0.057586 0.095651 0.619024 -0.335306 0.364722 -0.391896 0.774002 -0.511387 0.375186 0.147766 0.228153 -0.599305 -0.969198 -1.217530 0.447040 0.227138 -0.405882 -0.569036 -0.975713 -0.030998 0.345665 -0.298220 0.554090 1.373599 -0.574516 -0.894639 0.844729 0.708334 -0.433733 0.788129 0.074548 1.047062 -0.237182 -0.275040 -0.476472 -0.488874 -0.157123 0.382503 0.363113 -0.129642 0.405150 0.130178 -1.384016 0.772905 -0.388030 -0.631254 -0.289384 0.240662 -0.371307 -0.102477 0.681597 -0.073614 0.584811 -0.196013 0.919385 -0.404776 -0.713990 0.150888 -0.880914 0.098992 -0.235023 0.006253 0.204213 0.725822 -0.662508 -0.213599 -0.139562 -0.672889 -0.445477 0.085597 -0.362220 0.274625 0.369008 0.386046 0.681254 1.118993 0.363184 0.163426 -0.677064 0.303062 0.362611 -0.017477 -1.241803 -0.000333 -0.571965 0.043201 -0.121085 -0.150103 0.239229 -0.246732 -0.264123 -0.298675 -0.635604 0.340601 0.246395 -0.233061 0.155129 -0.495292 0.926035 0.044814 0.378212 0.932882 0.922727 0.887853 0.192795 0.134326 -0.313666 0.460982 0.296947 0.644488 -0.310501 0.338787 0.940173 0.380657 0.177782 0.699875 0.567769 0.097508 0.693887 -0.159694 1.233052 -0.540982 0.191688 -0.462786 0.224194 0.576519 1.563774 -0.045760 0.168160 0.229574 0.169229 -0.139786 -0.453427 0.087163 -0.256229 -0.209439 0.481329 0.563794 -0.135912 -0.116800 0.650083 0.073464 -0.836849 0.449972 0.019987 0.214595 0.368387 -0.063719 -0.090254 0.274938 -0.502905 0.541003 0.708564 0.459794 -0.708524 -0.839490 -0.056199 0.491215 0.478989 0.686042 -1.192954 0.464126 0.722489 0.631847 -0.230868 0.587415 -0.840406 -0.693572 0.559873 -0.244027 -0.418202 0.336996 0.326776 -0.569293 0.265143 -0.198769 -0.873968 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.305520 0.848560 0.537473 -0.370790 -1.454349 -0.196232 -1.096307 -0.278494 -0.062112 0.008517 -0.012957 -1.096244 -1.040518 1.037378 -1.286188 -1.343305 -1.033405 -0.122992 -0.298623 -1.261683 -0.029887 0.477508 0.092259 0.264079 0.201484 -0.435164 -0.261646 0.267520 1.969732 -0.601649 -0.046476 0.121502 0.669482 0.976310 -0.222906 -0.333914 0.613869 1.656350 1.199406 -0.544275 -1.265705 -1.203305 0.599454 0.222834 0.033890 -1.220808 -0.645434 0.512325 -2.528670 1.618048 0.199425 0.370902 -0.998341 -0.202805 0.507494 0.736710 -2.608111 2.944107 -0.194052 0.137319 0.014795 -0.147081 -0.399109 -0.358527 1.418135 -0.549305 -0.200042 1.342260 -1.425090 0.777783 0.355585 -0.105453 1.904216 -0.180100 -0.723536 0.535574 0.552889 0.222016 0.515071 -2.346504 -0.678032 -0.037723 1.213103 0.988401 0.909958 0.640472 -0.425084 -1.417984 -0.280479 -1.086204 0.604026 -1.115709 0.520229 0.889080 -1.704845 0.685235 0.119624 -1.426329 1.210880 0.801088 1.176685 0.031979 0.728476 0.471706 -0.525872 0.149989 0.384285 0.199291 -0.012115 -1.086500 -0.997183 0.545591 -2.131676 -0.185040 -0.282531 1.402218 0.277364 -0.012540 0.166172 -0.392616 -1.490967 -1.670861 0.088496 -0.109540 0.881768 0.602088 -0.289020 0.460949 -0.523629 1.375126 -0.029220 -0.132691 -0.035029 0.050187 0.485636 -2.730230 -2.816301 0.006236 0.143477 -0.151976 -1.035229 -0.385043 -0.376599 -0.600212 -0.198690 0.867325 1.812031 0.002373 -1.169116 1.514912 -0.368039 0.993248 2.096607 0.152337 1.478835 -0.377799 -0.109807 -0.034086 -0.211730 0.103377 -1.533347 0.117981 -0.446837 -0.077558 1.021609 0.195194 -1.409807 -0.597749 -0.499307 -1.284018 -0.072569 -0.578753 -0.272508 1.059488 0.654437 1.431550 -0.133850 1.540734 -0.805821 -2.418375 0.439632 -0.766199 0.386823 0.805336 0.097846 -0.104005 0.509348 -1.503245 -0.603111 0.265044 -0.072097 -0.672767 0.127115 1.746013 0.185820 0.065384 0.690400 1.039597 1.204333 -0.289052 0.822008 -1.602257 -0.025947 0.740385 0.247865 -2.138068 0.908632 -0.158074 -0.015466 0.925988 -0.271692 -0.328372 0.433217 -0.460339 -0.627759 -0.807134 1.268948 0.026459 0.842897 0.381271 -1.183294 0.242877 0.099072 0.494137 1.833326 0.198461 0.532162 0.352599 0.528267 -0.954200 2.545294 0.262884 0.951536 -0.101094 0.323861 1.007361 0.426272 -0.126045 0.680789 1.075812 -1.235350 0.849964 0.233456 2.021855 -1.874765 0.344909 -0.933811 -0.032253 0.787591 2.405512 -1.405818 -0.185552 0.656208 0.961664 1.288536 -1.853354 -0.674313 -0.467339 -0.567766 0.808401 -0.113956 -0.855657 0.477604 0.797310 0.231724 -0.629900 1.554104 0.197725 -0.292646 -1.231355 -0.210612 -1.642491 1.236171 -1.696541 -0.585423 0.501646 0.573754 -0.710904 -0.920707 -0.355990 1.392739 -0.623891 0.859388 -0.332622 -0.011174 1.709847 0.872309 0.611479 -0.241671 -0.331834 -2.576160 0.335237 -0.127382 -0.964369 0.513190 -0.079638 -1.140357 0.658820 1.368227 -2.044397 +PE-benchmarks/quicksort-on-singly-linked-list.cpp___GLOBAL__sub_I_quicksort_on_singly_linked_list.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/biconnectivity.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/biconnectivity.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/biconnectivity.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 4.359091 1.182742 5.676244 -3.961074 -5.001469 2.998853 -1.021993 -6.015032 1.271412 12.996341 4.350333 -4.498215 -1.043977 9.352068 -3.633110 -4.602946 1.513456 2.546130 0.789022 -3.125066 -0.480277 3.012618 -1.834610 -3.140770 2.021525 -3.167939 1.916124 3.967137 -1.388956 3.508079 -4.594771 -1.681502 0.159492 11.217417 1.137926 0.373736 0.001608 11.679472 -10.618303 11.135437 -11.457940 -11.703655 9.224638 2.115745 2.042407 -3.275654 -3.784668 4.153783 -2.276138 -5.974580 3.229131 -3.244730 3.292811 -3.994319 1.599985 6.681633 -13.020478 1.407749 1.152040 -5.780061 -7.299904 -1.336330 4.459810 4.052452 -7.415046 -6.420908 3.106395 6.072654 -2.508114 1.401294 -5.007378 -13.780603 7.720615 1.395742 -5.509874 1.309872 2.098301 -8.498500 6.938900 -2.952878 -7.718422 -2.860239 2.042803 -5.887147 4.567154 5.205425 10.871799 -15.600459 4.913451 -13.655461 9.606714 -6.081730 8.972725 9.269652 -7.134342 3.115276 5.640628 11.051822 6.316522 0.577946 9.861306 5.529037 3.041760 -0.499256 6.075485 8.265364 -8.511493 -7.528923 -8.190397 -8.819936 2.111923 -3.915026 -12.375476 0.584175 -6.260705 2.497741 1.116290 -2.904804 -1.131691 12.248216 -17.537916 -2.571391 3.197477 -1.446790 6.596522 7.168293 -0.841579 3.185670 -0.063969 9.536982 -4.599899 -2.487382 -1.809825 5.039574 -8.228181 -4.334467 -7.549271 3.434068 4.502500 -9.469610 -10.225246 -15.746995 -2.222177 8.539971 -2.751680 10.481329 17.496806 -4.873695 -8.911055 6.434169 -0.754152 -3.326085 11.732079 2.187995 14.990066 -11.541972 4.534165 -5.020813 1.999193 2.802041 9.095162 -0.197894 -3.978841 6.320002 0.735672 -5.474314 12.872298 -2.617556 -1.851625 -5.968062 3.615116 -2.110485 -1.120363 10.679455 -9.234807 7.211384 -5.362754 14.727758 -9.370684 -7.783938 3.537225 -13.573785 -4.259651 -6.267936 -2.389167 -0.863064 10.895653 -9.206233 -4.890702 -3.746028 -5.271589 -0.130874 6.505956 -3.473618 1.139403 -0.349115 -2.869166 11.283589 7.556651 1.747335 -0.458752 -8.957131 0.816547 6.599883 -3.573208 -11.928636 -1.306412 -9.200374 -0.420620 -1.390018 -1.044575 6.472244 -8.650434 -4.146412 -1.083222 -3.348287 2.388246 -2.370955 -10.398277 3.993274 -3.245418 4.689388 4.098677 10.287688 10.394916 10.081752 4.886021 -1.162626 2.090501 -6.430769 -4.157278 5.863622 4.278154 3.763222 4.197931 9.607970 1.962488 3.006918 4.937987 1.697484 3.869160 9.846297 1.545538 12.460877 -4.056889 3.335105 -0.077839 -3.292146 7.084471 14.030736 -4.179194 -1.076473 3.607227 0.575517 -4.887647 -4.145946 0.250022 -3.516592 -3.332298 2.928910 5.939817 -0.962396 -5.673320 14.170157 2.599247 -16.121299 7.763215 -0.513776 2.793896 9.241562 -4.244827 2.899257 3.093347 -1.415392 7.508777 5.633975 8.425827 -10.517056 -1.191407 -0.936785 7.671782 8.275711 0.937095 -16.864103 6.062083 4.509591 9.997931 3.025141 10.497634 -8.418362 0.760227 -1.020190 -6.676092 -2.039231 -0.594668 6.254385 -2.344916 3.092455 -13.148382 -2.528780 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/biconnectivity.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/biconnectivity.cpp__Graph::isBC() = 2.676429 0.463019 3.347347 -3.247875 -2.477596 2.184818 -0.358896 -2.375461 1.167732 6.435577 2.808946 -2.152815 -3.145843 2.772711 -1.610253 -3.142248 2.788606 0.309815 1.412384 -2.458168 -0.347977 0.926729 -0.699003 -2.814414 1.649226 -2.315135 0.117360 3.151269 1.141750 1.978901 -2.956252 -0.375525 -0.153724 6.957244 0.515891 -0.537874 0.289838 6.808704 -4.221934 4.523502 -6.237208 -6.798348 6.367057 1.407531 1.215603 -2.112220 -1.005074 2.146732 -3.586064 -2.660312 1.399101 -2.765756 3.037502 -2.853354 -0.609884 4.923813 -8.478840 0.624562 -0.036449 -3.163268 -4.011768 -0.157457 2.448117 2.217291 -2.023783 -3.735576 1.860094 2.676685 -2.333922 0.811504 -3.128472 -6.483127 3.588699 1.612357 -1.951450 0.826078 1.310560 -5.066284 3.183372 -1.761387 -4.292831 -1.697546 0.853840 -3.305420 3.508249 1.821895 6.132356 -8.257033 1.732589 -7.978276 5.314754 -3.337100 5.444007 4.966631 -3.527667 2.186445 3.122159 3.865323 2.373800 0.168740 6.658320 3.014648 2.689351 -0.637448 3.950166 3.792536 -3.926505 -3.367170 -3.651621 -3.982982 -0.513589 -2.244156 -6.793789 0.250785 -5.077295 1.202400 1.665805 -1.738228 -1.154391 6.196207 -8.163349 -2.304714 1.000406 -0.920077 3.889893 3.768348 0.202248 0.510789 1.467601 6.255122 -2.223874 -1.654286 -1.019248 3.143989 -2.126829 -3.752735 -3.807648 1.615145 2.719975 -5.486010 -6.669791 -7.462456 -1.312181 3.514652 -1.032225 5.225247 10.059017 -1.397769 -4.634254 3.480961 -2.437067 -1.129729 7.560184 1.480156 8.130106 -6.888615 3.144444 -2.668845 1.835291 1.184676 5.076728 -0.990174 -1.883718 3.073296 0.825485 -0.715872 4.241624 -1.468303 0.421609 -2.402412 0.716234 -1.810190 -2.014174 5.425332 -3.789781 4.915169 -1.212976 8.450057 -4.812474 -6.334860 2.740009 -4.097656 -2.330897 -2.310054 -0.918135 -0.012295 4.240479 -4.870760 -3.646187 -2.949945 -1.258224 0.172023 4.485137 -0.131530 0.774954 0.084678 -2.445663 4.358906 2.809718 0.225651 0.385908 -5.271442 0.339679 3.081138 -1.949020 -5.990818 -0.748345 -4.632111 0.256705 1.276018 0.092814 4.635644 -3.169057 -2.934250 0.375068 -0.913971 1.390791 -1.771074 -5.847731 2.406453 -0.233934 0.527491 1.992071 6.631556 5.761917 4.854512 0.355306 -0.881830 1.087176 -2.964536 -1.888888 1.162419 1.573861 2.426806 1.453751 4.523037 0.548548 2.106777 3.231130 1.932923 1.574028 5.303473 1.034607 5.697379 -2.418584 0.913696 1.169941 -3.421511 3.885947 6.970873 -2.026667 -1.283770 1.939839 1.081060 -2.094490 -3.707897 0.488963 -1.881132 -1.291138 1.968382 3.490483 0.072368 -3.680889 7.481284 2.523781 -9.926779 5.600645 -0.466322 1.206840 4.920189 -2.730555 1.046406 1.561260 -1.279642 4.201865 2.744713 3.923048 -5.860993 -0.749827 -0.041054 4.786347 1.954189 -0.349862 -8.113737 1.852688 1.327567 5.272968 3.900685 6.073354 -4.393131 -0.456439 -1.667362 -4.717571 -1.862082 -0.767011 2.731652 -2.439105 1.624955 -6.934509 0.248102 +PE-benchmarks/biconnectivity.cpp__main = 1.739796 2.574443 2.809593 -0.666320 -2.741085 0.453769 -4.237325 -0.508149 1.046547 2.513585 -1.072436 -1.992556 -5.974395 2.572413 -5.004985 -4.869719 -1.270501 -1.786469 1.040423 -5.133935 -0.412246 0.702750 0.711869 0.719268 1.112691 -2.295693 -0.573313 0.709084 6.525443 -1.643185 -1.642480 1.044143 0.634325 3.491882 -1.007751 -1.336557 3.123913 5.457949 3.705822 -0.968956 -5.225625 -4.906077 0.940809 1.220090 0.838202 -2.137468 0.740453 0.653352 -11.830695 7.105060 1.611611 -0.333032 -2.991364 -0.095723 2.638354 3.054929 -10.720678 10.728900 -2.277511 2.151601 0.846624 -1.171669 -0.395853 -1.243854 7.296320 -1.227321 0.868618 5.001726 -7.278066 3.599060 0.233471 0.352105 3.151496 0.027584 -2.695055 1.443238 3.077302 1.288368 0.880812 -11.289924 -2.117164 -0.232050 4.500772 2.751908 3.922911 3.412037 -1.849190 -4.919711 -0.894214 -2.941986 3.011549 -3.565170 3.054406 2.966563 -4.621337 1.984067 0.678577 -5.507286 2.944564 0.886348 4.363604 0.183178 1.990299 0.417539 -2.019162 -0.115545 0.712684 1.273223 0.670240 -1.714430 -5.458550 1.831469 -4.128429 -2.119007 -2.844873 6.619057 2.406575 -0.050217 -1.712520 -3.513756 -7.182208 -7.892518 -1.696374 -0.377074 5.487624 1.372208 -0.778816 2.325892 0.241445 5.988796 -0.577194 -2.038292 -1.761366 -0.360717 3.235857 -8.137172 -10.711445 -1.032576 1.363494 -0.597250 -4.532489 -1.352268 -2.395129 -2.800254 1.065564 6.132368 5.968568 1.619374 -3.112707 4.605460 -6.583444 5.300942 9.368653 0.660228 3.223060 -2.433008 1.666686 -0.452853 1.828413 -0.577589 -4.655223 0.128305 -0.388395 -1.013251 5.283920 7.168503 -10.807447 -1.439275 -0.965234 -8.596117 -1.075667 -1.961254 0.061350 3.386682 -1.229303 3.761677 -0.062671 5.596664 -4.082481 -9.691873 1.457836 -4.387962 2.197337 3.702814 -0.834047 -1.079793 1.137595 -6.567162 -2.677470 -0.279511 1.415084 -0.640107 -0.063832 6.893946 0.256321 -0.698312 1.689720 7.301468 3.749204 -0.683910 3.345311 -5.635831 -0.928957 2.311507 0.192234 -6.911684 4.707963 -0.111821 0.217319 5.356519 -0.630536 -1.652872 0.819144 -3.265669 -2.557434 -2.099741 5.297245 -0.085130 1.767646 1.188794 -2.959410 -2.152130 1.874190 0.792940 5.044338 -0.503882 1.324676 -0.964113 2.044474 -3.866473 10.458010 0.563426 3.997904 -0.130881 -0.211054 2.600820 0.447591 -1.751515 0.522741 4.252736 -5.884646 2.119547 0.893533 5.030131 -7.291451 2.333531 -3.336065 -2.456580 1.674965 6.363661 -7.937323 0.249196 2.681123 4.012663 6.414623 -6.193778 -2.388690 -3.418899 -0.845096 1.688508 -0.736119 -3.569011 0.769794 2.642975 1.610043 -1.846267 5.708458 0.310800 -2.154427 -4.173191 -0.993746 -7.680018 3.388758 -8.348920 -1.364203 -0.007783 1.818280 -0.733199 -1.385648 -1.776606 4.672514 -2.830012 1.120511 -0.104729 -2.036132 5.605694 3.223317 5.929101 -0.694315 0.203840 -9.274984 -1.113455 -2.881110 -3.584491 1.304110 1.115060 -3.203627 2.919473 5.477174 -6.617066 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/biconnectivity.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/biconnectivity.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/biconnectivity.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/biconnectivity.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/biconnectivity.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/biconnectivity.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/biconnectivity.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/biconnectivity.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/biconnectivity.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/biconnectivity.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/biconnectivity.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/biconnectivity.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/biconnectivity.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/biconnectivity.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/biconnectivity.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/biconnectivity.cpp___GLOBAL__sub_I_biconnectivity.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/find-parity.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-parity.cpp__getParity(unsigned int) = 0.290502 0.220376 0.647925 -0.939559 0.067526 0.088956 1.138212 -0.471569 0.285609 1.280523 0.281152 -0.362935 -0.897774 0.333710 0.142549 -0.445919 0.937738 -0.278592 -0.007912 -0.224405 -0.049777 0.192780 -0.068866 -0.792606 0.559442 -0.385635 0.234706 0.752723 0.151616 -0.232387 -0.499343 -0.143534 0.331416 1.411553 -0.177270 0.315179 -0.372145 1.215052 -0.692790 1.259379 -1.673000 -1.096192 1.499570 0.110951 -0.083887 -1.643607 0.061049 0.460928 0.061263 -1.032926 -0.030051 -0.446986 0.442314 -1.064022 -0.173328 1.595202 -1.116530 -0.065586 0.167119 -0.670165 -0.883916 -0.163500 0.485920 0.335706 -0.737653 -0.951299 0.409838 -0.282641 -0.980532 0.491303 -0.945833 -1.122914 1.223578 0.334234 -0.498193 0.407743 -0.223179 -1.322209 0.434109 -0.157964 -0.334033 -0.507170 0.539775 -0.171909 0.423708 0.098341 0.820947 -1.863992 -0.495484 -1.183518 1.025373 -0.780106 1.429999 0.875338 0.068219 0.769989 0.160020 0.127176 -0.279245 0.138853 1.346378 0.460140 1.085517 -0.465495 0.996446 0.598447 -1.125365 -1.376980 -0.576432 -0.568674 0.207436 0.093058 -1.634166 0.011303 -1.401869 -0.110193 0.575755 -0.357821 -0.177601 1.071526 -1.581759 -0.356382 0.600077 -0.360378 0.884257 1.180463 0.300645 0.054656 0.254109 1.061764 -0.003688 0.131722 -0.538163 0.673138 -0.248063 -0.923677 0.057162 -0.296103 0.285748 -1.019511 -1.362811 -1.211456 -0.639262 0.676854 -0.240346 0.238968 1.899022 -0.141772 -1.169413 0.539063 -0.016050 0.309391 0.685718 0.314038 1.907420 -1.822047 1.099118 -0.403419 0.942003 0.786674 2.191369 -0.514772 -0.957200 0.424474 -0.220431 -1.057784 0.786521 -0.212824 0.467866 0.507245 -0.220339 -0.330668 -0.909783 1.123487 -0.562502 1.758313 -0.808024 1.888381 -1.220112 -1.058744 0.243125 0.086813 -0.403571 -0.883525 -0.355297 0.139494 0.925206 -0.869724 -0.840526 -0.391879 -0.420019 0.353765 1.200028 -1.200074 -0.230094 -0.595714 -0.743992 0.912546 0.201645 -0.465795 -0.096987 -1.136161 0.233074 0.478515 0.000000 -1.242553 -0.072524 -0.882902 -0.283242 0.215237 -0.145285 0.924047 -0.411475 -0.577109 0.559264 -0.407520 -0.326493 -0.845979 -1.193487 0.301356 0.095513 -0.198812 0.180623 1.583638 1.037514 0.615112 -0.321146 -0.510777 0.210054 -0.719700 -1.477261 0.380276 -0.132561 0.480877 0.423316 0.954466 0.237250 0.270243 1.104347 -0.142586 0.267884 1.124670 0.287561 1.057430 -0.466331 -0.252952 0.683186 -0.994666 0.722595 1.152616 -0.233359 -0.893284 0.703087 0.351867 -0.647803 -0.744161 -0.246340 -0.361052 -0.564056 0.956280 0.678396 -0.311802 -0.609766 2.109769 0.281768 -2.210248 0.930555 -0.114642 0.368099 0.944298 -0.540288 0.435744 0.853266 -0.042327 0.367825 0.105655 1.003287 -1.139054 -0.465774 -0.066759 0.702123 0.247186 -0.468393 -2.400066 -0.285607 0.082630 1.741476 0.862069 1.368034 -0.475538 0.761979 -0.341314 -0.337772 -0.159782 -0.362219 0.829625 -0.562492 -0.560076 -2.222403 1.012082 +PE-benchmarks/find-parity.cpp__main = 0.426058 0.682912 0.343199 -0.488062 -1.109430 0.424784 -0.847562 -0.810263 0.062148 0.195421 0.549013 -0.609474 -0.757826 0.276106 -0.768466 -0.841487 -0.373810 0.083949 -0.082758 -0.833465 0.015630 -0.015453 -0.110437 -0.260323 -0.178546 -0.442451 0.100096 0.224512 1.094141 -0.000173 -0.625552 -0.002436 0.415009 0.986911 0.375118 -0.208516 0.255629 0.999435 0.758903 -0.376283 -1.140191 -1.073400 0.578724 0.247693 0.188162 -0.829785 -0.323615 0.369881 -1.480883 0.600516 0.241862 -0.434554 0.055825 -0.083193 -0.006351 0.723252 -1.347118 1.546223 -0.082823 -0.273417 -0.104526 -0.114745 0.171532 0.350695 0.836366 -0.557576 0.176429 1.201601 -0.808270 0.269026 -0.305120 -0.888723 1.424575 0.052579 -0.654775 -0.100908 0.051469 -0.355909 0.338440 -0.895833 -0.716317 0.034942 0.690465 0.721092 0.497417 0.398789 0.296309 -1.325913 -0.414451 -1.374873 0.681754 -0.388371 0.820730 0.403217 -1.153730 0.005726 0.379429 -0.633687 0.831174 0.512366 0.950805 0.010041 0.543288 -0.109875 0.161522 0.181699 0.210432 -0.026191 -0.040325 -0.913194 -0.492704 0.324902 -1.844173 -0.004507 -0.791563 0.883928 -0.178458 -0.201546 0.144302 0.337943 -1.088402 -1.357758 -0.031952 -0.074660 1.076973 0.658494 -0.077465 0.741411 0.133669 0.953248 -0.151308 -0.378571 -0.212101 0.251620 0.406941 -2.010426 -2.018047 0.563957 0.755666 -0.584474 -1.028922 -0.342262 -0.341950 -0.124987 -0.159105 0.291320 1.439995 -0.271457 -0.820544 0.762289 -0.472669 -0.002741 1.783571 0.118743 1.624372 -1.002751 0.552459 -0.039269 -0.010251 -0.005596 -0.275884 -0.313277 -0.392050 0.127899 0.509154 -0.102848 -0.665994 -0.358402 -0.395340 -0.327628 -0.105401 -0.217282 -0.274485 0.566409 0.251489 0.883917 0.082648 1.267940 -1.109413 -1.630122 0.447176 0.292727 -0.112208 0.656311 0.167761 0.131457 0.844337 -0.994800 -0.477582 0.224824 -0.178826 -0.216781 0.600770 1.314366 0.053285 0.174451 -0.115703 0.320772 1.006771 -0.022070 0.292059 -0.808290 0.114654 0.651213 0.099065 -1.244664 -0.063365 -0.845939 0.063556 0.503996 -0.161257 0.476732 0.319768 -0.414074 -0.362362 -0.593563 1.090195 0.113421 0.580105 0.496409 -0.552717 0.008571 -0.119983 0.905295 0.977213 0.812253 0.531074 -0.184048 0.451631 -0.715651 1.196600 -0.039199 0.764997 0.148131 0.339764 0.956588 0.074334 0.262088 0.724023 0.380759 -0.080384 0.838014 -0.087020 1.398753 -1.356834 0.590328 -0.614236 -0.468845 0.764731 1.963289 -0.839764 -0.343906 0.143688 0.483727 0.446717 -1.269662 -0.205469 -0.236450 -0.410063 0.569247 0.696000 0.050718 -0.528445 1.112517 0.428428 -0.948392 1.209928 -0.029402 -0.061798 0.131436 -0.652465 -0.647406 0.421433 -0.572137 -0.011582 0.675917 0.644467 -0.817706 -0.934857 -0.234440 1.041928 -0.615969 -0.014279 -0.402795 0.150455 1.077709 1.075240 0.745953 0.259960 -0.863550 -1.009467 0.159526 -0.365056 -0.267526 0.185016 0.363234 -0.989173 0.281203 0.208337 -0.637480 +PE-benchmarks/find-parity.cpp___GLOBAL__sub_I_find_parity.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 1.196636 0.135981 0.855506 -0.796635 0.099606 0.653568 0.843061 -0.715903 0.634031 2.360628 0.454426 0.114282 -0.901101 0.380241 -0.359123 -0.903481 1.342785 -0.454382 0.507488 -0.021572 -0.093212 0.320015 -0.138698 -1.037286 0.768807 -0.518186 0.360139 0.829468 -0.171690 0.420747 -1.266579 -0.095326 -0.093594 1.983524 -0.019230 0.052253 0.065012 1.703791 -1.071668 1.727935 -2.092769 -1.773552 1.785790 0.193387 0.018913 -1.028071 0.717841 0.333287 -0.074416 -1.284718 0.337652 -1.085501 0.934288 -1.037269 -0.152469 1.829100 -2.227196 -0.208083 -0.046628 -0.377907 -1.116096 -0.506563 1.090759 0.613605 -0.852280 -1.078926 0.822112 0.296925 -1.198746 0.647746 -1.292472 -2.013827 1.576143 0.672010 -1.133226 0.202332 0.015418 -2.055531 0.715504 -0.579693 -0.754804 -0.660184 0.510383 -0.178734 0.864386 0.311294 1.652730 -2.634502 0.244629 -1.934217 1.776428 -1.111849 2.102400 1.491462 -0.713539 0.623563 0.598724 1.558324 0.093818 -0.502286 1.965255 0.986291 0.998832 -0.891717 0.753152 1.080737 -1.462630 -1.480808 -0.754004 -0.587289 0.050312 -0.140453 -2.339252 -0.227281 -1.835550 0.854210 0.945751 -0.691113 -0.508881 1.964695 -3.046677 -0.995483 0.276947 -0.296906 1.691592 1.274045 0.227192 0.381462 0.584342 1.856597 -0.262341 -0.578943 -0.863697 0.810611 -1.270784 -0.540535 -0.333416 -0.227623 0.723507 -1.685753 -2.084021 -2.455986 -0.626047 1.206201 -0.069355 1.341301 2.588400 -0.176805 -1.289601 0.726133 -1.092110 -0.168286 1.836242 0.295443 1.950210 -2.517015 1.636648 -0.611335 1.622774 0.480536 2.746274 -0.567564 -0.757160 0.671311 -0.152974 -0.108399 0.969076 -0.017989 0.427624 -0.376626 -0.450347 -0.514400 -0.580178 1.735601 -1.716519 1.535392 -1.089221 2.618218 -1.914978 -1.434475 0.553550 -1.478710 -0.614672 -1.354631 -0.519436 0.327460 1.454903 -1.832468 -1.072649 -0.451884 -0.233717 0.588085 1.500785 -1.079709 -0.208955 -0.703459 -1.080045 2.449635 0.432151 -0.339170 -0.195277 -1.182980 0.052595 0.779638 -0.765332 -1.517616 -0.271113 -1.399502 -0.165313 0.491681 -0.076290 1.081636 -1.080290 -1.178828 0.522601 -0.356293 0.096318 -0.890935 -2.370857 0.451888 0.030627 -0.407890 0.307317 1.866590 1.380785 0.994498 -0.142593 -1.025137 0.650191 -1.143786 -1.532719 0.630691 0.320601 0.764686 0.398735 1.329878 0.043987 0.165260 0.597302 0.306972 0.549785 1.430398 0.599714 1.398194 -0.836433 0.182023 0.636836 -1.473019 1.123901 1.542181 -0.882179 -0.263997 0.593144 0.456291 -0.644186 -0.514115 -0.193146 -0.761122 -0.419559 0.616077 0.737064 -0.263472 -1.096505 2.790479 0.625211 -2.925462 1.310175 -0.120106 0.358341 1.657260 -0.902652 0.520657 0.658643 -0.064779 1.195640 0.087423 1.570592 -1.246733 -0.108940 -0.198318 0.987611 0.399792 -0.619677 -2.391270 -0.299672 0.318205 2.226122 1.660977 2.211253 -0.686497 0.934544 -0.928300 -1.028457 -0.205942 -0.629746 1.224617 -0.235501 -0.064207 -2.875575 0.903316 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/the-knights-tour.cpp__solveKT() = 1.002998 -0.112913 1.591281 -1.888788 -0.400591 0.760211 0.412234 -0.774420 0.557012 2.592759 0.484448 -0.639469 -3.039101 1.752476 -0.313738 -2.785577 1.352074 -0.786659 0.384575 -0.738387 -0.574051 0.545221 -0.224758 -0.888877 1.290652 -0.971192 0.092252 2.041072 1.545178 -0.186031 -1.659133 -0.173122 -0.596786 3.723469 -0.219907 0.301337 0.680985 4.532088 -1.692117 3.165200 -3.024788 -3.249869 3.023071 0.294740 -0.710790 -1.051751 0.302450 1.242079 -3.817285 -0.804486 1.480146 -0.821077 0.412850 -1.600048 0.732063 3.276196 -5.437342 1.660994 -0.048346 0.017185 -1.444713 -1.169746 0.890546 0.019375 -0.622128 -1.967839 1.162311 0.213279 -2.853577 0.816324 -1.862872 -2.754226 2.640106 1.526868 -1.529724 1.043755 1.044074 -2.135945 1.469264 -1.876941 -2.175742 -1.078026 0.894522 -1.332674 3.206599 0.822676 1.575405 -4.743666 0.424875 -3.801693 2.406155 -2.897023 3.059890 3.585364 -2.102117 1.750386 1.018830 1.244848 -0.047052 -1.228512 3.469760 0.810597 1.103381 -0.103725 1.763280 1.069935 -2.506827 -2.042968 -1.737010 -1.757886 -0.601666 -1.278743 -3.570535 -0.204790 -2.736382 1.479080 1.734784 -0.162219 -1.699043 1.248902 -4.978993 -1.334517 0.135644 -0.744835 3.101180 2.629633 -0.288131 0.440765 0.341519 3.711351 -0.728946 -0.086516 -1.698183 1.302922 0.081782 -1.007774 -2.347650 -0.456931 1.451214 -2.145386 -4.016228 -3.641302 -1.383586 0.956701 -0.283516 4.178816 5.445798 -0.511615 -2.302039 2.734218 -2.633407 2.286092 3.770666 0.667064 3.426423 -3.269712 1.642814 -1.264959 1.395310 0.454396 1.616640 -0.276272 -1.244889 1.237533 0.486206 1.902083 0.631803 -0.421659 -0.158357 -2.585885 -0.222526 -1.704490 -1.868230 4.012467 -2.767093 3.039040 -0.386377 4.667809 -2.571684 -3.384432 1.611971 -2.786293 -0.311027 -2.597507 -1.790013 -0.330700 1.701512 -3.424521 -2.267681 -1.841501 0.377421 -0.049774 1.864828 0.539873 -0.078511 -0.771276 -0.033733 4.018956 2.331842 -0.382460 0.293975 -3.670487 0.452812 1.714707 -1.231750 -2.699044 1.047655 -1.308758 -0.443001 2.135298 -0.091663 1.195539 -2.038348 -2.136822 0.165299 -0.124644 1.058958 -0.551494 -5.072170 0.857501 0.188742 -0.950891 2.413163 2.848423 3.263412 1.528401 0.651563 -0.826725 0.800724 -0.908090 -1.154249 0.329053 0.270387 2.294039 1.035161 1.894898 0.901009 0.170392 1.456642 1.871274 -0.555408 2.599660 1.828894 3.621090 -0.230212 -0.266908 0.535810 -2.051485 1.779020 3.555562 -2.877365 0.377573 2.193330 1.732223 -0.072439 -2.849408 -0.689007 -2.054436 -0.604398 1.555306 -0.061352 -1.322607 -0.959973 4.496722 0.346874 -4.933931 2.305956 0.162077 0.712648 1.529145 -0.891433 -0.342993 1.651304 -2.990701 2.271658 0.720997 2.187844 -1.978315 1.157309 -0.298901 2.017667 0.675422 -0.043481 -3.274720 -0.389010 0.752266 3.648731 3.550000 2.587359 -0.764423 -0.637150 -0.970690 -2.453595 -0.616550 -0.735776 1.950880 -0.888027 0.448858 -3.547559 -1.058606 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 2.127491 0.911104 2.479431 -3.020783 -1.578977 0.826667 1.666050 -2.385337 0.526720 6.594272 2.178246 -2.045619 -2.143000 4.689508 -1.253354 -2.510218 1.859647 -0.306257 -0.029184 -0.943172 -0.168189 1.759219 -0.623390 -2.166188 1.707424 -1.030247 0.580790 2.683250 -0.174821 0.701643 -2.641162 -0.626590 0.305524 5.766124 -0.114042 0.047975 -0.524713 5.846235 -6.628351 5.973405 -6.362778 -5.499453 5.560578 0.874507 0.293994 -4.137230 -1.788028 2.207654 -0.742341 -3.876703 1.403407 -1.511123 1.485667 -3.007816 0.651695 4.968178 -7.130538 0.612973 0.969180 -2.092942 -3.404018 -0.859273 2.804427 1.234523 -3.680874 -3.660845 1.430146 0.776943 -2.178041 0.905988 -3.312474 -6.617492 3.169989 1.253201 -2.496696 1.146435 0.203074 -5.496674 3.377478 -2.070085 -3.008501 -1.561294 1.319247 -2.018715 2.439922 1.898141 4.504049 -7.953576 1.005534 -6.400526 4.383035 -3.849576 4.774132 4.855518 -2.761705 1.983856 1.889540 4.079392 2.340991 -0.290438 5.138505 2.924324 2.954074 -0.991391 3.380449 4.223732 -4.769576 -4.292403 -3.872439 -4.000400 1.013871 -1.941668 -6.469236 0.365917 -3.815291 -0.507457 1.661079 -2.141332 -0.883365 5.986627 -8.182268 -1.125906 1.791447 -0.891954 3.211568 4.761591 -0.051208 0.685879 -0.225642 4.718254 -1.200995 0.076808 -1.297584 2.609967 -3.848017 -3.269397 -2.028288 0.586572 1.707410 -4.841722 -5.415670 -8.253514 -0.946482 3.024401 -1.443566 4.168166 8.600386 -1.958742 -4.807913 3.288393 -0.026415 -0.737928 5.011394 0.717615 7.900281 -6.338187 3.008344 -1.822685 1.733603 1.688866 6.103289 -0.666721 -2.745931 2.436992 -0.581956 -4.299978 5.142861 -0.749648 0.064558 -1.907835 1.228620 -1.731312 -1.595906 5.792266 -4.916595 4.783660 -3.092532 7.005545 -4.779337 -3.855075 2.289296 -6.201044 -1.923799 -4.325191 -2.025989 0.084480 4.918304 -4.403624 -2.563793 -2.822312 -1.735403 -0.019206 3.958245 -4.358974 0.128310 -1.099407 -1.349754 4.904385 3.027952 -0.352433 0.613209 -4.697466 0.799360 3.426188 -1.107687 -7.002359 -0.170212 -4.481956 -0.551614 0.189142 -0.707437 3.232195 -3.542535 -2.651903 0.997403 -1.678374 0.322550 -2.123242 -5.941439 1.687004 -1.805296 1.498257 1.948463 5.884002 4.890082 4.208043 1.164349 -1.149853 1.207959 -3.190591 -3.851827 2.470520 0.743768 1.551645 2.323421 4.120516 0.979076 1.234441 3.105894 0.966676 0.905372 5.001754 1.849423 5.550412 -0.726344 0.459984 1.099921 -2.809040 3.195744 6.425823 -1.163207 -1.186483 2.347574 0.569282 -2.678276 -2.110821 -0.479869 -2.046795 -2.595132 3.047440 2.254557 -1.190341 -2.366800 7.753658 0.891776 -8.669769 3.727000 -0.312253 1.689867 4.160218 -2.145993 1.799427 2.270767 -0.937776 3.475365 2.049894 4.412936 -4.691316 -0.988220 -0.354801 3.558576 4.502986 -0.389053 -9.842692 2.115361 1.765432 5.954848 2.207716 6.252417 -3.231980 1.359291 -1.187499 -2.346116 -0.704002 -1.408282 3.340238 -1.496913 0.198042 -7.725067 0.481299 +PE-benchmarks/the-knights-tour.cpp__main = 0.119711 0.057421 0.034057 -0.189525 -0.114566 -0.003348 0.068765 -0.067943 -0.061023 -0.199867 0.093506 -0.141551 -0.261953 0.216952 -0.040657 -0.242276 0.021543 -0.236004 -0.123475 0.078801 -0.051914 0.051508 -0.016662 -0.091138 0.075777 0.079244 -0.076906 0.116501 0.217173 -0.278853 -0.184349 0.000000 0.090766 0.272704 0.029079 -0.019678 0.069003 0.378773 0.096547 0.159953 -0.235610 -0.091664 0.241820 -0.063412 -0.113570 -0.388820 -0.137039 0.198142 -0.292839 -0.015795 0.096387 0.000000 -0.150952 -0.154978 0.001358 0.363241 -0.486404 0.414015 0.123916 0.150705 0.022678 -0.088517 -0.048827 -0.155473 0.181072 -0.182388 -0.003967 -0.031426 -0.279883 0.068973 -0.154295 -0.143594 0.536504 0.083626 -0.088923 0.087863 -0.030689 -0.108029 0.120900 -0.331746 -0.154630 -0.040017 0.105489 0.242781 0.312023 -0.007357 -0.134861 -0.351859 -0.125816 -0.341390 0.079988 -0.327201 0.129916 0.250497 -0.234499 0.125797 -0.009317 -0.275619 0.029011 0.172031 0.244174 -0.026754 0.082688 -0.017518 0.094527 -0.028757 -0.021133 -0.084748 -0.009399 -0.176707 -0.090107 0.123104 -0.449742 0.079006 -0.144012 0.231280 0.049580 0.097032 0.039123 -0.137137 -0.148717 -0.099069 0.038952 -0.056409 0.241633 0.320810 -0.053335 0.012107 -0.197448 0.225954 0.086001 0.148880 -0.094099 0.092662 0.143988 -0.562810 -0.277651 -0.050524 0.101423 -0.103620 -0.296663 -0.198468 0.006473 -0.112755 -0.140266 0.118487 0.359996 -0.064512 -0.176934 0.307216 0.168032 0.294868 0.255723 0.007580 0.381016 -0.161964 0.047223 0.126490 -0.033483 -0.039714 -0.322886 -0.086029 -0.177495 0.003401 0.029878 -0.293934 0.144254 0.043212 -0.061542 0.223998 -0.130712 -0.141137 -0.318325 0.305960 0.309304 0.296563 0.103974 0.363358 -0.110219 -0.273007 0.154298 0.186391 0.076668 -0.094188 -0.122814 0.050582 0.054153 -0.258536 -0.160229 0.036991 0.073950 -0.143736 0.191172 0.234972 -0.021629 -0.002933 0.072766 -0.017567 0.194041 -0.191752 0.182375 -0.312529 0.083124 0.108814 0.000559 -0.341508 0.102734 -0.055054 -0.040730 0.273798 -0.030307 0.020429 0.026253 -0.153860 0.145996 -0.068588 0.144980 0.022984 0.045052 -0.026486 -0.061984 -0.076754 0.103862 0.254849 0.249749 0.094439 0.018249 0.021246 0.026061 0.039048 0.015976 -0.132181 -0.101351 0.200650 0.130390 -0.001781 0.115478 0.003433 0.169770 0.119722 -0.125767 0.229784 0.280349 0.313104 -0.040389 -0.117475 0.042292 -0.144973 0.242867 0.312923 -0.340320 -0.050412 0.140996 0.131215 0.064063 -0.255965 -0.108657 -0.080559 -0.264771 0.298348 -0.073075 -0.027060 0.002819 0.333676 -0.087356 -0.295264 0.203624 0.079803 0.087201 -0.043649 0.003304 -0.019835 0.207575 -0.222741 -0.031846 0.093205 0.231489 -0.109956 -0.131360 -0.018426 0.141435 -0.133774 0.109803 -0.129500 -0.076664 0.184303 0.284900 0.166028 -0.075127 -0.048690 -0.181959 -0.002961 0.057535 -0.003729 -0.045972 0.103766 -0.152532 -0.128478 -0.065171 -0.097506 +PE-benchmarks/coin-change.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.838211 0.453023 2.294996 -3.406143 0.224791 1.696401 2.615715 -3.744564 0.356306 10.232588 2.675600 -2.169708 -3.390482 4.310886 -0.915204 -3.903709 4.742582 2.421114 0.818514 -1.875517 -1.398613 1.161084 -0.838598 -4.369590 2.985439 -2.660347 1.003446 3.362236 -1.035136 2.148119 -3.763255 -0.656875 0.226261 8.706496 0.110076 0.316360 -1.464622 7.249136 -7.600247 8.753091 -8.254674 -6.952488 8.199395 1.530000 1.168898 -3.595466 -0.938260 2.218241 0.205100 -5.891758 0.629906 -3.798189 3.080976 -4.872695 -0.222733 8.329363 -7.926873 -1.140716 1.118423 -4.259997 -6.109547 -0.853087 4.746078 1.678414 -5.432091 -5.610318 2.477276 1.966917 -2.885662 1.704990 -6.885154 -10.310764 3.211904 2.641548 -3.385538 1.243918 -1.088237 -6.734424 3.233466 -0.228433 -3.521490 -3.076531 2.580615 -1.954583 2.148998 3.657753 8.064286 -11.677390 1.483940 -9.217588 6.845724 -4.339705 9.025403 6.683967 -1.917292 3.117625 2.983772 5.346652 0.586581 -0.563606 7.712544 2.891166 2.527746 -2.721814 4.574999 5.545474 -6.863578 -7.230616 -3.882921 -3.497072 1.485741 -1.841708 -7.109193 0.558843 -8.663971 0.704169 2.350099 -1.977388 -1.746833 8.189776 -11.317008 -3.358824 2.220168 -1.789986 6.848275 5.985637 1.314001 1.132105 0.544160 6.450874 -1.081028 -1.843178 -3.165293 4.352422 -4.461137 -3.407351 -1.787495 0.232863 3.347726 -8.209408 -8.334819 -10.159068 -2.519405 5.617071 -1.911312 6.934058 11.919894 -2.634764 -5.183760 3.259463 -3.016158 -0.297974 7.499901 1.807407 11.893950 -11.302140 6.650110 -1.904004 5.033473 3.630059 8.871351 -2.485089 -4.439798 3.861683 -0.369094 -1.878144 7.249703 -1.706933 1.252821 -1.459733 1.317842 0.010826 -1.687546 7.395631 -8.290071 6.854587 -4.360197 10.690637 -7.661954 -5.164886 3.124945 -7.367712 -4.276053 -5.132202 -1.146740 -1.247664 7.156241 -6.029240 -4.429887 -3.035685 -2.651849 1.715020 6.978069 -3.918197 -0.589891 -2.343018 -4.514599 8.071781 2.842816 -0.577482 -0.183503 -6.280663 0.779697 4.278197 -2.303518 -8.034594 -0.840717 -5.950661 -0.923395 -0.368012 -0.613734 5.355583 -5.278992 -3.480372 1.320611 -1.267443 0.579182 -3.934574 -7.043654 3.018240 -1.179525 -0.368956 2.167543 9.438546 6.479608 5.562841 0.054130 -3.193791 1.941398 -4.925916 -7.041586 4.257396 0.517428 4.167226 2.784016 4.482876 -0.153453 2.101567 3.863543 -1.367170 3.360250 6.552661 2.489262 6.979659 -1.468255 1.046762 2.801573 -6.340833 4.739266 7.845229 -2.675715 -2.821009 3.267395 -0.130245 -4.526712 -2.944102 -0.452050 -2.263565 -4.695013 3.698009 4.177341 -0.843857 -5.360649 12.268531 2.063203 -13.211612 6.329013 -0.070598 1.856690 7.298218 -3.717231 3.773016 3.027607 1.033978 3.378462 2.175812 7.030841 -7.386555 0.431526 -0.760379 4.697382 5.128524 -3.039275 -13.347413 2.107361 2.562031 9.264616 4.382655 8.648287 -4.010387 4.129060 -2.929961 -3.487293 -0.404316 -2.769418 4.958570 -1.723404 0.313171 -11.645764 3.604543 +PE-benchmarks/coin-change.cpp__main = 0.473561 0.226349 0.223025 -0.715856 -0.735120 0.261282 -0.379017 -0.413915 0.091725 -0.123115 0.515315 -0.609206 -0.402040 1.000992 -0.382990 -0.711753 0.033005 -0.569298 -0.093683 0.028229 -0.001347 0.266209 -0.155962 -0.072145 0.001329 0.069501 -0.184963 0.276898 0.954585 -0.502092 -0.956399 0.030474 0.016917 0.951357 0.221555 -0.462418 0.467372 1.347765 -0.107276 0.392578 -0.788753 -0.367065 0.501181 0.095857 -0.339667 -0.894284 -0.721851 0.443610 -0.934339 0.166885 0.690382 -0.227892 -0.156870 -0.065111 0.253940 0.957302 -1.631899 1.195440 0.229975 0.614757 0.228870 -0.310944 0.157948 0.019449 0.182791 -0.521421 0.395788 0.389194 -0.689903 0.022083 -0.454369 -0.987556 1.460059 0.323927 -0.586107 0.043952 0.191995 -0.985432 0.564061 -1.000151 -0.821459 0.119773 0.185658 0.123494 1.101693 -0.122868 0.026107 -1.271252 -0.038686 -1.346469 0.306894 -1.028341 0.552678 0.940177 -1.150376 -0.020526 0.149086 0.020603 0.757721 0.362520 0.978199 0.298086 0.166256 -0.188682 0.401940 0.277991 -0.092261 -0.030014 -0.173039 -0.806751 -0.480697 0.147272 -1.798808 0.194396 -0.510914 0.415393 -0.000464 0.034624 -0.105935 0.279850 -0.659870 -0.747850 -0.111369 -0.133149 0.734281 1.214745 -0.287943 0.326189 -0.490503 1.036401 0.024539 0.191766 -0.366858 0.172107 -0.205616 -1.479349 -1.435108 0.183174 0.585983 -0.560748 -1.127031 -0.926707 -0.055717 -0.441081 -0.289602 0.943634 1.404124 -0.286701 -0.769994 1.070595 0.296956 0.472441 1.491181 -0.126776 1.464707 -0.739445 0.364449 -0.080325 -0.064516 -0.564264 -0.849458 -0.078416 -0.151571 -0.028398 0.117077 -0.676956 0.649059 0.117141 -0.391729 0.002693 -0.113428 -0.396288 -0.902743 1.240501 0.343864 0.678911 0.361083 1.347152 -0.532555 -1.131982 0.636255 0.181549 0.241796 -0.237197 -0.451587 0.178068 0.638584 -0.704516 -0.442105 0.027446 0.146134 -0.444910 0.359431 1.086231 0.099314 0.105024 0.285638 0.323059 1.143139 -0.154869 0.644736 -1.019041 0.243556 0.739614 -0.431010 -1.108456 0.282310 -0.620485 0.017360 0.470126 -0.193804 0.215810 -0.519034 -0.834162 -0.062225 -0.115357 0.872623 0.242605 -0.741075 0.321301 -0.604823 0.010885 0.434050 0.715011 0.877796 0.681779 0.591293 -0.289257 0.256667 -0.099741 0.339241 -0.162282 0.217949 0.434162 0.366810 0.689680 0.246785 0.047453 0.407512 0.515761 -0.221172 0.732249 0.625175 1.267463 -0.097821 -0.007559 -0.292491 -0.598543 0.778577 1.765054 -0.863046 0.029524 0.362382 0.592468 0.117223 -1.230035 -0.166055 -0.381192 -0.533419 0.366528 -0.216870 -0.078809 -0.225439 1.096204 0.016504 -1.066942 0.674417 0.073426 0.147609 0.243879 -0.150457 -0.191282 0.354337 -1.046991 0.543473 0.524394 0.696943 -0.297768 -0.467859 -0.128804 0.617308 -0.327535 0.347640 -0.539282 0.494044 0.801427 0.969914 0.851736 0.133784 -0.454564 -0.699058 0.092302 -0.272529 -0.198202 -0.093080 0.560678 -0.872154 0.095969 -0.209701 -0.766010 +PE-benchmarks/coin-change.cpp___GLOBAL__sub_I_coin_change.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/magic-square.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/magic-square.cpp__generateSquare(int) = 4.188665 2.247445 3.617667 -4.562409 -0.691097 1.400437 3.149721 -4.093812 0.678395 11.486319 2.721342 -2.593264 -5.501240 3.911819 -2.121090 -5.833989 4.295449 1.538573 0.541418 -4.980620 -1.165624 1.189869 -0.300366 -4.900820 3.045418 -4.587427 1.448757 4.634270 0.111182 1.701206 -2.675807 -0.661466 1.428890 9.754461 -0.482237 0.828235 -2.290225 7.864505 -6.679926 7.820939 -10.917563 -9.158923 9.850232 2.027145 0.964448 -7.005906 -0.422542 2.079337 -1.020786 -4.124873 -0.044144 -3.738451 3.250207 -5.858582 -0.664433 9.856708 -9.512147 0.607415 0.059219 -6.468250 -6.892950 -0.723723 4.904856 2.228934 -4.026495 -6.435903 2.575292 2.864836 -4.509500 3.638093 -6.691389 -10.137231 4.641989 2.838667 -3.468502 1.725780 -1.101325 -6.591902 3.263278 -1.738475 -3.132739 -4.048390 4.566411 0.299454 1.365638 4.203074 8.408434 -13.016337 -0.488974 -9.695085 8.191672 -4.774932 10.295640 6.202366 -1.541827 4.491703 2.853842 2.244839 0.756661 -1.388900 8.696245 2.827445 5.576133 -2.470663 4.447165 6.081284 -6.621377 -8.033370 -3.768713 -4.242307 0.916302 -1.319148 -9.123596 0.095856 -9.833928 -0.229082 3.269077 -3.370978 -1.339000 9.198742 -12.479698 -5.289380 3.196819 -2.031606 7.377527 5.919538 2.014694 1.658827 1.477230 7.459644 -0.805711 -1.365592 -3.209535 4.558755 -3.595173 -6.766598 -3.410235 -0.095359 3.103682 -8.714066 -9.266331 -9.735916 -3.519845 6.110636 -1.882835 6.601983 13.510056 -2.323748 -7.443229 3.462425 -2.834287 -0.610733 8.428155 2.337799 13.662492 -12.644046 7.431711 -2.513969 6.057630 5.753589 12.290468 -3.115426 -5.383815 4.765514 0.171694 -1.932224 4.073419 -3.402034 1.790102 -0.990279 0.647331 -0.454944 -1.585445 7.216398 -7.173731 9.944267 -5.609542 12.165756 -9.652888 -8.191065 2.913501 -8.793886 -4.813242 -4.330887 -0.118014 -0.735960 7.911640 -7.002038 -5.487465 -4.219733 -3.794160 2.308818 7.863963 -5.733688 -0.466897 -3.045364 -5.017517 9.647635 3.487725 -0.779778 -0.016075 -7.381028 1.036791 5.125533 0.034891 -10.502928 -0.753314 -5.853926 -1.149710 0.090171 -0.604117 6.166904 -3.569449 -3.017568 1.168422 -2.784845 0.291147 -4.999006 -6.787936 3.559704 -1.872719 -0.327189 0.444105 10.694264 8.175527 5.237883 -0.484230 -3.619456 2.691284 -7.019308 -5.486753 4.870417 1.912628 2.811377 2.962863 5.884553 -0.576143 2.157343 6.744224 0.063920 2.004727 6.787242 1.247171 8.154879 -4.514556 1.712030 2.278860 -6.623272 4.989863 10.174476 -1.432476 -4.401633 4.234012 1.015260 -3.437080 -5.143473 -1.704073 -2.523893 -4.820402 6.299666 5.938708 -2.504170 -5.236465 13.776931 3.492126 -14.355644 8.310297 0.129107 0.815860 6.052634 -5.370907 1.636397 4.957479 0.417343 1.747000 2.071261 7.849520 -8.805484 -0.680432 -0.925753 6.159795 4.565285 -3.405939 -15.856838 0.516838 4.422758 11.160999 4.953929 11.450566 -4.521755 2.728275 -2.792090 -2.729745 -1.360885 -1.717502 4.371092 -3.807121 0.920732 -10.969697 4.032227 +PE-benchmarks/magic-square.cpp__main = 0.164122 0.099499 0.076347 -0.380822 -0.272057 -0.066395 0.213450 -0.048879 -0.029265 -0.150748 0.186734 -0.310308 -0.324077 0.551133 -0.073579 -0.327984 0.080641 -0.410300 -0.164543 0.182792 -0.033845 0.239663 -0.030611 -0.065719 0.188737 0.147580 -0.193765 0.239948 0.372776 -0.425746 -0.327192 0.007125 0.109084 0.450580 -0.042171 -0.143000 0.142670 0.720475 -0.172778 0.395991 -0.386962 -0.118523 0.418846 -0.052980 -0.220902 -0.700567 -0.383848 0.303387 -0.326424 -0.107011 0.246370 0.050250 -0.207976 -0.225374 0.125926 0.616850 -0.852319 0.555872 0.223017 0.299995 0.076704 -0.147695 -0.077790 -0.218567 0.042918 -0.306170 0.019919 -0.118837 -0.393920 0.059428 -0.205592 -0.316362 0.774455 0.164311 -0.206346 0.194030 0.021136 -0.445672 0.293885 -0.566459 -0.288813 -0.013617 0.134969 0.224222 0.537003 -0.103872 -0.109557 -0.628643 -0.156059 -0.566512 0.136918 -0.652742 0.212245 0.548331 -0.429892 0.205406 -0.028852 -0.230888 0.209657 0.277778 0.476637 0.142252 0.219797 -0.034961 0.173892 0.140543 -0.133260 -0.166039 -0.128173 -0.338551 -0.121656 0.131045 -0.832751 0.124463 -0.168368 0.175147 0.154630 0.052277 0.027121 0.068597 -0.223264 -0.112536 0.111775 -0.094032 0.245270 0.665536 -0.105286 -0.060096 -0.399945 0.446699 0.117902 0.339973 -0.154925 0.147109 -0.062359 -0.855463 -0.361913 -0.132145 0.077481 -0.230609 -0.501065 -0.511416 0.048192 -0.213046 -0.233992 0.224094 0.694978 -0.137426 -0.336533 0.586457 0.386308 0.389549 0.392962 -0.050737 0.675982 -0.277274 0.061149 0.076249 -0.057437 -0.124140 -0.209340 -0.027993 -0.265424 -0.051868 -0.024808 -0.745867 0.451499 0.098092 -0.098474 0.246312 -0.129365 -0.266493 -0.558891 0.666925 0.294007 0.510373 0.033851 0.626578 -0.138583 -0.452816 0.335731 0.199450 0.157110 -0.363651 -0.241772 0.165753 0.151748 -0.360451 -0.233257 -0.012788 0.083648 -0.277293 0.227439 0.141372 -0.008307 -0.038572 0.178562 0.023744 0.374022 -0.263760 0.347978 -0.579302 0.155743 0.207481 -0.100843 -0.688584 0.232873 -0.148129 -0.069814 0.308570 -0.100151 0.010538 -0.104170 -0.354144 0.212974 -0.128436 0.194901 -0.008010 -0.251700 0.016316 -0.207771 0.010675 0.201455 0.387767 0.498502 0.191456 0.090927 0.016553 0.043231 0.039199 -0.110938 -0.076774 -0.138809 0.194626 0.229995 0.203592 0.228691 -0.003969 0.271397 0.213626 -0.196017 0.393643 0.472559 0.592858 0.090014 -0.250347 0.074151 -0.251302 0.405581 0.652480 -0.341112 -0.082471 0.267445 0.260804 -0.012434 -0.423078 -0.153188 -0.166815 -0.427095 0.458849 -0.231162 -0.128955 0.067280 0.562300 -0.149398 -0.583688 0.268719 0.077336 0.187240 -0.035574 0.063683 0.021691 0.362256 -0.436518 0.136319 0.156570 0.374474 -0.150014 -0.324633 -0.036534 0.207543 -0.004029 0.229538 -0.473436 0.018572 0.301508 0.492356 0.253709 0.100294 -0.066917 -0.264162 0.014563 0.050624 -0.100328 -0.130742 0.172963 -0.338209 -0.129817 -0.258058 -0.214032 +PE-benchmarks/magic-square.cpp___GLOBAL__sub_I_magic_square.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/detect-cycle-undirected-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclicUtil(int, bool*, int) = 1.218775 0.712971 2.182090 -2.347035 -2.456162 1.213530 -0.879187 -1.887054 0.575338 4.280491 1.520078 -1.991717 -2.330271 4.193891 -1.363470 -3.048368 0.408997 -0.900494 0.350925 -1.450402 -0.366695 1.524236 -0.535824 -0.559255 1.000519 -1.142383 -0.217553 1.709131 1.337437 -0.455760 -2.009967 -0.411676 -0.351725 4.620182 0.173807 -0.014680 0.739129 5.802918 -3.080021 4.241749 -4.950492 -4.685737 3.448788 0.750499 -0.078771 -1.547230 -0.956692 1.981652 -3.465274 -0.961958 2.120511 -0.971162 0.388401 -1.275969 1.218093 3.277696 -6.962727 2.986869 0.245248 -1.006174 -1.798500 -0.792789 1.212390 0.964741 -1.052388 -2.492890 1.209541 1.947988 -2.657884 0.389203 -1.567322 -4.441431 3.595347 1.217631 -2.243876 0.939005 1.223725 -2.614183 2.738135 -3.691590 -3.554645 -0.905912 1.250223 -2.008221 3.092608 1.986749 2.906862 -6.446996 1.316808 -5.552560 3.592136 -2.988217 3.484526 4.235395 -2.986352 1.427357 1.967158 1.852130 2.656368 -0.142005 4.383728 1.313608 1.404094 0.584768 1.926711 2.626079 -3.062982 -1.993993 -2.789378 -3.716609 -0.180570 -1.043880 -4.536486 0.189896 -2.485301 1.821203 1.383069 -0.617147 -1.098620 2.825284 -6.561746 -2.306677 0.515042 -0.666869 3.428707 3.541751 -0.511859 1.191336 -0.256627 4.586754 -1.844312 -0.083139 -1.203225 1.817640 -1.180166 -2.502980 -4.500684 0.810961 1.805943 -3.359021 -4.425263 -5.733145 -1.003842 1.634915 -1.133377 5.714134 7.688510 -1.953814 -3.785915 3.933421 -1.276741 0.820842 5.338813 0.564905 5.731367 -3.998781 1.277436 -1.854911 0.356045 0.505616 2.599590 0.371346 -1.270549 1.721753 1.067370 -0.335044 2.176698 -0.584485 -1.352217 -3.313434 0.902453 -1.699969 -1.639100 4.382903 -2.663663 3.274995 -0.778593 6.302755 -3.513110 -4.476891 2.186647 -4.442978 -0.871808 -2.211975 -1.992919 -0.167339 3.213271 -4.112318 -2.055157 -1.910675 -1.041154 -1.064469 1.814898 0.426283 0.730711 0.067187 -0.146592 5.131343 4.035619 0.467324 0.468803 -4.695255 0.516582 2.641295 -1.267125 -4.852283 0.622773 -2.976843 -0.214601 2.009919 -0.714635 1.982216 -2.903466 -2.176123 -0.557910 -1.113698 2.127885 -0.303153 -4.648690 1.444210 -1.121528 0.967652 2.527545 3.743019 4.155776 3.639774 2.200358 -0.192892 0.638982 -1.721034 0.241626 1.061485 1.518721 1.859000 1.938040 3.531012 1.410997 0.947689 2.624518 1.881233 -0.351021 3.953685 0.609365 5.654518 -1.774272 0.832472 -0.466835 -1.544231 2.809078 6.235916 -3.588978 -0.128748 2.338749 1.270731 -0.515870 -3.092408 -0.044509 -2.368806 -0.921265 1.729456 1.347141 -0.755070 -1.746152 5.506394 0.601047 -6.256908 3.777149 -0.045824 1.072789 2.141762 -1.072476 -0.409442 1.749167 -3.591813 2.693982 2.564704 3.335400 -3.527759 -0.102284 -0.530361 3.411493 1.888981 1.165496 -5.666147 1.152324 2.299254 4.096311 2.635884 3.452701 -2.643739 -1.954430 -0.113405 -2.852891 -1.276477 -0.092930 2.309619 -1.524191 1.528542 -3.581393 -2.124591 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 0.978698 0.317819 1.982229 -2.114045 -0.525968 0.540247 1.461965 -1.086021 0.490890 4.618312 0.870328 -0.969112 -2.340450 3.007130 -0.509209 -2.023090 1.547696 -0.931832 0.220295 -0.824645 -0.315213 1.177929 -0.227260 -1.315176 1.502519 -0.968302 0.277293 1.981253 -0.396435 0.067739 -1.268108 -0.461201 -0.149089 3.924722 -0.381310 0.645886 -0.397741 4.275078 -4.019931 4.835410 -4.423449 -4.127395 3.789410 0.419101 0.023032 -2.202777 -0.177010 1.495760 -1.342247 -2.351109 0.962133 -0.832630 0.752985 -2.214820 0.540021 3.289747 -5.148051 0.598789 0.283975 -1.451943 -2.349807 -0.796197 1.555906 0.518805 -2.048236 -2.216471 0.854452 0.058623 -2.265535 0.820989 -1.968705 -3.550672 1.600272 1.303169 -1.418295 1.137014 0.483480 -2.733614 2.043242 -2.118913 -2.011622 -1.399720 0.962606 -1.756899 1.977264 1.593279 2.826789 -5.339231 0.707611 -3.996115 3.165852 -2.606613 3.260783 3.486890 -1.093233 1.962799 1.269567 2.049847 0.758101 -0.859549 3.398367 1.581252 2.017570 -0.084353 2.301576 2.527901 -3.516881 -2.969923 -2.570360 -2.302754 0.581622 -1.504720 -2.958995 -0.025674 -2.568038 0.126358 1.773782 -0.925944 -1.255248 2.895669 -5.911670 -0.872919 1.075716 -0.719604 2.502156 2.728191 0.042216 0.270138 0.214395 3.356544 -1.070870 0.299112 -1.156048 1.822860 -1.537826 -1.104137 -1.154752 -0.188351 0.901991 -2.936981 -3.724207 -5.403272 -1.080153 2.212812 -0.808035 3.802356 5.960771 -1.118776 -3.028409 2.397228 -1.033229 0.575073 2.965628 0.733556 4.345223 -3.898776 1.712373 -1.366746 1.353965 1.487160 4.937432 -0.237301 -1.775648 1.761024 -0.084884 -1.078664 2.060143 -0.569486 0.067822 -2.311640 0.503399 -1.638335 -1.255713 3.718833 -3.726138 3.342455 -2.000879 4.785483 -3.166141 -2.756682 1.546942 -4.728117 -1.132854 -3.262070 -1.599036 -0.241429 2.667371 -3.388173 -2.030835 -2.296138 -0.906645 0.028149 2.309357 -3.188868 0.043318 -0.881411 -0.761822 4.432022 1.862315 -0.287603 0.078261 -3.498510 0.430140 1.914070 -0.413211 -4.125601 0.401938 -2.236435 -0.559187 1.146407 -0.289821 1.814444 -2.302337 -1.647135 0.769637 -1.013527 0.045554 -1.413290 -4.778724 0.845036 -0.235941 0.424416 1.878677 3.676793 3.198606 2.287597 0.471062 -0.555678 0.451243 -1.813522 -2.457282 1.285578 0.365721 1.254406 1.483359 2.416696 0.967768 0.649543 2.336008 1.181594 -0.143487 3.149941 1.018916 3.540002 -0.498438 0.050815 0.992295 -1.793964 1.906222 3.663071 -1.459850 -0.588386 2.203552 0.543861 -1.322410 -1.378714 -0.402816 -1.893268 -1.060108 2.293225 1.323413 -1.161456 -1.320620 5.137786 0.434356 -5.860494 2.549648 -0.070308 1.175250 2.340793 -1.194883 0.717872 1.858434 -1.609834 2.277845 1.112924 2.778087 -3.008106 0.201244 -0.279645 2.232293 3.023555 -0.145510 -6.228981 0.245966 0.758474 3.873393 2.025072 4.309564 -1.582005 0.507747 -1.002005 -2.047381 -0.706150 -0.763435 2.142269 -0.406104 0.233373 -5.110810 0.252581 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.761823 1.043171 1.161721 -0.374771 -1.149490 0.162803 -1.576478 -0.178660 0.407112 0.867856 -0.393922 -0.846729 -2.534781 1.175739 -1.998424 -2.058039 -0.463830 -0.898351 0.354238 -1.948603 -0.192043 0.340822 0.277437 0.287865 0.516451 -0.847477 -0.301586 0.360361 2.696759 -0.839030 -0.777038 0.421697 0.272749 1.526241 -0.426836 -0.557356 1.312206 2.427785 1.487649 -0.238626 -2.168744 -1.976087 0.473653 0.446831 0.256452 -1.081778 0.201008 0.366254 -4.846646 2.803236 0.754664 -0.099386 -1.306191 -0.100052 1.116085 1.423746 -4.574667 4.470506 -0.843720 1.013568 0.400508 -0.530799 -0.228624 -0.626022 2.986057 -0.573030 0.355384 1.931034 -3.062804 1.478489 0.032157 0.075069 1.537079 0.085510 -1.126907 0.652220 1.279832 0.408628 0.438536 -4.718843 -0.938372 -0.096020 1.818988 1.208808 1.792519 1.308822 -0.842663 -2.141245 -0.413304 -1.338611 1.228317 -1.669781 1.263556 1.367305 -1.951206 0.874417 0.265623 -2.322803 1.180240 0.444663 1.892601 0.106898 0.842544 0.162039 -0.749312 -0.068411 0.247022 0.461538 0.229794 -0.766806 -2.235944 0.793534 -1.881179 -0.818846 -1.156988 2.751438 1.024272 0.053602 -0.671488 -1.485788 -2.928912 -3.146228 -0.640097 -0.184096 2.281828 0.758309 -0.362316 0.894217 -0.050740 2.542427 -0.190894 -0.674935 -0.773071 -0.116346 1.345586 -3.522429 -4.379669 -0.494801 0.569011 -0.271449 -1.973663 -0.668980 -0.934325 -1.188554 0.354399 2.510875 2.591647 0.621470 -1.297846 2.035561 -2.491497 2.319284 3.831048 0.256340 1.445274 -1.021831 0.662779 -0.130125 0.710624 -0.300445 -2.029494 0.056525 -0.226933 -0.427369 2.127533 2.652287 -4.164147 -0.554241 -0.420133 -3.297499 -0.514352 -0.877667 -0.179608 1.572381 -0.320781 1.656823 0.044420 2.424092 -1.636889 -3.994762 0.676075 -1.621578 0.980226 1.330263 -0.419535 -0.379500 0.448072 -2.757178 -1.155800 -0.103864 0.614654 -0.340640 0.021187 2.834155 0.091875 -0.295155 0.769056 2.887913 1.614158 -0.363399 1.455916 -2.452139 -0.319497 0.923871 0.030752 -2.932829 1.996541 -0.037004 0.065137 2.285559 -0.270615 -0.707417 0.325895 -1.430340 -0.931152 -0.878237 2.159259 -0.011054 0.666695 0.421379 -1.190269 -0.897010 0.834528 0.401473 2.183471 -0.175245 0.557199 -0.376740 0.826942 -1.466711 4.126034 0.153479 1.505666 0.062706 -0.030504 1.024192 0.262068 -0.737778 0.266026 1.781465 -2.419998 0.949770 0.571701 2.180754 -2.842556 0.811252 -1.291309 -1.065902 0.789624 2.682146 -3.333168 0.129646 1.165417 1.716632 2.586273 -2.583890 -1.009983 -1.429211 -0.486953 0.838592 -0.407975 -1.473470 0.358379 1.211310 0.561913 -0.899502 2.314051 0.157402 -0.800065 -1.690383 -0.333120 -3.059508 1.470067 -3.502170 -0.505754 0.008761 0.841245 -0.305824 -0.636524 -0.721135 1.887452 -1.193327 0.529399 -0.123974 -0.870848 2.305663 1.425723 2.469982 -0.313638 0.099369 -3.799840 -0.446165 -1.147128 -1.463908 0.495156 0.509741 -1.354347 1.083957 2.112597 -2.717996 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/detect-cycle-undirected-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/detect-cycle-undirected-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/detect-cycle-undirected-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/detect-cycle-undirected-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/detect-cycle-undirected-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/detect-cycle-undirected-graph.cpp___GLOBAL__sub_I_detect_cycle_undirected_graph.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/channel-assignment.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 1.792210 0.503569 2.398236 -1.964758 -1.256719 0.942712 1.187433 -1.968211 0.620427 6.103567 1.604217 -1.555774 -1.092573 3.892115 -0.987055 -1.740935 1.531610 -0.050145 0.294448 -0.762125 -0.316847 1.449608 -0.590901 -1.667994 1.473947 -1.039863 0.628765 1.960935 -1.310489 0.961059 -1.879836 -0.656093 0.071067 4.791084 -0.003173 0.316816 -0.383806 4.899691 -5.346631 5.668042 -5.104855 -4.905800 4.447503 0.694217 0.621077 -2.001297 -0.870725 1.888457 -0.116673 -3.470639 1.181940 -1.279493 1.356722 -2.370713 0.491006 3.508976 -5.619007 0.012842 0.611284 -2.251824 -3.266096 -0.714594 2.102929 1.335375 -3.401416 -2.801470 1.181513 1.166043 -1.530329 0.721829 -2.493909 -5.479893 2.542631 1.007147 -2.066429 0.916856 0.472433 -3.871958 2.849095 -1.600085 -2.755391 -1.475969 0.891295 -2.391719 1.879694 2.046252 4.395213 -6.643264 1.637666 -5.377737 4.139882 -2.847377 3.982530 4.144153 -1.929674 1.774109 1.960820 4.206207 1.871339 -0.195981 4.198673 2.379658 1.963151 -0.425085 2.705161 3.727472 -4.272365 -3.716004 -3.484529 -3.243217 1.198413 -1.516929 -4.301128 0.217110 -2.924061 0.462108 1.375558 -1.368774 -0.828789 5.040426 -7.379764 -0.856776 1.566987 -0.723348 2.827607 3.310438 -0.072875 0.779212 0.024644 3.931726 -1.528099 -0.400892 -1.005515 2.292280 -3.447055 -1.464466 -1.664137 0.651908 1.453203 -4.075866 -4.391195 -7.207652 -0.869875 3.510987 -1.266390 4.222192 7.320155 -1.816104 -3.608937 2.610371 -0.268121 -0.936956 3.980358 0.829194 6.063302 -5.138547 2.208764 -1.775560 1.443010 1.590472 5.776405 -0.269528 -2.045109 2.462031 -0.127511 -2.655746 4.975778 -0.668585 -0.167009 -2.036399 1.135642 -1.184110 -0.951142 4.572724 -4.284499 3.385876 -2.692383 6.155851 -3.952491 -2.881189 1.722642 -5.686467 -1.764527 -3.702526 -1.449770 -0.111414 4.214688 -3.879694 -2.167526 -1.999937 -1.919327 0.102659 2.967900 -3.461572 0.230074 -0.719947 -1.455034 4.940855 2.392667 0.128197 -0.152167 -3.892886 0.360964 2.407204 -1.193016 -5.096879 -0.375445 -3.640049 -0.443245 0.020073 -0.449915 2.634497 -3.486476 -1.889837 0.615637 -1.420588 0.171067 -1.614829 -5.061414 1.330058 -0.862282 1.516435 1.815741 4.667252 4.021884 3.743852 1.216636 -0.659085 0.620439 -2.523587 -3.222555 2.303165 0.939234 1.547156 1.875019 3.515315 0.924944 1.103161 2.323061 0.518039 1.111248 4.122821 0.957241 4.632253 -1.106896 0.778837 0.886112 -1.880309 2.797691 4.958396 -1.496219 -0.931993 1.909844 0.073154 -2.414829 -0.965670 -0.074677 -1.742481 -1.506756 1.831001 2.265643 -0.702131 -2.169674 6.360248 0.758859 -7.285113 3.049959 -0.254436 1.483138 3.919431 -1.645029 1.726648 1.668581 -0.515518 3.127634 1.871391 3.738050 -4.203753 -0.332736 -0.343192 2.881304 3.899493 -0.048877 -8.081516 1.592009 1.268814 4.454468 1.532987 5.232694 -2.947454 1.207933 -0.948128 -2.535704 -0.749410 -0.750501 2.814144 -0.515352 0.701620 -6.650548 0.304302 +PE-benchmarks/channel-assignment.cpp__maxBPM(int (*) [4]) = 1.765368 0.861163 1.967213 -2.273679 -1.312622 1.305248 -0.798692 -2.042287 0.273635 4.346756 0.896766 -0.845358 -3.440233 2.178029 -1.708983 -3.480511 0.776390 0.126053 0.503869 -2.430507 -0.310071 0.641971 -0.407414 -1.306858 0.816076 -1.769003 0.680476 1.680813 2.087020 0.715384 -2.074256 -0.454092 -0.151808 4.559756 0.273558 0.361930 0.034415 4.722769 -1.695957 2.494697 -5.146299 -5.217904 3.352834 0.856747 0.372006 -2.784933 -0.084618 1.173853 -4.016186 -0.280037 1.139613 -1.605879 0.681996 -1.586854 0.663821 3.258420 -6.318554 2.636333 -0.283783 -1.162353 -2.046646 -1.047659 2.167346 0.682152 -0.268048 -2.449449 1.350528 1.994399 -3.102378 1.430064 -2.340279 -4.069982 2.362450 1.350423 -2.245111 0.589905 0.803751 -2.785800 1.717947 -2.682996 -2.621157 -1.247440 1.622904 -0.579501 2.464101 2.110288 2.550464 -5.968432 0.652608 -4.935586 3.073587 -2.514800 4.112183 3.372576 -2.781499 1.451036 1.814095 1.548607 1.515522 -1.296669 4.132684 1.429274 1.815673 -0.438195 1.958038 1.849122 -2.500027 -2.146091 -1.805478 -2.780566 -0.844734 -1.486875 -5.153982 -0.436538 -3.572315 0.901201 1.055555 -1.131406 -1.447765 2.011427 -7.480866 -3.315233 0.256832 -0.743101 3.967613 2.544347 -0.083837 1.444570 0.783670 4.326276 -1.246202 -0.911553 -1.600903 1.554804 -0.610500 -2.875621 -4.215156 0.494803 2.053209 -3.089481 -4.703161 -4.546950 -1.845280 1.393425 -0.247528 4.133237 6.538266 -0.901476 -3.780257 2.797645 -3.309362 1.013653 5.834058 0.918444 5.111190 -4.495905 2.540226 -1.300430 1.676876 0.852945 1.592224 -0.695353 -1.498301 1.739554 0.632285 1.563302 -0.960633 -1.546358 -0.400750 -4.059336 0.337487 -1.744736 -0.592472 3.834983 -4.168175 3.748001 -1.315384 5.162636 -4.207398 -4.626787 1.351597 -5.664603 -1.170934 -1.315496 -1.244682 -0.909505 3.276313 -4.545814 -2.479716 -2.056326 -0.392188 0.121049 2.630877 -0.426776 -0.027648 -0.587328 -0.299410 5.021694 3.077871 0.063905 0.559877 -3.578004 0.435573 2.989532 -0.562875 -4.752663 0.553532 -2.816678 -0.302727 1.641032 -0.265896 2.006762 -1.591246 -2.134707 -0.498613 -1.054988 1.855724 -0.835062 -3.563409 1.542192 -1.349549 -0.288415 1.626383 3.954911 3.792776 2.618218 1.133712 -1.367743 1.870785 -2.883407 0.343260 1.162779 1.699834 1.505232 1.262366 2.604362 0.662295 0.587794 2.266116 2.159080 -0.329565 3.390979 1.123408 4.638209 -2.071878 0.985230 -0.240957 -2.401659 1.890835 5.513324 -2.417957 0.215935 2.067727 1.289052 0.165008 -3.557265 -0.651568 -2.022615 -1.438976 1.908984 1.817951 -1.401454 -1.877037 5.578360 1.172184 -5.695790 3.845514 0.007327 0.353579 2.023320 -2.009570 -0.984103 1.863245 -2.586676 2.072249 1.483845 2.908389 -3.201474 0.256142 -0.592755 3.417535 1.433390 -0.544129 -4.489689 0.898003 2.072499 4.687120 3.551039 3.359539 -1.944571 -1.205259 -0.950661 -2.596865 -0.913999 -0.419242 2.563236 -1.166341 0.448161 -3.355403 -1.261498 +PE-benchmarks/channel-assignment.cpp__main = -0.076628 -0.911224 0.688258 -0.995910 -0.809278 0.668100 -0.939861 -0.362673 0.429136 -1.763222 0.648940 -0.552217 -0.739164 1.023759 0.135021 -1.666157 0.278779 0.599572 0.173207 0.159287 -0.009533 -0.022359 -0.309121 0.198221 -0.022630 -0.458359 -0.005901 1.171130 1.973098 0.032243 -1.261840 -0.083682 -0.665833 1.601645 0.401819 0.191239 1.143741 2.672966 0.479437 1.331588 -0.124712 -0.292244 0.674772 0.078268 -1.176868 -0.019053 -1.481833 0.325350 -3.246749 0.485366 1.639925 -0.294021 0.313199 0.199858 0.846626 1.245558 -2.216621 0.838193 0.043807 0.829071 0.500099 -0.705869 -0.722376 -0.044936 -0.318802 -0.462620 0.877963 0.666999 -0.785134 -0.126180 -0.342976 -1.500496 3.230215 0.807445 -0.903194 0.259617 1.503311 -1.233043 0.755550 0.371327 -1.783581 -0.062136 -0.290221 -0.819068 2.702739 -0.707684 0.433661 -1.909095 0.104091 -2.271454 0.656698 -1.947649 0.829129 1.872428 -2.544122 0.398623 0.722351 0.932953 -0.016536 0.006314 1.519824 0.404796 -0.746571 0.030016 1.381754 -0.421302 -0.190122 -0.448360 -0.745456 -1.058077 -0.780981 -1.079491 -3.310971 -0.012936 -0.683349 1.314965 -0.303801 0.855684 -0.562054 0.112262 -0.510984 0.538097 -0.183847 -0.365644 0.985479 1.666122 -0.731031 0.375032 -0.363929 1.971487 -0.660431 0.118231 -1.040396 0.280356 0.460120 -0.572443 -2.173113 0.132224 1.138677 -0.454521 -2.034086 -0.666414 -0.678156 0.267354 0.074924 1.872454 2.447072 -0.376976 -0.758233 1.701935 -0.141180 1.709875 2.169505 0.357108 1.404221 -0.710639 0.180222 -1.278550 -0.292157 -1.016431 -2.008136 0.286735 0.067774 0.666432 0.243049 0.268474 2.732002 -0.546915 -0.823391 -0.637481 -0.233180 -0.891257 -1.735943 2.711429 0.271423 0.969184 0.958187 2.256488 -0.453162 -1.817531 0.701836 0.569321 0.445639 -1.124180 -0.628963 -0.012444 0.627911 -1.216422 -1.218721 -0.402219 0.444229 -0.243836 0.163175 3.289926 0.010180 0.245629 0.803077 0.616410 2.202699 0.403010 0.231870 -1.822485 0.400344 0.900496 -1.444849 -0.337375 0.893952 -0.211005 0.023247 0.199822 0.184237 0.161003 -1.552755 -1.349189 -0.955522 0.294784 1.294986 0.904950 -3.425836 0.446891 0.451239 -0.502447 1.617003 0.444387 2.253165 0.884851 1.299999 -0.198144 0.437552 0.629483 -0.056174 -0.377331 0.383150 1.731793 0.152307 1.264720 0.562327 -0.128300 0.187951 1.474835 0.647833 0.786545 1.759933 2.263292 1.406641 -0.479513 -0.315415 -0.656442 1.248302 2.627792 -1.238986 1.464938 0.854156 1.814640 0.280148 -3.093930 -0.192565 -0.661508 -0.268107 0.684754 -1.104845 -0.285832 -0.347090 1.518194 0.116660 -1.751773 0.306688 0.284786 0.234014 0.698502 -0.024165 -0.399132 0.395635 -2.170887 1.885869 0.397157 0.618378 -0.438185 0.470561 -0.151655 0.274768 -0.293286 0.746322 0.503018 0.586847 0.429966 1.504416 1.925501 -0.076799 -0.375351 -0.935672 0.029948 -1.658956 -0.349055 -0.163082 0.548391 -1.078673 0.321009 -0.899085 -2.441138 +PE-benchmarks/channel-assignment.cpp___GLOBAL__sub_I_channel_assignment.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/longest-palindrome-substring.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.549571 0.458065 0.580022 -0.889838 -0.386312 0.126736 0.612592 -0.512228 0.074256 1.681319 0.486902 -0.463367 -1.069438 1.113590 -0.354160 -0.852795 0.457234 -0.594989 -0.092598 -0.323113 -0.100916 0.538014 -0.077412 -0.576290 0.614860 -0.214886 -0.058862 0.697401 0.184067 -0.324313 -0.584698 -0.097613 0.175400 1.489404 -0.177971 0.036117 -0.149161 1.536781 -1.436350 1.301343 -1.909954 -1.528458 1.566999 0.161257 -0.020516 -1.435500 -0.133315 0.659289 -0.391148 -0.839358 0.268956 -0.340574 0.157638 -0.920755 0.105101 1.527070 -2.182931 0.655545 0.239590 -0.461224 -0.836176 -0.184419 0.717528 0.072306 -0.383143 -1.024215 0.237786 0.001289 -0.957860 0.320379 -0.803941 -1.397339 0.909234 0.361400 -0.564234 0.440834 -0.144096 -1.191448 0.805826 -1.125624 -0.633272 -0.461084 0.623173 -0.089324 0.597023 0.563125 0.797121 -2.070831 -0.054601 -1.526034 1.129342 -0.970909 1.291298 1.170253 -0.529338 0.654105 0.371119 0.211838 0.533583 -0.102331 1.421998 0.483101 1.051687 -0.150163 0.595757 0.961289 -1.187622 -0.980625 -0.840105 -1.001448 0.163748 -0.178358 -1.530880 0.082657 -1.075376 -0.022184 0.744613 -0.607970 -0.176708 1.181635 -2.106159 -0.593149 0.435896 -0.232058 0.991010 1.295509 0.118307 0.055428 -0.062723 1.240266 -0.204304 0.209391 -0.367620 0.688426 -0.491884 -1.313138 -0.550092 -0.082020 0.292144 -1.228326 -1.357278 -1.985381 -0.195303 0.437047 -0.446527 1.012413 2.270337 -0.484471 -1.352429 0.984246 -0.104431 0.125196 1.242413 0.143995 2.037357 -1.617336 0.736705 -0.230773 0.488443 0.610424 1.593476 -0.227800 -0.812180 0.431548 0.009732 -0.963506 0.490732 -0.095561 0.072654 -0.286718 0.141258 -0.571636 -0.550147 1.261401 -0.821260 1.500728 -0.683857 1.829792 -1.299383 -1.236859 0.668275 -1.372898 -0.448193 -0.959571 -0.667510 0.113867 0.967312 -1.236853 -0.636944 -0.789865 -0.284958 -0.151691 1.063530 -1.183913 0.071052 -0.360380 -0.354112 1.246377 0.692280 -0.338870 0.292654 -1.338490 0.218779 0.807105 -0.003643 -2.035670 0.063136 -1.039552 -0.181805 0.711951 -0.276308 0.800110 -0.455369 -0.632026 0.489768 -0.505990 0.117338 -0.657952 -1.093917 0.301668 -0.516700 0.161415 0.406925 1.610142 1.193291 0.915079 0.043681 -0.201787 0.307682 -0.825599 -0.676764 0.387544 0.012491 0.423226 0.703174 0.833898 0.344894 0.314552 1.040946 0.342172 -0.185455 1.361843 0.412436 1.458820 -0.551529 -0.005328 0.335078 -0.775756 0.793594 1.529324 -0.618938 -0.489916 0.739372 0.245299 -0.411431 -0.580069 -0.190444 -0.635429 -0.733011 1.103508 0.595908 -0.369004 -0.509620 2.053157 0.150119 -2.210689 1.257725 -0.056787 0.436903 0.616921 -0.474519 0.194233 0.817307 -0.521063 0.463466 0.517213 1.254274 -1.204993 -0.330747 -0.104830 1.096056 0.796067 -0.061154 -2.577563 0.073735 0.546951 1.583642 0.678021 1.540443 -0.653426 0.010130 -0.329424 -0.362083 -0.220208 -0.320700 0.747194 -0.438266 -0.060616 -1.730761 0.367686 +PE-benchmarks/longest-palindrome-substring.cpp__longestPalSubstr(std::__cxx11::basic_string, std::allocator >) = 5.237600 2.243365 4.243133 -4.409928 -0.528492 1.458836 2.932925 -4.709862 0.599160 14.613284 3.846594 -3.812725 -5.683334 5.655578 -2.360801 -5.443236 5.340736 3.169452 1.211898 -4.394666 -1.327724 1.342466 -0.722953 -5.968270 4.164270 -3.652337 1.217955 4.500400 0.342427 2.566185 -4.357111 -0.538455 1.963437 11.730151 -0.888941 -0.430104 -2.370356 9.629442 -9.469517 9.174064 -12.315762 -10.654044 12.073234 2.242578 1.725567 -6.933641 -1.049372 3.549137 -1.214871 -6.953343 -0.058870 -4.276759 3.685956 -7.622147 -1.330725 11.499809 -13.003266 0.756130 1.373125 -6.438462 -8.417166 -0.528452 6.850017 1.879041 -4.951817 -7.342626 2.646339 2.507060 -4.853923 2.978910 -8.687345 -12.856932 4.610074 2.706477 -4.222253 2.586713 -1.376926 -8.421461 4.731892 -1.877394 -4.176226 -4.568601 4.520282 -1.191109 2.358326 5.551584 9.585591 -15.443161 0.764833 -12.200632 9.801148 -6.202451 12.121157 8.508942 -3.700417 4.868474 4.179531 4.457909 1.868874 -0.657398 10.987420 3.804143 5.367795 -3.315303 5.055096 7.963919 -8.899560 -9.021194 -5.272568 -5.604979 1.286196 -1.503434 -9.887471 0.303848 -11.992655 0.070676 4.238117 -4.233643 -1.655346 10.870632 -15.508608 -5.626512 3.680811 -2.292414 8.856689 8.282193 2.085671 1.339168 0.969468 9.026822 -1.473918 -2.786797 -2.961383 5.610697 -4.875916 -8.240908 -3.551455 0.180672 3.575655 -10.990313 -11.049246 -13.946294 -2.835693 5.986613 -2.362662 7.364191 16.434639 -2.774590 -7.906027 4.499469 -3.645166 -0.454623 11.559289 2.626820 17.388932 -15.249544 8.648671 -2.215959 6.396320 6.105455 11.858707 -3.613935 -5.761743 5.039239 0.663793 -2.417230 6.325153 -3.105017 2.270697 -1.626767 2.082762 -0.802184 -2.265897 9.070736 -8.720719 9.969226 -6.257644 14.697513 -10.768594 -8.938270 4.471502 -10.537253 -5.626119 -5.139068 -1.533622 -1.287091 9.700288 -8.659285 -6.125767 -4.636607 -3.340514 2.322962 9.694736 -6.130184 -0.250805 -3.046451 -6.191398 9.472653 3.189778 -1.704179 0.851269 -9.229606 0.164988 6.176876 -1.571957 -13.360509 -0.649118 -8.760011 -0.897395 0.839645 -1.206799 7.581528 -5.434830 -4.636540 2.348121 -3.168638 0.650862 -6.473843 -7.463668 4.113903 -3.334895 -0.011715 2.232408 13.494152 9.296981 7.144174 -0.750033 -3.191446 3.050111 -7.858269 -6.917303 5.563268 0.758098 4.960243 3.923518 5.492991 -0.126530 2.976909 5.780270 -1.595475 2.326976 9.356162 2.758902 9.512767 -4.284539 2.061109 3.346476 -8.192233 6.388567 11.373467 -2.573253 -5.321309 4.550048 0.037361 -4.633764 -5.211296 -1.443943 -2.626186 -6.559995 6.191316 6.915018 -1.760802 -6.425735 16.273316 3.257547 -17.725117 10.277394 -0.414802 1.762477 8.054490 -5.428065 3.203158 5.247417 1.250240 2.725089 2.940486 10.116293 -11.058409 -0.088757 -1.093985 8.313579 6.101527 -3.797280 -20.030929 2.244210 4.261978 11.532946 5.668350 12.375288 -5.937854 3.180822 -4.010495 -4.052819 -1.514667 -3.298666 6.097584 -2.788920 0.379711 -14.014660 5.076504 +PE-benchmarks/longest-palindrome-substring.cpp__main = 0.508712 0.057457 1.560925 -1.515602 -1.296039 -0.023257 -1.943047 0.802029 0.980528 0.782797 0.720982 -1.556641 -2.960256 2.133484 -0.968278 -2.353295 0.845827 -0.353914 1.705476 -0.925824 0.995089 0.471082 1.387441 -0.064356 0.654149 -0.497771 -2.270435 1.129211 4.853272 -1.273028 -0.726931 0.948492 0.575051 1.368604 -1.790850 -1.504283 0.948484 2.736718 0.088186 0.541298 -1.472526 -1.124447 2.088328 0.556686 -0.589109 -1.798831 -1.306814 0.841349 -3.591805 -0.340641 0.807899 0.636022 0.140907 -1.128839 -0.557300 2.291521 -5.360045 2.477932 -0.596204 0.779176 1.425824 1.357243 -0.358516 0.388191 2.103551 -0.864448 -0.058100 0.084456 -2.959817 -0.410223 0.566312 0.290548 3.304565 0.166551 -0.696996 1.690925 2.689555 -0.823515 1.600423 -3.633644 -1.402615 -0.006151 -0.131938 0.081784 2.454902 -0.174963 0.386149 -1.944832 0.212983 -1.485465 2.611111 -2.480869 0.767566 1.916431 -2.489332 0.949506 1.194068 -1.392358 2.207516 0.618627 3.675083 1.301439 1.096241 0.617597 0.257828 0.394885 -0.442097 0.674168 -1.251597 -1.769416 -1.386756 -0.329504 -3.310628 -0.048854 -0.538794 1.160622 2.843742 -1.273295 -0.127501 0.650328 -1.358244 -0.829059 0.142527 -0.089863 -0.189141 2.423955 -0.313854 -1.029784 0.220896 3.441326 -0.999714 -0.332739 2.087059 0.262815 1.005783 -3.451169 -1.483804 -0.069849 -0.670794 -1.453664 -1.358283 -1.991624 0.937013 -1.194962 0.137392 1.751730 3.999318 0.806104 -1.086254 2.107438 -0.250701 1.007472 3.485739 0.000566 3.440315 -1.178973 -1.103006 -1.083611 -0.550044 0.832413 0.566746 0.970053 0.838572 -0.002278 1.655244 -0.706251 -1.742060 -0.954777 0.202474 -0.357856 -0.295389 -1.713914 -1.727652 1.243859 1.255498 1.812933 0.736979 3.217228 0.975253 -4.288951 1.817612 0.293705 0.000237 0.380139 -0.921000 0.689281 -0.648698 -1.914499 -0.815226 -1.952507 0.549097 -0.666466 0.453809 0.968887 1.841458 0.768819 -0.104177 1.299944 0.879325 -0.133462 1.459938 -3.526391 -0.611118 0.791604 -1.202286 -3.273178 1.525868 -1.371629 1.306305 2.776347 -1.296645 0.928118 -0.619870 -2.288547 -0.676208 -0.915284 0.883208 -1.130847 -1.306701 -0.096859 0.027289 0.748114 1.527500 1.736658 2.686356 0.822811 -0.212025 1.561393 0.557032 0.304048 1.494505 -0.596638 -0.486587 0.456110 0.400258 1.028719 0.033259 0.707261 2.055870 1.797682 -1.552476 1.819975 -0.115521 1.771215 -0.271580 -0.748364 -0.237837 -1.311398 1.580060 3.368888 -1.263078 -0.074201 1.386649 1.400764 1.400870 -2.979727 0.283451 -0.918945 -0.397694 2.398184 0.085074 0.453335 -0.093358 -0.005537 1.052409 -2.853330 2.921286 -0.367734 -0.437719 0.157204 0.105076 -1.243867 0.625483 -3.009973 -0.516267 0.786921 1.203854 -1.881336 0.160990 0.169372 2.414512 -0.933190 1.665976 -3.070609 -0.752865 1.141798 0.426711 1.611881 1.169384 -1.021862 -3.964138 0.346493 -0.744602 -1.960303 -1.185974 -0.737333 -2.493697 0.477627 1.180558 -0.810509 +PE-benchmarks/longest-palindrome-substring.cpp___GLOBAL__sub_I_longest_palindrome_substring.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/egg-dropping-puzzle.cpp__max(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 4.589582 0.291942 2.624157 -3.795792 0.691129 1.935727 2.997009 -4.423255 0.120457 12.453277 3.147761 -2.774038 -4.010934 4.734823 -0.594456 -5.575841 5.380768 4.461357 0.789451 -2.992544 -1.920884 1.047202 -0.947067 -5.985815 3.924536 -4.071650 1.311950 4.601184 -1.600869 3.574188 -3.587477 -0.860044 0.677693 10.915678 -0.105164 1.064540 -2.105587 8.663330 -9.528239 10.569035 -9.590777 -9.346848 11.143161 2.072622 1.120023 -3.107334 -1.159935 2.533605 -0.141376 -7.213871 0.296493 -4.401682 4.084531 -6.518513 -0.585205 10.496034 -9.485728 -1.934181 0.998492 -6.666776 -8.555926 -0.820762 5.366336 1.966930 -6.728757 -7.192263 2.648024 2.837019 -2.799763 2.108860 -8.442324 -12.835837 4.901375 3.409136 -3.574234 1.895895 -1.503906 -7.370281 3.770264 1.393156 -4.062295 -4.473280 3.579304 -2.055788 2.089443 5.249593 10.637896 -14.334481 1.616315 -11.293990 9.119826 -4.911206 11.503236 8.008201 -2.359565 4.521493 3.957063 6.466143 -0.018079 -1.145176 9.532328 2.904939 3.036023 -2.985482 5.363159 7.006030 -8.854464 -9.549904 -5.056141 -4.187120 2.295969 -2.832869 -8.877544 0.723846 -11.029887 0.742992 3.096296 -2.704829 -1.961173 10.403627 -13.901303 -3.563165 3.209422 -2.311601 8.485983 6.537703 1.995555 1.086302 1.034106 7.617663 -1.309111 -2.838701 -3.883988 5.614135 -5.243143 -3.888182 -1.791984 0.536886 3.997073 -10.558948 -10.130496 -11.970410 -3.118288 8.325650 -2.550109 8.408773 14.937981 -3.390629 -6.410957 3.552202 -3.522897 -0.249361 8.910591 2.791113 14.859314 -14.227654 8.261093 -2.485595 6.272610 5.755098 11.087399 -3.181673 -5.872071 5.694338 -0.119911 -1.142088 9.639249 -3.016128 1.856138 -1.551752 1.933191 0.363130 -1.401613 8.992547 -9.600687 8.821372 -5.586346 13.314013 -9.753223 -6.505997 3.695372 -9.887089 -6.544273 -6.608063 -1.018080 -1.902154 8.636388 -7.520823 -5.688724 -4.127560 -3.680168 2.430423 8.966516 -4.658787 -0.775255 -3.130249 -6.070144 9.734243 3.244997 -0.423311 -0.880145 -7.970663 0.813698 5.235873 -2.958961 -9.847663 -1.303577 -6.768140 -1.098872 -0.624703 -0.571050 6.944866 -6.457285 -3.413657 1.444582 -1.536061 0.313916 -5.303178 -8.126059 3.849924 -0.872928 -0.375793 2.652635 12.107475 8.637223 6.746088 -0.287007 -3.355822 2.484414 -6.339781 -8.986866 5.799339 0.507748 5.910679 3.644885 5.599249 -0.608378 2.768836 5.349971 -1.659359 4.663159 7.894569 2.987235 8.903501 -1.513339 1.235334 3.745824 -7.556254 5.837454 9.611292 -3.236216 -3.738676 4.329824 -0.308457 -5.603647 -3.583542 -0.531295 -2.438213 -6.035852 5.096966 5.573627 -1.171666 -6.779642 15.456913 2.937598 -16.587810 8.101175 0.305015 2.182991 8.837931 -5.123632 4.767225 4.036040 2.085671 3.621777 2.700338 8.943848 -10.161470 1.712633 -0.849505 5.908880 6.720429 -3.984203 -16.348899 2.455838 3.229498 11.372441 4.996625 11.026850 -5.054737 5.283934 -3.896251 -4.127012 -0.319659 -3.229921 5.303134 -2.098568 1.113270 -14.521620 4.596925 +PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.432847 0.275505 0.256470 -0.638706 -0.399309 0.078792 0.009966 -0.430103 0.105410 0.281491 0.479252 -0.635228 -0.208746 1.013275 -0.428009 -0.414311 0.152425 -0.385436 -0.191237 -0.016903 0.107886 0.222439 -0.054091 -0.426061 0.073191 0.018555 0.058624 0.304317 0.383566 -0.292595 -0.691119 0.020568 0.301285 0.872450 0.108929 -0.206194 0.060579 0.838975 -0.527839 0.710879 -1.087908 -0.448144 0.780773 0.114496 -0.137030 -1.231163 -0.708968 0.366585 -0.279437 -0.230212 0.187093 -0.247649 -0.030072 -0.438805 -0.021733 1.004845 -1.238075 0.731349 0.230988 0.123871 -0.129478 -0.169823 0.394883 0.119240 -0.146870 -0.568697 0.217600 0.244598 -0.598809 0.203172 -0.525242 -0.964851 1.121537 0.131382 -0.453007 0.067097 -0.165389 -0.981156 0.487727 -0.807678 -0.374078 -0.062820 0.334890 0.259845 0.512154 0.081773 0.271345 -1.169924 -0.200947 -1.053103 0.480206 -0.810541 0.598861 0.608950 -0.764110 0.115707 -0.002412 0.081570 0.615366 0.502477 0.728241 0.435656 0.475427 -0.420814 0.511079 0.501310 -0.225290 -0.397304 -0.162045 -0.665503 -0.193426 0.084155 -1.597066 0.141011 -0.626813 0.105579 0.011292 -0.211148 0.053918 0.632822 -0.770719 -0.499344 0.141846 -0.102777 0.504485 0.988629 -0.065165 0.205887 -0.340233 0.684412 0.200243 0.076068 -0.181944 0.248954 -0.582193 -1.470217 -0.752450 0.130185 0.327451 -0.620963 -0.928475 -1.097579 -0.082058 -0.011246 -0.296336 0.490830 1.089056 -0.132047 -0.873176 0.587519 0.613915 0.007514 1.076551 -0.045213 1.537515 -0.980870 0.593065 0.023689 0.194340 -0.030811 0.126917 -0.342288 -0.457210 0.091072 -0.144084 -1.463869 0.798984 0.088451 0.020790 0.209999 -0.075884 -0.303790 -0.604275 0.988987 0.007096 0.868662 -0.334832 1.158632 -0.767528 -0.871232 0.460587 -0.274590 -0.054240 -0.225124 -0.234583 0.137902 0.843560 -0.640945 -0.404685 -0.008722 -0.138044 -0.125494 0.707228 -0.066380 -0.047381 -0.151311 -0.149444 0.382076 0.537734 -0.382862 0.562049 -0.727319 0.164111 0.778763 -0.008808 -1.391181 0.068777 -0.727882 -0.043462 0.048957 -0.148275 0.354469 -0.429688 -0.567222 0.211854 -0.330285 0.383675 -0.257823 -0.418486 0.267459 -0.651846 0.171258 0.099750 0.945253 0.730688 0.518608 0.125233 -0.325094 0.168261 -0.558056 -0.146781 0.155002 0.171624 0.026660 0.340810 0.720439 0.020671 0.086224 0.554841 0.234774 -0.140155 0.703984 0.471275 0.809569 -0.240839 0.077879 -0.012082 -0.616492 0.676671 1.421798 -0.372154 -0.385940 0.277544 0.250140 -0.142157 -0.729162 -0.303484 -0.189580 -0.722901 0.696809 0.120516 -0.088578 -0.250918 1.163275 0.181711 -1.080218 0.661741 0.026274 0.117287 0.314059 -0.438906 0.082083 0.459829 -0.279521 0.193647 0.284820 0.706279 -0.489444 -0.725710 -0.101873 0.562983 0.328946 0.014194 -1.120203 0.458500 0.681487 1.052012 0.410653 0.554578 -0.479553 -0.100078 -0.143932 0.050714 -0.099020 -0.232790 0.447099 -0.677191 -0.139484 -0.605496 -0.130708 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 6.262600 1.060989 4.636099 -4.239406 1.007341 3.339136 4.429389 -6.856383 0.457193 19.800787 4.669908 -3.356952 -4.722396 6.122557 -1.559521 -5.329441 7.684543 6.244517 1.245687 -4.703054 -2.883649 1.048932 -1.728846 -8.928326 5.335811 -5.496681 3.354650 5.403996 -3.972472 6.114393 -5.078089 -1.623067 1.368025 15.368261 0.524555 1.781355 -3.595886 11.487226 -13.465667 14.632173 -13.627329 -14.743623 15.682468 2.760947 3.257773 -3.104991 0.614469 4.264251 2.170343 -11.757748 -0.416667 -6.823734 6.361390 -9.545060 -2.052358 12.838397 -12.000800 -3.873725 1.491019 -10.297293 -13.750879 -1.804312 8.910356 3.791812 -10.660607 -9.437291 3.901609 4.390027 -4.073677 2.848959 -12.086872 -18.232442 4.859034 3.428861 -5.007637 2.057359 -2.739130 -10.144449 5.245035 3.042762 -5.714571 -6.031866 4.801375 -4.062679 1.895635 8.357210 15.568645 -20.366045 2.686039 -16.128740 12.961906 -5.468626 16.533169 10.633571 -3.392339 6.053812 6.001518 12.081047 -0.091668 -1.224716 13.216042 4.292342 4.535522 -4.342254 8.222257 10.548088 -12.946056 -13.773810 -7.650210 -6.273064 4.296141 -3.171908 -10.007519 0.631206 -15.973953 0.078971 3.400598 -3.687979 -3.250707 15.050628 -21.959544 -5.542711 4.658554 -2.984434 12.694140 7.951719 2.781903 2.758629 2.948153 10.390623 -2.590402 -5.399765 -5.186005 8.187574 -7.424677 -3.721905 -2.118711 1.494874 6.146021 -14.755506 -14.317312 -18.523150 -4.725579 12.502461 -3.454960 10.275873 20.606844 -4.531492 -8.365015 4.135490 -6.347068 -1.763728 12.771008 4.064224 20.647144 -20.499827 12.215375 -2.587026 9.252812 8.397721 17.075194 -5.022179 -8.177408 7.756854 -0.073358 -0.759191 12.988380 -4.064586 2.761207 -4.079607 3.300541 0.137302 -1.584744 11.731664 -14.972985 10.844777 -8.783630 18.722878 -14.710974 -8.159753 4.748026 -14.567186 -8.904023 -8.975122 -0.893036 -3.208736 13.636023 -10.699268 -8.031104 -4.912450 -5.067207 4.046704 12.706837 -8.621676 -1.180244 -4.286128 -9.376740 12.714595 3.225105 -0.807315 -2.128914 -10.186540 -0.049730 7.516959 -2.939499 -12.962898 -3.089863 -11.316341 -1.861997 -1.591368 -0.519693 10.162367 -8.674283 -4.441298 2.660498 -2.639710 -0.129887 -7.596740 -11.262175 5.582779 -1.288076 -0.316658 3.188858 17.576314 11.174942 10.154268 -0.507042 -4.784093 3.369723 -9.821271 -13.214328 8.504911 1.210578 8.463087 5.070326 7.840034 -0.033299 4.580980 6.497739 -4.047388 6.690895 11.891524 3.383613 12.051747 -4.610307 3.251106 5.353190 -9.815565 8.145033 12.429070 -3.414846 -6.402546 5.107225 -1.759488 -8.645494 -2.755678 -0.635243 -3.197622 -6.860767 5.089750 9.545982 -0.789431 -10.096584 22.203912 3.649408 -23.572232 11.561193 -0.515898 3.795916 13.991870 -7.793577 7.304754 5.275490 4.822368 6.033044 4.075454 12.500698 -14.551563 1.864572 -1.449451 9.414345 9.652999 -6.707592 -24.042965 4.862024 3.117647 14.933757 6.707252 14.821176 -8.165003 8.739037 -6.058020 -7.145866 -0.116580 -3.862470 9.348155 -0.889155 0.714839 -22.452249 7.753672 +PE-benchmarks/palindrome-partitioning.cpp__main = 0.335053 0.137397 0.133117 -0.321170 -0.385772 0.214954 -0.504225 -0.267768 0.028181 -0.237537 0.201837 -0.314909 -0.333639 0.398492 -0.301780 -0.568587 -0.110104 -0.278536 -0.074320 -0.158170 -0.054522 0.006583 -0.074759 -0.057074 -0.047840 -0.046686 -0.046233 0.081172 0.692632 -0.339462 -0.524768 0.046819 0.032340 0.573838 0.162622 -0.200177 0.346707 0.767742 0.457329 -0.047225 -0.417990 -0.319168 0.223188 0.048012 -0.173646 -0.289147 -0.227818 0.253684 -0.888317 0.373544 0.331300 -0.145096 -0.232232 -0.033337 0.083326 0.495297 -1.028987 0.966008 0.028875 0.383086 0.077533 -0.201029 0.098878 -0.043558 0.452126 -0.287055 0.258014 0.443118 -0.578247 0.117862 -0.234694 -0.473115 0.986267 0.171008 -0.305258 0.017794 0.140176 -0.250411 0.238774 -0.649019 -0.469671 0.041840 0.228891 0.182628 0.694056 0.046960 -0.112759 -0.717658 0.021689 -0.772472 0.177599 -0.519630 0.359138 0.466553 -0.762965 0.018786 0.104850 -0.148191 0.330209 0.200261 0.582270 -0.021208 -0.019382 -0.070171 0.139510 -0.063289 0.095680 0.092075 0.038464 -0.456954 -0.420204 0.149621 -1.026493 0.075825 -0.387696 0.541163 -0.044137 0.160212 -0.079735 -0.184706 -0.548329 -0.687545 -0.168609 -0.073776 0.625949 0.531642 -0.184381 0.297282 -0.196910 0.635473 0.026516 -0.101945 -0.226643 0.050734 0.212348 -0.887671 -1.136953 0.133608 0.447000 -0.253286 -0.696056 -0.298028 -0.136491 -0.270982 -0.121027 0.736649 0.797296 -0.072639 -0.418242 0.615101 -0.116156 0.470520 1.095032 -0.008257 0.803140 -0.425983 0.236197 0.055354 0.018145 -0.287830 -1.101528 -0.112650 -0.044604 0.004027 0.255197 0.224516 0.022839 -0.023401 -0.237176 -0.111781 -0.123041 -0.219984 -0.482076 0.621460 0.398628 0.424196 0.410577 0.827668 -0.389410 -0.806683 0.321923 0.119874 0.144708 0.141669 -0.204998 -0.081475 0.336127 -0.534594 -0.313160 0.124200 0.135368 -0.223605 0.222447 1.199443 0.076096 0.068985 0.169258 0.256453 0.701612 -0.114459 0.356819 -0.647170 0.072743 0.468421 -0.208778 -0.476505 0.201009 -0.277156 0.031841 0.461197 -0.081807 0.075553 -0.192026 -0.443869 -0.153389 -0.002080 0.671214 0.186990 -0.165778 0.166725 -0.324858 -0.153285 0.259380 0.398699 0.553219 0.313965 0.337015 -0.195179 0.216460 -0.098319 0.568030 -0.223142 0.174504 0.449745 0.171975 0.286754 0.099993 0.006879 0.210691 0.376561 -0.240748 0.409476 0.343855 0.798631 -0.335326 0.103530 -0.298813 -0.350056 0.452565 1.047257 -0.858077 0.081006 0.222218 0.433553 0.307369 -0.890868 -0.173662 -0.237227 -0.247707 0.111542 -0.111475 -0.051287 -0.135891 0.602210 0.075965 -0.504116 0.522540 0.083115 -0.025974 0.016684 -0.162102 -0.332271 0.237913 -0.729247 0.111229 0.285349 0.377724 -0.194060 -0.087113 -0.101791 0.500326 -0.579635 0.185349 0.132173 0.236301 0.556228 0.524498 0.645508 -0.232329 -0.247774 -0.649007 0.037364 -0.212217 -0.119794 0.093779 0.320547 -0.499257 0.100202 0.167170 -0.614256 +PE-benchmarks/dfa-based-division.cpp__preprocess(int, int (*) [2]) = 1.270450 0.272553 1.674765 -2.170670 0.313487 0.633556 1.704090 -1.673368 0.842261 4.814768 1.045023 -0.863204 -1.566953 2.344891 -0.695930 -1.895259 2.321287 -0.379342 0.355545 -0.534004 0.027526 0.814237 -0.216641 -1.851083 1.263639 -1.097474 0.954507 1.751164 -0.772737 0.096381 -1.849950 -0.292652 0.136812 3.975827 -0.194798 0.604968 -0.741222 3.468661 -3.398089 4.912905 -4.705823 -3.448505 3.520400 0.532237 0.568499 -3.119514 -0.456981 1.021876 0.345059 -2.838613 0.303826 -1.579668 1.231947 -2.421894 0.042774 3.684236 -4.263221 -0.454543 0.480684 -1.629902 -2.392490 -0.595254 2.626060 1.021470 -2.504127 -2.363955 1.329191 0.179985 -2.235989 1.300059 -2.644621 -4.357525 1.568706 1.248781 -1.737519 0.782485 -0.066512 -3.559436 1.806171 -1.373001 -1.444195 -1.426722 1.167149 -1.458153 1.217823 0.954201 3.348175 -5.430076 0.483624 -3.896669 3.239574 -2.476488 3.776129 2.996744 -1.024405 1.593857 1.036156 2.535934 0.516176 -0.260980 3.339825 2.078695 1.989804 -1.370107 2.873745 2.330596 -3.142240 -3.397338 -1.917207 -1.989538 0.573570 -1.044428 -3.460487 -0.041991 -3.458590 0.024927 1.419139 -1.184038 -0.811972 3.773880 -6.172901 -1.458180 1.037406 -0.723673 2.522856 2.902976 0.356046 0.573923 0.456136 3.151021 -0.637764 -0.312477 -1.162266 1.800953 -2.467160 -1.231303 -0.616503 -0.230998 1.144725 -3.239761 -3.853134 -4.995155 -1.672737 2.300820 -0.532700 3.333474 5.363890 -0.743311 -3.531725 1.518023 -0.871003 -0.395813 3.062651 0.789679 5.026374 -4.969845 2.886269 -1.268518 2.208994 1.716925 4.945888 -1.023945 -1.926060 1.514187 -0.862835 -2.886394 2.753857 -0.461823 0.799361 -1.098400 0.295238 -1.080449 -1.093006 3.477557 -4.233697 3.879843 -2.826979 4.816600 -3.693244 -2.551731 1.121797 -4.114135 -1.280864 -2.624388 -0.907122 -0.536173 3.570713 -2.837592 -2.061459 -1.668568 -1.458368 1.000720 3.129234 -3.537991 -0.236799 -1.311135 -1.749725 4.470980 1.214525 -0.642409 0.114884 -2.844162 0.537171 2.431224 -0.395666 -4.085123 -0.264827 -2.964790 -0.555750 -0.208603 -0.249491 2.314681 -2.528771 -1.917187 0.758186 -0.913682 -0.146951 -2.083713 -4.482423 1.022705 -0.564407 0.010827 0.842181 4.022609 2.808702 2.231194 -0.078395 -1.803701 0.918888 -2.696575 -3.281052 1.531823 0.521092 1.111472 1.046281 2.344053 0.279322 0.584912 1.712228 0.203900 0.871082 3.126276 1.058433 2.882241 -0.978682 0.398833 1.159216 -2.602636 1.917076 3.734135 -0.604087 -1.039658 1.696238 0.586461 -1.810238 -1.721149 -0.680860 -1.395225 -1.542211 2.238796 1.525883 -0.933835 -1.907052 5.417138 1.190730 -5.966846 2.553888 -0.304376 0.800225 3.188490 -1.785082 1.396101 1.682277 -0.395032 1.670962 0.488813 2.807172 -2.996365 -0.500856 -0.341442 2.120685 2.876187 -1.135804 -6.261942 0.926519 0.799002 4.628831 2.262417 4.834350 -1.693541 1.901621 -1.128668 -1.743337 -0.481045 -1.182140 2.520893 -0.562401 -0.587346 -5.804834 1.418568 +PE-benchmarks/dfa-based-division.cpp__isDivisibleUtil(int, int*, int (*) [2]) = 0.986997 0.266195 0.981288 -0.923865 -0.896313 0.477591 0.329840 -0.991049 0.251194 1.991273 0.716893 -0.851353 -0.096958 1.611739 -0.372343 -0.604620 0.413732 -0.188897 0.085169 -0.238092 0.160557 0.590733 -0.304118 -0.512864 0.333286 -0.270006 0.210502 0.595624 -0.173118 0.164384 -0.981147 -0.300557 0.240841 1.853121 0.132920 -0.069822 -0.144197 2.005773 -1.704072 1.874016 -2.031813 -1.764879 1.677028 0.266264 0.280838 -1.594824 -0.933211 0.789417 0.124593 -1.213480 0.582159 -0.446951 0.331299 -0.736681 0.295282 1.320385 -1.967517 0.415940 0.317976 -0.728705 -0.985852 -0.227592 0.497912 0.487272 -1.126036 -1.146310 0.484810 0.664570 -0.629504 0.423892 -1.007861 -2.247410 1.581424 0.534074 -0.944477 0.231227 0.226683 -1.862206 1.159044 -0.647444 -1.271879 -0.314813 0.258296 -0.805609 0.735932 0.610920 1.414246 -2.431693 0.573610 -2.280727 1.408248 -1.343923 1.440885 1.467002 -0.844495 0.527347 0.740948 1.367037 1.062974 0.294489 1.704842 1.165288 0.892679 -0.207487 0.897965 1.276439 -1.209835 -1.189242 -1.128973 -1.370750 0.262156 -0.350584 -2.408372 0.171210 -0.948124 0.304347 0.219354 -0.589029 -0.081677 1.866424 -2.769994 -0.649193 0.688772 -0.269146 1.015103 1.447038 -0.173223 0.379515 -0.363750 1.570737 -0.386589 0.003025 -0.298602 0.872149 -1.798189 -1.333445 -1.148652 0.415352 0.720655 -1.582844 -1.750251 -2.526118 -0.142320 1.030099 -0.628399 1.270235 2.798906 -0.715879 -1.556743 1.155690 0.476850 -0.675559 1.665587 0.230897 2.644203 -1.917610 0.813150 -0.700315 0.381690 0.240232 1.494019 -0.107753 -0.787634 0.692600 -0.231771 -1.820385 2.209023 -0.175289 -0.208223 -0.348812 0.285180 -0.406876 -0.612485 1.847507 -1.003653 1.330557 -1.052673 2.506319 -1.417279 -1.048364 0.520299 -1.505146 -0.639648 -1.262374 -0.622575 0.180775 1.875507 -1.427955 -0.802301 -0.342630 -1.024900 -0.075352 1.144210 -1.050049 0.100053 -0.118079 -0.380247 1.614429 1.187002 0.104291 0.099510 -1.533097 0.249900 0.928618 -0.462285 -2.173390 -0.168581 -1.596980 -0.104625 -0.370464 -0.367199 0.973271 -1.252432 -0.935266 0.050201 -0.554650 0.331410 -0.440557 -1.302982 0.538529 -0.502832 0.855084 0.544605 1.812004 1.583872 1.448330 0.759723 -0.381966 0.287271 -1.007316 -0.980011 0.803956 0.585197 0.264233 0.698422 1.755179 0.424061 0.442762 0.793140 0.333575 0.591646 1.485089 0.335381 1.976503 -0.614430 0.409582 0.102950 -0.713591 1.202517 2.424207 -0.751394 -0.486212 0.452555 0.155974 -1.027386 -0.589632 -0.116260 -0.527973 -0.764056 0.453679 0.744153 -0.214136 -0.806410 2.379650 0.385904 -2.718299 1.209263 -0.129358 0.553512 1.522490 -0.657823 0.699751 0.682098 -0.233018 1.211480 0.806686 1.414287 -1.617565 -0.609917 -0.330190 0.996358 1.129105 0.173775 -2.685481 1.059893 0.809584 1.879201 0.458984 1.646818 -1.290951 0.312353 -0.180660 -0.765939 -0.379492 -0.049631 1.167627 -0.639370 0.126265 -2.242264 -0.145939 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.793674 0.557146 0.386286 -0.827958 -0.998739 0.143733 -0.013604 -0.616006 -0.006317 0.839765 0.714046 -0.901680 -0.200302 1.492897 -0.592892 -0.721167 0.050902 -0.530298 -0.206422 -0.239788 -0.022974 0.571433 -0.166808 -0.299205 0.215159 -0.101358 -0.244057 0.397845 0.403035 -0.374604 -0.848537 -0.032048 0.310761 1.325448 0.100652 -0.639577 0.200448 1.634858 -1.004077 0.788859 -1.348555 -0.887204 1.078575 0.204046 -0.073573 -1.362158 -1.063978 0.590787 -0.091292 -0.245002 0.542035 -0.223007 -0.069637 -0.393289 0.228117 1.325914 -1.967896 1.063638 0.355925 -0.040632 -0.294810 -0.152543 0.342760 0.158846 -0.240394 -0.888773 0.372220 0.644503 -0.469160 0.165977 -0.634600 -1.607818 1.550929 0.309557 -0.618568 0.194705 0.041002 -1.381606 0.925069 -1.136982 -0.912869 -0.074123 0.438859 0.162421 0.791855 0.208448 0.653036 -1.895982 0.092932 -1.751399 0.779654 -1.188804 0.897715 1.183650 -0.989683 0.239265 0.331607 0.267296 1.155866 0.565483 1.367106 0.594911 0.637842 -0.155096 0.430270 0.987696 -0.547136 -0.500178 -0.577309 -1.109107 -0.128645 0.199491 -2.114597 0.363747 -0.660624 0.056868 0.144351 -0.370340 0.145291 1.313716 -1.220487 -0.860979 0.367271 -0.197786 0.703614 1.441388 -0.159973 0.277687 -0.702605 1.220478 -0.027750 0.264831 -0.231835 0.461294 -0.947009 -2.052729 -1.374597 0.295508 0.486883 -1.172019 -1.304936 -1.624659 0.057338 0.077390 -0.609937 1.049452 2.117324 -0.613875 -1.202885 1.216232 0.925347 -0.101799 1.580948 -0.033121 2.315510 -1.282915 0.496125 -0.173502 0.038615 -0.070471 0.173989 -0.082027 -0.462605 0.284016 0.155878 -1.596192 1.463659 -0.122024 -0.340010 0.375865 0.197381 -0.209904 -0.703367 1.452883 0.272007 1.143797 -0.159276 1.879405 -0.907963 -1.295782 0.732777 -0.473224 -0.159213 -0.542899 -0.240443 0.240480 1.126086 -0.840255 -0.522453 -0.094182 -0.477616 -0.463616 0.709328 0.154899 0.237647 0.020475 -0.041406 0.584102 1.252036 -0.108222 0.641348 -1.355078 0.296719 0.888225 -0.350556 -2.042275 0.073489 -0.950495 0.002759 0.127890 -0.327468 0.566410 -0.665064 -0.763299 0.106098 -0.482406 0.615419 -0.154193 -0.496657 0.477196 -0.958977 0.558297 0.156995 1.270146 1.369420 1.099582 0.619169 -0.223363 0.283564 -0.573779 -0.035550 0.399064 0.319519 0.278017 0.636145 1.169237 0.203706 0.269841 0.860948 0.262354 0.029817 1.125244 0.413664 1.753447 -0.481589 0.116652 -0.216401 -0.659658 1.114048 2.288264 -0.518513 -0.505554 0.472145 0.307667 -0.360467 -0.970985 -0.108074 -0.340339 -0.891570 0.696222 0.381074 -0.183347 -0.418342 1.693355 0.169270 -1.794587 1.074796 0.106199 0.296392 0.561451 -0.333929 0.185151 0.644067 -0.545075 0.470955 0.787125 1.189631 -1.003041 -0.853223 -0.136778 0.951132 0.220159 0.382088 -1.994572 0.765919 1.185923 1.316676 0.384900 0.959074 -0.907184 -0.495847 0.148442 -0.065301 -0.349029 0.001319 0.651643 -1.186122 0.359462 -0.767808 -0.386617 +PE-benchmarks/dfa-based-division.cpp__main = 0.466854 0.400056 0.374433 -0.928369 -0.415789 0.085563 0.311840 -0.442172 0.133569 0.874624 0.468452 -0.677103 -0.983503 1.049151 -0.338400 -0.859201 0.367711 -0.840391 -0.160698 -0.110097 -0.053110 0.352604 -0.018458 -0.568923 0.372227 -0.037123 -0.087740 0.619266 0.672498 -0.561741 -0.748952 0.027755 0.256840 1.319503 -0.031325 -0.174937 0.092916 1.394058 -0.767773 1.029012 -1.594764 -0.921755 1.312152 0.086073 -0.297821 -1.408789 -0.231734 0.630378 -0.833958 -0.406307 0.290135 -0.285578 0.003921 -0.788844 -0.019063 1.548446 -2.022782 1.128844 0.248307 0.079442 -0.368277 -0.283047 0.508310 0.104137 -0.029316 -0.879725 0.221483 -0.066186 -1.143454 0.270462 -0.764148 -1.051496 1.341816 0.357105 -0.603930 0.299727 -0.227069 -1.050380 0.621265 -1.324748 -0.545321 -0.258539 0.582355 0.212022 0.835664 0.232328 0.321819 -1.764949 -0.336510 -1.398526 0.823619 -1.072982 1.007917 1.052397 -0.736899 0.441965 -0.001027 -0.270979 0.496395 0.149914 1.166418 0.294611 0.885153 -0.298446 0.504861 0.662131 -0.663845 -0.659320 -0.341215 -0.821957 -0.206124 0.106876 -1.695920 0.151122 -1.023821 0.359037 0.603115 -0.342925 -0.232137 0.663530 -1.363043 -0.815818 0.134415 -0.204784 1.023728 1.339837 -0.002746 0.176049 -0.188465 1.119165 0.190515 0.231771 -0.376596 0.492439 -0.277654 -1.553617 -0.861478 -0.051918 0.401410 -0.876656 -1.342324 -1.524600 -0.207750 -0.100452 -0.387731 0.997875 1.795903 -0.217444 -1.183054 0.996159 -0.017362 0.453662 1.316754 -0.018653 1.875965 -1.370854 0.741547 -0.033636 0.408238 0.211774 0.964094 -0.386656 -0.742415 0.146464 -0.059362 -0.918291 0.129044 0.253688 0.045913 -0.082116 -0.207580 -0.589576 -0.919001 1.286262 -0.329183 1.335960 -0.368803 1.728664 -1.078471 -1.329263 0.757527 -0.480546 -0.124549 -0.587556 -0.661339 0.268557 0.794523 -1.081728 -0.626670 -0.379435 0.050383 -0.256982 0.975543 -0.288199 -0.049042 -0.295342 -0.210381 1.066769 0.683038 -0.583702 0.516851 -1.238319 0.251989 0.848898 -0.023839 -1.720525 0.158284 -0.804238 -0.166819 0.839454 -0.230348 0.553851 -0.435829 -0.756497 0.475751 -0.347740 0.443280 -0.422656 -1.039520 0.334403 -0.492630 -0.080950 0.402984 1.384822 0.937478 0.624192 0.020615 -0.299089 0.172992 -0.584652 -0.292286 0.056048 0.030516 0.286207 0.591685 0.811266 0.227149 0.149291 0.924312 0.454185 -0.532770 1.090662 0.499272 1.189229 -0.470933 -0.059018 0.198799 -0.863203 0.837087 1.618277 -0.937580 -0.572501 0.657794 0.411014 -0.086476 -0.909848 -0.393443 -0.579639 -0.650229 1.021436 0.142408 -0.296225 -0.322350 1.750368 0.116918 -1.738871 1.115556 0.052211 0.283203 0.307828 -0.494934 -0.033754 0.760647 -0.807174 0.293450 0.421836 1.008673 -0.730170 -0.467473 -0.107161 0.876646 0.259135 0.018920 -1.720439 -0.123481 0.701077 1.518868 0.925303 1.038733 -0.465903 -0.250027 -0.252839 -0.111013 -0.139957 -0.437711 0.617861 -0.726187 -0.081069 -1.023671 0.046485 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWaysUtil(int, int) = 1.216762 0.364835 1.746334 -2.342512 -0.556723 0.600808 1.578350 -1.742943 0.495494 4.545604 1.542850 -1.394384 -2.528418 2.810508 -0.637073 -2.237003 2.042666 0.425947 0.036067 -0.840148 -0.377960 0.975103 -0.364124 -1.840672 1.639184 -1.041546 0.523103 2.302710 0.592613 0.243723 -1.909002 -0.337822 0.173517 4.603821 -0.250948 0.528520 -0.480242 4.439687 -3.889593 4.627650 -4.809542 -3.762155 4.477151 0.605589 0.030213 -3.090407 -0.799209 1.614591 -1.253515 -3.005947 0.678880 -1.436666 1.283830 -2.722737 0.217139 4.388177 -5.154854 0.233758 0.733265 -1.751285 -2.838353 -0.580305 2.223109 0.703314 -2.695863 -2.898782 1.134221 0.298817 -2.339503 0.855030 -2.834633 -4.912770 2.543119 1.030729 -1.954149 1.096567 -0.102806 -3.786927 2.145241 -0.879744 -1.999263 -1.444214 1.441795 -1.360052 1.901197 1.301986 3.387867 -6.265646 0.227458 -4.805879 3.439055 -2.896518 4.246167 3.701149 -1.949583 1.939464 1.307123 2.327415 0.612795 -0.205557 4.132231 1.657371 2.095000 -1.028465 2.728493 2.529362 -3.531959 -3.660407 -2.561367 -2.660298 0.676886 -1.315200 -4.729448 0.131879 -3.906618 0.274540 1.493341 -1.117805 -0.850249 4.064202 -5.925069 -0.891684 1.305446 -0.847432 3.045191 3.841824 0.311479 0.381644 0.241159 3.725602 -0.791209 -0.210415 -1.424926 2.178141 -1.684155 -2.173368 -1.184905 -0.153075 1.389986 -3.628769 -4.395413 -5.577290 -1.317701 2.252053 -0.908324 3.181158 6.637043 -1.250432 -3.413410 2.357365 -1.138497 0.374895 3.818040 0.796290 6.177509 -5.378472 2.805222 -1.374757 1.991720 1.812212 4.735750 -0.938774 -2.436323 1.748672 -0.387264 -2.317795 3.609222 -0.676367 0.498883 -1.114160 0.626744 -1.177023 -1.785631 4.364462 -3.843116 4.256472 -2.301366 5.677254 -3.924593 -3.262526 1.787211 -3.568528 -1.497944 -3.061041 -1.359480 -0.200611 3.544875 -3.374540 -2.305625 -2.132343 -1.009186 0.440824 3.420229 -2.364971 -0.161087 -1.234384 -1.566417 3.856210 1.850471 -0.679229 0.187756 -3.789884 0.537377 2.488928 -0.666721 -4.681319 0.036582 -3.239257 -0.620289 0.455682 -0.444105 2.582821 -2.415605 -2.066537 0.787809 -0.985752 0.235817 -1.989967 -5.027132 1.291461 -0.844655 0.057064 1.512985 4.752309 3.953917 2.804888 0.197123 -1.134498 0.987546 -2.416083 -3.337029 1.630832 0.129766 1.950460 1.633374 2.732673 0.698436 0.994322 2.356913 0.267998 0.900762 3.879566 1.714135 4.162227 -0.674915 0.099262 1.317848 -2.733727 2.505613 4.554876 -1.229686 -1.041031 2.011383 0.883374 -1.961349 -2.434618 -0.633575 -1.559713 -2.053081 2.749402 1.518728 -0.893577 -2.044395 6.293128 0.762162 -6.918226 3.196648 -0.298599 1.223966 3.059801 -1.693020 1.302704 2.050762 -0.695158 2.092518 1.108006 3.392053 -3.666969 -0.394265 -0.341441 2.761783 2.795330 -0.885908 -7.230502 0.876987 0.983437 4.995198 2.398621 4.512139 -2.000100 1.361134 -1.258371 -2.003961 -0.469822 -1.428843 2.472678 -1.053172 -0.348456 -6.323441 0.941466 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.266151 0.141035 0.042871 -0.464296 -0.152885 0.081664 0.116221 -0.251546 -0.039632 0.125272 0.320735 -0.216098 -0.362616 0.497924 -0.139363 -0.427621 0.180357 -0.126279 -0.121154 0.005962 0.036326 0.183422 -0.067912 -0.270908 0.166335 0.005703 -0.056902 0.193353 0.367264 -0.242065 -0.455715 -0.019490 0.116793 0.582936 0.011147 0.006385 -0.050418 0.573430 -0.298845 0.338253 -0.710030 -0.401825 0.564658 0.069509 -0.127242 -0.892939 -0.382707 0.206226 -0.151931 -0.265475 0.130975 -0.213417 -0.013303 -0.304505 0.024845 0.717683 -0.814930 0.343693 0.189802 0.051719 -0.132715 -0.086653 0.328141 -0.109019 -0.045397 -0.403052 0.130217 0.037870 -0.367616 0.072781 -0.401781 -0.687891 0.639722 0.193023 -0.244884 0.104202 -0.168347 -0.677025 0.276284 -0.314333 -0.243558 -0.091538 0.242315 0.287307 0.287572 0.077240 0.180185 -0.796794 -0.155205 -0.691519 0.283598 -0.453791 0.527661 0.412096 -0.467161 0.110610 0.121283 -0.005515 0.274433 0.152590 0.598265 0.204315 0.273787 -0.264395 0.315197 0.237764 -0.234177 -0.274030 -0.140984 -0.443060 -0.040497 -0.018736 -1.066788 0.080341 -0.514874 -0.128913 0.055643 -0.173566 0.068938 0.292627 -0.570299 -0.308246 0.125006 -0.092249 0.394526 0.695838 0.045524 0.009502 -0.198763 0.460632 0.037428 0.114227 -0.214067 0.218420 -0.170482 -0.950456 -0.309314 -0.021959 0.185352 -0.519476 -0.587719 -0.665292 -0.018242 -0.017871 -0.202061 0.148478 0.803361 -0.201708 -0.561432 0.407174 0.276441 0.120414 0.654568 -0.007683 1.002887 -0.679432 0.411691 0.087679 0.156971 0.055947 -0.131445 -0.192256 -0.303701 0.039487 -0.126022 -0.819876 0.444115 -0.086518 0.029254 0.201699 0.003091 -0.228330 -0.375011 0.568405 0.018241 0.642058 -0.126543 0.645523 -0.506665 -0.511831 0.301148 -0.233243 -0.183146 -0.254403 -0.224958 0.005556 0.432800 -0.428188 -0.231368 -0.171376 -0.015745 -0.098553 0.464382 -0.141699 -0.021157 -0.126054 -0.072793 0.023152 0.351578 -0.203764 0.319270 -0.466514 0.118100 0.482322 -0.027232 -0.866019 0.055267 -0.516313 -0.037625 0.173921 -0.141567 0.284162 -0.086269 -0.352413 0.168864 -0.158499 0.218583 -0.206737 -0.176431 0.104818 -0.393770 -0.018936 0.062960 0.692583 0.488033 0.376867 0.008992 -0.208400 0.276853 -0.305752 -0.235174 0.019700 -0.091459 0.260145 0.269674 0.211672 0.095498 0.118887 0.405814 0.119785 0.046741 0.519695 0.436303 0.635410 0.035008 -0.089844 0.107197 -0.477613 0.366404 0.821064 -0.146187 -0.086220 0.221959 0.176822 -0.131664 -0.522849 -0.095317 -0.114157 -0.648200 0.547629 0.095570 -0.027052 -0.250245 0.843214 0.050169 -0.812755 0.496422 -0.014635 0.150510 0.211279 -0.202150 0.096229 0.326818 -0.177516 0.108390 0.189034 0.557399 -0.385538 -0.307794 -0.073074 0.423159 0.178308 -0.086303 -0.672152 0.349430 0.339670 0.714214 0.327152 0.299964 -0.220672 0.005993 -0.164142 0.004266 -0.026036 -0.193974 0.293776 -0.275403 -0.289628 -0.581571 0.106839 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.299138 0.224208 0.128391 -0.549881 -0.393741 0.045572 0.028419 -0.292985 0.023484 -0.054188 0.420765 -0.548088 -0.373694 0.769836 -0.243818 -0.468037 0.121846 -0.397076 -0.190340 0.077976 0.020424 0.184185 -0.055673 -0.278130 0.096953 0.112461 -0.096061 0.310571 0.606301 -0.401484 -0.617636 0.045821 0.224515 0.726393 0.093150 -0.245557 0.172812 0.839394 -0.304817 0.463114 -0.752704 -0.230230 0.645618 0.044796 -0.265399 -1.012521 -0.589340 0.380137 -0.551138 -0.108333 0.288392 -0.150824 -0.089525 -0.321009 0.034752 0.952544 -1.167671 0.822898 0.259904 0.295869 0.038322 -0.170867 0.165784 -0.040039 0.078769 -0.477614 0.139105 0.057988 -0.541031 0.082489 -0.450338 -0.708004 1.125440 0.148378 -0.376290 0.100168 -0.118501 -0.746590 0.389559 -0.713353 -0.384574 -0.011846 0.266167 0.337692 0.620173 -0.040190 0.000000 -0.966156 -0.310066 -0.919211 0.314320 -0.772566 0.454416 0.605724 -0.739337 0.102582 -0.037400 -0.256172 0.430867 0.407536 0.654096 0.198694 0.339765 -0.279106 0.337498 0.294908 -0.139179 -0.243188 -0.102266 -0.547288 -0.232093 0.174191 -1.354796 0.161205 -0.515051 0.216890 0.085511 -0.095953 0.030029 0.286274 -0.373724 -0.376536 0.056036 -0.106473 0.510022 0.967070 -0.094719 0.136095 -0.373437 0.623966 0.206269 0.208226 -0.224576 0.206233 -0.193651 -1.390706 -0.727062 0.052699 0.307068 -0.449272 -0.797430 -0.787553 0.003989 -0.274227 -0.280554 0.347087 0.948085 -0.148201 -0.644556 0.659427 0.464416 0.309760 0.889769 -0.080645 1.261040 -0.707372 0.399833 0.081141 0.044490 -0.155668 -0.181937 -0.245516 -0.377280 -0.018948 -0.055078 -1.072343 0.534398 0.159688 -0.077637 0.304501 -0.137678 -0.283463 -0.697637 0.892760 0.296015 0.687581 -0.030076 0.982985 -0.497230 -0.804303 0.472675 0.178303 0.065112 -0.216599 -0.330768 0.215660 0.497925 -0.519955 -0.340825 -0.016328 0.093313 -0.251006 0.510449 0.300172 -0.039561 -0.070175 0.020319 0.110997 0.542478 -0.360780 0.526329 -0.716265 0.172199 0.564201 -0.094134 -1.103690 0.158751 -0.497394 -0.047684 0.304359 -0.147140 0.228093 -0.259362 -0.531128 0.224289 -0.218911 0.433374 -0.077934 -0.351010 0.199365 -0.470730 -0.009944 0.201106 0.740819 0.617415 0.404705 0.142937 -0.169542 0.134011 -0.221295 -0.039929 -0.046987 0.005811 0.199994 0.322995 0.435709 0.118641 0.044010 0.421007 0.224824 -0.215536 0.591685 0.548390 0.759467 -0.058160 -0.070726 0.009939 -0.525832 0.594584 1.155289 -0.489242 -0.278384 0.276881 0.314025 -0.005993 -0.760682 -0.245633 -0.202760 -0.631245 0.634440 -0.096434 -0.074292 -0.149215 0.940397 0.006519 -0.870751 0.559016 0.064887 0.140289 0.117392 -0.220515 -0.007817 0.403559 -0.470582 0.166244 0.279832 0.605439 -0.306551 -0.523598 -0.083329 0.436592 0.037452 0.111820 -0.775504 0.204073 0.563241 0.846115 0.474593 0.275383 -0.303239 -0.263765 -0.074720 0.055036 -0.060177 -0.255298 0.341430 -0.604356 -0.134264 -0.361926 -0.206651 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__maxSumIS(int*, int) = 3.275248 0.909973 3.694812 -3.424401 -0.828730 1.361686 2.555754 -3.880243 0.692361 12.060300 2.491013 -2.203790 -2.890684 5.327966 -1.663603 -3.384924 2.992988 1.294063 0.208433 -2.278984 -0.693277 1.962523 -0.840655 -4.343250 3.055372 -2.527388 1.846344 3.765238 -2.158030 2.442863 -2.543966 -1.186213 0.627966 8.717426 -0.336297 1.479410 -1.793208 7.486673 -9.425398 8.962915 -9.613193 -9.752362 9.185456 1.282992 1.512560 -3.772820 -0.321206 3.005134 0.168556 -6.782039 0.255435 -2.697134 2.874136 -5.626934 -0.223471 6.617945 -9.095875 -0.972337 0.931998 -5.482545 -7.573813 -1.055091 5.018394 2.312918 -6.380149 -5.670445 1.886910 1.746369 -3.115101 1.842428 -5.223613 -9.725001 3.482902 1.483299 -3.182421 1.820341 -0.557974 -6.606675 4.369944 -1.068889 -3.618405 -3.355521 2.579335 -3.632695 1.879498 4.376242 8.386212 -11.880896 2.399023 -8.942422 7.493982 -4.007276 8.136602 6.482074 -2.952748 3.826132 3.255834 7.752937 1.949276 -1.123080 7.472287 3.758199 4.198959 -1.388647 4.879092 6.370842 -7.916526 -7.565520 -5.859443 -5.270723 2.635271 -3.329143 -7.822081 0.251899 -6.792503 -0.241290 2.653362 -3.219223 -1.496974 9.548274 -14.568410 -1.799656 3.038238 -1.339430 5.401997 4.997320 0.757648 1.006444 1.272425 6.334645 -2.123035 -1.788990 -1.705327 4.509499 -5.604036 -2.100817 -1.401523 0.855828 2.410952 -7.798064 -7.731894 -12.153472 -2.224860 7.036269 -1.948776 6.517466 12.549539 -2.712299 -6.803235 3.384838 -2.370499 -2.002735 6.904026 1.948097 11.178018 -10.391501 5.147303 -2.543100 3.936388 4.820722 10.908988 -1.691296 -4.775200 4.621892 -0.702228 -3.407234 7.225201 -1.738178 1.123720 -3.886470 2.185110 -2.004862 -0.807381 7.298440 -9.323498 7.380530 -5.902756 10.433277 -8.140800 -4.851398 2.661195 -11.344700 -4.488574 -6.184229 -2.081750 -1.127046 7.723126 -6.962608 -4.041030 -4.189000 -3.413367 1.263537 7.036262 -7.651488 0.000000 -2.253793 -3.867793 8.804896 2.755369 -0.614447 -0.844333 -6.285159 0.581044 4.917297 -1.117526 -9.155203 -1.429766 -6.744678 -1.046984 -0.133636 -0.663020 5.677852 -5.153425 -2.640339 1.547456 -2.137719 -0.637160 -4.423827 -8.177020 2.543788 -1.653016 1.920931 2.410239 9.573415 6.952185 6.049605 0.424151 -1.711824 1.771020 -5.971644 -6.784766 4.604302 1.098222 3.052802 3.378345 5.999952 1.026050 2.505180 4.681983 0.395882 2.286960 7.698678 1.575972 7.674026 -2.895318 1.409835 2.385465 -3.881080 4.486187 7.876894 -1.965508 -2.436702 3.336561 -0.252043 -4.664641 -1.399292 -0.672597 -2.696196 -3.139180 3.737957 4.964174 -1.446094 -4.329358 12.100739 1.995388 -13.405727 6.220890 -0.547997 2.550258 7.028540 -4.146870 3.333717 3.441206 0.938547 4.269501 2.679247 6.579601 -8.319356 0.095870 -0.422419 5.944553 7.146748 -1.827786 -14.731800 2.862291 1.711265 8.724343 2.770318 9.716138 -4.997683 3.672674 -2.607266 -3.902756 -0.575103 -1.835488 4.880690 -0.676361 0.409680 -13.032358 2.507673 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.436468 0.369980 0.243591 -0.510359 -0.948182 0.393409 -0.908856 -0.543525 0.018298 -0.174949 0.432853 -0.577064 -0.525702 0.754523 -0.601809 -0.873755 -0.323342 -0.341741 -0.033539 -0.401244 -0.004747 0.181779 -0.140616 0.089168 -0.163942 -0.121452 -0.170229 0.126140 1.216825 -0.403597 -0.761168 0.041857 0.052903 0.847377 0.321169 -0.391087 0.548090 1.230124 0.487901 -0.102063 -0.816700 -0.577708 0.253172 0.174259 -0.195873 -0.655221 -0.537188 0.364380 -1.422864 0.679506 0.620858 -0.262158 -0.242508 0.179868 0.261039 0.676680 -1.660840 1.612935 0.016087 0.432546 0.255812 -0.213204 0.078417 0.063602 0.675133 -0.414607 0.309239 0.852900 -0.722724 0.110293 -0.211874 -0.766272 1.481761 0.176572 -0.624424 -0.057185 0.288825 -0.484851 0.442303 -1.159557 -0.863318 0.143254 0.314303 0.293170 0.964591 0.126530 -0.072310 -1.139081 -0.010910 -1.260078 0.326352 -0.721503 0.506021 0.692257 -1.248496 -0.100380 0.289246 -0.315157 0.871006 0.333122 0.911257 0.055820 0.054882 0.041692 0.113358 0.088386 0.146501 0.251351 -0.044059 -0.848143 -0.607969 0.245711 -1.682492 0.057354 -0.435527 0.771123 -0.097262 0.057921 -0.026263 -0.048147 -0.804619 -1.083288 -0.252356 -0.074986 0.875637 0.851537 -0.263195 0.556723 -0.313901 1.055047 -0.150993 -0.063488 -0.287750 0.071896 0.182116 -1.584159 -1.966237 0.368448 0.638514 -0.411823 -0.982448 -0.543943 -0.148246 -0.459063 -0.179545 0.981817 1.328947 -0.283135 -0.782242 1.068883 -0.115271 0.453778 1.734431 -0.051366 1.291267 -0.552542 0.201103 -0.105565 -0.207588 -0.529046 -1.280968 -0.028814 -0.003512 -0.011408 0.454487 0.021575 -0.085222 -0.115661 -0.597199 -0.373012 -0.098225 -0.317856 -0.561314 0.875174 0.490920 0.560610 0.498277 1.239890 -0.571884 -1.394227 0.471388 0.010084 0.204196 0.337095 -0.289091 0.043354 0.549688 -0.833833 -0.385869 0.128443 0.132100 -0.501098 0.196614 1.628543 0.197744 0.290448 0.354385 0.478117 1.247747 0.022284 0.522176 -0.917145 0.139448 0.724952 -0.300607 -1.040201 0.290085 -0.572721 0.102120 0.640537 -0.201047 0.171673 -0.246844 -0.620379 -0.406239 -0.223389 1.155520 0.422994 -0.180840 0.381759 -0.664506 -0.018490 0.322472 0.521625 0.868378 0.667669 0.718107 -0.132774 0.371094 -0.214395 1.150669 -0.180041 0.570345 0.386985 0.298254 0.646373 0.218305 0.083551 0.389413 0.648145 -0.277063 0.660463 0.313419 1.356434 -0.649443 0.286099 -0.622817 -0.354160 0.672997 1.827365 -1.121461 0.135225 0.270281 0.592575 0.512046 -1.393688 -0.132685 -0.383783 -0.358298 0.246919 0.002396 -0.037085 -0.251511 0.850347 0.151761 -0.734818 0.919836 0.102623 -0.062710 -0.029945 -0.203278 -0.629992 0.321558 -1.188292 0.265875 0.668136 0.601133 -0.372337 -0.401413 -0.198593 0.801476 -0.631938 0.474830 -0.105437 0.390189 0.996275 0.788984 0.806016 -0.155728 -0.524986 -1.236194 0.240380 -0.344134 -0.315678 0.172280 0.406430 -0.842799 0.323619 0.423961 -1.109279 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp___GLOBAL__sub_I_maximum_sum_increasing_subsequence.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/eulerian-path-and-circuit.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::DFSUtil(int, bool*) = 1.091937 0.443205 1.523443 -1.498929 -2.355243 1.175863 -1.699739 -1.758729 0.273916 2.734215 1.278950 -1.725844 -1.015330 3.303707 -1.261320 -2.317407 -0.198088 0.053868 0.280504 -1.191920 -0.283426 1.053386 -0.606723 -0.185707 0.342457 -0.881443 -0.073913 0.859612 1.195617 0.005571 -1.713683 -0.405839 -0.281746 3.471274 0.538863 -0.165391 0.776444 4.505116 -1.592141 2.763682 -3.348104 -3.493889 2.124270 0.630701 0.179839 -0.532530 -1.198353 1.497067 -2.725198 -0.325455 1.771034 -0.776082 0.157636 -0.477231 1.007911 1.894726 -5.020524 2.509202 0.237682 -0.688391 -1.245217 -0.615101 0.783657 0.893198 -0.779600 -1.735160 1.006581 2.380370 -1.569816 0.134131 -1.072512 -3.698957 3.126158 0.791672 -1.866327 0.417873 1.158216 -1.774792 2.129859 -2.446854 -3.141840 -0.453514 0.751428 -1.590199 2.446118 1.625841 2.382513 -4.876593 1.588770 -4.597274 2.574885 -2.132963 2.488124 3.255192 -2.924771 0.705488 1.806072 2.037719 2.533418 0.299494 3.309053 0.999392 0.324217 0.547509 1.418289 1.896696 -1.881779 -1.155319 -2.016729 -3.118008 -0.244008 -0.744958 -3.835672 0.271064 -1.646491 1.811602 0.301996 -0.100714 -0.632872 1.949078 -5.037789 -2.084586 0.251307 -0.464006 2.691095 2.478210 -0.664505 1.327261 -0.455141 3.511492 -1.623072 -0.480938 -0.785919 1.289692 -1.107094 -1.947272 -4.355729 1.170026 1.759480 -2.541997 -3.360772 -4.191257 -0.716977 1.360866 -0.919134 4.537601 5.857537 -1.720508 -2.714580 3.123422 -0.842535 0.364160 4.657286 0.440248 4.496319 -2.801686 0.767945 -1.363412 -0.138056 -0.093787 0.258414 0.432999 -0.654173 1.422240 0.978805 0.010219 2.320784 -0.692395 -1.517308 -2.759873 0.935228 -1.022839 -1.012653 3.364976 -1.711871 1.982781 -0.175368 4.804176 -2.512152 -3.352641 1.571673 -3.366228 -0.683332 -1.150221 -1.163858 -0.431867 2.786853 -3.140255 -1.481190 -0.871605 -1.001878 -1.006426 1.106273 1.742095 0.675969 0.509612 0.137440 3.624870 3.578923 0.780907 0.310105 -3.480851 0.310289 2.174762 -1.343358 -3.337407 0.323297 -2.455989 -0.012876 1.003333 -0.530537 1.403322 -2.446154 -1.623622 -1.043238 -0.761531 2.220998 0.304594 -2.922695 1.271967 -1.095583 1.086076 1.904911 2.636558 3.281814 3.188329 2.334616 -0.082409 0.641535 -1.221506 0.909526 0.859315 1.569100 1.636559 1.421883 2.755125 1.095093 0.826487 1.681940 1.330168 0.165892 2.999868 0.393887 4.746218 -1.495323 1.014106 -0.887718 -0.906349 2.341440 5.336954 -2.949045 0.261683 1.485085 0.825759 -0.335934 -2.619932 0.159949 -1.555821 -0.764960 0.600251 1.083437 -0.241140 -1.495882 3.944258 0.480125 -4.472266 2.877641 0.018800 0.731229 1.884370 -0.783760 -0.358714 1.033075 -2.660597 2.209669 2.352723 2.487332 -2.745643 -0.062787 -0.479703 2.720332 1.098823 1.194792 -3.359307 1.773715 2.152007 2.803691 1.794652 1.804015 -2.409652 -1.911360 0.253594 -2.380633 -1.017310 0.262544 1.835005 -1.147168 1.414964 -2.095158 -2.502471 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 1.126326 0.311371 3.006617 -3.454740 -0.889006 1.006852 2.016477 -1.857040 1.076086 6.566582 1.483701 -1.451638 -4.698429 3.522483 -0.626209 -4.024089 2.483009 -0.344520 0.365324 -1.795198 -0.586205 1.392854 -0.285639 -2.469504 2.471802 -2.253171 0.665488 3.710327 1.141070 0.511250 -1.918124 -0.631682 -0.050606 6.617539 -0.642672 1.506511 -0.399624 6.980356 -4.802060 6.870503 -6.679914 -6.774550 6.645664 0.734193 -0.412740 -3.136477 0.408047 2.159872 -3.410980 -3.421493 1.257714 -1.585498 1.828392 -3.819791 0.517877 5.640120 -7.927555 0.957207 0.091470 -2.755831 -4.021774 -1.381878 2.115717 1.202466 -3.219626 -3.757592 1.431030 0.466879 -4.198982 1.393845 -3.122504 -5.690856 4.375171 2.031292 -2.633636 1.946097 0.806275 -4.327206 2.884329 -1.916021 -3.155879 -2.333003 2.104268 -2.089968 3.347666 2.242721 4.749169 -8.864496 0.154058 -6.612500 5.425047 -4.065415 5.947648 5.453946 -2.605768 3.505423 2.061832 3.098524 0.371352 -1.493544 5.970555 2.042846 3.474813 -0.347023 3.583147 3.385268 -5.271442 -5.135852 -3.820086 -3.580301 0.673344 -2.313920 -6.164359 -0.304860 -5.028593 0.979454 2.968542 -1.359528 -2.080703 4.891880 -9.405028 -1.568832 1.669762 -1.239526 4.706144 4.302193 0.296399 0.607686 1.279541 5.822507 -1.603963 -0.253598 -2.238436 3.051430 -1.366585 -1.507967 -2.134627 -0.385524 1.775494 -4.724567 -6.412169 -7.500053 -2.433079 3.901314 -0.910761 5.407488 9.888610 -1.494709 -4.827760 3.741333 -3.098460 1.572924 5.217464 1.506561 7.238007 -6.840296 3.344139 -2.503829 2.779436 2.877537 8.221608 -0.755100 -3.299159 2.790497 0.093049 -0.406002 2.763223 -1.386329 0.415642 -3.825666 0.306233 -2.781180 -2.457712 6.149039 -5.910859 6.164538 -3.207985 8.291357 -5.645815 -5.333709 2.480102 -6.101908 -2.012429 -4.978007 -2.077811 -0.153746 4.181069 -5.665742 -3.702694 -3.498326 -1.071903 0.504577 4.205374 -3.591113 -0.218818 -1.717852 -1.678670 7.087565 2.877929 -0.612561 -0.533094 -5.771284 0.689095 3.075797 -0.881199 -5.948719 0.449706 -3.520083 -0.961148 2.060637 -0.318674 3.233407 -3.090990 -2.672670 0.778167 -1.450140 0.332308 -2.485184 -8.376173 1.659595 0.247994 -0.176229 2.713069 6.181191 5.911828 3.444290 0.401800 -1.030833 1.203345 -3.125758 -3.854155 2.122088 0.719576 2.753541 2.256777 4.618563 1.429724 1.174346 4.038970 1.992910 0.269987 5.176840 1.781608 6.217447 -1.436379 -0.120635 1.725338 -3.155438 3.340152 6.382144 -2.528597 -0.937177 3.569705 1.851104 -1.779400 -3.295650 -0.970000 -2.925646 -1.370476 4.043403 2.014402 -1.823045 -2.384916 8.742969 1.131333 -9.736258 4.557616 -0.142823 1.810201 3.672597 -2.494663 0.699630 3.309992 -2.475292 3.525220 1.502343 4.340000 -5.166767 0.408944 -0.495288 3.854228 3.676515 -0.796955 -9.075593 -0.254274 1.084023 6.936096 4.237465 6.604268 -2.445426 0.789751 -1.800721 -3.641101 -1.053839 -1.511008 3.092597 -1.297526 0.370220 -8.466341 0.295836 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::size() const = 0.344739 -0.119589 0.287579 -0.238423 -0.370000 0.011015 -0.249866 0.239799 0.113045 0.131812 0.113164 -0.229897 -0.405261 0.554779 -0.159275 -0.522022 0.189217 -0.187208 0.108527 -0.087196 0.261135 0.182250 0.422673 -0.042684 0.056136 -0.066686 -0.354481 0.187618 0.832939 -0.339688 -0.181662 0.183205 0.068043 0.041504 -0.340160 -0.345020 0.076320 0.512110 0.145553 0.210369 -0.297727 -0.115814 0.356833 0.018716 0.018693 -0.408690 -0.444484 0.344131 -0.325352 -0.321326 0.192193 0.181280 0.010997 -0.239126 -0.185446 0.365011 -0.795030 0.497834 -0.206318 0.286660 0.350102 0.207825 -0.003254 0.152114 0.390412 -0.260285 0.014548 0.058677 -0.700633 -0.200931 0.025229 0.105913 0.705603 -0.031595 -0.098566 0.142916 0.448038 -0.013332 0.360434 -0.724828 -0.330859 0.007396 -0.220683 0.043859 0.414866 -0.155813 0.079892 -0.592890 0.257956 -0.419827 0.586052 -0.437874 0.106519 0.340667 -0.407745 0.161504 0.175829 -0.101018 0.489074 0.257036 0.664851 0.204083 0.225112 0.143555 0.021679 -0.082503 -0.133816 0.169924 -0.195248 -0.369354 -0.128493 -0.068481 -0.705895 0.139842 0.189924 0.294750 0.523952 -0.166132 0.076087 -0.045093 -0.373379 0.018381 0.143621 -0.023797 0.000349 0.393705 -0.265100 -0.045068 -0.176042 0.637641 -0.231309 0.098202 0.477364 0.056445 0.076960 -0.651432 -0.084937 0.187654 -0.023003 -0.103008 -0.300413 -0.415775 0.300978 -0.303567 -0.202928 0.383260 0.591027 0.140920 -0.115239 0.279692 0.109225 0.188261 0.445327 -0.176573 0.691813 -0.210865 -0.367694 0.030309 -0.152890 0.215680 -0.134902 0.183746 0.145686 0.091412 0.122566 -0.431735 -0.022737 -0.209924 -0.142199 0.007630 0.023049 -0.255378 -0.221092 0.199719 0.323488 0.164495 0.309060 0.628629 0.252879 -0.538725 0.371802 0.038193 -0.011672 -0.026113 -0.076864 0.056462 -0.081446 -0.367392 -0.133749 -0.324978 -0.103070 -0.134337 0.055837 0.112355 0.410477 0.279976 0.155832 0.252512 0.168102 0.135986 0.201435 -0.688987 -0.087515 0.215493 -0.179270 -0.526606 0.160475 -0.242798 0.291441 0.527649 -0.204682 0.057194 -0.084377 -0.528791 -0.202344 -0.192880 0.170052 -0.023236 -0.033228 -0.257050 0.131887 0.302172 0.100587 0.413345 0.442593 0.072850 0.131332 0.316156 0.125877 0.279028 0.184968 -0.165804 -0.144877 0.039722 0.160066 0.089350 0.054493 0.071159 0.574884 0.258149 -0.322111 0.189500 0.073487 0.384695 -0.100448 -0.212741 -0.222792 -0.117059 0.349680 0.682760 -0.179569 0.034734 0.266879 0.217137 0.306482 -0.343506 0.067897 -0.252960 0.011068 0.387882 0.031615 0.243482 -0.034812 -0.034935 0.080062 -0.610708 0.626151 -0.112282 0.144788 0.298253 0.067329 0.029216 -0.073851 -0.577897 -0.264804 0.308387 0.197731 -0.193766 -0.079831 -0.058402 0.355071 -0.216419 0.391094 -0.443289 0.020648 0.433229 0.199337 0.044482 0.026100 -0.254060 -0.776057 0.062242 -0.126072 -0.182495 -0.047598 -0.246697 -0.459455 -0.104513 0.165773 -0.089137 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isEulerian() = 0.811831 0.380253 1.390229 -1.979225 -0.237713 0.528271 1.746090 -0.965186 0.547429 3.485976 0.703963 -0.363351 -2.976946 0.821696 -0.041950 -1.890188 1.643937 -0.782829 0.158952 -0.858917 -0.288913 0.511605 -0.106909 -1.601586 1.409660 -1.176126 0.347293 2.073757 0.669079 0.086119 -1.094268 -0.320341 0.190557 3.400445 -0.342473 0.651292 -0.424398 3.365445 -2.225133 2.854550 -3.498076 -3.569938 3.643742 0.265287 -0.105422 -2.218376 0.722194 1.060843 -1.661906 -1.892080 0.402852 -1.031451 1.093430 -2.203454 -0.015170 3.231727 -3.719582 0.400111 0.017425 -1.376737 -2.077622 -0.807211 1.139160 0.393789 -1.182644 -2.076806 0.741700 -0.299955 -2.477620 0.868870 -1.989997 -2.620943 1.926096 1.325957 -1.156217 0.951128 0.025537 -2.497112 1.151107 -0.857274 -1.302121 -1.214148 1.163991 -0.659051 1.582830 0.878856 2.076743 -4.455116 -0.564882 -3.250225 2.528990 -1.945599 3.278529 2.528257 -0.687372 1.849028 0.855905 0.890759 -0.442388 -0.968802 3.178790 0.912513 2.289608 -0.446305 1.867712 1.456416 -2.606604 -2.685937 -1.632553 -1.456419 0.286386 -0.856564 -3.151337 -0.176229 -2.981047 0.233398 1.709851 -0.894592 -1.157199 2.383920 -4.767566 -1.215460 0.822684 -0.692890 2.632549 2.193629 0.398014 0.151705 0.975687 2.851740 -0.474583 0.033260 -1.353606 1.608403 -0.315061 -1.278403 -0.594172 -0.460695 0.985017 -2.446212 -3.392191 -3.207827 -1.360683 1.599653 -0.383752 1.848251 4.824465 -0.564754 -2.237379 1.703223 -2.097669 0.894385 2.331777 0.760465 3.554365 -3.745644 2.088291 -0.925973 1.756740 1.518216 4.686039 -0.781827 -1.954652 1.141483 -0.095818 0.156242 0.207055 -0.567475 0.580242 -1.283991 -0.278494 -1.467478 -1.449681 2.845217 -2.830668 3.518059 -1.560282 4.014558 -3.077119 -2.687466 1.265602 -1.704539 -0.967184 -2.630705 -1.082404 0.188737 1.851246 -2.810003 -1.995136 -1.701032 -0.303978 0.457934 2.574541 -2.254178 -0.327310 -1.115268 -1.111626 2.934250 1.074191 -0.704055 -0.263611 -2.747944 0.528587 1.314580 -0.221565 -2.883701 0.065947 -1.715553 -0.586536 1.521446 -0.180763 1.844125 -0.797739 -1.410621 0.913807 -0.720794 -0.118559 -1.447204 -3.621079 0.774843 0.482684 -0.684426 1.065993 3.396716 2.567362 1.489106 -0.303577 -0.865111 0.677834 -1.518610 -2.442968 0.737215 0.032178 1.396969 1.104512 2.361976 0.670038 0.645989 2.227819 0.867345 0.102929 2.636401 0.865400 2.887172 -0.999364 -0.305779 1.159389 -2.044515 1.521004 2.770754 -1.182020 -0.945964 1.748547 0.994090 -0.984401 -1.552044 -0.618846 -1.461792 -0.741624 2.117489 1.270259 -0.939705 -1.332317 4.677813 0.541442 -5.071031 2.310520 -0.135510 1.004686 1.887638 -1.432234 0.442749 1.780212 -0.912285 1.624779 0.523519 2.129110 -2.504949 -0.042166 -0.183167 1.882497 1.136060 -1.044345 -4.543500 -0.828768 0.235794 3.850765 2.593098 3.484990 -1.038710 0.857139 -1.120822 -1.658382 -0.311156 -0.867150 1.740869 -0.923671 -0.216097 -4.634200 1.163653 +PE-benchmarks/eulerian-path-and-circuit.cpp__test(Graph&) = 0.355958 0.543855 0.648767 -0.757078 -0.581583 0.235527 0.177799 -0.340073 0.187027 1.578027 0.126045 -0.240097 -1.598666 0.632535 -0.385768 -1.165137 0.126352 -0.996932 0.071406 -0.590872 -0.185084 0.440163 0.028664 -0.179280 0.455319 -0.352668 -0.187322 0.535708 0.571223 -0.572819 -0.349112 -0.054978 -0.006109 1.226905 -0.216246 0.146144 0.093115 1.511067 -0.384753 0.874464 -1.790787 -1.639213 1.033371 0.113148 -0.003860 -0.888288 0.694624 0.610544 -1.194521 -0.145036 0.396575 -0.175506 -0.070144 -0.576525 0.244234 1.068808 -2.228967 1.311474 -0.125733 -0.309665 -0.497695 -0.190481 0.369931 0.194657 0.386544 -0.770202 0.150408 0.182617 -1.376832 0.404238 -0.335074 -0.666046 0.913821 0.432753 -0.640202 0.431940 0.223854 -0.337212 0.606297 -1.821467 -0.700676 -0.373169 0.696135 -0.002054 0.739695 0.662165 0.391797 -1.728203 -0.003128 -1.178417 1.094136 -0.711287 1.036827 0.991461 -0.236747 0.630891 0.363242 -0.520450 0.499467 -0.446441 1.242979 0.087672 1.055680 0.299232 0.096973 0.516485 -0.913443 -0.526848 -0.589623 -0.874016 -0.168640 0.050135 -0.903489 -0.097808 -0.716866 0.797556 1.050462 -0.349626 -0.376957 0.322086 -2.194026 -1.131602 0.112464 -0.178995 1.235781 0.829632 0.013331 0.267374 0.270554 1.330053 -0.367007 0.147400 -0.311185 0.486702 0.310727 -0.756224 -1.107478 -0.092175 0.304018 -0.750122 -1.125615 -1.316549 -0.374226 0.208552 -0.238178 1.460383 2.106537 -0.345843 -1.146430 1.088180 -1.062848 0.536026 1.206931 0.147521 1.254834 -1.080274 0.357610 -0.332483 0.384826 0.483984 1.619123 0.056980 -0.544619 0.319804 0.442540 0.590749 -1.237902 -0.065909 -0.193596 -0.970859 -0.147412 -0.697548 -0.396065 0.761254 -0.761612 1.285492 -0.255358 1.656168 -1.118443 -1.480545 0.563601 -1.243791 -0.158951 -0.495717 -0.721902 0.181480 0.442499 -1.424667 -0.540302 -0.712336 -0.128672 -0.312695 0.578832 -0.497117 0.159183 -0.175018 -0.067580 1.996563 0.840175 -0.130079 0.026312 -1.335530 0.195928 0.387381 0.020903 -1.365399 0.211005 -0.587137 -0.136067 1.516251 -0.262123 0.481513 -0.070423 -0.507944 0.162731 -0.478307 0.425873 -0.320122 -0.920136 0.164286 -0.081622 -0.035004 0.491387 1.060626 0.952654 0.669224 0.241673 -0.026304 0.221837 -0.552383 0.363754 0.044088 0.279503 0.317933 0.575365 0.695282 0.425267 0.149816 1.089831 0.766386 -0.736142 1.100099 -0.157225 1.378591 -1.170768 0.095257 0.006357 -0.474131 0.546354 1.307539 -1.409556 -0.182909 0.827161 0.477859 0.250221 -0.589426 -0.168411 -0.919352 -0.026447 0.846370 0.528452 -0.452104 -0.302019 1.496266 0.150766 -1.648359 1.288642 -0.026839 0.230314 0.149919 -0.318611 -0.502315 0.725689 -1.291929 0.256641 0.547360 0.892587 -0.933525 0.001374 -0.130264 1.044161 0.003460 0.220726 -1.611568 -0.816189 0.588656 1.281449 0.985912 1.165173 -0.468657 -0.815613 -0.044782 -0.564164 -0.416817 -0.062515 0.519959 -0.335671 0.282252 -0.763754 -0.146177 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = 3.290141 0.351466 4.466312 -2.038703 0.623233 0.006122 -5.503710 3.384760 2.630252 0.450846 -2.483450 -0.130344 -6.218358 3.841074 -6.130283 -4.396048 3.816497 -0.561755 6.181933 -2.949166 2.400608 1.463489 6.095758 0.544211 3.406393 -3.404779 -4.564222 3.668904 12.410460 -2.612421 -0.473909 2.683524 2.419211 3.152224 -4.555964 -4.500361 3.745176 6.099263 3.714609 1.190320 2.152439 0.141839 3.911274 2.189966 -3.191448 -2.752490 -3.872595 -0.172742 -9.480653 0.195694 1.498611 0.393585 -0.820124 -1.716332 -1.835999 5.898686 -11.411313 4.445709 -4.597818 5.290676 5.743060 1.861346 -1.436425 -1.950306 8.088736 -1.633411 -0.717928 1.062136 -10.424910 -0.235342 2.278913 5.158606 7.408465 -0.209073 -2.099718 3.806373 8.099752 -0.889027 0.373759 -9.833686 -1.368196 -0.560743 -1.341414 2.534657 6.517713 -1.508795 -0.737045 -3.522934 -0.209254 0.535572 5.474568 -4.900751 2.634389 3.624146 -6.490341 3.417298 1.682067 -2.053686 0.773262 0.040283 10.319979 3.520355 -1.536014 0.813744 0.251390 -1.420135 0.605848 2.435067 -1.797071 -0.589971 -3.343374 -1.305968 -7.612354 -2.886214 -1.599273 3.304350 6.861343 -2.931893 -3.377118 -0.913916 -4.630471 -2.735295 -1.474742 -0.232927 -1.313166 3.301787 0.531445 -3.347812 2.397959 8.401599 -1.793597 -4.411874 4.267868 -1.149188 3.602846 -7.066967 -1.575258 -4.191252 -2.391050 -1.474966 -4.066839 -3.204723 0.760381 -5.066673 1.362130 3.347127 7.977243 5.346221 0.582781 4.019485 -2.186222 4.591059 8.050298 0.371616 4.667064 -2.360460 -4.699458 -1.604855 -1.118021 3.872355 0.053223 1.505828 4.478663 -0.923849 4.816620 2.149065 -9.646128 -4.247217 1.237485 -1.474018 -3.780633 -2.914852 -3.285244 3.307069 1.656527 2.199965 -0.197251 6.932362 5.324314 -13.059283 1.161951 0.226721 0.989360 -1.072481 0.482383 -1.900588 -2.619962 -5.995007 -2.884726 -1.630527 3.967523 -0.192079 0.056034 1.737489 4.643937 -1.296414 0.001850 4.798911 0.590496 -1.017214 5.363533 -7.687312 -3.221205 2.330990 -1.627495 -7.765065 6.255928 -0.537077 2.277826 5.492782 -4.777132 -2.882938 -2.104530 -5.218975 -3.241276 -3.583130 1.089216 -2.568511 -3.791782 -0.005672 1.394627 -1.866594 4.431745 2.260712 7.874046 -1.988074 -2.412168 2.789110 2.765172 0.002857 1.794063 0.133007 -0.409284 0.772262 -0.305691 2.778152 -0.184289 0.524129 2.441474 5.235378 -2.225716 2.203121 1.308323 3.255353 1.742096 -2.510508 -1.838958 -4.028573 2.367009 6.488183 -1.182204 0.461996 4.014842 3.260505 7.105054 -8.475295 2.414344 -2.752572 0.363325 6.628499 -1.966660 0.853931 1.287909 -1.987732 0.011843 -5.493838 5.466445 -0.517848 -4.002922 -1.508734 0.321885 -2.488797 1.195592 -7.445997 -3.615500 -0.919086 2.504822 -2.491084 4.072908 -0.921244 3.434384 -3.007945 2.706323 -7.249190 -3.311781 0.963862 1.649664 4.836496 2.086381 1.104205 -9.517307 0.952411 0.366046 -4.970288 -2.972329 -0.286270 -5.717959 1.219338 5.483291 -0.825032 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::~Graph() = 0.401350 0.055264 0.794315 -0.674420 -0.673711 0.604123 -0.399688 -0.427309 0.467364 0.997564 0.178740 0.051593 -0.990427 0.297625 -0.237999 -1.356296 0.131195 -0.414826 0.215363 -0.527996 -0.006818 0.232121 -0.069048 0.036915 0.154695 -0.622413 0.078106 0.472675 0.602294 -0.119880 -0.667174 -0.090939 -0.375301 1.261816 -0.085868 0.292365 0.405763 1.758358 0.382361 0.729119 -1.168136 -1.637264 0.591844 0.120845 -0.110331 0.025699 0.554472 0.305485 -1.141454 -0.078557 0.713443 -0.254787 0.134795 -0.188923 0.430197 0.545881 -1.821625 0.590962 -0.324576 -0.177153 -0.488999 -0.285897 0.331099 0.607575 -0.085600 -0.506810 0.754793 0.750606 -1.089434 0.350194 -0.056846 -1.201388 1.532559 0.601537 -0.756619 0.297335 0.988158 -0.613196 0.783315 -0.675135 -1.116049 -0.216363 0.331887 -0.673541 1.180807 0.203538 0.926176 -1.827870 0.740042 -1.396773 1.184665 -0.759542 1.027415 1.134633 -0.780492 0.458980 0.751899 1.004508 0.378238 -0.687426 1.456216 0.363814 0.515990 0.241430 0.457097 0.142811 -0.769266 -0.537039 -0.829864 -1.054798 -0.135084 -0.552099 -1.685411 -0.105092 -0.504276 1.008193 0.621804 -0.017660 -0.390865 0.619492 -2.441433 -0.944635 0.076764 -0.175019 1.118723 0.707036 -0.356584 0.522513 0.467385 1.691751 -0.759605 -0.288310 -0.304114 0.363504 0.047698 0.434665 -1.383720 0.176677 0.688583 -0.784909 -1.257258 -1.012994 -0.608189 0.873030 0.073561 2.019609 2.369474 -0.337266 -1.019256 1.080374 -1.184587 0.337231 1.562850 0.270496 1.056888 -1.057389 0.311595 -0.886685 0.500233 0.151597 0.675494 0.383750 -0.011839 0.647383 0.409953 1.344347 0.127445 -0.551878 -0.380296 -1.069524 -0.023124 -0.725560 -0.474456 1.089320 -0.708221 1.141067 0.249444 1.820312 -1.076877 -1.324376 0.383229 -1.152014 -0.201580 -0.741616 -0.472771 -0.094833 0.773546 -1.359502 -0.594063 -0.580920 -0.434396 -0.043596 0.264404 0.737336 0.373664 -0.041526 0.076195 2.105971 1.404822 0.468927 -0.505675 -1.400492 0.128579 0.497394 -0.665020 -0.220603 0.096291 -0.673458 0.045380 0.826175 -0.184400 0.464312 -0.624562 -0.800891 -0.566184 -0.130942 0.559548 -0.038708 -2.088172 0.158343 0.328480 0.101323 0.553535 0.683810 1.496087 0.927087 0.874430 -0.373154 0.584475 -0.306067 0.138320 -0.070303 0.437105 0.925898 0.307524 1.139507 0.354591 0.144608 0.838229 1.015302 0.073292 1.025347 -0.060690 1.859941 -0.722512 0.161878 -0.348394 -0.431834 0.756644 1.816977 -1.230763 0.730695 0.687395 0.950478 0.023078 -1.195562 -0.054914 -0.910209 0.469836 0.166680 0.342148 -0.375168 -0.505908 1.337460 0.470723 -1.741407 0.844100 -0.093551 0.188541 0.948846 -0.428892 -0.371492 0.427857 -1.377696 0.985817 0.450674 0.655137 -0.960241 0.466795 -0.142397 0.965232 -0.654698 0.332710 -0.477286 -0.092831 0.434265 1.247497 1.282749 0.884488 -0.735852 -0.601792 0.099120 -1.255011 -0.526630 0.240322 0.721369 -0.471905 0.452409 -1.140963 -0.906755 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::~list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::~_List_base() = 0.082991 0.077019 0.148786 -0.260417 -0.432988 -0.017330 -0.204082 -0.093907 -0.022608 -0.130651 0.066098 -0.323810 -0.309835 0.508329 -0.196834 -0.502406 -0.217826 -0.091718 -0.142823 -0.095125 -0.017877 0.215971 -0.019260 0.081056 0.094668 -0.043881 -0.126513 0.135957 0.471174 -0.299736 -0.145172 -0.028517 0.098981 0.417830 -0.057782 0.060832 0.164539 0.742777 0.255886 0.281525 -0.399494 -0.386367 0.255908 -0.000759 -0.069724 -0.374930 -0.295750 0.258494 -0.613112 0.155163 0.200314 0.140640 -0.323070 -0.113979 0.226756 0.293414 -0.831528 0.708262 0.059102 0.094461 -0.003177 -0.090881 -0.167090 -0.122806 0.138499 -0.239349 -0.021545 0.280509 -0.436095 0.140306 0.048702 -0.245413 0.839292 0.106070 -0.259005 0.216349 0.250001 -0.070002 0.297141 -0.598994 -0.379247 -0.023953 0.224760 0.141903 0.481968 0.123655 0.009204 -0.620705 0.095667 -0.539080 0.246271 -0.509448 0.182319 0.496187 -0.527126 0.255599 0.128128 -0.131478 0.336349 0.265408 0.466303 0.094151 0.116373 0.172720 0.075989 0.030389 -0.048803 -0.098079 -0.163535 -0.478206 -0.151435 0.009924 -0.831415 0.038327 -0.019703 0.487029 0.079705 0.165115 0.062211 -0.101916 -0.593408 -0.285067 0.109019 -0.070433 0.282765 0.378702 -0.170807 0.066706 -0.284404 0.510195 -0.086547 0.109711 -0.036373 0.109031 0.060280 -0.578915 -0.708011 -0.004005 0.094084 -0.148249 -0.419514 -0.341270 -0.088044 0.053902 -0.161818 0.469998 0.800514 -0.158050 -0.365961 0.602763 0.081420 0.357218 0.546020 0.055307 0.563493 -0.155814 -0.093954 -0.049363 -0.131780 -0.012167 -0.464312 0.130034 -0.199649 0.079579 0.158633 -0.256904 0.203922 -0.168791 -0.222267 -0.254370 -0.021360 -0.277898 -0.287937 0.535963 0.140318 0.529999 0.031167 0.617541 -0.193039 -0.567774 0.225267 -0.217504 0.076872 -0.131323 -0.092225 -0.040951 0.204758 -0.531655 -0.211580 0.025763 -0.117334 -0.282348 0.084650 0.468966 0.067404 0.051901 0.265327 0.373912 0.517086 -0.043379 0.156787 -0.632179 0.094409 0.197897 -0.100453 -0.521509 0.255311 -0.110532 -0.026317 0.276072 -0.098079 -0.066194 -0.058606 -0.223401 -0.150582 -0.179988 0.331869 0.049835 -0.071482 0.013555 -0.160062 0.172831 0.202998 0.247200 0.667427 0.240022 0.280627 0.127636 0.119798 -0.080593 0.357613 0.008371 0.102022 0.197842 0.188986 0.311306 0.244920 0.013738 0.333901 0.364472 -0.188169 0.396551 0.230191 0.799756 -0.220559 -0.081123 -0.154195 -0.038893 0.369671 0.827702 -0.543566 0.140738 0.289414 0.310221 0.153771 -0.513927 -0.143170 -0.192482 -0.277273 0.329665 -0.122307 -0.164409 0.087727 0.402792 -0.029216 -0.462166 0.356853 0.064957 0.090643 -0.094431 0.015247 -0.223870 0.370659 -0.565893 0.051214 0.231714 0.261342 -0.300771 -0.196896 -0.075205 0.342824 -0.061324 0.359495 -0.109598 0.089965 0.424411 0.403020 0.179310 -0.075559 -0.169256 -0.594773 0.144635 -0.133897 -0.246441 0.076863 0.062903 -0.251782 0.050464 0.017970 -0.648227 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_clear() = 0.852053 -0.019051 1.602884 -1.744744 -2.629333 0.933311 -1.399237 -0.839525 0.494337 1.285755 0.938165 -0.891218 -0.837313 2.553527 -0.819677 -2.034897 -0.248089 -0.906330 0.309898 -0.760463 0.334478 1.027256 -0.060038 0.584026 -0.263136 -0.750799 -0.421554 0.897138 1.679796 -0.430781 -1.336977 -0.304461 -0.708908 2.004596 0.170415 -0.665233 0.762908 3.872877 -0.611873 1.640757 -1.920953 -2.159832 0.935223 0.218758 -0.135515 -0.944765 -1.523978 1.125798 -1.675229 -0.222312 2.002881 0.000000 0.299837 0.176366 0.878617 0.700625 -3.549554 1.637167 -0.138458 0.107183 0.211378 -0.335111 0.091359 1.213215 -0.629065 -1.053727 1.159842 1.533003 -1.333416 -0.310546 0.038977 -2.193586 2.871446 0.823574 -1.310574 0.271306 2.220926 -1.747925 2.080952 -1.847063 -2.952836 0.061628 -0.533938 -1.898489 2.671146 -0.188012 1.598474 -3.435031 1.806739 -3.410108 1.657596 -2.068212 0.955594 2.518167 -2.208192 0.397206 1.555043 2.164433 2.387568 -0.231522 2.646188 1.343528 0.549868 1.103690 1.351355 0.777250 -1.079134 -0.203984 -1.921970 -2.648586 -0.313414 -1.280699 -3.718882 0.504424 0.347666 0.665138 0.369603 -0.072040 -0.442874 1.755684 -3.248832 -0.738676 0.380515 -0.311209 0.781978 1.985522 -1.261302 0.860014 -0.522347 3.082842 -1.768857 0.548670 0.207653 0.659058 -0.819722 -0.679069 -3.107414 1.178019 1.179924 -1.291329 -2.292300 -2.517664 -0.272251 0.524558 -0.570861 3.618712 4.421324 -1.194247 -1.977327 2.594243 0.036404 0.049874 2.971908 0.052524 2.762089 -1.016816 -0.800634 -1.759313 -0.896522 -0.559761 0.053594 1.213053 0.439963 1.254963 0.479084 -0.435640 2.158460 -0.963262 -1.745476 -1.606189 0.651320 -1.385480 -1.196389 2.482938 -0.571998 1.339237 0.971116 3.362933 -0.661289 -2.285386 1.124025 -1.774363 0.162000 -1.338380 -0.684818 0.088438 1.492308 -1.832642 -0.988360 -1.138101 -1.064834 -1.034945 0.077375 1.305180 1.253912 1.110595 1.140849 2.559900 3.499322 1.370072 0.033317 -2.777612 0.645318 1.405575 -1.302449 -1.693064 0.235484 -1.411006 0.388386 0.765613 -0.418910 0.891428 -1.810723 -1.704807 -1.402040 -0.441900 1.401671 0.965834 -3.568607 0.451603 -0.204010 1.625336 1.284525 1.242353 2.771974 2.357898 2.592705 0.253742 0.539498 0.273329 0.687297 -0.033047 1.138857 0.782923 0.917992 2.586947 1.079126 0.603187 1.909975 2.070618 0.144243 1.835658 -0.080038 3.774973 -0.461383 0.041786 -1.336963 0.016666 1.778467 4.569225 -1.054837 1.232016 1.192121 1.349821 -0.140028 -2.500582 0.449426 -1.380070 0.652760 0.365222 0.622998 -0.119437 -0.671303 1.844443 0.359057 -3.191374 1.536908 -0.059961 0.777753 1.872957 -0.088611 -0.182410 0.223795 -2.916401 2.215285 2.017628 1.076912 -1.641270 -0.166268 -0.097891 1.616802 -0.129716 1.888035 -2.026807 1.348493 1.475935 1.802518 1.056322 1.387564 -2.016979 -2.199219 1.203121 -1.927910 -0.995332 0.714584 0.970327 -1.896225 1.089397 -1.039140 -2.634114 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/eulerian-path-and-circuit.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.435709 -0.117656 0.480470 -0.517183 -0.782692 0.103124 -0.343564 0.154305 0.170226 0.120636 0.275905 -0.387434 -0.404505 0.955320 -0.202963 -0.721921 0.133942 -0.426370 0.078651 -0.060203 0.267637 0.351105 0.332211 0.137891 0.012207 -0.065956 -0.434814 0.333526 1.024246 -0.452735 -0.449889 0.130494 -0.074368 0.338217 -0.285513 -0.544935 0.280976 1.167966 -0.043557 0.415506 -0.362971 -0.271901 0.405262 0.018823 -0.110759 -0.515511 -0.779398 0.514226 -0.496279 -0.323163 0.608061 0.248285 -0.022858 -0.134356 0.056401 0.462643 -1.281766 0.681208 -0.122170 0.477252 0.437051 0.076259 -0.065080 0.243643 0.175748 -0.374046 0.246696 0.170147 -0.755426 -0.271330 0.030504 -0.287094 1.120382 0.140350 -0.266377 0.198021 0.812015 -0.426699 0.703126 -0.862262 -0.799949 0.098477 -0.358967 -0.326102 0.955081 -0.352417 0.197433 -1.028258 0.507531 -0.920896 0.631947 -0.875730 0.141163 0.807724 -0.777887 0.183447 0.335242 0.316986 0.791497 0.220297 1.012889 0.428483 0.252839 0.297603 0.270289 0.036696 -0.267766 0.149132 -0.513304 -0.756549 -0.183942 -0.253978 -1.273924 0.264681 0.316204 0.239325 0.495356 -0.098650 -0.014351 0.249311 -0.624853 0.005874 0.194803 -0.080801 0.026639 0.804806 -0.520282 0.044184 -0.392368 1.065178 -0.406792 0.317324 0.424086 0.108458 -0.108712 -0.701511 -0.558057 0.306900 0.174113 -0.245265 -0.647582 -0.756539 0.289113 -0.332070 -0.295895 0.890505 1.219594 -0.065585 -0.345139 0.762734 0.308137 0.275521 0.808378 -0.205008 1.043485 -0.255809 -0.506592 -0.239986 -0.347700 -0.072426 -0.355154 0.413569 0.248220 0.206768 0.147384 -0.571206 0.602987 -0.277065 -0.434576 -0.072088 0.127512 -0.459364 -0.564219 0.739998 0.378360 0.323228 0.574975 1.069765 0.260432 -0.767988 0.567945 0.019181 0.162762 -0.403232 -0.231096 0.116868 0.129602 -0.492117 -0.265737 -0.432991 -0.189104 -0.360003 -0.030863 0.446934 0.573578 0.423664 0.468245 0.380018 0.801228 0.315222 0.274191 -1.123359 0.064307 0.383082 -0.465173 -0.666124 0.260855 -0.370954 0.308068 0.529638 -0.255734 0.100064 -0.425623 -0.831189 -0.353639 -0.173726 0.358901 0.211416 -0.768821 -0.164659 0.049714 0.533539 0.353756 0.478877 0.888639 0.418859 0.611327 0.299459 0.180498 0.453845 0.149042 -0.217463 -0.059646 0.234269 0.285512 0.476719 0.266899 0.109937 0.716132 0.557496 -0.277571 0.432424 0.224108 0.989995 0.087128 -0.294536 -0.409607 -0.110208 0.619882 1.358943 -0.248273 0.268477 0.429354 0.494391 0.186403 -0.769195 0.104281 -0.439442 0.100195 0.333767 -0.085288 0.131433 -0.024154 0.221675 0.025428 -1.021657 0.619406 -0.095425 0.292036 0.554877 0.149624 0.061215 -0.021893 -1.060713 0.252708 0.567332 0.308635 -0.309328 -0.112749 -0.049269 0.484764 -0.319963 0.711544 -0.670345 0.326492 0.578191 0.411936 0.232969 0.167993 -0.494628 -1.017799 0.303011 -0.396292 -0.321671 0.071585 -0.004483 -0.806777 0.079044 -0.044458 -0.604983 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/eulerian-path-and-circuit.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/eulerian-path-and-circuit.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/eulerian-path-and-circuit.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/eulerian-path-and-circuit.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::list >::_M_node_count() const = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/eulerian-path-and-circuit.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.128157 -0.322073 0.195571 -0.374782 -0.269325 0.271096 -0.311435 -0.246687 0.126231 -0.193260 0.188876 -0.171783 -0.009636 0.636891 -0.022640 -0.438285 0.068270 0.143381 0.057510 0.220942 0.047490 0.124860 -0.132462 0.021932 -0.067314 -0.088981 0.054606 0.145943 0.168491 0.023070 -0.488910 -0.135182 -0.220817 0.534025 0.173892 0.244814 0.155685 0.808735 0.027419 0.911973 -0.350768 -0.316068 0.134808 0.025108 -0.087140 -0.109168 -0.450019 0.140933 -0.397700 -0.186152 0.437394 -0.129529 0.012348 0.042558 0.282758 0.197835 -0.557718 0.093362 0.058276 0.142168 0.075152 -0.208919 -0.065151 0.130775 -0.444829 -0.195126 0.236731 0.366315 -0.248602 -0.007717 -0.144978 -0.667292 0.884480 0.328309 -0.403471 0.009125 0.424284 -0.457613 0.339529 -0.122791 -0.623669 -0.010749 -0.168650 -0.314625 0.676115 0.009051 0.448473 -0.725101 0.433750 -0.814975 0.315293 -0.554576 0.283014 0.632408 -0.575457 0.053562 0.337598 0.766166 0.292980 0.152106 0.458359 0.387274 -0.276439 -0.027261 0.563989 0.044003 -0.180301 -0.249784 -0.266696 -0.474271 -0.075741 -0.382857 -1.025655 0.029870 -0.076793 0.491151 -0.198370 0.347522 -0.097803 0.115853 -0.746237 -0.010211 0.020538 -0.094314 0.316770 0.442121 -0.248713 0.167730 -0.195305 0.582773 -0.284489 -0.010823 -0.197638 0.149255 -0.330975 0.090982 -0.571172 0.152866 0.346744 -0.288879 -0.619179 -0.595900 -0.213013 0.503949 -0.078266 0.814328 0.850367 -0.255091 -0.297578 0.488129 0.074519 0.150176 0.638341 0.101704 0.525338 -0.304255 0.078939 -0.315870 -0.064060 -0.288261 -0.349301 0.141298 -0.070868 0.293595 -0.110289 -0.401164 1.101356 -0.176618 -0.290102 -0.404346 -0.027911 -0.281488 -0.332482 0.785182 -0.441030 0.320204 0.022986 0.713063 -0.227030 -0.287832 0.201371 -0.416521 -0.008134 -0.445401 -0.119287 -0.122515 0.464689 -0.560519 -0.300120 0.000583 -0.208156 -0.098433 0.138848 0.467804 -0.013225 0.121943 0.178048 0.639547 0.678906 0.207757 -0.019076 -0.474341 0.177125 0.284241 -0.473092 -0.144405 0.116634 -0.297663 0.009623 -0.134352 0.017948 0.071784 -0.623507 -0.389531 -0.316611 0.005594 0.354952 0.212928 -0.819390 0.052768 0.129038 0.192287 0.439340 0.251451 0.592188 0.501247 0.497956 -0.134572 0.099125 0.053274 -0.201028 0.056509 0.195277 0.341129 0.104556 0.477643 0.171383 0.035592 0.224394 0.402806 0.350580 0.363926 0.357547 0.725757 0.336738 -0.073433 -0.067523 -0.190475 0.424947 0.920497 -0.489093 0.537996 0.233692 0.271552 -0.170820 -0.485986 0.027026 -0.194545 -0.250665 0.134603 -0.120610 0.078944 -0.221109 0.554002 0.056461 -0.679460 0.068358 0.038506 0.163507 0.558332 -0.058086 0.151023 0.058502 -0.444839 0.643266 0.246460 0.257576 -0.270610 -0.017168 -0.051963 0.070950 0.303305 0.245536 0.077428 0.429459 0.216128 0.571528 0.346908 0.033509 -0.301780 -0.075842 0.063385 -0.504430 -0.115873 -0.065845 0.281417 -0.083464 -0.039893 -0.511491 -0.682881 +PE-benchmarks/eulerian-path-and-circuit.cpp___GLOBAL__sub_I_eulerian_path_and_circuit.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 3.557921 1.037151 4.031114 -3.808501 -0.649770 1.219752 3.620165 -4.943020 0.456679 12.681800 3.838897 -3.324376 -3.280606 5.577179 -1.349615 -4.219353 4.644065 2.998816 0.114542 -3.134834 -0.814814 1.755402 -0.884333 -5.016041 3.647243 -2.845396 2.652988 5.046119 -1.538676 2.622081 -3.170816 -0.805609 0.644401 9.927255 -0.194779 2.190619 -2.626021 8.481470 -10.429604 10.054663 -10.836638 -9.443731 10.620716 1.750078 1.807836 -5.297875 -1.159726 3.627366 -0.226039 -7.829213 0.486967 -3.491346 3.568376 -6.432842 -0.493601 8.731241 -9.252834 -1.675215 1.585329 -6.523321 -8.644482 -0.812714 5.639531 2.348076 -7.833511 -6.928170 2.574333 1.486952 -3.179311 2.722750 -7.452909 -11.573014 3.537480 1.451040 -3.112863 1.848693 -1.439896 -7.735502 4.628155 0.157939 -3.981029 -4.024904 3.577176 -2.979611 1.382045 4.823691 9.698787 -13.970283 1.168071 -10.818119 8.474406 -5.039493 10.052501 7.477732 -3.665831 4.438462 3.298813 7.711018 1.736872 -0.235455 8.689065 3.986953 4.179661 -2.635967 6.150154 6.765368 -8.513408 -9.302617 -6.040389 -5.741386 2.852464 -3.307725 -9.358749 0.877520 -9.537689 -1.081150 2.121475 -3.256757 -0.574759 10.740713 -14.678696 -1.835119 3.502009 -1.247325 6.687225 6.624973 1.170161 1.688538 0.927927 7.117637 -1.591239 -1.505271 -2.587835 5.434235 -5.757783 -4.380791 -1.652619 0.592850 3.594891 -8.989658 -9.286480 -13.453704 -2.793028 7.033309 -2.534833 6.084704 13.603424 -3.233848 -7.279540 3.528968 -2.063988 -2.063929 7.999719 1.857319 14.111414 -13.013117 6.961662 -2.076057 5.157800 5.775130 11.519341 -2.841436 -6.132991 5.301060 -1.165839 -5.358671 9.460093 -1.756243 1.678978 -2.746281 2.397166 -1.024185 -2.030550 8.751667 -9.997248 9.099102 -7.154743 11.993928 -9.642941 -5.819527 3.522818 -10.921274 -4.609991 -6.762093 -1.771380 -1.576031 9.550443 -7.454838 -5.105320 -4.927941 -4.044488 2.110227 8.275259 -7.584046 -0.451264 -2.796743 -4.719940 8.060791 3.103735 -0.753300 -0.369021 -7.548437 0.943411 5.993887 -0.078737 -10.210214 -1.456380 -8.354165 -1.545059 -2.065943 -0.685704 6.930742 -5.743662 -3.311994 1.665081 -1.975914 -0.282706 -4.744314 -9.545432 3.453271 -1.983225 1.248508 2.526935 11.626201 7.840400 6.840058 0.049707 -3.144376 2.646024 -6.970447 -8.654005 5.616917 1.068989 4.207393 3.387274 5.951865 1.161327 2.828458 5.156803 -1.119184 3.189068 9.028059 2.907410 8.661684 -3.189837 2.000560 3.000369 -5.207379 5.606163 8.997587 -0.881123 -4.143046 3.436576 0.043936 -5.819100 -3.214070 -1.676293 -2.427538 -4.989525 4.351390 4.880807 -1.572378 -5.414007 14.486144 2.437943 -15.887269 7.535942 -1.217926 2.372441 8.420134 -4.733596 3.786508 4.155750 0.990888 4.237224 2.716460 8.073101 -8.864590 -0.303204 -0.748093 6.722479 8.091792 -3.358020 -17.360345 4.224224 2.616239 10.790108 3.794724 10.800828 -5.607843 5.104272 -3.531249 -4.492818 -0.443737 -2.520466 5.656430 -0.899265 -0.772446 -15.356439 3.331150 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__sort(int*, int) = 0.422306 0.346085 0.375189 -0.564629 -0.590770 0.121311 -0.156935 -0.511702 0.098099 0.559648 0.425089 -0.583584 -0.052227 1.051841 -0.553572 -0.357411 -0.080027 -0.297940 -0.181107 -0.209132 0.156214 0.274984 -0.064406 -0.290012 -0.054454 -0.092740 0.135758 0.164125 0.114754 -0.162222 -0.528142 -0.063561 0.290648 0.781388 0.125623 -0.096968 -0.050828 0.764595 -0.491272 0.701466 -1.184903 -0.706142 0.592345 0.141883 0.118616 -1.132054 -0.657498 0.342261 -0.004919 -0.207105 0.142003 -0.174585 -0.056764 -0.315416 0.045171 0.615948 -1.063894 0.648175 0.144521 -0.166393 -0.218174 -0.082191 0.404035 0.305412 -0.247464 -0.499635 0.195260 0.524312 -0.462419 0.247327 -0.306265 -0.973037 0.918857 0.059122 -0.459965 0.024810 -0.002741 -0.806907 0.566223 -0.854297 -0.444232 -0.049882 0.297892 0.098954 0.314389 0.257799 0.464168 -1.120479 0.092477 -1.000518 0.544249 -0.619395 0.483921 0.488440 -0.600936 0.086656 0.162734 0.334248 0.850873 0.468542 0.636337 0.535169 0.511935 -0.222667 0.483704 0.562731 -0.243457 -0.370451 -0.302135 -0.808736 -0.068616 -0.024732 -1.428248 0.121599 -0.337225 0.073689 -0.092541 -0.231395 0.145645 0.745910 -1.112787 -0.545261 0.239694 -0.061471 0.360570 0.725158 -0.121127 0.310220 -0.267591 0.637303 -0.025076 0.010058 0.020610 0.234655 -0.726940 -1.167546 -0.855960 0.309654 0.289050 -0.590936 -0.751769 -1.102931 -0.108097 0.295247 -0.286251 0.582007 1.121206 -0.237451 -0.927836 0.519668 0.617749 -0.349962 0.999529 0.013761 1.417846 -0.835412 0.395918 -0.105686 0.069223 0.067004 0.324133 -0.162300 -0.370222 0.247980 -0.083171 -1.436317 0.750273 -0.115761 -0.108045 -0.045805 0.089761 -0.279472 -0.271707 0.757070 -0.190568 0.799109 -0.427401 1.042073 -0.775186 -0.747858 0.303126 -0.758633 -0.127709 -0.121887 -0.069238 0.044014 0.953240 -0.663054 -0.299945 -0.016349 -0.473037 -0.135672 0.576644 -0.338920 0.066521 -0.024915 -0.103823 0.635534 0.633317 -0.126623 0.368520 -0.632196 0.161738 0.709715 0.076195 -1.317672 -0.059237 -0.777227 0.000169 -0.133662 -0.156410 0.364319 -0.388722 -0.393376 0.005882 -0.457795 0.318073 -0.217378 -0.211267 0.231744 -0.656395 0.525788 -0.025043 0.819804 0.743362 0.667999 0.334607 -0.228003 0.170854 -0.669015 0.058489 0.292060 0.391338 -0.173794 0.329986 0.844673 0.038346 0.150590 0.661786 0.281347 -0.042371 0.708007 0.102153 0.877397 -0.518993 0.250495 -0.190443 -0.339154 0.606895 1.475199 -0.249062 -0.266657 0.217960 0.115719 -0.198250 -0.496875 -0.199171 -0.176139 -0.542647 0.558042 0.427181 -0.073035 -0.261594 0.990190 0.259252 -0.982661 0.626463 -0.016572 0.100688 0.424296 -0.458495 0.063878 0.378604 -0.168657 0.200407 0.409970 0.609131 -0.650320 -0.772810 -0.092138 0.612139 0.459382 0.137085 -1.158250 0.583838 0.726201 0.915097 0.097717 0.613841 -0.686597 -0.186745 0.057316 -0.018662 -0.196859 -0.001539 0.423506 -0.581236 -0.008418 -0.513658 -0.285030 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__printArr(int*, int) = 0.497572 0.384778 0.631172 -0.918884 -0.580118 0.200353 0.409143 -0.565056 0.078206 1.576390 0.513684 -0.522380 -1.067275 1.194366 -0.326443 -0.981255 0.346667 -0.467871 -0.082405 -0.323706 -0.102774 0.533275 -0.118546 -0.445674 0.496662 -0.238206 -0.050060 0.708847 0.306847 -0.244101 -0.652859 -0.142311 0.090755 1.542573 -0.104742 0.070379 -0.068076 1.741298 -1.341098 1.409986 -1.839555 -1.582345 1.451018 0.166657 -0.016481 -1.281615 -0.232127 0.707920 -0.619028 -0.797779 0.450166 -0.285065 0.146906 -0.787809 0.243880 1.401362 -2.228260 0.720330 0.233450 -0.431594 -0.753685 -0.219967 0.600950 0.181903 -0.475127 -1.002304 0.279004 0.134636 -0.920167 0.267783 -0.744885 -1.504529 1.082427 0.412746 -0.672284 0.417018 0.093198 -1.160063 0.899599 -1.082431 -0.863140 -0.402358 0.510334 -0.252624 0.800637 0.551603 0.867999 -2.161870 0.118969 -1.695177 1.156953 -1.061940 1.232208 1.317460 -0.676762 0.615177 0.482444 0.400692 0.646920 -0.132571 1.456060 0.526019 0.934637 -0.037188 0.689218 0.921704 -1.193294 -0.973343 -0.951442 -1.162528 0.146325 -0.319611 -1.676823 0.105253 -0.933988 0.144078 0.665971 -0.481771 -0.217021 1.117897 -2.216526 -0.567786 0.416671 -0.244599 1.038153 1.333205 -0.034901 0.172439 -0.088275 1.372862 -0.334086 0.219957 -0.346448 0.686350 -0.487511 -1.116946 -0.818555 0.064510 0.422549 -1.186190 -1.423347 -2.007816 -0.236098 0.533988 -0.436669 1.224128 2.450342 -0.573348 -1.350466 1.132168 -0.189313 0.170234 1.356205 0.162106 2.055634 -1.532222 0.616970 -0.373177 0.339254 0.461363 1.442046 -0.078993 -0.755067 0.534244 0.029970 -0.835942 0.626806 -0.176514 -0.117848 -0.519167 0.188638 -0.623658 -0.570633 1.407423 -0.945418 1.440197 -0.552727 1.910194 -1.239259 -1.266528 0.689057 -1.444498 -0.400295 -1.027638 -0.696498 0.095113 1.029061 -1.327579 -0.655951 -0.803444 -0.344691 -0.240651 0.950331 -0.913533 0.105127 -0.228254 -0.171508 1.405751 0.966073 -0.151708 0.201339 -1.450269 0.271673 0.797862 -0.175178 -1.891773 0.088051 -1.053814 -0.158811 0.666839 -0.271005 0.761445 -0.590875 -0.694597 0.291203 -0.500614 0.251446 -0.471875 -1.318043 0.324789 -0.411106 0.288497 0.558627 1.530140 1.322468 1.074255 0.339052 -0.150351 0.327126 -0.694705 -0.588969 0.375702 0.111753 0.496769 0.712459 0.926961 0.416915 0.311614 1.061923 0.472391 -0.117855 1.400536 0.410042 1.664481 -0.436811 0.010738 0.219285 -0.694116 0.848476 1.760675 -0.744057 -0.261303 0.773436 0.311560 -0.414470 -0.707950 -0.151264 -0.703429 -0.652028 1.020263 0.547262 -0.366975 -0.518585 2.018479 0.127878 -2.253091 1.184771 -0.046376 0.463808 0.767679 -0.444221 0.173203 0.748432 -0.722963 0.693611 0.645751 1.202152 -1.233052 -0.242025 -0.108618 1.068631 0.793074 0.089509 -2.409561 0.151745 0.591243 1.605200 0.724387 1.462275 -0.776629 -0.125293 -0.179513 -0.552734 -0.266743 -0.297845 0.799573 -0.447773 0.028850 -1.695112 -0.009170 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.481787 0.220124 0.451318 -0.647913 -1.052458 0.339107 -1.189008 -0.563871 0.173356 -0.055773 0.333024 -0.824386 -0.461230 1.187191 -0.827003 -1.168318 -0.420494 -0.032422 -0.039418 -0.559690 0.047326 0.271026 -0.126373 0.045638 -0.073529 -0.350795 -0.018384 0.220302 1.389689 -0.289086 -0.802895 0.002801 0.091789 1.180913 0.193562 -0.193848 0.603692 1.672739 0.658601 0.331911 -1.098393 -0.954984 0.466608 0.242684 -0.138541 -0.641073 -0.774099 0.388992 -1.807744 0.801277 0.611283 -0.164818 -0.399774 -0.015230 0.432887 0.725623 -2.071846 1.790846 -0.075078 0.372915 0.065016 -0.332209 0.062181 0.115694 0.410620 -0.549284 0.387213 1.249173 -1.070471 0.341375 -0.157789 -1.007687 1.906237 0.260265 -0.838424 0.135553 0.581597 -0.592735 0.616998 -1.370553 -1.039786 0.044108 0.521533 0.107651 1.223409 0.309372 0.266349 -1.593398 0.295710 -1.571196 0.620366 -1.095210 0.742272 1.075696 -1.691123 0.191052 0.375553 0.176150 1.075650 0.507779 1.210807 0.367544 0.070245 0.010016 0.325454 0.189815 0.087663 0.004182 -0.158235 -1.110035 -0.767394 -0.028625 -2.348140 -0.017615 -0.549075 1.119856 -0.128281 0.213865 -0.125298 0.082162 -1.568833 -1.310499 -0.141660 -0.139279 0.996380 0.914364 -0.390573 0.594555 -0.374070 1.415126 -0.220485 -0.305412 -0.313789 0.139176 -0.140582 -1.521489 -2.380015 0.317963 0.680206 -0.547309 -1.361867 -0.866414 -0.440894 -0.049969 -0.161038 1.568299 1.863829 -0.213948 -1.052930 1.284637 -0.265744 0.595032 2.239046 0.090902 1.618147 -0.811666 0.332324 -0.306669 -0.021548 -0.393194 -1.466483 0.031638 -0.169842 0.178793 0.468358 0.027763 0.261377 -0.364454 -0.535438 -1.063762 -0.030378 -0.527554 -0.591108 1.408804 -0.026155 1.025277 0.165071 1.718414 -0.882456 -1.769791 0.560167 -0.704514 0.157733 0.194759 -0.167392 -0.221528 0.956709 -1.293166 -0.643233 0.173577 -0.127086 -0.411645 0.321965 1.864888 0.146016 0.144394 0.404737 1.164097 1.483418 0.033077 0.563622 -1.346979 0.128814 1.005143 -0.434675 -1.295630 0.495059 -0.641826 0.060589 0.412332 -0.170877 0.084935 -0.586372 -0.817930 -0.701223 -0.269929 1.301040 0.247639 -0.579066 0.457017 -0.761088 0.178254 0.494163 0.692290 1.481412 0.734191 0.846526 -0.245859 0.476730 -0.587539 1.298301 0.101897 0.803170 0.413608 0.302621 1.156397 0.254097 0.022765 0.547909 0.945403 -0.341911 0.870932 0.446116 1.852495 -0.799484 0.322403 -0.720862 -0.465458 0.909540 2.509553 -1.376062 0.312373 0.522155 0.857876 0.544843 -1.780926 -0.337233 -0.481084 -0.486879 0.312416 -0.127066 -0.289813 -0.181074 1.166047 0.335139 -1.112188 1.082765 0.102129 -0.082510 0.046759 -0.379448 -0.783197 0.603471 -1.448200 0.406401 0.606543 0.663334 -0.623600 -0.445448 -0.264690 1.034685 -0.356641 0.541465 -0.061109 0.720467 1.267841 1.146041 1.004956 -0.068549 -0.613878 -1.445317 0.166378 -0.632894 -0.556132 0.216463 0.448197 -0.957803 0.434895 0.254157 -1.710752 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/rotate-bits-of-an-integer.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.005988 1.438844 0.911865 -0.782336 -2.383943 0.931349 -2.958910 -1.902650 0.161173 1.203495 0.947877 -1.526124 -0.687839 1.718609 -2.439457 -1.721384 -1.393184 0.377181 0.051442 -2.270886 0.337005 0.223779 -0.193917 -0.281385 -0.791298 -1.039954 0.411717 -0.185177 2.158358 0.089198 -1.085304 -0.030330 0.768715 1.776991 0.841581 -0.381479 0.440726 1.551892 1.116955 -0.602392 -3.212900 -2.374331 0.641143 0.805416 0.709368 -1.902449 -1.051645 0.469183 -2.682679 1.913995 0.340060 -0.909813 -0.140707 0.208724 0.168494 0.778923 -3.069560 3.699435 -0.417693 -0.752744 -0.175428 0.033380 0.892748 1.111253 1.596957 -0.930227 0.416931 3.354882 -1.468215 0.766402 -0.204643 -1.874283 2.583568 -0.379903 -1.558982 -0.450056 0.206743 -0.526757 0.828474 -2.989859 -1.405048 0.035808 1.482960 1.100198 0.428528 1.585465 0.789964 -2.487584 0.003800 -2.509891 1.486153 -0.445007 1.425854 0.377134 -2.487699 -0.357462 0.883917 -0.729147 2.935278 1.089905 1.553388 0.395681 0.777842 -0.145894 0.000394 0.822014 0.559714 0.371567 0.055016 -2.136729 -1.255833 0.553688 -3.602215 -0.194286 -1.203604 1.702123 -0.698918 -0.677644 0.404642 0.690578 -3.038581 -3.293695 -0.300686 0.022751 1.909785 0.834437 -0.173777 1.846491 0.125585 1.846500 -0.628602 -1.275050 -0.003507 0.241711 -0.310357 -4.010602 -4.915278 1.541285 1.295572 -1.168646 -1.716786 -1.311090 -0.684880 -0.002297 -0.228475 1.714278 2.622027 -0.540467 -2.525732 1.329932 -0.519467 -0.698178 4.339621 0.200808 3.317111 -1.818498 0.972124 -0.399735 -0.112108 -0.066081 -1.231384 -0.437494 -0.315046 0.468370 1.177411 -0.487798 -1.608963 -0.847597 -0.983170 -1.902852 0.282561 -0.331131 0.431568 0.775156 -0.003308 1.417851 -0.418512 2.526877 -2.483469 -3.489334 0.386081 -2.210009 -0.424381 2.378682 0.252801 -0.226730 2.235063 -2.195549 -0.653378 0.384153 -0.835719 -0.470873 0.929167 2.168035 0.371896 0.560928 -0.179681 2.201587 2.223237 0.328137 0.916998 -1.283917 0.001395 2.114696 0.381468 -3.361482 -0.102964 -2.015702 0.337056 0.507988 -0.425916 0.911728 -0.114941 -0.598177 -1.425583 -1.351809 2.529880 0.186525 1.450895 1.173006 -2.279859 0.823685 -0.339079 1.537038 1.722042 1.777333 1.388293 -0.377226 0.982869 -2.387980 3.901625 0.631013 2.554855 -0.581955 0.570729 2.159815 -0.136316 0.408501 1.386003 1.154254 -0.559759 1.539627 -0.847965 2.612863 -3.563966 1.948715 -1.865310 -0.487585 1.246281 4.463957 -1.942985 -0.424123 0.211556 0.577815 1.319168 -2.562323 -0.317504 -0.468854 -0.831554 0.748707 1.764049 0.019989 -1.074206 1.848423 1.285603 -1.293279 2.908659 -0.002514 -0.676416 -0.105535 -1.501470 -1.919641 0.662820 -1.375773 -0.395001 1.576275 1.363039 -1.732500 -1.758745 -0.562470 2.478106 -0.262654 0.515116 -1.087444 1.248990 2.941480 1.848564 0.862018 0.383408 -1.991549 -2.780585 0.430972 -0.506070 -0.869685 0.717724 0.593782 -1.733748 1.039139 1.541439 -2.156034 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::leftRotate(int, unsigned int) = 0.401599 0.249374 0.315447 -0.840377 -0.154587 0.226428 0.405676 -0.632375 0.222334 0.556716 0.721467 -0.638901 -0.001274 0.950973 0.027507 -0.362657 0.615641 -0.228947 -0.013709 0.335612 0.141043 0.233230 -0.183693 -0.351567 0.154191 0.079193 0.136594 0.239231 -0.114287 -0.475208 -0.836576 -0.083777 0.160540 1.073616 0.090007 -0.181012 -0.240721 0.977532 -0.408334 1.344132 -1.115877 -0.285504 0.902132 0.167081 0.066574 -1.651652 -0.814069 0.425895 0.574086 -0.971038 0.262644 -0.411199 0.156448 -0.505077 -0.003680 1.218816 -0.851867 0.060007 0.450023 -0.250632 -0.292323 -0.019878 0.525574 0.149611 -0.392014 -0.767789 0.344299 -0.000484 -0.508887 0.163391 -0.873648 -1.569067 1.095668 0.505868 -0.575036 0.091827 -0.302289 -1.282575 0.537852 -0.245921 -0.554264 -0.122791 0.283341 -0.113519 0.260372 -0.046103 0.564830 -1.208836 -0.169666 -1.318494 0.595513 -0.865040 0.998492 0.733995 -0.486784 0.165048 0.173293 0.076656 0.441785 0.459790 0.935174 0.619319 0.579708 -0.522739 0.734906 0.671207 -0.509413 -0.675166 -0.269512 -0.742775 0.121181 0.242345 -1.088234 0.225511 -0.973231 -0.130158 0.135547 -0.121555 0.116287 0.888419 -0.858453 -0.673926 0.391256 -0.183452 0.687354 1.280062 0.048109 0.169362 -0.288651 0.738202 0.114545 0.242389 -0.279579 0.528623 -0.757458 -1.097086 -0.432908 0.084727 0.509130 -0.975290 -1.062409 -1.372429 -0.124860 -0.162548 -0.498949 0.683944 1.376541 -0.402553 -0.949595 0.533894 0.614768 -0.323058 0.840981 0.002651 2.010391 -1.429138 0.886125 -0.179206 0.333627 0.183156 0.909654 -0.400550 -0.629903 -0.101576 -0.569185 -2.179115 1.324052 0.238818 0.062054 0.929570 -0.025941 -0.097203 -0.750590 0.935062 -0.365458 0.966514 -0.758921 1.457258 -0.691829 -0.481325 0.426140 -0.301433 -0.445724 -0.618661 -0.311457 0.155235 1.209546 -0.200222 -0.429882 0.004761 -0.646104 0.065073 0.831604 -0.485143 -0.039985 -0.207383 -0.416291 0.435192 0.575992 -0.188327 0.306359 -0.853284 0.281900 0.532427 -0.119524 -1.345230 -0.317093 -1.167523 -0.151227 -0.353797 -0.228013 0.680765 -0.527449 -0.704881 0.155791 -0.162139 0.306026 -0.416132 -0.809436 0.313420 -0.361435 0.135200 0.117053 1.329162 0.714446 0.725371 0.201984 -0.654439 0.190154 -0.569048 -0.967325 0.122671 -0.017398 0.247009 0.439400 0.422355 0.198345 0.243553 0.324914 -0.313772 0.457395 0.762733 0.465805 0.859463 0.016895 0.125190 0.277703 -0.829256 0.720787 1.465666 -0.176394 -0.586634 0.199107 0.203908 -0.770699 -0.475475 -0.180121 -0.310329 -0.870475 0.636229 0.173041 0.098757 -0.551720 1.495370 0.338205 -1.532641 0.741321 -0.185816 0.265845 0.942116 -0.386063 0.771164 0.440314 -0.114966 0.305568 0.324847 0.929487 -0.806671 -0.526478 -0.306825 0.451842 0.460398 -0.177857 -1.453480 0.788165 0.419254 1.276155 0.483072 1.155429 -0.608304 0.568997 -0.084714 -0.176448 -0.052120 -0.154522 0.670027 -0.442817 -0.557737 -1.424620 0.565274 +PE-benchmarks/rotate-bits-of-an-integer.cpp__gfg::rightRotate(int, unsigned int) = 0.401599 0.249374 0.315447 -0.840377 -0.154587 0.226428 0.405676 -0.632375 0.222334 0.556716 0.721467 -0.638901 -0.001274 0.950973 0.027507 -0.362657 0.615641 -0.228947 -0.013709 0.335612 0.141043 0.233230 -0.183693 -0.351567 0.154191 0.079193 0.136594 0.239231 -0.114287 -0.475208 -0.836576 -0.083777 0.160540 1.073616 0.090007 -0.181012 -0.240721 0.977532 -0.408334 1.344132 -1.115877 -0.285504 0.902132 0.167081 0.066574 -1.651652 -0.814069 0.425895 0.574086 -0.971038 0.262644 -0.411199 0.156448 -0.505077 -0.003680 1.218816 -0.851867 0.060007 0.450023 -0.250632 -0.292323 -0.019878 0.525574 0.149611 -0.392014 -0.767789 0.344299 -0.000484 -0.508887 0.163391 -0.873648 -1.569067 1.095668 0.505868 -0.575036 0.091827 -0.302289 -1.282575 0.537852 -0.245921 -0.554264 -0.122791 0.283341 -0.113519 0.260372 -0.046103 0.564830 -1.208836 -0.169666 -1.318494 0.595513 -0.865040 0.998492 0.733995 -0.486784 0.165048 0.173293 0.076656 0.441785 0.459790 0.935174 0.619319 0.579708 -0.522739 0.734906 0.671207 -0.509413 -0.675166 -0.269512 -0.742775 0.121181 0.242345 -1.088234 0.225511 -0.973231 -0.130158 0.135547 -0.121555 0.116287 0.888419 -0.858453 -0.673926 0.391256 -0.183452 0.687354 1.280062 0.048109 0.169362 -0.288651 0.738202 0.114545 0.242389 -0.279579 0.528623 -0.757458 -1.097086 -0.432908 0.084727 0.509130 -0.975290 -1.062409 -1.372429 -0.124860 -0.162548 -0.498949 0.683944 1.376541 -0.402553 -0.949595 0.533894 0.614768 -0.323058 0.840981 0.002651 2.010391 -1.429138 0.886125 -0.179206 0.333627 0.183156 0.909654 -0.400550 -0.629903 -0.101576 -0.569185 -2.179115 1.324052 0.238818 0.062054 0.929570 -0.025941 -0.097203 -0.750590 0.935062 -0.365458 0.966514 -0.758921 1.457258 -0.691829 -0.481325 0.426140 -0.301433 -0.445724 -0.618661 -0.311457 0.155235 1.209546 -0.200222 -0.429882 0.004761 -0.646104 0.065073 0.831604 -0.485143 -0.039985 -0.207383 -0.416291 0.435192 0.575992 -0.188327 0.306359 -0.853284 0.281900 0.532427 -0.119524 -1.345230 -0.317093 -1.167523 -0.151227 -0.353797 -0.228013 0.680765 -0.527449 -0.704881 0.155791 -0.162139 0.306026 -0.416132 -0.809436 0.313420 -0.361435 0.135200 0.117053 1.329162 0.714446 0.725371 0.201984 -0.654439 0.190154 -0.569048 -0.967325 0.122671 -0.017398 0.247009 0.439400 0.422355 0.198345 0.243553 0.324914 -0.313772 0.457395 0.762733 0.465805 0.859463 0.016895 0.125190 0.277703 -0.829256 0.720787 1.465666 -0.176394 -0.586634 0.199107 0.203908 -0.770699 -0.475475 -0.180121 -0.310329 -0.870475 0.636229 0.173041 0.098757 -0.551720 1.495370 0.338205 -1.532641 0.741321 -0.185816 0.265845 0.942116 -0.386063 0.771164 0.440314 -0.114966 0.305568 0.324847 0.929487 -0.806671 -0.526478 -0.306825 0.451842 0.460398 -0.177857 -1.453480 0.788165 0.419254 1.276155 0.483072 1.155429 -0.608304 0.568997 -0.084714 -0.176448 -0.052120 -0.154522 0.670027 -0.442817 -0.557737 -1.424620 0.565274 +PE-benchmarks/rotate-bits-of-an-integer.cpp___GLOBAL__sub_I_rotate_bits_of_an_integer.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/union-find.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/union-find.cpp__createGraph(int, int) = 1.050335 0.068458 1.221455 -1.383832 -1.755255 0.911332 -1.008551 -0.966094 0.397970 0.691266 1.206602 -0.951818 -0.285745 1.475307 -0.864662 -1.320159 0.347174 -0.006519 0.402795 -0.835831 0.170755 0.460425 -0.361022 -0.355797 -0.010082 -0.855595 -0.155470 0.959773 0.825767 0.445333 -1.293877 -0.174728 -0.210860 2.237456 0.526055 -0.634769 0.569848 2.768711 -0.674234 1.017343 -1.741330 -1.731743 1.442527 0.462169 0.099094 -1.112163 -1.739344 0.515217 -1.443656 0.123010 1.101773 -0.784309 0.809932 -0.134760 0.219111 1.317345 -2.954505 0.732138 0.010671 -0.596993 -0.457824 -0.031447 0.230009 0.784250 -0.374273 -1.038286 0.965308 1.736807 -0.322398 0.169143 -0.496227 -2.417827 2.357429 0.677914 -0.751265 0.054858 1.170903 -2.089575 1.373090 -0.707523 -2.064318 -0.221764 -0.087144 -1.087287 1.805986 -0.070457 1.884410 -2.666502 0.883981 -3.086436 1.382927 -1.573300 1.257657 1.725281 -1.947929 0.354206 1.280011 1.380775 1.579530 0.495368 2.250260 1.326258 0.427538 0.060464 1.436861 0.977928 -0.498899 -0.472628 -1.172812 -1.706935 -0.623256 -0.890242 -3.616219 0.320320 -0.882431 0.435253 -0.269385 -0.266004 0.028687 2.216642 -1.838460 -0.652349 0.308271 -0.288643 0.664671 1.519618 -0.389856 0.359379 -0.244291 2.316771 -0.994442 -0.177686 -0.224599 0.761837 -1.019662 -2.054900 -2.526219 0.928760 1.100470 -1.663789 -2.255220 -1.916386 -0.307902 0.888046 -0.388724 2.089555 3.498247 -0.763963 -1.810087 1.658112 0.627658 -0.570030 3.007644 0.437638 2.794094 -1.613735 0.384126 -1.385755 -0.198105 -0.488443 -0.275370 0.115441 0.026712 1.164395 0.415951 -1.145366 2.882380 -0.880401 -0.597807 -0.072618 0.285646 -0.590639 -0.952065 2.164537 0.235929 1.553952 0.412147 2.908317 -1.132608 -2.420935 0.794557 -0.725307 -0.349450 -0.418412 0.086332 0.117844 1.490295 -1.331657 -1.200649 -0.577412 -0.781057 -0.343909 0.938063 1.626550 0.622757 0.627583 -0.109055 0.910319 2.135080 0.622560 0.480784 -1.864772 0.417741 1.252713 -1.001710 -2.047970 -0.082696 -1.296310 0.352321 -0.182718 0.050293 1.333440 -1.350868 -1.159696 -0.634139 -0.307418 1.065567 0.245185 -1.966037 0.867181 -0.483543 0.741656 0.527406 1.586352 2.509675 1.942414 1.072507 -0.238806 0.460841 -0.583612 0.348971 0.122124 1.078681 0.651001 0.358727 2.120000 0.215389 0.623827 1.127335 1.341820 0.947028 1.517084 0.396742 2.575851 -0.457967 0.269044 -0.467983 -0.753328 1.669363 3.539238 -0.371178 0.291443 0.513762 0.903240 -0.456383 -2.400905 0.353066 -0.425163 -0.428101 0.569035 0.940411 0.077873 -1.077847 2.038105 0.993353 -2.880307 1.573618 0.099011 0.217765 1.469799 -0.633271 0.041163 0.360092 -1.013482 1.702953 1.254582 1.157446 -1.821013 -0.808691 0.014329 1.399335 0.026019 0.802842 -1.809570 1.401479 1.127476 1.615849 1.019346 1.540591 -1.782399 -1.085165 0.219758 -1.471506 -0.927513 0.417509 0.666456 -1.835234 0.997674 -1.174028 -1.346314 +PE-benchmarks/union-find.cpp__find(int*, int) = 0.702002 0.270554 0.750414 -0.858038 -0.652551 0.285309 0.334924 -0.787379 0.210402 1.921551 0.687012 -0.731043 -0.360964 1.627096 -0.455116 -0.686314 0.388654 -0.246193 -0.048171 -0.126020 -0.034742 0.619375 -0.202319 -0.593163 0.462671 -0.235900 0.119500 0.652879 -0.272712 0.013413 -0.787588 -0.203751 0.135868 1.704469 0.013612 0.053327 -0.090372 1.774339 -1.788462 1.958517 -1.983540 -1.630850 1.588834 0.218874 0.158062 -1.091661 -0.541061 0.750052 0.039405 -1.205526 0.417345 -0.406331 0.322867 -0.852476 0.172476 1.355986 -2.117390 0.315164 0.323407 -0.655810 -1.007701 -0.198544 0.727068 0.469224 -1.113899 -1.109319 0.376136 0.464820 -0.660946 0.230787 -0.827035 -1.998583 1.333530 0.309831 -0.804983 0.322005 0.059785 -1.499527 1.112846 -0.892215 -0.984943 -0.422390 0.399125 -0.602377 0.699275 0.633871 1.429622 -2.412103 0.509368 -1.981795 1.414891 -1.113855 1.331703 1.439074 -0.830766 0.549501 0.604281 1.306039 0.949571 0.240356 1.531028 0.874626 0.784712 -0.192380 0.922610 1.286114 -1.354861 -1.217207 -1.151123 -1.330260 0.371689 -0.377908 -1.977838 0.184485 -0.937715 0.280136 0.433185 -0.485388 -0.078164 1.838275 -2.543037 -0.386407 0.566565 -0.221719 0.928177 1.391916 -0.061165 0.249004 -0.201129 1.390919 -0.419414 -0.026902 -0.246836 0.794222 -1.309274 -0.957915 -0.741634 0.275633 0.488055 -1.470909 -1.538527 -2.558066 -0.200773 1.108226 -0.568287 1.472889 2.636265 -0.708877 -1.452428 1.047792 0.297065 -0.423297 1.481260 0.191523 2.414472 -1.824808 0.735005 -0.519619 0.384348 0.497119 1.788151 -0.113505 -0.822086 0.746199 -0.101603 -1.628275 1.942621 -0.105883 -0.104726 -0.388211 0.340979 -0.466507 -0.495233 1.645376 -1.183305 1.405550 -0.908919 2.263079 -1.400597 -1.093212 0.700610 -1.735124 -0.569921 -1.192792 -0.544869 0.086872 1.532573 -1.367590 -0.681405 -0.570924 -0.760894 -0.134739 1.157247 -1.083387 0.130157 -0.211194 -0.484918 1.647916 0.970336 -0.083239 0.118255 -1.437454 0.244589 0.948286 -0.387397 -2.046959 -0.169735 -1.397299 -0.127025 0.079512 -0.260412 0.954635 -1.152393 -0.713523 0.242687 -0.552007 0.178787 -0.578106 -1.501287 0.423552 -0.528935 0.700592 0.528048 1.733518 1.465828 1.409541 0.466764 -0.215609 0.202492 -0.912814 -0.985012 0.737134 0.304493 0.438540 0.759476 1.393850 0.330648 0.433011 1.017471 0.249715 0.332499 1.579992 0.341667 1.777563 -0.529402 0.211479 0.228199 -0.664091 1.129302 2.038124 -0.708221 -0.383902 0.642098 0.105310 -0.849872 -0.411617 -0.072237 -0.578711 -0.737269 0.819011 0.751340 -0.143965 -0.726866 2.275074 0.273379 -2.565298 1.161903 -0.088331 0.550881 1.270595 -0.585660 0.611553 0.648168 -0.235601 0.932498 0.767526 1.380682 -1.503511 -0.486240 -0.099469 1.099232 1.258138 0.140460 -2.835802 0.660429 0.673664 1.711351 0.417576 1.712669 -1.134940 0.270537 -0.195587 -0.638126 -0.255641 -0.277680 0.915470 -0.450991 0.160204 -2.191699 0.026641 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = 0.625307 0.491710 0.616957 -1.222245 -1.031699 0.229197 0.285793 -0.818665 0.241851 1.445990 0.989014 -1.051935 -0.550961 1.912981 -0.514724 -0.920649 0.319688 -0.556422 -0.198827 -0.043925 0.110747 0.760095 -0.188990 -0.551627 0.386940 -0.078043 -0.102862 0.746778 0.482383 -0.390887 -1.084940 -0.098999 0.282158 1.779412 0.016812 -0.215962 0.053634 1.970606 -1.737479 1.721799 -2.163733 -1.366839 1.681097 0.264267 -0.190432 -1.836972 -0.999318 0.827486 -0.229902 -1.034290 0.621341 -0.385178 0.267739 -0.800534 0.234214 1.756680 -2.453748 0.842913 0.465906 -0.303155 -0.611219 -0.177784 0.710057 0.479422 -0.884363 -1.195845 0.396008 0.336561 -0.821589 0.091652 -0.816802 -2.147196 1.944367 0.346849 -0.963870 0.328575 -0.050684 -1.943660 1.238381 -1.212262 -1.060538 -0.227456 0.529079 -0.200440 0.906056 0.304295 1.145145 -2.560571 0.039998 -2.174684 1.324300 -1.386524 1.319269 1.502338 -1.226329 0.381573 0.422553 0.733864 1.328146 0.462752 1.703861 0.872886 1.065759 -0.337198 0.895952 1.325123 -1.129672 -1.035028 -1.025072 -1.593866 0.167838 -0.156047 -2.742954 0.299352 -0.993637 0.105046 0.463252 -0.653338 0.064029 1.902281 -1.991238 -0.599336 0.518131 -0.218347 0.915851 1.989581 -0.104756 0.256587 -0.437678 1.550919 -0.215179 0.294983 -0.278864 0.745004 -1.266708 -1.848974 -1.081775 0.309406 0.520637 -1.515959 -1.651897 -2.553154 -0.047523 0.509252 -0.665586 1.222788 2.800650 -0.769307 -1.759506 1.354846 0.808868 -0.291821 1.728774 -0.029997 2.924162 -1.915295 0.809256 -0.473258 0.225316 0.241703 1.649738 -0.138212 -0.853834 0.460760 -0.209952 -2.474998 1.890675 0.054683 -0.192037 0.053520 0.245503 -0.620926 -0.971615 1.868224 -0.571650 1.645612 -0.734997 2.413772 -1.442621 -1.503446 0.965971 -1.062462 -0.436627 -1.101653 -0.738500 0.439651 1.557012 -1.265406 -0.619378 -0.564617 -0.579955 -0.412302 1.147048 -0.809165 0.164989 -0.179152 -0.315919 1.231324 1.278905 -0.231570 0.483396 -1.631930 0.370085 1.198487 -0.364979 -2.486705 -0.073924 -1.596985 -0.095765 0.275847 -0.438884 0.972149 -1.006787 -0.974573 0.291617 -0.663859 0.488215 -0.528183 -1.602279 0.520390 -0.903210 0.715134 0.427433 1.860528 1.598169 1.506530 0.570790 -0.262031 0.309066 -0.872371 -0.751806 0.523921 0.257743 0.307043 0.899415 1.592171 0.375185 0.422318 1.286197 0.391250 0.104868 1.680368 0.500430 2.043433 -0.381357 0.066988 0.111257 -0.868074 1.297058 2.672793 -0.620637 -0.520884 0.685419 0.405128 -0.725341 -1.014406 -0.156728 -0.601151 -0.999063 1.210631 0.514063 -0.146413 -0.675107 2.392036 0.251226 -2.633130 1.332377 -0.110128 0.558595 1.028309 -0.602067 0.434710 0.784665 -0.634594 0.893660 0.904190 1.513718 -1.398185 -0.978262 -0.137781 1.206206 1.014774 0.274080 -2.945337 0.739454 0.995375 1.971127 0.600582 1.731390 -1.177698 -0.048532 -0.069215 -0.363820 -0.314342 -0.447061 0.858029 -0.989472 0.057483 -1.960042 -0.121884 +PE-benchmarks/union-find.cpp__isCycle(Graph*) = 2.573779 0.173751 2.348132 -2.645386 -2.227779 1.642238 -1.022990 -2.569521 0.705333 5.074459 1.791057 -1.842774 -0.587422 3.863587 -1.853222 -2.413591 1.231033 0.319129 0.880517 -1.514340 0.040826 1.237261 -0.692673 -1.712004 0.547724 -1.837696 0.542791 1.668550 -0.238560 1.590386 -2.471431 -0.725711 -0.222202 5.147754 0.848593 -0.305068 -0.024240 5.302816 -3.384163 4.670943 -5.306565 -4.972644 3.855405 0.977534 1.050348 -2.221786 -2.025757 1.247037 -1.114036 -1.603476 1.236391 -1.934854 1.650048 -1.520283 0.267528 2.976362 -5.749111 0.742904 0.131476 -2.167852 -2.487939 -0.584742 1.886829 1.992721 -2.708067 -2.774016 1.668748 3.180773 -1.443448 0.948107 -2.293506 -5.634557 3.263164 1.528674 -2.268870 0.194203 1.141142 -4.336488 2.715881 -2.075592 -3.604586 -1.183029 0.487917 -2.351136 2.459235 1.700363 5.146320 -6.647910 2.511723 -6.332063 3.821564 -2.929941 3.873539 4.057867 -2.768095 1.223017 2.434003 4.599212 3.025530 0.381917 4.511113 3.130658 1.282581 -0.483707 3.109191 3.374374 -2.720543 -2.663679 -2.530412 -3.280776 -0.208230 -1.957519 -6.286250 0.379032 -2.900563 1.057593 0.119210 -0.926429 -0.740535 5.169357 -7.320922 -2.384400 0.916585 -0.731232 2.654047 2.730448 -0.288476 1.145650 -0.063657 4.503411 -1.692764 -1.060987 -0.791576 2.148302 -3.934052 -2.424749 -3.810582 1.539697 2.131143 -4.289117 -5.035680 -6.194342 -1.357767 3.495958 -0.973552 5.376428 7.471094 -1.671991 -4.049699 2.838594 -0.472190 -1.689408 5.870651 1.027374 6.217593 -4.875475 2.143554 -2.276692 1.143280 0.467160 3.261479 -0.416184 -1.367129 2.745381 0.015100 -2.131887 4.846128 -1.340811 -0.580080 -2.543506 0.750664 -1.132647 -0.748242 4.629013 -4.123269 3.632002 -1.882035 6.419542 -3.806957 -3.973023 1.626718 -5.567102 -1.767186 -1.993465 -0.144853 -0.497286 4.487240 -4.062686 -2.615021 -1.255926 -2.265330 -0.002562 3.148744 -0.705697 0.456072 0.211848 -1.286689 5.410479 3.359145 0.698612 0.302413 -3.592252 0.761202 3.054440 -1.671217 -5.048155 -0.599880 -3.508157 0.077843 -0.697827 -0.040322 2.962460 -3.693418 -2.174135 -0.643706 -0.978519 1.477583 -0.805803 -4.343662 1.950388 -1.124691 1.741681 1.317865 4.495781 4.395473 4.099530 1.619943 -1.209224 0.882472 -2.821454 -1.176649 2.012496 2.363304 0.770604 1.277953 4.654581 0.318752 1.348181 2.670726 1.822171 1.686216 3.779315 0.345956 4.963934 -1.776048 1.136944 -0.091918 -2.125615 3.239806 6.776841 -1.559671 -0.278935 1.540118 0.361079 -1.877028 -2.584352 0.245327 -1.337950 -1.477535 1.181512 2.712683 -0.200431 -2.661552 5.876074 1.904392 -7.035845 3.628295 0.121601 0.827922 4.088149 -2.131294 1.050752 1.223884 -0.871178 3.355701 2.381885 3.152001 -4.298536 -1.074762 -0.214303 3.070659 2.827814 0.409285 -5.854438 2.672747 2.370678 4.656305 1.975127 4.663329 -3.562851 -0.159838 -0.419728 -2.811908 -1.306043 -0.133923 2.365403 -2.053672 1.507422 -4.596254 -1.221940 +PE-benchmarks/union-find.cpp__main = 0.192601 -1.506596 1.967245 -2.522807 -2.999760 1.790265 -2.513934 -1.992425 0.877669 0.002500 1.401145 -1.365759 -0.674609 3.840258 -0.762580 -3.121648 -0.031170 1.549203 0.900067 -0.223150 0.365647 1.089672 -0.877406 0.538393 -0.528694 -1.490570 0.362266 1.722686 2.269925 1.202434 -2.359288 -1.017837 -1.485512 3.712296 1.288031 1.019482 1.165243 5.798004 -0.664778 4.928877 -2.801541 -2.751431 1.271567 0.460895 -0.563955 -1.010046 -3.126092 0.742124 -4.369625 0.021181 3.074111 -0.934218 1.167214 0.673799 2.084696 1.093640 -4.248064 1.223111 0.048024 -0.292316 0.393648 -1.231758 -0.824680 1.540749 -2.713966 -1.229598 1.454224 2.910535 -1.179320 -0.088823 -0.427679 -4.054311 5.363853 1.687893 -2.928808 0.054989 3.252676 -3.122642 2.307926 -0.810428 -4.578244 -0.278544 -0.848926 -2.624477 4.277586 0.151094 3.389393 -5.067118 2.162849 -5.620675 2.413225 -3.363529 1.982527 4.150218 -4.344595 0.590860 2.572515 4.304151 2.524825 0.129996 3.143505 2.522269 -0.946949 0.692884 3.280917 1.016094 -1.247631 -1.513099 -2.343026 -3.288744 -0.710144 -2.902728 -6.884618 -0.068799 -0.501374 2.630487 -1.116986 1.180807 -0.987647 2.198461 -4.565621 0.000000 0.196908 -0.662184 1.832332 2.691297 -1.496395 1.485505 -0.589242 4.281825 -2.673883 0.081254 -1.301255 1.219377 -1.934920 -0.004959 -4.943835 1.395025 2.180070 -1.883168 -4.103696 -3.665948 -1.741957 2.778713 -0.151898 4.937374 6.211597 -1.982006 -2.787880 3.599263 -0.513451 0.582176 4.665741 0.925006 3.340848 -1.689875 -0.021886 -3.489798 -0.983494 -1.611453 0.083960 1.250706 -0.278186 2.335226 -0.127510 -1.578634 5.509859 -1.603157 -2.498886 -4.090254 0.286075 -2.006027 -1.616387 5.079191 -3.491848 2.091438 -0.382826 4.918327 -1.740080 -3.263870 1.070860 -3.519157 -0.055847 -2.349633 -0.588206 -0.156697 2.967023 -3.648058 -2.217523 -0.881126 -1.255893 -0.794644 0.585510 2.730056 0.172391 1.229019 1.355201 4.845521 5.074481 1.984218 -0.399924 -3.112373 1.233069 2.147459 -2.663946 -2.130758 0.719681 -1.841457 0.031307 -0.896195 0.228839 1.052973 -3.879566 -2.213274 -2.702288 -0.519331 2.582825 1.755370 -6.575750 1.314125 0.445512 1.485411 2.801092 1.398007 4.388249 3.574841 3.710863 -0.177981 0.726870 -0.228797 0.147871 1.002433 2.713059 1.211441 0.722398 4.424686 1.472643 0.477369 1.668178 3.321358 2.098313 2.457013 1.278545 5.313626 1.118227 0.078096 -1.075287 -0.423366 2.702707 6.761195 -1.934749 3.093519 1.644106 2.032916 -0.550572 -4.356657 0.425412 -1.508064 -0.444082 1.143601 0.046675 -0.167129 -1.485767 3.623325 0.717327 -4.524547 1.280011 0.360899 0.888776 2.934507 -0.489611 -0.215301 0.536141 -3.549655 4.737376 2.179387 1.516921 -2.261294 -0.353751 -0.340205 0.970534 2.572772 2.112674 -1.176998 2.167784 1.684699 3.736713 2.274615 1.777388 -2.350927 -1.677850 0.915478 -3.751794 -1.250380 -0.104671 1.434525 -1.411039 1.143854 -2.566455 -5.263977 +PE-benchmarks/union-find.cpp___GLOBAL__sub_I_union_find.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/longest-increasing-subsequence.cpp___lis(int*, int, int*) = 1.587911 0.989464 2.225496 -2.924142 -1.012775 0.505860 2.285746 -1.768419 0.649700 5.884281 1.366657 -1.166942 -2.490700 3.039208 -0.994629 -2.095506 1.887246 -1.017105 0.010911 -0.989198 -0.128589 1.446151 -0.302733 -1.723026 1.499163 -1.031423 0.642494 2.245875 -0.267990 0.025608 -1.768662 -0.566965 0.258813 4.612954 -0.364815 0.364507 -1.013107 4.423080 -4.346719 4.793433 -5.887146 -4.372759 4.420975 0.542169 0.302056 -4.596246 -0.421680 1.712763 0.154102 -3.289782 0.583414 -1.256062 1.304140 -2.830230 0.124548 4.075107 -5.277222 0.176618 0.666068 -2.097068 -2.859658 -0.570098 2.707543 1.229013 -2.998006 -2.966312 1.113651 0.001313 -2.446142 1.229896 -2.582216 -4.831031 1.975575 1.298981 -2.154270 1.063349 -0.104627 -4.398744 2.459640 -1.968609 -1.943478 -1.547326 1.342286 -1.483691 1.577106 1.146465 3.579652 -6.333344 0.549522 -4.695902 3.457822 -2.958822 4.018988 3.630030 -0.999803 1.960586 1.194068 2.415549 1.379592 -0.800966 3.997225 2.342156 3.320183 -0.815118 2.703659 3.147708 -3.787517 -3.723698 -2.758535 -2.955501 0.849113 -1.347355 -4.770242 0.172899 -3.217283 -0.548495 1.857097 -1.762239 -0.847665 4.848658 -6.765742 -1.426347 1.667374 -0.817597 2.503116 3.772025 0.281717 0.428157 0.284246 3.707028 -0.831977 0.437261 -1.005355 2.167536 -2.717295 -2.010787 -0.903956 -0.111690 1.041032 -3.590581 -4.284263 -6.243657 -1.316829 2.320221 -1.031418 3.188931 6.733807 -1.335144 -4.165345 2.328002 -0.565859 -0.672915 3.295728 0.653698 5.960073 -5.214879 2.540908 -1.646538 2.019929 1.981109 7.061022 -0.753581 -2.402494 2.020661 -0.937394 -3.321202 2.723287 -0.626299 0.492968 -0.978076 0.483309 -1.596990 -1.509686 4.032807 -4.364964 4.634827 -2.919555 5.501734 -4.072158 -3.070032 1.584038 -4.922515 -1.433051 -3.401591 -1.339647 0.247953 3.818859 -3.497993 -2.170347 -2.332439 -1.664073 0.307405 3.424376 -4.874429 -0.036653 -1.232648 -1.410158 4.937076 1.916226 -0.634527 0.142160 -3.513554 0.866116 2.416445 -0.092537 -5.162087 -0.392753 -3.396873 -0.703442 0.502871 -0.494260 2.707801 -2.207342 -1.936799 1.204919 -1.512371 -0.332806 -2.190750 -5.367422 1.179212 -1.172169 0.940991 0.899281 4.832563 3.691130 2.966874 0.298977 -1.262690 0.929614 -2.842895 -3.513335 1.715267 0.509836 0.651246 1.801557 3.168715 0.802231 0.965402 3.140728 0.852044 0.419685 3.904586 0.759154 4.014902 -1.304645 0.129156 1.229895 -2.394434 2.281713 4.805390 -0.319803 -1.218070 2.118598 0.607872 -2.225073 -1.809376 -0.607002 -1.724033 -1.554189 2.937308 2.291606 -1.311960 -1.775831 6.331481 0.870823 -7.055644 3.085273 -0.353750 1.268200 3.216433 -1.823566 1.419883 2.171876 -0.593748 2.235121 1.291168 3.351922 -3.829555 -1.014756 -0.187310 2.738970 3.156245 -0.624424 -8.392792 0.408024 1.061070 5.213344 1.893315 5.964919 -2.293401 1.493351 -0.744897 -1.527520 -0.731080 -1.135723 2.589520 -1.096199 -0.364220 -6.530446 1.418119 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.264874 0.269929 0.197495 -0.593999 -0.551947 0.030208 0.124741 -0.264216 0.066582 0.120328 0.478249 -0.573207 -0.268708 0.954312 -0.209363 -0.411767 0.060267 -0.466276 -0.233409 0.143056 0.078037 0.307560 -0.066710 -0.139160 0.063899 0.159481 -0.135843 0.282518 0.420679 -0.427311 -0.630182 0.018182 0.191586 0.680152 0.018935 -0.232209 0.131140 0.891360 -0.581194 0.652817 -0.774357 -0.304984 0.556411 0.071758 -0.198050 -1.045296 -0.682896 0.425909 -0.197617 -0.327503 0.407538 -0.035183 -0.115375 -0.252792 0.182452 0.827982 -1.121880 0.646577 0.281369 0.239533 0.048882 -0.105589 0.173912 0.079871 -0.172554 -0.467866 0.160964 0.040269 -0.415064 0.017971 -0.328250 -0.862290 1.046549 0.161376 -0.405094 0.131932 0.036386 -0.864905 0.565377 -0.724653 -0.465883 0.063313 0.174479 0.143896 0.592389 -0.062767 0.126279 -0.992231 -0.135007 -0.918025 0.366757 -0.802542 0.357090 0.655603 -0.620230 0.059133 0.039293 0.002467 0.641204 0.397918 0.670297 0.355978 0.445748 -0.198051 0.393978 0.419421 -0.290728 -0.291743 -0.331340 -0.734916 -0.072624 0.075389 -1.328827 0.197981 -0.262613 0.043470 0.132259 -0.154569 0.105519 0.501131 -0.488406 -0.251050 0.182085 -0.084064 0.336382 1.054564 -0.181058 0.116096 -0.427801 0.653778 0.086831 0.335365 -0.095335 0.194465 -0.423707 -1.161330 -0.624488 0.132130 0.254829 -0.478964 -0.695915 -0.969213 0.099230 -0.109220 -0.331255 0.394397 1.088672 -0.267535 -0.679448 0.701612 0.702299 0.084229 0.732417 -0.127469 1.316897 -0.667060 0.278686 -0.036239 -0.057543 -0.166433 0.152635 -0.034689 -0.327112 0.027409 -0.108127 -1.426442 0.838633 0.103514 -0.149943 0.316944 0.008978 -0.303813 -0.649504 0.908647 0.192592 0.671843 -0.058971 0.953678 -0.442639 -0.655149 0.493257 0.014350 0.058531 -0.440668 -0.379693 0.278025 0.582846 -0.455967 -0.217879 -0.122488 -0.131335 -0.322225 0.375556 -0.066759 0.061707 -0.029558 0.112258 0.158489 0.674010 -0.180332 0.446358 -0.781339 0.212676 0.482089 -0.166099 -1.084543 0.121436 -0.609069 -0.015773 0.175727 -0.227711 0.218478 -0.332563 -0.550052 0.171905 -0.307756 0.316392 -0.089606 -0.492554 0.131937 -0.472027 0.306538 0.194307 0.686446 0.689426 0.573644 0.352008 -0.124607 0.125180 -0.167301 -0.206650 0.029333 -0.018340 0.118198 0.374182 0.538365 0.164998 0.063731 0.528244 0.212894 -0.134047 0.645337 0.437940 0.866654 0.064682 -0.090352 -0.026093 -0.426692 0.578510 1.255250 -0.332177 -0.175931 0.281893 0.293760 -0.201940 -0.571746 -0.162517 -0.247205 -0.588233 0.616247 -0.044043 -0.080122 -0.121178 0.874994 -0.017243 -0.948689 0.407502 -0.023862 0.217899 0.309246 -0.161572 0.141145 0.344436 -0.471983 0.332117 0.363928 0.593066 -0.378820 -0.606567 -0.068504 0.401570 0.204639 0.215820 -1.027356 0.342496 0.535057 0.808441 0.282041 0.439038 -0.449323 -0.195319 0.069219 0.000411 -0.135517 -0.217022 0.383149 -0.593840 -0.106161 -0.564056 -0.254240 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__merge(Node*, Node*) = 0.562134 0.074191 3.499268 -3.149988 -4.421912 1.383947 -0.907504 -2.149150 1.189807 3.279444 1.686908 -1.718632 -0.995335 5.131433 -1.647513 -2.833996 -0.452997 -0.102108 0.423329 -1.212340 0.711467 2.081449 -0.707067 0.769364 -0.383403 -1.733909 0.535108 2.162978 0.619214 1.043748 -1.971861 -1.231894 -0.841342 4.227061 0.579203 0.730884 0.400561 6.539220 -3.281145 5.983530 -4.851368 -4.745362 1.958751 0.659559 0.396236 -3.347505 -3.214119 1.415005 -2.091295 -1.167222 3.171053 -0.245120 1.120508 0.100688 2.538343 1.135005 -5.446244 1.120452 -0.008247 -1.796756 -0.504317 -0.847778 -0.203338 2.539439 -3.713190 -1.773630 1.498398 2.931954 -1.259163 0.637238 0.100350 -5.036612 4.737686 1.407863 -3.199484 0.567141 3.932898 -4.210112 3.760677 -2.513551 -4.813714 -0.409078 -0.469611 -3.242273 3.737458 0.596920 4.273170 -6.279089 2.501995 -5.975321 3.518655 -3.931009 1.964150 4.440911 -3.182179 1.194984 2.899104 4.861807 4.105097 -0.141520 3.729449 3.872437 1.795957 1.299894 3.533880 2.692702 -2.714930 -2.537615 -4.180940 -4.734390 0.230314 -3.129004 -7.091548 -0.009015 0.563430 1.029247 -0.112078 -0.314033 -0.514833 4.783320 -6.875429 0.035812 1.651683 -0.614281 1.021824 3.243781 -1.749459 1.628216 -0.533844 4.965345 -3.243152 1.055089 -0.296171 1.496298 -3.625342 -0.494926 -4.785057 1.756779 1.608738 -2.418385 -4.094155 -5.720448 -1.503402 3.860620 -0.584503 4.936953 8.005266 -2.448360 -4.309584 4.006146 0.994743 -1.335183 4.129065 0.952989 4.631210 -2.311391 -0.398987 -4.339731 -1.049470 -0.507808 4.899133 2.009480 -0.690762 3.084381 -0.101056 -4.377590 5.711664 -2.253124 -2.528462 -3.967114 1.055563 -2.515208 -1.005715 5.250014 -4.277689 3.336476 -1.800990 5.681025 -2.610609 -3.596419 1.000147 -6.009845 -0.080741 -3.570255 -0.601081 0.594941 4.116703 -4.072384 -2.055706 -1.995483 -3.128907 -0.949580 0.706956 -1.982031 0.833587 1.037146 1.446959 6.236825 5.645583 2.437861 -0.591941 -3.993671 1.505660 2.013660 -1.720780 -4.332980 0.337481 -2.774277 0.002833 -1.279880 -0.216917 1.544536 -3.635195 -2.173346 -2.210848 -2.202681 1.219073 0.811646 -7.086381 1.150319 -0.336380 3.734772 1.991526 2.043468 5.574068 4.558570 4.442356 0.107255 0.757721 -1.386915 -0.499121 2.058746 3.238405 -0.372079 1.293146 5.892158 1.751291 0.640258 3.245065 3.640286 1.621078 3.427060 -0.004768 6.260835 -0.352810 0.455296 -1.315223 0.200272 2.864625 7.899910 -0.358180 2.298427 2.021700 1.833868 -1.514328 -3.140986 0.330575 -2.085060 0.016045 2.184146 1.812420 -1.189612 -1.146953 4.315544 0.992802 -5.910458 1.455819 -0.076617 1.251876 3.721389 -0.876907 0.181788 1.174613 -3.211128 5.154214 2.684384 2.006299 -3.678634 -1.919631 -0.255742 1.710081 3.956909 2.584937 -5.709250 1.991862 2.072659 4.368041 0.910303 4.711736 -3.754702 -1.577902 1.715811 -3.596173 -2.091022 0.556251 2.024318 -2.091967 1.610402 -4.151245 -4.764628 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 0.378933 0.928954 1.450929 -1.412368 -2.425543 0.406253 -0.144984 -0.892009 0.315670 1.746111 0.864693 -0.961947 -1.250760 2.050189 -0.938614 -1.491903 -0.504368 -0.909126 -0.106134 -0.873909 0.171898 1.057671 -0.211411 0.410947 -0.029079 -0.500651 -0.183355 0.906982 0.893215 -0.296405 -0.820893 -0.344340 0.062689 1.837795 0.050608 -0.194785 0.263503 2.912933 -1.310669 1.609155 -2.498699 -2.254357 1.044617 0.285850 0.142110 -2.210213 -0.982920 0.999449 -1.176570 -0.241015 1.385304 0.091487 0.118119 -0.085875 1.036635 0.961218 -3.135065 1.696073 0.103450 -0.658626 -0.149534 -0.181063 -0.007269 0.932269 -0.500627 -0.988971 0.415209 1.036395 -0.921064 0.329342 0.066547 -1.963905 2.238202 0.400515 -1.378560 0.410593 1.353172 -1.581311 1.737515 -2.181064 -1.960351 -0.068802 0.347778 -0.530269 1.497534 0.379504 1.103669 -2.842712 0.410581 -2.527422 1.544467 -1.681650 0.859845 1.794179 -1.245887 0.517977 1.025455 0.458164 2.138790 -0.023974 1.858170 1.168264 1.608696 0.739275 0.784600 1.264012 -1.154318 -0.795437 -1.748642 -2.323849 -0.027268 -0.480903 -2.937161 0.119122 0.187485 0.461095 0.563901 -0.622279 0.036290 1.816208 -2.797938 -0.716124 0.740268 -0.222323 0.783013 1.809226 -0.677337 0.770518 -0.318434 2.270511 -1.135267 0.815310 0.024262 0.634630 -0.872458 -1.634395 -2.550706 0.741868 0.620401 -1.056705 -1.646409 -2.407663 -0.261509 0.696974 -0.509960 1.657818 3.725919 -1.138969 -2.138613 2.109864 0.452166 -0.339666 1.903523 0.163013 2.519585 -1.089094 -0.230085 -1.411163 -0.582283 -0.069926 2.316903 0.844357 -0.457407 0.931354 0.390922 -1.869731 0.821080 -0.717872 -1.172201 -1.088584 0.389584 -1.090020 -0.593858 1.904499 -0.736580 1.684559 -0.417950 2.577689 -1.262271 -2.149437 0.683240 -1.916414 0.117689 -1.115853 -0.623610 0.742171 1.461686 -1.794078 -0.663576 -0.967939 -1.111003 -0.881621 0.289475 -0.917820 0.563097 0.454641 0.735343 2.276648 2.533117 0.750803 0.099095 -2.097307 0.641664 0.738366 -0.345515 -2.621541 0.176246 -1.332382 0.009064 0.568961 -0.439658 0.699994 -0.660738 -0.941148 -0.515641 -1.339163 0.724763 0.238849 -1.978058 0.455032 -0.652001 1.553771 0.539907 1.142079 2.362572 2.001845 1.862971 0.307099 0.439526 -0.640149 0.592714 0.564881 1.180128 -0.230113 0.886392 2.187901 0.893458 0.294219 1.764481 1.453346 -0.159129 1.765419 -0.242050 2.981216 -1.055002 0.252751 -0.717762 0.045556 1.251332 3.530444 -0.573418 0.328356 0.936158 0.868691 -0.220804 -1.387092 0.042285 -1.095099 -0.100491 1.334888 0.995326 -0.679256 -0.328877 1.937380 0.228746 -2.535323 1.245319 -0.086223 0.522522 0.940556 -0.300648 -0.393876 0.802099 -1.810013 1.540101 1.445831 1.195398 -1.686182 -1.216047 -0.158662 1.273267 0.832081 1.259314 -3.172820 0.155194 1.334390 1.876968 0.435498 2.073909 -1.714048 -1.473408 0.953667 -1.025133 -1.006468 0.297008 0.862946 -1.298973 0.766222 -1.172409 -1.714898 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__split(Node*) = 0.598982 -0.202816 1.946016 -2.112192 -2.526427 1.031539 -0.420980 -1.314643 0.773198 1.964945 1.086935 -0.919332 -0.702705 3.351562 -0.804786 -1.759557 0.244477 -0.550869 0.469981 -0.119429 0.380563 1.385508 -0.505288 0.480338 -0.170512 -0.756214 0.103886 1.239279 0.420503 0.431669 -1.868878 -0.729359 -0.868035 2.727670 0.476891 0.191898 0.489860 4.396858 -2.202257 4.176745 -2.904489 -2.636139 1.041780 0.309003 0.129781 -1.970929 -1.920680 0.877669 -1.243031 -0.950184 2.338767 -0.380318 0.656210 0.213827 1.737577 0.943556 -3.596160 0.674595 0.160654 -0.317360 0.076071 -0.778699 -0.072755 1.456966 -2.386992 -1.082877 1.186874 1.518484 -0.980465 0.237450 -0.313452 -3.282718 2.856668 1.223061 -2.154029 0.228769 2.479893 -3.073490 2.361865 -1.909676 -3.236735 -0.070149 -0.593570 -2.088965 2.820723 0.127424 2.589362 -4.101337 1.781753 -3.951637 2.055596 -2.760161 1.310919 3.203748 -1.996880 0.509705 1.771438 3.368031 2.502790 -0.127419 2.523225 2.575764 0.748660 0.540902 2.337508 1.647602 -1.769501 -1.474915 -2.436737 -2.738848 -0.021431 -1.850721 -4.433376 0.080377 0.204340 0.880900 0.009186 0.055004 -0.602035 2.682378 -4.285265 -0.230238 0.700489 -0.427829 0.974798 2.401071 -1.217147 1.009720 -0.565643 3.352261 -1.899667 0.821445 -0.486236 0.943188 -2.449366 -0.152887 -2.921805 0.924758 1.222523 -1.666561 -2.841938 -3.883008 -0.851285 2.071105 -0.338487 3.556027 5.063006 -1.538525 -2.412380 2.789554 0.333899 -0.491843 2.777751 0.383456 2.799427 -1.509412 -0.063997 -2.510929 -0.481363 -0.952778 2.676318 1.265138 -0.307545 1.607657 -0.223711 -2.565240 3.649357 -0.961151 -1.672067 -2.568242 0.400633 -1.621768 -1.009030 3.642777 -3.032090 1.816958 -0.801278 3.665278 -1.427285 -2.053445 0.897695 -3.365512 0.183471 -2.588934 -0.716485 0.436412 2.474768 -2.633892 -1.307277 -1.131693 -1.558956 -0.716647 0.381637 -0.911498 0.440132 0.681119 1.033740 4.076853 3.666905 1.436025 -0.194952 -2.555233 1.014962 1.232100 -1.587454 -2.464482 0.384558 -1.785212 0.006163 -0.540929 -0.185741 0.828789 -2.621666 -1.885930 -1.216668 -1.042741 1.018062 0.734862 -4.867899 0.668653 -0.010784 1.968053 1.591904 1.226590 3.187074 2.887673 2.857947 -0.291797 0.468097 -0.425836 -0.700958 1.030978 1.757557 0.008743 0.759536 3.480205 1.160291 0.302812 1.713697 2.245102 1.005184 2.160257 0.409871 3.845791 0.346261 0.060253 -0.664371 -0.350525 1.921709 4.840334 -0.719818 1.680928 1.274614 1.121793 -1.057816 -1.851545 0.302560 -1.518671 -0.148234 1.045490 0.643526 -0.571654 -0.846820 2.812873 0.399524 -3.868689 0.740068 -0.023355 0.937512 2.670641 -0.307282 0.349204 0.550791 -2.401014 3.688938 1.634576 1.339885 -1.813721 -1.061599 -0.199136 0.825563 2.275422 1.582140 -3.161389 1.276574 1.244130 2.875903 1.121461 2.689775 -2.119098 -0.775807 0.889983 -2.416457 -1.196516 -0.005006 1.643014 -1.218359 0.797156 -2.785923 -2.913118 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__insert(Node**, int) = 0.429029 0.445627 2.290061 -2.152710 -3.051382 0.607498 -0.116800 -1.217211 0.593074 1.624197 1.294213 -1.256893 -0.685066 3.390967 -1.118971 -1.650144 -0.375594 -0.827716 -0.101826 -0.841285 0.417900 1.442083 -0.431511 0.536237 -0.084245 -0.869928 0.077700 1.588743 0.551046 0.019494 -1.195185 -0.655639 -0.292630 2.686284 0.245397 -0.120969 0.407130 4.370284 -2.396520 3.082038 -2.899340 -2.709785 1.510711 0.288065 -0.090405 -2.787170 -2.508186 1.123314 -1.188301 -0.546509 2.099696 0.082433 0.475292 -0.072367 1.529170 1.155844 -3.908244 1.132219 0.264027 -0.887806 -0.265082 -0.499110 -0.215844 1.184419 -1.886243 -1.235825 1.021397 1.477161 -0.734795 0.359901 0.112174 -3.131846 3.239872 0.728263 -1.637989 0.560161 2.346990 -2.936350 2.589287 -1.734106 -2.978785 -0.191592 -0.166200 -1.850999 2.582344 -0.078417 2.072151 -3.981656 1.067550 -3.802941 1.892296 -2.820046 1.029001 2.800368 -2.188552 0.894078 1.607538 2.355095 2.561783 0.102416 2.518331 2.256635 1.534167 0.967006 2.140004 1.696453 -1.602357 -1.420552 -2.794672 -3.115983 0.120714 -1.658402 -4.678527 0.269161 0.451051 -0.103910 -0.013734 -0.422464 -0.081209 3.289463 -3.507691 0.342340 1.256930 -0.404862 0.271502 2.540352 -1.147890 0.776996 -0.785402 3.119008 -1.819408 1.249737 -0.137258 0.920643 -1.950926 -1.503824 -3.082386 0.940305 0.867354 -1.520281 -2.577478 -3.471509 -0.594682 1.642925 -0.614624 2.687338 5.164348 -1.597206 -2.916628 2.847901 1.699372 -0.614606 2.501575 0.478903 3.311325 -1.323899 -0.511066 -2.559936 -0.977484 -0.346517 2.388621 1.234374 -0.367588 1.746040 0.124567 -3.461504 4.104085 -1.328618 -1.619266 -1.236784 0.770946 -1.642170 -1.216847 3.463941 -1.087202 2.360870 -0.623234 3.690700 -1.449215 -2.483209 0.774302 -2.756814 0.291063 -2.343072 -0.494889 0.632058 2.368414 -2.096256 -1.303966 -1.373703 -1.794417 -0.879010 0.435656 -1.023166 0.799489 0.653323 1.122452 2.646801 3.765873 1.216119 0.125559 -2.854889 1.023011 1.383102 -0.753173 -3.309470 0.358281 -1.591881 -0.008145 -0.573493 -0.237792 1.023645 -1.965573 -1.424378 -0.965311 -1.434433 0.610047 0.535301 -4.327589 0.687913 -0.700931 2.339381 1.085381 1.377043 3.814684 2.781810 2.731535 0.259971 0.427142 -0.646758 -0.273234 0.946181 1.657490 -0.043519 0.988819 3.651973 1.282460 0.450776 2.128427 2.274214 0.717946 2.276989 0.320826 4.204919 -0.198405 0.032380 -0.921007 0.226730 2.003203 5.094684 0.236605 1.004377 1.316320 1.448774 -0.921720 -2.438447 0.097298 -1.247235 -0.051833 1.698205 1.017735 -0.968952 -0.420358 2.787180 0.401700 -3.761559 0.981162 0.038425 0.903033 1.849971 -0.326070 0.060847 1.032136 -2.181970 3.007693 1.744136 1.428752 -2.308083 -1.569382 -0.077653 1.306637 1.876809 1.900556 -4.280583 1.354864 1.394812 2.604763 0.384003 2.951482 -2.355113 -1.314284 1.262840 -1.795461 -1.318125 0.672888 1.290387 -2.042316 1.044890 -2.453979 -2.850420 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__print(Node*) = 0.481654 0.696498 1.830371 -1.538668 -2.538929 0.795642 -0.930904 -1.245626 0.514366 2.277321 0.760447 -0.967126 -1.418520 2.397220 -1.289808 -1.964532 -0.600746 -0.510395 0.203419 -1.344361 0.194818 1.032437 -0.262838 0.392004 -0.138549 -1.025962 0.104093 0.920200 0.935659 0.072835 -0.932666 -0.486408 -0.204465 2.314156 0.217014 0.263435 0.317124 3.392381 -1.027366 2.267393 -3.163229 -3.095224 1.080340 0.458124 0.404807 -1.825144 -0.851252 0.928784 -1.995428 0.064018 1.503580 -0.194539 0.214383 -0.014857 1.229309 0.804941 -3.656764 1.942506 -0.241199 -1.002909 -0.377733 -0.318619 0.136815 1.246559 -0.612087 -1.093890 0.629643 1.895330 -1.375554 0.572602 0.069469 -2.312259 2.448084 0.588701 -1.740396 0.350692 1.790929 -1.445266 1.838408 -2.589660 -2.419712 -0.257454 0.447348 -1.005367 1.762236 0.956042 1.750599 -3.442746 0.998091 -3.072617 2.065794 -1.726154 1.309378 2.080861 -1.581652 0.648783 1.485767 1.141887 2.403545 -0.177039 2.172176 1.410071 1.352793 0.862866 1.123330 1.301955 -1.310848 -0.937226 -1.886015 -2.618034 -0.245148 -0.967069 -3.326171 -0.129461 -0.079672 1.176928 0.421874 -0.400266 -0.270874 1.795523 -4.203490 -1.228205 0.586438 -0.269836 1.302572 1.566299 -0.740793 1.140972 0.017733 2.799275 -1.641785 0.264167 -0.138361 0.747493 -0.964143 -1.159306 -3.416658 0.962340 0.942522 -1.297586 -2.157231 -2.781696 -0.812299 1.451445 -0.341741 2.873125 4.428113 -1.213542 -2.518321 2.292473 -0.448949 -0.337522 2.814110 0.457835 2.687978 -1.438635 -0.052958 -1.868065 -0.402075 0.019479 2.307484 0.906848 -0.440718 1.364765 0.631501 -0.978499 0.644314 -1.117139 -1.375824 -2.512464 0.453760 -1.299790 -0.268858 2.184266 -1.865708 1.950770 -0.682315 3.182872 -1.833539 -2.693599 0.635851 -3.309484 -0.093014 -0.951088 -0.536536 0.264958 1.960768 -2.584061 -1.007402 -1.076863 -1.420373 -0.706987 0.433845 -0.500669 0.569983 0.530191 0.659855 3.739465 3.010153 1.098551 -0.126162 -2.369421 0.625168 1.107081 -0.504590 -2.745110 0.261908 -1.558428 0.042555 0.560289 -0.328934 0.847775 -1.172368 -1.039414 -1.148374 -1.377449 1.165048 0.318432 -2.479348 0.643104 -0.532751 1.621914 0.908941 1.304230 2.782158 2.336612 2.203864 0.135056 0.562168 -1.114974 1.142287 0.846214 1.882689 -0.152169 0.845070 2.769505 0.889873 0.352664 1.977583 1.986080 -0.025236 2.013319 -0.485072 3.485366 -1.575251 0.662182 -1.008881 -0.010751 1.399642 4.250404 -1.300880 0.798321 1.176532 1.010750 -0.010580 -1.787507 0.058306 -1.381178 0.052871 1.239919 1.334462 -0.708073 -0.663981 2.354734 0.621775 -2.968587 1.669566 -0.071405 0.392801 1.264660 -0.626264 -0.753200 0.835413 -2.270809 1.865834 1.635068 1.296504 -2.105457 -0.944079 -0.269173 1.616585 1.229238 1.309368 -2.965762 0.384986 1.618529 2.321121 0.860343 2.233504 -2.007904 -1.841178 0.883532 -1.760436 -1.236673 0.491515 1.041577 -1.183310 1.088876 -1.244042 -2.436973 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.239645 0.796953 0.610069 -0.420766 -1.410184 -0.205823 -0.859455 -0.228421 -0.022200 -0.118558 0.073213 -1.060426 -1.064696 1.031136 -1.165809 -1.289279 -0.896314 -0.150231 -0.314596 -1.152185 -0.009909 0.451762 0.087961 0.249251 0.216720 -0.401606 -0.248226 0.422432 1.902253 -0.572807 -0.094515 0.124470 0.639763 0.988483 -0.230171 -0.336737 0.615982 1.687085 0.939642 -0.392660 -1.183542 -1.078191 0.662998 0.202773 -0.078552 -1.341294 -0.776280 0.518256 -2.488560 1.457323 0.307012 0.371360 -0.867664 -0.219885 0.533442 0.860645 -2.582897 2.727470 -0.148741 0.148645 0.064141 -0.154014 -0.457267 -0.362145 1.286782 -0.543931 -0.152610 1.148268 -1.321453 0.731863 0.312545 -0.186845 1.970235 -0.161979 -0.688191 0.552378 0.617114 0.044187 0.562141 -2.128718 -0.684782 -0.048005 1.102973 0.917034 1.002270 0.469897 -0.436559 -1.413676 -0.421599 -1.104741 0.608860 -1.225215 0.488556 0.912865 -1.682874 0.700537 0.113360 -1.405826 1.074560 0.752130 1.163902 0.085596 0.782897 0.421844 -0.376364 0.151240 0.293664 0.086794 -0.141670 -1.065760 -0.930501 0.451237 -2.181235 -0.174417 -0.263524 1.228455 0.297555 -0.052878 0.168521 -0.248564 -1.243390 -1.311128 0.162933 -0.126207 0.776167 0.749506 -0.306787 0.398597 -0.527543 1.375903 -0.036054 0.015313 -0.082816 0.061555 0.482247 -2.728825 -2.619645 -0.026753 0.140978 -0.137069 -1.057801 -0.419489 -0.332639 -0.582934 -0.189511 0.698734 1.817734 -0.000833 -1.150665 1.489617 -0.136586 1.014528 1.936815 0.160154 1.493207 -0.393979 -0.104813 -0.142296 -0.237704 0.071107 -1.299958 0.125500 -0.444714 -0.026261 0.947898 -0.101780 -1.038311 -0.591545 -0.469437 -1.007817 -0.085168 -0.599149 -0.407797 1.181117 0.768238 1.424996 -0.114097 1.548370 -0.755765 -2.360404 0.435993 -0.549740 0.439098 0.581122 0.031147 0.024555 0.476094 -1.400641 -0.636773 0.134565 -0.036053 -0.617561 0.133928 1.569111 0.166878 0.035611 0.695874 0.827067 1.204053 -0.280021 0.820471 -1.614207 0.013518 0.685022 0.214438 -2.142311 0.922469 -0.135843 -0.021953 0.835896 -0.239854 -0.289886 0.368963 -0.509729 -0.528867 -0.826351 1.119372 0.030906 0.531147 0.349663 -1.075858 0.214313 0.150220 0.486715 1.888373 0.203171 0.533605 0.357480 0.495558 -0.828544 2.221136 0.232819 0.844845 -0.049889 0.311305 0.997246 0.428491 -0.160418 0.656179 1.060979 -1.117793 0.824312 0.394786 1.954729 -1.564644 0.233645 -0.824565 -0.062103 0.796855 2.323533 -1.181341 -0.161573 0.663382 1.032814 1.177805 -1.886421 -0.667116 -0.464600 -0.569747 0.964758 -0.165376 -0.878633 0.478172 0.834790 0.193704 -0.708858 1.392764 0.193852 -0.242630 -1.130251 -0.178926 -1.508064 1.207657 -1.644302 -0.425027 0.432230 0.586783 -0.687685 -0.937414 -0.325713 1.248917 -0.517839 0.832755 -0.557666 -0.077864 1.559452 0.907780 0.614448 -0.085830 -0.324859 -2.376894 0.305558 -0.153253 -0.917626 0.438751 -0.052588 -1.186688 0.592376 1.119578 -1.940449 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp___GLOBAL__sub_I_merge_sort_for_doubly_linked_list.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/trie-suffixes.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 1.182058 -0.193928 2.079199 -1.755082 -1.814120 0.787612 -2.072721 -0.784493 1.067267 2.507697 1.290653 -1.670264 -2.338183 2.695105 -1.064865 -2.845168 0.702478 0.692314 1.537034 -1.144376 0.573559 0.579002 0.229101 -0.457922 0.554323 -1.044895 -0.945508 1.288776 3.336849 0.128363 -1.775357 0.181284 -0.037092 3.082344 -0.813936 -0.654421 0.803845 4.302030 -0.915065 2.154422 -3.200559 -3.218857 2.695391 0.650218 0.012019 -1.351340 -1.135724 1.093309 -3.693034 -0.677695 1.337462 -0.331979 0.751949 -1.232014 0.171671 2.376029 -6.152015 2.119020 -0.215075 -0.359397 -0.251592 0.323482 0.468925 1.019997 0.023499 -1.508782 0.907324 1.566772 -2.539639 0.220059 -0.646458 -2.556535 3.965513 0.825494 -1.735667 1.281204 2.552363 -2.159020 2.332295 -2.617373 -2.756408 -0.566906 0.247720 -1.137530 2.936373 0.848309 2.320974 -4.182552 1.430066 -3.974009 3.400575 -3.040726 2.336098 3.284562 -3.475257 1.132425 2.240268 1.564317 2.591109 0.210488 4.276962 1.987438 0.921001 0.246512 1.302911 1.402502 -1.642150 -0.771352 -2.020620 -2.771131 -1.098026 -1.128745 -5.004948 -0.111214 -1.721523 1.943617 1.823669 -0.886084 -0.383537 2.273021 -4.616604 -1.456804 0.463312 -0.398150 1.600320 2.814503 -0.540535 0.159934 0.157269 4.365649 -1.765031 -0.931284 0.629605 1.036770 -0.693327 -2.586693 -3.211789 0.597206 0.735458 -2.721267 -3.148572 -3.804546 -0.237120 1.049391 0.021597 3.665381 5.946194 -0.408537 -2.320926 2.742075 -1.383494 0.434070 5.269819 0.627278 4.702413 -2.766477 0.427121 -1.963644 0.261001 0.452307 0.808789 0.659162 -0.043428 1.249387 1.371466 0.008110 1.155242 -1.311175 -0.391983 -2.220142 0.353510 -1.782626 -1.389132 3.028563 -1.348923 2.626417 -0.146905 4.986881 -1.406752 -4.256821 1.939887 -2.534040 -0.601031 -0.628126 -1.033244 0.187117 1.711264 -3.355462 -1.719605 -1.868146 -0.550668 -0.242651 1.500701 1.405070 1.188052 0.682266 -0.391577 3.466819 2.423657 0.414269 0.616958 -3.946281 -0.124902 1.701897 -2.041796 -3.700173 0.921375 -2.547182 0.857827 1.676667 -0.696886 1.910800 -2.144032 -2.602948 -1.092585 -0.801225 1.548807 -0.874110 -3.228906 0.717081 -0.430416 1.040962 1.995316 2.752887 3.722792 2.474331 1.090095 0.443907 0.961780 -0.888849 0.905756 0.536847 0.763798 1.431088 0.749334 2.512869 0.399240 0.883837 1.934100 1.930751 -0.208098 2.950076 0.418784 3.721982 -1.109863 0.204508 -0.309374 -1.580049 2.448959 5.109927 -2.259458 0.571406 1.553427 1.520843 0.221509 -3.304102 -0.040074 -1.239332 -0.862659 1.571638 1.014024 0.049012 -1.234690 2.770337 1.517082 -4.766890 3.319902 -0.273869 0.163465 1.915895 -0.721146 -0.838207 1.008053 -2.669155 1.578745 1.436265 2.233604 -3.053266 0.140190 -0.081003 3.049773 0.390472 1.278625 -3.620548 0.710371 1.760079 2.205359 2.399792 2.254272 -2.182344 -2.754726 -0.134099 -2.493577 -1.753561 -0.769683 0.686920 -1.932532 0.908602 -1.494408 -1.874895 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::SuffixTrieNode() = 0.283936 0.109174 0.845882 -0.873084 -0.558389 0.204981 0.339943 -0.382136 0.133260 0.920817 0.401584 -0.412006 -1.264423 0.925747 -0.156334 -1.243385 0.318539 -0.237088 -0.088763 -0.448554 -0.171676 0.359456 -0.109793 -0.283144 0.537258 -0.429850 0.003362 1.033473 0.617478 -0.161901 -0.510605 -0.135076 -0.064978 1.624965 -0.154618 0.199986 0.192617 2.105614 -0.927399 1.305705 -1.368501 -1.521976 1.457121 0.087873 -0.313140 -0.876912 -0.308488 0.677920 -1.465773 -0.474062 0.666621 -0.125095 0.149553 -0.738430 0.391281 1.401863 -2.398317 0.701103 0.114857 -0.355964 -0.726835 -0.340380 0.197970 0.003207 -0.354835 -0.907295 0.406181 0.124859 -0.967698 0.326705 -0.563898 -1.358217 1.521114 0.483766 -0.565354 0.589064 0.587502 -0.948494 0.898212 -0.594614 -1.039983 -0.487464 0.420171 -0.526580 1.325819 0.285950 0.712431 -2.165431 0.075079 -1.751667 1.127393 -1.333436 1.161581 1.508626 -1.015026 0.897638 0.572471 0.411112 0.143960 -0.355768 1.544141 0.380092 0.737426 0.198191 0.839662 0.521639 -1.140442 -1.027393 -1.130438 -1.120386 0.014574 -0.650338 -1.870814 0.034119 -0.863517 0.347311 0.655326 -0.196051 -0.366813 0.884709 -1.990525 -0.070188 0.438239 -0.317722 0.997789 1.291886 -0.204911 0.122068 -0.024793 1.591228 -0.488838 0.253623 -0.497862 0.644922 0.062256 -0.817046 -1.025371 -0.066189 0.502893 -0.944664 -1.586298 -1.590931 -0.431167 0.594640 -0.278070 1.399562 2.631754 -0.462949 -1.228056 1.304819 -0.369666 0.762690 1.390135 0.360659 1.777673 -1.299009 0.378798 -0.701241 0.237443 0.420005 0.793870 0.065091 -0.613274 0.741806 0.241231 -0.065091 0.997019 -0.466245 -0.210265 -0.566608 0.139354 -0.780971 -0.839780 1.746543 -0.559083 1.536719 -0.168224 2.057293 -1.067840 -1.480102 0.613318 -1.105692 -0.187825 -1.251641 -0.681870 -0.007671 0.792174 -1.362236 -0.915392 -0.956049 -0.172651 -0.161058 0.773218 -0.046543 0.142072 -0.217494 0.106117 1.245775 1.218391 -0.039177 0.059076 -1.745971 0.269138 0.706441 -0.337955 -1.485594 0.373953 -0.623500 -0.173019 0.709092 -0.104209 0.619310 -0.682595 -0.747526 0.066981 -0.339388 0.238464 -0.252397 -2.041158 0.284080 -0.019765 0.024350 0.871871 1.274039 1.815002 0.888968 0.478979 -0.012436 0.367369 -0.363937 -0.560590 0.181548 0.059467 0.989984 0.583551 0.943661 0.544133 0.191917 0.908425 0.815479 -0.042770 1.300420 0.768520 1.915616 -0.085197 -0.191632 0.160279 -0.550106 0.907765 1.771230 -0.778568 0.141454 0.948568 0.803819 -0.201276 -1.338974 -0.256707 -0.784363 -0.346648 1.070045 0.204610 -0.623819 -0.333276 1.943462 0.103605 -2.253911 0.984750 0.070200 0.436158 0.641737 -0.323286 -0.053080 0.851628 -1.126953 0.929357 0.476697 1.031497 -1.207183 0.202575 -0.081948 0.970052 0.426763 0.265035 -1.952646 -0.032461 0.376608 1.545698 1.018828 1.260318 -0.617137 -0.370579 -0.144028 -0.916710 -0.344221 -0.113010 0.721695 -0.577324 0.181670 -1.678415 -0.576985 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 0.795926 0.083803 1.667292 -1.377968 -1.701666 0.527678 -1.388340 -0.830343 0.923573 2.089079 1.075797 -1.303403 -1.856561 2.330278 -0.732211 -2.065113 0.222386 0.072865 1.071057 -0.551821 0.455177 0.628061 -0.057347 0.064720 0.255596 -0.554653 -0.600986 0.849358 2.095258 -0.154090 -1.653700 -0.034690 -0.090076 2.295677 -0.527131 -0.369932 0.611470 3.507505 -0.976898 2.151952 -2.717407 -2.545326 1.619407 0.395648 0.001741 -1.214718 -0.685191 0.927166 -2.781085 -0.467025 1.377488 -0.143763 0.320678 -0.660707 0.649428 1.592544 -4.764615 1.976370 0.017102 -0.121841 0.149961 -0.032279 0.184627 0.780746 -0.135486 -0.980245 0.706203 1.080450 -1.983170 0.240141 -0.445215 -2.097409 3.014815 0.838071 -1.604892 0.909273 2.037027 -1.675401 1.982120 -2.583597 -2.313752 -0.355504 0.192707 -0.745795 2.290674 0.785105 1.509378 -3.207610 1.041536 -3.159662 2.509022 -2.483929 1.612467 2.644380 -2.432302 0.732187 1.792729 1.034920 2.226188 0.065986 2.986661 1.598144 0.794533 0.286235 0.871935 1.186195 -1.426847 -0.597615 -1.588897 -2.315583 -0.783421 -0.669739 -3.573629 -0.208972 -0.972454 1.818443 1.404999 -0.513062 -0.203951 1.587526 -3.783196 -1.231023 0.391705 -0.297531 1.442250 2.415608 -0.538482 0.336097 -0.150280 3.278104 -1.469952 -0.350332 0.248945 0.705937 -0.681762 -1.788823 -2.860069 0.354088 0.623511 -1.948885 -2.365035 -3.056159 -0.243013 0.828270 0.052303 2.999977 4.592592 -0.672875 -1.791166 2.355406 -1.047754 0.303775 3.901557 0.432504 3.446170 -1.854401 0.253388 -1.633264 -0.069252 -0.032217 1.255034 0.741837 -0.122050 0.842258 1.089976 -0.213936 0.674517 -0.758047 -0.686716 -1.965510 0.249130 -1.447372 -1.101406 2.358794 -1.394605 1.887455 -0.259779 3.778515 -1.303032 -2.955558 1.547155 -2.099636 -0.110507 -0.802169 -1.073682 0.435554 1.549192 -2.731681 -1.150458 -1.297888 -0.676491 -0.368657 0.972843 0.744657 0.746214 0.569469 -0.005696 3.198569 2.351266 0.403449 0.395584 -2.996948 0.167450 1.000004 -1.585134 -2.883500 0.837578 -2.007407 0.512356 1.424311 -0.613386 1.230366 -1.656152 -2.039724 -0.821409 -0.896521 1.270881 -0.442592 -2.604255 0.471762 -0.381539 1.004575 1.678959 1.743468 2.580559 2.125675 1.382825 0.242770 0.520368 -0.547232 0.905460 0.540436 0.744383 0.856397 0.656956 2.101932 0.534668 0.508435 1.454965 1.517041 -0.321125 2.289001 0.198032 3.001981 -0.944981 0.249709 -0.382274 -1.021152 1.863302 4.007087 -2.167172 0.605342 1.201958 1.181220 0.110271 -2.170958 -0.141588 -1.133205 -0.719495 1.264872 0.819827 -0.037224 -0.810852 2.230329 0.881042 -3.499143 2.153682 -0.262340 0.202653 1.386728 -0.399220 -0.754803 0.841358 -2.358936 1.517914 1.187581 1.812013 -2.163284 -0.190822 -0.174723 2.025783 0.579961 1.182655 -2.874709 0.202166 1.549262 1.845501 1.775699 1.901577 -1.795361 -2.098565 0.117911 -1.969688 -1.342446 -0.566136 0.778033 -1.296019 0.739773 -1.174507 -1.805549 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.808028 1.214294 1.740742 -2.249657 -3.373203 0.893191 -2.916635 -1.489441 0.708186 2.317312 1.539622 -2.283387 -3.087016 3.274025 -1.610829 -3.368226 -0.685012 -1.057369 0.916405 -1.846161 0.426498 1.083128 -0.096831 0.602831 -0.098616 -0.735093 -1.222284 0.580754 4.209797 -1.525477 -2.033782 0.088825 0.089067 3.038810 -0.238686 -0.999935 1.024289 4.811195 0.310333 1.166276 -4.243174 -3.392870 1.611253 0.682763 -0.217605 -2.283511 -0.828416 1.539452 -4.702154 1.049499 1.876753 -0.251031 -0.393324 -0.285110 0.835461 2.130090 -6.777604 5.021437 0.000000 0.135402 0.564104 0.043589 0.601605 0.980096 1.551785 -1.311101 0.810735 2.018820 -3.227460 0.179124 -0.254972 -2.398954 3.829635 1.040564 -2.183305 0.884135 1.956457 -1.358804 2.399496 -5.035127 -3.275612 -0.060009 1.051966 -0.340854 2.924388 1.261626 0.976218 -4.393798 0.833334 -4.341732 2.656478 -2.684792 2.045608 3.093900 -3.304974 0.488397 1.945737 -1.000455 3.783928 0.196703 3.890761 0.889816 1.325972 1.006142 0.427058 1.330549 -0.959172 0.391730 -1.278245 -3.650085 -1.552300 0.105377 -4.380811 0.023409 -1.405255 2.342791 1.596297 -0.577904 -0.296614 0.805154 -4.387446 -3.831945 -0.120369 -0.348236 2.596834 3.366671 -0.676711 1.165448 -0.440519 4.365399 -1.745019 -0.035015 0.211754 0.768587 0.546998 -3.917139 -5.817167 0.916212 1.189547 -2.260240 -3.032069 -3.254128 -0.418732 -0.741855 -0.336955 4.582977 6.186369 -1.278980 -3.096174 3.938053 -1.599063 0.975176 5.933329 0.126319 5.051349 -2.154715 0.060362 -1.539342 -0.720252 -0.372022 0.161848 0.891822 0.105484 0.466900 1.888491 0.712440 -1.827351 -0.803386 -1.744228 -2.760970 0.405381 -1.902725 -1.818743 2.356101 -0.305781 2.586966 0.761922 4.913475 -1.994990 -5.010593 2.315265 -2.091740 0.054157 0.559228 -1.570526 0.381754 1.904419 -3.387182 -1.202068 -1.331387 -0.518641 -1.602528 0.715398 2.758018 1.382546 1.215451 0.613284 3.969860 4.091608 0.472723 1.046425 -4.178920 0.295737 2.037266 -1.044242 -4.104449 1.158417 -2.731870 0.594119 3.184861 -1.208574 1.456294 -1.194928 -2.387935 -1.424203 -1.299019 3.116144 0.152793 -2.250360 1.094325 -1.618796 1.072052 1.774012 2.321305 3.069344 2.960652 2.307073 0.410415 0.838192 -0.855408 3.654491 -0.195494 1.545567 0.874155 1.334792 2.576905 1.065213 0.917386 2.683883 2.296262 -1.701281 3.096612 -0.654957 4.787777 -2.660013 0.881729 -1.594887 -1.149246 2.368699 6.513870 -3.587564 0.192782 1.745493 1.684599 1.191441 -4.323808 -0.193937 -1.815628 -0.634470 1.607157 1.244893 -0.123031 -1.018853 2.846537 0.976220 -3.968336 4.019798 -0.219333 0.023036 0.502242 -0.539865 -2.277528 1.434995 -4.663514 0.967004 2.593378 2.412893 -2.659772 -0.650826 -0.491933 3.580608 -0.807983 2.073948 -3.091336 0.323034 3.137912 2.423616 2.593967 1.715602 -2.468981 -4.687694 0.985212 -1.972227 -2.005652 0.007248 1.031547 -2.437421 1.379580 0.551329 -3.087835 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/trie-suffixes.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/trie-suffixes.cpp__main = 1.316564 0.547097 5.258161 -4.200305 -4.403533 0.518758 -7.068412 4.090348 2.514002 2.722870 0.711363 -4.783853 -11.140122 5.478395 -4.245096 -8.871253 2.837867 -0.840080 5.615742 -5.679359 2.355567 1.430166 5.940711 -0.314187 2.781427 -3.088401 -8.250537 4.660134 18.197416 -3.514542 0.188229 3.900962 1.887997 4.437883 -6.074477 -5.214843 4.115668 8.633656 2.153207 -0.093388 -3.407833 -3.913561 7.333485 2.614273 -1.668869 -4.089817 -3.493205 2.860178 -14.325525 0.191119 2.300989 2.272916 0.562289 -3.408096 -2.442910 7.811786 -17.801238 8.807587 -3.984217 2.035385 3.716986 5.434745 -1.806818 1.566429 9.103208 -3.517269 -1.157368 1.386859 -10.272064 -1.285580 3.075454 3.225771 10.267816 -0.762837 -1.933458 5.628424 9.432897 -0.192929 3.979489 -12.329976 -4.097406 0.151857 -0.001458 -0.298442 8.291746 -0.445618 1.230569 -6.310029 0.481034 -3.356147 8.981484 -6.761646 2.493852 5.658669 -7.705893 3.777414 2.922889 -6.388518 6.231045 1.548176 12.655543 2.646371 3.905412 3.450152 -0.025737 0.465525 -0.957964 2.654686 -4.364837 -5.055595 -4.811549 -1.251751 -9.601210 -0.320447 -1.516306 4.539694 10.386215 -4.550376 -1.779527 0.754358 -4.053491 -3.117647 -0.411903 -0.172171 -0.579326 5.701935 -0.979043 -3.083496 2.663295 12.023594 -3.085776 -1.952587 7.437203 0.726570 5.672554 -10.848496 -4.882738 0.490140 -2.259241 -3.387330 -4.159811 -5.224798 2.837056 -4.599399 0.124478 5.881831 13.230516 4.140078 -3.238813 6.836859 -3.054670 4.691037 10.675037 -0.105609 9.849103 -3.649247 -4.758887 -3.354835 -1.478483 4.083373 1.906300 3.336757 3.119841 0.280267 6.384576 1.331369 -9.698863 -4.009059 0.807797 -2.862327 -1.482380 -5.115877 -4.391704 3.517495 4.546963 5.657943 3.261877 10.309772 4.608982 -16.562959 5.071507 0.950057 -0.432437 2.503206 -2.325115 1.456227 -4.394306 -6.471856 -2.968024 -6.931189 3.316450 -2.722261 0.158468 4.351957 6.784982 2.396629 0.177261 4.757890 1.680131 0.267682 4.380372 -12.116607 -3.034311 2.495992 -3.253131 -9.954489 5.183942 -2.747336 4.450997 10.371594 -4.174771 2.159276 -0.952376 -6.420247 -3.111906 -2.900869 3.229433 -3.128052 -3.525619 0.024953 1.338015 1.458442 4.815340 5.588714 10.144141 1.198325 -1.609808 6.507395 2.503928 0.914100 6.127837 -2.409853 -0.742688 1.356580 1.137600 2.666978 -0.116249 2.147858 7.026870 6.867911 -5.998585 5.226052 -1.068146 5.741162 -1.855259 -2.346349 -1.300424 -3.689701 4.089078 10.141685 -4.276652 -0.539109 5.086157 4.792227 6.632933 -10.425212 1.683068 -3.952757 1.045832 7.540523 -0.535903 0.534771 0.213975 -1.582955 3.627290 -8.688078 10.913684 -0.830179 -2.118663 -0.610308 0.283151 -5.102879 1.683734 -11.174832 -2.973429 2.897251 2.543108 -6.019670 2.120190 0.563335 8.506526 -4.616344 5.620905 -9.455558 -4.020809 2.992713 0.697829 5.633315 3.073916 -2.247568 -15.246283 1.551905 -2.619249 -7.130795 -3.229776 -3.508852 -8.407031 3.050048 5.915305 -3.045475 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::SuffixTrie(std::__cxx11::basic_string, std::allocator >) = 0.787722 0.189989 1.117570 -1.095204 -0.735318 -0.061600 -0.572819 -0.404696 0.592051 2.018174 0.775823 -1.201975 -1.745148 1.880260 -0.493129 -1.514298 0.475340 -0.084640 0.720231 -0.374695 0.364059 0.494762 0.134942 -0.402015 0.657600 -0.216882 -0.646257 0.698929 1.672873 -0.464632 -1.162427 0.147620 0.340423 1.832677 -0.903523 -0.449357 0.183198 2.549362 -1.167126 1.544266 -2.319211 -2.030180 1.925764 0.241124 -0.032520 -1.395160 -0.416661 0.838183 -1.875670 -0.738414 0.470311 0.053214 -0.032849 -1.293034 0.090678 1.825600 -4.115135 1.611543 0.226377 -0.049552 -0.241964 0.091913 0.518408 0.103931 0.064554 -0.970430 0.350601 0.178157 -1.931146 0.352722 -0.693508 -1.415595 1.947486 0.609863 -0.894989 1.109892 1.052421 -1.339254 1.522752 -2.220609 -1.255068 -0.497101 0.513823 -0.182149 1.503365 0.778954 0.930370 -2.517950 0.535666 -2.208152 1.990243 -2.129986 1.474888 2.112909 -1.778490 0.956389 1.119100 0.358817 1.441980 0.187445 2.538649 1.200549 0.984121 -0.050726 0.541517 1.097994 -1.315239 -0.646866 -1.078157 -1.623842 -0.562989 -0.323549 -2.608495 -0.097938 -1.288565 0.932393 1.598023 -0.705862 -0.078512 1.229372 -3.041826 -1.108341 0.500516 -0.271644 1.076226 2.097690 -0.126416 -0.264599 -0.288581 2.422225 -0.655893 -0.278364 0.379368 0.654650 -0.486913 -2.092754 -1.484203 -0.217985 0.066935 -1.816018 -1.843332 -2.644292 0.008784 0.312945 -0.037180 2.031340 3.522121 -0.214716 -1.406639 1.728759 -0.741063 0.472359 3.029288 0.311680 3.170251 -1.823835 0.494300 -0.698580 0.330477 0.564359 0.918369 0.203109 -0.445696 0.380972 0.794674 -0.393774 0.142142 -0.448524 0.117498 -1.102273 0.221423 -1.202582 -1.056457 1.790254 -0.956439 1.976279 -0.521154 2.958826 -1.083210 -2.291640 1.498173 -1.674490 -0.284205 -0.685884 -0.957205 0.175314 1.123570 -2.110169 -0.945355 -1.199052 -0.328179 -0.147720 1.302644 -0.092263 0.550162 0.055287 -0.370542 2.050318 1.126587 -0.431089 0.705447 -2.573406 -0.041735 0.951195 -0.905884 -2.884490 0.840783 -1.649616 0.352634 1.419289 -0.623344 1.084329 -1.025046 -1.680428 0.006124 -0.654290 0.590172 -1.135055 -1.496925 0.262689 -0.640073 0.553319 1.225353 1.916117 1.940930 1.253039 0.211682 0.179988 0.414281 -0.710800 0.276138 0.445869 -0.130272 0.782837 0.618790 1.222102 0.292735 0.494868 1.242833 0.821351 -0.768951 2.000012 0.465067 2.062741 -0.775138 -0.052460 0.174965 -1.225477 1.487411 2.775510 -1.581472 -0.224764 1.084093 0.727871 -0.005607 -1.528969 -0.465022 -0.750477 -1.157370 1.376918 0.571106 -0.159993 -0.451320 1.971671 0.676176 -3.019961 2.044525 -0.235745 0.179642 0.758022 -0.401600 -0.468831 1.118527 -1.476025 0.471512 0.597552 1.672669 -1.831280 -0.097654 -0.094693 1.956698 0.527542 0.570226 -2.906164 0.135163 1.193679 1.452090 1.369615 1.619101 -1.120149 -1.422228 -0.377440 -1.019498 -0.987549 -0.783970 0.541631 -1.022656 0.162517 -1.172225 -0.541130 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/trie-suffixes.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/trie-suffixes.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/trie-suffixes.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/trie-suffixes.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/trie-suffixes.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/trie-suffixes.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/trie-suffixes.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/trie-suffixes.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/trie-suffixes.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/trie-suffixes.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/trie-suffixes.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/trie-suffixes.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/trie-suffixes.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/trie-suffixes.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/trie-suffixes.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/trie-suffixes.cpp___GLOBAL__sub_I_trie_suffixes.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 0.795251 0.311077 1.113770 -1.571921 -0.437723 0.335365 1.467506 -0.698935 0.325458 3.065760 0.983081 -0.901309 -1.503681 2.217598 -0.023203 -1.365641 1.370237 -0.860725 0.019128 0.006879 -0.288478 0.959308 -0.243227 -1.028554 1.243179 -0.250863 -0.097742 1.443818 -0.128056 -0.252074 -1.292678 -0.218985 0.005249 2.886007 -0.305453 0.095470 -0.139245 3.187554 -3.213044 3.436128 -2.898292 -2.492044 2.962389 0.261743 -0.320517 -1.668777 -0.287915 1.301268 -0.463163 -2.264948 0.909238 -0.607041 0.606303 -1.687612 0.298721 2.858884 -3.753629 0.302587 0.570852 -0.653239 -1.605059 -0.550262 1.160612 0.305349 -1.646060 -1.723469 0.626764 -0.434381 -1.395667 0.223181 -1.692145 -2.947103 1.677726 0.987467 -1.077483 0.851392 0.008021 -2.462871 1.612137 -1.213115 -1.477626 -0.852263 0.630562 -1.041501 1.547486 0.766382 1.934270 -3.978417 0.259689 -3.075003 2.254842 -2.073009 2.430530 2.753626 -0.970615 1.225747 0.754175 1.395311 0.593830 -0.387690 2.686152 1.021507 1.479224 -0.332822 1.543314 2.023028 -2.671449 -2.190536 -1.886460 -1.764625 0.617232 -0.646605 -2.415844 0.243171 -2.019803 -0.007871 1.468388 -0.779736 -0.724833 2.348537 -3.563295 -0.514407 0.825416 -0.531364 1.891978 2.648722 0.040038 0.056048 -0.158378 2.440416 -0.491941 0.459488 -0.919202 1.392371 -1.302038 -1.204145 -0.475195 -0.168011 0.716950 -2.363935 -2.733114 -4.206549 -0.335326 1.208297 -0.864899 2.322969 4.426114 -0.992971 -2.049723 1.914180 -0.127533 0.466118 2.003592 0.246719 3.642991 -3.072500 1.406072 -0.708668 0.964205 0.847160 3.612432 -0.217825 -1.353525 0.995196 -0.265066 -1.546308 2.315718 0.032942 0.085084 -0.611083 0.324965 -1.033118 -1.475981 2.943506 -1.927801 2.281656 -1.163782 3.659451 -2.139242 -1.843745 1.485566 -2.286093 -0.845384 -2.746164 -1.497073 0.264406 1.898683 -2.154552 -1.304434 -1.507561 -0.424187 -0.220998 1.699475 -2.114892 0.039613 -0.678864 -0.652799 2.396485 1.318464 -0.402669 0.199317 -2.696801 0.307179 1.309635 -0.678045 -2.958432 0.154404 -1.910469 -0.406474 0.984738 -0.420101 1.391441 -1.745372 -1.448759 0.977137 -0.645857 0.067438 -1.060894 -3.594479 0.611442 -0.262464 0.242547 1.351552 2.926389 2.243670 1.865626 0.330090 -0.406545 0.324396 -0.920622 -2.427973 0.733323 -0.281562 1.316815 1.298504 1.527134 0.773861 0.525140 1.598792 0.358337 0.030360 2.443731 1.113408 2.696058 0.146971 -0.221500 0.992108 -1.594858 1.628221 2.700547 -1.059652 -0.728071 1.506858 0.379946 -1.311502 -0.932589 -0.196528 -1.289628 -1.092982 1.648925 0.624816 -0.587673 -1.050565 3.959330 0.039502 -4.537774 1.805232 -0.127110 1.091817 1.912845 -0.692075 0.997835 1.299769 -1.030026 1.774493 0.929306 2.357619 -2.088886 0.030299 -0.202961 1.569537 1.858150 -0.115892 -4.795079 0.258197 0.507990 2.826976 1.540327 3.100327 -1.177086 0.710041 -0.772114 -1.247157 -0.352884 -0.914324 1.661862 -0.377847 -0.024403 -4.158495 0.655754 +PE-benchmarks/m-coloring-problem.cpp__graphColoringUtil(bool (*) [4], int, int*, int) = 1.036427 0.884563 1.969428 -2.403824 -1.066294 0.327298 1.824062 -1.213438 0.587002 4.570234 1.242516 -1.190381 -2.530846 3.079810 -0.835806 -1.858189 1.333151 -1.254977 -0.114007 -0.923796 -0.110279 1.329755 -0.161581 -1.360512 1.402623 -0.909961 0.203047 2.137061 0.113406 -0.214433 -1.397463 -0.350958 0.261749 3.831405 -0.499953 0.270852 -0.437171 4.097214 -4.339961 4.231416 -4.638294 -3.985715 3.933558 0.493764 0.033596 -3.427516 -0.572682 1.520215 -0.692489 -2.424104 0.881326 -0.756417 0.840548 -2.264833 0.512862 3.569343 -5.092449 0.775649 0.374347 -1.508669 -2.147674 -0.612782 1.580607 0.738511 -2.095671 -2.469400 0.842192 0.064469 -2.298423 0.868013 -1.852574 -3.752791 2.135359 0.970082 -1.548050 1.130177 0.315531 -3.467683 2.240409 -2.223755 -1.784440 -1.112811 1.222014 -1.083364 1.720154 1.196088 2.605577 -5.341148 -0.025356 -3.930186 3.040863 -2.740881 3.180363 3.135538 -1.204063 1.821894 1.053082 1.705941 1.230782 -0.409262 3.529495 1.845097 2.869585 -0.324920 2.191210 2.645435 -3.305310 -2.972288 -2.625685 -2.558208 0.557962 -1.117371 -3.912955 0.050194 -2.441417 -0.507741 1.786834 -1.452247 -0.771961 3.829018 -5.548639 -0.796245 1.352926 -0.627725 2.108049 3.182478 0.093238 0.216589 0.154921 3.340448 -0.774412 0.568188 -0.923205 1.727515 -1.778180 -2.163030 -1.117737 -0.110313 0.752982 -2.982943 -3.603273 -5.205498 -0.892052 1.896966 -0.876179 2.763438 5.944992 -1.091764 -3.359258 2.350713 -0.275665 0.034958 2.859929 0.553484 4.983611 -4.105656 1.860423 -1.343646 1.318448 1.546822 5.561537 -0.325875 -2.036498 1.411061 -0.135159 -2.760553 2.160822 -0.581292 0.220157 -1.408913 0.467280 -1.641072 -1.408354 3.682839 -3.207823 3.867043 -2.213893 4.795461 -3.316906 -2.996353 1.582682 -3.816860 -0.912852 -3.139280 -1.374299 0.361880 2.802244 -3.030432 -1.853222 -2.258997 -1.090816 -0.012621 2.575970 -3.814671 0.112359 -0.992032 -0.828701 3.693783 1.893123 -0.477755 0.369366 -3.445044 0.666340 1.940649 -0.140849 -4.892652 0.205526 -2.547785 -0.493724 0.910055 -0.479295 2.020880 -1.703957 -1.725861 0.912654 -1.382574 -0.155234 -1.679130 -4.300145 0.878448 -0.831379 0.777069 1.182889 3.831402 3.458183 2.361105 0.423798 -0.642230 0.611088 -2.129677 -2.455611 1.498203 0.401109 0.710712 1.564263 3.036842 0.822131 0.718734 2.721499 1.074440 -0.078965 3.309011 0.946534 3.652662 -0.981786 -0.061007 0.878003 -1.813857 2.002989 4.117505 -0.766008 -1.024890 1.967693 0.864339 -1.464177 -1.364189 -0.556111 -1.711777 -1.286366 2.810324 1.532861 -1.185146 -1.201467 5.194680 0.572617 -5.857400 2.568180 -0.242363 1.191468 2.181529 -1.383579 0.753858 1.989266 -1.206489 2.031556 1.104792 2.777456 -3.100411 -1.002447 -0.215220 2.365090 2.781174 -0.256546 -7.092033 0.332024 1.007302 4.203939 1.706415 4.555717 -1.839273 0.536386 -0.740504 -1.482815 -0.715590 -0.807749 2.040646 -1.376515 0.098075 -5.132542 0.569761 +PE-benchmarks/m-coloring-problem.cpp__graphColoring(bool (*) [4], int) = 0.451852 0.270618 0.858916 -1.437488 -0.513686 0.251224 0.775956 -0.541137 0.301467 1.739140 0.653610 -0.774804 -2.188602 1.505019 -0.194680 -1.621550 0.878582 -0.696019 -0.046009 -0.338716 -0.314911 0.557907 -0.091186 -0.750395 0.920451 -0.438443 -0.134158 1.393045 1.165352 -0.458906 -1.072331 -0.067272 0.016423 2.397282 -0.251637 0.140266 0.209077 2.834595 -1.649001 2.278342 -2.240418 -2.002671 2.321680 0.206110 -0.439186 -1.512065 -0.070377 1.007074 -1.824826 -0.994414 0.803304 -0.444772 0.282782 -1.284430 0.379177 2.497646 -3.402848 1.172885 0.217504 -0.187447 -0.901491 -0.604682 0.520185 0.074689 -0.625310 -1.479612 0.476220 -0.137304 -1.887156 0.381552 -1.275170 -1.911398 1.988048 0.792926 -1.023456 0.760032 0.255971 -1.676094 1.077187 -1.385554 -1.229164 -0.566680 0.807191 -0.288353 1.732178 0.543444 0.965175 -3.212696 -0.382604 -2.498763 1.634044 -1.918113 2.006153 2.195597 -1.204627 1.140752 0.470435 0.283104 0.235468 -0.240413 2.299035 0.547132 1.265201 -0.189582 1.141268 0.998693 -1.696657 -1.539858 -1.164962 -1.331132 -0.140804 -0.399148 -2.482295 0.009407 -1.822315 0.562045 1.239270 -0.331829 -0.767871 1.220091 -2.852624 -0.745931 0.372660 -0.459015 1.915240 2.128746 -0.034134 0.152846 0.059450 2.268271 -0.222561 0.297032 -0.963714 0.974926 -0.032364 -1.422305 -1.171708 -0.285928 0.739892 -1.555564 -2.477412 -2.569246 -0.659142 0.521774 -0.453472 1.915857 3.610465 -0.490837 -1.616168 1.802356 -1.009368 1.257760 2.091021 0.289628 2.869147 -2.359461 1.189687 -0.547377 0.801947 0.529655 2.060247 -0.283826 -1.259996 0.507352 0.181453 -0.388171 0.581631 -0.113369 0.014453 -1.063454 -0.130954 -1.090734 -1.449569 2.535946 -1.545026 2.275838 -0.622127 3.098785 -1.779758 -2.208386 1.259210 -1.135524 -0.235817 -1.776979 -1.113665 0.215823 1.178073 -2.016257 -1.316185 -1.167273 0.127308 -0.206781 1.449680 -0.550682 -0.107702 -0.579534 -0.218865 2.053416 1.304320 -0.514953 0.350246 -2.426817 0.402903 1.054112 -0.476191 -2.425729 0.538733 -1.149654 -0.342528 1.357920 -0.252603 0.919971 -0.905634 -1.328174 0.469579 -0.439749 0.495651 -0.655969 -2.739321 0.539541 -0.103554 -0.362189 1.213651 2.198610 2.114358 1.129656 0.222829 -0.369870 0.394229 -0.710002 -1.079149 0.408515 -0.044676 1.156548 0.907260 1.436453 0.617540 0.270821 1.398265 0.792822 -0.396094 1.916366 1.137220 2.369565 -0.294484 -0.340163 0.583223 -1.405962 1.302854 2.470371 -1.522599 -0.394791 1.374490 0.984609 -0.336598 -1.471326 -0.494632 -1.205235 -0.827703 1.648251 0.129343 -0.676990 -0.625840 3.132086 0.091914 -3.407897 1.646554 -0.006872 0.690900 0.915889 -0.634103 0.052539 1.272389 -1.553515 1.184744 0.594499 1.612929 -1.452935 -0.108154 -0.198389 1.353043 0.786047 -0.140270 -3.074165 -0.300386 0.620664 2.603393 1.911589 1.841146 -0.660631 -0.216569 -0.569912 -1.102213 -0.337824 -0.763315 1.178165 -0.898384 0.010135 -2.568794 -0.141588 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.507399 0.396666 0.605326 -0.692289 -0.279782 0.138054 0.241832 -0.594982 0.020236 1.532330 0.333088 -0.523291 -1.049194 0.818782 -0.406654 -0.942236 0.263227 -0.221415 -0.160361 -0.593530 -0.141230 0.208845 -0.031707 -0.706483 0.414748 -0.360167 0.222275 0.654433 0.238082 -0.056030 -0.427526 -0.091560 0.299922 1.474864 -0.068700 0.192691 -0.181366 1.348271 -0.899629 1.091451 -1.767895 -1.610492 1.501328 0.147061 0.091642 -1.042506 0.040575 0.643903 -0.829010 -0.586951 0.029259 -0.297423 0.095016 -0.995825 -0.072949 1.320380 -1.969818 0.796514 0.111953 -0.626244 -1.013362 -0.208009 0.722343 0.203935 -0.221537 -0.963395 0.206290 0.237772 -1.024918 0.487855 -0.814341 -1.254834 0.941929 0.243052 -0.512086 0.370328 -0.118929 -0.688351 0.654996 -0.889681 -0.548940 -0.526248 0.699495 -0.071912 0.554047 0.744502 0.761212 -1.963978 0.011061 -1.452595 1.140805 -0.817940 1.233979 1.002217 -0.596270 0.703482 0.308123 0.197814 0.296602 -0.135306 1.208316 0.284363 0.919166 -0.148030 0.625460 0.735948 -1.004948 -1.023483 -0.682311 -0.943850 0.079788 -0.287996 -1.423939 0.053342 -1.153387 0.305575 0.577847 -0.437034 -0.250742 0.818219 -2.268100 -0.726752 0.355551 -0.231126 1.159957 0.913598 0.043962 0.285821 0.148106 1.132133 -0.098691 -0.145264 -0.261232 0.644091 -0.232688 -1.078748 -0.810282 0.102873 0.462513 -1.022773 -1.352448 -1.665395 -0.410574 0.609619 -0.328590 1.132081 2.061315 -0.265106 -1.272648 0.785100 -0.517440 0.227715 1.378298 0.277912 1.934234 -1.599545 0.796329 -0.157549 0.559354 0.756022 1.178622 -0.396072 -0.869177 0.612407 0.077856 -0.243407 0.084519 -0.225962 0.130873 -0.588814 0.107773 -0.517308 -0.367201 1.149047 -0.937725 1.460257 -0.647144 1.763175 -1.389628 -1.262448 0.516624 -1.537278 -0.509651 -0.605454 -0.483210 -0.156316 1.055816 -1.350733 -0.732005 -0.653348 -0.300591 0.016185 1.171694 -0.708357 -0.014664 -0.358372 -0.389108 1.443283 0.594461 -0.369021 0.134169 -1.275220 0.130188 0.882987 0.123285 -1.706523 0.001087 -0.908012 -0.188071 0.610145 -0.147257 0.755125 -0.425462 -0.483794 0.327746 -0.456812 0.185824 -0.643273 -0.897674 0.349843 -0.363851 0.073416 0.405157 1.589279 1.179498 0.768557 0.028743 -0.222531 0.326017 -0.950387 -0.406612 0.366295 0.146835 0.482673 0.597365 0.751278 0.188343 0.277296 0.991006 0.374816 -0.291709 1.264405 0.320976 1.330044 -0.793350 0.212186 0.222407 -0.708814 0.746738 1.486733 -0.844009 -0.506723 0.701674 0.189355 -0.223527 -0.694647 -0.389917 -0.585641 -0.575863 0.968173 0.672180 -0.426387 -0.492666 1.923607 0.281734 -1.988790 1.269184 0.024210 0.267393 0.622509 -0.738866 0.030155 0.802967 -0.406764 0.255752 0.440903 1.054454 -1.242063 -0.045259 -0.106561 1.142336 0.606557 -0.181562 -2.054464 0.005872 0.584251 1.536785 0.726558 1.265969 -0.711984 -0.042264 -0.345335 -0.401279 -0.140504 -0.258087 0.736273 -0.358200 -0.003875 -1.432562 0.113614 +PE-benchmarks/m-coloring-problem.cpp__main = 0.378610 0.114354 0.157178 -0.522645 -0.473969 0.178601 -0.234209 -0.259061 0.047941 -0.194529 0.329945 -0.418014 -0.300965 0.696380 -0.216687 -0.531230 0.043776 -0.501009 -0.112130 0.091940 -0.040201 0.152142 -0.113821 -0.058134 0.006252 0.092929 -0.126541 0.205020 0.650260 -0.427876 -0.719641 0.022324 -0.006786 0.708428 0.158953 -0.336572 0.365518 1.040398 0.016904 0.306137 -0.470554 -0.236291 0.352978 0.017341 -0.279713 -0.566925 -0.478127 0.364331 -0.683972 0.095466 0.516278 -0.118633 -0.194253 -0.082755 0.169777 0.699084 -1.195786 0.869424 0.188194 0.544931 0.154212 -0.278056 0.093080 -0.041076 0.138745 -0.381207 0.317691 0.215597 -0.549336 0.034696 -0.362838 -0.695318 1.101470 0.285204 -0.383909 0.055735 0.172681 -0.669988 0.414747 -0.694520 -0.612864 0.086419 0.094078 0.050269 0.917689 -0.140394 -0.051358 -0.925893 0.033818 -0.991584 0.169182 -0.821296 0.368143 0.746738 -0.821202 0.025048 0.077743 0.066123 0.435208 0.242228 0.714401 0.186133 0.069079 -0.123180 0.337069 0.119505 -0.069109 -0.036594 -0.118786 -0.568261 -0.356477 0.092166 -1.278791 0.179028 -0.351953 0.343756 0.004247 0.134174 -0.118728 0.081638 -0.501868 -0.523233 -0.087642 -0.113284 0.560661 0.883109 -0.264766 0.223959 -0.398655 0.764138 0.069013 0.165405 -0.276252 0.117714 -0.083207 -0.973613 -1.023647 0.100924 0.462709 -0.366369 -0.861930 -0.646907 -0.052331 -0.326084 -0.223895 0.785589 1.022739 -0.173478 -0.493382 0.812460 0.203347 0.468001 1.058275 -0.086644 1.022719 -0.504257 0.240904 0.000157 -0.035789 -0.444588 -0.834320 -0.062461 -0.108000 -0.008559 0.073767 -0.349758 0.545114 0.104519 -0.279089 0.064171 -0.123232 -0.316049 -0.750295 0.967362 0.316960 0.503205 0.381329 0.997631 -0.327541 -0.755719 0.479876 0.220982 0.233929 -0.260097 -0.349998 0.076328 0.431245 -0.519124 -0.358123 0.052315 0.140655 -0.331418 0.267478 0.919390 0.069239 0.066400 0.264710 0.206340 0.847831 -0.155551 0.463923 -0.800455 0.190488 0.509902 -0.349862 -0.663117 0.233497 -0.373677 -0.003030 0.387675 -0.116822 0.106606 -0.405415 -0.639575 -0.001641 -0.007938 0.610472 0.208427 -0.605404 0.184675 -0.355218 -0.039771 0.377439 0.512275 0.655696 0.452795 0.436104 -0.231558 0.168649 0.033787 0.155291 -0.205101 0.057471 0.441645 0.262746 0.424225 0.199311 0.011640 0.272206 0.396171 -0.197710 0.527984 0.545828 0.932069 0.011022 -0.070386 -0.187925 -0.449799 0.588014 1.236828 -0.721913 0.065872 0.294678 0.459917 0.072102 -0.894185 -0.163716 -0.296833 -0.362096 0.211811 -0.248011 -0.081612 -0.114396 0.797413 -0.040767 -0.786387 0.413759 0.083341 0.133805 0.214597 -0.082990 -0.090775 0.270712 -0.804139 0.417866 0.350492 0.478961 -0.173824 -0.230097 -0.075535 0.418045 -0.373968 0.265013 -0.252772 0.342339 0.534550 0.694545 0.673285 -0.008626 -0.294909 -0.481991 0.073244 -0.208497 -0.112875 -0.049317 0.462539 -0.619112 0.030314 -0.184088 -0.591231 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__cmp(suffix, suffix) = 0.864676 -1.523767 1.057970 -1.777915 -0.725119 2.045814 -1.991013 -1.546295 1.208215 -0.143572 0.974383 -0.130875 -0.699947 1.030346 -0.148670 -2.287144 1.205613 1.078730 1.048151 -0.061283 0.077670 -0.152669 -0.637504 -0.558225 -0.044802 -1.555951 0.688080 1.178700 1.451745 1.051567 -2.634944 -0.388093 -1.460888 3.140702 1.024327 0.777825 1.209643 3.877126 1.104056 2.703068 -1.376216 -2.215529 1.216844 0.423511 -0.615011 1.210836 -0.745865 0.041995 -3.418771 -0.084043 1.877883 -1.810442 1.297635 0.090683 0.721619 1.456370 -2.619368 -0.059315 -0.471030 0.375650 -0.365699 -1.323554 0.440504 1.079048 -1.400061 -1.019616 2.108248 2.361280 -1.815788 0.020073 -1.237043 -3.443943 3.586791 1.949052 -1.802529 -0.209056 1.812546 -2.565164 0.997381 0.832424 -2.930662 -0.246678 -0.248840 -2.061543 3.359792 -0.214471 2.912348 -3.920289 1.534490 -4.197167 1.902704 -1.944158 2.752489 2.868606 -3.273137 0.281611 1.835979 4.108409 0.197380 -0.362842 3.015628 1.323755 -1.218714 -0.658496 2.775565 -0.091170 -0.732732 -1.076476 -0.925265 -1.560707 -0.893915 -2.092677 -5.077075 -0.227909 -2.345420 2.376870 -0.748931 1.176768 -1.405402 1.506678 -3.852054 -1.344094 -0.596839 -0.542903 2.570162 1.789104 -0.661935 1.175231 0.713878 3.378204 -1.493017 -1.407387 -1.879161 0.866213 -0.408781 0.943975 -3.153694 0.616371 2.480514 -2.054269 -3.855508 -1.815941 -1.966725 2.120364 0.383005 4.363137 4.427841 -0.704013 -1.205008 1.965663 -2.533080 0.899000 4.453965 0.757460 2.472362 -2.762449 1.713085 -1.956310 1.017712 -1.038249 -1.104869 -0.102202 -0.001107 1.282242 0.083969 2.095281 3.628075 -1.022593 -0.856619 -2.636482 -0.355829 -1.230372 -1.812869 3.658182 -2.717482 1.826416 0.622616 4.003500 -2.244197 -2.530792 1.277209 -0.570522 -0.457149 -1.646715 -0.196398 -0.862523 2.389015 -2.641743 -2.095312 -0.170016 -0.254950 0.518064 1.220608 4.442322 -0.053373 0.102880 -0.278304 2.986997 3.183298 0.948161 -0.592403 -2.279637 0.501700 1.873850 -2.422306 0.296000 0.274542 -1.665196 0.083112 -0.115377 0.311425 1.220844 -2.852339 -2.285470 -1.863226 0.768676 2.282341 0.768249 -5.383062 1.111140 1.108398 -0.858743 2.023970 1.678321 2.991185 2.183346 1.809208 -1.757368 0.995101 -0.302119 -0.834191 -0.157075 1.335016 2.604823 0.197980 3.231982 0.387200 0.521336 0.757359 1.907942 2.106878 1.777320 1.346977 3.671046 0.653411 0.279172 -0.559530 -1.967446 2.166768 4.590717 -2.339466 2.105257 1.042043 2.146089 -0.461774 -3.799529 0.078105 -1.186151 0.024777 -0.203298 -0.139278 0.374293 -2.015652 3.486464 1.234009 -3.937560 1.142450 -0.040508 0.495869 3.032856 -1.194738 0.055464 0.205987 -2.286108 3.462367 0.825664 1.167801 -1.426188 0.629392 -0.378933 1.153361 -0.406319 -0.228849 1.176295 1.809833 0.621392 3.263424 3.786673 0.949161 -1.344838 -0.019408 -0.537826 -3.626639 -0.407120 -0.097102 1.744584 -1.324268 0.573197 -3.039283 -2.400098 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 5.342312 -3.091563 6.700076 -6.006110 -1.283029 4.766975 -1.946522 -7.682073 2.864549 15.104477 5.421392 -5.301238 -5.312862 10.210007 -1.836678 -9.637438 6.735358 8.935998 3.248835 -2.942490 -1.167093 1.497114 -2.096752 -6.596515 4.310761 -5.809312 3.144156 7.509963 2.321493 6.221020 -8.101682 -1.666653 -1.461273 17.483522 0.682250 3.504646 0.365789 17.266146 -11.520349 18.823390 -14.464440 -15.038135 14.974884 3.031473 0.569577 -1.087998 -3.420561 4.351843 -9.715683 -9.373217 3.879243 -6.432346 6.171608 -7.836208 1.311641 13.010896 -18.570215 -0.857004 0.941486 -6.638193 -10.466085 -2.804339 6.492132 4.202728 -11.472490 -9.434361 5.528732 6.503302 -6.895563 2.387434 -10.300407 -19.539868 12.559686 4.492184 -8.125769 2.827651 3.335091 -11.712757 7.652696 0.923454 -10.295297 -5.615522 2.895882 -8.395129 9.003326 6.821412 16.481185 -22.975396 6.192642 -19.925958 14.778305 -10.260416 16.284690 15.142371 -11.852728 6.107235 8.195266 16.623972 2.536395 -0.952712 15.791782 6.904585 0.709605 -3.595259 11.042799 8.450266 -12.473178 -12.772621 -9.531209 -9.722036 1.373331 -7.977408 -19.260849 -0.520294 -14.829076 7.064051 2.985540 -1.445098 -4.139628 13.922101 -25.031867 -3.015977 2.870687 -3.019279 12.865565 11.072519 -0.018436 3.111465 2.017163 15.251710 -5.581538 -6.339508 -5.402266 7.680891 -7.938011 -2.331779 -8.168274 1.893485 7.529568 -14.363681 -17.478439 -20.436563 -5.952455 13.540703 -1.605122 17.480877 25.209073 -4.556534 -10.310756 8.257462 -8.557968 1.016246 19.029577 4.453256 21.445184 -19.523852 10.237841 -7.391351 7.024308 4.827155 9.940951 -2.485874 -6.712788 8.994105 0.341570 -0.060429 18.339090 -4.306642 0.284776 -10.674873 2.896747 -3.407375 -4.249433 17.708776 -17.836132 12.310110 -7.304606 22.712785 -13.927939 -12.074999 6.344587 -17.087451 -7.237750 -10.183556 -4.029043 -3.559980 14.591721 -14.856574 -9.639368 -6.623515 -4.295006 3.124558 11.904897 0.988603 -0.450661 -2.574672 -6.229144 18.224983 8.743536 0.817182 -1.604646 -14.025878 0.644911 9.961475 -7.888521 -12.830801 0.325104 -12.192779 -0.834991 -1.032172 -0.500461 9.716614 -14.431783 -8.252717 -2.252151 -1.301506 3.969973 -5.089486 -20.726313 5.833128 -0.295671 0.375006 9.155852 16.084779 15.412191 11.916544 3.544121 -4.201451 3.977806 -8.037328 -10.084683 7.534676 3.325300 10.576528 4.416380 11.586782 1.323305 3.896311 5.761544 2.285193 7.002266 13.600984 6.645595 16.418363 -1.010365 2.679441 3.189722 -9.608667 10.362446 18.545849 -9.291390 0.579708 6.685703 3.144064 -6.509101 -10.172026 -1.343919 -5.267214 -6.803161 5.271360 4.842067 -0.949621 -9.656895 22.219307 4.943981 -25.373575 11.430478 -0.564165 3.139037 14.638516 -7.107544 4.135680 4.999928 -3.043677 10.930019 4.680047 12.098393 -14.188886 3.802594 -1.537547 10.034498 10.993921 -2.339982 -18.767486 6.906436 4.326485 16.934941 10.786329 13.433718 -8.779710 3.920716 -5.562743 -12.447840 -1.896814 -4.923105 8.728822 -1.982164 1.831031 -21.895065 -2.427736 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::sort(suffix*, suffix*, int (*)(suffix, suffix)) = 0.211014 0.230477 0.380355 -0.873051 -1.361501 0.209426 -0.374779 -0.447989 0.080328 -0.041850 0.664185 -0.865586 -0.411677 1.506043 -0.305696 -0.884204 -0.246527 -0.370996 -0.182644 0.116831 0.086220 0.568643 -0.208124 0.293141 -0.112558 0.116581 -0.316535 0.389641 1.027696 -0.428656 -0.930695 -0.104630 -0.021109 1.005053 0.172792 -0.327551 0.449612 1.812679 -0.513560 0.978180 -0.888936 -0.562329 0.409282 0.119934 -0.256430 -1.086838 -1.171066 0.638663 -0.928724 -0.115177 1.058412 0.090525 -0.192949 0.119231 0.697554 0.743417 -1.751810 1.179856 0.341707 0.426555 0.380457 -0.229669 -0.184490 0.259392 -0.328337 -0.541215 0.265202 0.451947 -0.460280 -0.130849 -0.163051 -1.260966 1.759995 0.348243 -0.845945 0.154219 0.683198 -1.106267 0.967914 -1.085369 -1.258294 0.243390 -0.013263 -0.163042 1.299518 -0.118884 0.303306 -1.537791 0.231352 -1.631693 0.503203 -1.295579 0.333362 1.296896 -1.256514 0.008353 0.392401 0.317754 1.281253 0.447407 1.063608 0.600266 0.302239 0.164371 0.567826 0.509903 -0.343376 -0.210939 -0.698661 -1.339836 -0.226672 -0.152319 -2.130091 0.269989 0.073238 0.468637 0.021083 0.060306 0.040732 0.545768 -0.874586 -0.371013 0.168076 -0.142857 0.508490 1.484225 -0.572086 0.375576 -0.706120 1.271529 -0.324020 0.566293 -0.133669 0.254194 -0.531135 -1.234911 -1.628185 0.433608 0.547278 -0.544735 -1.064989 -1.302481 0.054030 -0.086820 -0.412672 1.009920 1.957928 -0.662437 -0.922143 1.453648 0.653472 0.264229 1.302979 -0.138741 1.663707 -0.515609 -0.080255 -0.471532 -0.544653 -0.665821 -0.198670 0.439771 -0.216167 0.186484 0.025458 -1.503701 1.234631 -0.083238 -0.790128 -0.319086 0.134948 -0.559327 -0.870232 1.536763 -0.010169 0.726635 0.233256 1.455185 -0.352216 -1.087559 0.710333 -0.183879 0.271149 -0.692340 -0.545350 0.393290 0.785679 -0.845290 -0.325418 -0.188870 -0.258092 -0.772543 0.069975 0.631805 0.216903 0.360448 0.702048 0.622079 1.651003 0.275888 0.434274 -1.313862 0.424943 0.569100 -0.656887 -1.261416 0.322316 -0.765282 0.035755 0.239375 -0.313843 0.144210 -0.676590 -0.873649 -0.334261 -0.422907 0.852504 0.435232 -1.120410 0.275135 -0.481589 0.712558 0.615495 0.592873 1.270489 1.142746 1.217414 0.071389 0.229476 0.107567 0.240280 0.054318 0.346246 0.233077 0.521522 1.020959 0.526564 0.090247 0.709983 0.701352 -0.051720 0.944429 0.508762 1.785465 0.226875 -0.116370 -0.400412 -0.258418 0.894897 2.276765 -0.704070 0.373578 0.479191 0.606434 -0.145880 -1.147958 -0.017928 -0.513632 -0.546509 0.581103 -0.205424 -0.141183 -0.123888 1.022789 -0.125506 -1.310713 0.477032 0.009799 0.363738 0.535955 0.037897 -0.047881 0.340679 -1.309712 1.019062 0.866662 0.674283 -0.533969 -0.695646 -0.122277 0.511341 0.251296 0.818641 -0.978629 0.605050 0.895937 1.049374 0.479766 0.392045 -0.803467 -0.889763 0.529548 -0.486345 -0.420437 -0.138254 0.531863 -0.861234 0.208122 -0.435475 -1.385721 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::push_back(int const&) = 0.938586 -0.443997 1.907441 -2.044053 -2.658401 1.830956 -2.228000 -1.624059 0.671628 0.777050 1.164797 -0.329496 -0.071385 2.206378 -0.621062 -2.182844 -0.498536 -0.989887 0.330134 -0.910628 0.038483 0.624524 -0.826581 0.818786 -0.705696 -1.204795 0.240131 0.842165 0.761005 -0.164416 -1.866201 -0.702868 -1.630292 2.809409 1.014842 -0.236774 1.211087 4.668082 -0.124399 1.490580 -1.529114 -2.811084 0.491542 0.166815 -0.508475 0.625366 -1.212009 0.886661 -1.767659 0.269304 2.695591 -0.560982 0.531721 0.783948 1.216963 0.093256 -3.398829 0.884139 -0.086488 -0.081039 -0.472116 -0.912524 0.451936 1.544210 -1.397304 -0.947858 2.381413 2.437489 -0.748398 -0.316045 -0.011956 -3.608402 3.310991 1.479085 -1.247649 -0.025777 2.758532 -2.273112 2.335002 -0.270336 -3.893657 0.033996 -0.807365 -3.596337 3.595927 -0.404372 2.279663 -3.824470 2.864320 -4.336964 1.266339 -1.992432 1.266009 2.843394 -2.708750 0.161001 2.257889 4.379261 1.917640 -1.154175 2.842538 1.262374 -0.429907 1.342172 2.363098 0.437500 -1.143651 -0.293497 -2.429801 -3.131441 -0.251568 -2.214506 -4.186380 0.663623 0.023279 0.413096 -0.767006 0.691731 -0.907854 2.349256 -4.081249 -0.851471 0.064551 -0.412098 1.153823 1.911354 -1.549443 1.383886 -0.176743 3.412500 -2.448153 0.102961 -0.571219 0.734209 -0.687168 1.227554 -4.329564 1.569081 2.234821 -1.742118 -2.950622 -2.302893 -1.046535 1.584491 -0.355371 5.548550 5.289329 -1.843698 -2.378824 2.972859 -0.230301 -0.051418 3.893590 0.521858 2.593410 -1.172964 -0.542429 -2.662501 -0.889146 -1.251984 -1.834556 1.371820 1.092009 2.000744 0.651706 1.698029 4.400900 -1.337253 -2.283306 -1.666603 0.991305 -1.521871 -1.700022 3.109327 -0.361944 1.420737 2.140761 3.942357 -1.293491 -2.057327 0.874926 -2.017778 0.142550 -1.839114 -0.786638 -0.648454 2.254545 -1.677092 -1.346553 -1.085875 -1.367481 -0.898442 0.015172 3.528063 1.505082 1.254189 1.222035 2.726837 5.082464 2.038754 -0.610184 -2.879065 0.955632 1.935800 -1.931427 -0.092773 -0.167847 -1.520193 0.288643 0.225437 -0.082527 1.435665 -2.930803 -1.670476 -2.057497 0.502821 1.814059 1.727483 -5.837584 0.882255 -0.013172 1.419092 1.889090 1.038936 3.320292 3.306593 3.681781 -0.539282 0.691035 0.452679 0.417502 -0.510851 1.548410 2.358185 0.892212 3.351406 1.285521 0.912395 1.623348 2.678557 1.342249 2.171609 -0.076195 4.881681 -0.153267 0.429319 -1.813368 0.159453 2.087083 5.349626 -1.517986 2.381463 1.194785 2.003645 -0.766335 -3.651001 0.708007 -1.506863 1.547606 -0.891173 0.830746 -0.156712 -1.290103 2.636159 0.637192 -3.609540 0.964026 0.116402 0.843309 2.824563 -0.353564 -0.078808 -0.000836 -3.297109 3.784081 2.322103 1.091162 -2.059722 0.995809 0.073352 1.869226 -1.175300 1.963540 -0.783132 2.612476 0.997104 1.979339 1.886936 1.189021 -2.601507 -1.633419 1.564307 -3.077223 -0.821920 1.723035 2.030948 -2.093926 1.743597 -1.999736 -3.668283 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::~vector() = 0.971801 -0.043228 1.250975 -1.359264 -2.008780 0.875344 -1.473762 -0.437345 0.304797 0.678790 0.816788 -0.537790 -0.483993 1.521829 -0.617701 -1.539755 -0.139024 -1.220855 0.240542 -0.911054 0.236809 0.564844 0.082410 0.352513 -0.220838 -0.628195 -0.545047 0.574578 1.520275 -0.735746 -0.943118 -0.049690 -0.676209 1.427290 0.129716 -1.066207 0.801542 2.936836 0.074509 0.014944 -0.996113 -1.555870 0.804277 0.120730 -0.185892 -0.140336 -1.019641 0.882423 -1.075859 0.115060 1.431513 -0.046639 0.226533 0.084180 0.155952 0.448647 -2.846293 1.244228 -0.211020 0.203335 -0.077345 -0.004628 0.355304 0.902798 0.137172 -0.818304 1.285645 1.246170 -0.973908 -0.436752 0.178235 -1.494125 2.110251 0.539956 -0.338826 0.206325 1.717335 -1.174932 1.626053 -1.091960 -2.314103 0.099764 -0.560917 -1.951438 2.186817 -0.528078 1.052424 -2.427515 1.739721 -2.556901 0.994075 -1.295260 0.576063 1.643779 -1.750765 0.285402 1.211973 1.738844 1.678689 -0.271462 2.325796 0.706175 0.319095 1.057130 0.969210 0.234445 -0.535985 0.393647 -1.413208 -2.027933 -0.395073 -0.964309 -2.616391 0.716197 0.215589 -0.038073 0.259738 -0.063422 -0.264885 1.384403 -2.043813 -0.679476 0.103431 -0.189954 0.309132 1.330588 -1.042529 0.444025 -0.291823 2.443624 -1.411209 0.226630 0.501250 0.460260 -0.055145 -0.548550 -2.440592 1.109592 1.030545 -1.116289 -1.677802 -1.424806 0.051682 -0.070352 -0.517929 3.207536 3.375357 -0.761377 -1.523744 1.965664 0.192736 0.018544 2.592765 -0.005518 2.153901 -0.665685 -0.877689 -1.210644 -0.756423 -0.423860 -1.586705 0.912662 0.914408 0.940815 0.718347 0.716353 1.856507 -0.796246 -1.176478 -0.337832 0.688654 -1.020238 -1.267933 1.501022 1.091701 0.975408 1.910133 2.645533 -0.177472 -1.864026 0.912894 -0.527331 0.111849 -0.542103 -0.434462 -0.199289 0.762946 -0.793959 -0.734658 -1.013638 -0.634848 -0.902243 0.068311 2.270937 1.553762 1.092111 0.795006 0.960160 2.701922 1.014776 0.163851 -2.289302 0.322221 1.297762 -0.970630 -0.755520 -0.044443 -0.947227 0.565565 0.981640 -0.345591 1.013688 -1.250465 -1.308276 -1.058814 0.272132 1.053093 0.820771 -2.689128 0.304493 -0.180863 1.091493 0.801383 1.073201 2.128886 1.765761 1.770634 0.227022 0.463054 0.547553 0.878753 -0.744166 0.495298 1.231820 0.604735 1.708602 0.712102 0.780453 1.512186 1.660210 0.019625 1.407014 -0.242117 2.904199 -0.668142 -0.058341 -1.262052 0.064512 1.481012 3.401316 -0.716515 0.815637 0.790654 1.224868 -0.026955 -2.388830 0.584677 -0.981411 1.084886 -0.339997 0.637665 0.170691 -0.635249 1.059695 0.494924 -2.415202 1.544993 -0.013722 0.590455 1.431539 -0.041047 -0.154563 -0.037513 -2.359384 1.419287 1.725441 0.656764 -1.336856 0.390344 0.125390 1.746626 -1.562793 1.613822 -1.090199 1.524258 0.973358 0.769749 0.885187 0.538592 -1.699744 -2.127389 1.004838 -1.489013 -0.755992 1.136675 0.654736 -2.037280 1.092494 -0.372864 -1.759548 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__kasai(std::__cxx11::basic_string, std::allocator >, std::vector >) = 4.633059 2.865200 5.345995 -3.893799 -1.666518 0.934253 1.140018 -2.798224 1.110536 12.974978 2.859075 -3.411603 -6.956610 5.167003 -3.776245 -5.374376 3.895854 0.361656 1.781234 -5.145725 -0.080515 1.536019 0.706307 -4.801873 3.874430 -2.997354 -0.172063 4.557373 3.622074 1.234946 -3.058854 0.401964 2.278306 9.629697 -2.187028 -1.733887 -0.762958 8.846327 -7.866422 5.230555 -11.250450 -10.488604 11.063094 1.954574 1.341646 -7.341765 -0.657899 3.548057 -4.751519 -4.648570 0.129498 -2.449309 2.609221 -6.909204 -1.591236 9.756328 -15.287627 3.631549 0.087581 -4.252659 -6.190780 0.386011 5.460915 1.542441 -0.616328 -6.152554 1.799563 1.774390 -6.342018 2.778541 -5.339408 -8.215432 4.887565 0.780264 -3.258133 3.279246 0.943989 -6.729765 4.870469 -5.737547 -3.546627 -3.504407 3.863959 -0.963335 3.410873 4.307416 6.394638 -12.832761 0.391586 -9.339308 9.215216 -6.050970 9.112367 7.047160 -5.219167 4.655925 3.510757 2.145526 3.360752 -0.796384 10.710848 3.899562 6.578573 -1.639390 3.309088 6.406813 -7.129470 -5.881597 -5.565226 -5.682648 -0.231713 -1.548777 -9.852612 -0.263279 -8.703978 0.149330 5.742776 -5.663819 -1.467486 8.757190 -14.253844 -4.636610 2.777357 -1.404410 6.033010 6.899248 1.063239 0.517404 1.759367 9.324620 -1.829152 -2.421714 -0.127534 4.159931 -2.779489 -9.874829 -4.057104 0.222549 1.735025 -8.543223 -8.967582 -12.491479 -1.157429 2.762721 -1.301478 5.633165 14.789604 -0.548585 -7.783239 4.787396 -3.508059 -0.067086 11.318482 1.835139 14.375294 -11.766265 5.242935 -2.183441 4.483586 5.596120 9.247782 -2.134617 -3.672555 3.652896 2.104598 -1.675958 0.485974 -2.737100 2.170101 -2.938608 1.415604 -2.901370 -1.892446 7.323378 -5.362742 8.877560 -4.640836 12.679654 -7.814101 -10.556425 3.929113 -9.789548 -3.732190 -3.028010 -2.531184 -0.253603 6.415987 -8.496580 -5.076726 -5.734309 -1.324261 1.220374 7.524857 -5.771342 1.458171 -2.004957 -4.139862 7.776736 2.327911 -1.962163 2.110393 -9.158012 -0.867618 5.745685 -0.653641 -13.868275 0.623674 -7.535821 0.249410 3.640367 -1.691807 6.267902 -3.324608 -4.846332 1.986663 -3.608134 0.570486 -5.918834 -5.917357 2.785583 -3.475252 0.679924 2.359540 11.197968 8.952593 5.187309 -1.215445 -0.797050 3.187584 -6.836893 -2.636568 3.419730 0.807057 2.977201 3.136370 4.869044 0.333545 2.398633 5.309611 1.415575 -1.208656 8.646816 1.912539 8.063433 -5.429396 1.652684 1.773951 -5.988268 5.269622 9.902105 -2.382438 -4.287852 4.147570 1.209334 -1.269953 -5.437457 -1.395115 -3.205393 -3.921338 6.105760 5.518384 -2.247258 -3.941018 11.735591 3.294533 -14.605388 10.244645 -0.717277 0.872337 4.892633 -4.336404 0.067632 4.699544 -1.673346 1.569110 2.420372 7.953724 -9.303704 -0.364550 -0.597694 9.144370 3.703842 -1.405332 -17.925641 0.764693 3.620997 8.358600 5.223769 10.471070 -5.043266 -1.480204 -3.199471 -3.522690 -2.656932 -2.457470 4.255213 -3.601385 0.779357 -9.272628 2.962622 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::size() const = 0.776671 -0.515843 0.486551 -0.355033 -0.520945 0.647094 -0.468926 -0.854428 0.258951 0.091955 0.417015 -0.103130 0.145808 0.508551 0.168785 -0.432332 0.296814 -0.471482 0.208864 -0.384472 -0.016562 0.040579 -0.310958 0.153392 -0.323336 -0.268430 0.082724 0.208866 -0.160899 -0.181161 -0.836384 -0.344125 -0.408597 1.103576 0.563806 0.054244 0.010529 1.574539 0.159119 0.683783 -0.889874 -0.737458 0.259453 -0.106087 -0.193772 0.123937 -0.354892 0.465466 0.115491 -0.358375 0.692930 -0.312225 0.196532 0.187989 0.021874 0.421661 -0.832364 -0.022164 0.006908 -0.306457 -0.390689 -0.333645 0.226471 0.661565 -0.898767 -0.544219 1.160722 0.681043 -0.258230 0.227051 -0.456815 -1.707081 0.825994 0.579676 -0.504022 -0.335611 0.638951 -0.661439 0.838113 0.714329 -1.193241 -0.139336 -0.471649 -1.060584 0.922077 -0.234077 0.952256 -1.565711 0.944163 -1.844251 0.509811 -0.794711 0.791192 0.779598 -0.995912 0.020287 0.685461 1.775125 0.634978 -0.589558 0.996283 0.464849 -0.272985 0.105416 1.339722 0.039925 -0.044582 -0.165104 -0.608052 -0.913234 0.286925 -0.691116 -1.273406 0.402897 -0.535426 -0.073401 -0.532239 0.624980 -0.183259 0.917075 -1.445037 -0.400816 0.241315 -0.194558 0.704173 0.863131 -0.781602 0.581497 -0.302278 1.127878 -0.549035 0.123877 -0.356985 0.354785 -0.295130 0.114142 -1.497548 0.477702 1.122940 -1.053401 -1.281940 -1.020636 -0.276709 0.612631 -0.379111 1.919482 1.837596 -0.777462 -0.572298 0.781358 0.231910 -0.314876 1.325460 0.064506 1.501301 -0.909659 0.307599 -0.637709 0.017918 -0.330834 -0.707451 0.169555 0.230866 0.603172 0.205673 0.080251 2.292517 -0.465282 -0.733835 0.273033 0.114345 0.186293 -0.775695 0.989049 0.086829 0.369774 0.581717 1.122038 -0.483782 -0.463087 0.465649 -0.350024 -0.209086 -0.234947 -0.169128 -0.457394 1.189311 -0.606891 -0.472091 -0.279595 -0.958094 -0.024630 0.295936 1.661172 0.424100 0.401869 0.327351 0.698413 1.705185 0.712849 -0.152073 -1.049359 0.413915 1.021402 -0.365178 0.360697 -0.386850 -0.934999 0.016719 -0.494028 0.058745 0.787437 -1.198312 -0.586076 -0.558141 0.382484 0.559548 0.622068 -1.967746 0.378710 0.183066 0.302216 0.504839 0.801616 0.842079 1.098309 1.250989 -0.765216 0.220472 -0.027196 -0.543851 -0.077646 0.285213 1.087660 0.260524 0.653531 0.382764 0.242034 0.739304 0.288507 0.965093 0.911643 0.317219 1.624902 -0.225007 0.472186 -0.426415 -0.456957 0.918335 2.001795 -0.272246 0.520668 0.371020 0.420582 -0.823311 -1.256195 -0.007113 -0.317101 0.350048 -0.346569 0.209691 0.086981 -0.801094 1.334430 0.306845 -1.624035 0.402309 0.062242 0.092714 1.575701 -0.289938 0.381570 -0.049335 -0.763826 1.111638 0.779512 0.650282 -0.763684 0.068262 -0.096858 0.521850 -0.379721 0.325885 -0.499321 1.167865 0.449991 1.045796 0.741741 0.037664 -1.165435 0.021618 0.415619 -1.101972 -0.082562 0.859876 1.134052 -0.762042 0.262997 -1.289179 -0.516264 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(unsigned long, int const&, std::allocator const&) = 0.632979 0.418438 1.088071 -1.500032 -1.663522 0.003419 -0.775978 -0.492547 0.674386 1.066019 1.300208 -1.354145 -0.770901 2.426855 -0.534427 -0.997074 -0.003347 -0.967652 0.452415 -0.014053 0.788585 0.742936 0.026732 0.188373 -0.053718 0.149983 -0.861455 0.386916 1.534724 -1.004322 -1.442379 0.105085 0.243758 1.269565 -0.609676 -1.037841 0.287002 2.368018 -1.312667 1.033368 -1.917580 -1.219682 1.080248 0.162950 -0.257739 -2.039667 -1.464238 0.789532 -0.555320 -0.613516 0.986438 0.302261 -0.043406 -0.509656 0.263465 1.162113 -3.365182 1.456356 0.480848 0.341135 0.642747 0.277959 0.345060 0.572686 -0.192103 -0.609766 0.647499 0.220869 -1.158783 -0.187014 -0.061826 -1.609745 2.185118 0.542242 -0.748197 0.745970 1.334123 -2.011567 1.927510 -2.122324 -1.548755 0.141381 -0.114078 -0.471998 1.540029 -0.168305 0.662294 -1.955035 0.632364 -2.136364 1.309809 -2.088755 0.511599 1.681376 -1.733379 0.186512 1.072490 0.644297 2.400723 0.532292 2.122387 1.528358 1.053009 0.168517 0.747485 1.096803 -0.727881 0.051929 -1.204506 -2.086327 -0.444104 -0.275926 -2.975279 0.354867 -0.097623 -0.184088 0.903654 -0.761335 0.430069 1.839865 -1.624493 -0.677334 0.594630 -0.107118 -0.073724 2.479788 -0.534586 -0.177325 -0.840582 2.081002 -0.789629 0.528683 0.879289 0.332069 -1.020171 -2.255062 -1.683968 0.334319 0.041395 -1.547667 -1.247983 -2.285989 0.536412 -0.211628 -0.215529 1.660983 3.099271 -0.609509 -1.548190 1.818265 1.271576 -0.474759 2.528082 -0.103223 3.134629 -1.007263 -0.241462 -0.970551 -0.627684 -0.263868 0.521291 0.715286 0.261967 0.183433 0.482095 -2.355184 1.501238 -0.321618 -0.471579 0.244889 0.476607 -1.217734 -1.464182 1.490845 0.526790 1.484823 0.247279 2.420840 -0.418768 -1.733294 1.444452 -0.485156 0.184762 -0.602470 -0.829295 0.715085 1.158985 -1.009585 -0.376336 -0.991512 -0.773856 -0.657775 0.613665 -0.037357 1.047856 0.658374 0.176076 0.801284 1.910724 0.061705 0.907790 -2.190233 0.301347 0.975699 -0.852062 -2.569691 0.490426 -1.793642 0.593900 0.756265 -0.796863 1.071648 -1.050962 -1.695035 -0.224908 -0.701416 0.615194 -0.483420 -1.666554 0.166608 -1.066635 1.523185 0.739146 1.281352 1.673987 1.713665 1.074845 0.249157 0.213294 -0.087825 0.452052 -0.004805 -0.016218 0.165339 0.657579 1.701895 0.377204 0.621137 1.511022 0.965606 -0.469118 1.723290 -0.039050 2.094707 -0.271408 -0.140334 -0.464949 -0.636324 1.546731 3.383923 -0.435329 0.001531 0.668744 0.841200 -0.381090 -1.680941 -0.089500 -0.487732 -0.742054 1.140516 0.622986 0.208942 -0.292731 1.177522 0.580702 -2.384511 1.309342 -0.322512 0.298279 0.921720 -0.094671 -0.197766 0.615788 -1.552779 0.858814 1.043755 1.303888 -1.468849 -1.021319 0.073945 1.589573 0.076057 1.273768 -2.772654 0.990386 1.327376 0.936518 0.546672 1.459972 -1.628231 -1.579081 0.578057 -0.544824 -1.013399 -0.266529 0.474049 -1.892087 0.260927 -0.594135 -0.950457 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::operator[](unsigned long) = 0.279338 -0.150302 0.362032 -0.701847 -0.717444 0.425398 -0.364530 -0.442479 0.143677 0.016055 0.490061 -0.247587 0.055003 0.939345 -0.060799 -0.558087 -0.015572 -0.346811 -0.033630 0.143843 0.060302 0.303331 -0.246051 0.136138 -0.128074 -0.084498 -0.056690 0.225117 0.176725 -0.257429 -0.716066 -0.184683 -0.352982 0.807868 0.256311 -0.044140 0.266153 1.314692 -0.314306 0.786930 -0.526056 -0.570213 0.263741 0.020003 -0.220682 -0.234206 -0.649694 0.345428 -0.141719 -0.303839 0.777235 -0.144503 0.075398 0.110693 0.351822 0.289783 -0.957043 0.184621 0.194930 0.138807 -0.017341 -0.225149 0.130116 0.321049 -0.588762 -0.364185 0.562762 0.446459 -0.179729 -0.196800 -0.142710 -1.191212 1.165803 0.447477 -0.403911 0.020299 0.566196 -0.914647 0.738229 -0.148483 -1.046202 0.067222 -0.254022 -0.763273 0.990408 -0.191362 0.615256 -1.153643 0.676497 -1.299951 0.351863 -0.726675 0.354467 0.887655 -0.776973 -0.014630 0.539873 1.162770 0.656880 -0.000784 0.829871 0.461298 -0.104816 0.179581 0.762089 0.230841 -0.374149 -0.193725 -0.661505 -0.959984 0.046450 -0.497038 -1.432190 0.287358 -0.003620 0.060354 -0.218378 0.204001 -0.075578 0.697365 -0.940409 -0.077415 0.112170 -0.117354 0.272407 0.879330 -0.409167 0.244685 -0.326669 0.892054 -0.521201 0.236825 -0.156839 0.257500 -0.441368 -0.003502 -0.927711 0.380299 0.552421 -0.603993 -0.831096 -0.922343 -0.097716 0.415832 -0.268775 1.300327 1.497034 -0.613113 -0.679264 0.886393 0.475912 -0.054707 0.939056 0.029284 1.031163 -0.448665 -0.064282 -0.544590 -0.291696 -0.412459 -0.448027 0.333064 0.117423 0.428271 -0.057544 -0.557996 1.779772 -0.197768 -0.576846 -0.033378 0.231834 -0.421181 -0.682140 1.021365 0.019642 0.485125 0.470739 1.129417 -0.318568 -0.425038 0.395385 -0.308620 0.001571 -0.725983 -0.333259 -0.035611 0.691113 -0.439953 -0.297404 -0.227964 -0.398130 -0.360194 0.126745 0.669736 0.339420 0.303068 0.302926 0.484868 1.338919 0.407059 -0.002041 -0.833674 0.334745 0.547671 -0.594415 -0.277399 -0.049338 -0.598669 0.061607 -0.008742 -0.118540 0.390569 -0.849296 -0.564078 -0.350516 0.070978 0.460116 0.378695 -1.455161 0.154890 -0.094768 0.495566 0.509816 0.468405 0.889972 1.012930 0.947713 -0.151081 0.149482 0.197576 -0.278783 -0.135448 0.177604 0.634501 0.357085 0.849225 0.376106 0.266079 0.540824 0.565596 0.459339 0.710920 0.235486 1.353522 0.302011 -0.069117 -0.299719 -0.121718 0.696467 1.553735 -0.403234 0.572227 0.320602 0.461794 -0.435737 -0.851764 0.197189 -0.344956 -0.023192 0.024367 0.084712 0.108290 -0.376217 0.875113 0.047986 -1.156339 0.212679 0.003900 0.371062 0.876745 -0.033578 0.282165 0.042493 -0.765086 1.029404 0.664653 0.476667 -0.553969 -0.026242 0.014849 0.413975 -0.044611 0.539266 -0.436532 0.858453 0.323409 0.702093 0.384144 0.309934 -0.723298 -0.215218 0.378894 -0.631367 -0.153763 0.219273 0.568038 -0.550282 0.180283 -0.827260 -0.803033 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__printArr(std::vector >, int) = 0.552756 0.593630 0.644523 -0.680755 -0.585689 0.258009 0.100653 -0.642135 0.002851 1.602957 0.380090 -0.430679 -1.183955 0.862784 -0.601942 -0.984194 0.125334 -0.395821 -0.025453 -0.753677 -0.114321 0.416395 -0.063107 -0.430220 0.423125 -0.405766 0.003116 0.569615 0.423449 -0.173861 -0.421596 -0.091544 0.215498 1.406222 -0.042812 0.060600 -0.051544 1.448862 -0.834174 0.830673 -1.909770 -1.711178 1.302007 0.224354 0.135718 -1.232082 0.024720 0.581339 -0.929575 -0.283996 0.213621 -0.378713 0.071478 -0.673588 0.105996 1.251233 -2.229770 1.093664 0.020972 -0.590903 -0.780251 -0.138789 0.615594 0.111452 0.111952 -0.906163 0.173145 0.466513 -1.006374 0.460659 -0.604940 -1.157364 0.920682 0.220695 -0.613883 0.316933 -0.007825 -0.718871 0.672908 -1.304316 -0.687972 -0.437626 0.712600 0.079791 0.532436 0.780414 0.661111 -1.939403 -0.033797 -1.465728 1.114489 -0.737136 1.222624 0.953343 -0.644075 0.582530 0.486119 -0.098963 0.607605 -0.130809 1.332338 0.285625 0.931866 0.053286 0.354198 0.761643 -0.922267 -0.712640 -0.689391 -0.998238 -0.019725 -0.087449 -1.432636 -0.063387 -0.998657 0.345852 0.609696 -0.551218 -0.144751 0.826045 -2.251235 -0.921182 0.282280 -0.185417 1.143908 0.916815 0.107592 0.321825 0.098203 1.275900 -0.340201 -0.041352 -0.312135 0.571728 -0.131325 -1.452103 -1.131402 0.101384 0.380469 -1.033474 -1.274707 -1.605570 -0.323371 0.393367 -0.312776 1.053263 2.161377 -0.423867 -1.339008 0.984134 -0.528367 0.146428 1.517682 0.233048 1.830967 -1.413408 0.589677 -0.254737 0.360116 0.581461 1.107709 -0.213618 -0.662982 0.465259 0.339028 -0.237297 -0.251143 -0.325245 -0.132236 -0.688693 0.108142 -0.502385 -0.224850 0.970225 -0.714258 1.361092 -0.550144 1.735248 -1.321998 -1.508811 0.482917 -1.541973 -0.409118 -0.394821 -0.472010 -0.024022 0.898058 -1.393599 -0.640823 -0.650867 -0.264046 -0.177405 0.916193 -0.623519 0.130918 -0.175440 -0.246950 1.420131 0.798601 -0.188478 0.209133 -1.229836 0.123706 0.793604 0.126073 -1.978757 0.101492 -0.943200 -0.107481 0.831723 -0.236412 0.719661 -0.218013 -0.454402 0.163848 -0.616937 0.396443 -0.438461 -0.574547 0.375908 -0.564346 0.100631 0.314057 1.395318 1.194194 0.859103 0.178425 -0.082907 0.412133 -0.934420 0.124830 0.376523 0.403020 0.341485 0.595414 0.796188 0.302020 0.305770 0.964134 0.508738 -0.267351 1.255576 0.163389 1.504829 -1.083921 0.293303 -0.000390 -0.548388 0.695935 1.587585 -0.858520 -0.383673 0.644403 0.250484 0.008163 -0.761520 -0.202403 -0.639253 -0.544267 0.965206 0.788975 -0.374098 -0.502449 1.809731 0.277934 -1.859517 1.451459 0.004006 0.206663 0.359610 -0.539647 -0.249922 0.785531 -0.661257 0.235707 0.622443 1.128491 -1.227753 -0.278168 -0.172815 1.231204 0.489915 0.054033 -2.127098 -0.053287 0.742692 1.418545 0.674445 1.245737 -0.707704 -0.517253 -0.190564 -0.445328 -0.332432 -0.054706 0.640945 -0.432584 0.167327 -1.068038 -0.027479 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.656000 0.170328 4.292556 -3.809128 -3.251518 0.149159 -4.493805 3.387451 2.189230 2.588491 1.142036 -4.381825 -8.580936 4.779843 -2.535404 -6.971769 2.775319 -0.864170 4.065344 -4.269371 1.854835 0.980191 4.285878 -1.070802 2.374825 -2.222570 -6.244525 3.680266 13.431675 -2.721413 -0.072861 2.970958 1.563127 3.947317 -5.000504 -3.723973 2.548555 6.967355 0.877593 0.877165 -3.925445 -3.664156 6.785724 1.825681 -1.206485 -3.864330 -2.595338 2.574133 -10.416822 -0.496940 1.482128 1.893282 0.792345 -3.720846 -2.263456 6.626978 -14.168801 6.484462 -2.522634 0.868611 1.961888 4.157837 -0.968536 1.569361 6.122793 -2.772118 -0.631411 0.457059 -7.841676 -0.829296 1.804015 1.582444 7.988567 -0.142220 -1.187053 4.785135 6.782528 -0.787086 3.607123 -9.146067 -3.188516 -0.248693 0.453102 -0.651084 6.343173 -0.169542 1.665979 -5.584230 0.196371 -3.455510 7.554610 -5.884896 2.391965 4.918023 -5.754987 3.386622 2.202712 -4.976073 5.000375 1.471967 9.850274 2.305022 4.143351 2.240034 0.620648 1.235071 -1.314189 1.180470 -3.494105 -4.237173 -3.722348 -0.932602 -7.406198 0.209287 -1.941442 2.809594 8.245844 -3.510556 -1.285190 1.150474 -2.975692 -2.447623 0.362557 -0.353098 -0.166208 5.024437 -0.774071 -2.512470 1.815925 9.418793 -2.165908 -0.938069 5.569596 1.142047 3.819438 -8.739561 -3.392257 0.485480 -1.788275 -3.333512 -3.698153 -5.078057 2.158988 -2.898868 -0.164779 4.721088 10.814233 3.051796 -3.203607 5.260741 -1.563911 3.705088 8.356850 0.041782 8.625072 -3.663677 -2.603174 -2.608613 -0.307917 3.416473 2.714152 2.280485 1.752972 0.587866 4.400933 0.028803 -6.017216 -2.874940 1.282066 -1.915217 -0.782301 -4.464545 -4.154632 3.265820 3.777211 5.225205 2.155539 8.696819 2.505701 -12.610288 4.643504 0.421082 -0.728167 1.657223 -2.056244 1.505671 -2.771499 -4.968607 -2.729107 -5.894168 2.135654 -1.781491 0.629144 2.468856 4.892510 1.726038 -0.447391 3.459990 0.918826 -0.212750 3.314939 -9.899230 -2.385398 2.230472 -2.361427 -8.025595 3.742431 -2.564936 3.338096 7.908710 -2.746322 2.497981 -0.999972 -5.315832 -1.490863 -2.075629 2.195658 -3.217188 -3.590803 -0.009303 0.989227 1.400795 3.567326 5.327628 8.008619 1.224860 -1.693400 4.777833 1.618604 0.332831 4.011054 -2.047921 -1.065823 1.217858 1.073469 2.058078 -0.084512 1.691552 6.072914 4.946027 -5.228266 4.409501 -0.672665 4.442373 -1.434999 -1.911083 -0.138064 -3.444201 3.703267 8.269600 -2.855531 -1.188867 4.302493 3.736018 4.249079 -8.172828 0.679267 -2.901147 0.384077 6.170736 -0.117068 0.062678 -0.094975 -0.094215 3.317592 -7.775950 8.890724 -0.675565 -1.014254 0.059839 -0.125246 -3.755553 1.954979 -8.344810 -1.868994 2.102666 2.427736 -5.180460 1.092519 0.564424 7.053598 -2.938277 3.968095 -8.053593 -2.784512 2.441534 0.783112 4.688205 3.247846 -2.056685 -11.078767 0.376208 -2.438236 -5.612859 -2.670710 -2.711384 -6.345451 1.951014 3.124668 -1.773720 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::vector(std::vector > const&) = 1.065836 -0.012757 2.483758 -2.648867 -3.882989 1.500656 -3.683898 -1.367014 1.107874 0.945430 2.083997 -1.773436 -1.385112 3.491428 -1.310793 -2.997527 -0.494539 -0.757887 1.300631 -1.429368 0.953239 0.797496 -0.158508 0.829696 -0.805133 -1.050382 -1.236039 0.957223 3.847165 -0.762001 -2.348440 -0.068243 -0.811518 2.902057 0.052938 -1.579020 1.493715 5.331990 -0.217110 0.861366 -2.628872 -2.925803 1.297015 0.500467 -0.470032 -1.283664 -2.509138 1.242309 -3.469750 0.495573 2.805041 -0.078363 0.667945 0.365329 0.713863 1.064746 -6.064025 2.818346 -0.057556 0.215744 0.918748 0.290827 0.133370 1.874019 0.201150 -1.073419 1.980067 2.552691 -1.769669 -0.658205 0.421835 -3.216648 4.902961 1.089115 -1.576184 0.709525 3.846808 -2.748637 3.249213 -2.584947 -4.364342 0.323849 -0.801829 -2.603130 4.152435 -0.415019 2.061606 -4.115467 2.402648 -4.916921 2.448721 -3.164348 1.139539 3.249229 -4.235174 0.110698 2.884206 2.504122 4.128284 -0.001220 4.291307 2.101100 0.471083 1.436723 1.932907 0.945129 -0.749503 0.664584 -2.624302 -4.116402 -1.313245 -1.679329 -5.983963 0.711953 -0.011681 0.770975 0.490667 -0.462560 -0.147314 2.817231 -3.565279 -1.404484 0.243679 -0.285502 0.556998 3.346566 -1.611816 0.840150 -0.479089 4.744319 -2.794915 0.076933 1.130260 0.689644 -0.439215 -2.324651 -5.423222 1.903283 1.513242 -2.478131 -2.983356 -3.041152 0.057471 0.258242 -0.181551 5.065148 6.586041 -1.437683 -2.953264 3.798221 0.472207 -0.282283 5.893585 0.314946 4.800041 -1.402072 -1.148713 -2.987213 -1.640151 -1.142781 -1.752657 1.806857 1.571092 1.527440 1.649762 -0.244140 2.969042 -1.649080 -2.171833 -1.289203 1.031241 -2.204182 -2.297600 3.014267 1.118272 2.015621 2.343277 5.040664 -0.592107 -4.235629 1.960567 -1.213402 0.245876 -0.329057 -1.054567 0.377957 1.865409 -2.210886 -1.328002 -1.917544 -1.168991 -1.369101 0.244297 3.887530 2.465310 2.171385 1.032589 2.301599 5.184079 1.809190 0.649516 -4.184944 0.560805 2.242282 -2.328803 -2.716399 0.525841 -2.657979 1.304969 1.426030 -0.846128 2.184770 -2.621822 -2.818553 -2.315015 -0.399488 2.493963 1.006886 -4.644951 0.876551 -0.865745 2.344610 2.054357 1.784666 4.062637 3.820233 3.448810 0.633425 0.868788 0.423517 2.372059 -0.708465 1.461818 1.622364 0.967232 3.660764 0.995259 1.357785 2.580316 3.139204 0.215856 2.967787 -0.535500 5.157812 -0.833574 0.357621 -2.099066 -0.375296 2.903385 7.158113 -1.618928 1.760994 1.334528 2.340609 0.130261 -5.009072 0.732204 -1.370603 0.657517 0.586806 1.308544 0.477063 -1.293476 1.943640 1.471489 -4.305032 2.756372 -0.179950 0.388496 2.363967 -0.237689 -1.153403 0.207993 -4.280663 2.861526 2.855915 1.709103 -2.955042 -0.155667 0.198421 3.254077 -1.461784 2.996401 -2.589213 2.386650 2.234288 1.554654 2.017717 1.559371 -3.445893 -4.255945 1.837771 -2.838274 -1.958849 0.871479 1.040378 -3.730030 1.864462 -0.146523 -4.005903 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.208199 -0.185752 0.416226 -0.425930 -0.491150 0.052011 0.008234 -0.015955 0.177180 -0.681821 0.342513 -0.400747 -0.454146 0.617447 0.112950 -0.709018 -0.008502 0.227582 -0.186792 0.076510 0.073357 0.094436 -0.040227 0.131901 0.051716 -0.097754 -0.040924 0.619317 0.683261 -0.127779 -0.361011 -0.004551 -0.024313 0.609834 -0.082950 0.241713 0.328503 1.090465 -0.148334 0.827091 -0.187580 -0.216634 0.414192 0.040225 -0.448212 -0.424870 -0.790014 0.294963 -1.119603 -0.135883 0.655345 0.184338 -0.017143 -0.094242 0.476050 0.627873 -0.988777 0.309563 0.076653 0.119594 0.134584 -0.115507 -0.408766 -0.010335 -0.244028 -0.252482 0.174705 0.067519 -0.292021 0.013462 0.033273 -0.684958 1.493537 0.196354 -0.343254 0.314068 0.718941 -0.455074 0.528898 0.067283 -0.620592 -0.026703 -0.004742 -0.189185 0.983027 -0.251024 0.126600 -0.831665 -0.144007 -0.812295 0.467034 -0.933497 0.199815 0.737148 -0.872164 0.325238 0.248585 0.100481 0.079820 0.162684 0.602202 0.232553 0.123138 0.079531 0.583740 -0.071086 -0.292471 -0.448134 -0.621299 -0.697406 -0.065819 -0.461859 -1.405133 0.007563 -0.010755 0.416285 0.104661 0.199581 0.038412 0.173436 -0.197389 0.610412 0.267973 -0.129906 0.184704 0.870838 -0.353498 0.040896 -0.230306 0.783695 -0.249863 0.305324 -0.185654 0.126131 0.157355 -0.421468 -0.624195 0.048975 0.258365 -0.121905 -0.649007 -0.438295 -0.113551 0.322855 -0.078773 0.400725 1.175720 -0.190482 -0.421999 0.707374 0.472335 0.599064 0.496631 0.141990 0.826470 -0.317544 -0.052071 -0.549124 -0.231335 -0.123547 -0.167816 0.274975 -0.184812 0.344687 0.066584 -0.777978 1.370900 -0.351609 -0.257015 0.066355 0.017052 -0.420488 -0.700087 1.129562 0.307731 0.649377 0.170514 0.905143 -0.201869 -0.712249 0.296705 0.195952 0.153751 -0.723076 -0.328228 0.178527 0.285462 -0.501155 -0.377536 -0.373937 -0.097239 -0.150131 0.043379 0.623249 0.045355 0.002643 0.391831 0.110572 0.844274 0.166555 0.053972 -0.962806 0.177370 0.185603 -0.420216 -0.429411 0.416390 -0.150844 0.003409 0.022942 -0.044589 0.002454 -0.431754 -0.480033 -0.256722 -0.233166 0.204116 0.123870 -1.243568 -0.011482 0.202598 0.156030 0.561157 0.240097 1.190248 0.405518 0.569131 0.146187 0.161054 0.225135 -0.279657 -0.044477 -0.043143 0.571820 0.165459 0.496517 0.258003 -0.100267 0.355067 0.525325 0.183746 0.437165 0.743867 1.007876 0.676315 -0.307031 -0.022998 -0.158497 0.505574 1.098055 -0.293057 0.499879 0.426850 0.767012 -0.031388 -1.043768 -0.183036 -0.295095 -0.291740 0.777432 -0.396973 -0.264140 0.039181 0.584148 -0.006364 -0.825435 0.008501 0.024111 0.166860 0.279950 -0.008532 -0.041893 0.326916 -0.774207 0.629455 0.122919 0.304811 -0.387135 -0.080400 -0.058112 0.086846 0.192288 0.382767 -0.405355 0.069844 0.169723 0.664907 0.416176 0.223886 -0.285913 -0.319893 0.105062 -0.525375 -0.243865 -0.132804 0.126199 -0.440833 -0.003021 -0.646848 -0.933099 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.585669 0.446344 1.071543 -1.232895 -2.060201 0.770941 -0.848020 -1.435547 0.370027 1.659881 0.831348 -1.110086 -0.455882 2.085006 -0.850640 -1.374002 -0.042140 -1.327002 0.162325 -1.098680 0.014929 0.793322 -0.380394 0.243443 -0.315489 -0.521415 -0.194294 0.414605 0.649805 -0.473202 -1.628643 -0.385275 -0.083650 2.346183 0.572690 -0.759086 0.277450 3.372128 -0.490733 1.320770 -2.617124 -2.071342 0.886131 0.233730 0.085325 -1.432051 -1.018290 1.045133 -0.413923 -0.022272 1.354476 -0.329142 -0.134323 0.092443 0.582199 1.321486 -3.121216 1.807408 0.037927 -0.249703 -0.376093 -0.540394 0.507843 1.164100 -0.831676 -1.312158 1.427551 1.682953 -1.146352 0.674305 -0.765910 -2.952746 1.970347 0.935340 -1.529638 -0.177367 1.096549 -1.817561 1.799212 -1.583841 -2.254562 -0.026794 0.109387 -0.803825 1.743620 0.242133 1.503593 -3.471896 1.234119 -3.478976 1.345486 -2.022953 1.545596 2.059788 -1.812031 0.186331 0.986704 1.753378 2.445383 -0.255061 2.339856 1.289096 0.808228 0.207506 1.386312 1.194508 -0.485378 -0.390688 -1.077683 -2.170410 -0.222421 -0.358976 -3.231689 0.542552 -0.808594 0.334612 -0.099863 0.139021 -0.285431 1.934808 -3.398143 -2.255778 0.443937 -0.350930 1.587450 2.047576 -1.130659 1.220450 -0.837636 2.660292 -0.650433 0.375189 -0.416475 0.623564 -1.375614 -1.805118 -3.657428 0.901944 1.590862 -1.937059 -2.574212 -2.673555 -0.432378 0.465220 -0.804052 3.343122 4.089106 -1.242346 -1.906626 2.244049 0.293821 -0.462348 3.207102 -0.065977 3.530162 -1.930637 0.651448 -0.964213 0.057718 -0.611489 0.195482 0.400738 -0.138674 0.749641 0.560675 -0.794194 1.837110 -0.675437 -1.318673 -0.698562 0.209309 -0.222312 -1.050055 2.323950 -0.587713 1.487307 0.189859 2.918935 -1.446088 -2.181024 1.188417 -1.688358 -0.077955 -0.453885 -0.352329 -0.117321 2.365461 -1.874680 -0.921916 -0.331699 -1.533255 -0.685357 0.607852 1.466498 0.666251 0.537895 0.729438 2.481714 3.234197 0.853881 0.491555 -2.490839 0.738685 1.775131 -0.652260 -1.845374 -0.106956 -1.836500 0.040655 -0.072508 -0.353588 1.002222 -1.629842 -1.467350 -0.822792 -0.434100 1.497493 0.610466 -2.307131 0.956900 -0.923394 1.170041 0.589614 1.735556 2.184622 2.151067 2.263050 -1.022206 0.613189 -0.881130 0.445692 0.536061 1.239849 0.558215 0.816033 2.144208 0.627280 0.300381 1.773358 1.017927 0.288638 1.942886 0.117244 3.498477 -1.446185 0.871868 -1.079877 -0.975006 1.801772 4.723737 -1.066758 0.138077 0.957436 0.770192 -0.707731 -2.130296 -0.222876 -0.990427 -0.152049 0.135060 0.674943 -0.484766 -0.931646 2.695450 0.568270 -3.137050 1.589551 0.101653 0.162921 1.895716 -0.670103 -0.087079 0.644910 -1.989679 1.641277 1.693243 1.550935 -1.593032 -1.025887 -0.343727 1.564853 -0.203840 0.905931 -2.373924 1.520501 2.051673 2.389352 1.317110 1.200877 -2.113587 -1.273475 0.889165 -1.324633 -0.857651 0.953456 1.809686 -2.010820 0.997346 -1.260993 -1.595481 +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.236851 0.152868 0.165911 -0.413874 -0.725972 0.167252 -0.397050 -0.296962 -0.002306 0.041595 0.252958 -0.406284 -0.222807 0.786678 -0.286483 -0.518725 -0.234895 -0.246976 -0.072235 -0.004347 0.012471 0.305453 -0.117354 0.164634 -0.081478 0.034588 -0.165048 0.031657 0.503901 -0.293587 -0.486794 -0.080069 -0.009591 0.530891 0.132630 -0.121157 0.226043 0.940925 0.058322 0.427561 -0.580675 -0.443545 0.115526 0.053320 0.006257 -0.508460 -0.453970 0.334820 -0.484759 0.082326 0.478313 0.011324 -0.251705 0.096782 0.341021 0.264396 -0.965899 0.829790 0.130105 0.235719 0.179829 -0.136383 -0.056125 0.095872 0.017060 -0.284748 0.112359 0.454472 -0.376771 0.014058 -0.063813 -0.585563 0.905082 0.198723 -0.474849 0.044548 0.326421 -0.391304 0.457772 -0.843342 -0.680211 0.121690 0.064124 0.036933 0.632692 0.114997 0.141866 -0.818909 0.283961 -0.871018 0.259313 -0.591379 0.207787 0.647421 -0.630689 -0.009714 0.258488 0.136523 0.766295 0.296927 0.574428 0.277035 0.065523 0.132800 0.189537 0.203627 -0.084266 0.001015 -0.231673 -0.705320 -0.196010 0.034991 -1.058302 0.118711 0.040190 0.482249 -0.044854 0.138262 0.037420 0.057518 -0.769674 -0.526047 0.018888 -0.062246 0.406064 0.612919 -0.289200 0.269642 -0.380175 0.676800 -0.195995 0.168253 -0.052979 0.120132 -0.227827 -0.677567 -1.060254 0.243912 0.314511 -0.293515 -0.565617 -0.651239 -0.022010 -0.008641 -0.231169 0.706965 1.022466 -0.354469 -0.479232 0.783490 0.155952 0.137335 0.838167 -0.052277 0.815263 -0.239487 -0.055210 -0.113170 -0.259972 -0.351410 -0.443025 0.214974 -0.100443 0.076065 0.107050 -0.522861 0.335165 -0.076819 -0.465684 -0.360404 0.026865 -0.281890 -0.323367 0.670132 -0.049586 0.381054 0.148230 0.769323 -0.234954 -0.598800 0.335361 -0.302779 0.125885 -0.149057 -0.202905 0.063927 0.428013 -0.599685 -0.166510 0.060547 -0.185772 -0.441163 0.042995 0.501494 0.124284 0.236879 0.367062 0.537264 0.878584 0.141413 0.233253 -0.657792 0.198619 0.303452 -0.305952 -0.641568 0.156816 -0.402254 0.029948 0.247995 -0.167663 0.025404 -0.266538 -0.409549 -0.247426 -0.217543 0.582620 0.265556 -0.184994 0.111021 -0.303283 0.372524 0.272658 0.308550 0.604953 0.604735 0.642808 0.016354 0.148411 -0.029970 0.433150 0.012257 0.279581 0.115763 0.267708 0.475184 0.281746 0.064049 0.387574 0.406507 -0.096117 0.516984 0.148897 0.985446 -0.199614 0.036330 -0.305777 -0.109603 0.470157 1.219403 -0.655667 0.242816 0.237433 0.245156 0.046738 -0.515959 0.003052 -0.272137 -0.315129 0.176592 -0.012697 -0.014326 -0.088972 0.518661 -0.044580 -0.610805 0.382889 0.025999 0.147270 0.216477 0.014877 -0.133511 0.190759 -0.720424 0.378946 0.509613 0.369417 -0.303134 -0.360810 -0.092207 0.373338 -0.010892 0.460951 -0.240326 0.340869 0.602516 0.524455 0.251324 -0.008296 -0.428931 -0.650810 0.301179 -0.247010 -0.253208 0.046621 0.289407 -0.355182 0.111818 0.003670 -0.801896 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__introsort_loop >(suffix*, suffix*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 1.929002 0.861055 2.018423 -2.314832 -3.134362 1.060220 -0.666991 -1.923290 0.669043 2.881800 1.398082 -1.489200 -1.186283 3.342511 -1.320689 -2.082863 0.028666 -2.278686 0.099999 -1.463283 0.124886 1.415130 -0.575268 0.341334 -0.149484 -0.703922 -0.167393 1.106045 1.145731 -0.790038 -2.397200 -0.570763 -0.295837 3.641689 0.549206 -1.015827 0.490589 5.287889 -1.746186 2.210705 -4.077461 -3.458989 1.747458 0.362225 -0.080779 -2.737900 -1.520946 1.685464 -0.997383 -0.460285 2.252092 -0.424608 0.029363 -0.184661 1.091308 2.098408 -5.246784 2.444997 0.205090 -0.265834 -0.706798 -0.883413 1.041422 1.565698 -1.453521 -1.993389 2.060471 1.833161 -1.892177 0.794364 -1.009372 -4.358829 2.873591 1.296237 -2.193716 0.125279 1.790261 -3.383132 2.916521 -2.552517 -3.403694 -0.089234 0.194058 -1.773109 2.962031 0.141282 2.117691 -5.328523 1.606318 -5.088353 2.027889 -3.215659 2.258355 3.346216 -2.788848 0.527774 1.506033 2.789053 3.433025 -0.649271 3.676046 2.126087 1.782956 0.431167 2.267452 1.944576 -1.418423 -0.905072 -2.282632 -3.576051 -0.230687 -0.996654 -5.104856 0.654156 -1.050057 -0.150799 0.271026 -0.346806 -0.613103 3.310918 -5.311551 -2.549438 0.779833 -0.515207 1.999606 3.435296 -1.549383 1.501388 -0.951630 4.134434 -1.272131 0.890308 -0.615239 1.023136 -1.967611 -2.445724 -4.817314 1.118656 2.050486 -2.721416 -3.876303 -4.466186 -0.659205 0.580786 -1.040063 4.619796 6.414592 -1.783684 -3.318195 3.543060 0.413512 -0.504901 4.560404 -0.048962 5.118090 -2.849501 0.777595 -1.795906 -0.026806 -0.750774 1.162422 0.739330 -0.283490 1.200358 0.545017 -1.619545 2.741625 -0.910220 -1.775017 -1.366362 0.556452 -1.164942 -1.849891 3.837398 -1.250954 2.631830 0.127886 4.548458 -2.308031 -3.346031 1.764272 -2.897218 0.094415 -1.592975 -1.095651 0.105511 3.379038 -2.782855 -1.455481 -1.227327 -1.847487 -1.079173 0.978771 0.830863 1.061732 0.575561 1.168990 3.489707 4.754922 1.050952 0.747717 -3.849182 1.109264 2.641315 -0.885070 -3.294429 0.048121 -2.834468 -0.029478 0.319782 -0.590952 1.606147 -2.359135 -2.351543 -0.869536 -0.816798 1.774657 0.621052 -4.614856 1.288790 -1.511104 1.787793 1.181277 2.659984 3.588188 3.289304 3.192668 -1.212499 0.977751 -1.254163 0.148020 0.622427 1.600464 0.833875 1.380488 3.459317 1.276064 0.540892 2.640570 1.981890 0.122228 3.170039 0.409094 5.298610 -1.653973 0.863966 -1.360532 -1.217951 2.519883 6.773357 -1.130429 0.402686 1.608369 1.525306 -1.075147 -3.276118 -0.290567 -1.769878 -0.046486 0.648936 0.995606 -1.028872 -1.136329 4.198469 0.647636 -5.011767 2.235012 -0.070853 0.626166 2.679073 -0.893316 -0.137633 1.143936 -3.240452 2.991137 2.400909 2.283753 -2.441533 -1.411912 -0.368846 2.540225 0.170406 1.400248 -4.456142 2.138180 2.421541 3.626100 2.043520 2.593233 -2.987922 -1.721566 1.171443 -2.164929 -1.290606 1.102254 2.754308 -2.824445 1.210110 -2.727822 -2.328886 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__lg(long) = 0.234820 0.130371 0.196570 -0.119734 0.075246 0.138714 0.218186 -0.179378 0.006901 0.225463 0.219651 -0.193575 -0.094329 0.210257 -0.099901 -0.135653 0.379495 0.131855 -0.003114 -0.101092 -0.146577 -0.034941 -0.082670 -0.257472 0.207181 -0.037286 0.117541 0.029917 -0.098501 -0.124745 -0.298353 -0.002990 0.175719 0.569285 0.075098 0.026835 -0.127241 0.384324 0.187319 0.438836 -0.543828 -0.164246 0.435481 0.062481 0.032443 -0.449345 -0.055220 0.261716 0.087177 -0.324785 -0.027568 -0.309780 0.048972 -0.353153 -0.223749 0.641337 -0.468816 0.095987 0.174155 -0.173116 -0.361432 -0.034116 0.395642 -0.079417 -0.006805 -0.220496 0.117655 0.115680 -0.264798 0.158198 -0.494470 -0.636873 0.328503 0.127019 -0.200531 0.062459 -0.267919 -0.218009 0.089250 -0.031039 -0.147511 -0.233486 0.261114 0.133727 0.103414 0.183535 0.258818 -0.701331 -0.085937 -0.627913 0.380083 -0.264653 0.627833 0.344448 -0.133645 0.176618 0.118491 -0.209116 -0.100250 0.246375 0.455727 -0.049112 0.044775 -0.295405 0.258582 0.219418 -0.215091 -0.373005 -0.001301 -0.220235 0.041595 0.324373 -0.209807 0.030705 -0.743676 0.239170 0.010960 0.114492 0.001158 0.045726 -0.317933 -0.415198 0.163596 -0.141478 0.607409 0.504052 0.153660 0.166794 -0.089034 0.335153 -0.003125 -0.130091 -0.297592 0.246717 0.058937 -0.669903 -0.234023 -0.085208 0.259093 -0.396585 -0.574490 -0.614942 -0.144618 0.083671 -0.235157 0.177781 0.634129 -0.126721 -0.238186 0.176128 0.159628 0.200451 0.537388 0.107418 0.893078 -0.779557 0.517518 0.141887 0.349411 0.202833 0.096475 -0.335698 -0.195497 0.181507 0.004174 -0.266194 0.574658 -0.090822 0.107250 0.504560 -0.021382 0.115813 -0.393466 0.345935 0.293328 0.317507 -0.114823 0.759545 -0.539269 -0.428176 0.186512 0.055167 -0.171273 -0.012214 0.014800 -0.133265 0.518395 -0.348502 -0.337623 0.158849 -0.086432 0.120101 0.357741 0.163002 -0.092823 -0.153682 -0.385970 0.059474 0.025432 -0.215285 0.136697 -0.409102 -0.143945 0.244361 0.086336 -0.392132 -0.023196 -0.448187 -0.108232 0.052447 -0.025350 0.213584 -0.192272 -0.191274 0.255718 -0.201086 0.161286 -0.223618 -0.102301 0.132333 -0.182274 -0.249896 0.000342 0.675505 0.369262 0.298285 -0.121619 -0.210171 0.100683 -0.276479 -0.311072 -0.006035 -0.077602 0.479468 0.170698 -0.200695 0.053352 0.079191 0.109595 -0.410889 0.136983 0.366891 0.284233 0.385984 -0.212817 0.163772 0.215845 -0.511344 0.372799 0.468051 -0.165767 -0.376997 0.179020 -0.036670 -0.158385 -0.476715 -0.080719 0.002118 -0.442767 0.287932 0.290503 0.051072 -0.363278 0.840962 0.015966 -0.758315 0.536450 -0.027481 0.045392 0.330391 -0.155597 0.208055 0.295342 0.137489 -0.105360 0.103170 0.642021 -0.448451 -0.066729 -0.152256 0.348434 -0.033467 -0.234164 -0.731856 0.071336 0.191292 0.439817 0.311436 0.286457 -0.203704 0.182296 -0.242837 -0.145948 -0.086146 -0.063240 0.379240 0.154409 -0.254071 -0.618064 0.423273 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__final_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.633224 0.256594 1.449828 -1.605785 -2.633321 1.088988 -1.473569 -1.659155 0.541323 1.756175 0.913899 -1.187080 -0.523315 2.660837 -1.018153 -1.751469 -0.281048 -1.646586 0.250579 -1.149819 0.014476 1.030319 -0.563297 0.627739 -0.400445 -0.601886 -0.187237 0.498672 1.034936 -0.681119 -1.981096 -0.535258 -0.548153 2.820561 0.710333 -0.743194 0.675151 4.433212 -0.351873 1.608367 -2.850896 -2.639212 0.810008 0.215551 -0.025377 -1.075217 -1.119853 1.314331 -1.150608 0.132895 1.965476 -0.300682 -0.266570 0.316767 0.970619 1.087517 -3.978317 2.219547 0.034088 0.060931 -0.379909 -0.829115 0.550718 1.324233 -1.091835 -1.419592 1.832646 2.064412 -1.536538 0.552421 -0.584354 -3.379376 2.446591 1.162379 -1.837069 -0.106652 1.763887 -2.118760 2.270852 -1.955388 -3.093652 0.078902 -0.099240 -1.804273 2.667922 0.158399 1.732360 -4.144960 2.016446 -4.242751 1.419628 -2.473542 1.645919 2.774032 -2.581399 0.230504 1.382915 2.789256 2.922882 -0.474444 2.880202 1.543908 0.567342 0.632661 1.806376 1.145668 -0.671106 -0.243885 -1.566679 -2.874967 -0.371939 -0.859276 -3.932649 0.597015 -0.617549 0.625070 -0.215828 0.450640 -0.613644 2.045064 -4.448828 -2.450637 0.298047 -0.393646 1.784433 2.392769 -1.560253 1.442966 -0.918943 3.387692 -1.216745 0.399946 -0.504893 0.696981 -1.386881 -1.245696 -4.628930 1.097104 1.957389 -2.059503 -3.129332 -3.208757 -0.667475 0.546772 -0.817216 4.656750 5.101388 -1.545341 -2.304246 3.019154 -0.125062 -0.231029 4.044577 -0.040042 3.743429 -1.877915 0.320942 -1.452515 -0.258068 -1.039990 -0.627152 0.826636 0.142542 0.948791 0.701521 -0.147786 2.382712 -0.763335 -1.863264 -1.669557 0.426956 -0.761164 -1.464003 3.015716 -0.968612 1.675399 0.672060 3.596170 -1.527102 -2.555065 1.432953 -2.249649 0.188324 -0.839106 -0.726220 -0.359796 2.692519 -2.318226 -1.133723 -0.528869 -1.590861 -1.035840 0.417498 2.399006 0.982759 0.830433 1.254654 3.154947 4.271879 1.193705 0.434961 -3.123991 0.887545 2.170648 -1.078400 -1.698705 0.060522 -2.101861 0.055581 0.204060 -0.391493 1.071302 -2.254158 -1.874588 -1.321871 -0.200936 1.994185 1.078991 -3.667112 1.069598 -0.970664 1.438053 1.241322 1.745695 2.768643 2.712271 3.057519 -1.018176 0.702471 -0.679000 0.793642 0.314751 1.532422 1.040465 0.983598 2.755661 1.127233 0.441829 1.900306 1.738705 0.252533 2.432261 0.181942 4.530933 -1.496132 0.902434 -1.520680 -0.766590 2.122737 5.698880 -1.678363 0.857678 1.243299 1.274229 -0.694746 -2.854949 -0.123407 -1.419514 0.323588 -0.315646 0.486155 -0.571192 -0.955224 3.024690 0.518786 -3.689168 1.713671 0.043273 0.385086 2.237308 -0.536090 -0.310749 0.649854 -3.073777 2.517527 2.161328 1.579128 -1.765306 -0.723463 -0.338174 2.009692 -0.437630 1.486367 -2.137208 2.128392 2.120238 2.611387 1.800839 1.091891 -2.456748 -1.900069 1.229888 -2.133747 -1.086092 1.309015 2.230908 -2.182125 1.286572 -1.527160 -2.725995 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__partial_sort >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.575410 0.523628 0.724494 -1.142412 -1.879459 0.332724 -0.618153 -0.628958 0.184958 0.377603 0.803176 -1.051762 -0.270882 1.983520 -0.682352 -0.995812 -0.453863 -0.915152 -0.261932 -0.170506 0.128075 0.742038 -0.278494 0.442999 -0.223591 0.031617 -0.288688 0.371360 1.020886 -0.614394 -1.223749 -0.121709 -0.053324 1.344582 0.209166 -0.724463 0.634359 2.403693 -0.656289 0.863034 -1.193871 -1.004155 0.412105 0.189336 -0.185513 -1.283470 -1.393658 0.820523 -0.788158 0.056079 1.359272 0.134772 -0.367759 0.198169 0.854872 0.750332 -2.398937 1.573728 0.319264 0.558136 0.294878 -0.339861 0.067234 0.467587 -0.365677 -0.699424 0.645297 0.867171 -0.644807 -0.016608 -0.126703 -1.760625 1.972043 0.440165 -0.977199 0.165616 1.016243 -1.555949 1.394804 -1.574640 -1.672220 0.363729 0.015761 -0.561753 1.701880 -0.176982 0.433426 -2.042442 0.645212 -2.127966 0.570390 -1.660177 0.418115 1.635118 -1.567421 -0.014925 0.545086 0.863125 1.841673 0.425754 1.488905 0.906046 0.552602 0.292113 0.732471 0.748607 -0.437903 -0.118262 -1.002349 -1.848479 -0.361057 -0.213041 -2.680564 0.399265 0.176128 0.231031 -0.028464 -0.033514 -0.019958 1.035653 -1.561024 -0.864843 0.228467 -0.158522 0.547575 1.789813 -0.836769 0.609948 -0.875594 1.749461 -0.466959 0.608304 -0.063159 0.231375 -0.886555 -1.482840 -2.385021 0.656984 0.785973 -0.773118 -1.446647 -1.738771 0.011776 -0.144124 -0.520115 1.759201 2.650243 -0.786513 -1.346207 1.892779 0.887057 0.073139 1.962305 -0.189438 2.203431 -0.717789 -0.109415 -0.661450 -0.602004 -0.871392 -0.565337 0.611445 -0.012299 0.296992 0.201246 -1.475983 1.584725 -0.227966 -1.029738 -0.434130 0.341251 -0.731686 -1.057147 1.950382 0.143376 0.987174 0.505127 1.989496 -0.579326 -1.454036 0.873907 -0.539916 0.456423 -0.820663 -0.585211 0.315980 1.246459 -0.991306 -0.437787 -0.219666 -0.541719 -0.948404 0.035366 0.906625 0.524653 0.460577 0.940712 0.882012 2.357198 0.441949 0.625774 -1.794745 0.508052 0.922076 -0.757338 -1.599231 0.344260 -1.051640 0.103006 0.225091 -0.418720 0.243166 -0.971421 -1.186106 -0.516532 -0.480564 1.071987 0.551445 -1.573243 0.415867 -0.925174 1.105362 0.642833 0.751825 1.766806 1.528908 1.742421 -0.126013 0.368376 -0.051769 0.533908 0.055396 0.613744 0.290759 0.656607 1.580632 0.628220 0.155306 0.937635 1.021933 -0.196133 1.253213 0.402529 2.473095 -0.157150 0.075196 -0.835818 -0.263133 1.169796 3.185547 -0.775756 0.422800 0.598790 0.872787 -0.208238 -1.553539 -0.056866 -0.724744 -0.338866 0.322685 -0.040549 -0.345593 -0.114690 1.329453 -0.005771 -1.719206 0.642008 -0.026538 0.392852 0.794247 -0.065635 -0.145016 0.439956 -1.750885 1.365066 1.169106 0.826474 -0.764381 -0.872874 -0.133908 0.950122 -0.121765 1.090183 -1.395099 1.158550 1.260310 1.247955 0.630015 0.624691 -1.229395 -1.285176 0.818366 -0.692135 -0.655449 0.280296 0.933035 -1.423052 0.547157 -0.494532 -1.868554 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition_pivot >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.469491 0.026664 1.252657 -1.441232 -2.754683 1.164369 -1.712116 -1.916340 0.561007 1.022599 1.343929 -1.479436 0.170872 2.872376 -0.833226 -1.542969 -0.249297 -0.684603 0.291183 -0.790776 0.210164 0.888511 -0.678818 0.696050 -0.850553 -0.454698 0.005973 0.429756 1.033361 -0.287288 -2.217636 -0.624803 -0.491652 2.510917 1.012440 -0.435681 0.541245 4.012411 -0.578498 2.035208 -2.574727 -2.029508 0.478023 0.341864 0.027603 -1.173672 -1.863740 1.175089 -0.887083 -0.128010 2.162901 -0.394784 0.017509 0.683879 1.085744 0.893870 -3.060651 1.640969 0.204160 -0.027090 0.017016 -0.750592 0.280940 1.622296 -1.736343 -1.261095 1.796578 2.218477 -0.874853 0.363256 -0.700466 -3.671499 2.677903 0.919470 -1.973919 -0.504861 1.746665 -2.238589 2.202335 -1.190747 -3.151659 0.297202 -0.447496 -1.431874 2.288040 0.028906 2.043696 -3.865221 1.888841 -4.315642 1.400845 -2.366108 1.424023 2.546189 -2.862719 -0.266350 1.424750 3.122204 3.206110 0.036451 2.504234 1.782204 0.062716 0.225475 2.195454 1.209617 -0.338735 -0.335481 -1.494918 -3.039161 -0.156526 -0.835320 -4.341875 0.629399 -0.481256 0.565557 -0.901060 0.558535 -0.145199 2.068268 -3.620237 -1.850720 0.358296 -0.316626 1.536665 2.505852 -1.640329 1.676980 -1.097834 3.057152 -1.190512 0.457495 -0.399048 0.624711 -1.906937 -1.556163 -4.530471 1.442125 2.119618 -2.012403 -2.880639 -3.257096 -0.398860 0.930109 -0.827517 3.844998 4.629339 -1.725933 -2.040008 2.679742 0.684202 -0.913527 3.819018 -0.209553 3.993226 -1.819973 0.436952 -1.423309 -0.519020 -1.376131 -0.709868 0.828281 0.050754 0.994840 0.230966 -1.725132 3.558430 -0.745288 -1.988257 -1.320271 0.455211 -0.361878 -1.336645 3.035960 -1.031813 1.225705 0.417867 3.272954 -1.282788 -2.137094 1.353309 -1.858820 0.067091 -0.725700 -0.541889 -0.118530 3.066663 -1.991465 -0.921602 -0.450482 -1.865937 -0.921709 0.273113 2.375108 0.789809 1.051377 1.233284 2.524073 4.327137 1.553784 0.412662 -2.704513 0.910704 2.195576 -1.186512 -1.473756 -0.130701 -2.475598 0.118398 -0.925877 -0.380823 1.097474 -2.472318 -1.836426 -1.650322 -0.299086 2.063520 1.349541 -3.363331 1.117958 -0.903712 1.783034 1.078892 1.592881 2.429540 3.019963 3.410858 -1.119447 0.694519 -0.494418 0.433079 0.594987 1.689371 0.722555 0.812824 2.592184 0.945295 0.457315 1.787747 1.310340 0.867169 2.208184 0.366877 4.240787 -0.839794 1.135451 -1.510066 -0.744768 2.135913 5.822852 -1.133208 0.971134 0.830453 1.002629 -1.056079 -2.716877 -0.098137 -1.022811 -0.314041 -0.311580 0.334139 -0.131991 -1.189114 2.745534 0.541616 -3.418292 1.271812 -0.107901 0.229509 2.720727 -0.630159 -0.076525 0.252172 -2.563372 2.740813 2.196722 1.567221 -1.460863 -1.105377 -0.380584 1.570898 0.310488 1.386733 -1.865154 2.781088 2.334605 2.578838 1.409754 0.876689 -2.711561 -1.371556 1.231978 -2.108912 -0.889966 0.996326 2.111000 -1.968564 0.939185 -1.566312 -2.844683 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__heap_select >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.429148 0.788280 1.410842 -1.676597 -2.200688 0.234832 0.142019 -0.655682 0.398075 2.175344 0.777243 -1.260033 -1.413511 2.870289 -0.789330 -1.542784 -0.241971 -1.430779 -0.179101 -0.471500 0.104364 1.323961 -0.162770 0.425530 0.252363 -0.238345 -0.394446 0.959518 0.742832 -0.735709 -1.078499 -0.271171 -0.081652 2.058067 -0.240623 -0.221802 0.341652 3.375839 -2.076044 2.623193 -2.682313 -2.327991 1.225952 0.309464 0.055159 -2.100867 -1.059745 1.243847 -1.147185 -0.666506 1.590240 0.289935 -0.300802 -0.343634 1.331187 1.335635 -3.725477 1.814560 0.217066 -0.150156 -0.166573 -0.335232 0.145357 0.719448 -0.906936 -1.194976 0.458765 0.614099 -1.396446 0.293582 -0.158105 -2.126455 1.907965 0.697173 -1.423110 0.671918 1.406796 -1.805321 1.987497 -2.912519 -2.041195 -0.010800 0.346756 -1.000764 1.906800 0.510039 1.105194 -3.201976 0.745855 -2.659533 1.608130 -2.208034 0.957781 2.411476 -1.130133 0.685078 0.843289 0.797489 2.239690 0.050075 2.107224 1.392278 1.611368 0.682237 1.042050 1.515285 -1.623114 -0.976224 -1.912407 -2.472180 -0.038722 -0.640963 -2.737590 0.190789 0.111392 0.457580 0.987328 -0.437249 -0.302186 1.658448 -3.341950 -0.872786 0.685413 -0.280706 0.932157 2.270962 -0.802900 0.527289 -0.647141 2.536716 -0.943999 1.044078 -0.070662 0.671391 -1.196534 -1.312941 -2.340940 0.467510 0.553827 -1.224760 -1.941520 -3.159456 -0.236084 0.655656 -0.671075 2.626313 4.168789 -1.101324 -2.135182 2.493015 0.360933 0.103005 1.993267 -0.003322 2.827355 -1.331611 -0.098440 -1.254566 -0.420323 -0.165856 2.448741 0.971900 -0.642290 0.730923 0.259565 -2.031563 1.032052 -0.380224 -1.051175 -1.658253 0.458530 -1.315260 -0.956485 2.506707 -1.527413 1.938351 -0.511000 2.893252 -1.245533 -2.083764 1.170961 -2.367444 0.243780 -1.814501 -1.119661 0.551706 1.573352 -2.017323 -0.711415 -1.187299 -1.042976 -1.070748 0.323829 -1.261110 0.546780 0.221258 0.913937 2.849979 2.642616 0.541728 0.390359 -2.685306 0.702572 0.861371 -0.597689 -2.832587 0.595379 -1.398469 -0.076586 0.848839 -0.592589 0.489829 -1.192041 -1.355556 -0.326711 -1.160118 0.727819 0.028687 -2.616394 0.373611 -0.672558 1.605858 1.119877 1.358858 2.455268 1.984018 1.869556 0.142735 0.258900 -0.530780 0.084950 0.618351 0.807179 -0.099586 1.053133 2.238415 0.995324 0.203392 1.881279 1.523012 -0.639056 1.991430 0.111315 3.146194 -0.535146 -0.006206 -0.500213 -0.339094 1.318849 3.714862 -1.195188 0.325760 1.326275 0.910032 -0.439289 -1.180764 -0.123028 -1.464769 -0.369873 1.344514 0.430288 -0.869732 -0.135850 2.219991 0.028256 -3.005239 1.156862 -0.157857 0.711855 1.080551 -0.175930 -0.171876 0.984612 -2.405144 1.793931 1.417431 1.294704 -1.545907 -1.036976 -0.187407 1.296691 1.301080 1.278062 -3.529658 0.354880 1.346848 2.137978 0.743444 2.190541 -1.536351 -1.402466 0.776538 -1.181538 -1.088281 -0.007296 1.141190 -1.238720 0.700318 -1.663379 -1.822381 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__sort_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.613470 0.178739 0.718437 -0.694302 -1.032947 0.072740 0.537469 -0.643589 0.282827 1.200993 0.476800 -0.810863 -0.927963 1.365220 -0.057972 -0.772891 0.327934 -0.899396 -0.023226 -0.422632 0.020566 0.669492 -0.088559 0.115698 0.168437 -0.043245 -0.272319 0.675579 0.290852 -0.507963 -0.757123 -0.256274 0.196596 1.460910 -0.023619 0.024517 -0.194032 2.135097 -1.033631 1.741460 -2.047668 -1.246421 1.018020 0.023388 -0.063775 -1.528315 -0.509741 0.954728 -0.235672 -0.868057 0.714019 0.126304 -0.096624 -0.398289 0.425272 1.349150 -2.060606 0.859972 0.163573 -0.468220 -0.367795 -0.218750 0.043186 0.587555 -0.961841 -0.996759 0.514251 0.098273 -0.916474 0.564974 -0.523352 -1.698821 1.070334 0.478189 -1.041529 0.189374 0.567587 -0.992221 1.249812 -0.932322 -1.082657 -0.217998 0.128621 -0.284201 0.876580 0.177298 0.843517 -2.305746 0.206399 -1.987560 1.177495 -1.545780 1.011848 1.366472 -0.831084 0.528296 0.380909 0.517761 1.276988 -0.234408 1.388566 0.849953 1.081195 0.089723 1.063016 0.860571 -0.703396 -0.796895 -0.989190 -1.359404 0.358380 -0.291346 -1.691265 0.244831 -0.529970 0.178544 0.530677 0.010537 -0.058701 1.195372 -2.050712 -0.602372 0.717915 -0.252713 0.935579 1.667180 -0.712309 0.403214 -0.564397 1.604433 -0.249364 0.783954 -0.219808 0.569492 -0.716689 -1.215289 -1.410300 0.149718 0.631407 -1.179078 -1.498360 -2.151508 -0.094348 0.443533 -0.645363 1.390218 2.697133 -0.790470 -1.122898 1.359251 0.381639 -0.117251 1.146062 -0.091339 2.377713 -1.363902 0.436631 -0.572129 0.112409 0.125541 1.890018 0.297056 -0.682929 0.380168 0.128958 -1.737598 1.169555 -0.262305 -0.550774 -0.204136 -0.023912 -0.162685 -0.822751 1.544426 -0.770690 1.223400 -0.620574 1.624072 -0.840541 -1.215760 0.903551 -1.040522 -0.129657 -0.801710 -0.607628 0.274492 1.312750 -1.371778 -0.500247 -0.704942 -1.061285 -0.380047 0.524156 -0.459733 0.175587 0.041233 0.474443 1.605724 1.515638 0.283632 0.221074 -1.798588 0.520330 0.810325 -0.060295 -1.454596 0.067643 -1.225900 -0.177654 0.053522 -0.285333 0.592221 -0.790791 -0.845826 0.002357 -0.614452 0.334345 -0.038977 -1.715622 0.341537 -0.147522 0.750183 0.516288 1.327671 1.356889 1.121400 1.060047 -0.389098 0.194634 -0.543540 -0.669665 0.539002 0.242596 0.172642 0.627381 0.930475 0.606211 0.021807 1.405457 0.344198 0.038096 1.431693 0.442454 1.961942 -0.543957 0.238099 -0.017208 -0.719070 1.035648 2.475205 -0.416701 -0.176642 0.845173 0.378764 -0.772452 -0.827109 -0.400118 -0.733146 -0.397824 0.990944 0.143934 -0.530674 -0.371801 1.866084 0.094303 -2.326891 0.865176 -0.064300 0.253888 1.165224 -0.293964 0.217680 0.695770 -1.145489 0.899172 0.811660 1.095556 -1.066742 -0.939895 -0.248535 0.685061 0.844683 0.441278 -2.564242 0.172828 0.926926 1.793075 0.619770 1.168193 -1.162640 -0.326471 0.341270 -0.753577 -0.524931 0.129047 1.038802 -0.820493 0.103417 -1.692657 -0.373509 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__make_heap >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.783383 0.574807 1.810917 -2.139255 -2.270008 1.241927 -0.434693 -2.613929 0.771390 3.504254 1.472833 -1.560884 -1.288366 2.833768 -1.011159 -2.020448 1.018229 -2.490923 0.395493 -1.906703 -0.169876 1.049734 -0.639247 -0.231654 -0.036147 -0.790074 0.063252 1.115742 0.869901 -1.196253 -2.728072 -0.654949 -0.211826 4.280959 0.857923 -0.803340 -0.070529 5.350706 -1.283186 2.299842 -5.094525 -3.471421 2.387021 0.277946 -0.134698 -2.716097 -0.686986 1.958474 -0.509440 -0.910625 1.698323 -1.064822 0.234119 -0.760311 0.175149 3.115754 -5.142207 2.228561 0.268137 -0.769132 -1.581040 -1.052516 1.874308 1.793495 -1.882893 -2.631843 2.743662 1.659943 -2.533221 1.393129 -2.213705 -5.060544 2.244710 1.475451 -2.291771 -0.291719 0.775555 -3.207273 2.715754 -1.808405 -3.172324 -0.575776 0.469428 -1.621549 2.445738 0.292666 2.650959 -6.165301 1.581136 -5.841489 2.323747 -3.190694 3.473057 3.315260 -2.843343 0.644064 1.273680 2.968593 3.046851 -1.121166 4.106749 1.810336 1.633128 -0.287310 2.973272 1.945031 -1.143575 -1.181216 -1.690363 -3.403377 0.059703 -0.586660 -4.875737 0.896219 -2.875584 -0.221984 0.148133 0.010916 -0.763220 3.499583 -5.944395 -3.635901 0.764402 -0.680642 3.125307 3.823411 -1.434130 1.804956 -0.864840 4.284392 -0.743536 0.611283 -1.124923 1.412496 -1.763668 -3.012885 -4.998256 0.815220 2.765001 -3.698479 -4.726726 -5.019362 -0.927032 0.539875 -1.379446 5.439851 6.767614 -1.897889 -3.370288 3.266619 -0.266105 -0.753435 5.268361 -0.191396 6.440288 -4.300696 2.058247 -1.241945 1.073602 -0.205693 1.235515 -0.203949 -0.745169 1.160769 0.419365 -1.012785 2.933403 -0.579553 -1.372007 -0.529554 0.176257 -0.255820 -2.381643 3.775612 -1.447582 3.040610 -0.093796 5.017416 -2.981174 -3.519513 2.215887 -2.642276 -0.493591 -0.887802 -1.127723 -0.436463 4.244964 -2.978652 -1.812612 -1.306768 -2.231979 -0.503403 1.943893 1.793817 0.912604 0.252876 0.378707 3.882515 4.628288 0.661525 0.855928 -4.148690 1.133586 3.610168 -0.267000 -2.822083 -0.509355 -3.657992 -0.315730 0.058766 -0.508892 2.491767 -2.775666 -2.475324 -0.548568 -0.165441 1.953591 0.337378 -5.042248 1.742041 -1.502137 0.916321 1.029144 3.929364 3.013185 3.322613 2.718386 -2.423811 1.011611 -1.854209 -0.711144 0.634960 1.331828 1.550457 1.457139 2.810345 1.124110 0.773595 3.091929 1.042632 0.361899 3.680983 0.613691 5.357941 -2.667145 1.588524 -0.987287 -2.363764 2.917108 7.136006 -1.440315 -0.579911 1.734023 1.233427 -1.728425 -3.828921 -0.833153 -1.674696 -0.335372 0.328329 1.123389 -0.853557 -1.992364 5.508163 0.987590 -6.086296 3.143590 -0.128716 0.247208 3.476558 -1.516260 0.083393 1.324918 -2.962030 2.452549 2.437152 3.024961 -2.625662 -1.166526 -0.518239 3.113695 -0.251548 0.507748 -4.999828 2.452049 2.789324 4.572947 2.933039 2.595755 -3.267155 -0.839137 0.630337 -2.315770 -0.887387 1.299123 3.542034 -2.887130 0.779746 -3.742006 -0.792364 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(suffix*, suffix*) = 1.621601 0.402107 1.140870 -1.833364 -2.201375 1.269144 -1.681027 -1.470361 0.494746 0.902079 1.195367 -0.805763 0.266384 2.170292 -1.136908 -1.401772 -0.249133 -1.665248 0.048111 -0.522216 0.074579 0.586317 -0.654804 0.147292 -0.548554 -0.441775 0.111101 0.267944 0.992774 -0.625277 -2.292369 -0.298085 -0.680467 2.407560 0.901948 -1.293513 1.039582 3.486394 -0.163413 0.401513 -1.707662 -1.822306 0.621967 0.221407 -0.338027 -0.775842 -1.252188 0.869593 -0.651934 0.365737 1.882577 -0.714827 0.083348 0.331968 0.535076 0.836934 -3.202792 1.684504 0.259027 0.813867 -0.155404 -0.866286 1.086715 1.127550 -0.571249 -1.071551 1.988855 1.945244 -1.006652 -0.058917 -0.713555 -3.191404 2.763598 1.045617 -1.223105 -0.251063 1.225820 -2.749579 1.822863 -1.364618 -2.712709 0.324575 -0.172659 -1.713646 2.687190 -0.461123 1.282129 -3.244329 1.754992 -3.652361 0.689610 -1.926207 1.274199 2.238327 -2.502414 -0.315332 1.131400 2.905463 2.274530 -0.147024 2.505188 1.228054 0.162674 0.114223 1.501482 0.854172 -0.448568 0.093771 -1.136434 -2.437860 -0.762278 -0.593161 -4.117520 0.760840 -0.646340 0.021562 -0.659614 0.086893 -0.567860 2.093412 -3.041373 -2.148118 -0.174378 -0.287570 1.286399 2.196426 -1.108494 1.272223 -0.671211 2.690469 -0.905702 -0.017274 -0.521899 0.449203 -1.355939 -1.163007 -3.885200 1.206927 1.932521 -1.728050 -2.745567 -2.346125 -0.497479 0.000862 -0.570990 3.921539 3.909286 -1.127953 -2.163950 2.416479 0.452684 -0.263220 3.953945 -0.096546 3.141383 -1.654083 0.483040 -1.109906 -0.196414 -1.440486 -2.168701 0.357213 0.622765 0.806612 0.303869 0.134158 2.806624 -0.318422 -1.412993 -0.474578 0.478038 -0.995483 -1.728532 2.711543 0.316124 1.290908 1.546384 3.405035 -1.432563 -2.049571 1.128564 -0.898275 0.356356 -0.838370 -0.632669 -0.203896 2.317579 -1.282774 -1.026594 -0.080244 -0.723718 -0.842738 0.551482 2.842781 0.992646 0.700696 0.696694 1.560089 3.775417 0.745435 0.658733 -2.261423 0.707884 2.129193 -1.365129 -1.255027 -0.222097 -1.805661 0.222834 0.279616 -0.309537 1.129396 -2.118700 -1.885581 -0.949998 0.284541 1.905503 1.015162 -3.391070 0.980991 -1.357572 0.970790 0.876372 1.485906 2.275927 2.525892 2.513400 -1.153613 0.739426 -0.289830 0.692225 -0.399953 1.175716 1.348988 0.847092 2.687937 0.672397 0.598697 1.168202 1.642451 0.336067 1.880517 0.243959 3.704247 -0.830018 0.568788 -1.514576 -0.753081 1.943667 4.883971 -1.330187 0.790778 0.691995 1.412466 -0.489772 -2.933430 0.178220 -0.990345 0.375734 -0.844380 0.538885 -0.095375 -1.013470 2.581479 0.521296 -2.894236 1.276405 0.048718 0.502084 1.985212 -0.614901 -0.060743 0.208776 -2.328007 2.439406 1.805702 1.333013 -1.263594 -0.321529 -0.061663 1.913476 -1.548020 1.113847 -1.056943 2.568350 1.638869 1.952798 1.828121 0.836442 -2.077239 -1.327862 0.954041 -1.519165 -0.546105 1.054466 2.025629 -2.375586 1.092008 -1.096694 -2.257734 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__pop_heap >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.198949 0.936988 1.503330 -1.778867 -3.269059 1.298852 -2.009630 -2.065402 0.405756 1.371202 1.436792 -1.396723 -0.077773 2.719068 -1.572017 -1.557185 -0.634476 -2.496654 -0.001977 -1.605114 0.051029 0.919456 -0.714602 0.630301 -0.772013 -0.488009 -0.238962 0.292218 1.394626 -1.177910 -2.437156 -0.394605 -0.362584 2.925329 1.116971 -1.852009 1.021656 4.520486 -0.163767 -0.057765 -2.793257 -2.424633 0.705400 0.241766 -0.203720 -1.559207 -1.665208 1.450024 -0.908664 0.870843 2.179670 -0.525997 -0.335376 0.609725 0.656144 1.260947 -4.395474 3.054004 0.223204 0.455023 -0.231396 -0.825275 1.001085 1.367293 -0.236667 -1.508841 2.376630 2.537909 -1.333364 0.417556 -0.709979 -3.834155 2.780605 0.925021 -1.583207 -0.430963 1.491193 -2.658148 2.481979 -2.131010 -3.305206 0.388656 -0.006869 -1.634405 2.858222 -0.292567 1.190466 -4.209233 1.774144 -4.667870 0.914784 -2.469078 1.549268 2.465557 -3.188420 -0.277379 1.322973 2.475757 3.490553 -0.255265 3.113354 1.316005 0.701981 0.556285 1.685382 1.152584 -0.098357 0.491037 -1.420363 -3.217974 -0.728104 -0.306622 -4.536867 1.007574 -0.763931 -0.233215 -0.759150 0.100776 -0.349280 2.536679 -3.743565 -3.080321 0.121596 -0.327737 1.701205 2.835745 -1.688491 1.793488 -1.247172 3.440929 -1.042733 0.471872 -0.449077 0.530438 -1.211820 -2.875832 -5.747286 1.554587 2.398919 -2.270270 -3.300366 -2.930946 -0.334484 -0.598456 -1.030923 4.610127 5.134172 -1.675929 -2.731712 3.270263 0.869628 -0.551900 4.942630 -0.287863 4.539251 -1.985897 0.369399 -1.199827 -0.592769 -1.551834 -2.529564 0.568266 0.674603 0.719826 1.073160 -0.278683 2.683298 -0.648098 -2.165854 -0.308785 0.654509 -0.576803 -1.927272 2.935137 1.084596 1.552829 1.758055 3.845005 -1.645559 -3.021420 1.542571 -1.075651 0.502853 -0.058218 -0.679105 -0.251738 2.954197 -1.696871 -1.075377 -0.263145 -1.444278 -1.326671 0.457458 3.799085 1.473255 1.141738 1.340709 1.681975 4.995556 1.103176 1.124933 -3.200436 0.921878 2.831420 -0.835529 -2.185680 -0.206892 -2.449566 0.248957 0.298147 -0.527460 1.447002 -2.083155 -2.059942 -1.258359 -0.081834 2.512597 1.473012 -3.158168 1.390213 -2.072343 1.456815 0.789097 1.936340 2.814835 3.056405 3.432452 -1.280953 0.889076 -0.710301 1.690821 -0.227746 1.689091 1.276990 1.137462 2.951797 1.054337 0.660952 1.869480 1.697277 0.106332 2.571577 0.112620 4.953587 -2.156753 1.293476 -2.259431 -0.788702 2.444558 6.511025 -1.373588 0.359135 0.919987 1.528457 -0.504250 -3.792549 -0.076764 -1.239407 0.478878 -0.736877 0.835432 -0.434022 -1.115351 3.149381 0.619274 -3.543032 2.109402 0.103824 0.253571 2.038390 -0.664437 -0.574603 0.539672 -3.212071 2.333164 2.614556 1.829504 -1.763045 -1.193728 -0.294042 2.669342 -1.908580 1.677773 -2.327348 3.018926 2.682217 2.416258 1.858899 0.753934 -2.961499 -2.503330 1.603660 -1.710379 -0.979910 2.022041 2.609560 -3.393712 1.628588 -0.740112 -2.768126 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(suffix&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__adjust_heap >(suffix*, long, long, suffix, __gnu_cxx::__ops::_Iter_comp_iter) = 3.203329 1.142486 3.465499 -4.639602 -3.557423 2.263388 -1.522825 -4.030473 1.289721 5.550964 2.714248 -2.558709 -1.677883 4.808343 -2.634879 -4.387406 1.263342 -0.447874 0.447316 -3.198259 0.056771 1.347390 -1.037014 -1.115443 0.155043 -2.763003 1.300929 2.313892 2.152144 -0.450396 -3.842281 -0.886532 -0.408279 7.141657 1.007841 -0.301448 0.004834 7.784386 -1.823279 4.258516 -7.816845 -5.813628 4.285135 1.356852 0.153377 -5.124491 -2.538266 1.928319 -2.166066 -0.864836 2.329087 -2.517119 1.390051 -1.783432 0.723485 4.758949 -7.609339 2.347257 0.351432 -2.138099 -2.904080 -1.132062 3.688898 2.598399 -3.066218 -3.930753 3.686185 3.984305 -3.578932 1.826928 -3.297047 -8.318063 5.203292 2.325145 -3.542365 0.312807 1.450255 -6.115456 3.652354 -2.465465 -4.944091 -1.361546 1.735997 -2.950461 3.766457 0.971299 5.433990 -9.689419 2.452351 -8.822530 4.189693 -4.485444 5.954443 5.352351 -4.105409 1.455193 2.723802 4.530043 3.617172 -0.456552 6.665494 3.086524 2.223226 -0.887364 4.595732 3.164387 -2.765268 -3.254538 -2.917211 -5.710048 -0.663486 -1.718116 -9.781390 0.690003 -4.933534 0.340723 -0.187850 -0.823240 -1.014453 6.121369 -9.342787 -4.974475 1.197386 -1.244152 4.334154 5.588194 -0.589597 2.557045 -0.220236 6.655170 -2.087334 -0.513139 -1.832044 2.394185 -3.296859 -4.236102 -6.983540 1.373244 3.717029 -5.331551 -7.368006 -6.912101 -2.802129 2.717898 -1.291335 7.997869 10.757109 -2.534549 -6.549409 4.516708 -0.638860 -1.014110 8.818228 0.911756 10.013359 -7.338429 3.531521 -3.269135 2.062012 0.631882 2.183033 -0.705340 -1.436510 3.315428 -0.193268 -1.704782 5.663951 -2.200549 -1.178779 -1.563128 1.078889 -1.563089 -3.034778 6.433160 -3.256739 6.501724 -0.982525 9.465372 -6.060999 -6.402890 2.310282 -5.269706 -1.411631 -2.144125 -0.801518 -0.980705 7.048891 -4.641449 -3.654496 -2.034583 -3.276806 0.072785 3.802948 1.573705 1.056836 -0.241798 -1.039348 6.794161 6.706695 0.938403 0.768022 -5.978630 1.447061 5.442798 -1.093795 -5.623639 -0.398136 -5.296449 -0.360601 -0.604960 -0.716256 4.083318 -4.546087 -3.560962 -1.740733 -0.974248 2.797966 -0.686893 -8.067195 2.885434 -2.877544 1.464247 1.296929 6.167277 6.425832 5.657686 3.381482 -3.195733 2.141449 -3.721899 -0.893248 1.563462 3.020816 2.310830 2.075901 6.117941 0.911127 1.771470 4.645075 2.361054 1.459241 5.352336 0.424665 8.461516 -3.282949 1.873049 -1.379116 -3.484024 4.326142 11.400537 -1.871777 -0.285241 2.755792 2.666974 -2.107598 -7.609178 -0.808967 -2.200860 -1.697586 1.613581 3.148991 -1.328328 -3.503411 8.881340 2.448509 -9.602025 5.243757 -0.322337 0.483416 5.018125 -3.077588 -0.052272 2.488854 -3.339799 3.686022 3.215444 4.704152 -5.328233 -1.002443 -0.565382 5.217537 0.607170 0.275703 -7.798862 4.067588 4.127412 7.555725 4.276221 5.975254 -4.688558 -0.850589 0.466979 -3.588772 -1.774271 0.848090 4.216705 -4.225953 1.159123 -5.982744 -2.068597 +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.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +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.093408 0.025724 0.373658 -0.610964 -0.899209 0.200353 -0.230257 -0.338466 0.072537 -0.126913 0.448451 -0.485799 -0.273297 1.010218 -0.171837 -0.637562 -0.142028 -0.127934 -0.096583 0.068286 0.073714 0.362288 -0.159752 0.193647 -0.082741 -0.024077 -0.136738 0.349310 0.556834 -0.194424 -0.574255 -0.139819 -0.078990 0.735038 0.155903 -0.031633 0.260455 1.300685 -0.325605 0.860725 -0.631363 -0.469733 0.310373 0.049709 -0.168465 -0.733844 -0.849055 0.401995 -0.662234 -0.128814 0.739361 0.033142 -0.037873 0.079980 0.492126 0.450127 -1.143625 0.618483 0.205379 0.124523 0.206816 -0.166377 -0.213885 0.184713 -0.334456 -0.352684 0.204290 0.371351 -0.263547 -0.057153 -0.063547 -0.899199 1.322320 0.264967 -0.559815 0.116647 0.594020 -0.733782 0.679834 -0.549715 -0.930454 0.078827 -0.084442 -0.212810 0.930930 -0.079977 0.339574 -1.096136 0.215513 -1.181401 0.421464 -0.894654 0.240976 0.887791 -0.856967 0.095166 0.397675 0.372954 0.756502 0.266584 0.721566 0.463323 0.137708 0.180259 0.544441 0.279419 -0.277105 -0.257178 -0.587788 -0.923704 -0.082603 -0.281464 -1.524765 0.150445 0.097753 0.359068 -0.077505 0.122919 0.048291 0.425692 -0.683987 0.010490 0.197821 -0.116651 0.291061 0.934933 -0.397112 0.243164 -0.430801 0.887940 -0.377344 0.391142 -0.113964 0.222968 -0.328197 -0.680340 -1.059899 0.297320 0.375963 -0.372100 -0.757342 -0.873256 -0.045275 0.215601 -0.251980 0.706496 1.409710 -0.503504 -0.655466 0.960448 0.511865 0.154005 0.821255 0.025914 1.051623 -0.317216 -0.129810 -0.475741 -0.411462 -0.382335 -0.077692 0.334598 -0.145496 0.307073 0.008861 -1.087372 1.183927 -0.211690 -0.574009 -0.204063 0.092771 -0.428192 -0.564849 1.077781 -0.028520 0.547216 0.114680 1.035431 -0.256751 -0.704668 0.376139 -0.250663 0.145535 -0.569055 -0.291988 0.219824 0.549725 -0.638815 -0.305175 -0.190263 -0.283067 -0.443811 0.073704 0.372000 0.145368 0.276648 0.459853 0.485876 1.164296 0.278176 0.165436 -0.874812 0.317733 0.353863 -0.437643 -0.798773 0.196896 -0.468111 0.018968 0.042592 -0.132874 0.147336 -0.517520 -0.526782 -0.291807 -0.311415 0.485608 0.333278 -0.921165 0.139416 -0.157263 0.513312 0.456132 0.379725 0.988810 0.824019 0.859464 0.104173 0.141872 0.096976 0.041730 0.057989 0.284225 0.227964 0.322194 0.749831 0.395686 0.082669 0.519446 0.569114 0.175504 0.650005 0.372677 1.257853 0.230017 -0.111124 -0.239660 -0.080194 0.642684 1.523017 -0.389479 0.414979 0.348998 0.446077 -0.151542 -0.815925 0.030608 -0.329833 -0.330307 0.500624 -0.042728 -0.078564 -0.134267 0.739398 -0.051004 -0.964759 0.266225 0.039382 0.279974 0.464320 0.028376 0.020911 0.230573 -0.818279 0.793059 0.570024 0.456549 -0.476587 -0.425391 -0.062270 0.282796 0.312181 0.600368 -0.667136 0.396793 0.512141 0.751367 0.260637 0.318111 -0.588318 -0.523204 0.367696 -0.447775 -0.286000 -0.019770 0.337200 -0.515419 0.113848 -0.457870 -0.997199 +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.445397 0.591818 2.095207 -2.481090 -2.184576 1.186091 -0.678790 -1.930394 0.964748 2.364232 1.715092 -1.442913 -1.099087 3.116056 -1.317174 -2.349787 0.743117 -1.136268 0.268662 -1.274282 0.061313 1.018104 -0.528366 -0.107862 0.191550 -1.112097 0.314040 1.496030 1.299226 -1.025083 -2.243441 -0.350127 -0.563348 3.613687 0.373311 -0.175976 0.615563 4.655839 -1.450348 2.671018 -3.941283 -2.829878 2.125929 0.594574 -0.383931 -2.430812 -1.374091 1.231279 -1.798048 -0.354403 1.991287 -1.083169 0.527105 -0.640455 0.861250 2.642000 -4.737103 1.619585 0.263666 -0.452412 -1.010757 -0.737708 1.401967 1.225011 -1.408630 -1.954328 2.150437 1.779696 -2.179080 0.747634 -1.314543 -4.103524 3.226970 1.011427 -1.781470 0.300484 1.268722 -3.174954 2.298322 -2.083082 -2.951953 -0.444575 0.784116 -1.656938 2.580335 0.128064 2.486474 -5.173533 1.144832 -4.678110 2.319961 -2.778326 2.769735 3.128379 -2.697104 0.728104 1.420837 2.239230 2.129998 -0.065191 3.688378 1.601927 1.113786 -0.175390 2.461409 1.556390 -1.494127 -1.416545 -1.979703 -3.329254 -0.361740 -0.744496 -5.171842 0.374517 -2.141282 0.454809 0.176335 -0.321177 -0.381227 3.089422 -4.392751 -1.879641 0.531671 -0.539546 2.072815 3.473865 -0.622327 1.265540 -0.376378 3.854590 -1.342884 0.355280 -0.975281 1.168661 -1.293433 -2.536863 -3.920982 0.484810 1.849558 -2.674683 -3.812297 -4.003970 -1.027111 1.097346 -0.706276 4.574254 5.984872 -1.477539 -3.381632 2.971510 0.169849 -0.280074 4.580157 0.172180 5.141415 -3.432641 1.330497 -1.861011 0.662494 -0.074593 0.994062 0.134253 -0.542869 1.408932 0.196022 -1.493359 3.587785 -0.678966 -0.998014 -0.752101 0.475638 -1.135148 -2.246652 3.728223 -0.938847 3.280935 0.000341 5.252075 -2.752743 -3.567367 1.579128 -2.070082 -0.150722 -1.571434 -1.025897 -0.009443 3.355697 -2.336011 -1.783602 -1.553895 -1.467637 -0.349569 1.425143 1.374660 0.908066 0.052373 -0.110936 3.277019 4.079844 0.598786 0.607839 -3.660249 0.744843 2.734107 -0.649836 -2.980375 0.241832 -2.753083 -0.138057 0.152079 -0.524107 1.961035 -2.540805 -2.238750 -0.954074 -0.434734 1.621257 0.041694 -5.081266 1.249283 -1.331961 0.802473 1.144591 2.818137 3.526590 3.064350 2.208742 -1.420708 0.879667 -1.244344 -0.275305 0.402072 1.391150 1.411685 1.119173 3.203885 0.910440 0.864170 2.382703 1.598709 0.329725 2.964066 0.566363 4.744471 -1.479488 0.865966 -0.909365 -1.545088 2.545278 5.984369 -1.436087 0.143481 1.516329 1.953275 -0.915190 -4.079907 -0.452017 -1.552174 -0.660663 0.971873 0.901970 -0.668473 -1.548586 4.419837 1.012865 -5.052210 2.542186 -0.330860 0.372923 2.362431 -1.134003 -0.460272 1.297775 -2.910215 2.372702 1.737562 2.543716 -2.260897 -0.690928 -0.307737 2.786746 0.145206 0.818912 -4.138858 2.080575 2.218259 3.746402 2.449090 2.968936 -2.400926 -1.017977 0.307707 -2.238433 -1.048794 0.586289 2.199691 -2.427015 0.725602 -3.098251 -1.650753 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::remove_reference::type&& std::move(int (*&)(suffix, suffix)) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(suffix*, suffix&) = 1.621601 0.402107 1.140870 -1.833364 -2.201375 1.269144 -1.681027 -1.470361 0.494746 0.902079 1.195367 -0.805763 0.266384 2.170292 -1.136908 -1.401772 -0.249133 -1.665248 0.048111 -0.522216 0.074579 0.586317 -0.654804 0.147292 -0.548554 -0.441775 0.111101 0.267944 0.992774 -0.625277 -2.292369 -0.298085 -0.680467 2.407560 0.901948 -1.293513 1.039582 3.486394 -0.163413 0.401513 -1.707662 -1.822306 0.621967 0.221407 -0.338027 -0.775842 -1.252188 0.869593 -0.651934 0.365737 1.882577 -0.714827 0.083348 0.331968 0.535076 0.836934 -3.202792 1.684504 0.259027 0.813867 -0.155404 -0.866286 1.086715 1.127550 -0.571249 -1.071551 1.988855 1.945244 -1.006652 -0.058917 -0.713555 -3.191404 2.763598 1.045617 -1.223105 -0.251063 1.225820 -2.749579 1.822863 -1.364618 -2.712709 0.324575 -0.172659 -1.713646 2.687190 -0.461123 1.282129 -3.244329 1.754992 -3.652361 0.689610 -1.926207 1.274199 2.238327 -2.502414 -0.315332 1.131400 2.905463 2.274530 -0.147024 2.505188 1.228054 0.162674 0.114223 1.501482 0.854172 -0.448568 0.093771 -1.136434 -2.437860 -0.762278 -0.593161 -4.117520 0.760840 -0.646340 0.021562 -0.659614 0.086893 -0.567860 2.093412 -3.041373 -2.148118 -0.174378 -0.287570 1.286399 2.196426 -1.108494 1.272223 -0.671211 2.690469 -0.905702 -0.017274 -0.521899 0.449203 -1.355939 -1.163007 -3.885200 1.206927 1.932521 -1.728050 -2.745567 -2.346125 -0.497479 0.000862 -0.570990 3.921539 3.909286 -1.127953 -2.163950 2.416479 0.452684 -0.263220 3.953945 -0.096546 3.141383 -1.654083 0.483040 -1.109906 -0.196414 -1.440486 -2.168701 0.357213 0.622765 0.806612 0.303869 0.134158 2.806624 -0.318422 -1.412993 -0.474578 0.478038 -0.995483 -1.728532 2.711543 0.316124 1.290908 1.546384 3.405035 -1.432563 -2.049571 1.128564 -0.898275 0.356356 -0.838370 -0.632669 -0.203896 2.317579 -1.282774 -1.026594 -0.080244 -0.723718 -0.842738 0.551482 2.842781 0.992646 0.700696 0.696694 1.560089 3.775417 0.745435 0.658733 -2.261423 0.707884 2.129193 -1.365129 -1.255027 -0.222097 -1.805661 0.222834 0.279616 -0.309537 1.129396 -2.118700 -1.885581 -0.949998 0.284541 1.905503 1.015162 -3.391070 0.980991 -1.357572 0.970790 0.876372 1.485906 2.275927 2.525892 2.513400 -1.153613 0.739426 -0.289830 0.692225 -0.399953 1.175716 1.348988 0.847092 2.687937 0.672397 0.598697 1.168202 1.642451 0.336067 1.880517 0.243959 3.704247 -0.830018 0.568788 -1.514576 -0.753081 1.943667 4.883971 -1.330187 0.790778 0.691995 1.412466 -0.489772 -2.933430 0.178220 -0.990345 0.375734 -0.844380 0.538885 -0.095375 -1.013470 2.581479 0.521296 -2.894236 1.276405 0.048718 0.502084 1.985212 -0.614901 -0.060743 0.208776 -2.328007 2.439406 1.805702 1.333013 -1.263594 -0.321529 -0.061663 1.913476 -1.548020 1.113847 -1.056943 2.568350 1.638869 1.952798 1.828121 0.836442 -2.077239 -1.327862 0.954041 -1.519165 -0.546105 1.054466 2.025629 -2.375586 1.092008 -1.096694 -2.257734 +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.054813 1.829100 2.910079 -2.570381 -3.515425 0.380664 -0.434015 -1.343772 0.639420 5.985380 0.525579 -1.977047 -2.700758 5.368073 -2.545962 -2.468270 -0.884038 -2.852438 0.064477 -2.269849 0.100142 2.534884 -0.071373 0.649173 0.688949 -1.172012 -0.433375 1.113263 0.281236 -1.226824 -0.892204 -0.577738 -0.080590 3.531973 -0.633184 -0.003546 0.120906 5.396590 -3.586630 4.558391 -6.086767 -5.569978 2.088035 0.754051 1.252023 -3.388712 -0.814980 1.914059 -2.053493 -0.140800 1.798820 0.337986 -1.028267 -0.806079 2.196408 1.614192 -6.975413 3.994912 -0.310327 -1.274972 -1.084954 -0.448343 0.818304 1.106074 -0.767094 -2.092594 0.516926 2.178626 -3.270706 1.329717 0.085228 -2.780723 1.291744 0.912731 -2.208983 1.240513 2.199507 -1.863081 3.139643 -7.156443 -3.104836 -0.485196 1.414788 -1.925817 2.228379 2.571797 2.233570 -5.541663 1.956157 -4.059296 3.144364 -2.974974 1.976056 3.626437 -1.055610 1.662050 1.678662 1.048189 4.335375 -0.009613 3.476542 2.430253 3.056076 1.747367 1.262337 2.991398 -2.881879 -1.394903 -3.023572 -3.997549 -0.337229 -1.036988 -3.052471 -0.177635 0.016163 1.027985 1.874606 -0.962704 -0.815575 2.554767 -8.023646 -2.988849 1.039987 -0.385878 1.836803 2.444050 -0.891895 1.027364 -0.620360 4.237791 -2.060878 1.030248 0.103756 1.189022 -2.020685 -2.232296 -4.652645 0.610978 0.447310 -2.242314 -3.149821 -5.674631 -1.004737 1.638704 -0.999357 5.843064 7.137597 -1.675266 -4.153639 3.987456 -0.804084 -0.280214 4.004706 0.375851 4.318898 -2.296316 -0.222177 -2.017947 -0.317714 0.727135 4.752059 1.551418 -1.160500 1.371545 1.286958 -1.808579 -0.943077 -1.053228 -1.632867 -5.213044 1.093569 -2.273525 -0.117078 3.224445 -4.223265 3.671607 -1.954500 4.884813 -2.910296 -4.088132 1.590892 -7.121678 0.118373 -1.885514 -1.377960 -0.091060 2.888713 -4.249674 -1.328048 -2.139915 -2.377646 -1.581214 0.719426 -3.325725 1.113754 0.247004 1.115705 6.993398 4.056700 0.875296 0.760597 -4.415377 0.877209 1.782435 0.161128 -5.951515 1.210012 -2.239543 -0.177303 1.894508 -0.936724 0.846841 -1.692378 -1.618638 -0.895448 -2.334178 1.287868 -0.474834 -2.763988 0.732083 -1.787510 2.938751 1.667907 2.372160 3.902212 3.033688 2.642066 0.306435 0.247557 -2.416356 2.012530 1.781781 2.475006 -1.231245 1.703320 4.167590 1.587988 0.499327 3.535554 2.981566 -2.048626 3.480408 -1.196638 5.136173 -3.386185 0.954457 -1.349313 -0.162197 1.809322 6.050838 -2.770138 0.063498 2.501216 0.924223 -0.001577 -1.223354 -0.277142 -2.772305 -0.266373 2.049979 1.931062 -1.843141 -0.193498 3.739663 0.576946 -4.827500 3.080490 -0.251309 0.776154 0.925732 -0.615359 -1.353300 2.088612 -4.221736 1.954163 2.459083 2.147209 -3.140652 -1.830936 -0.462712 3.124555 3.036858 2.108976 -6.603283 0.514230 2.862234 3.441304 0.862906 4.053835 -2.566960 -3.418334 1.102738 -2.094714 -2.346452 0.898985 1.803552 -1.697770 1.873231 -1.768678 -3.082786 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__unguarded_partition >(suffix*, suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.147357 0.513931 1.948202 -2.019220 -2.358191 0.396135 0.122840 -0.764270 0.603985 2.607458 0.836110 -1.317144 -1.969575 3.349926 -0.722038 -2.120227 -0.153120 -1.217168 -0.062040 -0.756449 0.115066 1.469870 -0.167145 0.467167 0.422078 -0.671523 -0.306859 1.489918 0.768526 -0.610155 -0.995249 -0.410461 -0.356946 2.629996 -0.359027 0.369417 0.348699 4.200040 -2.583716 3.749862 -3.290000 -3.123232 1.699448 0.387511 -0.041441 -2.017700 -1.141462 1.381782 -2.016736 -0.879497 1.921224 0.289950 -0.080009 -0.531095 1.689887 1.587134 -4.485517 1.735548 0.057439 -0.673390 -0.487350 -0.389762 0.024612 0.896618 -1.347670 -1.423670 0.591978 0.770638 -1.746054 0.370795 -0.069212 -2.552486 2.355016 0.931479 -1.620994 0.965688 2.000038 -1.861808 2.362152 -2.998361 -2.546817 -0.314183 0.391299 -1.735386 2.393152 0.801780 1.722293 -3.989102 0.989436 -3.231902 2.288919 -2.572698 1.342682 2.948896 -1.343072 1.166965 1.289579 1.227941 2.197124 -0.284843 2.557637 1.589864 1.751412 1.038435 1.599885 1.638939 -2.249776 -1.514234 -2.615904 -2.948510 0.115031 -1.403963 -3.145706 0.048960 -0.004941 0.755197 1.260285 -0.370195 -0.551248 2.002314 -4.323567 -0.432402 0.898482 -0.396576 1.152749 2.508542 -0.892089 0.529586 -0.394070 3.157015 -1.552400 1.100360 -0.222785 0.957982 -1.056765 -0.769970 -2.609401 0.473238 0.645244 -1.497244 -2.413087 -3.725752 -0.611325 1.481819 -0.634137 3.585987 5.292201 -1.363568 -2.632766 2.900117 -0.012437 0.355498 2.295390 0.321969 3.161873 -1.663561 -0.188538 -2.006130 -0.448710 0.208522 3.403106 1.263409 -0.812991 1.307052 0.402003 -1.841907 1.606962 -0.788874 -1.220463 -2.506507 0.647476 -1.738749 -1.064209 3.086455 -2.312604 2.529452 -0.765767 3.639554 -1.664199 -2.585364 1.270124 -3.378334 0.042051 -2.448392 -1.386914 0.408839 1.820501 -2.628963 -1.075456 -1.890873 -1.360660 -1.012816 0.449960 -1.513811 0.648303 0.192968 0.946301 3.933915 3.189668 0.868335 0.041955 -3.353764 0.821986 1.028699 -0.725667 -3.129270 0.804895 -1.502686 -0.129610 1.003472 -0.548714 0.749660 -1.695064 -1.459892 -0.648260 -1.305263 0.689482 -0.040666 -3.973167 0.410638 -0.236482 1.768064 1.723259 1.621284 3.244585 2.374968 2.186974 0.325736 0.242329 -0.636922 -0.162607 0.811521 1.022668 0.221370 1.206305 2.827363 1.247847 0.300944 2.384706 2.092022 -0.464797 2.422687 0.140454 3.852630 -0.388560 -0.061183 -0.443887 -0.286374 1.543089 4.296960 -1.524392 0.756885 1.832745 1.282662 -0.542258 -1.659081 -0.098478 -1.894048 -0.191046 1.897587 0.601084 -1.106079 -0.312232 2.805761 0.197560 -3.873602 1.395292 -0.164283 0.882776 1.417074 -0.285791 -0.265894 1.224173 -3.021287 2.355282 1.584586 1.500961 -2.158963 -0.690218 -0.198844 1.513375 2.034830 1.506306 -4.236779 0.215489 1.263855 2.692682 1.023383 2.879814 -1.802398 -1.537970 0.760698 -1.926064 -1.319293 0.019907 1.224063 -1.226849 0.934119 -2.475197 -2.335323 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::iter_swap(suffix*, suffix*) = 0.143433 0.249664 0.198329 -0.422935 -0.622517 -0.045607 0.095298 -0.115631 -0.011887 0.033784 0.273125 -0.432351 -0.288321 0.758332 -0.163119 -0.383646 -0.138475 -0.429643 -0.229281 0.071967 0.022437 0.338623 -0.048055 0.107994 0.063051 0.140482 -0.209997 0.197072 0.361603 -0.426498 -0.347339 -0.022943 0.133254 0.459987 -0.055527 -0.170252 0.143727 0.852539 -0.299605 0.445149 -0.500069 -0.309944 0.303960 0.003673 -0.102095 -0.768525 -0.510458 0.396929 -0.227432 -0.147043 0.395363 0.176359 -0.271648 -0.106173 0.294712 0.459894 -0.941618 0.656136 0.214647 0.194444 0.100238 -0.073029 -0.086335 -0.022335 -0.050995 -0.315361 0.036411 0.056530 -0.317035 0.033351 -0.049559 -0.503807 0.828349 0.123678 -0.305443 0.196798 0.237333 -0.470155 0.506649 -0.722968 -0.465867 0.084126 0.111543 0.095600 0.550393 -0.040432 -0.009628 -0.736652 0.014586 -0.673641 0.234255 -0.684893 0.115743 0.598065 -0.444688 0.137970 0.089465 -0.098067 0.569074 0.300522 0.524874 0.257753 0.364390 0.109935 0.186506 0.261504 -0.214629 -0.157718 -0.359462 -0.653282 -0.040674 0.067190 -0.932346 0.163038 0.094175 0.134653 0.154491 -0.018938 0.124203 0.228144 -0.446331 -0.158520 0.213665 -0.067068 0.172718 0.746434 -0.246459 0.062358 -0.438056 0.558551 -0.039466 0.411103 0.017473 0.128993 -0.206469 -0.817918 -0.609348 0.079677 0.116053 -0.242738 -0.445676 -0.664787 0.111825 -0.093652 -0.286763 0.335782 0.945378 -0.281184 -0.468561 0.715343 0.539858 0.165684 0.442105 -0.082457 0.853184 -0.241789 -0.087015 -0.063846 -0.238301 -0.156835 -0.016227 0.194283 -0.213421 0.034552 0.029391 -0.980889 0.528653 -0.022980 -0.277744 0.122251 0.043314 -0.296224 -0.461570 0.684079 0.247252 0.515480 0.060173 0.681394 -0.157977 -0.490510 0.353442 -0.032136 0.165965 -0.404075 -0.267842 0.221703 0.308256 -0.397477 -0.128450 -0.094793 -0.172599 -0.410412 0.083688 -0.005426 0.126825 0.081692 0.335693 0.160441 0.661306 -0.029743 0.284963 -0.717513 0.197659 0.192492 -0.139473 -0.776942 0.193245 -0.309518 -0.016012 0.235432 -0.196444 0.013914 -0.125739 -0.370091 0.047864 -0.299809 0.233674 0.056060 -0.258333 0.011203 -0.296209 0.389727 0.183991 0.350936 0.656680 0.445940 0.438450 0.103017 0.081540 0.022606 0.039127 0.000434 -0.009983 0.079774 0.304998 0.377646 0.283861 0.026669 0.440086 0.279864 -0.195467 0.503222 0.276867 0.845545 -0.006192 -0.147239 -0.113150 -0.103252 0.432920 0.972846 -0.307931 0.011787 0.274212 0.270169 -0.084187 -0.386534 -0.095884 -0.241870 -0.358232 0.447405 -0.086246 -0.159765 0.081093 0.504723 -0.131606 -0.646784 0.246658 0.004808 0.213481 0.112682 0.059212 0.011409 0.320503 -0.555083 0.265200 0.352791 0.374708 -0.297625 -0.456639 -0.045475 0.295685 0.065162 0.408232 -0.702344 0.162529 0.437450 0.487196 0.082613 0.214596 -0.336377 -0.434961 0.251858 -0.031948 -0.224746 -0.022880 0.229958 -0.425341 -0.001576 -0.248382 -0.479202 +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.960671 0.913701 1.000098 -0.994351 -2.004311 0.631192 -1.091360 -0.909067 0.052467 0.674137 0.692013 -0.509611 -0.172590 1.256111 -1.122597 -0.876815 -0.802264 -1.557333 -0.199699 -1.069498 -0.004408 0.526138 -0.343248 0.471996 -0.373546 -0.375796 -0.139943 0.136710 0.680682 -0.783654 -0.867263 -0.177856 -0.167572 1.300073 0.464732 -1.077771 0.670396 2.231309 0.084514 -0.722945 -1.206896 -1.490912 0.251305 0.091782 -0.010965 -0.904201 -0.749954 0.707989 -0.604583 0.906953 1.124046 -0.105541 -0.309131 0.378088 0.413490 0.262522 -2.400255 1.884894 0.084239 0.147963 -0.115097 -0.310957 0.413935 0.483067 0.561940 -0.611274 1.036876 1.462436 -0.588756 0.138590 0.091371 -1.501247 1.539558 0.283334 -0.468999 -0.017000 0.925371 -1.105624 1.266285 -1.546918 -1.703724 0.219231 0.169871 -0.778171 1.477853 -0.114828 0.250313 -1.856930 0.853228 -2.062434 0.297124 -1.012139 0.425079 1.053612 -1.386256 -0.028606 0.801631 0.722653 1.702946 -0.074879 1.511229 0.431033 0.589816 0.766886 0.416505 0.459617 -0.094697 0.455236 -0.917662 -1.748101 -0.482388 -0.026928 -2.124513 0.499832 0.125178 -0.248719 -0.326908 -0.195875 -0.013926 1.194951 -1.772360 -1.412055 0.103516 -0.110626 0.509871 1.114539 -0.718621 0.839165 -0.524862 1.631819 -0.801108 0.342363 0.010772 0.196452 -0.157811 -1.621267 -3.016289 0.838120 0.950081 -0.824237 -1.323989 -1.021550 -0.110377 -0.438546 -0.464635 2.101171 2.530305 -0.857364 -1.572911 1.757391 0.628674 -0.226645 2.331153 -0.000955 1.847360 -0.485075 -0.390867 -0.677775 -0.679889 -0.657199 -1.662713 0.487714 0.561135 0.497742 0.830125 0.254706 0.852229 -0.523181 -1.227531 0.000218 0.519960 -0.624617 -0.803650 1.126780 1.366166 0.883520 1.298606 1.940003 -0.741303 -1.635615 0.481675 -0.495908 0.469341 0.013445 -0.230169 -0.028542 1.085603 -0.662980 -0.490157 -0.195504 -0.622138 -0.878885 0.010190 1.754443 1.024832 0.717952 0.775465 0.481910 2.613903 0.577948 0.517359 -1.542915 0.422300 1.130751 -0.203502 -1.332336 -0.048582 -0.849540 0.199426 0.618199 -0.292225 0.648063 -0.516546 -0.758362 -0.623791 -0.242383 1.135056 0.818330 -1.043073 0.519364 -1.228851 0.907492 0.190920 0.654691 1.624814 1.544225 1.748298 -0.143651 0.447231 -0.208034 1.548548 -0.388180 0.945687 0.589310 0.625438 1.574471 0.656683 0.460530 0.956006 1.213432 -0.240300 1.216169 -0.337644 2.600953 -1.474353 0.536749 -1.424521 0.212725 1.116458 3.008776 -0.624435 0.246814 0.413280 0.926002 0.150962 -1.899967 0.151483 -0.644429 0.559416 -0.314382 0.826379 -0.319509 -0.299304 1.216618 0.233718 -1.398639 1.103256 0.103339 0.223395 0.463880 -0.149536 -0.634976 0.358210 -1.700441 0.949127 1.407959 0.783073 -1.019516 -0.525113 -0.019421 1.583165 -1.498206 1.211168 -1.156962 1.281019 1.296366 0.751477 0.557522 0.427453 -1.464659 -1.833702 1.098292 -0.642957 -0.607026 1.391377 1.041815 -1.842849 1.060934 0.236450 -1.659785 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.379628 0.972014 2.511809 -2.852861 -4.125467 1.532426 -1.804797 -1.981336 0.656779 3.478764 1.314460 -1.392104 -1.670788 4.082897 -1.776675 -2.915589 -0.813157 -2.379318 0.310369 -1.595465 0.007888 1.829254 -0.705619 0.945198 -0.248042 -1.141626 -0.329509 1.079003 1.447518 -0.835728 -2.164057 -0.754831 -1.053214 3.813646 0.622054 -0.733112 1.084707 6.170868 -1.681431 2.780651 -4.198849 -4.499205 1.362345 0.481387 0.171832 -1.848375 -1.243684 1.740056 -2.472660 0.248977 3.033644 -0.359315 -0.041306 0.343655 1.919245 1.150083 -6.131869 3.282272 0.012622 -0.283676 -0.434162 -0.938556 0.658147 1.729353 -1.000051 -1.806020 1.819258 2.697036 -2.150986 0.272979 -0.216127 -3.981038 3.418245 1.521638 -2.376275 0.411206 2.772836 -2.910906 3.186832 -4.185882 -4.494222 0.003770 0.151960 -2.793133 3.793962 0.772523 2.419639 -5.600347 2.589535 -5.396157 2.315753 -3.020111 1.928592 3.990284 -2.721230 0.609064 2.302323 2.939855 3.961780 -0.725722 3.904721 2.024328 1.421970 1.674571 1.897741 1.978292 -2.021320 -0.640232 -2.932675 -4.261153 -0.586653 -1.441650 -4.972649 0.503934 -0.081584 1.035759 0.482849 -0.210990 -0.991922 2.883581 -6.452251 -2.701390 0.370388 -0.491924 2.100844 3.016652 -1.560979 1.716004 -0.621516 4.688233 -2.511903 0.821255 -0.459580 1.137347 -1.533139 -1.197843 -5.858814 1.550888 2.001695 -2.400108 -3.803156 -4.523866 -0.998055 1.118382 -0.872690 6.268760 7.341674 -2.289343 -3.787163 4.435925 -0.677660 -0.125154 5.032113 0.275501 4.281750 -1.992581 -0.396254 -2.637817 -0.923029 -1.029192 1.195394 1.650990 0.111283 1.742702 1.029598 0.019580 1.809423 -1.070611 -2.686914 -3.490893 0.960722 -2.156983 -1.491048 3.880013 -2.083822 2.638727 0.714745 5.315856 -2.273610 -3.798336 1.636256 -4.201395 0.339673 -2.001112 -1.413831 0.084681 2.943085 -3.371702 -1.529316 -1.542856 -1.745371 -1.814740 0.362585 1.086320 1.506179 1.215875 1.585967 5.195327 5.793321 1.747575 0.202297 -4.173483 1.240699 2.201783 -1.490749 -3.383414 0.363451 -2.416230 0.108975 1.523672 -0.669950 1.455020 -2.597112 -2.234466 -1.692280 -0.950902 2.390558 1.271513 -5.110797 1.196656 -1.189516 2.348370 1.998146 2.035334 4.040055 4.055438 4.074680 -0.225338 0.749342 -0.722524 1.660731 0.391943 2.410855 0.837335 1.624656 4.351340 1.818590 0.880197 2.866503 3.276758 -0.278435 3.368221 -0.618720 6.156566 -1.992210 0.754912 -2.001295 -0.158105 2.520560 7.118404 -2.600755 1.452133 1.945873 1.805064 -0.372010 -3.307384 0.439778 -2.451170 0.746545 0.377381 1.477727 -0.902079 -1.079058 3.846349 0.516342 -4.949549 2.487636 -0.004681 1.032325 2.345535 -0.447012 -0.842324 0.985747 -4.622619 3.721400 3.182183 2.050702 -2.795850 -0.644200 -0.229813 2.902125 0.236467 2.537111 -3.899435 1.764450 2.485327 3.277745 2.027481 2.816789 -3.169309 -3.174404 1.835540 -2.932600 -1.708934 1.322400 2.418952 -2.548863 2.126086 -1.858389 -4.077510 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_insertion_sort >(suffix*, suffix*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.455600 0.220024 1.016197 -1.713691 -2.105382 0.611275 -0.509466 -0.784560 0.317920 0.913541 0.918263 -1.052683 -1.140153 2.382088 -0.382683 -1.775046 -0.120360 -1.134654 -0.028682 -0.077376 -0.032111 1.011303 -0.379021 0.481276 0.042278 -0.171243 -0.467741 0.910600 1.392393 -0.717882 -1.495790 -0.293768 -0.531166 2.120065 0.215344 -0.393537 0.784877 3.633550 -1.129838 2.021930 -1.804293 -1.712872 0.975899 0.162332 -0.476178 -1.196999 -1.154089 1.131709 -1.772610 -0.334232 1.956689 -0.000594 -0.083412 0.034500 1.200605 1.260690 -3.434619 1.720169 0.356149 0.463372 0.147088 -0.592822 -0.030975 0.622388 -0.799606 -1.066125 0.828273 0.686124 -1.162500 -0.155756 -0.362660 -2.260561 2.603120 0.988727 -1.390626 0.413386 1.450606 -1.898464 1.775300 -1.888538 -2.459849 0.123248 -0.071927 -1.247177 2.573213 -0.068575 0.980560 -3.100329 0.929544 -3.048414 1.155434 -2.209223 0.977014 2.607164 -1.832023 0.366408 0.959871 1.240700 1.821106 -0.135479 2.205105 1.007780 0.623860 0.643026 1.205243 0.936776 -1.178151 -0.577726 -1.588243 -2.304911 -0.289444 -0.750286 -3.210079 0.413767 -0.134279 0.751872 0.473153 0.108208 -0.518760 1.243884 -2.566908 -0.821954 0.217496 -0.346994 1.189536 2.392269 -0.960068 0.631916 -0.731237 2.609978 -0.981628 0.889538 -0.455357 0.654787 -0.696232 -0.902570 -2.738115 0.594726 1.085077 -1.216294 -2.208461 -2.540019 -0.293830 0.256870 -0.602740 2.975005 4.039358 -1.234259 -1.784821 2.690207 0.062677 0.644989 2.420162 -0.034518 2.599831 -1.116327 -0.140752 -1.268103 -0.607987 -0.862149 0.471729 0.891289 -0.228160 0.690517 0.204592 -0.875369 1.793088 -0.220787 -1.379311 -1.285843 0.294818 -1.263865 -1.566715 2.763364 -0.812339 1.498174 0.562422 2.973595 -0.877037 -1.973414 1.278527 -1.133117 0.340024 -1.737536 -1.207460 0.410764 1.334581 -1.734782 -0.848807 -0.870592 -0.476538 -1.190950 0.212884 0.915093 0.570402 0.533663 1.087195 2.165894 3.106374 0.658735 0.303416 -2.588589 0.789693 1.044574 -1.251728 -1.745293 0.498512 -1.223657 -0.022834 0.951111 -0.442891 0.571647 -1.557575 -1.572962 -0.607088 -0.385415 1.313157 0.715494 -3.336314 0.539837 -0.349661 0.994419 1.487867 1.189486 2.326482 2.096756 2.137482 -0.024840 0.348072 0.223540 0.084895 -0.012738 0.632531 0.867285 0.982000 2.043585 1.103435 0.313139 1.448523 1.622005 -0.141874 1.854626 0.554412 3.377031 0.157352 -0.208062 -0.620712 -0.452634 1.540310 3.846444 -1.562769 0.864979 1.201051 1.225439 -0.373406 -2.048969 0.094590 -1.341368 -0.150232 0.676243 -0.098523 -0.459270 -0.412370 2.205526 -0.102946 -2.896579 1.013162 0.025996 0.785527 1.290048 0.011423 -0.108896 0.628467 -2.753063 2.258382 1.577050 1.206598 -1.199754 -0.325635 -0.124152 1.156329 0.251963 1.392918 -1.978278 0.746460 1.167022 2.007646 1.386123 1.298301 -1.405352 -1.434433 0.845898 -1.479187 -0.766530 0.012378 1.237329 -1.380750 0.720852 -1.434440 -2.250139 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::move_backward(suffix*, suffix*, suffix*) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__unguarded_linear_insert >(suffix*, __gnu_cxx::__ops::_Val_comp_iter) = 0.835529 0.968047 1.837100 -1.748473 -2.949467 0.811138 -1.215985 -1.220755 0.347545 1.384874 1.091181 -1.094031 -0.846702 2.579445 -1.380683 -1.745239 -0.898880 -1.634587 -0.205692 -1.452748 0.109734 1.003354 -0.412560 0.682901 -0.288563 -0.759647 -0.164061 0.850706 1.131649 -0.809987 -1.215001 -0.329653 -0.332245 2.323304 0.360746 -0.830600 0.869933 3.867052 -0.936807 0.788869 -2.347530 -2.612009 0.906944 0.299024 -0.127118 -1.565513 -1.490388 1.157625 -1.731812 0.676045 1.941435 0.003937 -0.201819 0.245582 1.142331 0.861319 -4.068788 2.430609 0.053272 -0.209862 -0.264479 -0.435469 0.297614 0.886191 -0.065205 -1.102249 1.309792 1.880884 -1.131123 0.242814 0.148654 -2.572701 2.634829 0.579566 -1.096737 0.351070 1.874990 -1.836959 2.188649 -2.348113 -2.742301 0.089118 0.272163 -1.594525 2.478461 0.128791 1.004239 -3.375426 1.158234 -3.348786 1.234870 -2.042039 0.918231 2.163874 -2.155061 0.428694 1.365545 1.304384 2.489652 -0.154676 2.457295 1.069412 1.140701 1.159257 1.195530 1.021711 -0.911442 -0.183884 -2.024840 -2.929620 -0.458777 -0.808283 -3.553262 0.463811 0.122390 0.035794 0.007647 -0.310289 -0.213224 2.057747 -3.219918 -1.247451 0.471036 -0.267558 0.846543 2.095707 -1.104131 1.069729 -0.620721 2.874000 -1.505043 0.692944 -0.101158 0.542503 -0.518147 -1.874271 -4.119676 1.099323 1.241842 -1.345314 -2.271821 -2.336545 -0.419145 0.265891 -0.617341 3.438700 4.586721 -1.363696 -2.613091 2.831219 0.724557 -0.058903 3.283298 0.204647 3.097637 -1.114046 -0.478920 -1.689999 -0.939819 -0.583515 -0.470587 1.007897 0.297753 1.123878 1.006197 -0.542265 1.882143 -0.989846 -1.725678 -1.037086 0.854963 -1.293256 -1.223800 2.455340 0.510128 1.848077 0.990810 3.366310 -1.394935 -2.739350 0.915697 -1.762249 0.465815 -0.916673 -0.710745 0.098549 1.846881 -1.627397 -0.966729 -1.017419 -1.166220 -1.171622 0.136973 1.445021 1.266202 0.813271 1.164211 1.879250 3.943327 1.039819 0.490618 -2.859655 0.718864 1.612873 -0.538743 -2.510465 0.329912 -1.405631 0.181745 0.740239 -0.443923 0.955420 -1.320129 -1.316838 -1.084869 -0.754713 1.431194 0.855999 -2.880174 0.744690 -1.263973 1.597524 0.950030 1.195144 3.076842 2.474024 2.690595 0.026898 0.563198 -0.457758 1.500431 -0.013172 1.450637 0.730724 1.018645 2.813819 1.093640 0.553723 1.817955 2.096466 -0.232794 2.091227 -0.170594 4.132325 -1.386132 0.541507 -1.656054 0.150908 1.729973 4.805960 -1.043038 0.682382 1.118103 1.573746 -0.031403 -2.862036 0.096857 -1.329812 0.505714 0.523754 0.988677 -0.770150 -0.442719 2.253333 0.407668 -2.867381 1.560272 0.044618 0.502791 1.029705 -0.317056 -0.802474 0.797285 -2.890270 1.983245 1.971121 1.293114 -1.894881 -0.754979 -0.106295 2.104057 -0.540895 1.809237 -2.724687 1.503490 1.750350 1.799740 0.960785 1.543693 -2.201435 -2.434229 1.376339 -1.543165 -1.138347 1.398392 1.424562 -2.407225 1.497248 -0.738357 -2.831778 +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.170154 -0.013153 0.100493 -0.374127 -0.604825 0.221905 -0.534312 -0.258232 0.028635 -0.223988 0.225702 -0.376031 -0.275526 0.669355 -0.176760 -0.632461 -0.183216 -0.054914 -0.025074 0.058519 -0.012096 0.199669 -0.120874 0.162202 -0.084771 0.010223 -0.154632 0.057160 0.686804 -0.250396 -0.538662 -0.052219 -0.091120 0.537398 0.150388 -0.024891 0.321729 0.952092 0.285868 0.437516 -0.412704 -0.343925 0.078579 0.058929 -0.105904 -0.241415 -0.412255 0.285970 -0.808705 0.149522 0.530072 -0.027344 -0.232680 0.130561 0.358787 0.293925 -0.937774 0.808210 0.086932 0.349018 0.232402 -0.174671 -0.120005 0.053232 0.062064 -0.249173 0.144228 0.459380 -0.425808 -0.027500 -0.090744 -0.564400 1.048984 0.255458 -0.491479 0.041305 0.379358 -0.297655 0.373485 -0.657314 -0.698255 0.118910 0.040646 0.015022 0.759012 0.080099 0.113947 -0.781590 0.274418 -0.871848 0.256072 -0.598647 0.251923 0.680744 -0.761405 -0.019219 0.263525 0.149503 0.592274 0.255571 0.580618 0.176771 -0.139260 0.083436 0.216414 0.038499 -0.033385 0.018811 -0.155186 -0.636689 -0.274121 -0.030371 -1.103684 0.076912 -0.064946 0.693639 -0.059024 0.276717 -0.039371 -0.158838 -0.676841 -0.489425 -0.089728 -0.075415 0.523213 0.603767 -0.299502 0.273800 -0.319511 0.710024 -0.190556 0.054932 -0.156646 0.094665 -0.047004 -0.507244 -1.096276 0.212758 0.394489 -0.247328 -0.619146 -0.506735 -0.088723 -0.000326 -0.161943 0.806030 0.986729 -0.296137 -0.368124 0.772872 -0.063370 0.364026 0.920279 -0.028138 0.735718 -0.247947 0.005491 -0.129731 -0.209831 -0.416141 -0.750786 0.193932 -0.069125 0.067007 0.126616 -0.179322 0.352471 -0.077957 -0.452560 -0.461658 -0.035602 -0.280356 -0.399028 0.740395 -0.065739 0.333783 0.272459 0.785518 -0.213075 -0.634327 0.359180 -0.150330 0.118805 -0.137985 -0.251246 -0.005458 0.358033 -0.634804 -0.212379 0.077642 -0.047586 -0.391168 0.019634 0.932255 0.070271 0.217107 0.373379 0.543892 0.885058 0.152958 0.189820 -0.683548 0.167985 0.302940 -0.451536 -0.398440 0.230313 -0.335420 0.037137 0.305060 -0.132863 -0.022445 -0.343939 -0.461811 -0.343688 -0.086055 0.692460 0.320985 -0.347297 0.112368 -0.151097 0.176311 0.415246 0.260077 0.617506 0.539692 0.633247 -0.023766 0.177253 0.073511 0.436154 -0.069838 0.231397 0.329230 0.215047 0.393087 0.253878 0.020806 0.284238 0.436446 -0.047297 0.459299 0.292669 0.974889 -0.018357 -0.003924 -0.278919 -0.195899 0.462259 1.186067 -0.856739 0.394600 0.261797 0.357496 0.131931 -0.688946 -0.015231 -0.286942 -0.315882 0.128439 -0.197313 0.022311 -0.121625 0.501150 -0.034223 -0.577516 0.348005 0.038936 0.109542 0.217626 0.015154 -0.185438 0.150458 -0.839489 0.420187 0.440269 0.331223 -0.225042 -0.145720 -0.109793 0.315931 -0.123960 0.409425 0.136877 0.309100 0.541547 0.533788 0.460983 -0.194744 -0.328383 -0.656470 0.215249 -0.378543 -0.216921 -0.031378 0.259591 -0.290444 0.092888 0.024850 -0.921390 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a(suffix*, suffix*, suffix*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__miter_base(suffix*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_wrap(suffix* const&, suffix*) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a1(suffix*, suffix*, suffix*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__niter_base(suffix*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward_a2(suffix*, suffix*, suffix*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__suffix* std::__copy_move_backward::__copy_move_b(suffix const*, suffix const*, suffix*) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(suffix&, suffix*) = 1.621601 0.402107 1.140870 -1.833364 -2.201375 1.269144 -1.681027 -1.470361 0.494746 0.902079 1.195367 -0.805763 0.266384 2.170292 -1.136908 -1.401772 -0.249133 -1.665248 0.048111 -0.522216 0.074579 0.586317 -0.654804 0.147292 -0.548554 -0.441775 0.111101 0.267944 0.992774 -0.625277 -2.292369 -0.298085 -0.680467 2.407560 0.901948 -1.293513 1.039582 3.486394 -0.163413 0.401513 -1.707662 -1.822306 0.621967 0.221407 -0.338027 -0.775842 -1.252188 0.869593 -0.651934 0.365737 1.882577 -0.714827 0.083348 0.331968 0.535076 0.836934 -3.202792 1.684504 0.259027 0.813867 -0.155404 -0.866286 1.086715 1.127550 -0.571249 -1.071551 1.988855 1.945244 -1.006652 -0.058917 -0.713555 -3.191404 2.763598 1.045617 -1.223105 -0.251063 1.225820 -2.749579 1.822863 -1.364618 -2.712709 0.324575 -0.172659 -1.713646 2.687190 -0.461123 1.282129 -3.244329 1.754992 -3.652361 0.689610 -1.926207 1.274199 2.238327 -2.502414 -0.315332 1.131400 2.905463 2.274530 -0.147024 2.505188 1.228054 0.162674 0.114223 1.501482 0.854172 -0.448568 0.093771 -1.136434 -2.437860 -0.762278 -0.593161 -4.117520 0.760840 -0.646340 0.021562 -0.659614 0.086893 -0.567860 2.093412 -3.041373 -2.148118 -0.174378 -0.287570 1.286399 2.196426 -1.108494 1.272223 -0.671211 2.690469 -0.905702 -0.017274 -0.521899 0.449203 -1.355939 -1.163007 -3.885200 1.206927 1.932521 -1.728050 -2.745567 -2.346125 -0.497479 0.000862 -0.570990 3.921539 3.909286 -1.127953 -2.163950 2.416479 0.452684 -0.263220 3.953945 -0.096546 3.141383 -1.654083 0.483040 -1.109906 -0.196414 -1.440486 -2.168701 0.357213 0.622765 0.806612 0.303869 0.134158 2.806624 -0.318422 -1.412993 -0.474578 0.478038 -0.995483 -1.728532 2.711543 0.316124 1.290908 1.546384 3.405035 -1.432563 -2.049571 1.128564 -0.898275 0.356356 -0.838370 -0.632669 -0.203896 2.317579 -1.282774 -1.026594 -0.080244 -0.723718 -0.842738 0.551482 2.842781 0.992646 0.700696 0.696694 1.560089 3.775417 0.745435 0.658733 -2.261423 0.707884 2.129193 -1.365129 -1.255027 -0.222097 -1.805661 0.222834 0.279616 -0.309537 1.129396 -2.118700 -1.885581 -0.949998 0.284541 1.905503 1.015162 -3.391070 0.980991 -1.357572 0.970790 0.876372 1.485906 2.275927 2.525892 2.513400 -1.153613 0.739426 -0.289830 0.692225 -0.399953 1.175716 1.348988 0.847092 2.687937 0.672397 0.598697 1.168202 1.642451 0.336067 1.880517 0.243959 3.704247 -0.830018 0.568788 -1.514576 -0.753081 1.943667 4.883971 -1.330187 0.790778 0.691995 1.412466 -0.489772 -2.933430 0.178220 -0.990345 0.375734 -0.844380 0.538885 -0.095375 -1.013470 2.581479 0.521296 -2.894236 1.276405 0.048718 0.502084 1.985212 -0.614901 -0.060743 0.208776 -2.328007 2.439406 1.805702 1.333013 -1.263594 -0.321529 -0.061663 1.913476 -1.548020 1.113847 -1.056943 2.568350 1.638869 1.952798 1.828121 0.836442 -2.077239 -1.327862 0.954041 -1.519165 -0.546105 1.054466 2.025629 -2.375586 1.092008 -1.096694 -2.257734 +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.093408 0.025724 0.373658 -0.610964 -0.899209 0.200353 -0.230257 -0.338466 0.072537 -0.126913 0.448451 -0.485799 -0.273297 1.010218 -0.171837 -0.637562 -0.142028 -0.127934 -0.096583 0.068286 0.073714 0.362288 -0.159752 0.193647 -0.082741 -0.024077 -0.136738 0.349310 0.556834 -0.194424 -0.574255 -0.139819 -0.078990 0.735038 0.155903 -0.031633 0.260455 1.300685 -0.325605 0.860725 -0.631363 -0.469733 0.310373 0.049709 -0.168465 -0.733844 -0.849055 0.401995 -0.662234 -0.128814 0.739361 0.033142 -0.037873 0.079980 0.492126 0.450127 -1.143625 0.618483 0.205379 0.124523 0.206816 -0.166377 -0.213885 0.184713 -0.334456 -0.352684 0.204290 0.371351 -0.263547 -0.057153 -0.063547 -0.899199 1.322320 0.264967 -0.559815 0.116647 0.594020 -0.733782 0.679834 -0.549715 -0.930454 0.078827 -0.084442 -0.212810 0.930930 -0.079977 0.339574 -1.096136 0.215513 -1.181401 0.421464 -0.894654 0.240976 0.887791 -0.856967 0.095166 0.397675 0.372954 0.756502 0.266584 0.721566 0.463323 0.137708 0.180259 0.544441 0.279419 -0.277105 -0.257178 -0.587788 -0.923704 -0.082603 -0.281464 -1.524765 0.150445 0.097753 0.359068 -0.077505 0.122919 0.048291 0.425692 -0.683987 0.010490 0.197821 -0.116651 0.291061 0.934933 -0.397112 0.243164 -0.430801 0.887940 -0.377344 0.391142 -0.113964 0.222968 -0.328197 -0.680340 -1.059899 0.297320 0.375963 -0.372100 -0.757342 -0.873256 -0.045275 0.215601 -0.251980 0.706496 1.409710 -0.503504 -0.655466 0.960448 0.511865 0.154005 0.821255 0.025914 1.051623 -0.317216 -0.129810 -0.475741 -0.411462 -0.382335 -0.077692 0.334598 -0.145496 0.307073 0.008861 -1.087372 1.183927 -0.211690 -0.574009 -0.204063 0.092771 -0.428192 -0.564849 1.077781 -0.028520 0.547216 0.114680 1.035431 -0.256751 -0.704668 0.376139 -0.250663 0.145535 -0.569055 -0.291988 0.219824 0.549725 -0.638815 -0.305175 -0.190263 -0.283067 -0.443811 0.073704 0.372000 0.145368 0.276648 0.459853 0.485876 1.164296 0.278176 0.165436 -0.874812 0.317733 0.353863 -0.437643 -0.798773 0.196896 -0.468111 0.018968 0.042592 -0.132874 0.147336 -0.517520 -0.526782 -0.291807 -0.311415 0.485608 0.333278 -0.921165 0.139416 -0.157263 0.513312 0.456132 0.379725 0.988810 0.824019 0.859464 0.104173 0.141872 0.096976 0.041730 0.057989 0.284225 0.227964 0.322194 0.749831 0.395686 0.082669 0.519446 0.569114 0.175504 0.650005 0.372677 1.257853 0.230017 -0.111124 -0.239660 -0.080194 0.642684 1.523017 -0.389479 0.414979 0.348998 0.446077 -0.151542 -0.815925 0.030608 -0.329833 -0.330307 0.500624 -0.042728 -0.078564 -0.134267 0.739398 -0.051004 -0.964759 0.266225 0.039382 0.279974 0.464320 0.028376 0.020911 0.230573 -0.818279 0.793059 0.570024 0.456549 -0.476587 -0.425391 -0.062270 0.282796 0.312181 0.600368 -0.667136 0.396793 0.512141 0.751367 0.260637 0.318111 -0.588318 -0.523204 0.367696 -0.447775 -0.286000 -0.019770 0.337200 -0.515419 0.113848 -0.457870 -0.997199 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(int (*)(suffix, suffix)) = 0.056185 0.138521 0.287218 -0.514428 -0.763271 0.079404 -0.042654 -0.211197 0.029549 -0.177093 0.406095 -0.460342 -0.364626 0.814145 -0.113574 -0.553383 -0.125766 -0.243197 -0.179063 0.064751 0.043097 0.307648 -0.099651 0.150057 -0.009671 0.061307 -0.189500 0.340305 0.562438 -0.324487 -0.460950 -0.059202 0.033540 0.594767 0.050005 -0.096347 0.233696 1.074655 -0.310204 0.594128 -0.512708 -0.330436 0.337232 0.025850 -0.214413 -0.760849 -0.702710 0.407366 -0.591225 -0.124984 0.608842 0.104241 -0.109683 -0.010132 0.393325 0.529523 -1.061483 0.651740 0.217124 0.161255 0.184676 -0.101047 -0.196013 0.063675 -0.121285 -0.331241 0.119118 0.154308 -0.269911 -0.046909 -0.058749 -0.700526 1.171855 0.176396 -0.412196 0.168393 0.422670 -0.585349 0.584151 -0.543163 -0.694354 0.078342 0.019320 -0.018078 0.776273 -0.112086 0.100318 -0.898653 -0.013244 -0.924639 0.335044 -0.794616 0.174886 0.716420 -0.692356 0.116762 0.237143 -0.010343 0.587685 0.260156 0.622011 0.283116 0.263866 0.142229 0.364916 0.216772 -0.241271 -0.211356 -0.494511 -0.788010 -0.064121 -0.105322 -1.252840 0.156856 0.065399 0.245912 0.063137 0.032109 0.103151 0.299334 -0.395003 0.037322 0.204564 -0.095017 0.242917 0.901561 -0.316217 0.144574 -0.407104 0.724048 -0.207838 0.434141 -0.074381 0.175263 -0.123515 -0.826779 -0.832323 0.188389 0.263421 -0.283425 -0.593475 -0.691122 0.056923 0.001080 -0.259921 0.421777 1.176362 -0.392949 -0.555295 0.838963 0.552994 0.239707 0.608504 -0.024491 0.975020 -0.282910 -0.108072 -0.295172 -0.355381 -0.266323 -0.057183 0.255746 -0.177865 0.171816 0.046922 -1.031083 0.868436 -0.117553 -0.427670 0.084657 0.058099 -0.358720 -0.577376 0.885556 0.271957 0.527380 0.163403 0.861274 -0.198675 -0.647990 0.371453 0.045077 0.163163 -0.484206 -0.330262 0.279989 0.366009 -0.477614 -0.220044 -0.202349 -0.161390 -0.425228 0.072220 0.281901 0.136429 0.178569 0.398910 0.182246 0.924563 0.122348 0.224183 -0.819447 0.256990 0.254335 -0.289864 -0.777371 0.210171 -0.369608 0.006975 0.196268 -0.165483 0.102164 -0.279181 -0.449277 -0.105612 -0.310134 0.362055 0.211725 -0.639900 0.072384 -0.184879 0.380566 0.344205 0.362510 0.845843 0.626267 0.643948 0.140259 0.118249 0.122836 0.029397 -0.031613 0.087091 0.231068 0.317919 0.512609 0.339527 0.045511 0.474744 0.417029 0.000779 0.567953 0.384573 1.047093 0.189991 -0.158490 -0.156799 -0.102970 0.537026 1.219824 -0.337534 0.211443 0.315037 0.422148 -0.084051 -0.700796 -0.034773 -0.287380 -0.344136 0.563243 -0.094176 -0.117156 -0.036489 0.619942 -0.103298 -0.800262 0.254609 0.024407 0.242422 0.251526 0.051040 -0.010100 0.270706 -0.720519 0.522161 0.449750 0.428121 -0.384157 -0.410577 -0.050732 0.273393 0.129558 0.496803 -0.698676 0.197100 0.440264 0.618647 0.212970 0.259528 -0.451718 -0.489382 0.298903 -0.243709 -0.230578 -0.052512 0.255003 -0.506882 0.046376 -0.355036 -0.723311 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.130840 0.304566 0.176918 -0.554257 -0.770606 -0.067822 0.161080 -0.113038 -0.010394 -0.058515 0.409677 -0.589924 -0.404093 0.924583 -0.108847 -0.491040 -0.108927 -0.545088 -0.293764 0.177599 0.018607 0.404675 -0.064748 0.132946 0.083633 0.248714 -0.319678 0.297312 0.606195 -0.564715 -0.512470 0.012535 0.152362 0.568685 -0.068937 -0.300682 0.239914 1.074764 -0.469232 0.516500 -0.522479 -0.238371 0.403919 0.012160 -0.246460 -0.940369 -0.682183 0.516124 -0.379469 -0.224346 0.572580 0.215375 -0.291410 -0.121472 0.375810 0.690302 -1.188226 0.822312 0.317811 0.363832 0.201168 -0.095902 -0.114907 -0.031769 -0.067228 -0.401469 0.060717 -0.072040 -0.363771 -0.055396 -0.125778 -0.662865 1.077748 0.169602 -0.388078 0.241564 0.255241 -0.673775 0.629143 -0.816379 -0.583731 0.150824 0.111757 0.121765 0.757243 -0.156996 -0.084292 -0.903910 -0.098473 -0.850903 0.251461 -0.897464 0.141826 0.784879 -0.615305 0.114452 0.049201 -0.208877 0.676587 0.350927 0.666192 0.265186 0.448268 0.078868 0.229969 0.328356 -0.278718 -0.178978 -0.439795 -0.804571 -0.066547 0.109970 -1.192207 0.238436 0.058456 0.117581 0.245078 -0.057153 0.123113 0.284935 -0.317233 -0.144926 0.217773 -0.088817 0.239583 1.081521 -0.314805 0.057746 -0.565024 0.702778 0.019742 0.572365 -0.024651 0.154173 -0.208416 -1.071804 -0.720685 0.095896 0.181057 -0.303817 -0.569952 -0.818113 0.200409 -0.283286 -0.364765 0.355441 1.163190 -0.349783 -0.547323 0.926106 0.685873 0.300452 0.543528 -0.167126 1.126840 -0.331229 -0.062327 -0.068078 -0.310654 -0.281072 -0.011593 0.228067 -0.262078 -0.031630 0.000000 -1.247779 0.679121 0.079230 -0.340647 0.263562 0.043092 -0.357594 -0.709826 0.925376 0.387564 0.591624 0.171094 0.851105 -0.149250 -0.624949 0.528486 0.222894 0.233012 -0.562322 -0.453047 0.370469 0.332875 -0.407970 -0.137298 -0.162507 -0.082161 -0.551509 0.089738 0.104484 0.143815 0.091619 0.437574 0.042356 0.842168 -0.067783 0.403524 -0.928131 0.258238 0.249101 -0.256424 -0.938574 0.261864 -0.405708 -0.019623 0.355713 -0.274773 0.028500 -0.189125 -0.538985 0.111083 -0.319584 0.332692 0.093424 -0.479348 0.048356 -0.365194 0.402074 0.295254 0.452924 0.776245 0.556833 0.551338 0.113738 0.098390 0.136060 -0.043798 -0.066262 -0.110627 0.170122 0.403898 0.425219 0.350911 0.020215 0.508998 0.299458 -0.270583 0.619419 0.443705 1.033650 0.180975 -0.242628 -0.097193 -0.214090 0.543794 1.213996 -0.385872 -0.022223 0.343463 0.383694 -0.120472 -0.569097 -0.120149 -0.318820 -0.469998 0.572251 -0.239368 -0.184608 0.093898 0.639220 -0.212829 -0.823259 0.277712 -0.005672 0.285477 0.143122 0.097730 0.042644 0.366062 -0.767201 0.392413 0.443948 0.479995 -0.289535 -0.531793 -0.053683 0.330101 0.025234 0.481784 -0.891661 0.175642 0.512890 0.619727 0.207282 0.269221 -0.384010 -0.503451 0.291786 -0.027597 -0.233153 -0.150089 0.299148 -0.590148 -0.014470 -0.342678 -0.560197 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::~_Vector_base() = 0.964314 -1.081553 0.886112 -0.910511 -1.354691 0.870578 -1.572942 -0.617725 0.532290 0.173433 0.606867 -0.851159 -0.655842 1.552903 -0.072983 -1.714841 0.546420 0.069424 0.706869 -0.644546 0.271583 0.374054 0.122625 0.196669 -0.206095 -0.626453 -0.471111 0.679684 1.911455 -0.148185 -1.264152 -0.160536 -0.607026 1.699783 0.276371 -0.195597 0.495828 3.063081 0.552791 1.542976 -1.453071 -1.195991 0.908836 0.159983 -0.226046 0.048454 -1.180588 0.823654 -1.817112 -0.333142 1.273127 -0.237930 0.352112 0.022782 0.193137 1.013645 -2.567413 0.942449 -0.371346 0.072581 0.063016 -0.162722 -0.092612 1.039021 -0.750774 -0.979660 1.200037 1.245931 -1.330491 -0.013088 -0.373969 -1.831976 2.282608 0.773387 -1.124053 -0.056139 1.701481 -0.883666 1.375673 -0.352915 -2.232191 -0.122754 -0.723914 -1.497516 2.096796 -0.240519 1.610454 -2.842693 1.610262 -2.998210 1.528885 -1.738657 1.228049 1.926466 -2.346009 0.378870 1.127012 2.066227 1.591370 -0.170092 2.312570 1.030094 -0.327692 0.348596 1.628327 0.092332 -0.209254 -0.072897 -0.901337 -1.661210 -0.338687 -1.235252 -3.007895 0.398564 -0.628546 1.145047 0.094989 0.742218 -0.433803 0.798138 -2.405181 -0.732397 0.087622 -0.312978 1.131191 1.515071 -1.265896 0.593474 -0.406265 2.685728 -1.098188 -0.116010 -0.005004 0.584523 -0.373728 -0.424717 -2.539839 0.858954 1.372552 -1.397753 -2.256049 -1.879907 -0.295766 0.553042 -0.461795 3.297311 3.442604 -0.654849 -1.008544 1.757179 -0.577025 0.343874 2.853764 0.010406 2.591023 -1.332651 -0.012120 -1.171986 -0.156126 -0.466985 -1.070791 0.618631 0.291099 0.827079 0.448389 0.158650 2.270955 -0.845560 -1.023072 -1.240896 0.096496 -0.419607 -1.219542 2.067887 -0.610466 0.886055 0.788226 2.541309 -0.313856 -1.978067 1.193842 -0.925230 -0.285332 -0.260880 -0.354683 -0.487779 1.264989 -1.694526 -0.990742 -0.779597 -0.860622 -0.417899 0.367712 2.873695 0.787411 0.880107 0.755903 2.046498 2.373061 1.063930 0.092738 -2.403732 0.328254 1.544530 -1.255207 -0.409152 0.164916 -1.304027 0.395114 0.143741 -0.137497 0.845717 -1.889107 -1.577380 -1.412859 0.341512 1.420395 0.773271 -3.035022 0.495016 0.539226 0.619520 1.255176 1.399587 2.021413 1.497825 1.660014 -0.349427 0.511280 0.164625 0.195824 -0.042505 0.611870 1.229712 0.314566 1.346374 0.553573 0.349056 1.430233 1.219503 0.619998 1.427071 0.626050 2.731690 -0.169178 0.158050 -0.713906 -0.850252 1.629231 3.758063 -1.191117 1.057275 0.972477 1.025205 -0.280411 -2.518572 0.125641 -0.893000 0.262216 0.028019 -0.182362 0.266800 -0.985703 1.543588 0.664608 -2.850585 1.573797 0.009752 0.227101 2.030871 -0.291795 0.019909 -0.004670 -2.313160 1.521361 1.376707 0.817712 -1.172445 0.180497 -0.233375 1.122548 -0.213998 1.067186 -0.551857 1.401189 1.187191 1.657981 1.519723 0.040639 -1.531768 -1.554845 0.403155 -2.074243 -0.743403 0.446471 0.745945 -1.385951 0.561198 -1.018353 -1.815655 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy(int*, int*) = 0.143433 0.249664 0.198329 -0.422935 -0.622517 -0.045607 0.095298 -0.115631 -0.011887 0.033784 0.273125 -0.432351 -0.288321 0.758332 -0.163119 -0.383646 -0.138475 -0.429643 -0.229281 0.071967 0.022437 0.338623 -0.048055 0.107994 0.063051 0.140482 -0.209997 0.197072 0.361603 -0.426498 -0.347339 -0.022943 0.133254 0.459987 -0.055527 -0.170252 0.143727 0.852539 -0.299605 0.445149 -0.500069 -0.309944 0.303960 0.003673 -0.102095 -0.768525 -0.510458 0.396929 -0.227432 -0.147043 0.395363 0.176359 -0.271648 -0.106173 0.294712 0.459894 -0.941618 0.656136 0.214647 0.194444 0.100238 -0.073029 -0.086335 -0.022335 -0.050995 -0.315361 0.036411 0.056530 -0.317035 0.033351 -0.049559 -0.503807 0.828349 0.123678 -0.305443 0.196798 0.237333 -0.470155 0.506649 -0.722968 -0.465867 0.084126 0.111543 0.095600 0.550393 -0.040432 -0.009628 -0.736652 0.014586 -0.673641 0.234255 -0.684893 0.115743 0.598065 -0.444688 0.137970 0.089465 -0.098067 0.569074 0.300522 0.524874 0.257753 0.364390 0.109935 0.186506 0.261504 -0.214629 -0.157718 -0.359462 -0.653282 -0.040674 0.067190 -0.932346 0.163038 0.094175 0.134653 0.154491 -0.018938 0.124203 0.228144 -0.446331 -0.158520 0.213665 -0.067068 0.172718 0.746434 -0.246459 0.062358 -0.438056 0.558551 -0.039466 0.411103 0.017473 0.128993 -0.206469 -0.817918 -0.609348 0.079677 0.116053 -0.242738 -0.445676 -0.664787 0.111825 -0.093652 -0.286763 0.335782 0.945378 -0.281184 -0.468561 0.715343 0.539858 0.165684 0.442105 -0.082457 0.853184 -0.241789 -0.087015 -0.063846 -0.238301 -0.156835 -0.016227 0.194283 -0.213421 0.034552 0.029391 -0.980889 0.528653 -0.022980 -0.277744 0.122251 0.043314 -0.296224 -0.461570 0.684079 0.247252 0.515480 0.060173 0.681394 -0.157977 -0.490510 0.353442 -0.032136 0.165965 -0.404075 -0.267842 0.221703 0.308256 -0.397477 -0.128450 -0.094793 -0.172599 -0.410412 0.083688 -0.005426 0.126825 0.081692 0.335693 0.160441 0.661306 -0.029743 0.284963 -0.717513 0.197659 0.192492 -0.139473 -0.776942 0.193245 -0.309518 -0.016012 0.235432 -0.196444 0.013914 -0.125739 -0.370091 0.047864 -0.299809 0.233674 0.056060 -0.258333 0.011203 -0.296209 0.389727 0.183991 0.350936 0.656680 0.445940 0.438450 0.103017 0.081540 0.022606 0.039127 0.000434 -0.009983 0.079774 0.304998 0.377646 0.283861 0.026669 0.440086 0.279864 -0.195467 0.503222 0.276867 0.845545 -0.006192 -0.147239 -0.113150 -0.103252 0.432920 0.972846 -0.307931 0.011787 0.274212 0.270169 -0.084187 -0.386534 -0.095884 -0.241870 -0.358232 0.447405 -0.086246 -0.159765 0.081093 0.504723 -0.131606 -0.646784 0.246658 0.004808 0.213481 0.112682 0.059212 0.011409 0.320503 -0.555083 0.265200 0.352791 0.374708 -0.297625 -0.456639 -0.045475 0.295685 0.065162 0.408232 -0.702344 0.162529 0.437450 0.487196 0.082613 0.214596 -0.336377 -0.434961 0.251858 -0.031948 -0.224746 -0.022880 0.229958 -0.425341 -0.001576 -0.248382 -0.479202 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.040960 0.098797 0.002657 -0.308366 -0.263902 -0.064282 0.276041 0.040273 -0.030156 -0.288176 0.238729 -0.265126 -0.337821 0.406601 0.130530 -0.290449 0.063373 -0.400473 -0.218647 0.304080 -0.036737 0.168289 -0.026223 0.036103 0.114582 0.261338 -0.248358 0.205796 0.352757 -0.472909 -0.338821 0.046305 0.066494 0.282645 -0.076961 -0.130993 0.158785 0.567943 -0.227442 0.316294 -0.136234 0.043435 0.257854 -0.054580 -0.275425 -0.492748 -0.310954 0.326497 -0.219622 -0.262052 0.352464 0.138767 -0.199785 -0.127846 0.176730 0.531354 -0.632966 0.393407 0.242560 0.357720 0.163130 -0.063365 -0.108648 -0.157736 0.033095 -0.228382 0.019576 -0.294554 -0.230141 -0.094761 -0.147217 -0.321743 0.690996 0.148853 -0.135880 0.177162 0.070000 -0.340733 0.305861 -0.341963 -0.256538 0.083247 0.028203 0.161837 0.501341 -0.197814 -0.212430 -0.432827 -0.181840 -0.410936 0.079957 -0.540815 0.060558 0.441542 -0.273749 0.076181 -0.046263 -0.293089 0.144631 0.183541 0.357303 0.016076 0.196707 -0.014171 0.134735 0.047487 -0.180548 -0.120139 -0.207074 -0.363694 -0.005872 0.122587 -0.575151 0.169986 -0.016204 0.092033 0.224778 0.046828 0.075674 -0.036992 0.066492 0.081830 0.103844 -0.061473 0.172965 0.708838 -0.159744 -0.073115 -0.352144 0.335768 0.111303 0.415837 -0.078244 0.083132 0.089891 -0.586348 -0.178641 -0.056366 0.096496 -0.132949 -0.296670 -0.374451 0.189705 -0.254533 -0.233486 0.093611 0.566733 -0.168989 -0.172798 0.502494 0.447365 0.380781 0.138757 -0.125631 0.587096 -0.179873 -0.010216 0.086324 -0.149317 -0.178171 -0.150315 0.086805 -0.175614 -0.089053 -0.038649 -0.703251 0.471244 0.150621 -0.122666 0.462911 -0.065908 -0.195283 -0.576811 0.523653 0.460850 0.313407 0.259501 0.430443 0.011118 -0.239924 0.349267 0.503986 0.160926 -0.440760 -0.380791 0.254843 0.019038 -0.152995 -0.060908 -0.112202 0.103128 -0.315116 0.066903 0.150031 0.043810 -0.003949 0.236609 -0.227965 0.376201 -0.142445 0.242553 -0.542945 0.150896 0.035023 -0.191563 -0.362616 0.183293 -0.148437 -0.027274 0.363916 -0.159831 -0.019312 -0.047651 -0.333107 0.221476 -0.087421 0.121874 0.041701 -0.281836 -0.079537 -0.056806 0.044756 0.234839 0.265264 0.356632 0.224727 0.198225 0.066218 0.022761 0.283347 -0.258199 -0.208292 -0.334357 0.310888 0.238660 -0.009495 0.202967 -0.023041 0.240322 0.083315 -0.160498 0.317553 0.442963 0.477848 0.353935 -0.297603 0.098308 -0.215240 0.291361 0.455344 -0.320616 -0.001093 0.210326 0.256823 -0.089234 -0.281063 -0.080791 -0.178373 -0.343510 0.401657 -0.300489 -0.052577 0.070756 0.355659 -0.227301 -0.455496 0.059701 0.004445 0.209628 0.063701 0.134678 0.127212 0.196494 -0.437903 0.173740 0.163921 0.293780 -0.064304 -0.176729 -0.010235 0.080771 -0.134548 0.212297 -0.379821 -0.052260 0.149660 0.326338 0.198556 0.017819 -0.088604 -0.152872 0.086263 0.041746 -0.030303 -0.191794 0.163195 -0.259520 -0.166190 -0.299513 -0.134577 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.336669 0.300755 0.508083 -0.848476 -0.873105 0.185249 0.175700 -0.299574 0.179610 0.687586 0.447323 -0.435047 -0.615163 1.068526 -0.195672 -0.766812 0.047871 -0.841689 -0.129200 -0.008157 0.005560 0.540768 -0.119397 0.076865 0.183325 -0.023755 -0.233418 0.446977 0.417351 -0.541243 -0.669315 -0.092603 -0.080074 1.016441 -0.071995 -0.180953 0.228276 1.584036 -0.682443 0.920528 -1.064849 -0.914899 0.675322 0.058593 -0.207504 -0.926990 -0.365003 0.582650 -0.332110 -0.427222 0.745432 0.018882 -0.084659 -0.233616 0.428010 0.804760 -1.680970 0.710519 0.195807 0.118273 -0.119416 -0.206708 0.177852 0.242160 -0.345279 -0.607143 0.363693 0.125512 -0.652380 0.040847 -0.211362 -1.107774 1.226106 0.436897 -0.578009 0.299979 0.471527 -1.023713 0.882167 -0.997768 -0.927042 -0.013094 0.142541 -0.366215 1.000633 -0.035445 0.436013 -1.512043 0.282517 -1.312461 0.645703 -1.028377 0.561878 1.124196 -0.619958 0.279161 0.354639 0.426444 0.799889 -0.042603 1.123659 0.493333 0.665440 0.183973 0.484182 0.543346 -0.692994 -0.415069 -0.782460 -1.089246 0.003789 -0.171704 -1.506348 0.205503 -0.151135 0.146963 0.450963 -0.160291 -0.102649 0.799928 -1.322550 -0.425705 0.275536 -0.151242 0.515723 1.214619 -0.325420 0.166950 -0.319383 1.180205 -0.325612 0.485849 -0.153449 0.340704 -0.410844 -0.643055 -0.922459 0.131123 0.355944 -0.687879 -0.992292 -1.338385 -0.045357 0.161786 -0.367059 1.153419 1.927900 -0.530623 -0.953456 1.161337 0.290013 0.159014 0.949165 -0.046619 1.391000 -0.743206 0.074795 -0.443513 -0.074301 -0.127431 0.691128 0.318228 -0.240722 0.275412 0.042565 -0.809378 0.835663 -0.069825 -0.411179 -0.132797 0.095471 -0.600032 -0.772035 1.185839 -0.146773 0.955642 0.097746 1.439420 -0.571864 -0.897045 0.612116 -0.496091 0.072531 -0.934174 -0.587830 0.296170 0.653911 -0.791337 -0.353001 -0.451542 -0.327045 -0.485255 0.269858 -0.159345 0.287269 0.052696 0.305380 0.906569 1.219217 0.111810 0.175948 -1.245653 0.340075 0.447624 -0.396343 -1.031407 0.143875 -0.678551 -0.035812 0.556728 -0.286583 0.347323 -0.522108 -0.711099 0.018981 -0.308111 0.346847 0.015011 -1.370163 0.137015 -0.266732 0.492361 0.453029 0.767203 1.113531 0.922577 0.744111 -0.071626 0.198443 -0.062961 -0.242888 0.001999 0.087199 0.374113 0.535339 0.901873 0.469382 0.161073 0.847281 0.618976 -0.142133 0.965913 0.238701 1.525494 -0.120409 -0.158483 -0.130033 -0.316797 0.729448 1.677472 -0.589273 0.143909 0.575413 0.552068 -0.295890 -0.728345 -0.027743 -0.611026 -0.181541 0.532594 0.102514 -0.265566 -0.172046 1.197326 -0.020538 -1.515633 0.556466 -0.054314 0.407102 0.591009 -0.069267 0.083833 0.448483 -1.038364 0.820785 0.629560 0.724576 -0.688704 -0.331217 -0.046756 0.649077 0.051362 0.512768 -1.374585 0.211335 0.512512 1.034196 0.545031 0.867900 -0.657228 -0.454176 0.294550 -0.463068 -0.356190 -0.000123 0.597825 -0.664063 0.172176 -0.981753 -0.547919 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 2.053344 0.671622 4.054183 -4.171438 -7.509161 3.243585 -5.051082 -4.353346 1.270610 1.043292 3.869509 -2.918350 -0.223305 5.752071 -2.358999 -4.554794 -1.895294 -1.462380 -0.063227 -3.307800 0.682044 1.456048 -1.606928 1.592834 -2.137936 -2.204957 0.294806 2.108158 3.621852 -0.528997 -4.335369 -1.106459 -1.462642 6.205431 2.369240 -1.615238 2.336291 9.712977 -1.109710 1.844252 -4.850489 -5.409369 1.771566 0.880014 -1.151281 -2.012025 -5.135563 2.505605 -4.447233 1.163150 5.534630 -0.953062 1.080884 1.628763 2.400317 1.852414 -8.212047 4.150048 0.228512 -0.886042 -0.528942 -1.159941 0.879555 3.870781 -2.160058 -2.638096 4.696767 5.809091 -1.260226 -0.274315 -0.211488 -8.879417 8.418863 1.733372 -3.377690 -0.426536 5.049455 -5.487480 5.622315 -1.132441 -7.925820 0.503018 -0.651203 -5.240176 6.626038 -0.824295 4.185948 -8.828532 3.617586 -10.018029 3.197033 -4.822374 2.815516 5.212336 -7.584722 -0.235936 4.150435 6.481284 6.375065 -0.781835 6.170481 2.780646 0.802450 1.967117 4.852597 1.898636 -1.290424 -0.445459 -5.036044 -7.888665 -0.642613 -3.438639 -11.202833 1.680756 -0.568535 0.073604 -2.106627 0.137753 -0.381347 6.275310 -6.846855 -2.278989 0.873811 -0.715675 2.445627 5.861787 -3.559130 3.703399 -1.286616 7.353867 -4.229609 0.709834 -0.655768 1.458437 -1.871968 -3.152274 -11.316420 4.294107 4.994730 -4.173920 -6.350686 -5.395821 -1.287617 1.732856 -1.404397 9.099206 11.661161 -4.145251 -6.295045 6.540358 2.331762 -1.241063 9.421061 0.492411 9.026714 -3.674550 -0.309151 -5.284244 -2.535692 -2.502070 -3.307672 2.299752 1.487572 3.588233 1.784939 -1.539266 9.405949 -2.957625 -5.016595 -1.472856 2.419230 -2.203837 -3.783560 6.835477 1.646669 3.535022 3.534417 8.539138 -3.593396 -6.355500 2.399310 -2.809643 0.164587 -1.739045 -1.504094 -0.177040 6.127105 -3.402652 -2.450141 -2.209702 -3.571050 -2.302138 0.517302 7.739575 3.181476 2.795751 2.682852 3.614825 11.312290 4.008767 0.300746 -6.728669 2.025643 5.422556 -2.766361 -3.622473 -0.495942 -4.919289 0.789871 -0.655410 -0.798122 3.562643 -5.291388 -3.697488 -4.305311 -0.689504 4.671785 3.310524 -10.014541 2.746086 -2.399294 3.981988 2.721276 3.311588 7.779744 7.562327 8.300883 -1.076032 1.925583 -0.643811 2.441314 -0.241463 3.998106 3.499537 2.308299 7.602239 2.309125 1.783814 4.340940 4.670205 2.444351 5.291541 0.187373 11.075138 -1.667289 2.102434 -4.585983 -0.237019 5.109307 13.991453 -1.795470 2.954604 2.109232 4.264932 -1.416784 -9.344064 0.632441 -2.597249 1.557556 0.147795 2.187829 -0.573299 -2.841126 6.151166 1.809324 -7.797741 3.369578 0.054283 1.027205 5.246363 -1.640509 -0.918602 0.595584 -6.591346 6.663999 5.568987 3.264150 -5.017618 -1.196968 -0.325650 4.821524 -1.768142 4.146050 -4.679818 6.268487 4.272573 5.131197 3.162593 2.848824 -6.918946 -4.561810 3.689185 -5.190523 -2.077583 3.503818 4.189397 -6.551824 3.710301 -3.167543 -7.845228 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 0.973518 1.003147 0.721979 -1.267448 -1.056330 0.384677 -0.341606 -1.080914 0.336308 2.135735 0.856351 -1.036233 -2.055147 1.044461 -1.094360 -2.102940 0.383487 -0.339592 -0.142161 -1.330743 0.137842 0.491835 0.166414 -0.926841 0.530395 -0.717146 0.214908 0.821409 2.072261 -0.621305 -1.236503 0.168044 0.584416 2.155732 -0.128654 -0.118529 0.022467 2.070242 -0.009837 0.621119 -3.392598 -2.149949 2.113387 0.505718 -0.040033 -2.357731 0.010817 0.800725 -2.085231 -0.085594 0.106721 -0.928910 0.230258 -1.273569 -0.115653 2.481820 -3.438862 2.364397 -0.114695 -0.511144 -0.955599 -0.147261 1.532182 0.582470 0.687211 -1.514564 0.563260 0.907755 -2.373602 0.730155 -1.155973 -1.979810 2.206666 0.269466 -1.310432 0.281975 -0.500780 -1.289303 0.884468 -2.173760 -0.855594 -0.611225 1.658875 0.800538 0.614565 0.865782 0.942049 -3.409827 -0.514696 -2.416864 1.987607 -1.012981 2.388813 1.225092 -1.579922 0.710555 0.325198 -0.873241 1.109956 0.110779 2.325245 0.197829 1.756954 -0.719384 0.229710 0.847872 -0.918872 -0.932271 -0.247260 -1.651310 -0.513530 0.280321 -3.298444 -0.118395 -2.312752 1.213646 1.104028 -0.981829 -0.029426 1.068022 -3.166208 -2.461319 0.138672 -0.292695 2.408675 1.953825 0.190774 0.812840 0.314123 2.249293 -0.134793 -0.563696 -0.598252 0.814239 -0.026609 -2.947383 -2.243451 0.193981 0.961608 -1.633075 -2.299212 -2.053428 -0.711494 -0.163552 -0.388553 1.709041 3.249704 -0.315151 -2.452211 1.360406 -1.399871 0.437110 3.197632 0.048097 3.661036 -2.974855 1.708623 -0.207277 1.187392 0.962947 1.496342 -0.791932 -1.159788 0.323746 0.308315 -0.272855 -1.286902 -0.253677 0.156230 -0.861481 -0.017518 -0.669063 -0.796999 1.464537 -0.802083 2.516664 -0.774849 3.123518 -2.787713 -3.062346 1.064230 -1.535475 -0.786014 0.210728 -0.700557 0.071328 1.837358 -2.183997 -0.964735 -0.714831 -0.325051 -0.063232 1.808189 0.337257 0.072541 -0.554931 -0.727853 2.525360 1.198069 -0.620341 0.535907 -2.083235 0.077908 1.845697 0.254103 -3.015313 0.066450 -1.937333 -0.109664 1.553263 -0.608177 1.148528 -0.121520 -1.257501 -0.026336 -0.878901 1.254345 -1.029532 -1.090712 0.753361 -1.206579 -0.321627 -0.045670 2.573622 1.838725 1.143311 0.071446 -0.831311 1.037935 -1.891230 0.877756 0.338519 0.645503 0.462649 0.838654 1.459384 0.106671 0.364131 1.792311 0.587011 -0.798172 1.916249 0.267966 2.460546 -2.311985 0.580271 -0.282071 -1.643719 1.353739 3.370959 -1.691073 -0.952007 0.967810 0.944461 0.450212 -2.361215 -0.666143 -1.073275 -1.011326 1.654826 1.049817 -0.399570 -1.101899 3.053659 0.847754 -3.028166 3.041466 -0.247545 0.104218 0.475220 -1.401897 -0.767721 1.292972 -1.407090 -0.313999 0.832951 1.857654 -1.673324 -0.800619 -0.560277 2.241991 -0.184135 -0.346556 -2.624922 -0.069305 1.885127 2.915074 1.777371 1.801953 -1.142347 -1.044794 -0.666569 -0.582578 -0.490107 -0.447565 0.788631 -1.274435 -0.021589 -1.323551 0.066580 +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.602555 0.102768 0.241850 -0.211948 -0.772431 0.135949 -0.045776 -0.716911 0.054818 0.373791 0.405710 -0.620612 -0.349183 0.765030 -0.121744 -0.360437 0.094677 -0.409695 0.019443 -0.431473 0.033865 0.315640 -0.121496 0.087745 -0.143104 0.044001 -0.199083 0.165537 0.314913 -0.340810 -0.591997 -0.205216 0.280010 0.858191 0.292510 -0.074371 -0.216494 1.176581 -0.169290 0.671672 -1.417426 -0.573200 0.449250 -0.009780 0.054868 -1.085217 -0.526511 0.615992 -0.046883 -0.313726 0.331531 -0.057985 -0.106659 -0.032502 0.072384 0.815693 -1.066752 0.825998 0.148106 -0.371869 -0.110395 -0.079192 -0.004737 0.429495 -0.398932 -0.637908 0.374257 0.394806 -0.435816 0.415940 -0.435828 -1.191520 0.702645 0.162693 -0.737349 -0.198724 0.122437 -0.429566 0.703954 -0.415760 -0.685809 -0.072068 0.050085 0.235156 0.293175 0.160327 0.451931 -1.403708 0.042633 -1.437732 0.616262 -0.816121 0.664885 0.563270 -0.799719 0.064584 0.250472 0.122281 1.119152 0.061020 0.767535 0.427693 0.428520 -0.068475 0.673671 0.426937 0.077915 -0.197186 -0.286199 -0.841994 0.201290 0.087413 -1.160225 0.254397 -0.485556 0.182619 -0.117121 0.174079 0.204623 0.596990 -1.045940 -0.699904 0.398658 -0.126630 0.738824 1.023474 -0.538857 0.483238 -0.555476 0.873802 -0.056945 0.407036 -0.134473 0.328948 -0.384357 -1.441301 -1.395098 0.304800 0.627146 -0.858402 -0.929599 -1.180689 0.050815 0.044039 -0.527618 0.641099 1.493251 -0.636557 -0.629564 0.766010 0.479059 -0.328023 0.986054 -0.145103 1.790205 -0.888034 0.387012 -0.110461 -0.052989 -0.086650 0.415925 0.015858 -0.387444 0.102081 0.195348 -1.397892 0.781287 -0.186207 -0.535719 0.232419 -0.076920 0.311820 -0.430754 0.705970 -0.022068 0.507922 -0.303071 0.798054 -0.505647 -0.796266 0.552629 -0.326721 -0.164968 0.240917 -0.167619 0.080998 1.001194 -0.821125 -0.216583 -0.119833 -0.822184 -0.272892 0.369231 0.440919 0.099446 0.248133 0.315986 0.619560 1.057129 0.243796 0.308318 -0.941568 0.341047 0.747838 0.148881 -0.912120 -0.163582 -1.004449 -0.065927 -0.242951 -0.167908 0.474820 -0.373657 -0.429401 -0.134486 -0.375143 0.544311 0.219798 -0.298192 0.344358 -0.322285 0.456832 0.083348 0.911392 0.594762 0.790761 0.793773 -0.385465 0.173743 -0.478640 -0.004900 0.337681 0.319424 0.062634 0.359245 0.353574 0.324395 0.043120 0.869610 -0.071370 0.249296 0.906778 0.270021 1.242053 -0.719126 0.486715 -0.213559 -0.523493 0.752235 1.810789 -0.234518 -0.256408 0.311345 0.027559 -0.465838 -0.679427 -0.261336 -0.214435 -0.457282 0.499212 0.198097 -0.074939 -0.449210 1.150694 0.117588 -1.267671 0.752232 0.014457 -0.032659 0.745199 -0.247670 0.069179 0.309300 -0.531420 0.266994 0.698383 0.787473 -0.649094 -0.955367 -0.245074 0.480208 0.348374 0.259493 -1.326943 0.429698 0.933547 1.116474 0.269972 0.183594 -0.948891 -0.356962 0.317438 -0.324212 -0.241523 0.302844 0.711106 -0.639654 -0.003155 -0.631298 -0.193778 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.407060 0.160086 0.582913 -0.649001 -0.446631 0.342314 0.130682 -0.298388 0.273687 0.780558 0.289403 -0.075110 -0.737697 0.734721 -0.255117 -0.679225 0.360877 -0.837777 0.128837 -0.111563 0.019276 0.346198 -0.055017 -0.032464 0.196675 -0.174124 -0.104621 0.387155 0.198782 -0.357247 -0.725253 -0.036269 -0.243764 0.923769 -0.026832 -0.089903 0.272214 1.337054 -0.535960 0.931055 -1.070586 -0.919986 0.499421 0.053274 -0.078054 -0.654828 -0.026712 0.307547 -0.542217 -0.212858 0.653985 -0.253698 0.039607 -0.153886 0.391060 0.747469 -1.588323 0.552705 -0.015448 0.179157 -0.081699 -0.249554 0.259344 0.200835 -0.042482 -0.426103 0.532610 0.226175 -0.794773 0.214713 -0.277969 -0.903412 0.799790 0.425363 -0.487763 0.178743 0.543892 -0.856970 0.660164 -1.068204 -0.779105 -0.078678 0.134844 -0.346551 0.924452 0.070824 0.434054 -1.372439 0.276379 -1.080705 0.713064 -0.825333 0.654223 0.904072 -0.425178 0.242882 0.408879 0.431523 0.433946 -0.213779 1.023447 0.473801 0.471107 0.013915 0.481509 0.337399 -0.628976 -0.360780 -0.601635 -0.668848 -0.147394 -0.220164 -1.093935 0.000293 -0.359274 0.351641 0.437564 -0.115604 -0.258559 0.533206 -1.426314 -0.491372 0.065405 -0.132017 0.683279 0.884139 -0.231273 0.242329 -0.027542 1.173629 -0.392082 0.211208 -0.308786 0.276431 -0.205019 -0.447926 -0.845998 -0.007148 0.398044 -0.649144 -0.977545 -1.118238 -0.210609 0.236551 -0.077568 1.287105 1.636193 -0.281252 -0.766785 0.899490 -0.238584 0.245451 1.046966 0.052700 0.957761 -0.778466 0.269438 -0.455629 0.249418 -0.145966 0.610749 0.187453 -0.073125 0.239811 0.214566 -0.094498 0.339454 -0.102786 -0.272154 -0.424722 -0.055919 -0.521849 -0.530481 0.962361 -0.407526 0.762371 0.079539 1.300785 -0.674978 -0.900183 0.407132 -0.641029 0.097924 -0.683540 -0.504146 0.125101 0.533356 -0.872203 -0.426600 -0.481011 -0.168268 -0.149612 0.261348 -0.050177 0.226069 -0.033132 0.103604 1.174903 0.971323 0.116711 0.110851 -1.003592 0.183690 0.403320 -0.343918 -0.842803 0.243761 -0.538061 0.011761 0.585815 -0.170153 0.307630 -0.510295 -0.754913 -0.035234 -0.216232 0.331530 -0.014911 -1.300657 0.079509 -0.034510 0.063425 0.456607 0.565005 0.894414 0.658908 0.524541 -0.312575 0.242299 -0.157014 -0.116525 -0.042938 0.193912 0.376873 0.261444 0.732532 0.282225 0.045845 0.528887 0.622972 -0.100794 0.763516 0.240940 1.112850 -0.245698 0.002423 -0.119374 -0.493408 0.596321 1.200462 -0.725661 0.265356 0.484826 0.524871 -0.078218 -0.649092 -0.030992 -0.677823 -0.036401 0.410417 0.165358 -0.249336 -0.316845 1.063303 0.148244 -1.308463 0.546023 -0.036030 0.229937 0.594614 -0.136679 -0.102880 0.328025 -1.004763 0.760582 0.310126 0.629620 -0.476448 -0.138861 -0.103904 0.545006 -0.040145 0.256799 -1.027456 -0.006661 0.385183 0.962268 0.812839 0.766614 -0.448968 -0.332880 -0.028542 -0.655659 -0.324390 0.021248 0.670846 -0.492718 0.150893 -0.862557 -0.370906 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.326511 0.486611 0.273236 -0.892046 -1.351133 0.128177 -0.008309 -0.384247 0.040621 0.177988 0.771897 -0.873942 -0.365803 1.528263 -0.246465 -0.605143 -0.146631 -0.845585 -0.280384 0.320116 0.084501 0.620785 -0.198262 0.277198 -0.125442 0.400869 -0.430407 0.282079 0.802307 -0.646255 -1.067934 -0.039191 0.063096 0.849098 0.135494 -0.634925 0.379419 1.586788 -0.951664 0.849427 -0.863086 -0.348430 0.342123 0.104630 -0.228262 -1.360986 -1.112514 0.732055 -0.300172 -0.395835 1.084041 0.122889 -0.230634 0.113268 0.632477 0.838763 -1.641209 1.121440 0.482625 0.614788 0.481188 -0.167890 0.001365 0.278808 -0.311074 -0.553630 0.260104 0.103644 -0.336251 -0.236218 -0.290170 -1.292192 1.403392 0.309801 -0.761555 0.090566 0.444416 -1.314851 1.014026 -1.266908 -1.100625 0.382905 -0.075449 -0.037348 1.133290 -0.244737 0.089064 -1.376970 0.086193 -1.470520 0.342626 -1.249076 0.196708 1.175381 -0.913786 -0.195291 0.210479 0.124425 1.401864 0.463017 0.961141 0.604295 0.544816 0.029393 0.459830 0.675021 -0.420738 -0.130225 -0.684012 -1.305346 -0.125135 0.124679 -1.800779 0.394501 0.160050 0.055082 0.160977 -0.158795 0.114643 0.662184 -0.565405 -0.417700 0.182621 -0.099204 0.399742 1.681369 -0.553707 0.326017 -0.813729 1.093678 -0.109227 0.803206 -0.039372 0.198042 -0.688638 -1.447524 -1.312629 0.446208 0.494738 -0.558667 -0.892541 -1.439420 0.338372 -0.429825 -0.527614 0.705747 1.737934 -0.669000 -0.843602 1.369620 0.999217 0.057984 1.027159 -0.352270 1.753554 -0.537798 -0.015819 -0.224608 -0.547704 -0.776465 0.149216 0.405242 -0.197330 -0.033474 -0.087138 -1.976223 1.085321 0.207843 -0.714230 0.195537 0.146920 -0.451138 -0.936411 1.369597 0.206407 0.550892 0.320571 1.253243 -0.242879 -0.827620 0.804187 0.165981 0.359075 -0.771678 -0.711835 0.629794 0.729808 -0.553958 -0.111792 -0.204606 -0.201784 -0.867556 0.047338 0.092424 0.253400 0.329390 0.678133 0.237447 1.511997 0.166930 0.602847 -1.201881 0.452428 0.458736 -0.586656 -1.352764 0.208370 -0.892142 0.049215 0.331747 -0.433611 0.160135 -0.540061 -0.927549 0.010135 -0.467386 0.694673 0.365833 -0.866195 0.209266 -0.654590 0.790768 0.456913 0.635737 0.924481 1.158037 1.164207 -0.006153 0.160109 0.216380 -0.018800 -0.036376 0.098703 0.065359 0.596915 0.798576 0.467244 0.076998 0.698434 0.422231 -0.212813 0.915277 0.458005 1.514857 0.313252 -0.150873 -0.312572 -0.359553 0.798171 2.040927 -0.513320 0.080706 0.362631 0.418209 -0.319506 -0.737943 0.020895 -0.500794 -0.611954 0.539269 -0.173475 -0.079900 -0.090875 0.939080 -0.266973 -1.231443 0.340214 -0.073293 0.422583 0.597872 0.101007 0.182397 0.225718 -1.140507 0.957094 0.887728 0.718763 -0.363895 -0.895565 -0.086336 0.433005 0.162266 0.716591 -1.386082 0.560895 0.848646 0.934611 0.340140 0.514039 -0.824673 -0.657700 0.561739 -0.190173 -0.312354 -0.248349 0.662248 -0.913273 0.087260 -0.501146 -0.901910 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.093221 -0.044220 0.135184 -0.258447 -0.262661 0.079369 0.005624 -0.077334 0.034535 -0.147022 0.148534 -0.149125 -0.135710 0.438804 -0.000254 -0.272402 0.001352 -0.161159 -0.082067 0.177753 0.009493 0.137240 -0.060067 0.067451 0.002308 0.063687 -0.069603 0.111639 0.115606 -0.197537 -0.304987 -0.051206 -0.049445 0.305990 0.025707 0.058103 0.105635 0.555965 -0.066983 0.498760 -0.226181 -0.172430 0.104619 -0.018431 -0.077586 -0.289119 -0.291930 0.200602 -0.162083 -0.174416 0.322632 0.042681 -0.125432 -0.011324 0.215217 0.223083 -0.485371 0.211236 0.102585 0.166925 0.095639 -0.095914 -0.087074 -0.007770 -0.140929 -0.155861 0.094967 0.075282 -0.189809 0.002258 -0.062520 -0.381559 0.599238 0.177205 -0.210368 0.080938 0.259082 -0.280657 0.290821 -0.271584 -0.363809 0.035141 -0.062414 -0.052956 0.453453 -0.045164 0.083260 -0.453250 0.150257 -0.472887 0.165258 -0.439009 0.092918 0.409530 -0.275096 0.063235 0.147969 0.191971 0.222334 0.145838 0.314364 0.197404 0.010877 0.032742 0.267323 0.035971 -0.151404 -0.141972 -0.230882 -0.368309 -0.016435 -0.094083 -0.595766 0.070766 0.060544 0.230731 0.006657 0.163102 0.028348 0.022243 -0.361686 0.027743 0.092928 -0.053952 0.158743 0.416405 -0.189159 0.052819 -0.232660 0.370167 -0.108666 0.187454 -0.063736 0.076659 -0.110262 -0.197264 -0.327469 0.052479 0.156003 -0.141620 -0.333302 -0.397950 0.000000 0.152158 -0.132397 0.359524 0.582706 -0.180701 -0.192813 0.399189 0.263921 0.159153 0.274826 0.003419 0.413258 -0.145272 -0.032345 -0.096502 -0.116440 -0.176220 -0.184195 0.140377 -0.080916 0.108078 -0.024585 -0.488335 0.611662 -0.064795 -0.193633 0.023311 -0.023756 -0.196064 -0.303022 0.482354 0.030659 0.255615 0.107827 0.436551 -0.076147 -0.188792 0.179038 -0.049356 0.091526 -0.352775 -0.163522 0.046986 0.200346 -0.308128 -0.128275 -0.039067 -0.120677 -0.174447 0.043119 0.146052 0.039998 0.068144 0.205300 0.195073 0.445911 0.067244 0.077197 -0.410408 0.134772 0.075394 -0.229074 -0.222620 0.121168 -0.166602 0.002110 0.079160 -0.058722 -0.009786 -0.221752 -0.262615 -0.050293 -0.093015 0.151765 0.112153 -0.334922 -0.056210 0.024890 0.177328 0.231568 0.167122 0.405970 0.305785 0.326113 -0.001938 0.048401 0.124947 -0.135220 -0.045146 -0.026823 0.212688 0.130960 0.182399 0.162521 -0.006703 0.208943 0.215876 0.067226 0.272769 0.270820 0.497256 0.201576 -0.128967 -0.025406 -0.100076 0.272384 0.543201 -0.306590 0.245438 0.172136 0.197487 -0.099815 -0.226811 -0.013890 -0.155424 -0.217538 0.216669 -0.104544 -0.010653 -0.028143 0.321628 -0.072311 -0.427697 0.022425 0.010697 0.146027 0.253635 0.050096 0.103676 0.104713 -0.340856 0.312333 0.172951 0.209016 -0.159650 -0.126141 -0.024034 0.060329 0.066686 0.224560 -0.160508 0.139826 0.161883 0.325751 0.138724 0.022190 -0.192353 -0.133845 0.111246 -0.184217 -0.095489 -0.028021 0.187602 -0.121528 -0.075755 -0.295918 -0.357322 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.092269 0.093212 0.335854 -0.573039 -0.731795 0.055472 0.141578 -0.198937 0.055516 -0.029141 0.411658 -0.437137 -0.223122 0.950162 -0.081220 -0.426361 -0.041325 -0.332002 -0.182430 0.184327 0.072263 0.379587 -0.111898 0.137716 0.007450 0.096358 -0.159312 0.355053 0.293113 -0.288108 -0.483178 -0.103444 0.001259 0.606293 0.034091 -0.092303 0.155517 1.102676 -0.581544 0.852532 -0.542988 -0.337953 0.356737 0.004183 -0.170329 -0.847456 -0.778630 0.413690 -0.233045 -0.340463 0.617509 0.123721 -0.075113 -0.046632 0.411584 0.495096 -0.980795 0.405282 0.263549 0.134765 0.146681 -0.124426 -0.156866 0.106491 -0.408924 -0.341142 0.150459 0.066128 -0.192477 -0.046517 -0.082950 -0.788948 1.050394 0.222444 -0.407200 0.173049 0.450168 -0.769496 0.660998 -0.493458 -0.707919 0.073184 -0.089753 -0.176878 0.768635 -0.165063 0.231925 -0.934595 0.110818 -0.945053 0.334265 -0.866259 0.144944 0.786414 -0.575287 0.135237 0.245927 0.294921 0.615983 0.257103 0.610530 0.464675 0.304978 0.123232 0.502422 0.333947 -0.354837 -0.321380 -0.598278 -0.797795 0.045027 -0.205673 -1.240489 0.188162 0.157027 0.063449 0.046306 0.021481 0.092132 0.509033 -0.487524 0.177949 0.295753 -0.102819 0.107159 0.931232 -0.341234 0.089259 -0.466336 0.707377 -0.222609 0.526514 -0.042644 0.203419 -0.402277 -0.647863 -0.619676 0.170934 0.215537 -0.329442 -0.602658 -0.882359 0.070834 0.149660 -0.289628 0.450076 1.201113 -0.424203 -0.563825 0.817178 0.741951 0.081941 0.466041 -0.029625 0.966302 -0.290038 -0.125855 -0.345579 -0.342403 -0.269748 0.228399 0.293982 -0.193498 0.225886 -0.090215 -1.350226 1.218865 -0.106717 -0.401034 0.127873 0.091190 -0.385484 -0.583071 0.968671 0.077482 0.540254 0.036209 0.855863 -0.163575 -0.470380 0.364585 -0.111268 0.166820 -0.715508 -0.309518 0.291286 0.454315 -0.440655 -0.221750 -0.228696 -0.279998 -0.398591 0.094205 -0.109810 0.133925 0.158692 0.395145 0.241522 0.903525 0.140254 0.198795 -0.792584 0.301750 0.237474 -0.309693 -0.791464 0.168170 -0.401752 -0.011844 0.009365 -0.150449 0.116833 -0.411398 -0.472039 -0.036762 -0.319619 0.200579 0.169712 -0.834702 0.043113 -0.159427 0.524574 0.339818 0.378455 0.848242 0.672350 0.659593 0.101827 0.067516 0.129307 -0.280554 0.053010 0.056256 0.139219 0.323140 0.600791 0.355699 0.056266 0.498925 0.400044 0.097085 0.582474 0.391318 1.012315 0.335475 -0.215715 -0.083100 -0.087842 0.551130 1.198670 -0.138573 0.223565 0.318380 0.346845 -0.285625 -0.519008 -0.011409 -0.279793 -0.344066 0.549243 -0.068939 -0.128772 -0.022332 0.659277 -0.124814 -0.901348 0.114986 0.010223 0.319744 0.428122 0.069192 0.191841 0.255379 -0.592303 0.674258 0.433464 0.421383 -0.396581 -0.476209 -0.020866 0.183349 0.355342 0.500427 -0.912321 0.301427 0.358622 0.647889 0.096663 0.431424 -0.486449 -0.268926 0.312137 -0.242557 -0.226572 -0.066880 0.323278 -0.472594 -0.000897 -0.612075 -0.633608 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.326511 0.486611 0.273236 -0.892046 -1.351133 0.128177 -0.008309 -0.384247 0.040621 0.177988 0.771897 -0.873942 -0.365803 1.528263 -0.246465 -0.605143 -0.146631 -0.845585 -0.280384 0.320116 0.084501 0.620785 -0.198262 0.277198 -0.125442 0.400869 -0.430407 0.282079 0.802307 -0.646255 -1.067934 -0.039191 0.063096 0.849098 0.135494 -0.634925 0.379419 1.586788 -0.951664 0.849427 -0.863086 -0.348430 0.342123 0.104630 -0.228262 -1.360986 -1.112514 0.732055 -0.300172 -0.395835 1.084041 0.122889 -0.230634 0.113268 0.632477 0.838763 -1.641209 1.121440 0.482625 0.614788 0.481188 -0.167890 0.001365 0.278808 -0.311074 -0.553630 0.260104 0.103644 -0.336251 -0.236218 -0.290170 -1.292192 1.403392 0.309801 -0.761555 0.090566 0.444416 -1.314851 1.014026 -1.266908 -1.100625 0.382905 -0.075449 -0.037348 1.133290 -0.244737 0.089064 -1.376970 0.086193 -1.470520 0.342626 -1.249076 0.196708 1.175381 -0.913786 -0.195291 0.210479 0.124425 1.401864 0.463017 0.961141 0.604295 0.544816 0.029393 0.459830 0.675021 -0.420738 -0.130225 -0.684012 -1.305346 -0.125135 0.124679 -1.800779 0.394501 0.160050 0.055082 0.160977 -0.158795 0.114643 0.662184 -0.565405 -0.417700 0.182621 -0.099204 0.399742 1.681369 -0.553707 0.326017 -0.813729 1.093678 -0.109227 0.803206 -0.039372 0.198042 -0.688638 -1.447524 -1.312629 0.446208 0.494738 -0.558667 -0.892541 -1.439420 0.338372 -0.429825 -0.527614 0.705747 1.737934 -0.669000 -0.843602 1.369620 0.999217 0.057984 1.027159 -0.352270 1.753554 -0.537798 -0.015819 -0.224608 -0.547704 -0.776465 0.149216 0.405242 -0.197330 -0.033474 -0.087138 -1.976223 1.085321 0.207843 -0.714230 0.195537 0.146920 -0.451138 -0.936411 1.369597 0.206407 0.550892 0.320571 1.253243 -0.242879 -0.827620 0.804187 0.165981 0.359075 -0.771678 -0.711835 0.629794 0.729808 -0.553958 -0.111792 -0.204606 -0.201784 -0.867556 0.047338 0.092424 0.253400 0.329390 0.678133 0.237447 1.511997 0.166930 0.602847 -1.201881 0.452428 0.458736 -0.586656 -1.352764 0.208370 -0.892142 0.049215 0.331747 -0.433611 0.160135 -0.540061 -0.927549 0.010135 -0.467386 0.694673 0.365833 -0.866195 0.209266 -0.654590 0.790768 0.456913 0.635737 0.924481 1.158037 1.164207 -0.006153 0.160109 0.216380 -0.018800 -0.036376 0.098703 0.065359 0.596915 0.798576 0.467244 0.076998 0.698434 0.422231 -0.212813 0.915277 0.458005 1.514857 0.313252 -0.150873 -0.312572 -0.359553 0.798171 2.040927 -0.513320 0.080706 0.362631 0.418209 -0.319506 -0.737943 0.020895 -0.500794 -0.611954 0.539269 -0.173475 -0.079900 -0.090875 0.939080 -0.266973 -1.231443 0.340214 -0.073293 0.422583 0.597872 0.101007 0.182397 0.225718 -1.140507 0.957094 0.887728 0.718763 -0.363895 -0.895565 -0.086336 0.433005 0.162266 0.716591 -1.386082 0.560895 0.848646 0.934611 0.340140 0.514039 -0.824673 -0.657700 0.561739 -0.190173 -0.312354 -0.248349 0.662248 -0.913273 0.087260 -0.501146 -0.901910 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.296899 0.701460 0.471424 -0.821169 -1.757970 0.254142 -0.598818 -0.618558 0.009935 0.193169 0.784034 -0.960395 -0.579148 1.458148 -0.635279 -0.915769 -0.551910 -0.548918 -0.234405 -0.297196 0.106809 0.575784 -0.198691 0.370304 -0.266339 0.077381 -0.353836 0.269599 1.217396 -0.519001 -0.897887 -0.065309 0.172627 0.956081 0.245870 -0.558429 0.453279 1.696634 -0.428192 0.400828 -1.181245 -0.759001 0.314435 0.205173 -0.077946 -1.431055 -1.128390 0.708192 -1.038619 0.217810 1.054729 0.065272 -0.235328 0.257335 0.673170 0.700309 -1.957487 1.733932 0.288634 0.263632 0.440439 -0.084129 -0.094846 0.384822 0.210141 -0.557645 0.214136 0.746461 -0.462819 -0.074503 -0.061215 -1.246318 1.730590 0.126669 -0.883105 0.055211 0.612041 -0.960159 1.010430 -1.563845 -1.266372 0.322765 0.197220 0.182492 1.076160 0.064904 0.107592 -1.523574 0.010116 -1.637337 0.540477 -1.093368 0.289722 1.021108 -1.248249 -0.152591 0.433796 -0.290687 1.683412 0.512797 1.054618 0.460811 0.611343 0.260523 0.268335 0.594344 -0.197764 0.033879 -0.675189 -1.525270 -0.327509 0.175444 -2.084657 0.267466 0.130508 0.428687 0.019815 -0.228676 0.231074 0.567318 -0.872882 -0.761949 0.154536 -0.077992 0.591696 1.467554 -0.546199 0.607576 -0.641740 1.272513 -0.376002 0.553664 0.014767 0.197562 -0.330645 -1.950280 -2.148471 0.670765 0.596169 -0.534787 -0.938007 -1.201477 0.173640 -0.393155 -0.455217 0.765764 1.981442 -0.735744 -1.135748 1.483463 0.711143 0.027180 1.532974 -0.193466 1.886729 -0.515754 -0.122280 -0.402493 -0.704401 -0.643158 -0.169315 0.435022 -0.151499 0.122337 0.311376 -1.542506 0.464789 -0.136578 -0.942997 -0.215472 0.218864 -0.465706 -0.645765 1.192729 0.424470 0.676693 0.330186 1.430009 -0.513502 -1.410364 0.650810 -0.163622 0.299304 -0.157384 -0.512554 0.548354 0.818682 -0.843841 -0.193167 -0.188937 -0.327777 -0.905553 0.013574 0.637376 0.356575 0.502581 0.712452 0.492062 1.798471 0.350263 0.567784 -1.280929 0.393366 0.605652 -0.381665 -1.688565 0.220519 -0.936999 0.115120 0.465930 -0.424705 0.239027 -0.285899 -0.764418 -0.376642 -0.716458 1.042093 0.494028 -0.391858 0.348384 -0.854481 0.857950 0.336532 0.614735 1.211569 1.290163 1.362775 0.172136 0.313979 -0.109336 0.963952 0.033997 0.607992 -0.026291 0.591025 1.019179 0.490262 0.133540 0.844899 0.679309 -0.280805 1.008254 0.153351 1.865452 -0.439467 0.194520 -0.703032 -0.134940 0.855875 2.471637 -0.723711 0.125346 0.362242 0.552482 0.116258 -1.194630 0.020903 -0.519394 -0.507494 0.659396 0.202069 -0.134020 -0.174024 0.939226 -0.050039 -1.131960 0.794946 -0.028440 0.228824 0.295094 -0.046260 -0.379576 0.325241 -1.359025 0.718040 1.089507 0.766175 -0.659821 -1.023132 -0.163795 0.795302 -0.020045 0.894277 -1.292701 0.504526 1.221639 0.964879 0.333837 0.421263 -1.052666 -1.346889 0.716551 -0.314484 -0.502669 0.069507 0.522128 -1.092504 0.382996 0.092531 -1.392364 +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.100336 0.288716 0.589989 -1.047430 -1.101426 0.261673 0.481670 -0.924560 0.272952 1.279750 0.856387 -1.009096 -0.616246 1.581083 -0.056708 -0.901708 0.576935 -1.224980 -0.095340 -0.377467 0.004510 0.628507 -0.185037 -0.211935 0.083081 -0.059536 -0.314012 0.694879 0.272797 -0.630829 -1.284143 -0.200929 0.221285 1.872140 0.189252 -0.491633 -0.129704 2.418676 -1.295906 1.613918 -2.149839 -1.184751 1.339296 0.082520 -0.288615 -1.694707 -0.855570 1.004691 0.310073 -1.006468 0.849913 -0.177169 0.082955 -0.497813 0.188910 1.890532 -2.259836 0.836658 0.335917 -0.320197 -0.484306 -0.295333 0.472140 0.796730 -1.121448 -1.282656 0.966533 0.244616 -0.819525 0.446410 -1.027293 -2.505075 1.528904 0.764099 -1.045120 0.034336 0.288771 -1.737368 1.445430 -0.688118 -1.300203 -0.177786 0.133257 -0.308717 1.088992 -0.064598 1.135702 -2.800181 0.263012 -2.589655 1.212350 -1.773583 1.377679 1.590736 -1.033811 0.332306 0.376628 0.905669 1.443615 -0.212706 1.799630 0.914298 1.100508 -0.246755 1.315658 1.144535 -0.742576 -0.854785 -0.931966 -1.522854 0.317527 -0.186859 -2.389238 0.599295 -1.033104 -0.263196 0.384025 -0.133548 -0.078968 1.858050 -1.946546 -1.088686 0.685140 -0.333613 1.176485 2.198869 -0.711662 0.535922 -0.770768 1.833753 -0.005887 0.766049 -0.385915 0.688444 -1.142517 -1.722468 -1.674295 0.376238 1.037994 -1.764093 -1.965330 -2.434917 -0.025266 0.307061 -0.870333 1.883800 3.124612 -0.964449 -1.418954 1.530798 0.900783 -0.305997 1.723309 -0.204193 3.271370 -2.000128 0.903283 -0.492229 0.328189 -0.048735 1.537929 0.023945 -0.623439 0.446229 0.006019 -1.955717 2.079540 -0.158931 -0.541190 0.654825 0.021830 -0.001117 -1.287174 1.933742 -0.239616 1.432365 -0.233036 2.196884 -1.136460 -1.385077 1.210342 -0.583726 -0.326791 -0.935231 -0.623405 0.295749 1.761741 -1.184457 -0.642243 -0.603215 -1.142111 -0.403416 0.894140 0.066601 0.309961 0.025160 0.213802 1.345151 1.946496 0.216193 0.445228 -2.050066 0.652126 1.310138 -0.319121 -1.648178 -0.203781 -1.588568 -0.116694 -0.075251 -0.374821 1.007532 -1.209849 -1.178800 0.139562 -0.384299 0.567411 -0.060391 -2.119875 0.627528 -0.482133 0.715613 0.403553 1.873920 1.519356 1.505919 1.197140 -0.862087 0.315509 -0.585647 -1.067062 0.430826 0.147206 0.546618 0.822408 1.275198 0.402859 0.211213 1.658175 0.200486 0.291054 1.641337 0.555942 2.342189 -0.415626 0.285841 -0.082564 -1.240109 1.456063 3.243429 -0.376315 -0.519509 0.856094 0.429110 -1.134311 -1.312498 -0.368120 -0.695702 -0.600622 0.870576 0.294447 -0.377187 -0.770511 2.498272 0.271011 -2.917997 1.120031 0.026809 0.322321 1.678642 -0.583911 0.592828 0.685049 -1.044464 1.081410 1.064322 1.504506 -1.278075 -0.968760 -0.223732 0.939030 0.343303 0.292244 -2.909096 0.757837 1.273993 2.212608 0.937677 1.446288 -1.510306 -0.029470 0.342917 -0.586182 -0.373850 0.140073 1.411384 -1.532929 0.246747 -2.021611 -0.055720 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_base(int*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_S_check_init_len(unsigned long, std::allocator const&) = 0.482835 0.408339 0.168939 -0.558112 -0.816719 -0.132617 -0.035941 -0.160316 0.040266 0.602103 0.310845 -0.693383 -0.701931 0.874024 -0.378986 -0.941122 -0.131936 -0.512958 -0.352917 -0.242290 0.102644 0.563571 0.155515 -0.141652 0.339306 -0.030039 -0.156790 0.307698 1.035416 -0.693057 -0.483564 0.073797 0.340041 0.709906 -0.243393 -0.248198 0.130475 1.230060 0.037870 0.323109 -1.179627 -0.759507 0.883161 0.097332 -0.111186 -1.004726 -0.311878 0.577961 -0.737270 -0.061510 0.184345 0.038953 -0.370325 -0.548560 0.157792 0.956865 -1.639907 1.409090 0.046144 0.189892 -0.185766 -0.160651 0.294284 -0.021955 0.277901 -0.677047 0.052545 0.211161 -1.123952 0.176957 -0.254953 -0.550500 1.281710 0.133981 -0.484482 0.260064 -0.147692 -0.437873 0.569019 -1.344400 -0.492663 -0.138620 0.610090 0.447787 0.438022 0.202755 0.095306 -1.496596 -0.036427 -1.058485 0.682112 -0.711551 0.695964 0.793544 -0.837112 0.456645 -0.022546 -0.413004 0.748816 0.390871 1.054063 0.123532 0.782265 -0.042448 -0.171764 0.347840 -0.367224 -0.219429 -0.090196 -0.879388 -0.191337 0.269528 -1.570250 0.094524 -0.430795 0.634321 0.611000 -0.217804 0.180959 0.197106 -1.261704 -0.946322 0.178937 -0.118141 0.823709 0.948202 -0.176693 0.139642 -0.441783 1.003654 0.040239 0.129722 -0.103119 0.287090 -0.205422 -1.393622 -0.956812 0.006110 0.232522 -0.509636 -0.925973 -0.943435 -0.024254 -0.347541 -0.439444 0.798679 1.430985 -0.227793 -0.934914 0.941167 -0.150635 0.424024 1.131109 -0.184672 1.526163 -0.847181 0.252019 0.160162 0.128787 0.243368 0.086735 -0.046459 -0.561997 -0.075103 0.094057 -0.580301 -0.246397 0.019844 -0.123106 -0.369308 0.044438 -0.417605 -0.555987 0.840621 0.043215 1.075561 -0.164568 1.343753 -0.824507 -1.140584 0.687816 -0.461199 -0.100310 -0.262865 -0.344301 0.115306 0.623078 -0.907492 -0.290743 -0.114864 -0.211738 -0.466623 0.555936 0.294284 0.120208 -0.123505 0.198400 0.879392 0.667689 -0.331115 0.398587 -1.195837 0.117250 0.660122 -0.005285 -1.373680 0.240794 -0.592776 -0.060827 0.843680 -0.382539 0.073488 0.041094 -0.633746 -0.000787 -0.374734 0.547362 -0.274875 -0.243378 0.111317 -0.552051 0.207614 0.001199 0.958127 0.907661 0.373036 0.218772 -0.070084 0.325596 -0.436528 0.535275 0.127345 0.048333 0.126148 0.468047 0.669266 0.316211 0.084045 0.890663 0.372002 -0.688117 0.790188 0.329376 1.378426 -0.874918 -0.127267 -0.250690 -0.414449 0.722832 1.629852 -0.890415 -0.370688 0.518747 0.483552 0.249873 -0.790018 -0.325961 -0.527011 -0.524752 0.642679 0.011806 -0.188038 -0.050374 1.093880 0.017075 -1.244343 1.216828 -0.083017 0.300419 -0.062161 -0.276740 -0.245383 0.689754 -0.967727 -0.203537 0.525005 0.710454 -0.497043 -0.541592 -0.286571 0.852549 -0.156158 0.326392 -0.866089 0.130584 1.060499 1.117433 0.433426 0.385748 -0.406252 -0.901749 -0.105499 -0.081898 -0.293003 -0.061695 0.100784 -0.655572 0.013151 -0.319713 -0.410575 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_base(unsigned long, std::allocator const&) = 0.274754 -0.032576 0.708138 -1.121724 -1.059986 -0.153015 -0.658326 -0.120605 0.606704 0.431247 0.939193 -1.122172 -0.915858 1.901611 -0.122788 -0.943147 0.177803 -0.366060 0.591630 0.365686 0.691131 0.549193 0.114449 0.209857 0.089720 0.254053 -0.927796 0.334199 1.672616 -0.812189 -1.165716 0.150177 0.165531 0.855128 -0.724934 -0.635044 0.273096 1.887728 -0.804946 1.167812 -1.303827 -0.678447 0.842119 0.076825 -0.340611 -1.484681 -1.146156 0.556110 -0.975378 -0.579136 0.777268 0.384714 -0.094572 -0.476015 0.272329 1.006650 -2.751872 1.150723 0.406158 0.535445 0.877336 0.273679 -0.092510 0.208822 -0.090833 -0.343043 0.269752 -0.154900 -1.113018 -0.230366 -0.010105 -0.894728 1.933217 0.550500 -0.661838 0.791756 1.244453 -1.387350 1.422589 -1.730808 -1.166451 0.088361 -0.204120 -0.131756 1.375617 -0.149597 0.383731 -1.330407 0.411709 -1.530204 1.121557 -1.873801 0.339559 1.511781 -1.496769 0.257139 0.880772 0.212283 1.729466 0.538637 1.695333 1.245320 0.566293 0.084132 0.496638 0.672963 -0.538089 0.068411 -0.788067 -1.447945 -0.499772 -0.232142 -2.332883 0.133492 -0.082549 0.366170 0.991893 -0.395496 0.337415 0.943076 -1.022589 -0.303819 0.412455 -0.104632 -0.058470 2.047741 -0.386677 -0.433824 -0.741529 1.696108 -0.604602 0.411855 0.735582 0.229277 -0.594583 -1.686433 -1.042646 -0.033472 -0.200334 -1.125543 -0.908680 -1.698609 0.488810 -0.206436 -0.008557 1.155085 2.333994 -0.327844 -0.862367 1.471934 0.698328 0.062557 1.923475 -0.054849 2.273801 -0.601437 -0.289168 -0.746137 -0.518130 -0.262229 0.351980 0.664403 0.154477 -0.028666 0.386192 -1.814424 0.958167 -0.203580 -0.256550 -0.053776 0.166755 -1.081086 -1.286116 1.229887 0.173865 1.127241 0.096830 1.825244 0.003797 -1.350739 1.299839 -0.143878 0.199037 -0.538638 -0.765898 0.649954 0.563398 -0.975468 -0.311568 -0.811158 -0.356204 -0.493521 0.431349 0.132398 0.680838 0.535278 0.175469 0.730769 1.228337 -0.075122 0.735222 -1.802783 0.173196 0.481722 -0.974108 -1.908595 0.727519 -1.260193 0.522719 0.817657 -0.646717 0.650680 -0.830483 -1.502360 -0.201719 -0.506418 0.506529 -0.481246 -1.286710 -0.038761 -0.481211 1.005733 0.893452 0.862244 1.241625 1.116785 0.615685 0.401616 0.097907 0.227840 0.311826 -0.025894 -0.291269 0.206229 0.392073 1.043825 0.302706 0.388102 1.047485 0.771567 -0.460008 1.265954 0.241342 1.417712 0.258727 -0.421589 -0.080138 -0.650124 1.205168 2.407921 -0.647249 0.229237 0.614646 0.716541 -0.141787 -1.306904 -0.128656 -0.344940 -0.892551 1.142447 0.076161 0.287232 -0.099343 0.671914 0.388794 -1.800830 0.957314 -0.262933 0.202398 0.560292 0.153349 -0.240036 0.524985 -1.398239 0.593863 0.593543 0.976903 -0.993912 -0.637057 0.046621 1.017154 0.268261 1.059513 -1.765514 0.397185 0.942558 0.623573 0.607413 0.894580 -0.965944 -1.382708 0.272165 -0.514760 -0.883449 -0.670976 0.060818 -1.211457 -0.030592 -0.311849 -0.854290 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::_M_fill_initialize(unsigned long, int const&) = 0.521492 0.121696 0.878065 -1.144329 -1.608981 0.805620 -0.926481 -0.852664 0.251025 0.033432 0.930617 -0.444149 -0.053866 1.338258 -0.396901 -1.030358 -0.310917 -0.773909 -0.082209 -0.363548 0.089027 0.385553 -0.419943 0.374676 -0.381331 -0.340536 -0.053713 0.469300 0.656735 -0.436124 -1.145253 -0.240267 -0.536845 1.399802 0.518128 -0.466526 0.664338 2.322113 -0.341011 0.435473 -0.847660 -1.109842 0.375395 0.100904 -0.420798 -0.415094 -1.102472 0.602699 -0.750128 0.100102 1.457096 -0.243941 0.189699 0.373884 0.579661 0.454175 -1.938450 0.802088 0.190064 0.154291 -0.019317 -0.342067 0.242555 0.656185 -0.415802 -0.580778 1.152373 1.062305 -0.277231 -0.268048 -0.085988 -2.005059 2.041161 0.572417 -0.593859 -0.018617 1.146754 -1.468253 1.313339 -0.328747 -1.891669 0.168997 -0.292442 -1.322805 1.790269 -0.417107 0.781356 -1.948388 0.925589 -2.269476 0.533844 -1.167799 0.546169 1.322024 -1.560552 -0.083556 0.972727 1.562839 1.235280 -0.202060 1.489622 0.573292 0.064644 0.502404 1.108988 0.319487 -0.446712 -0.039142 -1.216195 -1.768386 -0.146702 -0.738485 -2.494534 0.492177 -0.001454 -0.119165 -0.412243 0.097007 -0.125655 1.338148 -1.389846 -0.332253 0.132893 -0.175408 0.467909 1.476798 -0.772020 0.659805 -0.398649 1.662712 -0.997232 0.362693 -0.228486 0.331938 -0.314206 -0.526613 -2.278562 0.853184 1.105601 -0.935753 -1.440673 -1.212935 -0.175857 0.271818 -0.375644 2.188644 2.657587 -1.007571 -1.360937 1.614668 0.750623 -0.081101 1.984464 0.074784 1.862108 -0.696553 -0.216738 -1.112302 -0.653534 -0.756187 -1.159938 0.588324 0.481302 0.773154 0.328416 -0.290638 2.502842 -0.512645 -1.160571 0.086292 0.522794 -0.691119 -1.157226 1.619834 0.776024 0.788737 1.240454 2.022250 -0.645401 -1.212304 0.591488 -0.239989 0.186965 -0.802923 -0.526995 0.021231 1.147315 -0.597281 -0.549130 -0.515616 -0.595061 -0.654135 0.069825 1.774875 0.819988 0.649628 0.645579 0.489483 2.640843 0.829107 0.105013 -1.545587 0.523183 1.073214 -0.824434 -0.637828 -0.081733 -0.978155 0.191657 0.174685 -0.205367 0.784443 -1.220160 -0.940960 -0.762036 0.035452 0.973534 0.840717 -2.459776 0.442572 -0.456389 0.793124 0.735273 0.693900 1.720186 1.766873 1.855964 -0.209539 0.380505 0.263180 0.265281 -0.395876 0.585077 1.124560 0.593038 1.595808 0.628964 0.464315 0.907490 1.144561 0.568913 1.196323 0.191215 2.525193 -0.006579 0.158169 -0.942443 -0.036763 1.186251 2.926772 -0.540575 0.843446 0.497241 1.072014 -0.389485 -2.025388 0.309938 -0.644932 0.378442 -0.058738 0.390804 -0.012195 -0.613861 1.401179 0.215224 -1.812151 0.581817 0.029417 0.448980 1.220908 -0.144436 0.000336 0.073483 -1.598461 1.683225 1.268781 0.780470 -1.020213 -0.052517 0.024768 1.030741 -0.756917 1.041369 -0.902444 1.425790 0.736966 1.040171 0.783437 0.571112 -1.431952 -0.928072 0.855517 -1.129817 -0.365897 0.790529 1.018148 -1.463814 0.723237 -0.879094 -1.644173 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator::allocator(std::allocator const&) = 0.295524 0.331854 0.354209 -0.546950 -0.780319 0.096909 0.019491 -0.231312 0.000000 0.150990 0.378600 -0.322182 -0.170789 0.733499 -0.200521 -0.380231 -0.193447 -0.794379 -0.266597 -0.082190 0.001481 0.333641 -0.117700 0.158993 -0.009866 0.067317 -0.185542 0.207228 0.196639 -0.560261 -0.410774 -0.059000 0.001593 0.579048 0.031778 -0.359848 0.209372 1.058560 -0.343230 0.144406 -0.481502 -0.488280 0.310907 -0.034350 -0.157887 -0.637344 -0.471006 0.461771 0.004216 -0.109175 0.532796 0.134712 -0.215751 -0.048718 0.235957 0.380680 -1.057099 0.607681 0.227694 0.149243 -0.048986 -0.104975 0.092095 0.090527 -0.046855 -0.358565 0.333391 0.160694 -0.244821 -0.030573 -0.025631 -0.740060 0.846739 0.187654 -0.169085 0.164693 0.341571 -0.630531 0.681710 -0.578245 -0.674348 0.093744 0.026882 -0.293362 0.716183 -0.189894 0.060638 -0.881279 0.244270 -0.879474 0.174478 -0.671102 0.128119 0.628483 -0.475256 0.107621 0.229096 0.249147 0.614779 0.074255 0.685667 0.228899 0.404375 0.277223 0.311841 0.257561 -0.274438 -0.061970 -0.567321 -0.840942 0.021375 -0.041914 -0.983819 0.318432 0.135653 -0.217649 0.069013 -0.066966 0.088837 0.553915 -0.579021 -0.200186 0.237623 -0.075649 0.107534 0.811809 -0.338734 0.132572 -0.415947 0.675258 -0.208278 0.466842 0.044731 0.158985 -0.149337 -0.680730 -0.808955 0.218979 0.276239 -0.383417 -0.540159 -0.677536 0.120742 -0.120934 -0.344935 0.711961 1.205906 -0.429125 -0.640178 0.838393 0.694430 0.022124 0.608096 -0.069698 0.974330 -0.266811 -0.197387 -0.205054 -0.325728 -0.195337 -0.317471 0.266897 0.024142 0.179973 0.132256 -0.643240 0.899915 -0.096723 -0.421273 0.419372 0.206393 -0.348224 -0.623199 0.692136 0.669720 0.549370 0.480000 0.861772 -0.201550 -0.492409 0.361488 0.047222 0.190569 -0.487991 -0.306915 0.152057 0.402856 -0.230806 -0.157369 -0.215123 -0.288132 -0.466314 0.068592 0.275010 0.392439 0.193480 0.369791 -0.005958 1.025541 0.108697 0.230132 -0.844665 0.258046 0.350454 -0.143433 -0.627379 0.032621 -0.383078 0.026745 0.295493 -0.206368 0.235290 -0.242506 -0.399280 0.013802 -0.151182 0.229170 0.190502 -0.654471 0.057111 -0.376707 0.484771 0.177243 0.411620 0.780012 0.673465 0.670710 0.036167 0.107681 0.123958 0.029799 -0.203936 -0.011536 0.356519 0.390954 0.547592 0.365127 0.178530 0.554871 0.396169 -0.100550 0.629668 0.128513 1.131585 -0.138239 -0.086371 -0.311584 0.004792 0.544710 1.192619 -0.199863 0.054692 0.284204 0.396169 -0.211707 -0.616477 0.011382 -0.302741 -0.012661 0.200862 0.127967 -0.153373 -0.021015 0.625286 -0.087270 -0.829249 0.284989 0.011260 0.291480 0.311347 0.044365 0.064401 0.259852 -0.672757 0.459135 0.546505 0.425226 -0.452005 -0.289474 0.028325 0.521870 -0.392420 0.538860 -0.837536 0.439513 0.403760 0.439369 0.118320 0.308686 -0.575544 -0.482012 0.440857 -0.138607 -0.203124 0.334712 0.439381 -0.714385 0.188586 -0.378788 -0.493059 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::allocator const&) = 0.291631 0.404815 0.373347 -0.540369 -0.870937 0.048803 -0.093878 -0.233471 -0.016909 0.158513 0.339383 -0.417582 -0.260347 0.769452 -0.307936 -0.497817 -0.311142 -0.755356 -0.302166 -0.230744 -0.006312 0.363188 -0.092515 0.172152 0.027003 0.011516 -0.205841 0.217925 0.380947 -0.607814 -0.339862 -0.038364 0.083656 0.630854 -0.018286 -0.361508 0.246963 1.144075 -0.178679 0.029399 -0.565009 -0.597746 0.373343 -0.015125 -0.150192 -0.677860 -0.476094 0.490052 -0.233043 0.062696 0.480070 0.190706 -0.323179 -0.094490 0.252118 0.416612 -1.238613 0.864825 0.193420 0.120674 -0.092744 -0.097504 0.057525 0.042756 0.104316 -0.396381 0.282397 0.275419 -0.374348 0.047709 0.036618 -0.682087 0.970353 0.144939 -0.198156 0.232542 0.354850 -0.522759 0.690756 -0.750190 -0.676585 0.073250 0.177148 -0.192881 0.732593 -0.103496 0.014495 -0.960105 0.212116 -0.903796 0.223028 -0.711684 0.168995 0.663527 -0.604947 0.196369 0.215893 0.082899 0.679986 0.137177 0.761048 0.181550 0.469226 0.336119 0.214437 0.251114 -0.222693 -0.038660 -0.539080 -0.905996 -0.055101 0.011215 -1.105919 0.293507 0.099867 -0.085265 0.112090 -0.072336 0.108990 0.486669 -0.699931 -0.363421 0.245637 -0.080186 0.171794 0.797599 -0.337991 0.150882 -0.433712 0.752639 -0.192846 0.415909 0.064396 0.160673 -0.062775 -0.877176 -1.015521 0.198803 0.251265 -0.377269 -0.581786 -0.646542 0.077258 -0.168794 -0.352072 0.767625 1.315029 -0.402678 -0.726055 0.933167 0.605030 0.120578 0.756064 -0.046766 1.061055 -0.282348 -0.216043 -0.184728 -0.325096 -0.116448 -0.461898 0.265978 -0.028389 0.163570 0.235218 -0.525367 0.683743 -0.158256 -0.429356 0.275747 0.211219 -0.385480 -0.609153 0.722827 0.729849 0.685820 0.445655 0.953098 -0.270228 -0.695214 0.384666 -0.038138 0.190880 -0.369972 -0.274371 0.108625 0.416167 -0.344782 -0.194563 -0.186041 -0.292306 -0.511187 0.079749 0.444383 0.408262 0.177329 0.404620 0.084123 1.066548 0.061295 0.275903 -0.966909 0.229721 0.410431 -0.082464 -0.776941 0.109577 -0.362969 0.019421 0.388549 -0.230961 0.196556 -0.160507 -0.390122 -0.047520 -0.206713 0.321900 0.152474 -0.519169 0.088717 -0.476635 0.488610 0.160991 0.444975 0.923709 0.637683 0.660597 0.090279 0.152813 0.011644 0.290076 -0.173754 0.057764 0.346723 0.413430 0.613169 0.391548 0.175114 0.613765 0.470502 -0.239306 0.686240 0.111494 1.281212 -0.351916 -0.049509 -0.388427 0.026159 0.586474 1.347776 -0.324336 0.006834 0.341393 0.467667 -0.074602 -0.766626 -0.064631 -0.327044 -0.042341 0.258598 0.114773 -0.241007 0.042761 0.656373 -0.054986 -0.838573 0.443283 0.028788 0.249209 0.141104 0.015241 -0.111029 0.389781 -0.793931 0.326029 0.565843 0.447437 -0.519978 -0.329728 -0.002495 0.665403 -0.467083 0.597453 -0.812852 0.417335 0.542917 0.477616 0.147198 0.260018 -0.571386 -0.720296 0.455611 -0.122220 -0.287686 0.389064 0.382731 -0.788652 0.256730 -0.215778 -0.653438 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::_Vector_base >::_M_create_storage(unsigned long) = 0.252324 -0.880821 1.107222 -1.347808 -1.518352 1.245460 -1.694024 -1.067058 0.553079 -0.653493 0.980845 -0.442049 0.113713 1.616086 -0.141753 -1.653926 -0.138726 0.434628 0.232832 -0.215781 0.180630 0.207233 -0.565087 0.384960 -0.515910 -0.827961 0.287708 0.817180 0.998280 0.236386 -1.438714 -0.427266 -1.067850 1.925904 0.761523 0.322104 0.907956 3.056448 0.092225 1.615921 -0.735610 -1.341308 0.450479 0.184793 -0.695422 0.446212 -1.574446 0.404766 -1.906028 0.065110 1.882373 -0.494945 0.587980 0.519566 0.908757 0.377807 -2.021879 0.234760 -0.005641 0.043835 -0.054430 -0.606657 -0.047777 0.923474 -1.273504 -0.575874 1.500303 1.654416 -0.352558 -0.345621 -0.097334 -2.641361 3.096863 0.975800 -0.999350 -0.029391 1.922742 -1.669198 1.425294 0.656449 -2.577381 -0.004147 -0.641909 -2.185817 2.593562 -0.448819 1.669222 -2.530236 1.553201 -3.023351 0.986894 -1.562509 0.934725 1.944651 -2.469226 0.084538 1.510851 3.014856 0.974100 -0.329815 1.818053 0.910388 -0.820055 0.478838 1.987646 0.024230 -0.575994 -0.470995 -1.509965 -2.025411 -0.229826 -1.808428 -3.630713 0.306602 -0.241066 0.719664 -0.859774 0.761619 -0.468623 1.373513 -2.051392 0.206638 0.030662 -0.309403 0.760458 1.528117 -1.016310 0.830969 -0.188778 2.249555 -1.571005 -0.118786 -0.613957 0.485049 -0.460646 0.685805 -2.731538 1.015362 1.563258 -1.097451 -2.107391 -1.385114 -0.797057 1.403231 -0.110374 3.286378 3.388497 -1.131031 -1.450119 1.829689 0.198818 0.287083 2.660934 0.459744 1.920371 -0.942236 -0.100714 -1.942741 -0.599827 -0.945195 -1.712227 0.763287 0.537648 1.406865 0.167441 0.244137 4.174342 -1.020474 -1.392050 -0.992510 0.528821 -0.981829 -1.370486 2.555083 -0.253785 0.992188 1.191550 2.690828 -0.868446 -1.460182 0.592328 -0.892439 -0.047302 -1.312372 -0.472810 -0.438142 1.597543 -1.195472 -1.052530 -0.630642 -0.755398 -0.357951 0.139977 2.997939 0.669522 0.737334 0.715893 1.454809 3.274181 1.331484 -0.386120 -1.882164 0.600823 1.416054 -1.611291 0.011148 0.095855 -1.036695 0.210324 -0.416239 0.065140 0.868380 -2.295553 -1.235110 -1.620407 0.365420 1.356229 1.141213 -4.246616 0.602620 0.261017 0.701983 1.515879 0.690596 2.510457 2.125743 2.357568 -0.367161 0.521384 0.378462 -0.125345 -0.230744 0.964860 1.828447 0.435982 2.257140 0.697230 0.472802 0.873995 1.739684 1.456160 1.319454 0.680657 3.174959 0.864473 0.084605 -0.957400 -0.160015 1.531115 3.738755 -0.977941 1.942839 0.771865 1.584073 -0.524675 -2.986156 0.361608 -0.776353 0.428876 -0.086285 0.033405 0.096505 -0.983481 1.833383 0.519437 -2.422832 0.423933 0.107646 0.494821 1.976267 -0.331924 0.079283 -0.023952 -2.036802 2.665108 1.266378 0.742724 -1.305582 0.605748 -0.028996 0.855807 -0.181064 1.152186 0.037693 1.962069 0.587051 1.592761 1.409477 0.481901 -1.574338 -0.757062 0.711684 -2.215158 -0.442245 0.651470 1.074484 -1.278528 0.814949 -1.607521 -2.785867 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n_a(int*, unsigned long, int const&, std::allocator&) = 0.209616 0.376236 0.226790 -0.742508 -0.969555 0.053172 0.109640 -0.259589 0.058063 0.018021 0.648271 -0.716979 -0.422553 1.197622 -0.166202 -0.571707 -0.041895 -0.634177 -0.269789 0.237541 0.076269 0.481629 -0.121954 0.119448 0.025452 0.284755 -0.356985 0.349632 0.743854 -0.604801 -0.812626 0.015778 0.119955 0.745441 0.018075 -0.414859 0.303373 1.274208 -0.758505 0.694340 -0.757299 -0.278501 0.479360 0.088943 -0.308323 -1.207885 -0.918156 0.581994 -0.390779 -0.339501 0.800316 0.082155 -0.169769 -0.060436 0.456720 0.904784 -1.441946 0.907486 0.384137 0.443280 0.305840 -0.105487 0.000904 0.107426 -0.164843 -0.505724 0.185777 -0.002397 -0.373023 -0.151479 -0.251834 -1.038353 1.325457 0.228817 -0.560193 0.173414 0.274175 -1.065182 0.792780 -0.948269 -0.778328 0.221633 0.079025 0.094233 0.900416 -0.208055 0.034859 -1.165408 -0.139947 -1.160030 0.365466 -1.046474 0.272622 0.919897 -0.810099 -0.031175 0.129373 -0.108009 0.964703 0.413682 0.852316 0.406142 0.517125 -0.042587 0.375654 0.494521 -0.366481 -0.198325 -0.549138 -1.027776 -0.094743 0.111830 -1.585335 0.282229 -0.044553 0.054706 0.222661 -0.174138 0.142636 0.550538 -0.364209 -0.216399 0.200361 -0.094188 0.345338 1.440658 -0.351705 0.155062 -0.623561 0.896551 -0.038224 0.635943 -0.095702 0.193235 -0.402541 -1.370124 -0.937577 0.229770 0.330716 -0.498356 -0.761010 -1.124592 0.258842 -0.336375 -0.428175 0.456840 1.452573 -0.488466 -0.750208 1.081087 0.884351 0.185960 0.824185 -0.241606 1.527461 -0.569175 0.082073 -0.168327 -0.345455 -0.450542 0.140705 0.234863 -0.254014 -0.034592 -0.044808 -1.704607 0.977860 0.138511 -0.439557 0.354282 0.081130 -0.392647 -0.862050 1.146336 0.381843 0.640888 0.198169 1.103638 -0.303630 -0.806199 0.671910 0.266398 0.222052 -0.645227 -0.606640 0.517900 0.544709 -0.468391 -0.149677 -0.238635 -0.105966 -0.626775 0.153537 0.100204 0.179410 0.139028 0.426338 0.060297 1.110074 0.001257 0.524635 -1.054945 0.327226 0.417103 -0.394238 -1.223463 0.227850 -0.704440 0.020533 0.352008 -0.355442 0.174639 -0.366958 -0.738682 0.092143 -0.394873 0.500398 0.139543 -0.726512 0.143310 -0.528044 0.491732 0.356935 0.626662 0.874136 0.839746 0.746085 0.010593 0.155206 0.102663 -0.100261 -0.053738 -0.033897 0.179034 0.498835 0.623383 0.355867 0.058983 0.616989 0.327714 -0.177138 0.779323 0.511680 1.239306 0.272109 -0.195361 -0.146148 -0.380168 0.682123 1.617490 -0.417676 -0.017466 0.354111 0.456605 -0.215049 -0.752257 -0.057323 -0.388633 -0.608949 0.679807 -0.186382 -0.100304 -0.075455 0.885552 -0.173850 -1.089778 0.380288 -0.058005 0.331089 0.351768 0.036946 0.109247 0.317192 -0.897888 0.623798 0.608240 0.673079 -0.370076 -0.727102 -0.080729 0.412483 0.126518 0.503333 -1.220872 0.360926 0.656087 0.848575 0.337440 0.463116 -0.583050 -0.497284 0.313373 -0.106232 -0.245238 -0.246686 0.449409 -0.779589 -0.007239 -0.531378 -0.588914 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::uninitialized_fill_n(int*, unsigned long, int const&) = 0.229682 0.343600 0.223627 -0.754049 -0.941139 0.062966 0.129642 -0.265733 0.050364 0.005376 0.634264 -0.685716 -0.415611 1.193242 -0.167735 -0.553978 -0.002004 -0.652401 -0.239748 0.262442 0.065254 0.489196 -0.132075 0.105777 0.041841 0.281087 -0.357801 0.358492 0.726213 -0.591378 -0.820140 0.000000 0.094003 0.759808 0.043730 -0.424868 0.304176 1.296617 -0.757964 0.717947 -0.757171 -0.259679 0.489686 0.071451 -0.314108 -1.227212 -0.920820 0.567122 -0.392576 -0.324798 0.799410 0.050122 -0.146599 -0.058056 0.443812 0.912588 -1.442825 0.891184 0.393867 0.462228 0.319585 -0.136261 -0.015469 0.076526 -0.174353 -0.503867 0.189807 -0.013168 -0.374810 -0.146291 -0.279558 -1.013075 1.312722 0.251041 -0.561205 0.161932 0.261276 -1.096991 0.769412 -0.950065 -0.790090 0.204672 0.053071 0.094509 0.924837 -0.225868 0.039316 -1.170443 -0.138822 -1.181466 0.340622 -1.063926 0.285485 0.943274 -0.814788 -0.019870 0.133746 -0.088150 0.933893 0.408297 0.854609 0.424490 0.480595 -0.045531 0.392244 0.493288 -0.353615 -0.195709 -0.522289 -0.978008 -0.114290 0.111946 -1.590123 0.278728 -0.064719 0.056835 0.197289 -0.151333 0.115753 0.550392 -0.354325 -0.206308 0.186032 -0.104144 0.348942 1.427367 -0.338726 0.141666 -0.639106 0.897660 -0.040164 0.649659 -0.134923 0.206878 -0.417388 -1.381095 -0.925581 0.198321 0.329306 -0.504343 -0.793426 -1.128907 0.240507 -0.350423 -0.423334 0.457823 1.435452 -0.489453 -0.738057 1.089468 0.868883 0.206439 0.828467 -0.230190 1.482102 -0.550880 0.079874 -0.168885 -0.340014 -0.479637 0.117697 0.213032 -0.253118 -0.035066 -0.059680 -1.692849 0.999238 0.153385 -0.445203 0.345708 0.048070 -0.400577 -0.876319 1.167825 0.354339 0.630880 0.185194 1.109300 -0.285587 -0.798407 0.661687 0.268821 0.240568 -0.657443 -0.587179 0.515641 0.526902 -0.479386 -0.184085 -0.216459 -0.072508 -0.620128 0.170533 0.101952 0.158067 0.146394 0.423673 0.068994 1.096469 -0.019700 0.538566 -1.024474 0.339631 0.418836 -0.398541 -1.234350 0.233721 -0.672626 0.008091 0.345108 -0.327162 0.176438 -0.384742 -0.742731 0.111822 -0.371472 0.502113 0.165630 -0.750321 0.153376 -0.514870 0.448891 0.368118 0.622306 0.854648 0.821600 0.716640 0.001925 0.141277 0.114845 -0.120125 -0.053624 -0.019449 0.172435 0.485486 0.625098 0.371963 0.059444 0.585410 0.344715 -0.155289 0.767113 0.540071 1.219417 0.285808 -0.216664 -0.124916 -0.384201 0.692593 1.587064 -0.402532 -0.010713 0.353977 0.444747 -0.212456 -0.754799 -0.046476 -0.378876 -0.611642 0.669231 -0.195033 -0.094171 -0.080922 0.906924 -0.187843 -1.094489 0.380075 -0.033116 0.341551 0.342647 0.059388 0.117567 0.319758 -0.888878 0.651125 0.598512 0.675767 -0.345506 -0.729301 -0.076132 0.385831 0.146330 0.505820 -1.202855 0.349525 0.640610 0.856849 0.356855 0.460298 -0.547821 -0.482234 0.296091 -0.108015 -0.233918 -0.248205 0.453936 -0.768924 -0.016959 -0.531301 -0.574597 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__uninitialized_fill_n::__uninit_fill_n(int*, unsigned long, int const&) = 0.222209 0.321334 0.248201 -0.611185 -0.821465 0.075387 0.043858 -0.262181 0.056570 0.110320 0.511719 -0.559406 -0.306781 1.031371 -0.220475 -0.464313 -0.071443 -0.518732 -0.205305 0.131908 0.080099 0.415577 -0.105260 0.094496 0.004871 0.176524 -0.247304 0.249392 0.499261 -0.466585 -0.647495 -0.019699 0.100847 0.636743 0.031485 -0.284429 0.207186 1.051982 -0.588878 0.622989 -0.734888 -0.350074 0.379401 0.080455 -0.163958 -1.036040 -0.746431 0.462799 -0.238742 -0.262199 0.623100 0.043139 -0.150008 -0.045137 0.375622 0.674376 -1.195338 0.741310 0.280974 0.273892 0.204910 -0.082614 0.029476 0.116860 -0.148611 -0.419616 0.161471 0.126173 -0.326287 -0.062732 -0.175614 -0.879294 1.076058 0.182893 -0.477558 0.128647 0.256267 -0.861561 0.670285 -0.854858 -0.660463 0.154935 0.078811 0.068068 0.693566 -0.091491 0.109523 -0.998150 -0.026888 -0.982767 0.348260 -0.833903 0.246539 0.733083 -0.639482 -0.007657 0.169637 0.002801 0.857191 0.363277 0.710998 0.398708 0.433247 -0.011520 0.332191 0.427669 -0.302392 -0.177064 -0.468805 -0.876487 -0.068870 0.069050 -1.325474 0.206831 -0.008834 0.071779 0.132074 -0.135923 0.143726 0.493747 -0.493307 -0.229993 0.196254 -0.072439 0.278473 1.105571 -0.283359 0.159674 -0.496593 0.752324 -0.097431 0.474681 -0.053578 0.168055 -0.400594 -1.116238 -0.826240 0.213551 0.265713 -0.437277 -0.636735 -0.971265 0.170258 -0.146741 -0.350173 0.437181 1.234761 -0.419867 -0.671446 0.870324 0.738336 0.051191 0.722761 -0.156937 1.253805 -0.479735 0.057385 -0.164095 -0.273102 -0.326305 0.136071 0.201079 -0.205356 0.031590 -0.015388 -1.437718 0.827391 0.036301 -0.376654 0.212971 0.081352 -0.331277 -0.613795 0.905038 0.241531 0.564745 0.087249 0.933926 -0.312356 -0.671760 0.496866 0.011368 0.155004 -0.486979 -0.421436 0.369135 0.520090 -0.457898 -0.140828 -0.170922 -0.196403 -0.485678 0.147487 -0.009706 0.162420 0.129101 0.324456 0.178383 0.929212 0.039298 0.406073 -0.844327 0.266647 0.360494 -0.277286 -1.061831 0.159232 -0.608249 0.024144 0.231727 -0.277113 0.160054 -0.303571 -0.569787 0.028924 -0.375098 0.401380 0.102179 -0.505496 0.106156 -0.459059 0.479384 0.245672 0.524674 0.754571 0.728853 0.633196 -0.000129 0.138356 -0.010790 -0.017336 0.012958 0.066748 0.088686 0.399934 0.575809 0.288817 0.065438 0.548076 0.308119 -0.102022 0.663126 0.344842 1.051201 0.084943 -0.099972 -0.162105 -0.269330 0.571248 1.376340 -0.339735 0.016544 0.284860 0.343080 -0.178764 -0.569694 -0.033058 -0.311684 -0.497183 0.554961 -0.033260 -0.075461 -0.088260 0.751055 -0.092627 -0.913304 0.349234 -0.047526 0.259093 0.321329 -0.001572 0.078012 0.271633 -0.685770 0.496584 0.517082 0.567792 -0.378166 -0.651949 -0.072521 0.378068 0.166446 0.429780 -1.031555 0.347813 0.580647 0.716044 0.212771 0.408491 -0.535417 -0.428794 0.273445 -0.110583 -0.236831 -0.119477 0.380219 -0.614781 0.005655 -0.437082 -0.507919 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::fill_n(int*, unsigned long, int const&) = 0.401123 0.442395 0.025448 -0.804477 -1.081873 0.157889 -0.321335 -0.460344 -0.026892 0.168272 0.643366 -0.838922 -0.440566 1.314964 -0.354541 -0.729099 -0.141994 -0.684594 -0.193372 0.179748 0.021029 0.551582 -0.172006 0.059222 0.001090 0.296367 -0.443997 0.132120 1.048730 -0.715327 -0.964140 0.006254 0.119501 0.876451 0.161013 -0.536317 0.365134 1.381820 -0.418476 0.502942 -1.003893 -0.406491 0.484936 0.119083 -0.234493 -1.164390 -0.805968 0.619531 -0.588214 -0.097442 0.737090 -0.081727 -0.284741 -0.024552 0.376660 0.926042 -1.658246 1.400610 0.414597 0.581646 0.322120 -0.169519 0.155000 0.108531 0.063346 -0.604546 0.167656 0.278014 -0.594634 -0.174857 -0.386197 -1.061847 1.406068 0.285411 -0.720322 0.072279 0.037973 -1.022558 0.725818 -1.389286 -0.896130 0.257030 0.227401 0.276974 0.904397 0.004488 0.060472 -1.348271 0.003855 -1.382852 0.342401 -0.970972 0.456711 1.019041 -1.026447 -0.148482 0.138861 -0.181204 1.265583 0.532560 0.998135 0.318753 0.356762 -0.068389 0.203443 0.556188 -0.205720 0.017569 -0.260160 -1.085070 -0.288458 0.343501 -1.758488 0.330312 -0.279013 0.375371 0.145658 -0.114916 0.079446 0.360086 -0.685467 -0.927223 -0.029297 -0.095734 0.694842 1.440364 -0.302642 0.297531 -0.696408 0.996223 0.018354 0.445230 -0.162749 0.243479 -0.432057 -1.659750 -1.404421 0.309309 0.468977 -0.666125 -0.922645 -1.217735 0.208295 -0.560425 -0.501045 0.802704 1.560912 -0.569989 -0.862867 1.264287 0.508015 0.228473 1.316900 -0.313137 1.718670 -0.683215 0.201136 0.050590 -0.310268 -0.575191 -0.345447 0.115741 -0.290599 -0.182664 0.010416 -1.352840 0.450734 0.292209 -0.555302 -0.011231 0.025709 -0.382552 -0.842941 1.113888 0.218833 0.652823 0.244823 1.269645 -0.440042 -1.022635 0.811301 0.111188 0.142663 -0.285043 -0.618510 0.397210 0.649213 -0.685136 -0.161963 0.006692 -0.001907 -0.802152 0.264419 0.590644 0.170130 0.234751 0.386367 0.369524 1.231106 -0.094124 0.659658 -1.068153 0.329495 0.654617 -0.444738 -1.378241 0.180824 -0.868819 0.019484 0.615618 -0.422067 0.224165 -0.373202 -0.800440 0.005546 -0.295994 0.940540 0.224021 -0.353048 0.302075 -0.786730 0.406108 0.362164 0.801070 0.729236 0.957379 0.757554 -0.077891 0.213477 -0.054282 0.393930 -0.080735 0.142421 0.173498 0.590433 0.680976 0.388647 0.163240 0.662974 0.358535 -0.341413 0.918101 0.377764 1.435334 -0.151497 -0.042044 -0.289191 -0.502746 0.794346 1.935183 -0.918256 -0.112956 0.351447 0.345717 -0.048927 -0.876467 -0.027820 -0.416694 -0.738735 0.455756 -0.148909 0.046688 -0.215190 1.047840 -0.151664 -1.127906 0.784124 -0.014409 0.306580 0.246155 -0.017848 -0.069982 0.344532 -1.090663 0.484675 0.838301 0.800538 -0.375508 -0.758656 -0.138146 0.686373 -0.069947 0.541845 -0.905911 0.524176 0.987184 0.962950 0.533289 0.216377 -0.616977 -0.818892 0.319384 -0.055859 -0.245187 -0.260606 0.503364 -0.808564 0.059765 -0.168114 -0.710670 +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.424747 0.383132 0.736401 -1.428941 -1.487421 0.236893 0.199104 -0.642809 0.267522 1.392479 0.810506 -0.993252 -0.689734 2.225145 -0.379883 -1.072917 0.069145 -0.964936 -0.166464 0.116195 0.130405 1.015895 -0.212048 0.043873 0.196377 0.002408 -0.304840 0.670715 0.519751 -0.569540 -1.090917 -0.236203 -0.061372 1.638274 -0.027174 -0.176969 0.161374 2.455590 -1.648436 2.128484 -1.984835 -1.449188 1.127418 0.178391 -0.138988 -1.700268 -1.012429 0.919399 -0.292401 -0.950940 1.105359 0.000291 -0.020145 -0.386704 0.753968 1.207968 -2.481753 0.963061 0.423067 -0.007607 -0.164015 -0.288001 0.315015 0.600546 -1.123379 -1.006256 0.407626 0.278667 -0.861516 -0.012058 -0.413934 -1.948802 1.764413 0.637388 -1.115927 0.384655 0.645591 -1.838495 1.477389 -1.671552 -1.518554 0.006167 0.136431 -0.685497 1.373176 0.149380 1.078828 -2.514581 0.576404 -2.210081 1.140483 -1.650261 0.874343 1.873994 -1.011005 0.347216 0.567844 1.039668 1.669720 0.212005 1.643912 1.118510 1.010264 0.182399 0.989007 1.238136 -1.190827 -0.849441 -1.284359 -1.845651 0.141857 -0.458411 -2.532195 0.340804 -0.177519 0.180599 0.531135 -0.311404 -0.130630 1.558634 -2.249295 -0.589238 0.504965 -0.230554 0.697594 1.977847 -0.511383 0.303121 -0.634226 1.779480 -0.527313 0.776597 -0.130961 0.637277 -1.308482 -0.994861 -1.365307 0.383997 0.502513 -1.204511 -1.556435 -2.574109 -0.075465 0.541146 -0.642148 1.805653 3.057796 -0.962461 -1.633283 1.795633 0.665822 -0.144549 1.471061 -0.107195 2.428383 -1.260853 0.176334 -0.778169 -0.220942 -0.208780 1.761928 0.504394 -0.600648 0.494447 -0.242980 -2.238890 1.669809 -0.039368 -0.681728 -0.670033 0.283692 -0.928787 -1.013622 2.016945 -1.075773 1.475499 -0.431401 2.245251 -0.957123 -1.275089 1.012997 -1.386868 -0.054544 -1.540190 -0.863343 0.480813 1.368662 -1.345751 -0.505163 -0.689839 -0.749753 -0.802326 0.541286 -0.930651 0.315258 0.139362 0.423933 1.808835 1.873527 0.230264 0.300238 -1.833225 0.605585 0.865225 -0.632658 -2.016255 0.153068 -1.332111 -0.083965 0.385772 -0.472185 0.597381 -1.127443 -1.105744 -0.048611 -0.655348 0.559255 -0.052395 -2.169112 0.350359 -0.553851 1.169037 0.751915 1.331116 1.665853 1.663727 1.248320 -0.079149 0.203198 -0.338273 -0.579925 0.405818 0.365429 0.091688 0.894455 1.723592 0.708661 0.319724 1.445927 0.889521 -0.083497 1.600640 0.276471 2.339005 -0.009224 -0.159366 -0.133626 -0.495420 1.192783 2.899625 -0.729555 0.137486 0.874425 0.528716 -0.734770 -0.882202 -0.009265 -0.898243 -0.584931 0.972729 0.245696 -0.313242 -0.356072 1.956061 -0.000812 -2.502171 0.863110 -0.112621 0.709621 1.159960 -0.210472 0.359112 0.659104 -1.398746 1.460521 1.127840 1.149393 -1.166142 -0.867758 -0.097428 0.907321 1.054576 0.816792 -2.558471 0.653720 0.950913 1.809861 0.549747 1.632506 -1.201237 -0.484343 0.469814 -0.680624 -0.566732 -0.291480 0.916251 -0.922061 0.219454 -1.719293 -0.956434 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::__size_to_integer(unsigned long) = 0.122708 0.037020 0.062522 -0.232992 -0.086361 -0.004528 0.206103 -0.030616 0.015088 -0.028124 0.131758 -0.105259 -0.139825 0.360027 -0.008189 -0.156503 0.088239 -0.278660 -0.111916 0.177673 0.010582 0.154049 -0.018376 -0.062205 0.122739 0.094710 -0.093901 0.094255 -0.002579 -0.298265 -0.211321 -0.009361 0.045453 0.246683 -0.056537 0.039899 0.007468 0.344821 -0.169010 0.379288 -0.303005 -0.132370 0.236690 -0.027118 -0.083362 -0.428455 -0.184098 0.168172 0.091083 -0.244861 0.125463 0.005176 -0.120652 -0.157762 0.068562 0.339454 -0.422291 0.145491 0.124062 0.103022 -0.011896 -0.039500 0.035004 -0.105961 -0.062350 -0.187484 0.035195 -0.071516 -0.212946 0.031150 -0.107128 -0.279445 0.431605 0.117932 -0.091801 0.115948 -0.000952 -0.285121 0.208644 -0.296501 -0.133143 -0.024731 0.063020 0.103965 0.221113 -0.019806 0.026156 -0.366979 -0.014719 -0.299857 0.146404 -0.319798 0.146792 0.255517 -0.115631 0.105726 0.038836 -0.007696 0.123409 0.175189 0.279185 0.127583 0.140251 -0.055105 0.160746 0.084101 -0.159486 -0.154597 -0.135530 -0.236787 0.038489 0.044803 -0.436483 0.069081 -0.069354 0.053871 0.097564 0.026850 0.089101 0.096459 -0.251105 0.005949 0.126548 -0.038861 0.103498 0.382717 -0.032064 -0.073529 -0.207776 0.221728 0.014312 0.187294 -0.057655 0.094089 -0.102371 -0.371244 -0.038413 -0.078736 0.015038 -0.196692 -0.237776 -0.376508 0.058053 0.066728 -0.162241 0.145975 0.419385 -0.121081 -0.208320 0.256912 0.360571 0.094793 0.132011 -0.020083 0.417124 -0.228149 0.065293 0.052948 0.010704 0.008211 -0.001019 0.004897 -0.152598 0.010163 -0.052657 -0.631972 0.478814 0.020354 -0.009953 0.273902 -0.045333 -0.143434 -0.281274 0.307069 0.171723 0.327638 -0.018297 0.348824 -0.133851 -0.140287 0.168352 0.022393 0.009836 -0.287078 -0.147785 0.066927 0.134192 -0.201982 -0.083775 -0.040998 -0.082711 -0.110289 0.158539 -0.141909 0.023028 -0.055288 0.015731 0.025679 0.174883 -0.114779 0.142629 -0.306385 0.085761 0.085452 -0.046553 -0.355396 0.070615 -0.168302 -0.022222 0.141973 -0.082476 0.048140 -0.069312 -0.175097 0.150948 -0.097704 0.010586 -0.086273 -0.094150 -0.082845 -0.078973 0.080912 0.072618 0.264850 0.270343 0.170557 0.034927 -0.023359 0.024020 0.000957 -0.230872 -0.040265 -0.150288 0.150490 0.148098 0.085375 0.103961 0.023048 0.226714 0.068585 -0.000105 0.256927 0.238231 0.314730 0.078378 -0.149610 0.094050 -0.159233 0.220791 0.316462 -0.184644 0.001088 0.141106 0.112823 -0.119994 -0.083207 -0.041172 -0.085634 -0.296204 0.308013 -0.038622 0.002696 -0.025394 0.353924 -0.057551 -0.396404 0.113430 -0.005401 0.137817 0.104419 0.020756 0.139699 0.177110 -0.130654 0.059953 0.074227 0.266356 -0.161335 -0.202913 -0.014376 0.109836 0.071184 0.089160 -0.344984 0.067711 0.117281 0.296695 0.055772 0.102763 -0.089596 0.002168 -0.017500 0.025762 -0.042102 -0.053180 0.119296 -0.104407 -0.165570 -0.343777 0.035069 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.053553 0.043895 0.024069 -0.177043 -0.115813 -0.042066 0.210259 0.037681 -0.031649 -0.195877 0.102177 -0.107553 -0.222049 0.240349 0.076257 -0.183055 0.033826 -0.285028 -0.154163 0.198448 -0.032907 0.102237 -0.009530 0.011150 0.094000 0.153106 -0.138678 0.105557 0.108165 -0.334692 -0.173690 0.010828 0.047385 0.173947 -0.063551 -0.000563 0.062598 0.345717 -0.057816 0.244943 -0.113824 -0.028138 0.157895 -0.063068 -0.131061 -0.320903 -0.139228 0.207302 -0.067585 -0.184750 0.175247 0.099751 -0.180023 -0.112547 0.095632 0.300945 -0.386358 0.227231 0.139397 0.188332 0.062199 -0.040492 -0.080076 -0.148302 0.049328 -0.142274 -0.004730 -0.165984 -0.183405 -0.006014 -0.070998 -0.162685 0.441598 0.102930 -0.053245 0.132396 0.052092 -0.137113 0.183366 -0.248552 -0.138673 0.016549 0.027989 0.135672 0.294491 -0.081250 -0.137766 -0.265569 -0.068781 -0.233674 0.062751 -0.328244 0.034475 0.254729 -0.103132 0.099699 -0.005998 -0.182279 0.037119 0.133136 0.215985 0.008643 0.112828 0.016896 0.091272 -0.019365 -0.116459 -0.098878 -0.126741 -0.212405 0.020001 0.079807 -0.315290 0.094588 0.019515 0.109106 0.134192 0.085044 0.076764 -0.093783 -0.062606 0.068236 0.099736 -0.039724 0.106100 0.373751 -0.091398 -0.068503 -0.225177 0.191541 0.052096 0.254575 -0.036120 0.057952 0.091837 -0.332462 -0.067304 -0.072585 0.031492 -0.071870 -0.172394 -0.221124 0.101121 -0.064899 -0.155484 0.073952 0.348920 -0.100390 -0.094036 0.291731 0.301349 0.246012 0.037333 -0.040962 0.313440 -0.090433 -0.034903 0.090555 -0.076964 -0.053934 -0.154949 0.053021 -0.126957 -0.022872 -0.009229 -0.436362 0.320775 0.048411 -0.059762 0.321600 -0.065685 -0.133913 -0.328555 0.282355 0.320538 0.237263 0.148580 0.260731 0.002391 -0.105485 0.174223 0.248956 0.093878 -0.282513 -0.195586 0.106078 -0.005581 -0.142502 -0.052059 -0.044488 0.012691 -0.174019 0.060853 0.040121 0.026820 -0.013876 0.134727 -0.109880 0.195339 -0.104404 0.123992 -0.332327 0.090317 -0.021586 -0.074612 -0.200983 0.114675 -0.052246 -0.023664 0.243635 -0.081502 -0.033898 0.015736 -0.164212 0.158257 -0.067647 0.022857 0.004337 -0.060820 -0.116690 0.012179 0.032409 0.123575 0.163276 0.237066 0.113834 0.085336 0.055496 0.005911 0.169893 -0.175274 -0.141595 -0.233713 0.220539 0.139759 -0.057069 0.135917 -0.016587 0.171410 0.063720 -0.085381 0.201356 0.276125 0.289743 0.166768 -0.202214 0.082351 -0.104402 0.180487 0.214194 -0.242675 0.032917 0.141075 0.143298 -0.052950 -0.098500 -0.056526 -0.101424 -0.231743 0.276811 -0.147367 -0.027735 0.057951 0.221162 -0.146079 -0.279022 0.028647 0.014924 0.137632 0.033261 0.096160 0.095977 0.150934 -0.225785 0.046527 0.072764 0.188493 -0.072394 -0.101575 -0.002027 0.046356 -0.094620 0.138744 -0.190504 -0.065373 0.074219 0.193807 0.073887 -0.036806 -0.040971 -0.084382 0.046334 0.037396 -0.021896 -0.064585 0.094005 -0.094712 -0.153296 -0.205218 -0.053582 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__void std::__fill_a(int*, int*, int const&) = 0.185245 0.355860 0.277522 -0.607266 -0.910060 -0.034189 0.118877 -0.183784 0.018826 0.098041 0.448484 -0.633895 -0.337059 1.083663 -0.211089 -0.481430 -0.159109 -0.574882 -0.286489 0.123705 0.057982 0.465251 -0.083475 0.168668 0.030123 0.214170 -0.282191 0.286139 0.524987 -0.514187 -0.561181 -0.023116 0.152561 0.627339 -0.041508 -0.322506 0.221729 1.166414 -0.584472 0.632041 -0.659494 -0.362825 0.382546 0.042063 -0.159879 -1.055611 -0.782569 0.536534 -0.276489 -0.245695 0.628826 0.213189 -0.282237 -0.082195 0.437113 0.637373 -1.260230 0.833736 0.308459 0.304142 0.197252 -0.099515 -0.081028 0.069564 -0.173402 -0.422122 0.101893 0.058250 -0.348839 -0.021223 -0.101436 -0.792983 1.088204 0.171224 -0.463076 0.217601 0.350088 -0.789928 0.730900 -0.929149 -0.681795 0.170564 0.084974 0.041457 0.775717 -0.119515 0.031065 -1.011508 0.010958 -0.961320 0.312378 -0.954575 0.145157 0.837333 -0.639605 0.093540 0.120383 -0.032766 0.864404 0.381093 0.711698 0.413977 0.511787 0.100380 0.302820 0.434932 -0.321186 -0.208059 -0.535542 -0.926943 -0.054686 0.056832 -1.314030 0.238719 0.135876 0.076934 0.194949 -0.093727 0.140523 0.445959 -0.518238 -0.190314 0.268645 -0.085643 0.209579 1.112065 -0.366967 0.127694 -0.590990 0.782846 -0.058986 0.583403 0.019358 0.161761 -0.398585 -1.094986 -0.849049 0.182072 0.209308 -0.352323 -0.622162 -0.976124 0.183754 -0.177648 -0.380261 0.449121 1.298170 -0.403982 -0.651569 0.978130 0.778671 0.143098 0.633589 -0.160017 1.228128 -0.364685 -0.079251 -0.156570 -0.347160 -0.312986 0.123296 0.286518 -0.247880 0.036221 -0.006136 -1.443377 0.803610 0.013662 -0.407910 0.160260 0.098918 -0.385775 -0.652725 0.994131 0.255999 0.623694 0.092587 0.931749 -0.209690 -0.662154 0.519049 -0.003773 0.243014 -0.595696 -0.415950 0.376151 0.481934 -0.475435 -0.148014 -0.171676 -0.223784 -0.567644 0.082943 -0.050014 0.179530 0.134485 0.474516 0.192180 0.969637 0.020178 0.407819 -0.965651 0.287638 0.296573 -0.264205 -1.071073 0.238246 -0.504229 -0.003440 0.239543 -0.285698 0.053950 -0.268743 -0.572506 0.043760 -0.410056 0.344904 0.112749 -0.531666 0.074647 -0.442383 0.578727 0.275989 0.472399 0.867389 0.682430 0.689137 0.094407 0.114646 0.052303 -0.011413 0.026434 0.021788 0.057090 0.419292 0.587124 0.363368 0.033141 0.575848 0.360602 -0.229748 0.678648 0.372462 1.141062 0.105141 -0.172937 -0.176948 -0.178005 0.586812 1.408075 -0.323278 0.012638 0.345361 0.369749 -0.176188 -0.553349 -0.101061 -0.344190 -0.462331 0.567495 -0.129962 -0.205141 0.073019 0.688715 -0.170387 -0.906330 0.283123 -0.023855 0.293960 0.256524 0.062859 0.060802 0.360058 -0.773859 0.502149 0.518671 0.505401 -0.369622 -0.656497 -0.061126 0.368076 0.151763 0.541581 -1.066037 0.296879 0.595100 0.680645 0.143456 0.392150 -0.517365 -0.533173 0.365266 -0.081410 -0.297180 -0.090897 0.366554 -0.645065 0.038800 -0.392551 -0.667246 +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.174868 0.391051 0.819816 -1.301045 -1.170154 0.010557 0.821688 -0.321648 0.216389 1.226106 0.673481 -0.794392 -1.059167 1.817028 -0.100218 -0.963291 0.233502 -1.148867 -0.268729 0.111174 0.031575 0.892086 -0.100037 0.017516 0.401430 0.043628 -0.345612 0.956113 0.361604 -0.677797 -0.733373 -0.172568 -0.008437 1.463239 -0.242107 -0.103628 0.098291 2.280516 -1.860284 2.033555 -1.686187 -1.260471 1.280459 0.050281 -0.310841 -1.710113 -0.767187 0.943800 -0.431455 -1.040287 1.007100 0.198731 0.005376 -0.589283 0.683071 1.367534 -2.387030 0.753816 0.419077 -0.101869 -0.239203 -0.239883 0.094407 0.327570 -0.923114 -0.938238 0.270072 -0.314813 -0.828306 0.039679 -0.357836 -1.509373 1.501918 0.556714 -0.776689 0.588081 0.631179 -1.534620 1.354499 -1.419506 -1.215575 -0.137566 0.150265 -0.635132 1.334717 -0.005698 0.707684 -2.218424 0.134857 -1.799903 1.057578 -1.638569 0.704674 1.713357 -0.619614 0.630320 0.389531 0.425934 1.021535 -0.033974 1.445123 0.842210 1.246563 0.313900 0.915791 1.045195 -1.327899 -0.995441 -1.396355 -1.538393 0.271088 -0.470637 -1.923030 0.301742 -0.118497 -0.064051 0.848967 -0.375606 -0.164372 1.377385 -1.700703 0.047012 0.646813 -0.254665 0.500005 1.888029 -0.424535 0.030744 -0.515761 1.567069 -0.419846 1.064528 -0.144120 0.633226 -0.753687 -0.916142 -0.773191 0.080351 0.262328 -0.943674 -1.338592 -2.240142 -0.006262 0.395536 -0.588343 1.339273 2.787342 -0.790376 -1.417847 1.632094 0.710718 0.213202 0.824794 -0.030009 2.041683 -1.051094 0.014434 -0.761277 -0.215157 0.074147 2.195037 0.478446 -0.674293 0.503006 -0.166313 -2.031540 1.428135 -0.014489 -0.471772 -0.211615 0.200451 -0.946827 -1.118467 1.854798 -0.665046 1.495988 -0.359191 1.989033 -0.743065 -1.131273 0.905972 -0.934247 0.069698 -1.772597 -0.964820 0.621410 0.888125 -1.106999 -0.530049 -0.994097 -0.526663 -0.685769 0.502076 -1.329946 0.278253 -0.025039 0.423179 1.365013 1.501156 0.048001 0.228276 -1.827228 0.574577 0.520637 -0.367889 -1.883362 0.285225 -0.896685 -0.164427 0.629732 -0.384412 0.524105 -0.806170 -0.924633 0.309966 -0.664124 0.082944 -0.181753 -2.266086 0.158992 -0.208001 0.874576 0.784477 1.191983 1.605450 1.264628 0.896959 0.145463 0.051745 -0.079140 -0.936584 0.237408 -0.025233 0.206078 0.839377 1.321612 0.741039 0.211777 1.369250 0.814112 -0.270396 1.425643 0.438019 1.962508 0.243911 -0.425024 0.157010 -0.383970 0.996314 2.148073 -0.456365 -0.026568 0.957800 0.601450 -0.673013 -0.728027 -0.110853 -0.914110 -0.407328 1.304865 0.131454 -0.536690 -0.111962 1.772249 -0.168279 -2.346619 0.637816 -0.063265 0.738415 0.851630 -0.057816 0.360357 0.768796 -1.317881 1.262789 0.824038 1.021945 -1.055297 -0.632040 -0.016064 0.684998 0.984791 0.727749 -2.834680 -0.001849 0.531747 1.598865 0.474424 1.754709 -0.892413 -0.312876 0.356313 -0.543735 -0.473102 -0.323988 0.758284 -0.828774 0.122879 -1.837129 -0.560552 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__alloc_traits, int>::_S_select_on_copy(std::allocator const&) = 0.167518 0.264147 0.200340 -0.416801 -0.572875 -0.007497 0.082565 -0.090472 -0.011934 -0.065494 0.291056 -0.349412 -0.301579 0.589217 -0.097828 -0.396717 -0.131990 -0.573611 -0.265599 0.024554 -0.015633 0.255920 -0.054587 0.110482 0.061482 0.134409 -0.218943 0.210399 0.373375 -0.536816 -0.348338 0.013263 0.082925 0.452636 -0.055944 -0.249275 0.211013 0.848118 -0.199944 0.166457 -0.347472 -0.279653 0.302390 -0.024464 -0.209046 -0.582914 -0.396702 0.407610 -0.238077 -0.092597 0.424700 0.171751 -0.270092 -0.105613 0.224816 0.474750 -0.944225 0.637747 0.205457 0.246860 0.040843 -0.075481 -0.020124 -0.047743 0.080163 -0.308454 0.158249 0.002544 -0.308629 -0.014268 -0.048661 -0.512016 0.834262 0.139748 -0.171770 0.204997 0.230245 -0.429302 0.504194 -0.554316 -0.461079 0.087302 0.109355 -0.012470 0.619120 -0.148666 -0.108082 -0.691564 0.010278 -0.648591 0.159536 -0.631613 0.110953 0.544250 -0.443024 0.128842 0.081532 -0.109619 0.420508 0.163496 0.558587 0.103090 0.345069 0.149882 0.172849 0.145645 -0.201176 -0.078035 -0.378510 -0.644949 -0.039464 0.068027 -0.844811 0.223041 0.046169 0.007619 0.174988 -0.019129 0.095554 0.219672 -0.321768 -0.147626 0.174708 -0.067126 0.174629 0.757859 -0.257300 0.050250 -0.384821 0.551570 -0.036399 0.403812 -0.000940 0.107404 0.014850 -0.737382 -0.613375 0.079285 0.179865 -0.245647 -0.437748 -0.507842 0.134026 -0.210396 -0.285207 0.431044 0.941099 -0.270711 -0.448730 0.710817 0.528048 0.250100 0.459781 -0.089211 0.835683 -0.241377 -0.100982 -0.052446 -0.228904 -0.150446 -0.310475 0.180643 -0.095165 0.035105 0.109638 -0.612151 0.565191 -0.013352 -0.269777 0.364545 0.076284 -0.286721 -0.586478 0.627127 0.600648 0.498872 0.356563 0.692602 -0.139786 -0.480884 0.367031 0.231638 0.183541 -0.398073 -0.330686 0.182270 0.228708 -0.251101 -0.123278 -0.152454 -0.100435 -0.404074 0.063717 0.305123 0.228156 0.078661 0.325429 -0.071259 0.726794 -0.032665 0.265204 -0.766284 0.182164 0.221453 -0.140355 -0.569896 0.156319 -0.263629 0.002964 0.370832 -0.200311 0.078092 -0.103653 -0.372064 0.075800 -0.159111 0.224565 0.090219 -0.396921 0.001314 -0.274172 0.272770 0.195947 0.348434 0.653139 0.428305 0.442041 0.067575 0.097220 0.137952 0.029799 -0.187599 -0.133418 0.326432 0.319508 0.302960 0.282480 0.062399 0.423459 0.276944 -0.210961 0.496576 0.280524 0.877907 -0.001600 -0.160615 -0.157508 -0.103766 0.432038 0.914467 -0.328461 0.007363 0.274409 0.377375 -0.071605 -0.530435 -0.084083 -0.258482 -0.192737 0.331366 -0.097171 -0.157547 0.062600 0.496521 -0.130407 -0.639124 0.242573 0.007015 0.214840 0.106193 0.063259 -0.003564 0.290093 -0.624572 0.247339 0.354839 0.366656 -0.289554 -0.258104 -0.011599 0.375372 -0.311474 0.396000 -0.597109 0.185291 0.354182 0.401589 0.181462 0.139125 -0.337386 -0.444405 0.268996 -0.049010 -0.168080 0.100546 0.278663 -0.533225 0.050305 -0.251579 -0.408934 +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.681735 0.206449 0.583804 -1.242324 -1.763121 0.721935 -1.054076 -0.728780 0.228451 -0.203838 0.939372 -0.829209 -0.296933 1.677851 -0.406790 -1.225117 -0.258611 -1.019275 -0.099192 0.025210 -0.000664 0.489316 -0.426499 0.486637 -0.358063 0.045908 -0.342229 0.365364 1.394636 -0.722741 -1.668141 -0.095194 -0.493217 1.492916 0.502212 -0.885935 1.007133 2.675934 -0.204589 0.531590 -0.739962 -0.758873 0.241759 0.142599 -0.566851 -0.555124 -1.239907 0.792095 -1.309095 0.241770 1.780784 -0.159191 -0.191670 0.471259 0.818277 0.824161 -2.467160 1.565452 0.330066 1.053395 0.480428 -0.538299 0.139238 0.468876 -0.176725 -0.664003 1.080151 0.897214 -0.657551 -0.329348 -0.360011 -2.004113 2.304819 0.737170 -0.951478 -0.019527 1.122921 -1.676756 1.323444 -1.096741 -2.034185 0.458132 -0.261473 -0.932236 2.287233 -0.511508 0.340487 -2.095705 0.817774 -2.471887 0.361738 -1.674262 0.555648 1.808691 -1.931114 -0.280029 0.684967 1.182748 1.548425 0.083463 1.682598 0.607219 -0.043723 0.249656 0.909112 0.364717 -0.319857 0.178293 -0.891044 -1.801920 -0.580575 -0.319045 -2.824169 0.526468 -0.119270 0.390747 -0.204219 0.274521 -0.315841 0.755473 -1.272634 -0.976947 -0.185405 -0.204110 0.911706 1.992713 -0.954624 0.747460 -0.790872 1.956038 -0.572021 0.477178 -0.414334 0.204646 -0.402655 -1.090475 -2.760783 0.762779 1.279189 -0.862729 -1.751743 -1.459782 -0.048974 -0.454156 -0.453364 2.385934 2.757486 -0.877542 -1.174690 2.074008 0.464686 0.517588 2.437853 -0.233396 2.147178 -0.760436 -0.005896 -0.730208 -0.616844 -1.379238 -1.785348 0.574856 0.374172 0.279828 0.296836 -0.298186 1.891018 -0.070197 -1.254732 -0.265664 0.257105 -0.736787 -1.535260 2.146377 0.562351 0.691937 1.429509 2.205746 -0.484555 -1.494649 1.038239 0.214674 0.548186 -0.843268 -0.873128 0.197631 1.112833 -0.854387 -0.551842 -0.214995 -0.110851 -0.999412 -0.039742 2.409437 0.629242 0.630739 1.019593 0.611289 2.824572 0.586250 0.591768 -1.885756 0.561103 1.090542 -1.257693 -0.840482 0.310878 -1.038436 0.172936 0.578944 -0.360048 0.392080 -1.326405 -1.467924 -0.688313 0.097143 1.522275 1.012251 -2.343319 0.522935 -0.678699 0.580861 1.047883 0.715883 1.657444 1.697772 2.008514 -0.384406 0.439311 0.479958 0.529350 -0.487594 0.467202 1.120478 0.645404 1.432129 0.668296 0.218788 0.695393 1.151939 0.028387 1.231203 0.666284 2.665863 0.268108 0.016902 -0.955039 -0.497076 1.287422 3.307153 -1.288804 0.824119 0.598564 1.192838 -0.135163 -2.181250 0.120830 -0.836172 -0.053000 -0.182402 -0.330697 -0.084025 -0.416298 1.455629 -0.047480 -1.811189 0.607520 0.033776 0.426820 1.068650 0.010928 -0.148507 0.129856 -2.247195 1.799306 1.313043 0.855338 -0.550451 -0.204182 -0.098668 0.967321 -0.989802 1.086846 -0.523373 1.363132 1.103200 1.234166 1.340706 0.162067 -1.204752 -1.325678 0.806644 -1.088457 -0.435499 0.334050 1.194971 -1.573136 0.644904 -0.484844 -2.062187 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::begin() const = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::vector >::end() const = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__std::allocator_traits >::select_on_container_copy_construction(std::allocator const&) = 0.167518 0.264147 0.200340 -0.416801 -0.572875 -0.007497 0.082565 -0.090472 -0.011934 -0.065494 0.291056 -0.349412 -0.301579 0.589217 -0.097828 -0.396717 -0.131990 -0.573611 -0.265599 0.024554 -0.015633 0.255920 -0.054587 0.110482 0.061482 0.134409 -0.218943 0.210399 0.373375 -0.536816 -0.348338 0.013263 0.082925 0.452636 -0.055944 -0.249275 0.211013 0.848118 -0.199944 0.166457 -0.347472 -0.279653 0.302390 -0.024464 -0.209046 -0.582914 -0.396702 0.407610 -0.238077 -0.092597 0.424700 0.171751 -0.270092 -0.105613 0.224816 0.474750 -0.944225 0.637747 0.205457 0.246860 0.040843 -0.075481 -0.020124 -0.047743 0.080163 -0.308454 0.158249 0.002544 -0.308629 -0.014268 -0.048661 -0.512016 0.834262 0.139748 -0.171770 0.204997 0.230245 -0.429302 0.504194 -0.554316 -0.461079 0.087302 0.109355 -0.012470 0.619120 -0.148666 -0.108082 -0.691564 0.010278 -0.648591 0.159536 -0.631613 0.110953 0.544250 -0.443024 0.128842 0.081532 -0.109619 0.420508 0.163496 0.558587 0.103090 0.345069 0.149882 0.172849 0.145645 -0.201176 -0.078035 -0.378510 -0.644949 -0.039464 0.068027 -0.844811 0.223041 0.046169 0.007619 0.174988 -0.019129 0.095554 0.219672 -0.321768 -0.147626 0.174708 -0.067126 0.174629 0.757859 -0.257300 0.050250 -0.384821 0.551570 -0.036399 0.403812 -0.000940 0.107404 0.014850 -0.737382 -0.613375 0.079285 0.179865 -0.245647 -0.437748 -0.507842 0.134026 -0.210396 -0.285207 0.431044 0.941099 -0.270711 -0.448730 0.710817 0.528048 0.250100 0.459781 -0.089211 0.835683 -0.241377 -0.100982 -0.052446 -0.228904 -0.150446 -0.310475 0.180643 -0.095165 0.035105 0.109638 -0.612151 0.565191 -0.013352 -0.269777 0.364545 0.076284 -0.286721 -0.586478 0.627127 0.600648 0.498872 0.356563 0.692602 -0.139786 -0.480884 0.367031 0.231638 0.183541 -0.398073 -0.330686 0.182270 0.228708 -0.251101 -0.123278 -0.152454 -0.100435 -0.404074 0.063717 0.305123 0.228156 0.078661 0.325429 -0.071259 0.726794 -0.032665 0.265204 -0.766284 0.182164 0.221453 -0.140355 -0.569896 0.156319 -0.263629 0.002964 0.370832 -0.200311 0.078092 -0.103653 -0.372064 0.075800 -0.159111 0.224565 0.090219 -0.396921 0.001314 -0.274172 0.272770 0.195947 0.348434 0.653139 0.428305 0.442041 0.067575 0.097220 0.137952 0.029799 -0.187599 -0.133418 0.326432 0.319508 0.302960 0.282480 0.062399 0.423459 0.276944 -0.210961 0.496576 0.280524 0.877907 -0.001600 -0.160615 -0.157508 -0.103766 0.432038 0.914467 -0.328461 0.007363 0.274409 0.377375 -0.071605 -0.530435 -0.084083 -0.258482 -0.192737 0.331366 -0.097171 -0.157547 0.062600 0.496521 -0.130407 -0.639124 0.242573 0.007015 0.214840 0.106193 0.063259 -0.003564 0.290093 -0.624572 0.247339 0.354839 0.366656 -0.289554 -0.258104 -0.011599 0.375372 -0.311474 0.396000 -0.597109 0.185291 0.354182 0.401589 0.181462 0.139125 -0.337386 -0.444405 0.268996 -0.049010 -0.168080 0.100546 0.278663 -0.533225 0.050305 -0.251579 -0.408934 +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.701802 0.173813 0.580641 -1.253866 -1.734705 0.731729 -1.034074 -0.734924 0.220752 -0.216483 0.925365 -0.797947 -0.289990 1.673471 -0.408323 -1.207387 -0.218720 -1.037498 -0.069151 0.050112 -0.011680 0.496883 -0.436621 0.472966 -0.341674 0.042241 -0.343045 0.374224 1.376996 -0.709318 -1.675655 -0.110924 -0.519170 1.507282 0.527867 -0.895945 1.007937 2.698343 -0.204048 0.555197 -0.739835 -0.740051 0.252085 0.125107 -0.572636 -0.574451 -1.242571 0.777223 -1.310893 0.256473 1.779878 -0.191224 -0.168500 0.473640 0.805369 0.831965 -2.468039 1.549151 0.339795 1.072342 0.494172 -0.569073 0.122864 0.437976 -0.186235 -0.662146 1.084181 0.886443 -0.659339 -0.324160 -0.387735 -1.978835 2.292084 0.759393 -0.952490 -0.031009 1.110021 -1.708565 1.300076 -1.098537 -2.045947 0.441171 -0.287427 -0.931960 2.311653 -0.529321 0.344944 -2.100741 0.818900 -2.493324 0.336894 -1.691715 0.568511 1.832068 -1.935803 -0.268724 0.689340 1.202607 1.517614 0.078078 1.684892 0.625567 -0.080253 0.246712 0.925702 0.363484 -0.306991 0.180909 -0.864194 -1.752152 -0.600122 -0.318930 -2.828958 0.522967 -0.139436 0.392875 -0.229591 0.297326 -0.342724 0.755327 -1.262750 -0.966856 -0.199734 -0.214066 0.915310 1.979422 -0.941645 0.734065 -0.806418 1.957147 -0.573961 0.490893 -0.453555 0.218290 -0.417502 -1.101447 -2.748788 0.731331 1.277779 -0.868717 -1.784158 -1.464097 -0.067310 -0.468204 -0.448523 2.386916 2.740365 -0.878529 -1.162539 2.082389 0.449217 0.538067 2.442135 -0.221980 2.101819 -0.742141 -0.008094 -0.730767 -0.611402 -1.408333 -1.808357 0.553025 0.375067 0.279354 0.281963 -0.286429 1.912396 -0.055323 -1.260379 -0.274238 0.224045 -0.744717 -1.549529 2.167866 0.534847 0.681929 1.416533 2.211408 -0.466513 -1.486856 1.028016 0.217097 0.566702 -0.855484 -0.853668 0.195371 1.095027 -0.865382 -0.586251 -0.192819 -0.077394 -0.992766 -0.022745 2.411185 0.607899 0.638104 1.016929 0.619985 2.810967 0.565293 0.605699 -1.855284 0.573509 1.092275 -1.261997 -0.851369 0.316748 -1.006621 0.160494 0.572044 -0.331768 0.393878 -1.344190 -1.471973 -0.668634 0.120545 1.523991 1.038338 -2.367128 0.533001 -0.665526 0.538021 1.059065 0.711527 1.637956 1.679626 1.979069 -0.393073 0.425382 0.492140 0.509487 -0.487480 0.481649 1.113879 0.632054 1.433844 0.684392 0.219248 0.663815 1.168940 0.050236 1.218993 0.694675 2.645974 0.281807 -0.004401 -0.933807 -0.501109 1.297893 3.276728 -1.273660 0.830872 0.598430 1.180980 -0.132570 -2.183792 0.131677 -0.826415 -0.055693 -0.192978 -0.339348 -0.077892 -0.421766 1.477001 -0.061473 -1.815901 0.607307 0.058665 0.437281 1.059528 0.033370 -0.140187 0.132422 -2.238185 1.826633 1.303315 0.858026 -0.525881 -0.206380 -0.094071 0.940669 -0.969991 1.089333 -0.505356 1.351731 1.087723 1.242440 1.360121 0.159249 -1.169523 -1.310627 0.789361 -1.090240 -0.424180 0.332531 1.199499 -1.562471 0.635183 -0.484768 -2.047870 +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.694328 0.151546 0.605215 -1.111001 -1.615032 0.744151 -1.119858 -0.731372 0.226958 -0.111539 0.802820 -0.671637 -0.181160 1.511600 -0.461062 -1.117722 -0.288159 -0.903830 -0.034709 -0.080422 0.003165 0.423265 -0.409806 0.461685 -0.378644 -0.062323 -0.232549 0.265124 1.150044 -0.584525 -1.503010 -0.130671 -0.512326 1.384218 0.515622 -0.755506 0.910947 2.453708 -0.034962 0.460239 -0.717552 -0.830445 0.141800 0.134111 -0.422487 -0.383279 -1.068182 0.672900 -1.157058 0.319072 1.603568 -0.198207 -0.171908 0.486558 0.737178 0.593752 -2.220552 1.399276 0.226902 0.884007 0.379498 -0.515426 0.167809 0.478309 -0.160493 -0.577894 1.055845 1.025784 -0.610816 -0.240602 -0.283791 -1.845054 2.055420 0.691246 -0.868843 -0.064293 1.105013 -1.473135 1.200950 -1.003330 -1.916321 0.391434 -0.261686 -0.958401 2.080383 -0.394944 0.415151 -1.928448 0.930833 -2.294625 0.344532 -1.461692 0.529565 1.621877 -1.760497 -0.256511 0.725231 1.293558 1.440912 0.033058 1.541280 0.599785 -0.127601 0.280724 0.865649 0.297865 -0.255768 0.199553 -0.810711 -1.650630 -0.554701 -0.361825 -2.564308 0.451070 -0.083551 0.407819 -0.294805 0.312737 -0.314751 0.698682 -1.401732 -0.990541 -0.189513 -0.182361 0.844841 1.657625 -0.886278 0.752072 -0.663905 1.811810 -0.631228 0.315916 -0.372210 0.179466 -0.400709 -0.836589 -2.649447 0.746560 1.214186 -0.801651 -1.627467 -1.306455 -0.137558 -0.264522 -0.375363 2.366275 2.539674 -0.808943 -1.095928 1.863245 0.318671 0.382819 2.336429 -0.148727 1.873522 -0.670996 -0.030583 -0.725977 -0.544491 -1.255001 -1.789982 0.541072 0.422829 0.346009 0.326256 -0.031297 1.740549 -0.172407 -1.191829 -0.406975 0.257328 -0.675416 -1.287005 1.905080 0.422040 0.615794 1.318588 2.036035 -0.493282 -1.360210 0.863195 -0.040356 0.481138 -0.685021 -0.687924 0.048866 1.088214 -0.843894 -0.542994 -0.147281 -0.201289 -0.858316 -0.045792 2.299527 0.612252 0.620812 0.917712 0.729374 2.643710 0.624291 0.473207 -1.675137 0.500524 1.033933 -1.140741 -0.678850 0.242259 -0.942245 0.176547 0.458663 -0.281719 0.377494 -1.263018 -1.299029 -0.751531 0.116918 1.423257 0.974887 -2.122303 0.485781 -0.609715 0.568514 0.936619 0.613896 1.537878 1.586879 1.895625 -0.395127 0.422461 0.366504 0.612275 -0.420898 0.567846 1.030130 0.546503 1.384556 0.601246 0.225242 0.626481 1.132344 0.103503 1.115006 0.499447 2.477758 0.080942 0.112290 -0.970996 -0.386238 1.176548 3.066003 -1.210863 0.858129 0.529313 1.079313 -0.098878 -1.998688 0.145095 -0.759223 0.058766 -0.307248 -0.177575 -0.059182 -0.429104 1.321132 0.033742 -1.634715 0.576466 0.044255 0.354824 1.038210 -0.027590 -0.179742 0.084296 -2.035077 1.672093 1.221886 0.750050 -0.558541 -0.129028 -0.090461 0.932905 -0.949874 1.013293 -0.334056 1.350019 1.027760 1.101635 1.216037 0.107442 -1.157119 -1.257187 0.766715 -1.092807 -0.427092 0.461259 1.125782 -1.408328 0.657798 -0.390549 -1.981192 +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*) = 0.745867 -0.099221 0.810881 -1.642571 -2.517915 1.231381 -2.107169 -1.259783 0.349963 -0.391321 1.234223 -1.135019 -0.330396 2.356361 -0.650276 -1.923270 -0.462995 -0.496058 0.172980 -0.094170 0.059640 0.630050 -0.659105 0.710632 -0.664004 -0.257501 -0.301235 0.472128 2.155461 -0.413462 -2.242038 -0.293701 -0.859666 2.139646 0.944221 -0.765595 1.366713 3.746238 0.106862 1.152518 -1.176436 -1.229453 0.195273 0.289854 -0.615589 -0.445734 -1.845175 0.877157 -2.461529 0.580108 2.462741 -0.443535 0.006667 0.889409 1.258062 0.805841 -3.203712 2.091517 0.293399 1.128834 0.745909 -0.775734 -0.039115 0.857964 -0.470363 -0.816080 1.382463 1.813176 -0.833697 -0.459853 -0.407022 -2.781020 3.399002 1.045283 -1.634580 -0.191057 1.771233 -2.105814 1.674977 -1.315770 -3.069319 0.537086 -0.458160 -1.367400 3.127985 -0.393682 0.959633 -2.981013 1.371621 -3.635372 0.726182 -2.143699 0.905977 2.541003 -2.994315 -0.426885 1.269267 1.994598 2.274609 0.165687 2.245100 0.972362 -0.546699 0.408705 1.395663 0.447807 -0.300148 0.193795 -1.136950 -2.476417 -0.898673 -0.780128 -4.196430 0.513610 -0.208827 1.191225 -0.642536 0.620803 -0.514332 0.898300 -2.114427 -1.351938 -0.390649 -0.296790 1.442663 2.401945 -1.296516 1.247837 -0.894165 2.789176 -1.161295 0.281695 -0.678265 0.364332 -0.665807 -1.116439 -4.207718 1.249632 1.890126 -1.186474 -2.513121 -1.959169 -0.397006 -0.082865 -0.440185 3.487874 3.859190 -1.325854 -1.637075 2.814281 0.068273 0.625081 3.675209 -0.106175 2.744680 -0.972845 -0.032591 -1.355902 -0.939476 -1.960671 -2.433913 0.847578 0.486255 0.646535 0.389445 -0.151946 2.602592 -0.366206 -1.956263 -1.365668 0.329389 -1.022520 -1.722018 2.990344 -0.110296 0.821676 1.599925 3.082907 -0.778333 -2.211020 1.245765 -0.400567 0.537408 -0.878307 -0.946724 0.083144 1.695705 -1.583603 -0.897803 -0.181669 -0.269905 -1.268115 -0.071728 3.663164 0.686997 1.072738 1.372775 1.589172 4.006442 1.135711 0.526117 -2.371561 0.775133 1.578987 -1.926104 -1.059536 0.410398 -1.464350 0.254937 0.458329 -0.338010 0.558014 -2.078713 -1.901316 -1.507573 0.091218 2.438457 1.619855 -3.299791 0.886759 -0.688126 0.836174 1.615630 0.854843 2.344077 2.507511 2.952178 -0.441164 0.652120 0.477032 1.115660 -0.365129 1.216761 1.382105 0.750962 2.252224 0.927638 0.339454 0.894750 1.813845 0.459560 1.646568 0.772046 3.766565 0.324410 0.225426 -1.417923 -0.547064 1.792717 4.803383 -1.972446 1.580010 0.796973 1.552683 -0.038262 -3.187906 0.311361 -1.098106 -0.109590 -0.280032 -0.328499 0.068733 -0.822918 1.989282 0.123504 -2.443480 0.964284 0.111565 0.494380 1.597071 -0.077515 -0.397108 0.045538 -3.106783 2.705918 1.917868 1.087816 -0.887235 -0.207326 -0.212762 1.219436 -0.750807 1.567412 -0.159240 1.966363 1.629433 1.839093 1.888655 0.107230 -1.729322 -1.970368 1.095279 -1.902677 -0.673606 0.366545 1.456399 -1.840665 0.996442 -0.476397 -3.418141 +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.760278 0.463911 0.739062 -1.133991 -2.266018 0.972957 -1.974501 -1.100152 0.170381 -0.073146 0.923794 -0.891994 -0.464069 1.596707 -0.944697 -1.571864 -0.778019 -0.693604 0.039014 -0.701615 0.008653 0.436717 -0.464417 0.615805 -0.605308 -0.328600 -0.252298 0.170215 1.863375 -0.549204 -1.554962 -0.152055 -0.429503 1.597414 0.738917 -0.840834 1.102087 2.755568 0.570736 -0.072873 -1.163385 -1.283207 0.057539 0.278055 -0.275076 -0.512154 -1.146979 0.733234 -2.107391 1.053100 1.743284 -0.326960 -0.221839 0.756336 0.846996 0.515141 -2.780711 2.379017 0.078991 0.705230 0.481913 -0.466083 0.114113 0.653897 0.496627 -0.644472 1.051611 1.826998 -0.822519 -0.161026 -0.129445 -1.951239 2.561566 0.556430 -1.160309 -0.179637 1.267490 -1.215820 1.265274 -1.603791 -2.287206 0.436704 0.027396 -0.662743 2.171913 -0.045044 0.404841 -2.244483 0.901465 -2.707284 0.543057 -1.371386 0.685593 1.601427 -2.303915 -0.369462 0.994522 0.804088 2.029796 0.147113 1.772757 0.443045 -0.110592 0.509317 0.617447 0.277403 0.025957 0.515143 -0.746037 -2.040350 -0.889989 -0.179728 -3.075351 0.379211 -0.166406 0.949676 -0.467320 0.247207 -0.220366 0.534980 -1.805378 -1.693617 -0.350588 -0.160673 1.254358 1.633274 -0.944259 1.184929 -0.579486 2.154563 -0.913291 0.062945 -0.359022 0.184186 -0.054090 -1.611260 -3.915732 1.112683 1.482819 -0.868381 -1.808452 -1.189476 -0.263085 -0.443892 -0.363958 2.625242 2.979276 -0.991460 -1.482976 2.200564 -0.077069 0.387941 3.192298 -0.081684 2.243903 -0.714706 -0.100034 -0.858851 -0.792241 -1.350134 -2.366542 0.596421 0.501138 0.414052 0.782257 0.449934 0.910600 -0.420820 -1.604832 -0.964341 0.326497 -0.703052 -1.074844 1.824318 0.641892 0.697030 1.489427 2.375266 -0.814057 -2.139582 0.852529 -0.313927 0.460690 0.062933 -0.603878 0.023189 1.264596 -1.248317 -0.605778 -0.058577 -0.258272 -1.083866 -0.103259 3.200879 0.752413 0.919963 1.051652 1.087598 3.205221 0.857052 0.556086 -1.864521 0.487948 1.298909 -1.072500 -1.151772 0.256487 -1.160194 0.275210 0.773995 -0.356066 0.483801 -1.055173 -1.279368 -1.229153 -0.134767 2.101945 1.261451 -1.573859 0.727681 -0.975566 0.662574 0.888910 0.668123 1.815045 1.922339 2.308462 -0.254676 0.633819 0.062855 1.898456 -0.409152 1.191580 0.959637 0.626417 1.672708 0.675053 0.315752 0.818664 1.444646 -0.052029 1.325758 0.167722 3.056259 -0.788674 0.542308 -1.510124 -0.247054 1.333483 3.849493 -1.720422 0.922128 0.532233 1.233963 0.422675 -2.623303 0.196224 -0.856409 0.088024 -0.277701 0.184978 -0.030320 -0.604296 1.418739 0.225155 -1.610123 1.210118 0.085863 0.166938 0.762694 -0.169481 -0.844941 0.139852 -2.522641 1.517927 1.646180 0.902342 -0.844716 -0.336059 -0.208297 1.431273 -1.282945 1.291232 -0.172345 1.401140 1.635806 1.230667 1.374451 -0.089668 -1.507273 -2.210975 1.019344 -1.260032 -0.644709 0.744034 1.088110 -1.710309 1.029762 0.401712 -2.678644 +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.351393 -0.018789 0.272105 -0.481430 -0.567597 0.327901 -0.394778 -0.266436 0.091524 -0.144652 0.281921 -0.184507 -0.084609 0.619843 -0.137380 -0.491678 -0.072417 -0.489290 -0.044104 0.054948 -0.029942 0.162275 -0.175589 0.175928 -0.110143 -0.012787 -0.090169 0.102186 0.337580 -0.350184 -0.644618 -0.072578 -0.260068 0.613380 0.195739 -0.226783 0.377821 1.091957 0.105925 0.288511 -0.268254 -0.382667 0.067806 -0.003313 -0.193185 -0.105919 -0.372732 0.302993 -0.395919 0.065155 0.668712 -0.069302 -0.156702 0.150332 0.293526 0.253423 -0.952934 0.521056 0.100017 0.420890 0.110487 -0.258208 0.063570 0.104259 -0.065539 -0.254345 0.483008 0.396201 -0.332974 -0.059280 -0.130980 -0.769004 0.931511 0.365418 -0.305664 0.015720 0.497366 -0.574980 0.512215 -0.403148 -0.812869 0.124028 -0.138136 -0.433570 0.960447 -0.183514 0.154687 -0.835222 0.491826 -0.977902 0.133172 -0.666471 0.233812 0.725747 -0.682039 -0.032171 0.329807 0.638447 0.466033 0.004136 0.685479 0.243047 -0.122125 0.137774 0.429163 0.020754 -0.135894 0.047031 -0.349962 -0.672854 -0.207740 -0.179702 -1.056215 0.204095 -0.023568 0.229185 -0.122627 0.261990 -0.137601 0.184318 -0.711571 -0.365876 -0.054306 -0.092666 0.372981 0.669533 -0.389272 0.260157 -0.313116 0.776412 -0.273059 0.147071 -0.184199 0.085520 -0.100409 -0.223620 -1.028645 0.233932 0.511627 -0.340721 -0.726556 -0.545417 -0.082648 -0.005157 -0.179206 1.121350 1.104099 -0.332373 -0.415542 0.796795 0.167526 0.257539 0.936536 -0.022864 0.725785 -0.271649 -0.037251 -0.253435 -0.187077 -0.503166 -0.973566 0.228181 0.181414 0.184780 0.136825 0.071244 0.918617 -0.102756 -0.476077 -0.063873 0.060392 -0.324834 -0.612969 0.829110 0.270603 0.324010 0.641558 0.896154 -0.186413 -0.485713 0.349733 -0.003521 0.219925 -0.400503 -0.286381 -0.070791 0.422897 -0.398973 -0.274358 -0.035508 -0.108264 -0.336540 0.009659 1.026473 0.267698 0.232706 0.390328 0.308308 1.106094 0.226886 0.169025 -0.753521 0.219678 0.392389 -0.496200 -0.152949 0.122350 -0.326533 0.061350 0.248187 -0.089754 0.128566 -0.546320 -0.551035 -0.269286 0.118097 0.533766 0.405049 -0.912047 0.103190 -0.147320 0.189551 0.433938 0.268411 0.690931 0.634007 0.760246 -0.191096 0.165146 0.232194 0.127926 -0.261511 0.124756 0.599721 0.224910 0.499479 0.282382 0.089596 0.271689 0.508837 0.080437 0.484696 0.298859 1.069221 0.082655 -0.034935 -0.356122 -0.172229 0.524797 1.207199 -0.617926 0.455226 0.264266 0.489204 -0.074387 -0.797476 0.049771 -0.329983 0.017834 -0.141070 -0.110449 -0.014646 -0.164583 0.597328 -0.017409 -0.739955 0.187360 0.041560 0.189831 0.483982 0.028014 -0.001960 0.067352 -0.856202 0.695862 0.463258 0.331257 -0.247096 0.046864 -0.020893 0.374503 -0.506614 0.435607 -0.006182 0.562891 0.360411 0.468505 0.534550 -0.056082 -0.442813 -0.470165 0.297792 -0.486440 -0.159143 0.261081 0.513135 -0.523792 0.193273 -0.276167 -0.799417 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__niter_wrap(int* const&, int*) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a1(int const*, int const*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int const* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move_a2(int const*, int const*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.093221 -0.044220 0.135184 -0.258447 -0.262661 0.079369 0.005624 -0.077334 0.034535 -0.147022 0.148534 -0.149125 -0.135710 0.438804 -0.000254 -0.272402 0.001352 -0.161159 -0.082067 0.177753 0.009493 0.137240 -0.060067 0.067451 0.002308 0.063687 -0.069603 0.111639 0.115606 -0.197537 -0.304987 -0.051206 -0.049445 0.305990 0.025707 0.058103 0.105635 0.555965 -0.066983 0.498760 -0.226181 -0.172430 0.104619 -0.018431 -0.077586 -0.289119 -0.291930 0.200602 -0.162083 -0.174416 0.322632 0.042681 -0.125432 -0.011324 0.215217 0.223083 -0.485371 0.211236 0.102585 0.166925 0.095639 -0.095914 -0.087074 -0.007770 -0.140929 -0.155861 0.094967 0.075282 -0.189809 0.002258 -0.062520 -0.381559 0.599238 0.177205 -0.210368 0.080938 0.259082 -0.280657 0.290821 -0.271584 -0.363809 0.035141 -0.062414 -0.052956 0.453453 -0.045164 0.083260 -0.453250 0.150257 -0.472887 0.165258 -0.439009 0.092918 0.409530 -0.275096 0.063235 0.147969 0.191971 0.222334 0.145838 0.314364 0.197404 0.010877 0.032742 0.267323 0.035971 -0.151404 -0.141972 -0.230882 -0.368309 -0.016435 -0.094083 -0.595766 0.070766 0.060544 0.230731 0.006657 0.163102 0.028348 0.022243 -0.361686 0.027743 0.092928 -0.053952 0.158743 0.416405 -0.189159 0.052819 -0.232660 0.370167 -0.108666 0.187454 -0.063736 0.076659 -0.110262 -0.197264 -0.327469 0.052479 0.156003 -0.141620 -0.333302 -0.397950 0.000000 0.152158 -0.132397 0.359524 0.582706 -0.180701 -0.192813 0.399189 0.263921 0.159153 0.274826 0.003419 0.413258 -0.145272 -0.032345 -0.096502 -0.116440 -0.176220 -0.184195 0.140377 -0.080916 0.108078 -0.024585 -0.488335 0.611662 -0.064795 -0.193633 0.023311 -0.023756 -0.196064 -0.303022 0.482354 0.030659 0.255615 0.107827 0.436551 -0.076147 -0.188792 0.179038 -0.049356 0.091526 -0.352775 -0.163522 0.046986 0.200346 -0.308128 -0.128275 -0.039067 -0.120677 -0.174447 0.043119 0.146052 0.039998 0.068144 0.205300 0.195073 0.445911 0.067244 0.077197 -0.410408 0.134772 0.075394 -0.229074 -0.222620 0.121168 -0.166602 0.002110 0.079160 -0.058722 -0.009786 -0.221752 -0.262615 -0.050293 -0.093015 0.151765 0.112153 -0.334922 -0.056210 0.024890 0.177328 0.231568 0.167122 0.405970 0.305785 0.326113 -0.001938 0.048401 0.124947 -0.135220 -0.045146 -0.026823 0.212688 0.130960 0.182399 0.162521 -0.006703 0.208943 0.215876 0.067226 0.272769 0.270820 0.497256 0.201576 -0.128967 -0.025406 -0.100076 0.272384 0.543201 -0.306590 0.245438 0.172136 0.197487 -0.099815 -0.226811 -0.013890 -0.155424 -0.217538 0.216669 -0.104544 -0.010653 -0.028143 0.321628 -0.072311 -0.427697 0.022425 0.010697 0.146027 0.253635 0.050096 0.103676 0.104713 -0.340856 0.312333 0.172951 0.209016 -0.159650 -0.126141 -0.024034 0.060329 0.066686 0.224560 -0.160508 0.139826 0.161883 0.325751 0.138724 0.022190 -0.192353 -0.133845 0.111246 -0.184217 -0.095489 -0.028021 0.187602 -0.121528 -0.075755 -0.295918 -0.357322 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.092269 0.093212 0.335854 -0.573039 -0.731795 0.055472 0.141578 -0.198937 0.055516 -0.029141 0.411658 -0.437137 -0.223122 0.950162 -0.081220 -0.426361 -0.041325 -0.332002 -0.182430 0.184327 0.072263 0.379587 -0.111898 0.137716 0.007450 0.096358 -0.159312 0.355053 0.293113 -0.288108 -0.483178 -0.103444 0.001259 0.606293 0.034091 -0.092303 0.155517 1.102676 -0.581544 0.852532 -0.542988 -0.337953 0.356737 0.004183 -0.170329 -0.847456 -0.778630 0.413690 -0.233045 -0.340463 0.617509 0.123721 -0.075113 -0.046632 0.411584 0.495096 -0.980795 0.405282 0.263549 0.134765 0.146681 -0.124426 -0.156866 0.106491 -0.408924 -0.341142 0.150459 0.066128 -0.192477 -0.046517 -0.082950 -0.788948 1.050394 0.222444 -0.407200 0.173049 0.450168 -0.769496 0.660998 -0.493458 -0.707919 0.073184 -0.089753 -0.176878 0.768635 -0.165063 0.231925 -0.934595 0.110818 -0.945053 0.334265 -0.866259 0.144944 0.786414 -0.575287 0.135237 0.245927 0.294921 0.615983 0.257103 0.610530 0.464675 0.304978 0.123232 0.502422 0.333947 -0.354837 -0.321380 -0.598278 -0.797795 0.045027 -0.205673 -1.240489 0.188162 0.157027 0.063449 0.046306 0.021481 0.092132 0.509033 -0.487524 0.177949 0.295753 -0.102819 0.107159 0.931232 -0.341234 0.089259 -0.466336 0.707377 -0.222609 0.526514 -0.042644 0.203419 -0.402277 -0.647863 -0.619676 0.170934 0.215537 -0.329442 -0.602658 -0.882359 0.070834 0.149660 -0.289628 0.450076 1.201113 -0.424203 -0.563825 0.817178 0.741951 0.081941 0.466041 -0.029625 0.966302 -0.290038 -0.125855 -0.345579 -0.342403 -0.269748 0.228399 0.293982 -0.193498 0.225886 -0.090215 -1.350226 1.218865 -0.106717 -0.401034 0.127873 0.091190 -0.385484 -0.583071 0.968671 0.077482 0.540254 0.036209 0.855863 -0.163575 -0.470380 0.364585 -0.111268 0.166820 -0.715508 -0.309518 0.291286 0.454315 -0.440655 -0.221750 -0.228696 -0.279998 -0.398591 0.094205 -0.109810 0.133925 0.158692 0.395145 0.241522 0.903525 0.140254 0.198795 -0.792584 0.301750 0.237474 -0.309693 -0.791464 0.168170 -0.401752 -0.011844 0.009365 -0.150449 0.116833 -0.411398 -0.472039 -0.036762 -0.319619 0.200579 0.169712 -0.834702 0.043113 -0.159427 0.524574 0.339818 0.378455 0.848242 0.672350 0.659593 0.101827 0.067516 0.129307 -0.280554 0.053010 0.056256 0.139219 0.323140 0.600791 0.355699 0.056266 0.498925 0.400044 0.097085 0.582474 0.391318 1.012315 0.335475 -0.215715 -0.083100 -0.087842 0.551130 1.198670 -0.138573 0.223565 0.318380 0.346845 -0.285625 -0.519008 -0.011409 -0.279793 -0.344066 0.549243 -0.068939 -0.128772 -0.022332 0.659277 -0.124814 -0.901348 0.114986 0.010223 0.319744 0.428122 0.069192 0.191841 0.255379 -0.592303 0.674258 0.433464 0.421383 -0.396581 -0.476209 -0.020866 0.183349 0.355342 0.500427 -0.912321 0.301427 0.358622 0.647889 0.096663 0.431424 -0.486449 -0.268926 0.312137 -0.242557 -0.226572 -0.066880 0.323278 -0.472594 -0.000897 -0.612075 -0.633608 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp___GLOBAL__sub_I_construction_of_lcp_array_from_suffix_array.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/weighted-job-scheduling.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/weighted-job-scheduling.cpp__jobComparataor(Job, Job) = 0.511383 -0.341722 0.519484 -1.085359 -0.954472 0.811460 -0.913874 -0.598029 0.416052 -0.528221 0.733410 -0.337777 -0.306523 0.959546 -0.122987 -1.336912 0.169687 -0.323103 0.140012 0.052321 0.015470 0.233882 -0.368084 0.127249 -0.047851 -0.337140 -0.104435 0.574492 1.302631 -0.372495 -1.381328 -0.093926 -0.631010 1.510708 0.382853 -0.237242 0.893262 2.308956 0.339300 0.593128 -0.575107 -0.737332 0.573986 0.120482 -0.811723 -0.068991 -0.800866 0.377744 -1.473649 0.150656 1.366595 -0.472963 0.235579 0.180811 0.501718 0.942520 -2.014386 0.722540 0.091043 0.680925 0.099333 -0.544754 0.161249 0.314215 -0.327296 -0.597121 1.115883 0.831690 -0.718553 -0.214174 -0.373232 -1.820747 2.540358 0.828385 -0.799739 0.080349 0.947779 -1.543335 0.908072 -0.045413 -1.649938 0.065528 -0.130379 -0.913459 2.040178 -0.559954 0.705284 -1.944783 0.645268 -2.176774 0.587926 -1.358134 0.979318 1.558368 -1.943783 0.040636 0.755927 1.448000 0.627247 -0.188383 1.693421 0.441287 -0.325751 0.003809 0.988523 0.010835 -0.317849 -0.133716 -0.686909 -1.277762 -0.489914 -0.611545 -2.914185 0.244350 -0.680257 0.623550 -0.173923 0.368652 -0.389053 0.803123 -1.221943 -0.549984 -0.182486 -0.247141 0.954280 1.570352 -0.561194 0.456727 -0.277562 1.814326 -0.647498 -0.017784 -0.729553 0.302789 -0.123803 -0.393814 -1.983676 0.340582 1.118211 -0.946106 -1.774982 -1.019014 -0.408552 0.158306 -0.172403 2.167011 2.476704 -0.629730 -1.039300 1.550892 -0.029105 0.699393 2.233437 0.076980 1.675675 -1.011752 0.331487 -0.915926 -0.043178 -0.840942 -1.588310 0.270623 0.298914 0.470190 0.188328 0.388245 2.269853 -0.307492 -0.761210 -0.174674 0.023197 -0.719883 -1.474477 1.986180 0.431060 0.932998 1.094239 2.182685 -0.726964 -1.450413 0.773906 0.214107 0.126987 -0.895253 -0.629333 -0.041847 0.931501 -0.902617 -0.788036 -0.249278 0.018617 -0.392526 0.254974 2.573712 0.407954 0.264572 0.421081 0.704951 2.185469 0.433511 0.173109 -1.572533 0.375361 1.073689 -1.260100 -0.282760 0.231952 -0.805964 0.109823 0.439453 -0.124834 0.556532 -1.344676 -1.247989 -0.714799 0.385220 1.221096 0.636183 -2.819946 0.464419 -0.155855 -0.070798 0.976186 0.774134 1.723707 1.275197 1.295083 -0.531272 0.547174 0.279920 -0.002782 -0.449275 0.332987 1.562773 0.415512 1.368337 0.493353 0.234076 0.530864 1.119024 0.573379 1.038701 0.859606 2.342226 0.418673 -0.142843 -0.532224 -0.660849 1.205136 2.715145 -1.121435 1.007115 0.617290 1.391112 -0.119291 -2.384509 0.095148 -0.639930 0.014632 -0.031182 -0.372813 0.000582 -0.636482 1.639024 0.252463 -1.884220 0.659656 0.059868 0.332649 1.025900 -0.173260 -0.109376 0.229354 -1.757050 1.611884 0.777875 0.847837 -0.666568 0.303099 -0.093074 0.845062 -0.956689 0.631580 0.059926 1.091959 0.603976 1.343296 1.623678 0.232121 -0.777756 -0.727442 0.243630 -1.282542 -0.304051 0.231728 0.860765 -1.180954 0.422658 -1.043312 -1.529611 +PE-benchmarks/weighted-job-scheduling.cpp__latestNonConflict(Job*, int) = 0.760350 0.050875 1.124786 -1.467244 -0.374897 0.386115 1.025456 -0.880876 0.358672 2.811664 0.705058 -0.675570 -1.308878 1.858074 -0.223731 -1.272977 1.129908 -0.293113 0.098874 -0.134617 -0.235561 0.750893 -0.241427 -0.834765 0.926805 -0.464906 0.219746 1.271712 -0.168707 -0.030149 -1.072700 -0.321704 -0.159949 2.612739 -0.155263 0.412356 -0.271148 2.757457 -2.357294 3.214903 -2.825196 -2.237875 2.375829 0.235952 0.007344 -1.605427 -0.262859 1.036861 -0.451334 -1.928257 0.619865 -0.656787 0.615974 -1.460069 0.277683 2.248749 -3.029731 0.027882 0.419353 -0.875261 -1.511925 -0.420979 1.150250 0.466851 -1.792776 -1.621808 0.621473 -0.004908 -1.349646 0.443996 -1.465380 -2.684014 1.387687 0.856048 -1.180487 0.659207 0.178565 -2.117234 1.370216 -0.924573 -1.350098 -0.855459 0.515090 -1.217558 1.320906 0.700955 2.014974 -3.549954 0.640999 -2.767705 1.959613 -1.789268 2.202112 2.368054 -0.779547 1.135854 0.802171 1.661564 0.504320 -0.339208 2.271667 1.125167 1.133984 -0.302650 1.620319 1.515937 -2.225665 -2.065783 -1.623688 -1.594024 0.478960 -0.912078 -2.432531 0.121881 -1.757430 0.376699 1.012013 -0.456587 -0.626199 2.230766 -3.716429 -0.405253 0.749838 -0.488279 1.590989 2.129551 0.023951 0.143359 0.007021 2.157853 -0.617460 0.151597 -0.738497 1.244574 -1.264376 -0.531365 -0.543481 -0.115442 0.713210 -1.968694 -2.481016 -3.501848 -0.714903 1.508692 -0.614267 2.399274 3.890780 -0.855668 -1.935834 1.503387 -0.564129 0.143328 1.870231 0.416740 3.115661 -2.746122 1.236524 -0.951278 0.956077 0.869619 3.139227 -0.242944 -1.281337 1.166503 -0.375170 -1.302418 2.226892 -0.203063 0.089714 -0.838516 0.270598 -0.857750 -1.038375 2.548257 -2.504911 2.312580 -1.271358 3.243317 -1.985735 -1.543261 1.038811 -2.503909 -0.743419 -2.180584 -0.989268 -0.049296 1.913810 -2.069984 -1.273021 -1.251661 -0.747986 0.057911 1.753299 -1.756269 -0.035264 -0.576343 -0.666102 2.857971 1.222982 -0.238002 -0.037912 -2.199635 0.459853 1.183911 -0.570273 -2.370788 0.005202 -1.685414 -0.383831 0.454554 -0.221381 1.347192 -1.690998 -1.166227 0.496079 -0.500719 0.023393 -0.940754 -3.319135 0.558320 -0.187461 0.330333 1.128767 2.533401 2.101775 1.703947 0.342547 -0.530324 0.318776 -1.068860 -2.100329 0.832077 0.077868 0.989763 0.999357 1.575403 0.581998 0.510573 1.454718 0.474594 0.409809 2.186404 0.782603 2.369253 -0.187360 -0.091518 0.783615 -1.314476 1.386674 2.487386 -0.987944 -0.271982 1.291098 0.413959 -1.246251 -0.979978 -0.218874 -1.069152 -0.889784 1.386307 0.789402 -0.521618 -1.023433 3.482279 0.281616 -3.985548 1.538298 -0.127456 0.831096 1.906976 -0.728854 0.916517 1.059678 -0.687102 1.525885 0.766016 1.858823 -2.018854 -0.009944 -0.105791 1.335328 1.797861 -0.140567 -4.038906 0.267820 0.417367 2.762329 1.257302 2.777788 -1.136355 0.763670 -0.492408 -1.258050 -0.327901 -0.728707 1.425709 -0.303960 -0.106237 -3.721267 0.359283 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 2.595215 0.624391 2.927700 -2.757937 -2.719414 1.704590 -0.668316 -3.265433 0.733343 6.601055 2.437963 -2.408366 -0.926899 4.213373 -2.104368 -2.577234 1.275599 1.314841 0.574355 -1.923979 -0.085557 1.430365 -0.906964 -1.912201 0.930100 -1.807962 0.953842 2.118110 -0.099692 1.694205 -2.599057 -0.805198 0.106908 6.143821 0.710765 0.023293 -0.329403 5.959494 -4.270415 5.121956 -6.573019 -5.904807 4.921472 1.212385 1.372429 -2.903915 -2.101543 2.085128 -1.120616 -3.017199 1.102472 -2.141798 2.016191 -2.350940 0.110928 3.738169 -6.735610 0.480425 0.612683 -3.257933 -3.891873 -0.229437 2.985851 2.355412 -3.682296 -3.588997 1.701936 3.199651 -1.573250 0.989694 -2.781443 -7.213536 3.604812 0.981925 -2.840064 0.529434 0.819684 -4.917069 3.449985 -1.450513 -3.931640 -1.541126 1.020910 -3.192536 2.330304 2.113787 6.022350 -8.101322 2.753907 -7.364798 4.722967 -3.112942 4.855558 4.639956 -3.481752 1.594534 2.856465 5.298611 3.360457 0.520404 5.417074 3.201920 1.951856 -0.625967 3.616101 3.977767 -3.809302 -3.691215 -3.699355 -4.641958 0.624179 -2.190784 -7.213037 0.439498 -3.789691 1.140579 0.438984 -1.518794 -0.397319 6.617770 -8.911005 -2.043829 1.573418 -0.802767 3.166464 3.870724 -0.163659 1.340151 0.206840 5.124492 -2.200013 -1.422255 -0.624240 2.752512 -4.127173 -2.774582 -3.835099 1.811257 2.416677 -5.011389 -5.622728 -7.775743 -1.439671 4.085420 -1.357208 5.343846 9.134112 -2.223422 -5.051446 3.158423 -0.685438 -2.288880 6.566116 1.184904 8.245664 -6.381351 2.640026 -2.659979 1.346163 1.468177 4.546492 -0.613219 -2.067618 3.327062 -0.135961 -3.242438 6.331140 -1.510994 -0.419046 -2.219673 1.555516 -1.132222 -0.970548 5.221833 -4.746752 4.600413 -2.546255 7.653051 -4.871984 -4.504571 1.906297 -6.344667 -2.373730 -2.383046 -0.682394 -0.581795 5.711509 -4.603031 -2.758206 -1.893841 -2.843031 0.067790 4.071308 -1.394086 0.657676 -0.040505 -1.913271 5.635886 3.545243 0.570999 -0.001568 -4.455584 0.642426 3.637320 -1.541495 -6.000671 -1.078105 -5.086749 -0.097286 -0.810546 -0.388281 3.953986 -4.051803 -2.260946 -0.438098 -1.477481 1.276081 -1.570285 -5.322190 2.260736 -1.833571 2.220628 1.470667 5.915053 5.430602 5.247419 1.767593 -1.037195 1.258813 -3.639459 -2.139025 2.430335 2.175223 1.582935 1.921314 4.845460 0.706087 1.921970 3.038801 1.102056 2.241587 5.232759 0.525533 6.184491 -2.492897 1.575633 0.199867 -2.281866 3.710179 7.650800 -1.530438 -0.725172 1.693267 0.400138 -2.746395 -3.124770 0.142695 -1.496313 -1.880789 1.639262 3.535819 -0.238252 -3.246884 7.326637 1.995547 -8.754833 4.590358 -0.410513 1.179131 5.032878 -2.531931 1.639539 1.593403 -0.347540 3.515528 2.961997 4.082922 -5.759738 -1.160912 -0.266125 4.313085 3.499609 0.218433 -8.485574 3.217100 2.225859 5.516608 1.816206 5.817820 -4.571105 0.413976 -0.446247 -3.371954 -1.367357 -0.417858 3.003544 -1.696518 1.131525 -6.801052 -0.658018 +PE-benchmarks/weighted-job-scheduling.cpp__void std::sort(Job*, Job*, bool (*)(Job, Job)) = 0.211014 0.230477 0.380355 -0.873051 -1.361501 0.209426 -0.374779 -0.447989 0.080328 -0.041850 0.664185 -0.865586 -0.411677 1.506043 -0.305696 -0.884204 -0.246527 -0.370996 -0.182644 0.116831 0.086220 0.568643 -0.208124 0.293141 -0.112558 0.116581 -0.316535 0.389641 1.027696 -0.428656 -0.930695 -0.104630 -0.021109 1.005053 0.172792 -0.327551 0.449612 1.812679 -0.513560 0.978180 -0.888936 -0.562329 0.409282 0.119934 -0.256430 -1.086838 -1.171066 0.638663 -0.928724 -0.115177 1.058412 0.090525 -0.192949 0.119231 0.697554 0.743417 -1.751810 1.179856 0.341707 0.426555 0.380457 -0.229669 -0.184490 0.259392 -0.328337 -0.541215 0.265202 0.451947 -0.460280 -0.130849 -0.163051 -1.260966 1.759995 0.348243 -0.845945 0.154219 0.683198 -1.106267 0.967914 -1.085369 -1.258294 0.243390 -0.013263 -0.163042 1.299518 -0.118884 0.303306 -1.537791 0.231352 -1.631693 0.503203 -1.295579 0.333362 1.296896 -1.256514 0.008353 0.392401 0.317754 1.281253 0.447407 1.063608 0.600266 0.302239 0.164371 0.567826 0.509903 -0.343376 -0.210939 -0.698661 -1.339836 -0.226672 -0.152319 -2.130091 0.269989 0.073238 0.468637 0.021083 0.060306 0.040732 0.545768 -0.874586 -0.371013 0.168076 -0.142857 0.508490 1.484225 -0.572086 0.375576 -0.706120 1.271529 -0.324020 0.566293 -0.133669 0.254194 -0.531135 -1.234911 -1.628185 0.433608 0.547278 -0.544735 -1.064989 -1.302481 0.054030 -0.086820 -0.412672 1.009920 1.957928 -0.662437 -0.922143 1.453648 0.653472 0.264229 1.302979 -0.138741 1.663707 -0.515609 -0.080255 -0.471532 -0.544653 -0.665821 -0.198670 0.439771 -0.216167 0.186484 0.025458 -1.503701 1.234631 -0.083238 -0.790128 -0.319086 0.134948 -0.559327 -0.870232 1.536763 -0.010169 0.726635 0.233256 1.455185 -0.352216 -1.087559 0.710333 -0.183879 0.271149 -0.692340 -0.545350 0.393290 0.785679 -0.845290 -0.325418 -0.188870 -0.258092 -0.772543 0.069975 0.631805 0.216903 0.360448 0.702048 0.622079 1.651003 0.275888 0.434274 -1.313862 0.424943 0.569100 -0.656887 -1.261416 0.322316 -0.765282 0.035755 0.239375 -0.313843 0.144210 -0.676590 -0.873649 -0.334261 -0.422907 0.852504 0.435232 -1.120410 0.275135 -0.481589 0.712558 0.615495 0.592873 1.270489 1.142746 1.217414 0.071389 0.229476 0.107567 0.240280 0.054318 0.346246 0.233077 0.521522 1.020959 0.526564 0.090247 0.709983 0.701352 -0.051720 0.944429 0.508762 1.785465 0.226875 -0.116370 -0.400412 -0.258418 0.894897 2.276765 -0.704070 0.373578 0.479191 0.606434 -0.145880 -1.147958 -0.017928 -0.513632 -0.546509 0.581103 -0.205424 -0.141183 -0.123888 1.022789 -0.125506 -1.310713 0.477032 0.009799 0.363738 0.535955 0.037897 -0.047881 0.340679 -1.309712 1.019062 0.866662 0.674283 -0.533969 -0.695646 -0.122277 0.511341 0.251296 0.818641 -0.978629 0.605050 0.895937 1.049374 0.479766 0.392045 -0.803467 -0.889763 0.529548 -0.486345 -0.420437 -0.138254 0.531863 -0.861234 0.208122 -0.435475 -1.385721 +PE-benchmarks/weighted-job-scheduling.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.585669 0.446344 1.071543 -1.232895 -2.060201 0.770941 -0.848020 -1.435547 0.370027 1.659881 0.831348 -1.110086 -0.455882 2.085006 -0.850640 -1.374002 -0.042140 -1.327002 0.162325 -1.098680 0.014929 0.793322 -0.380394 0.243443 -0.315489 -0.521415 -0.194294 0.414605 0.649805 -0.473202 -1.628643 -0.385275 -0.083650 2.346183 0.572690 -0.759086 0.277450 3.372128 -0.490733 1.320770 -2.617124 -2.071342 0.886131 0.233730 0.085325 -1.432051 -1.018290 1.045133 -0.413923 -0.022272 1.354476 -0.329142 -0.134323 0.092443 0.582199 1.321486 -3.121216 1.807408 0.037927 -0.249703 -0.376093 -0.540394 0.507843 1.164100 -0.831676 -1.312158 1.427551 1.682953 -1.146352 0.674305 -0.765910 -2.952746 1.970347 0.935340 -1.529638 -0.177367 1.096549 -1.817561 1.799212 -1.583841 -2.254562 -0.026794 0.109387 -0.803825 1.743620 0.242133 1.503593 -3.471896 1.234119 -3.478976 1.345486 -2.022953 1.545596 2.059788 -1.812031 0.186331 0.986704 1.753378 2.445383 -0.255061 2.339856 1.289096 0.808228 0.207506 1.386312 1.194508 -0.485378 -0.390688 -1.077683 -2.170410 -0.222421 -0.358976 -3.231689 0.542552 -0.808594 0.334612 -0.099863 0.139021 -0.285431 1.934808 -3.398143 -2.255778 0.443937 -0.350930 1.587450 2.047576 -1.130659 1.220450 -0.837636 2.660292 -0.650433 0.375189 -0.416475 0.623564 -1.375614 -1.805118 -3.657428 0.901944 1.590862 -1.937059 -2.574212 -2.673555 -0.432378 0.465220 -0.804052 3.343122 4.089106 -1.242346 -1.906626 2.244049 0.293821 -0.462348 3.207102 -0.065977 3.530162 -1.930637 0.651448 -0.964213 0.057718 -0.611489 0.195482 0.400738 -0.138674 0.749641 0.560675 -0.794194 1.837110 -0.675437 -1.318673 -0.698562 0.209309 -0.222312 -1.050055 2.323950 -0.587713 1.487307 0.189859 2.918935 -1.446088 -2.181024 1.188417 -1.688358 -0.077955 -0.453885 -0.352329 -0.117321 2.365461 -1.874680 -0.921916 -0.331699 -1.533255 -0.685357 0.607852 1.466498 0.666251 0.537895 0.729438 2.481714 3.234197 0.853881 0.491555 -2.490839 0.738685 1.775131 -0.652260 -1.845374 -0.106956 -1.836500 0.040655 -0.072508 -0.353588 1.002222 -1.629842 -1.467350 -0.822792 -0.434100 1.497493 0.610466 -2.307131 0.956900 -0.923394 1.170041 0.589614 1.735556 2.184622 2.151067 2.263050 -1.022206 0.613189 -0.881130 0.445692 0.536061 1.239849 0.558215 0.816033 2.144208 0.627280 0.300381 1.773358 1.017927 0.288638 1.942886 0.117244 3.498477 -1.446185 0.871868 -1.079877 -0.975006 1.801772 4.723737 -1.066758 0.138077 0.957436 0.770192 -0.707731 -2.130296 -0.222876 -0.990427 -0.152049 0.135060 0.674943 -0.484766 -0.931646 2.695450 0.568270 -3.137050 1.589551 0.101653 0.162921 1.895716 -0.670103 -0.087079 0.644910 -1.989679 1.641277 1.693243 1.550935 -1.593032 -1.025887 -0.343727 1.564853 -0.203840 0.905931 -2.373924 1.520501 2.051673 2.389352 1.317110 1.200877 -2.113587 -1.273475 0.889165 -1.324633 -0.857651 0.953456 1.809686 -2.010820 0.997346 -1.260993 -1.595481 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter __gnu_cxx::__ops::__iter_comp_iter(bool (*)(Job, Job)) = 0.236851 0.152868 0.165911 -0.413874 -0.725972 0.167252 -0.397050 -0.296962 -0.002306 0.041595 0.252958 -0.406284 -0.222807 0.786678 -0.286483 -0.518725 -0.234895 -0.246976 -0.072235 -0.004347 0.012471 0.305453 -0.117354 0.164634 -0.081478 0.034588 -0.165048 0.031657 0.503901 -0.293587 -0.486794 -0.080069 -0.009591 0.530891 0.132630 -0.121157 0.226043 0.940925 0.058322 0.427561 -0.580675 -0.443545 0.115526 0.053320 0.006257 -0.508460 -0.453970 0.334820 -0.484759 0.082326 0.478313 0.011324 -0.251705 0.096782 0.341021 0.264396 -0.965899 0.829790 0.130105 0.235719 0.179829 -0.136383 -0.056125 0.095872 0.017060 -0.284748 0.112359 0.454472 -0.376771 0.014058 -0.063813 -0.585563 0.905082 0.198723 -0.474849 0.044548 0.326421 -0.391304 0.457772 -0.843342 -0.680211 0.121690 0.064124 0.036933 0.632692 0.114997 0.141866 -0.818909 0.283961 -0.871018 0.259313 -0.591379 0.207787 0.647421 -0.630689 -0.009714 0.258488 0.136523 0.766295 0.296927 0.574428 0.277035 0.065523 0.132800 0.189537 0.203627 -0.084266 0.001015 -0.231673 -0.705320 -0.196010 0.034991 -1.058302 0.118711 0.040190 0.482249 -0.044854 0.138262 0.037420 0.057518 -0.769674 -0.526047 0.018888 -0.062246 0.406064 0.612919 -0.289200 0.269642 -0.380175 0.676800 -0.195995 0.168253 -0.052979 0.120132 -0.227827 -0.677567 -1.060254 0.243912 0.314511 -0.293515 -0.565617 -0.651239 -0.022010 -0.008641 -0.231169 0.706965 1.022466 -0.354469 -0.479232 0.783490 0.155952 0.137335 0.838167 -0.052277 0.815263 -0.239487 -0.055210 -0.113170 -0.259972 -0.351410 -0.443025 0.214974 -0.100443 0.076065 0.107050 -0.522861 0.335165 -0.076819 -0.465684 -0.360404 0.026865 -0.281890 -0.323367 0.670132 -0.049586 0.381054 0.148230 0.769323 -0.234954 -0.598800 0.335361 -0.302779 0.125885 -0.149057 -0.202905 0.063927 0.428013 -0.599685 -0.166510 0.060547 -0.185772 -0.441163 0.042995 0.501494 0.124284 0.236879 0.367062 0.537264 0.878584 0.141413 0.233253 -0.657792 0.198619 0.303452 -0.305952 -0.641568 0.156816 -0.402254 0.029948 0.247995 -0.167663 0.025404 -0.266538 -0.409549 -0.247426 -0.217543 0.582620 0.265556 -0.184994 0.111021 -0.303283 0.372524 0.272658 0.308550 0.604953 0.604735 0.642808 0.016354 0.148411 -0.029970 0.433150 0.012257 0.279581 0.115763 0.267708 0.475184 0.281746 0.064049 0.387574 0.406507 -0.096117 0.516984 0.148897 0.985446 -0.199614 0.036330 -0.305777 -0.109603 0.470157 1.219403 -0.655667 0.242816 0.237433 0.245156 0.046738 -0.515959 0.003052 -0.272137 -0.315129 0.176592 -0.012697 -0.014326 -0.088972 0.518661 -0.044580 -0.610805 0.382889 0.025999 0.147270 0.216477 0.014877 -0.133511 0.190759 -0.720424 0.378946 0.509613 0.369417 -0.303134 -0.360810 -0.092207 0.373338 -0.010892 0.460951 -0.240326 0.340869 0.602516 0.524455 0.251324 -0.008296 -0.428931 -0.650810 0.301179 -0.247010 -0.253208 0.046621 0.289407 -0.355182 0.111818 0.003670 -0.801896 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__introsort_loop >(Job*, Job*, long, __gnu_cxx::__ops::_Iter_comp_iter) = 1.929002 0.861055 2.018423 -2.314832 -3.134362 1.060220 -0.666991 -1.923290 0.669043 2.881800 1.398082 -1.489200 -1.186283 3.342511 -1.320689 -2.082863 0.028666 -2.278686 0.099999 -1.463283 0.124886 1.415130 -0.575268 0.341334 -0.149484 -0.703922 -0.167393 1.106045 1.145731 -0.790038 -2.397200 -0.570763 -0.295837 3.641689 0.549206 -1.015827 0.490589 5.287889 -1.746186 2.210705 -4.077461 -3.458989 1.747458 0.362225 -0.080779 -2.737900 -1.520946 1.685464 -0.997383 -0.460285 2.252092 -0.424608 0.029363 -0.184661 1.091308 2.098408 -5.246784 2.444997 0.205090 -0.265834 -0.706798 -0.883413 1.041422 1.565698 -1.453521 -1.993389 2.060471 1.833161 -1.892177 0.794364 -1.009372 -4.358829 2.873591 1.296237 -2.193716 0.125279 1.790261 -3.383132 2.916521 -2.552517 -3.403694 -0.089234 0.194058 -1.773109 2.962031 0.141282 2.117691 -5.328523 1.606318 -5.088353 2.027889 -3.215659 2.258355 3.346216 -2.788848 0.527774 1.506033 2.789053 3.433025 -0.649271 3.676046 2.126087 1.782956 0.431167 2.267452 1.944576 -1.418423 -0.905072 -2.282632 -3.576051 -0.230687 -0.996654 -5.104856 0.654156 -1.050057 -0.150799 0.271026 -0.346806 -0.613103 3.310918 -5.311551 -2.549438 0.779833 -0.515207 1.999606 3.435296 -1.549383 1.501388 -0.951630 4.134434 -1.272131 0.890308 -0.615239 1.023136 -1.967611 -2.445724 -4.817314 1.118656 2.050486 -2.721416 -3.876303 -4.466186 -0.659205 0.580786 -1.040063 4.619796 6.414592 -1.783684 -3.318195 3.543060 0.413512 -0.504901 4.560404 -0.048962 5.118090 -2.849501 0.777595 -1.795906 -0.026806 -0.750774 1.162422 0.739330 -0.283490 1.200358 0.545017 -1.619545 2.741625 -0.910220 -1.775017 -1.366362 0.556452 -1.164942 -1.849891 3.837398 -1.250954 2.631830 0.127886 4.548458 -2.308031 -3.346031 1.764272 -2.897218 0.094415 -1.592975 -1.095651 0.105511 3.379038 -2.782855 -1.455481 -1.227327 -1.847487 -1.079173 0.978771 0.830863 1.061732 0.575561 1.168990 3.489707 4.754922 1.050952 0.747717 -3.849182 1.109264 2.641315 -0.885070 -3.294429 0.048121 -2.834468 -0.029478 0.319782 -0.590952 1.606147 -2.359135 -2.351543 -0.869536 -0.816798 1.774657 0.621052 -4.614856 1.288790 -1.511104 1.787793 1.181277 2.659984 3.588188 3.289304 3.192668 -1.212499 0.977751 -1.254163 0.148020 0.622427 1.600464 0.833875 1.380488 3.459317 1.276064 0.540892 2.640570 1.981890 0.122228 3.170039 0.409094 5.298610 -1.653973 0.863966 -1.360532 -1.217951 2.519883 6.773357 -1.130429 0.402686 1.608369 1.525306 -1.075147 -3.276118 -0.290567 -1.769878 -0.046486 0.648936 0.995606 -1.028872 -1.136329 4.198469 0.647636 -5.011767 2.235012 -0.070853 0.626166 2.679073 -0.893316 -0.137633 1.143936 -3.240452 2.991137 2.400909 2.283753 -2.441533 -1.411912 -0.368846 2.540225 0.170406 1.400248 -4.456142 2.138180 2.421541 3.626100 2.043520 2.593233 -2.987922 -1.721566 1.171443 -2.164929 -1.290606 1.102254 2.754308 -2.824445 1.210110 -2.727822 -2.328886 +PE-benchmarks/weighted-job-scheduling.cpp__std::__lg(long) = 0.234820 0.130371 0.196570 -0.119734 0.075246 0.138714 0.218186 -0.179378 0.006901 0.225463 0.219651 -0.193575 -0.094329 0.210257 -0.099901 -0.135653 0.379495 0.131855 -0.003114 -0.101092 -0.146577 -0.034941 -0.082670 -0.257472 0.207181 -0.037286 0.117541 0.029917 -0.098501 -0.124745 -0.298353 -0.002990 0.175719 0.569285 0.075098 0.026835 -0.127241 0.384324 0.187319 0.438836 -0.543828 -0.164246 0.435481 0.062481 0.032443 -0.449345 -0.055220 0.261716 0.087177 -0.324785 -0.027568 -0.309780 0.048972 -0.353153 -0.223749 0.641337 -0.468816 0.095987 0.174155 -0.173116 -0.361432 -0.034116 0.395642 -0.079417 -0.006805 -0.220496 0.117655 0.115680 -0.264798 0.158198 -0.494470 -0.636873 0.328503 0.127019 -0.200531 0.062459 -0.267919 -0.218009 0.089250 -0.031039 -0.147511 -0.233486 0.261114 0.133727 0.103414 0.183535 0.258818 -0.701331 -0.085937 -0.627913 0.380083 -0.264653 0.627833 0.344448 -0.133645 0.176618 0.118491 -0.209116 -0.100250 0.246375 0.455727 -0.049112 0.044775 -0.295405 0.258582 0.219418 -0.215091 -0.373005 -0.001301 -0.220235 0.041595 0.324373 -0.209807 0.030705 -0.743676 0.239170 0.010960 0.114492 0.001158 0.045726 -0.317933 -0.415198 0.163596 -0.141478 0.607409 0.504052 0.153660 0.166794 -0.089034 0.335153 -0.003125 -0.130091 -0.297592 0.246717 0.058937 -0.669903 -0.234023 -0.085208 0.259093 -0.396585 -0.574490 -0.614942 -0.144618 0.083671 -0.235157 0.177781 0.634129 -0.126721 -0.238186 0.176128 0.159628 0.200451 0.537388 0.107418 0.893078 -0.779557 0.517518 0.141887 0.349411 0.202833 0.096475 -0.335698 -0.195497 0.181507 0.004174 -0.266194 0.574658 -0.090822 0.107250 0.504560 -0.021382 0.115813 -0.393466 0.345935 0.293328 0.317507 -0.114823 0.759545 -0.539269 -0.428176 0.186512 0.055167 -0.171273 -0.012214 0.014800 -0.133265 0.518395 -0.348502 -0.337623 0.158849 -0.086432 0.120101 0.357741 0.163002 -0.092823 -0.153682 -0.385970 0.059474 0.025432 -0.215285 0.136697 -0.409102 -0.143945 0.244361 0.086336 -0.392132 -0.023196 -0.448187 -0.108232 0.052447 -0.025350 0.213584 -0.192272 -0.191274 0.255718 -0.201086 0.161286 -0.223618 -0.102301 0.132333 -0.182274 -0.249896 0.000342 0.675505 0.369262 0.298285 -0.121619 -0.210171 0.100683 -0.276479 -0.311072 -0.006035 -0.077602 0.479468 0.170698 -0.200695 0.053352 0.079191 0.109595 -0.410889 0.136983 0.366891 0.284233 0.385984 -0.212817 0.163772 0.215845 -0.511344 0.372799 0.468051 -0.165767 -0.376997 0.179020 -0.036670 -0.158385 -0.476715 -0.080719 0.002118 -0.442767 0.287932 0.290503 0.051072 -0.363278 0.840962 0.015966 -0.758315 0.536450 -0.027481 0.045392 0.330391 -0.155597 0.208055 0.295342 0.137489 -0.105360 0.103170 0.642021 -0.448451 -0.066729 -0.152256 0.348434 -0.033467 -0.234164 -0.731856 0.071336 0.191292 0.439817 0.311436 0.286457 -0.203704 0.182296 -0.242837 -0.145948 -0.086146 -0.063240 0.379240 0.154409 -0.254071 -0.618064 0.423273 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__final_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.633224 0.256594 1.449828 -1.605785 -2.633321 1.088988 -1.473569 -1.659155 0.541323 1.756175 0.913899 -1.187080 -0.523315 2.660837 -1.018153 -1.751469 -0.281048 -1.646586 0.250579 -1.149819 0.014476 1.030319 -0.563297 0.627739 -0.400445 -0.601886 -0.187237 0.498672 1.034936 -0.681119 -1.981096 -0.535258 -0.548153 2.820561 0.710333 -0.743194 0.675151 4.433212 -0.351873 1.608367 -2.850896 -2.639212 0.810008 0.215551 -0.025377 -1.075217 -1.119853 1.314331 -1.150608 0.132895 1.965476 -0.300682 -0.266570 0.316767 0.970619 1.087517 -3.978317 2.219547 0.034088 0.060931 -0.379909 -0.829115 0.550718 1.324233 -1.091835 -1.419592 1.832646 2.064412 -1.536538 0.552421 -0.584354 -3.379376 2.446591 1.162379 -1.837069 -0.106652 1.763887 -2.118760 2.270852 -1.955388 -3.093652 0.078902 -0.099240 -1.804273 2.667922 0.158399 1.732360 -4.144960 2.016446 -4.242751 1.419628 -2.473542 1.645919 2.774032 -2.581399 0.230504 1.382915 2.789256 2.922882 -0.474444 2.880202 1.543908 0.567342 0.632661 1.806376 1.145668 -0.671106 -0.243885 -1.566679 -2.874967 -0.371939 -0.859276 -3.932649 0.597015 -0.617549 0.625070 -0.215828 0.450640 -0.613644 2.045064 -4.448828 -2.450637 0.298047 -0.393646 1.784433 2.392769 -1.560253 1.442966 -0.918943 3.387692 -1.216745 0.399946 -0.504893 0.696981 -1.386881 -1.245696 -4.628930 1.097104 1.957389 -2.059503 -3.129332 -3.208757 -0.667475 0.546772 -0.817216 4.656750 5.101388 -1.545341 -2.304246 3.019154 -0.125062 -0.231029 4.044577 -0.040042 3.743429 -1.877915 0.320942 -1.452515 -0.258068 -1.039990 -0.627152 0.826636 0.142542 0.948791 0.701521 -0.147786 2.382712 -0.763335 -1.863264 -1.669557 0.426956 -0.761164 -1.464003 3.015716 -0.968612 1.675399 0.672060 3.596170 -1.527102 -2.555065 1.432953 -2.249649 0.188324 -0.839106 -0.726220 -0.359796 2.692519 -2.318226 -1.133723 -0.528869 -1.590861 -1.035840 0.417498 2.399006 0.982759 0.830433 1.254654 3.154947 4.271879 1.193705 0.434961 -3.123991 0.887545 2.170648 -1.078400 -1.698705 0.060522 -2.101861 0.055581 0.204060 -0.391493 1.071302 -2.254158 -1.874588 -1.321871 -0.200936 1.994185 1.078991 -3.667112 1.069598 -0.970664 1.438053 1.241322 1.745695 2.768643 2.712271 3.057519 -1.018176 0.702471 -0.679000 0.793642 0.314751 1.532422 1.040465 0.983598 2.755661 1.127233 0.441829 1.900306 1.738705 0.252533 2.432261 0.181942 4.530933 -1.496132 0.902434 -1.520680 -0.766590 2.122737 5.698880 -1.678363 0.857678 1.243299 1.274229 -0.694746 -2.854949 -0.123407 -1.419514 0.323588 -0.315646 0.486155 -0.571192 -0.955224 3.024690 0.518786 -3.689168 1.713671 0.043273 0.385086 2.237308 -0.536090 -0.310749 0.649854 -3.073777 2.517527 2.161328 1.579128 -1.765306 -0.723463 -0.338174 2.009692 -0.437630 1.486367 -2.137208 2.128392 2.120238 2.611387 1.800839 1.091891 -2.456748 -1.900069 1.229888 -2.133747 -1.086092 1.309015 2.230908 -2.182125 1.286572 -1.527160 -2.725995 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__partial_sort >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.575410 0.523628 0.724494 -1.142412 -1.879459 0.332724 -0.618153 -0.628958 0.184958 0.377603 0.803176 -1.051762 -0.270882 1.983520 -0.682352 -0.995812 -0.453863 -0.915152 -0.261932 -0.170506 0.128075 0.742038 -0.278494 0.442999 -0.223591 0.031617 -0.288688 0.371360 1.020886 -0.614394 -1.223749 -0.121709 -0.053324 1.344582 0.209166 -0.724463 0.634359 2.403693 -0.656289 0.863034 -1.193871 -1.004155 0.412105 0.189336 -0.185513 -1.283470 -1.393658 0.820523 -0.788158 0.056079 1.359272 0.134772 -0.367759 0.198169 0.854872 0.750332 -2.398937 1.573728 0.319264 0.558136 0.294878 -0.339861 0.067234 0.467587 -0.365677 -0.699424 0.645297 0.867171 -0.644807 -0.016608 -0.126703 -1.760625 1.972043 0.440165 -0.977199 0.165616 1.016243 -1.555949 1.394804 -1.574640 -1.672220 0.363729 0.015761 -0.561753 1.701880 -0.176982 0.433426 -2.042442 0.645212 -2.127966 0.570390 -1.660177 0.418115 1.635118 -1.567421 -0.014925 0.545086 0.863125 1.841673 0.425754 1.488905 0.906046 0.552602 0.292113 0.732471 0.748607 -0.437903 -0.118262 -1.002349 -1.848479 -0.361057 -0.213041 -2.680564 0.399265 0.176128 0.231031 -0.028464 -0.033514 -0.019958 1.035653 -1.561024 -0.864843 0.228467 -0.158522 0.547575 1.789813 -0.836769 0.609948 -0.875594 1.749461 -0.466959 0.608304 -0.063159 0.231375 -0.886555 -1.482840 -2.385021 0.656984 0.785973 -0.773118 -1.446647 -1.738771 0.011776 -0.144124 -0.520115 1.759201 2.650243 -0.786513 -1.346207 1.892779 0.887057 0.073139 1.962305 -0.189438 2.203431 -0.717789 -0.109415 -0.661450 -0.602004 -0.871392 -0.565337 0.611445 -0.012299 0.296992 0.201246 -1.475983 1.584725 -0.227966 -1.029738 -0.434130 0.341251 -0.731686 -1.057147 1.950382 0.143376 0.987174 0.505127 1.989496 -0.579326 -1.454036 0.873907 -0.539916 0.456423 -0.820663 -0.585211 0.315980 1.246459 -0.991306 -0.437787 -0.219666 -0.541719 -0.948404 0.035366 0.906625 0.524653 0.460577 0.940712 0.882012 2.357198 0.441949 0.625774 -1.794745 0.508052 0.922076 -0.757338 -1.599231 0.344260 -1.051640 0.103006 0.225091 -0.418720 0.243166 -0.971421 -1.186106 -0.516532 -0.480564 1.071987 0.551445 -1.573243 0.415867 -0.925174 1.105362 0.642833 0.751825 1.766806 1.528908 1.742421 -0.126013 0.368376 -0.051769 0.533908 0.055396 0.613744 0.290759 0.656607 1.580632 0.628220 0.155306 0.937635 1.021933 -0.196133 1.253213 0.402529 2.473095 -0.157150 0.075196 -0.835818 -0.263133 1.169796 3.185547 -0.775756 0.422800 0.598790 0.872787 -0.208238 -1.553539 -0.056866 -0.724744 -0.338866 0.322685 -0.040549 -0.345593 -0.114690 1.329453 -0.005771 -1.719206 0.642008 -0.026538 0.392852 0.794247 -0.065635 -0.145016 0.439956 -1.750885 1.365066 1.169106 0.826474 -0.764381 -0.872874 -0.133908 0.950122 -0.121765 1.090183 -1.395099 1.158550 1.260310 1.247955 0.630015 0.624691 -1.229395 -1.285176 0.818366 -0.692135 -0.655449 0.280296 0.933035 -1.423052 0.547157 -0.494532 -1.868554 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition_pivot >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.469491 0.026664 1.252657 -1.441232 -2.754683 1.164369 -1.712116 -1.916340 0.561007 1.022599 1.343929 -1.479436 0.170872 2.872376 -0.833226 -1.542969 -0.249297 -0.684603 0.291183 -0.790776 0.210164 0.888511 -0.678818 0.696050 -0.850553 -0.454698 0.005973 0.429756 1.033361 -0.287288 -2.217636 -0.624803 -0.491652 2.510917 1.012440 -0.435681 0.541245 4.012411 -0.578498 2.035208 -2.574727 -2.029508 0.478023 0.341864 0.027603 -1.173672 -1.863740 1.175089 -0.887083 -0.128010 2.162901 -0.394784 0.017509 0.683879 1.085744 0.893870 -3.060651 1.640969 0.204160 -0.027090 0.017016 -0.750592 0.280940 1.622296 -1.736343 -1.261095 1.796578 2.218477 -0.874853 0.363256 -0.700466 -3.671499 2.677903 0.919470 -1.973919 -0.504861 1.746665 -2.238589 2.202335 -1.190747 -3.151659 0.297202 -0.447496 -1.431874 2.288040 0.028906 2.043696 -3.865221 1.888841 -4.315642 1.400845 -2.366108 1.424023 2.546189 -2.862719 -0.266350 1.424750 3.122204 3.206110 0.036451 2.504234 1.782204 0.062716 0.225475 2.195454 1.209617 -0.338735 -0.335481 -1.494918 -3.039161 -0.156526 -0.835320 -4.341875 0.629399 -0.481256 0.565557 -0.901060 0.558535 -0.145199 2.068268 -3.620237 -1.850720 0.358296 -0.316626 1.536665 2.505852 -1.640329 1.676980 -1.097834 3.057152 -1.190512 0.457495 -0.399048 0.624711 -1.906937 -1.556163 -4.530471 1.442125 2.119618 -2.012403 -2.880639 -3.257096 -0.398860 0.930109 -0.827517 3.844998 4.629339 -1.725933 -2.040008 2.679742 0.684202 -0.913527 3.819018 -0.209553 3.993226 -1.819973 0.436952 -1.423309 -0.519020 -1.376131 -0.709868 0.828281 0.050754 0.994840 0.230966 -1.725132 3.558430 -0.745288 -1.988257 -1.320271 0.455211 -0.361878 -1.336645 3.035960 -1.031813 1.225705 0.417867 3.272954 -1.282788 -2.137094 1.353309 -1.858820 0.067091 -0.725700 -0.541889 -0.118530 3.066663 -1.991465 -0.921602 -0.450482 -1.865937 -0.921709 0.273113 2.375108 0.789809 1.051377 1.233284 2.524073 4.327137 1.553784 0.412662 -2.704513 0.910704 2.195576 -1.186512 -1.473756 -0.130701 -2.475598 0.118398 -0.925877 -0.380823 1.097474 -2.472318 -1.836426 -1.650322 -0.299086 2.063520 1.349541 -3.363331 1.117958 -0.903712 1.783034 1.078892 1.592881 2.429540 3.019963 3.410858 -1.119447 0.694519 -0.494418 0.433079 0.594987 1.689371 0.722555 0.812824 2.592184 0.945295 0.457315 1.787747 1.310340 0.867169 2.208184 0.366877 4.240787 -0.839794 1.135451 -1.510066 -0.744768 2.135913 5.822852 -1.133208 0.971134 0.830453 1.002629 -1.056079 -2.716877 -0.098137 -1.022811 -0.314041 -0.311580 0.334139 -0.131991 -1.189114 2.745534 0.541616 -3.418292 1.271812 -0.107901 0.229509 2.720727 -0.630159 -0.076525 0.252172 -2.563372 2.740813 2.196722 1.567221 -1.460863 -1.105377 -0.380584 1.570898 0.310488 1.386733 -1.865154 2.781088 2.334605 2.578838 1.409754 0.876689 -2.711561 -1.371556 1.231978 -2.108912 -0.889966 0.996326 2.111000 -1.968564 0.939185 -1.566312 -2.844683 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__heap_select >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.429148 0.788280 1.410842 -1.676597 -2.200688 0.234832 0.142019 -0.655682 0.398075 2.175344 0.777243 -1.260033 -1.413511 2.870289 -0.789330 -1.542784 -0.241971 -1.430779 -0.179101 -0.471500 0.104364 1.323961 -0.162770 0.425530 0.252363 -0.238345 -0.394446 0.959518 0.742832 -0.735709 -1.078499 -0.271171 -0.081652 2.058067 -0.240623 -0.221802 0.341652 3.375839 -2.076044 2.623193 -2.682313 -2.327991 1.225952 0.309464 0.055159 -2.100867 -1.059745 1.243847 -1.147185 -0.666506 1.590240 0.289935 -0.300802 -0.343634 1.331187 1.335635 -3.725477 1.814560 0.217066 -0.150156 -0.166573 -0.335232 0.145357 0.719448 -0.906936 -1.194976 0.458765 0.614099 -1.396446 0.293582 -0.158105 -2.126455 1.907965 0.697173 -1.423110 0.671918 1.406796 -1.805321 1.987497 -2.912519 -2.041195 -0.010800 0.346756 -1.000764 1.906800 0.510039 1.105194 -3.201976 0.745855 -2.659533 1.608130 -2.208034 0.957781 2.411476 -1.130133 0.685078 0.843289 0.797489 2.239690 0.050075 2.107224 1.392278 1.611368 0.682237 1.042050 1.515285 -1.623114 -0.976224 -1.912407 -2.472180 -0.038722 -0.640963 -2.737590 0.190789 0.111392 0.457580 0.987328 -0.437249 -0.302186 1.658448 -3.341950 -0.872786 0.685413 -0.280706 0.932157 2.270962 -0.802900 0.527289 -0.647141 2.536716 -0.943999 1.044078 -0.070662 0.671391 -1.196534 -1.312941 -2.340940 0.467510 0.553827 -1.224760 -1.941520 -3.159456 -0.236084 0.655656 -0.671075 2.626313 4.168789 -1.101324 -2.135182 2.493015 0.360933 0.103005 1.993267 -0.003322 2.827355 -1.331611 -0.098440 -1.254566 -0.420323 -0.165856 2.448741 0.971900 -0.642290 0.730923 0.259565 -2.031563 1.032052 -0.380224 -1.051175 -1.658253 0.458530 -1.315260 -0.956485 2.506707 -1.527413 1.938351 -0.511000 2.893252 -1.245533 -2.083764 1.170961 -2.367444 0.243780 -1.814501 -1.119661 0.551706 1.573352 -2.017323 -0.711415 -1.187299 -1.042976 -1.070748 0.323829 -1.261110 0.546780 0.221258 0.913937 2.849979 2.642616 0.541728 0.390359 -2.685306 0.702572 0.861371 -0.597689 -2.832587 0.595379 -1.398469 -0.076586 0.848839 -0.592589 0.489829 -1.192041 -1.355556 -0.326711 -1.160118 0.727819 0.028687 -2.616394 0.373611 -0.672558 1.605858 1.119877 1.358858 2.455268 1.984018 1.869556 0.142735 0.258900 -0.530780 0.084950 0.618351 0.807179 -0.099586 1.053133 2.238415 0.995324 0.203392 1.881279 1.523012 -0.639056 1.991430 0.111315 3.146194 -0.535146 -0.006206 -0.500213 -0.339094 1.318849 3.714862 -1.195188 0.325760 1.326275 0.910032 -0.439289 -1.180764 -0.123028 -1.464769 -0.369873 1.344514 0.430288 -0.869732 -0.135850 2.219991 0.028256 -3.005239 1.156862 -0.157857 0.711855 1.080551 -0.175930 -0.171876 0.984612 -2.405144 1.793931 1.417431 1.294704 -1.545907 -1.036976 -0.187407 1.296691 1.301080 1.278062 -3.529658 0.354880 1.346848 2.137978 0.743444 2.190541 -1.536351 -1.402466 0.776538 -1.181538 -1.088281 -0.007296 1.141190 -1.238720 0.700318 -1.663379 -1.822381 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__sort_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 0.613470 0.178739 0.718437 -0.694302 -1.032947 0.072740 0.537469 -0.643589 0.282827 1.200993 0.476800 -0.810863 -0.927963 1.365220 -0.057972 -0.772891 0.327934 -0.899396 -0.023226 -0.422632 0.020566 0.669492 -0.088559 0.115698 0.168437 -0.043245 -0.272319 0.675579 0.290852 -0.507963 -0.757123 -0.256274 0.196596 1.460910 -0.023619 0.024517 -0.194032 2.135097 -1.033631 1.741460 -2.047668 -1.246421 1.018020 0.023388 -0.063775 -1.528315 -0.509741 0.954728 -0.235672 -0.868057 0.714019 0.126304 -0.096624 -0.398289 0.425272 1.349150 -2.060606 0.859972 0.163573 -0.468220 -0.367795 -0.218750 0.043186 0.587555 -0.961841 -0.996759 0.514251 0.098273 -0.916474 0.564974 -0.523352 -1.698821 1.070334 0.478189 -1.041529 0.189374 0.567587 -0.992221 1.249812 -0.932322 -1.082657 -0.217998 0.128621 -0.284201 0.876580 0.177298 0.843517 -2.305746 0.206399 -1.987560 1.177495 -1.545780 1.011848 1.366472 -0.831084 0.528296 0.380909 0.517761 1.276988 -0.234408 1.388566 0.849953 1.081195 0.089723 1.063016 0.860571 -0.703396 -0.796895 -0.989190 -1.359404 0.358380 -0.291346 -1.691265 0.244831 -0.529970 0.178544 0.530677 0.010537 -0.058701 1.195372 -2.050712 -0.602372 0.717915 -0.252713 0.935579 1.667180 -0.712309 0.403214 -0.564397 1.604433 -0.249364 0.783954 -0.219808 0.569492 -0.716689 -1.215289 -1.410300 0.149718 0.631407 -1.179078 -1.498360 -2.151508 -0.094348 0.443533 -0.645363 1.390218 2.697133 -0.790470 -1.122898 1.359251 0.381639 -0.117251 1.146062 -0.091339 2.377713 -1.363902 0.436631 -0.572129 0.112409 0.125541 1.890018 0.297056 -0.682929 0.380168 0.128958 -1.737598 1.169555 -0.262305 -0.550774 -0.204136 -0.023912 -0.162685 -0.822751 1.544426 -0.770690 1.223400 -0.620574 1.624072 -0.840541 -1.215760 0.903551 -1.040522 -0.129657 -0.801710 -0.607628 0.274492 1.312750 -1.371778 -0.500247 -0.704942 -1.061285 -0.380047 0.524156 -0.459733 0.175587 0.041233 0.474443 1.605724 1.515638 0.283632 0.221074 -1.798588 0.520330 0.810325 -0.060295 -1.454596 0.067643 -1.225900 -0.177654 0.053522 -0.285333 0.592221 -0.790791 -0.845826 0.002357 -0.614452 0.334345 -0.038977 -1.715622 0.341537 -0.147522 0.750183 0.516288 1.327671 1.356889 1.121400 1.060047 -0.389098 0.194634 -0.543540 -0.669665 0.539002 0.242596 0.172642 0.627381 0.930475 0.606211 0.021807 1.405457 0.344198 0.038096 1.431693 0.442454 1.961942 -0.543957 0.238099 -0.017208 -0.719070 1.035648 2.475205 -0.416701 -0.176642 0.845173 0.378764 -0.772452 -0.827109 -0.400118 -0.733146 -0.397824 0.990944 0.143934 -0.530674 -0.371801 1.866084 0.094303 -2.326891 0.865176 -0.064300 0.253888 1.165224 -0.293964 0.217680 0.695770 -1.145489 0.899172 0.811660 1.095556 -1.066742 -0.939895 -0.248535 0.685061 0.844683 0.441278 -2.564242 0.172828 0.926926 1.793075 0.619770 1.168193 -1.162640 -0.326471 0.341270 -0.753577 -0.524931 0.129047 1.038802 -0.820493 0.103417 -1.692657 -0.373509 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__make_heap >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.783383 0.574807 1.810917 -2.139255 -2.270008 1.241927 -0.434693 -2.613929 0.771390 3.504254 1.472833 -1.560884 -1.288366 2.833768 -1.011159 -2.020448 1.018229 -2.490923 0.395493 -1.906703 -0.169876 1.049734 -0.639247 -0.231654 -0.036147 -0.790074 0.063252 1.115742 0.869901 -1.196253 -2.728072 -0.654949 -0.211826 4.280959 0.857923 -0.803340 -0.070529 5.350706 -1.283186 2.299842 -5.094525 -3.471421 2.387021 0.277946 -0.134698 -2.716097 -0.686986 1.958474 -0.509440 -0.910625 1.698323 -1.064822 0.234119 -0.760311 0.175149 3.115754 -5.142207 2.228561 0.268137 -0.769132 -1.581040 -1.052516 1.874308 1.793495 -1.882893 -2.631843 2.743662 1.659943 -2.533221 1.393129 -2.213705 -5.060544 2.244710 1.475451 -2.291771 -0.291719 0.775555 -3.207273 2.715754 -1.808405 -3.172324 -0.575776 0.469428 -1.621549 2.445738 0.292666 2.650959 -6.165301 1.581136 -5.841489 2.323747 -3.190694 3.473057 3.315260 -2.843343 0.644064 1.273680 2.968593 3.046851 -1.121166 4.106749 1.810336 1.633128 -0.287310 2.973272 1.945031 -1.143575 -1.181216 -1.690363 -3.403377 0.059703 -0.586660 -4.875737 0.896219 -2.875584 -0.221984 0.148133 0.010916 -0.763220 3.499583 -5.944395 -3.635901 0.764402 -0.680642 3.125307 3.823411 -1.434130 1.804956 -0.864840 4.284392 -0.743536 0.611283 -1.124923 1.412496 -1.763668 -3.012885 -4.998256 0.815220 2.765001 -3.698479 -4.726726 -5.019362 -0.927032 0.539875 -1.379446 5.439851 6.767614 -1.897889 -3.370288 3.266619 -0.266105 -0.753435 5.268361 -0.191396 6.440288 -4.300696 2.058247 -1.241945 1.073602 -0.205693 1.235515 -0.203949 -0.745169 1.160769 0.419365 -1.012785 2.933403 -0.579553 -1.372007 -0.529554 0.176257 -0.255820 -2.381643 3.775612 -1.447582 3.040610 -0.093796 5.017416 -2.981174 -3.519513 2.215887 -2.642276 -0.493591 -0.887802 -1.127723 -0.436463 4.244964 -2.978652 -1.812612 -1.306768 -2.231979 -0.503403 1.943893 1.793817 0.912604 0.252876 0.378707 3.882515 4.628288 0.661525 0.855928 -4.148690 1.133586 3.610168 -0.267000 -2.822083 -0.509355 -3.657992 -0.315730 0.058766 -0.508892 2.491767 -2.775666 -2.475324 -0.548568 -0.165441 1.953591 0.337378 -5.042248 1.742041 -1.502137 0.916321 1.029144 3.929364 3.013185 3.322613 2.718386 -2.423811 1.011611 -1.854209 -0.711144 0.634960 1.331828 1.550457 1.457139 2.810345 1.124110 0.773595 3.091929 1.042632 0.361899 3.680983 0.613691 5.357941 -2.667145 1.588524 -0.987287 -2.363764 2.917108 7.136006 -1.440315 -0.579911 1.734023 1.233427 -1.728425 -3.828921 -0.833153 -1.674696 -0.335372 0.328329 1.123389 -0.853557 -1.992364 5.508163 0.987590 -6.086296 3.143590 -0.128716 0.247208 3.476558 -1.516260 0.083393 1.324918 -2.962030 2.452549 2.437152 3.024961 -2.625662 -1.166526 -0.518239 3.113695 -0.251548 0.507748 -4.999828 2.452049 2.789324 4.572947 2.933039 2.595755 -3.267155 -0.839137 0.630337 -2.315770 -0.887387 1.299123 3.542034 -2.887130 0.779746 -3.742006 -0.792364 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_iter::operator()(Job*, Job*) = 1.549307 0.372990 1.133946 -1.818183 -2.194125 1.213339 -1.735821 -1.421407 0.461175 0.851549 1.189421 -0.894801 0.335144 2.442379 -1.159541 -1.312350 -0.309743 -1.700764 0.011723 -0.500074 0.087728 0.642041 -0.645623 0.234889 -0.551366 -0.384872 0.049206 0.217968 0.894733 -0.732441 -2.250234 -0.285819 -0.709979 2.325806 0.866804 -1.285477 1.046796 3.469648 -0.380087 0.562073 -1.685194 -1.760553 0.532023 0.239642 -0.302592 -0.725463 -1.450509 0.886087 -0.657936 0.404359 1.922897 -0.633106 -0.060648 0.387384 0.650201 0.783237 -3.230950 1.742583 0.281097 0.875829 -0.082422 -0.830309 1.038612 1.016965 -0.572231 -1.039583 1.950178 1.945551 -0.983948 -0.107564 -0.649224 -3.134976 2.541747 1.008567 -1.130754 -0.223917 1.265963 -2.652235 1.859743 -1.549264 -2.707746 0.372557 -0.203826 -1.830548 2.678678 -0.376342 1.203963 -3.162249 1.816375 -3.581540 0.617767 -1.943760 1.149970 2.227344 -2.456166 -0.332767 1.122890 2.868449 2.363371 -0.017278 2.420941 1.241751 0.055205 0.186430 1.546403 0.863509 -0.453392 0.171594 -1.176027 -2.464043 -0.761747 -0.648301 -3.896900 0.774189 -0.521523 -0.071198 -0.711847 0.156716 -0.553663 1.976257 -2.968228 -2.033921 -0.183846 -0.269126 1.161281 2.200920 -1.138004 1.202030 -0.809307 2.617192 -0.934657 0.063092 -0.477335 0.407752 -1.350244 -1.196273 -3.891978 1.198232 1.858210 -1.684523 -2.653150 -2.382528 -0.433715 -0.038964 -0.608187 4.054050 3.858789 -1.154719 -2.122242 2.445500 0.629661 -0.226522 3.903106 -0.121273 3.125292 -1.535645 0.371981 -1.076368 -0.338499 -1.482577 -2.403435 0.439090 0.660462 0.750807 0.358428 -0.052386 2.926203 -0.303981 -1.456909 -0.587155 0.597632 -0.980893 -1.693951 2.702530 0.305973 1.224956 1.569139 3.308704 -1.332980 -1.976028 1.160550 -0.999167 0.415209 -0.826954 -0.675443 -0.304741 2.282469 -1.209749 -0.964040 -0.133986 -0.756554 -0.914710 0.450865 2.823959 1.039953 0.735517 0.789547 1.473006 3.813279 0.774398 0.781020 -2.302564 0.704662 2.142717 -1.315982 -1.356963 -0.090006 -1.759979 0.240052 0.235093 -0.335067 1.041845 -2.184164 -1.861938 -0.994964 0.290072 1.913489 1.046198 -3.248818 0.936233 -1.436436 1.063562 0.986501 1.397263 2.239665 2.508368 2.558514 -1.081387 0.639385 -0.246426 0.782341 -0.380306 1.149433 1.292392 0.849872 2.643094 0.687011 0.588643 1.143739 1.634149 0.255599 1.851051 0.269543 3.661971 -0.703902 0.567351 -1.562658 -0.693899 1.893770 4.846261 -1.376495 0.816026 0.717432 1.366742 -0.481116 -2.863518 0.195638 -1.003294 0.292688 -0.828684 0.456449 -0.088161 -0.938242 2.453580 0.464587 -2.790755 1.208582 0.040002 0.503326 1.881064 -0.517928 -0.075921 0.189981 -2.431331 2.396592 1.824204 1.284841 -1.206161 -0.355607 -0.066054 1.883864 -1.336988 1.194229 -1.097004 2.734979 1.665599 1.834492 1.689063 0.711336 -2.047938 -1.429929 0.975246 -1.508807 -0.571333 1.102309 1.995194 -2.367129 1.116916 -0.971008 -2.380955 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__pop_heap >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter&) = 2.198949 0.936988 1.503330 -1.778867 -3.269059 1.298852 -2.009630 -2.065402 0.405756 1.371202 1.436792 -1.396723 -0.077773 2.719068 -1.572017 -1.557185 -0.634476 -2.496654 -0.001977 -1.605114 0.051029 0.919456 -0.714602 0.630301 -0.772013 -0.488009 -0.238962 0.292218 1.394626 -1.177910 -2.437156 -0.394605 -0.362584 2.925329 1.116971 -1.852009 1.021656 4.520486 -0.163767 -0.057765 -2.793257 -2.424633 0.705400 0.241766 -0.203720 -1.559207 -1.665208 1.450024 -0.908664 0.870843 2.179670 -0.525997 -0.335376 0.609725 0.656144 1.260947 -4.395474 3.054004 0.223204 0.455023 -0.231396 -0.825275 1.001085 1.367293 -0.236667 -1.508841 2.376630 2.537909 -1.333364 0.417556 -0.709979 -3.834155 2.780605 0.925021 -1.583207 -0.430963 1.491193 -2.658148 2.481979 -2.131010 -3.305206 0.388656 -0.006869 -1.634405 2.858222 -0.292567 1.190466 -4.209233 1.774144 -4.667870 0.914784 -2.469078 1.549268 2.465557 -3.188420 -0.277379 1.322973 2.475757 3.490553 -0.255265 3.113354 1.316005 0.701981 0.556285 1.685382 1.152584 -0.098357 0.491037 -1.420363 -3.217974 -0.728104 -0.306622 -4.536867 1.007574 -0.763931 -0.233215 -0.759150 0.100776 -0.349280 2.536679 -3.743565 -3.080321 0.121596 -0.327737 1.701205 2.835745 -1.688491 1.793488 -1.247172 3.440929 -1.042733 0.471872 -0.449077 0.530438 -1.211820 -2.875832 -5.747286 1.554587 2.398919 -2.270270 -3.300366 -2.930946 -0.334484 -0.598456 -1.030923 4.610127 5.134172 -1.675929 -2.731712 3.270263 0.869628 -0.551900 4.942630 -0.287863 4.539251 -1.985897 0.369399 -1.199827 -0.592769 -1.551834 -2.529564 0.568266 0.674603 0.719826 1.073160 -0.278683 2.683298 -0.648098 -2.165854 -0.308785 0.654509 -0.576803 -1.927272 2.935137 1.084596 1.552829 1.758055 3.845005 -1.645559 -3.021420 1.542571 -1.075651 0.502853 -0.058218 -0.679105 -0.251738 2.954197 -1.696871 -1.075377 -0.263145 -1.444278 -1.326671 0.457458 3.799085 1.473255 1.141738 1.340709 1.681975 4.995556 1.103176 1.124933 -3.200436 0.921878 2.831420 -0.835529 -2.185680 -0.206892 -2.449566 0.248957 0.298147 -0.527460 1.447002 -2.083155 -2.059942 -1.258359 -0.081834 2.512597 1.473012 -3.158168 1.390213 -2.072343 1.456815 0.789097 1.936340 2.814835 3.056405 3.432452 -1.280953 0.889076 -0.710301 1.690821 -0.227746 1.689091 1.276990 1.137462 2.951797 1.054337 0.660952 1.869480 1.697277 0.106332 2.571577 0.112620 4.953587 -2.156753 1.293476 -2.259431 -0.788702 2.444558 6.511025 -1.373588 0.359135 0.919987 1.528457 -0.504250 -3.792549 -0.076764 -1.239407 0.478878 -0.736877 0.835432 -0.434022 -1.115351 3.149381 0.619274 -3.543032 2.109402 0.103824 0.253571 2.038390 -0.664437 -0.574603 0.539672 -3.212071 2.333164 2.614556 1.829504 -1.763045 -1.193728 -0.294042 2.669342 -1.908580 1.677773 -2.327348 3.018926 2.682217 2.416258 1.858899 0.753934 -2.961499 -2.503330 1.603660 -1.710379 -0.979910 2.022041 2.609560 -3.393712 1.628588 -0.740112 -2.768126 +PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(Job&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__adjust_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_iter) = 3.203329 1.142486 3.465499 -4.639602 -3.557423 2.263388 -1.522825 -4.030473 1.289721 5.550964 2.714248 -2.558709 -1.677883 4.808343 -2.634879 -4.387406 1.263342 -0.447874 0.447316 -3.198259 0.056771 1.347390 -1.037014 -1.115443 0.155043 -2.763003 1.300929 2.313892 2.152144 -0.450396 -3.842281 -0.886532 -0.408279 7.141657 1.007841 -0.301448 0.004834 7.784386 -1.823279 4.258516 -7.816845 -5.813628 4.285135 1.356852 0.153377 -5.124491 -2.538266 1.928319 -2.166066 -0.864836 2.329087 -2.517119 1.390051 -1.783432 0.723485 4.758949 -7.609339 2.347257 0.351432 -2.138099 -2.904080 -1.132062 3.688898 2.598399 -3.066218 -3.930753 3.686185 3.984305 -3.578932 1.826928 -3.297047 -8.318063 5.203292 2.325145 -3.542365 0.312807 1.450255 -6.115456 3.652354 -2.465465 -4.944091 -1.361546 1.735997 -2.950461 3.766457 0.971299 5.433990 -9.689419 2.452351 -8.822530 4.189693 -4.485444 5.954443 5.352351 -4.105409 1.455193 2.723802 4.530043 3.617172 -0.456552 6.665494 3.086524 2.223226 -0.887364 4.595732 3.164387 -2.765268 -3.254538 -2.917211 -5.710048 -0.663486 -1.718116 -9.781390 0.690003 -4.933534 0.340723 -0.187850 -0.823240 -1.014453 6.121369 -9.342787 -4.974475 1.197386 -1.244152 4.334154 5.588194 -0.589597 2.557045 -0.220236 6.655170 -2.087334 -0.513139 -1.832044 2.394185 -3.296859 -4.236102 -6.983540 1.373244 3.717029 -5.331551 -7.368006 -6.912101 -2.802129 2.717898 -1.291335 7.997869 10.757109 -2.534549 -6.549409 4.516708 -0.638860 -1.014110 8.818228 0.911756 10.013359 -7.338429 3.531521 -3.269135 2.062012 0.631882 2.183033 -0.705340 -1.436510 3.315428 -0.193268 -1.704782 5.663951 -2.200549 -1.178779 -1.563128 1.078889 -1.563089 -3.034778 6.433160 -3.256739 6.501724 -0.982525 9.465372 -6.060999 -6.402890 2.310282 -5.269706 -1.411631 -2.144125 -0.801518 -0.980705 7.048891 -4.641449 -3.654496 -2.034583 -3.276806 0.072785 3.802948 1.573705 1.056836 -0.241798 -1.039348 6.794161 6.706695 0.938403 0.768022 -5.978630 1.447061 5.442798 -1.093795 -5.623639 -0.398136 -5.296449 -0.360601 -0.604960 -0.716256 4.083318 -4.546087 -3.560962 -1.740733 -0.974248 2.797966 -0.686893 -8.067195 2.885434 -2.877544 1.464247 1.296929 6.167277 6.425832 5.657686 3.381482 -3.195733 2.141449 -3.721899 -0.893248 1.563462 3.020816 2.310830 2.075901 6.117941 0.911127 1.771470 4.645075 2.361054 1.459241 5.352336 0.424665 8.461516 -3.282949 1.873049 -1.379116 -3.484024 4.326142 11.400537 -1.871777 -0.285241 2.755792 2.666974 -2.107598 -7.609178 -0.808967 -2.200860 -1.697586 1.613581 3.148991 -1.328328 -3.503411 8.881340 2.448509 -9.602025 5.243757 -0.322337 0.483416 5.018125 -3.077588 -0.052272 2.488854 -3.339799 3.686022 3.215444 4.704152 -5.328233 -1.002443 -0.565382 5.217537 0.607170 0.275703 -7.798862 4.067588 4.127412 7.555725 4.276221 5.975254 -4.688558 -0.850589 0.466979 -3.588772 -1.774271 0.848090 4.216705 -4.225953 1.159123 -5.982744 -2.068597 +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.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_val::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.093408 0.025724 0.373658 -0.610964 -0.899209 0.200353 -0.230257 -0.338466 0.072537 -0.126913 0.448451 -0.485799 -0.273297 1.010218 -0.171837 -0.637562 -0.142028 -0.127934 -0.096583 0.068286 0.073714 0.362288 -0.159752 0.193647 -0.082741 -0.024077 -0.136738 0.349310 0.556834 -0.194424 -0.574255 -0.139819 -0.078990 0.735038 0.155903 -0.031633 0.260455 1.300685 -0.325605 0.860725 -0.631363 -0.469733 0.310373 0.049709 -0.168465 -0.733844 -0.849055 0.401995 -0.662234 -0.128814 0.739361 0.033142 -0.037873 0.079980 0.492126 0.450127 -1.143625 0.618483 0.205379 0.124523 0.206816 -0.166377 -0.213885 0.184713 -0.334456 -0.352684 0.204290 0.371351 -0.263547 -0.057153 -0.063547 -0.899199 1.322320 0.264967 -0.559815 0.116647 0.594020 -0.733782 0.679834 -0.549715 -0.930454 0.078827 -0.084442 -0.212810 0.930930 -0.079977 0.339574 -1.096136 0.215513 -1.181401 0.421464 -0.894654 0.240976 0.887791 -0.856967 0.095166 0.397675 0.372954 0.756502 0.266584 0.721566 0.463323 0.137708 0.180259 0.544441 0.279419 -0.277105 -0.257178 -0.587788 -0.923704 -0.082603 -0.281464 -1.524765 0.150445 0.097753 0.359068 -0.077505 0.122919 0.048291 0.425692 -0.683987 0.010490 0.197821 -0.116651 0.291061 0.934933 -0.397112 0.243164 -0.430801 0.887940 -0.377344 0.391142 -0.113964 0.222968 -0.328197 -0.680340 -1.059899 0.297320 0.375963 -0.372100 -0.757342 -0.873256 -0.045275 0.215601 -0.251980 0.706496 1.409710 -0.503504 -0.655466 0.960448 0.511865 0.154005 0.821255 0.025914 1.051623 -0.317216 -0.129810 -0.475741 -0.411462 -0.382335 -0.077692 0.334598 -0.145496 0.307073 0.008861 -1.087372 1.183927 -0.211690 -0.574009 -0.204063 0.092771 -0.428192 -0.564849 1.077781 -0.028520 0.547216 0.114680 1.035431 -0.256751 -0.704668 0.376139 -0.250663 0.145535 -0.569055 -0.291988 0.219824 0.549725 -0.638815 -0.305175 -0.190263 -0.283067 -0.443811 0.073704 0.372000 0.145368 0.276648 0.459853 0.485876 1.164296 0.278176 0.165436 -0.874812 0.317733 0.353863 -0.437643 -0.798773 0.196896 -0.468111 0.018968 0.042592 -0.132874 0.147336 -0.517520 -0.526782 -0.291807 -0.311415 0.485608 0.333278 -0.921165 0.139416 -0.157263 0.513312 0.456132 0.379725 0.988810 0.824019 0.859464 0.104173 0.141872 0.096976 0.041730 0.057989 0.284225 0.227964 0.322194 0.749831 0.395686 0.082669 0.519446 0.569114 0.175504 0.650005 0.372677 1.257853 0.230017 -0.111124 -0.239660 -0.080194 0.642684 1.523017 -0.389479 0.414979 0.348998 0.446077 -0.151542 -0.815925 0.030608 -0.329833 -0.330307 0.500624 -0.042728 -0.078564 -0.134267 0.739398 -0.051004 -0.964759 0.266225 0.039382 0.279974 0.464320 0.028376 0.020911 0.230573 -0.818279 0.793059 0.570024 0.456549 -0.476587 -0.425391 -0.062270 0.282796 0.312181 0.600368 -0.667136 0.396793 0.512141 0.751367 0.260637 0.318111 -0.588318 -0.523204 0.367696 -0.447775 -0.286000 -0.019770 0.337200 -0.515419 0.113848 -0.457870 -0.997199 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__push_heap >(Job*, long, long, Job, __gnu_cxx::__ops::_Iter_comp_val&) = 1.445397 0.591818 2.095207 -2.481090 -2.184576 1.186091 -0.678790 -1.930394 0.964748 2.364232 1.715092 -1.442913 -1.099087 3.116056 -1.317174 -2.349787 0.743117 -1.136268 0.268662 -1.274282 0.061313 1.018104 -0.528366 -0.107862 0.191550 -1.112097 0.314040 1.496030 1.299226 -1.025083 -2.243441 -0.350127 -0.563348 3.613687 0.373311 -0.175976 0.615563 4.655839 -1.450348 2.671018 -3.941283 -2.829878 2.125929 0.594574 -0.383931 -2.430812 -1.374091 1.231279 -1.798048 -0.354403 1.991287 -1.083169 0.527105 -0.640455 0.861250 2.642000 -4.737103 1.619585 0.263666 -0.452412 -1.010757 -0.737708 1.401967 1.225011 -1.408630 -1.954328 2.150437 1.779696 -2.179080 0.747634 -1.314543 -4.103524 3.226970 1.011427 -1.781470 0.300484 1.268722 -3.174954 2.298322 -2.083082 -2.951953 -0.444575 0.784116 -1.656938 2.580335 0.128064 2.486474 -5.173533 1.144832 -4.678110 2.319961 -2.778326 2.769735 3.128379 -2.697104 0.728104 1.420837 2.239230 2.129998 -0.065191 3.688378 1.601927 1.113786 -0.175390 2.461409 1.556390 -1.494127 -1.416545 -1.979703 -3.329254 -0.361740 -0.744496 -5.171842 0.374517 -2.141282 0.454809 0.176335 -0.321177 -0.381227 3.089422 -4.392751 -1.879641 0.531671 -0.539546 2.072815 3.473865 -0.622327 1.265540 -0.376378 3.854590 -1.342884 0.355280 -0.975281 1.168661 -1.293433 -2.536863 -3.920982 0.484810 1.849558 -2.674683 -3.812297 -4.003970 -1.027111 1.097346 -0.706276 4.574254 5.984872 -1.477539 -3.381632 2.971510 0.169849 -0.280074 4.580157 0.172180 5.141415 -3.432641 1.330497 -1.861011 0.662494 -0.074593 0.994062 0.134253 -0.542869 1.408932 0.196022 -1.493359 3.587785 -0.678966 -0.998014 -0.752101 0.475638 -1.135148 -2.246652 3.728223 -0.938847 3.280935 0.000341 5.252075 -2.752743 -3.567367 1.579128 -2.070082 -0.150722 -1.571434 -1.025897 -0.009443 3.355697 -2.336011 -1.783602 -1.553895 -1.467637 -0.349569 1.425143 1.374660 0.908066 0.052373 -0.110936 3.277019 4.079844 0.598786 0.607839 -3.660249 0.744843 2.734107 -0.649836 -2.980375 0.241832 -2.753083 -0.138057 0.152079 -0.524107 1.961035 -2.540805 -2.238750 -0.954074 -0.434734 1.621257 0.041694 -5.081266 1.249283 -1.331961 0.802473 1.144591 2.818137 3.526590 3.064350 2.208742 -1.420708 0.879667 -1.244344 -0.275305 0.402072 1.391150 1.411685 1.119173 3.203885 0.910440 0.864170 2.382703 1.598709 0.329725 2.964066 0.566363 4.744471 -1.479488 0.865966 -0.909365 -1.545088 2.545278 5.984369 -1.436087 0.143481 1.516329 1.953275 -0.915190 -4.079907 -0.452017 -1.552174 -0.660663 0.971873 0.901970 -0.668473 -1.548586 4.419837 1.012865 -5.052210 2.542186 -0.330860 0.372923 2.362431 -1.134003 -0.460272 1.297775 -2.910215 2.372702 1.737562 2.543716 -2.260897 -0.690928 -0.307737 2.786746 0.145206 0.818912 -4.138858 2.080575 2.218259 3.746402 2.449090 2.968936 -2.400926 -1.017977 0.307707 -2.238433 -1.048794 0.586289 2.199691 -2.427015 0.725602 -3.098251 -1.650753 +PE-benchmarks/weighted-job-scheduling.cpp__std::remove_reference::type&& std::move(bool (*&)(Job, Job)) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Iter_comp_val::operator()(Job*, Job&) = 1.549307 0.372990 1.133946 -1.818183 -2.194125 1.213339 -1.735821 -1.421407 0.461175 0.851549 1.189421 -0.894801 0.335144 2.442379 -1.159541 -1.312350 -0.309743 -1.700764 0.011723 -0.500074 0.087728 0.642041 -0.645623 0.234889 -0.551366 -0.384872 0.049206 0.217968 0.894733 -0.732441 -2.250234 -0.285819 -0.709979 2.325806 0.866804 -1.285477 1.046796 3.469648 -0.380087 0.562073 -1.685194 -1.760553 0.532023 0.239642 -0.302592 -0.725463 -1.450509 0.886087 -0.657936 0.404359 1.922897 -0.633106 -0.060648 0.387384 0.650201 0.783237 -3.230950 1.742583 0.281097 0.875829 -0.082422 -0.830309 1.038612 1.016965 -0.572231 -1.039583 1.950178 1.945551 -0.983948 -0.107564 -0.649224 -3.134976 2.541747 1.008567 -1.130754 -0.223917 1.265963 -2.652235 1.859743 -1.549264 -2.707746 0.372557 -0.203826 -1.830548 2.678678 -0.376342 1.203963 -3.162249 1.816375 -3.581540 0.617767 -1.943760 1.149970 2.227344 -2.456166 -0.332767 1.122890 2.868449 2.363371 -0.017278 2.420941 1.241751 0.055205 0.186430 1.546403 0.863509 -0.453392 0.171594 -1.176027 -2.464043 -0.761747 -0.648301 -3.896900 0.774189 -0.521523 -0.071198 -0.711847 0.156716 -0.553663 1.976257 -2.968228 -2.033921 -0.183846 -0.269126 1.161281 2.200920 -1.138004 1.202030 -0.809307 2.617192 -0.934657 0.063092 -0.477335 0.407752 -1.350244 -1.196273 -3.891978 1.198232 1.858210 -1.684523 -2.653150 -2.382528 -0.433715 -0.038964 -0.608187 4.054050 3.858789 -1.154719 -2.122242 2.445500 0.629661 -0.226522 3.903106 -0.121273 3.125292 -1.535645 0.371981 -1.076368 -0.338499 -1.482577 -2.403435 0.439090 0.660462 0.750807 0.358428 -0.052386 2.926203 -0.303981 -1.456909 -0.587155 0.597632 -0.980893 -1.693951 2.702530 0.305973 1.224956 1.569139 3.308704 -1.332980 -1.976028 1.160550 -0.999167 0.415209 -0.826954 -0.675443 -0.304741 2.282469 -1.209749 -0.964040 -0.133986 -0.756554 -0.914710 0.450865 2.823959 1.039953 0.735517 0.789547 1.473006 3.813279 0.774398 0.781020 -2.302564 0.704662 2.142717 -1.315982 -1.356963 -0.090006 -1.759979 0.240052 0.235093 -0.335067 1.041845 -2.184164 -1.861938 -0.994964 0.290072 1.913489 1.046198 -3.248818 0.936233 -1.436436 1.063562 0.986501 1.397263 2.239665 2.508368 2.558514 -1.081387 0.639385 -0.246426 0.782341 -0.380306 1.149433 1.292392 0.849872 2.643094 0.687011 0.588643 1.143739 1.634149 0.255599 1.851051 0.269543 3.661971 -0.703902 0.567351 -1.562658 -0.693899 1.893770 4.846261 -1.376495 0.816026 0.717432 1.366742 -0.481116 -2.863518 0.195638 -1.003294 0.292688 -0.828684 0.456449 -0.088161 -0.938242 2.453580 0.464587 -2.790755 1.208582 0.040002 0.503326 1.881064 -0.517928 -0.075921 0.189981 -2.431331 2.396592 1.824204 1.284841 -1.206161 -0.355607 -0.066054 1.883864 -1.336988 1.194229 -1.097004 2.734979 1.665599 1.834492 1.689063 0.711336 -2.047938 -1.429929 0.975246 -1.508807 -0.571333 1.102309 1.995194 -2.367129 1.116916 -0.971008 -2.380955 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__move_median_to_first >(Job*, Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.054813 1.829100 2.910079 -2.570381 -3.515425 0.380664 -0.434015 -1.343772 0.639420 5.985380 0.525579 -1.977047 -2.700758 5.368073 -2.545962 -2.468270 -0.884038 -2.852438 0.064477 -2.269849 0.100142 2.534884 -0.071373 0.649173 0.688949 -1.172012 -0.433375 1.113263 0.281236 -1.226824 -0.892204 -0.577738 -0.080590 3.531973 -0.633184 -0.003546 0.120906 5.396590 -3.586630 4.558391 -6.086767 -5.569978 2.088035 0.754051 1.252023 -3.388712 -0.814980 1.914059 -2.053493 -0.140800 1.798820 0.337986 -1.028267 -0.806079 2.196408 1.614192 -6.975413 3.994912 -0.310327 -1.274972 -1.084954 -0.448343 0.818304 1.106074 -0.767094 -2.092594 0.516926 2.178626 -3.270706 1.329717 0.085228 -2.780723 1.291744 0.912731 -2.208983 1.240513 2.199507 -1.863081 3.139643 -7.156443 -3.104836 -0.485196 1.414788 -1.925817 2.228379 2.571797 2.233570 -5.541663 1.956157 -4.059296 3.144364 -2.974974 1.976056 3.626437 -1.055610 1.662050 1.678662 1.048189 4.335375 -0.009613 3.476542 2.430253 3.056076 1.747367 1.262337 2.991398 -2.881879 -1.394903 -3.023572 -3.997549 -0.337229 -1.036988 -3.052471 -0.177635 0.016163 1.027985 1.874606 -0.962704 -0.815575 2.554767 -8.023646 -2.988849 1.039987 -0.385878 1.836803 2.444050 -0.891895 1.027364 -0.620360 4.237791 -2.060878 1.030248 0.103756 1.189022 -2.020685 -2.232296 -4.652645 0.610978 0.447310 -2.242314 -3.149821 -5.674631 -1.004737 1.638704 -0.999357 5.843064 7.137597 -1.675266 -4.153639 3.987456 -0.804084 -0.280214 4.004706 0.375851 4.318898 -2.296316 -0.222177 -2.017947 -0.317714 0.727135 4.752059 1.551418 -1.160500 1.371545 1.286958 -1.808579 -0.943077 -1.053228 -1.632867 -5.213044 1.093569 -2.273525 -0.117078 3.224445 -4.223265 3.671607 -1.954500 4.884813 -2.910296 -4.088132 1.590892 -7.121678 0.118373 -1.885514 -1.377960 -0.091060 2.888713 -4.249674 -1.328048 -2.139915 -2.377646 -1.581214 0.719426 -3.325725 1.113754 0.247004 1.115705 6.993398 4.056700 0.875296 0.760597 -4.415377 0.877209 1.782435 0.161128 -5.951515 1.210012 -2.239543 -0.177303 1.894508 -0.936724 0.846841 -1.692378 -1.618638 -0.895448 -2.334178 1.287868 -0.474834 -2.763988 0.732083 -1.787510 2.938751 1.667907 2.372160 3.902212 3.033688 2.642066 0.306435 0.247557 -2.416356 2.012530 1.781781 2.475006 -1.231245 1.703320 4.167590 1.587988 0.499327 3.535554 2.981566 -2.048626 3.480408 -1.196638 5.136173 -3.386185 0.954457 -1.349313 -0.162197 1.809322 6.050838 -2.770138 0.063498 2.501216 0.924223 -0.001577 -1.223354 -0.277142 -2.772305 -0.266373 2.049979 1.931062 -1.843141 -0.193498 3.739663 0.576946 -4.827500 3.080490 -0.251309 0.776154 0.925732 -0.615359 -1.353300 2.088612 -4.221736 1.954163 2.459083 2.147209 -3.140652 -1.830936 -0.462712 3.124555 3.036858 2.108976 -6.603283 0.514230 2.862234 3.441304 0.862906 4.053835 -2.566960 -3.418334 1.102738 -2.094714 -2.346452 0.898985 1.803552 -1.697770 1.873231 -1.768678 -3.082786 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__unguarded_partition >(Job*, Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.147357 0.513931 1.948202 -2.019220 -2.358191 0.396135 0.122840 -0.764270 0.603985 2.607458 0.836110 -1.317144 -1.969575 3.349926 -0.722038 -2.120227 -0.153120 -1.217168 -0.062040 -0.756449 0.115066 1.469870 -0.167145 0.467167 0.422078 -0.671523 -0.306859 1.489918 0.768526 -0.610155 -0.995249 -0.410461 -0.356946 2.629996 -0.359027 0.369417 0.348699 4.200040 -2.583716 3.749862 -3.290000 -3.123232 1.699448 0.387511 -0.041441 -2.017700 -1.141462 1.381782 -2.016736 -0.879497 1.921224 0.289950 -0.080009 -0.531095 1.689887 1.587134 -4.485517 1.735548 0.057439 -0.673390 -0.487350 -0.389762 0.024612 0.896618 -1.347670 -1.423670 0.591978 0.770638 -1.746054 0.370795 -0.069212 -2.552486 2.355016 0.931479 -1.620994 0.965688 2.000038 -1.861808 2.362152 -2.998361 -2.546817 -0.314183 0.391299 -1.735386 2.393152 0.801780 1.722293 -3.989102 0.989436 -3.231902 2.288919 -2.572698 1.342682 2.948896 -1.343072 1.166965 1.289579 1.227941 2.197124 -0.284843 2.557637 1.589864 1.751412 1.038435 1.599885 1.638939 -2.249776 -1.514234 -2.615904 -2.948510 0.115031 -1.403963 -3.145706 0.048960 -0.004941 0.755197 1.260285 -0.370195 -0.551248 2.002314 -4.323567 -0.432402 0.898482 -0.396576 1.152749 2.508542 -0.892089 0.529586 -0.394070 3.157015 -1.552400 1.100360 -0.222785 0.957982 -1.056765 -0.769970 -2.609401 0.473238 0.645244 -1.497244 -2.413087 -3.725752 -0.611325 1.481819 -0.634137 3.585987 5.292201 -1.363568 -2.632766 2.900117 -0.012437 0.355498 2.295390 0.321969 3.161873 -1.663561 -0.188538 -2.006130 -0.448710 0.208522 3.403106 1.263409 -0.812991 1.307052 0.402003 -1.841907 1.606962 -0.788874 -1.220463 -2.506507 0.647476 -1.738749 -1.064209 3.086455 -2.312604 2.529452 -0.765767 3.639554 -1.664199 -2.585364 1.270124 -3.378334 0.042051 -2.448392 -1.386914 0.408839 1.820501 -2.628963 -1.075456 -1.890873 -1.360660 -1.012816 0.449960 -1.513811 0.648303 0.192968 0.946301 3.933915 3.189668 0.868335 0.041955 -3.353764 0.821986 1.028699 -0.725667 -3.129270 0.804895 -1.502686 -0.129610 1.003472 -0.548714 0.749660 -1.695064 -1.459892 -0.648260 -1.305263 0.689482 -0.040666 -3.973167 0.410638 -0.236482 1.768064 1.723259 1.621284 3.244585 2.374968 2.186974 0.325736 0.242329 -0.636922 -0.162607 0.811521 1.022668 0.221370 1.206305 2.827363 1.247847 0.300944 2.384706 2.092022 -0.464797 2.422687 0.140454 3.852630 -0.388560 -0.061183 -0.443887 -0.286374 1.543089 4.296960 -1.524392 0.756885 1.832745 1.282662 -0.542258 -1.659081 -0.098478 -1.894048 -0.191046 1.897587 0.601084 -1.106079 -0.312232 2.805761 0.197560 -3.873602 1.395292 -0.164283 0.882776 1.417074 -0.285791 -0.265894 1.224173 -3.021287 2.355282 1.584586 1.500961 -2.158963 -0.690218 -0.198844 1.513375 2.034830 1.506306 -4.236779 0.215489 1.263855 2.692682 1.023383 2.879814 -1.802398 -1.537970 0.760698 -1.926064 -1.319293 0.019907 1.224063 -1.226849 0.934119 -2.475197 -2.335323 +PE-benchmarks/weighted-job-scheduling.cpp__void std::iter_swap(Job*, Job*) = 0.143433 0.249664 0.198329 -0.422935 -0.622517 -0.045607 0.095298 -0.115631 -0.011887 0.033784 0.273125 -0.432351 -0.288321 0.758332 -0.163119 -0.383646 -0.138475 -0.429643 -0.229281 0.071967 0.022437 0.338623 -0.048055 0.107994 0.063051 0.140482 -0.209997 0.197072 0.361603 -0.426498 -0.347339 -0.022943 0.133254 0.459987 -0.055527 -0.170252 0.143727 0.852539 -0.299605 0.445149 -0.500069 -0.309944 0.303960 0.003673 -0.102095 -0.768525 -0.510458 0.396929 -0.227432 -0.147043 0.395363 0.176359 -0.271648 -0.106173 0.294712 0.459894 -0.941618 0.656136 0.214647 0.194444 0.100238 -0.073029 -0.086335 -0.022335 -0.050995 -0.315361 0.036411 0.056530 -0.317035 0.033351 -0.049559 -0.503807 0.828349 0.123678 -0.305443 0.196798 0.237333 -0.470155 0.506649 -0.722968 -0.465867 0.084126 0.111543 0.095600 0.550393 -0.040432 -0.009628 -0.736652 0.014586 -0.673641 0.234255 -0.684893 0.115743 0.598065 -0.444688 0.137970 0.089465 -0.098067 0.569074 0.300522 0.524874 0.257753 0.364390 0.109935 0.186506 0.261504 -0.214629 -0.157718 -0.359462 -0.653282 -0.040674 0.067190 -0.932346 0.163038 0.094175 0.134653 0.154491 -0.018938 0.124203 0.228144 -0.446331 -0.158520 0.213665 -0.067068 0.172718 0.746434 -0.246459 0.062358 -0.438056 0.558551 -0.039466 0.411103 0.017473 0.128993 -0.206469 -0.817918 -0.609348 0.079677 0.116053 -0.242738 -0.445676 -0.664787 0.111825 -0.093652 -0.286763 0.335782 0.945378 -0.281184 -0.468561 0.715343 0.539858 0.165684 0.442105 -0.082457 0.853184 -0.241789 -0.087015 -0.063846 -0.238301 -0.156835 -0.016227 0.194283 -0.213421 0.034552 0.029391 -0.980889 0.528653 -0.022980 -0.277744 0.122251 0.043314 -0.296224 -0.461570 0.684079 0.247252 0.515480 0.060173 0.681394 -0.157977 -0.490510 0.353442 -0.032136 0.165965 -0.404075 -0.267842 0.221703 0.308256 -0.397477 -0.128450 -0.094793 -0.172599 -0.410412 0.083688 -0.005426 0.126825 0.081692 0.335693 0.160441 0.661306 -0.029743 0.284963 -0.717513 0.197659 0.192492 -0.139473 -0.776942 0.193245 -0.309518 -0.016012 0.235432 -0.196444 0.013914 -0.125739 -0.370091 0.047864 -0.299809 0.233674 0.056060 -0.258333 0.011203 -0.296209 0.389727 0.183991 0.350936 0.656680 0.445940 0.438450 0.103017 0.081540 0.022606 0.039127 0.000434 -0.009983 0.079774 0.304998 0.377646 0.283861 0.026669 0.440086 0.279864 -0.195467 0.503222 0.276867 0.845545 -0.006192 -0.147239 -0.113150 -0.103252 0.432920 0.972846 -0.307931 0.011787 0.274212 0.270169 -0.084187 -0.386534 -0.095884 -0.241870 -0.358232 0.447405 -0.086246 -0.159765 0.081093 0.504723 -0.131606 -0.646784 0.246658 0.004808 0.213481 0.112682 0.059212 0.011409 0.320503 -0.555083 0.265200 0.352791 0.374708 -0.297625 -0.456639 -0.045475 0.295685 0.065162 0.408232 -0.702344 0.162529 0.437450 0.487196 0.082613 0.214596 -0.336377 -0.434961 0.251858 -0.031948 -0.224746 -0.022880 0.229958 -0.425341 -0.001576 -0.248382 -0.479202 +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.960671 0.913701 1.000098 -0.994351 -2.004311 0.631192 -1.091360 -0.909067 0.052467 0.674137 0.692013 -0.509611 -0.172590 1.256111 -1.122597 -0.876815 -0.802264 -1.557333 -0.199699 -1.069498 -0.004408 0.526138 -0.343248 0.471996 -0.373546 -0.375796 -0.139943 0.136710 0.680682 -0.783654 -0.867263 -0.177856 -0.167572 1.300073 0.464732 -1.077771 0.670396 2.231309 0.084514 -0.722945 -1.206896 -1.490912 0.251305 0.091782 -0.010965 -0.904201 -0.749954 0.707989 -0.604583 0.906953 1.124046 -0.105541 -0.309131 0.378088 0.413490 0.262522 -2.400255 1.884894 0.084239 0.147963 -0.115097 -0.310957 0.413935 0.483067 0.561940 -0.611274 1.036876 1.462436 -0.588756 0.138590 0.091371 -1.501247 1.539558 0.283334 -0.468999 -0.017000 0.925371 -1.105624 1.266285 -1.546918 -1.703724 0.219231 0.169871 -0.778171 1.477853 -0.114828 0.250313 -1.856930 0.853228 -2.062434 0.297124 -1.012139 0.425079 1.053612 -1.386256 -0.028606 0.801631 0.722653 1.702946 -0.074879 1.511229 0.431033 0.589816 0.766886 0.416505 0.459617 -0.094697 0.455236 -0.917662 -1.748101 -0.482388 -0.026928 -2.124513 0.499832 0.125178 -0.248719 -0.326908 -0.195875 -0.013926 1.194951 -1.772360 -1.412055 0.103516 -0.110626 0.509871 1.114539 -0.718621 0.839165 -0.524862 1.631819 -0.801108 0.342363 0.010772 0.196452 -0.157811 -1.621267 -3.016289 0.838120 0.950081 -0.824237 -1.323989 -1.021550 -0.110377 -0.438546 -0.464635 2.101171 2.530305 -0.857364 -1.572911 1.757391 0.628674 -0.226645 2.331153 -0.000955 1.847360 -0.485075 -0.390867 -0.677775 -0.679889 -0.657199 -1.662713 0.487714 0.561135 0.497742 0.830125 0.254706 0.852229 -0.523181 -1.227531 0.000218 0.519960 -0.624617 -0.803650 1.126780 1.366166 0.883520 1.298606 1.940003 -0.741303 -1.635615 0.481675 -0.495908 0.469341 0.013445 -0.230169 -0.028542 1.085603 -0.662980 -0.490157 -0.195504 -0.622138 -0.878885 0.010190 1.754443 1.024832 0.717952 0.775465 0.481910 2.613903 0.577948 0.517359 -1.542915 0.422300 1.130751 -0.203502 -1.332336 -0.048582 -0.849540 0.199426 0.618199 -0.292225 0.648063 -0.516546 -0.758362 -0.623791 -0.242383 1.135056 0.818330 -1.043073 0.519364 -1.228851 0.907492 0.190920 0.654691 1.624814 1.544225 1.748298 -0.143651 0.447231 -0.208034 1.548548 -0.388180 0.945687 0.589310 0.625438 1.574471 0.656683 0.460530 0.956006 1.213432 -0.240300 1.216169 -0.337644 2.600953 -1.474353 0.536749 -1.424521 0.212725 1.116458 3.008776 -0.624435 0.246814 0.413280 0.926002 0.150962 -1.899967 0.151483 -0.644429 0.559416 -0.314382 0.826379 -0.319509 -0.299304 1.216618 0.233718 -1.398639 1.103256 0.103339 0.223395 0.463880 -0.149536 -0.634976 0.358210 -1.700441 0.949127 1.407959 0.783073 -1.019516 -0.525113 -0.019421 1.583165 -1.498206 1.211168 -1.156962 1.281019 1.296366 0.751477 0.557522 0.427453 -1.464659 -1.833702 1.098292 -0.642957 -0.607026 1.391377 1.041815 -1.842849 1.060934 0.236450 -1.659785 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 1.379628 0.972014 2.511809 -2.852861 -4.125467 1.532426 -1.804797 -1.981336 0.656779 3.478764 1.314460 -1.392104 -1.670788 4.082897 -1.776675 -2.915589 -0.813157 -2.379318 0.310369 -1.595465 0.007888 1.829254 -0.705619 0.945198 -0.248042 -1.141626 -0.329509 1.079003 1.447518 -0.835728 -2.164057 -0.754831 -1.053214 3.813646 0.622054 -0.733112 1.084707 6.170868 -1.681431 2.780651 -4.198849 -4.499205 1.362345 0.481387 0.171832 -1.848375 -1.243684 1.740056 -2.472660 0.248977 3.033644 -0.359315 -0.041306 0.343655 1.919245 1.150083 -6.131869 3.282272 0.012622 -0.283676 -0.434162 -0.938556 0.658147 1.729353 -1.000051 -1.806020 1.819258 2.697036 -2.150986 0.272979 -0.216127 -3.981038 3.418245 1.521638 -2.376275 0.411206 2.772836 -2.910906 3.186832 -4.185882 -4.494222 0.003770 0.151960 -2.793133 3.793962 0.772523 2.419639 -5.600347 2.589535 -5.396157 2.315753 -3.020111 1.928592 3.990284 -2.721230 0.609064 2.302323 2.939855 3.961780 -0.725722 3.904721 2.024328 1.421970 1.674571 1.897741 1.978292 -2.021320 -0.640232 -2.932675 -4.261153 -0.586653 -1.441650 -4.972649 0.503934 -0.081584 1.035759 0.482849 -0.210990 -0.991922 2.883581 -6.452251 -2.701390 0.370388 -0.491924 2.100844 3.016652 -1.560979 1.716004 -0.621516 4.688233 -2.511903 0.821255 -0.459580 1.137347 -1.533139 -1.197843 -5.858814 1.550888 2.001695 -2.400108 -3.803156 -4.523866 -0.998055 1.118382 -0.872690 6.268760 7.341674 -2.289343 -3.787163 4.435925 -0.677660 -0.125154 5.032113 0.275501 4.281750 -1.992581 -0.396254 -2.637817 -0.923029 -1.029192 1.195394 1.650990 0.111283 1.742702 1.029598 0.019580 1.809423 -1.070611 -2.686914 -3.490893 0.960722 -2.156983 -1.491048 3.880013 -2.083822 2.638727 0.714745 5.315856 -2.273610 -3.798336 1.636256 -4.201395 0.339673 -2.001112 -1.413831 0.084681 2.943085 -3.371702 -1.529316 -1.542856 -1.745371 -1.814740 0.362585 1.086320 1.506179 1.215875 1.585967 5.195327 5.793321 1.747575 0.202297 -4.173483 1.240699 2.201783 -1.490749 -3.383414 0.363451 -2.416230 0.108975 1.523672 -0.669950 1.455020 -2.597112 -2.234466 -1.692280 -0.950902 2.390558 1.271513 -5.110797 1.196656 -1.189516 2.348370 1.998146 2.035334 4.040055 4.055438 4.074680 -0.225338 0.749342 -0.722524 1.660731 0.391943 2.410855 0.837335 1.624656 4.351340 1.818590 0.880197 2.866503 3.276758 -0.278435 3.368221 -0.618720 6.156566 -1.992210 0.754912 -2.001295 -0.158105 2.520560 7.118404 -2.600755 1.452133 1.945873 1.805064 -0.372010 -3.307384 0.439778 -2.451170 0.746545 0.377381 1.477727 -0.902079 -1.079058 3.846349 0.516342 -4.949549 2.487636 -0.004681 1.032325 2.345535 -0.447012 -0.842324 0.985747 -4.622619 3.721400 3.182183 2.050702 -2.795850 -0.644200 -0.229813 2.902125 0.236467 2.537111 -3.899435 1.764450 2.485327 3.277745 2.027481 2.816789 -3.169309 -3.174404 1.835540 -2.932600 -1.708934 1.322400 2.418952 -2.548863 2.126086 -1.858389 -4.077510 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_insertion_sort >(Job*, Job*, __gnu_cxx::__ops::_Iter_comp_iter) = 0.455600 0.220024 1.016197 -1.713691 -2.105382 0.611275 -0.509466 -0.784560 0.317920 0.913541 0.918263 -1.052683 -1.140153 2.382088 -0.382683 -1.775046 -0.120360 -1.134654 -0.028682 -0.077376 -0.032111 1.011303 -0.379021 0.481276 0.042278 -0.171243 -0.467741 0.910600 1.392393 -0.717882 -1.495790 -0.293768 -0.531166 2.120065 0.215344 -0.393537 0.784877 3.633550 -1.129838 2.021930 -1.804293 -1.712872 0.975899 0.162332 -0.476178 -1.196999 -1.154089 1.131709 -1.772610 -0.334232 1.956689 -0.000594 -0.083412 0.034500 1.200605 1.260690 -3.434619 1.720169 0.356149 0.463372 0.147088 -0.592822 -0.030975 0.622388 -0.799606 -1.066125 0.828273 0.686124 -1.162500 -0.155756 -0.362660 -2.260561 2.603120 0.988727 -1.390626 0.413386 1.450606 -1.898464 1.775300 -1.888538 -2.459849 0.123248 -0.071927 -1.247177 2.573213 -0.068575 0.980560 -3.100329 0.929544 -3.048414 1.155434 -2.209223 0.977014 2.607164 -1.832023 0.366408 0.959871 1.240700 1.821106 -0.135479 2.205105 1.007780 0.623860 0.643026 1.205243 0.936776 -1.178151 -0.577726 -1.588243 -2.304911 -0.289444 -0.750286 -3.210079 0.413767 -0.134279 0.751872 0.473153 0.108208 -0.518760 1.243884 -2.566908 -0.821954 0.217496 -0.346994 1.189536 2.392269 -0.960068 0.631916 -0.731237 2.609978 -0.981628 0.889538 -0.455357 0.654787 -0.696232 -0.902570 -2.738115 0.594726 1.085077 -1.216294 -2.208461 -2.540019 -0.293830 0.256870 -0.602740 2.975005 4.039358 -1.234259 -1.784821 2.690207 0.062677 0.644989 2.420162 -0.034518 2.599831 -1.116327 -0.140752 -1.268103 -0.607987 -0.862149 0.471729 0.891289 -0.228160 0.690517 0.204592 -0.875369 1.793088 -0.220787 -1.379311 -1.285843 0.294818 -1.263865 -1.566715 2.763364 -0.812339 1.498174 0.562422 2.973595 -0.877037 -1.973414 1.278527 -1.133117 0.340024 -1.737536 -1.207460 0.410764 1.334581 -1.734782 -0.848807 -0.870592 -0.476538 -1.190950 0.212884 0.915093 0.570402 0.533663 1.087195 2.165894 3.106374 0.658735 0.303416 -2.588589 0.789693 1.044574 -1.251728 -1.745293 0.498512 -1.223657 -0.022834 0.951111 -0.442891 0.571647 -1.557575 -1.572962 -0.607088 -0.385415 1.313157 0.715494 -3.336314 0.539837 -0.349661 0.994419 1.487867 1.189486 2.326482 2.096756 2.137482 -0.024840 0.348072 0.223540 0.084895 -0.012738 0.632531 0.867285 0.982000 2.043585 1.103435 0.313139 1.448523 1.622005 -0.141874 1.854626 0.554412 3.377031 0.157352 -0.208062 -0.620712 -0.452634 1.540310 3.846444 -1.562769 0.864979 1.201051 1.225439 -0.373406 -2.048969 0.094590 -1.341368 -0.150232 0.676243 -0.098523 -0.459270 -0.412370 2.205526 -0.102946 -2.896579 1.013162 0.025996 0.785527 1.290048 0.011423 -0.108896 0.628467 -2.753063 2.258382 1.577050 1.206598 -1.199754 -0.325635 -0.124152 1.156329 0.251963 1.392918 -1.978278 0.746460 1.167022 2.007646 1.386123 1.298301 -1.405352 -1.434433 0.845898 -1.479187 -0.766530 0.012378 1.237329 -1.380750 0.720852 -1.434440 -2.250139 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::move_backward(Job*, Job*, Job*) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/weighted-job-scheduling.cpp__void std::__unguarded_linear_insert >(Job*, __gnu_cxx::__ops::_Val_comp_iter) = 0.835529 0.968047 1.837100 -1.748473 -2.949467 0.811138 -1.215985 -1.220755 0.347545 1.384874 1.091181 -1.094031 -0.846702 2.579445 -1.380683 -1.745239 -0.898880 -1.634587 -0.205692 -1.452748 0.109734 1.003354 -0.412560 0.682901 -0.288563 -0.759647 -0.164061 0.850706 1.131649 -0.809987 -1.215001 -0.329653 -0.332245 2.323304 0.360746 -0.830600 0.869933 3.867052 -0.936807 0.788869 -2.347530 -2.612009 0.906944 0.299024 -0.127118 -1.565513 -1.490388 1.157625 -1.731812 0.676045 1.941435 0.003937 -0.201819 0.245582 1.142331 0.861319 -4.068788 2.430609 0.053272 -0.209862 -0.264479 -0.435469 0.297614 0.886191 -0.065205 -1.102249 1.309792 1.880884 -1.131123 0.242814 0.148654 -2.572701 2.634829 0.579566 -1.096737 0.351070 1.874990 -1.836959 2.188649 -2.348113 -2.742301 0.089118 0.272163 -1.594525 2.478461 0.128791 1.004239 -3.375426 1.158234 -3.348786 1.234870 -2.042039 0.918231 2.163874 -2.155061 0.428694 1.365545 1.304384 2.489652 -0.154676 2.457295 1.069412 1.140701 1.159257 1.195530 1.021711 -0.911442 -0.183884 -2.024840 -2.929620 -0.458777 -0.808283 -3.553262 0.463811 0.122390 0.035794 0.007647 -0.310289 -0.213224 2.057747 -3.219918 -1.247451 0.471036 -0.267558 0.846543 2.095707 -1.104131 1.069729 -0.620721 2.874000 -1.505043 0.692944 -0.101158 0.542503 -0.518147 -1.874271 -4.119676 1.099323 1.241842 -1.345314 -2.271821 -2.336545 -0.419145 0.265891 -0.617341 3.438700 4.586721 -1.363696 -2.613091 2.831219 0.724557 -0.058903 3.283298 0.204647 3.097637 -1.114046 -0.478920 -1.689999 -0.939819 -0.583515 -0.470587 1.007897 0.297753 1.123878 1.006197 -0.542265 1.882143 -0.989846 -1.725678 -1.037086 0.854963 -1.293256 -1.223800 2.455340 0.510128 1.848077 0.990810 3.366310 -1.394935 -2.739350 0.915697 -1.762249 0.465815 -0.916673 -0.710745 0.098549 1.846881 -1.627397 -0.966729 -1.017419 -1.166220 -1.171622 0.136973 1.445021 1.266202 0.813271 1.164211 1.879250 3.943327 1.039819 0.490618 -2.859655 0.718864 1.612873 -0.538743 -2.510465 0.329912 -1.405631 0.181745 0.740239 -0.443923 0.955420 -1.320129 -1.316838 -1.084869 -0.754713 1.431194 0.855999 -2.880174 0.744690 -1.263973 1.597524 0.950030 1.195144 3.076842 2.474024 2.690595 0.026898 0.563198 -0.457758 1.500431 -0.013172 1.450637 0.730724 1.018645 2.813819 1.093640 0.553723 1.817955 2.096466 -0.232794 2.091227 -0.170594 4.132325 -1.386132 0.541507 -1.656054 0.150908 1.729973 4.805960 -1.043038 0.682382 1.118103 1.573746 -0.031403 -2.862036 0.096857 -1.329812 0.505714 0.523754 0.988677 -0.770150 -0.442719 2.253333 0.407668 -2.867381 1.560272 0.044618 0.502791 1.029705 -0.317056 -0.802474 0.797285 -2.890270 1.983245 1.971121 1.293114 -1.894881 -0.754979 -0.106295 2.104057 -0.540895 1.809237 -2.724687 1.503490 1.750350 1.799740 0.960785 1.543693 -2.201435 -2.434229 1.376339 -1.543165 -1.138347 1.398392 1.424562 -2.407225 1.497248 -0.738357 -2.831778 +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.170154 -0.013153 0.100493 -0.374127 -0.604825 0.221905 -0.534312 -0.258232 0.028635 -0.223988 0.225702 -0.376031 -0.275526 0.669355 -0.176760 -0.632461 -0.183216 -0.054914 -0.025074 0.058519 -0.012096 0.199669 -0.120874 0.162202 -0.084771 0.010223 -0.154632 0.057160 0.686804 -0.250396 -0.538662 -0.052219 -0.091120 0.537398 0.150388 -0.024891 0.321729 0.952092 0.285868 0.437516 -0.412704 -0.343925 0.078579 0.058929 -0.105904 -0.241415 -0.412255 0.285970 -0.808705 0.149522 0.530072 -0.027344 -0.232680 0.130561 0.358787 0.293925 -0.937774 0.808210 0.086932 0.349018 0.232402 -0.174671 -0.120005 0.053232 0.062064 -0.249173 0.144228 0.459380 -0.425808 -0.027500 -0.090744 -0.564400 1.048984 0.255458 -0.491479 0.041305 0.379358 -0.297655 0.373485 -0.657314 -0.698255 0.118910 0.040646 0.015022 0.759012 0.080099 0.113947 -0.781590 0.274418 -0.871848 0.256072 -0.598647 0.251923 0.680744 -0.761405 -0.019219 0.263525 0.149503 0.592274 0.255571 0.580618 0.176771 -0.139260 0.083436 0.216414 0.038499 -0.033385 0.018811 -0.155186 -0.636689 -0.274121 -0.030371 -1.103684 0.076912 -0.064946 0.693639 -0.059024 0.276717 -0.039371 -0.158838 -0.676841 -0.489425 -0.089728 -0.075415 0.523213 0.603767 -0.299502 0.273800 -0.319511 0.710024 -0.190556 0.054932 -0.156646 0.094665 -0.047004 -0.507244 -1.096276 0.212758 0.394489 -0.247328 -0.619146 -0.506735 -0.088723 -0.000326 -0.161943 0.806030 0.986729 -0.296137 -0.368124 0.772872 -0.063370 0.364026 0.920279 -0.028138 0.735718 -0.247947 0.005491 -0.129731 -0.209831 -0.416141 -0.750786 0.193932 -0.069125 0.067007 0.126616 -0.179322 0.352471 -0.077957 -0.452560 -0.461658 -0.035602 -0.280356 -0.399028 0.740395 -0.065739 0.333783 0.272459 0.785518 -0.213075 -0.634327 0.359180 -0.150330 0.118805 -0.137985 -0.251246 -0.005458 0.358033 -0.634804 -0.212379 0.077642 -0.047586 -0.391168 0.019634 0.932255 0.070271 0.217107 0.373379 0.543892 0.885058 0.152958 0.189820 -0.683548 0.167985 0.302940 -0.451536 -0.398440 0.230313 -0.335420 0.037137 0.305060 -0.132863 -0.022445 -0.343939 -0.461811 -0.343688 -0.086055 0.692460 0.320985 -0.347297 0.112368 -0.151097 0.176311 0.415246 0.260077 0.617506 0.539692 0.633247 -0.023766 0.177253 0.073511 0.436154 -0.069838 0.231397 0.329230 0.215047 0.393087 0.253878 0.020806 0.284238 0.436446 -0.047297 0.459299 0.292669 0.974889 -0.018357 -0.003924 -0.278919 -0.195899 0.462259 1.186067 -0.856739 0.394600 0.261797 0.357496 0.131931 -0.688946 -0.015231 -0.286942 -0.315882 0.128439 -0.197313 0.022311 -0.121625 0.501150 -0.034223 -0.577516 0.348005 0.038936 0.109542 0.217626 0.015154 -0.185438 0.150458 -0.839489 0.420187 0.440269 0.331223 -0.225042 -0.145720 -0.109793 0.315931 -0.123960 0.409425 0.136877 0.309100 0.541547 0.533788 0.460983 -0.194744 -0.328383 -0.656470 0.215249 -0.378543 -0.216921 -0.031378 0.259591 -0.290444 0.092888 0.024850 -0.921390 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a(Job*, Job*, Job*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__miter_base(Job*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_wrap(Job* const&, Job*) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a1(Job*, Job*, Job*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__niter_base(Job*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward_a2(Job*, Job*, Job*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/weighted-job-scheduling.cpp__Job* std::__copy_move_backward::__copy_move_b(Job const*, Job const*, Job*) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/weighted-job-scheduling.cpp__bool __gnu_cxx::__ops::_Val_comp_iter::operator()(Job&, Job*) = 1.549307 0.372990 1.133946 -1.818183 -2.194125 1.213339 -1.735821 -1.421407 0.461175 0.851549 1.189421 -0.894801 0.335144 2.442379 -1.159541 -1.312350 -0.309743 -1.700764 0.011723 -0.500074 0.087728 0.642041 -0.645623 0.234889 -0.551366 -0.384872 0.049206 0.217968 0.894733 -0.732441 -2.250234 -0.285819 -0.709979 2.325806 0.866804 -1.285477 1.046796 3.469648 -0.380087 0.562073 -1.685194 -1.760553 0.532023 0.239642 -0.302592 -0.725463 -1.450509 0.886087 -0.657936 0.404359 1.922897 -0.633106 -0.060648 0.387384 0.650201 0.783237 -3.230950 1.742583 0.281097 0.875829 -0.082422 -0.830309 1.038612 1.016965 -0.572231 -1.039583 1.950178 1.945551 -0.983948 -0.107564 -0.649224 -3.134976 2.541747 1.008567 -1.130754 -0.223917 1.265963 -2.652235 1.859743 -1.549264 -2.707746 0.372557 -0.203826 -1.830548 2.678678 -0.376342 1.203963 -3.162249 1.816375 -3.581540 0.617767 -1.943760 1.149970 2.227344 -2.456166 -0.332767 1.122890 2.868449 2.363371 -0.017278 2.420941 1.241751 0.055205 0.186430 1.546403 0.863509 -0.453392 0.171594 -1.176027 -2.464043 -0.761747 -0.648301 -3.896900 0.774189 -0.521523 -0.071198 -0.711847 0.156716 -0.553663 1.976257 -2.968228 -2.033921 -0.183846 -0.269126 1.161281 2.200920 -1.138004 1.202030 -0.809307 2.617192 -0.934657 0.063092 -0.477335 0.407752 -1.350244 -1.196273 -3.891978 1.198232 1.858210 -1.684523 -2.653150 -2.382528 -0.433715 -0.038964 -0.608187 4.054050 3.858789 -1.154719 -2.122242 2.445500 0.629661 -0.226522 3.903106 -0.121273 3.125292 -1.535645 0.371981 -1.076368 -0.338499 -1.482577 -2.403435 0.439090 0.660462 0.750807 0.358428 -0.052386 2.926203 -0.303981 -1.456909 -0.587155 0.597632 -0.980893 -1.693951 2.702530 0.305973 1.224956 1.569139 3.308704 -1.332980 -1.976028 1.160550 -0.999167 0.415209 -0.826954 -0.675443 -0.304741 2.282469 -1.209749 -0.964040 -0.133986 -0.756554 -0.914710 0.450865 2.823959 1.039953 0.735517 0.789547 1.473006 3.813279 0.774398 0.781020 -2.302564 0.704662 2.142717 -1.315982 -1.356963 -0.090006 -1.759979 0.240052 0.235093 -0.335067 1.041845 -2.184164 -1.861938 -0.994964 0.290072 1.913489 1.046198 -3.248818 0.936233 -1.436436 1.063562 0.986501 1.397263 2.239665 2.508368 2.558514 -1.081387 0.639385 -0.246426 0.782341 -0.380306 1.149433 1.292392 0.849872 2.643094 0.687011 0.588643 1.143739 1.634149 0.255599 1.851051 0.269543 3.661971 -0.703902 0.567351 -1.562658 -0.693899 1.893770 4.846261 -1.376495 0.816026 0.717432 1.366742 -0.481116 -2.863518 0.195638 -1.003294 0.292688 -0.828684 0.456449 -0.088161 -0.938242 2.453580 0.464587 -2.790755 1.208582 0.040002 0.503326 1.881064 -0.517928 -0.075921 0.189981 -2.431331 2.396592 1.824204 1.284841 -1.206161 -0.355607 -0.066054 1.883864 -1.336988 1.194229 -1.097004 2.734979 1.665599 1.834492 1.689063 0.711336 -2.047938 -1.429929 0.975246 -1.508807 -0.571333 1.102309 1.995194 -2.367129 1.116916 -0.971008 -2.380955 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Val_comp_iter::_Val_comp_iter(__gnu_cxx::__ops::_Iter_comp_iter&&) = 0.093408 0.025724 0.373658 -0.610964 -0.899209 0.200353 -0.230257 -0.338466 0.072537 -0.126913 0.448451 -0.485799 -0.273297 1.010218 -0.171837 -0.637562 -0.142028 -0.127934 -0.096583 0.068286 0.073714 0.362288 -0.159752 0.193647 -0.082741 -0.024077 -0.136738 0.349310 0.556834 -0.194424 -0.574255 -0.139819 -0.078990 0.735038 0.155903 -0.031633 0.260455 1.300685 -0.325605 0.860725 -0.631363 -0.469733 0.310373 0.049709 -0.168465 -0.733844 -0.849055 0.401995 -0.662234 -0.128814 0.739361 0.033142 -0.037873 0.079980 0.492126 0.450127 -1.143625 0.618483 0.205379 0.124523 0.206816 -0.166377 -0.213885 0.184713 -0.334456 -0.352684 0.204290 0.371351 -0.263547 -0.057153 -0.063547 -0.899199 1.322320 0.264967 -0.559815 0.116647 0.594020 -0.733782 0.679834 -0.549715 -0.930454 0.078827 -0.084442 -0.212810 0.930930 -0.079977 0.339574 -1.096136 0.215513 -1.181401 0.421464 -0.894654 0.240976 0.887791 -0.856967 0.095166 0.397675 0.372954 0.756502 0.266584 0.721566 0.463323 0.137708 0.180259 0.544441 0.279419 -0.277105 -0.257178 -0.587788 -0.923704 -0.082603 -0.281464 -1.524765 0.150445 0.097753 0.359068 -0.077505 0.122919 0.048291 0.425692 -0.683987 0.010490 0.197821 -0.116651 0.291061 0.934933 -0.397112 0.243164 -0.430801 0.887940 -0.377344 0.391142 -0.113964 0.222968 -0.328197 -0.680340 -1.059899 0.297320 0.375963 -0.372100 -0.757342 -0.873256 -0.045275 0.215601 -0.251980 0.706496 1.409710 -0.503504 -0.655466 0.960448 0.511865 0.154005 0.821255 0.025914 1.051623 -0.317216 -0.129810 -0.475741 -0.411462 -0.382335 -0.077692 0.334598 -0.145496 0.307073 0.008861 -1.087372 1.183927 -0.211690 -0.574009 -0.204063 0.092771 -0.428192 -0.564849 1.077781 -0.028520 0.547216 0.114680 1.035431 -0.256751 -0.704668 0.376139 -0.250663 0.145535 -0.569055 -0.291988 0.219824 0.549725 -0.638815 -0.305175 -0.190263 -0.283067 -0.443811 0.073704 0.372000 0.145368 0.276648 0.459853 0.485876 1.164296 0.278176 0.165436 -0.874812 0.317733 0.353863 -0.437643 -0.798773 0.196896 -0.468111 0.018968 0.042592 -0.132874 0.147336 -0.517520 -0.526782 -0.291807 -0.311415 0.485608 0.333278 -0.921165 0.139416 -0.157263 0.513312 0.456132 0.379725 0.988810 0.824019 0.859464 0.104173 0.141872 0.096976 0.041730 0.057989 0.284225 0.227964 0.322194 0.749831 0.395686 0.082669 0.519446 0.569114 0.175504 0.650005 0.372677 1.257853 0.230017 -0.111124 -0.239660 -0.080194 0.642684 1.523017 -0.389479 0.414979 0.348998 0.446077 -0.151542 -0.815925 0.030608 -0.329833 -0.330307 0.500624 -0.042728 -0.078564 -0.134267 0.739398 -0.051004 -0.964759 0.266225 0.039382 0.279974 0.464320 0.028376 0.020911 0.230573 -0.818279 0.793059 0.570024 0.456549 -0.476587 -0.425391 -0.062270 0.282796 0.312181 0.600368 -0.667136 0.396793 0.512141 0.751367 0.260637 0.318111 -0.588318 -0.523204 0.367696 -0.447775 -0.286000 -0.019770 0.337200 -0.515419 0.113848 -0.457870 -0.997199 +PE-benchmarks/weighted-job-scheduling.cpp____gnu_cxx::__ops::_Iter_comp_iter::_Iter_comp_iter(bool (*)(Job, Job)) = 0.056185 0.138521 0.287218 -0.514428 -0.763271 0.079404 -0.042654 -0.211197 0.029549 -0.177093 0.406095 -0.460342 -0.364626 0.814145 -0.113574 -0.553383 -0.125766 -0.243197 -0.179063 0.064751 0.043097 0.307648 -0.099651 0.150057 -0.009671 0.061307 -0.189500 0.340305 0.562438 -0.324487 -0.460950 -0.059202 0.033540 0.594767 0.050005 -0.096347 0.233696 1.074655 -0.310204 0.594128 -0.512708 -0.330436 0.337232 0.025850 -0.214413 -0.760849 -0.702710 0.407366 -0.591225 -0.124984 0.608842 0.104241 -0.109683 -0.010132 0.393325 0.529523 -1.061483 0.651740 0.217124 0.161255 0.184676 -0.101047 -0.196013 0.063675 -0.121285 -0.331241 0.119118 0.154308 -0.269911 -0.046909 -0.058749 -0.700526 1.171855 0.176396 -0.412196 0.168393 0.422670 -0.585349 0.584151 -0.543163 -0.694354 0.078342 0.019320 -0.018078 0.776273 -0.112086 0.100318 -0.898653 -0.013244 -0.924639 0.335044 -0.794616 0.174886 0.716420 -0.692356 0.116762 0.237143 -0.010343 0.587685 0.260156 0.622011 0.283116 0.263866 0.142229 0.364916 0.216772 -0.241271 -0.211356 -0.494511 -0.788010 -0.064121 -0.105322 -1.252840 0.156856 0.065399 0.245912 0.063137 0.032109 0.103151 0.299334 -0.395003 0.037322 0.204564 -0.095017 0.242917 0.901561 -0.316217 0.144574 -0.407104 0.724048 -0.207838 0.434141 -0.074381 0.175263 -0.123515 -0.826779 -0.832323 0.188389 0.263421 -0.283425 -0.593475 -0.691122 0.056923 0.001080 -0.259921 0.421777 1.176362 -0.392949 -0.555295 0.838963 0.552994 0.239707 0.608504 -0.024491 0.975020 -0.282910 -0.108072 -0.295172 -0.355381 -0.266323 -0.057183 0.255746 -0.177865 0.171816 0.046922 -1.031083 0.868436 -0.117553 -0.427670 0.084657 0.058099 -0.358720 -0.577376 0.885556 0.271957 0.527380 0.163403 0.861274 -0.198675 -0.647990 0.371453 0.045077 0.163163 -0.484206 -0.330262 0.279989 0.366009 -0.477614 -0.220044 -0.202349 -0.161390 -0.425228 0.072220 0.281901 0.136429 0.178569 0.398910 0.182246 0.924563 0.122348 0.224183 -0.819447 0.256990 0.254335 -0.289864 -0.777371 0.210171 -0.369608 0.006975 0.196268 -0.165483 0.102164 -0.279181 -0.449277 -0.105612 -0.310134 0.362055 0.211725 -0.639900 0.072384 -0.184879 0.380566 0.344205 0.362510 0.845843 0.626267 0.643948 0.140259 0.118249 0.122836 0.029397 -0.031613 0.087091 0.231068 0.317919 0.512609 0.339527 0.045511 0.474744 0.417029 0.000779 0.567953 0.384573 1.047093 0.189991 -0.158490 -0.156799 -0.102970 0.537026 1.219824 -0.337534 0.211443 0.315037 0.422148 -0.084051 -0.700796 -0.034773 -0.287380 -0.344136 0.563243 -0.094176 -0.117156 -0.036489 0.619942 -0.103298 -0.800262 0.254609 0.024407 0.242422 0.251526 0.051040 -0.010100 0.270706 -0.720519 0.522161 0.449750 0.428121 -0.384157 -0.410577 -0.050732 0.273393 0.129558 0.496803 -0.698676 0.197100 0.440264 0.618647 0.212970 0.259528 -0.451718 -0.489382 0.298903 -0.243709 -0.230578 -0.052512 0.255003 -0.506882 0.046376 -0.355036 -0.723311 +PE-benchmarks/weighted-job-scheduling.cpp___GLOBAL__sub_I_weighted_job_scheduling.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/euler-circuit-directed-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::Graph(int) = 1.339109 -0.330584 2.168916 -1.953415 -1.424701 1.609009 -1.296961 -0.914713 1.164366 2.392973 1.822368 -1.015820 -2.365527 0.519624 -0.743406 -2.684946 1.965593 0.851406 1.401619 -1.647997 0.119107 0.195014 -0.220675 -1.581621 1.019728 -1.798389 -0.280727 2.198314 2.041296 1.322682 -1.701311 0.091614 -0.506267 4.094644 0.026052 -0.156623 0.761923 4.013689 -0.695462 1.705077 -3.353192 -3.782839 3.727580 1.051123 0.451319 -0.720747 -0.537933 0.669262 -4.195528 -0.678373 0.861276 -1.827675 2.204476 -1.457524 -0.473010 2.915026 -5.598954 0.179212 -0.638792 -1.873615 -2.145440 0.554229 1.007493 1.305122 0.072905 -1.975626 1.328048 1.929812 -1.443471 0.468447 -1.051342 -3.401140 3.206187 0.985556 -0.850620 0.638151 1.657544 -2.700860 1.709214 -0.653228 -2.618323 -1.108443 0.428001 -2.237489 2.557244 0.536797 3.734552 -4.320603 1.184794 -4.459224 3.409773 -1.759470 3.170426 2.599705 -2.783313 1.416889 2.185637 1.696414 1.068046 -0.101087 4.417142 1.751407 1.343886 -0.379195 2.221204 1.432141 -1.755936 -1.427507 -1.990397 -2.255081 -1.054804 -1.847334 -4.763021 -0.164728 -3.143676 1.618433 1.330552 -0.804979 -0.413551 3.105926 -3.968889 -1.145631 0.206769 -0.444774 2.051694 1.867264 0.193572 -0.266261 1.691002 4.294945 -1.762877 -1.627201 -0.313230 1.714613 -0.224312 -2.089584 -2.479535 0.909343 1.544423 -3.094124 -3.862993 -3.406936 -0.777884 1.978812 0.003661 3.489605 6.098942 -0.274500 -2.767370 1.931954 -2.229412 -0.338595 5.195253 1.124286 4.282519 -3.853372 1.669069 -2.374086 1.249480 0.581627 1.797903 -0.397472 -0.512457 1.869734 0.910628 0.987430 2.047961 -1.291860 0.678750 -1.012290 0.082224 -1.296001 -1.228674 2.882235 -1.114068 3.248700 0.101763 5.083478 -2.455964 -4.804600 1.429923 -1.936346 -1.731457 -0.479762 -0.554047 0.061739 1.576890 -2.747713 -2.232821 -2.259921 -0.428588 0.341660 2.456446 2.240216 0.850460 0.267265 -1.612725 2.349856 1.494080 0.470363 0.077126 -3.309359 -0.062864 1.580266 -1.832843 -2.797436 -0.339609 -2.399201 0.643781 1.351042 0.271463 2.989495 -1.519333 -1.914065 -0.500648 0.002400 1.067728 -1.169185 -4.122948 1.257838 0.632663 -0.309919 1.263367 3.571652 4.033874 2.520602 -0.314583 -0.414363 1.019508 -1.468979 -0.107274 -0.160777 0.813247 1.985481 0.207657 2.336536 -0.006408 1.195108 1.781466 2.039150 1.167772 2.884282 0.789655 3.197057 -1.178252 0.212036 0.752104 -2.228625 2.215485 3.957645 -1.578802 0.233183 1.054752 1.564934 -0.581366 -3.456716 0.539930 -1.235873 -0.458268 1.204267 1.711493 0.300070 -2.324003 3.563419 2.445896 -5.640949 3.769426 -0.371194 0.100328 2.571444 -1.650321 -0.168332 0.682312 -1.438472 2.396534 1.212102 1.857778 -3.565638 0.338721 0.119829 3.085472 -0.192450 0.141650 -2.928332 0.661867 0.396660 2.600252 3.072701 3.227068 -2.442687 -1.241332 -1.383922 -3.591653 -1.709789 -0.290477 0.555147 -1.692520 1.161773 -3.417376 -0.399555 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isEulerianCycle() = 0.779989 0.104254 1.288950 -1.286153 -0.336646 0.557213 0.842083 -0.966780 0.378842 3.189926 0.641329 -0.537853 -1.952667 1.519534 -0.303123 -1.583840 1.096618 -0.124352 0.216815 -0.615891 -0.439511 0.578561 -0.219761 -1.104509 1.112603 -0.875790 0.282682 1.497904 0.104426 0.284532 -0.937153 -0.322565 -0.120730 2.929977 -0.153157 0.588841 -0.111150 3.056784 -2.312543 3.098150 -2.858498 -3.038854 2.846055 0.281856 0.089718 -0.962054 0.384618 1.067703 -1.269310 -1.716507 0.598635 -0.803824 0.789914 -1.624073 0.224402 2.389621 -3.495869 0.360466 0.116871 -1.214961 -1.902078 -0.607312 0.942010 0.484128 -1.444987 -1.772319 0.628065 0.365718 -1.722605 0.568901 -1.558516 -2.617188 1.798397 0.802521 -1.170383 0.758358 0.303950 -1.770734 1.290474 -0.921469 -1.490518 -1.022892 0.809036 -1.015527 1.458980 1.201559 2.151730 -3.920916 0.377410 -3.018035 2.395221 -1.692108 2.640676 2.445464 -1.036724 1.455717 1.056498 1.661700 0.177606 -0.540022 2.644888 0.863542 1.240878 -0.119978 1.493363 1.496039 -2.461502 -2.251561 -1.766100 -1.524378 0.384936 -0.868469 -2.411221 -0.081540 -2.198514 0.789423 1.254258 -0.491355 -0.871163 2.186578 -4.483297 -0.622473 0.676453 -0.520038 2.244555 1.787417 0.119753 0.314493 0.512359 2.516360 -0.786281 -0.286894 -0.982668 1.399943 -0.674032 -0.540048 -0.950571 -0.073469 0.912913 -2.184065 -2.820574 -3.454058 -0.957573 1.890537 -0.498469 2.562099 4.358401 -0.790277 -1.901893 1.618947 -1.574933 0.550681 2.337756 0.685806 3.161134 -3.042283 1.446462 -0.959820 1.186937 1.183111 3.305497 -0.343902 -1.486799 1.267162 0.213733 0.036564 1.458244 -0.451802 0.088849 -1.649048 0.179285 -0.992782 -0.868773 2.635160 -2.765509 2.467884 -1.297680 3.725053 -2.409709 -2.092424 1.064372 -2.694328 -0.873509 -2.174509 -0.950367 -0.126570 1.827490 -2.573869 -1.589617 -1.407647 -0.518174 0.201414 1.973033 -1.411894 -0.071444 -0.652090 -0.855017 3.195554 1.236188 -0.222314 -0.286922 -2.479723 0.319314 1.164276 -0.618272 -2.559531 0.057967 -1.610380 -0.393786 0.979122 -0.122958 1.509445 -1.474554 -1.122581 0.399619 -0.536565 0.156918 -0.981046 -3.213225 0.675563 0.162492 -0.057532 1.316752 2.759151 2.429951 1.697188 0.251506 -0.406297 0.425121 -1.264679 -1.755959 1.024467 0.286278 1.435081 1.022382 1.862532 0.624299 0.587944 1.524733 0.632738 0.335115 2.399631 0.792804 2.695753 -0.863347 0.059511 0.791638 -1.327295 1.512001 2.481015 -1.614891 -0.390558 1.426593 0.575712 -0.912451 -0.899313 -0.270841 -1.278473 -0.659767 1.434186 1.035357 -0.565743 -1.203812 3.888644 0.393205 -4.315662 1.995913 -0.057708 0.871406 1.844558 -0.979404 0.548438 1.235891 -0.836899 1.588322 0.793718 2.008832 -2.334287 0.298998 -0.174162 1.704662 1.582746 -0.340831 -4.055241 -0.086782 0.433890 2.941706 1.738324 2.665467 -1.196662 0.461293 -0.785715 -1.693610 -0.310763 -0.627825 1.513446 -0.375104 0.238207 -3.803485 0.268441 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 2.075774 0.352071 4.471464 -5.388902 -1.392244 1.405126 2.038789 -2.759835 1.894648 10.720436 2.647911 -2.742862 -7.352215 5.971947 -0.817089 -6.176945 4.009825 -0.475119 1.433024 -2.353301 -0.468467 2.124971 -0.308792 -3.675332 3.677945 -2.964441 0.204843 5.012136 2.670415 0.437262 -3.636756 -0.727209 -0.003845 9.940028 -1.505303 1.452308 -0.609226 10.851977 -7.422211 10.308872 -10.384092 -10.358436 10.115904 1.153159 -0.480590 -4.558689 0.694821 3.408986 -5.227657 -5.550432 1.909247 -2.243517 2.656344 -6.006808 0.421520 8.569360 -13.089879 1.992723 0.409238 -3.570777 -5.408724 -1.719066 3.558019 1.923553 -4.531148 -5.483455 2.231328 0.416225 -6.866694 1.664036 -4.939895 -8.581426 6.440783 3.407251 -4.061271 3.261699 1.597681 -6.786412 4.848942 -3.923319 -5.135873 -3.365471 2.828114 -3.201421 5.294689 3.647038 7.273769 -13.379145 0.952841 -10.365043 8.611888 -6.620941 9.052057 8.816581 -4.436678 5.011882 3.695311 4.863098 1.657562 -2.099326 9.775447 3.600282 4.999579 -0.619763 5.145910 5.545669 -8.085593 -7.057866 -5.626477 -5.758029 0.591497 -3.233885 -9.271346 -0.352054 -7.870365 1.618275 5.237602 -2.341617 -3.065245 7.338352 -14.628614 -3.387565 2.342657 -1.834382 7.153361 7.224575 0.431087 0.546738 1.627228 9.359676 -2.656085 -0.725005 -2.553283 4.593630 -2.343235 -2.792232 -3.456471 -0.581671 2.434346 -7.934311 -9.707074 -12.117513 -3.050150 5.256891 -1.172615 8.900670 15.482323 -2.215508 -7.042570 6.052850 -5.174968 2.188386 9.213836 2.070655 11.901086 -10.471610 4.950162 -3.625799 4.027080 4.086125 11.976595 -0.862766 -4.426606 3.758672 0.540317 -0.152594 3.307126 -1.873453 0.705310 -6.156951 0.677787 -4.509377 -4.090208 9.053864 -9.132960 9.059694 -4.486685 12.969463 -8.071428 -8.257458 4.694413 -9.280097 -3.134165 -7.061338 -3.598190 -0.146255 6.357475 -8.794608 -5.405565 -5.543089 -1.498827 0.567576 6.510955 -5.053171 0.182838 -2.043141 -2.801764 10.939282 4.388337 -1.076723 -0.329624 -9.278751 0.753953 4.772805 -2.118182 -9.458739 0.970292 -6.237396 -0.909986 3.923591 -0.997780 5.339130 -5.101081 -4.933699 1.138868 -2.053751 0.945045 -4.203224 -12.379306 2.487564 0.040651 0.112624 4.639442 9.735998 8.455018 5.678008 0.565309 -1.366850 1.769022 -4.397197 -5.234528 3.030077 0.570987 4.318685 3.468937 6.732443 2.038185 2.198450 6.216963 2.794230 -0.197496 8.302178 2.292823 9.339318 -2.196182 -0.150962 2.629632 -5.362609 5.451313 10.253554 -4.470268 -1.593668 5.414590 2.460920 -2.690787 -5.049913 -1.347582 -4.351151 -2.561947 5.797339 3.259651 -2.004861 -3.844480 12.899711 1.974647 -15.215608 7.616419 -0.501180 2.641443 5.924145 -3.569518 0.908454 4.855621 -4.194377 5.182490 2.602210 7.012329 -8.084933 0.930864 -0.688495 6.570649 5.256644 -0.877047 -14.015732 0.008154 2.116243 9.908720 6.811492 9.935002 -4.125366 0.352431 -2.790035 -5.675063 -1.982920 -2.943627 4.654868 -2.132588 0.508172 -12.181866 0.617375 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::size() const = 0.344739 -0.119589 0.287579 -0.238423 -0.370000 0.011015 -0.249866 0.239799 0.113045 0.131812 0.113164 -0.229897 -0.405261 0.554779 -0.159275 -0.522022 0.189217 -0.187208 0.108527 -0.087196 0.261135 0.182250 0.422673 -0.042684 0.056136 -0.066686 -0.354481 0.187618 0.832939 -0.339688 -0.181662 0.183205 0.068043 0.041504 -0.340160 -0.345020 0.076320 0.512110 0.145553 0.210369 -0.297727 -0.115814 0.356833 0.018716 0.018693 -0.408690 -0.444484 0.344131 -0.325352 -0.321326 0.192193 0.181280 0.010997 -0.239126 -0.185446 0.365011 -0.795030 0.497834 -0.206318 0.286660 0.350102 0.207825 -0.003254 0.152114 0.390412 -0.260285 0.014548 0.058677 -0.700633 -0.200931 0.025229 0.105913 0.705603 -0.031595 -0.098566 0.142916 0.448038 -0.013332 0.360434 -0.724828 -0.330859 0.007396 -0.220683 0.043859 0.414866 -0.155813 0.079892 -0.592890 0.257956 -0.419827 0.586052 -0.437874 0.106519 0.340667 -0.407745 0.161504 0.175829 -0.101018 0.489074 0.257036 0.664851 0.204083 0.225112 0.143555 0.021679 -0.082503 -0.133816 0.169924 -0.195248 -0.369354 -0.128493 -0.068481 -0.705895 0.139842 0.189924 0.294750 0.523952 -0.166132 0.076087 -0.045093 -0.373379 0.018381 0.143621 -0.023797 0.000349 0.393705 -0.265100 -0.045068 -0.176042 0.637641 -0.231309 0.098202 0.477364 0.056445 0.076960 -0.651432 -0.084937 0.187654 -0.023003 -0.103008 -0.300413 -0.415775 0.300978 -0.303567 -0.202928 0.383260 0.591027 0.140920 -0.115239 0.279692 0.109225 0.188261 0.445327 -0.176573 0.691813 -0.210865 -0.367694 0.030309 -0.152890 0.215680 -0.134902 0.183746 0.145686 0.091412 0.122566 -0.431735 -0.022737 -0.209924 -0.142199 0.007630 0.023049 -0.255378 -0.221092 0.199719 0.323488 0.164495 0.309060 0.628629 0.252879 -0.538725 0.371802 0.038193 -0.011672 -0.026113 -0.076864 0.056462 -0.081446 -0.367392 -0.133749 -0.324978 -0.103070 -0.134337 0.055837 0.112355 0.410477 0.279976 0.155832 0.252512 0.168102 0.135986 0.201435 -0.688987 -0.087515 0.215493 -0.179270 -0.526606 0.160475 -0.242798 0.291441 0.527649 -0.204682 0.057194 -0.084377 -0.528791 -0.202344 -0.192880 0.170052 -0.023236 -0.033228 -0.257050 0.131887 0.302172 0.100587 0.413345 0.442593 0.072850 0.131332 0.316156 0.125877 0.279028 0.184968 -0.165804 -0.144877 0.039722 0.160066 0.089350 0.054493 0.071159 0.574884 0.258149 -0.322111 0.189500 0.073487 0.384695 -0.100448 -0.212741 -0.222792 -0.117059 0.349680 0.682760 -0.179569 0.034734 0.266879 0.217137 0.306482 -0.343506 0.067897 -0.252960 0.011068 0.387882 0.031615 0.243482 -0.034812 -0.034935 0.080062 -0.610708 0.626151 -0.112282 0.144788 0.298253 0.067329 0.029216 -0.073851 -0.577897 -0.264804 0.308387 0.197731 -0.193766 -0.079831 -0.058402 0.355071 -0.216419 0.391094 -0.443289 0.020648 0.433229 0.199337 0.044482 0.026100 -0.254060 -0.776057 0.062242 -0.126072 -0.182495 -0.047598 -0.246697 -0.459455 -0.104513 0.165773 -0.089137 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::DFSUtil(int, bool*) = 1.091937 0.443205 1.523443 -1.498929 -2.355243 1.175863 -1.699739 -1.758729 0.273916 2.734215 1.278950 -1.725844 -1.015330 3.303707 -1.261320 -2.317407 -0.198088 0.053868 0.280504 -1.191920 -0.283426 1.053386 -0.606723 -0.185707 0.342457 -0.881443 -0.073913 0.859612 1.195617 0.005571 -1.713683 -0.405839 -0.281746 3.471274 0.538863 -0.165391 0.776444 4.505116 -1.592141 2.763682 -3.348104 -3.493889 2.124270 0.630701 0.179839 -0.532530 -1.198353 1.497067 -2.725198 -0.325455 1.771034 -0.776082 0.157636 -0.477231 1.007911 1.894726 -5.020524 2.509202 0.237682 -0.688391 -1.245217 -0.615101 0.783657 0.893198 -0.779600 -1.735160 1.006581 2.380370 -1.569816 0.134131 -1.072512 -3.698957 3.126158 0.791672 -1.866327 0.417873 1.158216 -1.774792 2.129859 -2.446854 -3.141840 -0.453514 0.751428 -1.590199 2.446118 1.625841 2.382513 -4.876593 1.588770 -4.597274 2.574885 -2.132963 2.488124 3.255192 -2.924771 0.705488 1.806072 2.037719 2.533418 0.299494 3.309053 0.999392 0.324217 0.547509 1.418289 1.896696 -1.881779 -1.155319 -2.016729 -3.118008 -0.244008 -0.744958 -3.835672 0.271064 -1.646491 1.811602 0.301996 -0.100714 -0.632872 1.949078 -5.037789 -2.084586 0.251307 -0.464006 2.691095 2.478210 -0.664505 1.327261 -0.455141 3.511492 -1.623072 -0.480938 -0.785919 1.289692 -1.107094 -1.947272 -4.355729 1.170026 1.759480 -2.541997 -3.360772 -4.191257 -0.716977 1.360866 -0.919134 4.537601 5.857537 -1.720508 -2.714580 3.123422 -0.842535 0.364160 4.657286 0.440248 4.496319 -2.801686 0.767945 -1.363412 -0.138056 -0.093787 0.258414 0.432999 -0.654173 1.422240 0.978805 0.010219 2.320784 -0.692395 -1.517308 -2.759873 0.935228 -1.022839 -1.012653 3.364976 -1.711871 1.982781 -0.175368 4.804176 -2.512152 -3.352641 1.571673 -3.366228 -0.683332 -1.150221 -1.163858 -0.431867 2.786853 -3.140255 -1.481190 -0.871605 -1.001878 -1.006426 1.106273 1.742095 0.675969 0.509612 0.137440 3.624870 3.578923 0.780907 0.310105 -3.480851 0.310289 2.174762 -1.343358 -3.337407 0.323297 -2.455989 -0.012876 1.003333 -0.530537 1.403322 -2.446154 -1.623622 -1.043238 -0.761531 2.220998 0.304594 -2.922695 1.271967 -1.095583 1.086076 1.904911 2.636558 3.281814 3.188329 2.334616 -0.082409 0.641535 -1.221506 0.909526 0.859315 1.569100 1.636559 1.421883 2.755125 1.095093 0.826487 1.681940 1.330168 0.165892 2.999868 0.393887 4.746218 -1.495323 1.014106 -0.887718 -0.906349 2.341440 5.336954 -2.949045 0.261683 1.485085 0.825759 -0.335934 -2.619932 0.159949 -1.555821 -0.764960 0.600251 1.083437 -0.241140 -1.495882 3.944258 0.480125 -4.472266 2.877641 0.018800 0.731229 1.884370 -0.783760 -0.358714 1.033075 -2.660597 2.209669 2.352723 2.487332 -2.745643 -0.062787 -0.479703 2.720332 1.098823 1.194792 -3.359307 1.773715 2.152007 2.803691 1.794652 1.804015 -2.409652 -1.911360 0.253594 -2.380633 -1.017310 0.262544 1.835005 -1.147168 1.414964 -2.095158 -2.502471 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::getTranspose() = 1.423776 -0.086099 2.557182 -2.763379 -2.553780 1.120013 -2.100712 -1.927542 1.001503 3.982209 1.837626 -2.252231 -2.750462 4.513531 -1.192079 -3.738491 0.512854 0.258543 1.116175 -1.276663 0.225067 1.238663 -0.451912 -0.457171 0.781660 -1.258486 -0.492865 1.823987 2.820256 -0.149164 -2.699620 -0.367832 -0.520250 4.852499 -0.363100 -0.205080 0.843334 6.622519 -2.729707 4.227257 -4.895208 -4.983456 3.618867 0.709182 -0.158064 -1.561421 -1.613574 1.857410 -4.584305 -1.106427 2.303528 -0.671302 0.556172 -1.550694 1.195680 3.184457 -8.047491 2.914579 0.339406 -0.671902 -1.195411 -0.579449 1.120279 1.085337 -1.295262 -2.416013 1.615970 2.021080 -3.139837 0.297630 -1.558004 -4.756164 4.543371 1.623210 -2.436773 1.449896 2.600905 -3.249779 3.394704 -3.353840 -4.223744 -0.945361 0.680022 -2.452227 4.064537 1.702708 3.313496 -6.651740 2.209081 -6.233192 4.027230 -4.073423 3.539990 5.024233 -4.356923 1.605299 2.899043 3.097727 3.202979 -0.258518 5.308373 2.323138 0.991686 0.510099 2.465810 2.335775 -3.050462 -1.811032 -3.145555 -4.278333 -0.756092 -2.054283 -6.299672 0.139388 -2.545917 2.019574 1.628998 -0.625691 -0.970711 3.209605 -7.396060 -2.054478 0.668564 -0.741366 3.023050 4.215969 -0.887945 0.723388 -0.377872 5.516778 -2.418424 -0.555045 -0.439953 1.792679 -1.352815 -2.441897 -4.932668 0.785467 1.744943 -3.920198 -4.847944 -5.901288 -0.960314 1.882886 -0.512322 6.394995 8.630096 -1.743860 -3.793816 4.310109 -1.838083 0.868480 6.856716 0.871177 6.565843 -4.037298 1.015534 -2.597268 0.155615 0.336483 1.116295 0.797371 -0.804906 1.987773 1.293910 0.080184 2.852153 -1.301926 -1.234922 -3.854056 1.124496 -2.403384 -2.071215 4.989917 -3.216627 3.811783 -0.417203 6.914434 -3.081916 -4.852575 2.691770 -4.798737 -0.851653 -2.253500 -2.056216 -0.367204 3.429801 -4.612425 -2.375965 -2.553809 -1.210730 -0.749600 2.249601 1.494729 1.145942 0.525766 -0.021736 5.401375 4.620388 0.642409 0.617265 -5.465202 0.567570 2.919940 -2.381145 -4.995502 1.093792 -3.517883 0.339367 1.910629 -0.845188 2.502227 -3.578539 -3.196298 -1.279039 -0.814524 2.270832 -0.645843 -5.668648 1.335662 -1.017898 1.425468 3.280791 3.924279 4.912656 4.062323 2.482540 -0.104913 1.008271 -1.417797 0.414354 1.031941 1.178466 2.436933 1.681354 3.937651 1.273230 1.230465 2.757225 2.548743 -0.088474 4.458800 0.953271 6.151706 -1.097238 0.461130 -0.539104 -1.933748 3.352883 7.359626 -3.665141 0.884641 2.500786 1.889224 -0.572312 -4.273412 -0.195083 -2.196045 -1.354163 1.845509 1.305041 -0.468421 -1.835982 5.288599 1.215050 -7.001321 3.942814 -0.210176 0.923399 2.849621 -1.075974 -0.613320 1.710352 -4.031109 3.181054 2.459712 3.380803 -4.105475 0.431603 -0.298727 3.935202 1.696650 1.554203 -5.332243 1.872254 2.479204 4.075750 3.224236 3.376855 -3.131939 -2.599320 -0.065316 -3.587638 -1.678980 -0.601500 2.152539 -2.159256 1.331064 -3.536447 -3.057634 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::~Graph() = 0.534132 0.131289 1.106166 -0.906109 -0.896281 0.771550 -0.494282 -0.547706 0.593656 1.583434 0.147588 0.108776 -1.373279 0.357843 -0.347792 -1.776206 0.115885 -0.678772 0.302110 -0.841531 -0.071148 0.345948 -0.089664 0.067347 0.262517 -0.892287 0.099290 0.644339 0.708501 -0.180389 -0.715476 -0.155252 -0.523742 1.688642 -0.146004 0.369973 0.486847 2.354039 0.444895 0.883796 -1.604831 -2.319027 0.846886 0.150553 -0.111379 0.106114 0.911434 0.439423 -1.490022 -0.049451 0.883353 -0.300710 0.174747 -0.301624 0.525628 0.657762 -2.459951 0.818054 -0.465520 -0.365973 -0.779246 -0.390224 0.474206 0.791393 -0.100802 -0.705091 0.966849 0.968415 -1.478029 0.487555 -0.044050 -1.471564 1.814524 0.811115 -0.937064 0.440047 1.270767 -0.707353 1.020107 -0.980519 -1.467126 -0.359494 0.477906 -1.029332 1.513986 0.350043 1.236417 -2.413420 1.034816 -1.816469 1.543804 -0.939484 1.376027 1.508206 -0.902336 0.706410 0.999299 1.298998 0.480457 -1.060087 1.925865 0.425669 0.770590 0.477433 0.544432 0.247889 -1.088771 -0.694100 -1.135499 -1.380143 -0.159712 -0.745640 -2.000459 -0.137443 -0.660785 1.225193 0.907394 -0.067974 -0.608811 0.876998 -3.379160 -1.326362 0.115729 -0.242844 1.461726 0.816958 -0.425789 0.655053 0.677860 2.216371 -1.051743 -0.358477 -0.391712 0.515585 0.126040 0.705751 -1.820951 0.197879 0.854949 -1.038001 -1.655842 -1.346887 -0.854371 1.138615 0.070887 2.801227 3.172842 -0.470968 -1.396982 1.445197 -1.729070 0.445465 2.021777 0.393056 1.304090 -1.347187 0.329864 -1.204187 0.649551 0.321982 1.079858 0.521114 -0.017372 0.904987 0.598935 2.096231 -0.090223 -0.734409 -0.508720 -1.561810 0.013729 -0.995733 -0.569901 1.355760 -1.033614 1.551161 0.308629 2.411860 -1.431927 -1.764476 0.495908 -1.729795 -0.277709 -0.990883 -0.622811 -0.173413 0.968120 -1.797365 -0.815245 -0.844363 -0.588052 -0.085945 0.357996 0.824909 0.536733 -0.055188 0.097825 2.924706 1.843334 0.611494 -0.706116 -1.866199 0.186646 0.648855 -0.772029 -0.308586 0.099318 -0.810136 0.020427 1.221909 -0.219828 0.662363 -0.790499 -0.952962 -0.712299 -0.144943 0.678703 -0.064539 -2.810355 0.244763 0.418166 0.146945 0.746014 0.929869 1.943792 1.200325 1.107500 -0.425550 0.711551 -0.448465 0.255103 -0.073190 0.620807 1.190141 0.453102 1.539294 0.531441 0.242415 1.180103 1.404287 -0.022291 1.372841 -0.244819 2.476425 -1.149181 0.230281 -0.469776 -0.458343 0.943758 2.333343 -1.616667 0.880798 0.976503 1.220824 0.051810 -1.520252 -0.053875 -1.242509 0.793075 0.153557 0.562091 -0.574190 -0.624729 1.793891 0.606771 -2.325722 1.196366 -0.104339 0.267711 1.155333 -0.549609 -0.549456 0.614030 -1.865164 1.267658 0.654160 0.844065 -1.338442 0.728455 -0.153942 1.364261 -0.869038 0.471871 -0.781045 -0.212400 0.529983 1.597325 1.667491 1.294930 -0.956287 -0.877352 0.180471 -1.662461 -0.714022 0.433235 0.938107 -0.610392 0.719473 -1.478467 -1.143507 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 1.228864 0.264925 1.541357 -0.878425 0.143867 -0.007150 -1.791398 0.494491 1.125565 0.521537 -0.349533 -0.028855 -1.872399 1.805305 -1.859274 -1.222822 1.080628 -0.485988 2.058167 -0.368054 1.016604 0.568036 1.565153 0.418980 0.860342 -0.771401 -1.174931 0.842002 3.286662 -1.171111 -1.058829 0.613666 0.710197 1.133093 -1.371021 -1.287089 0.991670 2.203740 0.558439 1.099349 0.069693 -0.209953 0.910399 0.608685 -1.074039 -1.270908 -1.231361 -0.052072 -2.592559 -0.241535 0.838372 -0.037775 -0.424369 -0.433287 -0.145040 1.797409 -3.893976 1.546604 -1.059225 1.906294 2.228605 0.243257 -0.114002 -0.656680 2.219176 -0.345377 0.135811 0.224074 -3.482814 -0.076980 0.397538 0.862109 2.402361 0.385080 -0.963327 1.134120 2.575946 -0.866395 0.536585 -3.589854 -0.731327 -0.209177 -0.465803 0.967057 2.054172 -0.210261 -0.283871 -1.327864 0.051700 -0.308352 1.800692 -1.843417 1.006814 1.339549 -2.120376 0.800817 0.987082 -0.219658 0.675101 -0.118163 3.258487 1.522401 -0.621224 -0.070832 0.263326 -0.209458 -0.144009 0.736317 -0.629520 -0.608029 -0.980161 -0.371263 -2.578645 -1.063646 -0.615615 1.054434 2.049780 -0.900542 -0.833382 -0.086025 -2.208941 -1.162607 -0.372375 -0.085242 -0.082346 1.791610 0.163572 -0.937529 0.389149 2.659028 -0.853727 -1.312015 1.084271 -0.408660 0.680198 -2.270658 -0.921175 -1.542707 -0.580594 -0.915855 -1.470931 -1.571773 0.216759 -1.448464 0.571684 1.507515 2.830550 1.158249 0.011119 1.453098 -0.474966 1.111918 3.091271 0.137848 2.009157 -0.964674 -1.164699 -0.648477 -0.519166 0.860471 0.287205 0.564729 1.454385 -0.395864 1.536423 0.140934 -2.683373 -1.166694 0.140088 -0.445304 -1.019875 -1.074756 -1.270622 1.143874 0.047425 0.697716 -0.278189 2.427892 1.047786 -3.714068 0.626970 -0.371098 0.455441 -0.759886 -0.283854 -0.501809 -0.018621 -2.149593 -0.755966 -0.481514 0.773359 0.026930 0.292766 0.156260 1.371209 -0.440170 -0.078746 1.983554 0.923940 -0.328086 1.837213 -2.467358 -0.740014 0.810650 -0.695730 -2.842016 2.076400 -0.875427 0.669794 1.742694 -1.772555 -0.777459 -1.032175 -2.039544 -0.992953 -1.390297 0.457478 -0.915178 -1.498230 -0.073307 0.041151 -0.342962 1.691767 0.714539 2.122760 -0.000567 -0.176113 0.378411 0.767168 -0.079258 0.525013 0.236660 -0.190663 0.343382 0.050391 1.175536 0.051860 0.192407 0.797063 1.502871 -0.557689 1.038839 0.417791 1.299180 0.633105 -0.592852 -0.696982 -1.529303 0.973344 2.556443 -0.831845 0.370787 1.244526 1.024129 1.897130 -2.534213 0.668804 -0.916335 -0.475139 2.272142 -0.210791 0.558584 0.146843 -0.072588 -0.128935 -2.042951 1.454701 -0.386204 -1.213989 -0.131320 0.048688 -0.687707 0.427701 -2.439361 -0.758846 -0.239675 1.378791 -0.914626 1.054118 -0.437909 1.036725 -0.504989 0.804127 -2.749794 -0.751923 0.660311 0.916588 1.652644 1.033743 -0.105710 -2.617042 0.283521 -0.006552 -1.448108 -1.081158 0.521383 -1.697951 0.126526 1.233759 -0.277449 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::addEdge(int, int) = 0.480028 -0.072184 0.431663 -0.659767 -0.805754 0.364802 -0.286804 -0.719891 0.023053 0.581449 0.725680 -0.711532 -0.135554 1.375663 -0.264921 -0.840195 0.135868 0.597646 -0.048079 0.019189 -0.027213 0.420970 -0.322923 -0.235103 0.185023 -0.157556 0.038099 0.517868 0.469741 0.253724 -0.924035 -0.208161 -0.028533 1.430700 0.224017 0.026684 0.197137 1.784548 -1.009534 1.376640 -1.082294 -1.048288 1.028034 0.216378 -0.036372 -0.661977 -1.124773 0.569601 -0.648681 -0.712254 0.727283 -0.319035 0.218704 -0.315643 0.437901 1.000677 -1.720296 0.353820 0.377161 -0.196545 -0.475767 -0.245173 0.267198 0.213308 -0.933265 -0.812213 0.382274 0.690021 -0.233410 -0.028014 -0.677249 -1.918091 1.642861 0.312533 -0.812982 0.178025 0.401591 -1.331339 0.934393 -0.115620 -1.209618 -0.160090 0.085790 -0.452667 1.025696 0.309602 1.105246 -2.003076 0.533549 -1.978846 0.940285 -1.148163 1.015824 1.438128 -1.462766 0.257107 0.725116 1.336948 0.868976 0.369598 1.368909 0.722244 0.009003 -0.162238 0.909673 0.763623 -0.821634 -0.822684 -0.952241 -1.281378 0.127701 -0.535564 -2.339162 0.192289 -0.682101 0.404686 -0.130949 -0.064929 0.011540 1.162522 -1.707096 -0.102706 0.357800 -0.221093 0.811935 1.350708 -0.296776 0.315789 -0.451508 1.316550 -0.491398 -0.063077 -0.352207 0.576574 -0.924108 -0.967932 -1.171727 0.421974 0.691728 -1.133230 -1.412396 -1.836958 -0.133611 0.781334 -0.422920 1.077436 2.292910 -0.742507 -1.006214 1.137878 0.328799 -0.007596 1.620485 0.171938 2.103432 -1.287361 0.473079 -0.508753 -0.046375 -0.121143 -0.146942 0.079007 -0.493289 0.626614 -0.068215 -1.292799 2.333102 -0.372500 -0.439499 -0.431548 0.394538 -0.340080 -0.550024 1.776336 -0.714234 0.920541 -0.284866 1.828290 -0.875867 -0.982096 0.611458 -1.040021 -0.375313 -0.948545 -0.398446 -0.071098 1.286737 -1.129316 -0.608562 -0.324040 -0.442205 -0.274937 0.695577 0.368131 0.079549 0.091976 0.053969 0.743918 1.308685 0.236854 0.180170 -1.289637 0.240038 0.878444 -0.810662 -1.441007 0.064362 -1.151479 -0.022135 -0.267828 -0.186166 0.608683 -1.102616 -0.782759 -0.268399 -0.301436 0.608849 -0.000146 -1.290157 0.438401 -0.459144 0.538598 0.698768 1.215912 1.544458 1.362946 0.868012 -0.118569 0.429718 -0.397776 -0.581123 0.519907 0.286550 0.809335 0.552444 1.028545 0.384935 0.315700 0.521401 0.296182 0.694900 1.260732 0.832058 1.905195 0.258942 0.070958 -0.021235 -0.545085 1.049889 2.140635 -0.587044 0.290862 0.457301 0.329403 -0.603993 -1.018567 0.035630 -0.344848 -0.930320 0.513502 0.191244 -0.013455 -0.634349 1.752130 0.101871 -2.012475 0.778411 -0.013895 0.449197 1.147070 -0.297112 0.442680 0.386421 -0.459156 1.138938 0.767773 1.087589 -1.121823 -0.259159 -0.143989 0.792684 0.885640 0.301613 -1.500619 1.137770 0.681119 1.356097 0.507366 0.723531 -0.959819 -0.062565 -0.024095 -0.813224 -0.218607 -0.271424 0.757963 -0.419682 0.079927 -1.549166 -0.813229 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::~list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.082991 0.077019 0.148786 -0.260417 -0.432988 -0.017330 -0.204082 -0.093907 -0.022608 -0.130651 0.066098 -0.323810 -0.309835 0.508329 -0.196834 -0.502406 -0.217826 -0.091718 -0.142823 -0.095125 -0.017877 0.215971 -0.019260 0.081056 0.094668 -0.043881 -0.126513 0.135957 0.471174 -0.299736 -0.145172 -0.028517 0.098981 0.417830 -0.057782 0.060832 0.164539 0.742777 0.255886 0.281525 -0.399494 -0.386367 0.255908 -0.000759 -0.069724 -0.374930 -0.295750 0.258494 -0.613112 0.155163 0.200314 0.140640 -0.323070 -0.113979 0.226756 0.293414 -0.831528 0.708262 0.059102 0.094461 -0.003177 -0.090881 -0.167090 -0.122806 0.138499 -0.239349 -0.021545 0.280509 -0.436095 0.140306 0.048702 -0.245413 0.839292 0.106070 -0.259005 0.216349 0.250001 -0.070002 0.297141 -0.598994 -0.379247 -0.023953 0.224760 0.141903 0.481968 0.123655 0.009204 -0.620705 0.095667 -0.539080 0.246271 -0.509448 0.182319 0.496187 -0.527126 0.255599 0.128128 -0.131478 0.336349 0.265408 0.466303 0.094151 0.116373 0.172720 0.075989 0.030389 -0.048803 -0.098079 -0.163535 -0.478206 -0.151435 0.009924 -0.831415 0.038327 -0.019703 0.487029 0.079705 0.165115 0.062211 -0.101916 -0.593408 -0.285067 0.109019 -0.070433 0.282765 0.378702 -0.170807 0.066706 -0.284404 0.510195 -0.086547 0.109711 -0.036373 0.109031 0.060280 -0.578915 -0.708011 -0.004005 0.094084 -0.148249 -0.419514 -0.341270 -0.088044 0.053902 -0.161818 0.469998 0.800514 -0.158050 -0.365961 0.602763 0.081420 0.357218 0.546020 0.055307 0.563493 -0.155814 -0.093954 -0.049363 -0.131780 -0.012167 -0.464312 0.130034 -0.199649 0.079579 0.158633 -0.256904 0.203922 -0.168791 -0.222267 -0.254370 -0.021360 -0.277898 -0.287937 0.535963 0.140318 0.529999 0.031167 0.617541 -0.193039 -0.567774 0.225267 -0.217504 0.076872 -0.131323 -0.092225 -0.040951 0.204758 -0.531655 -0.211580 0.025763 -0.117334 -0.282348 0.084650 0.468966 0.067404 0.051901 0.265327 0.373912 0.517086 -0.043379 0.156787 -0.632179 0.094409 0.197897 -0.100453 -0.521509 0.255311 -0.110532 -0.026317 0.276072 -0.098079 -0.066194 -0.058606 -0.223401 -0.150582 -0.179988 0.331869 0.049835 -0.071482 0.013555 -0.160062 0.172831 0.202998 0.247200 0.667427 0.240022 0.280627 0.127636 0.119798 -0.080593 0.357613 0.008371 0.102022 0.197842 0.188986 0.311306 0.244920 0.013738 0.333901 0.364472 -0.188169 0.396551 0.230191 0.799756 -0.220559 -0.081123 -0.154195 -0.038893 0.369671 0.827702 -0.543566 0.140738 0.289414 0.310221 0.153771 -0.513927 -0.143170 -0.192482 -0.277273 0.329665 -0.122307 -0.164409 0.087727 0.402792 -0.029216 -0.462166 0.356853 0.064957 0.090643 -0.094431 0.015247 -0.223870 0.370659 -0.565893 0.051214 0.231714 0.261342 -0.300771 -0.196896 -0.075205 0.342824 -0.061324 0.359495 -0.109598 0.089965 0.424411 0.403020 0.179310 -0.075559 -0.169256 -0.594773 0.144635 -0.133897 -0.246441 0.076863 0.062903 -0.251782 0.050464 0.017970 -0.648227 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.852053 -0.019051 1.602884 -1.744744 -2.629333 0.933311 -1.399237 -0.839525 0.494337 1.285755 0.938165 -0.891218 -0.837313 2.553527 -0.819677 -2.034897 -0.248089 -0.906330 0.309898 -0.760463 0.334478 1.027256 -0.060038 0.584026 -0.263136 -0.750799 -0.421554 0.897138 1.679796 -0.430781 -1.336977 -0.304461 -0.708908 2.004596 0.170415 -0.665233 0.762908 3.872877 -0.611873 1.640757 -1.920953 -2.159832 0.935223 0.218758 -0.135515 -0.944765 -1.523978 1.125798 -1.675229 -0.222312 2.002881 0.000000 0.299837 0.176366 0.878617 0.700625 -3.549554 1.637167 -0.138458 0.107183 0.211378 -0.335111 0.091359 1.213215 -0.629065 -1.053727 1.159842 1.533003 -1.333416 -0.310546 0.038977 -2.193586 2.871446 0.823574 -1.310574 0.271306 2.220926 -1.747925 2.080952 -1.847063 -2.952836 0.061628 -0.533938 -1.898489 2.671146 -0.188012 1.598474 -3.435031 1.806739 -3.410108 1.657596 -2.068212 0.955594 2.518167 -2.208192 0.397206 1.555043 2.164433 2.387568 -0.231522 2.646188 1.343528 0.549868 1.103690 1.351355 0.777250 -1.079134 -0.203984 -1.921970 -2.648586 -0.313414 -1.280699 -3.718882 0.504424 0.347666 0.665138 0.369603 -0.072040 -0.442874 1.755684 -3.248832 -0.738676 0.380515 -0.311209 0.781978 1.985522 -1.261302 0.860014 -0.522347 3.082842 -1.768857 0.548670 0.207653 0.659058 -0.819722 -0.679069 -3.107414 1.178019 1.179924 -1.291329 -2.292300 -2.517664 -0.272251 0.524558 -0.570861 3.618712 4.421324 -1.194247 -1.977327 2.594243 0.036404 0.049874 2.971908 0.052524 2.762089 -1.016816 -0.800634 -1.759313 -0.896522 -0.559761 0.053594 1.213053 0.439963 1.254963 0.479084 -0.435640 2.158460 -0.963262 -1.745476 -1.606189 0.651320 -1.385480 -1.196389 2.482938 -0.571998 1.339237 0.971116 3.362933 -0.661289 -2.285386 1.124025 -1.774363 0.162000 -1.338380 -0.684818 0.088438 1.492308 -1.832642 -0.988360 -1.138101 -1.064834 -1.034945 0.077375 1.305180 1.253912 1.110595 1.140849 2.559900 3.499322 1.370072 0.033317 -2.777612 0.645318 1.405575 -1.302449 -1.693064 0.235484 -1.411006 0.388386 0.765613 -0.418910 0.891428 -1.810723 -1.704807 -1.402040 -0.441900 1.401671 0.965834 -3.568607 0.451603 -0.204010 1.625336 1.284525 1.242353 2.771974 2.357898 2.592705 0.253742 0.539498 0.273329 0.687297 -0.033047 1.138857 0.782923 0.917992 2.586947 1.079126 0.603187 1.909975 2.070618 0.144243 1.835658 -0.080038 3.774973 -0.461383 0.041786 -1.336963 0.016666 1.778467 4.569225 -1.054837 1.232016 1.192121 1.349821 -0.140028 -2.500582 0.449426 -1.380070 0.652760 0.365222 0.622998 -0.119437 -0.671303 1.844443 0.359057 -3.191374 1.536908 -0.059961 0.777753 1.872957 -0.088611 -0.182410 0.223795 -2.916401 2.215285 2.017628 1.076912 -1.641270 -0.166268 -0.097891 1.616802 -0.129716 1.888035 -2.026807 1.348493 1.475935 1.802518 1.056322 1.387564 -2.016979 -2.199219 1.203121 -1.927910 -0.995332 0.714584 0.970327 -1.896225 1.089397 -1.039140 -2.634114 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/euler-circuit-directed-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.435709 -0.117656 0.480470 -0.517183 -0.782692 0.103124 -0.343564 0.154305 0.170226 0.120636 0.275905 -0.387434 -0.404505 0.955320 -0.202963 -0.721921 0.133942 -0.426370 0.078651 -0.060203 0.267637 0.351105 0.332211 0.137891 0.012207 -0.065956 -0.434814 0.333526 1.024246 -0.452735 -0.449889 0.130494 -0.074368 0.338217 -0.285513 -0.544935 0.280976 1.167966 -0.043557 0.415506 -0.362971 -0.271901 0.405262 0.018823 -0.110759 -0.515511 -0.779398 0.514226 -0.496279 -0.323163 0.608061 0.248285 -0.022858 -0.134356 0.056401 0.462643 -1.281766 0.681208 -0.122170 0.477252 0.437051 0.076259 -0.065080 0.243643 0.175748 -0.374046 0.246696 0.170147 -0.755426 -0.271330 0.030504 -0.287094 1.120382 0.140350 -0.266377 0.198021 0.812015 -0.426699 0.703126 -0.862262 -0.799949 0.098477 -0.358967 -0.326102 0.955081 -0.352417 0.197433 -1.028258 0.507531 -0.920896 0.631947 -0.875730 0.141163 0.807724 -0.777887 0.183447 0.335242 0.316986 0.791497 0.220297 1.012889 0.428483 0.252839 0.297603 0.270289 0.036696 -0.267766 0.149132 -0.513304 -0.756549 -0.183942 -0.253978 -1.273924 0.264681 0.316204 0.239325 0.495356 -0.098650 -0.014351 0.249311 -0.624853 0.005874 0.194803 -0.080801 0.026639 0.804806 -0.520282 0.044184 -0.392368 1.065178 -0.406792 0.317324 0.424086 0.108458 -0.108712 -0.701511 -0.558057 0.306900 0.174113 -0.245265 -0.647582 -0.756539 0.289113 -0.332070 -0.295895 0.890505 1.219594 -0.065585 -0.345139 0.762734 0.308137 0.275521 0.808378 -0.205008 1.043485 -0.255809 -0.506592 -0.239986 -0.347700 -0.072426 -0.355154 0.413569 0.248220 0.206768 0.147384 -0.571206 0.602987 -0.277065 -0.434576 -0.072088 0.127512 -0.459364 -0.564219 0.739998 0.378360 0.323228 0.574975 1.069765 0.260432 -0.767988 0.567945 0.019181 0.162762 -0.403232 -0.231096 0.116868 0.129602 -0.492117 -0.265737 -0.432991 -0.189104 -0.360003 -0.030863 0.446934 0.573578 0.423664 0.468245 0.380018 0.801228 0.315222 0.274191 -1.123359 0.064307 0.383082 -0.465173 -0.666124 0.260855 -0.370954 0.308068 0.529638 -0.255734 0.100064 -0.425623 -0.831189 -0.353639 -0.173726 0.358901 0.211416 -0.768821 -0.164659 0.049714 0.533539 0.353756 0.478877 0.888639 0.418859 0.611327 0.299459 0.180498 0.453845 0.149042 -0.217463 -0.059646 0.234269 0.285512 0.476719 0.266899 0.109937 0.716132 0.557496 -0.277571 0.432424 0.224108 0.989995 0.087128 -0.294536 -0.409607 -0.110208 0.619882 1.358943 -0.248273 0.268477 0.429354 0.494391 0.186403 -0.769195 0.104281 -0.439442 0.100195 0.333767 -0.085288 0.131433 -0.024154 0.221675 0.025428 -1.021657 0.619406 -0.095425 0.292036 0.554877 0.149624 0.061215 -0.021893 -1.060713 0.252708 0.567332 0.308635 -0.309328 -0.112749 -0.049269 0.484764 -0.319963 0.711544 -0.670345 0.326492 0.578191 0.411936 0.232969 0.167993 -0.494628 -1.017799 0.303011 -0.396292 -0.321671 0.071585 -0.004483 -0.806777 0.079044 -0.044458 -0.604983 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/euler-circuit-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/euler-circuit-directed-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/euler-circuit-directed-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/euler-circuit-directed-graph.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::list >::_M_node_count() const = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::__cxx11::_List_base >::_M_get_size() const = 0.128157 -0.322073 0.195571 -0.374782 -0.269325 0.271096 -0.311435 -0.246687 0.126231 -0.193260 0.188876 -0.171783 -0.009636 0.636891 -0.022640 -0.438285 0.068270 0.143381 0.057510 0.220942 0.047490 0.124860 -0.132462 0.021932 -0.067314 -0.088981 0.054606 0.145943 0.168491 0.023070 -0.488910 -0.135182 -0.220817 0.534025 0.173892 0.244814 0.155685 0.808735 0.027419 0.911973 -0.350768 -0.316068 0.134808 0.025108 -0.087140 -0.109168 -0.450019 0.140933 -0.397700 -0.186152 0.437394 -0.129529 0.012348 0.042558 0.282758 0.197835 -0.557718 0.093362 0.058276 0.142168 0.075152 -0.208919 -0.065151 0.130775 -0.444829 -0.195126 0.236731 0.366315 -0.248602 -0.007717 -0.144978 -0.667292 0.884480 0.328309 -0.403471 0.009125 0.424284 -0.457613 0.339529 -0.122791 -0.623669 -0.010749 -0.168650 -0.314625 0.676115 0.009051 0.448473 -0.725101 0.433750 -0.814975 0.315293 -0.554576 0.283014 0.632408 -0.575457 0.053562 0.337598 0.766166 0.292980 0.152106 0.458359 0.387274 -0.276439 -0.027261 0.563989 0.044003 -0.180301 -0.249784 -0.266696 -0.474271 -0.075741 -0.382857 -1.025655 0.029870 -0.076793 0.491151 -0.198370 0.347522 -0.097803 0.115853 -0.746237 -0.010211 0.020538 -0.094314 0.316770 0.442121 -0.248713 0.167730 -0.195305 0.582773 -0.284489 -0.010823 -0.197638 0.149255 -0.330975 0.090982 -0.571172 0.152866 0.346744 -0.288879 -0.619179 -0.595900 -0.213013 0.503949 -0.078266 0.814328 0.850367 -0.255091 -0.297578 0.488129 0.074519 0.150176 0.638341 0.101704 0.525338 -0.304255 0.078939 -0.315870 -0.064060 -0.288261 -0.349301 0.141298 -0.070868 0.293595 -0.110289 -0.401164 1.101356 -0.176618 -0.290102 -0.404346 -0.027911 -0.281488 -0.332482 0.785182 -0.441030 0.320204 0.022986 0.713063 -0.227030 -0.287832 0.201371 -0.416521 -0.008134 -0.445401 -0.119287 -0.122515 0.464689 -0.560519 -0.300120 0.000583 -0.208156 -0.098433 0.138848 0.467804 -0.013225 0.121943 0.178048 0.639547 0.678906 0.207757 -0.019076 -0.474341 0.177125 0.284241 -0.473092 -0.144405 0.116634 -0.297663 0.009623 -0.134352 0.017948 0.071784 -0.623507 -0.389531 -0.316611 0.005594 0.354952 0.212928 -0.819390 0.052768 0.129038 0.192287 0.439340 0.251451 0.592188 0.501247 0.497956 -0.134572 0.099125 0.053274 -0.201028 0.056509 0.195277 0.341129 0.104556 0.477643 0.171383 0.035592 0.224394 0.402806 0.350580 0.363926 0.357547 0.725757 0.336738 -0.073433 -0.067523 -0.190475 0.424947 0.920497 -0.489093 0.537996 0.233692 0.271552 -0.170820 -0.485986 0.027026 -0.194545 -0.250665 0.134603 -0.120610 0.078944 -0.221109 0.554002 0.056461 -0.679460 0.068358 0.038506 0.163507 0.558332 -0.058086 0.151023 0.058502 -0.444839 0.643266 0.246460 0.257576 -0.270610 -0.017168 -0.051963 0.070950 0.303305 0.245536 0.077428 0.429459 0.216128 0.571528 0.346908 0.033509 -0.301780 -0.075842 0.063385 -0.504430 -0.115873 -0.065845 0.281417 -0.083464 -0.039893 -0.511491 -0.682881 +PE-benchmarks/euler-circuit-directed-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/euler-circuit-directed-graph.cpp___GLOBAL__sub_I_euler_circuit_directed_graph.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/sieve-of-eratosthenes.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sieve-of-eratosthenes.cpp__SieveOfEratosthenes(int) = 1.571263 1.121623 1.833141 -2.902144 -0.313391 0.637392 2.120029 -1.648100 0.347362 6.792427 1.282272 -1.331491 -3.469208 3.191949 -0.745777 -2.808382 2.265866 -0.968202 0.091352 -1.911453 -0.553770 1.280875 -0.138554 -2.659656 2.068489 -1.772258 0.337427 2.178188 -0.198965 0.135283 -1.507544 -0.462241 0.570041 5.274957 -0.554957 0.668520 -1.272611 4.819625 -4.610048 5.293191 -6.128923 -5.844292 5.651527 0.774257 0.324737 -3.352555 0.522171 1.691856 -0.267528 -3.122414 0.155919 -1.556251 1.170946 -3.502895 -0.224820 4.856887 -5.851613 0.781784 0.247930 -2.725201 -3.751565 -0.875419 2.789203 0.950052 -2.395663 -3.199918 1.039891 0.404715 -3.209387 1.245011 -3.243991 -4.920789 1.830731 1.859009 -1.637963 1.358368 -0.704212 -3.574539 2.130968 -2.223415 -1.913939 -1.932429 2.215474 -0.726183 1.281187 2.653292 4.108991 -7.218820 0.013818 -5.162271 4.312591 -2.606319 5.222170 3.890124 -0.679234 2.589383 1.415199 1.862828 0.740427 -1.002378 4.752234 1.547301 3.376166 -0.701899 2.567511 3.697327 -4.370264 -4.136945 -2.443731 -2.625808 0.861299 -1.008040 -3.679300 0.141003 -4.714364 -0.798720 2.409114 -1.649619 -1.517460 4.110564 -7.784238 -3.053326 1.527615 -1.027506 4.076920 3.259782 0.818946 0.514616 0.761179 4.101709 -0.636737 -0.157558 -1.642118 2.623141 -1.772903 -2.310470 -1.193826 -0.191210 1.277892 -4.654878 -4.933813 -6.530384 -1.642525 2.914669 -1.251425 4.173274 7.662394 -1.370236 -4.025056 2.567702 -1.804999 0.455366 4.117159 0.973631 6.747674 -6.270041 3.478986 -0.804141 2.804115 2.899129 7.387909 -1.184524 -2.874211 1.933598 -0.098504 -0.882540 1.062026 -1.126329 0.771703 -2.381619 0.546794 -1.619281 -1.445717 4.008831 -4.721353 4.983529 -3.013305 6.337869 -5.082119 -3.903485 2.194496 -5.667850 -2.392422 -3.491691 -1.179312 -0.519261 3.860329 -4.150263 -2.681854 -2.550741 -1.334113 0.393525 3.789293 -4.767765 -0.141081 -1.604671 -2.072228 5.363747 1.717575 -0.816677 0.016639 -4.296497 0.399321 2.840589 0.171255 -5.705720 -0.123833 -3.326223 -0.798793 1.531286 -0.563320 2.889784 -1.916842 -1.853654 1.367846 -1.430007 0.083542 -2.726468 -4.537298 1.514413 -0.691997 0.074464 1.148405 5.852797 3.889833 2.858522 -0.316494 -1.367481 1.009119 -3.341934 -3.283026 2.042115 0.335654 1.579449 2.131574 3.226326 0.656352 1.288349 3.950003 0.520866 -0.177200 4.141195 0.631654 4.543488 -1.858746 0.320181 1.566677 -3.237695 2.564492 5.158308 -1.332534 -2.284477 2.788178 0.189599 -1.909449 -1.600602 -0.680066 -2.051042 -1.947135 3.280781 2.731347 -1.249563 -2.359074 7.464100 1.007646 -8.026938 4.383601 -0.089064 1.441398 3.101069 -2.464704 1.082689 2.880387 -0.891236 1.726279 1.465857 4.070105 -4.480328 -0.153125 -0.527211 3.538882 3.175648 -1.458048 -8.513939 0.428819 1.582992 5.590003 2.832266 5.782065 -2.180766 1.206796 -1.689854 -1.774636 -0.724765 -1.145340 2.838437 -1.121744 0.108802 -6.622809 2.064160 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.302409 0.485217 0.279678 -0.410944 -0.941309 0.201176 -0.684897 -0.497423 -0.043665 0.046688 0.347792 -0.609852 -0.535570 0.753719 -0.674791 -0.755578 -0.428724 -0.195355 -0.108070 -0.533736 0.044008 0.264013 -0.063022 0.042359 -0.085969 -0.167872 -0.136561 0.143119 1.002422 -0.321948 -0.413062 0.011602 0.264257 0.718206 0.188793 -0.218434 0.311854 0.990089 0.336258 -0.028872 -0.992165 -0.685564 0.360938 0.168479 -0.021421 -0.933367 -0.535779 0.344430 -1.183994 0.595227 0.330149 -0.131220 -0.264326 0.029334 0.210032 0.588203 -1.487665 1.530193 0.006618 0.052396 0.107377 -0.072933 0.005423 0.042072 0.623896 -0.404050 0.045347 0.804856 -0.645279 0.233809 -0.058134 -0.548898 1.285579 -0.006450 -0.555513 0.035579 0.175145 -0.283985 0.407470 -1.223867 -0.629763 0.040315 0.457819 0.493373 0.571070 0.310051 -0.021160 -1.025649 -0.150642 -1.010267 0.421930 -0.574112 0.423169 0.495318 -1.003476 0.062554 0.241768 -0.569115 0.886784 0.448505 0.742602 0.088637 0.312040 0.122898 -0.006895 0.209072 0.109474 0.101723 -0.085551 -0.804644 -0.432301 0.274519 -1.483152 -0.005509 -0.297717 0.679785 -0.030876 -0.094172 0.153122 0.056775 -0.832897 -0.905464 -0.034194 -0.049331 0.658565 0.638148 -0.143773 0.450017 -0.282336 0.849871 -0.143047 -0.011009 -0.101951 0.116304 0.094639 -1.697596 -1.667206 0.306514 0.354289 -0.344344 -0.733231 -0.535176 -0.122355 -0.260147 -0.199602 0.556572 1.181484 -0.263429 -0.836838 0.893627 0.058107 0.225868 1.369004 0.017361 1.204112 -0.467135 0.090947 -0.080914 -0.233143 -0.168100 -0.643020 -0.031284 -0.199066 0.040355 0.418658 -0.451220 -0.273627 -0.222604 -0.474334 -0.374626 -0.047438 -0.287845 -0.274041 0.624118 0.380176 0.679164 0.053639 1.040784 -0.592060 -1.311636 0.318328 -0.305528 0.083136 0.412923 -0.109917 0.087485 0.514596 -0.836670 -0.311072 0.091297 -0.072185 -0.446118 0.246106 0.887382 0.150151 0.224554 0.248547 0.520265 0.927318 -0.043397 0.441047 -0.774655 0.102098 0.596936 0.024410 -1.316918 0.242161 -0.512130 0.059338 0.489225 -0.200665 0.151785 0.020870 -0.350017 -0.310566 -0.482102 0.870854 0.192354 0.274037 0.309762 -0.694758 0.185126 0.085146 0.516876 0.853988 0.548826 0.502530 0.079089 0.309941 -0.447950 1.147801 0.050169 0.609949 0.020243 0.298226 0.639502 0.207512 0.099967 0.516972 0.548742 -0.318619 0.638199 0.116350 1.187774 -0.880839 0.303174 -0.523019 -0.152083 0.575020 1.596676 -0.805999 -0.075091 0.245134 0.391149 0.483622 -1.059214 -0.176893 -0.277785 -0.443273 0.531890 0.220245 -0.116551 -0.134911 0.734499 0.172280 -0.622010 0.955611 0.093532 -0.072145 -0.225380 -0.229215 -0.631820 0.458607 -0.842305 -0.038964 0.588832 0.559673 -0.515316 -0.646041 -0.192630 0.777333 -0.214247 0.465237 -0.475507 0.199169 0.986482 0.722256 0.375925 0.043436 -0.508526 -1.175766 0.240449 -0.115121 -0.371630 0.171696 0.184965 -0.695962 0.261016 0.440011 -0.911688 +PE-benchmarks/sieve-of-eratosthenes.cpp___GLOBAL__sub_I_sieve_of_eratosthenes.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/Iterative_QuickSort.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/Iterative_QuickSort.cpp__partition(int*, int, int) = 1.910327 0.556504 1.686737 -1.832596 -1.098110 0.793896 0.652409 -2.318091 0.107853 5.194275 1.556579 -1.517657 -0.875375 3.054247 -1.191454 -1.674527 1.246987 1.340858 0.021074 -1.012648 -0.326975 1.021139 -0.684785 -1.658768 1.064416 -0.944387 0.925051 1.468323 -0.447209 1.140067 -1.886422 -0.657499 0.316199 4.400268 0.263946 0.246918 -0.803431 3.979589 -3.862403 4.054506 -4.749082 -4.045573 3.818915 0.735826 0.955740 -2.759233 -1.358873 1.626580 0.152957 -3.064808 0.469120 -1.457154 1.173669 -2.254978 0.125229 3.202938 -4.422892 -0.099840 0.902125 -2.233144 -3.176632 -0.417646 2.666645 1.082629 -3.228606 -2.809509 1.063292 1.412060 -1.166425 0.852497 -2.816654 -5.508704 1.873021 0.708961 -2.094926 0.576657 -0.183216 -3.755254 2.295283 -0.475949 -2.256819 -1.323856 1.046274 -1.662274 1.210477 1.783534 4.009022 -6.016556 1.561723 -5.036137 3.177180 -2.377030 3.915226 3.487420 -2.087296 1.347872 1.731907 3.793149 1.732968 0.107598 3.753218 2.137213 1.499517 -0.965281 2.601877 3.026189 -3.302018 -3.382603 -2.641805 -3.081210 0.978472 -1.396165 -4.777333 0.343393 -3.265827 0.037466 0.451899 -1.223430 -0.389654 4.550798 -6.715870 -1.309251 1.461196 -0.720128 2.647289 3.174771 0.095666 0.862068 -0.146480 3.259791 -1.068022 -0.766053 -0.844317 2.097740 -3.127018 -2.045791 -1.715148 0.742232 1.614210 -3.752539 -4.049423 -6.017757 -1.043422 2.799625 -1.149127 3.055229 6.292198 -1.659044 -3.429493 2.013230 -0.517999 -1.169207 4.114583 0.783613 6.278576 -5.107654 2.528832 -1.207496 1.518716 1.539108 3.498840 -0.818355 -2.126354 2.224359 -0.611001 -2.805804 4.538910 -1.006016 0.076152 -1.303305 1.276034 -0.590809 -0.611828 3.972598 -4.234464 3.455435 -2.509574 5.184072 -3.773733 -2.477439 1.341946 -5.103070 -1.879419 -2.452695 -0.745522 -0.689502 4.387115 -3.310186 -1.948233 -1.450239 -1.878316 0.324915 3.310606 -2.535200 -0.013279 -0.697103 -1.451048 3.766483 2.065307 -0.075725 0.108194 -3.107514 0.469473 2.681716 -0.838538 -4.661594 -0.667874 -3.794236 -0.457493 -0.838379 -0.417883 2.660979 -2.761581 -1.627950 0.337661 -1.146244 0.389916 -1.644684 -3.538056 1.488185 -1.676729 1.259700 1.042062 4.689568 3.651169 3.522927 0.914168 -1.091262 1.171892 -2.865259 -2.875178 2.203576 0.805994 1.467868 1.650808 2.654137 0.568466 1.217614 1.965203 -0.123616 1.598984 3.878272 1.137693 4.272703 -1.153210 0.883572 0.740843 -2.107560 2.426136 4.894188 -0.696127 -0.844440 1.395527 -0.111647 -2.412295 -1.670303 -0.244251 -1.001199 -2.280337 1.560404 2.345457 -0.548482 -2.258139 5.934034 0.847749 -6.500813 3.043030 -0.315380 1.099370 3.737608 -1.782816 1.785162 1.490163 0.450474 2.191880 1.716955 3.380603 -4.025951 -0.548723 -0.309723 2.921480 3.276960 -0.644018 -7.039840 2.364615 1.427050 4.411369 1.213083 4.265931 -2.789272 1.487752 -0.732252 -1.854422 -0.440369 -0.890919 2.679435 -0.518954 -0.108996 -5.903102 0.534930 +PE-benchmarks/Iterative_QuickSort.cpp__quickSortIterative(int*, int, int) = 1.705110 1.017285 2.576417 -3.037200 -0.953324 0.688957 2.280149 -2.928037 0.044473 5.548844 2.993212 -2.104079 -3.493246 3.007356 -1.128498 -3.603096 2.515386 3.764006 -0.574366 -2.561911 -0.343763 0.771244 -0.746956 -3.180645 2.279177 -2.056039 1.502572 3.912143 1.911584 1.945241 -2.459733 -0.529074 1.195248 6.927754 -0.316853 0.927728 -1.335680 5.812362 -5.838179 4.466965 -6.601814 -5.752802 7.356679 1.340679 -0.007370 -5.996304 -2.952659 2.091889 -2.205363 -4.367820 0.488807 -2.248450 2.573085 -4.303314 0.001212 6.921320 -7.113142 -0.538190 1.284292 -3.928669 -5.036659 -0.351014 3.797913 0.581501 -3.888149 -4.466379 1.574244 0.894445 -1.860965 1.443507 -4.558392 -8.496119 4.152037 0.740774 -2.527132 1.639507 -0.500808 -6.244822 3.032249 2.116413 -2.462419 -2.475494 2.578264 -0.868760 1.886118 1.809914 5.087547 -9.128952 -0.896475 -7.266631 4.944886 -3.977129 6.754626 4.634893 -4.316612 2.911365 2.362277 3.157964 0.497688 -0.399965 6.223841 2.310824 3.432610 -2.210186 4.287803 3.642045 -4.957018 -5.962783 -4.282325 -4.446982 1.382922 -2.643482 -8.988379 0.077340 -6.572378 -1.831643 1.138032 -2.842647 -0.210528 6.965720 -7.723187 -0.061143 2.841573 -1.308471 3.956459 5.874788 0.798517 0.562856 0.546012 5.068968 -1.177698 -0.802136 -2.069792 3.223163 -2.158896 -5.542351 -1.666668 0.278368 2.214617 -5.618183 -6.395930 -7.486447 -1.726386 3.390983 -1.234786 1.316958 9.660585 -1.889200 -5.582956 2.643042 -0.347914 -0.015182 6.043137 1.632392 10.583049 -8.700350 4.826503 -2.054155 2.827431 3.528211 4.912578 -2.008726 -3.809303 3.278259 -0.762274 -4.789020 6.889240 -2.823024 1.235074 0.092740 1.914649 -1.173329 -1.917788 6.524966 -4.074761 6.726731 -3.648715 7.703135 -6.413325 -5.267537 1.947897 -5.369376 -3.200248 -3.954073 -1.255616 -0.660899 5.944140 -4.418918 -3.522529 -3.756014 -1.596622 1.385389 5.624453 -3.569842 -0.390578 -2.101962 -2.436340 2.185805 2.566224 -0.754421 0.523354 -5.233199 0.482675 4.435114 -0.425931 -8.055729 -0.276948 -5.482502 -0.800067 -1.142232 -0.563567 4.456846 -2.517511 -2.534029 0.962998 -2.095690 -0.101251 -3.474562 -6.129132 2.324659 -2.544377 0.127327 1.210960 7.756564 7.094131 4.362574 0.086553 -1.579664 2.893059 -4.609939 -5.282825 2.947492 0.025690 3.560587 2.372436 3.297016 0.605751 1.633122 3.205552 -0.309841 2.763862 5.789578 3.766869 6.621657 -0.162719 0.407949 1.953871 -4.119731 3.432170 7.260684 1.179746 -1.596369 2.467636 1.507183 -3.060107 -5.281886 -1.123644 -1.153788 -4.512432 5.104757 3.037015 -1.728111 -3.346179 9.715173 1.526577 -10.315224 4.953038 -0.567307 1.415661 4.520319 -3.229316 2.007405 3.273277 0.914315 2.584266 1.389208 5.463050 -6.492626 -0.746487 -0.576400 4.666734 4.503166 -2.320867 -11.660452 2.908103 1.463490 7.460928 2.832295 6.866061 -3.432559 2.682639 -2.204718 -2.578357 -0.441768 -2.044142 3.451158 -1.783788 -1.219767 -9.988119 1.794794 +PE-benchmarks/Iterative_QuickSort.cpp__printArr(int*, int) = 0.497572 0.384778 0.631172 -0.918884 -0.580118 0.200353 0.409143 -0.565056 0.078206 1.576390 0.513684 -0.522380 -1.067275 1.194366 -0.326443 -0.981255 0.346667 -0.467871 -0.082405 -0.323706 -0.102774 0.533275 -0.118546 -0.445674 0.496662 -0.238206 -0.050060 0.708847 0.306847 -0.244101 -0.652859 -0.142311 0.090755 1.542573 -0.104742 0.070379 -0.068076 1.741298 -1.341098 1.409986 -1.839555 -1.582345 1.451018 0.166657 -0.016481 -1.281615 -0.232127 0.707920 -0.619028 -0.797779 0.450166 -0.285065 0.146906 -0.787809 0.243880 1.401362 -2.228260 0.720330 0.233450 -0.431594 -0.753685 -0.219967 0.600950 0.181903 -0.475127 -1.002304 0.279004 0.134636 -0.920167 0.267783 -0.744885 -1.504529 1.082427 0.412746 -0.672284 0.417018 0.093198 -1.160063 0.899599 -1.082431 -0.863140 -0.402358 0.510334 -0.252624 0.800637 0.551603 0.867999 -2.161870 0.118969 -1.695177 1.156953 -1.061940 1.232208 1.317460 -0.676762 0.615177 0.482444 0.400692 0.646920 -0.132571 1.456060 0.526019 0.934637 -0.037188 0.689218 0.921704 -1.193294 -0.973343 -0.951442 -1.162528 0.146325 -0.319611 -1.676823 0.105253 -0.933988 0.144078 0.665971 -0.481771 -0.217021 1.117897 -2.216526 -0.567786 0.416671 -0.244599 1.038153 1.333205 -0.034901 0.172439 -0.088275 1.372862 -0.334086 0.219957 -0.346448 0.686350 -0.487511 -1.116946 -0.818555 0.064510 0.422549 -1.186190 -1.423347 -2.007816 -0.236098 0.533988 -0.436669 1.224128 2.450342 -0.573348 -1.350466 1.132168 -0.189313 0.170234 1.356205 0.162106 2.055634 -1.532222 0.616970 -0.373177 0.339254 0.461363 1.442046 -0.078993 -0.755067 0.534244 0.029970 -0.835942 0.626806 -0.176514 -0.117848 -0.519167 0.188638 -0.623658 -0.570633 1.407423 -0.945418 1.440197 -0.552727 1.910194 -1.239259 -1.266528 0.689057 -1.444498 -0.400295 -1.027638 -0.696498 0.095113 1.029061 -1.327579 -0.655951 -0.803444 -0.344691 -0.240651 0.950331 -0.913533 0.105127 -0.228254 -0.171508 1.405751 0.966073 -0.151708 0.201339 -1.450269 0.271673 0.797862 -0.175178 -1.891773 0.088051 -1.053814 -0.158811 0.666839 -0.271005 0.761445 -0.590875 -0.694597 0.291203 -0.500614 0.251446 -0.471875 -1.318043 0.324789 -0.411106 0.288497 0.558627 1.530140 1.322468 1.074255 0.339052 -0.150351 0.327126 -0.694705 -0.588969 0.375702 0.111753 0.496769 0.712459 0.926961 0.416915 0.311614 1.061923 0.472391 -0.117855 1.400536 0.410042 1.664481 -0.436811 0.010738 0.219285 -0.694116 0.848476 1.760675 -0.744057 -0.261303 0.773436 0.311560 -0.414470 -0.707950 -0.151264 -0.703429 -0.652028 1.020263 0.547262 -0.366975 -0.518585 2.018479 0.127878 -2.253091 1.184771 -0.046376 0.463808 0.767679 -0.444221 0.173203 0.748432 -0.722963 0.693611 0.645751 1.202152 -1.233052 -0.242025 -0.108618 1.068631 0.793074 0.089509 -2.409561 0.151745 0.591243 1.605200 0.724387 1.462275 -0.776629 -0.125293 -0.179513 -0.552734 -0.266743 -0.297845 0.799573 -0.447773 0.028850 -1.695112 -0.009170 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.433168 0.056670 0.336077 -0.624665 -0.558980 0.198826 -0.371737 -0.343235 0.138607 -0.102390 0.260334 -0.552352 -0.392925 0.867823 -0.437086 -0.713327 0.090453 -0.176780 -0.034060 -0.090089 -0.088958 0.203677 -0.137092 0.045856 0.086572 -0.078344 -0.028525 0.254433 0.880841 -0.435664 -0.771684 -0.002289 -0.041311 0.983115 0.129669 -0.243859 0.386190 1.368241 0.430645 0.555811 -0.770327 -0.290431 0.361450 0.091597 -0.184484 -0.789747 -0.613671 0.399218 -0.997529 0.238807 0.509212 -0.191818 -0.265823 -0.145740 0.266296 0.840577 -1.472434 1.008491 0.163361 0.483971 0.075389 -0.291394 0.173720 -0.077304 0.020510 -0.495994 0.375457 0.509070 -0.843120 0.259285 -0.417579 -0.885624 1.226059 0.351014 -0.665209 0.143843 0.320652 -0.733267 0.447164 -0.852605 -0.752814 -0.012971 0.253329 -0.086409 1.096082 -0.090492 0.131234 -1.266427 0.212528 -1.262221 0.286827 -1.086951 0.643759 1.032271 -1.022653 0.206715 0.163055 0.106671 0.487170 0.390955 0.956354 0.329841 -0.001432 -0.166657 0.466225 0.081808 -0.038909 -0.170291 -0.089781 -0.699752 -0.533820 0.065381 -1.624224 0.073486 -0.591532 0.749937 -0.040585 0.345893 -0.184226 0.108366 -0.905618 -0.785258 -0.042457 -0.195584 0.747140 1.055090 -0.255594 0.292858 -0.458791 1.063808 -0.036129 0.018482 -0.410809 0.167779 -0.108109 -1.051189 -1.391861 -0.040285 0.531758 -0.396763 -1.193364 -0.769836 -0.372264 -0.232735 -0.205634 1.173125 1.399477 -0.163887 -0.652115 0.986409 -0.083082 0.638796 1.465520 0.034662 1.303880 -0.747702 0.369329 -0.196530 0.136145 -0.390426 -0.967480 -0.096693 -0.190865 0.101673 0.107415 -0.275602 0.723951 -0.089417 -0.276581 -0.204888 -0.134554 -0.307871 -0.841341 1.271052 -0.040979 0.856045 0.192888 1.389439 -0.528198 -1.115079 0.502867 -0.032266 0.306802 -0.161950 -0.183101 -0.125590 0.710858 -0.818217 -0.597731 0.172477 -0.009602 -0.241509 0.369610 1.295314 0.006769 -0.005450 0.243812 0.734265 1.001245 -0.169102 0.519100 -1.065601 0.204538 0.625873 -0.388872 -0.798551 0.405387 -0.450816 -0.068178 0.248948 -0.082664 0.074989 -0.597845 -0.770681 -0.228276 -0.064339 0.792660 0.148044 -0.878558 0.298101 -0.500790 -0.094628 0.447285 0.633932 1.070713 0.506383 0.478886 -0.363005 0.257516 -0.213256 0.307672 -0.048988 0.277313 0.501025 0.228897 0.583613 0.246886 -0.017466 0.277852 0.445628 -0.120148 0.669609 0.637857 1.261621 -0.228693 -0.003402 -0.240543 -0.608461 0.723590 1.676497 -0.886943 0.177919 0.455472 0.675727 0.124066 -1.410299 -0.281617 -0.337090 -0.492833 0.272180 -0.264210 -0.236398 -0.139485 1.073830 0.070957 -1.060834 0.635978 0.059576 0.038546 0.233920 -0.095504 -0.210507 0.469569 -0.973690 0.393252 0.332409 0.577179 -0.359481 -0.313495 -0.152010 0.567512 -0.326547 0.280006 -0.373358 0.395135 0.704780 1.000120 0.877148 0.089877 -0.296462 -0.662832 0.101404 -0.445457 -0.342514 -0.016899 0.519380 -0.643688 0.022500 -0.266593 -0.877633 +PE-benchmarks/Iterative_QuickSort.cpp___GLOBAL__sub_I_Iterative_QuickSort.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/longest-bitonic-subsequence.cpp__lbs(int*, int) = 6.736360 1.404340 8.126126 -6.324158 -1.793462 3.378276 3.668121 -7.491243 1.415333 22.584960 4.219307 -2.894757 -4.855975 7.381181 -4.116275 -5.720309 6.143284 4.109900 1.732887 -6.128520 -1.014777 2.777905 -1.715944 -7.569741 4.743532 -5.906675 4.327495 6.631189 -4.785420 6.468416 -4.194697 -2.562705 0.465282 15.979579 0.171296 2.634247 -4.199946 12.841721 -14.471656 14.615019 -18.273773 -17.955043 15.447435 2.716683 4.749142 -8.034792 -0.812160 4.614347 0.308846 -11.156492 -0.391336 -6.075590 6.637376 -9.581623 -1.358359 10.447626 -15.486993 -3.703765 1.015758 -11.905193 -14.198924 -0.838855 10.191441 5.035067 -11.194334 -9.762470 3.922759 4.794130 -4.524011 4.460956 -9.232049 -17.559087 3.126183 2.823974 -5.561361 2.474854 0.043791 -11.972034 7.368361 -0.730796 -6.880954 -6.705951 3.688848 -8.338220 2.782911 7.398369 16.806446 -20.698383 6.174644 -16.427246 13.191119 -6.318839 14.675655 10.819673 -4.222660 6.813866 7.071982 14.373774 3.538562 -2.684378 13.226555 8.062277 7.414654 -2.536918 9.901011 10.883146 -13.147528 -13.160976 -10.291553 -9.162517 3.874659 -7.415093 -13.731631 0.024371 -12.384797 -0.811177 3.417406 -5.809066 -2.525085 17.907112 -26.651491 -3.643722 5.600406 -2.524381 8.593662 7.436609 1.699464 1.917581 3.501571 11.536617 -5.223223 -4.231345 -2.370089 8.226729 -10.129911 -3.334345 -3.064721 2.136274 4.693953 -13.658262 -14.138095 -20.821276 -5.087802 13.339126 -2.650901 11.507309 22.235157 -4.394876 -12.677656 4.787000 -5.537157 -5.908633 13.327733 4.517966 19.168210 -18.522888 9.064923 -6.165016 7.354196 8.626711 19.353329 -3.419483 -7.338439 10.028824 -1.581168 -4.749074 12.520524 -4.983943 2.476825 -6.681515 4.085495 -2.985174 0.014802 11.720513 -17.750957 13.360727 -10.472859 17.974157 -14.501464 -9.204826 3.276871 -21.956224 -8.361500 -8.696009 -1.540451 -3.074561 14.332667 -12.367888 -7.993275 -7.768562 -7.326083 3.547619 13.000672 -13.532855 0.265992 -3.132173 -7.592935 16.275759 4.399647 -0.002315 -1.876990 -9.899522 1.040614 8.568928 -1.294628 -15.433823 -3.517198 -12.227701 -1.466525 -2.160919 -0.072286 11.290854 -8.897714 -4.165121 1.913345 -3.862121 -1.577161 -7.805594 -14.425242 5.017198 -2.835730 3.581038 3.031568 17.048944 12.676210 11.205492 0.208346 -3.681257 3.650111 -11.734408 -11.194491 7.843953 3.537547 4.225566 4.676557 9.974881 1.155677 4.885978 7.965907 1.293085 5.826830 13.258238 1.432682 12.630702 -6.403140 3.506100 4.060523 -6.902121 7.364859 13.813969 -0.678038 -3.428040 5.203485 -0.895522 -8.564409 -4.129704 -0.405949 -3.927640 -4.735553 5.786814 11.447663 -2.530425 -8.703211 20.723738 5.268627 -24.036248 11.610112 -1.207203 3.405313 13.787435 -7.821163 5.878597 5.237983 3.313390 7.816017 4.722807 10.797214 -15.957772 0.027917 -0.354163 10.820630 12.394645 -3.653993 -26.217128 5.401489 2.322486 15.032444 4.590242 18.939746 -9.855635 6.606509 -4.276043 -8.333043 -2.142681 -2.135736 8.500850 -0.726370 0.732639 -22.903927 4.966496 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/cut-vertices.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/cut-vertices.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/cut-vertices.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/cut-vertices.cpp__Graph::APUtil(int, bool*, int*, int*, int*, bool*) = 4.803843 1.164315 5.741144 -3.743014 -5.582085 3.289460 -1.758662 -6.633139 1.182531 13.387045 4.678360 -4.828778 0.029144 9.766653 -3.998634 -4.424527 1.164227 3.506498 0.822382 -3.174296 -0.435148 3.061592 -2.109042 -3.175173 1.683763 -3.240678 2.217057 3.657098 -1.757079 4.266245 -4.905605 -1.882059 0.257081 11.503398 1.575156 0.209680 -0.003721 11.886577 -10.747056 11.225939 -11.520780 -12.026054 9.148114 2.258869 2.555877 -2.923533 -4.415275 4.244582 -1.621281 -6.244161 3.296163 -3.447064 3.497438 -3.767324 1.605220 6.250007 -12.827779 1.138249 1.322982 -6.178786 -7.641338 -1.311443 4.653876 4.559983 -8.163106 -6.551938 3.261508 7.103743 -1.837647 1.315029 -5.156083 -14.767500 8.164891 1.181006 -5.891849 0.987745 2.217860 -8.898221 7.275463 -2.386729 -8.249481 -2.757959 1.832996 -6.203531 4.456246 5.479135 11.740674 -16.070618 5.754153 -14.407271 9.852722 -6.041949 9.124790 9.506453 -7.807275 2.794305 6.119450 12.555051 7.125741 1.068164 10.071858 6.001188 2.585830 -0.604753 6.294197 8.734321 -8.524162 -7.680815 -8.488964 -9.363557 2.355412 -4.034668 -13.225316 0.758306 -6.181268 2.738304 0.371407 -2.892934 -0.820904 13.108213 -18.308498 -2.740184 3.365567 -1.419037 6.661018 7.141184 -1.062573 3.661991 -0.281390 9.695454 -4.914128 -3.047584 -1.589889 5.183768 -9.355265 -4.359124 -8.214211 4.166175 4.932437 -9.909517 -10.445096 -16.384726 -2.166725 9.284240 -2.934808 10.654520 17.947623 -5.288984 -9.072346 6.490136 -0.377232 -4.308343 12.422499 2.261475 15.704078 -11.859742 4.608720 -5.177017 1.796653 2.590647 8.514384 -0.139041 -3.949793 6.743085 0.660338 -6.120721 14.473528 -2.893161 -2.214901 -6.142679 4.055844 -1.766481 -0.683848 11.004848 -9.618904 6.936962 -5.582809 15.138186 -9.583319 -7.644320 3.451416 -14.257461 -4.590345 -6.126725 -1.974686 -1.062285 11.833022 -9.410159 -4.884021 -3.256834 -5.927854 -0.157043 6.670933 -3.053426 1.235775 0.003936 -2.988446 11.414981 8.018003 2.207946 -0.642660 -8.897035 0.785725 6.933584 -4.062016 -12.104979 -1.804174 -9.908458 -0.296514 -2.432295 -1.059006 6.759897 -9.269691 -4.161545 -1.561363 -3.483667 2.704556 -2.160176 -10.090428 4.312917 -3.671566 5.483620 3.958672 10.553139 10.753526 10.931906 5.582470 -1.208374 2.290507 -6.780029 -4.132158 6.437737 4.843097 3.814337 4.285995 10.162423 1.922186 3.278754 4.767318 1.383678 4.747289 10.207405 1.408064 13.094460 -4.372484 3.877398 -0.435503 -3.105658 7.512821 14.909090 -4.071271 -0.951459 3.252921 0.172756 -5.403561 -4.015540 0.492963 -3.230992 -3.581819 2.277258 6.458649 -0.592455 -6.115361 14.469560 2.786506 -16.480717 7.881810 -0.551180 2.867914 10.145819 -4.477812 3.370506 2.806126 -0.709022 7.987677 6.166405 8.686608 -11.058077 -1.468921 -0.982937 7.949651 8.652028 1.107779 -17.033780 7.281591 4.941540 10.077098 2.544884 10.442572 -9.250067 0.949166 -0.756302 -6.946393 -2.057165 -0.411783 6.574372 -2.324533 3.360934 -13.442797 -3.039281 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/cut-vertices.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = 3.557325 0.698340 4.288108 -3.812689 -3.221774 2.905306 -1.032491 -3.648436 1.316588 9.158892 3.392696 -2.808579 -3.012519 4.234827 -2.480990 -3.917822 2.955244 1.135930 1.721796 -3.426035 -0.383765 1.329140 -1.042892 -3.542601 1.804367 -3.154014 0.761083 3.397517 0.603556 3.029057 -3.641616 -0.799583 -0.051471 8.917630 0.917454 -0.238629 -0.057192 8.516720 -5.448755 6.330515 -8.532857 -9.298850 7.822271 1.862886 1.982074 -2.475399 -1.317093 2.673406 -3.616898 -3.513269 1.545658 -3.575489 3.650673 -3.527380 -0.616761 5.595728 -10.294982 0.785692 -0.024751 -4.578923 -5.573189 -0.429833 3.620426 3.188886 -3.319830 -4.673188 2.397940 4.279083 -2.766871 1.229748 -4.048272 -8.889553 4.412832 1.914697 -2.955999 0.819130 1.464131 -6.242334 4.154061 -2.198008 -5.580968 -2.305119 1.312146 -4.248169 3.804375 3.218523 8.454527 -10.974322 2.963060 -10.366579 7.084090 -3.893568 7.221749 6.337254 -4.598621 2.625386 4.260513 6.163709 3.616436 0.155588 8.238185 4.010581 3.063676 -0.793906 5.000326 5.369799 -5.231675 -4.632730 -4.734621 -5.451557 -0.137402 -2.941561 -8.633138 0.251686 -6.386625 1.604678 1.511221 -2.186425 -1.461534 8.085826 -11.890200 -3.621378 1.468921 -1.167622 5.308167 4.386335 0.184402 1.406305 1.741434 7.782375 -3.129420 -2.596298 -1.282421 4.055091 -3.780812 -4.161346 -5.350081 2.446925 3.621054 -7.250583 -8.443110 -10.239509 -1.990928 5.374857 -1.420768 7.207139 12.918927 -2.205740 -6.244363 4.294634 -3.054434 -2.096070 9.915212 1.982356 10.616036 -9.022400 4.175943 -3.367150 2.440719 1.859932 6.655203 -1.210046 -2.489215 4.339947 0.863241 -0.968154 5.749140 -2.228796 0.125033 -4.179868 1.405236 -2.102260 -1.682737 6.844327 -6.007576 5.991435 -2.476154 10.845182 -6.792861 -7.625921 3.133387 -7.481606 -3.460791 -2.870063 -0.891936 -0.637354 6.537064 -6.699550 -4.528065 -3.294880 -2.421050 0.350217 5.650156 -0.950553 0.886159 0.081793 -3.175940 6.858289 3.941164 0.668256 0.078276 -6.441918 0.275978 4.485069 -2.289141 -7.849754 -1.253195 -6.441993 0.175046 0.732319 -0.002628 5.801794 -4.615602 -3.426107 -0.046722 -1.558848 1.982543 -2.248428 -7.144575 3.257450 -0.881939 1.410171 2.383738 8.534816 7.289422 6.666295 1.144646 -1.308863 1.615161 -4.602097 -2.222512 2.358103 2.751188 2.821896 2.095787 6.165078 0.763048 2.746303 4.173083 2.139178 2.299523 6.919446 0.778951 7.755420 -3.682347 1.956008 1.000488 -4.001983 5.009891 9.558107 -2.586621 -1.542016 2.466982 0.716598 -2.881650 -4.303240 0.582209 -2.351692 -1.794073 2.098326 5.070530 0.026551 -4.935965 9.972494 3.220320 -12.615539 7.248517 -0.549127 1.538793 6.733295 -3.819068 1.435561 2.067930 -1.161967 5.320669 3.808080 5.368557 -7.857043 -0.830402 -0.318689 6.328997 3.525042 -0.458279 -10.573602 3.266690 2.300365 6.950519 4.378122 7.850446 -6.003250 -0.263398 -1.941279 -5.942407 -2.269576 -0.675737 3.929295 -2.406246 2.137239 -8.991505 -0.113058 +PE-benchmarks/cut-vertices.cpp__main = 1.083318 1.627614 1.155099 -0.217164 -2.202286 -0.475561 -2.948140 -0.092282 0.202971 -0.457843 -0.816860 -2.021354 -2.320544 1.447674 -3.318066 -2.760608 -1.909736 0.004652 -0.127714 -3.033949 -0.253385 0.407551 0.344999 0.427903 0.580578 -1.201382 -0.218117 0.295036 4.869825 -0.904230 -0.321770 0.562058 1.369868 1.874090 -0.575206 -1.117569 1.852378 3.065475 4.046261 -2.155129 -2.089459 -2.060395 0.757995 0.587569 0.167864 -1.919287 -0.765484 0.513548 -6.846707 5.008966 0.213059 0.535149 -2.436602 -0.319148 1.046315 1.552697 -5.732465 6.986923 -1.007089 1.370146 0.475657 -0.776598 -0.929256 -1.331326 4.283299 -0.806002 -0.213477 3.364462 -3.858556 2.336012 0.514775 0.737159 3.507323 -0.387706 -1.581160 1.052114 1.303461 0.905142 0.215399 -5.671162 -0.852043 -0.087587 2.985651 2.803018 2.196242 1.439160 -1.729377 -2.345378 -0.943317 -1.669895 0.878674 -2.535458 1.329541 1.698700 -4.012138 1.488477 -0.223997 -3.655115 1.954440 1.746895 2.331549 0.011436 1.033807 0.264007 -1.695678 -0.290630 1.699345 0.992067 1.175695 -1.108540 -3.554446 1.722330 -4.164674 -1.004957 -1.337677 3.905456 0.527197 0.358149 -0.329052 -2.154911 -3.047038 -4.714448 -0.572445 -0.258935 2.475170 0.569064 -0.513789 1.120258 -0.822672 2.954938 0.568814 -1.286068 -0.730257 -0.431749 1.507276 -6.264900 -6.748990 -0.679127 0.440237 0.248287 -2.612857 0.118302 -1.364629 -2.181563 0.227119 1.962626 2.793532 1.222585 -1.763112 2.750745 -2.383731 3.281903 5.460014 0.407586 2.171226 -0.786754 0.596844 0.366276 0.571163 -0.309940 -5.290069 -0.310315 -0.661842 -0.752961 2.735875 2.888148 -5.223238 -1.157873 -0.439333 -3.947363 -0.831853 -1.027990 -0.314695 2.397937 1.043869 2.681824 -0.272689 3.075174 -1.858199 -5.849234 0.741491 -1.464370 1.526915 2.776875 0.634749 -0.679559 0.782845 -3.552335 -1.763917 1.320275 0.824311 -0.697376 0.123705 5.481385 -0.192369 -0.406904 1.442871 2.551802 1.892006 -1.105899 2.525245 -3.177955 -0.507442 1.557572 0.373494 -4.280371 2.741243 0.474608 -0.053213 2.146332 -0.161937 -1.537039 1.051419 -1.428239 -1.555066 -1.304151 3.278792 0.019814 2.524956 0.931753 -2.730938 -0.845653 0.286305 0.482077 3.671937 -0.873315 0.454316 -0.084425 1.333598 -2.540342 6.812465 0.595709 2.452204 -0.323365 -0.089615 1.729867 0.361758 -1.095246 0.175305 2.443206 -3.506889 0.967618 1.105599 3.418893 -4.567440 1.013803 -2.173137 -0.830855 1.292108 4.562120 -3.779376 -0.326161 1.359093 2.586661 4.055145 -4.471373 -1.991617 -0.934691 -1.195327 0.951055 -1.100136 -2.355308 1.401759 1.301217 0.743786 -0.344124 3.285151 0.523552 -1.432225 -3.611550 -0.555466 -4.644663 2.678723 -4.051212 -1.725397 -0.054251 0.811713 -0.449105 -1.676507 -0.983778 2.793422 -2.283073 1.055371 1.133602 -0.428192 3.877807 1.611303 2.655556 -1.509353 0.376522 -6.101518 -0.161716 -0.544655 -2.205783 1.105035 -0.189175 -2.411886 1.573368 4.406431 -4.812433 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/cut-vertices.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/cut-vertices.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/cut-vertices.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/cut-vertices.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/cut-vertices.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/cut-vertices.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/cut-vertices.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/cut-vertices.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/cut-vertices.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/cut-vertices.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/cut-vertices.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/cut-vertices.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/cut-vertices.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/cut-vertices.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/cut-vertices.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/cut-vertices.cpp___GLOBAL__sub_I_cut_vertices.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/program-wish-womens-day.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/program-wish-womens-day.cpp__main = 3.443781 3.637321 4.322478 -6.019604 -0.837969 2.005232 3.419066 -3.131229 0.837148 14.867940 0.584157 0.186558 -6.654497 4.530855 -3.128435 -5.346038 4.332664 -2.793615 0.212297 -4.865216 -2.325438 2.287141 0.062321 -5.361060 4.249315 -4.743574 1.207595 4.575948 -2.092790 -0.080173 -1.572095 -1.323689 -0.177559 9.949054 -1.736425 2.715703 -1.695617 7.608568 -6.664874 8.571946 -13.436987 -10.380160 9.681783 1.147385 2.412561 -8.573009 2.919949 1.850866 -0.435937 -4.220393 -1.105375 -4.485867 2.081748 -6.025650 0.748567 8.137335 -9.813483 0.955078 -0.063799 -5.161025 -7.133976 -1.561131 6.416157 1.248897 -3.788889 -6.993865 1.232619 1.938014 -6.732555 3.843164 -6.522686 -7.373937 0.381620 3.704461 -3.280647 1.986038 -1.791904 -6.156073 2.213494 -6.503147 -2.344272 -4.709353 5.806058 -0.854403 1.262710 4.906085 7.909582 -11.953989 0.277300 -7.937826 6.554458 -3.868017 10.380885 6.344524 1.865307 4.256374 2.761765 1.531710 0.938518 -2.633713 8.299401 2.476433 6.976349 -1.936430 4.484263 5.875857 -8.063769 -8.162025 -3.158251 -4.442222 0.985231 -1.899330 -5.889340 -0.330779 -8.802392 -0.973651 4.425418 -2.820199 -3.346665 7.475344 -16.226794 -7.230752 2.522379 -1.908157 6.971116 4.094201 2.172142 0.932945 3.931830 6.044339 -1.085025 -0.840092 -3.191928 4.958570 -3.213723 -3.867917 -2.376761 -2.492070 1.716085 -8.461014 -9.066519 -10.367939 -4.080967 4.929597 -1.485685 8.308962 14.091449 -1.935794 -8.336180 2.982933 -5.300769 -0.372243 7.758188 2.342060 10.172391 -11.821457 6.413417 -1.823251 6.558183 6.164543 15.944656 -3.449509 -5.290928 3.992507 -0.600578 0.865046 -1.965600 -1.914372 2.682651 -3.883919 -0.002542 -2.127810 -0.898510 6.057485 -10.571448 11.447987 -6.502411 11.548550 -10.605415 -7.587152 3.311527 -12.339909 -3.645053 -5.269173 -1.952073 -0.778320 6.604371 -7.284210 -5.438103 -5.407307 -3.249617 2.395510 7.892494 -10.493640 0.004830 -4.249896 -4.922529 13.737547 3.214415 -1.805853 0.644979 -6.230858 2.415056 5.579807 1.884654 -9.983716 -0.914999 -5.099542 -2.073394 3.462160 -0.658745 5.210723 -2.272364 -2.153183 2.557708 -3.522192 -1.423737 -5.031515 -7.662368 2.464754 -2.709417 -0.847714 0.801969 10.469336 6.308577 4.086234 -1.870114 -3.509115 1.640183 -7.778095 -4.550877 4.472897 1.144450 0.965697 3.745637 5.150181 0.598407 2.995871 6.965437 2.268571 -0.761584 7.453723 -0.240063 7.151323 -6.743817 2.173660 2.267401 -5.986635 4.155117 8.346714 -2.094114 -4.216436 5.146592 0.722966 -2.662357 -3.528834 -2.169792 -4.067660 -3.555298 5.968766 6.266753 -2.777887 -4.327684 14.108258 2.961064 -13.155962 8.231300 -1.252553 1.055191 4.592598 -5.019160 0.589679 5.489455 -1.206951 1.352043 1.570947 6.750008 -7.665479 0.425214 -0.482365 6.948867 5.291608 -2.786872 -16.236266 -1.652236 2.708186 10.353077 5.278702 13.336102 -3.093842 2.341006 -2.618945 -2.836862 -1.865198 -1.766730 4.156097 -1.530445 0.544665 -11.884942 5.186332 +PE-benchmarks/program-wish-womens-day.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.014327 0.209649 0.027037 -0.170277 -0.316485 0.141143 -0.001839 0.020594 -0.062553 -0.140714 0.140017 0.076192 -0.105557 0.474967 -0.134368 -0.102194 -0.145361 -0.319865 -0.177290 -0.163268 -0.204885 0.265929 0.045424 -0.230606 0.280602 -0.105746 -0.194279 0.171359 -0.130742 -0.348769 -0.077888 -0.021339 -0.073147 0.380767 -0.185543 0.289844 0.259229 0.341907 -0.026945 0.183356 -0.442282 -0.249800 0.406428 -0.030507 0.101880 -0.524221 -0.266712 0.103482 -0.020223 -0.083629 0.068144 -0.186589 -0.235883 -0.048568 0.257738 0.250697 -0.450604 0.312837 0.128409 0.124569 -0.029049 0.000590 -0.008133 -0.225190 0.113386 -0.475784 -0.230112 0.211001 -0.176509 -0.007653 -0.209250 -0.197291 0.500598 0.176156 -0.116327 0.112780 -0.131965 -0.206303 0.053925 -0.595169 -0.135143 -0.097979 0.384571 0.190960 0.195023 0.031113 0.069330 -0.228978 -0.160898 -0.369733 -0.005923 -0.251635 0.312865 0.352611 -0.228423 0.007422 0.134255 -0.105526 0.286897 0.358773 0.370017 -0.026220 0.154422 -0.114228 -0.004130 0.021321 -0.280367 -0.176411 0.061037 -0.365008 -0.020739 0.108215 -0.490298 0.128466 -0.155450 0.081217 0.005104 0.200069 0.063885 0.152633 -0.424372 -0.157872 0.083589 -0.041611 0.189077 0.172292 0.048516 -0.097799 -0.047540 0.107460 0.000832 0.105022 -0.153888 0.181219 -0.099082 -0.484222 -0.300071 -0.278197 -0.083410 -0.369380 -0.317964 -0.326532 0.030915 0.028271 -0.191903 0.180444 0.659489 -0.199872 -0.260800 0.199899 0.404912 0.146479 0.362897 0.060945 0.306417 -0.260180 0.063861 0.064635 -0.057695 -0.002787 -0.076354 -0.155541 0.019181 -0.058136 0.140838 -0.413941 0.368384 0.061666 0.034026 0.310647 -0.052931 -0.153011 -0.127515 0.289203 0.300614 0.525747 -0.098755 0.525348 -0.353866 -0.285501 0.351184 -0.089208 0.101648 -0.181790 -0.191113 0.066027 0.032539 -0.264610 -0.157640 0.048124 -0.098783 -0.093742 0.186957 0.035035 0.081085 -0.148603 -0.046622 0.025405 0.297187 -0.189195 0.342726 -0.255717 0.288370 0.264145 0.033895 -0.468165 0.023223 -0.167421 -0.088846 0.350655 -0.104320 0.047619 0.028897 -0.004078 0.196697 -0.243380 -0.008062 0.000000 0.041104 -0.006680 -0.349402 -0.053387 0.079415 0.300359 0.407048 0.141953 -0.069612 0.091010 -0.113703 -0.214719 0.128695 0.053814 -0.143940 0.179716 0.319347 0.134212 0.225478 0.221491 0.176170 0.176984 0.013116 0.437343 0.204015 0.435751 -0.376856 0.104214 -0.000591 -0.082994 0.369034 0.455265 -0.215930 -0.036026 0.195711 0.118899 0.002843 -0.285005 -0.089123 -0.061076 -0.387935 0.259634 -0.002540 0.043214 -0.036539 0.534899 -0.029373 -0.185641 0.260049 -0.187279 0.141187 -0.033283 -0.001232 -0.029510 0.314948 -0.228453 -0.115852 0.066709 0.421442 -0.220482 -0.259871 -0.028235 0.285622 0.065872 0.191607 -0.294778 0.105779 0.112173 0.216925 0.052566 0.095090 -0.012158 -0.240956 0.044458 0.060264 -0.150699 0.003564 -0.043830 -0.153910 -0.036558 -0.336299 0.004184 +PE-benchmarks/program-wish-womens-day.cpp___GLOBAL__sub_I_program_wish_womens_day.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/naive-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 1.563328 1.235617 1.920611 -2.126342 -0.856872 0.792166 1.293682 -1.847892 0.275124 5.907400 1.278036 -1.230106 -2.251430 2.534011 -1.034922 -2.140886 1.508034 -0.536673 0.116912 -1.659434 -0.352407 1.056520 -0.324172 -1.919628 1.372622 -1.168240 0.641169 1.603616 -0.318110 0.372821 -1.442130 -0.480058 0.548707 4.462434 -0.082198 0.361258 -0.964016 3.971981 -3.450796 3.875850 -5.514212 -4.847204 4.342744 0.658575 0.508683 -3.084517 0.292554 1.711954 -0.402333 -2.655450 0.255163 -1.425187 1.092673 -2.665231 -0.318444 3.664779 -5.139559 0.873112 0.424972 -2.375638 -3.257516 -0.555519 2.796790 1.135720 -1.873527 -2.574363 0.893933 0.644949 -2.246368 1.079445 -2.593707 -4.491013 1.636410 1.088235 -1.779668 0.834126 -0.549812 -3.016894 2.028387 -1.873910 -1.886675 -1.604620 1.647654 -1.028001 1.052302 2.100366 3.443989 -6.092169 0.557944 -4.596905 3.640237 -2.019326 4.160298 3.202611 -1.122984 1.752335 1.362794 1.798031 1.245575 -0.827189 3.828590 1.364305 2.720112 -0.574020 2.040639 3.177489 -3.540270 -3.236046 -2.292101 -2.782901 0.861159 -0.764330 -3.446803 0.121092 -3.646547 -0.128598 1.670456 -1.634807 -0.929821 3.626792 -6.732840 -2.516889 1.271802 -0.747937 3.333957 2.883625 0.460228 0.946436 0.598038 3.453366 -0.887914 -0.351587 -1.024160 2.144898 -1.871331 -2.242420 -1.628487 0.349679 1.321626 -3.662810 -4.038578 -5.958077 -1.175954 2.197856 -1.081613 3.248156 6.411819 -1.329020 -3.758394 2.175819 -1.246507 -0.391161 3.831213 0.715915 5.801743 -5.155190 2.628415 -0.908947 1.952148 2.152287 5.806902 -0.967121 -2.084036 1.959598 -0.240452 -1.144945 1.266200 -0.771179 0.272135 -1.629569 0.669863 -1.229936 -0.982049 3.211911 -3.525475 3.698904 -2.444877 5.319775 -4.278751 -3.285003 1.552644 -5.156334 -1.957430 -2.356934 -1.223697 -0.299682 3.722988 -3.633984 -2.047462 -1.907189 -1.307512 0.178289 3.066530 -3.644058 0.058682 -0.960314 -1.636746 4.510570 1.659278 -0.514547 -0.056287 -3.349310 0.169864 2.563047 0.157835 -4.764894 -0.512237 -3.443140 -0.600437 1.060182 -0.530470 2.594515 -1.847324 -1.476794 1.054095 -1.514740 0.321847 -1.963403 -3.821779 1.378658 -1.137861 0.522549 0.860837 4.873701 3.159896 2.933617 0.251940 -0.956438 1.015183 -2.936809 -2.283444 1.496419 0.699059 1.203089 1.841205 2.374174 0.737041 1.124021 2.843829 0.363971 0.023660 3.729211 0.319991 3.953724 -2.045680 0.898386 0.910292 -2.256601 2.190588 4.521331 -1.034103 -1.712139 1.942712 -0.073497 -1.584545 -1.666063 -0.456395 -1.624158 -1.393791 2.263933 2.692065 -0.936013 -2.095030 6.117226 0.851038 -6.561509 3.798055 -0.225098 1.042681 2.883912 -2.037678 0.871565 2.096292 -0.568234 1.598755 1.638452 3.564796 -3.930314 -0.198583 -0.460111 3.269503 2.518819 -0.763365 -7.341210 0.570028 1.379991 4.404768 1.984630 5.036399 -2.388367 0.830629 -1.044704 -1.627266 -0.680652 -0.752376 2.606404 -0.392241 0.044078 -5.491130 1.393563 +PE-benchmarks/naive-algorithm.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/naive-algorithm.cpp___GLOBAL__sub_I_naive_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/kmp-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 2.900291 1.612815 3.098768 -2.760313 -1.441451 1.246026 1.787212 -3.445868 0.599070 9.495744 2.426203 -2.498696 -2.067069 4.301326 -1.972463 -2.506287 2.442869 0.957572 0.158392 -2.263009 -0.742084 1.444716 -0.793460 -3.273698 2.153911 -1.834341 1.521802 2.496838 -1.076517 1.443265 -2.554612 -0.784900 1.070356 7.291743 0.148717 0.287751 -1.380467 6.103837 -5.925204 6.460050 -8.198732 -6.995939 6.998303 1.191945 1.392778 -4.134753 -0.459551 2.813060 0.395369 -4.927271 0.205346 -2.533854 2.200847 -4.341909 -0.652425 5.793459 -7.385276 0.324041 1.057030 -4.217664 -5.760049 -0.689500 4.476106 2.143801 -4.368206 -4.475444 1.581871 1.965346 -2.721424 1.627448 -4.569286 -8.269941 3.174246 1.017084 -3.164930 1.128544 -0.990852 -5.348183 3.396746 -1.511999 -3.061199 -2.486440 2.515924 -2.142302 1.406164 3.292305 6.374590 -9.899616 1.393560 -7.809213 5.935321 -3.345911 6.882019 5.216232 -2.511466 2.639726 2.353927 4.590684 2.162819 0.010770 6.192294 2.651726 3.542686 -1.548195 3.567355 5.318502 -5.596129 -5.713236 -3.922828 -4.509883 1.627237 -1.021729 -6.235101 0.363144 -6.153366 0.468644 1.794884 -2.329041 -0.964463 7.376572 -10.676649 -3.103786 2.368885 -1.175728 5.096723 4.823285 0.713012 1.606335 0.658397 5.311810 -1.385042 -1.521698 -1.541509 3.572924 -4.195246 -3.552747 -2.512842 0.890344 2.437900 -6.177315 -6.631295 -9.794607 -1.871607 4.397234 -1.925032 4.855911 10.211946 -2.249723 -5.579019 2.979623 -1.409060 -1.574376 6.448832 1.322074 10.202616 -8.930118 4.663796 -1.658361 3.285056 3.443073 8.598957 -1.850897 -3.669842 3.398026 -0.386314 -3.253575 5.344371 -1.159533 0.666834 -1.738836 1.522753 -0.963858 -1.376564 5.723903 -5.921847 5.725946 -4.415602 9.124262 -6.919700 -4.809379 2.362455 -7.406637 -3.159678 -3.610440 -1.195734 -0.565446 6.894126 -5.457141 -3.383554 -2.177305 -2.762714 0.819010 5.536687 -4.736092 -0.070737 -1.601711 -3.412208 6.663942 2.399584 -0.770216 -0.122737 -5.239181 0.223706 4.073578 -0.504609 -7.621436 -1.323557 -6.044110 -0.915650 -0.094976 -0.690024 4.514539 -3.895734 -2.366503 1.373124 -2.264151 0.394060 -3.330227 -5.755891 2.524440 -2.249234 1.296658 1.223337 8.080828 5.581958 5.213806 0.550195 -1.699464 1.449236 -5.066802 -4.423466 3.402870 1.331955 2.306553 2.809816 4.427339 0.802743 1.982536 3.654468 -0.689219 1.545065 6.246896 0.919971 6.434473 -3.556594 1.825221 1.540040 -3.657947 4.060308 7.405702 -1.570088 -3.040990 2.491464 -0.262067 -3.462134 -2.293122 -0.668052 -1.887305 -2.747727 2.878461 4.441458 -0.954845 -3.771870 10.114397 1.560517 -10.794005 5.818356 -0.542896 1.696185 5.535421 -3.365124 2.425603 2.939016 0.776814 2.724029 2.577011 5.872272 -6.755929 -0.921339 -0.660983 5.171658 4.455785 -1.514662 -12.402400 2.106085 2.242284 7.104894 2.509714 7.731196 -4.420055 2.318158 -1.694548 -2.816560 -0.848486 -1.321055 4.297654 -0.879265 0.259275 -9.596154 2.267277 +PE-benchmarks/kmp-algorithm.cpp__computeLPSArray(char*, int, int*) = 1.598386 0.489328 2.199238 -1.797456 -0.889398 0.561902 1.806701 -1.849621 0.273650 5.262454 1.563629 -1.350403 -1.565480 2.868509 -0.719915 -1.754982 1.639639 0.804907 -0.036921 -0.878643 -0.459880 1.056775 -0.550510 -1.793946 1.606545 -0.987635 0.775737 2.393477 -0.737550 1.119484 -1.540309 -0.586742 0.315745 4.612170 -0.127197 0.335983 -0.581368 4.486890 -5.033072 4.655672 -4.511447 -4.247921 4.631505 0.558294 0.440055 -2.638236 -1.116367 1.836395 -0.489854 -3.490309 0.790997 -1.154990 1.488261 -2.685716 0.261367 3.870949 -5.147210 -0.385727 0.855940 -2.424504 -3.417950 -0.528336 2.026447 0.819691 -3.232669 -2.927281 0.996892 0.538517 -1.210901 0.881998 -2.735015 -5.256964 2.431231 0.696575 -1.783130 1.076899 0.207954 -3.798959 2.531622 -0.271362 -2.241650 -1.647398 1.008641 -1.889924 1.725208 1.533328 3.829286 -6.233557 0.880867 -4.979271 3.645787 -2.879611 3.905629 3.820044 -1.979624 2.040278 1.698841 3.388612 0.891660 -0.334443 3.975232 2.010958 2.095413 -0.640873 2.689603 3.123160 -4.045563 -3.978825 -3.417710 -2.904217 1.264379 -1.635804 -4.570336 0.247974 -3.192495 -0.034360 1.286347 -1.508085 -0.552810 4.977694 -6.359414 0.097479 1.831682 -0.802441 2.509192 3.425399 0.087263 0.436000 0.050928 3.531091 -1.157846 -0.225836 -1.031917 2.289937 -2.653482 -2.006569 -0.997689 0.316975 1.332390 -3.711936 -4.191857 -6.249030 -0.881988 3.040231 -1.134888 2.760957 6.771860 -1.567527 -3.396074 2.229240 -0.268805 -0.543706 3.416128 0.985842 6.034857 -5.080234 2.261955 -1.646438 1.498686 1.950705 5.036830 -0.647053 -2.360780 2.493271 -0.319912 -2.794264 5.076041 -0.931249 0.246216 -0.821539 1.112087 -0.931503 -1.050151 4.491421 -3.676968 3.726080 -2.559046 5.611905 -3.673394 -2.706222 1.413704 -4.624594 -1.698159 -3.591667 -1.244672 -0.093431 3.799838 -3.395418 -2.253301 -2.226665 -1.565907 0.421968 3.346872 -3.298433 0.009079 -0.972573 -1.448391 3.554096 1.896116 -0.245227 -0.098019 -3.665335 0.469529 2.206623 -0.885957 -4.987035 -0.357641 -3.260259 -0.564883 -0.272552 -0.295707 2.723778 -2.779145 -1.656815 0.928094 -1.318328 -0.354042 -1.830721 -4.734502 1.263099 -0.893599 0.974748 1.519625 4.699455 4.198103 3.248693 0.657199 -0.572871 0.890974 -2.401944 -3.781436 2.158946 0.335146 1.893541 1.730878 2.754207 0.813514 1.045021 2.000721 0.152940 1.428880 3.976771 1.659074 4.286727 -0.624562 0.364912 1.267019 -1.933739 2.549552 4.220169 -0.602017 -1.011146 1.763055 0.309454 -2.440299 -1.483049 -0.359652 -1.341988 -1.888786 2.346193 2.084936 -1.005024 -1.955318 6.218095 0.623758 -7.019435 2.803808 -0.192376 1.385418 3.564277 -1.580886 1.856400 1.811467 0.193651 2.606687 1.392632 3.536541 -4.166535 -0.204273 -0.191757 2.684584 3.535935 -0.476160 -8.195095 1.219515 0.814488 4.467053 1.374906 5.048481 -2.563954 1.685272 -1.020477 -2.087657 -0.424511 -1.012189 2.566902 -0.632068 0.128171 -6.795704 0.818787 +PE-benchmarks/kmp-algorithm.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/kmp-algorithm.cpp___GLOBAL__sub_I_kmp_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/matrix-chain-multiplication.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/matrix-chain-multiplication.cpp__MatrixChainOrder(int*, int) = 5.380571 0.568493 2.554578 -3.820374 0.258562 2.193146 2.550868 -5.350202 -0.137400 13.416101 3.515914 -3.130616 -2.581248 5.310306 -1.235712 -4.779873 5.287155 5.208892 0.747604 -2.999061 -1.879314 1.054655 -1.295172 -6.066918 3.283165 -3.876919 1.877648 3.791160 -2.546503 4.149162 -4.175143 -1.148269 0.847693 11.086627 0.584873 0.594776 -2.719385 8.313854 -9.656053 10.675926 -10.150268 -9.174936 10.594915 2.232610 2.186792 -3.855824 -1.959260 2.674539 2.012865 -7.845095 -0.027629 -4.876491 4.217080 -6.324477 -0.911474 9.942824 -8.535708 -2.541990 1.497374 -7.067296 -8.860509 -0.663259 6.454128 2.645724 -7.887715 -7.371121 2.894310 3.729028 -2.035377 2.169761 -9.112925 -14.117786 3.941409 3.215088 -4.050888 1.202762 -1.998603 -8.161243 3.979233 1.770991 -4.324014 -4.262928 3.243321 -2.415566 1.417272 5.440637 11.519134 -14.645262 2.713457 -11.993385 8.811191 -4.692338 11.629040 7.967459 -2.202196 3.789812 4.187713 7.979147 1.065655 -0.449175 9.361481 3.667370 2.664117 -3.554136 5.905315 7.636328 -8.652010 -9.656924 -4.917078 -4.668448 2.580072 -2.679148 -9.170827 1.106223 -11.119356 0.221989 1.889963 -2.663363 -1.608859 11.371123 -14.646299 -4.370357 3.399140 -2.307748 8.407141 6.683425 1.900736 1.728109 0.578263 7.323968 -1.310224 -3.249422 -3.516744 5.725515 -6.899365 -4.074245 -2.167390 1.336476 4.524948 -10.974791 -10.276786 -12.799610 -3.163607 8.643764 -2.880441 8.421029 14.830428 -3.813304 -6.618785 3.195309 -2.857101 -1.923471 9.465453 2.676332 15.925295 -14.794986 8.712295 -2.245988 6.280039 5.407198 10.691503 -3.530452 -5.870517 5.994521 -0.807851 -2.760629 11.062125 -3.096921 1.676711 -1.119308 2.467126 1.092388 -0.870623 8.896362 -10.606785 8.476865 -6.035213 13.296437 -10.006008 -5.761013 3.498302 -10.713695 -6.771123 -5.992379 -0.261054 -2.356000 10.111542 -7.300638 -5.536751 -3.299458 -4.668239 2.541616 9.433934 -5.188157 -0.810433 -2.780723 -6.399092 9.816925 3.437786 -0.166730 -0.729167 -7.355475 0.961326 5.740932 -2.926437 -10.049909 -2.174781 -7.904063 -1.076294 -2.311256 -0.596004 7.375711 -7.039178 -3.406937 1.268033 -1.698380 0.484529 -5.228573 -7.237960 4.264156 -1.950065 0.598139 1.972813 12.634347 8.284318 7.718022 0.251631 -3.999566 2.625430 -7.024888 -9.346924 6.395422 1.065877 5.303430 3.707318 5.704646 -0.877007 3.144564 5.200380 -2.630637 5.613091 8.183476 2.513497 8.933449 -2.015372 2.019523 3.446103 -7.719780 6.037140 10.428988 -2.398247 -4.040371 3.722866 -1.327491 -6.620073 -3.191630 -0.306484 -1.869014 -6.630493 4.204554 6.613791 -0.652264 -7.408600 15.771123 3.097563 -16.808892 8.119934 0.125792 2.160244 10.171158 -5.453013 5.784934 3.536209 3.542537 3.754012 3.291193 9.153042 -10.565668 0.889335 -0.852805 6.081193 7.283892 -4.275067 -17.127784 4.127505 3.728430 11.568282 4.138385 11.184447 -6.029882 6.165485 -3.416115 -3.879723 -0.182643 -3.136399 6.062624 -1.963162 0.777466 -14.864858 4.944731 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.441133 0.329153 0.227168 -0.527508 -0.828267 0.333303 -0.846474 -0.530397 0.023050 -0.154781 0.412113 -0.586911 -0.498953 0.723445 -0.573830 -0.855875 -0.262200 -0.305574 -0.067158 -0.373557 -0.028784 0.115874 -0.132871 -0.049053 -0.126772 -0.120197 -0.097418 0.141152 1.158360 -0.395696 -0.751135 0.033956 0.097442 0.880643 0.302724 -0.360575 0.475012 1.170988 0.476466 -0.088550 -0.833941 -0.561614 0.372129 0.135441 -0.189669 -0.656467 -0.498242 0.382063 -1.369724 0.609938 0.518386 -0.257917 -0.215453 0.024180 0.167791 0.719589 -1.583320 1.551347 0.065889 0.388372 0.153865 -0.234437 0.136198 0.073794 0.630668 -0.454064 0.316218 0.785578 -0.755126 0.125175 -0.305554 -0.778312 1.470465 0.170398 -0.568244 -0.023273 0.185159 -0.476911 0.413260 -1.083378 -0.784975 0.079671 0.375374 0.314923 0.914929 0.146525 -0.043360 -1.154754 -0.045509 -1.253221 0.344124 -0.718124 0.552144 0.676417 -1.218690 -0.035907 0.224382 -0.310482 0.785403 0.346641 0.879281 0.040408 0.092199 -0.049648 0.163989 0.098956 0.141820 0.152803 -0.007138 -0.802338 -0.604958 0.237422 -1.663522 0.110402 -0.545227 0.737257 -0.108843 0.060815 -0.051794 -0.031473 -0.804620 -1.069971 -0.216430 -0.096493 0.896159 0.847401 -0.245528 0.519233 -0.288720 0.975042 -0.064632 -0.107471 -0.286062 0.127776 0.173301 -1.573999 -1.865837 0.332116 0.649116 -0.449025 -1.010242 -0.554847 -0.172573 -0.434126 -0.203950 0.958220 1.288056 -0.240529 -0.793383 0.973964 -0.110580 0.477784 1.709692 -0.027260 1.343258 -0.645466 0.308430 -0.041355 -0.106020 -0.423164 -1.249387 -0.125660 -0.100013 0.028556 0.383049 0.012080 -0.075694 -0.056608 -0.469248 -0.300195 -0.094470 -0.316926 -0.598343 0.888093 0.471603 0.622231 0.437578 1.259649 -0.647947 -1.343165 0.475302 0.015381 0.152734 0.333627 -0.277521 0.012777 0.592843 -0.816577 -0.424197 0.130150 0.120939 -0.417152 0.324758 1.570585 0.135795 0.203314 0.245749 0.461054 1.141833 -0.076028 0.542635 -0.916178 0.143539 0.767806 -0.249908 -1.029114 0.227741 -0.557825 0.060341 0.609943 -0.164682 0.218809 -0.254864 -0.614581 -0.304341 -0.167939 1.083764 0.310647 -0.173700 0.372219 -0.646700 -0.052234 0.309260 0.632347 0.835548 0.634294 0.605396 -0.190002 0.332752 -0.283346 1.041046 -0.186281 0.478202 0.413953 0.312928 0.621361 0.185835 0.080884 0.414618 0.574248 -0.323033 0.680309 0.331368 1.282772 -0.658000 0.263210 -0.529751 -0.431440 0.700301 1.770074 -1.111124 0.027478 0.294577 0.565473 0.456059 -1.365930 -0.179068 -0.340649 -0.393554 0.270531 0.020817 -0.051953 -0.272842 0.927817 0.153315 -0.785650 0.930489 0.108624 -0.034383 -0.005213 -0.269584 -0.568710 0.344996 -1.071951 0.204934 0.591463 0.616218 -0.398521 -0.364160 -0.168358 0.818183 -0.609882 0.360420 -0.129849 0.388033 0.971444 0.833156 0.828244 -0.139686 -0.516022 -1.089677 0.153660 -0.286650 -0.236026 0.115782 0.422564 -0.831668 0.255925 0.341230 -0.976763 +PE-benchmarks/matrix-chain-multiplication.cpp___GLOBAL__sub_I_matrix_chain_multiplication.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/snake-ladder.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 3.042747 0.374498 4.189428 -4.311578 -1.038901 1.564011 -0.045502 -2.721179 1.613199 8.703807 1.825082 -1.806744 -4.228782 5.603149 -1.998713 -4.461206 3.443983 -0.205401 2.179915 -1.987671 0.326376 1.961682 0.097734 -2.376370 2.485805 -2.472379 0.172001 3.386818 1.883875 0.451573 -3.693363 -0.566038 -0.112316 7.911811 -0.961848 0.020312 -0.134305 8.797821 -5.536751 7.735641 -7.913643 -7.655154 6.959420 1.261655 -0.302020 -4.059107 -1.193152 2.200992 -3.479635 -4.180129 1.915543 -2.241218 1.868538 -3.919760 0.310271 6.397152 -10.856033 1.305780 0.064350 -1.794443 -3.207030 -1.023695 3.621800 1.618888 -2.934219 -4.176807 2.539579 1.412718 -5.416372 1.257076 -3.695553 -7.013051 4.790456 2.464693 -3.467728 2.160400 2.364108 -6.273570 4.094270 -4.044128 -4.557655 -2.476633 1.218290 -3.086919 4.555640 2.385571 6.090997 -10.620708 2.416204 -8.070009 6.787858 -5.236060 6.988250 6.991408 -4.344801 3.222771 3.592135 5.550599 2.398965 -1.593372 8.521137 4.102994 2.494827 -0.775305 4.552986 4.333948 -5.993380 -4.607496 -4.737848 -4.837617 0.284799 -3.225915 -8.670999 -0.388704 -5.739179 0.763800 3.414646 -2.426587 -2.324832 6.255964 -12.364307 -3.104698 1.525454 -1.349475 4.528239 6.002419 0.124013 0.540744 0.890822 7.889453 -2.803185 -1.437061 -1.152346 3.126367 -2.999160 -2.964256 -3.438819 -0.371964 1.995129 -6.659985 -7.777795 -10.234329 -2.073935 3.446965 -0.659955 7.961863 12.570064 -1.509034 -5.840840 4.890122 -2.797120 0.476496 8.765001 1.493338 9.924575 -8.248043 3.036644 -3.311380 2.537547 2.872309 7.182132 -0.364440 -1.788233 3.221972 0.576748 -0.927454 3.352498 -2.158422 0.108072 -4.156964 0.754953 -3.108083 -2.812792 7.138676 -6.897996 6.375256 -3.177400 10.356503 -5.294948 -7.031845 2.997146 -8.554416 -2.509313 -5.063767 -2.482920 -1.212206 5.755547 -7.052961 -4.071568 -3.986169 -1.664277 0.532465 4.814919 -3.470387 1.173489 -1.280127 -2.030970 8.963070 4.407449 -0.204548 0.666134 -7.306321 0.271198 4.689361 -2.097054 -8.184631 1.041399 -5.747709 -0.167643 1.954824 -1.561537 3.987610 -5.396808 -4.564144 -0.125269 -1.919517 1.064537 -3.037066 -9.657468 2.115849 -0.970295 0.814344 3.933517 7.425344 6.996217 5.049117 1.210396 -1.528453 2.040990 -3.688160 -3.830211 2.433158 0.961102 3.042515 2.471301 5.463577 1.367643 1.945141 4.441046 2.573653 0.788834 6.651550 1.546478 7.636897 -0.989994 0.389625 0.861404 -4.458344 4.515213 9.223256 -2.719452 -0.512463 4.012286 1.508326 -1.779224 -5.112978 -0.017631 -3.319629 -2.173014 3.991568 3.051513 -0.998524 -3.345844 9.405223 1.725094 -12.083822 5.967922 -0.527007 1.167711 5.503457 -2.618342 1.033243 3.014788 -3.585414 4.018201 2.294476 5.883050 -6.508823 1.175730 -0.665363 5.449397 3.840020 0.044159 -11.689680 1.792875 2.140840 7.546012 4.963879 8.011015 -3.836284 -0.238783 -1.388850 -4.148437 -2.009846 -1.906222 4.483582 -2.261951 0.419320 -8.595118 0.177634 +PE-benchmarks/snake-ladder.cpp__std::queue > >::queue >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/snake-ladder.cpp__std::queue > >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/snake-ladder.cpp__std::queue > >::front() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/snake-ladder.cpp__std::queue > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/snake-ladder.cpp__std::queue > >::~queue() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/snake-ladder.cpp__main = -0.327528 -0.129253 1.394375 -2.130320 -1.854834 0.355175 -0.009311 -0.933064 0.463624 -0.118103 1.602724 -1.868933 -2.489448 2.595911 -0.178521 -2.899355 0.447319 0.787121 -0.351816 -0.624812 -0.007011 0.691572 -0.253089 -0.516954 0.750965 -0.867255 -0.164409 2.575195 3.146003 -0.213005 -1.421722 -0.115330 0.128465 3.389082 -0.079382 0.469912 0.836256 4.577812 -1.740226 3.002178 -2.405075 -2.070604 3.154667 0.396815 -1.412181 -2.257171 -2.348099 1.307603 -4.411255 -0.635647 1.805101 -0.254464 0.688869 -1.201666 1.086572 3.429081 -4.755804 1.835250 0.452897 -0.453044 -0.600832 -0.613339 -0.428934 0.238330 -1.087458 -1.835251 0.660316 0.496762 -1.779671 0.090445 -0.980226 -3.179330 5.076702 0.746520 -1.624350 1.131669 1.337538 -2.502705 1.901583 -0.431984 -2.427992 -0.588181 0.873510 -0.554374 3.163570 -0.000369 1.421862 -4.558818 -0.983626 -4.089952 2.352432 -3.223497 2.286340 3.185633 -3.593126 1.529900 1.015192 0.322536 0.708140 0.367067 3.201405 0.784413 1.177803 0.053531 2.126624 0.935036 -1.681598 -2.104370 -2.153697 -2.692819 -0.280955 -1.378568 -5.675092 0.112279 -1.929360 1.063791 0.752500 -0.181461 -0.403586 2.025210 -2.236737 0.639456 0.825414 -0.654315 1.890481 3.598613 -0.550957 0.335850 -0.380421 3.426569 -0.843042 0.654509 -1.200602 1.276852 0.249648 -2.830753 -2.781805 0.196674 1.214537 -1.816057 -3.431752 -2.842492 -0.853745 0.901144 -0.554122 2.010650 5.503237 -1.069358 -2.643519 2.999451 0.237276 1.955391 3.260310 0.612366 4.588751 -2.735068 0.905141 -1.848250 -0.117956 0.335408 1.217624 0.113784 -1.517032 1.207131 0.298085 -2.262179 3.563364 -0.942527 -0.694945 -0.875113 0.225022 -1.654533 -2.573114 4.411911 -0.464385 3.291669 -0.407982 4.574198 -2.116431 -3.798916 1.644671 -0.447373 -0.248531 -2.330265 -1.324014 0.587097 1.804201 -2.514499 -1.935715 -1.727104 -0.045438 -0.565135 1.521762 1.450006 0.037302 -0.249041 0.388005 1.508303 2.991343 -0.045369 0.448234 -3.807187 0.701897 1.862983 -1.072395 -3.503874 1.058019 -1.532053 -0.267502 0.758165 -0.290006 1.236696 -1.662900 -1.856405 -0.472067 -0.871451 1.240935 -0.203394 -4.802503 0.987467 -0.181849 0.069928 1.973545 2.566921 4.356144 2.046081 1.344946 0.228905 0.747685 -0.533877 -0.897129 0.506083 0.373652 1.956449 1.205828 2.798693 1.075447 0.381580 1.996071 1.690795 0.391962 2.644158 2.257583 4.377380 0.836744 -0.644204 0.202768 -1.309121 2.353253 4.959229 -1.327181 0.332324 1.869721 2.336967 -0.278469 -4.200404 -0.665778 -1.310071 -1.383596 3.118085 -0.403941 -0.921034 -0.750612 4.009443 0.292260 -4.574622 2.004114 0.141259 0.881483 1.050284 -0.774231 -0.316578 1.792225 -2.670443 2.180393 1.118463 2.075831 -2.341188 -0.560912 -0.304328 1.687823 1.373959 0.759176 -3.628051 0.437616 1.206455 3.640595 2.261074 2.096292 -1.397060 -1.120701 -0.184337 -1.865784 -0.732182 -0.914352 0.925595 -2.122190 0.317318 -3.098462 -2.276687 +PE-benchmarks/snake-ladder.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/snake-ladder.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/snake-ladder.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/snake-ladder.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_destroy_nodes(queueEntry**, queueEntry**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_map(queueEntry**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_deallocate_node(queueEntry*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/snake-ladder.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::deallocate(std::allocator&, queueEntry**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/snake-ladder.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::deallocate(queueEntry**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/snake-ladder.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/snake-ladder.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/snake-ladder.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_create_nodes(queueEntry**, queueEntry**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_M_set_node(queueEntry**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/snake-ladder.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/snake-ladder.cpp__std::deque >::push_back(queueEntry const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::construct(std::allocator&, queueEntry*, queueEntry const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/snake-ladder.cpp__void std::deque >::_M_push_back_aux(queueEntry const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::construct(queueEntry*, queueEntry const&) = 0.547881 0.551573 0.634924 -0.872778 -1.339760 0.327998 -0.219169 -0.510440 0.030584 0.315767 0.664665 -0.418206 -0.162580 1.048299 -0.423555 -0.556551 -0.323896 -1.281790 -0.290396 -0.308276 0.004250 0.459056 -0.249488 0.291388 -0.153566 -0.009093 -0.227617 0.298251 0.347897 -0.740716 -0.729560 -0.118099 -0.130186 0.941322 0.227756 -0.747585 0.414618 1.686903 -0.514540 -0.065093 -0.728840 -0.798791 0.376215 -0.017397 -0.240535 -0.860538 -0.733458 0.650560 -0.071988 0.053577 0.949457 0.044164 -0.149498 0.113256 0.336829 0.476052 -1.645645 0.962104 0.298234 0.218435 -0.039629 -0.205189 0.237818 0.292006 -0.002675 -0.515571 0.713749 0.463508 -0.270488 -0.104912 -0.060485 -1.256632 1.231431 0.299197 -0.272379 0.101807 0.600113 -1.106305 1.059197 -0.805770 -1.206780 0.180774 -0.053967 -0.657423 1.182249 -0.363606 0.164262 -1.382489 0.457944 -1.505861 0.204833 -0.947365 0.228906 0.927384 -0.851487 0.016062 0.470791 0.572229 1.053713 -0.048992 1.094857 0.360197 0.541103 0.469578 0.522014 0.413980 -0.343975 0.069612 -0.889542 -1.315314 -0.066969 -0.113931 -1.560728 0.511484 0.164292 -0.481598 -0.060050 -0.170119 0.044453 1.048533 -0.872336 -0.439478 0.247585 -0.111740 0.192173 1.217107 -0.552703 0.366594 -0.544598 1.115216 -0.464449 0.640978 0.007706 0.228464 -0.225423 -1.044650 -1.565285 0.501410 0.602994 -0.648146 -0.918986 -0.977029 0.134351 -0.303249 -0.472712 1.268826 1.895214 -0.724785 -1.066218 1.314802 0.960718 -0.102651 1.206660 -0.099426 1.489709 -0.404465 -0.303532 -0.478186 -0.560616 -0.476669 -0.675902 0.408300 0.258867 0.339897 0.300878 -0.621018 1.362949 -0.180483 -0.800160 0.590835 0.381690 -0.507054 -0.941724 1.038862 1.108838 0.690654 0.954978 1.389884 -0.356294 -0.865180 0.512122 0.089466 0.335601 -0.590033 -0.438819 0.226724 0.696273 -0.268508 -0.283677 -0.350805 -0.410950 -0.708925 0.057965 0.751566 0.706293 0.435537 0.578091 -0.032676 1.819404 0.325198 0.355705 -1.223395 0.417863 0.680294 -0.268685 -0.912129 -0.052878 -0.654097 0.092191 0.416596 -0.274944 0.511081 -0.485246 -0.649742 -0.121177 -0.146988 0.513018 0.495144 -1.229078 0.242156 -0.679673 0.715780 0.269981 0.588584 1.163823 1.180702 1.216924 -0.037525 0.206060 0.189143 0.272541 -0.374007 0.210826 0.576199 0.574679 1.004170 0.554377 0.339957 0.784929 0.705343 -0.051687 0.951828 0.054547 1.815554 -0.352876 0.033108 -0.684807 0.050977 0.860248 2.002004 -0.213222 0.134692 0.363633 0.659392 -0.280187 -1.184358 0.130888 -0.479375 0.231021 0.062500 0.365331 -0.189009 -0.177167 0.982743 -0.045741 -1.262669 0.504393 0.034827 0.402041 0.572416 0.025027 -0.000360 0.253212 -1.126062 0.902314 0.977652 0.643958 -0.696903 -0.385635 0.058357 0.895162 -0.823035 0.863984 -1.261115 0.844954 0.660617 0.633216 0.306182 0.525727 -1.023867 -0.847352 0.768947 -0.353260 -0.299331 0.694809 0.793586 -1.291030 0.500225 -0.446045 -0.863079 +PE-benchmarks/snake-ladder.cpp__queueEntry const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/snake-ladder.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/snake-ladder.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/snake-ladder.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/snake-ladder.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/snake-ladder.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/snake-ladder.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy(queueEntry**, queueEntry**, queueEntry**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::copy_backward(queueEntry**, queueEntry**, queueEntry**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a(queueEntry**, queueEntry**, queueEntry**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__miter_base(queueEntry**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_wrap(queueEntry** const&, queueEntry**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a1(queueEntry**, queueEntry**, queueEntry**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__niter_base(queueEntry**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_a2(queueEntry**, queueEntry**, queueEntry**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move::__copy_m(queueEntry* const*, queueEntry* const*, queueEntry**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a(queueEntry**, queueEntry**, queueEntry**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a1(queueEntry**, queueEntry**, queueEntry**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward_a2(queueEntry**, queueEntry**, queueEntry**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/snake-ladder.cpp__queueEntry** std::__copy_move_backward::__copy_move_b(queueEntry* const*, queueEntry* const*, queueEntry**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/snake-ladder.cpp__std::deque >::empty() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/snake-ladder.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/snake-ladder.cpp__std::deque >::front() = 0.199628 0.265665 0.079470 -0.317338 -0.590034 0.046303 -0.209447 -0.169693 -0.045295 -0.008585 0.210602 -0.380828 -0.314136 0.590605 -0.228220 -0.434546 -0.218633 -0.362239 -0.154715 -0.007881 -0.018145 0.250812 -0.057252 0.121044 -0.008408 0.119972 -0.217811 0.022652 0.509506 -0.423650 -0.373488 0.000548 0.102938 0.390620 0.026732 -0.185872 0.199284 0.714895 0.073722 0.160965 -0.462019 -0.304248 0.142384 0.029462 -0.039691 -0.535465 -0.307624 0.340191 -0.413749 0.086155 0.347795 0.082424 -0.323515 0.006670 0.242220 0.343791 -0.883757 0.863047 0.141850 0.272451 0.157689 -0.071052 -0.038253 -0.025167 0.230231 -0.263305 0.027187 0.237429 -0.383136 0.024301 -0.059014 -0.386890 0.754616 0.110151 -0.327230 0.096294 0.155072 -0.242871 0.362089 -0.836790 -0.444111 0.121205 0.167885 0.231664 0.478035 0.082888 -0.097390 -0.621425 0.055204 -0.614256 0.172893 -0.491340 0.141696 0.476049 -0.466078 0.011883 0.097955 -0.246774 0.597479 0.290499 0.474872 0.096828 0.191681 0.094770 0.010012 0.140979 -0.048432 0.046837 -0.138396 -0.569625 -0.177527 0.211133 -0.786378 0.125122 0.007836 0.369094 0.095787 0.047451 0.092280 -0.068841 -0.480690 -0.499214 0.025632 -0.040612 0.357919 0.579547 -0.208305 0.171052 -0.356478 0.512907 -0.026489 0.211252 -0.013396 0.072427 -0.023144 -0.824005 -0.832678 0.134981 0.201970 -0.204840 -0.401750 -0.469106 0.080189 -0.223162 -0.239111 0.422246 0.789117 -0.243915 -0.379062 0.662005 0.197080 0.223037 0.625415 -0.102682 0.738660 -0.205180 -0.033473 0.067399 -0.203891 -0.235398 -0.422516 0.136121 -0.132811 -0.059192 0.145112 -0.466572 0.019674 0.017317 -0.319345 -0.071683 -0.007807 -0.212417 -0.335894 0.477907 0.250892 0.361219 0.196953 0.595166 -0.176878 -0.542123 0.330674 -0.007039 0.143513 -0.064208 -0.241179 0.124091 0.244297 -0.438484 -0.081379 0.048460 -0.064095 -0.422581 0.041512 0.411395 0.115345 0.138799 0.306119 0.233634 0.638852 -0.014416 0.292001 -0.602427 0.137876 0.203923 -0.158173 -0.620166 0.170091 -0.303751 0.017955 0.401671 -0.200272 -0.019767 -0.028199 -0.332044 -0.061231 -0.216263 0.459068 0.144003 0.096270 0.043988 -0.330899 0.239779 0.160730 0.291334 0.461986 0.406982 0.427292 0.052440 0.124787 -0.004110 0.420817 -0.077345 0.082447 0.118868 0.263433 0.237962 0.225587 0.026892 0.342872 0.254421 -0.270843 0.434931 0.160794 0.774686 -0.239640 -0.011036 -0.222916 -0.132379 0.364499 0.916210 -0.603722 0.039280 0.203472 0.221228 0.114228 -0.400829 -0.062329 -0.229684 -0.328959 0.239212 -0.064146 -0.052918 0.008806 0.399205 -0.096873 -0.446308 0.371273 0.011023 0.109718 0.003683 0.037540 -0.164522 0.230892 -0.622664 0.108048 0.389339 0.340989 -0.210704 -0.345996 -0.080668 0.363935 -0.193515 0.357386 -0.271866 0.141175 0.530639 0.391735 0.203658 -0.066879 -0.292331 -0.616988 0.232385 -0.042944 -0.197787 0.013879 0.207210 -0.346646 0.044346 0.106504 -0.528008 +PE-benchmarks/snake-ladder.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/snake-ladder.cpp__std::deque >::pop_front() = 0.880981 -1.280698 1.742197 -1.628192 -1.988641 1.847942 -2.764380 -1.087881 0.757114 0.381865 0.700140 0.024413 -0.259258 1.661830 -0.360028 -2.462659 -0.109345 -0.128710 0.808029 -0.906367 0.195661 0.326726 -0.317801 0.663113 -0.597971 -1.490367 0.098358 0.806882 1.440889 0.113556 -1.460498 -0.509468 -1.821587 2.236333 0.685882 0.017077 1.171933 4.163433 0.952774 1.388976 -0.942911 -2.411980 0.450377 0.121466 -0.468948 1.612735 -0.910068 0.644787 -2.419926 0.247921 2.306906 -0.537761 0.770133 0.646036 0.733833 -0.170418 -2.905774 0.561704 -0.611409 0.057003 -0.188921 -0.684781 0.220389 1.474205 -0.934605 -0.741521 2.143987 2.397281 -1.202551 -0.555136 0.136621 -2.545874 3.212771 1.391866 -1.015767 -0.015199 2.975283 -1.287132 1.835050 0.097069 -3.614814 -0.157326 -1.151720 -3.561564 3.448741 -0.419935 2.352929 -3.403755 3.152203 -3.813634 1.565748 -1.597881 1.261576 2.580377 -2.720828 0.338175 2.318186 4.316900 1.342101 -1.218683 2.801245 0.986885 -1.080579 1.404738 2.093036 -0.270947 -0.901382 0.022668 -1.968240 -2.470003 -0.414016 -2.478205 -3.723264 0.475945 0.029599 1.167233 -0.424324 0.940726 -1.086040 1.423956 -3.879910 -0.524402 -0.167992 -0.395578 1.095652 1.162671 -1.475638 1.127579 0.195816 3.340635 -2.624538 -0.459542 -0.256764 0.652384 -0.059543 1.986894 -3.561512 1.435554 1.993077 -1.383406 -2.702648 -1.622009 -1.055327 1.570152 -0.105228 5.594959 4.594626 -1.264990 -1.635141 2.386326 -1.293705 0.436357 3.710227 0.561049 1.854205 -0.899623 -0.874950 -2.507967 -0.703958 -0.804493 -2.386817 1.331131 1.373514 2.029009 0.719081 3.002114 3.602420 -1.564554 -2.049263 -2.289481 0.783100 -1.458479 -1.344876 2.541051 -0.663737 0.955362 2.297178 3.649523 -0.680898 -1.960843 0.794050 -1.947223 -0.129296 -1.379367 -0.483237 -1.060620 1.532937 -1.782343 -1.419592 -1.157239 -1.059740 -0.495430 -0.082496 4.168930 1.556764 1.392459 1.025599 3.034599 4.242656 2.151437 -0.918990 -2.680037 0.575356 1.763935 -2.120630 0.722350 -0.027162 -1.067883 0.535554 0.554627 0.054340 1.232101 -2.872299 -1.679022 -2.485283 0.857723 1.811669 1.679490 -5.541441 0.534469 0.876149 0.942805 2.013632 0.863616 2.981215 2.567659 3.094569 -0.217513 0.697741 0.859549 0.597395 -0.679241 1.330410 2.522207 0.571440 2.769312 1.056887 0.868514 1.494412 2.674135 1.305266 1.622169 -0.104573 4.188019 0.018951 0.197261 -1.724712 0.171079 1.866911 4.595561 -1.731151 2.704871 1.230968 1.947980 -0.166089 -3.598450 0.839517 -1.438601 1.872167 -1.032881 0.563489 0.307748 -1.333863 1.861279 0.801372 -3.287607 1.244571 0.087810 0.711728 2.777061 -0.230006 -0.179407 -0.388861 -3.332664 3.105616 2.021541 0.693332 -1.759623 1.820993 0.031685 1.669525 -1.364785 1.866272 0.457244 2.205273 0.778860 1.560121 1.999215 0.511166 -2.084177 -1.961618 1.159924 -3.311312 -0.727434 1.509518 1.240823 -1.648622 1.523609 -1.392442 -3.462690 +PE-benchmarks/snake-ladder.cpp__void std::allocator_traits >::destroy(std::allocator&, queueEntry*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/snake-ladder.cpp__std::deque >::_M_pop_front_aux() = 1.011918 -1.330283 1.916193 -1.876801 -2.553234 2.538157 -3.870120 -2.000968 0.761358 -0.589072 1.144993 0.075931 0.832530 1.730531 -0.601438 -2.440841 -0.766384 -0.031330 0.621622 -1.163599 0.045634 0.054436 -1.091323 0.979544 -1.237446 -1.755292 0.664456 0.597109 0.984029 0.338463 -2.051731 -0.843496 -2.299650 2.892349 1.648708 0.020856 1.678934 4.835621 1.498444 0.759036 -0.609148 -2.703201 -0.117164 0.145771 -0.742311 2.375967 -1.451582 0.443454 -2.552329 1.178709 2.937614 -0.979907 0.772744 1.427452 1.116273 -0.739567 -2.825194 0.485005 -0.377058 0.027228 -0.493830 -1.150116 0.390101 1.701625 -1.383897 -0.612561 3.120516 3.620205 -0.409619 -0.532275 0.189484 -3.925597 3.961082 1.682201 -1.072865 -0.425662 3.342495 -1.968252 2.127959 1.252986 -4.496184 0.056046 -1.272014 -4.554293 4.194179 -0.679995 2.684633 -3.669218 3.811349 -4.778075 0.943583 -1.662510 1.299764 2.738124 -3.695931 -0.129463 2.838298 5.918098 1.529351 -1.392631 2.866623 1.030640 -1.955680 1.514335 2.866437 -0.439835 -0.453876 0.219264 -2.230411 -3.112218 -0.581300 -2.967003 -4.768822 0.706417 -0.090791 0.820112 -1.950579 1.546997 -1.129231 2.049781 -4.085743 -0.807022 -0.421345 -0.430704 1.219431 1.282974 -1.819345 1.769480 0.056983 3.528765 -3.039995 -0.774944 -0.840799 0.592232 -0.223006 2.443226 -5.343022 2.021705 2.955403 -1.708266 -3.230501 -1.328932 -1.568160 2.078691 -0.021085 6.743734 5.210943 -1.916343 -2.168788 2.877962 -0.702888 0.102406 4.860432 0.867851 2.110565 -0.876880 -0.703012 -3.152457 -1.075177 -1.771622 -4.957688 1.407574 1.945495 2.487767 0.921911 3.791726 5.873750 -1.922909 -2.734653 -2.014228 1.171378 -1.434538 -1.782456 3.200877 0.200157 0.972316 3.299528 4.080785 -1.205022 -2.011774 0.546338 -1.808355 0.055476 -1.288917 -0.308460 -1.569530 2.453043 -1.498057 -1.645366 -0.684669 -1.379392 -0.616255 -0.210156 6.589397 1.767329 1.705620 1.315770 2.482430 5.894296 2.678954 -1.022415 -2.675473 0.882151 2.468258 -2.523669 1.480804 -0.336559 -1.308723 0.498177 -0.376422 0.291348 1.593860 -3.692876 -1.635865 -3.191400 1.419474 2.523105 2.551340 -6.696576 1.107983 0.319309 1.066194 2.235292 0.595836 3.609595 3.529473 4.294743 -0.851807 0.909577 0.797317 1.047523 -0.970022 2.023872 3.508876 0.549466 3.651708 1.211913 1.118610 1.126914 3.148142 2.346956 1.914252 0.000433 5.357248 0.082385 0.738510 -2.503953 0.419105 2.297271 5.863185 -1.842579 3.511282 0.991792 2.503159 -0.568987 -4.964304 0.981803 -1.270454 2.234057 -2.061934 0.732434 0.282756 -1.750238 2.435276 1.037504 -3.304606 0.803265 0.309656 0.632255 3.261274 -0.472718 -0.305003 -0.507801 -3.550325 4.313338 2.459485 0.741524 -2.068704 2.054159 0.117587 1.980844 -2.285275 2.150409 1.553060 3.853309 0.885509 1.648768 2.384087 0.001865 -2.792736 -1.889272 1.722177 -3.940212 -0.672367 2.531488 2.113348 -2.267604 2.166899 -1.540438 -4.869814 +PE-benchmarks/snake-ladder.cpp__void __gnu_cxx::new_allocator::destroy(queueEntry*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/snake-ladder.cpp___GLOBAL__sub_I_snake_ladder.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/floyd-warshall.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 3.528608 -0.205234 3.597851 -1.876507 0.932462 1.645840 2.208669 -3.284158 0.513763 10.922788 1.612783 -1.222899 -2.943991 3.487757 -1.044147 -3.285170 3.674450 2.949392 0.855792 -2.036049 -1.410919 0.773204 -0.930988 -4.361529 3.374523 -2.576919 2.234138 3.824837 -2.399290 3.657092 -2.493969 -1.004742 -0.017691 8.438522 -0.174962 1.665257 -1.066519 7.043874 -8.330842 8.410602 -7.552963 -8.958788 8.581228 1.179290 1.440416 -0.932947 0.611364 2.584861 -2.058596 -6.107608 0.431694 -3.003794 2.912603 -5.338092 -0.184907 6.486068 -8.875992 -1.604061 0.525547 -4.652484 -7.652141 -1.460289 4.481251 1.158330 -5.395287 -5.150795 2.011062 1.660485 -2.778601 2.093525 -5.853729 -8.915813 2.648104 1.499191 -2.755811 1.720254 -0.071982 -5.161919 3.326837 0.459363 -3.339100 -3.733707 2.091224 -3.895732 2.570097 4.537260 7.653043 -10.889540 2.677678 -8.321724 7.124516 -3.882605 8.223226 6.574872 -3.224617 3.979457 3.376659 7.812213 -0.304849 -1.843931 7.045551 2.916717 2.199673 -1.709489 4.559851 5.118608 -7.808749 -7.421791 -5.397389 -3.694787 2.023521 -3.562232 -6.176797 -0.347588 -7.487066 1.348627 2.564550 -2.269833 -2.276376 7.448654 -14.016203 -0.934307 2.252999 -1.448398 6.251470 3.911273 0.758253 0.978552 1.707723 6.125880 -2.050110 -2.966125 -2.620214 4.162796 -4.176467 -0.927289 -1.195671 0.271497 2.898283 -7.054043 -7.918918 -11.009003 -2.500975 6.946846 -1.243542 6.631859 11.360850 -1.822275 -4.990770 2.723232 -4.598315 -0.185858 7.101509 2.418141 9.366079 -9.996049 5.453684 -2.252316 4.536394 4.298221 7.632885 -2.066389 -4.260004 4.801739 0.050206 0.893758 6.807555 -1.812179 1.446262 -4.588206 1.773656 -1.272928 -0.290189 7.496366 -9.494134 5.939515 -4.963848 9.884005 -7.462859 -4.469976 2.161611 -10.897650 -4.165696 -5.982962 -2.195391 -2.033537 6.712673 -7.233279 -4.572650 -3.956601 -1.995646 2.155594 6.719430 -4.853877 -0.581098 -2.497236 -3.811706 8.327321 1.889363 -0.609004 -0.999330 -5.970459 -0.087237 4.130142 -2.153603 -7.338026 -0.642335 -5.473039 -1.039549 0.086043 0.039960 4.927490 -5.592600 -2.683727 1.401625 -1.155217 -0.502190 -3.879657 -7.986136 2.361780 -0.442237 -0.089047 3.584486 8.711268 6.577307 4.888037 -0.079461 -1.873639 1.892249 -5.117214 -6.831734 4.294527 0.657349 4.817339 2.509127 3.946506 0.657335 1.750977 2.305752 0.017654 2.617724 6.748829 3.157329 6.530551 -1.749071 1.464805 2.812441 -4.265180 3.880756 5.540959 -3.290607 -1.445858 3.166934 -0.152510 -3.767150 -1.431811 -0.777551 -2.621214 -3.048459 2.493865 3.811652 -1.614077 -4.277098 11.479896 1.713262 -12.474743 5.482763 -0.233022 1.973712 6.849047 -3.683680 3.049028 2.856296 0.988594 4.408192 1.577555 6.218335 -7.374047 2.503322 -0.519727 5.142207 6.347741 -2.539111 -12.285799 2.074728 0.715276 7.746149 3.985364 8.133159 -3.747913 3.951101 -3.733429 -5.009231 -0.143184 -2.021773 4.985679 0.834982 0.489739 -12.581897 2.205268 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.270184 0.705388 1.624807 -1.215282 -0.872279 0.802964 0.182698 -1.457411 0.190241 4.393085 0.639589 -0.690889 -2.275963 1.692315 -0.978102 -2.066331 0.653063 -0.109039 0.326294 -1.484621 -0.477450 0.721494 -0.272796 -1.051154 1.028068 -1.119550 0.356990 1.357854 0.201536 0.490091 -0.956153 -0.376072 0.007967 3.349854 -0.026980 0.430861 -0.121544 3.397953 -2.347680 2.694244 -3.879514 -4.111885 2.943507 0.511153 0.558094 -1.255931 0.568662 1.260546 -1.978733 -1.256635 0.615601 -0.980630 0.633717 -1.565875 0.321354 2.417651 -4.597893 1.356446 -0.051325 -1.635346 -2.277703 -0.494320 1.447158 0.635898 -0.765132 -2.017789 0.627422 1.129975 -1.931682 0.922112 -1.632930 -2.973252 1.577399 0.680979 -1.480131 0.680645 0.359021 -1.545715 1.525951 -1.987212 -1.825788 -1.190814 1.192648 -0.960197 1.353874 1.983050 2.355618 -4.531693 0.804557 -3.486662 2.846239 -1.567273 3.000215 2.577338 -1.293606 1.429715 1.430417 1.389648 0.939381 -0.817331 3.010855 0.857101 1.533719 0.119520 1.162392 1.880220 -2.680457 -2.113281 -1.977277 -2.069402 0.247761 -0.843079 -2.642792 -0.200963 -2.386028 1.168021 1.398522 -0.979585 -0.838247 2.218335 -5.879773 -1.659364 0.607474 -0.497989 2.811366 1.701028 0.116994 0.811481 0.637387 2.977256 -1.133928 -0.631837 -0.849174 1.486999 -0.763639 -1.369147 -2.136103 0.338490 1.152545 -2.503623 -3.083566 -4.044081 -1.010955 1.870881 -0.547405 3.195368 5.094276 -1.002962 -2.596998 1.969667 -2.223739 0.215062 3.366065 0.762330 3.725003 -3.400367 1.487317 -1.025908 1.149527 1.370310 3.178188 -0.329418 -1.453177 1.581544 0.656020 0.806336 0.201870 -0.742717 -0.237282 -2.511118 0.459340 -0.983333 -0.186378 2.519009 -3.142030 2.633824 -1.424571 4.122155 -2.996569 -2.854906 1.017871 -4.318185 -1.180937 -1.559944 -1.117990 -0.375688 2.277670 -3.335144 -1.631464 -1.637615 -0.769542 0.005777 2.101216 -1.434066 0.165142 -0.457316 -0.797242 4.172860 1.724900 0.002522 -0.194183 -2.771545 0.204225 1.580759 -0.436116 -3.511369 0.017036 -2.116759 -0.302792 1.432820 -0.295091 1.760507 -1.401935 -1.082276 0.143254 -0.973210 0.655753 -0.967833 -2.523873 0.938565 -0.503592 0.232512 1.303952 3.128281 2.671448 2.176044 0.626985 -0.338005 0.796261 -1.958445 -0.610325 1.222660 0.944318 1.261706 1.226161 1.901209 0.657009 0.702444 1.735183 0.953933 -0.026971 2.849064 0.339008 3.310262 -2.003943 0.775578 0.280801 -1.259485 1.542285 3.162401 -2.202963 -0.446011 1.509358 0.343962 -0.502855 -1.168945 -0.242278 -1.573272 -0.740220 1.372095 1.791036 -0.793774 -1.445359 4.248380 0.659522 -4.619189 2.885493 -0.047374 0.626202 1.792414 -1.260143 -0.027161 1.366556 -1.208814 1.394688 1.322289 2.430353 -2.910753 0.386677 -0.317307 2.526780 1.634768 -0.126581 -4.689125 -0.013282 1.117653 3.152761 1.780617 3.103107 -1.705673 -0.365596 -0.658462 -1.875739 -0.598605 -0.307939 1.767228 -0.294166 0.669067 -3.373891 -0.110022 +PE-benchmarks/floyd-warshall.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/floyd-warshall.cpp___GLOBAL__sub_I_floyd_warshall.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/optimal-binary-search-tree.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/optimal-binary-search-tree.cpp__optimalSearchTree(int*, int*, int) = 5.307529 0.833728 3.051905 -4.435232 0.529207 2.210204 3.175584 -5.119592 0.439094 14.376839 3.357979 -2.770023 -4.013254 5.583516 -1.502734 -5.122886 5.890777 3.275424 0.963185 -2.996060 -1.559145 1.437610 -0.997853 -6.266028 3.751718 -3.813172 1.776918 4.201019 -2.046867 3.356291 -4.605202 -0.944950 0.641078 11.398028 0.088747 0.731003 -2.461347 8.839325 -10.257089 11.214970 -11.425089 -10.052432 11.075560 2.150897 1.871253 -4.800312 -0.946977 2.690188 1.003350 -7.826897 0.138084 -5.018682 4.105889 -6.756762 -0.702076 10.556077 -10.119978 -1.764736 1.178172 -6.330507 -8.705562 -1.028900 6.916205 2.620908 -7.277127 -7.419100 3.204600 2.926619 -3.679012 2.548290 -8.980771 -13.639103 3.769029 3.370589 -4.237053 1.528902 -1.807063 -8.779629 4.214850 -0.203734 -4.184735 -4.274139 3.660819 -2.474774 1.979178 5.383232 11.108281 -15.253026 2.245615 -11.809253 9.273028 -5.117612 11.961083 8.224889 -2.267291 4.099741 3.901769 7.677539 1.065144 -1.093136 9.896009 4.016925 3.816047 -3.731201 5.991960 7.692084 -9.131024 -9.672333 -5.070827 -4.707513 2.208277 -2.829175 -9.456982 0.670601 -11.423609 0.228888 3.007607 -3.229160 -2.199500 11.206196 -15.924231 -4.924545 3.071440 -2.242508 8.807161 7.112650 1.899075 1.609856 1.156652 8.117698 -1.301079 -2.944520 -3.737612 5.714298 -6.616709 -4.222070 -2.062420 0.662190 4.251868 -11.042631 -10.718585 -13.604376 -3.389605 8.096925 -2.440854 9.062150 15.387908 -3.263272 -7.336990 3.660487 -3.908672 -1.352697 9.898457 2.466195 15.671625 -15.153232 9.047915 -2.348096 6.964881 5.472970 12.291777 -3.525996 -5.956445 5.424619 -0.764011 -2.428626 8.872718 -2.558791 2.048123 -2.432526 1.956521 -0.089964 -1.360695 9.200525 -11.512235 9.237248 -6.445593 13.693980 -10.663899 -6.601889 3.814868 -11.489237 -6.364079 -6.482983 -1.264480 -2.018246 9.914718 -8.088149 -5.682196 -4.138728 -3.999255 2.586432 9.558654 -6.516142 -0.757672 -3.301310 -6.317051 11.110641 3.340293 -0.770971 -0.442245 -7.817651 0.870172 6.129357 -2.501709 -10.853143 -1.599921 -8.139866 -1.157319 -0.873432 -0.801961 7.323001 -6.814537 -4.168256 1.749988 -1.853418 0.419836 -5.749016 -8.695347 4.022367 -1.897107 0.031542 2.310688 12.768022 8.291839 7.277120 -0.220633 -4.406816 2.787993 -7.429122 -9.199337 5.956819 0.985559 4.882115 3.699461 6.202144 -0.594280 2.895588 5.553137 -1.591374 4.270494 8.600742 2.627726 8.898653 -2.515828 1.830628 3.569147 -8.207442 5.975144 10.403649 -3.007353 -3.985180 4.187405 -0.661143 -6.044869 -3.337155 -0.732356 -2.826786 -6.125548 4.815368 6.237592 -1.225404 -7.149828 16.178417 3.227650 -17.300133 8.533725 -0.121163 2.252367 9.750702 -5.649959 4.946773 4.041694 2.098827 4.075543 2.808841 9.198281 -10.123799 0.640629 -0.965310 6.560367 7.273635 -4.372327 -17.637620 3.261839 3.533176 12.230110 5.320586 11.930220 -5.583773 5.814456 -4.065447 -4.231363 -0.442609 -3.441602 6.459477 -2.083173 0.452030 -15.423001 5.130799 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 0.582372 0.392772 0.672235 -1.431183 -0.516555 0.064105 1.113431 -0.625737 0.100543 1.843132 0.878500 -0.782796 -1.155553 1.746215 -0.159614 -1.064911 0.793137 -0.592317 -0.282465 -0.035337 -0.005950 0.750799 -0.151707 -0.798895 0.745294 -0.102567 -0.051364 1.122457 0.303419 -0.316244 -1.012499 -0.154532 0.210897 2.021296 -0.237180 0.003482 -0.262239 2.179901 -2.438138 2.110486 -2.261302 -1.679828 2.179528 0.195186 -0.282154 -2.183727 -0.813513 0.901829 -0.179714 -1.592795 0.535563 -0.343755 0.343710 -1.275528 0.232333 2.181454 -2.654304 0.332561 0.562518 -0.430064 -0.996826 -0.300208 0.958891 0.165748 -1.221872 -1.381929 0.423102 -0.398313 -0.957568 0.217308 -1.213118 -2.259258 1.360624 0.605420 -0.763573 0.602728 -0.119271 -2.204335 1.256925 -0.800268 -0.927168 -0.497867 0.529236 -0.375365 1.015651 0.306642 1.198815 -2.827704 -0.092494 -2.188991 1.357109 -1.632655 1.606022 1.796184 -0.902479 0.796664 0.404460 0.848087 0.681072 -0.108325 1.887267 0.936779 1.384308 -0.411311 1.263139 1.388376 -1.696387 -1.560152 -1.331073 -1.487449 0.411774 -0.623873 -2.560954 0.285277 -1.336188 -0.631634 0.828201 -0.815302 -0.224382 1.938611 -2.363674 -0.227159 0.745140 -0.356342 0.992965 2.170623 -0.007726 -0.060072 -0.322191 1.637274 -0.137897 0.590876 -0.478126 0.941280 -1.097501 -1.568546 -0.320127 -0.054867 0.431281 -1.682829 -1.888545 -2.862757 -0.155729 0.620685 -0.643295 1.099953 3.075540 -0.704887 -1.806865 1.354576 0.497886 0.100843 1.420938 0.091879 2.993160 -2.211943 1.031610 -0.425921 0.547210 0.611926 2.201364 -0.251186 -1.135961 0.619053 -0.480225 -2.259663 1.814350 -0.119155 0.142715 -0.001767 0.306448 -0.853129 -1.102942 2.171574 -1.205007 2.047178 -0.923608 2.372884 -1.546555 -1.332527 1.028985 -1.558426 -0.594660 -1.880981 -0.989615 0.254729 1.485364 -1.363922 -0.838967 -1.197518 -0.398899 -0.216191 1.443353 -1.879682 0.030405 -0.519621 -0.292209 1.157692 1.060304 -0.424255 0.434064 -1.843336 0.438646 1.216793 -0.231239 -2.616850 0.076853 -1.518087 -0.267241 0.390562 -0.381528 1.085560 -0.941337 -1.071335 0.727880 -0.581842 -0.040876 -0.881623 -2.270839 0.429679 -0.658647 0.419095 0.651390 2.218976 1.753050 1.346485 0.213446 -0.381406 0.450638 -0.861352 -1.776120 0.531487 -0.280534 0.619976 0.976411 1.233719 0.476125 0.417077 1.420307 0.400345 0.056035 1.826735 0.980051 2.004684 0.278032 -0.319313 0.632820 -1.177421 1.146129 2.296275 -0.171615 -0.516121 0.997635 0.395225 -1.023229 -0.965479 -0.294451 -0.758341 -1.203392 1.616190 0.455021 -0.523853 -0.633656 2.817532 0.093314 -3.182442 1.235709 -0.108502 0.767976 1.247820 -0.632530 0.741097 1.040233 -0.558093 1.097507 0.645372 1.615647 -1.516778 -0.513416 -0.079579 1.181928 1.443394 -0.125200 -3.625431 0.572726 0.542781 2.282033 0.843042 2.235924 -0.925519 0.559217 -0.404569 -0.449330 -0.180718 -0.736954 1.116034 -0.730944 -0.348000 -2.918280 0.447569 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.602125 0.284056 0.319184 -0.668819 -1.020538 0.492420 -1.061540 -0.543815 0.134430 -0.234963 0.481420 -0.613084 -0.462810 0.936301 -0.614904 -0.992515 -0.248841 -0.519596 -0.001913 -0.298292 -0.037197 0.169988 -0.207552 0.134290 -0.189007 -0.101631 -0.160992 0.127551 1.344618 -0.496269 -1.099400 0.047184 -0.111237 1.042022 0.354504 -0.563664 0.742134 1.584167 0.530373 -0.041783 -0.750659 -0.591503 0.215736 0.176488 -0.291382 -0.500038 -0.618998 0.428791 -1.544702 0.719353 0.906529 -0.285259 -0.291839 0.226522 0.385505 0.745915 -1.928597 1.700531 0.041605 0.771111 0.332934 -0.374465 0.155378 0.113752 0.599052 -0.471407 0.592116 0.946760 -0.867034 0.068020 -0.331577 -1.056568 1.687516 0.361780 -0.717076 -0.050294 0.499586 -0.773970 0.586396 -1.240662 -1.115433 0.222607 0.239293 0.034440 1.378948 -0.018656 -0.037518 -1.368589 0.221064 -1.555377 0.307175 -1.009884 0.601840 0.995270 -1.503064 -0.149361 0.335338 0.077351 0.985534 0.280955 1.144044 0.189679 -0.055305 -0.044102 0.286139 0.078014 0.119417 0.290488 -0.107661 -0.989633 -0.792181 0.167792 -1.990463 0.139793 -0.509533 0.810883 -0.135306 0.191836 -0.203298 -0.009887 -1.002475 -1.282592 -0.343647 -0.119332 1.023662 1.112766 -0.445339 0.629528 -0.406622 1.320205 -0.164916 -0.090841 -0.416680 0.056223 0.077910 -1.483024 -2.298047 0.391226 0.875835 -0.520163 -1.290899 -0.716610 -0.199537 -0.552968 -0.196917 1.491090 1.634741 -0.295594 -0.820317 1.283269 -0.174480 0.637738 2.128064 -0.097683 1.483348 -0.692277 0.320777 -0.177712 -0.132332 -0.815818 -1.783689 0.038233 0.123210 -0.003287 0.469586 0.292553 0.215699 -0.060889 -0.664503 -0.474623 -0.078442 -0.413690 -0.840231 1.265742 0.477736 0.591399 0.795990 1.541086 -0.628657 -1.509288 0.641709 0.083804 0.353624 0.144273 -0.427114 -0.017055 0.717169 -0.905562 -0.498636 0.143416 0.173392 -0.531975 0.164085 2.151097 0.244929 0.283652 0.489618 0.585214 1.615666 0.091466 0.655262 -1.200001 0.197679 0.873788 -0.612198 -0.915942 0.372453 -0.646245 0.117945 0.683376 -0.205044 0.153624 -0.565433 -0.948653 -0.499394 -0.031574 1.360037 0.542373 -0.691921 0.425489 -0.707960 -0.039702 0.549213 0.576270 1.059059 0.820253 0.982119 -0.371515 0.426151 -0.109738 1.133321 -0.295954 0.546603 0.659811 0.320422 0.806102 0.258582 0.027607 0.344116 0.787197 -0.317432 0.754884 0.499325 1.642084 -0.486779 0.251223 -0.728518 -0.562010 0.827860 2.216235 -1.372502 0.330617 0.375722 0.843079 0.474668 -1.695605 -0.140704 -0.509218 -0.302572 -0.001672 -0.201041 -0.090573 -0.290664 1.035486 0.142289 -0.968213 0.865179 0.082757 -0.016538 0.199629 -0.193303 -0.615016 0.274275 -1.548108 0.614341 0.704843 0.659767 -0.311726 -0.268853 -0.197459 0.880020 -0.918247 0.504569 0.064015 0.672107 1.077352 0.923727 1.187246 -0.231491 -0.598286 -1.306075 0.252672 -0.594341 -0.342362 0.212083 0.665478 -1.046818 0.405753 0.310556 -1.399074 +PE-benchmarks/optimal-binary-search-tree.cpp___GLOBAL__sub_I_optimal_binary_search_tree.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/bellman-ford-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/bellman-ford-algorithm.cpp__createGraph(int, int) = 0.713057 0.095359 1.063674 -1.224134 -1.596460 0.717890 -0.733024 -0.787381 0.377681 0.563471 1.186554 -0.915928 -0.365108 1.313610 -0.676994 -1.046656 0.300070 -0.018906 0.271981 -0.563078 0.221721 0.472035 -0.306695 -0.310005 0.063198 -0.538647 -0.193605 0.904835 0.845658 0.258263 -1.101769 -0.121954 -0.116128 1.882535 0.366409 -0.441339 0.465046 2.313883 -0.803937 0.904348 -1.612997 -1.477947 1.378168 0.394288 0.064657 -1.146549 -1.526872 0.593904 -1.326702 -0.198603 0.929040 -0.612762 0.741502 -0.230000 0.152691 1.178054 -2.639753 0.584504 0.126551 -0.543109 -0.433441 0.104144 0.244523 0.674857 -0.372345 -0.927284 0.680760 1.214170 -0.275090 0.002622 -0.330899 -2.048231 2.041418 0.403282 -0.628197 0.124208 0.918663 -1.848319 1.275155 -0.620475 -1.718162 -0.150661 -0.080511 -1.013249 1.496706 -0.119718 1.556302 -2.247878 0.631603 -2.596536 1.230420 -1.305086 0.991586 1.428342 -1.778880 0.290489 1.060830 1.065832 1.463142 0.557879 1.929550 1.139779 0.542951 0.044235 1.277339 0.858887 -0.517828 -0.419726 -1.173168 -1.665575 -0.399659 -0.792490 -3.151397 0.277680 -0.691196 0.327390 -0.110446 -0.372590 0.172505 1.962623 -1.466373 -0.229578 0.324274 -0.189913 0.418579 1.492143 -0.317728 0.157381 -0.160481 1.937246 -0.898732 -0.057620 -0.034079 0.702852 -0.791501 -1.873975 -1.910989 0.809472 0.822029 -1.384340 -1.804592 -1.834050 -0.081676 0.672471 -0.380402 1.427268 3.022709 -0.678869 -1.639393 1.421605 0.685597 -0.605584 2.425663 0.298410 2.502118 -1.381329 0.246716 -1.169295 -0.317365 -0.347466 0.036995 0.131034 -0.078226 0.907957 0.244739 -1.576191 2.552379 -0.588437 -0.427608 0.065108 0.315471 -0.643763 -0.931184 1.797229 0.291481 1.377967 0.285605 2.415735 -0.931478 -2.056941 0.764214 -0.440714 -0.323112 -0.400612 -0.168747 0.273632 1.207095 -1.093291 -0.892768 -0.677927 -0.595619 -0.398006 0.852429 1.097537 0.568899 0.547578 -0.122692 0.452281 1.661077 0.428180 0.440607 -1.610027 0.327997 1.045272 -0.774591 -1.875122 -0.126169 -1.335763 0.308730 -0.015491 -0.036195 1.240824 -1.023471 -0.979384 -0.377765 -0.341888 0.804608 0.084817 -1.712699 0.657178 -0.444753 0.739641 0.489840 1.464676 2.103827 1.749072 0.802418 -0.003276 0.349399 -0.463533 0.165730 -0.020978 0.725598 0.526862 0.383666 1.708098 0.303643 0.612577 1.008272 1.098840 0.751073 1.476931 0.398068 2.153060 -0.315028 0.149153 -0.252815 -0.568785 1.399261 2.897007 -0.245816 0.201901 0.384809 0.773694 -0.482633 -1.961586 0.333449 -0.360780 -0.426323 0.665809 0.766676 0.176643 -0.892399 1.687767 0.781633 -2.537634 1.381673 -0.074256 0.292765 1.225204 -0.492474 0.101758 0.287637 -0.841393 1.468251 1.120812 0.989287 -1.608631 -0.862956 0.053124 1.294216 0.207958 0.737006 -1.801903 1.186607 0.762558 1.318394 0.740387 1.366652 -1.595221 -0.889566 0.147170 -1.272368 -0.787628 0.188025 0.488798 -1.418343 0.640645 -1.268465 -1.005672 +PE-benchmarks/bellman-ford-algorithm.cpp__printArr(int*, int) = 0.582279 0.399498 0.648580 -0.938165 -0.363124 0.140576 0.472760 -0.642022 0.107908 1.768294 0.519127 -0.640763 -0.948431 1.243066 -0.395293 -0.914096 0.430863 -0.400525 -0.173309 -0.387334 -0.061631 0.423768 -0.069011 -0.752945 0.505422 -0.283056 0.155812 0.741083 0.120869 -0.152881 -0.645892 -0.112347 0.270451 1.653164 -0.117542 0.137558 -0.218306 1.574526 -1.452015 1.542406 -2.031473 -1.664764 1.700479 0.188424 0.028359 -1.387412 -0.234331 0.712809 -0.439584 -0.953718 0.167129 -0.347633 0.175669 -1.081536 0.013419 1.559424 -2.171522 0.614828 0.235601 -0.586914 -1.028461 -0.222025 0.864903 0.273258 -0.626435 -1.106139 0.298511 0.127422 -1.022625 0.408300 -0.921847 -1.632688 1.064568 0.351303 -0.627465 0.414873 -0.143268 -1.223044 0.879178 -0.980326 -0.662797 -0.504820 0.652289 -0.229315 0.636092 0.654680 1.005897 -2.263077 0.074503 -1.694256 1.266439 -1.048821 1.369671 1.235611 -0.657742 0.692626 0.344445 0.552704 0.543554 -0.045932 1.425188 0.574408 1.067702 -0.268299 0.841996 1.024938 -1.238469 -1.191763 -0.880950 -1.144349 0.200251 -0.370672 -1.787912 0.122628 -1.199169 0.049097 0.640830 -0.567472 -0.223238 1.292066 -2.419907 -0.645793 0.475895 -0.250841 1.085024 1.298799 0.041509 0.194342 -0.004348 1.288732 -0.124869 0.026171 -0.296785 0.734698 -0.692694 -1.180556 -0.650490 0.082041 0.437943 -1.287682 -1.518734 -2.161398 -0.332856 0.714375 -0.446763 1.251230 2.391444 -0.413429 -1.486347 0.932013 -0.123305 0.032923 1.428941 0.200736 2.313661 -1.853091 0.909209 -0.258118 0.594949 0.719317 1.645279 -0.350082 -0.945679 0.611830 -0.116181 -1.036655 0.747822 -0.148285 0.150658 -0.443857 0.183509 -0.606391 -0.559000 1.453283 -1.117556 1.649492 -0.831819 2.010175 -1.501177 -1.263208 0.689326 -1.667697 -0.565870 -0.987657 -0.619622 -0.033417 1.293275 -1.371737 -0.739653 -0.766407 -0.437343 -0.040217 1.279714 -1.172689 0.017490 -0.417944 -0.441438 1.511357 0.729349 -0.377907 0.232823 -1.432034 0.218053 1.027797 0.004263 -2.036442 -0.021298 -1.185028 -0.197285 0.474799 -0.240214 0.883469 -0.688213 -0.675124 0.431734 -0.513901 0.121958 -0.765286 -1.322602 0.381304 -0.512306 0.279016 0.449616 1.812498 1.330869 1.000174 0.094752 -0.321510 0.325155 -1.012137 -0.837395 0.485774 0.084850 0.434341 0.722606 1.027842 0.240542 0.339298 1.159369 0.365179 -0.159507 1.462325 0.428937 1.528184 -0.559840 0.111782 0.325240 -0.864825 0.900810 1.808436 -0.680616 -0.545242 0.774134 0.210427 -0.529983 -0.678052 -0.342032 -0.639770 -0.767958 1.120815 0.661962 -0.400974 -0.576076 2.230151 0.282446 -2.391671 1.279033 -0.046688 0.418122 0.882647 -0.746250 0.297506 0.854851 -0.404945 0.520885 0.525936 1.255621 -1.357403 -0.285466 -0.104925 1.177126 0.958462 -0.157229 -2.612054 0.273667 0.620528 1.793109 0.711246 1.634851 -0.838671 0.185908 -0.367953 -0.415099 -0.177214 -0.386591 0.866955 -0.482357 -0.076260 -1.939306 0.247335 +PE-benchmarks/bellman-ford-algorithm.cpp__BellmanFord(Graph*, int) = 4.727378 -0.446186 4.880700 -5.966587 -3.209172 3.337801 0.306498 -6.716529 1.304335 14.055582 4.584955 -4.294985 -2.507880 9.787416 -2.398278 -5.886018 3.948000 3.408854 1.100230 -1.682831 -0.695194 3.062258 -2.092981 -4.960028 2.837135 -3.317921 2.405662 5.047287 -0.575751 4.039841 -6.169178 -2.138782 -0.593996 13.347088 1.351429 1.599876 -0.966198 13.210418 -11.800192 14.480330 -13.007641 -12.380487 11.463266 1.994165 1.380226 -4.612284 -3.544047 4.287257 -2.233471 -8.655314 2.916346 -4.567569 4.456745 -5.812384 1.057480 8.893959 -13.425695 -0.479552 1.890929 -5.587076 -8.338255 -2.373786 6.068243 4.182173 -10.560859 -7.852429 3.674470 4.461138 -3.956006 1.368276 -7.686322 -15.821209 8.174786 3.216959 -6.570104 1.471006 0.950680 -11.264771 6.875984 -1.251301 -8.170354 -3.664456 1.850125 -6.572759 5.699354 4.972718 12.899446 -18.134929 5.255445 -15.729600 10.143303 -7.423868 11.419217 11.413635 -7.593086 3.843175 5.621009 13.857915 4.938073 -0.456346 11.333605 6.568393 2.882565 -2.144596 8.537207 8.725486 -10.013552 -9.789957 -8.038661 -8.800077 2.435761 -5.661540 -15.126176 0.806267 -9.150634 2.026682 1.429576 -2.521639 -2.638986 13.189926 -20.162461 -3.013839 3.082740 -2.110870 8.368353 8.853999 -0.376411 2.704644 0.295749 10.632983 -3.964051 -2.561898 -3.292355 6.315388 -9.468967 -2.632618 -5.731396 2.624050 5.374700 -11.229188 -12.759852 -17.959682 -3.614820 9.732535 -2.792588 11.963375 19.288836 -5.035934 -9.729642 6.844128 -3.074483 -2.342430 12.716233 2.422850 16.827107 -14.252642 6.908536 -4.985987 4.000051 3.188600 11.133900 -1.551473 -5.776873 6.765715 -1.701780 -5.914592 14.418702 -2.215487 -0.754996 -7.263509 2.911983 -3.151016 -2.698006 13.168432 -14.297172 9.376330 -6.844364 16.343173 -10.739193 -7.571083 4.612011 -15.124842 -5.472063 -8.882806 -3.142656 -1.583894 12.255288 -10.642327 -6.272537 -4.557860 -4.617590 0.600807 9.122336 -5.276135 -0.133937 -1.449633 -3.799587 13.607348 7.346784 0.623924 -0.769084 -9.493255 1.695350 8.096035 -4.552299 -11.989308 -1.626329 -10.401167 -1.162566 -1.611563 -0.783597 7.732530 -10.323296 -5.517524 -0.210985 -2.133021 2.244568 -3.459857 -14.712079 4.609725 -2.362427 3.309061 5.282058 12.925736 10.729211 10.634255 3.716246 -2.963196 2.666655 -6.936484 -8.588392 6.214294 3.188344 4.989991 4.709077 10.222788 2.087422 3.551321 5.960688 1.894011 4.997159 11.164409 3.412505 13.101560 -1.690842 1.987552 2.057007 -5.845907 7.810662 15.153078 -4.411746 -0.729427 4.664099 0.575747 -6.730463 -5.035134 -0.199563 -3.960549 -4.960364 3.886057 5.315721 -0.870207 -6.975449 17.506138 2.661715 -19.553277 8.297120 -0.451170 3.831084 11.699301 -5.275295 4.855317 3.714437 -1.092756 9.260073 5.383871 9.308098 -11.062093 -0.158766 -0.821222 7.665808 10.302612 -0.877229 -17.617299 6.678263 3.698812 13.350251 5.417085 12.070379 -7.996268 3.916479 -2.466432 -7.386218 -1.083490 -3.098505 7.581602 -1.779863 1.077167 -17.595400 -0.888153 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.465466 -7.763825 6.305880 -7.216405 -9.051176 6.297429 -9.886799 -6.458665 3.137727 -2.736477 4.110432 -3.659373 1.608880 12.293894 -1.671936 -8.825579 -0.392145 9.082966 3.600404 0.206261 1.834180 2.864783 -3.251886 2.523133 -2.974321 -5.554794 2.444806 5.099335 5.581868 6.817350 -7.026100 -4.016433 -6.077037 10.766274 5.052315 4.870044 3.602749 17.707340 -1.229000 17.429204 -6.139370 -7.401732 2.025978 1.424424 -1.480214 -0.030884 -12.237032 0.842532 -12.899588 0.016790 10.021165 -2.965153 4.781587 3.773685 7.280470 0.249812 -9.506513 -0.243368 -0.195562 -1.598295 1.733360 -4.113821 -3.967784 5.711783 -12.165287 -2.430847 5.114260 10.876529 -1.033226 -0.903428 -0.194646 -13.214290 16.820441 5.478205 -9.211187 -0.652152 12.364821 -9.904333 7.010745 2.315226 -15.315427 -0.683466 -5.081882 -11.170930 13.700948 -0.368138 12.971056 -14.568186 9.437768 -17.599844 6.948800 -10.178972 4.997378 12.952492 -14.692782 1.314936 9.334834 19.208307 7.466155 0.675625 8.427782 9.533789 -6.424480 2.419734 12.422173 2.335957 -3.053601 -5.035731 -7.835815 -9.906477 -1.641971 -12.235393 -22.390325 -0.482777 0.271213 8.260878 -6.644281 5.685901 -3.159975 7.557937 -13.623059 3.286787 0.761129 -2.052633 3.562517 6.527705 -5.556308 4.795438 -1.907477 12.657451 -9.984037 -0.782671 -3.891832 3.500635 -8.214947 5.043319 -14.840509 5.303451 7.106712 -5.091919 -12.286343 -10.412435 -6.409716 12.084623 0.471903 16.013103 18.139912 -6.453602 -7.405636 10.093294 -0.692792 0.381223 13.765728 3.768461 8.058302 -3.462990 -1.271667 -13.055154 -4.119415 -6.192276 -2.125409 4.974574 0.387929 8.914675 -1.590578 -5.467322 23.792939 -6.715306 -8.623655 -14.696758 1.669718 -5.971171 -3.966241 16.617270 -13.346523 4.802124 -1.623123 14.073258 -3.966494 -7.815889 1.925459 -12.571571 -0.421947 -8.122521 0.113092 -1.952042 10.124671 -10.627764 -7.127380 -1.960819 -5.337071 -1.422767 0.648823 10.220727 0.272577 4.831088 4.892616 15.297652 16.476784 8.440049 -2.952791 -8.062085 3.965499 6.641688 -9.978826 -3.219005 1.961044 -5.016287 0.379912 -7.666822 1.877301 2.756191 -14.776430 -6.385748 -11.169510 -0.600659 7.749289 6.979382 -23.350853 4.186941 3.129983 5.990143 9.455703 2.220644 14.252921 11.558446 13.192230 -0.546393 2.073725 0.143295 -0.968602 4.211713 9.829136 3.787399 0.945449 15.162070 4.429874 1.494600 3.724508 10.933655 10.309654 6.293757 4.303996 16.261387 6.796245 0.224721 -3.854529 0.216140 8.323267 21.249165 -3.675606 12.940667 4.356916 6.215006 -3.029712 -13.918080 2.166011 -3.540785 -0.570450 1.718233 -0.508567 0.288160 -4.899876 9.609775 2.777383 -12.987396 1.188579 1.328881 2.744420 11.307111 -1.260122 0.616767 0.122967 -9.621027 17.401672 6.405734 2.924652 -6.725743 -0.142411 -0.862792 0.846025 10.540068 7.195458 0.092862 9.890864 4.014705 10.634724 5.743572 4.324517 -7.610051 -3.572973 3.409040 -13.623746 -3.860837 0.243171 3.909739 -3.255680 3.819649 -8.687344 -19.432102 +PE-benchmarks/bellman-ford-algorithm.cpp___GLOBAL__sub_I_bellman_ford_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/dfs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/dfs.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/dfs.cpp__Graph::addEdge(int, int) = 0.265189 0.038028 0.187318 -0.517229 -0.696033 0.163119 -0.113308 -0.330249 0.032266 0.122947 0.505928 -0.579337 -0.221876 1.058694 -0.110165 -0.601046 0.033528 -0.055304 -0.101080 0.240366 -0.037565 0.415561 -0.186711 0.018347 0.168835 0.110574 -0.246955 0.312712 0.535149 -0.276346 -0.687046 -0.063097 -0.020742 0.857981 0.067039 -0.141343 0.305854 1.310684 -0.570276 0.880536 -0.638716 -0.455131 0.582487 0.087218 -0.196383 -0.532710 -0.745916 0.492940 -0.511083 -0.398597 0.659849 -0.062351 -0.071098 -0.124977 0.400004 0.771604 -1.335010 0.592962 0.325931 0.220872 -0.022983 -0.154636 -0.019535 0.019371 -0.377837 -0.528030 0.181578 0.263712 -0.300561 -0.133100 -0.325939 -1.088983 1.325813 0.249911 -0.558175 0.191645 0.276392 -0.841427 0.674871 -0.529076 -0.837444 0.034356 0.068980 -0.144492 0.860192 0.043603 0.404809 -1.261032 0.223378 -1.255103 0.517276 -0.905113 0.508998 1.038954 -0.953486 0.121469 0.344215 0.438135 0.708505 0.392280 0.938644 0.364139 0.058996 -0.008060 0.407075 0.441031 -0.462029 -0.341447 -0.558346 -0.889934 -0.008826 -0.068585 -1.507222 0.200168 -0.266224 0.454336 0.101199 0.041848 0.058758 0.537125 -0.788947 -0.139602 0.168470 -0.128047 0.520144 1.131052 -0.259376 0.119885 -0.512985 0.914529 -0.225592 0.231520 -0.222342 0.316567 -0.443473 -0.867075 -0.857875 0.175250 0.377698 -0.645858 -0.862823 -1.161023 0.086769 0.144882 -0.383604 0.757570 1.534559 -0.533510 -0.599836 0.993288 0.418705 0.232651 0.966690 -0.046193 1.368465 -0.663166 0.133433 -0.225713 -0.195790 -0.279630 -0.205858 0.186901 -0.291751 0.163485 0.028126 -1.052476 1.386727 0.004372 -0.402796 -0.046847 0.140650 -0.285198 -0.648655 1.192330 -0.027599 0.588800 0.062402 1.237084 -0.370233 -0.710912 0.581668 -0.140748 -0.023749 -0.666860 -0.461371 0.183259 0.603144 -0.676282 -0.290309 -0.134297 -0.152808 -0.454818 0.273209 0.487049 0.116893 0.117714 0.214104 0.364842 0.974236 0.069168 0.274273 -1.013385 0.215876 0.428897 -0.607713 -0.958531 0.184226 -0.659379 -0.006039 0.204521 -0.237435 0.238176 -0.622915 -0.619159 -0.081640 -0.192390 0.529315 0.113891 -0.766915 0.188093 -0.314184 0.345286 0.529717 0.682151 0.961651 0.858037 0.637845 0.039335 0.169595 0.022720 -0.207090 0.129255 0.030462 0.537733 0.441955 0.608028 0.371364 0.148804 0.394112 0.241047 0.183296 0.830237 0.581566 1.326431 0.215173 -0.125553 -0.044255 -0.345340 0.743165 1.440380 -0.695347 0.163319 0.357978 0.350044 -0.279957 -0.673133 0.031871 -0.320173 -0.620104 0.399392 -0.156729 0.019900 -0.251269 1.028476 -0.108610 -1.227495 0.487508 -0.009388 0.352645 0.504088 0.033710 0.203605 0.293494 -0.679102 0.678057 0.574650 0.727726 -0.547993 -0.313890 -0.096716 0.469102 0.292267 0.435321 -0.884158 0.523520 0.534490 0.818611 0.381203 0.292644 -0.526273 -0.347336 0.119509 -0.401368 -0.203510 -0.209327 0.415933 -0.413140 0.068836 -0.757847 -0.638968 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/dfs.cpp__Graph::DFSUtil(int, bool*) = 1.192989 0.637377 1.666744 -1.547270 -2.688976 1.307119 -2.144803 -2.005551 0.298187 2.920588 1.370681 -1.887651 -1.076805 3.469171 -1.604357 -2.520198 -0.435835 0.169104 0.311724 -1.562071 -0.231060 1.069421 -0.628456 -0.176258 0.207933 -1.063552 0.001711 0.807568 1.447438 0.081222 -1.785397 -0.419866 -0.194100 3.646786 0.650080 -0.191398 0.824037 4.647946 -1.397686 2.614619 -3.735474 -3.831725 2.136509 0.747912 0.321492 -0.703899 -1.300744 1.519794 -3.076258 -0.012299 1.798675 -0.881856 0.153787 -0.395684 1.044970 1.882338 -5.344240 2.961929 0.136736 -0.856115 -1.272260 -0.584954 0.876796 1.070377 -0.552402 -1.810062 1.050974 2.886394 -1.710941 0.243519 -1.026153 -3.890573 3.380867 0.708617 -2.055171 0.343810 1.233831 -1.760973 2.216991 -2.802487 -3.316552 -0.447313 0.937011 -1.478241 2.440026 1.863761 2.503888 -5.131594 1.623786 -4.861775 2.765134 -2.112160 2.634537 3.238295 -3.212542 0.648141 1.954929 1.957331 2.928309 0.407129 3.461276 1.043781 0.412655 0.579859 1.379241 1.986010 -1.783528 -1.073219 -2.019714 -3.382080 -0.401295 -0.697801 -4.216604 0.216332 -1.739461 2.031110 0.185182 -0.197453 -0.570513 2.035334 -5.443158 -2.504358 0.213642 -0.447611 2.895334 2.481454 -0.687151 1.589952 -0.388222 3.720459 -1.762744 -0.685563 -0.752024 1.298914 -1.126765 -2.379983 -5.017859 1.399897 1.909973 -2.651745 -3.515308 -4.285125 -0.822220 1.403939 -0.913750 4.739382 6.148043 -1.788567 -3.021717 3.249114 -0.963806 0.215019 5.190982 0.488473 4.831354 -2.970556 0.841983 -1.461819 -0.178704 -0.082062 0.120192 0.416539 -0.648146 1.509118 1.173656 0.057230 2.025801 -0.861755 -1.668361 -3.090591 1.004337 -1.043158 -0.853389 3.376595 -1.741106 2.113197 -0.238342 5.062446 -2.817920 -3.789106 1.560360 -3.730746 -0.745595 -0.773213 -1.076847 -0.483048 3.058967 -3.405174 -1.540054 -0.826782 -1.151893 -1.047369 1.166321 2.017412 0.744260 0.610590 0.124343 3.940182 3.862726 0.894156 0.375381 -3.592427 0.291812 2.413257 -1.269916 -3.717731 0.295308 -2.688134 0.045458 1.027898 -0.573192 1.509133 -2.426969 -1.642288 -1.299444 -0.955105 2.538170 0.351063 -2.678630 1.423687 -1.376518 1.229795 1.828411 2.759204 3.490003 3.410110 2.544813 -0.100634 0.773772 -1.551255 1.513051 0.969606 1.968752 1.512272 1.464211 3.042689 1.068233 0.879212 1.841364 1.491330 0.114757 3.156073 0.192763 5.058896 -2.024079 1.316358 -1.180740 -0.891312 2.454071 5.874861 -3.151265 0.244397 1.485426 0.886271 -0.132926 -2.923071 0.145216 -1.603598 -0.795972 0.647447 1.368875 -0.244607 -1.628488 4.095006 0.674165 -4.556793 3.236910 0.010696 0.611206 1.848736 -0.975601 -0.658020 1.085944 -2.817504 2.143743 2.557320 2.609946 -2.977589 -0.272235 -0.553127 3.034996 1.067376 1.276074 -3.451573 1.929242 2.523047 2.970767 1.850475 1.845265 -2.680277 -2.314232 0.343362 -2.475180 -1.154627 0.417097 1.874703 -1.343715 1.603370 -1.814746 -2.828152 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/dfs.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/dfs.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/dfs.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = 0.671689 0.273217 0.925123 -1.161623 -0.906323 0.290711 0.382541 -0.805219 0.156561 1.832915 0.769905 -0.874316 -0.981202 1.850812 -0.456190 -1.207088 0.456165 -0.198865 -0.062718 -0.280760 -0.111390 0.725838 -0.243070 -0.529016 0.606570 -0.330102 0.016976 1.038438 0.394468 -0.010426 -0.982969 -0.234451 0.067813 2.155849 -0.024994 0.013787 0.074616 2.567068 -1.928560 2.167208 -2.186937 -1.925129 1.914310 0.239643 -0.055756 -1.491359 -0.820130 0.928124 -0.925157 -1.075395 0.778157 -0.365775 0.294071 -0.935064 0.458844 1.812410 -2.951078 0.759100 0.379781 -0.500643 -0.949110 -0.383049 0.579667 0.281395 -1.046095 -1.312736 0.448836 0.395520 -0.969016 0.303271 -0.997758 -2.246463 1.772747 0.516785 -1.019445 0.521921 0.378785 -1.796088 1.312462 -1.079727 -1.381658 -0.491151 0.469071 -0.616108 1.333981 0.585811 1.377998 -2.994153 0.359072 -2.519047 1.550938 -1.691358 1.594469 2.023075 -1.339354 0.812717 0.738556 1.134571 0.946856 0.063251 1.994167 0.957450 0.925754 -0.088330 1.142657 1.310345 -1.558184 -1.399501 -1.411414 -1.610619 0.175508 -0.616767 -2.664391 0.158565 -1.152260 0.335071 0.600358 -0.472462 -0.287972 1.772934 -2.847141 -0.398418 0.607530 -0.353891 1.249614 1.874081 -0.204431 0.271918 -0.320533 1.950064 -0.524021 0.219761 -0.511713 0.922144 -1.053531 -1.425745 -1.258454 0.182355 0.662582 -1.590651 -2.072825 -2.833647 -0.343484 0.919930 -0.576396 1.712294 3.389002 -0.805876 -1.723571 1.619095 0.024058 0.181418 1.970523 0.270533 2.829698 -2.002913 0.758834 -0.724855 0.318924 0.371114 1.572397 -0.028196 -0.964628 0.846591 -0.014223 -1.460288 1.890214 -0.306131 -0.282308 -0.775655 0.326913 -0.779630 -0.843248 2.340333 -1.358548 1.805121 -0.802087 2.742192 -1.525882 -1.675904 0.922904 -1.885303 -0.437688 -1.567101 -0.794292 0.111368 1.585159 -1.786258 -1.007528 -0.905801 -0.531073 -0.297749 1.219571 -0.804420 0.098189 -0.214898 -0.121888 1.804237 1.476126 -0.075949 0.285871 -2.015231 0.372699 1.133422 -0.561916 -2.523760 0.191047 -1.406640 -0.196153 0.362996 -0.267859 0.952740 -1.235944 -1.053444 0.181015 -0.627888 0.411980 -0.454835 -2.163327 0.550840 -0.545703 0.542345 0.922267 1.948634 2.071166 1.555340 0.697335 -0.173864 0.408434 -0.845374 -0.951740 0.711697 0.313546 0.735024 0.876866 1.531741 0.586245 0.380089 1.160228 0.645787 0.186620 1.865528 0.832990 2.410477 -0.241530 0.008143 0.234729 -0.861171 1.331055 2.630592 -0.863073 -0.164916 0.984327 0.489680 -0.700941 -1.134528 -0.192751 -0.844268 -0.935624 1.204136 0.515771 -0.480582 -0.675491 2.730812 0.168502 -3.099689 1.379392 -0.009938 0.651802 1.245810 -0.535704 0.388159 0.940486 -0.896717 1.317692 0.877913 1.581777 -1.644529 -0.390659 -0.153451 1.279348 1.328726 0.277089 -3.154777 0.592711 0.817939 2.155409 0.914688 1.888074 -1.127929 -0.103552 -0.201429 -0.952533 -0.403700 -0.408542 1.099123 -0.683180 0.174989 -2.400414 -0.475818 +PE-benchmarks/dfs.cpp__main = 0.475126 0.574825 0.476267 -0.182950 -0.800256 -0.181266 -0.895879 0.007154 0.076599 -0.328523 -0.269671 -0.742803 -0.970767 0.657844 -1.187162 -1.071126 -0.594859 -0.203454 -0.090064 -0.959435 -0.116634 0.192541 0.117019 0.146843 0.285000 -0.361143 -0.132746 0.199566 1.792712 -0.485744 -0.257301 0.206402 0.494860 0.803191 -0.223331 -0.428851 0.736033 1.344133 1.440595 -0.583532 -0.808679 -0.724507 0.358164 0.164825 -0.024925 -0.937240 -0.380208 0.269721 -2.562522 1.757469 0.199976 0.206848 -0.970533 -0.169867 0.438325 0.775367 -2.343240 2.643904 -0.305138 0.678675 0.255141 -0.363995 -0.413596 -0.629308 1.595305 -0.358353 -0.049957 1.120490 -1.539669 0.901420 0.103933 0.207993 1.520746 -0.050496 -0.614155 0.442965 0.537689 0.180185 0.149705 -2.226744 -0.388188 -0.039695 1.058967 1.111097 1.041806 0.429773 -0.737414 -1.000444 -0.406762 -0.754579 0.324258 -1.187209 0.517638 0.795421 -1.531844 0.618641 -0.091128 -1.405047 0.655921 0.712080 0.976305 0.070948 0.401728 0.061185 -0.518905 -0.140540 0.573147 0.298085 0.392085 -0.432631 -1.347999 0.669913 -1.723032 -0.353611 -0.504657 1.496023 0.240201 0.217863 -0.124313 -0.857191 -1.132074 -1.638797 -0.171717 -0.130107 0.965342 0.408497 -0.234706 0.359038 -0.444543 1.212528 0.253742 -0.315002 -0.362295 -0.141123 0.574668 -2.514853 -2.486023 -0.355128 0.181828 0.073765 -1.123612 -0.087219 -0.480418 -0.846262 0.030479 0.746778 1.175074 0.445348 -0.658915 1.163236 -0.698894 1.395228 2.033464 0.147625 0.893848 -0.327414 0.228066 0.174501 0.209266 -0.212181 -2.073516 -0.123239 -0.295971 -0.291828 0.988033 0.806449 -1.666770 -0.397376 -0.174972 -1.257281 -0.417307 -0.463888 -0.327870 1.110124 0.532680 1.101937 -0.038407 1.285512 -0.658825 -2.206586 0.341664 -0.377891 0.685485 0.814930 0.155615 -0.189824 0.267443 -1.408686 -0.746891 0.491138 0.368052 -0.299552 0.093910 2.020699 -0.101234 -0.176823 0.613111 0.873258 0.770866 -0.499222 1.041862 -1.318783 -0.131199 0.543493 0.079574 -1.701109 1.122329 0.205872 -0.042676 0.882204 -0.050501 -0.617353 0.352974 -0.656991 -0.448642 -0.503296 1.192346 0.038582 0.825495 0.271115 -0.965222 -0.378278 0.196182 0.235698 1.484179 -0.323011 0.169408 -0.050893 0.484087 -0.820986 2.337820 0.145253 0.790036 -0.005730 -0.009885 0.595320 0.199161 -0.458549 0.074675 0.968986 -1.304628 0.417800 0.665145 1.349877 -1.519180 0.227230 -0.717543 -0.402446 0.575983 1.732825 -1.484939 -0.066968 0.576016 1.052720 1.479198 -1.705088 -0.780691 -0.394247 -0.581470 0.508701 -0.531352 -0.904060 0.563408 0.623300 0.185182 -0.276751 1.165381 0.229808 -0.462946 -1.305877 -0.128377 -1.640621 1.071294 -1.600608 -0.547926 -0.052611 0.397178 -0.137667 -0.690705 -0.364370 0.973719 -0.865187 0.439220 0.328751 -0.226384 1.425463 0.719814 1.076395 -0.569192 0.185791 -2.240688 -0.088195 -0.204872 -0.819245 0.367421 0.012644 -0.932348 0.462254 1.477353 -1.783844 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/dfs.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/dfs.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/dfs.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/dfs.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/dfs.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/dfs.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/dfs.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/dfs.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/dfs.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/dfs.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/dfs.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/dfs.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/dfs.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/dfs.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/dfs.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/dfs.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/dfs.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/dfs.cpp___GLOBAL__sub_I_dfs.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/tug-of-war.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/tug-of-war.cpp__TOWUtil(int*, int, bool*, int, bool*, int*, int, int, int) = 3.620777 2.059119 4.450219 -4.548079 -2.278224 1.285700 2.430918 -4.555893 1.429000 11.074485 3.287647 -3.175690 -1.731530 6.649321 -3.045285 -2.916349 3.020569 0.364147 0.277324 -3.061467 0.124248 2.310551 -0.848690 -3.275466 1.674241 -2.676540 2.462718 3.293682 -1.629310 1.077996 -3.228759 -1.361179 1.045230 8.205994 0.086425 1.291132 -2.463616 7.150453 -7.829080 8.978405 -11.224236 -8.306381 7.595299 1.687593 1.850699 -8.011141 -1.975072 2.688741 1.886872 -5.398286 0.592461 -2.869104 2.548570 -4.638758 -0.063863 6.386608 -7.817643 -0.470788 0.995663 -5.254372 -5.861291 -1.045918 5.335459 3.234287 -6.849210 -5.264635 2.632126 2.587537 -3.612405 2.973401 -4.987888 -9.774067 3.085583 1.261743 -3.876610 0.854145 -0.475511 -7.691683 4.354677 -2.698579 -3.632559 -2.661374 2.711193 -2.097693 0.935033 3.136919 8.318318 -11.701504 1.746120 -9.186085 6.760294 -4.648524 7.721568 5.813891 -2.735266 2.858577 2.617424 6.487281 3.889490 0.256025 7.049867 5.112717 4.976032 -2.335050 5.904705 6.617444 -5.763296 -6.909488 -4.660538 -6.222464 1.852756 -1.794089 -9.323902 0.222884 -6.495233 -1.625699 1.006525 -3.011204 -0.366606 9.738682 -12.915527 -3.467507 3.384457 -1.270235 4.393438 5.960492 0.618246 2.087962 0.369378 6.320479 -1.699172 -0.391106 -1.399284 3.845688 -6.846100 -5.293456 -3.046203 0.747238 2.474296 -7.245444 -7.819122 -12.122519 -2.465757 6.089681 -2.013161 5.524081 11.840570 -2.682921 -7.674867 3.268315 0.503619 -4.074910 7.309064 1.122670 12.477155 -10.321232 5.527720 -2.581203 3.963836 3.852317 11.504851 -1.855883 -4.490074 4.151025 -1.913484 -8.217270 7.478616 -1.974224 0.847154 -2.238792 1.544307 -1.542078 -1.619634 7.049933 -8.245824 8.140376 -6.617248 10.372571 -8.176341 -5.561425 2.490358 -10.319708 -3.233207 -4.601370 -0.646271 -0.387869 9.506137 -5.998073 -4.009278 -3.604946 -4.957071 1.450495 6.279720 -8.389907 0.013831 -1.923515 -3.444216 8.486168 3.875369 -0.251122 0.454549 -5.837620 0.997018 5.742524 0.850481 -9.686055 -1.370512 -7.694476 -1.175258 -2.769937 -0.793455 5.438053 -4.739504 -3.080520 0.673692 -3.072178 -0.154686 -3.863681 -7.825144 2.888854 -3.370395 2.983377 0.324392 9.143381 6.518431 6.309426 1.329139 -3.323438 1.890765 -6.680510 -5.600767 4.754976 2.709266 0.182438 2.747806 6.457082 0.801758 2.328386 5.875606 0.328413 1.769348 6.998085 0.635383 7.516400 -4.202000 2.517935 1.189020 -4.153815 4.616355 10.350461 0.750455 -3.158835 2.851703 0.228097 -4.734955 -3.294024 -1.576002 -2.016837 -4.059049 4.067169 5.198750 -1.686390 -4.086338 11.672242 2.616906 -12.687160 6.015664 -1.167502 1.278330 6.957018 -4.535129 2.129722 3.723509 0.516857 3.683172 2.641691 6.547373 -7.081882 -3.036110 -0.705086 5.838909 7.039555 -1.691320 -15.323404 4.249040 3.797138 9.418999 2.392244 10.512441 -5.551844 3.200369 -1.582919 -3.075835 -1.462539 -0.942277 5.007537 -2.046992 -0.553550 -11.474758 2.166303 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 2.740970 1.833190 3.657849 -3.252093 -2.630718 1.554743 0.965533 -3.610737 0.629036 9.477847 2.646826 -2.625608 -2.801318 5.430479 -2.471689 -3.158106 1.718445 0.241535 0.242156 -2.927726 -0.474126 1.861324 -0.831331 -2.912628 1.817731 -2.304935 1.259131 2.814324 -0.360244 1.659201 -2.776030 -0.980203 0.849355 7.606479 0.326454 0.232299 -0.915668 7.355841 -6.870436 6.836688 -8.578108 -8.425193 7.028332 1.328428 1.392407 -4.359882 -1.128429 2.812618 -1.070172 -3.978224 1.215259 -2.308721 2.078153 -3.671651 0.289682 5.438936 -8.763925 1.587988 0.615630 -4.070959 -5.100384 -1.139665 3.607391 2.310472 -3.941069 -4.404238 1.749553 2.827905 -3.050145 1.567888 -3.989404 -8.293163 3.946064 1.203517 -3.307562 1.135031 0.263304 -5.675852 3.986014 -2.857542 -4.119477 -2.155407 2.316281 -2.133226 2.347808 3.732094 6.355671 -10.511849 1.307715 -8.580681 6.236256 -3.901390 6.638951 5.651544 -3.412741 2.658658 3.010922 4.976593 3.256190 -0.169304 6.670900 3.230748 3.878973 -0.736257 3.880557 5.623645 -5.718461 -5.359953 -4.637521 -5.205200 1.175278 -1.680711 -7.215770 0.172170 -5.345253 0.051946 1.629939 -2.500481 -1.247289 7.372815 -11.735841 -3.200547 2.275138 -1.130636 5.165584 4.730774 0.147249 1.991755 0.622362 6.223139 -2.115957 -1.066275 -1.602715 3.495884 -4.139052 -4.255583 -4.232025 1.468915 2.647662 -6.310112 -7.078998 -10.193563 -1.893167 4.617452 -1.769692 5.481707 11.327219 -2.570430 -6.131185 4.007021 -1.371666 -1.321202 7.388735 1.434781 10.210865 -8.354328 4.035875 -2.213024 2.394604 2.767330 8.271737 -1.066681 -3.408810 3.477145 0.358905 -3.214135 4.602380 -1.841186 -0.306787 -3.862685 1.693718 -1.917263 -1.144280 6.425771 -6.319212 5.773173 -4.200104 9.503708 -7.044947 -5.797259 2.503152 -8.664504 -2.757112 -4.001672 -1.372425 -0.395127 6.890134 -6.222093 -3.614297 -2.838465 -2.725338 0.222275 4.954904 -4.900104 0.254310 -1.024702 -2.274563 7.092686 3.890118 0.010839 0.123474 -5.850795 0.472464 4.407061 -0.644381 -8.891641 -0.716694 -5.955385 -0.689142 0.281663 -0.698112 4.324077 -3.839887 -2.712250 0.604710 -2.758750 1.012048 -2.523578 -6.011398 2.631972 -2.250939 1.954266 1.788050 7.691823 6.395560 5.717304 1.738537 -1.275475 1.627145 -5.022237 -3.016125 3.650326 2.311538 1.843808 2.889938 5.754574 1.246182 1.933886 4.260546 0.874906 1.095453 6.469055 0.897645 7.544173 -3.626709 1.883874 0.690753 -3.105089 4.263178 8.777156 -1.788473 -2.276994 2.825772 0.233512 -2.782479 -2.561538 -0.503729 -2.498836 -2.459494 3.296929 4.536084 -1.268139 -3.571360 10.126678 1.581930 -10.972110 5.923640 -0.359746 1.880760 5.312139 -3.388237 1.440754 3.059111 -0.776057 3.873151 3.161700 5.767149 -6.836610 -1.430900 -0.768458 5.437153 5.073369 -0.721553 -12.434758 2.606330 2.893768 7.309071 2.786334 7.625953 -4.892631 0.766567 -1.347953 -3.528563 -1.277755 -0.772886 4.472943 -1.758506 1.059969 -8.848846 0.354900 +PE-benchmarks/tug-of-war.cpp__main = 0.348693 0.108517 0.160002 -0.526665 -0.509002 0.111365 -0.166081 -0.167886 0.044943 -0.208305 0.271385 -0.416890 -0.336733 0.746970 -0.210253 -0.554136 0.018147 -0.547456 -0.118306 0.112836 -0.051018 0.247551 -0.101746 0.029969 0.094122 0.103654 -0.210245 0.222494 0.690278 -0.504421 -0.653097 0.022365 -0.020009 0.690211 0.067569 -0.339136 0.398312 1.137674 0.028176 0.323334 -0.432019 -0.244587 0.352142 0.001927 -0.301080 -0.578179 -0.490732 0.372029 -0.699573 0.127789 0.540600 -0.026881 -0.284412 -0.081335 0.254396 0.688330 -1.279013 0.907181 0.188859 0.591885 0.177463 -0.284108 -0.005487 -0.143475 0.139152 -0.375196 0.273995 0.174222 -0.585961 0.048367 -0.272740 -0.605881 1.104708 0.306239 -0.379326 0.145153 0.242942 -0.654918 0.439521 -0.786864 -0.622668 0.088569 0.114937 0.044193 0.965408 -0.163513 -0.091493 -0.928499 0.060949 -0.951062 0.150807 -0.897827 0.339304 0.832768 -0.828904 0.110308 0.076605 0.032934 0.446902 0.255483 0.766179 0.210876 0.091009 -0.035757 0.269590 0.119986 -0.086958 -0.022182 -0.154187 -0.569475 -0.361939 0.102230 -1.276015 0.162685 -0.264544 0.358221 0.081192 0.162426 -0.114701 0.057454 -0.516900 -0.498982 -0.047503 -0.121050 0.496598 0.895259 -0.276127 0.134868 -0.475241 0.809324 0.046660 0.247599 -0.277049 0.111977 -0.078489 -0.961653 -0.995873 -0.004210 0.364982 -0.340447 -0.844119 -0.647200 -0.037837 -0.354183 -0.236569 0.798682 1.086544 -0.184883 -0.472060 0.908511 0.216328 0.558557 0.996418 -0.089423 0.951151 -0.411673 0.135724 -0.016569 -0.067755 -0.438109 -0.856827 0.032008 -0.108202 -0.052183 0.107876 -0.350797 0.548219 0.077934 -0.296685 0.001000 -0.119499 -0.361941 -0.775017 1.017427 0.333315 0.560339 0.365638 0.997655 -0.247524 -0.775417 0.502533 0.203034 0.288482 -0.354834 -0.351305 0.083872 0.349210 -0.539056 -0.355965 0.044270 0.142137 -0.393281 0.182309 0.897408 0.090825 0.054036 0.356170 0.221501 0.862927 -0.157519 0.479174 -0.881554 0.194167 0.442945 -0.372672 -0.693928 0.334135 -0.287133 -0.018172 0.436767 -0.136050 0.017143 -0.369503 -0.648867 -0.011344 -0.015726 0.584510 0.203927 -0.623593 0.146210 -0.354636 -0.012450 0.403264 0.445345 0.747735 0.400114 0.434190 -0.160529 0.165772 0.076683 0.184592 -0.184107 0.023304 0.438539 0.267893 0.437944 0.278364 -0.010874 0.269582 0.448505 -0.252383 0.531707 0.581367 1.018556 0.031899 -0.160869 -0.182245 -0.395928 0.588339 1.232406 -0.718453 0.114848 0.351679 0.519782 0.097379 -0.891953 -0.165904 -0.322486 -0.364132 0.226858 -0.352799 -0.157655 -0.006422 0.758730 -0.095190 -0.788892 0.396651 0.085771 0.162888 0.103021 0.025625 -0.133753 0.349132 -0.910339 0.417789 0.329933 0.463550 -0.155095 -0.244962 -0.080761 0.413194 -0.369854 0.357521 -0.253058 0.308651 0.532668 0.658247 0.648852 -0.024609 -0.212576 -0.592598 0.102727 -0.215816 -0.192965 -0.016614 0.405184 -0.614229 0.054200 -0.160971 -0.679051 +PE-benchmarks/tug-of-war.cpp___GLOBAL__sub_I_tug_of_war.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 1.964499 0.312954 2.583075 -2.265750 -0.629030 1.005039 -0.280435 -1.717819 1.291488 5.353884 1.838392 -1.986924 -2.684708 3.901323 -1.136137 -2.518439 2.697293 1.118281 1.731855 -0.919203 0.057216 0.991069 0.209986 -2.074029 1.984122 -1.532438 -0.271740 2.244709 2.135949 0.551335 -2.852014 -0.052761 0.769107 5.515594 -0.792253 -0.447425 0.295144 6.002396 -3.704990 5.447625 -4.106142 -4.660340 5.462262 1.083292 -0.405375 -1.550723 -0.953283 1.808952 -2.145666 -3.751337 1.289194 -1.609807 1.586235 -2.964356 -0.370744 5.067337 -7.195257 0.789807 0.156655 -1.111024 -2.053992 -0.570073 1.781009 1.168146 -2.020980 -2.918264 1.377474 1.184046 -3.722318 0.153571 -2.899547 -4.988106 5.023417 1.156055 -2.485754 1.631020 1.423407 -4.143438 2.679875 -1.820282 -3.098032 -1.422865 0.884187 -1.015518 3.049769 1.844743 4.261700 -7.379941 0.636852 -5.812798 5.331316 -3.607639 5.274948 4.899457 -3.862054 2.149893 2.603639 3.722221 1.417958 0.345488 6.582870 2.450253 1.124004 -0.991224 2.854263 3.239846 -4.152601 -3.356379 -3.186036 -3.214053 0.403922 -0.905199 -5.991333 -0.306282 -4.776367 1.245650 2.548550 -1.494612 -1.298438 4.469373 -7.497062 -1.948335 1.152347 -0.909213 3.708549 4.612783 0.378093 0.334440 0.700552 5.581946 -1.631935 -1.917204 -0.732864 2.230871 -1.572644 -2.982884 -2.140226 -0.178752 1.501412 -5.067487 -5.516333 -7.204167 -0.895309 2.438993 -0.707538 4.124220 8.902172 -0.887543 -2.848083 3.304267 -1.543938 0.706818 6.445120 1.010594 8.135538 -6.426810 2.521325 -1.606188 1.702205 2.212115 5.095416 -0.541791 -1.460395 1.613648 1.177228 -1.229677 3.322538 -1.392642 0.302812 -1.885308 0.332211 -1.510598 -2.629162 5.121123 -3.543007 3.729931 -2.187701 8.080374 -3.380684 -5.327207 2.632660 -3.175849 -1.843396 -3.461488 -1.336572 -0.404360 4.014935 -4.726980 -2.875073 -1.814764 -0.673749 0.453833 3.525539 -1.201954 0.730661 -0.938121 -2.273518 4.533338 2.379734 -0.446760 0.555854 -5.527951 -0.470403 2.775125 -2.155337 -5.813118 0.730462 -4.553002 0.070362 1.316880 -1.450702 2.743142 -3.737719 -3.398979 0.051720 -1.647250 0.954741 -2.403808 -5.540324 1.654818 -0.268594 0.219611 2.859438 5.692038 5.115379 3.699770 0.520806 -0.545148 1.212860 -2.155385 -3.171582 2.191576 0.120658 3.113440 1.829800 3.823271 0.776511 1.634438 2.716117 0.175368 1.136364 4.848171 1.542528 5.373057 -0.646923 0.254559 1.024375 -3.581419 3.837521 6.493947 -2.361746 -1.565335 2.473058 0.820933 -1.301995 -3.011105 0.204741 -1.782878 -2.140193 2.885873 1.970924 0.464969 -2.690682 6.736651 0.877830 -8.829287 4.481939 -0.598994 0.899060 4.159925 -1.844490 1.301606 2.008736 -1.589863 2.398340 1.672509 4.737671 -4.854586 0.534518 -0.703099 3.880378 2.181783 -0.389517 -8.671795 1.330589 1.509983 4.883720 3.570449 4.568493 -2.961090 -0.059857 -1.312992 -2.845687 -1.280308 -2.041768 3.107918 -1.830384 0.291908 -6.117616 0.852723 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::queue >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::front() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::~queue() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__dfs(int (*) [6], int, bool*) = 1.070651 0.350139 1.418238 -1.285001 -0.705637 0.518145 0.875814 -1.078392 0.316937 3.645894 0.899285 -0.908967 -0.895686 2.322251 -0.525172 -1.220389 0.991839 -0.206459 0.129850 -0.482082 -0.235540 0.926383 -0.331772 -1.031929 1.015039 -0.615028 0.302091 1.189344 -0.673597 0.405668 -1.120874 -0.399087 0.089828 2.986072 -0.093407 0.242726 -0.286179 3.129417 -3.010889 3.431951 -3.156757 -3.086168 2.807449 0.373234 0.294434 -1.375489 -0.383518 1.203865 -0.132476 -2.097316 0.684025 -0.714505 0.673576 -1.561727 0.271782 2.249872 -3.567705 0.160801 0.389246 -1.286620 -2.010903 -0.503860 1.284262 0.649676 -1.914624 -1.698146 0.674716 0.545175 -1.131551 0.498360 -1.544572 -3.234644 1.574795 0.756719 -1.225101 0.672547 0.239924 -2.288592 1.702903 -1.097010 -1.663267 -0.948828 0.642496 -1.279481 1.222945 1.253357 2.556478 -4.141924 0.917953 -3.293258 2.512555 -1.822766 2.506784 2.642412 -1.124472 1.221475 1.148371 2.301400 1.012946 -0.207930 2.666423 1.357277 1.300305 -0.217140 1.605913 2.233181 -2.618045 -2.285702 -2.043106 -1.970161 0.706739 -0.840768 -2.579048 0.137190 -1.867246 0.237313 0.975192 -0.765384 -0.572604 2.773173 -4.556323 -0.753681 0.982577 -0.489658 1.861926 2.062507 -0.024430 0.420627 -0.028770 2.476190 -0.862193 -0.119441 -0.685531 1.429494 -1.890478 -0.982826 -0.991809 0.240535 0.842032 -2.487313 -2.758898 -4.402542 -0.562226 2.012194 -0.811516 2.565023 4.575175 -1.084007 -2.208550 1.726142 -0.238580 -0.276181 2.413689 0.503587 3.696586 -3.135556 1.357683 -0.926659 0.955161 1.031091 3.448998 -0.174887 -1.290727 1.441770 -0.098538 -1.407737 2.697454 -0.459886 -0.069328 -1.249463 0.603460 -0.851862 -0.739122 2.817976 -2.477521 2.202345 -1.584366 3.782989 -2.427252 -1.843174 1.123608 -3.459358 -1.076108 -2.353761 -0.921165 -0.120755 2.484464 -2.470137 -1.384070 -1.221955 -1.063308 -0.008153 1.773488 -2.161944 0.112103 -0.502000 -0.797336 2.989058 1.436744 -0.033926 -0.065194 -2.510611 0.191483 1.458308 -0.630589 -3.090322 -0.120622 -2.142101 -0.331360 0.260990 -0.297723 1.503001 -1.949267 -1.192753 0.498289 -0.878268 0.114686 -1.032364 -3.077312 0.754548 -0.471116 0.785516 1.102813 2.922363 2.509263 2.182400 0.640271 -0.400972 0.444345 -1.493836 -1.976342 1.265278 0.415582 1.056989 1.191484 1.961519 0.674104 0.648346 1.534538 0.366230 0.468607 2.537541 0.671338 2.934041 -0.637426 0.343176 0.623916 -1.239203 1.716400 3.051313 -0.933347 -0.599025 1.307879 0.081876 -1.388889 -0.706404 -0.113202 -1.119308 -0.980646 1.233925 1.294408 -0.537201 -1.240896 3.973902 0.365228 -4.535395 1.956591 -0.123821 0.952249 2.269864 -0.959911 0.977394 1.209739 -0.492955 1.816935 1.107920 2.345285 -2.550104 -0.112669 -0.248265 1.818892 2.210625 -0.044033 -4.826864 0.835704 0.783680 2.761604 1.085629 3.146245 -1.660701 0.635288 -0.626424 -1.502107 -0.516055 -0.462894 1.745389 -0.222710 0.289364 -4.063776 0.241697 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__minCut(int (*) [6], int, int) = 4.427733 0.436749 5.723801 -3.974616 -0.545470 2.598581 1.814698 -4.912763 1.710794 14.931906 3.016700 -3.303392 -4.048907 7.287721 -2.542359 -5.321428 4.576046 2.556015 1.240123 -3.379771 -1.183125 1.872974 -1.115685 -5.517789 4.125546 -3.872111 2.777270 5.236528 -1.929641 3.668239 -4.185775 -1.165830 0.286157 12.383737 -0.161522 2.074824 -0.984185 10.935888 -10.772246 12.984479 -12.603070 -12.580870 11.823241 2.131643 1.397864 -3.127208 -0.379842 3.826328 -3.770100 -7.362521 1.349591 -4.246402 3.737937 -6.976724 0.150222 9.645764 -13.926655 0.010572 0.427492 -6.120839 -9.493761 -1.920738 6.269278 2.729733 -7.094632 -7.111215 3.077742 3.465129 -5.281593 2.916153 -7.236239 -12.993929 5.797159 2.372545 -4.931137 2.342320 0.345509 -7.942735 5.401729 -2.335940 -5.452936 -4.711356 3.565451 -5.378521 4.215319 6.159336 10.894779 -16.314444 3.277398 -12.625750 10.771039 -6.210759 11.607013 9.517084 -5.396052 5.160452 4.520290 9.623231 1.888996 -1.368742 10.428556 4.575548 3.996745 -2.294977 6.627593 7.838367 -10.216682 -9.740483 -7.201786 -6.583799 1.969346 -4.273368 -10.381166 -0.549283 -10.308291 2.766736 3.641185 -3.099469 -3.055319 10.739798 -19.355790 -3.210450 2.935813 -1.959537 8.918656 6.848173 0.824681 2.141450 1.978888 9.707055 -3.101469 -3.685537 -3.564139 5.603876 -6.368704 -3.038943 -4.145088 0.836291 4.131843 -9.975850 -11.718354 -16.263085 -3.841640 9.111169 -1.993898 11.020168 17.257442 -2.785374 -8.619942 5.015505 -4.845967 -0.464684 11.501558 2.931232 14.741915 -14.418423 7.655930 -3.993397 5.914104 5.442082 12.358337 -2.511435 -5.612994 6.332325 0.232239 -1.260140 9.357263 -2.312619 1.292184 -6.889809 2.201455 -2.530856 -1.684514 11.057818 -12.243486 9.205144 -7.214688 15.449778 -11.386880 -8.452960 3.835087 -15.006687 -5.347744 -7.468067 -3.200517 -2.100120 10.468196 -10.636878 -6.456268 -5.044892 -3.477189 2.213808 8.798974 -5.922039 -0.392389 -3.149340 -5.146896 13.411673 4.188929 -0.714411 -0.647889 -9.427988 -0.032670 6.851700 -2.537329 -11.693533 -0.440925 -8.582488 -1.280608 0.543358 -0.478445 6.752548 -8.476146 -4.476041 1.092881 -2.627320 0.861704 -5.221827 -12.493059 3.800056 -1.654031 0.796111 4.832656 12.330917 10.044993 7.558283 0.892679 -2.789506 2.354247 -7.856999 -7.406655 5.787509 2.413440 5.331316 3.858365 7.680122 1.064639 2.404480 4.836268 1.115283 2.522855 9.773986 3.265113 10.404645 -3.631602 2.655200 2.744036 -6.208654 6.300397 11.185055 -5.270895 -2.473621 4.996174 0.779656 -4.526041 -4.168337 -1.337392 -4.243227 -4.003354 4.571921 5.354922 -2.218722 -5.982159 16.508967 3.084390 -17.891524 8.785128 -0.518170 2.412247 8.983270 -5.581965 2.984899 4.626072 -0.857923 6.120303 3.046266 9.134108 -10.537269 1.441211 -1.168020 7.859693 8.867227 -2.402620 -17.804179 3.105282 2.741186 11.788967 6.090036 12.255492 -6.042682 3.464039 -4.447093 -7.046253 -1.424941 -2.462759 6.751764 -0.443914 1.393787 -16.375951 1.428200 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.319389 0.044696 0.163562 -0.332205 -0.351534 0.127736 -0.236700 -0.083554 0.041181 -0.299140 0.099583 -0.216715 -0.306472 0.459383 -0.210462 -0.466211 -0.019222 -0.438843 -0.044103 0.031086 -0.078368 0.130666 -0.076836 0.090732 0.064567 0.030639 -0.146099 0.128395 0.565503 -0.393041 -0.494722 0.020951 -0.072057 0.506394 0.065465 -0.250494 0.391602 0.906502 0.322321 0.126148 -0.229283 -0.198371 0.142098 -0.017346 -0.211634 -0.306784 -0.274568 0.242079 -0.732161 0.309060 0.446858 -0.021458 -0.305644 0.017464 0.230201 0.442642 -1.031825 0.805002 0.059751 0.558095 0.196777 -0.272715 -0.086090 -0.205592 0.304522 -0.225978 0.243521 0.247161 -0.537662 0.118992 -0.160240 -0.333523 0.858875 0.262444 -0.278353 0.106016 0.306858 -0.356047 0.268117 -0.681046 -0.499884 0.066611 0.081125 0.069435 0.845599 -0.117788 -0.184478 -0.644788 0.101134 -0.693191 0.057989 -0.705175 0.238567 0.634578 -0.665294 0.108835 0.090617 -0.023362 0.249126 0.164771 0.587728 0.120418 -0.048819 0.018853 0.148979 -0.065924 0.034830 0.084208 -0.038846 -0.349729 -0.410854 0.109087 -0.916912 0.059061 -0.175761 0.450016 0.028556 0.255541 -0.139550 -0.193423 -0.457812 -0.468403 -0.108974 -0.096292 0.445103 0.554666 -0.243310 0.136654 -0.347992 0.665450 0.006013 0.117888 -0.271527 0.021086 0.108048 -0.701463 -0.925023 -0.058353 0.312316 -0.161662 -0.680818 -0.332560 -0.099558 -0.305017 -0.115544 0.709838 0.781999 -0.064859 -0.264052 0.714030 -0.012504 0.593075 0.855368 -0.023104 0.540328 -0.208254 0.060813 0.002853 -0.031676 -0.417944 -1.056370 0.041787 0.008661 -0.050099 0.212339 0.132244 0.237627 -0.011923 -0.263705 -0.120771 -0.168720 -0.283695 -0.561698 0.765051 0.331155 0.380680 0.410059 0.749107 -0.143986 -0.652979 0.323566 0.171729 0.330178 -0.175368 -0.207152 -0.026129 0.178388 -0.487912 -0.331763 0.117027 0.177453 -0.271984 0.056432 1.004187 0.064881 0.059925 0.355764 0.215390 0.692510 -0.097755 0.380588 -0.680368 0.117460 0.275691 -0.316052 -0.399906 0.355909 -0.075589 -0.001554 0.415687 -0.048530 -0.100953 -0.237035 -0.507771 -0.093377 0.034960 0.522769 0.255118 -0.378323 0.071971 -0.211728 -0.133890 0.345992 0.210045 0.603920 0.202520 0.351231 -0.144837 0.155600 0.105620 0.356521 -0.204596 0.075002 0.418766 0.120587 0.254212 0.217283 -0.079613 0.087836 0.441077 -0.237343 0.325870 0.494661 0.779018 -0.060666 -0.109325 -0.215750 -0.280693 0.419372 0.879205 -0.707852 0.227358 0.276162 0.486863 0.245588 -0.754054 -0.147354 -0.265464 -0.208479 0.065206 -0.334055 -0.162558 0.049523 0.496187 -0.072608 -0.480754 0.278344 0.102042 0.054541 -0.019713 0.071945 -0.248244 0.265826 -0.819364 0.294018 0.186381 0.294719 -0.036820 -0.090456 -0.079619 0.298071 -0.498495 0.299769 0.123537 0.167935 0.414200 0.429489 0.609908 -0.220822 -0.071121 -0.622182 0.072358 -0.254880 -0.190161 0.105467 0.310485 -0.438898 0.080121 0.079453 -0.681414 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::empty() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::front() = 0.199628 0.265665 0.079470 -0.317338 -0.590034 0.046303 -0.209447 -0.169693 -0.045295 -0.008585 0.210602 -0.380828 -0.314136 0.590605 -0.228220 -0.434546 -0.218633 -0.362239 -0.154715 -0.007881 -0.018145 0.250812 -0.057252 0.121044 -0.008408 0.119972 -0.217811 0.022652 0.509506 -0.423650 -0.373488 0.000548 0.102938 0.390620 0.026732 -0.185872 0.199284 0.714895 0.073722 0.160965 -0.462019 -0.304248 0.142384 0.029462 -0.039691 -0.535465 -0.307624 0.340191 -0.413749 0.086155 0.347795 0.082424 -0.323515 0.006670 0.242220 0.343791 -0.883757 0.863047 0.141850 0.272451 0.157689 -0.071052 -0.038253 -0.025167 0.230231 -0.263305 0.027187 0.237429 -0.383136 0.024301 -0.059014 -0.386890 0.754616 0.110151 -0.327230 0.096294 0.155072 -0.242871 0.362089 -0.836790 -0.444111 0.121205 0.167885 0.231664 0.478035 0.082888 -0.097390 -0.621425 0.055204 -0.614256 0.172893 -0.491340 0.141696 0.476049 -0.466078 0.011883 0.097955 -0.246774 0.597479 0.290499 0.474872 0.096828 0.191681 0.094770 0.010012 0.140979 -0.048432 0.046837 -0.138396 -0.569625 -0.177527 0.211133 -0.786378 0.125122 0.007836 0.369094 0.095787 0.047451 0.092280 -0.068841 -0.480690 -0.499214 0.025632 -0.040612 0.357919 0.579547 -0.208305 0.171052 -0.356478 0.512907 -0.026489 0.211252 -0.013396 0.072427 -0.023144 -0.824005 -0.832678 0.134981 0.201970 -0.204840 -0.401750 -0.469106 0.080189 -0.223162 -0.239111 0.422246 0.789117 -0.243915 -0.379062 0.662005 0.197080 0.223037 0.625415 -0.102682 0.738660 -0.205180 -0.033473 0.067399 -0.203891 -0.235398 -0.422516 0.136121 -0.132811 -0.059192 0.145112 -0.466572 0.019674 0.017317 -0.319345 -0.071683 -0.007807 -0.212417 -0.335894 0.477907 0.250892 0.361219 0.196953 0.595166 -0.176878 -0.542123 0.330674 -0.007039 0.143513 -0.064208 -0.241179 0.124091 0.244297 -0.438484 -0.081379 0.048460 -0.064095 -0.422581 0.041512 0.411395 0.115345 0.138799 0.306119 0.233634 0.638852 -0.014416 0.292001 -0.602427 0.137876 0.203923 -0.158173 -0.620166 0.170091 -0.303751 0.017955 0.401671 -0.200272 -0.019767 -0.028199 -0.332044 -0.061231 -0.216263 0.459068 0.144003 0.096270 0.043988 -0.330899 0.239779 0.160730 0.291334 0.461986 0.406982 0.427292 0.052440 0.124787 -0.004110 0.420817 -0.077345 0.082447 0.118868 0.263433 0.237962 0.225587 0.026892 0.342872 0.254421 -0.270843 0.434931 0.160794 0.774686 -0.239640 -0.011036 -0.222916 -0.132379 0.364499 0.916210 -0.603722 0.039280 0.203472 0.221228 0.114228 -0.400829 -0.062329 -0.229684 -0.328959 0.239212 -0.064146 -0.052918 0.008806 0.399205 -0.096873 -0.446308 0.371273 0.011023 0.109718 0.003683 0.037540 -0.164522 0.230892 -0.622664 0.108048 0.389339 0.340989 -0.210704 -0.345996 -0.080668 0.363935 -0.193515 0.357386 -0.271866 0.141175 0.530639 0.391735 0.203658 -0.066879 -0.292331 -0.616988 0.232385 -0.042944 -0.197787 0.013879 0.207210 -0.346646 0.044346 0.106504 -0.528008 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::pop_front() = 0.880981 -1.280698 1.742197 -1.628192 -1.988641 1.847942 -2.764380 -1.087881 0.757114 0.381865 0.700140 0.024413 -0.259258 1.661830 -0.360028 -2.462659 -0.109345 -0.128710 0.808029 -0.906367 0.195661 0.326726 -0.317801 0.663113 -0.597971 -1.490367 0.098358 0.806882 1.440889 0.113556 -1.460498 -0.509468 -1.821587 2.236333 0.685882 0.017077 1.171933 4.163433 0.952774 1.388976 -0.942911 -2.411980 0.450377 0.121466 -0.468948 1.612735 -0.910068 0.644787 -2.419926 0.247921 2.306906 -0.537761 0.770133 0.646036 0.733833 -0.170418 -2.905774 0.561704 -0.611409 0.057003 -0.188921 -0.684781 0.220389 1.474205 -0.934605 -0.741521 2.143987 2.397281 -1.202551 -0.555136 0.136621 -2.545874 3.212771 1.391866 -1.015767 -0.015199 2.975283 -1.287132 1.835050 0.097069 -3.614814 -0.157326 -1.151720 -3.561564 3.448741 -0.419935 2.352929 -3.403755 3.152203 -3.813634 1.565748 -1.597881 1.261576 2.580377 -2.720828 0.338175 2.318186 4.316900 1.342101 -1.218683 2.801245 0.986885 -1.080579 1.404738 2.093036 -0.270947 -0.901382 0.022668 -1.968240 -2.470003 -0.414016 -2.478205 -3.723264 0.475945 0.029599 1.167233 -0.424324 0.940726 -1.086040 1.423956 -3.879910 -0.524402 -0.167992 -0.395578 1.095652 1.162671 -1.475638 1.127579 0.195816 3.340635 -2.624538 -0.459542 -0.256764 0.652384 -0.059543 1.986894 -3.561512 1.435554 1.993077 -1.383406 -2.702648 -1.622009 -1.055327 1.570152 -0.105228 5.594959 4.594626 -1.264990 -1.635141 2.386326 -1.293705 0.436357 3.710227 0.561049 1.854205 -0.899623 -0.874950 -2.507967 -0.703958 -0.804493 -2.386817 1.331131 1.373514 2.029009 0.719081 3.002114 3.602420 -1.564554 -2.049263 -2.289481 0.783100 -1.458479 -1.344876 2.541051 -0.663737 0.955362 2.297178 3.649523 -0.680898 -1.960843 0.794050 -1.947223 -0.129296 -1.379367 -0.483237 -1.060620 1.532937 -1.782343 -1.419592 -1.157239 -1.059740 -0.495430 -0.082496 4.168930 1.556764 1.392459 1.025599 3.034599 4.242656 2.151437 -0.918990 -2.680037 0.575356 1.763935 -2.120630 0.722350 -0.027162 -1.067883 0.535554 0.554627 0.054340 1.232101 -2.872299 -1.679022 -2.485283 0.857723 1.811669 1.679490 -5.541441 0.534469 0.876149 0.942805 2.013632 0.863616 2.981215 2.567659 3.094569 -0.217513 0.697741 0.859549 0.597395 -0.679241 1.330410 2.522207 0.571440 2.769312 1.056887 0.868514 1.494412 2.674135 1.305266 1.622169 -0.104573 4.188019 0.018951 0.197261 -1.724712 0.171079 1.866911 4.595561 -1.731151 2.704871 1.230968 1.947980 -0.166089 -3.598450 0.839517 -1.438601 1.872167 -1.032881 0.563489 0.307748 -1.333863 1.861279 0.801372 -3.287607 1.244571 0.087810 0.711728 2.777061 -0.230006 -0.179407 -0.388861 -3.332664 3.105616 2.021541 0.693332 -1.759623 1.820993 0.031685 1.669525 -1.364785 1.866272 0.457244 2.205273 0.778860 1.560121 1.999215 0.511166 -2.084177 -1.961618 1.159924 -3.311312 -0.727434 1.509518 1.240823 -1.648622 1.523609 -1.392442 -3.462690 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::deque >::_M_pop_front_aux() = 1.011918 -1.330283 1.916193 -1.876801 -2.553234 2.538157 -3.870120 -2.000968 0.761358 -0.589072 1.144993 0.075931 0.832530 1.730531 -0.601438 -2.440841 -0.766384 -0.031330 0.621622 -1.163599 0.045634 0.054436 -1.091323 0.979544 -1.237446 -1.755292 0.664456 0.597109 0.984029 0.338463 -2.051731 -0.843496 -2.299650 2.892349 1.648708 0.020856 1.678934 4.835621 1.498444 0.759036 -0.609148 -2.703201 -0.117164 0.145771 -0.742311 2.375967 -1.451582 0.443454 -2.552329 1.178709 2.937614 -0.979907 0.772744 1.427452 1.116273 -0.739567 -2.825194 0.485005 -0.377058 0.027228 -0.493830 -1.150116 0.390101 1.701625 -1.383897 -0.612561 3.120516 3.620205 -0.409619 -0.532275 0.189484 -3.925597 3.961082 1.682201 -1.072865 -0.425662 3.342495 -1.968252 2.127959 1.252986 -4.496184 0.056046 -1.272014 -4.554293 4.194179 -0.679995 2.684633 -3.669218 3.811349 -4.778075 0.943583 -1.662510 1.299764 2.738124 -3.695931 -0.129463 2.838298 5.918098 1.529351 -1.392631 2.866623 1.030640 -1.955680 1.514335 2.866437 -0.439835 -0.453876 0.219264 -2.230411 -3.112218 -0.581300 -2.967003 -4.768822 0.706417 -0.090791 0.820112 -1.950579 1.546997 -1.129231 2.049781 -4.085743 -0.807022 -0.421345 -0.430704 1.219431 1.282974 -1.819345 1.769480 0.056983 3.528765 -3.039995 -0.774944 -0.840799 0.592232 -0.223006 2.443226 -5.343022 2.021705 2.955403 -1.708266 -3.230501 -1.328932 -1.568160 2.078691 -0.021085 6.743734 5.210943 -1.916343 -2.168788 2.877962 -0.702888 0.102406 4.860432 0.867851 2.110565 -0.876880 -0.703012 -3.152457 -1.075177 -1.771622 -4.957688 1.407574 1.945495 2.487767 0.921911 3.791726 5.873750 -1.922909 -2.734653 -2.014228 1.171378 -1.434538 -1.782456 3.200877 0.200157 0.972316 3.299528 4.080785 -1.205022 -2.011774 0.546338 -1.808355 0.055476 -1.288917 -0.308460 -1.569530 2.453043 -1.498057 -1.645366 -0.684669 -1.379392 -0.616255 -0.210156 6.589397 1.767329 1.705620 1.315770 2.482430 5.894296 2.678954 -1.022415 -2.675473 0.882151 2.468258 -2.523669 1.480804 -0.336559 -1.308723 0.498177 -0.376422 0.291348 1.593860 -3.692876 -1.635865 -3.191400 1.419474 2.523105 2.551340 -6.696576 1.107983 0.319309 1.066194 2.235292 0.595836 3.609595 3.529473 4.294743 -0.851807 0.909577 0.797317 1.047523 -0.970022 2.023872 3.508876 0.549466 3.651708 1.211913 1.118610 1.126914 3.148142 2.346956 1.914252 0.000433 5.357248 0.082385 0.738510 -2.503953 0.419105 2.297271 5.863185 -1.842579 3.511282 0.991792 2.503159 -0.568987 -4.964304 0.981803 -1.270454 2.234057 -2.061934 0.732434 0.282756 -1.750238 2.435276 1.037504 -3.304606 0.803265 0.309656 0.632255 3.261274 -0.472718 -0.305003 -0.507801 -3.550325 4.313338 2.459485 0.741524 -2.068704 2.054159 0.117587 1.980844 -2.285275 2.150409 1.553060 3.853309 0.885509 1.648768 2.384087 0.001865 -2.792736 -1.889272 1.722177 -3.940212 -0.672367 2.531488 2.113348 -2.267604 2.166899 -1.540438 -4.869814 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp___GLOBAL__sub_I_minimum_cut_in_a_directed_graph.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/n-queen-problem.cpp__solveNQUtil(int (*) [4], int) = 3.088459 0.149466 3.615767 -1.957776 0.454811 1.516977 2.247549 -3.473567 0.500519 8.406219 1.982269 -1.277724 -2.565510 2.323620 -1.502320 -2.732346 3.697798 4.569008 0.653113 -2.462258 -1.215495 0.112232 -1.032460 -3.493054 2.511228 -2.522446 2.744458 3.533182 -1.060548 3.432832 -2.649564 -0.885664 0.313234 7.735118 0.268343 1.268752 -1.444631 5.882637 -5.439928 6.533385 -7.083493 -6.250276 6.941779 1.301211 1.503514 -3.599775 -0.933959 2.180389 -1.583918 -5.175792 0.161839 -3.307883 3.171896 -4.572798 -0.475046 6.396242 -6.901000 -2.043320 0.915536 -4.607405 -6.447550 -0.742966 4.712132 1.115608 -5.019827 -4.628797 2.115341 1.892844 -2.086170 2.408859 -5.762346 -9.017127 2.371707 0.993810 -3.200009 1.169999 -0.228599 -5.494614 2.649964 2.095496 -2.786305 -3.380150 2.030516 -2.953537 2.015006 2.868450 6.685950 -9.729072 1.531932 -7.846971 5.742393 -3.815817 7.769780 5.418645 -3.096600 3.249384 2.976201 5.648860 -0.582206 -0.926247 6.184328 2.789459 1.998533 -2.559705 4.757843 3.840928 -5.904232 -6.899263 -4.288826 -3.477629 1.399003 -2.739709 -6.798586 -0.412568 -7.565689 0.904266 1.101033 -1.771288 -1.332573 7.143931 -10.725470 -0.625036 2.500815 -1.525265 5.341960 4.671953 0.940401 1.310042 1.331120 5.398073 -1.777931 -2.621440 -2.639780 3.582650 -3.225619 -2.554940 -1.576683 0.108328 3.038606 -5.796580 -7.443408 -8.790401 -2.925261 5.337625 -0.966797 4.066057 9.813926 -1.555094 -4.743799 1.860227 -3.243077 -0.471245 6.734903 2.385822 9.680782 -9.694551 5.641299 -2.565751 4.346357 3.710079 6.104994 -2.601478 -3.754813 4.578427 -0.542332 -1.307897 7.575788 -2.494341 1.537998 -1.411648 1.574685 -0.180467 -0.834253 6.743408 -7.452410 5.919884 -4.488617 8.885604 -6.976236 -4.551184 1.326101 -7.741911 -3.227001 -3.969914 -0.753071 -1.795404 6.945804 -5.736477 -4.481862 -2.906850 -2.228738 2.725082 6.404886 -3.267456 -0.902905 -2.318092 -3.754554 6.033375 1.738698 -0.582790 -0.443730 -4.917102 0.122521 3.813139 -1.292636 -6.567862 -0.764122 -5.476993 -1.059712 -1.735083 0.254788 4.705194 -4.581767 -2.506209 0.922818 -1.573915 -0.358293 -3.498845 -7.147103 2.525791 -1.459047 -0.525546 2.045954 8.010460 6.612872 4.546374 -0.107794 -2.461820 2.306778 -5.125790 -6.302582 3.794814 0.922697 4.176853 1.814697 2.825673 0.214158 1.442647 1.649457 -1.112146 3.719393 5.831131 3.345331 5.747850 -1.579145 1.582943 2.448057 -4.521046 3.484550 5.807853 -0.777019 -1.355348 2.403826 0.497724 -3.619092 -3.815483 -0.979937 -1.412860 -3.601011 3.016668 4.007005 -1.571487 -4.234119 10.562064 1.882446 -11.096681 4.927107 -0.493565 1.080795 6.414902 -3.383169 2.953072 2.579927 2.085669 3.244624 1.056421 5.708122 -6.900794 0.941358 -0.581564 4.365721 5.016488 -2.990183 -11.968778 2.053781 0.762996 7.606271 3.474954 7.630535 -3.577144 4.133532 -2.822951 -4.236311 -0.361967 -1.878411 4.597312 0.238375 -0.698622 -11.366463 2.488410 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.283464 0.129071 0.418705 -0.636240 -0.329674 0.252920 -0.188528 -0.301872 0.172756 0.418578 0.149841 -0.313681 -1.199191 0.539661 -0.329903 -0.953336 0.173760 -0.455847 0.005292 -0.454021 -0.230319 0.107673 -0.027855 -0.282416 0.327378 -0.411279 -0.039480 0.496498 0.941256 -0.417929 -0.490936 -0.000366 -0.020473 1.157195 -0.009246 0.071762 0.322670 1.454303 0.236856 0.614506 -0.952398 -1.053333 0.891092 0.068666 -0.188988 -0.384129 0.239763 0.421605 -1.398491 0.203435 0.339034 -0.258060 -0.107792 -0.464134 0.118656 0.998695 -1.721888 1.142445 -0.109717 0.080388 -0.323794 -0.411999 0.091869 -0.039753 0.266489 -0.633495 0.317663 0.431974 -1.314101 0.325036 -0.451423 -0.613569 1.282970 0.390221 -0.478803 0.312242 0.247566 -0.369873 0.342685 -0.961118 -0.670798 -0.210141 0.552061 0.062898 1.028095 0.343107 0.206515 -1.485795 -0.165193 -1.230314 0.653319 -0.852095 0.979472 0.943956 -0.790096 0.572273 0.251566 -0.096481 0.041408 0.012963 1.165337 0.017014 0.376993 0.058481 0.390561 0.075631 -0.383899 -0.399045 -0.210437 -0.558594 -0.453745 0.044563 -1.222799 -0.067814 -0.944497 0.763392 0.411787 0.215592 -0.457554 0.056563 -1.537209 -0.913749 -0.062834 -0.213577 1.197175 0.709428 -0.060323 0.263270 0.115856 1.210374 -0.114770 -0.140655 -0.555172 0.347840 0.546369 -0.760428 -1.255715 -0.138180 0.515505 -0.581147 -1.313803 -0.699342 -0.573587 0.110627 -0.122326 1.305468 1.689177 -0.089091 -0.680222 0.972049 -0.955627 0.977048 1.451491 0.229431 1.189174 -0.975138 0.524786 -0.140772 0.405137 0.134244 -0.086623 -0.195098 -0.459649 0.124235 0.476795 0.802867 -0.334338 -0.188215 -0.122893 -0.830931 -0.254866 -0.573474 -0.759765 1.085090 -0.378687 1.140668 0.082470 1.626095 -0.906404 -1.400496 0.555457 -0.235974 0.107590 -0.326558 -0.273914 -0.138801 0.453674 -1.115870 -0.777515 -0.203290 0.183883 -0.116504 0.616834 0.887246 -0.004302 -0.181072 -0.018697 1.109210 0.805320 -0.277127 0.207667 -1.230988 0.145626 0.552627 -0.158089 -0.885495 0.380470 -0.311237 -0.130014 0.952223 -0.035947 0.289855 -0.228366 -0.616813 -0.079035 -0.063649 0.634256 -0.081792 -0.927145 0.277257 -0.026730 -0.453660 0.547496 0.885813 1.104711 0.371029 0.151666 -0.239943 0.220252 -0.351404 0.320627 -0.003801 0.230516 0.746252 0.320171 0.789217 0.297143 0.112564 0.648687 0.615705 -0.387889 0.833860 0.428225 1.309656 -0.769274 -0.035078 -0.049922 -0.610533 0.693724 1.382087 -1.300795 -0.079621 0.670908 0.743326 0.313777 -1.066899 -0.333078 -0.597475 -0.154590 0.536943 0.023150 -0.284069 -0.251806 1.395193 0.139415 -1.358867 0.998936 0.088792 0.172150 0.104504 -0.340749 -0.454839 0.682955 -1.103192 0.308419 0.291496 0.631514 -0.608153 -0.003907 -0.145795 0.841279 -0.408198 0.011128 -0.582592 -0.181308 0.517311 1.175436 1.226541 0.217074 -0.239294 -0.717780 -0.187329 -0.640221 -0.246499 0.003423 0.525296 -0.664590 0.181094 -0.520671 -0.527243 +PE-benchmarks/n-queen-problem.cpp__main = 0.119711 0.057421 0.034057 -0.189525 -0.114566 -0.003348 0.068765 -0.067943 -0.061023 -0.199867 0.093506 -0.141551 -0.261953 0.216952 -0.040657 -0.242276 0.021543 -0.236004 -0.123475 0.078801 -0.051914 0.051508 -0.016662 -0.091138 0.075777 0.079244 -0.076906 0.116501 0.217173 -0.278853 -0.184349 0.000000 0.090766 0.272704 0.029079 -0.019678 0.069003 0.378773 0.096547 0.159953 -0.235610 -0.091664 0.241820 -0.063412 -0.113570 -0.388820 -0.137039 0.198142 -0.292839 -0.015795 0.096387 0.000000 -0.150952 -0.154978 0.001358 0.363241 -0.486404 0.414015 0.123916 0.150705 0.022678 -0.088517 -0.048827 -0.155473 0.181072 -0.182388 -0.003967 -0.031426 -0.279883 0.068973 -0.154295 -0.143594 0.536504 0.083626 -0.088923 0.087863 -0.030689 -0.108029 0.120900 -0.331746 -0.154630 -0.040017 0.105489 0.242781 0.312023 -0.007357 -0.134861 -0.351859 -0.125816 -0.341390 0.079988 -0.327201 0.129916 0.250497 -0.234499 0.125797 -0.009317 -0.275619 0.029011 0.172031 0.244174 -0.026754 0.082688 -0.017518 0.094527 -0.028757 -0.021133 -0.084748 -0.009399 -0.176707 -0.090107 0.123104 -0.449742 0.079006 -0.144012 0.231280 0.049580 0.097032 0.039123 -0.137137 -0.148717 -0.099069 0.038952 -0.056409 0.241633 0.320810 -0.053335 0.012107 -0.197448 0.225954 0.086001 0.148880 -0.094099 0.092662 0.143988 -0.562810 -0.277651 -0.050524 0.101423 -0.103620 -0.296663 -0.198468 0.006473 -0.112755 -0.140266 0.118487 0.359996 -0.064512 -0.176934 0.307216 0.168032 0.294868 0.255723 0.007580 0.381016 -0.161964 0.047223 0.126490 -0.033483 -0.039714 -0.322886 -0.086029 -0.177495 0.003401 0.029878 -0.293934 0.144254 0.043212 -0.061542 0.223998 -0.130712 -0.141137 -0.318325 0.305960 0.309304 0.296563 0.103974 0.363358 -0.110219 -0.273007 0.154298 0.186391 0.076668 -0.094188 -0.122814 0.050582 0.054153 -0.258536 -0.160229 0.036991 0.073950 -0.143736 0.191172 0.234972 -0.021629 -0.002933 0.072766 -0.017567 0.194041 -0.191752 0.182375 -0.312529 0.083124 0.108814 0.000559 -0.341508 0.102734 -0.055054 -0.040730 0.273798 -0.030307 0.020429 0.026253 -0.153860 0.145996 -0.068588 0.144980 0.022984 0.045052 -0.026486 -0.061984 -0.076754 0.103862 0.254849 0.249749 0.094439 0.018249 0.021246 0.026061 0.039048 0.015976 -0.132181 -0.101351 0.200650 0.130390 -0.001781 0.115478 0.003433 0.169770 0.119722 -0.125767 0.229784 0.280349 0.313104 -0.040389 -0.117475 0.042292 -0.144973 0.242867 0.312923 -0.340320 -0.050412 0.140996 0.131215 0.064063 -0.255965 -0.108657 -0.080559 -0.264771 0.298348 -0.073075 -0.027060 0.002819 0.333676 -0.087356 -0.295264 0.203624 0.079803 0.087201 -0.043649 0.003304 -0.019835 0.207575 -0.222741 -0.031846 0.093205 0.231489 -0.109956 -0.131360 -0.018426 0.141435 -0.133774 0.109803 -0.129500 -0.076664 0.184303 0.284900 0.166028 -0.075127 -0.048690 -0.181959 -0.002961 0.057535 -0.003729 -0.045972 0.103766 -0.152532 -0.128478 -0.065171 -0.097506 +PE-benchmarks/birthday-paradox.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.140662 0.555214 0.035692 -0.677634 -0.795175 0.485366 -1.019932 0.075618 -0.316423 0.103225 -0.452740 0.599464 -0.186311 0.316605 -1.083211 -0.494275 -0.548588 -0.274546 -0.447275 -0.173717 -0.518309 0.356897 0.102374 -0.701524 0.699243 -0.725040 -0.333510 0.568756 0.024949 -0.391557 0.146223 -0.006270 -0.311440 0.768937 -0.504518 0.364060 0.911524 0.380742 0.366425 -0.063051 -0.565393 -0.601939 0.652723 -0.105938 0.421933 -0.906967 -0.346179 -0.227264 -0.714611 0.393432 -0.215087 -0.897300 -0.753185 0.171270 0.720816 0.090632 -0.881052 0.526065 0.144291 0.331282 0.017601 -0.214278 0.100934 -0.395434 0.597239 -0.657589 -0.741019 0.760485 -0.288970 -0.100968 -0.315811 -0.012915 0.577232 0.113139 0.105013 0.143967 -0.292119 -0.495414 -0.286790 -1.133234 -0.149777 -0.288052 0.897786 0.313498 0.448672 0.205432 -0.101073 -0.216578 -0.289504 -0.272831 -0.364937 -0.125313 0.636487 0.233997 -0.199525 -0.259752 0.390151 -0.183124 0.504081 0.709086 0.603447 -0.275611 0.145697 -0.363170 -0.191214 0.169444 -0.176468 -0.247780 0.402086 -0.448232 -0.210747 0.215990 -0.688487 0.106841 -0.081625 0.373075 -0.283302 -0.194010 -0.282960 0.186368 -0.938337 -0.594164 0.038452 -0.210407 -0.083425 -0.335093 0.150744 -0.427989 0.518064 -0.292268 -0.127111 -0.416131 -0.301498 0.365161 -0.165179 -0.647094 -0.853990 -0.840225 -0.281697 -0.584223 -0.358816 -0.040092 -0.438202 -0.282242 -0.099484 0.161290 1.233492 -0.233729 -0.189431 0.088949 0.001897 0.296170 0.853297 0.358017 0.236254 -0.196032 -0.180559 -0.097846 -0.225234 0.213517 -0.674959 -0.703677 -0.010655 0.123176 0.332878 -0.356161 -0.315900 -0.101307 0.337592 0.080269 0.017025 0.105768 -0.243039 0.477107 -0.047438 1.031934 0.354756 0.914493 -0.767748 -0.580302 0.784059 0.018139 0.508628 -0.026115 -0.387627 0.105530 -0.113175 -0.027127 -0.202041 0.304254 0.331700 0.067409 0.297571 0.387937 0.140887 -0.476880 -0.299625 0.594590 0.470883 -0.487439 0.881325 -0.133508 0.741138 0.602647 0.036435 -1.074935 -0.168177 -0.047363 -0.123823 0.424715 -0.030298 -0.314007 0.534963 0.173999 0.210362 -0.648469 -0.092509 0.568726 0.487220 -0.056304 -1.125829 -0.297238 0.155672 0.359132 0.633695 -0.006720 -0.299423 0.278213 -0.264819 -0.652923 1.093602 0.073475 0.033283 0.286467 0.640343 0.589539 0.432289 0.455001 -0.142340 0.340023 0.015753 0.870077 -0.107540 0.699297 -0.857932 0.294126 -0.507220 -0.260088 0.633328 0.283840 -0.527627 0.001259 0.057504 0.474421 0.504513 -0.877072 -0.244919 -0.003764 -0.659739 0.332145 0.042034 0.214766 0.120810 1.092390 0.085001 -0.063604 0.272534 -0.623084 0.106210 -0.408144 0.037301 -0.393406 0.281899 -0.403569 -0.667805 0.215002 0.530035 -0.495423 -0.129448 0.022390 0.454005 -0.484917 0.453814 0.033570 0.323049 -0.010598 0.226620 0.329231 0.138742 0.215454 -0.721425 0.302451 0.197335 -0.415993 -0.230753 -0.466758 -0.376108 0.308324 -0.409878 -0.133079 +PE-benchmarks/birthday-paradox.cpp__main = 0.155371 0.091281 0.106526 -0.049004 -0.116081 0.097846 -0.235414 -0.141023 -0.030293 -0.100375 -0.005464 -0.021407 -0.225891 0.074104 -0.240126 -0.257772 -0.119716 -0.052394 -0.016039 -0.197867 -0.026333 -0.012859 -0.006521 -0.054706 0.006561 -0.114060 0.023820 -0.020757 0.174366 -0.137413 -0.064581 -0.015902 0.079519 0.202613 0.068316 0.099616 0.050075 0.203707 0.428823 -0.056577 -0.335215 -0.280444 0.085783 0.001547 0.064331 -0.239063 0.018808 0.059350 -0.396673 0.270627 -0.015520 -0.092888 -0.144161 -0.039107 -0.014742 0.128220 -0.410092 0.487017 -0.060968 -0.035869 -0.023069 -0.035499 -0.014118 -0.105327 0.402826 -0.098846 -0.003235 0.341000 -0.309071 0.186840 -0.014934 -0.034770 0.418157 0.002480 -0.095984 0.014853 0.024793 0.137749 0.011282 -0.418077 -0.110016 -0.079503 0.201593 0.308428 0.116222 0.204106 -0.066401 -0.245982 -0.037606 -0.235818 0.141276 -0.083392 0.169553 0.028748 -0.212715 0.094526 0.114121 -0.297296 0.091458 0.155703 0.184793 -0.057942 0.005014 0.030729 -0.034383 -0.113256 0.114970 0.041523 0.089189 -0.123489 -0.180320 0.139804 -0.332667 -0.060236 -0.146814 0.399059 -0.060717 0.095953 0.075480 -0.235968 -0.386398 -0.313221 -0.021631 -0.017262 0.285187 -0.005935 0.015557 0.124793 -0.020202 0.193164 -0.063191 -0.119040 -0.070585 0.032694 0.237172 -0.521287 -0.498330 0.008127 0.097879 -0.065084 -0.212315 -0.006979 -0.111634 0.036610 -0.031774 0.165212 0.252829 -0.017381 -0.192471 0.157372 -0.085970 0.159257 0.412850 0.101630 0.206028 -0.120350 0.051270 0.077267 0.018734 0.049477 -0.487447 -0.090831 -0.071009 0.057082 0.214110 0.100968 -0.231013 -0.146911 -0.079473 -0.073844 -0.111042 -0.073220 0.006333 0.034675 0.238146 0.237967 0.035211 0.281633 -0.236042 -0.381350 -0.023015 -0.141651 0.006875 0.276271 0.072243 -0.102997 0.079454 -0.355877 -0.151260 0.114905 -0.030916 -0.026282 0.136421 0.379354 0.003958 0.032980 -0.012893 0.192410 0.154441 -0.067171 0.106226 -0.157538 -0.009616 0.113746 0.108272 -0.309184 0.073193 -0.041904 0.010993 0.239489 0.011828 0.014415 0.143207 -0.009460 -0.076842 -0.128259 0.237585 0.032553 0.416123 -0.014833 -0.111139 -0.086380 -0.026493 0.142378 0.221507 0.057030 0.011218 0.007199 0.096050 -0.184274 0.466785 -0.050229 0.172819 0.100991 0.028020 0.026693 0.032185 0.003314 0.124745 0.178216 -0.080654 0.147076 0.042780 0.263879 -0.451142 0.109011 -0.129305 -0.041128 0.146408 0.281835 -0.411230 0.037270 0.067099 0.110776 0.267868 -0.253089 -0.067132 -0.038914 -0.163665 0.185241 0.155860 0.004928 -0.065832 0.211673 0.080230 -0.097604 0.333186 0.066061 -0.071104 -0.156878 -0.077844 -0.259394 0.163292 -0.163208 -0.206786 0.071939 0.177883 -0.178030 -0.125313 -0.061072 0.239895 -0.194361 0.073902 0.115412 -0.061491 0.272440 0.183208 0.124866 -0.178333 -0.074932 -0.374580 -0.015754 -0.028799 -0.082312 0.158770 0.017563 -0.068485 -0.014636 0.231650 -0.192436 +PE-benchmarks/birthday-paradox.cpp___GLOBAL__sub_I_birthday_paradox.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/edit-distance.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.138766 0.274985 0.072463 -0.507505 -0.659927 0.108026 -0.105061 -0.190916 0.036130 -0.195685 0.472023 -0.463029 -0.520809 0.734573 -0.153538 -0.606736 -0.043665 -0.390432 -0.134207 0.095327 0.022858 0.328797 -0.083997 0.085047 0.103877 0.149096 -0.363797 0.226545 0.864086 -0.582434 -0.596326 0.063651 0.067994 0.557750 0.001579 -0.231136 0.321801 0.915157 -0.195432 0.257190 -0.604453 -0.213647 0.377288 0.095197 -0.320069 -0.825876 -0.546591 0.370026 -0.677755 -0.009550 0.576783 -0.052451 -0.151680 -0.009438 0.319189 0.787980 -1.222355 0.921675 0.217081 0.376777 0.277731 -0.044772 -0.031613 -0.082392 0.270400 -0.380544 0.104834 0.110610 -0.432726 -0.125135 -0.159836 -0.657629 1.178155 0.167927 -0.417455 0.148418 0.110364 -0.617824 0.455842 -0.809846 -0.537305 0.126874 0.229364 0.327710 0.648299 -0.071092 -0.099119 -0.843859 -0.271096 -0.832863 0.305629 -0.661008 0.345693 0.592414 -0.739828 -0.021157 0.137787 -0.476198 0.645555 0.331603 0.728050 0.077832 0.272005 -0.038512 0.083727 0.197135 -0.145413 0.007447 -0.237957 -0.695088 -0.209525 0.244819 -1.224671 0.127010 -0.235183 0.304199 0.213104 -0.102665 0.144565 0.146627 -0.189881 -0.340659 0.021941 -0.062374 0.449065 1.051012 -0.133933 0.087931 -0.393584 0.703590 -0.064730 0.344743 -0.203058 0.132867 0.071046 -1.281264 -0.859940 0.071175 0.244025 -0.401785 -0.572102 -0.617451 0.174000 -0.398150 -0.287556 0.316356 1.075425 -0.361705 -0.557225 0.828329 0.429227 0.364962 0.802477 -0.158611 1.115343 -0.461617 0.123547 -0.049448 -0.207484 -0.297807 -0.294130 0.113421 -0.161600 -0.138588 0.152715 -0.918356 0.379361 0.087086 -0.322366 0.262596 -0.021398 -0.267725 -0.650993 0.714142 0.569458 0.517987 0.271919 0.860896 -0.309666 -0.841469 0.513645 0.391574 0.107889 -0.208323 -0.486069 0.352684 0.238847 -0.429787 -0.119063 -0.142696 0.092689 -0.476078 0.111671 0.554829 0.133683 0.088364 0.232679 -0.029354 0.797453 -0.049419 0.440672 -0.793446 0.175174 0.326849 -0.285567 -0.936808 0.246473 -0.495059 0.039221 0.576078 -0.291866 0.136575 -0.090653 -0.520080 0.002858 -0.247970 0.581157 0.109797 -0.250397 0.102181 -0.423415 0.086702 0.264831 0.474599 0.640247 0.550915 0.421897 0.034127 0.193665 0.046299 0.283606 -0.156842 -0.024040 0.322058 0.365109 0.328126 0.264688 0.051540 0.426650 0.263811 -0.166109 0.577578 0.417259 0.975195 0.015973 -0.129956 -0.135524 -0.357995 0.498888 1.167257 -0.614287 0.022443 0.276118 0.465525 0.101228 -0.781344 -0.009694 -0.287046 -0.541809 0.576230 -0.175988 0.010323 -0.134844 0.685884 -0.090217 -0.738623 0.532449 -0.036398 0.167504 -0.015441 0.059330 -0.167854 0.282958 -0.825438 0.229108 0.436498 0.596104 -0.275470 -0.471928 -0.111565 0.435277 -0.167069 0.347066 -0.609339 0.139496 0.563744 0.624986 0.437785 0.114024 -0.303049 -0.625754 0.124392 -0.094413 -0.196551 -0.160176 0.200848 -0.558986 -0.009600 -0.151585 -0.419066 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.376892 0.863463 5.741993 -4.392338 -2.168426 0.620419 -2.303563 1.231714 2.658170 7.841153 1.473690 -4.286122 -9.397969 4.921883 -3.689354 -6.620391 4.667587 0.422621 4.226164 -5.084682 0.880069 0.889250 3.583209 -2.185800 3.366920 -2.995320 -4.129017 4.425484 10.845932 -2.141774 -1.134914 2.457408 1.465845 6.690925 -4.626568 -2.938154 1.093328 7.717962 -0.873133 3.783299 -8.080996 -5.054904 8.343362 2.312384 0.432181 -6.418283 -1.487760 3.344401 -8.682186 -2.950056 0.565788 -0.267895 1.993812 -5.651518 -2.691254 9.068274 -15.225598 4.854202 -1.846558 -1.544299 -1.115744 4.067897 2.502153 2.115116 3.454973 -4.901095 0.350870 0.997319 -9.025973 1.015782 -1.263655 -2.173192 6.170271 0.038064 -2.952118 4.672439 5.107553 -2.812185 3.967778 -8.967015 -3.105900 -1.912510 1.891727 -2.082939 5.495396 1.132897 4.130151 -8.860773 0.904089 -5.681083 9.018939 -6.469242 5.890517 6.037070 -4.449839 4.352751 2.723095 -3.540055 4.132444 1.170950 11.117141 3.206411 5.160560 0.367116 2.240780 2.477745 -3.629242 -1.876232 -4.230536 -4.835539 -2.987100 -0.893935 -7.890058 -0.256857 -5.686888 3.803176 8.488281 -3.903054 -1.655008 4.492841 -7.724859 -3.486905 1.293196 -0.949158 2.258076 6.861004 0.468624 -1.766788 2.559133 10.321653 -2.450664 -2.221670 3.965838 2.454008 2.285375 -8.731934 -3.120269 -0.357084 -0.608787 -5.158826 -6.265882 -8.081119 0.047518 -0.958603 -0.532233 6.635635 13.248715 2.383283 -5.035309 4.681592 -3.934821 2.415464 10.046486 0.976414 12.091058 -8.237906 0.717202 -3.496450 2.590496 5.360733 7.377548 0.263883 -0.313821 2.148783 3.660818 -0.803985 -3.845876 -2.858275 2.570655 -1.209919 -0.371490 -3.205664 -3.916999 4.556356 -1.017097 7.925933 -0.729710 11.695144 -1.214265 -13.162127 4.492954 -2.540375 -1.530514 1.070156 -1.904987 0.571195 0.733207 -6.636248 -4.200688 -6.171263 0.319348 0.219810 4.107469 -0.169028 3.887091 -0.009397 -3.254572 7.581435 0.599554 -1.153249 3.043452 -10.514852 -1.825024 3.109591 -1.731722 -10.020351 2.716948 -4.979054 2.307072 6.718615 -2.503427 4.623741 -2.617212 -5.624033 -0.510048 -2.679404 1.394028 -5.270744 -5.662679 1.003778 -0.445625 0.593933 3.367678 8.461725 9.029919 2.724716 -2.542051 2.400706 1.896129 -2.769428 0.968575 -0.077324 -0.433492 1.913539 1.598194 2.568757 -0.510708 2.136131 6.174949 2.888843 -3.376093 6.501552 -0.411976 5.200501 -4.097875 -0.533554 1.164902 -5.628476 4.298381 8.963570 -3.528282 -2.574063 4.775546 3.425859 2.103521 -8.546486 -0.013175 -3.225778 -1.048445 6.879617 2.564024 -0.534701 -2.116449 4.515866 4.118466 -11.542477 10.528186 -1.324669 -1.066969 2.556793 -1.521170 -1.947128 2.757073 -5.909531 -1.919049 1.946126 4.643981 -7.661155 0.625968 0.349705 8.258806 -0.909680 1.567172 -14.161799 -3.147026 2.409142 4.443932 5.553041 7.205435 -3.172130 -7.611285 -0.596769 -3.431074 -5.295667 -3.330130 -0.364758 -5.517698 1.006890 -2.019670 1.442341 +PE-benchmarks/edit-distance.cpp__main = 0.366742 0.365349 2.434689 -2.326334 -2.148137 -0.032698 -2.979885 1.661315 1.304965 1.601297 0.895788 -3.006222 -5.184047 3.110379 -1.505359 -4.377844 1.238081 -0.589565 2.247805 -2.615581 1.128621 0.607122 2.242444 -0.608797 1.330911 -1.182833 -3.572479 1.818380 8.044125 -1.930679 -0.382931 1.678249 1.146035 2.556680 -2.932829 -2.077071 1.412018 4.422494 0.971722 0.452619 -3.024246 -2.637541 4.039171 1.015591 -0.737411 -2.496274 -1.303593 1.642473 -6.589135 0.189725 0.776547 1.132870 0.029745 -2.340044 -1.216158 3.976574 -8.917587 4.814157 -1.226450 0.527256 1.086509 2.185007 -0.390924 0.752874 3.888106 -1.518797 -0.322608 0.461382 -4.993342 -0.249274 0.886292 0.623646 5.006100 0.180054 -0.864519 2.908874 3.662870 -0.333970 2.287608 -5.968663 -2.022930 -0.237899 0.820735 0.101769 3.686845 0.392572 0.780742 -3.624854 -0.002794 -2.525590 4.533977 -3.680243 1.692585 3.132396 -3.766179 2.038711 1.406617 -3.443143 3.304882 1.038284 5.849020 1.185608 2.573913 1.232897 0.108621 0.920057 -0.710740 0.772497 -1.678530 -2.841043 -2.452874 -0.107122 -4.538431 0.073361 -1.576148 2.071475 4.806565 -1.876705 -0.575602 0.246570 -2.226531 -2.475976 0.225740 -0.266408 0.594134 3.272073 -0.418423 -1.215092 0.713139 5.663499 -1.206508 -0.583288 2.995726 0.721088 2.341633 -5.821505 -2.956777 0.200424 -0.927112 -2.230370 -2.447914 -3.161507 1.087567 -1.842118 -0.087772 3.190812 6.677165 1.535252 -2.228735 3.483809 -1.147829 2.472888 5.722807 0.069095 5.635271 -2.355635 -1.112010 -1.297741 -0.094870 1.884357 1.052719 1.200173 0.802740 0.157605 2.797126 0.414979 -4.037074 -1.613891 0.612389 -1.571493 -0.365027 -2.827609 -2.690703 1.996622 2.373995 3.416754 1.180795 5.487914 0.713014 -7.654121 3.117606 -0.078544 -0.434551 1.339099 -1.378550 0.821839 -1.099950 -3.332600 -1.677244 -3.192121 1.106804 -1.175129 0.546366 2.091737 2.699473 1.036827 -0.267530 2.351312 0.932478 -0.422437 2.091140 -6.115156 -1.409482 1.595975 -1.245671 -5.120259 2.396716 -1.856809 1.865410 5.046138 -1.673119 1.513553 -0.460752 -3.288001 -0.846716 -1.358148 1.842181 -2.019699 -1.741364 0.129000 0.033837 0.774876 2.102594 3.339775 4.659511 0.920405 -0.820122 2.603883 0.973386 -0.155162 3.253809 -1.214460 -0.508717 0.872635 0.790805 1.291956 0.100935 1.004382 3.725085 2.858133 -3.631023 2.876794 -0.426745 3.122369 -1.537709 -0.812872 -0.247500 -2.208128 2.478979 5.573776 -2.415560 -0.940791 2.657287 2.278869 2.674503 -5.236314 -0.060555 -1.711939 -0.267210 3.679938 0.083102 -0.053177 -0.086347 0.511520 2.027873 -4.699528 5.711004 -0.390354 -0.599564 -0.334143 -0.244876 -2.780789 1.694982 -5.289360 -1.303735 1.375077 1.861004 -3.218553 0.379824 0.117288 4.627097 -1.890752 2.372719 -4.411345 -1.484620 2.147990 0.686509 3.090769 1.770064 -1.385129 -6.964220 0.050846 -1.492634 -3.434845 -1.472633 -1.441276 -3.665415 1.116229 2.073440 -1.472533 +PE-benchmarks/edit-distance.cpp___GLOBAL__sub_I_edit_distance.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/quicksort-for-linked-list.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/quicksort-for-linked-list.cpp__lastNode(Node*) = 0.385251 0.094835 0.998097 -0.802732 -0.602621 0.374882 0.401011 -0.334921 0.425422 1.523052 0.161997 -0.000766 -0.950102 0.981395 -0.311052 -0.828834 0.430279 -0.802529 0.261075 -0.210957 0.051585 0.546194 -0.043453 0.027894 0.274285 -0.409410 0.043782 0.604028 -0.171568 -0.043535 -0.631548 -0.213823 -0.344770 1.193196 -0.128572 0.246947 0.100801 1.756594 -0.923572 1.823830 -1.549127 -1.530895 0.651573 0.070580 0.168890 -0.854001 0.115230 0.367184 -0.476037 -0.546138 0.754951 -0.182874 0.178913 -0.263154 0.629368 0.642427 -1.832111 0.285344 -0.143834 -0.232683 -0.282383 -0.326636 0.180883 0.472659 -0.601573 -0.513262 0.511501 0.314657 -0.941045 0.448176 -0.194135 -1.076442 0.787815 0.583821 -0.773009 0.309680 0.980436 -1.011370 0.901375 -1.300245 -1.035977 -0.252057 0.056748 -0.711102 1.046958 0.283178 0.967618 -1.806095 0.620583 -1.324567 1.149681 -1.071409 0.799535 1.268076 -0.223506 0.548533 0.665721 0.991252 0.562282 -0.451472 1.194594 0.935437 0.785111 0.207178 0.753644 0.623537 -1.085321 -0.825365 -1.040223 -0.874001 0.028321 -0.617976 -1.235419 -0.156525 -0.164382 0.536663 0.656934 -0.142897 -0.412241 0.914520 -2.408594 -0.355926 0.331321 -0.193355 0.713237 0.817536 -0.325547 0.304452 0.138431 1.520792 -0.731441 0.288304 -0.272729 0.436254 -0.640463 0.146047 -0.795423 -0.014225 0.339265 -0.735638 -1.201665 -1.678677 -0.470501 0.973537 -0.023965 1.645243 2.207414 -0.380083 -0.993359 1.041959 -0.528804 0.044338 0.967904 0.243827 0.913637 -0.883537 0.180167 -0.912152 0.346190 0.067133 1.987024 0.434022 -0.255279 0.635294 0.119927 -0.245466 0.440747 -0.376559 -0.341265 -1.167218 -0.051583 -0.779365 -0.301851 1.259950 -1.484378 1.055491 -0.492564 1.608676 -0.871777 -0.962505 0.323179 -1.717133 0.041052 -1.225298 -0.456512 0.157889 0.795494 -1.382287 -0.618522 -0.743911 -0.577310 -0.052075 0.302947 -1.081943 0.173175 -0.066262 0.167252 2.277614 1.110740 0.361434 -0.228128 -1.202639 0.288545 0.259258 -0.409222 -1.036280 0.262048 -0.595998 -0.061840 0.422034 -0.099953 0.332058 -0.750655 -0.791361 -0.145068 -0.513899 0.069388 -0.119465 -1.974062 0.043762 0.290954 0.440394 0.600445 0.625384 1.273290 0.868738 0.734481 -0.250836 0.233543 -0.354678 -0.456806 0.350053 0.489731 0.093455 0.276776 1.168025 0.429039 0.014931 0.810947 0.944519 0.016467 0.953615 0.060236 1.369502 -0.338421 -0.006821 -0.017982 -0.363910 0.646919 1.417459 -0.642302 0.519495 0.714907 0.505460 -0.286219 -0.367450 -0.024931 -0.915171 0.132858 0.626258 0.433997 -0.499107 -0.307949 1.324322 0.229043 -1.789575 0.489871 -0.063373 0.351083 0.999306 -0.201209 0.002195 0.456875 -1.064821 1.222671 0.340922 0.655104 -0.803716 -0.177921 -0.107098 0.479550 0.684936 0.370960 -1.654596 -0.268911 0.312374 1.304330 0.760574 1.464358 -0.634111 -0.202940 0.043275 -1.044638 -0.557070 -0.004174 0.786491 -0.263642 0.235367 -1.466578 -0.576518 +PE-benchmarks/quicksort-for-linked-list.cpp__partition(Node*, Node*) = 1.094764 0.135273 3.158716 -3.076617 -3.476256 1.416285 -0.355754 -1.880387 1.236450 4.631546 1.155462 -1.180333 -1.749786 4.846143 -1.544895 -2.747707 0.441861 -1.477672 0.836191 -0.835525 0.445520 2.224803 -0.533401 0.531828 0.144623 -1.423521 0.177174 1.785079 0.222506 0.470062 -2.366278 -1.025600 -1.194652 4.212255 0.291079 0.406975 0.492267 6.496025 -3.462043 6.270001 -5.194467 -4.926590 1.879639 0.524739 0.637871 -2.877875 -1.671949 1.345913 -1.830067 -1.336645 2.992611 -0.559404 0.748209 -0.149594 2.477649 1.470498 -5.951331 1.402167 -0.110398 -0.915210 -0.528458 -1.114636 0.379730 2.209502 -3.145820 -1.787216 1.682519 2.269371 -2.244138 0.857533 -0.443000 -4.490611 3.285022 1.812155 -3.150569 0.605969 3.514492 -4.080147 3.475074 -4.034401 -4.485946 -0.404860 -0.266832 -3.152855 3.759928 0.939341 4.000248 -6.403868 2.824532 -5.549192 3.525381 -3.828481 2.355215 4.729761 -2.237008 1.211225 2.576479 4.662393 3.679427 -0.660749 3.968049 3.747530 1.842149 0.998568 3.047602 2.755179 -3.101996 -2.358926 -3.648041 -3.952219 -0.026590 -2.599673 -5.691089 -0.120726 -0.021821 1.481136 0.828784 -0.297243 -1.205090 3.974212 -7.829103 -1.317058 1.047007 -0.630443 1.875795 3.117434 -1.540198 1.492848 -0.341054 5.185519 -2.845018 0.947449 -0.629949 1.520981 -3.505074 0.050984 -4.255202 1.057707 1.542680 -2.676443 -4.249890 -6.133125 -1.543600 3.259999 -0.413477 6.012559 7.861584 -2.052085 -3.887356 4.109741 -0.724285 -0.738720 4.255138 0.669677 4.035351 -2.620881 0.116908 -3.613324 -0.074810 -0.636140 5.389948 1.810725 -0.686217 2.372090 0.031289 -2.495829 3.403031 -1.425237 -2.136363 -4.871787 0.591416 -2.564760 -0.979614 4.979144 -5.502421 3.186022 -1.757277 5.648358 -2.691472 -3.411825 1.335686 -6.385016 0.057059 -3.705847 -1.160050 0.392460 3.677303 -4.452489 -1.997201 -2.025021 -2.474046 -0.901897 0.784381 -2.465164 0.741495 0.645863 1.183764 7.499887 5.045265 1.902212 -0.441101 -4.033295 1.318634 1.824054 -1.845254 -4.097605 0.643196 -2.651163 -0.090221 -0.020181 -0.385658 1.304965 -3.569789 -2.677566 -1.593871 -1.736962 1.284601 0.464731 -6.958440 0.962581 -0.069699 2.812386 2.249754 2.103255 4.653160 4.024538 3.772337 -0.532914 0.708820 -1.345413 -0.639393 1.773998 2.756303 -0.317183 1.201673 5.252848 1.690042 0.474440 2.902980 3.457865 0.676367 3.444864 -0.081055 5.654134 -0.781522 0.392548 -0.939028 -0.625003 2.648273 6.881445 -1.624040 2.017936 2.202140 1.481680 -1.311056 -2.194222 0.258085 -2.691630 0.146793 1.563636 1.463659 -1.278228 -1.202093 4.426908 0.821974 -6.023377 1.747466 -0.123809 1.287211 3.678226 -0.710605 0.077322 1.211080 -3.786743 4.956878 2.301482 2.091234 -2.986143 -1.348752 -0.363199 1.804496 3.415875 2.107754 -5.430313 1.203507 1.951992 4.434151 1.867853 4.653259 -3.037070 -1.402145 1.052904 -3.638096 -2.028854 0.146054 2.546629 -1.582592 1.442106 -4.190004 -3.807552 +PE-benchmarks/quicksort-for-linked-list.cpp___quickSort(Node*, Node*) = 0.833251 0.628051 1.505898 -1.574186 -2.467239 0.717864 -0.490737 -1.199046 0.464299 2.527325 0.702263 -0.778361 -0.623618 2.400715 -1.155341 -1.408241 -0.412295 -0.838483 0.222567 -0.676751 0.240826 1.283435 -0.362722 0.393221 -0.151197 -0.668416 0.048239 0.552802 0.288937 0.127718 -1.122291 -0.609148 -0.252234 2.083217 0.278107 -0.052736 0.117232 3.177438 -1.182503 2.308179 -2.871416 -2.736289 0.833864 0.310615 0.575919 -1.966957 -0.822845 0.857284 -0.298831 -0.515195 1.372258 -0.183287 0.222778 0.050056 1.077079 0.432137 -2.921225 1.213927 0.023177 -0.719356 -0.310095 -0.422343 0.308979 1.349552 -1.366064 -1.015711 0.652618 1.619108 -0.950354 0.445246 -0.038476 -2.385209 2.059660 0.750345 -1.793364 0.177904 1.524580 -2.060886 1.847074 -2.299348 -2.337045 -0.076976 0.053306 -1.053124 1.527322 0.568604 1.984651 -3.224469 1.487856 -2.954574 1.678214 -1.703267 1.112475 2.178686 -1.220975 0.396509 1.352017 2.115436 2.626425 -0.087328 2.050554 1.868740 1.278907 0.659540 1.089246 1.596164 -1.269958 -0.914232 -1.719392 -2.419781 0.015495 -0.776774 -3.315819 0.087586 0.264988 0.700883 0.233004 -0.385400 -0.192894 2.264589 -4.158048 -1.368026 0.682607 -0.247350 0.905063 1.510633 -0.776902 0.994957 -0.315391 2.522901 -1.409512 0.451683 0.002004 0.738655 -2.029325 -0.622024 -2.680949 0.905770 0.798772 -1.393253 -1.985411 -3.066655 -0.592045 1.484151 -0.479506 2.541598 4.023643 -1.299465 -2.241581 2.149334 0.030382 -0.989777 2.302642 0.221552 2.399185 -1.246504 -0.098885 -1.600214 -0.309581 -0.303867 2.595273 0.945421 -0.374497 1.174397 0.035261 -1.743614 1.331050 -0.818554 -1.316143 -2.061344 0.368116 -1.183154 -0.261657 2.133644 -2.197751 1.653829 -0.874711 2.829465 -1.440616 -1.829676 0.617440 -3.218946 -0.058818 -1.369267 -0.297812 0.408146 2.086720 -2.243674 -0.785556 -0.580161 -1.599254 -0.784627 0.390633 -1.310028 0.505833 0.568602 0.663962 3.569209 2.742032 1.041597 -0.185860 -1.889146 0.740330 0.924985 -0.752560 -2.343279 -0.111508 -1.660376 -0.000453 0.007850 -0.346967 0.757927 -1.310272 -1.100083 -0.855703 -1.195976 0.860674 0.326798 -2.433534 0.576692 -0.620607 1.984632 0.528894 1.219592 2.333399 2.389453 2.164403 -0.105827 0.519946 -0.949294 0.346209 0.973581 1.694966 -0.501625 0.828057 2.787090 0.925141 0.414816 1.795529 1.658063 0.307770 1.896149 -0.583112 3.232186 -1.295995 0.443704 -0.819856 0.018037 1.407445 4.019200 -0.663773 0.759001 0.895898 0.564153 -0.629639 -0.966571 0.236050 -1.120317 0.015867 0.618672 1.262882 -0.503239 -0.598489 2.217282 0.423667 -2.900576 1.199458 -0.105885 0.628073 1.738507 -0.434479 -0.034698 0.635081 -1.598067 2.157194 1.632370 1.194705 -1.815004 -1.237102 -0.176070 1.266768 1.268038 1.291649 -2.838064 0.807037 1.452439 2.156245 0.468374 2.286075 -1.961605 -1.135167 1.031233 -1.408348 -1.122537 0.393718 1.197801 -0.978529 0.823525 -1.610157 -1.954851 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.211268 0.348196 0.301551 -0.500607 -0.911079 0.044621 -0.139275 -0.293889 -0.025807 0.201595 0.337174 -0.511267 -0.285776 0.935711 -0.363458 -0.481111 -0.290858 -0.417638 -0.190594 -0.106940 0.048455 0.427108 -0.092389 0.166357 -0.023848 0.044412 -0.197840 0.165827 0.442421 -0.376005 -0.386547 -0.087168 0.134534 0.582226 0.048526 -0.205848 0.152979 1.039381 -0.271212 0.443387 -0.756415 -0.541344 0.294543 0.043589 0.011931 -0.921958 -0.622599 0.434084 -0.332674 -0.002589 0.465456 0.124448 -0.253434 -0.013339 0.357488 0.385395 -1.132573 0.890918 0.199650 0.070903 0.107801 -0.076691 -0.079474 0.098528 -0.021531 -0.362478 0.058373 0.356845 -0.339068 0.064273 -0.003225 -0.635220 0.956373 0.109467 -0.441427 0.143638 0.328249 -0.528089 0.609772 -0.965253 -0.670357 0.092550 0.140332 0.081578 0.586368 0.079552 0.125939 -0.935513 0.128824 -0.909159 0.324694 -0.706020 0.167639 0.666119 -0.595652 0.107403 0.236177 -0.033014 0.883615 0.351359 0.629720 0.356665 0.401904 0.216326 0.201648 0.372104 -0.187777 -0.111311 -0.425459 -0.847822 -0.090192 0.056762 -1.171240 0.167120 0.140038 0.218883 0.044850 -0.055954 0.157154 0.361158 -0.735626 -0.362602 0.224349 -0.067730 0.239470 0.759287 -0.292034 0.212104 -0.463186 0.705890 -0.199640 0.389051 0.049819 0.174008 -0.313213 -1.020718 -1.013549 0.237217 0.196501 -0.331582 -0.546831 -0.800188 0.062428 -0.036025 -0.318340 0.493138 1.189711 -0.418818 -0.671311 0.869231 0.529095 0.011057 0.715206 -0.051057 1.018049 -0.260506 -0.151670 -0.177447 -0.357501 -0.204690 -0.014557 0.255942 -0.196736 0.124796 0.108901 -1.061574 0.476409 -0.126815 -0.463843 -0.108432 0.107362 -0.340466 -0.367688 0.722926 0.157404 0.569713 0.014414 0.844767 -0.273032 -0.689271 0.341178 -0.323980 0.151760 -0.268693 -0.201971 0.219626 0.473648 -0.560518 -0.166006 -0.073455 -0.313853 -0.505628 0.086548 0.045623 0.192281 0.219420 0.394084 0.398167 0.915604 0.096635 0.295037 -0.773985 0.244276 0.309394 -0.121840 -1.027378 0.148475 -0.442710 0.007610 0.211595 -0.213669 0.092266 -0.154459 -0.372573 -0.110919 -0.423093 0.408864 0.164198 -0.182494 0.106159 -0.446231 0.574677 0.157717 0.400680 0.784693 0.662653 0.647883 0.145484 0.127053 -0.113205 0.358407 0.087508 0.266170 -0.044949 0.356712 0.608782 0.351715 0.096315 0.563943 0.418995 -0.165868 0.628439 0.114453 1.101640 -0.292907 -0.002395 -0.296567 -0.009308 0.532371 1.330529 -0.357764 0.051417 0.280466 0.257061 -0.035297 -0.510464 -0.035584 -0.277104 -0.343720 0.446940 0.124581 -0.146194 0.001812 0.602356 -0.068153 -0.743484 0.432780 0.021029 0.211439 0.147730 0.018119 -0.107593 0.335998 -0.661993 0.342759 0.558695 0.448068 -0.455724 -0.620911 -0.069292 0.452539 0.135069 0.559700 -0.834362 0.289663 0.651937 0.581342 0.036928 0.287730 -0.538794 -0.683579 0.393347 -0.105634 -0.320462 0.102229 0.273697 -0.532904 0.132098 -0.115357 -0.723299 +PE-benchmarks/quicksort-for-linked-list.cpp__printList(Node*) = 0.267450 0.287478 0.770641 -0.701110 -1.081009 0.409677 -0.420195 -0.585011 0.174093 0.976296 0.300589 -0.388661 -0.775161 1.052911 -0.546151 -0.984210 -0.256387 -0.334906 0.083970 -0.563567 0.048746 0.487026 -0.112770 0.162592 -0.014452 -0.444899 -0.013610 0.399689 0.428226 -0.089339 -0.416278 -0.219642 -0.109175 1.095872 0.113920 0.211972 0.158385 1.603112 -0.286044 1.095596 -1.487636 -1.471753 0.517877 0.176942 0.152315 -0.800404 -0.249320 0.452307 -0.980392 0.016400 0.644523 -0.127292 -0.001079 -0.029996 0.514857 0.436918 -1.771657 0.985046 -0.122748 -0.412345 -0.199379 -0.165172 0.058438 0.448676 -0.167989 -0.530842 0.238812 0.837867 -0.756990 0.295855 0.006824 -0.981204 1.208255 0.331491 -0.793986 0.168195 0.751843 -0.537336 0.796544 -1.276754 -1.109861 -0.150592 0.217346 -0.375730 0.856556 0.490444 0.740720 -1.617078 0.488899 -1.425085 0.943095 -0.779446 0.647704 0.986602 -0.691696 0.338944 0.691154 0.433319 0.978505 -0.084067 1.046355 0.538978 0.532648 0.450215 0.479061 0.496377 -0.610093 -0.405936 -0.787679 -1.167219 -0.093112 -0.387071 -1.495213 -0.080624 -0.090620 0.723922 0.249560 -0.078243 -0.125385 0.611914 -2.052376 -0.649385 0.214038 -0.127697 0.725429 0.675591 -0.293177 0.503544 -0.010832 1.320165 -0.735607 0.118214 -0.109237 0.354950 -0.291952 -0.520192 -1.540721 0.379110 0.425300 -0.599286 -1.023190 -1.258203 -0.395718 0.688963 -0.176986 1.427771 2.054639 -0.562390 -1.123104 1.123979 -0.329277 -0.021934 1.295043 0.223358 1.185661 -0.650222 -0.055281 -0.743558 -0.170932 0.033965 0.880268 0.371619 -0.233715 0.591979 0.319153 -0.278096 0.212984 -0.502393 -0.657333 -1.140114 0.100283 -0.623999 -0.165190 0.960560 -0.811714 0.952420 -0.249656 1.495141 -0.818256 -1.238159 0.311249 -1.497836 -0.069254 -0.439017 -0.277821 0.046974 0.808731 -1.297258 -0.488382 -0.437620 -0.578125 -0.379847 0.247594 -0.113991 0.263045 0.257574 0.299222 1.791018 1.340998 0.419664 -0.099435 -1.103442 0.277951 0.485279 -0.218236 -1.199705 0.155418 -0.678938 0.010347 0.456884 -0.160383 0.368032 -0.483264 -0.442343 -0.485636 -0.595318 0.578270 0.170695 -1.027071 0.247425 -0.161445 0.612893 0.454047 0.634174 1.245313 1.021401 0.922327 0.096626 0.265543 -0.442122 0.512856 0.300316 0.800674 0.065563 0.408418 1.146800 0.444194 0.197058 0.933903 0.950479 -0.019704 0.956740 -0.167129 1.629506 -0.768043 0.257856 -0.419210 -0.012202 0.656552 1.867480 -0.839733 0.401253 0.567369 0.434331 0.052162 -0.791233 0.010601 -0.670622 -0.026718 0.598196 0.577689 -0.264383 -0.311276 1.129749 0.253084 -1.384712 0.849299 0.013897 0.191252 0.530141 -0.257912 -0.347675 0.445722 -1.093049 0.753128 0.779350 0.638565 -0.971077 -0.336734 -0.140001 0.766762 0.453378 0.637069 -1.189799 0.067504 0.726342 1.096256 0.440991 0.893352 -0.843732 -0.895796 0.382055 -0.784845 -0.552576 0.231750 0.468295 -0.437135 0.426667 -0.569292 -1.070679 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 0.345873 0.308940 1.653110 -1.764122 -2.445686 0.523536 -0.062694 -1.032843 0.440840 1.243289 1.134482 -1.024936 -0.475424 2.742977 -0.775892 -1.303721 -0.235616 -0.600315 -0.076311 -0.422659 0.350599 1.192699 -0.384882 0.388808 -0.101883 -0.561203 -0.000562 1.189257 0.454387 0.002739 -1.092544 -0.546707 -0.241819 2.120983 0.264174 -0.069902 0.270646 3.423785 -1.962866 2.589335 -2.330049 -2.039073 1.189542 0.220713 -0.083703 -2.296245 -2.037544 0.917317 -0.712352 -0.675096 1.700904 -0.001066 0.446372 -0.029840 1.194225 0.948883 -2.956743 0.792412 0.324811 -0.654635 -0.127391 -0.375470 -0.139207 1.010767 -1.660638 -1.008666 0.762440 1.090870 -0.484049 0.145066 -0.005952 -2.620569 2.683079 0.627436 -1.400818 0.371093 1.727088 -2.472748 2.063726 -1.299865 -2.402554 -0.096802 -0.213154 -1.364707 1.992324 -0.095606 1.733967 -3.183587 0.859500 -3.097419 1.505126 -2.200141 0.835917 2.250217 -1.724944 0.569591 1.283198 1.943363 2.147644 0.162873 1.991379 1.822233 1.150267 0.665362 1.718030 1.411351 -1.289793 -1.150333 -2.173177 -2.516849 0.189495 -1.251721 -3.827312 0.281063 0.350718 -0.039654 -0.048241 -0.332875 0.007556 2.641331 -2.698431 0.263758 0.982359 -0.314438 0.260019 2.148745 -0.894208 0.618140 -0.687380 2.425392 -1.413835 1.040273 -0.106968 0.778770 -1.711873 -1.178640 -2.314061 0.813551 0.724734 -1.294670 -2.016516 -2.878390 -0.373026 1.324562 -0.560332 2.003134 4.077606 -1.388921 -2.287559 2.257079 1.455484 -0.613084 1.913420 0.298868 2.729809 -1.104622 -0.350620 -1.953380 -0.809614 -0.368387 2.048148 0.970411 -0.354742 1.333594 -0.078810 -3.127540 3.431837 -0.925036 -1.320284 -0.838370 0.580416 -1.264132 -1.009305 2.735672 -0.950525 1.793181 -0.529216 2.897684 -1.116699 -1.817994 0.681241 -2.059323 0.137075 -1.922443 -0.459343 0.612613 1.918473 -1.643242 -0.941395 -1.017902 -1.429907 -0.774025 0.388424 -0.935331 0.582397 0.568477 0.841250 2.057934 2.971231 0.974120 0.067265 -2.167419 0.864340 1.074473 -0.720216 -2.582816 0.156345 -1.424559 -0.003717 -0.484022 -0.244106 0.866157 -1.592030 -1.161533 -0.708056 -1.130795 0.532444 0.446374 -3.372156 0.538508 -0.530755 1.917488 0.839753 1.173279 2.872573 2.354144 2.196805 0.190890 0.336740 -0.431234 -0.418956 0.743374 1.234490 -0.048623 0.848887 2.843349 1.027295 0.410363 1.728519 1.674745 0.716005 1.854781 0.263253 3.316089 0.011415 -0.027908 -0.632605 0.107405 1.628770 4.066866 0.165735 0.807017 0.978503 1.018366 -0.888027 -1.782418 0.171893 -0.942183 -0.207687 1.358193 0.799829 -0.578253 -0.451014 2.259983 0.256698 -3.045166 0.756699 0.001523 0.803381 1.639426 -0.236741 0.248976 0.723061 -1.610214 2.455615 1.479694 1.208824 -1.814823 -1.330944 -0.059417 0.953661 1.603355 1.489419 -3.371606 1.128631 1.109736 2.133765 0.255724 2.324342 -1.922163 -0.860395 1.016740 -1.351877 -0.960909 0.343707 1.035931 -1.515246 0.683365 -2.083036 -2.119010 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.357480 0.875171 0.613401 -0.438931 -1.582892 -0.163084 -1.121477 -0.361493 -0.056088 0.166399 0.021849 -1.124099 -0.968494 1.194076 -1.370181 -1.328526 -1.067376 -0.161391 -0.280963 -1.291349 -0.002295 0.557720 0.063968 0.287090 0.166596 -0.465674 -0.240472 0.259271 1.875479 -0.558213 -0.077194 0.067268 0.653981 1.043192 -0.178836 -0.349690 0.579405 1.763782 1.077933 -0.415954 -1.409018 -1.322763 0.604498 0.231959 0.112944 -1.340828 -0.739465 0.534064 -2.402201 1.582535 0.238805 0.354687 -0.971949 -0.174638 0.548012 0.682247 -2.663245 2.938269 -0.178338 0.062303 -0.000422 -0.160602 -0.376105 -0.276687 1.289047 -0.577814 -0.173390 1.448328 -1.397389 0.793440 0.366652 -0.215371 1.907497 -0.164181 -0.789029 0.511322 0.612095 0.100975 0.605056 -2.442794 -0.787060 -0.036091 1.172961 0.901990 0.924127 0.673976 -0.291496 -1.535385 -0.161329 -1.214170 0.648856 -1.162094 0.531206 0.958105 -1.721793 0.679189 0.197372 -1.241170 1.382299 0.824980 1.223368 0.172214 0.767789 0.515403 -0.449548 0.263876 0.340928 0.167482 -0.096997 -1.188663 -0.967368 0.490202 -2.244947 -0.167346 -0.213785 1.353102 0.214128 -0.036362 0.177137 -0.221259 -1.681875 -1.702588 0.139432 -0.113772 0.847265 0.623350 -0.324316 0.508164 -0.565810 1.440460 -0.116693 -0.097531 -0.002988 0.086773 0.292884 -2.742173 -2.912077 0.076279 0.159758 -0.219407 -1.090398 -0.548362 -0.394342 -0.497108 -0.229333 0.960153 1.946574 -0.082071 -1.274756 1.580963 -0.278942 0.837051 2.161927 0.165470 1.556909 -0.390722 -0.151025 -0.116090 -0.264840 0.077738 -1.389721 0.167928 -0.446311 -0.005400 0.992795 -0.004719 -1.260714 -0.644248 -0.579039 -1.377751 -0.023999 -0.614257 -0.228414 1.120469 0.512275 1.465103 -0.220327 1.619715 -0.845798 -2.428951 0.430066 -0.990294 0.381549 0.757376 0.141154 -0.099395 0.636197 -1.566286 -0.622743 0.262539 -0.202029 -0.707056 0.139538 1.575682 0.217297 0.124310 0.717713 1.188098 1.320963 -0.216909 0.814351 -1.617062 0.019742 0.790405 0.246767 -2.270333 0.865246 -0.240742 -0.013064 0.820617 -0.272788 -0.281861 0.352748 -0.472961 -0.672726 -0.873518 1.275805 0.059521 0.783416 0.414114 -1.245579 0.407356 0.083741 0.526981 1.898533 0.329859 0.644701 0.354616 0.525657 -1.018870 2.549958 0.348732 1.074195 -0.209379 0.352328 1.167020 0.468286 -0.085845 0.754808 1.136885 -1.172398 0.919833 0.155621 2.132513 -1.945380 0.388719 -0.988670 0.022282 0.844368 2.573776 -1.331254 -0.159675 0.661007 0.917458 1.212194 -1.824425 -0.632481 -0.481163 -0.560475 0.801168 0.004076 -0.854679 0.445042 0.865793 0.252692 -0.728793 1.577354 0.198744 -0.255005 -1.125533 -0.222083 -1.601021 1.236255 -1.685888 -0.470595 0.596455 0.607066 -0.796166 -1.035659 -0.352965 1.426144 -0.476046 0.936934 -0.505453 0.104557 1.776270 0.934003 0.530483 -0.119156 -0.450408 -2.590241 0.412599 -0.163649 -1.010224 0.568560 -0.023631 -1.176994 0.702021 1.306220 -2.121594 +PE-benchmarks/quicksort-for-linked-list.cpp___GLOBAL__sub_I_quicksort_for_linked_list.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/mergeSort_LinkedList.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/mergeSort_LinkedList.cpp__MergeSort(Node**) = 0.616855 0.769090 0.974208 -1.284667 -1.948323 0.305781 -0.196887 -0.731094 0.220697 1.915015 0.521216 -0.877420 -1.021067 1.971572 -0.849794 -1.310111 -0.372931 -1.131739 -0.042116 -0.504950 0.040803 1.102761 -0.190596 0.311012 0.131544 -0.262365 -0.307495 0.486634 0.734943 -0.506258 -0.856636 -0.301501 -0.004343 1.662282 -0.021718 -0.283113 0.236457 2.654897 -0.925518 1.532631 -2.277034 -2.048199 0.881190 0.204668 0.240235 -1.711871 -0.494825 0.937835 -0.713804 -0.278701 1.066623 0.081876 -0.243317 -0.188617 0.859642 0.807275 -2.858806 1.707687 0.149918 -0.194264 -0.189076 -0.312917 0.202166 0.682068 -0.504309 -0.959142 0.318847 0.861398 -1.151240 0.323811 -0.114249 -1.600056 1.678635 0.565739 -1.310093 0.385630 0.930606 -1.372014 1.451584 -2.463062 -1.689647 -0.012226 0.381139 -0.442668 1.341129 0.498625 0.981121 -2.596935 0.784523 -2.223790 1.228839 -1.525539 0.881814 1.861635 -0.981809 0.454464 0.749734 0.677139 2.018751 0.039346 1.762061 1.074259 1.254207 0.583017 0.497544 1.216037 -1.022586 -0.579666 -1.214234 -1.934888 -0.131349 -0.190617 -2.414251 0.168681 0.039440 0.672750 0.644716 -0.351898 -0.172362 1.296790 -3.022729 -1.402734 0.451052 -0.211764 0.957674 1.528935 -0.574177 0.611344 -0.466924 2.042074 -0.757594 0.602704 -0.024255 0.576354 -1.069487 -1.168068 -2.205655 0.468022 0.517922 -1.056917 -1.572345 -2.386589 -0.264834 0.465758 -0.549584 2.014547 3.279834 -0.950880 -1.758336 2.016973 -0.085921 -0.156228 1.849351 -0.004155 2.152357 -1.015322 -0.079686 -0.834806 -0.261623 -0.174341 1.713879 0.685085 -0.493773 0.543769 0.220443 -1.173023 0.217563 -0.320010 -0.957786 -1.447735 0.214947 -0.995230 -0.552529 1.727740 -1.225798 1.513358 -0.431305 2.317680 -1.068178 -1.733281 0.826557 -2.007394 0.096733 -1.031606 -0.613929 0.427614 1.314516 -1.786376 -0.555893 -0.529805 -0.874530 -0.936857 0.322149 -0.740658 0.425483 0.317880 0.658923 2.538533 2.100878 0.421184 0.200173 -1.898908 0.557570 0.710168 -0.468722 -2.173644 0.203349 -1.191958 -0.063328 0.778923 -0.467970 0.443471 -0.694172 -0.976531 -0.343891 -0.919939 0.829718 0.128773 -1.521930 0.401542 -0.687516 1.291457 0.551788 1.126067 1.812612 1.663951 1.484462 0.064800 0.363474 -0.609270 0.545901 0.506043 0.921351 -0.208336 0.848358 1.845374 0.840502 0.274706 1.515921 1.230772 -0.463333 1.632258 -0.251788 2.658425 -1.126153 0.159310 -0.561382 -0.174594 1.126711 3.111945 -1.077559 0.215144 0.906927 0.559860 -0.219635 -0.880940 -0.011347 -1.053170 -0.214002 0.723668 0.621430 -0.560297 -0.219591 1.801438 0.084399 -2.297355 1.232877 -0.065010 0.530821 0.814412 -0.193043 -0.275008 0.789640 -1.749144 1.260029 1.308218 1.075745 -1.295770 -0.939753 -0.171733 1.233642 0.586510 1.073692 -2.365731 0.267206 1.315514 1.702641 0.589305 1.568604 -1.297501 -1.338426 0.754801 -0.809835 -0.894741 0.146367 0.890893 -0.930396 0.607525 -0.945770 -1.445989 +PE-benchmarks/mergeSort_LinkedList.cpp__FrontBackSplit(Node*, Node**, Node**) = 0.287879 0.351002 2.165578 -2.429091 -3.167139 0.578806 0.299584 -1.128015 0.671369 1.974948 1.419437 -1.470372 -1.134477 3.744035 -0.704354 -1.933617 -0.090580 -0.922992 -0.080356 -0.262052 0.375901 1.669292 -0.444470 0.592036 0.024732 -0.567225 -0.154447 1.763964 0.776691 -0.057490 -1.569366 -0.673818 -0.405722 2.896470 0.118329 -0.006319 0.409219 4.807361 -3.015927 4.102734 -3.094425 -2.727373 1.666963 0.307472 -0.208447 -2.935810 -2.418090 1.400332 -1.264866 -1.311502 2.495920 0.190666 0.523607 -0.168101 1.842984 1.516217 -4.194234 1.059213 0.450056 -0.624340 -0.075436 -0.568609 -0.284217 1.381194 -2.455541 -1.419413 0.892423 0.932623 -0.902362 0.137359 -0.138518 -3.465379 3.468574 1.036718 -2.070777 0.675185 2.452957 -3.293158 2.832398 -2.009346 -3.245147 -0.093199 -0.326390 -1.941221 2.922863 -0.098404 2.268344 -4.391642 1.115327 -4.101932 2.182954 -3.220841 1.154705 3.405241 -2.080339 0.866716 1.574796 2.474582 2.752811 -0.011341 2.736860 2.455534 1.722441 0.869318 2.294177 1.991270 -2.135853 -1.788799 -3.058147 -3.382285 0.299222 -1.737958 -4.855213 0.320802 0.472884 0.233459 0.501523 -0.416066 -0.266690 3.270142 -3.786513 0.380234 1.277189 -0.466645 0.605865 3.159610 -1.289395 0.746844 -0.867240 3.444451 -1.768029 1.590029 -0.214203 1.070749 -2.263651 -1.085271 -2.806894 0.929283 0.949732 -1.658942 -2.787910 -4.184990 -0.480771 1.750492 -0.741575 2.897230 5.684252 -1.790420 -2.888756 3.206594 1.420549 -0.403805 2.330782 0.288163 3.626817 -1.575486 -0.386861 -2.625004 -0.941877 -0.536987 3.672163 1.460469 -0.691336 1.682132 -0.229267 -3.973954 4.084946 -0.985308 -1.694996 -1.601683 0.658263 -1.833015 -1.509391 3.965575 -2.044205 2.425109 -0.825995 3.955673 -1.407333 -2.396602 1.188521 -2.835857 0.260513 -3.132065 -1.060682 1.012297 2.421177 -2.427514 -1.238817 -1.631883 -1.717617 -1.133628 0.435452 -1.714235 0.626428 0.601614 1.290705 3.316231 3.915569 1.267637 -0.001013 -3.217489 1.201845 1.162270 -1.259234 -3.318683 0.439689 -1.872984 -0.086492 -0.259305 -0.422227 0.965876 -2.260393 -1.806469 -0.786990 -1.526568 0.640316 0.489985 -5.096121 0.636356 -0.329228 2.483858 1.529011 1.597590 3.806093 3.093586 2.974753 0.271194 0.381235 -0.325959 -1.015184 1.025234 1.363908 -0.028023 1.211469 3.641473 1.448981 0.376789 2.361825 2.246771 0.618186 2.540007 0.528912 4.393193 0.481453 -0.278300 -0.543447 -0.098815 2.079733 5.296421 -0.198903 1.147421 1.559714 1.401752 -1.258421 -2.099353 0.130705 -1.586339 -0.307607 1.956596 0.660812 -0.958794 -0.461769 3.081456 0.138950 -4.319407 0.836405 -0.081836 1.190059 2.346607 -0.218764 0.437613 1.002107 -2.565199 3.558848 1.902376 1.595963 -2.265376 -1.509505 -0.104772 1.065733 2.430103 1.922981 -4.719324 0.973703 1.315023 3.044268 0.684141 3.360154 -2.393739 -1.020625 1.262647 -2.004285 -1.321224 -0.042485 1.480872 -1.759175 0.836960 -3.167825 -2.833383 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 0.507730 0.613468 2.693072 -2.633206 -3.293083 0.760779 0.237105 -1.377205 0.836300 3.458032 1.236319 -1.371531 -1.726526 3.967867 -1.123897 -2.309281 -0.111711 -1.268119 0.121275 -0.928977 0.328881 1.852753 -0.389198 0.469841 0.194020 -1.046492 0.019586 1.866979 0.455875 0.012075 -1.420295 -0.795856 -0.465132 3.402993 0.000338 0.310052 0.212344 5.235353 -3.243352 4.640704 -4.226353 -3.967019 2.045848 0.429529 0.198302 -3.088280 -1.728481 1.512675 -1.497456 -1.309063 2.386695 0.029054 0.574850 -0.451632 1.890387 1.573694 -4.990100 1.392233 0.127116 -1.274732 -0.636238 -0.604661 0.100960 1.694349 -2.422025 -1.699314 0.972809 1.374436 -1.553914 0.556745 -0.146829 -3.648531 3.231701 1.168893 -2.314164 0.815888 2.623713 -3.174173 3.038942 -2.966215 -3.451785 -0.422814 0.052384 -2.250930 2.855180 0.614573 2.832079 -5.115559 1.486214 -4.441949 2.862313 -3.186261 1.692979 3.622424 -1.794966 1.248448 1.901323 2.661930 3.025737 -0.423273 3.154423 2.652532 2.273970 1.131222 2.345650 2.354982 -2.664710 -2.105509 -3.381021 -3.688596 0.313308 -1.935486 -4.768271 0.100927 0.201154 0.552500 0.941262 -0.660762 -0.537412 3.601650 -5.540140 -0.335423 1.373116 -0.510955 1.101673 2.950406 -1.177400 0.968193 -0.404036 3.953133 -2.178321 1.328545 -0.223186 1.303530 -2.346987 -0.833527 -3.243923 0.949796 0.986093 -2.022669 -3.176615 -4.847586 -0.901982 2.383843 -0.709289 3.881983 6.554765 -1.876971 -3.497775 3.390020 0.504265 -0.600921 2.854863 0.533170 3.877783 -2.080711 -0.219843 -2.948382 -0.573995 0.030926 5.027434 1.500812 -0.887476 2.068746 0.060185 -3.196350 3.080062 -1.259084 -1.693234 -2.733266 0.721259 -2.121146 -1.099806 3.944313 -3.147424 3.004373 -1.365726 4.588523 -2.150330 -2.966071 1.169471 -4.471873 -0.004790 -3.159659 -1.110311 0.792783 2.804541 -3.227653 -1.499086 -2.024866 -2.140028 -1.009499 0.732779 -2.576654 0.733663 0.483202 1.040823 4.969063 4.104740 1.385569 -0.252658 -3.584533 1.197620 1.348005 -0.990898 -3.898671 0.391522 -2.139847 -0.144156 0.208692 -0.442365 1.266170 -2.330947 -1.770937 -0.900217 -1.833966 0.637137 0.174318 -5.376856 0.726082 -0.324813 2.661024 1.605054 2.017988 4.131042 3.363992 3.005527 0.199829 0.448953 -1.017700 -0.662836 1.353821 1.873994 -0.230390 1.360116 4.159819 1.528165 0.499973 2.924952 2.671884 0.322821 2.977513 -0.077386 4.824020 -0.623113 0.092134 -0.642986 -0.111530 2.135738 5.702176 -0.723826 1.074270 1.913261 1.376861 -1.148840 -1.969923 0.098694 -2.023915 -0.000642 2.133108 1.400938 -1.231143 -0.679238 3.678972 0.466800 -4.989835 1.499831 -0.135184 1.172287 2.512643 -0.560378 0.114403 1.288947 -2.882492 3.583373 2.097133 1.865963 -2.894186 -1.410007 -0.164190 1.642893 2.798582 1.901961 -5.589054 0.626256 1.534963 3.540588 0.915176 4.187131 -2.705719 -1.307540 1.202765 -2.421352 -1.608632 0.198478 1.712020 -1.657335 1.156300 -3.523597 -2.808287 +PE-benchmarks/mergeSort_LinkedList.cpp__printList(Node*) = 0.248536 0.192536 0.762579 -0.713728 -0.916419 0.330928 -0.193348 -0.466293 0.216017 0.973839 0.264506 -0.318099 -0.699613 1.038852 -0.422572 -0.876819 -0.119392 -0.375604 0.069359 -0.390659 0.033469 0.467346 -0.108571 0.112026 0.055097 -0.381151 0.012108 0.418554 0.238518 -0.103338 -0.428604 -0.229554 -0.144221 1.050887 0.037516 0.235531 0.096788 1.539956 -0.444526 1.228534 -1.376538 -1.359485 0.547145 0.124262 0.136984 -0.767609 -0.224246 0.448077 -0.729082 -0.178553 0.635964 -0.073262 0.026027 -0.127381 0.510852 0.434673 -1.612721 0.721333 -0.063073 -0.365671 -0.223016 -0.190020 0.063096 0.423734 -0.340305 -0.518617 0.267613 0.638668 -0.709259 0.264643 -0.045731 -0.981980 1.083758 0.374771 -0.713657 0.223964 0.740798 -0.617209 0.795002 -1.137454 -1.028121 -0.173426 0.162369 -0.454431 0.842508 0.404899 0.757449 -1.546729 0.503866 -1.335834 0.910029 -0.822743 0.616465 1.005178 -0.547251 0.385061 0.631790 0.562006 0.855788 -0.113940 0.989599 0.604213 0.551250 0.365218 0.556144 0.506562 -0.683479 -0.510655 -0.825267 -1.077785 -0.037040 -0.436175 -1.359918 -0.036406 -0.068450 0.580607 0.284953 -0.054478 -0.160598 0.661317 -1.956596 -0.462243 0.282024 -0.145026 0.622126 0.707096 -0.304480 0.381385 -0.028257 1.222698 -0.678287 0.183236 -0.116044 0.374409 -0.380029 -0.312867 -1.238571 0.273953 0.375120 -0.597790 -0.988586 -1.295086 -0.360979 0.736196 -0.191780 1.362456 1.968866 -0.527392 -1.025652 1.016312 -0.218506 -0.006982 1.085220 0.215728 1.102573 -0.655558 -0.010182 -0.722888 -0.085357 0.061162 1.025032 0.378665 -0.264215 0.600415 0.201568 -0.402187 0.417185 -0.427463 -0.526427 -0.996411 0.110201 -0.624385 -0.227981 1.000626 -0.864207 0.933243 -0.283730 1.425260 -0.766088 -1.030619 0.314769 -1.427699 -0.051197 -0.640655 -0.306312 0.068446 0.778751 -1.190382 -0.478441 -0.479706 -0.595321 -0.294736 0.260195 -0.347472 0.211098 0.158170 0.256847 1.700358 1.220012 0.382604 -0.097544 -1.084046 0.297759 0.398650 -0.257998 -1.070101 0.136523 -0.613459 -0.025469 0.371526 -0.128482 0.343378 -0.536519 -0.475894 -0.354474 -0.516214 0.393178 0.078137 -1.166259 0.161261 -0.058034 0.614806 0.478978 0.631241 1.186761 0.965327 0.843076 0.034966 0.198060 -0.374949 0.199978 0.291736 0.614820 0.094476 0.392688 1.072177 0.434799 0.148019 0.890421 0.854652 -0.003708 0.913098 -0.090031 1.489458 -0.547264 0.133502 -0.268516 -0.075426 0.628657 1.676424 -0.713434 0.399325 0.588576 0.425856 -0.095030 -0.624275 0.015298 -0.640386 -0.033956 0.581595 0.495890 -0.289172 -0.276726 1.118458 0.189404 -1.412903 0.666711 -0.014403 0.261775 0.621121 -0.209877 -0.177254 0.411562 -0.979044 0.820124 0.642694 0.608124 -0.905384 -0.283845 -0.094640 0.639656 0.532895 0.538825 -1.240724 0.059344 0.576259 1.065108 0.427079 0.942492 -0.771374 -0.637241 0.306183 -0.768611 -0.486624 0.157424 0.495122 -0.365134 0.324784 -0.779784 -0.895456 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.359538 0.335540 1.020000 -1.199703 -1.709791 0.314694 -0.180415 -0.662964 0.210686 0.279871 0.859154 -0.798743 -0.286367 1.832788 -0.612440 -0.890237 -0.246495 -0.673590 -0.202498 -0.315329 0.193306 0.728816 -0.273963 0.273174 -0.074390 -0.254630 -0.116730 0.777446 0.651730 -0.343612 -0.866963 -0.249737 -0.073733 1.428220 0.222325 -0.401264 0.414928 2.381598 -1.026797 1.130504 -1.327672 -1.089621 0.793421 0.107622 -0.282078 -1.633736 -1.603283 0.676425 -0.726677 -0.083001 1.211281 0.020180 0.087782 0.016931 0.725085 0.850785 -2.236661 0.977028 0.310521 -0.056157 0.056284 -0.293954 -0.110958 0.402638 -0.627873 -0.696010 0.624447 0.742710 -0.394927 0.064727 -0.046999 -1.719735 2.081723 0.361575 -0.778685 0.254875 1.054510 -1.695094 1.370708 -0.952037 -1.600161 0.039009 -0.048937 -0.695079 1.564001 -0.293675 0.710933 -2.079961 0.347759 -2.132389 0.734842 -1.621259 0.494401 1.479199 -1.490708 0.318913 0.718601 0.903304 1.404422 0.297081 1.429737 1.000543 0.685681 0.402280 1.044722 0.753530 -0.572599 -0.478211 -1.281835 -1.688086 -0.109564 -0.573544 -2.789206 0.313462 0.128552 -0.142071 -0.153647 -0.169663 0.081350 1.577976 -1.316805 0.047569 0.549635 -0.210859 0.184417 1.652336 -0.645365 0.394286 -0.704586 1.640445 -0.740915 0.768741 -0.145322 0.421124 -0.817098 -1.502594 -1.896851 0.499684 0.574740 -0.826841 -1.435928 -1.658597 -0.121094 0.307572 -0.449918 1.286317 2.667549 -0.862620 -1.530689 1.680034 1.310134 -0.098030 1.561673 0.109496 2.028962 -0.691609 -0.240742 -1.074336 -0.648866 -0.458460 0.180512 0.528339 -0.104865 0.679643 0.129568 -2.020146 2.398995 -0.531361 -0.920691 -0.009287 0.359360 -0.811369 -1.026136 1.928648 0.333133 1.221545 0.145580 2.014458 -0.658532 -1.437680 0.566729 -0.638584 0.310391 -1.049295 -0.347807 0.398071 1.171496 -0.898799 -0.663446 -0.525016 -0.690258 -0.654552 0.242267 0.258800 0.493986 0.408342 0.688138 0.647677 2.155756 0.450205 0.410838 -1.606170 0.557395 0.893107 -0.439710 -1.841464 0.240492 -0.865211 0.034495 -0.131256 -0.198588 0.527111 -0.940506 -0.894820 -0.396395 -0.618175 0.581603 0.433170 -2.000978 0.393483 -0.673129 1.055697 0.531734 0.792270 2.014690 1.467532 1.455999 0.087311 0.274993 -0.150604 0.056101 0.190135 0.676354 0.250481 0.590263 1.773194 0.694869 0.255689 1.030472 1.120572 0.287747 1.230535 0.461331 2.357318 -0.018930 -0.064396 -0.594379 -0.014777 1.213226 2.883296 0.004253 0.405534 0.622515 0.916108 -0.375125 -1.674376 0.017021 -0.564343 -0.236723 0.858156 0.304228 -0.403258 -0.199700 1.505656 0.099318 -1.901427 0.606245 0.074300 0.478903 0.770445 -0.083686 -0.014152 0.567626 -1.296632 1.438067 1.000341 0.872406 -1.065593 -0.957650 -0.043602 0.805885 0.409114 1.079590 -2.007711 0.955461 0.913524 1.324716 0.325654 1.134813 -1.212150 -0.911941 0.707449 -0.711759 -0.604459 0.406914 0.725127 -1.419568 0.480683 -0.990997 -1.539303 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.245158 0.772294 0.409676 -0.435982 -1.285461 -0.298882 -0.775950 -0.103788 -0.054398 -0.264237 0.045538 -1.143639 -1.151892 1.021870 -1.033110 -1.335504 -0.811583 -0.268665 -0.371752 -0.952243 -0.070750 0.462642 0.109778 0.216997 0.325354 -0.234530 -0.384300 0.407866 2.115867 -0.776935 -0.179912 0.205475 0.661358 0.977136 -0.314714 -0.438758 0.701607 1.714143 1.001928 -0.447554 -1.031642 -0.881510 0.719156 0.173914 -0.230286 -1.258547 -0.707683 0.579492 -2.577262 1.410995 0.305643 0.429796 -1.013146 -0.308557 0.512908 1.049421 -2.664643 2.859200 -0.066161 0.449196 0.121907 -0.197066 -0.450916 -0.519723 1.362929 -0.586440 -0.193668 0.902604 -1.451581 0.663303 0.205307 -0.107821 2.012855 -0.097741 -0.671199 0.622018 0.466981 0.044520 0.511075 -2.199425 -0.603168 0.003590 1.158574 1.028864 1.105254 0.386112 -0.630858 -1.391416 -0.506650 -1.049385 0.505948 -1.324605 0.507279 1.031217 -1.729187 0.703589 -0.062979 -1.582333 0.973042 0.795270 1.215450 -0.041152 0.738310 0.331303 -0.480961 0.105008 0.306210 0.134239 0.000399 -0.993481 -0.993084 0.598915 -2.157431 -0.117225 -0.384278 1.303044 0.452220 0.009066 0.105248 -0.468986 -1.062689 -1.443095 0.067590 -0.140583 0.885485 0.911032 -0.298812 0.293195 -0.641013 1.373124 0.188221 0.064338 -0.148721 0.043996 0.575586 -2.792288 -2.511440 -0.166534 0.126622 -0.130199 -1.090765 -0.407284 -0.256954 -0.861521 -0.240274 0.730611 1.768389 0.070421 -1.032977 1.580169 -0.226728 1.303122 1.929212 0.047683 1.542267 -0.430227 -0.022662 0.074725 -0.159442 -0.002100 -1.553392 0.068276 -0.511283 -0.234457 0.897807 0.020748 -1.185716 -0.376830 -0.381758 -0.920599 -0.169899 -0.603811 -0.628914 1.283427 0.857093 1.443452 0.009854 1.552734 -0.663998 -2.346261 0.616717 -0.216901 0.486592 0.499491 -0.133769 0.044578 0.350769 -1.361692 -0.608812 0.198168 0.193051 -0.712001 0.147301 1.806622 0.116011 -0.055052 0.731225 0.692482 1.117293 -0.474427 0.944426 -1.725932 0.000421 0.681825 0.108977 -2.060151 1.027891 -0.089257 -0.055142 1.063205 -0.304516 -0.390339 0.380766 -0.630801 -0.386078 -0.680224 1.194491 -0.018229 0.522233 0.333535 -1.089083 0.027434 0.247792 0.542026 1.805391 0.074495 0.406173 0.312186 0.485675 -0.692754 2.123226 0.109228 0.589186 0.107378 0.357697 0.825514 0.441564 -0.201685 0.594266 0.973277 -1.318216 0.828733 0.591098 1.933976 -1.387185 0.083372 -0.713205 -0.241069 0.809485 2.258553 -1.418781 -0.252440 0.719072 1.076440 1.205953 -1.914529 -0.748031 -0.499298 -0.696737 0.923136 -0.486557 -0.887938 0.564222 0.855546 0.073055 -0.714386 1.398822 0.195914 -0.208146 -1.245086 -0.108559 -1.483934 1.268801 -1.792738 -0.508443 0.377171 0.608369 -0.520146 -0.833787 -0.335782 1.243647 -0.713914 0.783960 -0.371904 -0.136597 1.555323 0.918969 0.801248 -0.262999 -0.141821 -2.380982 0.216394 -0.051127 -0.865741 0.259354 -0.049660 -1.186936 0.502532 1.140983 -1.866977 +PE-benchmarks/mergeSort_LinkedList.cpp___GLOBAL__sub_I_mergeSort_LinkedList.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/sudoku.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 1.228828 0.509932 1.824214 -1.668823 -0.702406 0.471973 0.974088 -1.233538 0.456615 4.556139 0.935317 -1.215887 -1.785491 3.148327 -0.896335 -1.590904 1.119331 -0.737350 0.128016 -0.772017 -0.301187 1.131902 -0.239461 -1.198333 1.329122 -0.758340 0.238506 1.663698 -0.512641 0.025008 -1.274401 -0.316572 0.017317 3.555718 -0.312793 0.295557 -0.157494 3.742534 -4.121977 4.278755 -4.189799 -3.741546 3.401582 0.517786 0.331159 -1.881596 -0.464879 1.473442 -1.140310 -2.081842 0.860878 -0.794079 0.529658 -1.950749 0.579450 3.049534 -4.988490 0.901239 0.303366 -1.306354 -2.212644 -0.541774 1.511031 0.494739 -1.754188 -2.254293 0.747088 0.548879 -1.980612 0.776216 -1.822024 -3.478163 1.543280 0.771507 -1.381226 0.951984 0.339025 -2.500525 2.027617 -2.446659 -1.795202 -1.144626 1.036914 -1.565176 1.627077 1.739401 2.560608 -4.884831 0.804139 -3.681355 2.964068 -2.350865 2.929750 3.056506 -1.242959 1.590786 1.166139 1.981362 1.227367 -0.200098 3.129864 1.534049 1.741939 -0.191271 1.868453 2.472069 -3.181117 -2.562191 -2.426618 -2.274944 0.457108 -1.095735 -2.867699 0.002923 -2.297446 0.499370 1.517389 -1.014758 -0.832825 3.045377 -5.646280 -0.810960 0.938871 -0.536438 2.241230 2.569918 0.030064 0.315557 -0.005007 3.011850 -0.920226 -0.053310 -0.857463 1.585802 -1.788497 -1.639088 -1.420151 0.044623 0.851618 -2.808476 -3.313659 -5.143079 -0.753843 2.022000 -0.862848 3.613057 5.435218 -1.057329 -2.828271 2.149022 -0.704917 0.092797 3.073351 0.585693 4.404340 -3.743637 1.622825 -1.138129 1.134170 1.315713 3.982130 -0.265630 -1.706941 1.488929 0.242376 -1.561413 2.276115 -0.307597 0.046007 -2.015587 0.671194 -1.157362 -0.819429 3.386394 -3.328302 2.998276 -1.926119 4.543113 -2.985877 -2.612742 1.452885 -4.355086 -0.984565 -2.567528 -1.471184 -0.201515 2.658168 -3.109902 -1.686467 -1.902808 -1.038158 -0.027066 2.301357 -2.559580 0.160000 -0.768431 -0.879939 4.024152 1.732671 -0.304968 0.378154 -3.247726 0.363608 1.833610 -0.506322 -4.368389 0.323229 -2.322698 -0.378152 0.907783 -0.393676 1.752430 -2.260876 -1.495920 0.597157 -1.020923 0.212434 -1.368830 -3.475168 0.828841 -0.780917 0.696562 1.679367 3.432525 2.954359 2.280067 0.538823 -0.464935 0.332449 -1.957102 -1.790673 1.499532 0.539448 1.014473 1.401081 2.430935 0.678690 0.629823 1.910296 0.832948 -0.085657 3.070616 0.890022 3.272600 -1.047209 0.391225 0.657488 -1.583054 1.846424 3.455341 -1.887256 -0.758907 1.773369 0.403416 -1.194914 -0.914590 -0.368321 -1.657039 -1.261395 1.897401 1.326707 -0.885519 -1.257858 4.658430 0.518355 -5.239837 2.498530 -0.147568 0.945895 2.057615 -1.131953 0.658588 1.549901 -1.227950 1.805487 1.158939 2.668860 -2.873251 -0.233650 -0.255032 2.290529 2.867776 -0.041397 -6.088536 0.594641 1.059326 3.480317 1.509129 3.733815 -1.722844 0.250985 -0.874806 -1.740423 -0.625616 -0.615463 1.941111 -0.648881 0.495834 -4.385141 0.109195 +PE-benchmarks/sudoku.cpp__FindUnassignedLocation(int (*) [9], int&, int&) = 0.972384 0.622113 2.046402 -2.148317 -1.132116 0.250954 2.005949 -0.999119 0.355481 4.448438 0.810300 -0.711195 -2.121588 2.726336 -0.588569 -1.581118 1.140340 -1.427287 0.017954 -0.665835 -0.178448 1.440271 -0.226270 -0.860874 1.266390 -0.751801 0.153224 1.998935 -0.636294 0.012652 -0.952167 -0.602580 -0.079061 3.376324 -0.400123 0.274898 -0.516153 4.057443 -4.177821 4.164029 -4.069160 -3.757522 3.293650 0.189213 0.204313 -3.050485 -0.433730 1.452367 -0.346488 -2.328907 0.999622 -0.398309 0.744985 -1.867960 0.691871 2.658046 -4.538547 0.342759 0.439380 -1.502776 -1.925806 -0.656630 1.094805 0.616365 -2.228530 -2.069930 0.677197 -0.208840 -1.670061 0.840455 -1.440004 -3.093459 1.426128 1.064205 -1.344917 1.076644 0.765480 -3.005407 2.192049 -2.060137 -1.951650 -1.150942 0.578748 -1.578544 1.790227 0.944134 2.478516 -4.749631 0.665123 -3.552267 2.599937 -2.618128 2.443690 3.176571 -0.664770 1.849196 1.180789 1.997550 1.081913 -0.882289 2.985826 1.941249 2.516205 0.297709 2.046540 2.467574 -3.237498 -2.757159 -2.782399 -2.273375 0.767386 -1.441437 -3.082297 0.128408 -1.412703 -0.520941 1.623770 -1.184917 -0.820032 3.471611 -5.301324 -0.185732 1.432591 -0.625557 1.478249 2.556195 -0.174867 0.102349 -0.066457 3.003388 -1.092728 1.031583 -0.660373 1.659015 -1.920167 -1.140797 -0.787259 -0.135405 0.513720 -2.461947 -3.103143 -4.898672 -0.762710 1.968303 -0.809924 2.711978 5.450479 -1.241079 -2.949713 2.338788 -0.193606 -0.136202 1.961937 0.615501 3.681657 -2.968471 0.889452 -1.572996 0.766787 1.249517 5.457610 0.164620 -1.650502 1.713694 -0.300838 -2.265328 2.173669 -0.620091 -0.187779 -1.505715 0.473059 -1.653780 -1.021008 3.348005 -3.290832 3.216937 -1.979426 4.049616 -2.428358 -2.157474 1.144226 -4.238096 -0.652398 -3.405260 -1.246278 0.358578 2.273284 -2.825691 -1.690621 -2.227859 -1.223144 -0.216745 1.979004 -4.201384 0.201986 -0.577796 -0.246101 3.831508 1.917773 -0.094923 -0.011484 -2.992747 0.802626 1.328048 -0.218724 -4.097886 0.150994 -1.858451 -0.527620 0.709107 -0.263121 1.671129 -1.703755 -1.372653 0.875699 -1.266341 -0.534276 -1.117808 -4.361388 0.609614 -0.320381 1.128116 1.274021 3.033818 3.071662 2.225540 0.737207 -0.207735 0.371527 -1.461634 -2.503837 1.325903 0.427951 0.407920 1.387425 2.575940 1.136568 0.614047 2.356096 1.357472 0.030768 2.904758 0.662998 3.323646 -0.557102 -0.266500 0.814413 -1.012996 1.706340 3.287711 -0.317217 -0.427613 1.862083 0.493880 -1.535242 -0.778322 -0.255608 -1.653921 -0.697002 2.281940 1.487593 -1.319561 -0.816862 4.371854 0.210321 -5.234926 1.853656 -0.036565 1.290946 2.164690 -0.785152 0.896308 1.687913 -1.177436 2.371463 1.140039 2.282545 -2.766285 -0.548036 -0.038621 1.755402 2.875809 0.343469 -6.507438 -0.030916 0.589420 3.476263 1.083612 4.461651 -1.648299 0.496747 -0.253811 -1.485032 -0.739527 -0.473082 1.870410 -0.771459 0.221793 -4.724034 0.196537 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.413627 0.486685 1.345503 -1.247561 -0.373573 0.789964 0.169171 -1.758479 0.571317 3.407534 1.143317 -1.018878 -0.271487 2.196894 -1.330852 -1.012050 1.410462 0.143276 0.449219 -0.850468 0.240782 0.571747 -0.209440 -1.213860 0.683063 -0.742680 0.818023 0.718209 -0.667994 0.455830 -1.704219 0.151971 -0.023331 2.785661 0.261109 0.364419 -0.458030 2.057598 -1.865887 2.988301 -3.973700 -2.119835 1.905018 0.732685 0.951203 -2.335040 -0.729801 0.607536 0.318513 -1.396123 0.297987 -1.564511 0.733901 -1.068244 -0.016152 2.315832 -2.858830 0.200848 0.211339 -1.148696 -1.551519 0.107686 1.951257 0.990675 -1.494822 -1.695334 1.091028 1.550809 -1.217953 1.237096 -1.909885 -3.580831 1.184928 0.559163 -1.393328 0.137501 -0.221981 -2.831797 1.332976 -1.776892 -1.114431 -0.774966 1.247910 -0.555953 0.421155 1.464320 2.707196 -3.795958 0.498920 -3.031648 2.428837 -1.563814 2.813295 1.756359 -0.992080 0.506182 0.934490 2.019437 1.713666 0.910254 2.356113 1.800080 0.863090 -1.356351 1.538913 1.751596 -1.626754 -1.947882 -0.930128 -1.350316 -0.152861 -0.493442 -3.172441 0.141220 -2.683716 0.621227 0.040968 -0.693277 0.147772 3.015759 -4.284613 -1.884703 0.403771 -0.002902 1.916891 1.952184 0.365465 1.020074 0.045330 2.202621 -0.353983 -0.904735 -0.791582 1.118732 -2.415077 -1.904591 -1.589156 0.297606 1.204772 -2.461597 -2.681399 -3.783133 -1.138672 1.553945 -0.490324 2.464622 3.336282 -0.626107 -2.323834 0.870720 0.026904 -1.079234 3.239603 0.371259 3.859982 -3.905964 2.401568 -0.654739 1.831007 0.837280 2.633676 -0.950635 -1.077768 1.170024 -0.026512 -2.536012 2.453743 -0.218560 0.386606 -0.718310 0.234364 -0.083452 -0.458392 2.236893 -2.674736 2.498651 -2.319600 3.426543 -3.210237 -2.195528 0.847295 -3.218963 -0.688647 -0.653704 -0.059791 -0.581151 3.151131 -2.543204 -1.357368 -0.223906 -1.460021 0.784192 2.045454 -1.406942 -0.137100 -0.694085 -1.598135 3.238057 1.026536 -0.160483 0.551509 -1.731398 0.286541 1.861283 0.024692 -3.280867 -0.263648 -2.801490 -0.137406 -0.980401 -0.243457 1.699970 -2.030527 -1.358034 0.049747 -0.813658 0.893133 -1.165132 -1.985177 1.039798 -1.330155 0.438950 0.420968 2.852757 2.098945 1.973294 0.098606 -1.720410 0.936123 -2.813936 -1.119793 1.566922 1.344658 0.388858 0.524739 2.334519 -0.138236 0.369261 1.018127 -0.101398 1.038014 2.449994 0.341044 2.064636 -1.796956 1.210877 0.182925 -1.896689 1.759819 3.165593 -0.814639 -0.979762 0.585610 0.203253 -1.142353 -1.318662 -0.433493 -0.601633 -1.477570 0.946675 1.474832 -0.159788 -1.745404 3.829471 1.396904 -3.881402 2.276462 -0.475868 0.048327 2.260539 -1.331424 0.684353 0.917943 -0.085453 0.899686 0.562242 2.310664 -2.227504 -1.395288 -0.419233 1.771801 1.903635 -0.944984 -4.197549 1.457385 1.378824 3.201015 1.351660 2.762709 -1.658247 0.919704 -0.861978 -1.161378 -0.698758 -0.497238 1.715444 -0.574548 -0.198782 -3.212732 0.347087 +PE-benchmarks/sudoku.cpp__UsedInRow(int (*) [9], int, int) = 0.647660 0.253399 0.856423 -1.350208 -0.322647 0.152819 1.397301 -0.484564 0.233339 2.346988 0.702155 -0.617601 -1.624260 1.611598 0.028838 -1.231516 1.104269 -0.899216 -0.046137 0.098647 -0.280761 0.801007 -0.150143 -0.785399 1.108445 -0.140393 -0.192639 1.360406 0.168845 -0.405139 -1.001198 -0.143841 -0.044663 2.291299 -0.359440 0.057142 -0.026577 2.634631 -2.610513 2.602063 -2.302423 -1.921639 2.435052 0.129531 -0.365580 -1.580331 -0.131708 1.072137 -0.685842 -1.763644 0.760578 -0.395504 0.422109 -1.420300 0.325163 2.465795 -3.218820 0.396799 0.477722 -0.366015 -1.180938 -0.447282 0.789758 0.059875 -1.158447 -1.518771 0.443801 -0.608980 -1.305104 0.244154 -1.348730 -2.146290 1.460554 0.789617 -0.862596 0.796728 0.045498 -2.007427 1.279154 -1.144362 -1.112111 -0.693921 0.546866 -0.693922 1.408380 0.449802 1.269722 -3.139198 0.026014 -2.349206 1.685669 -1.819553 1.887263 2.243826 -0.757386 1.104929 0.502798 0.807561 0.312098 -0.417113 2.192157 0.775669 1.343774 -0.212755 1.138576 1.414758 -2.152123 -1.750030 -1.531983 -1.332328 0.396790 -0.538676 -2.126645 0.179004 -1.557373 0.085606 1.396626 -0.677233 -0.576060 1.844818 -2.822898 -0.195543 0.647081 -0.431429 1.458774 2.228600 0.030944 -0.136992 -0.143593 1.994198 -0.295070 0.557294 -0.760791 1.099935 -0.800180 -1.086714 -0.265910 -0.337152 0.479322 -1.780021 -2.185968 -3.160799 -0.259189 0.757824 -0.649311 1.751052 3.534191 -0.728075 -1.651736 1.624048 -0.304323 0.610325 1.461758 0.187522 2.785345 -2.353931 1.026039 -0.582996 0.762539 0.688411 2.848690 -0.164891 -1.219668 0.698698 -0.186192 -1.210132 1.550514 0.125500 0.123633 -0.371987 0.110929 -0.932603 -1.269916 2.419932 -1.557219 2.072960 -0.855453 2.880158 -1.582564 -1.527384 1.197850 -1.577466 -0.506274 -2.315407 -1.343787 0.359523 1.218129 -1.754259 -1.061994 -1.372657 -0.165287 -0.223824 1.473745 -1.710145 0.008280 -0.616210 -0.399352 1.918133 1.040026 -0.476535 0.231692 -2.225063 0.408991 0.907254 -0.563488 -2.467365 0.241266 -1.321030 -0.354181 1.092324 -0.336331 1.098642 -1.188158 -1.201225 0.895522 -0.447563 -0.050849 -0.868415 -2.901058 0.387964 -0.154795 0.040588 1.147220 2.289179 1.844898 1.322066 0.135670 -0.270292 0.268997 -0.611712 -1.975708 0.498028 -0.390193 1.068837 1.040285 1.179220 0.662961 0.360306 1.296032 0.482514 -0.102203 1.991087 1.066979 2.135503 0.134905 -0.432569 0.882954 -1.268294 1.243464 1.953726 -1.016283 -0.481781 1.267017 0.526129 -0.942639 -0.758332 -0.243201 -1.117898 -0.898430 1.522624 0.305733 -0.610739 -0.672789 3.132721 -0.042502 -3.598384 1.386555 -0.068151 0.896017 1.291804 -0.436514 0.711916 1.110680 -0.988420 1.348597 0.630980 1.800414 -1.568992 0.010968 -0.079318 1.198317 1.325630 -0.047480 -3.858668 -0.172346 0.314030 2.385496 1.327054 2.461434 -0.749868 0.481453 -0.584476 -0.888232 -0.224672 -0.835910 1.225184 -0.472357 -0.092418 -3.290244 0.540948 +PE-benchmarks/sudoku.cpp__UsedInCol(int (*) [9], int, int) = 0.647660 0.253399 0.856423 -1.350208 -0.322647 0.152819 1.397301 -0.484564 0.233339 2.346988 0.702155 -0.617601 -1.624260 1.611598 0.028838 -1.231516 1.104269 -0.899216 -0.046137 0.098647 -0.280761 0.801007 -0.150143 -0.785399 1.108445 -0.140393 -0.192639 1.360406 0.168845 -0.405139 -1.001198 -0.143841 -0.044663 2.291299 -0.359440 0.057142 -0.026577 2.634631 -2.610513 2.602063 -2.302423 -1.921639 2.435052 0.129531 -0.365580 -1.580331 -0.131708 1.072137 -0.685842 -1.763644 0.760578 -0.395504 0.422109 -1.420300 0.325163 2.465795 -3.218820 0.396799 0.477722 -0.366015 -1.180938 -0.447282 0.789758 0.059875 -1.158447 -1.518771 0.443801 -0.608980 -1.305104 0.244154 -1.348730 -2.146290 1.460554 0.789617 -0.862596 0.796728 0.045498 -2.007427 1.279154 -1.144362 -1.112111 -0.693921 0.546866 -0.693922 1.408380 0.449802 1.269722 -3.139198 0.026014 -2.349206 1.685669 -1.819553 1.887263 2.243826 -0.757386 1.104929 0.502798 0.807561 0.312098 -0.417113 2.192157 0.775669 1.343774 -0.212755 1.138576 1.414758 -2.152123 -1.750030 -1.531983 -1.332328 0.396790 -0.538676 -2.126645 0.179004 -1.557373 0.085606 1.396626 -0.677233 -0.576060 1.844818 -2.822898 -0.195543 0.647081 -0.431429 1.458774 2.228600 0.030944 -0.136992 -0.143593 1.994198 -0.295070 0.557294 -0.760791 1.099935 -0.800180 -1.086714 -0.265910 -0.337152 0.479322 -1.780021 -2.185968 -3.160799 -0.259189 0.757824 -0.649311 1.751052 3.534191 -0.728075 -1.651736 1.624048 -0.304323 0.610325 1.461758 0.187522 2.785345 -2.353931 1.026039 -0.582996 0.762539 0.688411 2.848690 -0.164891 -1.219668 0.698698 -0.186192 -1.210132 1.550514 0.125500 0.123633 -0.371987 0.110929 -0.932603 -1.269916 2.419932 -1.557219 2.072960 -0.855453 2.880158 -1.582564 -1.527384 1.197850 -1.577466 -0.506274 -2.315407 -1.343787 0.359523 1.218129 -1.754259 -1.061994 -1.372657 -0.165287 -0.223824 1.473745 -1.710145 0.008280 -0.616210 -0.399352 1.918133 1.040026 -0.476535 0.231692 -2.225063 0.408991 0.907254 -0.563488 -2.467365 0.241266 -1.321030 -0.354181 1.092324 -0.336331 1.098642 -1.188158 -1.201225 0.895522 -0.447563 -0.050849 -0.868415 -2.901058 0.387964 -0.154795 0.040588 1.147220 2.289179 1.844898 1.322066 0.135670 -0.270292 0.268997 -0.611712 -1.975708 0.498028 -0.390193 1.068837 1.040285 1.179220 0.662961 0.360306 1.296032 0.482514 -0.102203 1.991087 1.066979 2.135503 0.134905 -0.432569 0.882954 -1.268294 1.243464 1.953726 -1.016283 -0.481781 1.267017 0.526129 -0.942639 -0.758332 -0.243201 -1.117898 -0.898430 1.522624 0.305733 -0.610739 -0.672789 3.132721 -0.042502 -3.598384 1.386555 -0.068151 0.896017 1.291804 -0.436514 0.711916 1.110680 -0.988420 1.348597 0.630980 1.800414 -1.568992 0.010968 -0.079318 1.198317 1.325630 -0.047480 -3.858668 -0.172346 0.314030 2.385496 1.327054 2.461434 -0.749868 0.481453 -0.584476 -0.888232 -0.224672 -0.835910 1.225184 -0.472357 -0.092418 -3.290244 0.540948 +PE-benchmarks/sudoku.cpp__UsedInBox(int (*) [9], int, int, int) = 0.955635 0.488609 1.180921 -2.198261 -0.211537 0.197507 2.226159 -0.782986 0.154720 3.780931 0.944678 -0.627743 -2.833333 2.005644 0.033601 -2.007547 1.756135 -1.127605 -0.086443 -0.275606 -0.362306 1.085277 -0.191849 -1.383222 1.638041 -0.419705 -0.103113 2.050654 0.446296 -0.343452 -1.389181 -0.286973 -0.030967 3.438104 -0.565669 0.237856 -0.455775 3.693874 -3.882533 3.446088 -3.677390 -3.215666 3.755973 0.239261 -0.444998 -2.916711 -0.046625 1.408597 -0.973393 -2.583686 0.815992 -0.720448 0.745394 -2.290288 0.335232 3.668894 -4.603169 0.386965 0.648009 -0.801947 -1.963288 -0.692661 1.623703 0.028982 -1.692511 -2.277861 0.691017 -1.090598 -1.998302 0.538551 -2.227660 -3.185066 1.442788 1.298322 -1.163646 1.159754 -0.153967 -3.139211 1.710112 -1.346510 -1.431444 -1.171137 0.939171 -0.830476 1.789845 0.769350 1.928070 -4.662565 -0.133897 -3.372642 2.351087 -2.496114 3.028059 3.137435 -0.928973 1.709129 0.751974 1.137878 0.235147 -1.156032 3.231622 1.185917 2.300416 -0.462743 1.841894 2.081000 -3.224165 -2.711436 -2.164485 -1.886578 0.600230 -1.148206 -3.194156 0.191586 -2.638227 -0.747338 2.026060 -1.316278 -1.007330 2.669842 -4.513015 -0.594360 0.998996 -0.693704 2.209190 3.131771 0.212011 -0.220626 0.070469 2.866993 -0.372810 0.831312 -1.188854 1.679145 -1.033587 -1.646718 -0.154198 -0.562874 0.700880 -2.729362 -3.280802 -4.544935 -0.597682 1.023126 -0.796885 2.202920 5.125932 -0.970474 -2.670995 2.181876 -0.913325 0.876084 2.203516 0.358855 4.131973 -3.669896 1.813315 -0.749889 1.404267 1.298441 4.322446 -0.470232 -1.896300 1.095050 -0.541509 -1.408956 1.348891 -0.179923 0.419841 -0.872716 0.247219 -1.527728 -1.623208 3.384938 -2.899989 3.340233 -1.475505 3.877251 -2.601524 -2.254547 1.624886 -3.049988 -1.025462 -3.363101 -1.884125 0.239855 1.886560 -2.610677 -1.641668 -2.405822 -0.146095 -0.114029 2.408517 -3.329828 -0.098842 -1.080293 -0.584105 2.738270 1.382512 -0.758669 0.339403 -3.053835 0.637032 1.628575 -0.429272 -3.799024 0.290691 -2.039812 -0.595389 1.527950 -0.453580 1.790436 -1.355016 -1.710106 1.404847 -0.664100 -0.253021 -1.525808 -4.257030 0.663051 -0.393095 -0.139629 1.453200 3.623412 2.625821 1.818948 -0.081977 -0.671375 0.767534 -1.283251 -3.081426 0.753744 -0.629786 1.431979 1.509284 1.518028 0.905121 0.598992 2.131068 0.815758 -0.209101 2.920862 1.577760 3.031306 0.292138 -0.659063 1.415512 -2.091349 1.541879 2.843652 -0.779070 -0.711258 1.935015 0.668156 -1.394129 -1.342098 -0.453358 -1.614629 -1.478116 2.464626 0.747371 -1.153640 -1.081501 4.786100 0.051082 -5.397593 2.191647 -0.116742 1.268244 1.929773 -0.925556 0.963549 1.772158 -1.261823 1.890322 0.796210 2.601715 -2.395645 0.182045 -0.115534 1.928882 2.131974 -0.547641 -5.821264 -0.109269 0.361953 3.750823 2.111940 3.922777 -0.993974 0.990959 -1.043199 -1.200247 -0.239825 -1.326810 1.939948 -0.604633 -0.490169 -5.047863 1.197170 +PE-benchmarks/sudoku.cpp__printGrid(int (*) [9]) = 0.761904 0.479904 1.057562 -1.146308 -0.456947 0.357314 0.737071 -0.806948 0.065871 2.814042 0.472453 -0.462108 -1.925644 1.262425 -0.424690 -1.499465 0.697349 -0.497551 0.058525 -0.786649 -0.314337 0.615807 -0.132328 -0.790471 0.893847 -0.603425 0.092337 1.193501 0.256189 0.006526 -0.688261 -0.239292 0.031915 2.369336 -0.184978 0.291308 -0.181148 2.526993 -1.956914 2.083923 -2.703243 -2.684729 2.291810 0.243708 0.091275 -1.468587 0.252452 0.959568 -1.286310 -1.132074 0.459637 -0.544813 0.362823 -1.313898 0.234129 2.061055 -3.338419 0.864262 0.131393 -0.920791 -1.482210 -0.410057 0.971660 0.178001 -0.629343 -1.479376 0.390094 0.130923 -1.482352 0.622024 -1.242287 -1.977196 1.094270 0.648348 -0.906483 0.653967 0.149019 -1.373422 1.109921 -1.375795 -1.163328 -0.853664 0.793942 -0.557543 1.131987 1.067313 1.382236 -3.204481 0.229798 -2.378232 1.821153 -1.403046 2.042637 1.954706 -0.760007 1.172227 0.787927 0.655096 0.382285 -0.682183 2.148297 0.621495 1.350517 0.048432 0.986280 1.283117 -1.996141 -1.623392 -1.424492 -1.395832 0.246319 -0.670142 -1.957361 -0.053778 -1.670733 0.328382 1.197693 -0.728812 -0.632730 1.497059 -3.751788 -0.852773 0.547327 -0.410187 1.799557 1.536516 0.097208 0.272920 0.262455 2.076049 -0.572879 0.070603 -0.670348 1.080787 -0.410843 -1.145400 -1.010936 -0.059232 0.631590 -1.714216 -2.208252 -2.880038 -0.627845 1.020944 -0.448323 1.967150 3.585882 -0.662448 -1.864848 1.519705 -1.204351 0.475707 1.980754 0.455199 2.646695 -2.339281 1.007446 -0.614631 0.799164 0.981454 2.476507 -0.262843 -1.166927 0.975839 0.189914 0.014690 0.247835 -0.421403 -0.029401 -1.320838 0.197694 -0.917237 -0.555117 1.975589 -2.021196 2.130827 -0.973612 2.798653 -1.939564 -1.906100 0.852618 -2.676857 -0.709625 -1.567436 -0.984676 -0.113544 1.379150 -2.197884 -1.186637 -1.387654 -0.329703 -0.088024 1.540605 -1.541709 0.057908 -0.466241 -0.394461 2.543340 1.128251 -0.265926 0.022431 -2.068607 0.282315 1.085684 -0.163500 -2.600851 0.179492 -1.333669 -0.310526 1.165867 -0.234696 1.178089 -0.836879 -0.875427 0.474311 -0.655125 0.188818 -0.791520 -2.161911 0.536413 -0.279499 0.020776 0.961709 2.284146 1.906689 1.330496 0.211774 -0.232107 0.531092 -1.141803 -0.997358 0.657056 0.227813 0.902024 0.936344 1.170238 0.581585 0.449130 1.397800 0.756949 -0.199268 2.005196 0.592879 2.260338 -0.833908 0.101283 0.487105 -1.026290 1.062728 2.091372 -1.194740 -0.383296 1.231782 0.361097 -0.479156 -0.922779 -0.295669 -1.157122 -0.695852 1.403959 0.957142 -0.736247 -0.804774 3.080485 0.258341 -3.394508 1.855135 0.006381 0.601395 1.133111 -0.758426 0.142951 1.173098 -0.978822 1.010226 0.781303 1.708373 -1.891261 0.206167 -0.166667 1.607904 1.228587 -0.114031 -3.575581 -0.204312 0.584811 2.370628 1.310619 2.352848 -0.941588 -0.045697 -0.512299 -1.071704 -0.357702 -0.428182 1.241429 -0.313488 0.132654 -2.690579 0.200979 +PE-benchmarks/sudoku.cpp__main = 0.258607 0.132510 0.301747 -0.541889 -0.424197 0.322649 -0.367724 -0.264751 0.133783 0.370241 0.101552 -0.212443 -1.195552 0.430310 -0.269987 -0.957100 0.056624 -0.481687 0.067278 -0.396448 -0.268034 0.131677 -0.059001 -0.070101 0.251134 -0.341484 -0.165235 0.306012 0.997264 -0.481928 -0.500403 -0.007618 -0.148055 0.982925 0.016563 0.039800 0.393475 1.391245 0.445858 0.419750 -0.768271 -0.994612 0.583058 0.069074 -0.129204 -0.093851 0.406192 0.402543 -1.368936 0.293106 0.460354 -0.219974 -0.192065 -0.221795 0.229199 0.739684 -1.583914 1.202508 -0.136862 0.207006 -0.158138 -0.376041 0.017157 -0.033214 0.399701 -0.524293 0.295081 0.491078 -1.227134 0.196315 -0.329063 -0.497237 1.119563 0.420414 -0.492048 0.248555 0.330736 -0.175430 0.301492 -1.040874 -0.747362 -0.089376 0.456399 0.044366 1.006383 0.365056 0.113790 -1.299795 -0.002951 -1.124233 0.536608 -0.686983 0.848740 0.893584 -0.684680 0.407478 0.323629 -0.135561 0.157090 -0.059534 1.096757 -0.086760 0.205906 0.192280 0.200346 -0.024814 -0.313330 -0.163372 -0.161707 -0.553689 -0.470011 0.134838 -0.934515 -0.062357 -0.742683 0.882196 0.411570 0.303768 -0.452814 -0.198984 -1.477869 -1.057462 -0.182053 -0.176516 1.215109 0.605965 -0.110305 0.303674 0.110924 1.165429 -0.220158 -0.133572 -0.517337 0.271789 0.679062 -0.508355 -1.351781 -0.073637 0.537581 -0.493084 -1.135256 -0.534623 -0.485294 0.000586 -0.112643 1.368353 1.585897 -0.180221 -0.499154 1.005231 -1.150740 0.980473 1.388340 0.156081 0.946910 -0.743173 0.358367 -0.098740 0.268030 -0.046607 -0.335775 -0.015878 -0.288011 0.021365 0.569097 1.170606 -0.649996 -0.153600 -0.291659 -0.973746 -0.223288 -0.507783 -0.646906 0.868180 -0.361515 0.870120 0.329757 1.428399 -0.717523 -1.261698 0.549092 -0.145961 0.156751 -0.218713 -0.324809 -0.137429 0.284012 -1.043388 -0.609976 -0.147823 0.216875 -0.256000 0.358373 1.122160 0.068053 -0.035414 0.125885 1.103052 0.903165 -0.091268 0.130805 -1.144978 0.142769 0.376397 -0.295721 -0.576714 0.370858 -0.270088 -0.078689 1.110630 -0.091498 0.185169 -0.136650 -0.583694 -0.214618 0.010141 0.769234 0.110510 -0.704157 0.218635 0.041015 -0.420567 0.579296 0.665265 0.905905 0.425913 0.328986 -0.176475 0.223615 -0.143564 0.569158 -0.106142 0.230336 0.783617 0.307536 0.611541 0.350307 0.111861 0.560216 0.590358 -0.397617 0.750861 0.268650 1.301044 -0.774842 -0.014107 -0.163478 -0.499223 0.578657 1.261733 -1.482921 0.110856 0.604715 0.694204 0.386919 -0.910560 -0.176635 -0.626567 -0.039170 0.268795 -0.019486 -0.169776 -0.250671 1.134204 0.048798 -1.136307 0.920462 0.050454 0.167959 0.079903 -0.171840 -0.518439 0.508652 -1.258695 0.330767 0.399918 0.537689 -0.477484 0.122625 -0.152294 0.784660 -0.625624 0.115583 -0.213599 -0.202853 0.507716 0.947628 1.206420 -0.043161 -0.217947 -0.898155 -0.045539 -0.705463 -0.264139 0.065685 0.495960 -0.528297 0.248009 -0.246053 -0.647294 +PE-benchmarks/sudoku.cpp___GLOBAL__sub_I_sudoku.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/optimized-naive-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.776769 1.647933 2.289844 -2.102260 -0.131388 0.682191 1.820085 -1.903402 0.259255 7.072094 0.992854 -0.861167 -3.181244 1.829287 -1.384858 -2.443144 1.811606 -0.371530 0.095745 -2.713398 -0.403090 0.774199 -0.106516 -2.657289 1.808307 -1.786451 1.125925 1.940001 -0.485356 0.692371 -0.984044 -0.424416 0.951980 4.864823 -0.428088 0.798312 -1.516545 3.619170 -3.508617 3.492002 -6.471951 -5.939924 5.238560 0.791923 0.771234 -3.777164 1.135732 1.568409 -0.693568 -2.615967 -0.592903 -1.718516 1.279102 -3.543930 -0.821860 4.250670 -5.610884 0.842215 0.050552 -3.296513 -4.278309 -0.501166 3.571748 0.974905 -1.372052 -2.886796 0.877623 0.610715 -2.904176 1.856573 -2.965226 -4.429638 1.019545 0.973552 -1.548621 1.097951 -1.023855 -2.828939 1.753337 -1.870232 -1.205186 -2.246899 2.484129 -0.533873 0.411561 2.757731 3.612500 -6.461812 -0.011677 -4.362508 4.168796 -1.728985 4.986276 2.804601 -0.744192 2.416791 1.325574 1.209171 0.511079 -1.434444 4.082106 1.206995 3.646721 -0.879471 2.012094 3.263355 -3.923884 -3.837807 -2.264919 -2.538039 0.875410 -0.914111 -3.328231 -0.261975 -4.694955 -0.613422 2.168437 -2.310414 -1.081660 3.818176 -7.920647 -2.996192 1.526162 -0.824310 3.804035 2.453926 1.010259 0.895996 1.411536 3.515619 -0.736266 -0.871095 -1.175633 2.339237 -1.386066 -2.764788 -1.246592 -0.032182 1.157805 -3.970559 -4.329085 -6.008305 -1.673499 2.556002 -0.844697 2.898174 6.587031 -0.846590 -4.318182 1.648126 -2.190471 -0.319043 4.115479 1.118914 6.111124 -6.083653 3.438220 -0.757763 2.948479 3.408555 6.830129 -1.647235 -2.568979 2.262636 -0.068123 -0.188388 -0.319548 -1.326124 1.102354 -1.924662 0.623898 -1.353140 -0.464782 2.883170 -4.069190 4.641553 -3.262496 5.485230 -5.345704 -3.917811 1.263137 -6.461550 -2.519388 -2.078124 -1.027440 -0.729151 3.950948 -4.156809 -2.458099 -2.479749 -1.315896 0.931870 3.895074 -4.939889 -0.126080 -1.666786 -2.356552 4.993026 0.896055 -1.011036 -0.113402 -3.380599 -0.099563 2.927236 1.084891 -5.576491 -0.552239 -3.547625 -0.751183 1.370309 -0.413679 3.013750 -1.187205 -1.215199 1.465780 -1.833314 -0.211073 -2.962551 -3.459221 1.445814 -1.337101 -0.071230 0.414527 5.639339 3.445302 2.462810 -0.759117 -1.286706 1.442675 -4.135006 -2.372255 1.783583 0.717457 1.191779 1.805514 2.213293 0.417225 1.144276 3.213224 0.386042 -0.331279 3.930713 0.254807 3.729996 -3.063845 1.182425 1.249618 -2.697573 1.938406 4.174326 -0.677418 -2.331986 2.191259 -0.070541 -1.303162 -1.819864 -0.913606 -1.692540 -1.537053 2.992879 3.506287 -1.512579 -2.262559 6.850690 1.355188 -7.043214 4.588862 -0.257844 0.763396 2.609433 -2.790895 0.478503 2.714103 -0.012003 0.804159 1.112990 3.870657 -4.558777 0.037006 -0.528694 3.946303 2.680889 -1.687140 -8.350688 0.029279 1.298491 4.952198 2.325573 5.912590 -2.236629 1.173574 -1.787041 -1.524134 -0.680114 -0.707728 2.698001 -0.248865 -0.210030 -6.070754 2.473798 +PE-benchmarks/optimized-naive-algorithm.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/optimized-naive-algorithm.cpp___GLOBAL__sub_I_optimized_naive_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/finite-automata-algorithm.cpp__getNextState(char*, int, int, int) = 2.775548 1.057115 2.826380 -2.723170 0.094675 0.885512 3.451040 -2.578965 0.552240 9.552567 1.484174 -0.950922 -3.133668 2.771076 -1.081698 -2.251526 3.324385 0.226157 0.410716 -1.494142 -0.958983 1.334994 -0.591858 -2.975822 2.701043 -1.528982 1.330007 2.783111 -1.717465 1.033031 -2.065073 -0.776907 0.243176 6.454435 -0.463074 0.719587 -1.711666 5.229505 -6.103222 6.279825 -7.559729 -6.179811 6.415436 0.805477 1.210482 -4.284853 0.862714 2.358655 0.818449 -5.395641 -0.008089 -2.378256 2.212938 -4.447461 -0.515886 5.665470 -6.577450 -1.091447 0.960249 -3.703030 -5.469883 -0.619195 4.527575 1.266228 -4.309157 -4.305363 1.469667 0.076854 -2.828463 1.827404 -4.598201 -6.908125 1.070123 1.446946 -2.621545 1.395339 -1.008597 -5.103973 2.732970 -1.143450 -2.112897 -2.769226 2.033231 -2.455036 1.249786 2.548135 5.527058 -8.586823 1.371104 -6.198069 5.027474 -3.099954 6.444499 4.824304 -0.700294 2.932096 1.949734 4.015747 0.482980 -1.452762 5.498790 2.502073 3.595735 -1.531020 3.331370 4.317374 -5.916110 -5.689829 -3.744742 -3.185835 1.718330 -1.562486 -4.555416 0.065698 -5.771006 -0.114221 2.694080 -2.340481 -1.377658 6.615396 -10.146256 -1.895213 2.223298 -1.199693 4.363403 4.360477 1.045874 0.518366 1.034502 4.598458 -1.196919 -0.795046 -1.754035 3.332591 -3.382007 -1.681477 -0.127194 -0.417688 1.683298 -5.403513 -5.872861 -8.708816 -1.929463 3.920352 -1.414231 4.335200 8.841790 -1.738240 -4.754901 2.216377 -2.632004 -0.962867 4.495525 1.312600 8.008567 -8.083977 4.326493 -1.682512 3.801919 3.616383 9.308031 -1.756132 -3.547001 3.138922 -0.907166 -1.960443 3.864397 -0.805266 1.379827 -1.255873 1.005230 -1.022982 -1.121156 4.924219 -6.952371 5.704615 -4.238232 7.545855 -5.920051 -3.449477 1.861754 -7.250627 -2.768455 -4.400780 -1.665547 -0.559182 5.301624 -4.870089 -3.135214 -3.046046 -2.107678 1.303712 5.418745 -6.364843 -0.328094 -2.131762 -3.228749 6.760844 1.267830 -1.067246 -0.390121 -4.402358 0.571046 2.905610 -0.418676 -6.261284 -1.030827 -4.820153 -1.108439 0.604646 -0.442852 4.191437 -3.245957 -2.142976 2.094662 -1.520382 -0.917174 -3.595599 -6.331150 1.724374 -1.272070 0.275765 1.391508 7.239590 4.480495 3.954646 -0.542687 -1.925073 1.322984 -4.239848 -5.816624 2.831152 0.167837 2.274307 2.354203 2.880638 0.745881 1.560623 3.062284 -0.505454 1.435556 5.478968 1.254061 4.792952 -2.360870 0.740424 2.480006 -3.709742 2.838127 4.645047 -1.116405 -2.191119 2.581511 -0.126317 -3.517902 -1.301077 -0.603548 -2.042195 -2.350081 2.901819 3.773720 -1.424137 -3.208582 9.193000 1.163027 -10.005141 4.631675 -0.592800 1.658691 5.079054 -2.570515 2.734462 2.624685 0.893771 2.510269 1.446560 5.065128 -5.745052 0.183258 -0.276488 4.041972 4.294414 -2.032660 -11.875332 0.420207 0.674046 6.705848 2.670408 7.980792 -2.934045 3.400776 -1.977191 -2.568914 -0.444860 -1.749120 3.950656 0.052620 -0.582129 -10.059486 3.686946 +PE-benchmarks/finite-automata-algorithm.cpp__computeTF(char*, int, int (*) [256]) = 0.854411 0.505495 1.233991 -1.666937 -0.477970 0.185678 1.407625 -0.838324 0.269098 3.198042 0.860508 -0.857810 -1.795166 2.076350 -0.366173 -1.470992 1.100381 -0.773303 -0.145649 -0.432499 -0.162151 0.876729 -0.139510 -1.134194 1.124859 -0.459714 0.130330 1.571817 0.048719 -0.158036 -1.078340 -0.227012 0.188679 2.838142 -0.376224 0.207014 -0.328307 2.946133 -3.165238 3.023372 -3.236414 -2.755487 3.001564 0.289526 -0.123258 -2.318265 -0.383665 1.186799 -0.664231 -1.965277 0.579141 -0.538439 0.535697 -1.829402 0.263837 2.796281 -3.782341 0.494543 0.436173 -0.931238 -1.708361 -0.455592 1.301441 0.328354 -1.472715 -1.862315 0.574666 -0.275675 -1.578575 0.582680 -1.596207 -2.789995 1.521560 0.776961 -1.037754 0.868875 0.015089 -2.444605 1.580298 -1.367886 -1.218938 -0.918807 0.860545 -0.794529 1.321391 0.846061 1.806672 -3.888105 0.094935 -2.855609 2.164181 -2.028262 2.358049 2.415290 -0.948724 1.347584 0.667871 1.205141 0.635823 -0.447813 2.551975 1.161213 1.889306 -0.364484 1.570662 1.862567 -2.507382 -2.238343 -1.862504 -1.801525 0.489626 -0.896917 -2.837190 0.143983 -1.956101 -0.275669 1.387402 -1.052332 -0.587000 2.516546 -3.946224 -0.495290 0.930612 -0.491687 1.655774 2.419850 0.070772 0.053220 0.002020 2.337626 -0.385018 0.391848 -0.704876 1.315155 -1.260725 -1.552415 -0.568362 -0.148039 0.600811 -2.219563 -2.646409 -3.882659 -0.522538 1.250391 -0.701694 2.046812 4.255621 -0.773436 -2.380930 1.697841 -0.256331 0.236286 2.046233 0.359984 3.664695 -3.072376 1.433250 -0.761914 1.032525 1.155454 3.550896 -0.368472 -1.549653 1.080653 -0.280893 -1.760871 1.695607 -0.247498 0.275191 -0.768587 0.341309 -1.135391 -1.108609 2.775461 -2.230430 2.759615 -1.463125 3.418016 -2.329870 -1.994978 1.224524 -2.800844 -0.841885 -2.411786 -1.268509 0.142789 1.967129 -2.229067 -1.332761 -1.699863 -0.597108 -0.029608 2.009351 -2.567130 0.017286 -0.800188 -0.621049 2.525650 1.239170 -0.520718 0.296444 -2.546408 0.440858 1.483067 -0.243651 -3.393316 0.139948 -1.845566 -0.397276 0.803937 -0.365829 1.481700 -1.358433 -1.291372 0.885043 -0.805074 -0.129736 -1.289409 -3.163313 0.597951 -0.563273 0.371651 1.041454 2.951267 2.387555 1.661094 0.158877 -0.484586 0.502350 -1.404425 -2.113894 0.897519 -0.076234 0.866865 1.206072 1.734118 0.586654 0.503800 1.817308 0.667330 -0.100347 2.449880 1.002420 2.583224 -0.300403 -0.148808 0.841564 -1.486487 1.448708 2.751813 -0.760636 -0.724498 1.464393 0.497855 -1.136122 -1.044103 -0.451670 -1.230250 -1.163190 1.982853 0.889041 -0.872655 -0.893564 3.858910 0.298875 -4.335745 1.861550 -0.114842 0.895567 1.648266 -0.978847 0.727182 1.439776 -0.824790 1.411359 0.754450 2.131162 -2.209247 -0.269744 -0.129379 1.718552 1.964947 -0.254882 -4.949246 0.234490 0.630332 3.043320 1.338215 3.230550 -1.208730 0.620297 -0.708810 -0.980747 -0.343115 -0.810014 1.529844 -0.706212 -0.114662 -3.910800 0.588168 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 1.268150 1.136324 1.350914 -2.399535 -1.624809 0.679648 0.471555 -1.959138 0.151704 3.994107 1.846857 -2.048996 -1.638837 3.292546 -1.086351 -2.104561 1.040937 -0.031212 -0.262202 -1.222917 -0.148242 1.062572 -0.466377 -1.657220 0.850327 -0.783227 0.389254 1.368110 1.025412 0.073769 -2.039817 -0.386046 0.763848 4.264626 0.250609 -0.139756 -0.580845 4.153620 -2.925497 3.422018 -4.746280 -3.756458 3.906485 0.702145 0.145758 -3.461287 -1.297910 1.754922 -0.628620 -2.187283 0.662019 -1.228526 0.798164 -2.152120 -0.070807 3.624227 -4.734212 1.485786 0.842248 -1.506694 -2.295634 -0.615079 2.286121 1.109138 -1.988137 -2.458648 0.917917 0.997749 -1.937319 0.531372 -2.506712 -4.819956 2.751503 0.948374 -1.956657 0.610285 -0.507216 -3.533112 2.136449 -1.519956 -2.220225 -0.902571 1.461264 -0.497979 1.490953 1.473728 2.979726 -5.920864 0.149906 -4.994724 2.962606 -2.459740 3.694382 3.276958 -2.287410 1.155314 1.136704 1.723524 1.995149 0.332909 3.762518 1.453087 2.165229 -0.848424 2.268940 2.955682 -2.600557 -2.709823 -1.889087 -3.183078 0.448543 -0.476725 -4.748997 0.498962 -3.366359 -0.352253 0.718638 -1.164073 -0.557940 3.396661 -5.221499 -2.507682 1.112806 -0.715856 3.034487 3.607990 0.062677 1.083572 -0.233494 3.375117 -0.511645 -0.090059 -0.976151 1.908315 -1.979989 -3.380404 -2.522804 0.761925 1.618312 -3.483969 -4.061436 -5.471391 -0.888631 1.372817 -1.275692 2.661696 6.189899 -1.486943 -3.581176 2.573431 0.008245 -0.170649 4.295028 0.363799 6.544845 -4.823951 2.543198 -0.619610 1.222701 1.152820 3.580736 -0.888302 -1.995570 1.378892 -0.437466 -2.845578 2.511842 -0.669359 -0.146834 -1.098165 0.777545 -1.155604 -1.728600 3.771988 -2.462789 3.469195 -1.828013 5.225251 -3.813423 -3.389748 1.925975 -3.384215 -1.498040 -1.961195 -0.982277 -0.109705 3.933716 -3.050300 -1.867269 -1.213294 -1.103656 -0.337848 2.762227 -1.879000 0.019932 -0.573708 -1.036380 2.905451 2.357459 -0.478125 0.617393 -3.443314 0.376593 2.946434 -0.200180 -4.847860 -0.323934 -3.624769 -0.474036 0.341122 -0.671130 2.274201 -1.897927 -1.871641 0.584666 -1.381663 1.130511 -1.376039 -3.377269 1.590378 -1.749940 0.825957 0.802088 4.654034 3.381666 3.187322 0.884220 -0.980603 1.069547 -2.506273 -1.742542 1.331846 0.696162 1.177002 1.864380 2.740118 0.771034 1.126649 2.758983 0.205775 0.209058 3.632671 0.901139 4.410010 -1.253862 0.679840 0.459384 -2.355590 2.579827 5.733890 -0.776605 -1.602879 1.676809 0.282521 -1.569233 -2.588459 -0.508500 -1.207383 -2.073630 2.232198 1.887963 -0.544940 -1.946810 5.784347 0.619576 -6.118310 3.496994 -0.213673 1.105748 2.720007 -1.880199 0.865835 1.953748 -0.852546 1.755505 1.928943 3.368998 -3.461604 -1.147040 -0.523415 3.087717 2.170844 -0.465985 -6.341207 1.841907 1.988435 4.370102 1.901580 3.758552 -2.560018 0.326801 -0.606699 -1.292834 -0.624587 -0.924458 2.500245 -1.329880 -0.134177 -4.597868 0.286629 +PE-benchmarks/finite-automata-algorithm.cpp__main = 0.173418 0.263977 0.195268 -0.562208 -0.724685 -0.047748 0.184051 -0.113073 -0.002596 -0.085129 0.385664 -0.543514 -0.395198 0.918205 -0.130162 -0.460749 -0.045356 -0.572929 -0.244067 0.203173 0.008360 0.400172 -0.075427 0.118314 0.097789 0.237344 -0.304998 0.312109 0.583960 -0.530775 -0.545490 -0.000342 0.116156 0.589190 -0.034267 -0.326750 0.257799 1.103800 -0.461916 0.550934 -0.515927 -0.205723 0.398155 -0.002045 -0.250505 -0.974246 -0.693867 0.485051 -0.406553 -0.180776 0.587634 0.165339 -0.262288 -0.105600 0.370779 0.707444 -1.206855 0.806971 0.312204 0.417053 0.239957 -0.147542 -0.136780 -0.074074 -0.063333 -0.389900 0.083301 -0.069359 -0.380115 -0.026503 -0.167950 -0.632511 1.059453 0.199753 -0.399607 0.218888 0.265081 -0.732506 0.594178 -0.836451 -0.596291 0.135009 0.073208 0.128420 0.810389 -0.188643 -0.093609 -0.904178 -0.105942 -0.876226 0.217860 -0.943095 0.159905 0.815063 -0.632035 0.122195 0.051382 -0.178206 0.631365 0.346430 0.669602 0.310437 0.399413 0.050796 0.259675 0.318578 -0.252097 -0.171019 -0.396961 -0.725244 -0.123594 0.112453 -1.210336 0.214024 0.026799 0.130307 0.207441 -0.024294 0.075790 0.274309 -0.307563 -0.138405 0.189050 -0.101323 0.251290 1.064222 -0.305713 0.053687 -0.579901 0.719730 0.024606 0.575674 -0.091125 0.152462 -0.235526 -1.104987 -0.729281 0.049132 0.190206 -0.296868 -0.631823 -0.821436 0.164826 -0.308846 -0.339937 0.358258 1.129385 -0.321512 -0.521629 0.928842 0.658637 0.340253 0.576834 -0.150320 1.059337 -0.315171 -0.042428 -0.075683 -0.283167 -0.345537 -0.066347 0.192910 -0.246615 -0.036884 -0.007067 -1.219948 0.697273 0.089909 -0.339471 0.236845 -0.015772 -0.366133 -0.725357 0.976128 0.343153 0.570124 0.153113 0.864092 -0.133629 -0.635993 0.508168 0.225168 0.285321 -0.572168 -0.420335 0.367022 0.319473 -0.434385 -0.197199 -0.124820 -0.026938 -0.520061 0.104513 0.123813 0.105368 0.090290 0.441874 0.061072 0.825798 -0.093879 0.443339 -0.889904 0.266761 0.250019 -0.271715 -0.960582 0.293373 -0.357932 -0.030727 0.331112 -0.228042 0.011037 -0.223843 -0.567982 0.128086 -0.296870 0.341479 0.131860 -0.519804 0.061937 -0.353751 0.328568 0.313685 0.430843 0.763207 0.514739 0.517710 0.075056 0.089398 0.141337 -0.055803 -0.059187 -0.071976 0.152177 0.364125 0.430895 0.353546 -0.006138 0.438671 0.333531 -0.249003 0.584358 0.507078 0.990625 0.203153 -0.259354 -0.079624 -0.240606 0.550976 1.178960 -0.367554 0.000267 0.340295 0.390239 -0.094663 -0.587362 -0.121199 -0.310853 -0.475008 0.553576 -0.265296 -0.193853 0.094647 0.662975 -0.219340 -0.816861 0.259447 0.024905 0.277243 0.132459 0.119214 0.035971 0.365106 -0.766493 0.441976 0.404406 0.477465 -0.235221 -0.545941 -0.054955 0.281366 0.043541 0.469009 -0.857171 0.158346 0.497722 0.635499 0.263282 0.263999 -0.328334 -0.488991 0.253340 -0.048709 -0.228686 -0.149304 0.319602 -0.587098 -0.023841 -0.330391 -0.561415 +PE-benchmarks/subset-sum-problem.cpp__isSubsetSum(int*, int, int) = 4.623444 0.289275 3.061786 -3.791948 0.821008 2.671659 3.119982 -4.961002 0.497987 13.667185 3.601692 -3.041070 -3.194876 5.247084 -0.723670 -4.609242 6.547420 4.941225 1.317271 -3.039764 -2.281246 0.866786 -1.288846 -6.063987 3.812334 -4.154931 1.900084 3.738997 -2.735863 3.695396 -4.363995 -1.055003 0.550599 11.650357 0.527395 1.102760 -2.646406 8.977818 -8.662613 12.288032 -10.278830 -9.162997 10.846636 2.256795 1.954566 -2.758492 -0.606505 2.941624 1.857135 -8.375821 0.230116 -5.412764 4.594332 -6.580672 -1.209731 10.449655 -8.543751 -2.928043 1.322750 -7.169449 -9.155918 -0.973553 6.524222 2.816301 -8.035918 -6.922529 3.205166 3.461983 -3.025538 1.975742 -9.381003 -14.220636 3.846927 3.691693 -4.234825 1.407609 -1.967189 -7.622233 3.726645 1.889784 -4.644552 -4.487390 3.443824 -3.076784 1.809241 5.652302 11.961619 -15.410149 2.316971 -12.502947 9.626083 -4.666689 12.630894 8.537003 -1.671994 4.210387 4.380895 7.545125 -0.026691 -0.419276 9.930566 3.037432 2.389916 -3.577651 6.355744 7.681185 -9.138192 -10.120640 -4.782746 -4.410872 2.692551 -1.868979 -7.221200 0.788415 -12.375444 1.128492 2.423154 -1.622695 -2.481451 10.515204 -14.487298 -5.081146 3.259064 -2.559643 9.800996 7.054334 2.222758 2.064577 1.255008 8.013470 -1.803958 -3.489949 -4.452174 6.077457 -5.539373 -2.883920 -2.076946 0.753444 4.860303 -11.147506 -11.025540 -13.367957 -3.849361 8.882807 -2.892469 9.368859 15.676714 -3.805869 -6.017780 3.462441 -3.937145 -0.611975 9.678729 2.889420 16.066463 -15.619522 9.381874 -2.354568 7.086915 5.619772 12.672579 -3.645951 -5.669001 5.859956 -0.359994 -1.037818 10.997805 -2.975004 1.751363 -1.516220 2.124334 1.012061 -2.158228 9.033910 -10.503140 8.173081 -5.895589 14.586084 -10.640796 -6.375037 3.990358 -9.453612 -6.593681 -6.336717 -0.329790 -2.476083 10.280042 -7.588474 -6.146278 -3.011295 -4.269058 2.874238 8.983429 -4.487940 -0.975674 -3.029784 -7.167037 10.505202 3.121686 -0.230970 -1.303064 -8.075503 0.284063 5.392595 -2.825038 -8.879321 -1.866545 -8.115314 -1.378965 -1.497198 -0.504487 7.265623 -7.478960 -3.764555 1.482452 -1.715578 0.777821 -5.302807 -9.128120 4.361343 -0.726769 -0.639637 2.522189 12.955408 8.390840 7.767695 -0.026282 -4.203912 2.165277 -6.636597 -9.944950 5.966275 0.875305 6.480746 3.698630 5.376723 -0.403697 3.185742 5.154123 -3.540689 5.490146 8.292490 2.388836 9.093786 -2.244731 2.183176 4.032428 -8.456630 6.440618 10.339037 -3.050355 -4.614341 4.290232 -1.113505 -6.636598 -3.714434 -0.202854 -2.331060 -5.835473 4.154870 6.624999 -0.317537 -7.997770 16.670941 2.859789 -17.814714 8.686293 -0.149899 2.430529 10.680768 -5.299265 5.785138 3.870137 2.805570 4.107349 3.181427 9.715276 -10.670136 1.466650 -1.288880 6.172679 6.787043 -4.755190 -17.486905 3.210907 3.115622 11.631501 5.506402 11.329877 -5.798441 6.378427 -4.041105 -5.199247 -0.588755 -3.194011 6.696412 -1.048524 0.636089 -16.025090 5.697882 +PE-benchmarks/subset-sum-problem.cpp__main = 0.459621 0.355780 0.331688 -0.879029 -0.511339 0.272025 -0.075368 -0.466211 0.152100 0.630204 0.442240 -0.585074 -1.211120 0.869826 -0.360116 -0.938107 0.276559 -0.818139 -0.101183 -0.280334 -0.209655 0.192832 -0.071724 -0.427159 0.271255 -0.179045 -0.123320 0.502372 1.055939 -0.617865 -0.872284 0.044970 0.088084 1.342836 0.084363 -0.252870 0.326010 1.588830 -0.235499 0.712617 -1.226541 -0.987836 1.075673 0.104516 -0.260096 -0.831236 0.034689 0.623548 -1.158285 -0.072558 0.471589 -0.353794 -0.072926 -0.551763 0.054691 1.369286 -1.984651 1.361875 0.107640 0.284119 -0.258285 -0.430674 0.365075 0.104708 0.175553 -0.830031 0.398291 0.267036 -1.354397 0.192940 -0.762480 -1.012094 1.427025 0.426700 -0.612177 0.227180 -0.012870 -0.843827 0.526801 -1.240134 -0.767179 -0.089420 0.563520 0.161862 1.115277 0.261839 0.189375 -1.770023 -0.299090 -1.542089 0.669231 -1.033403 1.081246 1.095369 -0.885320 0.369344 0.130725 -0.148575 0.379895 0.146103 1.320090 0.097728 0.600319 -0.168244 0.493042 0.367258 -0.493065 -0.427220 -0.229032 -0.791452 -0.442151 0.237134 -1.540907 0.124135 -1.126220 0.540361 0.467672 0.007192 -0.435376 0.335649 -1.481187 -1.163517 -0.090952 -0.218811 1.354497 1.219623 -0.095276 0.357305 -0.057242 1.308260 0.094481 0.028398 -0.556781 0.414766 0.257397 -1.294227 -1.365151 0.020962 0.683233 -0.820872 -1.505208 -1.142764 -0.388294 -0.203936 -0.309331 1.325583 1.900730 -0.204925 -0.899269 1.145039 -0.629124 0.835156 1.678261 0.023982 1.801306 -1.311956 0.767940 0.024657 0.401076 -0.043622 0.151742 -0.327721 -0.577266 -0.007959 0.304467 0.121598 -0.204557 0.125012 -0.142716 -0.478552 -0.239536 -0.576794 -1.046331 1.303658 -0.301997 1.200174 0.131487 1.864840 -1.049355 -1.484412 0.832829 0.008557 0.105740 -0.421710 -0.536274 0.089693 0.703033 -1.078881 -0.727352 -0.217888 0.240930 -0.293471 0.822459 0.694620 0.008496 -0.175288 -0.067874 0.969434 0.972140 -0.428554 0.468186 -1.371427 0.245273 0.787692 -0.211684 -1.289640 0.257049 -0.700097 -0.128205 1.054432 -0.186614 0.475064 -0.353874 -0.862291 0.174225 -0.118053 0.775270 -0.121331 -1.010302 0.399954 -0.340074 -0.352066 0.542549 1.244277 1.012448 0.649020 0.246753 -0.396862 0.221370 -0.375744 0.108400 -0.060951 0.123665 0.690198 0.522657 0.881701 0.276514 0.184569 0.819506 0.474025 -0.514483 1.063367 0.505946 1.421938 -0.700545 -0.011528 -0.017870 -0.895201 0.866754 1.763532 -1.359944 -0.397424 0.659082 0.655930 0.115215 -1.093763 -0.352232 -0.659182 -0.399485 0.633488 0.052714 -0.185726 -0.389618 1.716142 0.079407 -1.664871 1.143980 0.043374 0.278362 0.328338 -0.450450 -0.244661 0.665157 -1.139339 0.420592 0.511749 0.880251 -0.625655 -0.285780 -0.146554 0.975795 -0.392775 -0.038580 -1.119283 -0.000676 0.719503 1.443276 1.327248 0.435846 -0.462928 -0.588501 -0.165350 -0.450861 -0.143941 -0.231249 0.781803 -0.932344 0.093119 -0.727622 -0.296003 +PE-benchmarks/partition-problem.cpp__findPartiion(int*, int) = 5.102591 0.627064 4.091242 -4.194720 1.409675 2.474017 4.623996 -5.366113 0.711537 15.220254 4.016587 -3.168894 -4.277328 5.289529 -0.569878 -5.693551 7.693476 4.700198 1.452602 -4.170821 -2.311467 0.900582 -1.134635 -7.041314 4.594449 -5.033104 2.572533 5.391833 -3.143306 3.926252 -4.081869 -1.147550 0.765967 12.801439 0.048333 2.358480 -3.276192 10.072202 -10.613223 13.577178 -11.809860 -11.113926 13.031474 2.424183 1.791208 -3.847433 0.150614 3.151105 0.960403 -8.875864 0.302225 -5.573080 5.103435 -7.829660 -1.317073 12.035615 -9.828450 -3.393620 1.082885 -8.496405 -10.600131 -1.520356 6.518581 2.793107 -8.797014 -7.840458 3.748469 2.907576 -3.866369 3.388644 -10.472372 -14.616149 4.251363 3.781441 -3.769788 1.872839 -2.008521 -8.109210 4.023294 1.899363 -4.686018 -5.492639 4.390730 -2.152272 1.528357 6.387111 13.140872 -17.152847 1.311640 -13.447384 11.176841 -5.586628 14.103122 9.336228 -2.036841 5.559193 4.496642 7.871175 -0.749269 -1.215515 11.131832 3.535937 3.642576 -3.960063 7.441140 8.556510 -10.196460 -11.894755 -5.666102 -4.851755 3.149902 -2.228924 -8.546608 0.647422 -14.067256 -0.025112 3.050450 -2.517911 -2.300848 11.531353 -16.303771 -4.856401 4.009715 -2.628244 10.598337 7.289542 2.574691 2.259470 1.848766 8.986809 -1.574960 -2.943697 -4.974346 6.819625 -5.784855 -4.593381 -1.814618 0.020681 5.033157 -12.335339 -12.287406 -15.068326 -4.157925 10.319182 -2.938823 9.232791 17.184913 -3.767276 -6.984162 3.704919 -4.033388 -0.884627 10.123051 3.104811 17.409800 -17.271043 10.486499 -2.271790 8.423629 7.175852 15.158465 -4.210877 -6.996397 6.769341 -0.575538 -1.451383 11.106793 -3.398076 2.509034 -1.968077 1.724111 0.598321 -2.509822 10.245631 -11.346691 10.180609 -7.483220 16.017271 -11.984305 -7.546287 4.337295 -11.311277 -7.132875 -7.905623 -0.588388 -2.353667 11.267961 -8.732547 -7.271744 -4.965232 -4.730072 3.760330 9.950821 -6.869301 -1.160900 -3.892464 -7.721194 11.157456 3.303364 -0.434902 -1.361969 -9.314200 0.305427 6.274426 -1.565083 -10.313792 -1.631261 -8.675347 -1.857655 -2.080041 -0.356438 8.250996 -7.498921 -4.027662 1.975414 -1.954398 -0.044354 -6.087400 -10.736092 4.637740 -0.225421 -1.005649 2.590392 14.450613 9.292895 7.843712 -0.597567 -4.980828 2.746068 -7.622240 -11.536463 6.855339 0.987722 6.767096 3.729762 5.813359 -0.170019 3.357716 6.446845 -3.049679 4.975455 9.211889 3.124042 9.895035 -2.962656 2.608417 4.723776 -9.006785 7.036496 10.785696 -2.262886 -5.747309 4.931541 -0.722998 -7.075015 -4.114054 -1.415391 -2.735312 -6.694709 5.268210 6.751409 -1.406582 -8.245783 18.683972 3.421668 -19.988630 9.567146 -0.362280 2.189875 11.257928 -6.344465 5.048916 5.156052 2.392322 4.519715 2.676749 10.911421 -11.105099 1.851097 -1.357597 7.194839 8.057996 -5.621921 -19.828786 3.252282 3.730684 13.264063 6.577913 13.437700 -5.999263 7.273551 -5.319876 -5.762111 -0.612831 -3.201163 7.222944 -1.127300 0.237631 -18.219199 6.509814 +PE-benchmarks/partition-problem.cpp__main = 0.408872 0.361981 0.283862 -0.696284 -0.433556 0.286480 -0.316390 -0.499688 0.080172 0.589933 0.305794 -0.495603 -1.233564 0.569216 -0.416360 -0.964818 0.115978 -0.613426 -0.085301 -0.508650 -0.247301 0.053861 -0.042154 -0.452131 0.213787 -0.299147 -0.043072 0.392546 1.071597 -0.525617 -0.640538 0.039860 0.136130 1.224995 0.122188 -0.125159 0.273657 1.348425 0.192144 0.374352 -1.164995 -1.065448 0.987499 0.092531 -0.152595 -0.564783 0.282765 0.547914 -1.338471 0.176366 0.252015 -0.362153 -0.106111 -0.538250 -0.074500 1.150076 -1.783379 1.459900 -0.000669 0.090933 -0.367369 -0.373933 0.348593 0.100537 0.441965 -0.751921 0.308886 0.444949 -1.357119 0.262252 -0.662210 -0.761154 1.305514 0.317597 -0.514320 0.188574 -0.087055 -0.403301 0.351091 -1.160886 -0.646197 -0.154420 0.670947 0.274798 0.902402 0.440774 0.136159 -1.581868 -0.291281 -1.358839 0.644764 -0.737718 1.047439 0.849149 -0.812265 0.393351 0.143623 -0.350507 0.248058 0.097005 1.164185 -0.127182 0.503854 -0.069720 0.319747 0.198823 -0.330081 -0.325347 -0.071151 -0.674453 -0.469125 0.280071 -1.271446 0.071164 -1.146325 0.720410 0.392592 0.059329 -0.409665 0.073002 -1.517452 -1.299624 -0.155696 -0.193132 1.410622 0.851405 -0.025716 0.425085 0.111276 1.150162 0.069267 -0.189505 -0.488258 0.391003 0.547723 -1.186780 -1.454866 0.066273 0.670231 -0.706658 -1.345392 -0.804130 -0.474584 -0.154040 -0.237889 1.274787 1.674434 -0.135807 -0.826941 0.974599 -0.940501 0.840086 1.664248 0.111255 1.569851 -1.191650 0.711063 0.101712 0.409056 0.125966 -0.097494 -0.395180 -0.555541 0.035214 0.439409 0.687089 -0.703369 0.027669 -0.126336 -0.634922 -0.243314 -0.496016 -0.804726 0.965610 -0.237169 1.124298 0.159295 1.691283 -1.069206 -1.480780 0.674446 -0.087289 0.010334 -0.048813 -0.378562 -0.069983 0.596539 -1.086518 -0.700434 -0.132361 0.238749 -0.222942 0.816566 0.941761 0.006756 -0.139741 -0.148469 1.016880 0.822328 -0.419767 0.336401 -1.204182 0.160617 0.751552 -0.042631 -1.091892 0.184098 -0.571060 -0.120225 1.123516 -0.131535 0.467281 -0.142304 -0.631950 0.068280 -0.089647 0.812723 -0.114627 -0.585411 0.395311 -0.279310 -0.447831 0.432638 1.158083 0.881455 0.522021 0.138700 -0.316709 0.230465 -0.469122 0.467869 -0.093023 0.220666 0.691172 0.458601 0.739660 0.219279 0.215828 0.783943 0.454384 -0.560873 0.966719 0.290126 1.295057 -1.039406 0.132326 -0.101676 -0.749055 0.759564 1.553318 -1.471655 -0.422208 0.592722 0.567577 0.308193 -1.063618 -0.360969 -0.585681 -0.267216 0.528246 0.206233 -0.149953 -0.401985 1.537595 0.152260 -1.401592 1.255018 0.082571 0.165210 0.142439 -0.516554 -0.438305 0.646494 -1.029425 0.124413 0.487809 0.767382 -0.658745 -0.123009 -0.148797 1.048651 -0.575866 -0.081973 -0.749119 -0.123597 0.725669 1.274843 1.251274 0.211343 -0.425761 -0.728942 -0.164238 -0.410016 -0.113731 -0.095947 0.644557 -0.802653 0.152533 -0.383858 -0.310003 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 9.005459 -0.074891 9.346996 -7.351404 -5.934168 6.170135 -2.273073 -11.237030 2.629375 24.736889 6.853026 -6.319272 -0.485282 14.034851 -6.208884 -7.178805 4.909034 6.263447 2.968308 -5.097022 -0.388951 4.243525 -3.197913 -8.156591 3.389825 -6.675310 4.865292 6.530017 -4.811146 9.160594 -8.085895 -3.473206 -0.415895 20.049439 2.836096 2.080154 -1.824076 18.189489 -17.506062 20.404209 -21.029447 -21.405221 16.987118 3.764596 5.355682 -4.831268 -4.958520 5.705701 -1.516338 -11.948363 2.779371 -7.875791 8.011942 -8.282962 0.164165 10.556105 -19.868921 -1.923858 1.339844 -11.968496 -14.697093 -2.171302 9.960683 8.497721 -15.334759 -11.448544 5.698274 11.131791 -4.068260 3.197335 -10.132961 -23.974152 10.641131 3.324445 -9.183620 1.139837 2.239367 -15.856645 10.661471 -2.531153 -12.426899 -6.082934 2.523226 -11.706240 6.243221 9.399029 22.587651 -26.605444 10.941461 -23.681090 16.950637 -8.788839 16.813394 15.194354 -10.935120 5.433868 10.131121 23.719829 9.739980 0.373370 16.713926 11.492649 4.445363 -2.713034 12.485707 14.479815 -14.472987 -14.021739 -12.665240 -13.449355 3.625398 -9.031060 -21.912217 0.742558 -12.848926 4.156750 0.803212 -5.024746 -2.700032 22.855033 -33.265765 -5.346387 4.970302 -2.535923 11.154666 9.591951 -0.227488 4.802208 2.065114 15.683777 -7.703654 -7.039083 -2.763221 9.585618 -16.994235 -3.853368 -9.973608 6.205433 8.006592 -17.612997 -18.415347 -27.630116 -5.363515 18.036961 -3.819420 18.804624 28.730067 -7.176364 -15.446676 8.325155 -4.327427 -8.892600 20.703420 4.693248 24.635073 -21.501780 9.842504 -8.721857 5.994409 5.841459 17.746663 -2.420393 -7.456260 12.207607 -1.127418 -8.240433 22.503292 -4.677232 -0.778166 -11.934229 5.324294 -3.597428 -0.242341 17.372293 -21.583598 13.145613 -11.547564 24.705301 -17.053229 -11.901426 5.228281 -26.812806 -9.696432 -10.025648 -2.090440 -3.185961 19.854717 -16.499019 -9.353739 -6.062721 -9.793453 2.096907 14.229755 -8.387043 0.961067 -0.983849 -7.872109 22.108507 9.909758 2.398092 -2.018300 -12.682813 1.461392 12.209000 -6.249544 -18.730452 -4.545288 -16.585567 -0.631052 -4.698337 -0.397731 13.146686 -15.933569 -6.644967 -1.523971 -4.104644 2.907263 -5.735054 -18.456356 7.403329 -4.091555 7.467412 5.986990 19.405995 16.216037 17.067515 5.375856 -3.973713 3.664657 -13.116474 -9.921160 10.670522 7.972947 5.239282 6.002982 17.129508 1.731755 6.208136 8.592557 3.204357 9.020722 16.735633 1.598051 18.684077 -7.444098 6.029205 1.698923 -7.043048 11.854968 22.571458 -5.828418 -1.762514 5.253789 -0.989943 -10.222362 -5.437265 0.855660 -4.890937 -5.698318 3.493187 12.179341 -0.193755 -11.690907 24.968877 6.731083 -28.916076 13.815222 -0.920214 4.505983 18.765481 -9.411234 7.004628 4.290219 1.593896 13.431939 8.780691 13.505628 -18.881329 -1.372639 -0.924678 13.006273 16.017065 -0.793218 -26.975974 11.607765 6.145584 18.122089 5.575445 19.563676 -14.693540 5.103631 -3.657267 -12.158966 -2.864419 -2.054182 10.601341 -2.476434 4.193005 -25.104637 -1.317858 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.046478 -0.378377 1.023775 -0.740638 -0.838620 0.940095 -0.814367 -1.516290 0.364372 2.285560 0.897993 -0.843702 0.474686 2.080963 -0.697246 -0.932746 0.355748 1.249061 0.350707 -0.219309 -0.021109 0.495060 -0.520427 -0.746944 0.192145 -0.732061 0.654367 0.565391 -0.589254 1.130160 -1.235800 -0.496061 -0.217941 2.379418 0.556093 0.509406 0.014896 2.346830 -1.706671 2.906611 -2.238608 -2.323265 1.648100 0.439448 0.564063 -0.062266 -0.989333 0.660414 -0.233396 -1.435553 0.659040 -0.955213 0.819329 -0.639137 0.310925 1.005338 -2.169085 -0.251390 0.216090 -1.180613 -1.495772 -0.372118 0.915099 1.047637 -2.133916 -1.272582 0.774648 1.818161 -0.343451 0.209174 -1.114355 -3.210584 2.047194 0.424442 -1.375284 0.006207 0.542466 -1.829952 1.362612 -0.056389 -1.817314 -0.582256 0.100443 -1.478104 1.007747 1.151170 2.835202 -3.260938 1.691623 -3.096985 2.061916 -1.165340 1.949257 1.983924 -1.782653 0.424898 1.435949 3.485228 1.359908 0.418392 1.972627 1.426375 -0.203818 -0.336682 1.630925 1.533425 -1.592401 -1.636112 -1.531304 -1.809010 0.470448 -1.127494 -3.055688 0.094186 -1.307765 1.173409 -0.363793 -0.091464 -0.194430 2.509903 -4.059274 -0.440407 0.519999 -0.286451 1.448198 1.226915 -0.249820 0.802454 -0.032133 1.935314 -1.133642 -1.034470 -0.440111 1.064937 -2.248970 -0.109500 -1.600930 0.929369 1.186562 -2.078586 -2.249922 -3.335356 -0.671689 2.569999 -0.502370 2.632951 3.514013 -1.095235 -1.663878 1.125758 -0.227164 -0.998593 2.683291 0.575593 2.985856 -2.457944 1.072028 -1.139804 0.484915 0.338245 1.138889 -0.084087 -0.772615 1.541324 -0.114350 -1.264679 3.883085 -0.626153 -0.466871 -1.562388 0.681710 -0.320894 -0.063964 2.364634 -2.534585 1.292083 -1.234035 3.136094 -1.957677 -1.224629 0.599772 -3.146089 -1.106834 -1.264815 -0.212097 -0.530726 2.622933 -2.121109 -1.078140 -0.312358 -1.367386 0.178807 1.484917 -0.073652 0.086641 0.061408 -0.779659 2.795872 1.620858 0.588345 -0.369084 -1.553807 0.191550 1.482780 -1.233161 -1.867747 -0.488338 -2.078278 -0.020580 -0.932988 -0.061006 1.363324 -2.397801 -0.877134 -0.663154 -0.416312 0.722323 -0.309196 -2.258537 0.818954 -0.396974 1.086792 0.984679 2.081578 2.108375 2.328788 1.194476 -0.469490 0.439012 -1.334334 -1.108365 1.379990 1.121975 0.983104 0.714865 2.202147 0.269397 0.689105 0.810825 0.344367 1.573122 2.001146 0.416167 2.587948 -0.573767 0.793380 -0.028560 -0.716601 1.634656 3.080823 -1.231096 0.351189 0.558950 -0.017846 -1.270202 -0.737856 0.205107 -0.523728 -0.870056 0.176123 1.179970 0.277843 -1.512676 2.973469 0.720534 -3.351239 1.391497 -0.080688 0.579508 2.523826 -0.990612 0.970376 0.320170 0.084279 1.871117 1.183672 1.687298 -2.212241 -0.109909 -0.201764 1.353481 2.017381 0.166298 -2.493288 1.878994 0.916265 2.186821 0.599992 1.712606 -1.881467 0.569919 -0.280397 -1.701827 -0.289474 -0.185327 1.317238 -0.125692 0.502487 -2.959284 -0.867000 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 1.981018 -0.624413 2.266894 -1.917856 -1.785668 1.760349 -1.187389 -3.120338 0.719909 5.175418 2.019165 -1.952717 0.390767 4.530415 -1.359933 -2.182748 0.971012 2.457565 0.634003 -0.688060 -0.044806 1.175950 -1.028150 -1.719791 0.648948 -1.595915 1.290142 1.689544 -0.844795 2.315801 -2.516723 -1.010731 -0.373976 5.290147 0.963969 0.966585 -0.086317 5.281550 -4.430571 6.263599 -5.035605 -5.077869 4.063067 0.959012 0.915297 -0.777956 -2.262658 1.526851 -0.918896 -3.183879 1.422521 -1.931431 1.894595 -1.705627 0.697689 2.704745 -5.081358 -0.443641 0.568162 -2.628361 -3.311337 -0.810301 2.047701 2.122680 -4.628042 -2.906601 1.610269 3.258004 -0.891148 0.443585 -2.547956 -6.863769 4.137896 0.960773 -2.846153 0.266673 1.045762 -4.249724 3.014603 -0.132207 -3.802934 -1.369815 0.392104 -3.212129 2.267612 2.327249 5.937875 -7.238130 3.069176 -6.668061 4.446672 -2.768372 4.315865 4.446252 -3.807028 1.200159 2.885448 6.938653 2.722224 0.542046 4.384788 3.017448 0.161370 -0.687748 3.633086 3.510963 -3.726142 -3.765971 -3.519035 -3.936713 1.056439 -2.640874 -6.644220 0.239159 -3.064449 1.782171 -0.370871 -0.608418 -0.610373 5.666085 -8.452965 -0.712681 1.262006 -0.702553 3.041394 3.057446 -0.448252 1.498347 -0.023968 4.278870 -2.289484 -1.763241 -1.038806 2.423730 -4.596852 -0.646345 -3.166254 1.775206 2.393367 -4.540447 -4.975340 -7.324103 -1.445552 5.091916 -1.087127 5.396666 7.830407 -2.319167 -3.892305 2.613524 -0.506970 -1.811646 5.620931 1.206744 6.716769 -5.459445 2.381289 -2.568195 1.075443 0.989436 3.323316 -0.249343 -1.898847 3.268710 -0.374493 -2.923845 7.889352 -1.315400 -0.831506 -3.332671 1.548126 -0.949025 -0.448135 5.354229 -5.572698 3.198800 -2.813134 6.795411 -4.304443 -2.939911 1.487389 -6.762466 -2.383075 -3.105553 -0.770477 -0.942146 5.511074 -4.464108 -2.436522 -1.293873 -2.663358 0.327292 3.347180 -0.898417 0.163241 -0.077917 -1.579437 5.801177 3.473445 1.029644 -0.616886 -3.633055 0.515036 3.370988 -2.356230 -4.588808 -0.853310 -4.422727 -0.171854 -1.747735 -0.190741 3.084502 -4.991792 -1.990761 -1.091693 -0.984719 1.313094 -0.916609 -5.555973 1.893310 -0.963522 2.168686 2.232148 4.746403 4.716456 4.872473 2.331781 -0.936447 0.978749 -2.925799 -2.741838 2.943841 2.157727 2.015910 1.693994 4.788408 0.700797 1.496289 2.038075 0.876800 2.991353 4.439011 1.098356 5.632211 -0.886517 1.434926 0.175422 -1.710063 3.455180 6.692151 -2.124128 0.415155 1.492632 0.132341 -2.760494 -1.989211 0.263833 -1.305524 -1.914046 0.982969 2.427772 0.176305 -3.098999 6.674669 1.458010 -7.558806 3.140612 -0.164959 1.356966 5.176038 -2.176057 1.987953 1.011877 -0.108969 4.080984 2.481847 3.692986 -4.808759 -0.227242 -0.396207 3.024343 4.649322 0.239359 -6.305408 3.747966 1.848946 4.986758 1.487840 4.329267 -3.892628 1.273719 -0.710801 -3.523637 -0.623364 -0.671638 2.842823 -0.574801 1.017425 -6.707743 -1.597999 +PE-benchmarks/boruvkas-algorithm.cpp__createGraph(int, int) = 0.713057 0.095359 1.063674 -1.224134 -1.596460 0.717890 -0.733024 -0.787381 0.377681 0.563471 1.186554 -0.915928 -0.365108 1.313610 -0.676994 -1.046656 0.300070 -0.018906 0.271981 -0.563078 0.221721 0.472035 -0.306695 -0.310005 0.063198 -0.538647 -0.193605 0.904835 0.845658 0.258263 -1.101769 -0.121954 -0.116128 1.882535 0.366409 -0.441339 0.465046 2.313883 -0.803937 0.904348 -1.612997 -1.477947 1.378168 0.394288 0.064657 -1.146549 -1.526872 0.593904 -1.326702 -0.198603 0.929040 -0.612762 0.741502 -0.230000 0.152691 1.178054 -2.639753 0.584504 0.126551 -0.543109 -0.433441 0.104144 0.244523 0.674857 -0.372345 -0.927284 0.680760 1.214170 -0.275090 0.002622 -0.330899 -2.048231 2.041418 0.403282 -0.628197 0.124208 0.918663 -1.848319 1.275155 -0.620475 -1.718162 -0.150661 -0.080511 -1.013249 1.496706 -0.119718 1.556302 -2.247878 0.631603 -2.596536 1.230420 -1.305086 0.991586 1.428342 -1.778880 0.290489 1.060830 1.065832 1.463142 0.557879 1.929550 1.139779 0.542951 0.044235 1.277339 0.858887 -0.517828 -0.419726 -1.173168 -1.665575 -0.399659 -0.792490 -3.151397 0.277680 -0.691196 0.327390 -0.110446 -0.372590 0.172505 1.962623 -1.466373 -0.229578 0.324274 -0.189913 0.418579 1.492143 -0.317728 0.157381 -0.160481 1.937246 -0.898732 -0.057620 -0.034079 0.702852 -0.791501 -1.873975 -1.910989 0.809472 0.822029 -1.384340 -1.804592 -1.834050 -0.081676 0.672471 -0.380402 1.427268 3.022709 -0.678869 -1.639393 1.421605 0.685597 -0.605584 2.425663 0.298410 2.502118 -1.381329 0.246716 -1.169295 -0.317365 -0.347466 0.036995 0.131034 -0.078226 0.907957 0.244739 -1.576191 2.552379 -0.588437 -0.427608 0.065108 0.315471 -0.643763 -0.931184 1.797229 0.291481 1.377967 0.285605 2.415735 -0.931478 -2.056941 0.764214 -0.440714 -0.323112 -0.400612 -0.168747 0.273632 1.207095 -1.093291 -0.892768 -0.677927 -0.595619 -0.398006 0.852429 1.097537 0.568899 0.547578 -0.122692 0.452281 1.661077 0.428180 0.440607 -1.610027 0.327997 1.045272 -0.774591 -1.875122 -0.126169 -1.335763 0.308730 -0.015491 -0.036195 1.240824 -1.023471 -0.979384 -0.377765 -0.341888 0.804608 0.084817 -1.712699 0.657178 -0.444753 0.739641 0.489840 1.464676 2.103827 1.749072 0.802418 -0.003276 0.349399 -0.463533 0.165730 -0.020978 0.725598 0.526862 0.383666 1.708098 0.303643 0.612577 1.008272 1.098840 0.751073 1.476931 0.398068 2.153060 -0.315028 0.149153 -0.252815 -0.568785 1.399261 2.897007 -0.245816 0.201901 0.384809 0.773694 -0.482633 -1.961586 0.333449 -0.360780 -0.426323 0.665809 0.766676 0.176643 -0.892399 1.687767 0.781633 -2.537634 1.381673 -0.074256 0.292765 1.225204 -0.492474 0.101758 0.287637 -0.841393 1.468251 1.120812 0.989287 -1.608631 -0.862956 0.053124 1.294216 0.207958 0.737006 -1.801903 1.186607 0.762558 1.318394 0.740387 1.366652 -1.595221 -0.889566 0.147170 -1.272368 -0.787628 0.188025 0.488798 -1.418343 0.640645 -1.268465 -1.005672 +PE-benchmarks/boruvkas-algorithm.cpp__main = -0.194851 -4.734602 4.001838 -4.803908 -5.979613 3.931645 -6.135649 -4.151730 1.948793 -1.706195 2.777446 -2.565328 0.830457 8.126816 -1.129722 -5.747205 -0.243941 5.442269 2.153506 0.200723 1.152344 1.980637 -2.076204 1.560651 -1.802240 -3.385426 1.396653 3.338967 3.796704 4.029090 -4.653217 -2.517492 -3.731360 7.054188 3.177790 2.892644 2.349410 11.578184 -0.995337 11.143143 -4.161974 -4.746066 1.534012 0.896187 -1.052673 -0.507586 -7.980726 0.745690 -8.272071 -0.068822 6.485506 -1.843497 2.918627 2.267750 4.661527 0.539217 -6.520191 0.245143 0.040966 -0.852289 1.148686 -2.643355 -2.487639 3.551556 -7.642587 -1.738795 3.234980 6.792000 -0.839206 -0.587563 -0.253951 -8.587993 11.036222 3.514801 -5.955533 -0.324704 7.755622 -6.570860 4.639356 1.066742 -9.847474 -0.395724 -3.103582 -6.901862 8.904047 -0.286632 8.121813 -9.583947 5.824381 -11.464325 4.468424 -6.770039 3.270624 8.471679 -9.527650 0.878687 5.857841 11.923913 4.975602 0.598527 5.605473 6.089126 -3.836459 1.503850 7.897913 1.647869 -2.016388 -3.239395 -5.041578 -6.526901 -1.086469 -7.588123 -14.629599 -0.189012 0.075444 5.220814 -4.083629 3.511418 -1.946103 4.913381 -8.680395 1.928695 0.544421 -1.336164 2.388979 4.587091 -3.567687 3.029535 -1.446823 8.243689 -6.217579 -0.262135 -2.499636 2.301551 -5.269969 2.559670 -9.633505 3.348652 4.546364 -3.390576 -8.016320 -6.925692 -3.952316 7.403618 0.123214 10.192151 11.883485 -4.203725 -4.936599 6.737199 -0.153069 0.366369 8.947909 2.292090 5.605668 -2.385467 -0.755994 -8.183229 -2.678779 -3.993243 -1.333658 3.129069 0.088929 5.559866 -1.022825 -4.006248 15.192802 -4.127719 -5.531603 -9.083225 1.034229 -3.900940 -2.826527 10.839244 -8.213704 3.307544 -0.994606 9.249780 -2.610030 -5.227955 1.456204 -7.784523 -0.196397 -5.288523 -0.117133 -1.061759 6.520687 -6.863703 -4.571748 -1.273043 -3.333880 -1.124218 0.541072 6.463483 0.205754 3.057041 3.185970 9.618346 10.664993 5.186193 -1.626559 -5.430676 2.605318 4.356545 -6.334432 -2.536271 1.316962 -3.354080 0.212705 -4.634191 1.069411 1.803301 -9.360665 -4.244192 -6.906488 -0.496316 5.043259 4.396020 -14.837169 2.700777 1.742391 3.863536 6.039614 1.676236 9.242593 7.489781 8.430699 -0.324979 1.340108 0.084160 -0.621836 2.619725 6.140611 2.433215 0.785571 9.726551 2.926243 0.978759 2.565191 6.978086 6.347285 4.246077 2.905754 10.639199 4.279850 0.046360 -2.431965 -0.011509 5.495958 13.881844 -2.476664 8.018874 2.879619 4.034482 -1.946182 -9.026066 1.301382 -2.339222 -0.611822 1.352214 -0.392089 0.127431 -3.082323 6.402772 1.665644 -8.552609 0.967182 0.856314 1.850004 7.123995 -0.782151 0.401761 0.266395 -6.331625 11.053148 4.223801 2.097988 -4.356733 -0.359962 -0.566117 0.718731 6.645326 4.687369 -0.379164 6.293379 2.775443 7.003061 3.733669 2.861623 -4.925635 -2.440064 2.212886 -8.509626 -2.491600 0.056673 2.588299 -2.330468 2.374215 -5.600471 -12.348291 +PE-benchmarks/rabin-karp-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 4.944675 2.528882 4.659909 -4.775512 -0.142994 1.605278 4.878580 -5.376846 0.142246 16.020567 3.447778 -2.887687 -4.250456 5.088774 -2.199565 -5.202366 5.622458 1.680999 0.420462 -4.811720 -0.874655 1.685362 -0.665367 -6.517695 4.078332 -3.891765 2.802819 4.946954 -3.339478 3.606604 -3.371123 -0.606731 1.434564 11.737420 -0.206007 1.418886 -3.869808 8.680058 -10.490318 10.367407 -13.600264 -11.394347 11.809449 2.093291 2.540471 -8.109266 -0.359754 3.322065 1.769276 -7.977014 -0.532128 -4.448703 4.029022 -7.471492 -1.510806 10.410581 -10.765812 -1.396562 1.215178 -8.103062 -9.868628 -0.325414 7.513136 3.012097 -6.822139 -7.505669 2.781386 2.126725 -3.373248 4.247256 -8.686874 -13.298742 2.999411 3.028572 -3.570016 2.111176 -2.113466 -9.191939 4.789048 -1.355966 -3.609640 -5.090450 4.795243 -1.987026 0.918080 6.011945 10.974395 -15.550469 0.882374 -11.607262 9.873908 -5.377945 11.799647 7.731409 -1.440257 5.003692 3.581538 6.370454 1.962383 -1.491290 9.567257 4.594877 6.394980 -3.275733 5.843636 8.365244 -9.573369 -10.531100 -5.741529 -5.080663 2.512233 -3.239980 -9.544971 1.024064 -11.214304 -1.917621 3.182313 -4.679868 -1.176570 12.286554 -16.857109 -5.238204 4.030978 -1.543916 7.985107 6.626501 2.092134 2.271533 1.544716 7.919325 -0.988823 -1.911342 -2.967326 6.005410 -7.044824 -5.596572 -1.975352 0.746899 3.819522 -10.532560 -10.467285 -14.590134 -3.821156 7.586601 -2.667009 7.002804 15.026914 -3.026097 -8.956793 3.363864 -1.996342 -2.499425 9.040232 2.627658 15.420745 -15.357246 8.764865 -2.244725 7.166191 7.086701 15.772947 -3.934028 -6.256127 6.581768 -0.996260 -4.484145 6.994028 -2.866542 2.464869 -1.643930 1.894341 -0.886099 -1.227884 8.590861 -10.597113 10.631074 -8.552005 13.065411 -11.925509 -7.302753 3.215769 -14.008821 -5.862684 -6.522417 -0.878999 -1.908066 10.578002 -9.030039 -6.024567 -4.509310 -4.890139 2.878187 9.517076 -10.986477 -0.727378 -3.592767 -6.174534 10.905676 2.673387 -1.154688 -0.365509 -7.732092 1.015601 6.308063 0.617920 -12.470738 -2.102117 -8.761375 -1.557708 -1.561028 -0.617643 7.781745 -5.601856 -3.337251 3.002435 -3.360685 -0.483251 -6.271100 -9.011334 4.119935 -2.666328 1.083952 1.369136 13.415420 8.810396 7.114655 -0.992365 -4.292274 3.560168 -9.446190 -9.156834 6.148972 1.872435 3.476321 3.758278 6.535520 0.091653 2.590649 6.397199 -0.950051 3.215010 9.475584 1.604513 8.716676 -4.495987 2.569959 3.501522 -6.966922 5.905610 10.151300 0.003214 -5.640582 4.169714 -0.920647 -5.964942 -3.570394 -1.660867 -2.636936 -5.217359 5.883616 7.595822 -2.713254 -6.357755 16.638491 3.749252 -17.624652 9.107776 -0.489400 1.946737 9.216862 -6.031176 4.386914 5.221913 2.212006 3.491041 2.628624 9.496497 -11.063456 -0.648844 -0.901732 7.274313 7.990012 -4.591467 -20.458267 2.459271 3.294440 12.413547 4.447660 14.292719 -6.147430 5.865711 -3.721813 -3.427834 -1.258998 -2.627965 6.614113 -1.383866 -0.297721 -16.017291 5.444817 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.533265 0.117536 0.243658 -0.672507 -0.745948 0.289125 -0.545612 -0.286892 0.119152 -0.265862 0.356035 -0.523472 -0.349389 0.942808 -0.346927 -0.780288 -0.044347 -0.684613 -0.072070 0.042880 -0.068191 0.255440 -0.172881 0.125657 -0.000493 0.059728 -0.226726 0.205040 1.007779 -0.583095 -0.979002 0.037605 -0.149102 0.929841 0.177309 -0.535272 0.653953 1.554873 0.229129 0.250677 -0.477077 -0.370651 0.285438 0.056835 -0.381257 -0.455791 -0.597615 0.440670 -1.072721 0.362589 0.834829 -0.104011 -0.360849 0.062704 0.382867 0.759809 -1.705706 1.258491 0.154702 0.883775 0.278223 -0.420522 0.066815 -0.068383 0.235386 -0.444222 0.528070 0.467281 -0.778001 0.037306 -0.339888 -0.895401 1.434961 0.448168 -0.552306 0.096276 0.464747 -0.864164 0.585157 -1.007269 -0.956523 0.190754 0.094904 -0.135836 1.393813 -0.223155 -0.073429 -1.228356 0.277956 -1.335612 0.164697 -1.142912 0.466362 1.117205 -1.227915 0.015209 0.182062 0.296755 0.684147 0.233189 1.055722 0.279499 -0.037780 -0.036553 0.365289 0.099429 -0.040655 0.121674 -0.180202 -0.800400 -0.602223 0.073414 -1.719280 0.200906 -0.360720 0.541296 0.007754 0.272576 -0.256523 0.046310 -0.810537 -0.885428 -0.206780 -0.148067 0.747925 1.124982 -0.446968 0.329832 -0.550537 1.171949 -0.024583 0.155225 -0.399173 0.076846 -0.094619 -1.067843 -1.629834 0.123725 0.652483 -0.450284 -1.187172 -0.782984 -0.123866 -0.495321 -0.239146 1.373271 1.478109 -0.232341 -0.607587 1.230565 0.046347 0.727566 1.599873 -0.128109 1.226320 -0.546072 0.210300 -0.109386 -0.078073 -0.752079 -1.504313 0.092009 0.049020 -0.052498 0.240559 0.044273 0.644939 0.057775 -0.494896 -0.244313 -0.109634 -0.457390 -0.991144 1.367928 0.372624 0.610306 0.697425 1.368731 -0.356466 -1.098018 0.669334 0.206618 0.419855 -0.346017 -0.460838 0.001991 0.546672 -0.717661 -0.478673 0.101329 0.200626 -0.509268 0.137180 1.653443 0.189956 0.146645 0.533779 0.419258 1.351832 -0.051278 0.610369 -1.183806 0.232591 0.678410 -0.644500 -0.699273 0.435397 -0.426136 0.033470 0.564964 -0.171948 0.023747 -0.634837 -0.943591 -0.235661 0.096984 0.974118 0.415864 -0.995487 0.276104 -0.501501 -0.035574 0.605073 0.502923 0.996967 0.608772 0.777453 -0.337610 0.288313 0.114168 0.480122 -0.291439 0.185416 0.682452 0.305791 0.672297 0.328036 -0.017780 0.267767 0.683384 -0.308748 0.669771 0.690174 1.444255 -0.026215 -0.071390 -0.438640 -0.540553 0.771097 1.812332 -1.095793 0.312168 0.435913 0.778760 0.207192 -1.360828 -0.178619 -0.478158 -0.301169 -0.005132 -0.474436 -0.186355 -0.080124 0.955159 -0.040982 -0.994096 0.524582 0.094206 0.138536 0.241616 -0.012434 -0.289198 0.336007 -1.384159 0.699259 0.503297 0.552626 -0.160177 -0.165292 -0.124988 0.618845 -0.735679 0.485504 -0.032681 0.598729 0.763828 0.824138 1.043994 -0.149512 -0.358234 -0.921033 0.190892 -0.482255 -0.285601 0.097515 0.637405 -0.890249 0.238217 -0.063884 -1.144070 +PE-benchmarks/rabin-karp-algorithm.cpp___GLOBAL__sub_I_rabin_karp_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/boolean-parenthesization-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 20.316291 -0.749361 3.004278 -3.033923 4.173889 8.939009 0.276781 -17.726518 -2.719162 37.175514 10.781885 -8.386304 3.486218 10.201638 -2.816510 -11.325528 14.422479 27.482313 3.778263 -8.993925 -6.485139 -1.414518 -4.957611 -21.496136 7.498260 -13.162557 7.087411 7.046900 -13.758047 22.614643 -12.398169 -3.015401 3.756498 30.245656 5.219094 -0.139049 -7.003589 17.682005 -27.207068 25.402591 -20.336022 -25.805909 29.549934 7.968710 9.456336 4.065972 -7.298525 3.953151 10.423623 -21.626091 -2.344552 -17.243711 14.915427 -15.699563 -5.219811 25.532776 -16.510606 -13.239973 3.020219 -23.332356 -28.718072 -1.217190 17.774989 8.593883 -22.569962 -20.091103 9.022085 19.546149 3.969720 4.821605 -29.308541 -44.558689 12.022648 7.886122 -9.179143 -0.473505 -7.895470 -20.391991 8.528016 17.307653 -11.625690 -12.293886 7.995390 -3.808332 -1.084660 19.933548 38.671710 -38.986549 11.358830 -34.599240 26.690210 -7.627450 34.767368 19.543901 -8.561290 7.228147 14.892573 31.374854 1.579043 1.265584 25.371018 8.903936 -1.389911 -13.522902 14.231129 23.222530 -22.981380 -27.325488 -11.755515 -9.032365 8.682522 -6.916953 -25.123884 3.926232 -34.724539 3.198073 -0.564529 -7.595385 -2.310994 34.582317 -39.955561 -13.433082 8.484859 -6.047024 26.220907 11.896980 6.536759 7.358263 2.230675 17.279643 -2.745817 -18.833116 -10.329487 16.149372 -24.930440 -11.182548 -6.678854 9.101823 16.517516 -35.476407 -27.876080 -33.357735 -6.878698 31.688209 -8.109094 21.927347 37.706084 -11.149619 -12.776873 3.387914 -7.937056 -10.945236 30.108603 9.083748 45.659246 -44.619496 28.684838 -3.245222 19.617005 15.054065 18.323859 -12.621864 -15.192182 19.484693 0.408016 0.016020 40.797685 -11.437150 5.214236 -1.146613 9.136164 11.448722 5.479339 23.155086 -28.018415 16.357971 -16.023014 36.255456 -28.831686 -12.472498 8.017612 -30.431944 -25.805702 -12.954888 4.990384 -10.281672 31.184766 -19.202288 -15.113812 -3.773716 -14.961154 10.763293 28.078285 -4.356950 -3.039396 -6.778458 -23.390797 22.141899 7.326351 2.987630 -4.493600 -16.405877 -0.424559 16.366883 -14.290247 -24.757118 -10.256147 -22.979968 -0.755344 -14.708394 -0.441320 22.344402 -23.041322 -7.223980 0.571719 -2.476870 3.366577 -14.059474 -7.760591 14.383418 -4.604230 1.297280 3.518441 36.210203 21.773002 23.436212 1.187860 -12.812091 9.146448 -21.258844 -26.739266 22.698022 4.802992 19.692293 8.704023 15.011604 -8.269865 9.929336 8.681684 -14.201193 25.038414 20.387806 7.609664 23.368473 -4.952712 10.699896 8.765355 -23.228853 18.318969 27.242726 -8.027869 -12.712596 5.514166 -9.750678 -20.588310 -3.552736 1.769446 -0.416652 -22.441043 4.083044 21.801964 3.258539 -26.395730 43.916236 11.745727 -45.373798 22.746656 2.068702 4.190297 34.217243 -18.679878 20.406522 5.403230 21.422909 9.822663 9.579410 27.503714 -31.810858 6.956640 -3.079314 16.373509 19.770679 -16.237537 -40.388960 19.393990 13.059263 28.945932 9.282443 26.455172 -19.751511 22.363163 -13.072270 -11.252346 2.588730 -8.055519 16.810506 -4.197019 6.804185 -39.904480 15.570856 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.487472 0.149307 0.313017 -0.714729 -0.837319 0.607514 -1.140326 -0.538920 0.187732 -0.324549 0.535032 -0.652124 -0.327607 0.949689 -0.476159 -1.088221 -0.063006 -0.324684 0.058170 -0.346978 -0.009691 0.072808 -0.216574 -0.045971 -0.181887 -0.216915 -0.045852 0.078171 1.285308 -0.376668 -1.142961 0.029998 -0.082504 1.199486 0.412311 -0.362125 0.630865 1.616010 0.781541 0.225638 -0.806422 -0.687595 0.381801 0.210768 -0.411776 -0.307478 -0.562367 0.393095 -1.521303 0.614480 0.831285 -0.420541 -0.177808 0.105479 0.206368 0.819490 -1.807256 1.519558 0.011017 0.645497 0.169190 -0.448104 0.306162 0.211888 0.476566 -0.367560 0.664216 0.976312 -0.905486 0.024484 -0.439315 -1.232439 1.799300 0.530034 -0.702467 -0.065087 0.389590 -0.741015 0.517678 -0.904829 -1.147553 0.113987 0.276475 -0.026683 1.351249 0.069797 0.227032 -1.542707 0.221510 -1.720736 0.501896 -0.936990 0.840652 1.057180 -1.564353 -0.108087 0.378747 0.218322 0.817181 0.222877 1.209720 0.106099 -0.172480 -0.161657 0.486415 0.163278 0.083384 0.144233 -0.009043 -1.001686 -0.715769 0.110816 -1.934017 0.132870 -0.833919 0.773576 -0.212854 0.316818 -0.336503 -0.160700 -1.000051 -1.507956 -0.347991 -0.176523 1.260548 1.097334 -0.376623 0.732935 -0.284456 1.369852 -0.190211 -0.247969 -0.553618 0.146727 0.105105 -1.279872 -2.266256 0.423000 0.987786 -0.667568 -1.458323 -0.875424 -0.338188 -0.344563 -0.207269 1.643567 1.750718 -0.292465 -0.853704 1.233376 -0.165538 0.749418 2.273376 -0.035860 1.632797 -0.939714 0.560447 -0.147591 0.051649 -0.700307 -1.637191 -0.085770 0.156344 0.117407 0.346013 0.521537 0.404720 -0.168129 -0.594247 -0.555261 -0.085120 -0.462521 -1.010931 1.323469 0.516440 0.564508 0.738119 1.715892 -0.863634 -1.583674 0.707785 -0.041351 0.101323 0.101672 -0.378714 -0.191157 0.938027 -0.983928 -0.625931 0.210898 0.176121 -0.418113 0.171513 2.248450 0.175475 0.223568 0.303129 0.646190 1.558966 0.093364 0.521955 -1.247620 0.033464 1.077624 -0.567231 -0.691497 0.318778 -0.781478 0.077047 0.600939 -0.169591 0.197473 -0.746787 -0.970286 -0.503977 -0.009805 1.451389 0.463037 -1.061415 0.512439 -0.545818 -0.186107 0.578518 0.779376 1.088729 0.870118 0.911005 -0.487865 0.463211 -0.186984 0.934901 -0.366609 0.532133 0.879995 0.342366 0.768909 0.252630 0.076427 0.452252 0.687852 -0.253411 0.745780 0.501552 1.701472 -0.308812 0.331590 -0.627264 -0.757632 0.930330 2.421168 -1.275230 0.242078 0.476878 0.768070 0.412613 -1.962499 -0.150443 -0.485969 -0.303046 0.021909 -0.146144 -0.010736 -0.486024 1.282372 0.215152 -1.195972 1.011683 0.091028 0.001728 0.409093 -0.376717 -0.555233 0.361206 -1.526807 0.676507 0.703080 0.808081 -0.426927 -0.039244 -0.290370 0.942581 -0.854728 0.340590 0.232913 0.827492 1.055757 0.999271 1.402924 -0.154372 -0.628938 -1.119667 0.053113 -0.745311 -0.359321 0.171547 0.757619 -0.823035 0.314805 0.047983 -1.289854 +PE-benchmarks/boolean-parenthesization-problem.cpp___GLOBAL__sub_I_boolean_parenthesization_problem.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/z-algorithm-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.392048 0.926310 2.284523 -2.326547 -1.730074 0.508700 -1.902138 -0.293055 1.085067 3.846439 1.358183 -2.374406 -4.494154 3.124731 -1.791276 -3.502287 1.665393 -0.042577 1.973267 -2.065231 0.525149 0.834416 1.325278 -0.906946 1.446975 -1.175942 -2.120363 1.728180 5.664782 -1.345936 -1.562145 0.914293 1.003267 3.738361 -1.783589 -1.631014 0.711472 4.710822 -0.718741 1.952733 -3.960063 -3.180388 4.151147 1.118259 -0.257031 -2.838437 -0.829309 1.835164 -4.321282 -1.506800 0.842793 -0.381631 0.596565 -2.389775 -0.931554 4.457884 -7.987262 3.445996 -0.460642 -0.237656 -0.142881 1.249749 1.247586 0.883108 1.719868 -2.346144 0.297194 0.802850 -4.592115 -0.032444 -0.993735 -1.937091 4.171625 0.492683 -1.899587 2.048107 2.154172 -1.860037 2.288318 -4.730247 -2.332984 -0.697703 1.020548 -0.094036 2.914576 1.109238 1.934523 -5.138054 0.287836 -3.848156 4.467948 -3.211008 3.338444 3.504048 -3.269539 1.692244 1.867314 -1.146615 2.716027 0.531915 6.012087 1.422853 1.980544 0.207308 0.888559 1.723885 -1.978100 -0.672865 -2.015387 -3.129155 -1.160834 0.002550 -4.718647 -0.090889 -3.106479 1.890797 3.820983 -1.889047 -0.725760 2.065582 -4.711967 -2.983597 0.406497 -0.481790 2.203485 4.101608 0.184091 -0.356180 0.742566 5.373236 -1.375418 -1.186085 1.449021 1.311788 0.910417 -4.921803 -2.829793 0.012461 0.282498 -3.355631 -3.561397 -4.668399 0.206729 -0.717657 -0.469325 3.546707 7.404252 0.197334 -2.585560 3.297226 -1.925454 1.246241 6.089435 0.299735 6.947542 -4.254224 0.463640 -1.213576 0.560329 2.048158 2.936061 0.231186 -0.177508 0.582641 2.048013 -0.215358 -2.115335 -1.265147 0.315444 -1.165239 -0.038293 -1.813658 -2.385918 2.627534 -0.473354 3.525029 -0.200750 6.305823 -1.197781 -6.574823 2.793444 -1.287234 -0.952816 -0.091221 -1.407717 0.285078 1.229676 -3.805343 -1.849068 -2.449446 0.245873 -0.631380 2.103607 0.548821 1.938412 0.226299 -1.282124 3.603685 1.663342 -0.523402 1.589358 -5.463886 -0.753901 2.085861 -1.228705 -5.542264 1.349872 -3.391374 1.002732 3.783516 -1.875258 2.193144 -1.404879 -3.106670 -0.432904 -1.636040 1.649031 -2.124170 -2.621644 0.893809 -0.736590 0.404721 2.044222 4.446373 4.266514 2.357017 -0.201935 1.022552 1.180834 -1.229193 0.884421 0.181605 -0.131291 1.590933 1.404271 1.952635 0.329528 1.459729 3.278573 1.298186 -1.498633 3.881884 -0.074761 3.979313 -1.971629 -0.016884 0.066281 -2.869692 2.750857 5.843834 -2.618036 -1.349864 2.331610 1.394200 0.969163 -4.283547 0.185533 -1.747830 -1.208224 3.312701 1.449458 0.384650 -1.450692 3.173006 1.359817 -6.234867 5.480064 -0.649526 -0.187518 1.455183 -0.912952 -0.959181 1.599468 -3.432869 -0.374234 1.818790 3.238031 -3.968171 0.308262 -0.250743 4.452213 -0.510841 0.995693 -6.809083 -0.647665 2.038185 2.720300 3.071011 3.131887 -2.201983 -3.999779 -0.092061 -1.595657 -2.337242 -1.775093 0.717806 -2.813791 0.598985 -1.059687 0.137415 +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.241082 0.514185 0.334119 -0.620194 -1.180455 0.118082 -0.312661 -0.349142 -0.021109 0.018622 0.524902 -0.653076 -0.489276 0.955911 -0.378490 -0.718987 -0.389449 -0.618040 -0.280753 -0.222190 0.016765 0.399092 -0.122094 0.241861 -0.075468 0.076975 -0.309168 0.253473 0.886902 -0.610390 -0.579160 -0.006894 0.135793 0.730700 0.078043 -0.441169 0.376445 1.320814 -0.185079 0.093183 -0.732963 -0.556418 0.352054 0.075510 -0.196887 -0.936827 -0.705034 0.578047 -0.750556 0.168684 0.719587 0.137190 -0.297036 0.047700 0.411734 0.612157 -1.534481 1.296586 0.237846 0.259506 0.183414 -0.082250 -0.047102 0.122203 0.274859 -0.452432 0.214352 0.392760 -0.439900 -0.038312 -0.030003 -0.844185 1.343603 0.127034 -0.470384 0.167984 0.406419 -0.622862 0.754723 -1.052488 -0.867932 0.187322 0.220647 0.078165 0.888055 -0.054788 -0.063429 -1.129340 -0.003175 -1.151375 0.328878 -0.850778 0.222205 0.781578 -0.905974 0.035369 0.250379 -0.284529 1.002081 0.297957 0.861739 0.176667 0.488868 0.265716 0.166799 0.312497 -0.167316 0.028054 -0.516820 -1.103366 -0.212143 0.147593 -1.477741 0.271498 0.042105 0.216593 0.122635 -0.120308 0.155844 0.360802 -0.590450 -0.524127 0.149182 -0.078560 0.413999 1.106674 -0.398366 0.320648 -0.503653 0.939875 -0.201324 0.461688 0.001556 0.157030 -0.005249 -1.396166 -1.469925 0.356675 0.401451 -0.398059 -0.706207 -0.763344 0.142648 -0.385345 -0.380575 0.673441 1.513474 -0.499889 -0.825958 1.149277 0.567140 0.230654 1.066829 -0.130238 1.384211 -0.375861 -0.140091 -0.208363 -0.469941 -0.351026 -0.454864 0.296301 -0.097306 0.072949 0.290758 -0.836180 0.437476 -0.091383 -0.612679 0.128655 0.162844 -0.393751 -0.678056 0.892911 0.714022 0.648445 0.470412 1.111741 -0.341656 -1.028899 0.527240 0.124501 0.242728 -0.223011 -0.433665 0.323344 0.479471 -0.529058 -0.178692 -0.181652 -0.174265 -0.683158 0.043847 0.703295 0.348822 0.289059 0.526408 0.138930 1.310461 0.125727 0.423524 -1.097757 0.273999 0.459296 -0.227625 -1.100371 0.198550 -0.559389 0.057978 0.538009 -0.321823 0.181811 -0.143160 -0.554199 -0.155937 -0.383157 0.672462 0.297058 -0.399614 0.188984 -0.595820 0.502714 0.266059 0.503696 0.989464 0.835426 0.886517 0.139864 0.226573 0.025368 0.608489 -0.159150 0.205341 0.270875 0.480297 0.655392 0.413669 0.127763 0.658898 0.513797 -0.311950 0.782698 0.206961 1.464297 -0.322466 0.015755 -0.478422 -0.099701 0.671277 1.728534 -0.592602 0.035721 0.348469 0.539150 0.086858 -1.002967 -0.052324 -0.403622 -0.282396 0.464992 0.044702 -0.177736 -0.038911 0.738811 -0.084218 -0.894284 0.604784 0.008757 0.215955 0.108487 0.007661 -0.275116 0.360471 -1.078475 0.409752 0.742909 0.577448 -0.507225 -0.556602 -0.080935 0.694662 -0.380751 0.677193 -0.879173 0.342447 0.807962 0.659942 0.312928 0.217918 -0.686061 -1.011691 0.510660 -0.173312 -0.340237 0.172005 0.390723 -0.894801 0.271628 -0.005683 -0.930778 +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.287996 0.309006 1.013852 -1.415678 -1.371319 -0.226208 -0.329517 -0.075654 0.619760 0.789461 1.075805 -1.287123 -1.535878 2.172440 -0.175091 -1.220342 0.189321 -1.063723 0.452645 0.126587 0.599096 0.720702 0.147284 0.281240 0.281946 0.261678 -1.127204 0.687679 1.914018 -1.254006 -1.211790 0.209689 0.191720 1.191793 -0.896445 -0.888479 0.416049 2.499910 -1.328517 1.207811 -1.655503 -1.021658 1.224456 0.069310 -0.535986 -1.894086 -1.129809 0.882176 -1.431511 -0.568743 1.078681 0.532372 -0.196410 -0.661991 0.428116 1.506721 -3.667447 1.690090 0.464588 0.576431 0.791314 0.240502 -0.074907 0.123286 0.181041 -0.590940 0.373867 -0.415820 -1.459694 -0.191357 -0.053077 -1.044102 2.118414 0.616665 -0.639797 1.050464 1.401355 -1.559573 1.754651 -2.328450 -1.393276 0.038952 -0.015448 -0.280873 1.794316 -0.185771 0.167359 -1.811265 0.173159 -1.840506 1.298094 -2.276762 0.463698 1.857859 -1.552017 0.514689 0.880188 -0.288082 1.812963 0.329797 2.093464 1.156658 1.108900 0.337003 0.528454 0.838057 -0.892904 -0.022643 -1.190028 -1.788363 -0.533862 -0.200326 -2.441294 0.225825 -0.157144 0.161330 1.456444 -0.626971 0.223437 1.147307 -1.212057 -0.327373 0.532103 -0.168752 0.098184 2.566005 -0.473886 -0.472743 -0.809656 2.114262 -0.663594 0.823902 0.678560 0.338569 -0.243018 -2.219687 -1.367979 -0.116061 -0.166584 -1.265772 -1.200086 -2.036071 0.557312 -0.552681 -0.156164 1.510013 3.053795 -0.449849 -1.236828 1.977791 0.764376 0.421370 2.128071 -0.083609 2.748436 -0.790965 -0.381434 -0.887241 -0.618124 -0.164181 0.756802 0.784976 0.079519 -0.000995 0.651416 -1.757692 0.715828 -0.156632 -0.367232 0.088930 0.249509 -1.340234 -1.690835 1.571017 0.552888 1.535683 0.349679 2.323922 -0.154614 -1.862248 1.573653 -0.046463 0.383534 -0.877999 -1.182079 0.861859 0.509618 -1.111838 -0.449030 -1.284705 -0.267477 -0.739463 0.471778 0.007258 0.894037 0.493735 0.362598 0.779645 1.651000 -0.160463 0.928747 -2.448467 0.278539 0.569507 -0.863158 -2.483127 0.937686 -1.296896 0.480306 1.442732 -0.779642 0.787008 -0.777252 -1.711804 0.023367 -0.653430 0.502049 -0.516359 -1.809067 -0.010328 -0.610248 1.003788 1.130987 1.121469 1.654144 1.273245 0.769270 0.535432 0.078508 0.308783 0.368701 -0.198136 -0.430922 0.407100 0.643811 1.196271 0.534138 0.412752 1.392107 1.026083 -0.917357 1.611798 0.328462 1.907760 0.113141 -0.532070 -0.122341 -0.708311 1.372341 2.767181 -0.848067 0.018670 0.943980 1.039690 -0.063397 -1.675601 -0.220313 -0.704412 -0.766006 1.529827 0.099482 -0.041317 0.008271 1.052565 0.278840 -2.301577 1.240516 -0.259719 0.336911 0.412568 0.215135 -0.430674 0.812262 -2.041883 0.711194 0.784205 1.230412 -1.209973 -0.640095 0.064285 1.361624 0.055305 1.276059 -2.700627 0.089743 1.045891 0.868412 0.864692 1.340743 -1.096028 -1.785139 0.383536 -0.593020 -1.019185 -0.575431 0.259305 -1.648508 0.170997 -0.510992 -0.909677 +PE-benchmarks/z-algorithm-linear-time.cpp__getZarr(std::__cxx11::basic_string, std::allocator >, int*) = 3.997496 2.014518 4.884176 -2.982686 -0.250116 1.306788 3.552969 -4.312214 0.972709 13.091111 2.520971 -2.192672 -3.061005 4.337885 -3.031066 -2.624584 4.107995 2.032165 0.436848 -3.760491 -0.804587 1.234075 -0.677646 -4.655728 3.159672 -2.945252 2.947953 3.788120 -2.735927 2.659451 -2.688520 -0.844378 1.421214 9.149714 -0.284160 0.863079 -2.396222 6.581211 -8.208775 8.213654 -11.140898 -8.860620 9.022647 1.598232 2.438879 -6.451463 -0.426761 2.875300 0.552913 -6.303622 -0.739956 -3.682586 3.280484 -6.217556 -1.061338 7.834472 -9.193964 -1.057197 0.931620 -6.312749 -8.148127 -0.452428 6.584162 2.269813 -5.373410 -5.701097 2.318870 2.206906 -3.537906 3.424095 -6.155475 -10.317993 1.966506 0.715230 -3.570349 1.586503 -1.194207 -6.835731 3.904601 -1.310541 -2.611516 -3.976871 3.580107 -2.929948 0.904885 4.248859 8.182770 -12.192917 1.428259 -8.794804 7.779921 -4.081840 9.106041 5.706324 -2.151892 4.021045 2.903019 5.540809 1.184256 -0.583338 7.409642 3.837226 5.072189 -2.794889 4.958723 6.301549 -7.427501 -8.140869 -5.192529 -4.696469 2.088876 -2.125091 -7.259295 -0.271433 -8.537917 0.002234 2.444105 -3.672629 -1.113648 10.027087 -14.033603 -2.623220 3.477446 -1.524944 5.866986 5.533456 1.473073 1.665121 1.637056 6.364484 -1.759518 -2.456675 -2.016662 4.432094 -5.234235 -4.691622 -1.746038 0.228767 2.589822 -7.570485 -8.255423 -11.995687 -3.016909 6.183550 -1.617793 5.347038 12.107259 -1.826114 -7.284107 2.323844 -2.284183 -2.444596 7.690159 2.332934 12.392505 -12.033171 6.675743 -2.648805 5.487666 5.622405 11.904920 -3.111451 -4.814621 4.943437 -0.492754 -4.137644 6.647341 -2.224917 2.189648 -1.552046 1.972396 -0.745210 -0.632899 6.812925 -8.491702 8.022234 -6.847160 10.984693 -9.431023 -6.024793 1.841324 -10.823678 -4.093918 -4.188740 -0.959364 -1.337432 8.888173 -6.909021 -4.713736 -3.659441 -3.851893 2.795257 7.883731 -7.927086 -0.376713 -3.034489 -5.283441 8.821899 1.621483 -1.397277 -0.110338 -6.011520 -0.001099 5.102151 0.430749 -10.331221 -1.412619 -7.324082 -1.231606 -1.221975 -0.412286 6.010109 -4.689898 -2.729778 2.117551 -3.209372 -1.018778 -5.473369 -7.266684 2.918043 -2.992004 0.855648 0.979262 10.202777 7.350758 5.519168 -0.680291 -2.880069 2.187155 -7.726319 -6.524259 4.860627 1.684930 2.438959 2.735811 4.915075 0.155936 2.062019 3.842691 -1.155600 2.444889 7.543319 1.626245 6.647986 -4.819800 2.651980 2.478573 -5.116571 4.425678 7.612278 -0.536946 -3.900249 3.000322 -0.235872 -4.371054 -2.999458 -1.429634 -2.206986 -3.699789 4.516657 6.391111 -2.164388 -4.796892 12.801057 2.792377 -13.514462 7.133029 -0.810120 1.373637 6.940367 -4.740927 3.034371 3.924387 2.469353 2.574348 1.652038 7.257831 -8.770021 -1.078302 -0.773323 6.348248 6.540158 -3.141417 -17.340940 1.905835 2.068192 9.296324 2.943781 11.155311 -5.045517 4.328659 -3.144459 -3.557461 -1.063204 -1.632412 5.476430 -0.749290 -0.293529 -13.125409 4.354905 +PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/z-algorithm-linear-time.cpp__std::remove_reference, std::allocator >&>::type&& std::move, std::allocator >&>(std::__cxx11::basic_string, std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/z-algorithm-linear-time.cpp___GLOBAL__sub_I_z_algorithm_linear_time.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 0.514602 0.602455 1.062756 -2.034972 -0.480861 -0.153539 1.983123 -0.491188 0.300068 2.402740 0.928065 -0.923830 -1.999302 2.084790 -0.143419 -1.428495 1.181210 -1.400281 -0.409473 -0.151728 0.037121 0.986224 0.005430 -1.078658 1.141385 -0.213617 -0.093020 1.770670 0.464728 -0.711403 -1.018119 -0.112482 0.349256 2.551774 -0.587668 0.073399 -0.381583 2.784532 -3.151382 2.811510 -3.069183 -2.125706 3.018443 0.159946 -0.618539 -3.239780 -0.721816 1.130998 -0.486011 -1.915954 0.554400 -0.261835 0.423172 -1.910926 0.227886 3.060225 -3.586209 0.545866 0.576980 -0.551155 -1.229109 -0.422693 1.100591 0.141729 -1.355797 -1.749423 0.466781 -1.028641 -1.664007 0.502014 -1.387568 -2.375625 1.705435 0.840232 -0.849450 1.006278 -0.131831 -2.754709 1.537396 -1.403806 -0.888940 -0.772759 0.858264 -0.387854 1.367266 0.180261 1.230358 -3.527772 -0.609535 -2.454036 1.771617 -2.257904 1.985012 2.226289 -0.796206 1.366460 0.199447 0.402364 0.490664 -0.393419 2.337548 1.138421 2.356650 -0.444977 1.577618 1.695621 -2.222067 -2.121524 -1.658203 -1.675984 0.427066 -0.788038 -3.076111 0.250860 -1.697877 -0.943358 1.535968 -1.170901 -0.458712 2.428176 -2.796036 -0.151031 1.031078 -0.486331 1.117886 2.778663 0.080207 -0.289177 -0.229197 2.109009 0.018248 1.084100 -0.636980 1.173805 -1.074768 -2.003596 -0.057481 -0.460954 0.251061 -1.908617 -2.399877 -3.471592 -0.349876 0.591251 -0.708800 1.321440 3.840661 -0.596544 -2.440774 1.711024 0.577011 0.470782 1.411987 0.143509 3.526307 -2.740661 1.272639 -0.665801 0.892333 1.071142 3.859576 -0.377132 -1.581543 0.719517 -0.636793 -2.834493 1.588160 -0.052682 0.449687 0.090563 0.096616 -1.388371 -1.674445 2.749681 -1.441581 3.015468 -1.375138 3.027993 -2.003947 -1.928618 1.310860 -1.819440 -0.549494 -2.599475 -1.354051 0.566510 1.574650 -1.732328 -1.201507 -1.791035 -0.351298 -0.175011 1.875738 -3.023241 -0.022826 -0.928577 -0.379021 1.746240 1.086307 -0.856950 0.580943 -2.467288 0.608422 1.422893 0.100155 -3.457146 0.304206 -1.552907 -0.452219 0.888114 -0.429303 1.289912 -0.943928 -1.354844 1.233747 -0.845698 -0.397970 -1.378096 -3.421866 0.437251 -0.615747 0.297452 0.779495 2.767389 2.284130 1.245959 -0.123868 -0.455704 0.421593 -1.125140 -2.385384 0.536586 -0.476533 0.494328 1.200290 1.683754 0.624394 0.371136 2.078771 0.824755 -0.457370 2.199201 1.188390 2.289502 0.270467 -0.665937 0.993412 -1.517560 1.350848 2.670213 -0.043094 -0.898496 1.523098 0.788929 -1.094487 -1.340232 -0.644454 -1.147675 -1.219741 2.570823 0.440260 -1.056977 -0.478952 3.570279 0.144848 -4.036538 1.537900 -0.093538 0.939834 1.153161 -0.837589 0.688016 1.647398 -0.999463 1.205233 0.491409 1.909908 -1.797389 -0.731525 -0.054141 1.394147 1.780716 -0.188227 -4.950100 -0.074435 0.505146 3.045512 1.255448 3.314775 -0.852150 0.660497 -0.602139 -0.394517 -0.328302 -0.984934 1.241284 -1.136644 -0.472921 -3.739459 0.806004 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.248389 0.230409 0.080565 -0.367136 -0.315958 0.060027 -0.212602 -0.326462 -0.048444 -0.094459 0.284319 -0.458616 -0.396138 0.469227 -0.300062 -0.494748 -0.038735 -0.192363 -0.174457 -0.150340 -0.017222 0.045214 -0.026102 -0.303102 0.039485 -0.007641 -0.015813 0.200746 0.621959 -0.309237 -0.385890 0.040711 0.272560 0.608552 0.130976 -0.117846 0.120459 0.598989 0.122826 0.124849 -0.691158 -0.307842 0.557444 0.032811 -0.157898 -0.746068 -0.341264 0.304503 -0.731323 0.140591 0.068817 -0.159183 -0.122710 -0.307495 -0.094439 0.733334 -0.966399 0.920923 0.151595 0.102684 -0.070761 -0.114126 0.149302 -0.044210 0.345181 -0.399505 0.049700 0.235901 -0.543752 0.151801 -0.350067 -0.457064 1.003928 0.039275 -0.278433 0.061563 -0.192687 -0.306064 0.213848 -0.634105 -0.263592 -0.076847 0.373593 0.450628 0.407298 0.138746 -0.053162 -0.778001 -0.302258 -0.735961 0.289853 -0.476881 0.420610 0.359503 -0.666283 0.126589 -0.024503 -0.458103 0.299030 0.358438 0.498191 -0.026216 0.243300 -0.180582 0.164203 0.126473 0.023804 -0.141314 0.055614 -0.430288 -0.259067 0.217128 -1.085336 0.108234 -0.535156 0.396938 0.010431 -0.043816 0.055740 0.023627 -0.409990 -0.512643 -0.008709 -0.080794 0.566147 0.598852 -0.025159 0.203875 -0.204919 0.465868 0.181055 -0.009678 -0.156053 0.182471 0.096675 -1.283258 -0.816778 0.098011 0.294066 -0.335059 -0.637613 -0.448919 -0.082301 -0.224331 -0.209111 0.296291 0.721788 -0.079083 -0.572228 0.488987 0.153039 0.314690 0.875756 0.006628 1.029585 -0.587067 0.342955 0.158195 0.052470 0.013920 -0.431173 -0.312976 -0.355555 0.024225 0.079864 -0.506852 0.035585 0.062345 -0.061256 0.148131 -0.141455 -0.202685 -0.456032 0.554712 0.360843 0.611704 -0.002268 0.809428 -0.517080 -0.800671 0.314292 0.082457 -0.030295 0.156297 -0.173056 0.055984 0.391431 -0.527592 -0.313908 0.069199 0.091131 -0.180477 0.504556 0.547313 -0.041300 -0.034629 -0.060277 0.158443 0.392665 -0.351993 0.394544 -0.549021 0.087544 0.528061 0.074920 -0.905942 0.085800 -0.368357 -0.039704 0.373443 -0.092061 0.220311 -0.047792 -0.300787 0.118345 -0.190505 0.470826 -0.071230 0.073881 0.194722 -0.409967 -0.105709 0.091195 0.654625 0.486421 0.277706 0.034885 -0.089388 0.143107 -0.314672 0.319541 -0.079058 0.102813 0.200969 0.258939 0.293667 0.061406 0.075269 0.385443 0.205182 -0.261926 0.495037 0.332570 0.632586 -0.397021 0.073128 -0.073867 -0.379686 0.487394 0.945075 -0.600953 -0.303167 0.210521 0.225672 0.186985 -0.730537 -0.254369 -0.129260 -0.498976 0.529199 0.057084 -0.038519 -0.161583 0.761849 0.079371 -0.607472 0.670054 0.104085 0.027137 -0.068506 -0.286619 -0.201461 0.384895 -0.360668 -0.129935 0.255893 0.492570 -0.339641 -0.360827 -0.085572 0.509448 -0.145639 0.068426 -0.405340 0.081152 0.569407 0.677682 0.398620 0.050880 -0.266072 -0.404205 -0.073608 0.095880 -0.029967 -0.119996 0.204184 -0.474666 -0.074850 -0.018161 -0.220651 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 2.939731 0.562608 3.298463 -3.047640 -1.361794 1.608147 1.228278 -3.097352 0.826290 8.870340 2.111398 -1.549967 -2.183278 3.580850 -1.659377 -2.807882 2.568353 0.828545 0.823325 -2.008605 -0.341036 1.473705 -0.764500 -3.079682 2.002268 -2.207708 1.263683 2.928033 -1.218157 2.177430 -2.362759 -0.960794 0.071386 6.959431 0.175208 0.683378 -1.092100 6.155013 -5.998281 6.287681 -7.675492 -7.402846 6.645399 1.099375 1.443269 -3.357962 -0.550071 2.125870 -0.579561 -4.472239 0.517050 -2.562991 2.757816 -3.771201 -0.370789 4.806374 -7.415766 -0.711963 0.493363 -4.188327 -5.312937 -0.537170 3.779325 2.203424 -4.332380 -4.200956 1.738759 2.021005 -2.219256 1.508315 -3.739555 -7.439171 2.797657 1.457352 -2.634160 1.040763 0.242305 -5.529743 3.387203 -1.187098 -3.438965 -2.513649 1.420474 -3.282059 2.017691 2.696373 6.871706 -9.041966 2.432934 -7.453902 5.688212 -3.180797 6.104911 5.056980 -2.508089 2.652238 2.938721 5.815942 2.084711 -0.809890 6.048946 3.447266 3.111193 -0.993928 3.998303 4.659776 -5.373891 -5.132522 -4.269573 -4.125802 1.235911 -2.748403 -6.788702 0.165857 -5.048055 0.388265 1.703752 -2.365251 -1.070011 7.518210 -10.817771 -1.810356 2.034469 -1.031902 3.849413 3.767663 0.481416 0.799437 1.152910 5.417252 -2.135460 -1.473849 -1.140068 3.454102 -4.344071 -2.059440 -1.983337 0.996555 2.143843 -5.914430 -6.309505 -9.034059 -1.813778 5.125071 -1.278325 5.295250 9.900989 -2.012940 -5.479139 2.784680 -1.978446 -2.136025 6.126167 1.601994 8.311188 -7.684350 3.634615 -2.652394 2.762535 2.877472 7.885473 -1.199499 -2.964312 3.856802 -0.517858 -2.409323 5.490533 -1.535558 0.651917 -2.664912 1.303130 -1.626309 -0.774163 5.499949 -6.640083 5.613808 -3.843029 8.207405 -5.914498 -4.470573 1.927095 -8.172569 -3.211497 -3.887769 -1.147257 -0.611030 5.765244 -5.434420 -3.373270 -3.070711 -2.672395 0.886538 5.278297 -4.604908 0.249888 -1.037955 -2.907416 6.876889 2.460147 -0.056656 -0.490276 -4.638999 0.595017 3.639243 -1.202599 -6.717911 -1.316047 -5.210267 -0.481122 -0.109595 -0.198058 4.687953 -3.979026 -2.285427 0.815417 -1.522978 0.002659 -2.854020 -6.560285 2.150159 -1.092144 1.490326 1.623228 7.156214 5.502650 4.986635 0.444624 -1.408994 1.412820 -4.389469 -4.273842 2.875294 1.517824 1.920630 2.142565 4.742233 0.716971 2.021061 3.529901 1.102677 2.155758 5.775151 0.814136 5.856043 -2.541882 1.179938 1.554707 -3.033425 3.601642 6.562100 -1.215576 -1.314716 2.285084 0.085877 -3.339610 -2.096563 -0.035362 -1.931647 -1.949827 2.473620 4.214254 -0.790919 -3.634716 8.854775 2.110256 -10.370469 5.073433 -0.423310 1.616668 5.650738 -3.075863 2.247564 2.191289 0.385159 3.790040 2.348028 4.750331 -6.456817 -0.338674 -0.161443 4.585703 4.617400 -0.909774 -10.534140 2.084517 1.343730 6.508458 2.496140 7.746221 -4.222895 2.029551 -1.666806 -3.604005 -1.045226 -1.063199 3.482795 -0.912110 0.632780 -9.286532 1.467174 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/graph-coloring.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/graph-coloring.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 3.643976 0.519782 5.391260 -5.506240 -4.210893 3.965615 -2.192141 -6.159067 1.344982 13.170358 3.866099 -4.108342 -6.863052 8.277278 -2.822525 -8.487483 2.515155 2.036867 1.456209 -4.536695 -1.662130 2.465427 -1.692206 -3.755558 3.129772 -4.562162 1.231545 5.324652 3.326585 2.176122 -5.205540 -1.500445 -1.048596 13.602315 0.957879 1.726396 0.910165 14.760344 -8.073038 11.594889 -12.794995 -14.163501 11.142428 2.202356 0.589827 -1.776809 -0.511075 4.699053 -9.238936 -4.569657 3.952824 -4.232060 3.247593 -4.979870 1.776856 9.156152 -16.697240 4.570761 0.289390 -5.105018 -7.786313 -2.526755 4.568018 3.318306 -5.252619 -7.594942 3.593172 5.741586 -6.842596 1.493123 -6.362807 -13.448493 9.405111 3.254994 -6.239709 2.204659 2.256274 -7.219423 6.259862 -4.454953 -9.008622 -3.638621 3.602042 -5.740065 7.318105 6.411220 10.448524 -18.329493 3.751757 -15.633711 10.683078 -6.834232 11.879340 11.284347 -8.351388 4.629201 6.093558 8.680014 4.127607 -1.704040 12.386407 3.329839 2.939651 0.183332 6.401062 6.749447 -9.392350 -7.816414 -7.581551 -8.956716 0.503224 -4.363825 -12.976527 -0.003667 -9.858557 5.095177 3.238349 -1.703073 -3.777168 9.100193 -20.594640 -5.658268 1.527358 -2.120486 11.114760 8.064093 -0.392175 3.516554 1.789733 12.290049 -4.945727 -3.130229 -4.170732 5.921510 -3.085168 -3.582489 -10.097681 2.360579 6.013370 -10.320858 -13.121228 -15.211554 -4.389482 7.629551 -2.253838 14.547236 20.843458 -4.776219 -9.544040 8.685639 -7.857389 1.876443 14.988561 2.828406 15.919493 -13.406400 5.988806 -5.033205 3.451489 3.371170 8.195394 -0.821057 -4.942891 5.982742 2.201973 2.862282 6.711517 -2.777063 -2.039339 -10.419465 2.424118 -3.912283 -3.180254 12.088284 -11.660478 9.555827 -3.709840 17.538044 -11.220919 -11.335443 5.203402 -13.442378 -4.496972 -6.557731 -4.217957 -1.947638 9.835616 -11.960379 -6.748586 -5.434182 -2.631595 -0.459750 7.606691 0.792430 0.761632 -0.919229 -2.739886 14.721767 9.026710 1.034685 -0.871565 -11.675326 1.088332 7.580683 -4.092689 -11.415982 0.171466 -8.801568 -0.950287 3.813973 -1.038301 7.079154 -8.206974 -5.370610 -1.615114 -1.944746 4.751114 -2.178094 -13.718976 4.685879 -1.388347 0.834534 6.741384 12.015663 11.513398 9.863323 4.305202 -1.699107 2.800374 -6.075226 -2.712031 4.384602 3.871258 7.159218 4.854523 9.596976 2.881064 3.353080 6.491507 3.677501 1.932529 11.243482 2.462839 14.841425 -4.946826 2.582743 0.421953 -5.365140 7.527753 15.512335 -9.262351 -0.391138 5.921797 2.783256 -2.781272 -7.684344 -0.379283 -5.734693 -2.791492 4.025431 4.919590 -1.520309 -6.602327 16.986529 2.594424 -18.707280 10.694057 -0.189903 3.073029 8.393367 -4.821991 0.494057 4.491827 -6.130892 7.798799 6.065756 9.179460 -11.021356 1.980190 -1.313490 9.561502 5.905888 0.072601 -14.991872 3.526306 4.570662 12.618882 8.337847 9.709036 -7.281605 -1.527772 -2.172360 -9.033345 -2.016072 -1.548409 6.988601 -2.716369 3.243556 -13.464126 -3.448936 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/graph-coloring.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/graph-coloring.cpp__main = 2.133250 0.389332 2.423643 -1.024747 0.340626 0.069160 -3.447180 1.291874 1.614293 -0.124389 -1.156516 0.138543 -2.703321 2.333500 -3.659708 -1.986986 1.842018 -0.142878 3.520077 -1.157615 1.648867 0.811920 3.159403 0.643087 1.490600 -1.710671 -2.080310 1.622524 6.414364 -1.443496 -0.998523 1.288657 1.501369 1.615135 -2.186059 -2.547761 2.041076 3.232086 2.183392 0.744645 1.461882 0.445802 1.448444 1.221343 -1.937752 -1.746281 -2.583202 -0.391142 -4.641663 0.107992 1.056485 -0.056763 -0.625630 -0.456771 -0.750621 2.910606 -5.828257 2.348106 -2.367745 3.384304 3.854738 0.669182 -0.608852 -1.188324 4.329478 -0.554153 -0.135680 0.855199 -5.650488 -0.162429 1.152896 2.401717 4.347059 0.033507 -1.490495 1.728041 4.494748 -0.976308 0.213663 -5.311908 -0.836586 -0.179883 -0.988507 1.954973 3.431766 -0.910557 -0.623250 -1.741386 -0.116406 0.240722 2.731109 -2.657880 1.417067 1.783228 -3.935298 1.376126 1.193704 -0.489226 0.605959 0.060097 5.520595 2.297913 -1.518137 -0.002311 0.203924 -0.857948 0.591134 1.565093 -0.757245 -0.431851 -1.733499 -0.611363 -4.672273 -1.865079 -0.789907 1.774782 3.143371 -1.548198 -1.594714 -0.435277 -2.736942 -1.751570 -0.892429 -0.069342 -0.712167 2.138627 0.317539 -1.586664 1.021659 4.378971 -1.095275 -2.737760 2.159918 -0.951714 1.456478 -4.013968 -1.256373 -2.483989 -1.102885 -0.880725 -2.244111 -1.750142 0.377266 -2.876671 0.965623 1.588173 4.093719 2.700578 0.514011 2.114600 -0.661629 2.013818 4.829689 0.179031 2.722805 -1.244328 -2.519792 -0.861198 -0.969148 1.686263 -0.490252 0.781328 2.821249 -0.707115 2.585740 0.548492 -4.895407 -2.421922 0.360207 -0.406871 -2.132274 -1.401943 -1.820406 1.780899 0.871087 0.735534 -0.328206 3.641550 2.751869 -6.829133 0.427871 0.161465 0.741186 -0.758238 0.410511 -1.174766 -0.678610 -3.314122 -1.358253 -0.214768 1.892907 0.046298 0.067332 1.042152 2.465112 -0.789857 0.033014 2.537100 0.901313 -0.490561 3.170877 -3.801077 -1.675576 1.433498 -0.979445 -4.355038 3.493470 -0.778089 1.215351 2.366671 -2.955470 -1.913161 -1.430853 -3.041223 -2.083902 -2.336441 0.760665 -1.236689 -1.973598 0.056343 0.311692 -0.926441 2.390478 0.881057 4.028428 -0.786113 -0.756309 1.005980 1.661914 -0.094185 0.973605 0.380605 -0.022896 0.354236 -0.233659 1.837138 -0.141592 0.243949 0.964145 2.646110 -0.593771 1.145026 0.836621 1.896735 1.277617 -1.103206 -1.446760 -2.304498 1.389195 4.026210 -0.476073 0.549804 1.876026 1.681727 3.846612 -4.745940 1.414050 -1.278604 -0.274035 3.629042 -0.871983 0.895386 0.570914 -1.041233 -0.259111 -2.753015 2.440141 -0.420760 -2.485464 -0.618597 0.067974 -1.162364 0.485295 -3.761448 -1.867115 -0.589606 1.709923 -1.202433 2.029558 -0.757855 1.510545 -1.533301 1.388372 -3.854356 -1.260740 0.820067 1.115287 2.512326 1.059444 0.336461 -4.812895 0.725155 0.476492 -2.556449 -1.657856 0.402168 -3.131263 0.427290 3.107797 -0.593584 +PE-benchmarks/graph-coloring.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/graph-coloring.cpp__Graph::~Graph() = 0.401350 0.055264 0.794315 -0.674420 -0.673711 0.604123 -0.399688 -0.427309 0.467364 0.997564 0.178740 0.051593 -0.990427 0.297625 -0.237999 -1.356296 0.131195 -0.414826 0.215363 -0.527996 -0.006818 0.232121 -0.069048 0.036915 0.154695 -0.622413 0.078106 0.472675 0.602294 -0.119880 -0.667174 -0.090939 -0.375301 1.261816 -0.085868 0.292365 0.405763 1.758358 0.382361 0.729119 -1.168136 -1.637264 0.591844 0.120845 -0.110331 0.025699 0.554472 0.305485 -1.141454 -0.078557 0.713443 -0.254787 0.134795 -0.188923 0.430197 0.545881 -1.821625 0.590962 -0.324576 -0.177153 -0.488999 -0.285897 0.331099 0.607575 -0.085600 -0.506810 0.754793 0.750606 -1.089434 0.350194 -0.056846 -1.201388 1.532559 0.601537 -0.756619 0.297335 0.988158 -0.613196 0.783315 -0.675135 -1.116049 -0.216363 0.331887 -0.673541 1.180807 0.203538 0.926176 -1.827870 0.740042 -1.396773 1.184665 -0.759542 1.027415 1.134633 -0.780492 0.458980 0.751899 1.004508 0.378238 -0.687426 1.456216 0.363814 0.515990 0.241430 0.457097 0.142811 -0.769266 -0.537039 -0.829864 -1.054798 -0.135084 -0.552099 -1.685411 -0.105092 -0.504276 1.008193 0.621804 -0.017660 -0.390865 0.619492 -2.441433 -0.944635 0.076764 -0.175019 1.118723 0.707036 -0.356584 0.522513 0.467385 1.691751 -0.759605 -0.288310 -0.304114 0.363504 0.047698 0.434665 -1.383720 0.176677 0.688583 -0.784909 -1.257258 -1.012994 -0.608189 0.873030 0.073561 2.019609 2.369474 -0.337266 -1.019256 1.080374 -1.184587 0.337231 1.562850 0.270496 1.056888 -1.057389 0.311595 -0.886685 0.500233 0.151597 0.675494 0.383750 -0.011839 0.647383 0.409953 1.344347 0.127445 -0.551878 -0.380296 -1.069524 -0.023124 -0.725560 -0.474456 1.089320 -0.708221 1.141067 0.249444 1.820312 -1.076877 -1.324376 0.383229 -1.152014 -0.201580 -0.741616 -0.472771 -0.094833 0.773546 -1.359502 -0.594063 -0.580920 -0.434396 -0.043596 0.264404 0.737336 0.373664 -0.041526 0.076195 2.105971 1.404822 0.468927 -0.505675 -1.400492 0.128579 0.497394 -0.665020 -0.220603 0.096291 -0.673458 0.045380 0.826175 -0.184400 0.464312 -0.624562 -0.800891 -0.566184 -0.130942 0.559548 -0.038708 -2.088172 0.158343 0.328480 0.101323 0.553535 0.683810 1.496087 0.927087 0.874430 -0.373154 0.584475 -0.306067 0.138320 -0.070303 0.437105 0.925898 0.307524 1.139507 0.354591 0.144608 0.838229 1.015302 0.073292 1.025347 -0.060690 1.859941 -0.722512 0.161878 -0.348394 -0.431834 0.756644 1.816977 -1.230763 0.730695 0.687395 0.950478 0.023078 -1.195562 -0.054914 -0.910209 0.469836 0.166680 0.342148 -0.375168 -0.505908 1.337460 0.470723 -1.741407 0.844100 -0.093551 0.188541 0.948846 -0.428892 -0.371492 0.427857 -1.377696 0.985817 0.450674 0.655137 -0.960241 0.466795 -0.142397 0.965232 -0.654698 0.332710 -0.477286 -0.092831 0.434265 1.247497 1.282749 0.884488 -0.735852 -0.601792 0.099120 -1.255011 -0.526630 0.240322 0.721369 -0.471905 0.452409 -1.140963 -0.906755 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/graph-coloring.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/graph-coloring.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::list >::~list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::~_List_base() = 0.082991 0.077019 0.148786 -0.260417 -0.432988 -0.017330 -0.204082 -0.093907 -0.022608 -0.130651 0.066098 -0.323810 -0.309835 0.508329 -0.196834 -0.502406 -0.217826 -0.091718 -0.142823 -0.095125 -0.017877 0.215971 -0.019260 0.081056 0.094668 -0.043881 -0.126513 0.135957 0.471174 -0.299736 -0.145172 -0.028517 0.098981 0.417830 -0.057782 0.060832 0.164539 0.742777 0.255886 0.281525 -0.399494 -0.386367 0.255908 -0.000759 -0.069724 -0.374930 -0.295750 0.258494 -0.613112 0.155163 0.200314 0.140640 -0.323070 -0.113979 0.226756 0.293414 -0.831528 0.708262 0.059102 0.094461 -0.003177 -0.090881 -0.167090 -0.122806 0.138499 -0.239349 -0.021545 0.280509 -0.436095 0.140306 0.048702 -0.245413 0.839292 0.106070 -0.259005 0.216349 0.250001 -0.070002 0.297141 -0.598994 -0.379247 -0.023953 0.224760 0.141903 0.481968 0.123655 0.009204 -0.620705 0.095667 -0.539080 0.246271 -0.509448 0.182319 0.496187 -0.527126 0.255599 0.128128 -0.131478 0.336349 0.265408 0.466303 0.094151 0.116373 0.172720 0.075989 0.030389 -0.048803 -0.098079 -0.163535 -0.478206 -0.151435 0.009924 -0.831415 0.038327 -0.019703 0.487029 0.079705 0.165115 0.062211 -0.101916 -0.593408 -0.285067 0.109019 -0.070433 0.282765 0.378702 -0.170807 0.066706 -0.284404 0.510195 -0.086547 0.109711 -0.036373 0.109031 0.060280 -0.578915 -0.708011 -0.004005 0.094084 -0.148249 -0.419514 -0.341270 -0.088044 0.053902 -0.161818 0.469998 0.800514 -0.158050 -0.365961 0.602763 0.081420 0.357218 0.546020 0.055307 0.563493 -0.155814 -0.093954 -0.049363 -0.131780 -0.012167 -0.464312 0.130034 -0.199649 0.079579 0.158633 -0.256904 0.203922 -0.168791 -0.222267 -0.254370 -0.021360 -0.277898 -0.287937 0.535963 0.140318 0.529999 0.031167 0.617541 -0.193039 -0.567774 0.225267 -0.217504 0.076872 -0.131323 -0.092225 -0.040951 0.204758 -0.531655 -0.211580 0.025763 -0.117334 -0.282348 0.084650 0.468966 0.067404 0.051901 0.265327 0.373912 0.517086 -0.043379 0.156787 -0.632179 0.094409 0.197897 -0.100453 -0.521509 0.255311 -0.110532 -0.026317 0.276072 -0.098079 -0.066194 -0.058606 -0.223401 -0.150582 -0.179988 0.331869 0.049835 -0.071482 0.013555 -0.160062 0.172831 0.202998 0.247200 0.667427 0.240022 0.280627 0.127636 0.119798 -0.080593 0.357613 0.008371 0.102022 0.197842 0.188986 0.311306 0.244920 0.013738 0.333901 0.364472 -0.188169 0.396551 0.230191 0.799756 -0.220559 -0.081123 -0.154195 -0.038893 0.369671 0.827702 -0.543566 0.140738 0.289414 0.310221 0.153771 -0.513927 -0.143170 -0.192482 -0.277273 0.329665 -0.122307 -0.164409 0.087727 0.402792 -0.029216 -0.462166 0.356853 0.064957 0.090643 -0.094431 0.015247 -0.223870 0.370659 -0.565893 0.051214 0.231714 0.261342 -0.300771 -0.196896 -0.075205 0.342824 -0.061324 0.359495 -0.109598 0.089965 0.424411 0.403020 0.179310 -0.075559 -0.169256 -0.594773 0.144635 -0.133897 -0.246441 0.076863 0.062903 -0.251782 0.050464 0.017970 -0.648227 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_clear() = 0.852053 -0.019051 1.602884 -1.744744 -2.629333 0.933311 -1.399237 -0.839525 0.494337 1.285755 0.938165 -0.891218 -0.837313 2.553527 -0.819677 -2.034897 -0.248089 -0.906330 0.309898 -0.760463 0.334478 1.027256 -0.060038 0.584026 -0.263136 -0.750799 -0.421554 0.897138 1.679796 -0.430781 -1.336977 -0.304461 -0.708908 2.004596 0.170415 -0.665233 0.762908 3.872877 -0.611873 1.640757 -1.920953 -2.159832 0.935223 0.218758 -0.135515 -0.944765 -1.523978 1.125798 -1.675229 -0.222312 2.002881 0.000000 0.299837 0.176366 0.878617 0.700625 -3.549554 1.637167 -0.138458 0.107183 0.211378 -0.335111 0.091359 1.213215 -0.629065 -1.053727 1.159842 1.533003 -1.333416 -0.310546 0.038977 -2.193586 2.871446 0.823574 -1.310574 0.271306 2.220926 -1.747925 2.080952 -1.847063 -2.952836 0.061628 -0.533938 -1.898489 2.671146 -0.188012 1.598474 -3.435031 1.806739 -3.410108 1.657596 -2.068212 0.955594 2.518167 -2.208192 0.397206 1.555043 2.164433 2.387568 -0.231522 2.646188 1.343528 0.549868 1.103690 1.351355 0.777250 -1.079134 -0.203984 -1.921970 -2.648586 -0.313414 -1.280699 -3.718882 0.504424 0.347666 0.665138 0.369603 -0.072040 -0.442874 1.755684 -3.248832 -0.738676 0.380515 -0.311209 0.781978 1.985522 -1.261302 0.860014 -0.522347 3.082842 -1.768857 0.548670 0.207653 0.659058 -0.819722 -0.679069 -3.107414 1.178019 1.179924 -1.291329 -2.292300 -2.517664 -0.272251 0.524558 -0.570861 3.618712 4.421324 -1.194247 -1.977327 2.594243 0.036404 0.049874 2.971908 0.052524 2.762089 -1.016816 -0.800634 -1.759313 -0.896522 -0.559761 0.053594 1.213053 0.439963 1.254963 0.479084 -0.435640 2.158460 -0.963262 -1.745476 -1.606189 0.651320 -1.385480 -1.196389 2.482938 -0.571998 1.339237 0.971116 3.362933 -0.661289 -2.285386 1.124025 -1.774363 0.162000 -1.338380 -0.684818 0.088438 1.492308 -1.832642 -0.988360 -1.138101 -1.064834 -1.034945 0.077375 1.305180 1.253912 1.110595 1.140849 2.559900 3.499322 1.370072 0.033317 -2.777612 0.645318 1.405575 -1.302449 -1.693064 0.235484 -1.411006 0.388386 0.765613 -0.418910 0.891428 -1.810723 -1.704807 -1.402040 -0.441900 1.401671 0.965834 -3.568607 0.451603 -0.204010 1.625336 1.284525 1.242353 2.771974 2.357898 2.592705 0.253742 0.539498 0.273329 0.687297 -0.033047 1.138857 0.782923 0.917992 2.586947 1.079126 0.603187 1.909975 2.070618 0.144243 1.835658 -0.080038 3.774973 -0.461383 0.041786 -1.336963 0.016666 1.778467 4.569225 -1.054837 1.232016 1.192121 1.349821 -0.140028 -2.500582 0.449426 -1.380070 0.652760 0.365222 0.622998 -0.119437 -0.671303 1.844443 0.359057 -3.191374 1.536908 -0.059961 0.777753 1.872957 -0.088611 -0.182410 0.223795 -2.916401 2.215285 2.017628 1.076912 -1.641270 -0.166268 -0.097891 1.616802 -0.129716 1.888035 -2.026807 1.348493 1.475935 1.802518 1.056322 1.387564 -2.016979 -2.199219 1.203121 -1.927910 -0.995332 0.714584 0.970327 -1.896225 1.089397 -1.039140 -2.634114 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/graph-coloring.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::destroy(std::allocator >&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.435709 -0.117656 0.480470 -0.517183 -0.782692 0.103124 -0.343564 0.154305 0.170226 0.120636 0.275905 -0.387434 -0.404505 0.955320 -0.202963 -0.721921 0.133942 -0.426370 0.078651 -0.060203 0.267637 0.351105 0.332211 0.137891 0.012207 -0.065956 -0.434814 0.333526 1.024246 -0.452735 -0.449889 0.130494 -0.074368 0.338217 -0.285513 -0.544935 0.280976 1.167966 -0.043557 0.415506 -0.362971 -0.271901 0.405262 0.018823 -0.110759 -0.515511 -0.779398 0.514226 -0.496279 -0.323163 0.608061 0.248285 -0.022858 -0.134356 0.056401 0.462643 -1.281766 0.681208 -0.122170 0.477252 0.437051 0.076259 -0.065080 0.243643 0.175748 -0.374046 0.246696 0.170147 -0.755426 -0.271330 0.030504 -0.287094 1.120382 0.140350 -0.266377 0.198021 0.812015 -0.426699 0.703126 -0.862262 -0.799949 0.098477 -0.358967 -0.326102 0.955081 -0.352417 0.197433 -1.028258 0.507531 -0.920896 0.631947 -0.875730 0.141163 0.807724 -0.777887 0.183447 0.335242 0.316986 0.791497 0.220297 1.012889 0.428483 0.252839 0.297603 0.270289 0.036696 -0.267766 0.149132 -0.513304 -0.756549 -0.183942 -0.253978 -1.273924 0.264681 0.316204 0.239325 0.495356 -0.098650 -0.014351 0.249311 -0.624853 0.005874 0.194803 -0.080801 0.026639 0.804806 -0.520282 0.044184 -0.392368 1.065178 -0.406792 0.317324 0.424086 0.108458 -0.108712 -0.701511 -0.558057 0.306900 0.174113 -0.245265 -0.647582 -0.756539 0.289113 -0.332070 -0.295895 0.890505 1.219594 -0.065585 -0.345139 0.762734 0.308137 0.275521 0.808378 -0.205008 1.043485 -0.255809 -0.506592 -0.239986 -0.347700 -0.072426 -0.355154 0.413569 0.248220 0.206768 0.147384 -0.571206 0.602987 -0.277065 -0.434576 -0.072088 0.127512 -0.459364 -0.564219 0.739998 0.378360 0.323228 0.574975 1.069765 0.260432 -0.767988 0.567945 0.019181 0.162762 -0.403232 -0.231096 0.116868 0.129602 -0.492117 -0.265737 -0.432991 -0.189104 -0.360003 -0.030863 0.446934 0.573578 0.423664 0.468245 0.380018 0.801228 0.315222 0.274191 -1.123359 0.064307 0.383082 -0.465173 -0.666124 0.260855 -0.370954 0.308068 0.529638 -0.255734 0.100064 -0.425623 -0.831189 -0.353639 -0.173726 0.358901 0.211416 -0.768821 -0.164659 0.049714 0.533539 0.353756 0.478877 0.888639 0.418859 0.611327 0.299459 0.180498 0.453845 0.149042 -0.217463 -0.059646 0.234269 0.285512 0.476719 0.266899 0.109937 0.716132 0.557496 -0.277571 0.432424 0.224108 0.989995 0.087128 -0.294536 -0.409607 -0.110208 0.619882 1.358943 -0.248273 0.268477 0.429354 0.494391 0.186403 -0.769195 0.104281 -0.439442 0.100195 0.333767 -0.085288 0.131433 -0.024154 0.221675 0.025428 -1.021657 0.619406 -0.095425 0.292036 0.554877 0.149624 0.061215 -0.021893 -1.060713 0.252708 0.567332 0.308635 -0.309328 -0.112749 -0.049269 0.484764 -0.319963 0.711544 -0.670345 0.326492 0.578191 0.411936 0.232969 0.167993 -0.494628 -1.017799 0.303011 -0.396292 -0.321671 0.071585 -0.004483 -0.806777 0.079044 -0.044458 -0.604983 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/graph-coloring.cpp__std::allocator >::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/graph-coloring.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/graph-coloring.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/graph-coloring.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/graph-coloring.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/graph-coloring.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/graph-coloring.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/graph-coloring.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/graph-coloring.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/graph-coloring.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/graph-coloring.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/graph-coloring.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/graph-coloring.cpp___GLOBAL__sub_I_graph_coloring.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::~Graph() = 0.401350 0.055264 0.794315 -0.674420 -0.673711 0.604123 -0.399688 -0.427309 0.467364 0.997564 0.178740 0.051593 -0.990427 0.297625 -0.237999 -1.356296 0.131195 -0.414826 0.215363 -0.527996 -0.006818 0.232121 -0.069048 0.036915 0.154695 -0.622413 0.078106 0.472675 0.602294 -0.119880 -0.667174 -0.090939 -0.375301 1.261816 -0.085868 0.292365 0.405763 1.758358 0.382361 0.729119 -1.168136 -1.637264 0.591844 0.120845 -0.110331 0.025699 0.554472 0.305485 -1.141454 -0.078557 0.713443 -0.254787 0.134795 -0.188923 0.430197 0.545881 -1.821625 0.590962 -0.324576 -0.177153 -0.488999 -0.285897 0.331099 0.607575 -0.085600 -0.506810 0.754793 0.750606 -1.089434 0.350194 -0.056846 -1.201388 1.532559 0.601537 -0.756619 0.297335 0.988158 -0.613196 0.783315 -0.675135 -1.116049 -0.216363 0.331887 -0.673541 1.180807 0.203538 0.926176 -1.827870 0.740042 -1.396773 1.184665 -0.759542 1.027415 1.134633 -0.780492 0.458980 0.751899 1.004508 0.378238 -0.687426 1.456216 0.363814 0.515990 0.241430 0.457097 0.142811 -0.769266 -0.537039 -0.829864 -1.054798 -0.135084 -0.552099 -1.685411 -0.105092 -0.504276 1.008193 0.621804 -0.017660 -0.390865 0.619492 -2.441433 -0.944635 0.076764 -0.175019 1.118723 0.707036 -0.356584 0.522513 0.467385 1.691751 -0.759605 -0.288310 -0.304114 0.363504 0.047698 0.434665 -1.383720 0.176677 0.688583 -0.784909 -1.257258 -1.012994 -0.608189 0.873030 0.073561 2.019609 2.369474 -0.337266 -1.019256 1.080374 -1.184587 0.337231 1.562850 0.270496 1.056888 -1.057389 0.311595 -0.886685 0.500233 0.151597 0.675494 0.383750 -0.011839 0.647383 0.409953 1.344347 0.127445 -0.551878 -0.380296 -1.069524 -0.023124 -0.725560 -0.474456 1.089320 -0.708221 1.141067 0.249444 1.820312 -1.076877 -1.324376 0.383229 -1.152014 -0.201580 -0.741616 -0.472771 -0.094833 0.773546 -1.359502 -0.594063 -0.580920 -0.434396 -0.043596 0.264404 0.737336 0.373664 -0.041526 0.076195 2.105971 1.404822 0.468927 -0.505675 -1.400492 0.128579 0.497394 -0.665020 -0.220603 0.096291 -0.673458 0.045380 0.826175 -0.184400 0.464312 -0.624562 -0.800891 -0.566184 -0.130942 0.559548 -0.038708 -2.088172 0.158343 0.328480 0.101323 0.553535 0.683810 1.496087 0.927087 0.874430 -0.373154 0.584475 -0.306067 0.138320 -0.070303 0.437105 0.925898 0.307524 1.139507 0.354591 0.144608 0.838229 1.015302 0.073292 1.025347 -0.060690 1.859941 -0.722512 0.161878 -0.348394 -0.431834 0.756644 1.816977 -1.230763 0.730695 0.687395 0.950478 0.023078 -1.195562 -0.054914 -0.910209 0.469836 0.166680 0.342148 -0.375168 -0.505908 1.337460 0.470723 -1.741407 0.844100 -0.093551 0.188541 0.948846 -0.428892 -0.371492 0.427857 -1.377696 0.985817 0.450674 0.655137 -0.960241 0.466795 -0.142397 0.965232 -0.654698 0.332710 -0.477286 -0.092831 0.434265 1.247497 1.282749 0.884488 -0.735852 -0.601792 0.099120 -1.255011 -0.526630 0.240322 0.721369 -0.471905 0.452409 -1.140963 -0.906755 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::~list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::addEdge(int, int, int) = 0.461954 0.185578 0.171228 -0.841801 -0.981293 0.192221 -0.211977 -0.518138 0.075342 0.388372 0.737679 -0.940315 -0.257602 1.634456 -0.300075 -0.798715 0.065126 -0.264989 -0.142235 0.298821 0.011003 0.651917 -0.233977 -0.077912 0.228010 0.184462 -0.358432 0.352710 0.852062 -0.477326 -1.051155 -0.043657 0.057693 1.223334 0.088042 -0.349245 0.385670 1.745705 -0.871929 1.153458 -1.122356 -0.631467 0.875560 0.177563 -0.266572 -0.992114 -1.065868 0.664621 -0.562547 -0.498824 0.805355 -0.159799 -0.129031 -0.240228 0.468033 1.180949 -1.925454 0.998135 0.466885 0.395961 -0.014721 -0.222710 0.194735 0.095202 -0.512955 -0.794515 0.265961 0.377567 -0.557887 -0.161978 -0.536645 -1.545615 1.733913 0.352365 -0.836717 0.219909 0.158595 -1.367940 0.923784 -1.030591 -1.067408 0.094305 0.222976 -0.091151 1.078613 0.085662 0.570981 -1.808184 0.248127 -1.745657 0.688606 -1.248742 0.790240 1.414576 -1.346266 0.083025 0.336652 0.559326 1.207580 0.626187 1.336629 0.581158 0.231055 -0.166133 0.517348 0.778917 -0.572803 -0.401633 -0.601285 -1.246974 -0.108981 0.031423 -2.224500 0.301236 -0.521583 0.485192 0.163072 -0.087230 0.051626 0.870024 -1.155441 -0.585747 0.157636 -0.162122 0.757707 1.660263 -0.291212 0.189487 -0.744550 1.263727 -0.143080 0.286395 -0.298243 0.426700 -0.847303 -1.465761 -1.249011 0.241820 0.502530 -0.999579 -1.252123 -1.747942 0.115550 -0.002595 -0.558594 1.110356 2.088311 -0.681102 -0.992254 1.377718 0.597785 0.199044 1.521679 -0.173338 2.097967 -1.082036 0.372429 -0.192857 -0.146487 -0.400355 -0.144631 0.128610 -0.455898 0.067398 -0.059805 -1.668896 1.627878 0.153787 -0.465097 -0.143950 0.170994 -0.415158 -0.930183 1.647612 -0.181556 0.918548 -0.067741 1.750448 -0.656186 -1.098234 0.913256 -0.297734 -0.067130 -0.780185 -0.649727 0.271940 0.980419 -0.930842 -0.372398 -0.109777 -0.185600 -0.659084 0.491568 0.520214 0.140770 0.092726 0.205850 0.620996 1.299808 -0.058318 0.563361 -1.371784 0.301374 0.813530 -0.741771 -1.586599 0.224449 -1.073475 -0.015662 0.298910 -0.399193 0.375887 -0.873430 -0.940539 -0.047942 -0.275066 0.841522 0.029704 -0.988073 0.371966 -0.728126 0.494809 0.610644 1.092985 1.216162 1.170642 0.773473 -0.109402 0.257310 -0.201164 -0.177670 0.228366 0.116642 0.503909 0.656209 0.999814 0.438399 0.231470 0.647189 0.321912 0.060321 1.187792 0.705851 1.799917 0.113354 -0.099463 -0.099667 -0.641361 1.047468 2.209757 -0.943987 -0.007534 0.489535 0.431668 -0.374330 -0.976679 -0.026579 -0.444674 -0.954637 0.544536 -0.202985 0.022612 -0.365891 1.525564 -0.070904 -1.728314 0.846888 -0.041217 0.445766 0.624232 -0.083098 0.228639 0.470003 -0.955905 0.826542 0.820610 1.056243 -0.710850 -0.652082 -0.160432 0.781777 0.437722 0.513149 -1.346561 0.865332 0.922475 1.262313 0.596902 0.522401 -0.730068 -0.500139 0.113323 -0.382372 -0.295376 -0.368166 0.609915 -0.731871 0.084887 -0.958057 -0.763966 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::AdjListNode(int, int) = 0.004606 -0.053642 0.295549 -0.770490 -0.624338 0.061374 0.224503 -0.181662 0.159647 -0.313654 0.598267 -0.590627 -0.409889 1.111076 0.048871 -0.680119 0.194629 -0.191454 -0.193733 0.325441 0.102886 0.398776 -0.109634 -0.022905 0.190066 0.083436 -0.228883 0.629037 0.701750 -0.400033 -0.678351 -0.024093 -0.002627 0.866157 -0.041307 -0.012143 0.277936 1.352251 -0.732761 1.112768 -0.646546 -0.248948 0.740784 0.056155 -0.524526 -0.998571 -1.024907 0.435777 -0.666535 -0.467162 0.729572 0.011558 0.051017 -0.234204 0.429238 1.035510 -1.337688 0.414521 0.328595 0.255007 0.136455 -0.158587 -0.140266 -0.002219 -0.490919 -0.503597 0.223190 -0.091610 -0.373597 -0.128007 -0.249048 -1.058742 1.608447 0.320964 -0.491788 0.301488 0.374842 -1.102469 0.715717 -0.319852 -0.742894 0.002880 0.036559 -0.132996 1.016571 -0.301460 0.297984 -1.239039 -0.177770 -1.184067 0.516760 -1.134004 0.440456 1.007693 -0.972997 0.242794 0.211912 0.213588 0.477535 0.333168 0.900414 0.440300 0.306996 -0.088551 0.677847 0.339376 -0.464263 -0.501732 -0.641254 -0.880718 -0.006138 -0.288718 -1.824613 0.177073 -0.244274 0.135966 0.175131 -0.013854 0.064457 0.656213 -0.314706 0.349045 0.290840 -0.157839 0.266528 1.381771 -0.262190 -0.044573 -0.494219 0.927450 -0.153008 0.536332 -0.276382 0.296229 -0.326210 -0.958636 -0.570204 0.019672 0.261328 -0.537355 -0.893760 -1.048381 0.040949 0.106886 -0.314367 0.504402 1.520648 -0.427668 -0.736768 0.970786 0.848111 0.398729 0.708024 -0.030147 1.389735 -0.659395 0.141091 -0.433933 -0.200162 -0.220526 0.218951 0.171953 -0.341294 0.188540 -0.159399 -1.664374 1.736778 -0.047324 -0.268965 0.326555 0.031409 -0.493224 -0.989506 1.383962 0.226409 0.859194 0.006524 1.228949 -0.361213 -0.798742 0.590778 0.200999 0.067496 -0.947007 -0.531966 0.372998 0.515093 -0.533715 -0.374548 -0.380072 -0.090452 -0.360566 0.299250 0.196191 0.067585 -0.014074 0.261746 0.118890 0.965973 -0.028189 0.325251 -1.081502 0.308205 0.465605 -0.469800 -1.028978 0.310938 -0.538321 -0.036713 0.120220 -0.196209 0.241208 -0.607986 -0.696730 0.023146 -0.251609 0.308765 0.016029 -1.392163 0.119499 -0.172103 0.267002 0.538668 0.659301 1.148067 0.698924 0.519815 0.023056 0.140654 0.112371 -0.575795 0.007340 -0.119733 0.468723 0.407008 0.740752 0.360611 0.061934 0.581291 0.440593 0.179576 0.746667 0.806712 1.238064 0.690916 -0.394820 0.098936 -0.416724 0.746014 1.494730 -0.267288 0.203204 0.477556 0.649951 -0.311930 -1.027212 -0.099255 -0.334370 -0.622516 0.915289 -0.345929 -0.130815 -0.129863 1.058477 -0.074284 -1.295618 0.290318 -0.001817 0.372340 0.421027 -0.004430 0.214426 0.423932 -0.787201 0.764884 0.363219 0.659254 -0.482692 -0.459254 -0.058586 0.271136 0.440319 0.410709 -1.075855 0.344730 0.365462 1.000828 0.453850 0.565389 -0.406743 -0.178681 0.071226 -0.329348 -0.206042 -0.330859 0.300298 -0.650118 -0.109187 -1.010284 -0.590642 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::push_back(AdjListNode const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.369127 0.857195 1.724223 -1.797524 -3.073332 1.324323 -2.228763 -1.973878 0.304908 2.766790 1.539367 -2.099889 -1.268325 3.673020 -1.630163 -2.785285 -0.528548 -0.436731 0.153852 -1.588545 -0.315516 1.168591 -0.678858 0.001075 0.236383 -0.924242 -0.232437 0.914998 1.959004 -0.398233 -2.109421 -0.317539 -0.245990 3.904678 0.610297 -0.694774 1.197457 5.278097 -1.368050 2.215859 -3.621187 -3.844113 2.214459 0.731146 0.010700 -0.732573 -1.434475 1.786803 -3.429540 0.185294 2.214910 -0.745809 -0.088857 -0.351703 1.189023 2.199369 -6.058764 3.544905 0.250619 -0.349766 -1.165175 -0.711314 0.917641 0.986833 -0.280808 -1.967532 1.333773 2.819161 -1.943179 0.140325 -1.077258 -4.160631 3.823353 0.851717 -2.080705 0.464435 1.418534 -2.064688 2.513778 -3.112466 -3.657463 -0.274269 0.985454 -1.651250 3.066300 1.553155 2.192984 -5.486421 1.651167 -5.247532 2.644749 -2.556120 2.666490 3.656808 -3.633080 0.636608 1.907492 1.870798 3.128358 0.328077 3.899806 0.940933 0.552027 0.704363 1.354858 1.975213 -1.814152 -0.866583 -2.182351 -3.738160 -0.604608 -0.564450 -4.662156 0.430537 -1.771250 1.913381 0.363590 -0.198742 -0.679058 2.086688 -5.399991 -2.832415 0.133492 -0.493221 3.064061 3.050262 -0.930632 1.644920 -0.649333 4.152259 -1.686006 -0.438287 -0.832974 1.264737 -0.909521 -2.795678 -5.616608 1.428397 2.146978 -2.758350 -3.851300 -4.403707 -0.699557 0.814233 -1.060310 5.249090 6.717725 -1.880921 -3.201740 3.830913 -0.844549 0.624529 5.678219 0.321174 5.303920 -3.058517 0.774742 -1.450259 -0.310323 -0.410472 -0.666046 0.553481 -0.481368 1.362733 1.376741 0.405018 2.145094 -0.737516 -1.885562 -2.810470 1.067868 -1.210361 -1.449441 3.845890 -1.039661 2.295200 0.453842 5.517358 -2.780273 -4.182149 1.923896 -3.151972 -0.453600 -0.988773 -1.424201 -0.384078 3.073430 -3.366257 -1.607910 -0.910756 -0.946161 -1.394813 1.052962 2.894415 1.001478 0.675481 0.475885 3.646842 4.497218 0.857293 0.658992 -4.203362 0.380744 2.620618 -1.514419 -3.808434 0.478093 -2.758396 0.074621 1.493936 -0.733983 1.508586 -2.540789 -2.038552 -1.277634 -0.795905 2.857095 0.555935 -3.214104 1.514946 -1.644151 1.191040 2.056221 2.878978 3.866962 3.599020 2.915961 -0.170877 0.879885 -1.261243 1.712410 0.617602 1.787868 1.973034 1.658502 3.183761 1.261009 0.890856 1.937311 1.704243 -0.224133 3.406447 0.434411 5.694757 -1.977931 1.198850 -1.429669 -1.033707 2.712766 6.503380 -3.484624 0.243665 1.670147 1.325983 -0.052053 -3.558471 0.072764 -1.847507 -0.669600 0.492202 1.053341 -0.425652 -1.513877 4.325740 0.540197 -4.870883 3.370755 0.019553 0.706851 1.812329 -0.861679 -0.805184 1.214654 -3.553009 2.383785 2.798983 2.766192 -2.948291 -0.174152 -0.548805 3.369046 0.255582 1.550387 -3.536260 2.126167 2.739318 3.077096 2.285015 1.747080 -2.798968 -2.800533 0.559755 -2.566832 -1.250571 0.578800 2.157419 -1.924090 1.825583 -1.746566 -3.215853 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getV() = 0.157631 -0.043255 0.174549 -0.317992 -0.254535 0.095494 0.013429 -0.158147 0.052302 0.022142 0.173777 -0.176580 -0.048246 0.558142 -0.074100 -0.240371 0.032853 -0.163945 -0.072132 0.154542 0.041441 0.176004 -0.068841 -0.019225 0.009049 0.020768 -0.008573 0.111435 -0.008807 -0.150184 -0.323737 -0.082416 -0.026759 0.387247 0.050236 0.083833 0.033240 0.571538 -0.184727 0.635422 -0.400082 -0.276392 0.198614 -0.004360 -0.020928 -0.403218 -0.345388 0.195155 -0.002744 -0.249519 0.255116 -0.019761 -0.078487 -0.081332 0.166191 0.247701 -0.503702 0.148199 0.113194 0.065601 0.000439 -0.105300 0.016601 0.052376 -0.276663 -0.209258 0.119690 0.144365 -0.205929 0.044084 -0.113248 -0.489781 0.590112 0.183003 -0.239222 0.064114 0.199998 -0.402829 0.328133 -0.302267 -0.369525 -0.008453 -0.041411 -0.097983 0.395138 0.011840 0.237135 -0.564936 0.214536 -0.557382 0.232114 -0.447270 0.172787 0.427713 -0.280130 0.084664 0.172028 0.369889 0.298185 0.187035 0.352613 0.307331 0.054502 -0.015928 0.357588 0.146484 -0.195348 -0.221758 -0.249906 -0.407207 0.020853 -0.141353 -0.708349 0.078080 -0.004011 0.166606 -0.043559 0.118257 0.033848 0.205849 -0.550086 -0.020000 0.135898 -0.059510 0.151476 0.417902 -0.157516 0.064982 -0.232272 0.385656 -0.120422 0.145497 -0.054387 0.127017 -0.307116 -0.225779 -0.307574 0.075089 0.154225 -0.246390 -0.401783 -0.558271 -0.044101 0.281113 -0.155434 0.430544 0.652755 -0.202869 -0.308516 0.377262 0.334970 0.009187 0.343476 0.027159 0.528280 -0.261489 0.039976 -0.118740 -0.058120 -0.107517 -0.021031 0.083487 -0.134554 0.167395 -0.091794 -0.688413 0.768559 -0.081344 -0.156887 -0.014372 -0.000116 -0.213549 -0.269348 0.522694 -0.124399 0.347639 -0.052521 0.522712 -0.190833 -0.195627 0.172866 -0.273230 0.016574 -0.371624 -0.109220 0.007034 0.350953 -0.364198 -0.169120 -0.028599 -0.224664 -0.129846 0.160726 -0.053056 0.031849 0.043635 0.110789 0.329289 0.432700 0.040384 0.083105 -0.393219 0.147016 0.185224 -0.179729 -0.366131 0.056413 -0.265994 -0.009559 -0.037741 -0.049460 0.074462 -0.307767 -0.259764 -0.034155 -0.124614 0.121560 0.035946 -0.375823 -0.015611 -0.050763 0.255755 0.184824 0.282708 0.436669 0.368538 0.292001 -0.058366 0.046659 -0.024347 -0.216366 0.049001 0.046327 0.130767 0.152942 0.322518 0.143091 0.041677 0.283029 0.220780 0.127034 0.339559 0.225671 0.525554 0.115455 -0.080545 -0.011520 -0.126956 0.327187 0.650641 -0.236076 0.182676 0.175367 0.135284 -0.188522 -0.197870 -0.020071 -0.137287 -0.263742 0.245376 0.012557 0.003715 -0.090678 0.452057 -0.006189 -0.548252 0.091626 0.010593 0.163683 0.344389 -0.035699 0.171939 0.138936 -0.228014 0.331127 0.195531 0.267341 -0.256271 -0.217445 -0.022838 0.118954 0.233750 0.193497 -0.331314 0.261534 0.205219 0.429476 0.089583 0.161374 -0.265728 -0.036361 0.080522 -0.168832 -0.096739 -0.020589 0.229037 -0.139666 -0.088435 -0.429837 -0.289499 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::longestPath(int) = 4.963490 1.139169 5.844114 -5.394415 -2.414436 3.654880 -2.951857 -5.147367 2.206016 14.014862 2.939266 -2.504355 -7.687259 7.814758 -4.285572 -7.879596 4.334923 1.597159 3.906492 -4.191100 -0.233332 2.647412 0.549485 -3.633511 3.823392 -4.872017 0.071251 5.202440 5.258567 1.374041 -5.509531 -0.708106 0.207019 12.732976 -0.623941 0.128509 0.815948 13.654345 -7.290636 10.961631 -10.857407 -12.632695 11.016762 2.696970 -0.180559 -2.835601 -0.537799 3.657387 -7.844131 -6.268878 3.349864 -4.494191 3.406191 -5.227016 0.261662 9.762097 -16.816132 3.417369 -0.948961 -3.299776 -5.096138 -1.511993 5.220200 2.900137 -2.868667 -7.067129 3.151899 4.532867 -9.139171 0.805061 -5.716496 -10.969111 9.186420 3.013630 -6.312039 2.686001 3.602859 -7.596933 5.499815 -6.304724 -7.729355 -3.605144 2.359180 -3.521681 6.768696 5.543257 9.799842 -17.103800 3.327062 -13.030275 11.601795 -6.253728 12.001989 10.239284 -8.059470 4.456909 6.411623 8.391421 3.681392 -2.562626 14.263213 4.544888 2.122108 -0.614014 5.719681 6.182966 -8.970932 -6.541860 -7.322543 -7.858322 0.794711 -4.150173 -12.923860 -1.144274 -9.848939 4.157336 5.396398 -3.680027 -4.187554 8.988114 -20.844982 -6.426938 1.052167 -1.810175 9.499124 8.390610 0.649314 1.943148 3.189746 12.761044 -5.133035 -4.909929 -1.938464 5.003826 -2.649720 -4.267308 -7.274041 0.435690 4.457826 -10.693461 -12.274706 -15.350429 -3.237352 5.583138 -1.330967 12.761131 20.492758 -2.897758 -7.881416 7.744950 -7.845705 1.031492 15.229240 2.455102 15.991465 -13.628713 4.457760 -4.512493 3.168951 5.123902 10.738622 -0.646364 -2.719472 4.824556 2.776657 2.488672 1.799976 -3.611476 -0.872700 -8.442802 1.022878 -3.858026 -3.198118 10.218390 -11.332655 8.362364 -4.471922 17.028744 -8.710748 -12.749596 4.638795 -12.540971 -4.753287 -6.892891 -3.686947 -2.307789 8.775217 -12.190304 -6.028882 -5.364601 -1.657256 0.278608 7.598578 -2.396166 2.239341 -1.774449 -3.894042 14.879102 7.419528 0.553744 0.398228 -11.505110 -0.192065 7.358171 -3.869969 -12.472341 0.988848 -9.570504 -0.140906 4.741796 -3.353203 5.983458 -7.811977 -6.343149 -1.773501 -3.426726 3.436629 -3.849303 -13.054830 4.024108 -0.733418 0.282702 6.700516 11.967567 11.002127 8.813596 2.624856 -1.489287 3.654536 -5.862959 -4.028624 4.495905 2.539834 6.309280 4.437975 9.067351 2.090222 3.773850 6.714433 3.392021 2.231718 10.981403 1.537754 13.174818 -3.573381 1.837457 0.329068 -6.752142 7.088644 14.856374 -7.330491 -0.845923 5.889821 1.962187 -1.404138 -7.565130 1.245743 -5.663896 -2.750154 5.817713 5.481959 0.197340 -6.569152 14.729527 2.041349 -18.882966 10.925781 -0.996705 1.413712 8.555710 -4.769408 1.258020 3.645641 -5.663986 5.467017 4.934985 9.804819 -10.993687 3.505336 -1.573782 9.324915 4.968318 -0.398415 -17.569677 2.064675 3.726932 12.007915 8.357804 10.770026 -6.733668 -1.841347 -1.857877 -6.993906 -2.594664 -3.308911 7.173251 -3.288053 2.225873 -11.852920 -0.118623 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::stack >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::top() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::operator->() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode::getWeight() = 0.157631 -0.043255 0.174549 -0.317992 -0.254535 0.095494 0.013429 -0.158147 0.052302 0.022142 0.173777 -0.176580 -0.048246 0.558142 -0.074100 -0.240371 0.032853 -0.163945 -0.072132 0.154542 0.041441 0.176004 -0.068841 -0.019225 0.009049 0.020768 -0.008573 0.111435 -0.008807 -0.150184 -0.323737 -0.082416 -0.026759 0.387247 0.050236 0.083833 0.033240 0.571538 -0.184727 0.635422 -0.400082 -0.276392 0.198614 -0.004360 -0.020928 -0.403218 -0.345388 0.195155 -0.002744 -0.249519 0.255116 -0.019761 -0.078487 -0.081332 0.166191 0.247701 -0.503702 0.148199 0.113194 0.065601 0.000439 -0.105300 0.016601 0.052376 -0.276663 -0.209258 0.119690 0.144365 -0.205929 0.044084 -0.113248 -0.489781 0.590112 0.183003 -0.239222 0.064114 0.199998 -0.402829 0.328133 -0.302267 -0.369525 -0.008453 -0.041411 -0.097983 0.395138 0.011840 0.237135 -0.564936 0.214536 -0.557382 0.232114 -0.447270 0.172787 0.427713 -0.280130 0.084664 0.172028 0.369889 0.298185 0.187035 0.352613 0.307331 0.054502 -0.015928 0.357588 0.146484 -0.195348 -0.221758 -0.249906 -0.407207 0.020853 -0.141353 -0.708349 0.078080 -0.004011 0.166606 -0.043559 0.118257 0.033848 0.205849 -0.550086 -0.020000 0.135898 -0.059510 0.151476 0.417902 -0.157516 0.064982 -0.232272 0.385656 -0.120422 0.145497 -0.054387 0.127017 -0.307116 -0.225779 -0.307574 0.075089 0.154225 -0.246390 -0.401783 -0.558271 -0.044101 0.281113 -0.155434 0.430544 0.652755 -0.202869 -0.308516 0.377262 0.334970 0.009187 0.343476 0.027159 0.528280 -0.261489 0.039976 -0.118740 -0.058120 -0.107517 -0.021031 0.083487 -0.134554 0.167395 -0.091794 -0.688413 0.768559 -0.081344 -0.156887 -0.014372 -0.000116 -0.213549 -0.269348 0.522694 -0.124399 0.347639 -0.052521 0.522712 -0.190833 -0.195627 0.172866 -0.273230 0.016574 -0.371624 -0.109220 0.007034 0.350953 -0.364198 -0.169120 -0.028599 -0.224664 -0.129846 0.160726 -0.053056 0.031849 0.043635 0.110789 0.329289 0.432700 0.040384 0.083105 -0.393219 0.147016 0.185224 -0.179729 -0.366131 0.056413 -0.265994 -0.009559 -0.037741 -0.049460 0.074462 -0.307767 -0.259764 -0.034155 -0.124614 0.121560 0.035946 -0.375823 -0.015611 -0.050763 0.255755 0.184824 0.282708 0.436669 0.368538 0.292001 -0.058366 0.046659 -0.024347 -0.216366 0.049001 0.046327 0.130767 0.152942 0.322518 0.143091 0.041677 0.283029 0.220780 0.127034 0.339559 0.225671 0.525554 0.115455 -0.080545 -0.011520 -0.126956 0.327187 0.650641 -0.236076 0.182676 0.175367 0.135284 -0.188522 -0.197870 -0.020071 -0.137287 -0.263742 0.245376 0.012557 0.003715 -0.090678 0.452057 -0.006189 -0.548252 0.091626 0.010593 0.163683 0.344389 -0.035699 0.171939 0.138936 -0.228014 0.331127 0.195531 0.267341 -0.256271 -0.217445 -0.022838 0.118954 0.233750 0.193497 -0.331314 0.261534 0.205219 0.429476 0.089583 0.161374 -0.265728 -0.036361 0.080522 -0.168832 -0.096739 -0.020589 0.229037 -0.139666 -0.088435 -0.429837 -0.289499 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::~stack() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 2.231783 0.413650 2.262322 -0.906671 0.352934 0.193752 -2.842263 0.643218 1.681237 -0.252211 -0.748655 0.291147 -1.488174 2.275236 -3.402357 -1.151412 1.622061 -0.142394 2.965339 -0.560601 1.520274 0.529452 2.293067 0.562513 0.899265 -1.338358 -1.001676 1.134126 4.587315 -0.887039 -1.808674 0.871640 1.209220 1.485072 -1.398951 -2.266124 1.710337 2.666049 1.499929 1.020354 1.133973 0.636298 0.677497 1.045571 -1.547231 -1.961492 -2.645532 -0.577302 -3.305250 0.189537 1.296112 -0.452149 -0.434969 -0.048607 -0.235542 2.306363 -4.537868 1.713700 -1.815927 3.311838 3.651396 -0.010146 -0.227034 -0.904409 3.187913 -0.271438 0.451833 1.098006 -4.567116 0.106008 0.492270 1.172449 3.662917 0.229845 -1.619885 1.011380 3.803908 -1.794751 0.227891 -4.399334 -0.807866 -0.051239 -0.963527 1.892243 2.948053 -0.901368 -0.546739 -1.506987 -0.179135 -0.155255 2.033029 -2.546147 1.319878 1.461651 -3.535764 0.704655 1.063944 0.429039 0.715778 0.178869 4.354039 2.587170 -1.528664 -0.838982 0.596134 -0.567280 0.652009 1.178438 -0.445087 -0.311882 -1.726420 -0.444059 -4.474704 -1.750435 -0.808253 1.297657 1.829173 -1.175879 -1.340565 -0.025391 -2.503560 -1.629236 -0.772742 -0.086195 -0.397525 2.156698 0.118618 -0.894957 0.595161 3.520241 -0.823881 -2.469310 1.216292 -1.017405 0.289482 -3.631463 -1.602588 -2.144067 -0.432211 -0.801229 -2.318356 -1.746264 0.063637 -2.332559 0.986665 1.200064 3.133560 2.204321 0.424196 1.505732 0.006141 1.301768 4.556234 0.156279 2.443436 -1.351779 -1.371836 -0.810155 -0.583853 0.653897 -0.757967 0.409054 2.457231 -0.603030 1.914692 -0.383747 -3.238407 -1.930994 0.258462 -0.195316 -1.845815 -0.995401 -1.538563 2.016504 0.301417 0.299347 -0.618703 3.099706 1.665772 -5.412139 0.158827 -0.045436 1.048960 -0.866772 0.494361 -0.944951 0.418341 -2.828546 -1.251363 0.377689 1.305739 0.506017 0.201857 0.774804 1.613476 -0.938020 0.026731 2.147077 1.248688 -0.345029 3.081452 -2.803625 -1.200366 1.401518 -0.998494 -3.870950 2.926994 -0.993001 0.883693 1.000814 -2.342262 -1.824044 -1.694985 -2.971004 -1.793404 -2.143980 0.764817 -0.870695 -1.897916 0.159989 -0.253881 -0.769712 1.920168 0.535939 3.225182 -0.405050 -0.088225 -0.149137 1.464333 -0.474145 0.647034 0.703079 0.397064 0.043859 -0.407363 1.963290 -0.313797 -0.200274 0.236603 2.036976 -0.059556 0.778870 1.160824 1.481947 1.326326 -0.583239 -1.438730 -2.357895 1.254711 3.809042 -0.139111 0.708989 1.308820 1.541928 3.008822 -3.988253 1.039997 -0.903985 -0.682538 2.823050 -0.638251 0.716946 0.293697 -0.406175 -0.274716 -2.203719 1.326781 -0.454843 -2.239423 -0.061524 -0.191852 -0.774000 0.202453 -2.785011 -0.905410 -0.856964 1.669557 -0.639317 1.093505 -0.811778 0.772787 -0.907739 0.675953 -3.221868 -0.402097 0.976177 1.406925 2.372319 1.034313 0.072429 -3.249218 0.405552 0.280279 -1.918363 -1.360506 1.105583 -2.705332 0.148607 2.262746 -0.691686 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::~_List_base() = 0.082991 0.077019 0.148786 -0.260417 -0.432988 -0.017330 -0.204082 -0.093907 -0.022608 -0.130651 0.066098 -0.323810 -0.309835 0.508329 -0.196834 -0.502406 -0.217826 -0.091718 -0.142823 -0.095125 -0.017877 0.215971 -0.019260 0.081056 0.094668 -0.043881 -0.126513 0.135957 0.471174 -0.299736 -0.145172 -0.028517 0.098981 0.417830 -0.057782 0.060832 0.164539 0.742777 0.255886 0.281525 -0.399494 -0.386367 0.255908 -0.000759 -0.069724 -0.374930 -0.295750 0.258494 -0.613112 0.155163 0.200314 0.140640 -0.323070 -0.113979 0.226756 0.293414 -0.831528 0.708262 0.059102 0.094461 -0.003177 -0.090881 -0.167090 -0.122806 0.138499 -0.239349 -0.021545 0.280509 -0.436095 0.140306 0.048702 -0.245413 0.839292 0.106070 -0.259005 0.216349 0.250001 -0.070002 0.297141 -0.598994 -0.379247 -0.023953 0.224760 0.141903 0.481968 0.123655 0.009204 -0.620705 0.095667 -0.539080 0.246271 -0.509448 0.182319 0.496187 -0.527126 0.255599 0.128128 -0.131478 0.336349 0.265408 0.466303 0.094151 0.116373 0.172720 0.075989 0.030389 -0.048803 -0.098079 -0.163535 -0.478206 -0.151435 0.009924 -0.831415 0.038327 -0.019703 0.487029 0.079705 0.165115 0.062211 -0.101916 -0.593408 -0.285067 0.109019 -0.070433 0.282765 0.378702 -0.170807 0.066706 -0.284404 0.510195 -0.086547 0.109711 -0.036373 0.109031 0.060280 -0.578915 -0.708011 -0.004005 0.094084 -0.148249 -0.419514 -0.341270 -0.088044 0.053902 -0.161818 0.469998 0.800514 -0.158050 -0.365961 0.602763 0.081420 0.357218 0.546020 0.055307 0.563493 -0.155814 -0.093954 -0.049363 -0.131780 -0.012167 -0.464312 0.130034 -0.199649 0.079579 0.158633 -0.256904 0.203922 -0.168791 -0.222267 -0.254370 -0.021360 -0.277898 -0.287937 0.535963 0.140318 0.529999 0.031167 0.617541 -0.193039 -0.567774 0.225267 -0.217504 0.076872 -0.131323 -0.092225 -0.040951 0.204758 -0.531655 -0.211580 0.025763 -0.117334 -0.282348 0.084650 0.468966 0.067404 0.051901 0.265327 0.373912 0.517086 -0.043379 0.156787 -0.632179 0.094409 0.197897 -0.100453 -0.521509 0.255311 -0.110532 -0.026317 0.276072 -0.098079 -0.066194 -0.058606 -0.223401 -0.150582 -0.179988 0.331869 0.049835 -0.071482 0.013555 -0.160062 0.172831 0.202998 0.247200 0.667427 0.240022 0.280627 0.127636 0.119798 -0.080593 0.357613 0.008371 0.102022 0.197842 0.188986 0.311306 0.244920 0.013738 0.333901 0.364472 -0.188169 0.396551 0.230191 0.799756 -0.220559 -0.081123 -0.154195 -0.038893 0.369671 0.827702 -0.543566 0.140738 0.289414 0.310221 0.153771 -0.513927 -0.143170 -0.192482 -0.277273 0.329665 -0.122307 -0.164409 0.087727 0.402792 -0.029216 -0.462166 0.356853 0.064957 0.090643 -0.094431 0.015247 -0.223870 0.370659 -0.565893 0.051214 0.231714 0.261342 -0.300771 -0.196896 -0.075205 0.342824 -0.061324 0.359495 -0.109598 0.089965 0.424411 0.403020 0.179310 -0.075559 -0.169256 -0.594773 0.144635 -0.133897 -0.246441 0.076863 0.062903 -0.251782 0.050464 0.017970 -0.648227 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_clear() = 0.852053 -0.019051 1.602884 -1.744744 -2.629333 0.933311 -1.399237 -0.839525 0.494337 1.285755 0.938165 -0.891218 -0.837313 2.553527 -0.819677 -2.034897 -0.248089 -0.906330 0.309898 -0.760463 0.334478 1.027256 -0.060038 0.584026 -0.263136 -0.750799 -0.421554 0.897138 1.679796 -0.430781 -1.336977 -0.304461 -0.708908 2.004596 0.170415 -0.665233 0.762908 3.872877 -0.611873 1.640757 -1.920953 -2.159832 0.935223 0.218758 -0.135515 -0.944765 -1.523978 1.125798 -1.675229 -0.222312 2.002881 0.000000 0.299837 0.176366 0.878617 0.700625 -3.549554 1.637167 -0.138458 0.107183 0.211378 -0.335111 0.091359 1.213215 -0.629065 -1.053727 1.159842 1.533003 -1.333416 -0.310546 0.038977 -2.193586 2.871446 0.823574 -1.310574 0.271306 2.220926 -1.747925 2.080952 -1.847063 -2.952836 0.061628 -0.533938 -1.898489 2.671146 -0.188012 1.598474 -3.435031 1.806739 -3.410108 1.657596 -2.068212 0.955594 2.518167 -2.208192 0.397206 1.555043 2.164433 2.387568 -0.231522 2.646188 1.343528 0.549868 1.103690 1.351355 0.777250 -1.079134 -0.203984 -1.921970 -2.648586 -0.313414 -1.280699 -3.718882 0.504424 0.347666 0.665138 0.369603 -0.072040 -0.442874 1.755684 -3.248832 -0.738676 0.380515 -0.311209 0.781978 1.985522 -1.261302 0.860014 -0.522347 3.082842 -1.768857 0.548670 0.207653 0.659058 -0.819722 -0.679069 -3.107414 1.178019 1.179924 -1.291329 -2.292300 -2.517664 -0.272251 0.524558 -0.570861 3.618712 4.421324 -1.194247 -1.977327 2.594243 0.036404 0.049874 2.971908 0.052524 2.762089 -1.016816 -0.800634 -1.759313 -0.896522 -0.559761 0.053594 1.213053 0.439963 1.254963 0.479084 -0.435640 2.158460 -0.963262 -1.745476 -1.606189 0.651320 -1.385480 -1.196389 2.482938 -0.571998 1.339237 0.971116 3.362933 -0.661289 -2.285386 1.124025 -1.774363 0.162000 -1.338380 -0.684818 0.088438 1.492308 -1.832642 -0.988360 -1.138101 -1.064834 -1.034945 0.077375 1.305180 1.253912 1.110595 1.140849 2.559900 3.499322 1.370072 0.033317 -2.777612 0.645318 1.405575 -1.302449 -1.693064 0.235484 -1.411006 0.388386 0.765613 -0.418910 0.891428 -1.810723 -1.704807 -1.402040 -0.441900 1.401671 0.965834 -3.568607 0.451603 -0.204010 1.625336 1.284525 1.242353 2.771974 2.357898 2.592705 0.253742 0.539498 0.273329 0.687297 -0.033047 1.138857 0.782923 0.917992 2.586947 1.079126 0.603187 1.909975 2.070618 0.144243 1.835658 -0.080038 3.774973 -0.461383 0.041786 -1.336963 0.016666 1.778467 4.569225 -1.054837 1.232016 1.192121 1.349821 -0.140028 -2.500582 0.449426 -1.380070 0.652760 0.365222 0.622998 -0.119437 -0.671303 1.844443 0.359057 -3.191374 1.536908 -0.059961 0.777753 1.872957 -0.088611 -0.182410 0.223795 -2.916401 2.215285 2.017628 1.076912 -1.641270 -0.166268 -0.097891 1.616802 -0.129716 1.888035 -2.026807 1.348493 1.475935 1.802518 1.056322 1.387564 -2.016979 -2.199219 1.203121 -1.927910 -0.995332 0.714584 0.970327 -1.896225 1.089397 -1.039140 -2.634114 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_List_impl::~_List_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::destroy(std::allocator >&, AdjListNode*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_put_node(std::_List_node*) = 0.435709 -0.117656 0.480470 -0.517183 -0.782692 0.103124 -0.343564 0.154305 0.170226 0.120636 0.275905 -0.387434 -0.404505 0.955320 -0.202963 -0.721921 0.133942 -0.426370 0.078651 -0.060203 0.267637 0.351105 0.332211 0.137891 0.012207 -0.065956 -0.434814 0.333526 1.024246 -0.452735 -0.449889 0.130494 -0.074368 0.338217 -0.285513 -0.544935 0.280976 1.167966 -0.043557 0.415506 -0.362971 -0.271901 0.405262 0.018823 -0.110759 -0.515511 -0.779398 0.514226 -0.496279 -0.323163 0.608061 0.248285 -0.022858 -0.134356 0.056401 0.462643 -1.281766 0.681208 -0.122170 0.477252 0.437051 0.076259 -0.065080 0.243643 0.175748 -0.374046 0.246696 0.170147 -0.755426 -0.271330 0.030504 -0.287094 1.120382 0.140350 -0.266377 0.198021 0.812015 -0.426699 0.703126 -0.862262 -0.799949 0.098477 -0.358967 -0.326102 0.955081 -0.352417 0.197433 -1.028258 0.507531 -0.920896 0.631947 -0.875730 0.141163 0.807724 -0.777887 0.183447 0.335242 0.316986 0.791497 0.220297 1.012889 0.428483 0.252839 0.297603 0.270289 0.036696 -0.267766 0.149132 -0.513304 -0.756549 -0.183942 -0.253978 -1.273924 0.264681 0.316204 0.239325 0.495356 -0.098650 -0.014351 0.249311 -0.624853 0.005874 0.194803 -0.080801 0.026639 0.804806 -0.520282 0.044184 -0.392368 1.065178 -0.406792 0.317324 0.424086 0.108458 -0.108712 -0.701511 -0.558057 0.306900 0.174113 -0.245265 -0.647582 -0.756539 0.289113 -0.332070 -0.295895 0.890505 1.219594 -0.065585 -0.345139 0.762734 0.308137 0.275521 0.808378 -0.205008 1.043485 -0.255809 -0.506592 -0.239986 -0.347700 -0.072426 -0.355154 0.413569 0.248220 0.206768 0.147384 -0.571206 0.602987 -0.277065 -0.434576 -0.072088 0.127512 -0.459364 -0.564219 0.739998 0.378360 0.323228 0.574975 1.069765 0.260432 -0.767988 0.567945 0.019181 0.162762 -0.403232 -0.231096 0.116868 0.129602 -0.492117 -0.265737 -0.432991 -0.189104 -0.360003 -0.030863 0.446934 0.573578 0.423664 0.468245 0.380018 0.801228 0.315222 0.274191 -1.123359 0.064307 0.383082 -0.465173 -0.666124 0.260855 -0.370954 0.308068 0.529638 -0.255734 0.100064 -0.425623 -0.831189 -0.353639 -0.173726 0.358901 0.211416 -0.768821 -0.164659 0.049714 0.533539 0.353756 0.478877 0.888639 0.418859 0.611327 0.299459 0.180498 0.453845 0.149042 -0.217463 -0.059646 0.234269 0.285512 0.476719 0.266899 0.109937 0.716132 0.557496 -0.277571 0.432424 0.224108 0.989995 0.087128 -0.294536 -0.409607 -0.110208 0.619882 1.358943 -0.248273 0.268477 0.429354 0.494391 0.186403 -0.769195 0.104281 -0.439442 0.100195 0.333767 -0.085288 0.131433 -0.024154 0.221675 0.025428 -1.021657 0.619406 -0.095425 0.292036 0.554877 0.149624 0.061215 -0.021893 -1.060713 0.252708 0.567332 0.308635 -0.309328 -0.112749 -0.049269 0.484764 -0.319963 0.711544 -0.670345 0.326492 0.578191 0.411936 0.232969 0.167993 -0.494628 -1.017799 0.303011 -0.396292 -0.321671 0.071585 -0.004483 -0.806777 0.079044 -0.044458 -0.604983 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::destroy(AdjListNode*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, AdjListNode const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(AdjListNode const&) = 0.691199 1.204567 0.872840 -1.208600 -2.828316 0.455110 -1.371411 -1.111931 -0.013659 0.828475 0.989112 -1.370011 -0.588771 2.168873 -1.359973 -1.369460 -1.162672 -0.989618 -0.308092 -1.014120 0.140213 0.938896 -0.322269 0.603536 -0.437704 -0.201541 -0.406764 0.201747 1.633881 -0.749957 -1.080734 -0.178842 0.229643 1.529191 0.411468 -0.968204 0.661865 2.657726 -0.254124 0.042735 -1.964514 -1.671297 0.440831 0.316378 0.131130 -1.835509 -1.455570 1.005965 -1.374716 0.799300 1.338017 0.085854 -0.484995 0.398797 0.874362 0.626880 -3.043663 2.823905 0.267012 0.095379 0.268755 -0.158736 0.102276 0.688955 0.439351 -0.854531 0.494349 1.695623 -0.793987 0.079767 0.121327 -1.810665 2.315791 0.144273 -1.209862 0.074201 0.964230 -1.252831 1.562278 -2.543830 -2.002822 0.399318 0.472703 -0.082337 1.486651 0.319382 0.393123 -2.416511 0.537776 -2.528327 0.777603 -1.416608 0.513027 1.480983 -1.935041 -0.105351 0.806470 0.029855 2.762728 0.617522 1.718427 0.705916 0.938508 0.710871 0.270251 0.965627 -0.172771 0.258345 -1.007986 -2.404583 -0.556313 0.193146 -3.077961 0.438933 0.226225 0.502907 -0.144385 -0.372681 0.273462 1.126253 -2.047292 -1.760989 0.222289 -0.104999 0.837846 1.752829 -0.824488 1.048396 -0.870823 1.996016 -0.767480 0.534536 0.168164 0.318576 -0.600875 -2.721410 -3.718136 1.117367 0.909447 -0.931001 -1.455438 -1.726857 0.039172 -0.468214 -0.672575 1.787219 3.169497 -1.143201 -1.975424 2.298436 0.760839 -0.254840 2.713622 -0.170297 2.762692 -0.712443 -0.350973 -0.690213 -1.023712 -0.756625 -0.739728 0.688791 -0.023800 0.342947 0.716878 -1.399148 0.400791 -0.457479 -1.521738 -0.786351 0.546613 -0.741729 -0.698453 1.579681 0.613224 1.174545 0.556742 2.285437 -0.953653 -2.275662 0.842533 -0.959169 0.363618 0.117123 -0.445518 0.419077 1.443478 -1.327185 -0.365059 -0.163162 -0.788306 -1.368340 0.026296 1.287171 0.805313 0.852594 1.042226 1.146341 2.921493 0.628171 0.757190 -1.952276 0.536038 1.209117 -0.349445 -2.521839 0.182451 -1.387183 0.189653 0.659397 -0.604776 0.490085 -0.443542 -0.968368 -0.842772 -0.960279 1.672974 0.758205 -0.479264 0.683869 -1.602484 1.496999 0.303774 0.935874 1.977629 2.002068 2.141842 0.214490 0.544040 -0.535956 2.080597 0.125938 1.306517 -0.087380 0.902542 1.934628 0.798068 0.402447 1.396974 1.257127 -0.522958 1.621156 -0.300041 3.157007 -1.546507 0.607911 -1.470138 0.096931 1.348760 4.040271 -1.076509 0.130651 0.558607 0.810994 0.277444 -1.969341 0.054005 -0.784778 -0.303916 0.476260 0.709178 -0.326122 -0.262848 1.436973 0.150008 -1.698145 1.538992 0.011206 0.269648 0.335338 -0.200917 -0.855004 0.604574 -2.094621 0.936942 1.828092 1.080233 -1.258978 -1.410800 -0.224228 1.692943 -0.430158 1.515824 -1.805550 1.175164 2.055530 1.314861 0.395079 0.632976 -1.772026 -2.431278 1.275832 -0.541244 -0.917771 0.725008 0.843470 -1.855290 0.993488 0.475855 -2.355799 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__AdjListNode const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits > >::construct(std::allocator >&, AdjListNode*, AdjListNode const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator >::construct(AdjListNode*, AdjListNode const&) = 0.547881 0.551573 0.634924 -0.872778 -1.339760 0.327998 -0.219169 -0.510440 0.030584 0.315767 0.664665 -0.418206 -0.162580 1.048299 -0.423555 -0.556551 -0.323896 -1.281790 -0.290396 -0.308276 0.004250 0.459056 -0.249488 0.291388 -0.153566 -0.009093 -0.227617 0.298251 0.347897 -0.740716 -0.729560 -0.118099 -0.130186 0.941322 0.227756 -0.747585 0.414618 1.686903 -0.514540 -0.065093 -0.728840 -0.798791 0.376215 -0.017397 -0.240535 -0.860538 -0.733458 0.650560 -0.071988 0.053577 0.949457 0.044164 -0.149498 0.113256 0.336829 0.476052 -1.645645 0.962104 0.298234 0.218435 -0.039629 -0.205189 0.237818 0.292006 -0.002675 -0.515571 0.713749 0.463508 -0.270488 -0.104912 -0.060485 -1.256632 1.231431 0.299197 -0.272379 0.101807 0.600113 -1.106305 1.059197 -0.805770 -1.206780 0.180774 -0.053967 -0.657423 1.182249 -0.363606 0.164262 -1.382489 0.457944 -1.505861 0.204833 -0.947365 0.228906 0.927384 -0.851487 0.016062 0.470791 0.572229 1.053713 -0.048992 1.094857 0.360197 0.541103 0.469578 0.522014 0.413980 -0.343975 0.069612 -0.889542 -1.315314 -0.066969 -0.113931 -1.560728 0.511484 0.164292 -0.481598 -0.060050 -0.170119 0.044453 1.048533 -0.872336 -0.439478 0.247585 -0.111740 0.192173 1.217107 -0.552703 0.366594 -0.544598 1.115216 -0.464449 0.640978 0.007706 0.228464 -0.225423 -1.044650 -1.565285 0.501410 0.602994 -0.648146 -0.918986 -0.977029 0.134351 -0.303249 -0.472712 1.268826 1.895214 -0.724785 -1.066218 1.314802 0.960718 -0.102651 1.206660 -0.099426 1.489709 -0.404465 -0.303532 -0.478186 -0.560616 -0.476669 -0.675902 0.408300 0.258867 0.339897 0.300878 -0.621018 1.362949 -0.180483 -0.800160 0.590835 0.381690 -0.507054 -0.941724 1.038862 1.108838 0.690654 0.954978 1.389884 -0.356294 -0.865180 0.512122 0.089466 0.335601 -0.590033 -0.438819 0.226724 0.696273 -0.268508 -0.283677 -0.350805 -0.410950 -0.708925 0.057965 0.751566 0.706293 0.435537 0.578091 -0.032676 1.819404 0.325198 0.355705 -1.223395 0.417863 0.680294 -0.268685 -0.912129 -0.052878 -0.654097 0.092191 0.416596 -0.274944 0.511081 -0.485246 -0.649742 -0.121177 -0.146988 0.513018 0.495144 -1.229078 0.242156 -0.679673 0.715780 0.269981 0.588584 1.163823 1.180702 1.216924 -0.037525 0.206060 0.189143 0.272541 -0.374007 0.210826 0.576199 0.574679 1.004170 0.554377 0.339957 0.784929 0.705343 -0.051687 0.951828 0.054547 1.815554 -0.352876 0.033108 -0.684807 0.050977 0.860248 2.002004 -0.213222 0.134692 0.363633 0.659392 -0.280187 -1.184358 0.130888 -0.479375 0.231021 0.062500 0.365331 -0.189009 -0.177167 0.982743 -0.045741 -1.262669 0.504393 0.034827 0.402041 0.572416 0.025027 -0.000360 0.253212 -1.126062 0.902314 0.977652 0.643958 -0.696903 -0.385635 0.058357 0.895162 -0.823035 0.863984 -1.261115 0.844954 0.660617 0.633216 0.306182 0.525727 -1.023867 -0.847352 0.768947 -0.353260 -0.299331 0.694809 0.793586 -1.291030 0.500225 -0.446045 -0.863079 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::empty() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::operator==(std::_Deque_iterator const&, std::_Deque_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::back() = 0.215504 0.337586 0.106763 -0.326868 -0.750053 0.103383 -0.418850 -0.264952 -0.065238 0.001345 0.239846 -0.431888 -0.383615 0.611286 -0.344567 -0.546790 -0.337045 -0.311835 -0.133688 -0.157122 -0.019719 0.259085 -0.073296 0.156397 -0.060419 0.054412 -0.226826 -0.000344 0.684577 -0.416593 -0.381978 -0.009444 0.119719 0.445977 0.086716 -0.205692 0.243000 0.794306 0.223589 0.030882 -0.575052 -0.416190 0.127924 0.060253 -0.004720 -0.568879 -0.325735 0.355607 -0.645460 0.266122 0.378507 0.046728 -0.331693 0.071337 0.264478 0.323755 -1.019579 1.103667 0.111139 0.223926 0.180468 -0.061194 -0.054395 0.013857 0.388782 -0.281914 0.022497 0.431677 -0.432869 0.039566 -0.023747 -0.408386 0.879359 0.080021 -0.397720 0.067386 0.186781 -0.179764 0.375228 -0.982785 -0.539574 0.127996 0.236816 0.304053 0.499841 0.169368 -0.095410 -0.702885 0.050291 -0.721808 0.218502 -0.466082 0.182615 0.475079 -0.600094 -0.012638 0.166919 -0.366880 0.740600 0.317444 0.533036 0.055505 0.189881 0.157464 -0.051170 0.137692 0.021777 0.125052 -0.119511 -0.662003 -0.256861 0.256094 -0.912001 0.111510 -0.015046 0.502440 0.049382 0.034257 0.114265 -0.107184 -0.579078 -0.671568 -0.014621 -0.037041 0.459174 0.571139 -0.218583 0.273583 -0.339427 0.594912 -0.099190 0.154040 -0.013091 0.080857 0.062864 -1.014863 -1.141102 0.222478 0.266136 -0.226253 -0.447736 -0.441188 0.048535 -0.268638 -0.240046 0.486775 0.898908 -0.297105 -0.476172 0.749841 0.097220 0.224607 0.833196 -0.084415 0.825452 -0.210975 -0.056909 0.035803 -0.269980 -0.257613 -0.564472 0.147833 -0.116652 -0.041105 0.253435 -0.347343 -0.181662 -0.040018 -0.425713 -0.208633 0.007671 -0.221156 -0.286106 0.455773 0.303205 0.381898 0.237670 0.679559 -0.251956 -0.730308 0.327976 -0.074789 0.134583 0.119134 -0.218615 0.117404 0.282840 -0.538483 -0.099304 0.072303 -0.075418 -0.483507 0.031949 0.632775 0.149325 0.217602 0.337197 0.322859 0.776520 0.039820 0.309733 -0.644094 0.138804 0.270804 -0.139442 -0.738338 0.168706 -0.354275 0.039175 0.483204 -0.216401 0.012075 0.023549 -0.321904 -0.175048 -0.273162 0.627401 0.219078 0.231590 0.106102 -0.418635 0.260251 0.149787 0.308234 0.524794 0.492298 0.524186 0.092890 0.172910 -0.075251 0.735432 -0.076120 0.235942 0.102432 0.286680 0.309439 0.251428 0.056338 0.392710 0.332479 -0.304196 0.490279 0.076215 0.920123 -0.455739 0.089998 -0.351474 -0.092971 0.407173 1.105629 -0.728119 0.053033 0.204927 0.252325 0.239460 -0.553688 -0.043861 -0.251094 -0.321738 0.245979 0.028649 -0.040325 -0.037913 0.428354 -0.054389 -0.444115 0.534146 0.026226 0.070036 -0.067091 0.007918 -0.324994 0.246303 -0.740227 0.070779 0.500435 0.381038 -0.283541 -0.395316 -0.107510 0.487385 -0.271454 0.431308 -0.231052 0.152579 0.678703 0.424187 0.238969 -0.116259 -0.376174 -0.851525 0.296513 -0.080364 -0.247648 0.083617 0.194943 -0.417571 0.134820 0.301536 -0.694908 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator--() = 0.047131 -0.590731 0.907326 -0.926820 -1.160533 0.679881 -0.942351 -0.629356 0.454210 0.178362 0.395102 -0.472155 -0.423654 1.449042 -0.222625 -1.421521 -0.120662 0.613497 0.270037 -0.131655 0.140803 0.417947 -0.277192 0.326535 -0.164777 -0.646673 0.186779 0.647454 0.750345 0.404134 -0.846175 -0.381178 -0.583434 1.459867 0.268526 0.687470 0.443292 2.348598 -0.030917 2.138309 -1.106965 -1.400884 0.422020 0.202706 -0.127038 -0.121694 -0.899564 0.355654 -1.669085 -0.166878 1.224659 -0.149580 0.235680 0.185251 0.966863 0.294108 -1.740751 0.403648 -0.138561 -0.195259 -0.011823 -0.434946 -0.317259 0.683495 -1.124292 -0.484345 0.578494 1.191458 -0.663587 0.104260 0.023426 -1.633558 2.191270 0.730601 -1.187614 0.192677 1.570226 -0.960908 1.028143 -0.380716 -1.791080 -0.124966 -0.245620 -1.158814 1.718795 0.200637 1.411893 -2.055281 1.123103 -2.091829 1.173201 -1.352946 0.784534 1.698794 -1.524763 0.386099 1.083394 1.880439 0.936377 -0.079709 1.324785 1.005048 -0.229626 0.377920 1.257814 0.292982 -0.699395 -0.749785 -1.121646 -1.477155 -0.166059 -1.264303 -2.605695 -0.110327 -0.021639 1.301310 -0.167472 0.559425 -0.376911 0.696831 -2.361254 -0.064402 0.199863 -0.248817 0.790613 0.961641 -0.696102 0.590123 -0.088449 1.826265 -1.142276 -0.075498 -0.377873 0.427335 -0.679923 0.572789 -1.874012 0.520864 0.823686 -0.674424 -1.559203 -1.486582 -0.755127 1.504796 -0.027478 2.245077 2.684513 -0.714687 -1.059324 1.418752 -0.440533 0.296058 1.731112 0.417629 1.263770 -0.718634 -0.049703 -1.429856 -0.242726 -0.415480 0.239181 0.706674 -0.130141 1.036188 0.037509 -0.252730 2.052861 -0.833359 -0.915170 -1.853375 0.151889 -0.876971 -0.529098 1.987063 -1.577232 1.001980 -0.147539 1.998504 -0.766856 -1.241068 0.414793 -1.737991 -0.076294 -1.151370 -0.290941 -0.188756 1.205350 -1.644792 -0.819519 -0.449649 -0.745162 -0.255839 0.115487 0.936781 0.135836 0.363963 0.602546 2.340780 2.032478 0.922547 -0.412210 -1.482677 0.424671 0.649851 -1.139601 -0.513091 0.349965 -0.718908 0.031304 -0.222121 0.019854 0.268953 -1.492624 -0.883248 -1.187835 -0.275254 0.874866 0.524525 -2.692484 0.310047 0.422313 0.752678 1.158642 0.503100 1.968895 1.405223 1.586250 -0.067455 0.371059 -0.096902 -0.025130 0.413000 0.952812 0.650462 0.288586 1.703040 0.574121 0.107568 0.815649 1.387999 0.738956 1.030938 0.413626 2.261767 0.365629 0.016107 -0.430241 -0.135407 0.997923 2.674553 -1.055923 1.459802 0.782577 0.939281 -0.237827 -1.528246 0.083862 -0.754965 -0.051616 0.433586 -0.005078 -0.207512 -0.478575 1.368183 0.336418 -1.883514 0.391323 0.031453 0.339031 1.316538 -0.237485 -0.089623 0.278901 -1.533950 1.843302 0.770449 0.544266 -1.037684 0.097580 -0.156765 0.437334 0.886031 0.836429 -0.333017 0.710825 0.596509 1.487537 0.922468 0.717259 -0.979525 -0.683248 0.399295 -1.684495 -0.637256 0.033887 0.592086 -0.359012 0.446868 -1.244923 -2.216360 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::pop_back() = 0.918230 -1.149242 1.753199 -1.596206 -1.963741 1.770420 -2.598979 -1.037501 0.735647 0.475596 0.682584 0.037161 -0.276611 1.620457 -0.405541 -2.351140 -0.103374 -0.291990 0.762865 -0.938894 0.193405 0.340228 -0.286547 0.641573 -0.562022 -1.443195 0.082265 0.795565 1.347646 0.047445 -1.403416 -0.480231 -1.734811 2.169082 0.633069 -0.079472 1.127793 4.051462 0.853475 1.261528 -0.961143 -2.378315 0.466189 0.110019 -0.434101 1.451160 -0.866772 0.655697 -2.247734 0.245104 2.231727 -0.500880 0.730667 0.597582 0.683426 -0.136148 -2.896516 0.590082 -0.599286 0.052992 -0.201234 -0.653838 0.255767 1.423600 -0.837118 -0.738875 2.104021 2.299757 -1.195771 -0.505532 0.138038 -2.452042 3.060027 1.327140 -0.944159 0.001101 2.885880 -1.286660 1.817755 -0.010946 -3.488540 -0.155032 -1.100696 -3.446864 3.336979 -0.432375 2.233487 -3.318906 3.034002 -3.688724 1.515401 -1.572407 1.211679 2.484837 -2.585206 0.350164 2.233209 4.129574 1.330292 -1.200330 2.749489 0.973816 -0.927433 1.385276 2.002952 -0.228252 -0.895151 0.042024 -1.943861 -2.406913 -0.403220 -2.355085 -3.577952 0.479139 0.054499 1.015559 -0.359184 0.836146 -1.040653 1.458476 -3.782048 -0.532866 -0.124706 -0.380726 1.021108 1.146553 -1.433926 1.085542 0.178001 3.257919 -2.535701 -0.391788 -0.212392 0.625911 -0.059877 1.806302 -3.450305 1.381351 1.907376 -1.349225 -2.623406 -1.602202 -0.988119 1.447222 -0.123825 5.404902 4.479136 -1.209621 -1.627066 2.325247 -1.175248 0.385184 3.591818 0.529168 1.833532 -0.880477 -0.872335 -2.416448 -0.678941 -0.749490 -2.254427 1.288898 1.356239 1.961129 0.736162 2.874563 3.432796 -1.521113 -1.975834 -2.112637 0.771194 -1.425118 -1.314572 2.439070 -0.522328 0.957589 2.254419 3.561672 -0.665221 -1.933578 0.769702 -1.875727 -0.083150 -1.340108 -0.464953 -0.997033 1.480473 -1.699602 -1.379584 -1.156319 -1.046228 -0.486335 -0.073778 3.926081 1.562197 1.344612 0.998934 2.889490 4.116787 2.062613 -0.842016 -2.631720 0.556419 1.713611 -1.984935 0.600366 -0.031635 -1.036087 0.527301 0.585232 0.039087 1.214179 -2.731362 -1.639086 -2.346731 0.791932 1.702045 1.603347 -5.336304 0.503793 0.784517 0.943872 1.893622 0.861519 2.909905 2.477356 2.987407 -0.209425 0.676445 0.813834 0.597583 -0.676034 1.280139 2.405680 0.569210 2.695710 1.029281 0.844744 1.484982 2.600194 1.193224 1.587135 -0.135528 4.064781 -0.083210 0.198282 -1.700375 0.180356 1.814742 4.456023 -1.601469 2.542948 1.198771 1.898249 -0.151723 -3.470114 0.804071 -1.411762 1.863311 -0.985594 0.612795 0.254755 -1.262431 1.812689 0.777528 -3.210893 1.238153 0.079541 0.693120 2.668548 -0.219770 -0.183942 -0.352166 -3.232553 2.971782 1.966262 0.692997 -1.722710 1.708904 0.040377 1.671445 -1.401067 1.824990 0.269346 2.115415 0.773715 1.496592 1.907137 0.572694 -2.045704 -1.942468 1.147328 -3.162841 -0.724719 1.534449 1.230560 -1.684337 1.499686 -1.339405 -3.281534 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::deque >::_M_pop_back_aux() = 0.974669 -1.461739 1.905192 -1.908787 -2.578135 2.615678 -4.035521 -2.051347 0.782826 -0.682803 1.162549 0.063182 0.849882 1.771904 -0.555926 -2.552360 -0.772355 0.131950 0.666786 -1.131071 0.047891 0.040934 -1.122577 1.001084 -1.273395 -1.802464 0.680549 0.608426 1.077273 0.404575 -2.108812 -0.872733 -2.386426 2.959599 1.701521 0.117404 1.723074 4.947593 1.597742 0.886484 -0.590916 -2.736865 -0.132975 0.157218 -0.777157 2.537541 -1.494878 0.432544 -2.724521 1.181526 3.012793 -1.016788 0.812211 1.475906 1.166680 -0.773838 -2.834452 0.456626 -0.389181 0.031238 -0.481517 -1.181059 0.354723 1.752230 -1.481384 -0.615207 3.160482 3.717729 -0.416399 -0.581880 0.188067 -4.019429 4.113826 1.746927 -1.144473 -0.441962 3.431898 -1.968723 2.145254 1.361001 -4.622459 0.053753 -1.323038 -4.668994 4.305941 -0.667555 2.804075 -3.754068 3.929550 -4.902985 0.993929 -1.687984 1.349662 2.833664 -3.831554 -0.141452 2.923275 6.105425 1.541161 -1.410984 2.918379 1.043709 -2.108826 1.533796 2.956521 -0.482530 -0.460108 0.199907 -2.254790 -3.175308 -0.592097 -3.090122 -4.914134 0.703223 -0.115691 0.971787 -2.015719 1.651576 -1.174617 2.015262 -4.183605 -0.798558 -0.464631 -0.445555 1.293975 1.299092 -1.861057 1.811517 0.074798 3.611481 -3.128833 -0.842698 -0.885171 0.618705 -0.222671 2.623817 -5.454229 2.075909 3.041103 -1.742446 -3.309742 -1.348739 -1.635369 2.201622 -0.002487 6.933791 5.326433 -1.971712 -2.176863 2.939042 -0.821345 0.153579 4.978841 0.899732 2.131238 -0.896026 -0.705628 -3.243976 -1.100194 -1.826624 -5.090077 1.449807 1.962770 2.555647 0.904830 3.919278 6.043375 -1.966351 -2.808082 -2.191072 1.183284 -1.467899 -1.812761 3.302858 0.058748 0.970089 3.342287 4.168636 -1.220699 -2.039040 0.570685 -1.879852 0.009330 -1.328177 -0.326744 -1.633117 2.505507 -1.580798 -1.685373 -0.685589 -1.392904 -0.625349 -0.218874 6.832246 1.761895 1.753468 1.342435 2.627539 6.020165 2.767778 -1.099389 -2.723790 0.901089 2.518582 -2.659364 1.602788 -0.332086 -1.340519 0.506431 -0.407027 0.306601 1.611783 -3.833813 -1.675801 -3.329952 1.485265 2.632729 2.627483 -6.901713 1.138659 0.410941 1.065127 2.355302 0.597933 3.680905 3.619775 4.401904 -0.859895 0.930872 0.843032 1.047335 -0.973229 2.074143 3.625403 0.551696 3.725309 1.239519 1.142380 1.136344 3.222083 2.458998 1.949286 0.031388 5.480485 0.184547 0.737488 -2.528290 0.409828 2.349440 6.002724 -1.972262 3.673205 1.023988 2.552891 -0.583354 -5.092640 1.017249 -1.297294 2.242912 -2.109221 0.683128 0.335748 -1.821670 2.483866 1.061348 -3.381319 0.809683 0.317925 0.650862 3.369787 -0.482953 -0.300468 -0.544496 -3.650436 4.447171 2.514764 0.741860 -2.105618 2.166247 0.108895 1.978924 -2.248993 2.191690 1.740958 3.943166 0.890654 1.712296 2.476164 -0.059663 -2.831209 -1.908423 1.734773 -4.088683 -0.675081 2.506556 2.123611 -2.231889 2.190821 -1.593475 -5.050970 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp___GLOBAL__sub_I_longest_path_directed_acyclic_graph.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/ugly-numbers.cpp__maxDivide(int, int) = 0.392497 0.230065 0.464538 -0.687865 0.047136 0.029223 0.896599 -0.383514 0.190601 1.196146 0.452466 -0.330491 -0.618357 0.713371 0.013721 -0.694824 0.783595 -0.640497 0.007568 -0.105471 0.015968 0.376937 0.019847 -0.527549 0.606426 -0.152381 0.076519 0.699340 -0.258146 -0.404027 -0.399493 0.070488 0.004278 1.054264 -0.241550 0.491381 -0.301727 1.028743 -1.076716 1.388165 -1.503259 -0.937782 1.230560 0.111966 -0.044253 -1.109041 0.196912 0.431103 0.131692 -0.881806 0.212008 -0.274147 0.151432 -0.757202 -0.015996 1.285646 -1.240350 -0.004893 0.174381 -0.443426 -0.703162 -0.071108 0.406858 0.119800 -0.637743 -0.817782 0.313952 -0.271474 -0.711352 0.544687 -0.770793 -0.974827 0.715542 0.392461 -0.197809 0.370950 -0.214548 -0.959192 0.552626 -0.756719 -0.304063 -0.450666 0.614253 0.178206 0.181311 0.415639 0.853616 -1.535084 -0.259921 -1.037814 1.038884 -0.831041 1.088514 0.874744 -0.099355 0.595354 0.135551 0.284952 0.254040 0.048655 1.060261 0.482839 0.755216 -0.336034 0.597756 0.673944 -0.894488 -1.029106 -0.522908 -0.545201 0.220754 -0.061304 -1.140463 0.190651 -1.048156 -0.121467 0.550630 -0.348662 0.158858 0.980149 -1.431832 -0.384556 0.365179 -0.006597 0.700178 0.926543 0.207279 0.065084 -0.026793 0.856468 0.100919 0.344258 -0.344753 0.579384 -0.568912 -0.845460 0.031034 -0.329770 0.217276 -1.003194 -0.985512 -1.578961 -0.211992 0.602515 -0.368973 0.679299 1.438137 -0.315545 -0.871288 0.539004 0.271455 -0.108755 0.568566 0.005189 1.405075 -1.427311 0.774956 0.004458 0.772398 0.678455 1.778642 -0.279666 -0.769156 0.396045 -0.192580 -1.181154 0.759210 0.150408 0.306868 0.177043 -0.187325 -0.298112 -0.669508 0.943386 -0.596395 1.419399 -0.895578 1.353876 -1.055361 -0.753183 0.582817 -0.859130 -0.254194 -1.025939 -0.403715 0.117460 0.810553 -0.941949 -0.548643 -0.624679 -0.448121 0.155796 0.763207 -1.274036 -0.039381 -0.460278 -0.503471 0.967577 0.317081 -0.269918 0.126371 -1.013789 0.245312 0.508033 0.308188 -1.142376 0.001311 -0.844481 -0.231398 0.087530 -0.168836 0.686666 -0.437195 -0.481676 0.480827 -0.202498 -0.071582 -0.568478 -1.168256 0.155075 -0.030567 0.032943 0.241742 1.260695 0.732178 0.562694 -0.232426 -0.535052 0.272348 -0.671336 -1.108351 0.384234 -0.058717 0.361553 0.361249 0.625148 0.241981 0.171403 0.905814 0.105429 -0.044224 1.057566 0.317456 0.870956 -0.439187 0.035715 0.479038 -0.670272 0.711989 0.848789 -0.254136 -0.643651 0.494372 0.240812 -0.579193 -0.269306 -0.400432 -0.382744 -0.650660 0.768676 0.165752 -0.271897 -0.404479 1.646718 0.282614 -1.812065 0.803288 -0.212271 0.194702 0.672198 -0.375329 0.205086 0.711873 -0.413312 0.303815 0.095261 1.043930 -0.677486 -0.284706 -0.065024 0.666406 0.661289 -0.321471 -1.854699 0.045681 0.393656 1.361820 0.661779 1.333854 -0.366275 0.521447 -0.457374 -0.250665 -0.174545 -0.294685 0.520207 -0.143734 -0.352407 -1.694778 0.557788 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.319974 0.394540 0.515526 -0.571762 -0.294997 0.132930 0.157016 -0.533927 0.267567 0.272645 0.511630 -0.471109 -0.576458 0.301198 -0.545371 -0.507828 0.242371 0.168505 -0.176210 -0.613624 0.143875 -0.042485 0.029384 -0.774177 0.274810 -0.550604 0.353643 0.680564 0.384558 0.113819 -0.374160 0.047109 0.569654 1.080394 0.019161 0.153967 -0.072076 0.711372 -0.034646 0.339764 -1.234977 -0.948506 1.278089 0.202052 -0.045291 -1.234198 -0.498579 0.191974 -0.793307 -0.071072 -0.209094 -0.474756 0.340982 -0.761834 -0.289789 1.256858 -1.125581 0.483611 -0.061224 -0.621794 -0.601529 -0.098624 0.356472 0.122095 0.163433 -0.670733 0.198415 0.586912 -0.809403 0.493511 -0.471756 -0.950439 1.323435 0.039396 -0.325658 0.187875 -0.230104 -0.828025 0.289914 -0.156841 -0.131511 -0.336720 0.795455 0.571974 0.226561 0.183125 0.592599 -1.343791 -0.789782 -1.062616 0.891899 -0.569796 1.064351 0.305454 -0.886000 0.500392 0.145451 -0.266875 0.060414 0.534571 0.932385 0.287187 0.874212 -0.521209 0.615101 0.325161 -0.154605 -0.722602 -0.211571 -0.549296 -0.150839 -0.034826 -1.941539 -0.115425 -1.179058 0.217270 0.011919 -0.416607 0.174683 1.052392 -0.904009 -0.404174 0.384199 -0.133017 0.618986 0.721385 0.243946 0.194080 0.247502 0.727587 0.093699 -0.331249 -0.328426 0.384489 0.013441 -1.846345 -0.668861 0.017766 0.324191 -0.752173 -1.090176 -0.594116 -0.456854 0.433267 -0.105608 -0.162967 1.265473 0.050105 -0.916361 0.270528 0.197470 -0.091157 1.165580 0.304466 1.673828 -1.450328 0.938173 -0.146050 0.543889 0.679759 0.799654 -0.667494 -0.730942 0.293975 0.107169 -1.142889 0.613032 -0.427541 0.365311 0.384053 -0.165541 -0.292367 -0.477349 0.819584 0.158913 1.446089 -0.678663 1.323499 -1.347786 -1.382285 0.343860 0.184280 -0.351211 -0.021916 0.293358 0.090828 0.944711 -0.803600 -0.716813 -0.059099 -0.288674 0.380376 1.104495 0.062702 -0.148976 -0.434596 -0.688145 0.035041 0.226420 -0.491290 0.279571 -0.744418 0.028879 0.744862 0.417125 -1.509891 -0.031713 -0.736824 -0.078306 -0.049878 -0.002660 0.645748 0.116038 -0.341274 0.161202 -0.593103 0.204546 -0.648280 -0.154200 0.359155 -0.390405 -0.195974 -0.261784 1.230133 1.230609 0.358100 -0.313705 -0.362376 0.341829 -1.056786 -0.174360 0.229622 0.326858 0.160042 0.244086 1.100571 -0.128099 0.216551 0.765108 0.185740 0.217846 0.787005 0.380822 0.933477 -0.817422 0.243383 0.042141 -0.733243 0.772627 1.435101 0.028138 -0.688451 0.266023 0.559246 -0.016228 -1.118656 -0.473732 -0.051121 -0.648908 1.206288 0.618429 -0.169519 -0.452591 1.502294 0.603398 -1.348360 0.978481 -0.052944 0.016742 0.212043 -0.869529 -0.140897 0.764128 0.206113 -0.127479 0.009612 0.743628 -0.977065 -1.016302 -0.159350 0.831213 0.144809 -0.497095 -1.256840 0.115038 0.548216 1.349618 0.584619 0.989465 -0.543510 0.058041 -0.436358 -0.168689 -0.149167 -0.036440 0.236158 -0.929877 -0.118950 -0.984664 0.287651 +PE-benchmarks/ugly-numbers.cpp__getNthUglyNo(int) = 0.474340 0.375043 0.636620 -1.185687 -0.058976 0.052108 1.124877 -0.380995 0.136418 1.659715 0.405272 -0.234355 -1.544532 0.798891 -0.151471 -1.096824 0.804398 -0.706648 -0.119454 -0.344847 -0.056881 0.466598 0.002146 -0.814551 0.773441 -0.345179 0.060119 1.022730 0.361401 -0.292228 -0.583573 -0.109132 0.175564 1.665321 -0.328718 0.247980 -0.338572 1.620822 -1.414958 1.413681 -2.060887 -1.652721 1.913784 0.102828 -0.262529 -1.945954 0.064202 0.575465 -0.494969 -1.027348 0.144391 -0.383364 0.328360 -1.254152 -0.016918 1.867198 -2.231419 0.361673 0.194656 -0.503800 -0.957098 -0.310193 0.865591 0.016670 -0.522448 -1.099375 0.313806 -0.467974 -1.234116 0.502242 -0.977775 -1.378840 0.952671 0.604855 -0.544306 0.584688 -0.188949 -1.507695 0.726542 -0.793877 -0.466953 -0.648359 0.693166 0.017989 0.713128 0.326366 0.814922 -2.224384 -0.368513 -1.498838 1.172413 -1.163030 1.525257 1.253911 -0.419344 0.927740 0.250987 0.150004 0.040494 -0.533419 1.542877 0.561114 1.433886 -0.332265 0.849316 0.870453 -1.337700 -1.316189 -0.832231 -0.867086 0.169839 -0.458746 -1.862514 0.004336 -1.377372 -0.405785 0.983029 -0.736205 -0.373671 1.237869 -2.202510 -0.495946 0.543985 -0.325847 1.039495 1.412221 0.213966 -0.098788 0.167639 1.353551 -0.051382 0.369633 -0.544887 0.766752 -0.352306 -1.168422 -0.097408 -0.374442 0.237480 -1.252815 -1.588469 -1.953478 -0.429061 0.475338 -0.309168 0.793123 2.356226 -0.284180 -1.519171 0.914676 -0.327625 0.398743 1.089908 0.230599 2.011080 -1.851643 1.001582 -0.307280 0.858818 0.852637 2.203344 -0.411921 -0.995550 0.515641 -0.296654 -0.870556 0.229045 -0.233449 0.387245 -0.198084 -0.079323 -0.862044 -0.797225 1.459824 -1.099904 1.962226 -0.876761 1.851414 -1.486291 -1.326581 0.655632 -1.460473 -0.522697 -1.359931 -0.717235 0.139085 0.928377 -1.336616 -0.862680 -1.093904 -0.118568 0.089417 1.319211 -1.784170 -0.098008 -0.657529 -0.402646 1.339477 0.512621 -0.559084 0.214924 -1.380489 0.297751 0.891273 0.155168 -2.004792 0.112369 -0.944184 -0.300036 0.791590 -0.188657 0.880145 -0.312269 -0.749537 0.735960 -0.474171 -0.187137 -0.932703 -1.820691 0.269356 -0.287259 -0.162733 0.360003 1.823027 1.348667 0.668373 -0.301519 -0.429381 0.483472 -0.916525 -1.279857 0.290214 -0.218868 0.478350 0.671905 0.820566 0.333268 0.248165 1.268988 0.565258 -0.240484 1.356840 0.670796 1.384525 -0.217830 -0.310977 0.656188 -1.060630 0.731164 1.471599 -0.189777 -0.461331 0.945717 0.471108 -0.468635 -0.878505 -0.398484 -0.709916 -0.740206 1.530935 0.517434 -0.660438 -0.466135 2.355615 0.214307 -2.517186 1.215809 -0.034111 0.478114 0.678917 -0.659268 0.237012 1.066845 -0.517810 0.554343 0.207603 1.246463 -1.212647 -0.182348 -0.072019 1.026405 0.823394 -0.378028 -2.719313 -0.252766 0.281373 1.978536 1.046941 1.977527 -0.418978 0.404083 -0.561194 -0.341556 -0.168811 -0.547084 0.802636 -0.459230 -0.400172 -2.278221 0.724927 +PE-benchmarks/ugly-numbers.cpp__main = 0.248389 0.230409 0.080565 -0.367136 -0.315958 0.060027 -0.212602 -0.326462 -0.048444 -0.094459 0.284319 -0.458616 -0.396138 0.469227 -0.300062 -0.494748 -0.038735 -0.192363 -0.174457 -0.150340 -0.017222 0.045214 -0.026102 -0.303102 0.039485 -0.007641 -0.015813 0.200746 0.621959 -0.309237 -0.385890 0.040711 0.272560 0.608552 0.130976 -0.117846 0.120459 0.598989 0.122826 0.124849 -0.691158 -0.307842 0.557444 0.032811 -0.157898 -0.746068 -0.341264 0.304503 -0.731323 0.140591 0.068817 -0.159183 -0.122710 -0.307495 -0.094439 0.733334 -0.966399 0.920923 0.151595 0.102684 -0.070761 -0.114126 0.149302 -0.044210 0.345181 -0.399505 0.049700 0.235901 -0.543752 0.151801 -0.350067 -0.457064 1.003928 0.039275 -0.278433 0.061563 -0.192687 -0.306064 0.213848 -0.634105 -0.263592 -0.076847 0.373593 0.450628 0.407298 0.138746 -0.053162 -0.778001 -0.302258 -0.735961 0.289853 -0.476881 0.420610 0.359503 -0.666283 0.126589 -0.024503 -0.458103 0.299030 0.358438 0.498191 -0.026216 0.243300 -0.180582 0.164203 0.126473 0.023804 -0.141314 0.055614 -0.430288 -0.259067 0.217128 -1.085336 0.108234 -0.535156 0.396938 0.010431 -0.043816 0.055740 0.023627 -0.409990 -0.512643 -0.008709 -0.080794 0.566147 0.598852 -0.025159 0.203875 -0.204919 0.465868 0.181055 -0.009678 -0.156053 0.182471 0.096675 -1.283258 -0.816778 0.098011 0.294066 -0.335059 -0.637613 -0.448919 -0.082301 -0.224331 -0.209111 0.296291 0.721788 -0.079083 -0.572228 0.488987 0.153039 0.314690 0.875756 0.006628 1.029585 -0.587067 0.342955 0.158195 0.052470 0.013920 -0.431173 -0.312976 -0.355555 0.024225 0.079864 -0.506852 0.035585 0.062345 -0.061256 0.148131 -0.141455 -0.202685 -0.456032 0.554712 0.360843 0.611704 -0.002268 0.809428 -0.517080 -0.800671 0.314292 0.082457 -0.030295 0.156297 -0.173056 0.055984 0.391431 -0.527592 -0.313908 0.069199 0.091131 -0.180477 0.504556 0.547313 -0.041300 -0.034629 -0.060277 0.158443 0.392665 -0.351993 0.394544 -0.549021 0.087544 0.528061 0.074920 -0.905942 0.085800 -0.368357 -0.039704 0.373443 -0.092061 0.220311 -0.047792 -0.300787 0.118345 -0.190505 0.470826 -0.071230 0.073881 0.194722 -0.409967 -0.105709 0.091195 0.654625 0.486421 0.277706 0.034885 -0.089388 0.143107 -0.314672 0.319541 -0.079058 0.102813 0.200969 0.258939 0.293667 0.061406 0.075269 0.385443 0.205182 -0.261926 0.495037 0.332570 0.632586 -0.397021 0.073128 -0.073867 -0.379686 0.487394 0.945075 -0.600953 -0.303167 0.210521 0.225672 0.186985 -0.730537 -0.254369 -0.129260 -0.498976 0.529199 0.057084 -0.038519 -0.161583 0.761849 0.079371 -0.607472 0.670054 0.104085 0.027137 -0.068506 -0.286619 -0.201461 0.384895 -0.360668 -0.129935 0.255893 0.492570 -0.339641 -0.360827 -0.085572 0.509448 -0.145639 0.068426 -0.405340 0.081152 0.569407 0.677682 0.398620 0.050880 -0.266072 -0.404205 -0.073608 0.095880 -0.029967 -0.119996 0.204184 -0.474666 -0.074850 -0.018161 -0.220651 +PE-benchmarks/longest-palindromic-subsequence.cpp__max(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 6.107055 0.545195 3.056801 -2.542536 0.555099 2.783643 2.002884 -5.961231 -0.185222 15.051099 3.606645 -3.061712 -1.928440 4.777179 -1.586076 -4.435846 5.469023 6.781261 1.228337 -3.492357 -2.487382 0.650334 -1.640882 -6.594519 3.724672 -4.195512 2.462855 3.650851 -3.601672 5.469603 -4.165311 -1.246937 0.937023 11.864327 0.958759 0.652548 -2.489015 8.524464 -9.900716 10.707640 -10.212432 -10.277630 11.309410 2.425965 2.983457 -1.729821 -1.011433 3.042484 1.665914 -8.396148 -0.212687 -5.587930 4.800319 -6.661997 -1.365704 9.978199 -9.135424 -2.903257 1.439725 -8.071873 -10.467945 -0.725162 6.919358 2.764659 -7.966632 -7.658666 2.999101 4.896674 -1.604413 2.295215 -9.827032 -15.066604 4.045369 2.614320 -4.258305 1.084099 -2.216761 -7.547562 3.987954 2.642080 -4.705158 -4.832963 3.500383 -3.016397 1.164566 6.709319 12.591871 -15.512773 3.505770 -12.869949 9.914215 -4.176775 12.734151 8.339055 -2.935449 4.017825 5.018369 9.313297 0.739579 -0.318491 10.002599 3.308600 1.847682 -3.659760 5.643613 8.195358 -9.466790 -10.246086 -5.494975 -4.741211 3.009673 -2.303840 -8.519898 0.861161 -12.290011 1.717824 1.799912 -2.712966 -1.692101 11.955885 -16.386358 -4.508384 3.428863 -2.337269 9.729552 6.158404 2.154187 2.335175 1.180378 7.707546 -1.964472 -4.930535 -3.844650 6.221099 -7.044857 -3.898922 -2.716175 1.759567 5.192938 -11.760803 -10.904153 -13.954583 -3.241990 9.827442 -3.016572 8.851258 15.665118 -4.052861 -6.337955 2.994311 -4.206718 -2.261597 10.677031 3.191193 16.545455 -15.938047 9.353385 -2.194121 6.824498 5.986196 10.359472 -3.954194 -6.002802 6.734376 0.100405 -0.693752 12.086085 -3.217653 1.689112 -1.751098 2.938327 1.853159 -0.068191 9.072081 -11.000955 7.785458 -6.362864 14.518824 -10.890631 -6.086771 3.347279 -11.721706 -7.482656 -5.696282 -0.198055 -2.893094 10.916419 -8.206987 -5.982536 -2.932860 -4.760779 3.072976 10.003186 -4.078746 -0.830852 -2.795464 -7.502786 10.290191 3.041983 0.005722 -1.309721 -7.602397 0.160286 5.789895 -3.526240 -10.166477 -2.686383 -8.694720 -1.080733 -2.374672 -0.415502 7.996377 -7.794898 -3.179994 1.252143 -1.757748 0.730812 -5.389049 -6.691506 4.680367 -1.896360 0.254381 2.398835 13.452217 8.661922 8.452716 0.250235 -3.791839 2.751889 -7.665692 -9.355352 7.115325 1.491401 6.731797 3.812916 5.410924 -0.850967 3.460122 4.108628 -3.728539 6.480905 8.907207 2.645792 9.442211 -3.422433 3.171446 3.590163 -7.727107 6.516412 10.003399 -3.631626 -4.495062 3.434509 -1.990455 -6.796761 -2.565820 -0.011807 -1.795802 -6.565038 3.076438 7.575745 -0.210213 -8.357128 16.845731 3.240123 -17.751515 9.098532 0.037274 2.184175 11.083698 -5.755346 6.094546 3.334665 4.618915 3.977443 3.631289 10.126257 -11.641135 1.901241 -1.064744 7.010085 7.393700 -4.667285 -17.956818 4.451831 3.623456 11.343000 4.329898 11.180365 -6.720418 6.518653 -4.164796 -5.038038 -0.048718 -2.887396 6.721268 -0.763858 1.410467 -15.941124 5.355580 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.269774 0.175633 0.145983 -0.508873 -0.537831 0.393836 -0.888128 -0.455020 0.041357 -0.400838 0.426580 -0.627844 -0.430535 0.579795 -0.340491 -0.960881 -0.065307 -0.081417 -0.057046 -0.395013 -0.040411 -0.074568 -0.113529 -0.265646 -0.106761 -0.189494 0.012801 0.111119 1.179635 -0.308604 -0.745097 0.059983 0.166295 0.979746 0.333977 -0.157993 0.380942 1.111869 0.842558 0.052867 -0.731110 -0.537977 0.548349 0.138719 -0.380157 -0.350435 -0.356169 0.358311 -1.472123 0.525587 0.386031 -0.344849 -0.140239 -0.149824 -0.073820 0.833735 -1.389243 1.394916 0.045530 0.321760 -0.015767 -0.304933 0.252572 0.107896 0.613215 -0.329895 0.346464 0.683677 -0.807858 0.070643 -0.438956 -0.835728 1.579833 0.313530 -0.478441 -0.014192 0.009917 -0.297078 0.266591 -0.633989 -0.719313 -0.032895 0.438670 0.326891 0.888125 0.197034 0.077556 -1.221749 -0.153995 -1.308926 0.477217 -0.615553 0.747530 0.686697 -1.255566 0.026815 0.169268 -0.351334 0.435192 0.263814 0.873323 -0.192422 -0.048088 -0.187568 0.308731 0.077379 0.148227 0.014289 0.166127 -0.726745 -0.539560 0.223568 -1.485194 0.118606 -0.914045 0.740177 -0.136743 0.222967 -0.202802 -0.360277 -0.611189 -1.249064 -0.255553 -0.155873 1.162884 0.803238 -0.169206 0.592612 -0.141386 0.944655 0.023573 -0.274435 -0.424157 0.195915 0.390604 -1.348638 -1.747267 0.322608 0.759462 -0.508946 -1.125596 -0.555278 -0.294524 -0.331496 -0.199939 1.016866 1.269074 -0.154434 -0.722549 0.870912 -0.178909 0.746915 1.763657 0.024291 1.425972 -0.858481 0.561443 0.086140 0.101724 -0.275456 -1.237280 -0.308377 -0.095402 0.103374 0.264508 0.436509 -0.036907 -0.105840 -0.332325 -0.277085 -0.146430 -0.338218 -0.826744 0.900467 0.646227 0.563436 0.472713 1.353543 -0.821391 -1.379010 0.550642 0.117009 -0.085203 0.324703 -0.265927 -0.166736 0.697686 -0.828492 -0.540991 0.207114 0.245013 -0.288130 0.339684 1.821189 0.030508 0.101208 0.056431 0.372186 0.975749 -0.162758 0.404255 -0.957747 -0.049563 0.924413 -0.182556 -0.661503 0.196757 -0.593725 0.003930 0.617637 -0.117898 0.218359 -0.356716 -0.609855 -0.240510 -0.081327 1.150325 0.212653 -0.491284 0.433080 -0.406774 -0.333194 0.358110 0.816622 0.797432 0.558792 0.438040 -0.285941 0.352572 -0.276280 0.812413 -0.349969 0.330799 0.730551 0.320047 0.422184 0.150397 0.098249 0.467517 0.413869 -0.347432 0.612554 0.404175 1.234811 -0.407147 0.295585 -0.371451 -0.653646 0.760493 1.811914 -1.075933 -0.117871 0.394134 0.502941 0.448683 -1.648105 -0.252175 -0.301229 -0.383062 0.298851 -0.033962 0.010844 -0.414830 1.103886 0.182804 -0.917688 1.038161 0.136097 -0.036286 0.118025 -0.451919 -0.525857 0.439890 -1.043592 0.157640 0.516009 0.711684 -0.436140 -0.009564 -0.250749 0.842483 -0.692949 0.137416 0.195556 0.416311 0.883700 0.847844 1.093892 -0.185469 -0.452850 -0.878254 -0.090151 -0.374334 -0.188174 0.015904 0.474843 -0.579690 0.121373 0.145303 -0.811172 +PE-benchmarks/aho-corasick-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 7.677689 0.320407 7.599931 -3.399131 0.330788 3.173593 1.223330 -6.635717 2.385955 19.766393 4.524458 -4.423798 -4.112215 8.644280 -3.670484 -5.907265 7.014439 6.137642 3.122300 -3.087059 -1.667056 1.672756 -1.150726 -7.763458 6.211958 -4.601024 3.227128 7.125350 -1.819305 6.053237 -6.380149 -1.023533 1.193102 16.508868 -0.643461 0.262495 -0.200253 14.470629 -14.631767 15.787112 -13.756208 -14.978636 16.379251 2.983048 2.207850 -2.196645 -1.435568 4.989988 -5.448302 -11.090516 1.727116 -5.936571 5.613645 -9.613105 -0.738639 13.752992 -19.406935 -1.007035 0.949117 -7.153192 -12.179166 -1.984069 7.773488 2.520413 -8.153888 -9.919944 4.042229 4.696576 -6.329438 3.173498 -10.670842 -17.466400 9.502289 2.006217 -6.528747 3.395766 1.149341 -11.009950 7.114973 -1.666352 -7.190039 -6.421528 3.816029 -6.292810 6.029161 7.816070 14.200237 -21.111878 4.583738 -16.822020 14.800058 -8.810564 15.932797 13.169559 -9.603626 6.773651 6.877533 14.111244 1.840060 -0.771742 15.560062 6.653192 3.141914 -4.076946 8.041352 10.542562 -13.769533 -12.688140 -10.027996 -8.003732 2.615043 -4.567194 -14.367770 -0.915214 -14.759953 5.016272 5.415488 -4.612071 -3.418976 15.491070 -25.229414 -3.127292 3.818171 -2.492804 11.777408 9.672716 1.369220 1.955530 2.641861 13.343167 -4.079099 -7.245831 -3.766071 7.329091 -8.830653 -6.012195 -4.763998 0.666018 5.599026 -14.291642 -15.832613 -22.070445 -3.711242 10.883570 -2.363269 13.213044 23.034269 -3.013330 -9.218784 6.247485 -6.946006 -0.902754 16.972412 4.120836 20.980525 -19.950941 10.016793 -4.857868 7.544251 7.413259 13.614574 -3.841053 -6.944479 7.842302 1.693960 -1.197865 13.862370 -2.798729 2.362129 -6.223289 2.818251 -1.854747 -1.826172 15.134121 -15.115847 10.786879 -9.529621 21.622790 -13.218803 -11.624273 5.137285 -17.668812 -7.255558 -9.908577 -3.987653 -2.644229 13.601432 -13.803388 -8.726818 -5.779868 -3.791383 3.755513 12.845521 -5.157844 0.047796 -4.180129 -8.127918 15.344965 4.560109 -1.447230 0.099978 -13.028491 -0.923831 8.373599 -5.910293 -16.758813 -0.664156 -12.150152 -0.993968 0.318263 -1.237552 9.376014 -12.060765 -6.886815 1.411770 -3.304319 0.802798 -7.537539 -14.820710 5.206274 -2.195771 0.305275 7.364344 16.954216 13.805031 10.189208 0.527336 -3.194294 3.553618 -9.714185 -10.911534 8.615426 1.942123 9.211985 4.755264 9.141230 0.801010 3.521678 3.661842 -0.705601 5.181475 13.606545 6.110883 13.422464 -4.182170 3.464450 4.045930 -9.046600 9.246323 13.687150 -7.660312 -3.917562 5.637716 0.491190 -6.050694 -4.659940 -1.076320 -4.934608 -6.761225 5.193467 6.930751 -1.331034 -8.414525 21.450511 3.893639 -24.234787 11.944064 -0.882389 2.490501 12.902821 -6.903403 5.370620 5.162340 0.952530 7.514317 3.542626 13.282532 -14.582308 3.545532 -1.432240 10.831562 10.569924 -3.400240 -24.999765 4.488541 3.215692 14.435705 8.197455 15.556092 -8.370098 4.859598 -6.441363 -9.289998 -1.429076 -4.302631 9.101417 -0.962759 1.992107 -21.553399 3.295201 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::queue >, void>() = 0.226572 0.094255 0.291263 -0.311651 -0.459373 0.084768 -0.233078 -0.133418 0.029858 -0.113958 0.088816 -0.223284 -0.245212 0.489917 -0.274882 -0.463013 -0.174274 -0.302938 -0.102512 -0.170186 -0.026051 0.177270 -0.055753 0.103674 0.051511 -0.103571 -0.067796 0.158845 0.374909 -0.305070 -0.253406 -0.037985 0.002391 0.495776 0.012915 -0.082139 0.248607 0.865668 0.254397 0.163636 -0.370934 -0.434056 0.211109 -0.009912 -0.092398 -0.352986 -0.303083 0.242312 -0.573147 0.260695 0.316910 0.065806 -0.277267 -0.044777 0.221008 0.281821 -0.942519 0.686915 0.019617 0.174680 -0.002658 -0.169453 -0.094372 -0.100592 0.180782 -0.231815 0.182610 0.372947 -0.443658 0.179457 0.017322 -0.348309 0.831807 0.161840 -0.222376 0.166715 0.370340 -0.230953 0.349882 -0.581460 -0.485880 -0.015706 0.144644 -0.033440 0.651041 0.007419 0.003017 -0.678716 0.184726 -0.653656 0.190112 -0.587089 0.204154 0.531818 -0.578533 0.229738 0.191366 0.074566 0.315965 0.154941 0.550049 0.160432 0.099392 0.180980 0.178006 0.002784 -0.037444 -0.034174 -0.219512 -0.483360 -0.232912 -0.037525 -0.897173 0.053290 -0.033437 0.342671 0.000170 0.171261 -0.016790 0.029532 -0.660394 -0.316609 0.077816 -0.082374 0.274482 0.399365 -0.228604 0.129824 -0.271344 0.616077 -0.150541 0.106362 -0.104502 0.077965 0.052054 -0.576954 -0.869592 0.019700 0.205854 -0.179780 -0.555125 -0.344667 -0.135329 0.005724 -0.130944 0.663592 0.880727 -0.144248 -0.411138 0.647351 0.123402 0.343402 0.716087 0.077860 0.557634 -0.175037 -0.082849 -0.141106 -0.109355 -0.137525 -0.710171 0.126361 -0.037163 0.137948 0.233567 -0.039859 0.379875 -0.218249 -0.273566 -0.160237 -0.017231 -0.305723 -0.372537 0.627779 0.300834 0.512470 0.226063 0.729704 -0.222089 -0.625233 0.199005 -0.178273 0.190550 -0.166170 -0.072009 -0.079335 0.265270 -0.494579 -0.302517 0.012131 -0.109802 -0.235894 0.070440 0.661926 0.148901 0.081715 0.303270 0.320772 0.690907 0.010427 0.207022 -0.672487 0.112953 0.274431 -0.135393 -0.480092 0.251913 -0.099427 -0.000924 0.253001 -0.047686 -0.013291 -0.167789 -0.312839 -0.175642 -0.107737 0.350832 0.154103 -0.319489 0.047051 -0.205503 0.128355 0.221367 0.224365 0.748443 0.281942 0.384206 0.004165 0.147680 -0.050630 0.376521 -0.072932 0.173856 0.302178 0.152694 0.408162 0.245172 0.009230 0.275050 0.473839 -0.141516 0.391223 0.260962 0.873369 -0.261142 -0.036956 -0.264404 -0.052320 0.415700 0.923756 -0.480010 0.209402 0.285308 0.428429 0.159662 -0.676068 -0.125229 -0.228288 -0.111438 0.182095 -0.067032 -0.207347 0.055321 0.470221 0.015396 -0.520070 0.321863 0.085245 0.073556 0.000277 0.004950 -0.242353 0.329767 -0.649635 0.214889 0.239127 0.270948 -0.288728 -0.149165 -0.055917 0.389671 -0.294630 0.379022 -0.127774 0.210771 0.408494 0.401600 0.306919 -0.035727 -0.227499 -0.620070 0.175641 -0.245213 -0.256188 0.262568 0.215395 -0.419147 0.146590 -0.010603 -0.701761 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::size() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::front() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::pop() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::~queue() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/aho-corasick-algorithm.cpp__findNextState(int, char) = 1.266611 -0.050231 0.840748 -0.453653 -0.104371 0.553725 0.463006 -1.140254 0.226715 2.556438 0.967697 -0.920861 -0.051394 1.600845 -0.365378 -0.569916 1.111966 0.951783 0.162978 0.122173 -0.458111 0.320447 -0.450930 -1.103544 0.875166 -0.218765 0.429795 0.873949 -0.646749 0.664519 -1.330405 -0.162604 0.083823 2.483042 0.198259 -0.049507 0.069281 2.140197 -2.412483 2.634025 -1.955471 -1.620019 2.261917 0.382133 0.318414 -0.298433 -0.598253 1.023343 -0.095799 -2.064615 0.482807 -1.003803 0.779221 -1.301249 -0.032155 2.222163 -2.569014 -0.324521 0.599966 -0.811262 -1.840049 -0.282513 1.232467 0.354276 -1.763099 -1.612245 0.650169 0.688893 -0.472358 0.237951 -1.907509 -3.200100 1.578174 0.241206 -1.106092 0.305316 -0.241364 -1.933316 1.176674 0.076590 -1.197833 -0.755489 0.447093 -1.062454 0.950759 0.949014 2.143429 -3.250947 0.828934 -2.838746 1.958534 -1.428540 2.310332 2.115450 -1.403602 0.675745 0.889597 2.280412 0.443817 0.500816 2.159016 0.877890 0.119249 -0.855891 1.287672 1.602679 -2.016970 -1.956208 -1.449396 -1.317629 0.550985 -0.317108 -2.248597 0.185399 -2.194561 1.024152 0.404860 -0.373279 -0.231033 2.469738 -3.164128 -0.146879 0.595500 -0.380590 1.823932 1.950196 0.118558 0.370371 -0.180313 1.775354 -0.418415 -0.849090 -0.785948 1.165490 -1.684625 -1.070847 -0.657060 0.261202 1.074606 -2.175649 -2.383032 -3.511785 -0.302030 1.635789 -0.740239 1.883667 3.330289 -0.808570 -1.251539 1.001979 -0.247698 -0.270090 2.327062 0.404370 3.495840 -3.115174 1.673967 -0.483851 1.041473 0.634358 1.401897 -0.650739 -1.174439 1.109164 -0.011261 -1.255201 3.780620 0.039437 0.203299 -0.058121 0.531815 0.141454 -0.645895 2.525504 -1.748792 1.376788 -1.097207 3.328507 -1.940288 -1.232509 0.952030 -1.683399 -0.940916 -1.550132 -0.715116 -0.221652 2.243051 -1.775678 -1.156188 -0.438740 -0.647240 0.341163 1.937718 -0.210504 -0.121992 -0.520856 -1.270864 1.713033 0.771133 -0.267520 0.120289 -1.876229 -0.003552 1.167854 -1.165453 -2.230289 -0.292339 -2.033303 -0.207843 -0.289080 -0.170791 1.434843 -2.137801 -1.072505 0.456898 -0.305113 0.296215 -0.876493 -1.990916 0.767953 -0.577403 0.158056 1.066222 2.625915 1.909518 1.870873 0.298898 -0.570585 0.320098 -1.144420 -2.086782 1.192577 0.073283 1.667214 0.854808 1.132815 0.154431 0.540636 0.276384 -0.694645 1.192727 2.117892 1.253852 2.077639 -0.340740 0.499876 0.746703 -1.451029 1.598756 2.035143 -1.416240 -0.656931 0.616118 -0.049042 -1.412597 -0.528583 -0.072294 -0.507315 -1.401708 0.466456 0.787319 0.098393 -1.433655 3.439802 0.312227 -3.683271 1.546461 -0.159307 0.632587 2.240077 -0.776000 1.377634 0.562081 0.488471 1.295081 0.754553 2.174596 -2.040643 0.102469 -0.196748 1.388741 1.558288 -0.463875 -3.741471 1.090680 0.535073 2.201345 0.961346 1.918246 -1.373469 1.191164 -0.877580 -1.285933 0.009895 -0.754758 1.537066 -0.028992 0.123080 -3.619242 0.599740 +PE-benchmarks/aho-corasick-algorithm.cpp__searchWords(std::__cxx11::basic_string, std::allocator >*, int, std::__cxx11::basic_string, std::allocator >) = 2.397579 1.515993 2.268180 -1.644670 -1.268828 1.330784 -0.306320 -3.023818 0.315502 6.868734 1.461015 -1.662490 -2.340402 2.261623 -2.079849 -2.861091 0.957591 0.882102 0.415776 -2.769513 -0.439777 0.653729 -0.539982 -2.337699 1.243911 -1.946650 1.196640 1.751807 0.557241 1.105477 -1.764670 -0.450899 0.935340 5.368150 0.383857 0.257482 -0.498127 4.378616 -3.149801 3.084507 -6.439599 -6.050779 4.805759 1.128796 1.363691 -2.819018 0.038758 1.751919 -2.297056 -1.742270 0.192550 -2.180283 1.364200 -2.650791 -0.241021 4.140790 -6.522512 2.150843 0.100611 -3.113963 -3.909616 -0.479857 3.078924 1.288589 -0.960050 -3.346008 1.101706 2.537912 -2.586080 1.703625 -3.198453 -5.423394 2.909278 0.559293 -2.403044 0.611601 -0.431713 -2.894287 2.059334 -2.359890 -2.338593 -1.903878 2.380124 -0.833442 1.062011 3.147257 3.864695 -7.103279 0.620790 -5.654848 4.449095 -1.992176 5.219280 3.208740 -2.527708 1.760052 2.032136 1.877943 1.783199 -0.239811 4.669503 1.342336 2.343931 -0.879376 1.902058 3.142353 -3.480484 -3.347696 -2.328985 -3.273573 0.219663 -0.414972 -4.936871 -0.242542 -4.802188 1.551348 1.327171 -2.038558 -0.678366 4.131917 -8.909835 -3.563540 0.944287 -0.745403 4.594850 2.690183 0.613729 1.747104 1.049692 4.212364 -1.266473 -1.932818 -1.260895 2.299268 -2.012542 -4.004838 -3.807460 1.017348 2.168812 -4.309586 -4.931653 -5.902843 -1.756670 2.640979 -0.931424 3.792996 7.383927 -1.371151 -4.627109 2.284170 -2.665601 -0.632537 6.050659 1.240847 7.148063 -6.370981 3.448614 -1.174585 2.156225 2.356069 3.856366 -1.518243 -2.455320 2.335119 0.788830 -0.179339 0.727660 -1.200399 0.161070 -2.632832 0.888348 -0.748152 0.023116 3.581679 -3.923561 4.297648 -2.851585 6.645420 -5.534990 -4.883031 1.231452 -5.862274 -2.291006 -0.977063 -1.112540 -0.796906 4.625815 -4.743296 -2.575943 -1.625462 -1.595552 0.605277 4.101527 -1.696375 0.028452 -0.899873 -2.256358 5.373034 2.180932 -0.386438 0.188243 -3.790000 0.101014 3.388702 -0.362255 -6.279767 -0.672120 -4.208735 -0.398574 1.049457 -0.532535 3.353180 -2.139925 -1.544938 0.170572 -1.755422 1.317827 -1.996476 -2.168244 2.039114 -1.923752 0.233540 0.981776 5.591286 3.844863 3.579046 0.557549 -1.192102 1.622558 -4.264336 -0.549679 2.340499 2.002472 1.806249 1.776179 3.185607 0.365515 1.236001 2.303715 0.372765 0.574721 4.508154 0.384606 4.921160 -4.266005 2.052202 0.210803 -2.496746 2.522417 5.588949 -2.813869 -1.913093 1.739902 0.250254 -0.889821 -2.573275 -0.621101 -1.619381 -1.978253 1.897618 3.500293 -0.880133 -2.907247 7.076629 1.668785 -7.094291 5.210460 -0.188876 0.469876 2.954691 -2.792633 0.081752 2.104609 -0.445828 1.196571 2.004255 4.187797 -4.948942 -0.240783 -0.643666 4.451884 2.294461 -1.025189 -7.599342 1.108730 2.398278 5.236123 2.619220 4.747396 -3.173381 -0.068095 -1.250830 -2.320491 -0.738402 -0.466081 2.910778 -0.911198 0.779641 -5.020356 0.608269 +PE-benchmarks/aho-corasick-algorithm.cpp__main = 0.166831 -0.527729 4.587150 -4.173397 -3.912825 0.518475 -4.108984 2.395486 2.733569 2.652825 1.233955 -4.381392 -9.941365 4.919231 -1.726298 -8.796741 2.340110 -0.437914 3.401521 -3.734232 1.299618 1.249215 3.070277 -0.294980 2.500987 -2.458740 -5.187148 4.586922 13.440278 -2.341600 -1.550927 2.451389 0.174442 5.431433 -4.635071 -2.044100 3.608812 9.654193 0.648205 3.144155 -5.162587 -5.306025 6.447192 1.616147 -1.635285 -2.812288 -1.750244 2.675213 -13.935101 0.394544 3.196336 1.716352 0.360379 -3.265739 0.510785 7.043560 -15.938430 7.473448 -2.300966 1.349606 1.387295 2.458369 -1.565183 1.511618 4.555646 -3.132325 0.545501 1.057126 -8.642215 0.227586 1.276275 -0.629910 9.676712 1.059439 -2.777804 4.965607 7.867480 -1.584284 4.476125 -9.102656 -4.755712 -0.407679 1.385121 -1.743728 8.436149 0.217787 2.129481 -7.847394 0.718114 -5.441226 8.060748 -7.594566 3.508836 7.115862 -7.117061 3.994631 2.725231 -3.356688 4.406500 0.439743 10.229371 2.472160 4.129342 2.128782 1.181884 0.861302 -2.602054 -0.354191 -4.279360 -5.133192 -4.194504 -2.123686 -9.641091 -0.395242 -2.511162 5.773780 8.247056 -2.146361 -1.898001 0.970679 -6.004513 -2.549649 0.193420 -0.729701 2.371178 6.185274 -1.721513 -1.384430 1.534308 11.097969 -2.722982 -0.590365 3.063056 1.453510 3.660637 -6.635767 -5.986694 0.074937 -0.321534 -3.441978 -5.579625 -5.530106 0.344341 -1.147013 0.503992 7.796268 13.078673 2.057208 -4.151806 7.053892 -4.666742 5.675813 9.757396 0.536298 8.542991 -4.400882 -1.226942 -4.183909 0.665967 2.038308 2.444524 2.876439 0.450145 1.054373 4.525879 2.596867 -4.522293 -2.739867 0.290252 -5.494511 -0.752790 -5.298546 -4.647997 6.239971 0.325614 6.849404 1.947378 10.365825 0.091096 -12.911965 5.155017 -1.292012 -0.009748 -0.439051 -3.479932 1.556133 -1.416053 -7.000615 -3.563314 -6.370021 1.772883 -1.688615 0.754142 5.019088 3.735612 1.118629 0.801883 7.127789 3.600770 0.328443 2.123829 -11.371181 -1.319426 2.248100 -4.074091 -7.325956 4.805848 -2.430229 2.584511 8.202678 -2.173134 2.146992 -2.228816 -6.485524 -2.507397 -1.572839 3.402382 -2.468661 -7.607221 0.261446 1.587641 0.637585 5.228341 4.721705 9.740149 1.959953 0.433724 3.352751 2.115976 0.198849 4.158097 -1.461275 -0.217141 2.776626 1.087756 3.750778 0.759056 0.731504 5.501833 6.363657 -4.990801 5.287327 1.105891 7.109126 -1.291270 -1.885069 -0.354806 -3.858906 4.334885 9.830031 -6.214878 1.191095 5.164515 5.924978 4.005015 -9.477200 -0.661072 -4.467974 0.172822 5.866073 -1.653752 -1.685295 -0.115279 2.313795 3.367933 -9.041044 8.131122 -0.571049 -0.388303 0.595892 -0.285242 -4.805790 2.952742 -10.879980 0.984318 1.794017 2.649905 -4.934764 1.416920 0.063927 6.773455 -2.439180 4.065877 -6.254496 -3.209809 3.040660 3.351873 7.119140 3.517650 -1.967077 -10.744808 -0.178784 -5.129063 -5.674132 -2.749749 -1.491022 -6.012961 2.493633 0.675611 -5.268070 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::~deque() = 0.776679 0.518599 0.624997 -1.001748 -1.766920 0.168606 -0.975312 0.066610 0.098340 0.599709 0.590775 -1.084616 -1.124598 1.443970 -0.667859 -1.483198 -0.215912 -1.216275 -0.047521 -0.706824 0.177142 0.656490 0.389185 0.212526 0.135102 -0.071436 -0.961556 0.401354 2.312114 -1.187596 -0.727651 0.325734 0.099078 0.958946 -0.391245 -1.270803 0.732880 2.215990 0.180470 -0.344966 -1.035246 -0.965353 0.922135 0.204040 -0.152832 -0.877798 -0.807379 1.010501 -1.460536 0.222355 0.901377 0.343760 -0.425910 -0.293192 0.106133 1.048885 -2.993046 2.247298 -0.098738 0.690629 0.266664 0.229838 0.174988 0.341650 1.003364 -0.858826 0.409684 0.563775 -1.431022 -0.256346 0.089729 -0.612144 1.840986 0.146717 -0.418554 0.462843 0.930361 -0.603065 1.212596 -2.223203 -1.383656 0.256214 0.152024 -0.353482 1.555782 -0.206251 0.049888 -1.906926 0.632838 -1.681793 0.880927 -1.288674 0.427201 1.358608 -1.481689 0.320767 0.367123 -0.368505 1.730091 0.409921 2.008613 0.293517 0.880851 0.622976 -0.036242 0.326317 -0.278285 0.517708 -0.674598 -1.619311 -0.663679 0.128940 -2.108126 0.536756 0.016948 0.458722 0.996154 -0.366651 0.005906 0.364328 -1.251797 -1.265345 0.014849 -0.102578 0.543550 1.485479 -0.730789 0.160555 -0.554171 2.018631 -0.416071 0.339051 0.637938 0.250549 0.244754 -1.998810 -2.012385 0.619266 0.460663 -0.722268 -1.203067 -1.227878 0.462996 -1.101980 -0.613880 1.882976 2.581279 -0.234187 -1.157053 1.812527 0.035589 0.600538 2.145633 -0.386607 2.258840 -0.675789 -0.544558 -0.182583 -0.495526 -0.195034 -1.144668 0.586299 0.252111 0.004436 0.734193 -0.036985 -0.322905 -0.200660 -0.622964 -0.280290 0.301352 -0.785198 -1.122046 1.143605 1.194158 1.036320 1.272711 2.086572 -0.045943 -2.103792 1.196229 0.122996 0.235008 0.020466 -0.639518 0.228991 0.239342 -0.870034 -0.368000 -0.676448 -0.036308 -1.109535 0.092228 1.633627 1.091626 0.640021 0.754037 0.585691 1.615371 0.170267 0.797104 -2.247684 0.068025 0.903529 -0.569493 -1.570823 0.423739 -0.792203 0.459092 1.640025 -0.651629 0.375888 -0.255793 -1.274922 -0.434899 -0.179347 1.098287 0.208592 -0.735415 0.148232 -0.626106 0.732048 0.467301 1.118660 1.608646 0.941168 0.908910 0.439403 0.438919 0.261649 1.383305 -0.574631 0.025447 0.525026 0.629651 0.864685 0.482145 0.383440 1.354227 1.044475 -1.151208 1.193006 0.034082 2.171339 -0.939549 -0.215137 -0.862261 -0.359004 1.131241 2.748380 -1.186201 -0.108087 0.759609 0.940558 0.561314 -1.754186 0.082826 -0.892010 0.129179 0.312357 -0.007078 -0.050505 -0.056459 0.657524 0.189045 -1.747065 1.799211 -0.105530 0.336942 0.257847 0.044708 -0.561335 0.379502 -2.274317 0.150495 1.287966 0.674811 -0.794495 -0.265181 -0.069185 1.640333 -1.398714 1.245493 -1.188782 0.556300 1.354152 0.666251 0.794856 0.154284 -0.995263 -2.478496 0.599393 -0.527723 -0.811437 0.304153 0.146649 -1.768780 0.646554 0.520529 -1.221481 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_destroy_data(std::_Deque_iterator, std::_Deque_iterator, std::allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::begin() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::end() = 0.290136 0.067520 0.377242 -0.597606 -0.745467 0.310622 -0.318106 -0.294693 0.073947 -0.163692 0.411632 -0.234445 -0.145437 0.643134 -0.083770 -0.591216 -0.151545 -0.631022 -0.173273 -0.063203 -0.030539 0.199794 -0.187854 0.202640 -0.087798 -0.048506 -0.131309 0.255062 0.385710 -0.497324 -0.576946 -0.075562 -0.242794 0.718474 0.155018 -0.277890 0.399102 1.291336 -0.031424 0.142265 -0.279591 -0.497666 0.245532 -0.033019 -0.331049 -0.157683 -0.461880 0.418230 -0.401385 0.008638 0.744410 0.020336 -0.123359 0.075734 0.282628 0.345671 -1.113723 0.534455 0.163586 0.278226 -0.033668 -0.211046 0.076554 0.143518 -0.083864 -0.337526 0.572270 0.328659 -0.279087 -0.129992 -0.056464 -0.925780 1.147020 0.349030 -0.199661 0.117903 0.558769 -0.644463 0.690652 -0.230117 -0.923704 0.094624 -0.102546 -0.618074 1.065886 -0.300918 0.173522 -0.996355 0.459177 -1.112017 0.182938 -0.725127 0.233556 0.779362 -0.768920 0.067390 0.386733 0.633872 0.461008 -0.097700 0.825125 0.154179 0.054113 0.305837 0.504586 0.039221 -0.245939 -0.010313 -0.603159 -0.899673 -0.074009 -0.282580 -1.213590 0.330225 0.014865 -0.020138 -0.065301 0.162108 -0.071464 0.455446 -0.650609 -0.179502 0.083306 -0.110511 0.274739 0.847454 -0.440773 0.223212 -0.325745 0.865394 -0.369279 0.303231 -0.116932 0.159634 0.048122 -0.283432 -1.076581 0.296364 0.532570 -0.428814 -0.749627 -0.558221 -0.025969 -0.014843 -0.266210 1.191008 1.399240 -0.470875 -0.609408 0.944735 0.422169 0.247530 0.920637 -0.001908 0.953887 -0.309165 -0.172390 -0.390784 -0.322272 -0.369692 -0.939989 0.311068 0.206083 0.306726 0.194007 0.012748 1.269250 -0.182370 -0.546520 0.271691 0.211568 -0.406660 -0.811241 0.897671 0.706485 0.505326 0.851897 1.063332 -0.219557 -0.574987 0.403581 0.167704 0.183438 -0.555767 -0.379825 -0.016925 0.437042 -0.280751 -0.283196 -0.243601 -0.199459 -0.428562 0.026743 1.106419 0.448696 0.268757 0.426787 0.072600 1.337236 0.273148 0.108193 -0.974558 0.272660 0.478431 -0.437678 -0.198608 0.055916 -0.368858 0.064904 0.334282 -0.142826 0.296790 -0.536160 -0.531020 -0.240718 0.119724 0.453454 0.401642 -1.236626 0.115601 -0.174869 0.304346 0.443716 0.377861 0.931991 0.788540 0.880256 -0.075482 0.175827 0.316925 0.035808 -0.384462 0.013978 0.813540 0.357079 0.628031 0.392037 0.208175 0.479610 0.575274 0.107502 0.647390 0.264046 1.364150 0.087636 -0.092635 -0.411945 -0.059240 0.641587 1.404097 -0.473411 0.405588 0.342727 0.639644 -0.181423 -1.048494 0.070280 -0.376611 0.165910 -0.025950 -0.016125 -0.075926 -0.169939 0.719028 -0.023420 -0.952796 0.257636 0.041380 0.292663 0.518800 0.026026 0.028512 0.149009 -0.959071 0.753413 0.599482 0.407409 -0.458272 0.109337 0.033075 0.553553 -0.699502 0.578667 -0.323558 0.630200 0.331401 0.495815 0.474495 0.105350 -0.612605 -0.530937 0.440859 -0.491268 -0.165592 0.412881 0.540466 -0.766068 0.289008 -0.463638 -0.816173 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::~_Deque_base() = 0.550673 -1.168000 1.242871 -1.287906 -1.498554 1.595977 -2.538282 -1.263808 0.684288 0.048691 0.492165 -0.208136 0.055660 1.592335 -0.451709 -2.059839 -0.289514 0.684875 0.648862 -0.528371 0.073266 0.225894 -0.615727 0.494595 -0.571699 -1.261468 0.496961 0.492399 0.960847 0.597270 -1.468753 -0.603976 -1.427896 2.206296 0.879792 0.695401 0.983825 3.441796 1.040038 1.953700 -1.088241 -2.159007 0.161562 0.250978 -0.257445 1.291654 -0.839621 0.267441 -2.398043 0.486350 1.840884 -0.684155 0.424983 0.677020 1.051865 -0.194300 -2.258382 0.496955 -0.412434 -0.024701 -0.264289 -0.870265 0.064049 1.152173 -1.322167 -0.556458 1.630941 2.509076 -0.905833 -0.021831 -0.031002 -2.577016 2.959221 1.303879 -1.405067 -0.112314 2.325157 -1.252437 1.318383 0.094727 -2.960295 -0.129036 -0.595371 -2.577890 2.805272 0.141759 2.223492 -2.885940 2.556542 -3.310307 1.259383 -1.467786 1.294038 2.310934 -2.555317 0.203105 1.881442 3.921495 1.168863 -0.632275 2.064484 1.115906 -1.263991 0.694112 1.944630 -0.055830 -0.581861 -0.401445 -1.318742 -2.037036 -0.539111 -2.057644 -3.626509 0.039168 -0.342077 1.758500 -0.909758 1.216963 -0.931763 0.933976 -3.774717 -0.885388 -0.286344 -0.350322 1.386281 0.871111 -1.109570 1.191565 0.130125 2.705513 -1.946713 -0.809455 -0.748357 0.514004 -0.642785 1.780025 -3.503243 1.075049 1.820323 -1.181932 -2.504136 -1.556475 -1.405603 2.061857 0.107804 4.657757 3.802720 -1.084747 -1.461884 2.004655 -1.351713 0.381760 3.440669 0.684305 1.499582 -0.987134 -0.038900 -2.119219 -0.249596 -1.001189 -2.041216 0.899787 0.640119 1.648566 0.371712 2.095147 3.234542 -1.298584 -1.596434 -2.831275 0.399061 -1.153805 -0.866198 2.618558 -1.762171 1.041501 1.000153 3.034385 -1.166466 -1.691140 0.500807 -2.402614 -0.161758 -1.097843 -0.234677 -1.056762 1.886533 -2.061573 -1.315184 -0.342465 -0.965315 -0.258470 0.097009 3.578220 0.611598 0.828389 0.777692 3.296391 3.544108 1.638288 -0.761540 -1.964763 0.541942 1.509892 -1.945254 0.489866 0.156940 -1.011114 0.198661 -0.246249 0.199305 0.717343 -2.659599 -1.306111 -2.265067 0.558096 1.847088 1.310459 -4.421390 0.711468 0.527040 0.678963 1.793355 0.605450 2.618534 2.222257 2.622678 -0.621453 0.674910 0.032692 0.583639 0.013909 1.632261 1.863330 0.297674 2.605854 0.755898 0.465453 0.859751 2.249552 1.407820 1.399829 0.253340 3.559961 0.089053 0.430486 -1.255076 -0.145019 1.540307 4.122855 -1.988288 2.543639 0.957517 1.557997 -0.224774 -2.948476 0.395220 -1.057807 0.795057 -0.816165 0.181032 0.047363 -1.137601 1.969557 0.778846 -2.563719 0.731822 0.155005 0.357398 2.233126 -0.482332 -0.306931 -0.033429 -2.505801 2.914438 1.384679 0.624570 -1.435214 1.137534 -0.139635 1.105400 -0.246661 1.217986 1.056764 2.028733 0.823642 1.787712 1.919384 0.266660 -1.593008 -1.208058 0.708165 -2.912529 -0.710041 0.899947 1.251893 -0.824699 1.145952 -1.353884 -3.540628 +PE-benchmarks/aho-corasick-algorithm.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator(std::_Deque_iterator const&) = 0.031370 -0.561012 1.149701 -1.276213 -1.779426 0.666494 -0.836028 -0.844650 0.442321 -0.156485 0.856224 -0.860011 -0.017879 2.268249 -0.361571 -1.274262 -0.182672 0.603262 0.132523 0.046861 0.328586 0.670560 -0.411291 0.455838 -0.362002 -0.526551 0.170667 0.896584 0.751538 0.482494 -1.154439 -0.495525 -0.536060 1.670146 0.482351 0.393057 0.493993 2.858976 -0.855137 2.629386 -1.234681 -1.203093 0.510643 0.212034 -0.224633 -0.963420 -2.108828 0.501605 -1.442631 -0.342426 1.659062 -0.092307 0.401398 0.360291 1.227726 0.449980 -1.966915 0.348748 0.169539 -0.155919 0.292410 -0.474284 -0.534039 0.810451 -1.684051 -0.565629 0.697235 1.273872 -0.247933 -0.052358 0.013193 -2.215830 2.707476 0.686074 -1.353177 0.123485 1.861621 -1.802231 1.479246 -0.300121 -2.243267 0.033505 -0.577673 -1.367074 2.089966 -0.172898 1.586903 -2.408025 1.069772 -2.678689 1.129058 -1.918049 0.585624 2.023345 -2.019714 0.268343 1.220389 2.296029 1.505370 0.336257 1.441652 1.549650 -0.150029 0.381684 1.789314 0.646703 -0.717541 -0.885731 -1.550825 -1.927737 -0.084908 -1.507293 -3.531302 0.093188 0.324920 0.774134 -0.609025 0.475437 -0.154695 1.453044 -1.969148 0.581066 0.487953 -0.283769 0.343839 1.583067 -0.962212 0.640230 -0.608434 2.020435 -1.290064 0.440425 -0.318471 0.499002 -1.348240 -0.163057 -2.182646 0.798262 0.908855 -0.801607 -1.789908 -1.991384 -0.570375 1.498602 -0.211792 2.008554 3.095849 -1.040957 -1.398110 1.784811 0.837518 -0.064011 1.841666 0.368084 1.863816 -0.667297 -0.271190 -1.789539 -0.774208 -0.829047 0.277122 0.881293 -0.121355 1.206630 -0.195462 -2.116912 3.680044 -0.929782 -1.263373 -1.375987 0.361185 -0.985453 -0.860401 2.645757 -1.279398 1.065263 -0.223225 2.275883 -0.640115 -1.314429 0.496249 -1.571328 0.150907 -1.543428 -0.245757 0.127687 1.607070 -1.507154 -0.907383 -0.512302 -1.006565 -0.483323 0.095088 0.663383 0.219693 0.626454 0.923334 1.824995 2.628021 1.106671 -0.113873 -1.659329 0.677464 0.892797 -1.247514 -1.237764 0.373400 -0.977030 0.065605 -0.931401 0.015803 0.380380 -1.892714 -1.110503 -1.241488 -0.556645 0.882907 0.808520 -3.201990 0.449293 0.079167 1.343655 1.209779 0.556981 2.438495 1.886442 2.117991 0.050190 0.314542 0.016439 -0.330938 0.594387 1.158017 0.369795 0.394405 2.262923 0.744437 0.161415 0.935408 1.531063 1.128066 1.216363 0.733637 2.684146 0.934509 -0.087257 -0.574752 0.003703 1.355624 3.463568 -0.322171 1.530551 0.744799 1.022066 -0.610368 -1.895864 0.165436 -0.657100 -0.341453 0.792153 0.005282 -0.209830 -0.464774 1.568570 0.245043 -2.204642 0.164554 0.080329 0.536820 1.631806 -0.137625 0.219486 0.270913 -1.521111 2.455607 1.059524 0.684726 -1.166304 -0.629242 -0.120080 0.294856 1.520586 1.236257 -1.173845 1.351147 0.808058 1.711562 0.548622 1.048964 -1.396364 -0.653807 0.723400 -1.657860 -0.716082 0.051239 0.740267 -0.889499 0.462463 -1.527048 -2.685875 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_destroy_nodes(int**, int**) = 0.238355 0.485997 0.841862 -1.264670 -1.470152 0.064475 0.521853 -0.369983 0.168488 1.316644 0.596431 -0.815864 -1.063916 1.895992 -0.260673 -1.039260 -0.010853 -1.202472 -0.217651 -0.010562 0.003653 0.988660 -0.135329 0.250757 0.300702 0.027185 -0.423248 0.791047 0.484808 -0.693957 -0.734777 -0.218732 -0.065345 1.428455 -0.186747 -0.199873 0.189123 2.440126 -1.601204 1.876084 -1.700749 -1.402752 1.022923 0.063734 -0.151867 -1.616017 -0.726505 0.976040 -0.562592 -0.771517 1.129263 0.272722 -0.160456 -0.362360 0.844089 1.094777 -2.503601 1.085809 0.368641 -0.026305 -0.103538 -0.262085 -0.014276 0.363171 -0.765066 -0.884123 0.245055 -0.033398 -0.858858 0.056965 -0.205653 -1.426294 1.455154 0.566760 -0.895830 0.545228 0.826275 -1.381451 1.401179 -1.786783 -1.416246 -0.035684 0.125510 -0.640154 1.416098 0.104042 0.664810 -2.229394 0.377124 -1.872194 0.999936 -1.633489 0.603779 1.798062 -0.677455 0.556506 0.500978 0.430725 1.334580 -0.018735 1.475889 0.876114 1.171194 0.523368 0.751520 1.042149 -1.222350 -0.781645 -1.382531 -1.656103 0.151959 -0.390153 -1.888188 0.290967 0.117607 0.150326 0.790471 -0.283167 -0.176229 1.198355 -1.953509 -0.284259 0.573915 -0.237895 0.559238 1.776132 -0.544534 0.172536 -0.596315 1.681825 -0.557640 1.060351 -0.078200 0.578960 -0.754358 -0.906612 -1.221781 0.192891 0.311504 -0.870968 -1.318851 -2.210701 -0.014733 0.315041 -0.592746 1.553315 2.893943 -0.882464 -1.402628 1.827701 0.503592 0.198780 1.006950 -0.053651 1.931269 -0.830565 -0.195543 -0.779646 -0.389998 -0.117635 1.890826 0.671274 -0.553521 0.472610 -0.007978 -1.718163 1.037804 -0.084789 -0.727774 -0.618059 0.237106 -0.963077 -0.963600 1.803713 -0.769962 1.374110 -0.236207 1.974361 -0.646125 -1.215562 0.892729 -1.151297 0.190570 -1.604236 -0.906860 0.580786 0.878265 -1.238963 -0.479451 -0.874052 -0.592828 -0.873953 0.282673 -1.077908 0.359343 0.162910 0.668318 1.616133 1.758351 0.231840 0.228567 -1.871509 0.598117 0.455565 -0.446337 -1.867749 0.339764 -0.869508 -0.128459 0.725186 -0.418513 0.390883 -0.747758 -0.931137 0.086188 -0.715165 0.313716 0.044686 -2.008142 0.178601 -0.290432 1.044578 0.803404 1.016195 1.625869 1.373262 1.184634 0.227458 0.087655 -0.042451 -0.432947 0.257837 0.204679 0.090798 0.838482 1.374768 0.848246 0.202978 1.354978 0.958354 -0.381933 1.434603 0.246300 2.171219 -0.026719 -0.318407 -0.093389 -0.213773 0.987710 2.347092 -0.669568 0.142468 0.950726 0.584697 -0.514336 -0.710707 -0.033921 -0.982561 -0.300674 1.068528 0.167458 -0.555871 -0.046370 1.613262 -0.213086 -2.213229 0.689202 -0.051459 0.709673 0.779121 0.058190 0.157351 0.725509 -1.582799 1.316699 1.008096 0.953669 -1.026054 -0.674581 -0.048555 0.756297 0.838797 0.956338 -2.597214 0.046992 0.728625 1.486830 0.444329 1.563126 -0.969339 -0.735864 0.581000 -0.640497 -0.615908 -0.151370 0.776304 -0.827056 0.301431 -1.432446 -0.970075 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_map(int**, unsigned long) = 0.547911 0.305014 0.458589 -1.145440 -1.568897 -0.074621 -0.347795 0.206140 0.132633 0.536852 0.692434 -1.329041 -1.209091 1.894159 -0.432916 -1.390342 0.180784 -0.901886 -0.032012 -0.113872 0.273044 0.879365 0.432996 0.035994 0.365633 0.172528 -1.067656 0.644629 2.335106 -1.058220 -0.844039 0.313815 0.230599 0.995806 -0.527513 -1.047002 0.549765 2.211981 -0.585257 0.736595 -1.241828 -0.616746 1.242443 0.218942 -0.250962 -1.556065 -1.268186 1.024418 -1.330823 -0.405256 0.889223 0.360553 -0.276414 -0.529182 0.243055 1.513726 -2.944969 1.905838 0.126725 0.762421 0.481043 0.226614 -0.041411 0.216878 0.391019 -0.955287 0.059612 0.029356 -1.394454 -0.318307 -0.137859 -0.668071 1.988577 0.196514 -0.674415 0.571397 0.736571 -1.058962 1.209746 -2.262920 -1.224717 0.214406 0.080935 -0.024335 1.487907 -0.254850 0.204111 -2.014659 0.240291 -1.686652 1.052089 -1.645003 0.495501 1.620694 -1.453168 0.415873 0.180091 -0.492503 1.728929 0.776332 1.948916 0.654337 0.991621 0.269613 0.169537 0.644144 -0.515406 0.063787 -0.679506 -1.491677 -0.514900 0.098796 -2.418733 0.451218 -0.065081 0.531105 1.167743 -0.426533 0.069084 0.507600 -0.936699 -0.720291 0.189981 -0.147324 0.447130 1.894002 -0.606555 -0.126873 -0.793144 1.956780 -0.187325 0.648451 0.520659 0.379751 -0.312151 -2.272249 -1.300346 0.352986 0.184053 -0.779045 -1.259217 -1.754756 0.568081 -0.946764 -0.682187 1.266556 2.525027 -0.225771 -1.099082 1.790514 0.433745 0.645935 1.711987 -0.460194 2.435829 -0.845419 -0.337591 -0.151205 -0.417322 -0.187153 0.033953 0.505112 -0.233956 -0.128082 0.242954 -1.646781 0.203067 0.043484 -0.396016 -0.275662 0.108645 -0.839283 -1.246313 1.557466 0.466988 1.172782 0.468639 2.065385 0.020407 -1.962508 1.352666 0.097834 0.172696 -0.503531 -0.765099 0.581975 0.268062 -1.026183 -0.392893 -0.719183 0.051080 -1.082318 0.288061 0.522994 0.693580 0.432014 0.661261 0.686843 1.189194 -0.085372 0.939834 -2.189044 0.154153 0.763923 -0.681348 -2.117957 0.595897 -0.888280 0.338583 1.330858 -0.667968 0.254984 -0.410318 -1.416325 -0.112768 -0.431958 0.862954 -0.068756 -0.899784 0.099082 -0.501070 0.772093 0.585111 1.284183 1.575611 0.853838 0.593749 0.510703 0.308554 0.231342 0.561367 -0.199539 -0.170686 0.110400 0.653192 0.869398 0.486304 0.246569 1.358922 0.845445 -1.025056 1.208104 0.505465 1.883096 -0.185140 -0.574051 -0.300552 -0.642079 1.168910 2.611987 -0.924008 -0.235888 0.833254 0.751532 0.272494 -1.385736 0.000963 -0.826653 -0.565748 0.983722 -0.364427 -0.030698 0.011307 0.856350 0.019881 -1.990020 1.610320 -0.131352 0.496473 0.325529 0.127688 -0.167879 0.514072 -1.991416 0.300672 1.074303 0.809503 -0.673074 -0.743305 -0.113490 1.178027 -0.210489 1.101271 -1.781867 0.319541 1.259269 1.032176 0.663586 0.536659 -0.751410 -1.938266 0.304471 -0.345315 -0.778536 -0.446792 -0.016407 -1.477586 0.201939 -0.058881 -0.924150 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::~_Deque_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_deallocate_node(int*) = 0.552593 -0.104252 0.506328 -0.517112 -0.647186 0.186373 -0.568772 0.115855 0.214172 0.105708 0.221091 -0.273617 -0.417020 0.943956 -0.388412 -0.748365 0.250833 -0.340488 0.258758 -0.112119 0.339861 0.335155 0.481454 0.092987 0.044776 -0.185771 -0.444754 0.361925 1.220904 -0.457925 -0.486512 0.170556 -0.001458 0.386658 -0.276650 -0.598805 0.321737 1.130466 0.103959 0.393886 -0.235193 -0.187384 0.447082 0.097826 -0.216772 -0.490062 -0.849455 0.427488 -0.571573 -0.377332 0.582094 0.101803 0.042773 -0.120559 -0.080023 0.563117 -1.296050 0.637583 -0.255011 0.565658 0.573029 0.110984 0.021086 0.232321 0.372836 -0.397085 0.245721 0.256572 -0.947073 -0.344172 0.028911 -0.201642 1.257828 0.107017 -0.317600 0.162454 0.855842 -0.432963 0.592653 -0.918842 -0.763518 0.067257 -0.417974 -0.189145 0.948998 -0.361966 0.229808 -1.051258 0.469874 -0.840010 0.734250 -0.763102 0.264966 0.720217 -0.898588 0.153688 0.381630 0.363326 0.716115 0.169893 1.194330 0.439590 0.046012 0.222289 0.294528 -0.040115 -0.201359 0.226438 -0.474569 -0.703516 -0.164481 -0.288053 -1.408990 0.170207 0.183145 0.273980 0.524310 -0.199092 -0.098204 0.237667 -0.713312 -0.094707 0.084734 -0.067199 0.031730 0.805822 -0.414351 0.018175 -0.229299 1.127236 -0.453823 0.054406 0.486666 0.071674 -0.020218 -0.776601 -0.509832 0.228733 0.183235 -0.311823 -0.696801 -0.765646 0.284187 -0.430528 -0.256667 0.888009 1.264237 0.035075 -0.292122 0.705195 0.254646 0.245356 0.978637 -0.197198 1.130110 -0.380800 -0.562667 -0.221660 -0.375077 0.079860 -0.339260 0.344121 0.402007 0.190053 0.204457 -0.500169 0.343052 -0.368408 -0.402844 0.013700 0.017497 -0.413281 -0.565123 0.665877 0.395922 0.238451 0.529318 1.145970 0.340284 -1.003098 0.488650 0.041966 0.065215 -0.370874 -0.167294 -0.017475 0.140146 -0.576956 -0.276859 -0.370553 -0.089942 -0.298611 0.032336 0.472263 0.670716 0.348163 0.330290 0.455044 0.773089 0.304829 0.362207 -1.112494 -0.034720 0.516208 -0.438824 -0.756730 0.281234 -0.463250 0.343824 0.565903 -0.416063 0.053826 -0.494090 -0.859985 -0.462827 -0.257828 0.392514 0.160592 -0.784763 -0.121285 0.084172 0.403202 0.399979 0.553536 0.919093 0.401924 0.521948 0.278275 0.274467 0.394872 0.097071 -0.196737 -0.041473 0.276992 0.285877 0.526229 0.205634 0.179273 0.740695 0.570884 -0.135605 0.447468 0.185670 0.978224 0.157388 -0.270499 -0.480003 -0.232848 0.631580 1.444148 -0.218728 0.250848 0.439750 0.451097 0.338961 -0.936184 0.268312 -0.447491 0.106799 0.468428 -0.018946 0.313437 -0.132845 0.186869 0.000810 -1.094127 0.735608 -0.120701 0.141936 0.587662 0.067432 0.109209 -0.104202 -1.050664 0.088222 0.554123 0.410085 -0.367873 0.076867 -0.099277 0.516535 -0.378230 0.648991 -0.793447 0.317914 0.552587 0.486086 0.304790 0.197369 -0.490281 -1.047308 0.314711 -0.288225 -0.312733 -0.021940 0.054303 -0.869652 0.058002 0.069234 -0.428079 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/aho-corasick-algorithm.cpp__std::__deque_buf_size(unsigned long) = 0.277450 -0.053923 0.319771 -0.316720 0.366848 0.101943 0.635139 -0.112346 0.266789 0.781565 0.096526 0.135321 -0.714103 0.314610 -0.010836 -0.217148 0.796201 -0.548103 0.183633 -0.044514 0.059600 0.151795 0.077126 -0.386300 0.417111 -0.164161 0.117435 0.328038 -0.237500 -0.248278 -0.410650 0.122191 -0.203332 0.551366 -0.166415 0.150797 -0.093330 0.716526 -0.468790 0.944154 -1.031540 -0.524170 0.636087 0.008439 -0.052194 -0.665197 0.338884 0.097916 -0.188655 -0.304479 0.021543 -0.391037 0.083731 -0.476962 0.053887 0.835327 -0.899592 0.013991 -0.082042 0.030162 -0.227528 -0.222643 0.254311 -0.023603 0.092365 -0.347251 0.432671 -0.161001 -0.842955 0.413147 -0.494705 -0.471980 0.220676 0.323701 -0.109422 0.132072 0.055240 -0.566849 0.335058 -0.596683 -0.072729 -0.296833 0.282601 0.048481 0.267345 0.032475 0.414265 -0.951951 -0.056684 -0.516575 0.734367 -0.337112 0.522781 0.566682 0.033654 0.413263 0.089713 0.163164 -0.286005 -0.232683 0.686890 0.319048 0.446800 -0.316175 0.376976 0.128059 -0.531489 -0.609750 -0.113127 0.108756 -0.027203 -0.057678 -0.444462 0.014816 -0.751467 0.294296 0.547664 -0.049647 -0.248305 0.259909 -1.086725 -0.412605 0.111956 -0.147470 0.662317 0.412530 0.171769 0.020672 0.126463 0.702089 -0.091229 0.079038 -0.416206 0.270481 -0.172617 -0.290885 0.025485 -0.375497 0.081626 -0.429714 -0.754329 -0.842066 -0.215726 0.183672 0.202145 0.706143 0.908501 0.027109 -0.425917 0.327639 -0.388414 0.144342 0.478036 -0.029996 0.566262 -0.848035 0.600379 -0.175164 0.809174 0.247541 0.893015 -0.209969 -0.177592 0.147722 0.130349 -0.051701 -0.040135 0.001528 0.252039 -0.176447 -0.158588 -0.309590 -0.325299 0.544239 -0.587417 0.736701 -0.430708 0.690822 -0.662136 -0.559969 0.127311 -0.576701 -0.121370 -0.604708 -0.198048 0.162261 0.210895 -0.749090 -0.470749 -0.462374 -0.077994 0.227966 0.419077 -0.627492 -0.082897 -0.368392 -0.209092 1.010383 0.023553 -0.181115 -0.016247 -0.568121 0.097723 0.240532 -0.127869 -0.667566 0.132376 -0.300536 -0.143509 0.341439 -0.029450 0.272876 -0.172340 -0.496045 0.241176 -0.109305 -0.066638 -0.339807 -0.739586 -0.009606 0.103463 -0.403729 0.121694 0.521844 0.289010 -0.033203 -0.335669 -0.474075 0.297704 -0.444356 -0.617898 -0.046270 -0.078458 0.138554 0.019108 0.282846 0.091277 -0.009183 0.355447 0.211029 -0.022939 0.398916 0.254143 0.311909 -0.117157 -0.072348 0.338192 -0.588725 0.260771 0.334033 -0.517479 -0.183414 0.408640 0.140527 -0.079498 -0.120053 -0.186103 -0.559905 -0.309029 0.613857 0.151770 -0.236268 -0.388133 0.896423 0.122215 -1.029564 0.471328 -0.083650 0.084889 0.446498 -0.221120 -0.122929 0.438803 -0.418297 0.237486 -0.200572 0.437834 -0.268128 -0.045199 -0.130785 0.365074 0.161087 -0.104502 -0.695800 -0.407404 0.117992 0.885856 0.787050 0.720079 -0.081982 0.232166 -0.537181 -0.339292 -0.174560 -0.134271 0.352989 -0.115238 -0.280586 -0.994836 0.489937 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_map_allocator() const = 0.183394 0.336068 0.227633 -0.426332 -0.732894 0.049584 -0.126837 -0.185731 -0.031878 -0.055565 0.320300 -0.400472 -0.371059 0.609899 -0.214174 -0.508960 -0.250402 -0.523207 -0.244572 -0.124687 -0.017207 0.264192 -0.070631 0.145835 0.009471 0.068849 -0.227959 0.187403 0.548446 -0.529758 -0.356828 0.003271 0.099705 0.507992 0.004040 -0.269095 0.254729 0.927528 -0.050078 0.036374 -0.460505 -0.391595 0.287929 0.006328 -0.174074 -0.616328 -0.414812 0.423026 -0.469788 0.087370 0.455412 0.136056 -0.278269 -0.040946 0.247075 0.454714 -1.080047 0.878367 0.174746 0.198334 0.063621 -0.065622 -0.036267 -0.008720 0.238714 -0.327062 0.153559 0.196792 -0.358362 0.000997 -0.013394 -0.533512 0.959005 0.109618 -0.242260 0.176089 0.261955 -0.366196 0.517333 -0.700312 -0.556541 0.094093 0.178286 0.059919 0.640926 -0.062186 -0.106102 -0.773024 0.005366 -0.756144 0.205145 -0.606354 0.151872 0.543280 -0.577041 0.104321 0.150497 -0.229724 0.563629 0.190441 0.616751 0.061767 0.343270 0.212577 0.111667 0.142357 -0.130967 0.000180 -0.359625 -0.737327 -0.118797 0.112989 -0.970434 0.209429 0.023286 0.140966 0.128582 -0.032324 0.117539 0.181330 -0.420155 -0.319980 0.134455 -0.063556 0.275883 0.749451 -0.267579 0.152781 -0.367770 0.633575 -0.109101 0.346600 -0.000635 0.115833 0.100858 -0.928240 -0.921799 0.166782 0.244031 -0.267060 -0.483734 -0.479924 0.102372 -0.255873 -0.286142 0.495573 1.050891 -0.323901 -0.545840 0.798654 0.428187 0.251670 0.667563 -0.070944 0.922475 -0.247171 -0.124418 -0.084043 -0.294993 -0.172661 -0.452431 0.192354 -0.079006 0.053192 0.217961 -0.492922 0.363855 -0.070688 -0.376144 0.227595 0.091762 -0.295460 -0.536690 0.604993 0.652962 0.519552 0.397280 0.776994 -0.214864 -0.669070 0.364332 0.163888 0.174610 -0.214731 -0.308122 0.175583 0.267250 -0.351101 -0.141203 -0.128611 -0.111758 -0.465000 0.054155 0.526503 0.262136 0.157463 0.356507 0.017966 0.864462 0.021570 0.282936 -0.807952 0.183092 0.288334 -0.121624 -0.688068 0.154934 -0.314153 0.024185 0.452365 -0.216440 0.109934 -0.051905 -0.361924 -0.038016 -0.216011 0.392898 0.165294 -0.261601 0.063427 -0.361909 0.293241 0.185004 0.365334 0.715947 0.513620 0.538935 0.108024 0.145343 0.066812 0.344414 -0.186375 0.020076 0.309996 0.342755 0.374437 0.308321 0.091845 0.473297 0.355002 -0.244314 0.551924 0.195945 1.023343 -0.217699 -0.059581 -0.286066 -0.064357 0.474711 1.103886 -0.452858 0.021117 0.275865 0.408473 0.053627 -0.683294 -0.065615 -0.279892 -0.185517 0.338134 -0.004376 -0.144954 0.015881 0.525670 -0.087922 -0.636931 0.405446 0.022218 0.175158 0.035419 0.033636 -0.164036 0.305504 -0.742136 0.210070 0.465934 0.406705 -0.362391 -0.307424 -0.038441 0.498822 -0.389413 0.469922 -0.556295 0.196694 0.502247 0.434041 0.216773 0.089744 -0.421229 -0.678942 0.333124 -0.086430 -0.217942 0.170284 0.266395 -0.604151 0.140778 -0.056547 -0.575834 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::deallocate(std::allocator&, int**, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator(std::allocator const&) = 0.165073 0.239465 0.175665 -0.431934 -0.561964 -0.007982 0.099598 -0.102726 -0.035130 -0.064169 0.287056 -0.333296 -0.296589 0.586836 -0.079578 -0.391549 -0.115778 -0.582217 -0.255214 0.048783 -0.027416 0.275557 -0.064151 0.097772 0.080103 0.138444 -0.235256 0.213323 0.360329 -0.543907 -0.330346 -0.005321 0.067225 0.460864 -0.039303 -0.243226 0.194735 0.863900 -0.206177 0.179236 -0.353771 -0.274658 0.328807 -0.045242 -0.216571 -0.587693 -0.390346 0.408939 -0.214588 -0.106759 0.407834 0.157722 -0.252873 -0.116723 0.204032 0.473216 -0.927354 0.620485 0.230523 0.231534 0.029543 -0.085389 -0.030999 -0.067237 0.057249 -0.316310 0.143724 -0.021679 -0.295860 -0.032784 -0.061938 -0.491815 0.827087 0.154045 -0.162266 0.204708 0.194605 -0.434191 0.492423 -0.537836 -0.472044 0.069195 0.095996 -0.018574 0.614814 -0.152644 -0.089852 -0.701367 0.019998 -0.666141 0.143449 -0.620886 0.118600 0.560819 -0.435672 0.143708 0.088098 -0.100571 0.404109 0.157222 0.559764 0.094535 0.320863 0.172066 0.176323 0.152956 -0.202065 -0.080763 -0.367644 -0.624740 -0.021510 0.065775 -0.836259 0.240452 0.037494 -0.000851 0.161881 -0.006378 0.089110 0.230005 -0.311671 -0.133965 0.174773 -0.074533 0.170130 0.748577 -0.240435 0.027517 -0.401036 0.536836 -0.045143 0.427934 -0.012908 0.136401 0.012267 -0.726142 -0.580787 0.063152 0.167895 -0.264571 -0.440707 -0.513151 0.132938 -0.212931 -0.300352 0.430192 0.940662 -0.300956 -0.450123 0.724844 0.524347 0.251258 0.435040 -0.083187 0.812468 -0.220844 -0.125277 -0.045958 -0.245509 -0.144173 -0.301738 0.172139 -0.108838 0.039412 0.086931 -0.616466 0.589795 0.005717 -0.282245 0.374113 0.069027 -0.294042 -0.599485 0.619353 0.590050 0.500355 0.348593 0.690939 -0.119323 -0.454255 0.366902 0.234210 0.168265 -0.412659 -0.324476 0.181198 0.206497 -0.246677 -0.132193 -0.145789 -0.088744 -0.422229 0.082934 0.289291 0.223916 0.094719 0.315800 -0.072583 0.715955 -0.048484 0.253252 -0.743570 0.198453 0.224002 -0.133672 -0.569661 0.136551 -0.247777 -0.010817 0.381632 -0.190482 0.099152 -0.104505 -0.351165 0.098156 -0.135023 0.219209 0.103957 -0.404084 0.007866 -0.259268 0.260596 0.199882 0.361804 0.627202 0.434106 0.416780 0.088922 0.078354 0.157039 0.002078 -0.194447 -0.143175 0.331179 0.332582 0.300714 0.312036 0.089673 0.430628 0.276873 -0.188843 0.507216 0.273933 0.881153 0.003619 -0.186496 -0.132612 -0.085315 0.445797 0.888653 -0.316491 -0.001622 0.277310 0.347115 -0.092230 -0.517254 -0.061339 -0.246935 -0.193113 0.328889 -0.088545 -0.136037 0.050917 0.515510 -0.151880 -0.654945 0.260412 0.026218 0.243997 0.098612 0.086659 0.019748 0.296181 -0.607261 0.252430 0.374925 0.374561 -0.294728 -0.248352 -0.001131 0.370802 -0.290157 0.413749 -0.595565 0.179785 0.338395 0.402365 0.164292 0.138711 -0.322604 -0.428764 0.272878 -0.031464 -0.149908 0.096724 0.267264 -0.514946 0.040236 -0.263712 -0.379081 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::deallocate(int**, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::deque() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_base() = 0.198891 -0.194753 0.633416 -0.746530 -0.636300 -0.169474 -0.740562 0.019363 0.543258 0.277566 0.587695 -0.750202 -0.831619 1.288352 -0.064427 -0.751960 0.138156 -0.121362 0.690731 0.229762 0.616694 0.292631 0.174852 0.196624 0.071095 0.122829 -0.775203 0.162132 1.370788 -0.602196 -0.774617 0.137916 0.118796 0.512481 -0.723541 -0.408880 0.171121 1.359149 -0.232483 0.786052 -0.926385 -0.579081 0.568688 -0.002717 -0.184421 -0.932748 -0.666470 0.320239 -0.958239 -0.314204 0.432334 0.385441 -0.117641 -0.425988 0.083776 0.569593 -2.168469 0.889647 0.209181 0.375943 0.778531 0.301181 -0.189825 0.072611 0.172887 -0.095251 0.158593 -0.109066 -1.019495 -0.100506 0.139674 -0.324656 1.428395 0.449956 -0.393530 0.731440 1.189574 -0.742868 1.038968 -1.401543 -0.838985 -0.022349 -0.225390 -0.065691 1.045548 -0.029228 0.240006 -0.782117 0.465740 -1.002966 0.933817 -1.428174 0.176961 1.091718 -1.130776 0.315499 0.843091 0.094021 1.225921 0.366496 1.305106 0.989624 0.295269 0.171627 0.280504 0.320673 -0.310661 0.201075 -0.506881 -0.969054 -0.515874 -0.227194 -1.583485 -0.012991 -0.011153 0.506794 0.885211 -0.214244 0.289409 0.467748 -0.891494 -0.226902 0.312163 -0.067722 -0.151490 1.334049 -0.261043 -0.480185 -0.478359 1.313241 -0.599701 0.135168 0.770102 0.119837 -0.218576 -1.138908 -0.741092 -0.161251 -0.331579 -0.817120 -0.571992 -1.077569 0.354117 -0.075945 0.189686 0.951899 1.676241 -0.086499 -0.472769 1.027557 0.242510 0.120915 1.564913 0.091892 1.499372 -0.253622 -0.399720 -0.618622 -0.402540 -0.079356 0.022148 0.573181 0.277802 -0.001971 0.502401 -0.873364 0.371477 -0.318569 -0.106467 -0.203540 0.065219 -0.921251 -0.895250 0.683087 0.156716 0.841018 0.115367 1.324409 0.180605 -1.028691 0.954964 -0.200856 0.172774 -0.181834 -0.467136 0.384705 0.229733 -0.842957 -0.276932 -0.654540 -0.278289 -0.234122 0.326138 0.266687 0.597831 0.505277 0.060725 0.691576 0.756835 -0.081765 0.501051 -1.362214 0.023311 0.213179 -0.771469 -1.309540 0.683598 -0.837274 0.513653 0.777228 -0.459708 0.494759 -0.555978 -1.145112 -0.256201 -0.347025 0.315623 -0.472339 -0.775678 -0.169690 -0.176629 0.725216 0.748395 0.519494 0.884522 0.688730 0.298335 0.448345 0.034779 0.246722 0.508747 -0.079566 -0.281616 0.197268 0.144115 0.648290 0.174645 0.321637 0.748759 0.683440 -0.436155 0.895911 0.051785 0.885966 0.057099 -0.348528 -0.047660 -0.432185 0.896809 1.624663 -0.608818 0.309961 0.471181 0.552314 0.076760 -0.988544 -0.126465 -0.183251 -0.614541 0.858209 0.146977 0.311641 -0.014514 0.223047 0.427751 -1.236318 0.786960 -0.197777 0.031042 0.313311 0.185630 -0.379379 0.410171 -1.070777 0.238510 0.305227 0.657841 -0.811320 -0.272658 0.076959 0.824785 0.054279 0.886934 -1.041551 0.110744 0.666714 0.202204 0.476600 0.520427 -0.668250 -1.303145 0.161498 -0.477343 -0.789255 -0.484851 -0.154330 -0.824845 -0.045451 0.077384 -0.689436 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl::_Deque_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_initialize_map(unsigned long) = 1.473506 -3.957745 4.393391 -5.149768 -5.121570 4.154653 -7.652217 -3.457370 2.650784 0.025016 3.842717 -2.573818 -1.198555 6.535386 -0.965469 -6.738620 1.001081 3.212483 2.723180 -2.101817 1.872052 0.652527 -0.731960 0.517725 -1.644811 -3.648719 0.430285 2.875240 6.716090 1.438904 -5.433905 -0.751201 -3.541015 6.658744 1.505165 0.003902 2.432767 11.302780 0.728794 5.799218 -4.528888 -5.140294 2.849167 1.231763 -1.715927 0.489488 -5.864846 1.353936 -8.478675 -0.034935 5.570156 -2.047187 3.057447 0.729840 1.897231 2.347322 -9.011842 1.768899 -0.824683 -0.042051 0.613332 -1.088956 0.469422 4.256499 -3.353032 -2.446778 5.459442 6.096760 -3.507934 -1.217591 -0.991894 -8.685907 10.566409 3.370271 -3.862998 0.157255 7.753336 -6.042901 5.532486 0.681438 -9.127999 -0.510220 -2.500236 -7.490708 8.867866 -1.317806 7.114274 -10.088196 6.247958 -11.526942 5.748084 -5.885020 4.036160 7.694535 -9.885034 0.868937 6.052826 10.434291 4.748974 -0.892956 8.198688 4.584762 -2.333036 1.219865 7.043693 0.488429 -2.190815 -1.379381 -4.577126 -7.094914 -2.049008 -6.858059 -13.968995 1.092803 -2.311679 3.231968 -1.127134 1.719365 -1.840918 5.004225 -8.872898 -1.003998 0.132744 -1.265192 3.077310 5.697947 -3.209069 2.644689 -0.145266 9.754995 -6.314340 -1.553700 -0.655414 2.026708 -2.035449 0.838792 -9.797424 3.824626 4.971388 -4.713486 -8.378341 -6.171776 -2.522094 3.947244 0.625719 12.551796 13.187200 -2.997292 -5.531580 6.447522 -1.684316 0.554396 12.077573 1.313986 9.026423 -4.689680 0.007525 -7.298629 -1.260225 -2.257661 -5.052976 2.566476 2.496639 4.964660 1.153636 1.612966 11.557846 -4.439211 -4.109265 -5.626116 2.180073 -4.047647 -4.483471 8.602446 -3.036123 4.103965 3.253602 10.618995 -2.840765 -7.316480 2.892619 -4.891465 -1.174841 -2.912003 -1.036023 -1.436530 5.488917 -5.781823 -4.501806 -3.612530 -2.846519 -0.735333 1.513090 10.223679 2.995301 3.241767 1.977306 7.355668 10.517489 4.836115 -0.940861 -7.679068 1.598662 6.063414 -6.428589 -2.003569 0.732683 -5.107335 1.599871 -0.828739 -0.221489 4.214264 -8.395864 -5.948882 -6.792171 1.041127 5.407206 2.762614 -14.792229 2.468667 0.736136 2.643250 5.252035 3.912685 8.748835 7.060827 7.034029 -1.002333 2.641560 0.419532 0.692131 -0.654842 3.704269 5.226718 1.102618 8.239371 1.909392 2.276000 4.383325 6.342159 4.254074 5.008142 1.390886 10.785577 2.090298 0.422196 -3.311813 -1.817032 5.746222 14.903438 -3.522048 6.105304 3.317039 5.032000 -0.846189 -11.766665 1.221877 -3.128998 0.882454 0.534851 1.232525 1.048816 -4.574960 6.117669 3.133830 -10.109281 4.438120 -0.128887 1.151465 7.965663 -1.773578 -0.869111 -0.079160 -8.142348 8.280951 4.743525 2.905073 -5.529729 2.340981 -0.320698 4.665876 -0.180335 4.252259 -1.009652 6.744161 3.512185 6.085329 6.097330 2.674780 -6.236816 -4.863069 1.569199 -8.478997 -2.667321 1.217127 2.666730 -5.492444 2.428832 -4.689151 -9.036899 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_Deque_impl_data::_Deque_impl_data() = -0.120820 -0.265864 0.366953 -0.420850 -0.576497 0.120886 -0.464415 -0.124745 0.141860 -0.680214 0.196660 -0.467041 -0.486335 0.690257 -0.092180 -0.944128 -0.165797 0.411061 -0.081487 -0.098538 0.026580 0.139291 -0.062796 0.153124 0.067946 -0.249324 -0.044686 0.510078 0.988417 -0.090700 -0.339674 -0.044727 -0.061465 0.751589 -0.012611 0.303348 0.426810 1.308662 0.383137 0.745960 -0.328338 -0.433408 0.401834 0.059261 -0.372753 -0.236530 -0.721900 0.260459 -1.598046 0.257802 0.584359 0.120924 -0.163490 -0.056227 0.498732 0.530546 -1.224272 0.723322 -0.010932 0.155877 0.106324 -0.214461 -0.458802 -0.077088 -0.064606 -0.284892 0.142861 0.465670 -0.550097 0.122140 0.067249 -0.583794 1.672846 0.252618 -0.491818 0.314655 0.754338 -0.260484 0.449835 -0.236302 -0.766675 -0.071985 0.140127 -0.125107 1.096456 -0.031070 0.206515 -1.004952 0.076816 -0.989749 0.502652 -0.953132 0.353203 0.897508 -1.180868 0.405743 0.333176 0.151588 0.217124 0.246329 0.747825 0.208253 -0.104964 0.176735 0.473209 -0.132490 -0.116851 -0.321108 -0.418198 -0.717196 -0.296368 -0.434896 -1.645904 -0.059091 -0.142270 0.888960 -0.000602 0.394792 -0.063377 -0.083153 -0.644183 0.112521 0.115210 -0.155091 0.444420 0.694738 -0.354629 0.146140 -0.256765 0.961076 -0.313511 0.055659 -0.268269 0.154856 0.205683 -0.482881 -1.135224 0.037780 0.329328 -0.163884 -0.841590 -0.400301 -0.322122 0.341040 -0.046824 0.818836 1.343704 -0.188913 -0.496557 0.899640 -0.009681 0.787690 0.960387 0.217208 0.806634 -0.301694 -0.060636 -0.520270 -0.196816 -0.160949 -0.755784 0.251780 -0.205831 0.339139 0.204264 -0.195990 0.992386 -0.437234 -0.372868 -0.565606 -0.045539 -0.487179 -0.610856 1.212846 0.040735 0.758646 0.128218 1.095332 -0.302618 -1.003542 0.317329 -0.172666 0.126466 -0.442163 -0.195097 -0.062758 0.353282 -0.837885 -0.515385 -0.155433 -0.062288 -0.221210 0.070776 1.233450 0.014897 0.070150 0.449486 0.585705 0.981455 0.151894 0.078052 -1.052718 0.149445 0.353918 -0.481110 -0.485641 0.521359 -0.105172 -0.012721 0.143984 -0.010756 -0.072507 -0.478942 -0.494467 -0.518806 -0.157573 0.566549 0.222060 -1.065919 0.106054 0.111482 0.071019 0.643379 0.256534 1.317683 0.395087 0.601664 0.139980 0.237270 0.050340 0.272720 0.019752 0.236217 0.602801 0.149598 0.653201 0.328543 -0.071432 0.346097 0.739507 0.082903 0.507151 0.688237 1.284952 0.290556 -0.197955 -0.194624 -0.147106 0.607895 1.409269 -0.738228 0.619207 0.505761 0.811777 0.230483 -1.309992 -0.221002 -0.331253 -0.318286 0.602271 -0.442633 -0.278918 0.026239 0.671472 0.067281 -0.830829 0.316075 0.109248 0.095408 0.097330 -0.035652 -0.345568 0.450273 -1.038013 0.546678 0.217681 0.314485 -0.436357 -0.008205 -0.124576 0.296893 0.085974 0.498985 0.084777 0.175517 0.433776 0.755258 0.609577 -0.050192 -0.236299 -0.747083 0.106361 -0.654482 -0.362098 -0.029676 0.077745 -0.419338 0.136397 -0.275863 -1.365481 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_Deque_iterator() = -0.312769 -0.271171 0.521636 -0.486178 -0.573414 0.072321 -0.050717 -0.006167 0.244781 -0.896430 0.411023 -0.489193 -0.555520 0.690914 0.153178 -0.889265 -0.011288 0.411252 -0.203556 0.045753 0.099581 0.065099 -0.041029 0.164481 0.049251 -0.171204 -0.015398 0.793320 0.906378 -0.073287 -0.413212 0.008401 -0.043045 0.732835 -0.104106 0.327730 0.428625 1.302904 -0.138016 0.978367 -0.164395 -0.239646 0.497943 0.071615 -0.580280 -0.419519 -0.975600 0.316937 -1.512432 -0.107757 0.802251 0.217938 0.028353 -0.097529 0.589351 0.755003 -1.171206 0.338953 0.050501 0.121686 0.163785 -0.136006 -0.525997 0.008374 -0.298784 -0.279715 0.225633 0.109998 -0.337460 0.014735 0.064340 -0.822410 1.843089 0.222189 -0.418092 0.382709 0.921488 -0.520714 0.614080 0.204658 -0.744889 -0.041665 -0.002271 -0.268668 1.207817 -0.318783 0.170193 -0.981230 -0.208798 -0.962513 0.586851 -1.119787 0.251269 0.874946 -1.122859 0.402433 0.307530 0.133014 0.036914 0.164569 0.715380 0.260444 0.113470 0.085844 0.722455 -0.126289 -0.336690 -0.553950 -0.757857 -0.825019 -0.104363 -0.623951 -1.730657 -0.027343 -0.043760 0.535050 0.115896 0.245701 0.021972 0.205390 -0.178681 0.801714 0.307073 -0.158555 0.222405 1.029446 -0.429099 0.061624 -0.217955 0.959302 -0.321359 0.310521 -0.246179 0.136662 0.243444 -0.447156 -0.777900 0.066147 0.328562 -0.116106 -0.789488 -0.456246 -0.179194 0.417738 -0.042989 0.478706 1.406473 -0.192364 -0.496106 0.823905 0.499631 0.768814 0.627957 0.198596 0.971455 -0.388940 -0.044054 -0.735016 -0.265089 -0.138204 -0.219981 0.332310 -0.204272 0.443154 0.101459 -0.825212 1.671244 -0.469449 -0.296188 0.012518 0.028442 -0.504179 -0.838629 1.391637 0.350849 0.775564 0.206651 1.093619 -0.256631 -0.910978 0.340722 0.252982 0.175467 -0.853944 -0.386878 0.201141 0.340193 -0.599692 -0.479485 -0.482918 -0.090571 -0.130738 0.033413 0.874402 0.041042 -0.011492 0.468428 0.134556 1.021710 0.232827 0.033184 -1.168030 0.191158 0.237993 -0.535051 -0.461465 0.531423 -0.156154 0.011633 -0.015498 -0.031920 -0.000932 -0.554095 -0.581100 -0.380059 -0.266211 0.262250 0.152693 -1.617991 0.012639 0.286833 0.142411 0.712128 0.254757 1.486239 0.458947 0.692883 0.175744 0.213638 0.265105 -0.316006 -0.040720 -0.020506 0.725009 0.164536 0.627826 0.284693 -0.141561 0.391613 0.658836 0.252471 0.492479 0.925726 1.210368 0.869702 -0.356574 -0.039828 -0.194707 0.595011 1.336587 -0.334706 0.646908 0.520509 0.989651 0.001246 -1.368500 -0.239150 -0.355044 -0.314169 0.946716 -0.519519 -0.343268 0.043778 0.682316 0.033219 -0.974609 -0.005965 0.026834 0.164055 0.326905 -0.039606 -0.101673 0.385549 -0.960565 0.785489 0.108034 0.332480 -0.463628 -0.035025 -0.077816 0.089208 0.238643 0.438259 -0.419362 0.076340 0.179417 0.801376 0.557271 0.269946 -0.328036 -0.393703 0.098851 -0.700877 -0.302570 -0.174000 0.118262 -0.543994 0.032670 -0.773389 -1.200539 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_map(unsigned long) = 0.345686 0.122835 0.578768 -0.987732 -1.020108 -0.148907 -0.800639 -0.130397 0.536332 0.496579 0.869120 -1.073047 -0.960978 1.694509 -0.213619 -0.895090 0.079936 -0.452319 0.601375 0.252638 0.647524 0.486954 0.137063 0.202328 0.056441 0.288418 -0.967199 0.142525 1.731870 -0.895969 -1.109278 0.200051 0.232245 0.712372 -0.704503 -0.731154 0.267431 1.631486 -0.537692 0.745353 -1.290434 -0.652913 0.712445 0.087880 -0.245100 -1.398647 -0.891007 0.526483 -0.964218 -0.377621 0.638561 0.345663 -0.191857 -0.425117 0.161553 0.915480 -2.667003 1.385053 0.360819 0.575169 0.897430 0.327465 -0.003551 0.166791 0.274476 -0.298054 0.202008 -0.084975 -1.157783 -0.213515 -0.003696 -0.689056 1.712300 0.464320 -0.601501 0.718747 1.050048 -1.132674 1.272332 -1.934368 -1.017624 0.126588 -0.084159 0.112629 1.162771 -0.024883 0.190301 -1.135098 0.342719 -1.342022 1.018605 -1.626595 0.310400 1.287418 -1.370495 0.146602 0.806478 -0.134562 1.760472 0.546078 1.592459 1.044424 0.559054 0.074633 0.216943 0.603679 -0.379416 0.286978 -0.558607 -1.330756 -0.588329 0.032553 -2.028262 0.119681 -0.132497 0.438338 1.010595 -0.443739 0.371318 0.691089 -0.958873 -0.649407 0.282101 -0.060773 0.044083 1.868745 -0.302924 -0.376504 -0.678433 1.551906 -0.509592 0.290164 0.776339 0.161592 -0.399329 -1.850900 -1.134177 -0.017057 -0.210677 -1.066401 -0.756057 -1.484113 0.541630 -0.447364 0.000511 1.049657 2.078927 -0.264464 -0.778336 1.363162 0.485775 0.049416 1.959353 -0.112346 2.160748 -0.543445 -0.255108 -0.516326 -0.480750 -0.250420 0.109826 0.577336 0.203244 -0.185510 0.511161 -1.443732 0.282791 -0.115646 -0.231544 -0.052723 0.129531 -0.963309 -1.128873 0.892471 0.335821 0.986697 0.195857 1.643840 0.002994 -1.356250 1.262818 -0.047136 0.188940 -0.161882 -0.734201 0.617116 0.442571 -0.918314 -0.198998 -0.682495 -0.255955 -0.521396 0.400113 0.288789 0.691895 0.553232 0.112266 0.648833 1.082779 -0.143482 0.793351 -1.647136 0.098359 0.443645 -0.846126 -1.862682 0.674254 -1.238592 0.547094 1.032202 -0.684249 0.618338 -0.575074 -1.399430 -0.169587 -0.487976 0.615227 -0.481795 -0.710323 -0.040165 -0.605801 0.887519 0.742934 0.818271 0.969172 1.011473 0.501549 0.389143 0.114921 0.162313 0.685846 -0.107427 -0.273313 0.140143 0.374701 0.826580 0.230287 0.391367 0.979589 0.655112 -0.647157 1.185480 0.059330 1.246752 -0.085363 -0.288941 -0.161903 -0.647492 1.087868 2.216358 -0.816531 0.079070 0.514744 0.599465 0.047778 -1.177140 -0.118650 -0.304124 -0.869816 0.989640 0.164843 0.356465 -0.106415 0.515423 0.392202 -1.534750 1.093564 -0.270674 0.098723 0.344321 0.142871 -0.405510 0.475591 -1.357408 0.280642 0.604627 0.948067 -0.899821 -0.626553 0.025990 1.109407 -0.025194 0.982648 -1.539406 0.291868 1.030293 0.457086 0.599795 0.677039 -0.903872 -1.544994 0.261261 -0.357957 -0.846923 -0.611590 0.011881 -1.160863 -0.008941 0.083864 -0.706405 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_create_nodes(int**, int**) = 0.639051 -0.080012 2.235190 -2.215112 -2.566140 -0.097849 -0.497795 0.449951 1.027989 2.528017 1.313179 -1.702959 -2.773488 3.475788 -0.398331 -2.381437 0.818710 -1.303260 1.127282 -0.464061 1.179903 1.438057 1.051783 0.328474 0.522838 -0.318304 -1.871258 1.583774 3.304506 -1.224249 -1.154255 0.329242 -0.042627 1.583803 -1.683268 -1.360224 0.323600 4.134651 -2.285022 2.680205 -2.843730 -2.111573 2.350726 0.239961 -0.119656 -2.714470 -1.834122 1.596356 -2.127734 -1.714840 1.679413 0.923063 0.556271 -1.207078 0.318869 1.982930 -5.567348 1.940735 -0.148578 0.142042 1.089875 0.845348 -0.231914 1.124078 -0.030491 -1.208886 0.370750 -0.391778 -2.608516 -0.606920 0.282977 -0.935031 2.919603 0.667087 -1.007989 1.516636 3.000275 -1.900079 2.869957 -3.797443 -2.592905 -0.194357 -0.817270 -1.413776 2.677107 -0.312141 1.410260 -3.478477 1.217277 -2.983603 3.089725 -3.185026 0.735702 2.982718 -1.912055 1.254858 1.699363 0.301027 3.104961 0.211128 3.697508 2.224034 2.160878 1.207955 0.996757 1.351776 -1.960421 -0.240289 -2.486439 -2.819238 -0.448678 -1.219860 -3.576260 0.389165 0.559078 0.436689 2.972917 -1.328661 0.057076 2.140146 -2.805289 0.284570 1.108469 -0.280887 -0.225093 3.182092 -1.084626 -0.688442 -0.624811 3.931656 -1.920338 1.247630 1.906201 0.843298 -0.648005 -2.335987 -1.257941 0.503618 -0.374937 -1.732980 -1.910703 -3.658126 0.955842 -0.242913 -0.448181 2.776345 5.170867 -0.454540 -1.924687 2.766680 0.379500 0.191698 2.755166 -0.164524 3.932837 -1.173402 -1.531260 -1.933021 -1.055431 0.577299 3.292749 1.724754 0.309806 0.833880 0.813553 -2.590450 0.659444 -0.894368 -0.732632 -1.102370 0.588587 -2.224218 -1.773791 2.158772 -0.443026 2.085150 0.302729 3.901111 0.357116 -3.126320 2.229122 -1.463104 0.120013 -1.617195 -1.368398 1.254308 0.387182 -2.128344 -0.893149 -2.889237 -0.913157 -1.053789 0.539192 -1.478345 1.890866 1.278399 0.713219 2.667655 2.125981 0.694530 0.714332 -4.029018 0.253819 0.759796 -1.353041 -3.786303 1.088534 -1.840922 1.066762 2.315005 -1.094203 1.337398 -1.341574 -2.674545 -0.566404 -1.265176 0.305732 -0.645757 -3.450593 -0.332453 0.307614 2.277407 1.616288 2.025124 2.918323 1.926373 1.246998 1.588911 0.166116 0.756792 0.273384 -0.021315 -0.254307 -0.112881 0.925198 2.097917 0.886287 0.799132 3.033386 2.074567 -1.321049 2.285547 -0.213340 2.862613 -0.096755 -1.052506 -0.329777 -0.555168 2.048698 4.240920 -0.543927 0.296980 1.753661 1.297981 0.069188 -2.009550 0.335514 -1.599156 -0.006824 2.468432 0.794137 0.197254 -0.226565 1.053474 0.676836 -4.299790 2.622458 -0.540051 0.906075 1.647218 0.348722 -0.195727 0.596366 -3.365060 1.177859 1.735136 1.430690 -2.192691 -0.635035 0.117623 2.043286 0.869408 2.393109 -5.034946 -0.271878 1.478535 1.382974 0.752331 2.819475 -2.028222 -3.272001 0.712803 -1.620270 -1.812743 -0.773223 -0.311767 -2.418508 0.499251 -1.017460 -1.212865 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_M_set_node(int**) = -0.059124 -0.241040 0.667256 -0.894726 -1.226560 0.357487 -0.533895 -0.539192 0.237502 -0.308845 0.673083 -0.745897 -0.301156 1.476559 -0.183924 -1.075327 -0.179720 0.371118 -0.077005 -0.014250 0.187190 0.421156 -0.229118 0.217643 -0.149535 -0.283876 -0.002884 0.694244 0.882239 0.050946 -0.759701 -0.231450 -0.185792 1.190292 0.225987 0.262962 0.380900 1.953912 -0.451661 1.544880 -0.890400 -0.786669 0.577193 0.143845 -0.333475 -0.781138 -1.401990 0.467527 -1.308990 -0.209224 1.064257 0.002808 0.159971 0.066526 0.752748 0.630934 -1.573454 0.579050 0.182610 -0.077896 0.142070 -0.240357 -0.351547 0.426127 -0.819680 -0.501414 0.378930 0.715530 -0.335066 -0.070433 -0.028042 -1.491152 2.173885 0.395154 -0.864931 0.207746 1.065900 -1.081825 1.006387 -0.275648 -1.419269 0.003503 -0.137070 -0.624292 1.419398 -0.098713 0.847438 -1.713971 0.396155 -1.815322 0.831889 -1.319174 0.479413 1.339328 -1.503920 0.256511 0.704543 0.977613 0.944182 0.316202 1.083495 0.755434 0.060489 0.232500 1.065427 0.359263 -0.472829 -0.605104 -1.005175 -1.412641 -0.065886 -0.833794 -2.533639 0.123359 0.022524 0.624434 -0.221361 0.241017 0.006931 0.820523 -1.123526 0.325655 0.341035 -0.196043 0.391136 1.295035 -0.589794 0.376698 -0.430747 1.386849 -0.715206 0.337390 -0.210744 0.372800 -0.533025 -0.569371 -1.533805 0.493836 0.606002 -0.579819 -1.211740 -1.253597 -0.288376 0.771870 -0.235479 1.214529 2.207979 -0.698507 -1.046642 1.304358 0.619914 0.219195 1.307262 0.202491 1.577507 -0.606056 -0.107385 -1.036239 -0.520822 -0.388221 0.024126 0.497886 -0.234822 0.708142 -0.042327 -1.470355 2.263455 -0.549665 -0.775594 -0.601856 0.225469 -0.681315 -0.793208 1.775971 -0.364007 0.934431 -0.012106 1.658053 -0.534193 -1.127966 0.482876 -0.655919 0.028803 -0.939229 -0.343212 0.167309 0.984703 -1.022323 -0.584064 -0.416693 -0.538928 -0.428610 0.177305 0.730135 0.171738 0.339335 0.565549 0.951650 1.751220 0.549964 0.019253 -1.338951 0.426062 0.669632 -0.743775 -1.005552 0.297657 -0.708548 0.033063 -0.269466 -0.102568 0.308506 -1.052689 -0.753674 -0.703186 -0.409009 0.681082 0.411574 -1.958884 0.288263 -0.033371 0.758578 0.808762 0.577297 1.741558 1.239277 1.296739 0.130805 0.259048 0.015572 -0.115496 0.235330 0.551374 0.472007 0.399451 1.381868 0.512718 0.139245 0.788821 0.958983 0.548024 0.955175 0.609383 1.948166 0.553736 -0.123576 -0.334968 -0.111751 0.988595 2.419936 -0.460555 0.818336 0.579577 0.816276 -0.288905 -1.520132 0.001374 -0.470467 -0.402906 0.821479 -0.084715 -0.153104 -0.297816 1.180853 0.131614 -1.570377 0.354214 0.048324 0.366964 0.864860 -0.140315 0.030611 0.348973 -1.159310 1.350346 0.742738 0.609078 -0.878113 -0.416856 -0.100278 0.399712 0.757586 0.814379 -0.867362 0.742975 0.646124 1.245753 0.468182 0.612804 -0.923432 -0.605980 0.435672 -0.948802 -0.446375 -0.066595 0.413104 -0.733187 0.239325 -0.972125 -1.707074 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_base >::_M_allocate_node() = 0.235980 0.107117 0.252658 -0.327329 -0.507425 0.258044 -0.415140 -0.317396 0.027864 -0.071247 0.240189 -0.180614 -0.198510 0.428391 -0.261284 -0.465367 -0.173808 -0.216721 -0.046740 -0.190680 0.000991 0.097775 -0.108017 0.053007 -0.098775 -0.124128 -0.020053 0.084705 0.348513 -0.225871 -0.367222 -0.063341 -0.053781 0.496746 0.178801 -0.050887 0.205039 0.732565 0.221441 0.107391 -0.467125 -0.456158 0.152031 0.032374 -0.056195 -0.298984 -0.276872 0.220467 -0.502097 0.193727 0.361837 -0.113763 -0.087335 0.062054 0.148689 0.231822 -0.795703 0.612010 0.027244 0.055239 0.011645 -0.108901 0.045028 0.093608 0.185002 -0.229856 0.250704 0.492327 -0.311547 0.050699 -0.056264 -0.535905 0.839950 0.146740 -0.257046 0.003303 0.279069 -0.262684 0.340359 -0.443882 -0.556460 0.009450 0.081668 -0.054896 0.536203 0.062732 0.128868 -0.678000 0.191809 -0.751324 0.239857 -0.371652 0.255052 0.378765 -0.558539 0.022931 0.299832 0.128938 0.421450 0.104788 0.503770 0.096924 0.019258 0.124280 0.234683 0.015505 -0.027723 0.019699 -0.215200 -0.554071 -0.174105 -0.048225 -0.885400 0.089948 -0.109274 0.316863 -0.128138 0.101729 0.028730 0.110214 -0.622512 -0.357383 0.002041 -0.054978 0.363999 0.408502 -0.192801 0.267273 -0.144266 0.558528 -0.255956 0.013375 -0.099442 0.106931 0.073956 -0.549170 -0.949042 0.234376 0.356927 -0.279190 -0.515284 -0.344498 -0.102455 0.061903 -0.135761 0.656698 0.851375 -0.269519 -0.469362 0.542763 0.111671 0.116065 0.805739 0.062330 0.662219 -0.274903 0.001233 -0.177579 -0.158855 -0.180927 -0.630936 0.079943 0.030588 0.199343 0.212933 -0.065143 0.399199 -0.190583 -0.354834 -0.064120 0.038007 -0.222133 -0.295941 0.450737 0.316718 0.360899 0.320298 0.710029 -0.325220 -0.581209 0.170962 -0.145106 0.050081 0.003432 -0.113684 -0.046960 0.352894 -0.433241 -0.225291 -0.023063 -0.153380 -0.220559 0.119410 0.717833 0.184037 0.189516 0.169645 0.286059 0.770758 0.140794 0.124693 -0.517569 0.129494 0.347131 -0.154135 -0.406550 0.042355 -0.305192 0.053197 0.243025 -0.067135 0.183061 -0.199117 -0.266405 -0.236528 -0.098402 0.456189 0.232605 -0.260417 0.102240 -0.205931 0.149075 0.182142 0.296279 0.565193 0.497586 0.485197 -0.042924 0.163523 -0.058187 0.411393 -0.129622 0.254084 0.333206 0.187523 0.394746 0.179932 0.109487 0.327330 0.391048 0.044565 0.420758 0.095153 0.825653 -0.303672 0.112725 -0.316658 -0.071135 0.408363 0.966489 -0.502226 0.221496 0.175441 0.323087 0.097741 -0.663211 0.016769 -0.198508 -0.086124 0.134773 0.169944 0.015742 -0.196392 0.504535 0.087462 -0.525096 0.395235 0.048893 0.066982 0.194809 -0.091856 -0.178971 0.135827 -0.540932 0.260965 0.389955 0.334171 -0.364130 -0.129500 -0.048517 0.423458 -0.300269 0.313847 -0.127978 0.301208 0.418390 0.416271 0.295640 -0.015262 -0.413977 -0.515469 0.204751 -0.280062 -0.146649 0.244617 0.269133 -0.397016 0.144742 -0.030759 -0.568565 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::_S_buffer_size() = 0.116983 0.027314 0.057721 -0.043064 0.026432 0.030486 -0.028980 -0.051874 -0.025846 -0.096335 -0.024701 0.014507 -0.158364 0.055421 -0.103997 -0.158090 -0.024983 -0.093182 -0.056721 -0.049298 -0.025527 -0.009062 0.010080 -0.089098 0.060805 -0.040797 0.017339 -0.003697 0.003890 -0.164986 -0.030585 -0.008764 0.072991 0.141119 -0.000682 0.135494 -0.010722 0.117670 0.272182 0.062678 -0.228608 -0.182329 0.116335 -0.032531 0.027619 -0.191100 0.045939 0.060136 -0.139675 0.061795 -0.062193 -0.039189 -0.141934 -0.117265 -0.044876 0.138919 -0.256519 0.245437 -0.014920 -0.021617 -0.070892 -0.024491 0.007524 -0.132944 0.230870 -0.089950 -0.017100 0.133300 -0.244781 0.147870 -0.035753 -0.018351 0.298974 0.024683 -0.014977 0.054955 -0.029657 0.101563 0.009740 -0.253805 -0.013756 -0.087440 0.145257 0.229659 0.065690 0.131460 -0.054607 -0.169289 -0.024100 -0.124379 0.104423 -0.080471 0.123418 0.022911 -0.066658 0.122609 0.047349 -0.188003 -0.037252 0.127869 0.125513 -0.043521 0.019138 -0.006837 0.013683 -0.101424 0.031007 -0.042036 0.054319 -0.060670 -0.063486 0.092475 -0.193704 -0.025713 -0.112440 0.255114 -0.002046 0.099095 0.073934 -0.187146 -0.287797 -0.137297 0.033015 -0.018282 0.175829 0.006482 0.029722 0.012925 -0.037921 0.095316 0.002707 -0.051422 -0.043637 0.039619 0.163427 -0.308219 -0.169314 -0.064055 0.023154 -0.056607 -0.136873 -0.035889 -0.062733 0.093599 -0.050826 0.098849 0.159721 0.006551 -0.108904 0.075181 0.025658 0.138366 0.176045 0.077972 0.141380 -0.112318 0.052609 0.115910 0.062777 0.107061 -0.313746 -0.089216 -0.101736 0.043775 0.097953 -0.034335 -0.026451 -0.085380 0.020072 0.081248 -0.100717 -0.063872 -0.042194 0.027546 0.202739 0.228778 -0.000501 0.189916 -0.158543 -0.174328 -0.010221 -0.073752 -0.017986 0.090559 0.036428 -0.095123 0.036507 -0.240458 -0.107842 0.075551 -0.041360 0.009843 0.148204 0.140394 -0.012919 -0.037129 -0.050936 0.093165 0.019539 -0.116269 0.062611 -0.123627 -0.006661 0.047681 0.100528 -0.179891 0.048940 -0.007341 -0.011566 0.175656 0.009506 0.001835 0.108392 0.005348 0.039651 -0.070673 0.062181 -0.054871 0.297449 -0.080460 -0.021671 -0.076185 -0.022798 0.143204 0.152250 -0.004337 -0.081492 -0.003236 0.042990 -0.106229 0.144313 -0.058415 -0.004879 0.128773 0.031196 -0.048745 0.019805 0.000681 0.113655 0.083087 -0.047032 0.114578 0.092376 0.141578 -0.243523 0.003399 0.002917 -0.058053 0.107023 0.097027 -0.290007 0.007779 0.068678 0.061276 0.119419 -0.084508 -0.073703 -0.015714 -0.168568 0.186573 0.080342 0.007713 -0.025329 0.180141 0.030264 -0.110907 0.188365 0.045171 -0.012726 -0.084562 -0.047263 -0.083930 0.151403 -0.037343 -0.191754 -0.009342 0.143051 -0.134937 -0.064043 -0.028360 0.138527 -0.114917 0.015242 0.058125 -0.067000 0.124066 0.143257 0.052970 -0.126548 -0.011536 -0.139453 -0.058717 0.027949 -0.025598 0.086728 0.013904 0.010055 -0.105459 0.024408 -0.010001 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::push_back(int const&) = 0.814176 -1.032388 1.810976 -1.938967 -2.250530 2.015582 -2.532442 -1.599566 0.756255 0.393729 0.992851 -0.084845 0.102795 1.980489 -0.359773 -2.282251 -0.330042 -0.424448 0.541120 -0.714198 0.012817 0.424978 -0.869993 0.785456 -0.733067 -1.369843 0.400613 0.821919 0.693091 0.155582 -1.866123 -0.774707 -1.947213 2.800730 1.117309 0.192829 1.255955 4.623965 0.322046 1.837770 -1.189110 -2.719603 0.347800 0.138548 -0.586722 1.401490 -1.069714 0.666509 -2.054039 0.254174 2.688873 -0.708766 0.680790 0.867647 1.219277 -0.148323 -3.007669 0.382703 -0.216628 -0.061634 -0.504883 -1.030458 0.345642 1.542291 -1.699103 -0.811002 2.477627 2.560994 -0.716313 -0.378142 -0.028493 -3.569073 3.373505 1.671702 -1.255382 -0.088962 2.927757 -2.071701 2.126303 0.369330 -3.962685 -0.063822 -1.027989 -3.945926 3.741537 -0.402118 2.567769 -3.713168 3.210277 -4.324235 1.276132 -1.880789 1.355800 2.905330 -2.810767 0.186862 2.408553 5.017668 1.485793 -1.314973 2.755051 1.240484 -1.059592 1.297160 2.604453 0.122184 -1.098487 -0.368754 -2.313774 -2.895557 -0.265612 -2.613733 -4.141691 0.550151 -0.093222 0.813688 -0.981009 1.113559 -1.123198 2.045267 -4.204966 -0.629070 -0.108822 -0.446749 1.255546 1.594468 -1.551566 1.360804 0.013921 3.386032 -2.608835 -0.236200 -0.761032 0.741723 -0.604586 2.192833 -4.156243 1.511169 2.355621 -1.687788 -3.024787 -2.076909 -1.322931 2.059730 -0.165172 5.944524 5.139847 -1.775301 -2.095842 2.794182 -0.748161 0.161761 3.907597 0.687577 2.149405 -1.106186 -0.490408 -2.826831 -0.745155 -1.309365 -2.292783 1.367918 1.191270 2.175067 0.543333 2.456089 4.829700 -1.455274 -2.253415 -2.134482 0.904334 -1.524880 -1.652095 3.185879 -0.881045 1.262181 2.185895 3.885813 -1.218574 -1.816968 0.764871 -2.193178 0.003577 -1.943871 -0.689446 -0.989351 2.208523 -1.778196 -1.480071 -1.004573 -1.301976 -0.657966 -0.005117 4.114981 1.367888 1.248748 1.146058 3.061240 5.008541 2.190795 -0.929927 -2.718698 0.913772 1.914179 -2.254484 0.663241 -0.146768 -1.338423 0.282286 0.012578 0.105518 1.379033 -3.296224 -1.647903 -2.360584 0.865967 1.877512 1.848843 -6.348276 0.855753 0.492171 1.145085 2.182561 0.871414 3.273604 3.207799 3.647316 -0.655417 0.683567 0.617460 0.168577 -0.533774 1.562365 2.724194 0.708515 3.299178 1.236070 0.894162 1.388543 2.775727 1.745471 2.000237 0.075621 4.764167 0.274945 0.360073 -1.701352 0.122002 2.040446 5.134373 -1.760942 2.884101 1.212701 2.058967 -0.796230 -3.747780 0.777260 -1.467231 1.666417 -1.176091 0.599195 0.004291 -1.437173 2.573554 0.719982 -3.560108 0.747838 0.166045 0.820944 3.073951 -0.360210 0.015891 -0.172932 -3.277706 4.030373 2.151336 0.910989 -1.966141 1.557352 0.078029 1.623461 -1.078124 1.849589 0.136386 2.724506 0.707442 1.959019 2.140183 0.871453 -2.411200 -1.359301 1.382231 -3.474410 -0.721472 1.651126 1.969264 -1.711358 1.685212 -2.185290 -3.887877 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::deque >::_M_push_back_aux(int const&) = 1.236673 -1.196985 2.248485 -2.232319 -3.378279 2.720901 -4.483616 -2.286978 0.891064 -0.388904 1.475401 -0.343779 0.215337 2.023169 -0.880375 -3.475778 -1.000417 0.087345 0.498839 -1.775267 0.156560 0.233616 -1.000898 0.974471 -1.207099 -2.156730 0.759608 1.007180 2.203920 0.182684 -2.405055 -0.813546 -2.258229 3.500854 1.669269 -0.074072 1.969255 5.922664 1.959645 0.637994 -1.329741 -3.417601 0.467904 0.298730 -0.949829 2.177280 -1.684739 0.764273 -3.990364 1.552090 3.292439 -1.119961 0.851102 1.255706 1.272519 -0.196918 -4.055411 1.572508 -0.587442 -0.053927 -0.647850 -1.296973 0.535682 1.961170 -1.013921 -1.033015 3.415337 4.197247 -1.184005 -0.487344 0.113672 -4.459442 5.261888 1.759534 -1.472249 -0.374634 3.577074 -2.102031 2.530162 0.810280 -5.179061 -0.114827 -0.898434 -4.565959 4.729029 -0.588436 2.931655 -4.900689 3.833012 -5.818839 1.605034 -2.018582 1.928703 3.255662 -4.747819 0.178563 3.098037 5.778448 1.952298 -1.438838 3.726993 0.923773 -1.593707 1.640411 2.830154 -0.455582 -0.636470 0.150826 -2.404756 -3.884861 -0.848892 -3.126993 -6.204734 0.686690 -0.513397 1.521587 -1.676835 1.429708 -1.100591 2.217213 -5.008319 -1.383967 -0.430288 -0.536783 2.019584 1.844335 -2.062849 2.162319 0.081298 4.505210 -3.398212 -0.979114 -1.034290 0.802006 0.065698 1.726309 -6.632650 2.323498 3.478400 -2.025489 -4.079135 -1.632949 -1.825566 1.929310 -0.149901 7.644884 6.462858 -2.137270 -2.968863 3.580142 -1.341948 0.528174 6.133323 0.891084 3.195336 -1.508834 -0.572761 -3.498751 -1.092899 -1.631088 -5.259465 1.440223 1.787794 2.739457 1.236060 4.382952 5.689573 -2.224219 -3.064321 -2.641211 1.331167 -1.755505 -2.152427 3.846906 0.344742 1.649803 3.553156 5.278633 -1.988075 -3.209596 0.940495 -2.131350 -0.094470 -1.246131 -0.513663 -1.591705 2.975477 -2.211395 -2.012586 -0.970258 -1.515965 -0.836630 0.119069 7.816715 1.972299 1.802141 1.522357 3.267460 6.809081 2.817736 -1.014382 -3.629662 0.939937 3.136415 -2.673796 0.830104 -0.218307 -1.727150 0.541914 0.251277 0.117842 1.824239 -3.803031 -2.106863 -3.707725 1.258178 3.213873 2.657124 -7.519348 1.370912 0.145010 1.057446 2.381060 1.194401 4.528072 3.958277 4.805549 -0.891558 1.302268 0.543097 1.895525 -0.980997 2.403607 3.938687 0.797794 4.385511 1.437508 1.232204 1.767472 3.703445 2.088941 2.443490 0.150402 6.665050 -0.666337 0.846245 -3.021202 0.256329 2.882008 7.396818 -2.562115 3.577388 1.379129 3.201788 -0.129357 -6.274157 0.832558 -1.754060 2.311335 -1.733999 0.900570 0.182791 -2.029996 3.243982 1.272643 -4.259544 1.869588 0.264723 0.752945 3.343033 -0.844429 -0.802626 -0.176808 -4.592953 4.413606 2.994985 1.171205 -2.572319 2.071540 -0.133508 2.728815 -2.741851 2.461249 1.332301 4.000478 1.691434 2.513494 3.013806 0.245032 -3.308232 -2.858627 1.701596 -4.510354 -0.888033 2.718164 2.135841 -2.943208 2.516368 -1.626448 -5.682265 +PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/aho-corasick-algorithm.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::size() const = 0.383964 -0.227109 0.493881 -0.577464 -0.634711 0.668348 -0.826746 -0.522324 0.184328 -0.215828 0.405815 0.011633 0.098239 0.492965 -0.122318 -0.662601 -0.124619 -0.335018 0.040681 -0.197976 -0.008780 -0.002253 -0.281752 0.169563 -0.287073 -0.329273 0.121230 0.165836 0.209584 -0.187115 -0.694131 -0.170856 -0.533187 0.825781 0.409604 -0.063980 0.442653 1.295574 0.323814 0.177580 -0.252398 -0.690058 0.070878 0.006241 -0.268387 0.391604 -0.353865 0.235852 -0.513551 0.150909 0.811596 -0.273158 0.117772 0.267025 0.226056 0.050435 -0.913249 0.232753 -0.014581 0.131866 -0.136644 -0.291333 0.222561 0.372376 -0.210079 -0.256712 0.872395 0.798023 -0.215713 -0.143341 -0.075510 -1.160333 1.197079 0.468570 -0.227381 -0.086947 0.753045 -0.616722 0.630275 0.190208 -1.143173 0.030603 -0.279161 -1.035967 1.160126 -0.234314 0.544838 -1.048691 0.868944 -1.317474 0.254195 -0.519729 0.385174 0.709027 -0.908678 -0.056030 0.684296 1.344421 0.369889 -0.308565 0.843121 0.196533 -0.378846 0.298461 0.776880 -0.139610 -0.177942 0.040451 -0.597909 -0.893547 -0.127042 -0.619213 -1.308158 0.267836 -0.113182 0.139752 -0.416794 0.363974 -0.216898 0.502364 -1.027269 -0.242935 -0.080479 -0.113668 0.409306 0.564592 -0.470710 0.437581 -0.057158 0.946150 -0.680633 -0.094000 -0.234515 0.163204 0.052704 0.333584 -1.347422 0.503946 0.823229 -0.526540 -0.904702 -0.443668 -0.292458 0.414758 -0.111173 1.731132 1.445916 -0.515587 -0.625419 0.797422 0.068182 0.090160 1.284960 0.163603 0.798092 -0.389086 -0.080246 -0.652932 -0.238258 -0.458485 -1.410243 0.285700 0.465406 0.589161 0.246036 0.741218 1.635246 -0.401648 -0.657935 -0.057877 0.258514 -0.385373 -0.668604 0.857198 0.450664 0.359909 1.035557 1.176069 -0.387840 -0.541971 0.238709 -0.175679 0.040340 -0.404235 -0.229418 -0.336807 0.644660 -0.366721 -0.412836 -0.205803 -0.324051 -0.203011 0.056515 1.696649 0.502210 0.388493 0.293268 0.403927 1.562357 0.566235 -0.142487 -0.818784 0.251904 0.663984 -0.614547 0.279441 -0.112735 -0.444325 0.137328 0.113567 0.006942 0.477468 -0.881841 -0.510930 -0.617169 0.353349 0.629474 0.598578 -1.631486 0.201491 0.017587 0.218808 0.553555 0.327876 0.940151 0.970769 1.075070 -0.289291 0.247240 0.269231 0.125655 -0.426254 0.307236 1.086904 0.233981 0.809162 0.302331 0.298243 0.393297 0.743484 0.533764 0.603841 0.126624 1.429471 0.032582 0.134964 -0.590989 -0.039723 0.669543 1.541940 -0.610397 0.798328 0.276596 0.697251 -0.194810 -1.284899 0.218998 -0.364050 0.447320 -0.397392 0.207370 0.119447 -0.493014 0.787775 0.219449 -0.993087 0.255170 0.060347 0.212937 0.893617 -0.140525 0.021295 -0.093777 -0.934126 1.030018 0.655552 0.352563 -0.568939 0.473180 0.040739 0.593933 -0.824184 0.511438 0.223518 0.968568 0.251631 0.516883 0.680463 -0.013727 -0.778191 -0.425782 0.415701 -0.904246 -0.104375 0.644899 0.669578 -0.686019 0.422044 -0.543957 -1.026841 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reserve_map_at_back(unsigned long) = 1.161739 -0.647575 0.950657 -1.022203 -0.702270 1.127494 -0.722559 -1.394161 0.465351 0.885879 0.640058 -0.087336 -0.275881 0.797460 -0.030193 -1.157366 0.664790 -0.329492 0.422055 -0.795170 -0.103725 0.105729 -0.501239 -0.023174 -0.218111 -0.767668 0.363949 0.543184 0.144053 -0.084079 -1.380894 -0.519714 -0.774148 2.187406 0.736640 0.222893 0.000984 2.695236 0.251122 1.264847 -1.854146 -1.630949 0.817875 0.031559 -0.235039 -0.175385 -0.313494 0.643789 -0.337956 -0.583114 0.986009 -0.833711 0.562662 -0.088684 0.047313 0.972713 -1.789542 -0.063193 -0.009341 -0.611314 -0.956448 -0.566564 0.935600 1.004785 -1.443712 -1.054546 1.798877 1.159498 -0.837298 0.423331 -0.983758 -2.893681 1.343835 1.092976 -1.017797 -0.277538 0.892768 -1.482276 1.221057 0.840167 -1.928658 -0.452704 -0.333854 -1.851790 1.604525 -0.156653 1.856221 -2.925683 1.529861 -3.080269 1.052376 -1.290298 1.807064 1.602499 -1.542882 0.292485 1.207355 2.801868 0.738424 -1.076974 1.974970 0.801162 -0.197701 0.004927 2.092956 0.232867 -0.549707 -0.665443 -1.019304 -1.554410 0.205423 -1.263058 -2.481741 0.423059 -1.418610 0.053856 -0.528004 0.669596 -0.602545 1.665949 -3.025488 -1.046133 0.284782 -0.415888 1.460686 1.508147 -0.814135 0.888628 -0.052970 2.112835 -1.025564 -0.156091 -0.797436 0.747348 -0.460772 0.364209 -2.265100 0.560007 1.741029 -1.793771 -2.421542 -1.856353 -0.922314 1.115156 -0.408232 3.335149 3.364276 -1.103636 -1.395480 1.328362 -0.551724 -0.220254 2.596961 0.326639 2.571509 -1.976562 0.865868 -1.244805 0.497525 -0.189684 -0.532058 0.040309 0.150320 1.187169 0.121188 0.774385 3.013248 -0.864411 -0.846159 -0.235485 0.250451 -0.135392 -1.219160 1.860129 -0.819556 1.249067 0.598236 2.402729 -1.365565 -1.224988 0.719221 -1.294875 -0.500377 -0.655820 -0.314855 -0.856171 2.069840 -1.331126 -1.090894 -0.652554 -1.240613 0.147128 0.884029 2.123343 0.532258 0.315105 0.116278 1.908666 2.577183 0.890239 -0.315791 -1.784511 0.607510 1.757657 -0.679758 0.122202 -0.499098 -1.605680 -0.071690 -0.418529 0.078453 1.435921 -1.943468 -1.090207 -0.861361 0.535699 0.935805 0.539944 -3.708167 0.771146 0.065752 0.175783 0.879447 1.659550 1.730985 1.844459 1.614069 -1.319856 0.614372 -0.467312 -0.915754 -0.029095 0.598696 1.809923 0.501240 1.344558 0.565206 0.530034 1.233807 0.705448 1.402320 1.656785 0.439436 2.779570 -0.484507 0.623457 -0.486207 -1.011958 1.423700 3.345889 -0.602992 0.855029 0.826222 0.890749 -1.140651 -2.465993 -0.006566 -0.692542 0.396314 -0.312293 0.639240 -0.067793 -1.429057 2.662877 0.666528 -3.073279 1.099148 0.013991 0.228951 2.461228 -0.690202 0.473626 0.200711 -1.264406 1.823647 1.142071 1.215123 -1.548941 0.451504 -0.142012 1.228140 -0.462220 0.203899 -1.194198 1.650117 0.625500 2.124709 1.654730 0.842943 -1.664420 0.125435 0.381101 -1.923781 -0.242747 0.937663 1.811958 -1.046320 0.324619 -2.458516 -0.710783 +PE-benchmarks/aho-corasick-algorithm.cpp__std::operator-(std::_Deque_iterator const&, std::_Deque_iterator const&) = 1.979674 -1.002906 0.612242 -0.312463 -0.938451 1.057928 -0.498041 -2.584459 0.330783 1.817121 0.883630 -1.015186 -0.241450 1.249866 0.083689 -0.845890 1.282193 1.260396 0.843633 -1.445331 -0.077912 0.161343 -0.593416 -0.377279 -0.597015 -0.854955 0.469498 0.400227 -0.046403 1.086561 -1.850371 -0.982943 0.142764 2.901622 1.372706 0.678547 -1.272037 3.010648 -0.146676 2.981800 -3.670468 -1.940671 1.259879 0.179569 0.758393 -1.509357 -1.068329 1.010995 0.745283 -1.654944 0.443419 -1.169117 0.914304 -0.152983 -0.208566 1.820412 -1.255701 -0.194702 0.055833 -2.126759 -1.270286 -0.519097 0.641333 1.946373 -3.173218 -1.798900 1.711541 1.927476 -0.664529 1.396214 -2.206021 -4.462643 0.964794 1.020624 -2.393981 -1.110240 0.432994 -1.584607 1.439417 1.728305 -2.081973 -0.696876 -0.429166 -0.457342 0.434007 0.793914 3.298354 -4.323690 1.238514 -4.610281 2.073718 -1.818161 3.001460 1.737361 -2.037651 0.209966 1.402610 3.340600 2.069399 -0.596925 2.204336 1.792433 -0.032425 -0.928629 3.130607 1.182656 -0.072126 -1.555739 -0.659071 -1.672487 0.913465 -1.008277 -3.194799 0.440955 -2.616815 0.417217 -1.265509 1.127827 -0.163535 2.470752 -4.310826 -1.994108 1.083097 -0.601159 2.701633 1.981293 -1.281778 1.739443 -0.636894 2.496190 -0.566694 -0.261384 -1.025954 1.275602 -1.965952 -1.362702 -3.234155 1.058467 2.542633 -3.079423 -3.351976 -3.375198 -1.033324 2.163089 -0.981673 2.563745 4.174772 -1.732716 -1.202950 1.109454 -0.499414 -1.526219 3.208005 0.258104 4.881996 -3.560133 2.301531 -0.917344 1.080903 0.068380 1.706970 -0.497961 -1.144108 1.231102 -0.059684 -2.088739 3.771905 -1.439730 -1.078877 -0.630544 -0.110079 1.526432 -0.459585 2.280962 -3.148778 1.196583 -1.684606 2.356149 -2.021568 -1.464570 1.090775 -2.433690 -1.422001 0.386546 0.601642 -0.975225 3.907273 -2.576151 -1.287683 -0.171174 -2.871785 0.623412 1.757550 1.333741 -0.308174 0.454000 -0.041462 3.079582 2.593488 1.355385 -0.247528 -1.922795 0.906569 2.431773 -0.273760 -0.959114 -1.123172 -3.153811 -0.300665 -2.649284 0.178949 1.943479 -2.300112 -1.161002 -1.152253 -0.309141 1.293995 0.454486 -2.385119 1.520624 0.086250 0.762086 0.351608 2.983855 1.668300 2.467610 2.091606 -2.238127 0.845942 -1.948277 -1.782368 1.937526 1.406544 0.824702 0.477147 1.290933 0.335128 0.350825 1.990032 -0.814864 2.753869 2.332573 0.842486 3.173486 -1.416908 1.794648 -0.082544 -2.205147 2.053254 5.008746 0.106047 -0.072914 0.727883 -0.419020 -2.363809 -1.870284 -0.543146 -0.209675 -1.187597 0.400570 1.159332 0.139141 -2.431975 4.025907 1.026950 -4.372771 1.820256 0.044278 -0.219103 4.122783 -1.468237 1.245880 0.323536 0.056269 1.729608 1.588739 2.073482 -2.300810 -1.526398 -0.732518 0.896347 1.973823 -0.640537 -3.058675 2.215813 1.957389 3.808371 1.377868 0.862055 -2.837381 1.056267 0.240919 -2.138646 -0.309376 0.576534 2.605527 -0.965374 -0.179700 -3.530523 0.024037 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/aho-corasick-algorithm.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/aho-corasick-algorithm.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_reallocate_map(unsigned long, bool) = 4.494839 -4.408912 7.163793 -8.001696 -7.021926 9.066482 -10.214955 -8.622674 3.331666 4.606758 5.118549 -0.431011 1.339311 8.023471 -1.905171 -8.129067 1.303325 0.159680 3.093667 -4.935199 0.566593 0.794378 -3.655463 0.676931 -3.263450 -6.863300 3.437782 2.855946 1.154837 2.376548 -8.680527 -3.124553 -7.575974 12.687835 5.629044 1.049934 2.774836 17.597510 0.079180 8.348802 -8.137965 -11.788225 3.005163 1.344196 -1.418303 4.050247 -4.566721 1.951122 -5.453814 -0.100557 8.810624 -5.732655 4.762358 2.293101 2.850305 1.087653 -10.630086 -0.815917 -1.026618 -2.700466 -4.140549 -4.126637 4.832495 7.833593 -8.502295 -4.033992 11.890191 11.516848 -3.017912 -0.559529 -3.093664 -17.739910 10.781235 6.993358 -5.088463 -1.897810 9.370723 -10.309456 8.326962 4.293690 -15.131863 -1.274106 -3.404080 -15.964846 12.438169 -0.640310 13.605943 -17.049524 12.693911 -19.164863 6.603505 -6.103177 8.284231 10.845306 -11.142730 0.274831 10.005971 22.545500 5.747251 -5.862596 11.773942 5.807405 -4.106470 2.453706 12.925386 1.850472 -4.475191 -3.036290 -8.158104 -10.947823 -0.360592 -11.056174 -16.932793 2.574030 -5.011701 0.532620 -5.472012 3.756360 -4.971267 10.818120 -18.792785 -5.285348 -0.214730 -2.153963 6.930657 6.608167 -4.979314 6.737686 1.202950 13.679550 -10.219513 -2.799811 -4.157764 3.944737 -4.351714 7.603275 -16.562262 6.718518 10.912173 -9.489835 -14.007192 -10.299223 -6.504031 9.308611 -0.280484 24.541011 21.198783 -7.262126 -9.756948 9.391753 -3.509891 -2.088163 18.174173 2.826959 12.314600 -8.845909 2.199033 -11.192921 0.135955 -3.771877 -7.070099 2.868477 4.495946 9.500254 1.393005 8.988205 20.638731 -6.729064 -7.619373 -8.192326 4.412840 -4.543020 -6.096489 12.455327 -6.275976 5.788585 6.389333 16.141629 -8.199738 -7.863977 2.942571 -11.405267 -2.589069 -6.164059 -1.279857 -5.469139 12.301798 -7.365326 -6.940287 -4.465092 -6.697872 -0.322858 2.460196 14.961362 4.909270 4.105174 1.802860 13.136324 19.234297 8.740888 -3.732487 -10.083486 3.356216 10.937292 -7.684318 1.391497 -2.449101 -8.459763 0.856063 -3.120321 0.697506 8.190678 -14.459798 -6.912171 -9.465829 3.653737 7.734710 5.878747 -26.157764 5.243537 0.522906 3.515838 7.186329 6.569689 12.156593 13.576961 13.214767 -5.915139 3.963626 -1.222862 -1.590182 -0.966103 7.196409 10.648626 2.621186 13.800412 3.556364 4.582040 6.553173 8.879843 9.252377 8.696356 -0.242498 18.550475 -0.001520 3.743920 -6.229916 -2.385708 8.623275 22.553137 -4.624057 9.110705 4.613664 6.470534 -5.058363 -16.303898 2.789978 -5.391106 5.235796 -4.397206 5.226083 0.724805 -9.114785 13.517512 4.777833 -16.896496 5.267175 0.230004 2.535988 15.448046 -4.233198 1.001353 -0.591627 -10.394576 15.794873 8.550815 5.146666 -9.475208 5.593951 -0.318922 8.042333 -2.484680 4.380347 -2.124750 13.804470 3.702218 10.372303 9.833250 5.596496 -11.314850 -2.082413 3.522087 -14.290996 -2.327730 6.557245 9.738113 -7.283668 5.641036 -11.861136 -11.688581 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::copy_backward(int**, int**, int**) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__miter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_wrap(int** const&, int**) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__niter_base(int**) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move::__copy_m(int* const*, int* const*, int**) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a(int**, int**, int**) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a1(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward_a2(int**, int**, int**) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/aho-corasick-algorithm.cpp__int** std::__copy_move_backward::__copy_move_b(int* const*, int* const*, int**) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::front() = 0.199628 0.265665 0.079470 -0.317338 -0.590034 0.046303 -0.209447 -0.169693 -0.045295 -0.008585 0.210602 -0.380828 -0.314136 0.590605 -0.228220 -0.434546 -0.218633 -0.362239 -0.154715 -0.007881 -0.018145 0.250812 -0.057252 0.121044 -0.008408 0.119972 -0.217811 0.022652 0.509506 -0.423650 -0.373488 0.000548 0.102938 0.390620 0.026732 -0.185872 0.199284 0.714895 0.073722 0.160965 -0.462019 -0.304248 0.142384 0.029462 -0.039691 -0.535465 -0.307624 0.340191 -0.413749 0.086155 0.347795 0.082424 -0.323515 0.006670 0.242220 0.343791 -0.883757 0.863047 0.141850 0.272451 0.157689 -0.071052 -0.038253 -0.025167 0.230231 -0.263305 0.027187 0.237429 -0.383136 0.024301 -0.059014 -0.386890 0.754616 0.110151 -0.327230 0.096294 0.155072 -0.242871 0.362089 -0.836790 -0.444111 0.121205 0.167885 0.231664 0.478035 0.082888 -0.097390 -0.621425 0.055204 -0.614256 0.172893 -0.491340 0.141696 0.476049 -0.466078 0.011883 0.097955 -0.246774 0.597479 0.290499 0.474872 0.096828 0.191681 0.094770 0.010012 0.140979 -0.048432 0.046837 -0.138396 -0.569625 -0.177527 0.211133 -0.786378 0.125122 0.007836 0.369094 0.095787 0.047451 0.092280 -0.068841 -0.480690 -0.499214 0.025632 -0.040612 0.357919 0.579547 -0.208305 0.171052 -0.356478 0.512907 -0.026489 0.211252 -0.013396 0.072427 -0.023144 -0.824005 -0.832678 0.134981 0.201970 -0.204840 -0.401750 -0.469106 0.080189 -0.223162 -0.239111 0.422246 0.789117 -0.243915 -0.379062 0.662005 0.197080 0.223037 0.625415 -0.102682 0.738660 -0.205180 -0.033473 0.067399 -0.203891 -0.235398 -0.422516 0.136121 -0.132811 -0.059192 0.145112 -0.466572 0.019674 0.017317 -0.319345 -0.071683 -0.007807 -0.212417 -0.335894 0.477907 0.250892 0.361219 0.196953 0.595166 -0.176878 -0.542123 0.330674 -0.007039 0.143513 -0.064208 -0.241179 0.124091 0.244297 -0.438484 -0.081379 0.048460 -0.064095 -0.422581 0.041512 0.411395 0.115345 0.138799 0.306119 0.233634 0.638852 -0.014416 0.292001 -0.602427 0.137876 0.203923 -0.158173 -0.620166 0.170091 -0.303751 0.017955 0.401671 -0.200272 -0.019767 -0.028199 -0.332044 -0.061231 -0.216263 0.459068 0.144003 0.096270 0.043988 -0.330899 0.239779 0.160730 0.291334 0.461986 0.406982 0.427292 0.052440 0.124787 -0.004110 0.420817 -0.077345 0.082447 0.118868 0.263433 0.237962 0.225587 0.026892 0.342872 0.254421 -0.270843 0.434931 0.160794 0.774686 -0.239640 -0.011036 -0.222916 -0.132379 0.364499 0.916210 -0.603722 0.039280 0.203472 0.221228 0.114228 -0.400829 -0.062329 -0.229684 -0.328959 0.239212 -0.064146 -0.052918 0.008806 0.399205 -0.096873 -0.446308 0.371273 0.011023 0.109718 0.003683 0.037540 -0.164522 0.230892 -0.622664 0.108048 0.389339 0.340989 -0.210704 -0.345996 -0.080668 0.363935 -0.193515 0.357386 -0.271866 0.141175 0.530639 0.391735 0.203658 -0.066879 -0.292331 -0.616988 0.232385 -0.042944 -0.197787 0.013879 0.207210 -0.346646 0.044346 0.106504 -0.528008 +PE-benchmarks/aho-corasick-algorithm.cpp__std::_Deque_iterator::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::pop_front() = 0.880981 -1.280698 1.742197 -1.628192 -1.988641 1.847942 -2.764380 -1.087881 0.757114 0.381865 0.700140 0.024413 -0.259258 1.661830 -0.360028 -2.462659 -0.109345 -0.128710 0.808029 -0.906367 0.195661 0.326726 -0.317801 0.663113 -0.597971 -1.490367 0.098358 0.806882 1.440889 0.113556 -1.460498 -0.509468 -1.821587 2.236333 0.685882 0.017077 1.171933 4.163433 0.952774 1.388976 -0.942911 -2.411980 0.450377 0.121466 -0.468948 1.612735 -0.910068 0.644787 -2.419926 0.247921 2.306906 -0.537761 0.770133 0.646036 0.733833 -0.170418 -2.905774 0.561704 -0.611409 0.057003 -0.188921 -0.684781 0.220389 1.474205 -0.934605 -0.741521 2.143987 2.397281 -1.202551 -0.555136 0.136621 -2.545874 3.212771 1.391866 -1.015767 -0.015199 2.975283 -1.287132 1.835050 0.097069 -3.614814 -0.157326 -1.151720 -3.561564 3.448741 -0.419935 2.352929 -3.403755 3.152203 -3.813634 1.565748 -1.597881 1.261576 2.580377 -2.720828 0.338175 2.318186 4.316900 1.342101 -1.218683 2.801245 0.986885 -1.080579 1.404738 2.093036 -0.270947 -0.901382 0.022668 -1.968240 -2.470003 -0.414016 -2.478205 -3.723264 0.475945 0.029599 1.167233 -0.424324 0.940726 -1.086040 1.423956 -3.879910 -0.524402 -0.167992 -0.395578 1.095652 1.162671 -1.475638 1.127579 0.195816 3.340635 -2.624538 -0.459542 -0.256764 0.652384 -0.059543 1.986894 -3.561512 1.435554 1.993077 -1.383406 -2.702648 -1.622009 -1.055327 1.570152 -0.105228 5.594959 4.594626 -1.264990 -1.635141 2.386326 -1.293705 0.436357 3.710227 0.561049 1.854205 -0.899623 -0.874950 -2.507967 -0.703958 -0.804493 -2.386817 1.331131 1.373514 2.029009 0.719081 3.002114 3.602420 -1.564554 -2.049263 -2.289481 0.783100 -1.458479 -1.344876 2.541051 -0.663737 0.955362 2.297178 3.649523 -0.680898 -1.960843 0.794050 -1.947223 -0.129296 -1.379367 -0.483237 -1.060620 1.532937 -1.782343 -1.419592 -1.157239 -1.059740 -0.495430 -0.082496 4.168930 1.556764 1.392459 1.025599 3.034599 4.242656 2.151437 -0.918990 -2.680037 0.575356 1.763935 -2.120630 0.722350 -0.027162 -1.067883 0.535554 0.554627 0.054340 1.232101 -2.872299 -1.679022 -2.485283 0.857723 1.811669 1.679490 -5.541441 0.534469 0.876149 0.942805 2.013632 0.863616 2.981215 2.567659 3.094569 -0.217513 0.697741 0.859549 0.597395 -0.679241 1.330410 2.522207 0.571440 2.769312 1.056887 0.868514 1.494412 2.674135 1.305266 1.622169 -0.104573 4.188019 0.018951 0.197261 -1.724712 0.171079 1.866911 4.595561 -1.731151 2.704871 1.230968 1.947980 -0.166089 -3.598450 0.839517 -1.438601 1.872167 -1.032881 0.563489 0.307748 -1.333863 1.861279 0.801372 -3.287607 1.244571 0.087810 0.711728 2.777061 -0.230006 -0.179407 -0.388861 -3.332664 3.105616 2.021541 0.693332 -1.759623 1.820993 0.031685 1.669525 -1.364785 1.866272 0.457244 2.205273 0.778860 1.560121 1.999215 0.511166 -2.084177 -1.961618 1.159924 -3.311312 -0.727434 1.509518 1.240823 -1.648622 1.523609 -1.392442 -3.462690 +PE-benchmarks/aho-corasick-algorithm.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/aho-corasick-algorithm.cpp__std::deque >::_M_pop_front_aux() = 1.011918 -1.330283 1.916193 -1.876801 -2.553234 2.538157 -3.870120 -2.000968 0.761358 -0.589072 1.144993 0.075931 0.832530 1.730531 -0.601438 -2.440841 -0.766384 -0.031330 0.621622 -1.163599 0.045634 0.054436 -1.091323 0.979544 -1.237446 -1.755292 0.664456 0.597109 0.984029 0.338463 -2.051731 -0.843496 -2.299650 2.892349 1.648708 0.020856 1.678934 4.835621 1.498444 0.759036 -0.609148 -2.703201 -0.117164 0.145771 -0.742311 2.375967 -1.451582 0.443454 -2.552329 1.178709 2.937614 -0.979907 0.772744 1.427452 1.116273 -0.739567 -2.825194 0.485005 -0.377058 0.027228 -0.493830 -1.150116 0.390101 1.701625 -1.383897 -0.612561 3.120516 3.620205 -0.409619 -0.532275 0.189484 -3.925597 3.961082 1.682201 -1.072865 -0.425662 3.342495 -1.968252 2.127959 1.252986 -4.496184 0.056046 -1.272014 -4.554293 4.194179 -0.679995 2.684633 -3.669218 3.811349 -4.778075 0.943583 -1.662510 1.299764 2.738124 -3.695931 -0.129463 2.838298 5.918098 1.529351 -1.392631 2.866623 1.030640 -1.955680 1.514335 2.866437 -0.439835 -0.453876 0.219264 -2.230411 -3.112218 -0.581300 -2.967003 -4.768822 0.706417 -0.090791 0.820112 -1.950579 1.546997 -1.129231 2.049781 -4.085743 -0.807022 -0.421345 -0.430704 1.219431 1.282974 -1.819345 1.769480 0.056983 3.528765 -3.039995 -0.774944 -0.840799 0.592232 -0.223006 2.443226 -5.343022 2.021705 2.955403 -1.708266 -3.230501 -1.328932 -1.568160 2.078691 -0.021085 6.743734 5.210943 -1.916343 -2.168788 2.877962 -0.702888 0.102406 4.860432 0.867851 2.110565 -0.876880 -0.703012 -3.152457 -1.075177 -1.771622 -4.957688 1.407574 1.945495 2.487767 0.921911 3.791726 5.873750 -1.922909 -2.734653 -2.014228 1.171378 -1.434538 -1.782456 3.200877 0.200157 0.972316 3.299528 4.080785 -1.205022 -2.011774 0.546338 -1.808355 0.055476 -1.288917 -0.308460 -1.569530 2.453043 -1.498057 -1.645366 -0.684669 -1.379392 -0.616255 -0.210156 6.589397 1.767329 1.705620 1.315770 2.482430 5.894296 2.678954 -1.022415 -2.675473 0.882151 2.468258 -2.523669 1.480804 -0.336559 -1.308723 0.498177 -0.376422 0.291348 1.593860 -3.692876 -1.635865 -3.191400 1.419474 2.523105 2.551340 -6.696576 1.107983 0.319309 1.066194 2.235292 0.595836 3.609595 3.529473 4.294743 -0.851807 0.909577 0.797317 1.047523 -0.970022 2.023872 3.508876 0.549466 3.651708 1.211913 1.118610 1.126914 3.148142 2.346956 1.914252 0.000433 5.357248 0.082385 0.738510 -2.503953 0.419105 2.297271 5.863185 -1.842579 3.511282 0.991792 2.503159 -0.568987 -4.964304 0.981803 -1.270454 2.234057 -2.061934 0.732434 0.282756 -1.750238 2.435276 1.037504 -3.304606 0.803265 0.309656 0.632255 3.261274 -0.472718 -0.305003 -0.507801 -3.550325 4.313338 2.459485 0.741524 -2.068704 2.054159 0.117587 1.980844 -2.285275 2.150409 1.553060 3.853309 0.885509 1.648768 2.384087 0.001865 -2.792736 -1.889272 1.722177 -3.940212 -0.672367 2.531488 2.113348 -2.267604 2.166899 -1.540438 -4.869814 +PE-benchmarks/aho-corasick-algorithm.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/aho-corasick-algorithm.cpp___GLOBAL__sub_I_aho_corasick_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/shortest-common-supersequence.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/shortest-common-supersequence.cpp__superSeq(char*, char*, int, int) = 5.276680 0.323171 2.243133 -2.319589 0.454851 2.386691 1.949120 -4.982912 -0.179381 12.529535 3.224389 -2.827380 -2.276431 4.069959 -0.927815 -4.161912 5.094601 5.877013 1.127035 -2.467437 -2.543866 0.592155 -1.466126 -5.299639 3.423000 -3.325246 1.520558 3.276637 -2.383947 4.038209 -3.994513 -0.884139 0.474916 10.319788 0.733392 0.208999 -1.738124 7.776155 -8.320202 9.460821 -8.391555 -7.906229 9.514300 2.112205 2.263933 -1.280226 -0.903659 2.835723 0.991369 -7.349673 0.360005 -4.848157 4.018675 -5.542744 -0.826491 9.343061 -8.110930 -2.261290 1.499670 -6.323830 -8.505105 -0.482281 5.657039 2.082418 -6.744944 -6.898178 2.616467 3.871284 -1.550027 1.670006 -8.848216 -13.191392 3.803177 2.579812 -3.961015 1.051834 -1.885101 -6.516876 3.403396 2.103508 -4.286131 -3.993201 2.990441 -2.533020 1.556815 5.410529 10.518493 -13.491135 2.867964 -11.310928 8.374316 -4.037739 11.155432 7.707769 -2.323939 3.364352 4.226973 7.113756 0.399989 -0.085998 8.943816 2.444723 1.174402 -3.215030 4.630597 6.729252 -8.222621 -8.738899 -4.577504 -3.961909 2.345061 -1.473988 -7.188871 0.925385 -10.892577 2.341730 1.999484 -1.875329 -1.522391 9.977013 -13.267340 -3.917199 2.724458 -2.143862 8.841529 6.208976 1.881303 1.803028 0.620981 6.924095 -1.520352 -3.920689 -3.711903 5.381286 -5.443908 -3.462411 -2.442177 1.183267 4.694910 -10.166084 -9.594836 -11.694599 -2.688920 7.821044 -2.807118 8.153456 13.841074 -3.746392 -4.990791 3.035040 -4.046240 -1.093571 9.200432 2.561347 14.643762 -13.920859 8.141975 -1.898885 5.887531 4.725423 8.588655 -3.282700 -5.253931 5.459088 0.294375 -0.288292 10.675549 -2.330291 1.295634 -0.716008 2.332218 2.062493 -0.732377 8.157732 -9.236699 6.761894 -4.734900 12.927707 -8.971464 -5.382360 3.375543 -8.418542 -6.106121 -5.082659 -0.545740 -2.186857 8.935326 -6.875527 -5.138204 -2.466032 -3.780283 2.352545 8.545695 -2.120579 -0.749482 -2.392042 -6.406840 8.890683 2.960156 -0.003514 -0.946274 -7.089865 0.433750 4.466144 -3.802929 -8.382534 -1.995951 -7.294251 -0.948283 -1.408557 -0.542514 6.808538 -6.896055 -3.130316 1.083154 -1.144396 1.032671 -4.400454 -5.987914 4.032995 -1.395728 -0.328236 2.533982 11.575360 7.506394 7.389386 0.362083 -3.336890 2.203478 -5.806612 -8.294140 5.878473 0.761238 6.507957 3.402340 4.200978 -0.722777 2.896920 3.374870 -3.662436 5.725460 7.723907 2.689364 8.354940 -2.427565 2.288154 3.332168 -7.223777 5.755048 8.598985 -4.188054 -3.777173 3.156422 -1.320092 -5.923037 -2.585912 0.130703 -1.731941 -6.029934 2.694798 5.867652 -0.004557 -7.314087 14.642603 2.471536 -15.542103 7.829213 0.023371 1.930447 9.536511 -4.393659 5.477936 2.734330 3.380171 3.365573 3.248686 8.929235 -9.810414 1.871648 -0.906418 5.735721 5.663181 -3.953787 -15.494748 3.173496 3.187464 10.025225 4.287283 9.331585 -5.501325 5.457852 -3.375680 -4.418932 -0.016836 -2.969370 5.754712 -0.977838 1.273818 -13.649871 4.709391 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/shortest-common-supersequence.cpp__main = 0.380156 0.143943 0.414347 -0.554976 -0.838492 0.854111 -1.742602 -0.615704 0.243777 -0.487762 0.483329 -0.625342 -0.311084 0.721615 -0.606814 -1.330825 -0.183787 0.096863 0.213741 -0.824355 0.010884 -0.163986 -0.213643 -0.069344 -0.345587 -0.544406 0.148029 -0.117149 1.477457 -0.117388 -1.081111 0.028581 -0.040858 1.267389 0.554700 -0.123680 0.632875 1.543938 1.639052 0.010147 -0.872917 -0.971345 0.256065 0.328914 -0.357730 0.099207 -0.338505 0.255622 -2.040890 1.079136 0.757456 -0.593731 -0.135802 0.234790 0.089122 0.610371 -1.744113 1.752169 -0.260233 0.419694 0.092916 -0.470817 0.365807 0.364941 0.882382 -0.136001 0.725513 1.515744 -1.020644 0.119135 -0.337465 -1.219345 1.929085 0.565640 -0.746875 -0.176256 0.478210 -0.273199 0.327375 -0.788128 -1.225885 0.033206 0.444424 0.094419 1.255964 0.384892 0.366096 -1.576428 0.232878 -1.808229 0.727191 -0.642379 1.045271 0.885819 -1.744770 -0.147062 0.560965 0.044692 0.770092 0.140524 1.210918 -0.133476 -0.384670 -0.143580 0.436768 0.041434 0.311334 0.266254 0.220956 -1.019166 -0.882846 0.155124 -1.786817 -0.039722 -1.097937 1.111696 -0.409634 0.483022 -0.437699 -0.659738 -1.155508 -2.074769 -0.494442 -0.187003 1.657447 0.743057 -0.329379 1.088653 0.031489 1.469101 -0.384067 -0.697477 -0.660486 0.105203 0.496021 -1.220724 -2.845641 0.607892 1.199342 -0.641168 -1.548501 -0.653146 -0.599692 -0.172874 -0.068175 1.837963 1.782607 -0.215203 -0.870517 1.136622 -0.577748 0.896441 2.742685 0.116767 1.591437 -1.036387 0.726922 -0.174217 0.172742 -0.621607 -1.991622 -0.159564 0.366005 0.267747 0.588964 1.480650 -0.168732 -0.518036 -0.678810 -1.050704 -0.095550 -0.435940 -0.842722 1.100101 0.678806 0.396351 0.822043 1.814261 -1.186154 -1.965254 0.589753 -0.338457 -0.096594 0.634393 -0.153453 -0.486490 1.109569 -1.219999 -0.747044 0.385491 0.168138 -0.268498 -0.004497 2.927007 0.156518 0.294861 0.197648 0.882152 1.628864 0.295135 0.349429 -1.222818 -0.238178 1.242871 -0.441548 -0.409844 0.323643 -0.837920 0.122770 0.638889 -0.098535 0.144790 -0.690472 -0.872340 -0.862936 -0.099325 1.828377 0.557567 -0.900671 0.636272 -0.446050 -0.388661 0.520796 0.754243 1.152075 0.881419 1.001241 -0.550319 0.624078 -0.415748 1.593082 -0.441611 0.895863 1.038040 0.237351 0.695430 0.178166 0.060852 0.463980 0.737336 -0.285293 0.620254 0.261100 1.805700 -0.666045 0.717332 -0.866423 -0.796104 0.921662 2.703367 -1.440092 0.311524 0.499626 0.782857 0.790481 -2.423572 -0.150184 -0.471611 -0.132674 -0.097673 0.095834 0.046365 -0.695511 1.287035 0.438513 -1.079566 1.329948 0.107570 -0.226031 0.369435 -0.619856 -0.977508 0.383478 -1.684279 0.530184 0.739782 0.851852 -0.559179 0.226727 -0.456760 1.146057 -1.118362 0.231205 0.856947 0.875980 1.243398 0.909409 1.684621 -0.371401 -0.715386 -1.463198 -0.056323 -1.045276 -0.509542 0.400212 0.753325 -0.602330 0.450865 0.440165 -1.576500 +PE-benchmarks/shortest-common-supersequence.cpp___GLOBAL__sub_I_shortest_common_supersequence.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/boyer-moore-algorithm.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 0.890516 0.525845 1.428858 -1.125477 -0.318221 0.129437 1.604337 -0.790361 0.122712 3.394869 0.744085 -0.673100 -1.761837 1.590365 -0.358365 -1.278982 1.073678 -0.228429 -0.116082 -0.698591 -0.387612 0.705473 -0.165483 -1.171734 1.338104 -0.593806 0.244388 1.710248 -0.350921 0.257051 -0.670334 -0.245673 0.284479 2.813726 -0.422019 0.239838 -0.317781 2.840111 -3.299703 2.728670 -2.892823 -2.901378 3.169616 0.254734 0.087822 -1.783494 -0.169234 1.223438 -0.810035 -1.986789 0.431716 -0.499373 0.664263 -1.932178 0.186446 2.729247 -3.751034 0.234482 0.399308 -1.393459 -2.154223 -0.368316 1.089934 0.099083 -1.318155 -1.856759 0.445154 -0.170142 -1.221139 0.706015 -1.602244 -2.668854 1.348732 0.463397 -0.813440 0.978228 0.080515 -1.981172 1.493654 -0.831254 -1.122097 -1.154947 0.917218 -0.828577 1.138516 1.081645 1.828411 -3.788967 0.055771 -2.733471 2.310600 -1.851238 2.402674 2.320998 -0.907022 1.626814 0.855814 1.136145 0.166648 -0.504402 2.522886 0.923734 1.772610 -0.176207 1.350540 1.824409 -2.696520 -2.438599 -2.136611 -1.589897 0.693322 -0.847416 -2.319938 0.044956 -2.012106 -0.098375 1.426480 -1.111538 -0.478040 2.620049 -3.949651 0.058210 1.134250 -0.504830 1.666511 2.053379 0.169402 0.001867 0.148511 2.225757 -0.562758 0.153772 -0.710109 1.403548 -0.950748 -1.571264 -0.397809 -0.203501 0.539286 -2.177743 -2.526801 -3.727962 -0.467084 1.535266 -0.682117 1.627589 4.216915 -0.765685 -2.105186 1.507908 -0.445317 0.274800 1.845729 0.617973 3.450977 -3.022338 1.296625 -0.802386 1.025070 1.510305 3.443238 -0.396506 -1.593975 1.346781 0.113019 -1.150200 1.940816 -0.483476 0.333846 -0.575722 0.499723 -0.838597 -0.740526 2.634863 -1.930373 2.563932 -1.503555 3.410696 -2.274449 -1.938956 0.956726 -2.810119 -0.921161 -2.379572 -1.090529 0.060103 1.789849 -2.235192 -1.435636 -1.761280 -0.605037 0.182356 2.041911 -2.469818 0.030051 -0.825188 -0.798809 2.169005 0.934384 -0.463035 0.075167 -2.527599 0.236895 1.158326 -0.212504 -3.398117 0.112474 -1.614885 -0.415781 0.715220 -0.224944 1.535515 -1.205563 -0.974735 0.969774 -0.892667 -0.439564 -1.337865 -2.714470 0.564293 -0.383912 0.232172 1.047670 2.897851 2.576617 1.564960 0.007935 -0.148371 0.484670 -1.408391 -2.162576 1.108461 -0.118322 1.227956 1.130189 1.405312 0.607522 0.511242 1.403689 0.342093 0.167347 2.443470 1.119636 2.518360 -0.561329 -0.018476 0.958460 -1.206793 1.407462 2.104712 -0.680844 -0.850141 1.362700 0.361022 -1.106285 -0.754120 -0.397049 -1.099777 -1.068468 1.891414 1.137539 -0.958642 -0.895018 3.824882 0.236283 -4.296737 1.889655 -0.055337 0.872104 1.568845 -0.869197 0.759741 1.449465 -0.332365 1.259026 0.640766 2.209576 -2.468008 0.058641 -0.111657 1.763044 1.962837 -0.307462 -5.297320 -0.032455 0.388939 2.703720 1.067566 3.198066 -1.201584 0.693329 -0.842312 -1.130699 -0.301294 -0.605554 1.459176 -0.407546 0.087117 -4.031730 0.773793 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.561279 1.854482 3.420708 -2.895014 -0.870853 1.415587 -0.039865 -3.687843 0.945681 9.708390 2.439275 -2.368652 -3.478073 3.796078 -2.922886 -3.351681 2.852916 1.578924 1.344408 -3.497744 0.110212 0.730728 -0.351745 -3.479829 1.733247 -2.247787 1.436726 1.887833 1.051735 1.514274 -3.453042 -0.286827 1.330018 7.194995 -0.302390 -0.229569 -1.498964 5.616245 -4.146636 4.812270 -9.499865 -7.415547 6.545042 1.537199 1.779554 -5.622198 -0.341321 2.003947 -1.742230 -3.339947 -0.408816 -3.133806 2.036708 -4.416467 -1.148566 6.126909 -8.989285 1.821422 0.500604 -3.571388 -4.716953 -0.221345 5.603454 1.915276 -1.963980 -3.945837 2.062061 2.555909 -4.247710 2.475445 -4.839133 -7.770891 2.362684 1.168860 -3.326457 1.124395 -0.452271 -5.341942 3.134912 -3.161270 -2.709846 -2.574849 2.955384 -0.841563 1.326428 3.733306 5.765846 -9.614881 1.248666 -7.593301 6.274099 -3.533782 7.405422 4.686415 -3.338527 2.278183 2.886483 3.122759 2.710993 -0.323835 6.791513 3.143829 3.592093 -2.476135 3.235637 4.692425 -4.629916 -4.562446 -2.743487 -4.259823 -0.028116 -1.021668 -7.054411 -0.396163 -7.385291 0.676008 2.144606 -3.030081 -0.898260 6.107618 -11.463129 -5.310066 1.690793 -1.107278 5.595320 4.924894 1.034174 1.773373 1.176064 6.097457 -1.477676 -2.682243 -1.051156 3.032897 -3.310660 -5.837994 -3.898940 0.580456 2.357480 -6.518365 -6.888567 -9.187031 -2.150202 3.065478 -0.650170 5.036823 9.974760 -1.084638 -5.950594 2.687120 -3.189724 -1.345283 9.156861 1.478347 10.862196 -9.462233 5.494862 -1.520999 4.091609 3.358354 6.368121 -2.398296 -2.756677 2.869224 0.400565 -1.398722 1.403610 -2.020970 1.303603 -2.770104 1.230104 -1.337119 -0.922509 4.853602 -6.151657 6.133842 -4.264781 8.968282 -7.443004 -6.418119 2.441677 -8.486635 -3.180732 -1.130482 -1.020598 -1.240277 7.052195 -6.300932 -3.612335 -2.639649 -2.207360 1.680706 5.987569 -3.637227 0.170476 -1.473067 -3.785459 7.244300 2.160747 -1.167413 0.935157 -5.209648 -0.411048 4.976726 -0.170746 -8.804996 -0.403328 -6.829470 -0.189175 0.650205 -0.956480 4.806461 -3.246151 -3.420500 0.730850 -2.525980 1.320766 -4.115706 -4.355381 2.594839 -3.302741 0.390550 0.969426 8.205565 5.302141 4.650178 -0.197382 -2.544736 2.521059 -6.152435 -1.925750 2.950084 1.697435 1.835073 2.005497 3.650728 -0.146702 1.862081 3.463230 -0.096550 0.511462 6.147022 0.778914 5.696146 -4.563350 2.579934 0.935379 -5.051712 3.851451 8.132662 -1.764764 -2.743325 2.365915 0.071954 -1.863721 -4.310937 -1.262702 -1.795054 -3.633827 3.371042 5.095134 -0.938074 -4.134012 9.540392 2.888114 -10.383748 7.226794 -0.764179 0.333605 4.936084 -4.018646 0.540900 3.122592 0.048731 1.388800 1.857860 6.061411 -6.711890 -0.862436 -0.935009 6.308983 3.404665 -2.120064 -11.545130 2.142528 3.293115 7.058148 3.917518 7.509656 -4.294549 0.747273 -2.469346 -2.936423 -1.548851 -1.708172 4.216494 -1.381372 -0.342685 -7.501583 2.228519 +PE-benchmarks/boyer-moore-algorithm.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/boyer-moore-algorithm.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/boyer-moore-algorithm.cpp___GLOBAL__sub_I_boyer_moore_algorithm.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 0.994397 0.273639 0.941786 -1.192831 -0.157530 0.460947 1.288328 -0.632426 0.570939 2.802011 0.569570 -0.183724 -1.402114 0.853852 -0.137630 -1.215719 1.267552 -0.832173 0.285112 0.015738 -0.220959 0.645866 -0.144829 -1.007760 1.072798 -0.441339 0.098939 1.185965 -0.051445 -0.024457 -1.077116 -0.159401 -0.056800 2.324172 -0.269191 0.174951 -0.050347 2.267897 -1.771897 2.252394 -2.494979 -2.154705 2.383694 0.175274 -0.216413 -1.340476 0.725970 0.774131 -0.182783 -1.762717 0.488644 -0.803813 0.850981 -1.415591 -0.046673 2.265037 -2.842989 0.001869 0.150893 -0.631853 -1.400196 -0.472913 1.067408 0.540064 -1.156378 -1.458782 0.619618 -0.181156 -1.412229 0.483280 -1.323767 -2.189430 1.827762 0.837765 -1.152731 0.578145 -0.071607 -2.140357 1.043660 -0.880489 -0.945065 -0.819294 0.663251 -0.460093 1.068512 0.418460 1.727778 -3.114743 0.155497 -2.255763 2.002574 -1.418756 2.259142 1.950011 -0.625655 0.999207 0.596519 1.270035 0.225061 -0.654210 2.288013 0.879867 1.474413 -0.518952 0.853551 1.401284 -2.023151 -1.797146 -1.224548 -1.062896 0.338085 -0.254015 -2.401527 -0.054384 -1.846209 0.641234 1.466462 -0.833330 -0.573674 2.259825 -3.343286 -0.793360 0.553138 -0.383090 1.734155 1.788043 0.251998 0.112450 0.444903 2.064210 -0.340231 -0.086002 -0.840488 1.079592 -1.140643 -0.562882 -0.167509 -0.327488 0.577759 -1.906594 -2.256483 -3.017724 -0.531808 1.235014 -0.423950 1.656255 3.358131 -0.529984 -1.672897 1.187982 -0.920665 0.074738 1.634571 0.276801 2.479474 -2.697065 1.443416 -0.728263 1.402501 0.855713 3.712110 -0.390125 -1.122625 0.807256 -0.221872 -0.522010 1.143544 0.095526 0.362001 -0.328231 -0.275117 -0.813624 -0.972780 2.053520 -1.788652 2.068646 -1.169915 3.055762 -1.998607 -1.613709 0.929270 -1.681582 -0.742967 -2.012705 -0.987147 0.511309 1.413796 -1.978834 -1.123179 -0.947635 -0.326243 0.214813 1.662277 -1.734413 -0.099477 -0.766057 -0.981175 2.665771 0.680356 -0.442115 -0.212227 -1.785272 0.263488 0.794468 -0.699427 -1.968769 -0.234762 -1.500833 -0.311467 1.048834 -0.237295 1.293374 -1.129741 -1.144982 0.813325 -0.456624 -0.065575 -1.066829 -2.969016 0.449038 0.043140 -0.147893 0.638276 2.331743 1.695590 1.281909 -0.101902 -0.654195 0.471440 -1.026556 -1.945870 0.626213 0.002317 0.960297 0.854032 1.481918 0.401797 0.350463 1.225896 0.445474 0.254041 1.882639 0.582839 1.935953 -0.711398 -0.138067 0.887408 -1.385933 1.258016 1.858881 -1.073938 -0.489309 1.030208 0.551185 -0.896738 -0.536847 -0.185646 -1.016412 -0.478909 1.128782 0.741577 -0.431451 -0.993389 3.284248 0.385573 -3.609334 1.565902 -0.146157 0.700604 1.597428 -0.788818 0.684992 0.986049 -0.466108 1.296178 0.440315 1.857483 -1.678961 -0.004825 -0.114167 1.246516 0.780251 -0.366783 -3.431042 -0.553665 0.265125 2.533706 1.604917 2.778000 -0.813341 0.819236 -0.753299 -1.005818 -0.254009 -0.756058 1.201785 -0.305236 -0.013443 -3.470674 1.017114 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.347788 0.227314 0.519410 -0.816980 -0.599712 0.274618 -0.161981 -0.363915 0.218965 0.468866 0.315194 -0.500077 -1.245977 0.862993 -0.397655 -1.038558 0.176804 -0.610703 -0.032260 -0.401611 -0.194006 0.222231 -0.063831 -0.222703 0.292216 -0.345295 -0.096177 0.591501 1.100046 -0.485102 -0.730284 0.002315 -0.011420 1.330685 0.013788 -0.096549 0.417753 1.774805 -0.041237 0.812225 -1.105397 -1.092387 0.953587 0.110342 -0.245031 -0.685764 -0.041368 0.545010 -1.472834 0.133649 0.588456 -0.239233 -0.112429 -0.426664 0.268933 1.185512 -2.058251 1.321005 -0.031242 0.224359 -0.201737 -0.459352 0.091678 0.040741 0.157486 -0.730544 0.401700 0.447147 -1.360461 0.294167 -0.517748 -0.897669 1.537265 0.445694 -0.646953 0.321851 0.383061 -0.716567 0.555339 -1.185575 -0.887524 -0.122557 0.512896 0.015135 1.282144 0.250189 0.233435 -1.755884 -0.177416 -1.521880 0.722686 -1.149956 1.014102 1.190032 -0.997054 0.524280 0.280292 -0.020368 0.322326 0.094423 1.353278 0.200141 0.512066 0.023799 0.519991 0.240514 -0.476702 -0.444043 -0.370533 -0.802696 -0.505259 0.036574 -1.617824 -0.013044 -0.914287 0.716270 0.439980 0.150856 -0.461673 0.263899 -1.609330 -0.949112 -0.022249 -0.234702 1.242139 1.071051 -0.184718 0.337943 -0.036409 1.450513 -0.127487 0.021238 -0.580540 0.365254 0.341989 -1.059708 -1.516009 -0.051100 0.619319 -0.677797 -1.519746 -1.009687 -0.518906 0.015119 -0.195837 1.420641 2.025285 -0.182631 -0.849686 1.229191 -0.728582 0.973784 1.671999 0.157262 1.541974 -1.100272 0.554647 -0.240542 0.318324 -0.057276 0.021154 -0.116190 -0.479539 0.121125 0.449101 0.356453 -0.062608 -0.155770 -0.246237 -0.811065 -0.225066 -0.663634 -0.952182 1.424404 -0.386846 1.237390 0.109878 1.883774 -0.960538 -1.590977 0.710969 -0.207761 0.218431 -0.515809 -0.408771 0.014460 0.631755 -1.209247 -0.822572 -0.264662 0.154465 -0.248934 0.613869 0.860239 0.031300 -0.136972 0.127091 1.150969 1.110884 -0.232344 0.356407 -1.471370 0.231721 0.655891 -0.293808 -1.190748 0.451109 -0.489987 -0.116103 0.938634 -0.106749 0.310629 -0.388303 -0.844176 -0.085815 -0.174584 0.752558 -0.012755 -1.217124 0.344215 -0.174635 -0.295326 0.646743 0.989550 1.321871 0.583572 0.398170 -0.278567 0.258296 -0.328611 0.277945 0.029159 0.286491 0.712222 0.408042 1.002657 0.363190 0.092223 0.745702 0.713515 -0.422439 0.986436 0.558802 1.582037 -0.649462 -0.056199 -0.117384 -0.707769 0.844327 1.812706 -1.312968 -0.063033 0.739024 0.861309 0.244993 -1.249436 -0.350153 -0.701586 -0.261007 0.648934 -0.037844 -0.344822 -0.253663 1.581566 0.108116 -1.607304 1.017350 0.065816 0.233934 0.246804 -0.338060 -0.420440 0.718988 -1.330269 0.567605 0.427561 0.756989 -0.650406 -0.215715 -0.167317 0.891588 -0.323102 0.129215 -0.929811 -0.052854 0.675271 1.376383 1.323970 0.392224 -0.399836 -0.816583 -0.095085 -0.709012 -0.325786 -0.062291 0.677819 -0.891929 0.221818 -0.652629 -0.730823 +PE-benchmarks/rat-in-a-maze.cpp__solveMazeUtil(int (*) [4], int, int, int (*) [4]) = 1.691340 0.816242 2.490900 -2.109445 -1.203016 0.975131 1.371846 -2.180993 0.799495 5.688178 1.804240 -1.383347 -2.267206 3.005692 -1.349422 -1.895246 1.658329 0.524527 0.150401 -1.563505 -0.376163 0.927307 -0.475568 -2.207271 1.488594 -1.721686 0.999836 2.445427 -0.044950 1.256313 -1.920059 -0.523688 0.496066 5.047401 0.005041 0.435217 -0.418132 4.724285 -4.671624 4.768734 -5.082799 -5.176253 4.980614 0.838663 0.670130 -2.769132 -0.562520 1.637518 -0.643836 -3.076125 0.773721 -1.682814 1.847600 -2.681530 0.148456 4.074010 -5.404442 0.135312 0.250686 -2.672413 -3.410706 -0.843070 2.000757 1.434198 -3.115556 -3.114619 1.316028 1.601901 -2.220565 1.132213 -2.779614 -5.514063 3.390975 0.692800 -2.185191 0.898203 0.331311 -4.238725 2.460260 -0.796735 -2.383475 -1.449621 1.520510 -1.223948 1.759930 1.938739 4.207830 -6.836095 0.142175 -5.471436 4.180085 -2.851586 4.650643 3.601123 -2.325486 2.048395 1.900801 3.695409 1.163900 0.070723 4.592610 2.267766 2.657764 -0.925122 2.864563 3.232425 -3.879041 -4.065002 -3.172631 -2.955731 0.761736 -1.165829 -5.344850 -0.140453 -3.903364 0.164221 1.234946 -1.520579 -0.801849 5.522994 -7.426274 -0.991028 1.656120 -0.767877 3.321782 3.257165 0.277942 0.949688 0.820072 4.179246 -1.204056 -0.909568 -1.421254 2.280422 -2.437669 -2.418485 -1.908125 0.501272 1.699511 -4.104831 -4.882695 -6.188286 -1.512390 3.566457 -0.895502 2.899977 7.322150 -1.310973 -3.614636 2.241247 -1.131947 -0.567681 4.482234 1.164922 6.638355 -5.896820 3.121671 -1.710437 2.125823 2.027204 5.987361 -0.958373 -2.608563 2.166154 0.296922 -2.469597 4.136643 -1.299710 0.355013 -1.893475 0.707739 -1.224400 -1.125872 4.634933 -4.297328 4.285037 -2.975584 6.527771 -4.716683 -3.787655 1.566362 -4.327570 -1.551555 -3.221908 -0.653736 0.059827 4.299915 -3.928565 -2.691971 -1.911087 -1.576371 0.793596 3.749158 -3.161896 -0.120187 -1.164872 -1.944963 4.200468 2.075381 -0.258042 -0.110785 -3.831717 0.431437 2.484112 -0.743194 -5.568455 -0.406042 -3.668649 -0.489471 -0.103318 -0.234824 2.976968 -2.446735 -1.947901 0.521682 -1.619457 0.095920 -2.003898 -4.627450 1.577018 -0.884563 0.682333 1.142402 5.070436 4.672586 3.356188 0.613876 -1.090879 1.069959 -3.201780 -3.092912 2.671051 1.188864 1.688269 1.625805 4.215863 0.564047 1.150733 2.563331 0.390484 1.448597 4.186498 1.308330 4.687389 -2.113197 0.734142 0.984507 -2.354451 2.877538 5.231788 -1.034316 -1.403077 1.772641 0.864032 -2.065149 -1.534117 -0.549707 -1.514614 -1.645559 2.576221 2.632369 -0.787375 -2.364068 6.942103 1.188845 -7.465320 3.434158 -0.343312 1.309574 3.691029 -2.334773 1.312144 2.042938 0.090519 2.733065 1.378361 3.653921 -4.439626 -1.182859 -0.397739 3.160737 3.163825 -1.070839 -8.327395 1.269294 1.262241 5.245663 2.218652 4.975675 -2.895540 1.340374 -1.299292 -2.544870 -0.599709 -0.834787 2.832195 -1.601334 0.427330 -6.817470 0.762161 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.304282 0.066439 0.117713 -0.335368 -0.351511 0.174412 -0.310766 -0.186950 0.013185 -0.257425 0.178157 -0.248134 -0.274609 0.412789 -0.177331 -0.468428 -0.040951 -0.373161 -0.077238 0.008845 -0.069087 0.059397 -0.087797 0.004550 -0.018838 0.035318 -0.093387 0.099047 0.534675 -0.357528 -0.510254 0.015203 -0.038327 0.512335 0.138819 -0.215814 0.324645 0.795972 0.297501 0.087296 -0.280668 -0.217728 0.175116 -0.008505 -0.193747 -0.266432 -0.243923 0.266784 -0.665988 0.219005 0.390617 -0.077204 -0.227388 -0.010939 0.129828 0.434720 -0.913098 0.765324 0.089758 0.442595 0.123438 -0.224930 0.023476 -0.080381 0.277306 -0.251414 0.250108 0.261633 -0.471924 0.057912 -0.221442 -0.433114 0.866757 0.225555 -0.261903 0.038986 0.191117 -0.317276 0.266536 -0.552151 -0.488485 0.062169 0.085456 0.062752 0.740428 -0.066999 -0.116797 -0.651716 0.091192 -0.725940 0.093877 -0.572286 0.256974 0.534934 -0.633510 0.030699 0.096140 -0.011797 0.266257 0.149737 0.533716 0.041870 -0.046100 -0.018314 0.190225 -0.049315 0.025170 0.059109 -0.035413 -0.407632 -0.330390 0.094289 -0.893007 0.117227 -0.240188 0.414355 -0.023858 0.207182 -0.102698 -0.148280 -0.442353 -0.485515 -0.120325 -0.083427 0.492961 0.550533 -0.224176 0.207071 -0.272744 0.588579 0.014758 0.056506 -0.216223 0.057530 0.127858 -0.669000 -0.911612 0.077410 0.388924 -0.213457 -0.639717 -0.334252 -0.079557 -0.253893 -0.142843 0.693076 0.751562 -0.111969 -0.312462 0.629270 -0.001949 0.463876 0.859178 -0.031106 0.656185 -0.296363 0.121799 0.033672 -0.043802 -0.353684 -0.970373 -0.026028 -0.020273 0.003086 0.162562 0.101136 0.240975 0.023054 -0.259753 -0.021314 -0.120846 -0.236585 -0.534452 0.656461 0.348612 0.346529 0.435761 0.734434 -0.219160 -0.595609 0.321099 0.189975 0.208041 -0.085371 -0.232347 -0.031299 0.251615 -0.437141 -0.282936 0.094050 0.132438 -0.259724 0.146042 0.991008 0.077502 0.089675 0.250375 0.180190 0.682946 -0.085511 0.313570 -0.614781 0.121548 0.344279 -0.271270 -0.346852 0.203996 -0.194057 0.010911 0.401995 -0.066206 0.027034 -0.239081 -0.448583 -0.078322 0.044122 0.534588 0.234921 -0.326841 0.103408 -0.208849 -0.099879 0.305671 0.312427 0.498981 0.303096 0.361512 -0.155836 0.148602 0.076533 0.311506 -0.239513 0.060762 0.444563 0.168288 0.232572 0.165151 -0.003473 0.167955 0.354601 -0.182133 0.367848 0.389157 0.738802 -0.098503 -0.027997 -0.214104 -0.289599 0.425625 0.892849 -0.717661 0.146907 0.225230 0.390193 0.173877 -0.724840 -0.121373 -0.236230 -0.201808 0.066357 -0.194713 -0.055760 -0.070883 0.530106 -0.033148 -0.500468 0.331555 0.088238 0.062849 0.094946 -0.034755 -0.175280 0.194451 -0.696561 0.249624 0.266569 0.320565 -0.115038 -0.051690 -0.062653 0.347087 -0.499599 0.237786 0.090878 0.213414 0.415463 0.450791 0.561170 -0.200030 -0.194348 -0.510394 0.085204 -0.208904 -0.096366 0.068157 0.335987 -0.428552 0.055539 0.031916 -0.562525 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__solve(int*, int) = 1.926664 0.886606 2.624896 -3.066082 -1.270007 0.796511 1.766242 -2.675218 0.689376 6.840252 1.835600 -1.832687 -1.885675 3.889280 -1.508152 -2.154355 1.997886 0.395539 0.038619 -1.387083 -0.189662 1.432811 -0.552637 -2.067651 1.441849 -1.387362 1.222656 2.301966 -0.636280 0.573377 -2.077705 -0.757259 0.388954 5.558103 -0.012058 0.635984 -1.338451 4.902593 -4.697074 5.850370 -6.980168 -4.848406 4.971094 0.834164 0.858886 -4.872154 -1.235139 2.019659 0.402014 -3.929028 0.371057 -1.797220 1.687052 -3.235158 -0.045442 4.485005 -5.569996 -0.177844 0.951973 -3.095995 -3.791496 -0.377457 3.514021 1.730284 -4.116763 -3.560152 1.356932 1.022451 -2.350996 1.409549 -3.226576 -6.420565 2.292955 1.116746 -2.726487 0.955717 -0.301239 -4.897464 2.871236 -1.472660 -2.424461 -1.890601 1.586542 -2.244143 1.433966 1.736094 4.917561 -7.578381 1.283107 -5.923236 4.179901 -3.154737 4.921797 4.117192 -1.596701 2.074223 1.703410 3.603372 1.889923 -0.147305 4.534541 2.773148 3.012873 -1.186264 3.536801 3.714342 -4.193154 -4.524597 -3.190326 -3.756332 1.160784 -1.694245 -5.744984 0.290352 -4.120364 -0.076747 1.245589 -1.667368 -0.658140 6.050765 -8.080206 -1.581377 2.026765 -0.957434 2.980816 4.326707 0.381850 0.856112 0.207461 4.119771 -1.238439 -0.296739 -1.035686 2.658983 -3.596624 -2.291880 -1.541061 0.367313 1.572360 -4.386041 -5.065393 -7.409602 -1.777562 3.373574 -1.332503 4.074383 7.887339 -1.809879 -4.898286 2.376981 -0.451157 -1.445396 4.431159 0.991090 7.711160 -6.541726 3.203903 -2.080974 2.280643 2.483488 7.264409 -1.141264 -2.855117 2.805390 -1.118316 -4.379945 4.898030 -1.000382 0.495322 -1.036943 1.081835 -1.187645 -1.406333 4.695183 -5.378303 5.258250 -3.669596 6.723337 -5.041001 -3.463472 1.657049 -6.051047 -2.050914 -3.193993 -0.994761 -0.335345 5.339381 -4.025627 -2.591320 -2.201067 -2.604423 0.643735 4.335702 -4.600792 -0.057311 -1.246607 -2.171885 5.825005 2.296291 -0.502436 0.048547 -3.946919 0.874124 3.220780 -0.185987 -5.927482 -0.820230 -4.521656 -0.772364 -0.590896 -0.490093 3.489289 -3.254751 -1.998014 0.820076 -1.738011 -0.063262 -2.554598 -5.793877 1.706479 -1.796191 1.444334 0.987348 5.924627 4.512062 4.004289 0.590482 -1.549866 1.038946 -3.803756 -3.963535 2.464319 1.049268 0.986873 2.062099 3.811636 0.690558 1.418764 3.366563 0.271266 1.425261 4.753285 0.744766 4.866073 -1.876826 0.815989 1.208504 -2.758207 2.928366 6.102725 -0.449502 -1.479927 2.164521 0.346087 -2.992837 -2.479254 -0.607433 -1.550819 -2.212171 3.023430 3.168126 -1.051595 -2.611696 7.573605 1.329437 -8.326856 3.860630 -0.490620 1.293257 4.314596 -2.378024 2.034325 2.273118 0.171106 2.369925 1.792577 4.067899 -5.041368 -1.272400 -0.282056 3.436273 4.172138 -0.830458 -9.860592 1.556820 1.517765 6.102017 1.680027 6.645101 -3.259179 2.036675 -0.760876 -2.012634 -0.800914 -1.186708 3.078958 -1.077142 -0.363115 -7.714955 1.396253 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.348693 0.108517 0.160002 -0.526665 -0.509002 0.111365 -0.166081 -0.167886 0.044943 -0.208305 0.271385 -0.416890 -0.336733 0.746970 -0.210253 -0.554136 0.018147 -0.547456 -0.118306 0.112836 -0.051018 0.247551 -0.101746 0.029969 0.094122 0.103654 -0.210245 0.222494 0.690278 -0.504421 -0.653097 0.022365 -0.020009 0.690211 0.067569 -0.339136 0.398312 1.137674 0.028176 0.323334 -0.432019 -0.244587 0.352142 0.001927 -0.301080 -0.578179 -0.490732 0.372029 -0.699573 0.127789 0.540600 -0.026881 -0.284412 -0.081335 0.254396 0.688330 -1.279013 0.907181 0.188859 0.591885 0.177463 -0.284108 -0.005487 -0.143475 0.139152 -0.375196 0.273995 0.174222 -0.585961 0.048367 -0.272740 -0.605881 1.104708 0.306239 -0.379326 0.145153 0.242942 -0.654918 0.439521 -0.786864 -0.622668 0.088569 0.114937 0.044193 0.965408 -0.163513 -0.091493 -0.928499 0.060949 -0.951062 0.150807 -0.897827 0.339304 0.832768 -0.828904 0.110308 0.076605 0.032934 0.446902 0.255483 0.766179 0.210876 0.091009 -0.035757 0.269590 0.119986 -0.086958 -0.022182 -0.154187 -0.569475 -0.361939 0.102230 -1.276015 0.162685 -0.264544 0.358221 0.081192 0.162426 -0.114701 0.057454 -0.516900 -0.498982 -0.047503 -0.121050 0.496598 0.895259 -0.276127 0.134868 -0.475241 0.809324 0.046660 0.247599 -0.277049 0.111977 -0.078489 -0.961653 -0.995873 -0.004210 0.364982 -0.340447 -0.844119 -0.647200 -0.037837 -0.354183 -0.236569 0.798682 1.086544 -0.184883 -0.472060 0.908511 0.216328 0.558557 0.996418 -0.089423 0.951151 -0.411673 0.135724 -0.016569 -0.067755 -0.438109 -0.856827 0.032008 -0.108202 -0.052183 0.107876 -0.350797 0.548219 0.077934 -0.296685 0.001000 -0.119499 -0.361941 -0.775017 1.017427 0.333315 0.560339 0.365638 0.997655 -0.247524 -0.775417 0.502533 0.203034 0.288482 -0.354834 -0.351305 0.083872 0.349210 -0.539056 -0.355965 0.044270 0.142137 -0.393281 0.182309 0.897408 0.090825 0.054036 0.356170 0.221501 0.862927 -0.157519 0.479174 -0.881554 0.194167 0.442945 -0.372672 -0.693928 0.334135 -0.287133 -0.018172 0.436767 -0.136050 0.017143 -0.369503 -0.648867 -0.011344 -0.015726 0.584510 0.203927 -0.623593 0.146210 -0.354636 -0.012450 0.403264 0.445345 0.747735 0.400114 0.434190 -0.160529 0.165772 0.076683 0.184592 -0.184107 0.023304 0.438539 0.267893 0.437944 0.278364 -0.010874 0.269582 0.448505 -0.252383 0.531707 0.581367 1.018556 0.031899 -0.160869 -0.182245 -0.395928 0.588339 1.232406 -0.718453 0.114848 0.351679 0.519782 0.097379 -0.891953 -0.165904 -0.322486 -0.364132 0.226858 -0.352799 -0.157655 -0.006422 0.758730 -0.095190 -0.788892 0.396651 0.085771 0.162888 0.103021 0.025625 -0.133753 0.349132 -0.910339 0.417789 0.329933 0.463550 -0.155095 -0.244962 -0.080761 0.413194 -0.369854 0.357521 -0.253058 0.308651 0.532668 0.658247 0.648852 -0.024609 -0.212576 -0.592598 0.102727 -0.215816 -0.192965 -0.016614 0.405184 -0.614229 0.054200 -0.160971 -0.679051 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.517661 0.279233 0.646338 -1.070545 0.001242 0.165627 1.336095 -0.148657 0.455698 1.750207 0.250296 0.052646 -1.516887 0.432492 0.036992 -0.995749 0.997131 -1.235571 0.143974 0.065067 -0.121253 0.542043 0.031584 -0.631763 0.896780 -0.261589 -0.120422 0.963403 0.190557 -0.493403 -0.626234 -0.051694 -0.053209 1.500919 -0.418702 0.186916 -0.067769 1.584637 -1.036925 1.494857 -1.828739 -1.407924 1.687395 0.017772 -0.407088 -1.419132 0.793537 0.511460 -0.243685 -1.112165 0.326417 -0.414210 0.455247 -1.084858 -0.016546 1.756159 -2.106478 0.187806 0.044477 -0.237634 -0.743093 -0.352055 0.624256 0.178097 -0.472695 -0.966156 0.352502 -0.622339 -1.358105 0.417251 -0.759159 -1.060311 1.248782 0.747931 -0.697822 0.578500 -0.066044 -1.447282 0.638171 -1.015032 -0.455743 -0.591480 0.568540 -0.051235 0.823993 0.051941 0.796778 -2.015206 -0.284324 -1.262250 1.269858 -1.085566 1.474585 1.286253 -0.101426 0.866666 0.193398 0.157896 -0.084452 -0.681457 1.563684 0.496423 1.418463 -0.267231 0.468330 0.778844 -1.360728 -1.171946 -0.716153 -0.577287 0.127699 -0.067738 -1.521052 -0.094297 -1.191346 0.283737 1.396742 -0.615192 -0.473303 1.257636 -2.038118 -0.576739 0.386074 -0.283315 1.105254 1.323589 0.248854 -0.154308 0.350748 1.432385 -0.097534 0.350598 -0.639769 0.689596 -0.366610 -0.461773 0.171479 -0.595258 0.145898 -1.125134 -1.477880 -1.828020 -0.390639 0.499373 -0.242409 0.989305 2.224770 -0.224809 -1.203960 0.900047 -0.657375 0.428702 0.763292 0.129486 1.407505 -1.674199 0.889855 -0.458825 1.041921 0.674033 3.033867 -0.230788 -0.805452 0.349423 -0.199619 -0.338227 0.023021 0.155316 0.373755 -0.028883 -0.469955 -0.836480 -0.952383 1.285548 -0.970169 1.711129 -0.743138 1.962324 -1.283819 -1.218645 0.683386 -0.835817 -0.319598 -1.538313 -0.831490 0.562707 0.558873 -1.320510 -0.770827 -0.840799 -0.012194 0.080243 1.053295 -1.602430 -0.086175 -0.673015 -0.544300 1.853151 0.344684 -0.521736 -0.073635 -1.286094 0.272646 0.369354 -0.219119 -1.345324 0.031380 -0.732175 -0.283705 1.244261 -0.192112 0.747159 -0.379779 -0.816413 0.811596 -0.341750 -0.218927 -0.835180 -2.233033 0.119856 0.195255 -0.344842 0.369773 1.495740 1.092609 0.537674 -0.345294 -0.431377 0.282953 -0.554634 -1.357148 0.136764 -0.237612 0.515168 0.587829 0.888858 0.374606 0.124682 1.098403 0.576363 -0.250533 1.182528 0.395001 1.181962 -0.432176 -0.435290 0.755164 -1.002148 0.726956 1.051752 -0.667109 -0.359315 0.903411 0.631219 -0.407347 -0.456481 -0.240087 -0.846589 -0.201541 1.178712 0.313788 -0.510216 -0.425594 2.168072 0.172211 -2.393623 1.037001 -0.084841 0.500503 0.681454 -0.413769 0.253470 0.899609 -0.697611 0.699475 0.098193 1.182560 -0.942007 -0.070743 -0.049117 0.744593 0.276145 -0.228439 -2.339583 -1.004309 0.045664 1.808426 1.290198 2.050973 -0.211346 0.416723 -0.522108 -0.484331 -0.243801 -0.562857 0.669508 -0.309568 -0.194251 -2.285778 0.923418 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isadjacent(char, char) = 0.517572 0.190567 0.164920 -0.137428 -0.071065 0.112062 0.506956 -0.314689 -0.006971 0.566569 0.377665 -0.224831 -0.183376 0.169129 -0.060310 -0.147818 0.464173 0.151800 -0.046808 0.182557 -0.249212 0.080137 -0.163436 -0.310036 0.360462 0.130769 0.021833 0.252892 -0.027352 -0.083214 -0.519162 0.002860 0.153321 0.756977 0.045050 -0.219224 0.015934 0.623423 -0.380876 0.416760 -0.545651 -0.161867 0.689123 0.043600 0.035995 -0.557301 -0.084486 0.437179 0.217785 -0.751433 0.133165 -0.340185 0.206651 -0.460117 -0.144036 0.956444 -0.774079 -0.022490 0.368340 -0.107756 -0.488876 -0.015715 0.421748 -0.054779 -0.299193 -0.567483 0.156336 -0.026834 -0.146298 0.094039 -0.733721 -1.009096 0.677709 0.048096 -0.396894 0.112463 -0.296000 -0.697648 0.305878 0.086985 -0.268880 -0.213615 0.219150 0.093997 0.277771 0.022621 0.364719 -0.977372 -0.034576 -0.875365 0.461075 -0.511073 0.765163 0.627052 -0.333567 0.180447 0.161445 0.128571 -0.001456 0.261512 0.749787 0.101146 0.184028 -0.398806 0.196137 0.367151 -0.513150 -0.579187 -0.306785 -0.357025 0.162477 0.364123 -0.764075 0.135447 -0.800752 0.382283 0.223043 -0.130423 0.118608 0.699526 -0.549440 -0.113200 0.260633 -0.146343 0.650896 0.901729 0.116745 0.067787 -0.185035 0.518391 0.047700 -0.085931 -0.303609 0.366267 -0.272836 -0.835231 -0.088333 -0.078890 0.338758 -0.627127 -0.732631 -0.925687 0.038615 0.099059 -0.343219 0.056175 0.965938 -0.276598 -0.299711 0.336184 0.109936 0.027750 0.581975 0.042492 1.246378 -1.041553 0.587633 0.062451 0.384297 0.154857 0.333412 -0.328507 -0.421552 0.191120 -0.036063 -0.659300 1.136551 0.130936 0.121413 0.879202 -0.002195 0.203755 -0.461991 0.690498 0.117187 0.488365 -0.136443 1.049598 -0.519441 -0.393272 0.315044 0.312265 -0.155679 -0.392334 -0.214844 0.176158 0.560764 -0.409401 -0.326037 0.051975 -0.075509 0.053249 0.663878 0.076308 -0.075066 -0.200816 -0.451480 0.035588 0.117278 -0.280685 0.143728 -0.573211 0.030121 0.148076 -0.322478 -0.667133 -0.165924 -0.657289 -0.106060 0.106930 -0.111883 0.451456 -0.319691 -0.369824 0.434576 -0.154114 0.052910 -0.292737 -0.280940 0.167416 -0.283365 -0.156677 0.083350 0.909354 0.557167 0.550547 -0.050354 -0.200981 0.171443 -0.202734 -0.776956 0.161520 -0.249095 0.679822 0.310870 -0.041357 0.088639 0.144442 0.009788 -0.528091 0.406457 0.688373 0.544116 0.627420 -0.201506 0.019059 0.369080 -0.592656 0.542947 0.479612 -0.355901 -0.391274 0.108911 0.044836 -0.459094 -0.253225 -0.035043 -0.043855 -0.613929 0.257341 0.238354 0.071283 -0.437294 1.141900 -0.059413 -1.149796 0.532011 -0.075060 0.211827 0.609000 -0.086677 0.542796 0.230482 0.330169 0.147383 0.202576 0.837506 -0.593294 -0.158096 -0.055844 0.411252 -0.056304 -0.207385 -1.322035 0.014972 0.145430 0.703079 0.318992 0.528238 -0.350359 0.435740 -0.201998 -0.140736 0.044343 -0.306561 0.501205 -0.041914 -0.223050 -1.140281 0.605953 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLenUtil(char (*) [3], int, int, char) = 3.036344 0.335024 2.572490 -1.880872 -0.676752 1.514330 0.270109 -3.353053 0.553394 7.550065 2.412358 -2.269023 -0.807004 4.563951 -1.797443 -2.313680 2.126710 2.480934 0.404156 -1.435917 -0.458502 0.999538 -0.936852 -3.262801 1.859764 -1.671230 1.576855 2.427385 -1.066763 2.471332 -2.968161 -0.630717 0.472330 6.622842 0.433694 0.492492 -0.455006 5.462404 -6.736013 6.310097 -6.534285 -6.297421 6.331988 1.351433 1.077874 -2.018401 -1.854134 2.035492 -1.079741 -4.259439 0.763564 -2.649904 2.157498 -3.458778 0.040237 5.239617 -7.183807 -0.197740 0.785716 -3.143416 -5.057286 -0.821300 3.724128 1.432295 -4.220603 -4.122658 1.775161 2.660652 -1.707131 1.157799 -4.389593 -8.192407 3.561518 0.684621 -2.710536 0.761216 -0.341367 -5.279532 3.153602 -0.454361 -3.040966 -2.149593 1.727524 -2.439285 1.859959 3.325555 6.111484 -8.779643 1.913025 -7.320382 5.476185 -3.256288 6.208983 4.854782 -4.021249 1.950441 2.646179 6.233758 2.026153 0.408372 5.649604 2.889772 1.478275 -1.957967 3.709745 4.589693 -5.140116 -5.026036 -3.920591 -3.946810 1.185868 -2.156920 -7.002092 0.077311 -5.644548 0.877651 0.777409 -2.059720 -0.792476 6.803252 -9.978775 -1.340915 1.639273 -0.899482 4.446705 4.153193 0.388259 1.274251 0.337306 4.840936 -1.484690 -2.405468 -1.711900 2.987452 -4.664436 -3.297391 -2.566354 1.193594 2.573419 -5.966517 -6.229563 -9.130360 -1.364419 4.820114 -1.395661 4.933353 9.010522 -1.902895 -4.726873 2.468210 -1.058780 -1.421146 6.908521 1.346258 9.166128 -8.161534 4.492050 -1.692240 2.747504 2.377880 4.348431 -1.660020 -3.061016 3.255210 -0.064206 -3.043802 7.393248 -1.185599 0.573263 -2.623559 1.797898 -0.670028 -0.526022 6.206710 -5.948182 4.514248 -3.854291 8.169023 -6.144965 -4.166443 2.073783 -7.699141 -3.190575 -3.502981 -1.481480 -1.167318 6.408356 -5.252434 -3.121302 -2.212588 -2.115366 1.104411 5.202334 -2.527679 -0.152557 -1.414864 -2.975697 5.381757 2.490658 -0.295719 0.335767 -4.629578 0.023255 4.333009 -1.826748 -7.295376 -0.712336 -5.573784 -0.407907 -1.042565 -0.431376 4.056505 -4.874215 -2.512112 0.442261 -1.401157 0.834853 -2.692928 -5.069794 2.323493 -2.193962 1.067416 2.222141 7.031833 5.393511 4.827690 0.840135 -1.677254 1.595840 -4.582958 -4.030893 3.603613 1.372052 2.935937 2.186180 4.278183 0.214683 1.583399 2.045311 -0.182337 2.456583 5.556344 2.385370 5.800986 -1.647168 1.806009 1.184800 -3.479871 3.738147 6.625765 -2.353117 -1.465050 1.888267 -0.041196 -3.008003 -2.080265 -0.444409 -1.546737 -3.469445 2.090165 3.086662 -0.462363 -3.721263 9.030165 1.733801 -9.547950 4.728307 -0.365017 1.325312 5.348856 -3.162596 2.304596 1.969447 0.807950 3.337745 2.033946 5.328083 -5.854225 -0.143246 -0.611828 4.462126 5.234763 -1.432955 -9.849186 3.735598 2.062802 6.295073 2.461813 5.887426 -3.942311 2.326615 -2.410068 -3.307388 -0.321163 -1.445703 3.823361 -0.717544 0.564038 -8.812373 0.775338 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__getLen(char (*) [3], char) = 2.168591 0.897189 2.141296 -2.268764 -0.184099 0.630326 2.088843 -1.873141 0.191829 6.566709 1.253039 -1.009782 -3.007659 2.647447 -0.988828 -2.454925 2.159220 -0.066248 0.102168 -1.465232 -0.570267 1.023705 -0.394698 -2.531318 2.048193 -1.253263 0.831395 2.524355 -0.236117 0.988735 -1.881307 -0.497404 0.379388 5.237131 -0.360730 0.338945 -0.826514 4.729452 -5.289406 4.464425 -5.638045 -5.487524 5.435732 0.681952 0.461476 -3.408966 -0.053092 1.795440 -1.246461 -3.295392 0.458974 -1.588859 1.335151 -3.371649 0.024281 4.748347 -6.410381 0.424050 0.550921 -2.168443 -3.847463 -0.940447 2.976508 0.490283 -2.441700 -3.349901 1.158992 0.207172 -2.501398 1.442407 -3.543572 -5.205354 1.704111 1.194370 -1.819738 1.218884 -0.341279 -4.138869 2.286555 -1.464206 -1.941770 -1.975498 1.688197 -1.217265 1.796192 2.186863 3.652086 -6.925204 0.483000 -5.143980 3.892204 -3.011972 4.878444 4.051557 -1.831094 2.369057 1.516020 2.881445 0.603652 -1.227672 4.594437 1.988796 2.883686 -1.098098 2.633257 3.346839 -4.473233 -4.137653 -3.020825 -2.671584 0.765790 -1.654298 -4.721870 -0.032962 -4.425977 -0.518973 2.050139 -2.086652 -1.287840 4.461757 -8.039986 -1.537458 1.470238 -0.919110 3.630909 3.436344 0.446254 0.465161 0.580593 4.043392 -0.705608 -0.470875 -1.554367 2.422312 -2.313672 -2.716823 -1.144311 -0.126991 1.475172 -4.252743 -4.994672 -6.810685 -1.288345 2.568139 -0.944006 3.285426 7.225792 -1.098781 -3.954549 2.369708 -1.930667 0.175176 4.409196 0.989399 6.404140 -6.042664 3.324413 -1.024321 2.573097 2.329361 5.335274 -1.288542 -2.765011 2.216931 -0.290744 -1.159402 2.195123 -0.921644 0.829436 -2.129120 0.745270 -1.488440 -0.948946 4.664254 -4.975213 4.530718 -2.925743 5.907868 -4.660501 -3.526638 1.723942 -6.123419 -2.005605 -3.631600 -1.716378 -0.499796 3.901480 -4.318940 -2.679904 -2.804992 -0.861922 0.659451 4.078171 -4.309373 -0.264559 -1.598718 -1.637537 4.539151 1.631546 -0.902223 0.365030 -3.962331 0.392731 2.881032 -0.460685 -5.964047 -0.054388 -3.489265 -0.717671 0.944515 -0.353618 2.908925 -2.320443 -2.098860 1.470091 -1.257889 -0.165768 -2.475332 -4.670229 1.426359 -1.235438 0.041026 1.610472 5.589244 4.045969 2.846712 -0.127579 -1.330187 1.441685 -3.278075 -3.620260 2.093510 0.229803 1.914534 1.854195 2.550680 0.662057 0.955532 2.430018 0.676051 0.332517 4.288047 1.927909 4.283057 -1.206480 0.402508 1.550312 -2.970366 2.326099 4.346971 -1.193861 -1.390648 2.257122 0.345335 -1.898566 -1.660090 -0.800314 -1.880614 -2.272932 2.720632 2.243491 -1.562677 -2.111052 7.202966 0.835321 -7.703843 3.723837 -0.158301 1.265246 3.306183 -2.212793 1.265726 2.378030 -0.398515 2.353099 1.114539 3.940556 -4.169620 0.212255 -0.338329 3.419890 3.437245 -1.374054 -8.508495 0.850114 1.059303 5.347426 2.693258 5.572491 -2.132685 1.608602 -1.894539 -2.073856 -0.358233 -1.374008 3.120746 -0.605324 -0.205320 -7.059534 1.573135 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.586339 0.488883 0.422016 -0.347648 -1.683567 1.165293 -3.123523 -1.381162 0.012555 -0.528609 0.497465 -0.837417 -0.971324 0.619328 -1.522920 -1.899548 -1.099279 0.706798 0.379463 -1.676071 0.053107 -0.099180 -0.227388 0.234563 -0.693563 -0.938838 0.049641 -0.057612 2.728902 0.111911 -0.907112 0.053015 0.024264 1.334409 0.959810 -0.150446 1.081344 1.647380 2.362245 -0.912531 -1.504768 -1.423368 -0.030854 0.574153 -0.033553 -0.209984 -0.552780 0.126247 -3.959311 2.407805 0.724738 -0.908582 -0.210568 0.834667 0.323689 0.521729 -2.609430 3.287587 -0.624102 0.151228 0.404739 -0.242911 0.033261 0.340118 1.950656 -0.413437 0.404848 2.791994 -1.316409 0.436126 -0.000694 -0.890496 2.640691 0.027149 -1.293386 -0.490180 0.642740 0.239540 0.200642 -1.805093 -1.514013 0.123131 0.784182 0.740613 1.266032 0.907896 0.108284 -1.667678 0.087395 -2.036371 0.766287 -0.397070 1.070748 0.568483 -2.634336 -0.363894 0.895945 -0.781817 1.466450 0.480599 1.327086 -0.337060 -0.609460 0.276042 -0.173705 -0.340076 0.889587 0.893146 0.461096 -1.250689 -1.455145 0.296029 -2.875061 -0.427083 -1.042373 2.439524 -0.679580 0.289201 -0.077411 -0.778814 -1.832129 -2.543727 -0.944906 -0.026862 1.995176 0.361967 -0.225346 1.550746 0.167798 1.820893 -0.714965 -1.209214 -0.573807 -0.049255 0.995470 -2.541711 -4.498705 1.043263 1.336874 -0.456626 -1.571913 -0.013911 -0.837244 -0.385122 0.190022 1.927190 1.901119 -0.306560 -1.336046 1.499608 -1.636671 0.717796 3.821577 0.271549 1.672242 -0.781657 0.365560 -0.449604 -0.355994 -0.772920 -3.139340 -0.225058 0.275168 0.188409 1.371473 1.944193 -1.548151 -0.816580 -1.300587 -2.082869 -0.253383 -0.316576 -0.013152 0.797812 0.381556 0.650191 0.746081 1.947987 -1.324431 -3.053356 0.301373 -0.790098 -0.000893 2.048768 0.085321 -0.492737 0.956632 -1.916573 -0.774412 0.547049 0.285135 -0.570062 0.224982 4.304449 0.285326 0.806216 0.405098 1.635329 2.124562 0.439816 0.469670 -1.038101 -0.087554 1.473213 -0.355099 -1.449713 0.478654 -0.907689 0.349088 1.046684 -0.140448 0.315303 -0.218280 -0.567854 -1.741273 -0.444395 2.754476 1.062125 0.530019 0.996340 -1.074187 -0.433654 0.429848 0.518773 1.408787 0.998506 1.268505 -0.122228 0.932898 -0.932102 3.671038 -0.104894 2.089896 0.560743 0.143342 1.230376 0.086688 0.216397 0.407719 1.457303 -0.195667 0.822626 -0.048459 2.264680 -2.192908 1.301295 -1.686083 -0.273603 0.907700 3.259144 -2.521012 0.638794 0.209337 0.988304 1.805133 -3.010905 -0.178560 -0.541200 -0.289581 0.099322 0.476163 0.174581 -0.782576 1.072959 0.865154 -0.539079 2.194828 0.291278 -0.736962 -0.491700 -0.754445 -2.085711 0.380333 -2.097045 -0.030831 1.249934 0.758021 -0.801077 -0.324218 -0.549595 1.653549 -1.272475 0.767629 1.277053 0.600012 2.047675 1.168545 1.574430 -0.892042 -0.926973 -2.971115 0.358214 -1.041188 -0.704971 0.666583 0.259420 -1.150083 1.033569 1.981492 -2.717595 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 1.755126 0.387723 2.098635 -1.891317 0.114081 0.785655 1.975399 -1.933024 0.745268 5.771707 1.336890 -1.062021 -2.136589 2.091878 -0.811371 -1.770864 2.456359 0.941131 0.283336 -1.035899 -0.640629 0.599453 -0.412638 -2.345812 1.864934 -1.353301 1.163510 2.259676 -0.559179 0.873700 -1.731994 -0.392042 0.294714 4.877660 -0.210966 0.753439 -0.823022 3.879454 -3.746880 4.801538 -5.113865 -4.054613 4.813841 0.704216 0.524946 -2.632234 0.174165 1.600551 -0.293971 -3.633820 0.082403 -1.914552 1.798137 -3.225503 -0.433642 4.477582 -4.720606 -0.713038 0.542215 -2.575580 -3.826936 -0.511939 2.890116 1.018306 -3.157421 -3.136040 1.212410 0.586684 -2.294589 1.288186 -3.326656 -5.263030 2.189581 0.886460 -2.077183 0.987497 -0.562711 -3.699621 1.874426 -0.202457 -1.578240 -1.937469 1.634953 -1.597670 1.274059 1.673613 4.074288 -6.357067 0.495286 -4.773133 3.896406 -2.490686 4.912406 3.461661 -1.371507 2.150404 1.384881 2.971658 0.037786 -0.342936 4.147573 1.682680 2.170095 -1.472045 2.711007 2.745119 -3.912363 -4.260136 -2.514658 -2.295325 0.930571 -1.038368 -4.177425 -0.101991 -4.665888 0.746650 1.616896 -1.238967 -0.922958 4.799496 -6.814124 -1.035023 1.492610 -0.880599 3.434379 3.368845 0.754117 0.523537 0.877778 3.546863 -0.763851 -1.121609 -1.561826 2.342227 -2.098801 -1.489734 -0.552120 -0.252867 1.508516 -3.867001 -4.626405 -5.906832 -1.692451 3.151349 -0.894214 3.164421 6.483140 -1.010583 -3.300924 1.539302 -1.787258 -0.247602 3.808551 1.115109 6.256304 -6.249383 3.548694 -1.410589 2.913558 2.541952 6.016580 -1.535903 -2.684436 2.235822 -0.403342 -1.638595 3.968460 -0.693310 1.122910 -0.714855 0.501507 -0.646518 -1.315676 4.076660 -4.492541 4.325449 -3.005317 6.096651 -4.569183 -3.072719 1.457212 -4.075915 -1.891695 -2.929119 -0.939559 -0.394008 4.058947 -3.595456 -2.597916 -1.795882 -1.388062 1.260659 4.124514 -2.955200 -0.419506 -1.673261 -2.658797 4.602245 0.973806 -0.884975 -0.243176 -3.446606 0.284312 2.292469 -0.601078 -4.371088 -0.564474 -3.512993 -0.737965 0.100412 -0.185506 3.024577 -2.689635 -1.748252 1.108958 -1.017007 -0.275221 -2.588910 -4.961183 1.398996 -0.717108 -0.207257 1.166087 5.297648 3.830246 2.776340 -0.425805 -1.516961 0.926916 -3.118404 -4.092970 2.128926 0.303391 2.163047 1.527428 2.622541 0.295425 1.046730 2.055676 -0.447920 1.455550 3.930703 1.418301 3.657561 -1.652398 0.587487 1.747505 -2.971025 2.454171 3.897554 -1.295110 -1.565251 1.832723 0.536136 -2.335457 -1.751311 -0.688107 -1.320491 -1.861506 2.351150 2.328430 -0.778540 -2.489897 6.899612 1.133217 -7.322325 3.413041 -0.425115 1.034597 3.670113 -2.147233 1.827693 1.967254 0.632661 1.801623 0.812560 3.703320 -4.209656 -0.094117 -0.313314 2.884256 2.842909 -1.639652 -7.988185 0.479537 0.609753 5.164094 2.401161 5.222552 -2.153803 2.395905 -1.692568 -2.190094 -0.313304 -1.382413 2.687671 -0.445749 -0.344785 -7.298803 2.163094 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__finalCount(int, int) = 0.706438 0.528176 1.052249 -1.605114 -0.102282 0.103160 1.406099 -0.736825 0.317168 2.425635 0.527148 -0.573367 -1.890561 1.192422 -0.553211 -1.226209 1.284251 -0.382999 -0.036027 -0.636464 -0.218727 0.526478 -0.064705 -0.829419 0.952606 -0.512430 0.334731 1.185475 0.486730 -0.531021 -0.899752 -0.132696 0.188573 2.378675 -0.327565 0.267473 -0.591584 2.103502 -1.184591 2.162820 -3.145729 -1.592157 2.144897 0.274063 0.009001 -3.057649 -0.133509 0.858666 -0.470415 -1.334141 0.042535 -0.767752 0.426507 -1.652196 -0.087213 2.617782 -2.735216 0.397186 0.392727 -0.809396 -1.297073 -0.195022 1.587729 0.124677 -0.976731 -1.562355 0.514999 -0.293171 -1.828022 0.918788 -1.559141 -2.175750 0.759320 0.721219 -1.139933 0.673615 -0.360267 -2.000025 0.865320 -1.150044 -0.606443 -0.918602 1.053412 -0.330748 0.833838 0.369026 1.247778 -3.106568 -0.241768 -2.177093 1.456275 -1.660658 2.296920 1.746820 -0.322806 1.178984 0.285805 -0.067893 0.107337 -0.263070 2.023526 0.825832 1.663348 -0.722612 1.338501 1.043395 -1.560820 -1.840096 -0.835902 -1.203639 0.028846 -0.307995 -2.251365 -0.048600 -2.250079 -0.000259 1.040156 -0.574389 -0.480656 1.715764 -2.877229 -1.032305 0.742009 -0.527156 1.531743 2.241358 0.409722 0.066933 0.096569 1.840769 -0.107317 0.269212 -0.829616 1.019641 -0.479099 -1.612887 -0.442647 -0.639386 0.479064 -1.527035 -2.338035 -2.596286 -0.999803 0.461419 -0.453768 1.437981 3.162603 -0.369184 -2.037223 1.091391 -0.663158 0.440525 1.762589 0.372096 3.158608 -2.874779 1.639550 -0.607046 1.407403 1.139443 2.960346 -0.789249 -1.351091 0.762295 -0.487305 -1.441523 0.702955 -0.316411 0.598928 0.078581 -0.052418 -0.655957 -1.198471 1.954870 -1.873717 2.798576 -1.362809 2.784724 -2.147619 -1.921622 0.813988 -1.690288 -0.456166 -1.205017 -0.580570 -0.079816 1.741839 -1.718383 -1.311885 -1.041456 -0.506173 0.370858 1.923414 -1.815544 -0.251463 -0.932847 -0.849503 2.307700 0.642719 -0.806878 0.439748 -1.871738 0.427052 1.196362 0.342388 -2.548924 0.158729 -1.512619 -0.507697 0.553886 -0.203900 1.216351 -0.735228 -1.057932 0.768447 -0.687043 -0.055012 -1.323424 -2.515373 0.560894 -0.778206 -0.325562 0.354103 2.555526 1.887787 1.005073 -0.417318 -0.925884 0.543984 -1.531736 -1.622076 0.536283 -0.024309 0.533741 0.779720 0.915619 0.317768 0.317331 1.474152 0.176807 -0.049068 1.845085 0.753572 1.777208 -0.750870 -0.098743 0.833862 -1.732619 1.009779 2.237834 -0.286694 -0.770391 1.242431 0.665909 -0.775100 -1.777776 -0.626682 -0.795605 -1.163106 1.916239 0.891280 -0.857949 -0.806791 3.314748 0.416310 -3.448638 1.801387 -0.207956 0.362577 1.079205 -0.821140 0.439453 1.401900 -0.470687 0.382228 0.258213 1.728702 -1.752971 -0.551062 -0.170916 1.386821 1.061404 -0.687097 -4.111690 -0.318688 0.510426 2.879236 1.414693 2.781905 -0.630791 0.646385 -0.543828 -0.582969 -0.432622 -0.737648 1.222404 -0.547333 -0.707086 -3.041223 1.093047 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.288989 0.217331 0.139370 -0.570013 -0.498174 0.083522 0.000514 -0.294908 0.017517 -0.065557 0.430665 -0.502624 -0.389384 0.805155 -0.246316 -0.485601 0.095499 -0.432142 -0.139920 0.098185 0.015826 0.258320 -0.084827 -0.167833 0.095944 0.113427 -0.168482 0.294352 0.637083 -0.423418 -0.630494 0.015234 0.146010 0.711726 0.111815 -0.266282 0.211730 0.930566 -0.308230 0.465235 -0.743695 -0.241001 0.567885 0.040949 -0.259489 -1.016672 -0.614967 0.374969 -0.561190 -0.067915 0.396152 -0.150761 -0.080434 -0.209149 0.125469 0.885822 -1.205206 0.844131 0.264133 0.322867 0.128110 -0.174531 0.085645 -0.055643 0.086556 -0.452395 0.141713 0.096136 -0.497862 0.033143 -0.387221 -0.698036 1.129806 0.181999 -0.413126 0.092829 -0.029811 -0.776186 0.418425 -0.779746 -0.487604 0.017587 0.205691 0.303523 0.673288 -0.063227 0.008043 -0.971395 -0.255693 -0.961919 0.293004 -0.783257 0.425620 0.655740 -0.751364 0.074572 0.043629 -0.243219 0.520475 0.384814 0.688656 0.229463 0.295045 -0.187885 0.306241 0.298548 -0.138564 -0.173871 -0.147024 -0.575826 -0.240413 0.176087 -1.355543 0.156174 -0.414739 0.232318 0.072974 -0.075526 0.035887 0.290993 -0.366234 -0.361404 0.047908 -0.106131 0.482953 0.985022 -0.117102 0.131225 -0.415207 0.673776 0.095782 0.284140 -0.244734 0.207238 -0.189486 -1.373159 -0.801148 0.055239 0.298482 -0.450911 -0.783977 -0.790923 0.030313 -0.299943 -0.287025 0.369046 1.012558 -0.239244 -0.634467 0.748541 0.466937 0.303433 0.887726 -0.088090 1.189538 -0.605046 0.289874 0.012493 -0.054198 -0.250294 -0.201971 -0.138417 -0.308793 -0.028083 -0.015607 -1.072026 0.552338 0.137299 -0.193517 0.248005 -0.123293 -0.300839 -0.686616 0.890000 0.304555 0.628945 0.029296 0.976075 -0.423614 -0.809381 0.469454 0.177965 0.110423 -0.246014 -0.342054 0.259949 0.441122 -0.525911 -0.319397 -0.029613 0.087645 -0.328922 0.404560 0.330196 0.000183 0.012415 0.108029 0.125303 0.654234 -0.261110 0.513541 -0.716789 0.205132 0.504149 -0.159181 -1.103111 0.181048 -0.481482 -0.034282 0.341929 -0.157905 0.209205 -0.253700 -0.539439 0.162093 -0.228067 0.483015 0.030668 -0.369181 0.191407 -0.457957 0.034010 0.232241 0.657433 0.628564 0.473121 0.248030 -0.112176 0.134126 -0.137226 0.043711 -0.054949 0.055837 0.190248 0.328912 0.455328 0.197113 0.054359 0.409327 0.280882 -0.164806 0.594185 0.516368 0.841765 -0.039706 -0.097037 -0.036096 -0.453918 0.595819 1.185128 -0.485706 -0.167795 0.278148 0.333490 0.007410 -0.761160 -0.153340 -0.225521 -0.596382 0.598518 -0.095233 -0.050109 -0.151737 0.899775 -0.037704 -0.861738 0.546486 0.064991 0.171961 0.105284 -0.112398 -0.035838 0.367461 -0.573170 0.262003 0.351030 0.607867 -0.292686 -0.547529 -0.084577 0.411657 0.038290 0.219657 -0.759660 0.203966 0.570266 0.804023 0.456593 0.258687 -0.308905 -0.370623 0.004137 -0.006089 -0.105566 -0.207209 0.328457 -0.596134 -0.088048 -0.306788 -0.300991 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__countNonDecreasing(int) = 3.173334 0.763460 1.928430 -3.708357 0.307280 0.934341 3.359614 -2.437401 -0.141600 8.706458 1.883159 -1.558580 -4.699208 3.338983 -0.183392 -4.619604 4.008823 0.591947 0.322893 -2.120020 -1.370909 1.234872 -0.443066 -3.964518 3.123011 -2.553096 0.226329 3.806946 -0.191190 1.305402 -2.598479 -0.575977 0.327354 7.784518 -0.533283 0.198279 -1.420556 7.083135 -7.139955 7.018812 -7.114347 -6.919195 8.131080 1.098029 0.058677 -4.021974 -0.392240 2.026370 -0.957773 -4.563643 0.718541 -2.549801 2.287503 -4.781695 -0.045204 8.048238 -8.111760 -0.104893 0.763062 -3.594802 -5.259842 -1.081834 3.529330 0.645674 -3.685077 -5.117148 1.851592 0.398821 -3.013692 1.702641 -5.901716 -8.026195 3.026696 3.148612 -2.253836 1.817449 -0.813076 -5.708660 2.802051 -0.775409 -2.934178 -3.084807 2.541401 -0.895250 2.491439 3.013150 6.103321 -10.245402 0.291791 -7.796598 5.793870 -4.394502 7.767440 6.216121 -1.194070 3.651124 2.270373 2.871686 -0.226294 -1.977138 7.020194 2.044788 3.472857 -1.584327 3.635980 4.819387 -6.409698 -6.387930 -3.563143 -2.843408 1.100565 -2.035336 -6.292479 0.604465 -7.355042 -0.768410 3.246244 -2.298409 -2.025728 6.447999 -9.615966 -2.978954 2.175445 -1.783611 5.908535 5.208317 1.175926 0.301814 0.417903 5.869275 -0.497665 -0.289698 -2.988458 3.869884 -2.792621 -3.634456 -1.248720 -0.406307 2.439882 -7.091165 -7.445692 -8.385066 -2.070934 4.159237 -1.765596 5.858243 10.885826 -2.177329 -4.943331 3.528030 -2.664244 1.197842 5.879676 1.644787 9.891765 -9.309589 5.308853 -1.494239 4.228133 3.636140 8.278013 -1.958444 -4.127117 3.452624 -0.226003 -0.309941 4.036137 -1.868787 1.176028 -1.284885 0.772652 -0.939574 -1.895949 6.727144 -6.397125 6.905080 -3.314143 9.072734 -6.421297 -5.085019 2.999450 -6.840667 -3.768201 -5.614807 -1.582880 -0.782295 5.015753 -5.460751 -4.187982 -3.854399 -1.591356 0.993986 5.970981 -4.653372 -0.472293 -2.325793 -3.010378 6.742105 2.772233 -0.824077 0.066450 -6.199025 1.064263 3.594740 -1.532229 -7.662832 -0.108571 -3.944825 -0.996311 1.304384 -0.512843 4.438926 -3.563001 -2.946303 1.892958 -1.122828 0.010466 -3.519373 -6.618202 2.417486 -0.564783 -0.756113 2.124814 8.364482 6.042191 4.085216 -0.365544 -2.324893 1.875872 -3.807934 -6.206011 3.150549 -0.266341 3.726594 2.779195 3.606283 0.210967 1.601798 4.473496 0.186572 1.527604 5.514253 2.525621 6.440628 -0.455716 -0.182555 2.774484 -5.477111 3.818525 6.728958 -1.927541 -2.555400 3.805457 0.388947 -3.292071 -3.011724 -0.710600 -2.483386 -3.961702 4.482771 3.218309 -1.904541 -3.841033 10.892706 1.431425 -11.784058 5.603986 0.477987 1.824708 5.187169 -3.127078 2.612770 3.539533 -0.364455 2.830994 1.760494 6.113483 -6.389996 1.209768 -0.481571 4.086846 4.064161 -2.425820 -11.860413 0.473157 2.186505 8.318300 4.374455 8.281820 -2.744806 2.822318 -2.556362 -2.420044 -0.406012 -2.347844 3.934999 -2.109608 0.470355 -9.777143 3.189282 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.214661 0.169416 0.099904 -0.382736 -0.375717 0.079334 -0.076043 -0.222797 -0.017240 -0.128453 0.278876 -0.332744 -0.363029 0.521564 -0.206960 -0.422800 0.010771 -0.304293 -0.105028 0.015090 -0.013060 0.165575 -0.058803 -0.105149 0.070854 0.055816 -0.135328 0.188379 0.521498 -0.353070 -0.421108 0.008113 0.114469 0.515633 0.091681 -0.145524 0.170857 0.686141 -0.027633 0.246394 -0.553810 -0.222438 0.390022 0.015103 -0.173524 -0.716179 -0.380764 0.277422 -0.543206 0.055624 0.270492 -0.109331 -0.113569 -0.137333 0.085521 0.621459 -0.922517 0.740031 0.165697 0.220530 0.097336 -0.121405 0.016041 -0.094949 0.225118 -0.322602 0.074129 0.142171 -0.420450 0.056360 -0.245825 -0.435832 0.895093 0.122350 -0.291120 0.076080 -0.011375 -0.423473 0.270215 -0.637377 -0.363225 -0.006662 0.197069 0.316006 0.496027 0.010169 -0.057396 -0.697219 -0.198319 -0.696275 0.217699 -0.534246 0.314451 0.443936 -0.563672 0.080223 0.062026 -0.321139 0.351524 0.292324 0.507972 0.085200 0.179866 -0.083020 0.159397 0.129728 -0.044286 -0.078168 -0.063652 -0.415198 -0.214326 0.178209 -0.969759 0.094374 -0.302973 0.302918 0.044868 -0.002518 0.051916 0.061075 -0.306718 -0.323685 0.015225 -0.076274 0.415253 0.652446 -0.076513 0.114337 -0.289295 0.498216 0.041527 0.175242 -0.184706 0.147055 0.021578 -1.068546 -0.689113 0.031726 0.224698 -0.297999 -0.561764 -0.478268 0.003088 -0.227751 -0.205973 0.276532 0.741381 -0.177734 -0.453546 0.565351 0.261641 0.299308 0.688629 -0.032552 0.823004 -0.397152 0.170768 0.046008 -0.062211 -0.159390 -0.338024 -0.101984 -0.221066 -0.016438 0.073188 -0.621131 0.248199 0.055834 -0.174181 0.162520 -0.120907 -0.221376 -0.470773 0.579100 0.336208 0.472269 0.083729 0.712879 -0.315233 -0.649270 0.310677 0.146959 0.084535 -0.071288 -0.224403 0.152322 0.261492 -0.443929 -0.244211 0.012121 0.079429 -0.257228 0.283124 0.401813 0.008446 0.035690 0.093694 0.099152 0.489349 -0.191071 0.363188 -0.531115 0.136192 0.338526 -0.080589 -0.786846 0.151546 -0.301862 -0.020340 0.356249 -0.107289 0.129633 -0.087366 -0.348448 0.085413 -0.176006 0.407131 0.057162 -0.090619 0.110140 -0.311589 -0.026099 0.160473 0.457584 0.471849 0.323423 0.173438 -0.036454 0.114080 -0.094480 0.199925 -0.089361 0.059128 0.193167 0.234453 0.263674 0.162952 0.039246 0.305076 0.239311 -0.149229 0.434049 0.359697 0.648498 -0.149232 -0.054648 -0.062274 -0.293717 0.433430 0.841149 -0.481453 -0.086760 0.208699 0.263765 0.109184 -0.591816 -0.110996 -0.164918 -0.436094 0.453064 -0.041935 -0.024256 -0.108224 0.632467 -0.030085 -0.575819 0.464282 0.069887 0.101005 -0.014367 -0.064163 -0.120342 0.291200 -0.465593 0.093761 0.267107 0.449471 -0.233900 -0.369122 -0.071695 0.340699 -0.087341 0.192430 -0.416010 0.075041 0.451180 0.560269 0.344479 0.067282 -0.208344 -0.399027 0.016097 -0.006496 -0.089056 -0.089735 0.201905 -0.405574 -0.062824 -0.090784 -0.272285 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__minInitialPoints(int (*) [3]) = 6.413827 -0.154402 5.804457 -3.614140 -0.485645 3.782680 1.471499 -8.043560 0.953072 15.405134 4.501297 -4.200593 -2.507777 6.264757 -3.442650 -4.066636 6.932772 9.529099 1.856365 -3.096520 -2.883140 0.269670 -2.725192 -5.145382 3.346527 -3.379946 4.817155 4.564140 -1.505734 5.313791 -7.023189 -1.653118 -0.331662 14.565754 2.230296 0.872881 -1.936476 11.314578 -8.070169 13.375962 -13.345842 -8.468681 10.274914 2.685608 3.834317 -5.571741 -3.058223 4.912819 -2.143508 -9.632535 1.245014 -7.236655 5.474672 -6.846331 -0.707414 11.386922 -11.788600 -2.726867 3.014769 -6.945139 -10.545276 -0.981810 9.662497 3.135155 -10.393572 -8.739840 4.405251 5.265610 -3.580414 3.328810 -11.859665 -18.511804 3.775201 1.821677 -7.835018 0.704431 -1.060250 -10.191301 5.021955 2.443855 -6.769193 -5.096080 2.891947 -7.180677 4.331990 5.138544 12.940901 -18.519982 5.285301 -16.385031 9.676653 -7.159651 14.386505 11.110519 -6.084540 3.805354 5.559994 11.085517 1.251093 0.869796 11.223700 5.073257 0.547190 -5.402050 9.130638 7.123606 -9.683331 -11.466395 -6.549376 -7.242866 1.840671 -3.239129 -11.794187 0.204311 -14.482030 5.162548 0.187902 -0.951154 -2.459937 12.570864 -18.901440 -3.564934 3.224807 -2.875091 11.188365 10.496808 1.226169 3.910833 0.744891 10.105182 -3.428533 -5.583738 -5.010644 6.630918 -7.061649 -4.454374 -5.731820 1.380371 7.390067 -10.781113 -14.350749 -17.090045 -5.543501 8.346419 -2.683898 10.849575 18.235884 -4.130034 -7.981556 4.279810 -6.479204 -1.562080 14.554600 3.519280 19.827750 -18.440422 10.730676 -4.523981 7.264718 4.242184 8.359274 -4.937816 -6.322115 7.819654 -1.352915 -3.370170 16.466155 -2.574090 1.264313 -2.141844 3.264022 1.708054 -2.570431 12.753251 -14.885326 9.134447 -6.928745 17.688121 -12.208236 -7.877568 3.436681 -11.826995 -5.006709 -4.998020 -1.317699 -3.763377 14.518087 -10.100994 -7.813081 -2.682669 -4.718231 3.960652 11.592667 -0.697731 -1.624199 -2.801932 -7.248862 12.799890 4.739844 -0.595216 -0.084864 -9.080700 0.651222 7.348522 -4.090632 -10.617435 -2.002296 -11.829995 -1.875631 -4.153582 0.058523 8.781463 -11.086604 -5.542817 0.437104 -1.966985 2.257691 -4.711951 -12.783797 5.688263 -4.014246 -0.547895 4.600667 14.857834 10.772355 10.500411 1.744026 -5.450746 3.221901 -8.578572 -10.351224 6.734429 2.654002 7.948536 3.577463 4.794406 0.385951 3.163671 1.764549 -4.337893 7.919875 11.269329 5.339839 11.040509 -3.621678 4.308351 3.530614 -9.235155 7.423362 12.658751 -4.563184 -2.563217 3.675829 -0.066742 -7.590154 -7.982308 -0.965001 -2.340072 -7.318977 2.778786 7.107084 -0.760231 -9.226366 19.503986 3.026533 -20.377746 9.574028 -1.268848 1.798233 13.527879 -5.306373 6.589216 3.085334 3.337747 6.191237 3.876984 10.912168 -12.181992 0.970736 -1.309989 7.934368 8.430061 -4.721410 -21.194384 5.546649 2.841573 14.103143 6.567178 12.208948 -7.774355 7.163322 -3.639251 -8.382324 -0.655859 -4.015609 9.578164 0.607312 -1.066465 -19.492050 3.424006 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp___GLOBAL__sub_I_minimum_positive_points_to_reach_destination.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/lexicographic-rank-of-a-string.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__fact(int) = 0.567352 0.094483 0.352101 -0.470494 0.336135 0.193292 0.512042 -0.280810 0.200307 1.062754 0.055444 0.012700 -0.706082 0.300937 -0.244944 -0.510859 0.824565 -0.344284 0.213749 -0.223199 -0.111443 0.091496 0.065425 -0.513348 0.408197 -0.356827 0.089042 0.305168 -0.224261 -0.169501 -0.478062 0.030695 -0.003293 0.906945 -0.094334 0.084708 -0.163606 0.673852 -0.227015 1.063398 -1.253188 -0.609821 0.722029 0.094654 0.132149 -0.850870 0.255267 0.066393 -0.008862 -0.331529 -0.077404 -0.550954 0.168049 -0.588373 -0.093336 1.117415 -1.001738 0.110811 -0.052273 -0.234868 -0.436724 -0.098164 0.581527 0.050484 -0.055612 -0.521475 0.363328 0.157331 -0.860935 0.555135 -0.727231 -0.763799 0.257095 0.447148 -0.380578 0.149762 -0.128527 -0.608218 0.170528 -0.767772 -0.137431 -0.417724 0.467615 0.153473 0.240664 0.317897 0.629522 -1.211651 0.004974 -0.740314 0.779537 -0.538582 1.049456 0.572332 0.236176 0.437052 0.152223 -0.088071 -0.194345 -0.067688 0.810495 0.309639 0.436983 -0.465017 0.383787 0.336244 -0.535415 -0.700029 -0.020705 -0.017796 -0.139975 0.080599 -0.577086 -0.092573 -1.077988 0.477897 0.473159 -0.081579 -0.242269 0.469428 -1.239602 -0.787538 0.123295 -0.212473 0.883839 0.578490 0.266811 0.098626 0.124430 0.773071 0.035934 -0.153316 -0.467051 0.373097 -0.234128 -0.581878 -0.167302 -0.361728 0.244385 -0.761124 -0.953691 -0.844630 -0.478866 0.438434 -0.054000 1.002678 1.099448 0.012547 -0.577617 0.266810 -0.501663 0.211529 0.802845 0.215675 0.998523 -1.267942 0.877545 -0.126863 0.947693 0.430803 1.161881 -0.425384 -0.425219 0.272111 0.037780 0.000714 0.036142 -0.116770 0.340363 0.056718 -0.289912 -0.030029 -0.271185 0.582986 -0.740501 0.991049 -0.512694 1.190655 -0.949138 -0.766347 0.231647 -0.655280 -0.259834 -0.276174 -0.011782 -0.133820 0.593545 -0.812925 -0.586617 -0.183944 -0.248697 0.386726 0.786673 -0.452521 -0.133038 -0.437317 -0.647034 1.416341 0.083667 -0.310525 0.103959 -0.630444 0.064171 0.338579 0.012175 -0.854677 0.108193 -0.385505 -0.113789 0.289311 -0.025196 0.405238 -0.360392 -0.484844 0.276192 -0.190211 0.043742 -0.578230 -0.588678 0.141437 -0.005252 -0.439351 0.031122 0.890211 0.582565 0.199906 -0.346695 -0.646536 0.183008 -0.647761 -0.529332 0.238085 0.080514 0.224630 0.102212 0.330008 -0.175063 0.018816 0.464110 0.002563 0.062906 0.516021 0.181771 0.418001 -0.522182 0.081441 0.338982 -0.980214 0.472015 0.619395 -0.567152 -0.338139 0.441667 0.141726 -0.168407 -0.430360 -0.215324 -0.362672 -0.473996 0.645138 0.441166 -0.216618 -0.521012 1.273963 0.379951 -1.270297 0.779510 0.049516 -0.016748 0.509798 -0.405524 0.135020 0.491177 -0.091926 -0.052885 -0.128214 0.745920 -0.570994 -0.120541 -0.139499 0.391600 0.155128 -0.430068 -1.206485 -0.409872 0.373954 1.159555 0.760995 0.992552 -0.112148 0.337558 -0.468482 -0.223259 -0.184540 -0.244228 0.491155 -0.243695 -0.129839 -0.945499 0.661832 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findSmallerInRight(char*, int, int) = 1.220034 0.481652 0.975412 -1.267769 -0.307334 0.313466 1.374168 -1.061272 0.004755 3.375677 0.991150 -0.696475 -1.273227 1.693402 -0.312635 -1.152355 1.206005 -0.064509 -0.089340 -0.308647 -0.317378 0.732025 -0.330058 -1.320280 1.136298 -0.340930 0.240486 1.333838 -0.287586 0.372089 -1.222777 -0.293393 0.229137 2.825301 -0.144590 -0.005167 -0.422757 2.671978 -3.329503 2.561044 -2.855632 -2.674831 3.007999 0.311326 0.154460 -1.928750 -0.415213 1.160492 -0.019837 -2.318952 0.450247 -0.802518 0.763536 -1.784057 0.052423 2.684107 -3.358178 -0.034616 0.645336 -1.064263 -2.028055 -0.428136 1.553847 0.253970 -1.697524 -1.907222 0.606941 -0.101142 -0.934383 0.442628 -2.004874 -3.203700 1.235297 0.620872 -0.992746 0.649728 -0.313678 -2.609673 1.471761 -0.485212 -1.209257 -0.931860 0.706613 -0.695571 1.004342 0.952940 2.058147 -3.835121 0.330690 -2.997566 2.051031 -1.738246 2.539643 2.358950 -1.086658 1.112871 0.866813 1.822188 0.554916 -0.384310 2.580185 1.135596 1.463377 -0.624718 1.475719 2.004459 -2.560118 -2.294133 -1.862436 -1.671329 0.729949 -0.759274 -2.773723 0.248165 -2.219088 -0.473870 1.030433 -1.159869 -0.420226 2.795454 -3.947118 -0.439165 0.959858 -0.486869 1.781669 2.296738 0.170468 0.128267 -0.051306 2.122125 -0.378015 0.026990 -0.757117 1.409158 -1.594339 -1.639481 -0.342074 0.050015 0.809089 -2.501972 -2.614193 -3.996518 -0.305979 1.361859 -0.788769 1.495649 4.056541 -0.935675 -2.077068 1.435470 -0.273920 -0.159077 2.143662 0.373920 3.823382 -3.283815 1.669317 -0.466500 1.113271 1.081906 2.843519 -0.570663 -1.527109 1.145868 -0.344325 -1.648204 2.348286 -0.288262 0.305910 -0.366857 0.559579 -0.673701 -0.773445 2.677844 -2.216889 2.302426 -1.413315 3.260980 -2.290481 -1.567441 1.105696 -2.736604 -1.132660 -2.326794 -1.088431 -0.005886 2.163893 -2.064164 -1.257064 -1.446805 -0.568540 0.100356 2.189034 -2.404824 -0.043228 -0.730030 -0.870175 1.823081 1.017108 -0.440854 0.225200 -2.200480 0.306543 1.473366 -0.528580 -3.267649 -0.219419 -2.140989 -0.362395 0.347360 -0.336702 1.688063 -1.401663 -1.200204 0.988134 -0.665867 -0.158505 -1.256055 -2.510361 0.720241 -0.753432 0.322587 0.872187 3.147074 2.185487 1.905533 0.130257 -0.571115 0.708542 -1.435094 -2.495121 1.098541 -0.201381 1.246538 1.201974 1.322822 0.493075 0.659636 1.305480 0.021288 0.535623 2.506869 1.222400 2.516907 -0.214249 0.035605 0.965849 -1.566391 1.468623 2.427751 -0.485294 -0.812730 1.096908 0.043795 -1.483926 -0.657548 -0.222704 -0.893749 -1.497017 1.446462 1.135940 -0.564087 -1.233495 3.985979 0.213668 -4.383777 1.861567 -0.135179 0.958844 2.099246 -0.975217 1.207023 1.157003 0.034703 1.486414 0.850091 2.347067 -2.326542 -0.082423 -0.129087 1.767648 1.933930 -0.557564 -4.965620 0.791921 0.534384 2.832103 1.125920 2.985292 -1.362572 1.159237 -0.864755 -0.965357 -0.071889 -0.874212 1.754035 -0.357723 -0.231154 -4.222982 1.047930 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 1.063546 0.935638 1.196791 -2.099195 -0.723214 0.201852 1.145349 -1.397725 0.318275 2.811898 1.379765 -1.562116 -1.123001 2.415089 -0.834629 -1.486203 1.267004 -0.282790 -0.284902 -0.997850 0.088539 0.678674 -0.144533 -1.426998 0.601106 -0.717171 0.563694 1.331112 0.299491 -0.316533 -1.358676 -0.223845 0.772290 3.038567 -0.021990 0.129939 -0.905396 2.558217 -2.253849 2.903984 -4.037127 -2.190292 3.000376 0.543845 -0.031298 -3.924163 -1.275254 1.056316 0.190345 -1.648800 0.120650 -0.951624 0.670409 -1.947916 -0.294540 3.245653 -3.038455 0.570268 0.615912 -1.398662 -1.646288 -0.277589 1.938575 0.826239 -1.689884 -1.928761 0.820828 0.302962 -1.579732 0.972829 -2.053481 -3.456555 1.739524 0.735741 -1.257259 0.441565 -0.681296 -2.861051 1.416525 -1.131587 -1.020207 -0.927389 1.284914 0.091025 0.582612 0.668453 2.231867 -4.196229 -0.378277 -3.302761 2.170814 -2.021189 2.763434 2.032511 -0.988938 1.031894 0.377000 0.541891 1.096032 0.307115 2.491367 1.320098 2.101112 -1.154454 2.071937 2.147095 -1.675010 -2.378392 -1.085581 -2.114200 0.338258 -0.267070 -3.715753 0.355727 -2.762815 -0.827980 0.533459 -1.048160 -0.086814 2.832002 -3.145391 -1.582387 1.150599 -0.581150 1.739746 2.878648 0.326338 0.598084 -0.257067 2.174367 0.100461 0.373696 -0.672788 1.340897 -1.757144 -3.197761 -1.161925 0.084853 0.899274 -2.498696 -2.932362 -3.850540 -0.787961 1.104026 -0.909774 1.611279 4.099877 -0.789325 -2.946944 1.363648 0.974243 -0.571348 2.613321 0.230933 5.092899 -3.891753 2.262198 -0.512596 1.420139 1.324179 3.669222 -1.071090 -1.745103 1.175085 -0.890513 -3.570834 2.267772 -0.514707 0.495454 0.524845 0.242278 -0.598975 -1.472410 2.653968 -1.515169 3.301980 -1.902633 3.747666 -2.947200 -2.457839 1.233296 -2.308043 -1.110471 -1.382988 -0.401735 0.076715 3.132238 -1.855394 -1.506341 -1.160134 -1.288140 0.293626 2.404392 -2.405459 -0.142057 -0.854438 -1.184009 2.185801 1.357155 -0.681293 0.720869 -2.369229 0.449861 2.301604 0.617772 -3.798819 -0.239240 -2.541721 -0.472049 -0.469830 -0.407484 1.825693 -1.322824 -1.302957 0.722790 -1.155714 0.210829 -1.526421 -2.663061 1.074780 -1.422403 0.530932 -0.029157 3.590804 2.375388 1.911046 0.082648 -1.279598 0.694755 -2.191894 -1.978288 1.050067 0.411929 0.189948 1.153143 1.872395 0.123145 0.683770 2.495532 0.045180 0.092392 2.350409 0.655284 2.594525 -0.846109 0.472142 0.610824 -2.123213 1.801966 4.111204 0.364004 -1.664443 1.281514 0.327121 -1.397537 -2.262816 -0.858685 -0.651783 -1.985210 2.411308 1.464040 -0.728080 -1.340549 4.345316 0.828432 -4.504027 2.398848 -0.185941 0.390465 1.912218 -1.695435 0.677573 1.722487 -0.167498 0.649785 0.842027 2.528830 -2.381778 -1.308929 -0.308350 1.984485 1.895579 -0.723078 -5.394806 1.052688 1.651125 3.684760 1.210333 3.668970 -1.681552 0.942508 -0.599997 -0.317169 -0.456711 -0.735988 1.610468 -1.342899 -0.568797 -3.596980 1.069218 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.324904 0.130519 0.144095 -0.341302 -0.490205 0.252905 -0.532130 -0.269692 0.022213 -0.248906 0.211737 -0.269446 -0.349329 0.433810 -0.304278 -0.586151 -0.136451 -0.313602 -0.023900 -0.137961 -0.059119 0.080718 -0.103914 0.053223 -0.048850 -0.045720 -0.118654 0.064953 0.723415 -0.361396 -0.537626 0.016232 -0.046165 0.559170 0.181287 -0.220902 0.385625 0.858914 0.453916 -0.045104 -0.408982 -0.329940 0.145455 0.044165 -0.167736 -0.293298 -0.253445 0.248516 -0.898370 0.413962 0.439060 -0.145033 -0.223140 0.078522 0.174043 0.428575 -1.066522 0.987240 0.033104 0.410084 0.167321 -0.204693 0.018739 -0.059163 0.459914 -0.261836 0.260622 0.481266 -0.535078 0.068516 -0.171577 -0.463147 0.990633 0.204629 -0.342095 0.010454 0.228866 -0.280006 0.267640 -0.715412 -0.572701 0.071273 0.168415 0.148460 0.747171 0.023923 -0.104770 -0.722898 0.076062 -0.815180 0.156284 -0.530320 0.330341 0.516569 -0.774992 -0.009224 0.185879 -0.135238 0.419817 0.177539 0.616830 0.009561 -0.064102 0.021050 0.108253 -0.059649 0.096295 0.161392 -0.006294 -0.485493 -0.428524 0.151517 -1.027240 0.070794 -0.287383 0.556592 -0.056675 0.180640 -0.073876 -0.179987 -0.540839 -0.672412 -0.176736 -0.073434 0.598880 0.549593 -0.206764 0.292413 -0.238680 0.685282 -0.083970 -0.026031 -0.246801 0.051739 0.216513 -0.870124 -1.211039 0.136147 0.438414 -0.254924 -0.682604 -0.301397 -0.110167 -0.296697 -0.127499 0.758608 0.861770 -0.163682 -0.408153 0.704215 -0.113636 0.464192 1.092988 -0.015701 0.731638 -0.323657 0.126238 -0.013294 -0.080543 -0.382456 -1.121562 -0.005550 0.023883 -0.005108 0.294667 0.224833 0.040780 -0.045790 -0.353056 -0.168278 -0.108656 -0.237360 -0.471056 0.618701 0.407168 0.365560 0.469949 0.820758 -0.315794 -0.811761 0.318702 0.119536 0.190019 0.112254 -0.216284 -0.037186 0.279324 -0.540550 -0.291732 0.110915 0.129701 -0.301521 0.116558 1.229467 0.115840 0.151575 0.256968 0.270758 0.813369 -0.014790 0.344031 -0.647694 0.105675 0.408368 -0.273825 -0.475926 0.223306 -0.261245 0.045243 0.498767 -0.092571 0.056666 -0.186365 -0.452180 -0.215585 -0.011236 0.720856 0.295592 -0.183949 0.158767 -0.312085 -0.109331 0.290514 0.315313 0.564367 0.382382 0.442109 -0.137813 0.216575 -0.014250 0.651669 -0.231105 0.224531 0.439999 0.177892 0.306373 0.178464 0.017228 0.199011 0.432619 -0.190018 0.411976 0.311833 0.880929 -0.316872 0.077219 -0.344848 -0.278141 0.453800 1.077096 -0.854541 0.191595 0.223484 0.453018 0.320772 -0.891346 -0.081368 -0.259987 -0.212844 0.075620 -0.110274 -0.027103 -0.138413 0.561589 0.031742 -0.495104 0.510010 0.083219 0.005697 0.004576 -0.053985 -0.360291 0.201815 -0.831835 0.206988 0.356547 0.380152 -0.180195 -0.111044 -0.103039 0.475391 -0.578797 0.293187 0.148017 0.236194 0.563254 0.482406 0.627508 -0.249025 -0.253441 -0.755865 0.116222 -0.273342 -0.165183 0.141868 0.307574 -0.491034 0.146417 0.222308 -0.708597 +PE-benchmarks/lexicographic-rank-of-a-string.cpp___GLOBAL__sub_I_lexicographic_rank_of_a_string.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/Nearly_sorted_Algo.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 1.899250 0.493085 2.451028 -2.735086 -1.819827 0.514977 -1.311612 -0.870059 0.985833 4.287861 1.692153 -1.867569 -3.599543 3.959893 -1.713561 -3.409903 1.826742 0.491668 1.729700 -1.492495 0.876869 1.484742 1.081867 -0.984908 1.621178 -1.417902 -1.359378 2.481599 4.797946 -0.386619 -2.248068 0.324713 0.698007 4.269153 -1.467236 -1.484972 0.522672 5.805068 -3.140113 3.194725 -3.611274 -3.780854 4.739043 1.111371 -0.648348 -3.067712 -2.324669 1.632920 -3.479468 -2.615014 1.529739 -0.670692 1.117836 -2.345833 -0.125393 4.470034 -7.847875 1.983824 -0.234808 -0.210606 -0.372726 0.330764 1.451954 0.729274 -0.276626 -2.703341 0.911131 0.681493 -3.978616 -0.321832 -1.505062 -3.322034 4.460829 0.870349 -2.061033 1.825483 2.463936 -3.790340 2.864840 -3.188645 -3.048176 -0.948863 0.274151 -0.796414 3.262639 0.761676 2.918394 -6.282850 0.814335 -4.798609 4.484958 -3.687048 3.776962 4.267915 -4.268551 1.915840 2.420535 2.053658 2.582568 -0.210449 6.526222 2.607959 1.598552 -0.066501 1.982863 2.293173 -2.998971 -1.603002 -3.118001 -3.593366 -0.227301 -1.726116 -6.683195 -0.144308 -2.886016 0.247896 3.108277 -2.339343 -0.857124 3.850159 -6.166724 -1.534465 0.891212 -0.631391 1.859068 4.631764 -0.140817 -0.499380 0.308515 5.658221 -1.923605 -0.980694 0.832052 1.597948 -0.944684 -4.121497 -2.265356 -0.050991 0.680051 -4.069090 -4.390405 -5.859349 0.082059 0.201951 -0.537746 3.568546 8.278651 -0.539568 -3.049333 3.599507 -1.167041 0.581241 6.160105 0.418194 7.380201 -4.614543 0.415786 -1.839205 0.151526 1.929619 3.200292 0.455598 -0.365415 1.181979 1.185589 -1.681175 0.786511 -1.836620 -0.071640 -1.746189 0.606949 -2.135180 -2.289915 4.188063 -2.245622 3.632254 -1.028084 6.572886 -1.626025 -5.871797 2.600561 -3.124268 -1.314341 -2.603953 -1.496073 -0.107283 2.470330 -4.035372 -2.078923 -2.972678 -0.276296 -0.483726 2.641109 -1.085916 1.835044 -0.138775 -0.703213 3.589317 2.829050 -0.018483 1.475872 -5.510262 -0.210231 2.949752 -1.741469 -6.370843 1.281761 -3.846428 0.701659 2.192496 -2.019528 2.185774 -2.498643 -3.519792 -0.736798 -1.712933 1.016921 -1.925879 -4.915482 1.133809 -0.839791 0.987170 2.478246 4.706459 5.083393 3.060253 0.725189 0.464705 1.690965 -1.368434 -1.178350 1.278229 -0.080826 1.841443 1.640002 3.404408 0.801343 1.608487 3.272110 1.766850 0.034229 4.281464 1.137332 5.186958 -0.157554 -0.523665 -0.046851 -2.747960 3.109837 6.783999 -1.086933 -0.484822 2.446861 1.443738 -0.085079 -4.252891 0.535668 -1.935708 -1.669526 3.526537 1.434248 0.255164 -1.697017 4.325431 0.816030 -7.529213 4.653520 -0.666838 0.499634 2.719904 -1.178584 0.314834 1.536662 -3.031627 1.426976 1.952075 3.641873 -4.179268 0.542675 -0.417072 3.941865 1.430227 0.879776 -8.012020 1.189770 1.881834 3.953254 2.731162 4.175559 -2.645712 -2.475220 -0.267469 -1.966112 -1.772419 -1.861165 1.628086 -3.026315 0.457810 -3.337933 -0.242263 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::priority_queue(int*, int*, std::greater const&, std::vector >&&) = 0.580977 -0.824004 1.214927 -2.795035 -3.778217 1.389925 -3.891846 -1.575746 1.078754 -0.699510 2.239602 -2.606111 -1.420175 4.652404 -0.662268 -3.500144 -0.193834 0.745159 1.329757 0.688007 0.888170 1.172118 -0.516996 1.147324 -0.824829 -0.126603 -1.324779 0.933174 5.234720 -0.496281 -3.869449 -0.202247 -0.928240 3.174255 0.529997 -0.984833 1.981562 6.043725 -0.270182 3.416580 -2.176104 -1.483123 0.772591 0.642089 -1.199762 -1.408078 -3.672768 1.252374 -5.157753 0.016449 3.789717 -0.313240 0.255432 0.931987 2.001183 1.841230 -5.920115 3.376287 0.571321 2.064501 2.489339 -0.600535 -0.716091 1.348782 -0.931598 -1.068417 1.363963 2.074395 -2.060455 -1.141706 -0.487540 -3.811628 6.275056 1.778596 -3.205936 0.381794 3.553486 -3.494648 2.894942 -2.897078 -4.822699 0.796941 -1.064897 -1.358919 5.038111 -0.408772 1.804582 -4.557932 1.858585 -5.610795 2.220443 -4.212016 1.446792 4.590910 -5.499593 -0.501865 2.434097 2.530853 4.318438 0.911810 4.101536 2.442597 -1.049400 0.287958 2.154195 0.999847 -0.662611 0.239727 -1.761706 -4.040444 -1.665314 -1.472286 -7.502055 0.326062 -0.430516 2.944465 0.129173 0.639966 -0.510426 1.200248 -3.111208 -1.637848 -0.474697 -0.446901 1.905963 4.730821 -1.823045 1.097890 -1.523192 4.929878 -2.059905 0.211206 -0.174953 0.599678 -1.387480 -2.397898 -5.877116 1.451415 2.056055 -2.238303 -3.764708 -3.838967 -0.144676 -0.096417 -0.206005 4.857068 6.493480 -1.747216 -2.186035 4.594032 -0.171945 1.135212 6.250669 -0.165328 5.115413 -1.597816 -0.323525 -2.521041 -1.799837 -2.781764 -2.020397 1.727225 0.598997 0.621894 0.558166 -2.017001 3.381445 -0.623231 -2.664695 -2.964652 0.222738 -2.125247 -2.963547 4.873489 -1.515940 1.457698 1.322830 5.125645 -0.508709 -4.076524 2.704761 -0.757044 0.572172 -1.451847 -1.849137 0.735445 2.390535 -3.281414 -1.301255 -0.793965 -0.241112 -1.910252 0.147281 4.764028 0.989684 1.851936 1.815800 3.363412 5.634721 1.523782 1.145261 -4.224076 0.963115 2.153596 -3.836533 -2.816558 1.493811 -2.973396 0.830521 1.014631 -1.107664 0.850437 -3.628381 -3.788525 -2.628868 -0.512670 3.849773 1.628394 -5.278424 1.169193 -0.613180 1.696425 3.347400 1.535910 3.720103 3.952245 4.102632 0.094113 0.912323 0.951943 1.610923 -0.015166 1.427691 1.537769 1.041644 3.572506 1.264133 0.614132 1.721640 2.844535 0.532995 2.874185 1.378782 5.443786 1.675200 -0.232191 -1.534397 -1.513234 3.104177 7.979238 -3.344072 2.638177 1.508006 2.288608 0.150511 -5.115025 0.474505 -1.576497 -1.474361 1.093165 -0.920901 0.810202 -1.239759 2.550269 0.406827 -4.346568 1.905731 -0.158257 0.531410 2.510663 0.089837 -0.735046 0.187955 -5.149988 3.940004 2.724239 2.031944 -1.687008 -0.535666 -0.406288 1.731404 0.528571 2.753693 -1.013886 2.346243 2.771818 2.939844 3.080594 0.644582 -2.641945 -3.645872 1.375141 -3.016520 -1.642256 -1.318039 1.358443 -2.642951 0.945638 -0.469605 -5.414926 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::~vector() = 0.971801 -0.043228 1.250975 -1.359264 -2.008780 0.875344 -1.473762 -0.437345 0.304797 0.678790 0.816788 -0.537790 -0.483993 1.521829 -0.617701 -1.539755 -0.139024 -1.220855 0.240542 -0.911054 0.236809 0.564844 0.082410 0.352513 -0.220838 -0.628195 -0.545047 0.574578 1.520275 -0.735746 -0.943118 -0.049690 -0.676209 1.427290 0.129716 -1.066207 0.801542 2.936836 0.074509 0.014944 -0.996113 -1.555870 0.804277 0.120730 -0.185892 -0.140336 -1.019641 0.882423 -1.075859 0.115060 1.431513 -0.046639 0.226533 0.084180 0.155952 0.448647 -2.846293 1.244228 -0.211020 0.203335 -0.077345 -0.004628 0.355304 0.902798 0.137172 -0.818304 1.285645 1.246170 -0.973908 -0.436752 0.178235 -1.494125 2.110251 0.539956 -0.338826 0.206325 1.717335 -1.174932 1.626053 -1.091960 -2.314103 0.099764 -0.560917 -1.951438 2.186817 -0.528078 1.052424 -2.427515 1.739721 -2.556901 0.994075 -1.295260 0.576063 1.643779 -1.750765 0.285402 1.211973 1.738844 1.678689 -0.271462 2.325796 0.706175 0.319095 1.057130 0.969210 0.234445 -0.535985 0.393647 -1.413208 -2.027933 -0.395073 -0.964309 -2.616391 0.716197 0.215589 -0.038073 0.259738 -0.063422 -0.264885 1.384403 -2.043813 -0.679476 0.103431 -0.189954 0.309132 1.330588 -1.042529 0.444025 -0.291823 2.443624 -1.411209 0.226630 0.501250 0.460260 -0.055145 -0.548550 -2.440592 1.109592 1.030545 -1.116289 -1.677802 -1.424806 0.051682 -0.070352 -0.517929 3.207536 3.375357 -0.761377 -1.523744 1.965664 0.192736 0.018544 2.592765 -0.005518 2.153901 -0.665685 -0.877689 -1.210644 -0.756423 -0.423860 -1.586705 0.912662 0.914408 0.940815 0.718347 0.716353 1.856507 -0.796246 -1.176478 -0.337832 0.688654 -1.020238 -1.267933 1.501022 1.091701 0.975408 1.910133 2.645533 -0.177472 -1.864026 0.912894 -0.527331 0.111849 -0.542103 -0.434462 -0.199289 0.762946 -0.793959 -0.734658 -1.013638 -0.634848 -0.902243 0.068311 2.270937 1.553762 1.092111 0.795006 0.960160 2.701922 1.014776 0.163851 -2.289302 0.322221 1.297762 -0.970630 -0.755520 -0.044443 -0.947227 0.565565 0.981640 -0.345591 1.013688 -1.250465 -1.308276 -1.058814 0.272132 1.053093 0.820771 -2.689128 0.304493 -0.180863 1.091493 0.801383 1.073201 2.128886 1.765761 1.770634 0.227022 0.463054 0.547553 0.878753 -0.744166 0.495298 1.231820 0.604735 1.708602 0.712102 0.780453 1.512186 1.660210 0.019625 1.407014 -0.242117 2.904199 -0.668142 -0.058341 -1.262052 0.064512 1.481012 3.401316 -0.716515 0.815637 0.790654 1.224868 -0.026955 -2.388830 0.584677 -0.981411 1.084886 -0.339997 0.637665 0.170691 -0.635249 1.059695 0.494924 -2.415202 1.544993 -0.013722 0.590455 1.431539 -0.041047 -0.154563 -0.037513 -2.359384 1.419287 1.725441 0.656764 -1.336856 0.390344 0.125390 1.746626 -1.562793 1.613822 -1.090199 1.524258 0.973358 0.769749 0.885187 0.538592 -1.699744 -2.127389 1.004838 -1.489013 -0.755992 1.136675 0.654736 -2.037280 1.092494 -0.372864 -1.759548 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::top() const = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::pop() = 0.170006 -0.566380 0.294351 -0.961508 -1.442187 0.779066 -1.733422 -0.794338 0.205342 -0.720254 0.599743 -0.862840 -0.401240 1.605755 -0.287333 -1.636098 -0.305705 0.640196 0.266044 0.136087 0.032425 0.396221 -0.402129 0.417402 -0.338992 -0.280911 -0.187736 0.335290 1.865710 0.032219 -1.345470 -0.255971 -0.582935 1.444283 0.609236 0.150209 0.877536 2.503706 0.648290 1.434202 -0.799047 -0.775138 0.171561 0.211795 -0.400021 -0.021701 -1.274501 0.450200 -2.490192 0.451666 1.471219 -0.304781 -0.045300 0.535753 0.969356 0.510583 -2.003772 1.444876 0.120014 0.675043 0.595690 -0.550895 -0.437985 0.404997 -0.446267 -0.500290 0.527058 1.364977 -0.758387 -0.254052 -0.231999 -1.578208 2.678630 0.756513 -1.370542 -0.043978 1.215794 -0.945341 0.843045 -0.799747 -2.023137 0.216875 -0.215090 -0.588629 2.077889 0.074511 0.839874 -2.001488 0.916898 -2.404507 0.707755 -1.443075 0.746165 1.857148 -2.278873 -0.092558 0.897528 1.209724 1.326453 0.382974 1.408578 0.614711 -0.846854 0.218470 0.920081 0.090113 -0.082072 -0.072607 -0.477993 -1.482005 -0.693877 -0.684262 -3.041036 0.097340 -0.284583 1.792157 -0.485189 0.834625 -0.378880 -0.067788 -1.598112 -0.818254 -0.357894 -0.240162 1.244836 1.357222 -0.773050 0.765359 -0.563835 1.865149 -0.805300 -0.105206 -0.598559 0.324025 -0.337991 -0.464679 -2.783699 0.669800 1.161839 -0.666004 -1.720795 -1.199309 -0.530001 0.399248 -0.170945 2.301695 2.502752 -0.815877 -0.888492 1.855740 -0.567459 0.845319 2.469368 0.099648 1.580653 -0.581773 0.022931 -0.898376 -0.560641 -1.195177 -1.716721 0.537115 -0.024376 0.463549 0.143241 -0.018393 1.557079 -0.352157 -1.264392 -1.807432 -0.009244 -0.731237 -0.945925 2.133199 -0.917489 0.629483 0.546270 2.028014 -0.507459 -1.565332 0.796003 -0.668869 0.144333 -0.484959 -0.503924 -0.138545 1.031816 -1.580386 -0.726374 0.084341 -0.080853 -0.771655 0.011757 2.748914 0.077544 0.668446 0.889823 1.713481 2.386497 0.714294 0.156636 -1.518954 0.459737 0.942654 -1.481341 -0.588556 0.517246 -0.802709 0.092386 0.230438 -0.120380 0.105883 -1.445975 -1.173948 -1.307336 0.043910 1.860093 1.043568 -1.975533 0.557770 -0.046995 0.351698 1.347398 0.499593 1.634177 1.477736 1.763487 -0.110999 0.437521 0.239573 0.872818 0.015549 0.935311 0.902954 0.383423 1.407735 0.638699 0.123344 0.510098 1.296177 0.449020 1.027092 0.758114 2.471336 0.454036 0.026270 -0.705237 -0.419836 1.189038 3.133228 -1.859445 1.401204 0.646416 0.977273 0.201497 -2.150390 0.126396 -0.674430 -0.508437 0.093374 -0.578766 0.146739 -0.547058 1.292172 0.086514 -1.544827 0.725817 0.155687 0.275490 0.883382 -0.033259 -0.415365 0.151872 -2.114320 1.675406 1.115510 0.649289 -0.568385 -0.004923 -0.254729 0.569970 0.169254 1.018002 0.705848 1.054282 1.129435 1.419869 1.367323 -0.322521 -0.833856 -1.397238 0.481184 -1.452658 -0.499096 -0.190555 0.586807 -0.651641 0.447676 -0.186807 -2.715347 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.211818 -0.460184 0.373544 -1.145839 -1.729730 0.790484 -1.709843 -0.862491 0.236055 -0.655997 0.775102 -1.064384 -0.449978 1.931086 -0.335302 -1.733881 -0.326340 0.494958 0.208836 0.187825 0.067970 0.522849 -0.437549 0.478076 -0.371921 -0.207224 -0.259930 0.424357 2.029094 -0.055469 -1.559312 -0.256144 -0.563628 1.611634 0.623255 -0.002045 0.955538 2.817581 0.363422 1.621094 -0.958472 -0.828019 0.250146 0.250185 -0.457805 -0.308787 -1.546612 0.589805 -2.539248 0.353014 1.704682 -0.267951 -0.055889 0.559731 1.111756 0.688062 -2.322384 1.622476 0.213825 0.784741 0.692703 -0.577381 -0.432678 0.496896 -0.568673 -0.607052 0.592541 1.366698 -0.790191 -0.308626 -0.283876 -1.867385 2.938485 0.804058 -1.528175 -0.023175 1.328548 -1.265115 1.067297 -1.005928 -2.239065 0.303313 -0.241659 -0.642772 2.303213 -0.004572 0.880567 -2.276344 0.913270 -2.692186 0.785878 -1.712756 0.775579 2.096416 -2.473790 -0.136989 0.928446 1.275025 1.621783 0.463545 1.595402 0.770935 -0.699457 0.208916 1.036394 0.263541 -0.188630 -0.122948 -0.654073 -1.755666 -0.707889 -0.694619 -3.422720 0.173021 -0.242882 1.734438 -0.444731 0.759835 -0.362560 0.150028 -1.670019 -0.850047 -0.302914 -0.258736 1.281697 1.722853 -0.893558 0.830695 -0.716769 2.089444 -0.824821 0.067094 -0.596673 0.356793 -0.530107 -0.741748 -3.023400 0.772195 1.255093 -0.775589 -1.897281 -1.510646 -0.458072 0.315252 -0.264444 2.415034 2.855544 -0.938675 -1.071501 2.118527 -0.328646 0.822733 2.660852 0.022088 1.955598 -0.704669 0.030695 -0.991100 -0.669500 -1.351328 -1.577198 0.629350 -0.058834 0.465218 0.107714 -0.480880 1.832036 -0.315516 -1.394559 -1.769423 0.046360 -0.820789 -1.137080 2.443251 -0.908741 0.737696 0.578684 2.278369 -0.559173 -1.736976 0.961609 -0.640507 0.221383 -0.676580 -0.652031 0.015902 1.205494 -1.658344 -0.745938 0.007458 -0.132038 -0.928886 0.011012 2.704325 0.130250 0.721239 1.028646 1.745220 2.694828 0.764215 0.279492 -1.767092 0.549716 1.046735 -1.606073 -0.882687 0.562247 -0.997420 0.104958 0.234548 -0.209634 0.145918 -1.588979 -1.376363 -1.311440 -0.066338 1.971324 1.100257 -2.248867 0.621214 -0.193170 0.540698 1.439397 0.621055 1.844887 1.714227 2.014175 -0.119608 0.470627 0.269269 0.822278 0.041548 0.967082 0.880270 0.497718 1.617213 0.718206 0.129816 0.645860 1.376915 0.414738 1.202517 0.853709 2.766853 0.565368 0.000572 -0.769036 -0.494589 1.342930 3.568457 -1.874792 1.402055 0.717565 1.076853 0.109496 -2.317205 0.121218 -0.776750 -0.612537 0.213465 -0.622483 0.101363 -0.555132 1.476163 0.047734 -1.804373 0.762282 0.127024 0.355969 1.027224 -0.029612 -0.365973 0.191427 -2.333096 1.912356 1.281390 0.779982 -0.640382 -0.204781 -0.270381 0.642361 0.255855 1.151352 0.342156 1.188631 1.287086 1.613318 1.428167 -0.144967 -1.014844 -1.495451 0.594592 -1.502121 -0.571530 -0.258573 0.723402 -0.871365 0.488052 -0.330975 -2.903392 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::empty() const = 0.121547 0.002054 0.125912 -0.259381 -0.286011 0.119426 -0.170803 -0.170407 0.026335 -0.125809 0.168214 -0.199785 -0.189749 0.422125 -0.106454 -0.367392 -0.051589 -0.075140 -0.068765 0.034967 0.012275 0.104064 -0.056594 -0.006884 -0.008073 -0.014282 -0.038762 0.096687 0.260518 -0.186563 -0.301508 -0.038174 0.005522 0.375721 0.066150 0.079788 0.111419 0.543517 0.086613 0.377018 -0.369802 -0.268875 0.179109 0.017307 -0.065011 -0.316612 -0.269468 0.188831 -0.360924 -0.034040 0.246449 -0.039241 -0.113057 -0.044833 0.147931 0.282127 -0.584390 0.394657 0.066769 0.092091 0.038434 -0.081921 -0.022546 0.009560 0.010977 -0.199357 0.088348 0.232545 -0.283364 0.043692 -0.089047 -0.401360 0.711573 0.136954 -0.244218 0.059458 0.172501 -0.218681 0.251286 -0.351972 -0.355959 -0.003295 0.067662 0.060817 0.402776 0.064817 0.105528 -0.528995 0.090474 -0.536968 0.232893 -0.375627 0.202729 0.357719 -0.397198 0.066189 0.163244 0.064625 0.269888 0.190087 0.364094 0.125772 0.013389 0.003070 0.220081 0.029308 -0.081782 -0.111734 -0.146140 -0.397422 -0.088295 -0.041002 -0.720700 0.046774 -0.095639 0.349069 -0.026729 0.128884 0.044868 -0.003850 -0.457566 -0.160627 0.044709 -0.051708 0.287233 0.388231 -0.132498 0.120298 -0.173040 0.402327 -0.105652 0.053124 -0.086124 0.098860 -0.028355 -0.404695 -0.520222 0.092543 0.202109 -0.200373 -0.392600 -0.367034 -0.058012 0.132533 -0.125727 0.402245 0.628003 -0.171615 -0.299987 0.399047 0.146013 0.166954 0.485938 0.032293 0.536998 -0.254360 0.057758 -0.068332 -0.071098 -0.104092 -0.306613 0.045252 -0.118920 0.113325 0.045344 -0.369271 0.418130 -0.092180 -0.183524 -0.057588 -0.033207 -0.186785 -0.263653 0.439579 0.070077 0.334766 0.074673 0.528123 -0.225934 -0.373237 0.179733 -0.116885 0.012917 -0.140322 -0.129963 -0.004263 0.262648 -0.401157 -0.167414 -0.002252 -0.106056 -0.156483 0.138741 0.338655 0.034353 0.063512 0.114553 0.270013 0.453738 0.022477 0.108493 -0.420082 0.102256 0.202085 -0.159899 -0.352038 0.098413 -0.233849 0.009259 0.149162 -0.064494 0.059793 -0.175549 -0.237003 -0.103005 -0.115129 0.283036 0.077959 -0.181022 0.013659 -0.076215 0.111748 0.189211 0.266764 0.434270 0.322455 0.276356 -0.019933 0.097392 -0.030818 0.093584 -0.035623 0.077163 0.222616 0.147721 0.234335 0.126919 0.030923 0.258847 0.237766 0.030728 0.325038 0.218927 0.560332 -0.030029 -0.023321 -0.085219 -0.142083 0.313083 0.671795 -0.435037 0.170553 0.172024 0.210587 0.013052 -0.379657 -0.043435 -0.144873 -0.263813 0.259376 -0.012680 0.015330 -0.104835 0.412722 0.015327 -0.447166 0.231248 0.024777 0.086360 0.167793 -0.053852 -0.030003 0.154263 -0.356230 0.179030 0.211817 0.274080 -0.243847 -0.151812 -0.052704 0.208998 0.007966 0.189873 -0.117669 0.157207 0.286861 0.400234 0.205890 -0.010522 -0.230997 -0.256816 0.067288 -0.169984 -0.100746 -0.006221 0.160763 -0.173954 -0.041161 -0.172798 -0.379201 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::~priority_queue() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/Nearly_sorted_Algo.cpp__printArray(int*, int) = 0.516486 0.479720 0.639234 -0.906266 -0.744708 0.279102 0.182296 -0.683773 0.036282 1.578847 0.549767 -0.592942 -1.142823 1.208424 -0.450022 -1.088647 0.209673 -0.427173 -0.067794 -0.496614 -0.087497 0.552955 -0.122745 -0.395109 0.427112 -0.301954 -0.075778 0.689983 0.496555 -0.230103 -0.640532 -0.132398 0.125802 1.587558 -0.028338 0.046821 -0.006478 1.804453 -1.182616 1.277048 -1.950654 -1.694614 1.421750 0.219336 -0.001150 -1.314410 -0.257201 0.712150 -0.870338 -0.602826 0.458725 -0.339095 0.119801 -0.690425 0.247885 1.403607 -2.387197 0.984043 0.173774 -0.478269 -0.730047 -0.195119 0.596292 0.206845 -0.302811 -1.014530 0.250203 0.333835 -0.967898 0.298995 -0.692330 -1.503753 1.206924 0.369466 -0.752613 0.361249 0.104243 -1.080190 0.901141 -1.221731 -0.944880 -0.379525 0.565311 -0.173923 0.814684 0.637147 0.851270 -2.232219 0.104003 -1.784428 1.190019 -1.018644 1.263447 1.298884 -0.821206 0.569060 0.541808 0.272006 0.769636 -0.102698 1.512816 0.460784 0.916035 0.047810 0.612136 0.911519 -1.119908 -0.868625 -0.913855 -1.251962 0.090254 -0.270507 -1.812117 0.061035 -0.956158 0.287393 0.630578 -0.505536 -0.181808 1.068495 -2.312306 -0.754928 0.348684 -0.227270 1.141456 1.301699 -0.023598 0.294597 -0.070850 1.470330 -0.391406 0.154935 -0.339642 0.666892 -0.399435 -1.324271 -1.120706 0.169667 0.472729 -1.187687 -1.457951 -1.970933 -0.270836 0.486755 -0.421874 1.289443 2.536114 -0.608346 -1.447917 1.239836 -0.300085 0.155283 1.566028 0.169736 2.138722 -1.526885 0.571871 -0.393847 0.253679 0.434166 1.297281 -0.086039 -0.724567 0.525808 0.147555 -0.711851 0.422605 -0.251445 -0.248754 -0.662869 0.178720 -0.623272 -0.507843 1.367356 -0.892926 1.459374 -0.518652 1.980075 -1.291427 -1.474069 0.685537 -1.514635 -0.418352 -0.826000 -0.668007 0.073640 1.059042 -1.434455 -0.665893 -0.761359 -0.327494 -0.325761 0.937730 -0.680052 0.157074 -0.128850 -0.129133 1.496411 1.087059 -0.114649 0.199448 -1.469664 0.251866 0.884491 -0.135415 -2.021377 0.106945 -1.119292 -0.122995 0.752196 -0.302906 0.786099 -0.537621 -0.661046 0.160041 -0.579718 0.436538 -0.379316 -1.178855 0.410953 -0.514517 0.286584 0.533696 1.533073 1.381019 1.130329 0.418303 -0.088691 0.394610 -0.761877 -0.276091 0.384282 0.297607 0.467857 0.728189 1.001585 0.426310 0.360653 1.105405 0.568217 -0.133851 1.444178 0.332944 1.804529 -0.657590 0.135091 0.068592 -0.630892 0.876370 1.951731 -0.870357 -0.259375 0.752228 0.320034 -0.267278 -0.874908 -0.155961 -0.733665 -0.644791 1.036864 0.629062 -0.342186 -0.553134 2.029769 0.191558 -2.224900 1.367360 -0.018076 0.393285 0.676700 -0.492255 0.002781 0.782591 -0.836968 0.626615 0.782408 1.232593 -1.298745 -0.294914 -0.153979 1.195737 0.713558 0.187754 -2.358635 0.159906 0.741326 1.636348 0.738299 1.413134 -0.848987 -0.383848 -0.103641 -0.568967 -0.332694 -0.223519 0.772746 -0.519774 0.130733 -1.484619 -0.184393 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.519485 0.218073 0.342301 -0.770546 -0.868154 0.296660 -0.669116 -0.529165 0.146904 -0.055367 0.512554 -0.791642 -0.389569 1.200081 -0.564419 -0.901122 -0.090816 -0.371340 -0.107577 -0.161228 0.037857 0.256625 -0.152159 -0.112984 -0.052484 -0.076685 -0.063765 0.309897 1.115550 -0.390557 -1.003927 0.019663 0.080654 1.149873 0.242084 -0.384686 0.509082 1.552355 0.051520 0.529266 -0.993626 -0.610052 0.588074 0.163565 -0.284408 -0.898865 -0.854014 0.470360 -1.256043 0.308671 0.677280 -0.229031 -0.218799 -0.121519 0.298970 0.982094 -1.874892 1.415357 0.154661 0.537783 0.128763 -0.355232 0.196519 0.127815 0.135917 -0.598044 0.441884 0.707037 -0.869003 0.157983 -0.446758 -1.158425 1.736947 0.321866 -0.735464 0.067684 0.323573 -0.991609 0.651695 -1.128734 -0.945802 0.088438 0.305997 0.069515 1.223950 0.022654 0.193001 -1.532519 0.093825 -1.567296 0.479266 -1.168998 0.680795 1.080006 -1.440004 0.059769 0.208821 0.215651 0.918534 0.460866 1.117398 0.408730 0.173876 -0.205159 0.511844 0.323240 -0.076077 -0.119115 -0.204182 -0.999169 -0.585290 0.024616 -2.200637 0.150679 -0.605984 0.653974 -0.072384 0.086886 -0.140055 0.323911 -1.087350 -0.966711 -0.102037 -0.152256 0.878253 1.225237 -0.362578 0.470691 -0.473981 1.242599 -0.010304 -0.002202 -0.354650 0.191497 -0.325318 -1.558143 -1.827752 0.285523 0.694105 -0.622712 -1.343018 -1.069168 -0.226634 -0.246169 -0.267181 1.262910 1.682559 -0.249520 -0.964738 1.183713 0.167608 0.490362 1.878686 -0.052018 1.722752 -0.912147 0.458309 -0.178409 -0.004672 -0.513034 -1.003096 -0.099078 -0.226547 0.095285 0.165213 -0.611373 0.705833 -0.035209 -0.417802 -0.382725 -0.081057 -0.478319 -0.874184 1.473950 0.105573 0.892349 0.226612 1.621207 -0.753388 -1.413017 0.667470 -0.201786 0.194442 -0.160026 -0.375693 0.031254 0.914625 -0.978162 -0.576944 0.075234 0.014260 -0.412295 0.458742 1.331513 0.088572 0.088303 0.303329 0.703789 1.322962 -0.130292 0.656500 -1.218841 0.226752 0.956623 -0.459456 -1.280233 0.343461 -0.730644 0.022409 0.361137 -0.184852 0.220075 -0.680184 -0.915097 -0.269901 -0.187101 1.044621 0.203790 -0.861703 0.421345 -0.704813 0.115689 0.494656 0.835597 1.179249 0.769532 0.716864 -0.349944 0.344173 -0.341069 0.555932 -0.027688 0.444114 0.426260 0.374570 0.975105 0.221339 0.043572 0.515619 0.686192 -0.258051 0.857733 0.634874 1.542305 -0.295144 0.128861 -0.431056 -0.644766 0.911003 2.219381 -1.054970 0.083599 0.449365 0.698689 0.194060 -1.508016 -0.291724 -0.436734 -0.583756 0.400044 -0.188443 -0.173544 -0.245235 1.268380 0.166778 -1.233955 0.839019 0.086624 0.082062 0.306118 -0.333762 -0.330992 0.474142 -1.180648 0.580415 0.572721 0.737248 -0.466862 -0.508748 -0.180382 0.799749 -0.241731 0.384212 -0.500447 0.677172 1.021222 1.182196 0.963451 0.160809 -0.596121 -0.879948 0.093109 -0.416630 -0.310968 -0.050253 0.610597 -0.981459 0.195437 -0.192528 -1.135788 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl() = 0.249819 0.298619 0.294154 -0.356038 -0.583395 0.037385 -0.117457 -0.165318 -0.047621 0.094256 0.164024 -0.216039 -0.211609 0.444121 -0.259966 -0.400033 -0.290507 -0.610117 -0.244959 -0.282482 -0.041857 0.236561 -0.057095 0.111477 0.059932 -0.062172 -0.133647 0.128858 0.217562 -0.520125 -0.126020 -0.038191 0.064350 0.463503 -0.032305 -0.209254 0.168962 0.830200 0.106188 -0.157493 -0.405584 -0.544865 0.294758 -0.053516 -0.092408 -0.390774 -0.203983 0.350447 -0.183986 0.161348 0.246608 0.153877 -0.312590 -0.118469 0.109717 0.239133 -0.920001 0.687226 0.099608 0.010976 -0.189758 -0.071018 0.052217 -0.049143 0.226723 -0.289620 0.216914 0.273698 -0.342544 0.102283 0.088495 -0.392911 0.710498 0.097393 -0.040522 0.211739 0.242095 -0.202986 0.466505 -0.544009 -0.460656 -0.013188 0.203717 -0.138738 0.507270 -0.024413 -0.026198 -0.685249 0.215744 -0.616117 0.144904 -0.442003 0.139581 0.424258 -0.410030 0.240800 0.184974 0.017598 0.384656 0.056605 0.574224 0.025326 0.321828 0.345674 0.098124 0.077686 -0.116136 0.011682 -0.363000 -0.632335 -0.041089 0.021573 -0.724235 0.217826 0.058166 -0.027546 0.071632 0.002454 0.092670 0.268853 -0.628024 -0.331627 0.190657 -0.061612 0.134934 0.431967 -0.217483 0.085546 -0.280778 0.528343 -0.173325 0.243610 0.062510 0.127904 0.129342 -0.600107 -0.775819 0.096408 0.158010 -0.267684 -0.405299 -0.335205 0.005329 -0.084798 -0.258574 0.654286 0.962237 -0.279880 -0.543047 0.670379 0.366217 0.143164 0.564579 0.030794 0.686110 -0.159452 -0.223807 -0.092005 -0.216238 0.039703 -0.601421 0.173743 0.006070 0.161900 0.270745 -0.062879 0.408786 -0.194897 -0.299189 0.237738 0.155616 -0.295928 -0.417998 0.412776 0.721101 0.577607 0.413241 0.702743 -0.218514 -0.523570 0.219060 -0.066501 0.113831 -0.178351 -0.126264 -0.045823 0.242489 -0.266824 -0.174999 -0.109157 -0.241122 -0.353955 0.080493 0.488972 0.355556 0.124536 0.265796 0.052384 0.758218 0.011374 0.153047 -0.718771 0.139742 0.306351 0.042268 -0.482810 0.064576 -0.168257 0.006849 0.384438 -0.141708 0.156520 -0.017503 -0.187707 -0.043416 -0.096466 0.210670 0.095786 -0.245836 0.025273 -0.330460 0.299609 0.068992 0.323512 0.712999 0.401193 0.409909 0.098889 0.119706 -0.018052 0.340616 -0.199753 0.025993 0.369407 0.299135 0.403690 0.312041 0.168642 0.478003 0.389764 -0.205025 0.510814 0.015899 0.985695 -0.463248 -0.023811 -0.324629 0.100911 0.432582 0.912547 -0.308989 0.005983 0.270244 0.368087 0.017400 -0.599812 -0.059453 -0.224724 0.061759 0.138508 0.158490 -0.195632 0.050835 0.472382 -0.016205 -0.579027 0.406818 0.057452 0.168730 -0.002738 0.011593 -0.160421 0.350225 -0.575155 0.089079 0.399963 0.316744 -0.447981 -0.129869 0.013157 0.593012 -0.553684 0.464103 -0.449160 0.282986 0.385267 0.284167 0.086354 0.082463 -0.390398 -0.622084 0.342202 -0.072757 -0.215252 0.457082 0.246136 -0.568927 0.216354 -0.071609 -0.465394 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data() = -0.208199 -0.185752 0.416226 -0.425930 -0.491150 0.052011 0.008234 -0.015955 0.177180 -0.681821 0.342513 -0.400747 -0.454146 0.617447 0.112950 -0.709018 -0.008502 0.227582 -0.186792 0.076510 0.073357 0.094436 -0.040227 0.131901 0.051716 -0.097754 -0.040924 0.619317 0.683261 -0.127779 -0.361011 -0.004551 -0.024313 0.609834 -0.082950 0.241713 0.328503 1.090465 -0.148334 0.827091 -0.187580 -0.216634 0.414192 0.040225 -0.448212 -0.424870 -0.790014 0.294963 -1.119603 -0.135883 0.655345 0.184338 -0.017143 -0.094242 0.476050 0.627873 -0.988777 0.309563 0.076653 0.119594 0.134584 -0.115507 -0.408766 -0.010335 -0.244028 -0.252482 0.174705 0.067519 -0.292021 0.013462 0.033273 -0.684958 1.493537 0.196354 -0.343254 0.314068 0.718941 -0.455074 0.528898 0.067283 -0.620592 -0.026703 -0.004742 -0.189185 0.983027 -0.251024 0.126600 -0.831665 -0.144007 -0.812295 0.467034 -0.933497 0.199815 0.737148 -0.872164 0.325238 0.248585 0.100481 0.079820 0.162684 0.602202 0.232553 0.123138 0.079531 0.583740 -0.071086 -0.292471 -0.448134 -0.621299 -0.697406 -0.065819 -0.461859 -1.405133 0.007563 -0.010755 0.416285 0.104661 0.199581 0.038412 0.173436 -0.197389 0.610412 0.267973 -0.129906 0.184704 0.870838 -0.353498 0.040896 -0.230306 0.783695 -0.249863 0.305324 -0.185654 0.126131 0.157355 -0.421468 -0.624195 0.048975 0.258365 -0.121905 -0.649007 -0.438295 -0.113551 0.322855 -0.078773 0.400725 1.175720 -0.190482 -0.421999 0.707374 0.472335 0.599064 0.496631 0.141990 0.826470 -0.317544 -0.052071 -0.549124 -0.231335 -0.123547 -0.167816 0.274975 -0.184812 0.344687 0.066584 -0.777978 1.370900 -0.351609 -0.257015 0.066355 0.017052 -0.420488 -0.700087 1.129562 0.307731 0.649377 0.170514 0.905143 -0.201869 -0.712249 0.296705 0.195952 0.153751 -0.723076 -0.328228 0.178527 0.285462 -0.501155 -0.377536 -0.373937 -0.097239 -0.150131 0.043379 0.623249 0.045355 0.002643 0.391831 0.110572 0.844274 0.166555 0.053972 -0.962806 0.177370 0.185603 -0.420216 -0.429411 0.416390 -0.150844 0.003409 0.022942 -0.044589 0.002454 -0.431754 -0.480033 -0.256722 -0.233166 0.204116 0.123870 -1.243568 -0.011482 0.202598 0.156030 0.561157 0.240097 1.190248 0.405518 0.569131 0.146187 0.161054 0.225135 -0.279657 -0.044477 -0.043143 0.571820 0.165459 0.496517 0.258003 -0.100267 0.355067 0.525325 0.183746 0.437165 0.743867 1.007876 0.676315 -0.307031 -0.022998 -0.158497 0.505574 1.098055 -0.293057 0.499879 0.426850 0.767012 -0.031388 -1.043768 -0.183036 -0.295095 -0.291740 0.777432 -0.396973 -0.264140 0.039181 0.584148 -0.006364 -0.825435 0.008501 0.024111 0.166860 0.279950 -0.008532 -0.041893 0.326916 -0.774207 0.629455 0.122919 0.304811 -0.387135 -0.080400 -0.058112 0.086846 0.192288 0.382767 -0.405355 0.069844 0.169723 0.664907 0.416176 0.223886 -0.285913 -0.319893 0.105062 -0.525375 -0.243865 -0.132804 0.126199 -0.440833 -0.003021 -0.646848 -0.933099 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*, std::allocator&) = 0.130840 0.304566 0.176918 -0.554257 -0.770606 -0.067822 0.161080 -0.113038 -0.010394 -0.058515 0.409677 -0.589924 -0.404093 0.924583 -0.108847 -0.491040 -0.108927 -0.545088 -0.293764 0.177599 0.018607 0.404675 -0.064748 0.132946 0.083633 0.248714 -0.319678 0.297312 0.606195 -0.564715 -0.512470 0.012535 0.152362 0.568685 -0.068937 -0.300682 0.239914 1.074764 -0.469232 0.516500 -0.522479 -0.238371 0.403919 0.012160 -0.246460 -0.940369 -0.682183 0.516124 -0.379469 -0.224346 0.572580 0.215375 -0.291410 -0.121472 0.375810 0.690302 -1.188226 0.822312 0.317811 0.363832 0.201168 -0.095902 -0.114907 -0.031769 -0.067228 -0.401469 0.060717 -0.072040 -0.363771 -0.055396 -0.125778 -0.662865 1.077748 0.169602 -0.388078 0.241564 0.255241 -0.673775 0.629143 -0.816379 -0.583731 0.150824 0.111757 0.121765 0.757243 -0.156996 -0.084292 -0.903910 -0.098473 -0.850903 0.251461 -0.897464 0.141826 0.784879 -0.615305 0.114452 0.049201 -0.208877 0.676587 0.350927 0.666192 0.265186 0.448268 0.078868 0.229969 0.328356 -0.278718 -0.178978 -0.439795 -0.804571 -0.066547 0.109970 -1.192207 0.238436 0.058456 0.117581 0.245078 -0.057153 0.123113 0.284935 -0.317233 -0.144926 0.217773 -0.088817 0.239583 1.081521 -0.314805 0.057746 -0.565024 0.702778 0.019742 0.572365 -0.024651 0.154173 -0.208416 -1.071804 -0.720685 0.095896 0.181057 -0.303817 -0.569952 -0.818113 0.200409 -0.283286 -0.364765 0.355441 1.163190 -0.349783 -0.547323 0.926106 0.685873 0.300452 0.543528 -0.167126 1.126840 -0.331229 -0.062327 -0.068078 -0.310654 -0.281072 -0.011593 0.228067 -0.262078 -0.031630 0.000000 -1.247779 0.679121 0.079230 -0.340647 0.263562 0.043092 -0.357594 -0.709826 0.925376 0.387564 0.591624 0.171094 0.851105 -0.149250 -0.624949 0.528486 0.222894 0.233012 -0.562322 -0.453047 0.370469 0.332875 -0.407970 -0.137298 -0.162507 -0.082161 -0.551509 0.089738 0.104484 0.143815 0.091619 0.437574 0.042356 0.842168 -0.067783 0.403524 -0.928131 0.258238 0.249101 -0.256424 -0.938574 0.261864 -0.405708 -0.019623 0.355713 -0.274773 0.028500 -0.189125 -0.538985 0.111083 -0.319584 0.332692 0.093424 -0.479348 0.048356 -0.365194 0.402074 0.295254 0.452924 0.776245 0.556833 0.551338 0.113738 0.098390 0.136060 -0.043798 -0.066262 -0.110627 0.170122 0.403898 0.425219 0.350911 0.020215 0.508998 0.299458 -0.270583 0.619419 0.443705 1.033650 0.180975 -0.242628 -0.097193 -0.214090 0.543794 1.213996 -0.385872 -0.022223 0.343463 0.383694 -0.120472 -0.569097 -0.120149 -0.318820 -0.469998 0.572251 -0.239368 -0.184608 0.093898 0.639220 -0.212829 -0.823259 0.277712 -0.005672 0.285477 0.143122 0.097730 0.042644 0.366062 -0.767201 0.392413 0.443948 0.479995 -0.289535 -0.531793 -0.053683 0.330101 0.025234 0.481784 -0.891661 0.175642 0.512890 0.619727 0.207282 0.269221 -0.384010 -0.503451 0.291786 -0.027597 -0.233153 -0.150089 0.299148 -0.590148 -0.014470 -0.342678 -0.560197 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::~_Vector_base() = 0.964314 -1.081553 0.886112 -0.910511 -1.354691 0.870578 -1.572942 -0.617725 0.532290 0.173433 0.606867 -0.851159 -0.655842 1.552903 -0.072983 -1.714841 0.546420 0.069424 0.706869 -0.644546 0.271583 0.374054 0.122625 0.196669 -0.206095 -0.626453 -0.471111 0.679684 1.911455 -0.148185 -1.264152 -0.160536 -0.607026 1.699783 0.276371 -0.195597 0.495828 3.063081 0.552791 1.542976 -1.453071 -1.195991 0.908836 0.159983 -0.226046 0.048454 -1.180588 0.823654 -1.817112 -0.333142 1.273127 -0.237930 0.352112 0.022782 0.193137 1.013645 -2.567413 0.942449 -0.371346 0.072581 0.063016 -0.162722 -0.092612 1.039021 -0.750774 -0.979660 1.200037 1.245931 -1.330491 -0.013088 -0.373969 -1.831976 2.282608 0.773387 -1.124053 -0.056139 1.701481 -0.883666 1.375673 -0.352915 -2.232191 -0.122754 -0.723914 -1.497516 2.096796 -0.240519 1.610454 -2.842693 1.610262 -2.998210 1.528885 -1.738657 1.228049 1.926466 -2.346009 0.378870 1.127012 2.066227 1.591370 -0.170092 2.312570 1.030094 -0.327692 0.348596 1.628327 0.092332 -0.209254 -0.072897 -0.901337 -1.661210 -0.338687 -1.235252 -3.007895 0.398564 -0.628546 1.145047 0.094989 0.742218 -0.433803 0.798138 -2.405181 -0.732397 0.087622 -0.312978 1.131191 1.515071 -1.265896 0.593474 -0.406265 2.685728 -1.098188 -0.116010 -0.005004 0.584523 -0.373728 -0.424717 -2.539839 0.858954 1.372552 -1.397753 -2.256049 -1.879907 -0.295766 0.553042 -0.461795 3.297311 3.442604 -0.654849 -1.008544 1.757179 -0.577025 0.343874 2.853764 0.010406 2.591023 -1.332651 -0.012120 -1.171986 -0.156126 -0.466985 -1.070791 0.618631 0.291099 0.827079 0.448389 0.158650 2.270955 -0.845560 -1.023072 -1.240896 0.096496 -0.419607 -1.219542 2.067887 -0.610466 0.886055 0.788226 2.541309 -0.313856 -1.978067 1.193842 -0.925230 -0.285332 -0.260880 -0.354683 -0.487779 1.264989 -1.694526 -0.990742 -0.779597 -0.860622 -0.417899 0.367712 2.873695 0.787411 0.880107 0.755903 2.046498 2.373061 1.063930 0.092738 -2.403732 0.328254 1.544530 -1.255207 -0.409152 0.164916 -1.304027 0.395114 0.143741 -0.137497 0.845717 -1.889107 -1.577380 -1.412859 0.341512 1.420395 0.773271 -3.035022 0.495016 0.539226 0.619520 1.255176 1.399587 2.021413 1.497825 1.660014 -0.349427 0.511280 0.164625 0.195824 -0.042505 0.611870 1.229712 0.314566 1.346374 0.553573 0.349056 1.430233 1.219503 0.619998 1.427071 0.626050 2.731690 -0.169178 0.158050 -0.713906 -0.850252 1.629231 3.758063 -1.191117 1.057275 0.972477 1.025205 -0.280411 -2.518572 0.125641 -0.893000 0.262216 0.028019 -0.182362 0.266800 -0.985703 1.543588 0.664608 -2.850585 1.573797 0.009752 0.227101 2.030871 -0.291795 0.019909 -0.004670 -2.313160 1.521361 1.376707 0.817712 -1.172445 0.180497 -0.233375 1.122548 -0.213998 1.067186 -0.551857 1.401189 1.187191 1.657981 1.519723 0.040639 -1.531768 -1.554845 0.403155 -2.074243 -0.743403 0.446471 0.745945 -1.385951 0.561198 -1.018353 -1.815655 +PE-benchmarks/Nearly_sorted_Algo.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy(int*, int*) = 0.143433 0.249664 0.198329 -0.422935 -0.622517 -0.045607 0.095298 -0.115631 -0.011887 0.033784 0.273125 -0.432351 -0.288321 0.758332 -0.163119 -0.383646 -0.138475 -0.429643 -0.229281 0.071967 0.022437 0.338623 -0.048055 0.107994 0.063051 0.140482 -0.209997 0.197072 0.361603 -0.426498 -0.347339 -0.022943 0.133254 0.459987 -0.055527 -0.170252 0.143727 0.852539 -0.299605 0.445149 -0.500069 -0.309944 0.303960 0.003673 -0.102095 -0.768525 -0.510458 0.396929 -0.227432 -0.147043 0.395363 0.176359 -0.271648 -0.106173 0.294712 0.459894 -0.941618 0.656136 0.214647 0.194444 0.100238 -0.073029 -0.086335 -0.022335 -0.050995 -0.315361 0.036411 0.056530 -0.317035 0.033351 -0.049559 -0.503807 0.828349 0.123678 -0.305443 0.196798 0.237333 -0.470155 0.506649 -0.722968 -0.465867 0.084126 0.111543 0.095600 0.550393 -0.040432 -0.009628 -0.736652 0.014586 -0.673641 0.234255 -0.684893 0.115743 0.598065 -0.444688 0.137970 0.089465 -0.098067 0.569074 0.300522 0.524874 0.257753 0.364390 0.109935 0.186506 0.261504 -0.214629 -0.157718 -0.359462 -0.653282 -0.040674 0.067190 -0.932346 0.163038 0.094175 0.134653 0.154491 -0.018938 0.124203 0.228144 -0.446331 -0.158520 0.213665 -0.067068 0.172718 0.746434 -0.246459 0.062358 -0.438056 0.558551 -0.039466 0.411103 0.017473 0.128993 -0.206469 -0.817918 -0.609348 0.079677 0.116053 -0.242738 -0.445676 -0.664787 0.111825 -0.093652 -0.286763 0.335782 0.945378 -0.281184 -0.468561 0.715343 0.539858 0.165684 0.442105 -0.082457 0.853184 -0.241789 -0.087015 -0.063846 -0.238301 -0.156835 -0.016227 0.194283 -0.213421 0.034552 0.029391 -0.980889 0.528653 -0.022980 -0.277744 0.122251 0.043314 -0.296224 -0.461570 0.684079 0.247252 0.515480 0.060173 0.681394 -0.157977 -0.490510 0.353442 -0.032136 0.165965 -0.404075 -0.267842 0.221703 0.308256 -0.397477 -0.128450 -0.094793 -0.172599 -0.410412 0.083688 -0.005426 0.126825 0.081692 0.335693 0.160441 0.661306 -0.029743 0.284963 -0.717513 0.197659 0.192492 -0.139473 -0.776942 0.193245 -0.309518 -0.016012 0.235432 -0.196444 0.013914 -0.125739 -0.370091 0.047864 -0.299809 0.233674 0.056060 -0.258333 0.011203 -0.296209 0.389727 0.183991 0.350936 0.656680 0.445940 0.438450 0.103017 0.081540 0.022606 0.039127 0.000434 -0.009983 0.079774 0.304998 0.377646 0.283861 0.026669 0.440086 0.279864 -0.195467 0.503222 0.276867 0.845545 -0.006192 -0.147239 -0.113150 -0.103252 0.432920 0.972846 -0.307931 0.011787 0.274212 0.270169 -0.084187 -0.386534 -0.095884 -0.241870 -0.358232 0.447405 -0.086246 -0.159765 0.081093 0.504723 -0.131606 -0.646784 0.246658 0.004808 0.213481 0.112682 0.059212 0.011409 0.320503 -0.555083 0.265200 0.352791 0.374708 -0.297625 -0.456639 -0.045475 0.295685 0.065162 0.408232 -0.702344 0.162529 0.437450 0.487196 0.082613 0.214596 -0.336377 -0.434961 0.251858 -0.031948 -0.224746 -0.022880 0.229958 -0.425341 -0.001576 -0.248382 -0.479202 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::_Destroy_aux::__destroy(int*, int*) = 0.040960 0.098797 0.002657 -0.308366 -0.263902 -0.064282 0.276041 0.040273 -0.030156 -0.288176 0.238729 -0.265126 -0.337821 0.406601 0.130530 -0.290449 0.063373 -0.400473 -0.218647 0.304080 -0.036737 0.168289 -0.026223 0.036103 0.114582 0.261338 -0.248358 0.205796 0.352757 -0.472909 -0.338821 0.046305 0.066494 0.282645 -0.076961 -0.130993 0.158785 0.567943 -0.227442 0.316294 -0.136234 0.043435 0.257854 -0.054580 -0.275425 -0.492748 -0.310954 0.326497 -0.219622 -0.262052 0.352464 0.138767 -0.199785 -0.127846 0.176730 0.531354 -0.632966 0.393407 0.242560 0.357720 0.163130 -0.063365 -0.108648 -0.157736 0.033095 -0.228382 0.019576 -0.294554 -0.230141 -0.094761 -0.147217 -0.321743 0.690996 0.148853 -0.135880 0.177162 0.070000 -0.340733 0.305861 -0.341963 -0.256538 0.083247 0.028203 0.161837 0.501341 -0.197814 -0.212430 -0.432827 -0.181840 -0.410936 0.079957 -0.540815 0.060558 0.441542 -0.273749 0.076181 -0.046263 -0.293089 0.144631 0.183541 0.357303 0.016076 0.196707 -0.014171 0.134735 0.047487 -0.180548 -0.120139 -0.207074 -0.363694 -0.005872 0.122587 -0.575151 0.169986 -0.016204 0.092033 0.224778 0.046828 0.075674 -0.036992 0.066492 0.081830 0.103844 -0.061473 0.172965 0.708838 -0.159744 -0.073115 -0.352144 0.335768 0.111303 0.415837 -0.078244 0.083132 0.089891 -0.586348 -0.178641 -0.056366 0.096496 -0.132949 -0.296670 -0.374451 0.189705 -0.254533 -0.233486 0.093611 0.566733 -0.168989 -0.172798 0.502494 0.447365 0.380781 0.138757 -0.125631 0.587096 -0.179873 -0.010216 0.086324 -0.149317 -0.178171 -0.150315 0.086805 -0.175614 -0.089053 -0.038649 -0.703251 0.471244 0.150621 -0.122666 0.462911 -0.065908 -0.195283 -0.576811 0.523653 0.460850 0.313407 0.259501 0.430443 0.011118 -0.239924 0.349267 0.503986 0.160926 -0.440760 -0.380791 0.254843 0.019038 -0.152995 -0.060908 -0.112202 0.103128 -0.315116 0.066903 0.150031 0.043810 -0.003949 0.236609 -0.227965 0.376201 -0.142445 0.242553 -0.542945 0.150896 0.035023 -0.191563 -0.362616 0.183293 -0.148437 -0.027274 0.363916 -0.159831 -0.019312 -0.047651 -0.333107 0.221476 -0.087421 0.121874 0.041701 -0.281836 -0.079537 -0.056806 0.044756 0.234839 0.265264 0.356632 0.224727 0.198225 0.066218 0.022761 0.283347 -0.258199 -0.208292 -0.334357 0.310888 0.238660 -0.009495 0.202967 -0.023041 0.240322 0.083315 -0.160498 0.317553 0.442963 0.477848 0.353935 -0.297603 0.098308 -0.215240 0.291361 0.455344 -0.320616 -0.001093 0.210326 0.256823 -0.089234 -0.281063 -0.080791 -0.178373 -0.343510 0.401657 -0.300489 -0.052577 0.070756 0.355659 -0.227301 -0.455496 0.059701 0.004445 0.209628 0.063701 0.134678 0.127212 0.196494 -0.437903 0.173740 0.163921 0.293780 -0.064304 -0.176729 -0.010235 0.080771 -0.134548 0.212297 -0.379821 -0.052260 0.149660 0.326338 0.198556 0.017819 -0.088604 -0.152872 0.086263 0.041746 -0.030303 -0.191794 0.163195 -0.259520 -0.166190 -0.299513 -0.134577 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_deallocate(int*, unsigned long) = 0.336669 0.300755 0.508083 -0.848476 -0.873105 0.185249 0.175700 -0.299574 0.179610 0.687586 0.447323 -0.435047 -0.615163 1.068526 -0.195672 -0.766812 0.047871 -0.841689 -0.129200 -0.008157 0.005560 0.540768 -0.119397 0.076865 0.183325 -0.023755 -0.233418 0.446977 0.417351 -0.541243 -0.669315 -0.092603 -0.080074 1.016441 -0.071995 -0.180953 0.228276 1.584036 -0.682443 0.920528 -1.064849 -0.914899 0.675322 0.058593 -0.207504 -0.926990 -0.365003 0.582650 -0.332110 -0.427222 0.745432 0.018882 -0.084659 -0.233616 0.428010 0.804760 -1.680970 0.710519 0.195807 0.118273 -0.119416 -0.206708 0.177852 0.242160 -0.345279 -0.607143 0.363693 0.125512 -0.652380 0.040847 -0.211362 -1.107774 1.226106 0.436897 -0.578009 0.299979 0.471527 -1.023713 0.882167 -0.997768 -0.927042 -0.013094 0.142541 -0.366215 1.000633 -0.035445 0.436013 -1.512043 0.282517 -1.312461 0.645703 -1.028377 0.561878 1.124196 -0.619958 0.279161 0.354639 0.426444 0.799889 -0.042603 1.123659 0.493333 0.665440 0.183973 0.484182 0.543346 -0.692994 -0.415069 -0.782460 -1.089246 0.003789 -0.171704 -1.506348 0.205503 -0.151135 0.146963 0.450963 -0.160291 -0.102649 0.799928 -1.322550 -0.425705 0.275536 -0.151242 0.515723 1.214619 -0.325420 0.166950 -0.319383 1.180205 -0.325612 0.485849 -0.153449 0.340704 -0.410844 -0.643055 -0.922459 0.131123 0.355944 -0.687879 -0.992292 -1.338385 -0.045357 0.161786 -0.367059 1.153419 1.927900 -0.530623 -0.953456 1.161337 0.290013 0.159014 0.949165 -0.046619 1.391000 -0.743206 0.074795 -0.443513 -0.074301 -0.127431 0.691128 0.318228 -0.240722 0.275412 0.042565 -0.809378 0.835663 -0.069825 -0.411179 -0.132797 0.095471 -0.600032 -0.772035 1.185839 -0.146773 0.955642 0.097746 1.439420 -0.571864 -0.897045 0.612116 -0.496091 0.072531 -0.934174 -0.587830 0.296170 0.653911 -0.791337 -0.353001 -0.451542 -0.327045 -0.485255 0.269858 -0.159345 0.287269 0.052696 0.305380 0.906569 1.219217 0.111810 0.175948 -1.245653 0.340075 0.447624 -0.396343 -1.031407 0.143875 -0.678551 -0.035812 0.556728 -0.286583 0.347323 -0.522108 -0.711099 0.018981 -0.308111 0.346847 0.015011 -1.370163 0.137015 -0.266732 0.492361 0.453029 0.767203 1.113531 0.922577 0.744111 -0.071626 0.198443 -0.062961 -0.242888 0.001999 0.087199 0.374113 0.535339 0.901873 0.469382 0.161073 0.847281 0.618976 -0.142133 0.965913 0.238701 1.525494 -0.120409 -0.158483 -0.130033 -0.316797 0.729448 1.677472 -0.589273 0.143909 0.575413 0.552068 -0.295890 -0.728345 -0.027743 -0.611026 -0.181541 0.532594 0.102514 -0.265566 -0.172046 1.197326 -0.020538 -1.515633 0.556466 -0.054314 0.407102 0.591009 -0.069267 0.083833 0.448483 -1.038364 0.820785 0.629560 0.724576 -0.688704 -0.331217 -0.046756 0.649077 0.051362 0.512768 -1.374585 0.211335 0.512512 1.034196 0.545031 0.867900 -0.657228 -0.454176 0.294550 -0.463068 -0.356190 -0.000123 0.597825 -0.664063 0.172176 -0.981753 -0.547919 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::~_Vector_impl() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::deallocate(std::allocator&, int*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::deallocate(int*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::~allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::~new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >&>::type&& std::move >&>(std::vector >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::vector(std::vector >&&) = 0.295524 0.331854 0.354209 -0.546950 -0.780319 0.096909 0.019491 -0.231312 0.000000 0.150990 0.378600 -0.322182 -0.170789 0.733499 -0.200521 -0.380231 -0.193447 -0.794379 -0.266597 -0.082190 0.001481 0.333641 -0.117700 0.158993 -0.009866 0.067317 -0.185542 0.207228 0.196639 -0.560261 -0.410774 -0.059000 0.001593 0.579048 0.031778 -0.359848 0.209372 1.058560 -0.343230 0.144406 -0.481502 -0.488280 0.310907 -0.034350 -0.157887 -0.637344 -0.471006 0.461771 0.004216 -0.109175 0.532796 0.134712 -0.215751 -0.048718 0.235957 0.380680 -1.057099 0.607681 0.227694 0.149243 -0.048986 -0.104975 0.092095 0.090527 -0.046855 -0.358565 0.333391 0.160694 -0.244821 -0.030573 -0.025631 -0.740060 0.846739 0.187654 -0.169085 0.164693 0.341571 -0.630531 0.681710 -0.578245 -0.674348 0.093744 0.026882 -0.293362 0.716183 -0.189894 0.060638 -0.881279 0.244270 -0.879474 0.174478 -0.671102 0.128119 0.628483 -0.475256 0.107621 0.229096 0.249147 0.614779 0.074255 0.685667 0.228899 0.404375 0.277223 0.311841 0.257561 -0.274438 -0.061970 -0.567321 -0.840942 0.021375 -0.041914 -0.983819 0.318432 0.135653 -0.217649 0.069013 -0.066966 0.088837 0.553915 -0.579021 -0.200186 0.237623 -0.075649 0.107534 0.811809 -0.338734 0.132572 -0.415947 0.675258 -0.208278 0.466842 0.044731 0.158985 -0.149337 -0.680730 -0.808955 0.218979 0.276239 -0.383417 -0.540159 -0.677536 0.120742 -0.120934 -0.344935 0.711961 1.205906 -0.429125 -0.640178 0.838393 0.694430 0.022124 0.608096 -0.069698 0.974330 -0.266811 -0.197387 -0.205054 -0.325728 -0.195337 -0.317471 0.266897 0.024142 0.179973 0.132256 -0.643240 0.899915 -0.096723 -0.421273 0.419372 0.206393 -0.348224 -0.623199 0.692136 0.669720 0.549370 0.480000 0.861772 -0.201550 -0.492409 0.361488 0.047222 0.190569 -0.487991 -0.306915 0.152057 0.402856 -0.230806 -0.157369 -0.215123 -0.288132 -0.466314 0.068592 0.275010 0.392439 0.193480 0.369791 -0.005958 1.025541 0.108697 0.230132 -0.844665 0.258046 0.350454 -0.143433 -0.627379 0.032621 -0.383078 0.026745 0.295493 -0.206368 0.235290 -0.242506 -0.399280 0.013802 -0.151182 0.229170 0.190502 -0.654471 0.057111 -0.376707 0.484771 0.177243 0.411620 0.780012 0.673465 0.670710 0.036167 0.107681 0.123958 0.029799 -0.203936 -0.011536 0.356519 0.390954 0.547592 0.365127 0.178530 0.554871 0.396169 -0.100550 0.629668 0.128513 1.131585 -0.138239 -0.086371 -0.311584 0.004792 0.544710 1.192619 -0.199863 0.054692 0.284204 0.396169 -0.211707 -0.616477 0.011382 -0.302741 -0.012661 0.200862 0.127967 -0.153373 -0.021015 0.625286 -0.087270 -0.829249 0.284989 0.011260 0.291480 0.311347 0.044365 0.064401 0.259852 -0.672757 0.459135 0.546505 0.425226 -0.452005 -0.289474 0.028325 0.521870 -0.392420 0.538860 -0.837536 0.439513 0.403760 0.439369 0.118320 0.308686 -0.575544 -0.482012 0.440857 -0.138607 -0.203124 0.334712 0.439381 -0.714385 0.188586 -0.378788 -0.493059 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::vector >::insert(__gnu_cxx::__normal_iterator > >, int*, int*) = 0.409112 0.210262 0.576579 -2.081451 -3.197896 0.984418 -2.101138 -1.406982 0.351493 -0.676728 1.846338 -2.281604 -1.095531 3.345288 -0.680424 -2.639380 -0.491563 -0.000444 -0.080502 0.182435 0.201249 0.940810 -0.605571 0.559568 -0.566230 0.086795 -0.669121 0.907881 3.704618 -0.631469 -2.801182 -0.104595 -0.317364 2.636070 0.823181 -0.815297 1.534134 4.350871 -0.541492 1.989963 -1.951769 -1.073745 0.879518 0.551160 -0.984194 -1.751399 -2.836471 1.315371 -3.780482 0.282701 2.825339 -0.349812 -0.045002 0.617904 1.628061 2.035953 -4.303152 3.222067 0.650732 1.408190 1.204058 -0.661276 -0.268710 0.922062 -0.475664 -1.281232 0.917404 1.585906 -1.252217 -0.640272 -0.748177 -3.391364 4.818730 0.947709 -2.410962 0.012913 1.550503 -2.684256 2.016568 -2.152877 -3.288194 0.710911 0.014882 -0.401272 3.461708 -0.253533 0.857125 -3.812948 0.391663 -4.327388 1.304005 -2.924978 1.256252 3.150075 -3.955731 -0.474977 1.015273 0.784507 3.083683 0.965794 2.709449 1.070145 -0.016329 -0.042538 1.403272 0.952928 -0.471463 -0.186679 -1.200171 -3.185599 -1.081892 -0.441773 -5.742783 0.530773 -0.663232 1.882981 -0.215024 0.284839 -0.252591 0.903806 -1.783756 -1.506196 -0.318706 -0.350053 2.024333 3.764854 -1.334892 1.344989 -1.310371 3.325584 -0.767365 0.610266 -0.779976 0.545989 -0.861962 -2.973795 -4.821810 1.388168 1.981265 -1.453552 -2.975904 -2.804349 -0.136593 -0.557060 -0.722439 2.952760 4.704792 -1.504757 -2.186777 3.503762 0.469054 1.083485 4.282209 -0.394691 4.319117 -1.700262 0.442171 -1.262353 -1.110621 -2.089759 -1.526985 0.751668 -0.326160 0.313302 0.173432 -2.301830 2.493347 -0.015061 -2.016790 -1.486622 0.209314 -1.202557 -2.275447 3.931696 -0.329931 1.409481 1.000229 3.809675 -1.184822 -3.247200 1.960025 0.019548 0.439158 -0.994331 -1.573689 0.810686 2.056939 -2.197657 -0.911492 -0.334458 -0.000948 -1.749723 0.254639 3.561769 0.349039 0.958341 1.494030 1.712792 4.304227 0.798829 1.093500 -3.137235 0.900517 1.910680 -2.179204 -2.607313 0.796037 -2.174206 0.209398 0.784607 -0.740893 0.546977 -2.098088 -2.454269 -1.389436 -0.572290 3.082196 1.365460 -3.255868 1.150017 -1.159578 0.988982 1.919553 1.547138 2.891598 2.915884 3.113160 -0.223619 0.808196 0.234424 1.218074 -0.067236 1.176126 1.096914 1.162210 2.554571 0.991380 0.221061 1.386204 1.747448 0.038219 2.211688 1.430949 4.396264 0.753191 0.070184 -1.193508 -1.196241 2.232717 6.069267 -2.563861 1.157503 1.076897 1.775590 0.092616 -3.852947 -0.006751 -1.303107 -1.361308 1.030382 -0.848670 0.025865 -0.858141 2.664994 0.003789 -3.127681 1.560213 0.011103 0.578669 1.407170 -0.262259 -0.556794 0.468730 -3.702912 2.690589 2.220687 1.685144 -1.079208 -1.135400 -0.444930 1.397846 0.173803 1.647826 -1.175311 1.727752 2.401774 2.807359 2.226979 0.453548 -1.934207 -2.392008 0.964341 -1.683659 -0.831466 -0.755824 1.327421 -2.215456 0.716748 -0.620719 -3.842374 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(__gnu_cxx::__normal_iterator::__value, std::vector > >::__type> const&) = 0.108145 0.165133 0.363147 -0.582570 -0.891814 0.112552 -0.067825 -0.294196 0.035573 -0.019211 0.440901 -0.488197 -0.292602 0.970843 -0.197567 -0.538605 -0.159737 -0.281597 -0.161403 0.035086 0.070689 0.387860 -0.127942 0.173068 -0.044560 0.030797 -0.168327 0.332056 0.468185 -0.281051 -0.491668 -0.113436 0.018039 0.661649 0.094075 -0.112123 0.199233 1.182087 -0.431677 0.722449 -0.656021 -0.449894 0.342276 0.034975 -0.135358 -0.880869 -0.796740 0.429106 -0.464756 -0.160497 0.648222 0.088026 -0.083291 0.018035 0.433843 0.475060 -1.116617 0.645902 0.232838 0.086239 0.169460 -0.114567 -0.173009 0.145514 -0.250372 -0.359750 0.145769 0.260376 -0.242210 -0.031252 -0.047682 -0.810444 1.175137 0.192314 -0.477690 0.144141 0.481877 -0.706390 0.674136 -0.639453 -0.803382 0.079974 -0.020822 -0.104489 0.790441 -0.078582 0.233905 -1.016054 0.105906 -1.052605 0.379875 -0.841001 0.185863 0.785444 -0.709304 0.110716 0.314891 0.174815 0.759104 0.284048 0.668693 0.423351 0.303179 0.185926 0.441240 0.330660 -0.284628 -0.243165 -0.579393 -0.890173 -0.034306 -0.160712 -1.366112 0.174550 0.134144 0.196795 0.000000 0.008287 0.114117 0.470691 -0.585911 0.005595 0.255501 -0.099249 0.208414 0.922823 -0.351513 0.191790 -0.449285 0.789382 -0.295311 0.469302 -0.042339 0.211849 -0.316268 -0.838721 -0.928100 0.258432 0.279703 -0.350855 -0.648644 -0.854441 0.039181 0.104183 -0.290564 0.514604 1.310904 -0.477393 -0.660935 0.905014 0.642090 0.083511 0.673823 -0.011358 1.053094 -0.295832 -0.149291 -0.377176 -0.408492 -0.291963 0.086443 0.305693 -0.177339 0.243973 0.018109 -1.230997 1.017528 -0.164053 -0.507402 -0.009076 0.106668 -0.394223 -0.533282 0.946537 0.129795 0.560934 0.076926 0.940255 -0.238653 -0.658566 0.361887 -0.179018 0.157889 -0.532167 -0.286954 0.284599 0.492858 -0.540655 -0.239675 -0.204854 -0.291321 -0.459517 0.084643 0.111570 0.167905 0.237494 0.426223 0.330747 1.041193 0.194490 0.216526 -0.834251 0.302678 0.304355 -0.290962 -0.909636 0.166785 -0.452276 0.009377 0.090898 -0.166579 0.148674 -0.359650 -0.461899 -0.150579 -0.376519 0.368912 0.244787 -0.699381 0.105227 -0.247164 0.545045 0.328874 0.395354 0.911050 0.757665 0.756487 0.142277 0.115639 0.058166 0.034061 0.054235 0.209750 0.122783 0.346387 0.672268 0.381540 0.085712 0.548763 0.478102 0.063731 0.637822 0.306739 1.157751 0.119375 -0.114680 -0.211658 -0.048434 0.593804 1.388089 -0.262970 0.237319 0.319836 0.377943 -0.160393 -0.671867 0.007059 -0.301203 -0.336845 0.556010 0.023856 -0.116178 -0.069051 0.688426 -0.082329 -0.899155 0.277859 0.025426 0.280062 0.357348 0.039569 0.031369 0.270790 -0.709866 0.636990 0.544559 0.461432 -0.469418 -0.525529 -0.047708 0.306798 0.277403 0.574349 -0.871508 0.312831 0.506687 0.680341 0.131974 0.382044 -0.570292 -0.503463 0.376264 -0.279976 -0.276433 0.002858 0.311010 -0.543520 0.089577 -0.417043 -0.800508 +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.876454 0.194010 0.215370 -1.211915 -1.728386 0.772347 -1.483271 -0.821934 0.074866 -0.116926 0.775802 -0.861078 -0.296819 1.654655 -0.508599 -1.333424 -0.352787 -1.116901 0.002661 0.079502 -0.129055 0.565184 -0.467121 0.466181 -0.317381 0.132808 -0.511804 0.027924 1.685649 -0.910188 -1.733897 -0.100799 -0.545072 1.497735 0.610198 -1.014441 1.079986 2.696019 0.357390 0.218384 -0.787957 -0.772256 0.141001 0.109667 -0.485521 -0.267737 -0.921613 0.800189 -1.452577 0.540230 1.629003 -0.271456 -0.435696 0.520835 0.705346 0.723174 -2.538531 2.064067 0.370113 1.333907 0.522226 -0.636552 0.236711 0.324037 0.127576 -0.702192 0.984070 1.073293 -0.905965 -0.377225 -0.476873 -1.771019 2.183885 0.836495 -1.039116 -0.103504 0.801327 -1.433936 1.123822 -1.564183 -2.066785 0.505545 -0.132214 -0.711318 2.255526 -0.293663 0.244407 -2.104568 1.054174 -2.523112 0.180443 -1.512978 0.671131 1.906784 -2.027720 -0.383375 0.618633 1.060144 1.719443 0.171498 1.748258 0.407402 -0.361070 0.278932 0.578376 0.323987 -0.082763 0.508142 -0.434656 -1.678700 -0.800519 0.007152 -2.705793 0.584136 -0.314140 0.809612 -0.243270 0.467679 -0.442193 0.285891 -1.534700 -1.803656 -0.506482 -0.204364 1.271929 1.829340 -0.879314 0.801459 -0.909005 1.943814 -0.434835 0.275467 -0.494437 0.227377 -0.335366 -1.161865 -3.091169 0.717619 1.344181 -0.944135 -1.811711 -1.395700 -0.087140 -0.795546 -0.521747 2.764971 2.662724 -0.911732 -1.082229 2.239003 -0.133461 0.708853 2.793470 -0.337312 2.053626 -0.697458 0.032797 -0.343317 -0.559077 -1.540925 -2.540368 0.463059 0.360165 0.006887 0.347077 0.438846 1.082818 0.185126 -1.348840 -0.731752 0.134849 -0.695324 -1.491599 1.987809 0.350184 0.589197 1.555095 2.197563 -0.442755 -1.539613 1.179788 0.139625 0.503645 -0.450166 -0.869494 -0.008313 1.021424 -1.024236 -0.515019 0.155342 0.117622 -1.225178 -0.007504 3.040423 0.587491 0.725365 1.025287 0.916977 2.796983 0.417687 0.706668 -1.809349 0.539430 1.210990 -1.340464 -0.739987 0.302257 -1.027462 0.142600 0.971914 -0.413534 0.309889 -1.252766 -1.476433 -0.734088 0.351227 1.970226 1.133238 -1.783497 0.627215 -0.853354 0.369889 1.074768 0.774242 1.318565 1.650282 1.901054 -0.449112 0.451115 0.449061 1.066647 -0.586632 0.528256 1.160242 0.704052 1.287711 0.738097 0.307326 0.617654 1.131562 -0.235934 1.271924 0.522565 2.738640 -0.144482 0.084842 -1.046527 -0.587916 1.317135 3.353728 -1.932864 0.751427 0.586806 0.999786 0.087131 -2.137837 0.164441 -0.842396 -0.144889 -0.611339 -0.451725 0.086625 -0.464500 1.461221 -0.131348 -1.672531 0.958247 0.110238 0.413941 0.825250 0.085708 -0.338322 0.144728 -2.461165 1.550680 1.489202 0.881986 -0.390249 -0.070851 -0.145650 1.171735 -1.340316 1.129368 0.166185 1.443054 1.362027 1.185944 1.549660 -0.333548 -1.038424 -1.678808 0.795529 -0.974414 -0.401589 0.312059 1.185838 -1.437773 0.680767 0.053898 -2.144644 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_base(std::_Vector_base >&&) = 0.113959 -0.029155 0.219352 -0.479725 -0.637307 0.129996 -0.229566 -0.204170 0.062043 -0.181618 0.288224 -0.427554 -0.249711 0.837081 -0.111659 -0.581561 -0.103057 -0.122317 -0.099640 0.138366 0.028486 0.287479 -0.111676 0.149151 -0.013311 0.030733 -0.146819 0.231581 0.538901 -0.253244 -0.512512 -0.075709 -0.060804 0.606765 0.068130 -0.009271 0.266172 1.089736 -0.087459 0.721700 -0.450755 -0.349620 0.240155 0.033140 -0.168308 -0.474474 -0.615089 0.342707 -0.622388 -0.083677 0.577641 0.066591 -0.180813 0.017717 0.411279 0.410028 -0.995635 0.601299 0.159729 0.271011 0.174951 -0.176648 -0.168088 0.056064 -0.219162 -0.301228 0.153452 0.278480 -0.359708 -0.018450 -0.081289 -0.681318 1.122717 0.268985 -0.469692 0.141808 0.461619 -0.524939 0.518044 -0.543492 -0.720010 0.081831 -0.015696 -0.121042 0.831370 -0.043221 0.201709 -0.896817 0.233801 -0.931233 0.317434 -0.792200 0.225969 0.802759 -0.740016 0.106869 0.255034 0.298210 0.563870 0.265593 0.630619 0.337696 0.033449 0.098602 0.392908 0.159023 -0.199582 -0.185744 -0.376251 -0.720346 -0.137267 -0.174314 -1.249652 0.114828 0.021393 0.459198 -0.000320 0.210328 -0.007449 0.138147 -0.642481 -0.148731 0.098305 -0.101872 0.338012 0.770653 -0.337657 0.165106 -0.401090 0.755668 -0.203533 0.254783 -0.125778 0.151231 -0.230328 -0.501157 -0.872946 0.157454 0.308573 -0.285226 -0.663071 -0.702416 -0.057087 0.129184 -0.209595 0.719566 1.142990 -0.333406 -0.457623 0.826211 0.279408 0.306673 0.736969 -0.007913 0.850241 -0.284556 -0.048051 -0.260977 -0.244241 -0.337579 -0.344497 0.252094 -0.149735 0.160751 0.010896 -0.693640 0.861449 -0.118254 -0.410958 -0.267723 0.015520 -0.364163 -0.524704 0.946567 -0.069379 0.488045 0.135680 0.871745 -0.194174 -0.582715 0.381948 -0.175427 0.141256 -0.477853 -0.277909 0.092155 0.421992 -0.593798 -0.259449 -0.065612 -0.156090 -0.378999 0.061810 0.515434 0.081750 0.160000 0.402952 0.470699 0.907513 0.137631 0.182782 -0.798635 0.227768 0.291509 -0.432836 -0.555216 0.253467 -0.341187 0.003170 0.138821 -0.129035 0.011237 -0.441479 -0.499857 -0.234592 -0.169601 0.467066 0.233042 -0.701900 0.079582 -0.116408 0.326259 0.438507 0.319679 0.812199 0.578649 0.644405 0.026810 0.134006 0.100228 0.054465 0.007942 0.138967 0.290135 0.256612 0.532770 0.312152 0.020583 0.381451 0.461889 0.028079 0.527590 0.408743 1.045748 0.215091 -0.140128 -0.169152 -0.166772 0.530679 1.242702 -0.560948 0.367107 0.332537 0.406438 -0.066485 -0.674651 -0.048786 -0.299129 -0.345155 0.336632 -0.219412 -0.084537 -0.049339 0.606669 -0.068956 -0.777993 0.223390 0.032721 0.213305 0.326626 0.036825 -0.009506 0.240069 -0.771908 0.577339 0.403720 0.364942 -0.311964 -0.256363 -0.074600 0.247680 0.134717 0.460271 -0.293602 0.330454 0.448358 0.629248 0.339938 0.086730 -0.372428 -0.474442 0.234721 -0.367546 -0.243880 -0.068136 0.282338 -0.369139 0.046966 -0.330036 -0.872584 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl::_Vector_impl(std::_Vector_base >::_Vector_impl&&) = 0.529879 0.682141 0.684417 -0.736455 -1.488230 0.339113 -0.630693 -0.610415 -0.015624 0.452134 0.542152 -0.453504 -0.214740 0.945061 -0.680273 -0.709277 -0.653121 -1.049076 -0.290153 -0.737277 0.008960 0.435326 -0.212974 0.329578 -0.203445 -0.227316 -0.161930 0.170915 0.484918 -0.676934 -0.468988 -0.130055 -0.014245 0.919281 0.216415 -0.612568 0.381853 1.600567 -0.037811 -0.415969 -0.909522 -1.124419 0.329995 0.038337 -0.049460 -0.728747 -0.573248 0.606136 -0.361837 0.439147 0.735173 0.075482 -0.274464 0.131577 0.299182 0.244397 -1.697743 1.309033 0.135692 -0.081269 -0.200327 -0.113346 0.237549 0.334998 0.319386 -0.497456 0.611175 0.898370 -0.386668 0.048489 0.155424 -1.091451 1.248685 0.150277 -0.277777 0.118659 0.617353 -0.673075 0.993851 -1.010227 -1.174055 0.116189 0.203565 -0.517373 0.960469 -0.042517 0.204080 -1.375249 0.541406 -1.435150 0.315387 -0.704488 0.266539 0.744459 -0.927848 0.096065 0.564635 0.366014 1.199751 -0.005034 1.083674 0.218839 0.569132 0.650309 0.290259 0.347172 -0.184553 0.184439 -0.804918 -1.400783 -0.139858 -0.061103 -1.530461 0.421961 0.173000 -0.211521 -0.116328 -0.183327 0.135004 0.896779 -1.230401 -0.795182 0.239962 -0.078452 0.279116 0.876700 -0.502986 0.496106 -0.403467 1.113423 -0.585790 0.368262 0.136274 0.215111 -0.023794 -1.144885 -1.960342 0.599276 0.568033 -0.609281 -0.820451 -0.761467 0.006213 -0.181391 -0.427611 1.366542 1.930120 -0.711199 -1.196138 1.283914 0.652679 -0.177196 1.427680 0.009635 1.457073 -0.352414 -0.390212 -0.477621 -0.581207 -0.231293 -0.912165 0.420465 0.255690 0.413017 0.548622 -0.144857 0.776821 -0.412240 -0.852884 0.195667 0.461080 -0.483140 -0.614104 0.755370 1.125379 0.793140 0.868410 1.382904 -0.524397 -1.110689 0.377877 -0.320948 0.207625 -0.120579 -0.231218 0.031286 0.736911 -0.445576 -0.270048 -0.267854 -0.572108 -0.705075 0.038733 1.013080 0.777553 0.489590 0.537816 0.245999 1.833588 0.396167 0.260832 -1.214915 0.321364 0.749627 -0.056744 -0.996222 -0.077435 -0.636098 0.120803 0.495505 -0.284069 0.507066 -0.253395 -0.432552 -0.376537 -0.262358 0.666276 0.456392 -0.696985 0.285141 -0.809796 0.801250 0.113091 0.558932 1.263800 1.161436 1.224445 0.084998 0.291456 -0.113042 0.942363 -0.282979 0.495614 0.477564 0.561274 1.087974 0.536954 0.398793 0.895076 0.804067 -0.170262 0.982611 -0.277261 1.965538 -0.991996 0.283119 -0.923733 0.249106 0.826629 2.140466 -0.402470 0.112108 0.356194 0.641916 -0.007374 -1.286538 0.098659 -0.456105 0.325338 0.020834 0.623982 -0.229961 -0.173663 0.884728 0.116762 -1.099724 0.812771 0.047461 0.256327 0.311623 -0.093722 -0.360823 0.353948 -1.153390 0.555164 1.056470 0.603460 -0.900119 -0.385906 0.010176 1.176463 -0.954015 0.935721 -1.040791 0.838363 0.887567 0.555611 0.189702 0.378275 -1.111595 -1.266143 0.846346 -0.357532 -0.429813 0.945324 0.635025 -1.274464 0.681108 -0.005993 -1.108144 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference >::_Vector_impl&>::type&& std::move >::_Vector_impl&>(std::_Vector_base >::_Vector_impl&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator::allocator(std::allocator const&) = 0.295524 0.331854 0.354209 -0.546950 -0.780319 0.096909 0.019491 -0.231312 0.000000 0.150990 0.378600 -0.322182 -0.170789 0.733499 -0.200521 -0.380231 -0.193447 -0.794379 -0.266597 -0.082190 0.001481 0.333641 -0.117700 0.158993 -0.009866 0.067317 -0.185542 0.207228 0.196639 -0.560261 -0.410774 -0.059000 0.001593 0.579048 0.031778 -0.359848 0.209372 1.058560 -0.343230 0.144406 -0.481502 -0.488280 0.310907 -0.034350 -0.157887 -0.637344 -0.471006 0.461771 0.004216 -0.109175 0.532796 0.134712 -0.215751 -0.048718 0.235957 0.380680 -1.057099 0.607681 0.227694 0.149243 -0.048986 -0.104975 0.092095 0.090527 -0.046855 -0.358565 0.333391 0.160694 -0.244821 -0.030573 -0.025631 -0.740060 0.846739 0.187654 -0.169085 0.164693 0.341571 -0.630531 0.681710 -0.578245 -0.674348 0.093744 0.026882 -0.293362 0.716183 -0.189894 0.060638 -0.881279 0.244270 -0.879474 0.174478 -0.671102 0.128119 0.628483 -0.475256 0.107621 0.229096 0.249147 0.614779 0.074255 0.685667 0.228899 0.404375 0.277223 0.311841 0.257561 -0.274438 -0.061970 -0.567321 -0.840942 0.021375 -0.041914 -0.983819 0.318432 0.135653 -0.217649 0.069013 -0.066966 0.088837 0.553915 -0.579021 -0.200186 0.237623 -0.075649 0.107534 0.811809 -0.338734 0.132572 -0.415947 0.675258 -0.208278 0.466842 0.044731 0.158985 -0.149337 -0.680730 -0.808955 0.218979 0.276239 -0.383417 -0.540159 -0.677536 0.120742 -0.120934 -0.344935 0.711961 1.205906 -0.429125 -0.640178 0.838393 0.694430 0.022124 0.608096 -0.069698 0.974330 -0.266811 -0.197387 -0.205054 -0.325728 -0.195337 -0.317471 0.266897 0.024142 0.179973 0.132256 -0.643240 0.899915 -0.096723 -0.421273 0.419372 0.206393 -0.348224 -0.623199 0.692136 0.669720 0.549370 0.480000 0.861772 -0.201550 -0.492409 0.361488 0.047222 0.190569 -0.487991 -0.306915 0.152057 0.402856 -0.230806 -0.157369 -0.215123 -0.288132 -0.466314 0.068592 0.275010 0.392439 0.193480 0.369791 -0.005958 1.025541 0.108697 0.230132 -0.844665 0.258046 0.350454 -0.143433 -0.627379 0.032621 -0.383078 0.026745 0.295493 -0.206368 0.235290 -0.242506 -0.399280 0.013802 -0.151182 0.229170 0.190502 -0.654471 0.057111 -0.376707 0.484771 0.177243 0.411620 0.780012 0.673465 0.670710 0.036167 0.107681 0.123958 0.029799 -0.203936 -0.011536 0.356519 0.390954 0.547592 0.365127 0.178530 0.554871 0.396169 -0.100550 0.629668 0.128513 1.131585 -0.138239 -0.086371 -0.311584 0.004792 0.544710 1.192619 -0.199863 0.054692 0.284204 0.396169 -0.211707 -0.616477 0.011382 -0.302741 -0.012661 0.200862 0.127967 -0.153373 -0.021015 0.625286 -0.087270 -0.829249 0.284989 0.011260 0.291480 0.311347 0.044365 0.064401 0.259852 -0.672757 0.459135 0.546505 0.425226 -0.452005 -0.289474 0.028325 0.521870 -0.392420 0.538860 -0.837536 0.439513 0.403760 0.439369 0.118320 0.308686 -0.575544 -0.482012 0.440857 -0.138607 -0.203124 0.334712 0.439381 -0.714385 0.188586 -0.378788 -0.493059 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_Vector_impl_data::_Vector_impl_data(std::_Vector_base >::_Vector_impl_data&&) = -0.111075 -0.565830 1.425938 -1.436457 -2.065103 0.652461 -0.816669 -0.863804 0.546584 -0.320119 1.020501 -1.067157 -0.167907 2.532505 -0.390837 -1.521020 -0.239923 0.778539 0.051836 -0.077519 0.405602 0.717669 -0.409375 0.523430 -0.363640 -0.649086 0.211304 1.219087 1.014869 0.548287 -1.206973 -0.497472 -0.491997 1.909642 0.422279 0.468825 0.598552 3.272687 -1.062047 2.921983 -1.356281 -1.348738 0.715092 0.269204 -0.376609 -1.219764 -2.521713 0.594403 -1.904342 -0.353369 1.901115 0.013563 0.473364 0.319938 1.436561 0.674710 -2.359897 0.429108 0.160407 -0.265034 0.298238 -0.476992 -0.704621 0.890510 -1.838567 -0.655670 0.767222 1.353921 -0.289774 -0.008255 0.102260 -2.511896 3.262679 0.681009 -1.486222 0.264010 2.213780 -2.027160 1.733897 -0.211399 -2.473817 0.006362 -0.549255 -1.504129 2.413225 -0.273518 1.702007 -2.744474 0.949731 -2.978295 1.371934 -2.283360 0.644396 2.265619 -2.390388 0.432237 1.333242 2.348117 1.593580 0.381384 1.661818 1.705697 0.035419 0.443672 2.039867 0.701426 -0.856858 -1.115158 -1.900429 -2.251594 -0.083886 -1.766115 -4.136968 0.065174 0.364046 0.800275 -0.572385 0.429222 -0.110782 1.733307 -2.024564 0.927047 0.674769 -0.327899 0.302093 1.909436 -1.103113 0.677527 -0.644396 2.338424 -1.438494 0.564137 -0.335854 0.545531 -1.356883 -0.384756 -2.454033 0.863762 0.969271 -0.836196 -2.017342 -2.171790 -0.634948 1.680054 -0.209449 2.065453 3.593091 -1.103055 -1.657434 2.028489 1.111432 0.048797 2.022205 0.457157 2.233331 -0.801629 -0.315856 -2.144761 -0.891855 -0.793630 0.480554 1.017006 -0.191592 1.412622 -0.145277 -2.554919 4.263426 -1.164324 -1.354844 -1.382407 0.446431 -1.154368 -1.061824 3.099644 -1.177008 1.364908 -0.275181 2.636642 -0.771516 -1.676361 0.560463 -1.609717 0.201418 -1.816235 -0.314715 0.242298 1.786514 -1.669109 -1.065412 -0.747360 -1.131416 -0.494534 0.098519 0.734928 0.265079 0.617955 1.070211 1.866335 2.976418 1.227671 -0.112015 -2.044022 0.735674 0.998088 -1.331601 -1.545001 0.529971 -1.054483 0.074863 -1.065348 0.006342 0.421457 -2.059994 -1.260375 -1.391902 -0.754223 0.889336 0.810738 -3.788532 0.496190 0.095451 1.512629 1.369132 0.634772 3.017925 2.058342 2.375056 0.149426 0.390867 -0.007101 -0.406641 0.683995 1.251475 0.462707 0.445220 2.607638 0.825686 0.122071 1.111837 1.768145 1.216696 1.384675 0.953582 3.099686 1.140026 -0.146088 -0.635269 0.017578 1.542395 3.973969 -0.204396 1.672824 0.907753 1.355006 -0.630292 -2.372341 0.071491 -0.762193 -0.385559 1.178875 -0.055195 -0.404722 -0.422926 1.782416 0.313851 -2.536279 0.170507 0.072837 0.568940 1.724568 -0.200050 0.151854 0.428479 -1.774763 2.726432 1.099099 0.778258 -1.397382 -0.753581 -0.141899 0.356987 1.726362 1.398768 -1.579060 1.395906 0.888415 1.975167 0.621153 1.327530 -1.581157 -0.795767 0.796907 -1.877331 -0.869779 0.046844 0.754209 -1.160560 0.552775 -1.801310 -3.101260 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::new_allocator(__gnu_cxx::new_allocator const&) = 0.092920 0.125409 0.078586 -0.376507 -0.392445 -0.031134 0.250870 -0.042726 -0.024133 -0.130295 0.273536 -0.292980 -0.265797 0.563299 0.046537 -0.275671 0.029402 -0.438873 -0.200987 0.274415 -0.009145 0.248501 -0.054514 0.059114 0.079693 0.230828 -0.227185 0.197548 0.258504 -0.429473 -0.369540 -0.007928 0.050993 0.349528 -0.032891 -0.146769 0.124321 0.675375 -0.348916 0.444615 -0.279547 -0.076024 0.262898 -0.045455 -0.196370 -0.612767 -0.404984 0.348237 -0.093153 -0.297564 0.391844 0.122552 -0.173393 -0.099679 0.217248 0.476891 -0.688099 0.387568 0.258274 0.282704 0.147913 -0.076886 -0.085644 -0.075897 -0.095993 -0.256891 0.046228 -0.188486 -0.202440 -0.079104 -0.136151 -0.431661 0.694278 0.164772 -0.201374 0.152911 0.129207 -0.461774 0.395846 -0.438253 -0.365566 0.084880 -0.011939 0.075426 0.515509 -0.164311 -0.078842 -0.550228 -0.062690 -0.538902 0.124787 -0.587199 0.071535 0.510567 -0.290697 0.070135 0.031486 -0.107930 0.316050 0.207433 0.403986 0.156312 0.236020 0.029525 0.211059 0.161375 -0.223905 -0.151947 -0.291955 -0.465857 0.023942 0.067198 -0.688422 0.187680 0.052541 0.042917 0.161543 0.023006 0.086640 0.134365 -0.124416 0.050103 0.154780 -0.065705 0.138462 0.730100 -0.195040 -0.025900 -0.394325 0.401102 0.023831 0.450997 -0.046203 0.119717 -0.102862 -0.598291 -0.274418 0.013676 0.112777 -0.200379 -0.351839 -0.537770 0.171963 -0.151430 -0.264128 0.186439 0.701275 -0.253433 -0.278437 0.568545 0.536461 0.224584 0.204076 -0.112498 0.665170 -0.192796 -0.051434 0.004320 -0.202428 -0.203811 -0.006689 0.136752 -0.175089 -0.016896 -0.067463 -0.903164 0.620336 0.104122 -0.202397 0.369177 -0.017338 -0.230786 -0.532717 0.584634 0.318688 0.346960 0.173025 0.509424 -0.028859 -0.250500 0.339701 0.279891 0.155652 -0.488720 -0.337483 0.259453 0.145886 -0.216036 -0.080539 -0.114706 -0.026803 -0.349405 0.079325 -0.020301 0.075286 0.054976 0.263922 -0.079464 0.492830 -0.070302 0.234896 -0.557750 0.196585 0.085044 -0.192661 -0.494880 0.139908 -0.231105 -0.024872 0.258546 -0.160927 0.027198 -0.128120 -0.345728 0.176509 -0.153806 0.128731 0.074764 -0.341317 -0.046694 -0.119091 0.209235 0.219508 0.298108 0.421838 0.356125 0.310763 0.068235 0.020152 0.218676 -0.253534 -0.122443 -0.211698 0.202602 0.267128 0.150164 0.244981 0.017159 0.314341 0.144387 -0.097545 0.387422 0.365128 0.588506 0.283319 -0.253793 0.043448 -0.160704 0.348139 0.623609 -0.246052 0.024784 0.215124 0.212617 -0.165576 -0.252134 -0.038959 -0.192197 -0.336219 0.394424 -0.182457 -0.051599 0.038195 0.424142 -0.206333 -0.554389 0.082952 0.005463 0.247268 0.169523 0.123207 0.168682 0.196578 -0.427250 0.288568 0.258730 0.327092 -0.149565 -0.291681 -0.007211 0.114177 0.013297 0.289843 -0.552652 0.063470 0.216083 0.388032 0.117560 0.140334 -0.207178 -0.166954 0.163625 0.005479 -0.076158 -0.136424 0.219202 -0.296158 -0.122989 -0.361520 -0.211774 +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.602555 0.102768 0.241850 -0.211948 -0.772431 0.135949 -0.045776 -0.716911 0.054818 0.373791 0.405710 -0.620612 -0.349183 0.765030 -0.121744 -0.360437 0.094677 -0.409695 0.019443 -0.431473 0.033865 0.315640 -0.121496 0.087745 -0.143104 0.044001 -0.199083 0.165537 0.314913 -0.340810 -0.591997 -0.205216 0.280010 0.858191 0.292510 -0.074371 -0.216494 1.176581 -0.169290 0.671672 -1.417426 -0.573200 0.449250 -0.009780 0.054868 -1.085217 -0.526511 0.615992 -0.046883 -0.313726 0.331531 -0.057985 -0.106659 -0.032502 0.072384 0.815693 -1.066752 0.825998 0.148106 -0.371869 -0.110395 -0.079192 -0.004737 0.429495 -0.398932 -0.637908 0.374257 0.394806 -0.435816 0.415940 -0.435828 -1.191520 0.702645 0.162693 -0.737349 -0.198724 0.122437 -0.429566 0.703954 -0.415760 -0.685809 -0.072068 0.050085 0.235156 0.293175 0.160327 0.451931 -1.403708 0.042633 -1.437732 0.616262 -0.816121 0.664885 0.563270 -0.799719 0.064584 0.250472 0.122281 1.119152 0.061020 0.767535 0.427693 0.428520 -0.068475 0.673671 0.426937 0.077915 -0.197186 -0.286199 -0.841994 0.201290 0.087413 -1.160225 0.254397 -0.485556 0.182619 -0.117121 0.174079 0.204623 0.596990 -1.045940 -0.699904 0.398658 -0.126630 0.738824 1.023474 -0.538857 0.483238 -0.555476 0.873802 -0.056945 0.407036 -0.134473 0.328948 -0.384357 -1.441301 -1.395098 0.304800 0.627146 -0.858402 -0.929599 -1.180689 0.050815 0.044039 -0.527618 0.641099 1.493251 -0.636557 -0.629564 0.766010 0.479059 -0.328023 0.986054 -0.145103 1.790205 -0.888034 0.387012 -0.110461 -0.052989 -0.086650 0.415925 0.015858 -0.387444 0.102081 0.195348 -1.397892 0.781287 -0.186207 -0.535719 0.232419 -0.076920 0.311820 -0.430754 0.705970 -0.022068 0.507922 -0.303071 0.798054 -0.505647 -0.796266 0.552629 -0.326721 -0.164968 0.240917 -0.167619 0.080998 1.001194 -0.821125 -0.216583 -0.119833 -0.822184 -0.272892 0.369231 0.440919 0.099446 0.248133 0.315986 0.619560 1.057129 0.243796 0.308318 -0.941568 0.341047 0.747838 0.148881 -0.912120 -0.163582 -1.004449 -0.065927 -0.242951 -0.167908 0.474820 -0.373657 -0.429401 -0.134486 -0.375143 0.544311 0.219798 -0.298192 0.344358 -0.322285 0.456832 0.083348 0.911392 0.594762 0.790761 0.793773 -0.385465 0.173743 -0.478640 -0.004900 0.337681 0.319424 0.062634 0.359245 0.353574 0.324395 0.043120 0.869610 -0.071370 0.249296 0.906778 0.270021 1.242053 -0.719126 0.486715 -0.213559 -0.523493 0.752235 1.810789 -0.234518 -0.256408 0.311345 0.027559 -0.465838 -0.679427 -0.261336 -0.214435 -0.457282 0.499212 0.198097 -0.074939 -0.449210 1.150694 0.117588 -1.267671 0.752232 0.014457 -0.032659 0.745199 -0.247670 0.069179 0.309300 -0.531420 0.266994 0.698383 0.787473 -0.649094 -0.955367 -0.245074 0.480208 0.348374 0.259493 -1.326943 0.429698 0.933547 1.116474 0.269972 0.183594 -0.948891 -0.356962 0.317438 -0.324212 -0.241523 0.302844 0.711106 -0.639654 -0.003155 -0.631298 -0.193778 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::cbegin() const = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_insert_dispatch(__gnu_cxx::__normal_iterator > >, int*, int*, std::__false_type) = 0.851608 0.465785 0.135986 -1.496279 -1.972332 0.517818 -0.722447 -0.751170 0.015917 0.181525 1.080669 -1.175648 -0.326559 2.181583 -0.337474 -1.117742 -0.180817 -1.619741 -0.226739 0.538565 -0.069271 0.897667 -0.466674 0.448862 -0.213567 0.571350 -0.765903 0.172745 1.541321 -1.206657 -1.940116 -0.083867 -0.356305 1.523148 0.476259 -1.319440 0.932696 2.836947 -0.743110 0.714983 -0.994313 -0.545428 0.395545 0.077847 -0.568178 -1.108079 -1.326981 1.092564 -0.705039 -0.177269 1.801296 -0.079556 -0.437517 0.348075 0.807216 1.129966 -2.677420 1.964123 0.751921 1.477233 0.664444 -0.565346 0.279825 0.365576 -0.333499 -0.886956 0.839028 0.418380 -0.729095 -0.580596 -0.656034 -2.059964 2.148446 0.839876 -1.118709 -0.007987 0.588683 -2.065323 1.450864 -1.840930 -2.062893 0.651105 -0.236508 -0.606315 2.238023 -0.527473 0.187494 -2.290657 0.786555 -2.633412 0.174579 -1.858795 0.536611 2.150869 -1.804449 -0.453330 0.406840 0.903687 2.080155 0.376509 1.802341 0.672093 0.157859 0.160544 0.681235 0.816741 -0.432260 0.269943 -0.723461 -1.926397 -0.496256 0.175163 -2.834612 0.821193 -0.114393 0.241914 0.036841 0.136810 -0.274367 0.795845 -1.176101 -1.486151 -0.231986 -0.211164 1.022230 2.515766 -0.931955 0.609295 -1.295946 1.916395 -0.199230 0.925719 -0.350446 0.334265 -0.877514 -1.647151 -2.585819 0.706023 1.173829 -1.098932 -1.759438 -2.045885 0.328629 -1.061442 -0.819017 2.294208 2.854011 -1.123396 -1.220262 2.448920 0.732724 0.458122 2.335299 -0.613288 2.570226 -0.821100 0.013856 -0.222689 -0.738986 -1.626621 -1.415083 0.552265 0.088669 -0.172194 -0.029280 -1.220083 1.587472 0.555953 -1.328324 -0.078324 0.209101 -0.747919 -1.817284 2.258767 0.373249 0.684935 1.322203 2.224040 -0.298675 -1.307824 1.477926 0.458515 0.580634 -1.052948 -1.205295 0.515303 1.102660 -0.813504 -0.320415 -0.038057 0.051857 -1.523216 0.061714 1.832588 0.581094 0.683603 1.119532 0.551404 2.790498 0.252740 0.942803 -1.967099 0.726826 1.121024 -1.338946 -1.334312 0.245966 -1.318239 0.083049 0.929127 -0.631011 0.369486 -1.266234 -1.664507 -0.217607 0.088192 1.675629 0.968143 -1.940183 0.575127 -1.064320 0.776509 1.028192 1.030018 1.251519 1.886755 1.951408 -0.348535 0.310930 0.615593 0.308846 -0.498978 0.152910 0.824557 0.971320 1.317104 0.861959 0.332568 0.873522 0.866185 -0.358618 1.490247 0.674506 2.744152 0.346176 -0.202913 -0.756384 -0.706832 1.420925 3.457460 -1.498112 0.361017 0.619008 0.799756 -0.400836 -1.707562 0.180183 -0.886955 -0.512610 -0.190374 -0.540892 0.066267 -0.352018 1.639954 -0.426406 -2.015912 0.785894 0.016071 0.713733 1.028597 0.230275 0.167394 0.208479 -2.333094 1.751558 1.642545 1.091865 -0.371741 -0.621447 -0.094390 1.019470 -0.809633 1.212222 -0.997702 1.416887 1.363850 1.370560 1.224468 0.204411 -1.176411 -1.306942 0.916193 -0.589628 -0.353661 -0.093856 1.316203 -1.591922 0.438443 -0.494313 -1.702369 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator+(long) const = 0.242407 -0.052423 0.188174 -0.855051 -1.011024 0.291469 -0.416212 -0.448575 0.116320 -0.014762 0.596319 -0.721428 -0.195919 1.457622 -0.139006 -0.802977 -0.048887 -0.233742 -0.071992 0.370774 0.081980 0.534305 -0.234342 0.171922 -0.066351 0.133360 -0.277256 0.258216 0.799505 -0.364990 -0.991078 -0.132020 -0.179140 0.967051 0.202535 -0.144414 0.373387 1.636446 -0.464869 1.217908 -0.808494 -0.479478 0.382120 0.107474 -0.260383 -0.723159 -1.004801 0.518584 -0.616368 -0.342234 0.941988 -0.059502 -0.118356 0.081377 0.595222 0.660753 -1.432876 0.777187 0.343277 0.470715 0.294224 -0.266403 -0.029795 0.263371 -0.609697 -0.517367 0.312169 0.398667 -0.435908 -0.225089 -0.279417 -1.296526 1.577913 0.481073 -0.816894 0.089688 0.515496 -1.131644 0.839476 -0.812380 -1.176526 0.204061 -0.111541 -0.330646 1.188901 -0.084784 0.526952 -1.460474 0.472371 -1.561960 0.477292 -1.130665 0.442124 1.282911 -1.138600 -0.056226 0.401533 0.769403 1.119528 0.400032 1.012297 0.618540 -0.004477 0.018589 0.663612 0.472580 -0.381500 -0.245962 -0.553653 -1.168246 -0.141713 -0.261042 -1.977491 0.268919 -0.078288 0.513756 -0.047419 0.202168 -0.054215 0.502002 -0.988221 -0.403592 0.058532 -0.142386 0.550521 1.353965 -0.475001 0.284150 -0.640311 1.144202 -0.307809 0.380359 -0.215770 0.287732 -0.704020 -0.684021 -1.263801 0.361151 0.551581 -0.654873 -1.047217 -1.344127 -0.008415 0.138158 -0.386442 1.226719 1.784286 -0.654349 -0.775718 1.270570 0.459246 0.200233 1.230046 -0.142106 1.498887 -0.601504 0.071350 -0.392685 -0.354064 -0.651169 -0.259024 0.357119 -0.204482 0.166568 -0.166518 -1.316289 1.483818 0.023497 -0.661904 -0.435954 0.103676 -0.507637 -0.838901 1.464517 -0.395072 0.632137 0.161518 1.367130 -0.349997 -0.779401 0.721406 -0.318620 0.087304 -0.779938 -0.541339 0.206429 0.810256 -0.808674 -0.297645 -0.099577 -0.245930 -0.651180 0.157330 0.633272 0.141100 0.291138 0.501394 0.786147 1.450552 0.250512 0.309676 -1.122857 0.397857 0.607494 -0.803015 -0.889369 0.216938 -0.806428 0.021857 0.138781 -0.279756 0.187128 -0.892450 -0.860857 -0.336552 -0.165053 0.826159 0.359945 -1.265431 0.251254 -0.323692 0.587594 0.679861 0.634238 1.022381 1.109932 1.048142 -0.095668 0.192078 0.125901 -0.098625 0.058404 0.231422 0.367615 0.483530 0.948161 0.455275 0.149069 0.623744 0.581458 0.159315 0.889538 0.513334 1.598341 0.436135 -0.161111 -0.237140 -0.389537 0.850650 2.061896 -0.813922 0.478936 0.443703 0.465891 -0.323181 -0.940673 0.064131 -0.456337 -0.585341 0.348912 -0.283572 0.060789 -0.275413 1.056931 -0.092326 -1.335649 0.402994 -0.012932 0.405985 0.742135 0.014190 0.183693 0.219338 -1.121535 1.066563 0.787664 0.651787 -0.462146 -0.453910 -0.108489 0.411765 0.373404 0.644659 -0.611289 0.784220 0.725107 1.048703 0.550395 0.289364 -0.684498 -0.519086 0.355628 -0.545731 -0.291650 -0.260624 0.541878 -0.588773 0.074327 -0.686593 -1.147845 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.093221 -0.044220 0.135184 -0.258447 -0.262661 0.079369 0.005624 -0.077334 0.034535 -0.147022 0.148534 -0.149125 -0.135710 0.438804 -0.000254 -0.272402 0.001352 -0.161159 -0.082067 0.177753 0.009493 0.137240 -0.060067 0.067451 0.002308 0.063687 -0.069603 0.111639 0.115606 -0.197537 -0.304987 -0.051206 -0.049445 0.305990 0.025707 0.058103 0.105635 0.555965 -0.066983 0.498760 -0.226181 -0.172430 0.104619 -0.018431 -0.077586 -0.289119 -0.291930 0.200602 -0.162083 -0.174416 0.322632 0.042681 -0.125432 -0.011324 0.215217 0.223083 -0.485371 0.211236 0.102585 0.166925 0.095639 -0.095914 -0.087074 -0.007770 -0.140929 -0.155861 0.094967 0.075282 -0.189809 0.002258 -0.062520 -0.381559 0.599238 0.177205 -0.210368 0.080938 0.259082 -0.280657 0.290821 -0.271584 -0.363809 0.035141 -0.062414 -0.052956 0.453453 -0.045164 0.083260 -0.453250 0.150257 -0.472887 0.165258 -0.439009 0.092918 0.409530 -0.275096 0.063235 0.147969 0.191971 0.222334 0.145838 0.314364 0.197404 0.010877 0.032742 0.267323 0.035971 -0.151404 -0.141972 -0.230882 -0.368309 -0.016435 -0.094083 -0.595766 0.070766 0.060544 0.230731 0.006657 0.163102 0.028348 0.022243 -0.361686 0.027743 0.092928 -0.053952 0.158743 0.416405 -0.189159 0.052819 -0.232660 0.370167 -0.108666 0.187454 -0.063736 0.076659 -0.110262 -0.197264 -0.327469 0.052479 0.156003 -0.141620 -0.333302 -0.397950 0.000000 0.152158 -0.132397 0.359524 0.582706 -0.180701 -0.192813 0.399189 0.263921 0.159153 0.274826 0.003419 0.413258 -0.145272 -0.032345 -0.096502 -0.116440 -0.176220 -0.184195 0.140377 -0.080916 0.108078 -0.024585 -0.488335 0.611662 -0.064795 -0.193633 0.023311 -0.023756 -0.196064 -0.303022 0.482354 0.030659 0.255615 0.107827 0.436551 -0.076147 -0.188792 0.179038 -0.049356 0.091526 -0.352775 -0.163522 0.046986 0.200346 -0.308128 -0.128275 -0.039067 -0.120677 -0.174447 0.043119 0.146052 0.039998 0.068144 0.205300 0.195073 0.445911 0.067244 0.077197 -0.410408 0.134772 0.075394 -0.229074 -0.222620 0.121168 -0.166602 0.002110 0.079160 -0.058722 -0.009786 -0.221752 -0.262615 -0.050293 -0.093015 0.151765 0.112153 -0.334922 -0.056210 0.024890 0.177328 0.231568 0.167122 0.405970 0.305785 0.326113 -0.001938 0.048401 0.124947 -0.135220 -0.045146 -0.026823 0.212688 0.130960 0.182399 0.162521 -0.006703 0.208943 0.215876 0.067226 0.272769 0.270820 0.497256 0.201576 -0.128967 -0.025406 -0.100076 0.272384 0.543201 -0.306590 0.245438 0.172136 0.197487 -0.099815 -0.226811 -0.013890 -0.155424 -0.217538 0.216669 -0.104544 -0.010653 -0.028143 0.321628 -0.072311 -0.427697 0.022425 0.010697 0.146027 0.253635 0.050096 0.103676 0.104713 -0.340856 0.312333 0.172951 0.209016 -0.159650 -0.126141 -0.024034 0.060329 0.066686 0.224560 -0.160508 0.139826 0.161883 0.325751 0.138724 0.022190 -0.192353 -0.133845 0.111246 -0.184217 -0.095489 -0.028021 0.187602 -0.121528 -0.075755 -0.295918 -0.357322 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int const* const&) = 0.092269 0.093212 0.335854 -0.573039 -0.731795 0.055472 0.141578 -0.198937 0.055516 -0.029141 0.411658 -0.437137 -0.223122 0.950162 -0.081220 -0.426361 -0.041325 -0.332002 -0.182430 0.184327 0.072263 0.379587 -0.111898 0.137716 0.007450 0.096358 -0.159312 0.355053 0.293113 -0.288108 -0.483178 -0.103444 0.001259 0.606293 0.034091 -0.092303 0.155517 1.102676 -0.581544 0.852532 -0.542988 -0.337953 0.356737 0.004183 -0.170329 -0.847456 -0.778630 0.413690 -0.233045 -0.340463 0.617509 0.123721 -0.075113 -0.046632 0.411584 0.495096 -0.980795 0.405282 0.263549 0.134765 0.146681 -0.124426 -0.156866 0.106491 -0.408924 -0.341142 0.150459 0.066128 -0.192477 -0.046517 -0.082950 -0.788948 1.050394 0.222444 -0.407200 0.173049 0.450168 -0.769496 0.660998 -0.493458 -0.707919 0.073184 -0.089753 -0.176878 0.768635 -0.165063 0.231925 -0.934595 0.110818 -0.945053 0.334265 -0.866259 0.144944 0.786414 -0.575287 0.135237 0.245927 0.294921 0.615983 0.257103 0.610530 0.464675 0.304978 0.123232 0.502422 0.333947 -0.354837 -0.321380 -0.598278 -0.797795 0.045027 -0.205673 -1.240489 0.188162 0.157027 0.063449 0.046306 0.021481 0.092132 0.509033 -0.487524 0.177949 0.295753 -0.102819 0.107159 0.931232 -0.341234 0.089259 -0.466336 0.707377 -0.222609 0.526514 -0.042644 0.203419 -0.402277 -0.647863 -0.619676 0.170934 0.215537 -0.329442 -0.602658 -0.882359 0.070834 0.149660 -0.289628 0.450076 1.201113 -0.424203 -0.563825 0.817178 0.741951 0.081941 0.466041 -0.029625 0.966302 -0.290038 -0.125855 -0.345579 -0.342403 -0.269748 0.228399 0.293982 -0.193498 0.225886 -0.090215 -1.350226 1.218865 -0.106717 -0.401034 0.127873 0.091190 -0.385484 -0.583071 0.968671 0.077482 0.540254 0.036209 0.855863 -0.163575 -0.470380 0.364585 -0.111268 0.166820 -0.715508 -0.309518 0.291286 0.454315 -0.440655 -0.221750 -0.228696 -0.279998 -0.398591 0.094205 -0.109810 0.133925 0.158692 0.395145 0.241522 0.903525 0.140254 0.198795 -0.792584 0.301750 0.237474 -0.309693 -0.791464 0.168170 -0.401752 -0.011844 0.009365 -0.150449 0.116833 -0.411398 -0.472039 -0.036762 -0.319619 0.200579 0.169712 -0.834702 0.043113 -0.159427 0.524574 0.339818 0.378455 0.848242 0.672350 0.659593 0.101827 0.067516 0.129307 -0.280554 0.053010 0.056256 0.139219 0.323140 0.600791 0.355699 0.056266 0.498925 0.400044 0.097085 0.582474 0.391318 1.012315 0.335475 -0.215715 -0.083100 -0.087842 0.551130 1.198670 -0.138573 0.223565 0.318380 0.346845 -0.285625 -0.519008 -0.011409 -0.279793 -0.344066 0.549243 -0.068939 -0.128772 -0.022332 0.659277 -0.124814 -0.901348 0.114986 0.010223 0.319744 0.428122 0.069192 0.191841 0.255379 -0.592303 0.674258 0.433464 0.421383 -0.396581 -0.476209 -0.020866 0.183349 0.355342 0.500427 -0.912321 0.301427 0.358622 0.647889 0.096663 0.431424 -0.486449 -0.268926 0.312137 -0.242557 -0.226572 -0.066880 0.323278 -0.472594 -0.000897 -0.612075 -0.633608 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_range_insert(__gnu_cxx::__normal_iterator > >, int*, int*, std::forward_iterator_tag) = 8.227774 -0.238803 13.070129 -11.889257 -18.284516 10.924612 -16.625692 -11.870031 4.936062 9.044291 8.778266 -4.514009 0.222130 15.160795 -7.766626 -11.869724 -2.704044 -4.416726 4.060798 -9.809940 2.665382 3.876471 -3.132688 4.172094 -5.783186 -8.344830 1.152471 4.248568 7.519923 -0.260507 -11.737722 -3.448905 -6.593286 16.752157 5.968058 -4.728209 5.360079 26.247321 -1.362989 6.430446 -13.821873 -16.912158 3.908962 2.601157 -0.792835 -1.886510 -10.591653 5.505601 -8.485364 1.421253 14.092504 -4.528979 4.967462 4.320951 4.273855 1.910803 -21.676618 7.327166 -1.590079 -3.194307 -1.780421 -2.568050 5.417715 12.504907 -6.639029 -6.634640 14.465817 17.553765 -5.622339 -1.247270 -0.395427 -22.722883 18.655577 6.156571 -8.878842 -1.613732 16.072610 -14.716258 14.982275 -4.408552 -22.694016 0.226656 -4.576927 -19.146253 17.765647 -1.502926 15.433194 -24.203048 16.253965 -27.023037 10.343423 -11.092400 8.905547 14.350896 -18.026536 -0.493978 14.231984 24.469118 17.345637 -4.915911 18.766128 9.909462 -0.189317 6.362592 14.120533 4.900800 -4.780527 -0.002809 -13.921255 -20.349993 -1.774876 -11.804230 -27.468003 3.853053 -1.522379 0.380693 -4.661938 0.275830 -3.309397 18.519253 -25.206688 -8.448586 1.322631 -1.934038 5.859223 12.832066 -8.920272 9.568459 -0.605745 21.454830 -15.082900 -1.536434 0.262227 4.244316 -6.544609 -1.072020 -28.495192 11.557528 13.286543 -12.783058 -17.718433 -16.035280 -4.811835 7.124475 -2.474260 30.936476 32.466103 -10.390648 -16.299695 16.171375 1.000146 -6.248561 27.609572 2.278861 22.181501 -10.266927 -2.415341 -16.156166 -5.596232 -5.200939 -6.732030 6.945180 7.556236 11.652981 5.180123 3.322856 23.070903 -9.566468 -13.216620 -7.828053 6.800716 -6.729272 -8.259835 15.822356 -1.288525 8.281515 9.876015 24.466783 -8.652303 -16.389816 5.551545 -13.517729 -0.768757 -4.582715 -2.383086 -3.501192 16.837821 -10.308762 -7.397540 -6.763563 -11.102541 -4.303121 1.990840 18.768371 10.920950 8.679391 4.929846 16.589934 29.839861 12.683803 -1.041535 -17.262634 4.605453 14.940384 -8.682920 -6.953719 -2.604563 -14.130995 3.371265 -1.099315 -2.259446 11.211224 -17.169157 -10.689988 -13.708834 -0.340153 11.700292 8.394559 -30.305487 6.973055 -4.205350 11.301089 8.051247 9.292930 19.634116 21.228890 21.740250 -3.646409 5.133287 -1.729027 6.010644 -0.645280 11.976331 9.448006 5.296420 21.645193 5.644694 6.729624 12.310558 13.921681 8.249504 14.244707 -3.867783 28.624050 -6.604851 6.326686 -13.145883 -0.578753 13.552736 36.981292 -4.817812 9.972573 5.914476 9.987215 -4.041791 -23.842927 4.551051 -7.704759 8.220065 -3.202793 9.836173 1.049739 -9.894641 15.435435 6.643992 -23.023005 10.677556 -0.576220 2.451064 18.152835 -4.580045 -1.120383 -0.852010 -17.416299 18.551855 15.620477 8.356524 -15.019197 1.132772 -0.312216 14.241017 -5.621894 11.297462 -12.741365 17.794578 9.960755 12.675062 9.133277 9.813887 -19.584521 -12.256625 10.200922 -16.573691 -6.348577 10.570875 11.908630 -16.417518 10.799835 -8.950523 -18.818423 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::iterator_category std::__iterator_category(int* const&) = 0.053553 0.043895 0.024069 -0.177043 -0.115813 -0.042066 0.210259 0.037681 -0.031649 -0.195877 0.102177 -0.107553 -0.222049 0.240349 0.076257 -0.183055 0.033826 -0.285028 -0.154163 0.198448 -0.032907 0.102237 -0.009530 0.011150 0.094000 0.153106 -0.138678 0.105557 0.108165 -0.334692 -0.173690 0.010828 0.047385 0.173947 -0.063551 -0.000563 0.062598 0.345717 -0.057816 0.244943 -0.113824 -0.028138 0.157895 -0.063068 -0.131061 -0.320903 -0.139228 0.207302 -0.067585 -0.184750 0.175247 0.099751 -0.180023 -0.112547 0.095632 0.300945 -0.386358 0.227231 0.139397 0.188332 0.062199 -0.040492 -0.080076 -0.148302 0.049328 -0.142274 -0.004730 -0.165984 -0.183405 -0.006014 -0.070998 -0.162685 0.441598 0.102930 -0.053245 0.132396 0.052092 -0.137113 0.183366 -0.248552 -0.138673 0.016549 0.027989 0.135672 0.294491 -0.081250 -0.137766 -0.265569 -0.068781 -0.233674 0.062751 -0.328244 0.034475 0.254729 -0.103132 0.099699 -0.005998 -0.182279 0.037119 0.133136 0.215985 0.008643 0.112828 0.016896 0.091272 -0.019365 -0.116459 -0.098878 -0.126741 -0.212405 0.020001 0.079807 -0.315290 0.094588 0.019515 0.109106 0.134192 0.085044 0.076764 -0.093783 -0.062606 0.068236 0.099736 -0.039724 0.106100 0.373751 -0.091398 -0.068503 -0.225177 0.191541 0.052096 0.254575 -0.036120 0.057952 0.091837 -0.332462 -0.067304 -0.072585 0.031492 -0.071870 -0.172394 -0.221124 0.101121 -0.064899 -0.155484 0.073952 0.348920 -0.100390 -0.094036 0.291731 0.301349 0.246012 0.037333 -0.040962 0.313440 -0.090433 -0.034903 0.090555 -0.076964 -0.053934 -0.154949 0.053021 -0.126957 -0.022872 -0.009229 -0.436362 0.320775 0.048411 -0.059762 0.321600 -0.065685 -0.133913 -0.328555 0.282355 0.320538 0.237263 0.148580 0.260731 0.002391 -0.105485 0.174223 0.248956 0.093878 -0.282513 -0.195586 0.106078 -0.005581 -0.142502 -0.052059 -0.044488 0.012691 -0.174019 0.060853 0.040121 0.026820 -0.013876 0.134727 -0.109880 0.195339 -0.104404 0.123992 -0.332327 0.090317 -0.021586 -0.074612 -0.200983 0.114675 -0.052246 -0.023664 0.243635 -0.081502 -0.033898 0.015736 -0.164212 0.158257 -0.067647 0.022857 0.004337 -0.060820 -0.116690 0.012179 0.032409 0.123575 0.163276 0.237066 0.113834 0.085336 0.055496 0.005911 0.169893 -0.175274 -0.141595 -0.233713 0.220539 0.139759 -0.057069 0.135917 -0.016587 0.171410 0.063720 -0.085381 0.201356 0.276125 0.289743 0.166768 -0.202214 0.082351 -0.104402 0.180487 0.214194 -0.242675 0.032917 0.141075 0.143298 -0.052950 -0.098500 -0.056526 -0.101424 -0.231743 0.276811 -0.147367 -0.027735 0.057951 0.221162 -0.146079 -0.279022 0.028647 0.014924 0.137632 0.033261 0.096160 0.095977 0.150934 -0.225785 0.046527 0.072764 0.188493 -0.072394 -0.101575 -0.002027 0.046356 -0.094620 0.138744 -0.190504 -0.065373 0.074219 0.193807 0.073887 -0.036806 -0.040971 -0.084382 0.046334 0.037396 -0.021896 -0.064585 0.094005 -0.094712 -0.153296 -0.205218 -0.053582 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::distance(int*, int*) = 0.328685 0.322446 -0.018886 -0.607675 -0.803217 0.085487 -0.173559 -0.299380 -0.055179 0.082888 0.447990 -0.632583 -0.337538 1.008354 -0.208020 -0.536013 -0.107543 -0.625922 -0.192162 0.244131 -0.017057 0.425445 -0.130422 0.072272 0.003780 0.312092 -0.370079 0.066179 0.739811 -0.620595 -0.752887 0.000958 0.085545 0.639661 0.107426 -0.426529 0.280362 1.081079 -0.287521 0.427329 -0.679268 -0.261890 0.320643 0.043854 -0.172798 -0.851580 -0.571263 0.524050 -0.363134 -0.139995 0.578945 0.009528 -0.316172 -0.028705 0.300373 0.677162 -1.239883 1.075554 0.357479 0.546094 0.272506 -0.157496 0.084634 0.036601 0.032705 -0.454620 0.108114 0.117869 -0.468624 -0.138540 -0.309115 -0.764533 1.041919 0.254615 -0.528641 0.072867 0.041399 -0.734036 0.564907 -1.101932 -0.688333 0.224821 0.123225 0.210129 0.749119 -0.026872 -0.030766 -0.998144 0.067765 -1.031854 0.195933 -0.792106 0.277391 0.832409 -0.709315 -0.106470 0.065326 -0.124872 0.928659 0.413156 0.735453 0.233702 0.247260 -0.028015 0.151689 0.389158 -0.168813 0.016333 -0.189922 -0.817021 -0.201739 0.290763 -1.251811 0.294034 -0.131544 0.314332 0.138104 -0.005312 0.046214 0.151395 -0.527678 -0.706176 -0.019963 -0.078419 0.529326 1.104720 -0.283351 0.204638 -0.603892 0.739803 0.069632 0.408462 -0.099395 0.173733 -0.321911 -1.176224 -1.013551 0.211744 0.356261 -0.458810 -0.687000 -0.936943 0.194433 -0.456941 -0.415351 0.646494 1.162844 -0.427509 -0.572711 1.000507 0.402638 0.243354 0.913018 -0.267614 1.254538 -0.450265 0.099689 0.124026 -0.259494 -0.490884 -0.362055 0.118369 -0.232460 -0.167605 -0.025061 -1.009570 0.343563 0.275392 -0.435841 0.032105 -0.009899 -0.302921 -0.691756 0.870011 0.175024 0.465625 0.260063 0.927449 -0.237449 -0.665209 0.644827 0.150471 0.168588 -0.305572 -0.503670 0.294283 0.446278 -0.515163 -0.103473 0.047073 0.014380 -0.663859 0.170245 0.441383 0.122952 0.187433 0.372404 0.262824 0.933032 -0.099943 0.504729 -0.841811 0.272545 0.424089 -0.374576 -0.944024 0.157651 -0.606048 0.000432 0.515467 -0.326634 0.095700 -0.276517 -0.630799 0.063453 -0.189262 0.685460 0.202192 -0.234023 0.168963 -0.538856 0.324786 0.312801 0.580609 0.513585 0.704448 0.598182 -0.050206 0.130396 0.072342 0.217838 -0.116594 0.006146 0.169636 0.459946 0.419482 0.327713 0.100614 0.488919 0.256017 -0.318219 0.690985 0.333399 1.076804 -0.034174 -0.100293 -0.188289 -0.376485 0.600494 1.402346 -0.773949 -0.060871 0.280709 0.231569 -0.070831 -0.556340 -0.037378 -0.334125 -0.569728 0.292940 -0.197327 0.028507 -0.097931 0.751432 -0.201453 -0.836241 0.505414 0.001194 0.274081 0.215332 0.048660 0.015532 0.257385 -0.856112 0.381304 0.634585 0.577338 -0.221820 -0.532844 -0.090748 0.465028 -0.117884 0.443955 -0.602928 0.366575 0.720617 0.695080 0.391423 0.071564 -0.436875 -0.602415 0.279162 -0.011156 -0.166713 -0.214540 0.421153 -0.563137 -0.005541 -0.130291 -0.551426 +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.602555 0.102768 0.241850 -0.211948 -0.772431 0.135949 -0.045776 -0.716911 0.054818 0.373791 0.405710 -0.620612 -0.349183 0.765030 -0.121744 -0.360437 0.094677 -0.409695 0.019443 -0.431473 0.033865 0.315640 -0.121496 0.087745 -0.143104 0.044001 -0.199083 0.165537 0.314913 -0.340810 -0.591997 -0.205216 0.280010 0.858191 0.292510 -0.074371 -0.216494 1.176581 -0.169290 0.671672 -1.417426 -0.573200 0.449250 -0.009780 0.054868 -1.085217 -0.526511 0.615992 -0.046883 -0.313726 0.331531 -0.057985 -0.106659 -0.032502 0.072384 0.815693 -1.066752 0.825998 0.148106 -0.371869 -0.110395 -0.079192 -0.004737 0.429495 -0.398932 -0.637908 0.374257 0.394806 -0.435816 0.415940 -0.435828 -1.191520 0.702645 0.162693 -0.737349 -0.198724 0.122437 -0.429566 0.703954 -0.415760 -0.685809 -0.072068 0.050085 0.235156 0.293175 0.160327 0.451931 -1.403708 0.042633 -1.437732 0.616262 -0.816121 0.664885 0.563270 -0.799719 0.064584 0.250472 0.122281 1.119152 0.061020 0.767535 0.427693 0.428520 -0.068475 0.673671 0.426937 0.077915 -0.197186 -0.286199 -0.841994 0.201290 0.087413 -1.160225 0.254397 -0.485556 0.182619 -0.117121 0.174079 0.204623 0.596990 -1.045940 -0.699904 0.398658 -0.126630 0.738824 1.023474 -0.538857 0.483238 -0.555476 0.873802 -0.056945 0.407036 -0.134473 0.328948 -0.384357 -1.441301 -1.395098 0.304800 0.627146 -0.858402 -0.929599 -1.180689 0.050815 0.044039 -0.527618 0.641099 1.493251 -0.636557 -0.629564 0.766010 0.479059 -0.328023 0.986054 -0.145103 1.790205 -0.888034 0.387012 -0.110461 -0.052989 -0.086650 0.415925 0.015858 -0.387444 0.102081 0.195348 -1.397892 0.781287 -0.186207 -0.535719 0.232419 -0.076920 0.311820 -0.430754 0.705970 -0.022068 0.507922 -0.303071 0.798054 -0.505647 -0.796266 0.552629 -0.326721 -0.164968 0.240917 -0.167619 0.080998 1.001194 -0.821125 -0.216583 -0.119833 -0.822184 -0.272892 0.369231 0.440919 0.099446 0.248133 0.315986 0.619560 1.057129 0.243796 0.308318 -0.941568 0.341047 0.747838 0.148881 -0.912120 -0.163582 -1.004449 -0.065927 -0.242951 -0.167908 0.474820 -0.373657 -0.429401 -0.134486 -0.375143 0.544311 0.219798 -0.298192 0.344358 -0.322285 0.456832 0.083348 0.911392 0.594762 0.790761 0.793773 -0.385465 0.173743 -0.478640 -0.004900 0.337681 0.319424 0.062634 0.359245 0.353574 0.324395 0.043120 0.869610 -0.071370 0.249296 0.906778 0.270021 1.242053 -0.719126 0.486715 -0.213559 -0.523493 0.752235 1.810789 -0.234518 -0.256408 0.311345 0.027559 -0.465838 -0.679427 -0.261336 -0.214435 -0.457282 0.499212 0.198097 -0.074939 -0.449210 1.150694 0.117588 -1.267671 0.752232 0.014457 -0.032659 0.745199 -0.247670 0.069179 0.309300 -0.531420 0.266994 0.698383 0.787473 -0.649094 -0.955367 -0.245074 0.480208 0.348374 0.259493 -1.326943 0.429698 0.933547 1.116474 0.269972 0.183594 -0.948891 -0.356962 0.317438 -0.324212 -0.241523 0.302844 0.711106 -0.639654 -0.003155 -0.631298 -0.193778 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_a >(int*, int*, int*, std::allocator&) = 0.300810 0.234932 0.595211 -1.324146 -2.180796 0.570132 -0.957922 -0.861192 0.192770 -0.116402 1.127707 -1.270596 -0.519945 2.240864 -0.475453 -1.384586 -0.371509 -0.292360 -0.089796 0.136778 0.168005 0.757752 -0.399859 0.513194 -0.395668 0.078885 -0.395476 0.545593 1.697599 -0.369110 -1.611444 -0.198363 -0.225055 1.545441 0.494518 -0.509058 0.777898 2.750933 -0.735968 1.483356 -1.301031 -0.822184 0.411291 0.268541 -0.375962 -1.393270 -1.851052 0.866202 -1.647957 -0.061054 1.821765 -0.072969 -0.032219 0.466185 1.127278 0.972506 -2.533182 1.704313 0.447264 0.654036 0.738514 -0.374014 -0.253343 0.647406 -0.575384 -0.740007 0.554823 0.951110 -0.536499 -0.339550 -0.290249 -2.117795 2.699944 0.571096 -1.437371 0.015171 1.183133 -1.782157 1.445043 -1.438300 -2.132983 0.448046 -0.206046 -0.443673 2.058343 -0.193276 0.646134 -2.331760 0.465640 -2.655427 0.785298 -1.851149 0.543378 1.943144 -2.080018 -0.249401 0.770939 0.770670 2.087745 0.564590 1.583948 0.957359 0.197643 0.200421 0.981895 0.754149 -0.452771 -0.206526 -1.058082 -2.073924 -0.433481 -0.377744 -3.339910 0.370842 0.073879 0.812053 -0.188700 0.118973 -0.034462 0.881963 -1.290415 -0.606284 0.074157 -0.203131 0.885754 2.237100 -0.925601 0.795747 -0.923154 2.003865 -0.687964 0.691080 -0.292203 0.357140 -0.853771 -1.657556 -2.781470 0.911345 1.079612 -0.855369 -1.685702 -1.937944 0.009152 -0.075069 -0.517234 1.693776 2.971584 -1.093084 -1.385564 2.170990 0.760326 0.264733 2.248408 -0.205715 2.497513 -0.800219 -0.053979 -0.937628 -0.901120 -1.282184 -0.387379 0.706394 -0.136550 0.368601 0.049594 -2.020842 1.930841 -0.158368 -1.388328 -0.763317 0.244491 -0.786592 -1.230144 2.344395 -0.264807 0.820536 0.489371 2.223705 -0.573319 -1.696617 1.041475 -0.320584 0.382367 -0.900696 -0.839046 0.602694 1.310544 -1.283550 -0.494202 -0.294852 -0.362424 -1.132572 0.016326 1.336874 0.329379 0.718099 1.074282 1.084185 2.748199 0.698976 0.567499 -1.852350 0.665191 0.950062 -1.223221 -1.714735 0.392813 -1.307531 0.129848 0.220996 -0.432608 0.324022 -1.256839 -1.397124 -0.791235 -0.571461 1.552294 0.913769 -1.975305 0.563022 -0.669682 1.064196 1.048373 0.804984 1.829345 1.954849 2.128646 0.004750 0.399269 0.214613 0.523492 0.086092 0.796425 0.374994 0.725743 1.672417 0.739131 0.159414 0.963654 1.126636 0.175312 1.373773 0.679688 2.717949 0.452300 0.004552 -0.764285 -0.413992 1.344024 3.640761 -1.112102 0.805966 0.625536 0.932560 -0.198822 -1.925272 0.131764 -0.794048 -0.697512 0.666310 -0.227240 -0.043885 -0.427681 1.519928 -0.087732 -1.947303 0.694146 -0.006738 0.487426 1.066277 -0.007316 -0.115527 0.240250 -2.078041 1.863670 1.452204 0.983792 -0.770003 -0.953471 -0.205570 0.711485 0.412838 1.226630 -1.240327 1.086659 1.379118 1.604981 0.900522 0.569194 -1.373340 -1.356459 0.852731 -1.012095 -0.599599 -0.234422 0.889548 -1.312065 0.450219 -0.578413 -2.328613 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::move_backward(int*, int*, int*) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::base() const = 0.093221 -0.044220 0.135184 -0.258447 -0.262661 0.079369 0.005624 -0.077334 0.034535 -0.147022 0.148534 -0.149125 -0.135710 0.438804 -0.000254 -0.272402 0.001352 -0.161159 -0.082067 0.177753 0.009493 0.137240 -0.060067 0.067451 0.002308 0.063687 -0.069603 0.111639 0.115606 -0.197537 -0.304987 -0.051206 -0.049445 0.305990 0.025707 0.058103 0.105635 0.555965 -0.066983 0.498760 -0.226181 -0.172430 0.104619 -0.018431 -0.077586 -0.289119 -0.291930 0.200602 -0.162083 -0.174416 0.322632 0.042681 -0.125432 -0.011324 0.215217 0.223083 -0.485371 0.211236 0.102585 0.166925 0.095639 -0.095914 -0.087074 -0.007770 -0.140929 -0.155861 0.094967 0.075282 -0.189809 0.002258 -0.062520 -0.381559 0.599238 0.177205 -0.210368 0.080938 0.259082 -0.280657 0.290821 -0.271584 -0.363809 0.035141 -0.062414 -0.052956 0.453453 -0.045164 0.083260 -0.453250 0.150257 -0.472887 0.165258 -0.439009 0.092918 0.409530 -0.275096 0.063235 0.147969 0.191971 0.222334 0.145838 0.314364 0.197404 0.010877 0.032742 0.267323 0.035971 -0.151404 -0.141972 -0.230882 -0.368309 -0.016435 -0.094083 -0.595766 0.070766 0.060544 0.230731 0.006657 0.163102 0.028348 0.022243 -0.361686 0.027743 0.092928 -0.053952 0.158743 0.416405 -0.189159 0.052819 -0.232660 0.370167 -0.108666 0.187454 -0.063736 0.076659 -0.110262 -0.197264 -0.327469 0.052479 0.156003 -0.141620 -0.333302 -0.397950 0.000000 0.152158 -0.132397 0.359524 0.582706 -0.180701 -0.192813 0.399189 0.263921 0.159153 0.274826 0.003419 0.413258 -0.145272 -0.032345 -0.096502 -0.116440 -0.176220 -0.184195 0.140377 -0.080916 0.108078 -0.024585 -0.488335 0.611662 -0.064795 -0.193633 0.023311 -0.023756 -0.196064 -0.303022 0.482354 0.030659 0.255615 0.107827 0.436551 -0.076147 -0.188792 0.179038 -0.049356 0.091526 -0.352775 -0.163522 0.046986 0.200346 -0.308128 -0.128275 -0.039067 -0.120677 -0.174447 0.043119 0.146052 0.039998 0.068144 0.205300 0.195073 0.445911 0.067244 0.077197 -0.410408 0.134772 0.075394 -0.229074 -0.222620 0.121168 -0.166602 0.002110 0.079160 -0.058722 -0.009786 -0.221752 -0.262615 -0.050293 -0.093015 0.151765 0.112153 -0.334922 -0.056210 0.024890 0.177328 0.231568 0.167122 0.405970 0.305785 0.326113 -0.001938 0.048401 0.124947 -0.135220 -0.045146 -0.026823 0.212688 0.130960 0.182399 0.162521 -0.006703 0.208943 0.215876 0.067226 0.272769 0.270820 0.497256 0.201576 -0.128967 -0.025406 -0.100076 0.272384 0.543201 -0.306590 0.245438 0.172136 0.197487 -0.099815 -0.226811 -0.013890 -0.155424 -0.217538 0.216669 -0.104544 -0.010653 -0.028143 0.321628 -0.072311 -0.427697 0.022425 0.010697 0.146027 0.253635 0.050096 0.103676 0.104713 -0.340856 0.312333 0.172951 0.209016 -0.159650 -0.126141 -0.024034 0.060329 0.066686 0.224560 -0.160508 0.139826 0.161883 0.325751 0.138724 0.022190 -0.192353 -0.133845 0.111246 -0.184217 -0.095489 -0.028021 0.187602 -0.121528 -0.075755 -0.295918 -0.357322 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::copy > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 0.492539 0.212061 0.587909 -1.134939 -1.914161 0.708512 -1.260082 -0.857464 0.174564 -0.136170 0.906827 -0.921405 -0.395663 1.734248 -0.560619 -1.314506 -0.437929 -0.475071 -0.012622 -0.146932 0.066239 0.535467 -0.403166 0.492455 -0.422702 -0.094123 -0.286931 0.337829 1.517201 -0.425916 -1.458796 -0.174423 -0.361563 1.436510 0.558044 -0.575975 0.849138 2.524793 -0.093165 0.748269 -1.042612 -0.911816 0.222792 0.212922 -0.335361 -0.778145 -1.341672 0.715164 -1.609690 0.358302 1.626648 -0.189698 -0.104947 0.529049 0.883286 0.674353 -2.353383 1.703615 0.259466 0.665647 0.533278 -0.421618 -0.061563 0.555932 -0.148184 -0.624178 0.767903 1.181834 -0.607489 -0.247524 -0.225814 -1.858333 2.372497 0.577268 -1.144781 -0.063871 1.119405 -1.404653 1.224009 -1.263720 -2.012150 0.383311 -0.151650 -0.601577 1.978507 -0.168088 0.512276 -2.074135 0.695138 -2.438739 0.571463 -1.496322 0.562683 1.661906 -1.956815 -0.255262 0.801590 0.879358 1.759785 0.285483 1.527365 0.659136 -0.040477 0.308044 0.804433 0.436006 -0.230782 0.099900 -0.827472 -1.817824 -0.566418 -0.319645 -2.886890 0.359503 -0.048569 0.772142 -0.308387 0.240055 -0.160782 0.643072 -1.408507 -0.954870 -0.125420 -0.179889 0.948122 1.756139 -0.855964 0.843773 -0.700011 1.877695 -0.722537 0.360136 -0.332844 0.260348 -0.445173 -1.299396 -2.904032 0.865252 1.164438 -0.795131 -1.614328 -1.438613 -0.131821 -0.173274 -0.400484 2.037885 2.689024 -0.942805 -1.246352 1.973560 0.320232 0.336639 2.404458 -0.120174 2.084836 -0.679954 -0.069600 -0.817037 -0.734465 -1.212732 -1.300397 0.589327 0.176528 0.374557 0.314012 -0.675597 1.496880 -0.241044 -1.331363 -0.741100 0.238586 -0.694968 -1.113208 1.947578 0.126556 0.684738 0.928489 2.089084 -0.582521 -1.630777 0.866833 -0.262401 0.384297 -0.513706 -0.666867 0.241869 1.151083 -1.124743 -0.526741 -0.158783 -0.267587 -0.977755 -0.023923 2.061875 0.478443 0.721861 0.957663 0.980135 2.679457 0.690909 0.476656 -1.681342 0.538796 1.006839 -1.100884 -1.167899 0.293651 -1.078056 0.168132 0.419307 -0.328666 0.362582 -1.136678 -1.236729 -0.883148 -0.229047 1.600493 0.991060 -1.776818 0.554793 -0.654348 0.742326 0.935553 0.665608 1.641064 1.737934 1.983686 -0.150434 0.442435 0.204570 0.907769 -0.179178 0.819744 0.697467 0.602223 1.495224 0.656276 0.218538 0.777024 1.167179 0.123195 1.212025 0.457191 2.595532 -0.005145 0.172305 -0.964299 -0.323330 1.226013 3.325186 -1.278206 0.845375 0.543305 0.987244 0.022383 -2.031431 0.159486 -0.746885 -0.260102 0.126253 -0.087754 -0.016253 -0.471074 1.357684 0.034880 -1.659043 0.779946 0.048293 0.341203 0.909549 -0.048899 -0.332802 0.157906 -2.064734 1.612138 1.365200 0.841624 -0.701111 -0.490640 -0.167032 0.909449 -0.389757 1.127209 -0.564531 1.162568 1.272679 1.289036 1.063169 0.200160 -1.258578 -1.492254 0.817147 -1.065139 -0.526990 0.217166 0.927100 -1.321260 0.624294 -0.217365 -2.227780 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::advance(int*&, unsigned long) = 0.412548 0.348761 0.016579 -0.877242 -0.959175 0.027799 -0.007004 -0.379494 -0.044348 0.316468 0.572466 -0.827825 -0.309160 1.461490 -0.276757 -0.597084 -0.024412 -0.801993 -0.232566 0.348469 0.020409 0.684070 -0.162152 -0.000735 0.144335 0.349246 -0.457717 0.186409 0.762550 -0.747743 -0.870982 -0.044527 0.121103 0.900884 0.068331 -0.502015 0.248274 1.447509 -0.687596 0.801981 -1.017244 -0.401541 0.634172 0.044293 -0.232738 -1.267656 -0.856154 0.641379 -0.188605 -0.349341 0.628588 0.001384 -0.314983 -0.193712 0.347254 0.944518 -1.589508 1.136153 0.507590 0.544461 0.194988 -0.215102 0.153970 0.025564 -0.277501 -0.649365 0.123643 0.061865 -0.571455 -0.148480 -0.409969 -1.030399 1.269129 0.347467 -0.654897 0.173116 -0.024241 -1.171817 0.775029 -1.332571 -0.838400 0.188374 0.172945 0.134060 0.882753 -0.056527 0.180416 -1.401184 0.120114 -1.355135 0.312389 -1.087003 0.442021 1.158189 -0.890349 0.012996 0.078609 0.096013 1.183169 0.552936 1.006226 0.477177 0.416113 -0.046817 0.311675 0.684828 -0.339527 -0.152816 -0.332840 -1.027112 -0.140546 0.246814 -1.725510 0.385128 -0.217639 0.175006 0.192097 -0.092215 0.053707 0.561547 -0.780316 -0.750157 0.110288 -0.126457 0.513094 1.445669 -0.282907 0.112529 -0.822885 0.945460 0.074229 0.592127 -0.135588 0.322889 -0.715430 -1.463942 -1.024738 0.151915 0.308013 -0.722429 -0.933386 -1.416512 0.208201 -0.419299 -0.567246 0.820433 1.584120 -0.582094 -0.862950 1.277492 0.700031 0.169906 1.065141 -0.301556 1.663455 -0.659021 0.139544 0.065081 -0.263778 -0.464964 -0.044862 0.124338 -0.402268 -0.154472 -0.177496 -1.681970 0.835535 0.336987 -0.455318 0.044446 0.033635 -0.452476 -0.910392 1.234281 0.010977 0.784434 0.026628 1.267843 -0.357614 -0.806386 0.830054 -0.057622 0.125010 -0.610841 -0.575367 0.369617 0.667866 -0.653305 -0.200770 -0.001084 -0.089984 -0.795771 0.345558 0.115261 0.140989 0.152037 0.367094 0.427009 1.091729 -0.209494 0.638404 -1.076437 0.377580 0.635950 -0.408963 -1.423255 0.177629 -0.798625 -0.055440 0.461838 -0.395839 0.210378 -0.476873 -0.782386 0.171601 -0.255934 0.692749 0.096381 -0.562194 0.255403 -0.743662 0.509134 0.360337 0.860209 0.760649 0.893966 0.615670 -0.059965 0.122021 -0.050811 -0.025800 0.019151 0.007878 0.097782 0.621030 0.758767 0.464513 0.195679 0.710549 0.337684 -0.306275 0.955125 0.438885 1.411239 0.006846 -0.215201 -0.113985 -0.468760 0.835060 1.828139 -0.695431 -0.180414 0.416325 0.250292 -0.279878 -0.665608 -0.053448 -0.388907 -0.776315 0.487770 -0.212408 -0.022133 -0.113904 1.127091 -0.226328 -1.272150 0.675601 0.012138 0.439628 0.308121 0.047602 0.163626 0.455899 -0.931436 0.551118 0.770431 0.791772 -0.393417 -0.795717 -0.091321 0.607272 0.201746 0.565638 -1.132599 0.583909 0.865062 0.999539 0.376208 0.388159 -0.534143 -0.570903 0.291007 0.034192 -0.239537 -0.298003 0.504459 -0.741059 -0.029977 -0.481442 -0.554741 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a(int*, int*, int*, std::allocator&) = 0.194866 0.434404 0.288941 -0.739568 -1.138460 0.049268 0.071593 -0.262036 0.040545 0.006824 0.657498 -0.763243 -0.437743 1.237024 -0.183998 -0.588649 -0.146491 -0.670339 -0.304760 0.204421 0.072155 0.490391 -0.131833 0.228525 -0.056797 0.308607 -0.364276 0.349761 0.773390 -0.590701 -0.823706 0.000317 0.122086 0.731359 0.038490 -0.477145 0.340318 1.366753 -0.762551 0.675536 -0.705132 -0.298723 0.379191 0.082895 -0.269441 -1.215574 -0.973673 0.641534 -0.446467 -0.300740 0.906346 0.174544 -0.219967 0.024056 0.545093 0.813346 -1.478017 1.000649 0.390120 0.468899 0.376019 -0.110092 -0.080297 0.166419 -0.159340 -0.481167 0.187029 0.033427 -0.328550 -0.154471 -0.191361 -1.051711 1.345906 0.215437 -0.596636 0.165898 0.422066 -1.033326 0.869259 -1.013090 -0.881921 0.282654 0.017211 0.045633 0.992268 -0.232018 -0.013706 -1.171597 -0.084578 -1.204263 0.342730 -1.112031 0.163635 0.971563 -0.821900 -0.058115 0.155721 -0.106481 1.066230 0.401795 0.834622 0.435991 0.553221 0.050927 0.379031 0.497631 -0.365922 -0.171687 -0.636096 -1.125766 -0.101370 0.093697 -1.585966 0.308019 0.121735 0.069294 0.209160 -0.152519 0.147709 0.521321 -0.376715 -0.199499 0.224422 -0.091877 0.317936 1.462236 -0.463201 0.230035 -0.666927 0.946431 -0.079168 0.714263 -0.030158 0.164686 -0.398502 -1.354524 -1.094833 0.322097 0.375421 -0.422039 -0.747838 -1.127219 0.285255 -0.362364 -0.436915 0.478498 1.517088 -0.521974 -0.740171 1.167930 0.917926 0.179825 0.819568 -0.255376 1.525066 -0.464915 -0.035048 -0.219211 -0.469629 -0.544600 0.121664 0.341437 -0.214175 0.000224 -0.007487 -1.704595 0.944310 0.100999 -0.556630 0.298678 0.116604 -0.411307 -0.852231 1.190376 0.399093 0.582584 0.286541 1.096189 -0.227828 -0.808603 0.668344 0.266294 0.316095 -0.674035 -0.617344 0.562734 0.553994 -0.476376 -0.128677 -0.251295 -0.152186 -0.706639 0.049056 0.127735 0.218918 0.223307 0.582276 0.074562 1.257998 0.099595 0.510293 -1.118407 0.361182 0.357537 -0.430077 -1.201550 0.248292 -0.686905 0.035275 0.337501 -0.365392 0.118052 -0.361527 -0.761317 0.032129 -0.455288 0.524881 0.249478 -0.745500 0.135754 -0.514081 0.619882 0.388627 0.544562 0.932003 0.908620 0.934294 0.070118 0.153354 0.187843 -0.012278 -0.062372 0.015094 0.136051 0.505890 0.642844 0.400281 0.032275 0.628535 0.383992 -0.221579 0.782981 0.478331 1.321730 0.284666 -0.178274 -0.237603 -0.289251 0.684836 1.709301 -0.413113 0.049224 0.355978 0.473135 -0.203721 -0.751802 -0.053590 -0.429794 -0.536822 0.643850 -0.185722 -0.151267 -0.012988 0.802284 -0.219935 -1.055467 0.300917 -0.055864 0.339387 0.394013 0.077479 0.083682 0.285012 -0.999677 0.720108 0.681499 0.620622 -0.361222 -0.750469 -0.075825 0.386978 0.087243 0.612714 -1.240767 0.349079 0.695235 0.806605 0.291729 0.446476 -0.667781 -0.613557 0.450687 -0.148412 -0.289059 -0.198900 0.491525 -0.824811 0.058305 -0.442691 -0.784615 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_M_check_len(unsigned long, char const*) const = 0.973518 1.003147 0.721979 -1.267448 -1.056330 0.384677 -0.341606 -1.080914 0.336308 2.135735 0.856351 -1.036233 -2.055147 1.044461 -1.094360 -2.102940 0.383487 -0.339592 -0.142161 -1.330743 0.137842 0.491835 0.166414 -0.926841 0.530395 -0.717146 0.214908 0.821409 2.072261 -0.621305 -1.236503 0.168044 0.584416 2.155732 -0.128654 -0.118529 0.022467 2.070242 -0.009837 0.621119 -3.392598 -2.149949 2.113387 0.505718 -0.040033 -2.357731 0.010817 0.800725 -2.085231 -0.085594 0.106721 -0.928910 0.230258 -1.273569 -0.115653 2.481820 -3.438862 2.364397 -0.114695 -0.511144 -0.955599 -0.147261 1.532182 0.582470 0.687211 -1.514564 0.563260 0.907755 -2.373602 0.730155 -1.155973 -1.979810 2.206666 0.269466 -1.310432 0.281975 -0.500780 -1.289303 0.884468 -2.173760 -0.855594 -0.611225 1.658875 0.800538 0.614565 0.865782 0.942049 -3.409827 -0.514696 -2.416864 1.987607 -1.012981 2.388813 1.225092 -1.579922 0.710555 0.325198 -0.873241 1.109956 0.110779 2.325245 0.197829 1.756954 -0.719384 0.229710 0.847872 -0.918872 -0.932271 -0.247260 -1.651310 -0.513530 0.280321 -3.298444 -0.118395 -2.312752 1.213646 1.104028 -0.981829 -0.029426 1.068022 -3.166208 -2.461319 0.138672 -0.292695 2.408675 1.953825 0.190774 0.812840 0.314123 2.249293 -0.134793 -0.563696 -0.598252 0.814239 -0.026609 -2.947383 -2.243451 0.193981 0.961608 -1.633075 -2.299212 -2.053428 -0.711494 -0.163552 -0.388553 1.709041 3.249704 -0.315151 -2.452211 1.360406 -1.399871 0.437110 3.197632 0.048097 3.661036 -2.974855 1.708623 -0.207277 1.187392 0.962947 1.496342 -0.791932 -1.159788 0.323746 0.308315 -0.272855 -1.286902 -0.253677 0.156230 -0.861481 -0.017518 -0.669063 -0.796999 1.464537 -0.802083 2.516664 -0.774849 3.123518 -2.787713 -3.062346 1.064230 -1.535475 -0.786014 0.210728 -0.700557 0.071328 1.837358 -2.183997 -0.964735 -0.714831 -0.325051 -0.063232 1.808189 0.337257 0.072541 -0.554931 -0.727853 2.525360 1.198069 -0.620341 0.535907 -2.083235 0.077908 1.845697 0.254103 -3.015313 0.066450 -1.937333 -0.109664 1.553263 -0.608177 1.148528 -0.121520 -1.257501 -0.026336 -0.878901 1.254345 -1.029532 -1.090712 0.753361 -1.206579 -0.321627 -0.045670 2.573622 1.838725 1.143311 0.071446 -0.831311 1.037935 -1.891230 0.877756 0.338519 0.645503 0.462649 0.838654 1.459384 0.106671 0.364131 1.792311 0.587011 -0.798172 1.916249 0.267966 2.460546 -2.311985 0.580271 -0.282071 -1.643719 1.353739 3.370959 -1.691073 -0.952007 0.967810 0.944461 0.450212 -2.361215 -0.666143 -1.073275 -1.011326 1.654826 1.049817 -0.399570 -1.101899 3.053659 0.847754 -3.028166 3.041466 -0.247545 0.104218 0.475220 -1.401897 -0.767721 1.292972 -1.407090 -0.313999 0.832951 1.857654 -1.673324 -0.800619 -0.560277 2.241991 -0.184135 -0.346556 -2.624922 -0.069305 1.885127 2.915074 1.777371 1.801953 -1.142347 -1.044794 -0.666569 -0.582578 -0.490107 -0.447565 0.788631 -1.274435 -0.021589 -1.323551 0.066580 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_allocate(unsigned long) = 0.407060 0.160086 0.582913 -0.649001 -0.446631 0.342314 0.130682 -0.298388 0.273687 0.780558 0.289403 -0.075110 -0.737697 0.734721 -0.255117 -0.679225 0.360877 -0.837777 0.128837 -0.111563 0.019276 0.346198 -0.055017 -0.032464 0.196675 -0.174124 -0.104621 0.387155 0.198782 -0.357247 -0.725253 -0.036269 -0.243764 0.923769 -0.026832 -0.089903 0.272214 1.337054 -0.535960 0.931055 -1.070586 -0.919986 0.499421 0.053274 -0.078054 -0.654828 -0.026712 0.307547 -0.542217 -0.212858 0.653985 -0.253698 0.039607 -0.153886 0.391060 0.747469 -1.588323 0.552705 -0.015448 0.179157 -0.081699 -0.249554 0.259344 0.200835 -0.042482 -0.426103 0.532610 0.226175 -0.794773 0.214713 -0.277969 -0.903412 0.799790 0.425363 -0.487763 0.178743 0.543892 -0.856970 0.660164 -1.068204 -0.779105 -0.078678 0.134844 -0.346551 0.924452 0.070824 0.434054 -1.372439 0.276379 -1.080705 0.713064 -0.825333 0.654223 0.904072 -0.425178 0.242882 0.408879 0.431523 0.433946 -0.213779 1.023447 0.473801 0.471107 0.013915 0.481509 0.337399 -0.628976 -0.360780 -0.601635 -0.668848 -0.147394 -0.220164 -1.093935 0.000293 -0.359274 0.351641 0.437564 -0.115604 -0.258559 0.533206 -1.426314 -0.491372 0.065405 -0.132017 0.683279 0.884139 -0.231273 0.242329 -0.027542 1.173629 -0.392082 0.211208 -0.308786 0.276431 -0.205019 -0.447926 -0.845998 -0.007148 0.398044 -0.649144 -0.977545 -1.118238 -0.210609 0.236551 -0.077568 1.287105 1.636193 -0.281252 -0.766785 0.899490 -0.238584 0.245451 1.046966 0.052700 0.957761 -0.778466 0.269438 -0.455629 0.249418 -0.145966 0.610749 0.187453 -0.073125 0.239811 0.214566 -0.094498 0.339454 -0.102786 -0.272154 -0.424722 -0.055919 -0.521849 -0.530481 0.962361 -0.407526 0.762371 0.079539 1.300785 -0.674978 -0.900183 0.407132 -0.641029 0.097924 -0.683540 -0.504146 0.125101 0.533356 -0.872203 -0.426600 -0.481011 -0.168268 -0.149612 0.261348 -0.050177 0.226069 -0.033132 0.103604 1.174903 0.971323 0.116711 0.110851 -1.003592 0.183690 0.403320 -0.343918 -0.842803 0.243761 -0.538061 0.011761 0.585815 -0.170153 0.307630 -0.510295 -0.754913 -0.035234 -0.216232 0.331530 -0.014911 -1.300657 0.079509 -0.034510 0.063425 0.456607 0.565005 0.894414 0.658908 0.524541 -0.312575 0.242299 -0.157014 -0.116525 -0.042938 0.193912 0.376873 0.261444 0.732532 0.282225 0.045845 0.528887 0.622972 -0.100794 0.763516 0.240940 1.112850 -0.245698 0.002423 -0.119374 -0.493408 0.596321 1.200462 -0.725661 0.265356 0.484826 0.524871 -0.078218 -0.649092 -0.030992 -0.677823 -0.036401 0.410417 0.165358 -0.249336 -0.316845 1.063303 0.148244 -1.308463 0.546023 -0.036030 0.229937 0.594614 -0.136679 -0.102880 0.328025 -1.004763 0.760582 0.310126 0.629620 -0.476448 -0.138861 -0.103904 0.545006 -0.040145 0.256799 -1.027456 -0.006661 0.385183 0.962268 0.812839 0.766614 -0.448968 -0.332880 -0.028542 -0.655659 -0.324390 0.021248 0.670846 -0.492718 0.150893 -0.862557 -0.370906 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_move_if_noexcept_a >(int*, int*, int*, std::allocator&) = 0.300810 0.234932 0.595211 -1.324146 -2.180796 0.570132 -0.957922 -0.861192 0.192770 -0.116402 1.127707 -1.270596 -0.519945 2.240864 -0.475453 -1.384586 -0.371509 -0.292360 -0.089796 0.136778 0.168005 0.757752 -0.399859 0.513194 -0.395668 0.078885 -0.395476 0.545593 1.697599 -0.369110 -1.611444 -0.198363 -0.225055 1.545441 0.494518 -0.509058 0.777898 2.750933 -0.735968 1.483356 -1.301031 -0.822184 0.411291 0.268541 -0.375962 -1.393270 -1.851052 0.866202 -1.647957 -0.061054 1.821765 -0.072969 -0.032219 0.466185 1.127278 0.972506 -2.533182 1.704313 0.447264 0.654036 0.738514 -0.374014 -0.253343 0.647406 -0.575384 -0.740007 0.554823 0.951110 -0.536499 -0.339550 -0.290249 -2.117795 2.699944 0.571096 -1.437371 0.015171 1.183133 -1.782157 1.445043 -1.438300 -2.132983 0.448046 -0.206046 -0.443673 2.058343 -0.193276 0.646134 -2.331760 0.465640 -2.655427 0.785298 -1.851149 0.543378 1.943144 -2.080018 -0.249401 0.770939 0.770670 2.087745 0.564590 1.583948 0.957359 0.197643 0.200421 0.981895 0.754149 -0.452771 -0.206526 -1.058082 -2.073924 -0.433481 -0.377744 -3.339910 0.370842 0.073879 0.812053 -0.188700 0.118973 -0.034462 0.881963 -1.290415 -0.606284 0.074157 -0.203131 0.885754 2.237100 -0.925601 0.795747 -0.923154 2.003865 -0.687964 0.691080 -0.292203 0.357140 -0.853771 -1.657556 -2.781470 0.911345 1.079612 -0.855369 -1.685702 -1.937944 0.009152 -0.075069 -0.517234 1.693776 2.971584 -1.093084 -1.385564 2.170990 0.760326 0.264733 2.248408 -0.205715 2.497513 -0.800219 -0.053979 -0.937628 -0.901120 -1.282184 -0.387379 0.706394 -0.136550 0.368601 0.049594 -2.020842 1.930841 -0.158368 -1.388328 -0.763317 0.244491 -0.786592 -1.230144 2.344395 -0.264807 0.820536 0.489371 2.223705 -0.573319 -1.696617 1.041475 -0.320584 0.382367 -0.900696 -0.839046 0.602694 1.310544 -1.283550 -0.494202 -0.294852 -0.362424 -1.132572 0.016326 1.336874 0.329379 0.718099 1.074282 1.084185 2.748199 0.698976 0.567499 -1.852350 0.665191 0.950062 -1.223221 -1.714735 0.392813 -1.307531 0.129848 0.220996 -0.432608 0.324022 -1.256839 -1.397124 -0.791235 -0.571461 1.552294 0.913769 -1.975305 0.563022 -0.669682 1.064196 1.048373 0.804984 1.829345 1.954849 2.128646 0.004750 0.399269 0.214613 0.523492 0.086092 0.796425 0.374994 0.725743 1.672417 0.739131 0.159414 0.963654 1.126636 0.175312 1.373773 0.679688 2.717949 0.452300 0.004552 -0.764285 -0.413992 1.344024 3.640761 -1.112102 0.805966 0.625536 0.932560 -0.198822 -1.925272 0.131764 -0.794048 -0.697512 0.666310 -0.227240 -0.043885 -0.427681 1.519928 -0.087732 -1.947303 0.694146 -0.006738 0.487426 1.066277 -0.007316 -0.115527 0.240250 -2.078041 1.863670 1.452204 0.983792 -0.770003 -0.953471 -0.205570 0.711485 0.412838 1.226630 -1.240327 1.086659 1.379118 1.604981 0.900522 0.569194 -1.373340 -1.356459 0.852731 -1.012095 -0.599599 -0.234422 0.889548 -1.312065 0.450219 -0.578413 -2.328613 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::iterator_traits::difference_type std::__distance(int*, int*, std::random_access_iterator_tag) = 0.544124 -0.093384 -0.080903 -0.156072 -0.268527 0.000768 0.385671 -0.411860 0.053514 0.052777 0.353202 -0.529509 -0.349366 0.542431 0.318709 -0.191611 0.449485 -0.579158 -0.040830 0.095930 -0.045201 0.208489 -0.080529 -0.016031 0.015560 0.362949 -0.327016 0.171518 0.263402 -0.547879 -0.709097 -0.080623 0.218262 0.672800 0.153978 -0.139137 -0.177712 0.931282 -0.299949 0.733547 -0.925673 -0.035654 0.452389 -0.097780 -0.218586 -0.808521 -0.340685 0.611792 0.206916 -0.676380 0.312796 -0.003633 -0.162927 -0.168236 -0.027087 1.043036 -0.776029 0.465802 0.279958 0.080793 -0.016434 -0.126053 0.029322 0.198826 -0.503420 -0.595483 0.362232 -0.265898 -0.414384 0.238176 -0.651649 -1.039056 0.493627 0.283858 -0.555302 -0.143774 -0.131891 -0.479070 0.540718 -0.072238 -0.397467 -0.008403 -0.073369 0.260526 0.343775 -0.129841 0.168208 -1.103761 -0.124502 -1.122536 0.374360 -0.853802 0.590836 0.578524 -0.565377 0.009455 -0.059377 0.046968 0.637887 -0.009599 0.638855 0.249382 0.281568 -0.324304 0.651337 0.276551 0.011864 -0.219458 -0.106374 -0.510121 0.264702 0.192389 -0.775426 0.332431 -0.616387 0.040594 0.104108 0.278410 0.088245 0.310799 -0.455034 -0.464554 0.284617 -0.135807 0.717129 1.186356 -0.486050 0.209779 -0.626051 0.646304 0.312073 0.529046 -0.252390 0.264687 -0.270836 -1.105519 -0.676127 0.027655 0.557318 -0.768835 -0.819781 -1.064077 0.219379 -0.244314 -0.539665 0.459956 1.090450 -0.454116 -0.223249 0.607901 0.489080 0.016743 0.557381 -0.311906 1.587675 -0.890027 0.552475 0.199835 0.143841 -0.190892 0.305248 -0.102104 -0.418167 -0.179957 -0.037214 -1.312553 0.902298 0.193877 -0.253857 0.693946 -0.230525 0.388656 -0.759800 0.738742 0.096507 0.335694 -0.099016 0.547718 -0.230148 -0.380557 0.722439 0.383322 -0.103580 -0.094115 -0.430950 0.146530 0.697166 -0.505159 -0.113870 -0.106651 -0.447651 -0.227244 0.368587 0.458009 -0.032701 0.035894 0.258118 0.157168 0.675063 -0.029586 0.376427 -0.874579 0.309659 0.567762 -0.035182 -0.429961 -0.090345 -0.844779 -0.115416 -0.084860 -0.190752 0.334749 -0.415132 -0.557148 0.228408 -0.050202 0.351511 0.100553 -0.518246 0.201668 -0.085559 0.081164 0.223447 0.883606 0.240069 0.481154 0.467022 -0.527339 0.073216 -0.094725 -0.682367 0.096835 -0.281688 0.354419 0.331447 -0.114871 0.243191 -0.064376 0.624945 -0.372535 0.158030 0.729411 0.645765 0.815578 -0.041275 0.154736 0.158061 -0.817769 0.623650 1.232968 -0.297652 -0.339048 0.303592 0.012795 -0.623686 -0.433456 -0.326539 -0.189597 -0.569104 0.400318 -0.320716 -0.010181 -0.347656 1.042731 -0.098798 -1.167175 0.413873 -0.017231 0.046137 0.765559 -0.107085 0.387741 0.225020 -0.451771 0.239123 0.418081 0.713488 -0.255484 -0.647214 -0.200505 0.174550 0.157056 0.000637 -1.033847 0.266009 0.575772 0.995271 0.473579 -0.018042 -0.567593 0.125853 0.072031 -0.164786 -0.009360 -0.056014 0.726945 -0.458073 -0.294818 -0.905929 0.284170 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy_a, int*, int>(std::move_iterator, std::move_iterator, int*, std::allocator&) = 0.681735 0.206449 0.583804 -1.242324 -1.763121 0.721935 -1.054076 -0.728780 0.228451 -0.203838 0.939372 -0.829209 -0.296933 1.677851 -0.406790 -1.225117 -0.258611 -1.019275 -0.099192 0.025210 -0.000664 0.489316 -0.426499 0.486637 -0.358063 0.045908 -0.342229 0.365364 1.394636 -0.722741 -1.668141 -0.095194 -0.493217 1.492916 0.502212 -0.885935 1.007133 2.675934 -0.204589 0.531590 -0.739962 -0.758873 0.241759 0.142599 -0.566851 -0.555124 -1.239907 0.792095 -1.309095 0.241770 1.780784 -0.159191 -0.191670 0.471259 0.818277 0.824161 -2.467160 1.565452 0.330066 1.053395 0.480428 -0.538299 0.139238 0.468876 -0.176725 -0.664003 1.080151 0.897214 -0.657551 -0.329348 -0.360011 -2.004113 2.304819 0.737170 -0.951478 -0.019527 1.122921 -1.676756 1.323444 -1.096741 -2.034185 0.458132 -0.261473 -0.932236 2.287233 -0.511508 0.340487 -2.095705 0.817774 -2.471887 0.361738 -1.674262 0.555648 1.808691 -1.931114 -0.280029 0.684967 1.182748 1.548425 0.083463 1.682598 0.607219 -0.043723 0.249656 0.909112 0.364717 -0.319857 0.178293 -0.891044 -1.801920 -0.580575 -0.319045 -2.824169 0.526468 -0.119270 0.390747 -0.204219 0.274521 -0.315841 0.755473 -1.272634 -0.976947 -0.185405 -0.204110 0.911706 1.992713 -0.954624 0.747460 -0.790872 1.956038 -0.572021 0.477178 -0.414334 0.204646 -0.402655 -1.090475 -2.760783 0.762779 1.279189 -0.862729 -1.751743 -1.459782 -0.048974 -0.454156 -0.453364 2.385934 2.757486 -0.877542 -1.174690 2.074008 0.464686 0.517588 2.437853 -0.233396 2.147178 -0.760436 -0.005896 -0.730208 -0.616844 -1.379238 -1.785348 0.574856 0.374172 0.279828 0.296836 -0.298186 1.891018 -0.070197 -1.254732 -0.265664 0.257105 -0.736787 -1.535260 2.146377 0.562351 0.691937 1.429509 2.205746 -0.484555 -1.494649 1.038239 0.214674 0.548186 -0.843268 -0.873128 0.197631 1.112833 -0.854387 -0.551842 -0.214995 -0.110851 -0.999412 -0.039742 2.409437 0.629242 0.630739 1.019593 0.611289 2.824572 0.586250 0.591768 -1.885756 0.561103 1.090542 -1.257693 -0.840482 0.310878 -1.038436 0.172936 0.578944 -0.360048 0.392080 -1.326405 -1.467924 -0.688313 0.097143 1.522275 1.012251 -2.343319 0.522935 -0.678699 0.580861 1.047883 0.715883 1.657444 1.697772 2.008514 -0.384406 0.439311 0.479958 0.529350 -0.487594 0.467202 1.120478 0.645404 1.432129 0.668296 0.218788 0.695393 1.151939 0.028387 1.231203 0.666284 2.665863 0.268108 0.016902 -0.955039 -0.497076 1.287422 3.307153 -1.288804 0.824119 0.598564 1.192838 -0.135163 -2.181250 0.120830 -0.836172 -0.053000 -0.182402 -0.330697 -0.084025 -0.416298 1.455629 -0.047480 -1.811189 0.607520 0.033776 0.426820 1.068650 0.010928 -0.148507 0.129856 -2.247195 1.799306 1.313043 0.855338 -0.550451 -0.204182 -0.098668 0.967321 -0.989802 1.086846 -0.523373 1.363132 1.103200 1.234166 1.340706 0.162067 -1.204752 -1.325678 0.806644 -1.088457 -0.435499 0.334050 1.194971 -1.573136 0.644904 -0.484844 -2.062187 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::make_move_iterator(int*) = 0.236851 0.152868 0.165911 -0.413874 -0.725972 0.167252 -0.397050 -0.296962 -0.002306 0.041595 0.252958 -0.406284 -0.222807 0.786678 -0.286483 -0.518725 -0.234895 -0.246976 -0.072235 -0.004347 0.012471 0.305453 -0.117354 0.164634 -0.081478 0.034588 -0.165048 0.031657 0.503901 -0.293587 -0.486794 -0.080069 -0.009591 0.530891 0.132630 -0.121157 0.226043 0.940925 0.058322 0.427561 -0.580675 -0.443545 0.115526 0.053320 0.006257 -0.508460 -0.453970 0.334820 -0.484759 0.082326 0.478313 0.011324 -0.251705 0.096782 0.341021 0.264396 -0.965899 0.829790 0.130105 0.235719 0.179829 -0.136383 -0.056125 0.095872 0.017060 -0.284748 0.112359 0.454472 -0.376771 0.014058 -0.063813 -0.585563 0.905082 0.198723 -0.474849 0.044548 0.326421 -0.391304 0.457772 -0.843342 -0.680211 0.121690 0.064124 0.036933 0.632692 0.114997 0.141866 -0.818909 0.283961 -0.871018 0.259313 -0.591379 0.207787 0.647421 -0.630689 -0.009714 0.258488 0.136523 0.766295 0.296927 0.574428 0.277035 0.065523 0.132800 0.189537 0.203627 -0.084266 0.001015 -0.231673 -0.705320 -0.196010 0.034991 -1.058302 0.118711 0.040190 0.482249 -0.044854 0.138262 0.037420 0.057518 -0.769674 -0.526047 0.018888 -0.062246 0.406064 0.612919 -0.289200 0.269642 -0.380175 0.676800 -0.195995 0.168253 -0.052979 0.120132 -0.227827 -0.677567 -1.060254 0.243912 0.314511 -0.293515 -0.565617 -0.651239 -0.022010 -0.008641 -0.231169 0.706965 1.022466 -0.354469 -0.479232 0.783490 0.155952 0.137335 0.838167 -0.052277 0.815263 -0.239487 -0.055210 -0.113170 -0.259972 -0.351410 -0.443025 0.214974 -0.100443 0.076065 0.107050 -0.522861 0.335165 -0.076819 -0.465684 -0.360404 0.026865 -0.281890 -0.323367 0.670132 -0.049586 0.381054 0.148230 0.769323 -0.234954 -0.598800 0.335361 -0.302779 0.125885 -0.149057 -0.202905 0.063927 0.428013 -0.599685 -0.166510 0.060547 -0.185772 -0.441163 0.042995 0.501494 0.124284 0.236879 0.367062 0.537264 0.878584 0.141413 0.233253 -0.657792 0.198619 0.303452 -0.305952 -0.641568 0.156816 -0.402254 0.029948 0.247995 -0.167663 0.025404 -0.266538 -0.409549 -0.247426 -0.217543 0.582620 0.265556 -0.184994 0.111021 -0.303283 0.372524 0.272658 0.308550 0.604953 0.604735 0.642808 0.016354 0.148411 -0.029970 0.433150 0.012257 0.279581 0.115763 0.267708 0.475184 0.281746 0.064049 0.387574 0.406507 -0.096117 0.516984 0.148897 0.985446 -0.199614 0.036330 -0.305777 -0.109603 0.470157 1.219403 -0.655667 0.242816 0.237433 0.245156 0.046738 -0.515959 0.003052 -0.272137 -0.315129 0.176592 -0.012697 -0.014326 -0.088972 0.518661 -0.044580 -0.610805 0.382889 0.025999 0.147270 0.216477 0.014877 -0.133511 0.190759 -0.720424 0.378946 0.509613 0.369417 -0.303134 -0.360810 -0.092207 0.373338 -0.010892 0.460951 -0.240326 0.340869 0.602516 0.524455 0.251324 -0.008296 -0.428931 -0.650810 0.301179 -0.247010 -0.253208 0.046621 0.289407 -0.355182 0.111818 0.003670 -0.801896 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.701802 0.173813 0.580641 -1.253866 -1.734705 0.731729 -1.034074 -0.734924 0.220752 -0.216483 0.925365 -0.797947 -0.289990 1.673471 -0.408323 -1.207387 -0.218720 -1.037498 -0.069151 0.050112 -0.011680 0.496883 -0.436621 0.472966 -0.341674 0.042241 -0.343045 0.374224 1.376996 -0.709318 -1.675655 -0.110924 -0.519170 1.507282 0.527867 -0.895945 1.007937 2.698343 -0.204048 0.555197 -0.739835 -0.740051 0.252085 0.125107 -0.572636 -0.574451 -1.242571 0.777223 -1.310893 0.256473 1.779878 -0.191224 -0.168500 0.473640 0.805369 0.831965 -2.468039 1.549151 0.339795 1.072342 0.494172 -0.569073 0.122864 0.437976 -0.186235 -0.662146 1.084181 0.886443 -0.659339 -0.324160 -0.387735 -1.978835 2.292084 0.759393 -0.952490 -0.031009 1.110021 -1.708565 1.300076 -1.098537 -2.045947 0.441171 -0.287427 -0.931960 2.311653 -0.529321 0.344944 -2.100741 0.818900 -2.493324 0.336894 -1.691715 0.568511 1.832068 -1.935803 -0.268724 0.689340 1.202607 1.517614 0.078078 1.684892 0.625567 -0.080253 0.246712 0.925702 0.363484 -0.306991 0.180909 -0.864194 -1.752152 -0.600122 -0.318930 -2.828958 0.522967 -0.139436 0.392875 -0.229591 0.297326 -0.342724 0.755327 -1.262750 -0.966856 -0.199734 -0.214066 0.915310 1.979422 -0.941645 0.734065 -0.806418 1.957147 -0.573961 0.490893 -0.453555 0.218290 -0.417502 -1.101447 -2.748788 0.731331 1.277779 -0.868717 -1.784158 -1.464097 -0.067310 -0.468204 -0.448523 2.386916 2.740365 -0.878529 -1.162539 2.082389 0.449217 0.538067 2.442135 -0.221980 2.101819 -0.742141 -0.008094 -0.730767 -0.611402 -1.408333 -1.808357 0.553025 0.375067 0.279354 0.281963 -0.286429 1.912396 -0.055323 -1.260379 -0.274238 0.224045 -0.744717 -1.549529 2.167866 0.534847 0.681929 1.416533 2.211408 -0.466513 -1.486856 1.028016 0.217097 0.566702 -0.855484 -0.853668 0.195371 1.095027 -0.865382 -0.586251 -0.192819 -0.077394 -0.992766 -0.022745 2.411185 0.607899 0.638104 1.016929 0.619985 2.810967 0.565293 0.605699 -1.855284 0.573509 1.092275 -1.261997 -0.851369 0.316748 -1.006621 0.160494 0.572044 -0.331768 0.393878 -1.344190 -1.471973 -0.668634 0.120545 1.523991 1.038338 -2.367128 0.533001 -0.665526 0.538021 1.059065 0.711527 1.637956 1.679626 1.979069 -0.393073 0.425382 0.492140 0.509487 -0.487480 0.481649 1.113879 0.632054 1.433844 0.684392 0.219248 0.663815 1.168940 0.050236 1.218993 0.694675 2.645974 0.281807 -0.004401 -0.933807 -0.501109 1.297893 3.276728 -1.273660 0.830872 0.598430 1.180980 -0.132570 -2.183792 0.131677 -0.826415 -0.055693 -0.192978 -0.339348 -0.077892 -0.421766 1.477001 -0.061473 -1.815901 0.607307 0.058665 0.437281 1.059528 0.033370 -0.140187 0.132422 -2.238185 1.826633 1.303315 0.858026 -0.525881 -0.206380 -0.094071 0.940669 -0.969991 1.089333 -0.505356 1.351731 1.087723 1.242440 1.360121 0.159249 -1.169523 -1.310627 0.789361 -1.090240 -0.424180 0.332531 1.199499 -1.562471 0.635183 -0.484768 -2.047870 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.694328 0.151546 0.605215 -1.111001 -1.615032 0.744151 -1.119858 -0.731372 0.226958 -0.111539 0.802820 -0.671637 -0.181160 1.511600 -0.461062 -1.117722 -0.288159 -0.903830 -0.034709 -0.080422 0.003165 0.423265 -0.409806 0.461685 -0.378644 -0.062323 -0.232549 0.265124 1.150044 -0.584525 -1.503010 -0.130671 -0.512326 1.384218 0.515622 -0.755506 0.910947 2.453708 -0.034962 0.460239 -0.717552 -0.830445 0.141800 0.134111 -0.422487 -0.383279 -1.068182 0.672900 -1.157058 0.319072 1.603568 -0.198207 -0.171908 0.486558 0.737178 0.593752 -2.220552 1.399276 0.226902 0.884007 0.379498 -0.515426 0.167809 0.478309 -0.160493 -0.577894 1.055845 1.025784 -0.610816 -0.240602 -0.283791 -1.845054 2.055420 0.691246 -0.868843 -0.064293 1.105013 -1.473135 1.200950 -1.003330 -1.916321 0.391434 -0.261686 -0.958401 2.080383 -0.394944 0.415151 -1.928448 0.930833 -2.294625 0.344532 -1.461692 0.529565 1.621877 -1.760497 -0.256511 0.725231 1.293558 1.440912 0.033058 1.541280 0.599785 -0.127601 0.280724 0.865649 0.297865 -0.255768 0.199553 -0.810711 -1.650630 -0.554701 -0.361825 -2.564308 0.451070 -0.083551 0.407819 -0.294805 0.312737 -0.314751 0.698682 -1.401732 -0.990541 -0.189513 -0.182361 0.844841 1.657625 -0.886278 0.752072 -0.663905 1.811810 -0.631228 0.315916 -0.372210 0.179466 -0.400709 -0.836589 -2.649447 0.746560 1.214186 -0.801651 -1.627467 -1.306455 -0.137558 -0.264522 -0.375363 2.366275 2.539674 -0.808943 -1.095928 1.863245 0.318671 0.382819 2.336429 -0.148727 1.873522 -0.670996 -0.030583 -0.725977 -0.544491 -1.255001 -1.789982 0.541072 0.422829 0.346009 0.326256 -0.031297 1.740549 -0.172407 -1.191829 -0.406975 0.257328 -0.675416 -1.287005 1.905080 0.422040 0.615794 1.318588 2.036035 -0.493282 -1.360210 0.863195 -0.040356 0.481138 -0.685021 -0.687924 0.048866 1.088214 -0.843894 -0.542994 -0.147281 -0.201289 -0.858316 -0.045792 2.299527 0.612252 0.620812 0.917712 0.729374 2.643710 0.624291 0.473207 -1.675137 0.500524 1.033933 -1.140741 -0.678850 0.242259 -0.942245 0.176547 0.458663 -0.281719 0.377494 -1.263018 -1.299029 -0.751531 0.116918 1.423257 0.974887 -2.122303 0.485781 -0.609715 0.568514 0.936619 0.613896 1.537878 1.586879 1.895625 -0.395127 0.422461 0.366504 0.612275 -0.420898 0.567846 1.030130 0.546503 1.384556 0.601246 0.225242 0.626481 1.132344 0.103503 1.115006 0.499447 2.477758 0.080942 0.112290 -0.970996 -0.386238 1.176548 3.066003 -1.210863 0.858129 0.529313 1.079313 -0.098878 -1.998688 0.145095 -0.759223 0.058766 -0.307248 -0.177575 -0.059182 -0.429104 1.321132 0.033742 -1.634715 0.576466 0.044255 0.354824 1.038210 -0.027590 -0.179742 0.084296 -2.035077 1.672093 1.221886 0.750050 -0.558541 -0.129028 -0.090461 0.932905 -0.949874 1.013293 -0.334056 1.350019 1.027760 1.101635 1.216037 0.107442 -1.157119 -1.257187 0.766715 -1.092807 -0.427092 0.461259 1.125782 -1.408328 0.657798 -0.390549 -1.981192 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy, int*>(std::move_iterator, std::move_iterator, int*) = 0.726080 0.295387 0.659801 -1.130063 -1.935070 0.858311 -1.538663 -0.921889 0.187071 -0.091680 0.861307 -0.773758 -0.320119 1.552963 -0.693755 -1.342210 -0.524983 -0.803020 0.007345 -0.378904 0.000000 0.439809 -0.441893 0.532389 -0.482665 -0.193444 -0.250580 0.219131 1.500187 -0.570410 -1.519990 -0.150655 -0.478764 1.494930 0.635589 -0.795146 0.998378 2.612529 0.264771 0.200073 -0.943618 -1.054328 0.112878 0.195694 -0.352544 -0.450106 -1.104403 0.703731 -1.620480 0.679005 1.664993 -0.269598 -0.188264 0.615892 0.781695 0.553680 -2.492196 1.880516 0.165479 0.786956 0.425055 -0.495708 0.135524 0.556356 0.156610 -0.615111 1.046465 1.414279 -0.710283 -0.210072 -0.213256 -1.888046 2.304906 0.630986 -1.009824 -0.122109 1.168431 -1.346922 1.227226 -1.295321 -2.107245 0.405015 -0.123825 -0.813624 2.123995 -0.221983 0.419111 -2.091367 0.921009 -2.509729 0.435751 -1.411175 0.611402 1.619937 -2.028530 -0.305553 0.863160 1.053347 1.727155 0.086948 1.657607 0.517138 -0.131200 0.406113 0.743285 0.291290 -0.115350 0.355985 -0.772941 -1.835385 -0.713368 -0.271902 -2.815554 0.423846 -0.129316 0.674513 -0.387616 0.286348 -0.270781 0.621998 -1.598507 -1.335249 -0.270018 -0.175220 1.047350 1.640808 -0.906836 0.957134 -0.629803 1.975820 -0.776632 0.201491 -0.371600 0.196325 -0.228691 -1.218305 -3.266295 0.921555 1.342518 -0.844478 -1.719439 -1.250619 -0.200865 -0.355475 -0.377233 2.495332 2.759256 -0.915324 -1.290149 2.038918 0.118950 0.385959 2.751993 -0.112193 2.047105 -0.682585 -0.077456 -0.789170 -0.676669 -1.299430 -2.073894 0.564494 0.455147 0.382184 0.542903 0.207161 1.337876 -0.287079 -1.404564 -0.680874 0.288284 -0.692895 -1.187427 1.860812 0.526667 0.657154 1.400022 2.204819 -0.643438 -1.736581 0.857798 -0.175855 0.463276 -0.318337 -0.642796 0.035491 1.165300 -1.043894 -0.578844 -0.099596 -0.223935 -0.980168 -0.064917 2.742286 0.680213 0.778417 0.979868 0.907825 2.919046 0.732762 0.508670 -1.758472 0.502380 1.167695 -1.103279 -0.915194 0.239489 -1.043293 0.218988 0.621729 -0.313978 0.441177 -1.159522 -1.278750 -0.979164 0.003120 1.759923 1.125038 -1.851663 0.610007 -0.785188 0.609457 0.914732 0.647694 1.663493 1.757509 2.089414 -0.314228 0.518707 0.224223 1.241505 -0.418448 0.874834 0.997257 0.592997 1.527509 0.652928 0.284134 0.726157 1.288460 0.036796 1.225702 0.330289 2.768632 -0.351257 0.314359 -1.228112 -0.307421 1.261895 3.444841 -1.459657 0.885636 0.532223 1.141507 0.151586 -2.304405 0.182032 -0.802042 0.073207 -0.293713 0.008015 -0.033996 -0.522542 1.379430 0.118712 -1.630329 0.902211 0.074661 0.275460 0.896662 -0.086836 -0.500685 0.115118 -2.270203 1.597556 1.444076 0.830149 -0.704216 -0.227668 -0.144145 1.179804 -1.105752 1.161137 -0.252428 1.372827 1.323889 1.166539 1.286659 0.008680 -1.324805 -1.726261 0.894970 -1.167646 -0.526814 0.600736 1.101246 -1.550179 0.838745 -0.000485 -2.314992 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/Nearly_sorted_Algo.cpp__decltype (__miter_base(({parm#1}.base)())) std::__miter_base(std::move_iterator) = 0.073014 0.073009 0.113841 -0.209367 -0.454156 0.160381 -0.388011 -0.184852 -0.011375 -0.285044 0.172214 -0.223391 -0.346693 0.323469 -0.148955 -0.511667 -0.201502 -0.021949 -0.057674 -0.091064 -0.021247 0.073573 -0.063864 0.115144 -0.066824 -0.036924 -0.108807 0.073894 0.560002 -0.226858 -0.291249 -0.016956 -0.000383 0.349820 0.101605 0.034239 0.227530 0.607355 0.354223 0.110273 -0.308934 -0.276855 0.070653 0.034027 -0.086699 -0.235926 -0.234120 0.209694 -0.751974 0.221029 0.344677 -0.012494 -0.168180 0.089843 0.219216 0.237474 -0.701881 0.698314 0.025449 0.144890 0.156413 -0.062676 -0.142363 -0.011562 0.305261 -0.164569 0.058936 0.357710 -0.316978 0.017131 -0.003051 -0.314633 0.845442 0.101026 -0.285854 0.047374 0.263294 -0.033403 0.227112 -0.467285 -0.445705 0.047089 0.115590 0.178232 0.482897 0.094294 -0.046367 -0.498768 0.021282 -0.560025 0.211646 -0.342107 0.163779 0.338566 -0.526180 0.020239 0.208149 -0.233399 0.337158 0.175836 0.384008 -0.025478 -0.032035 0.114434 0.068635 -0.084492 0.032371 0.046268 -0.108231 -0.450901 -0.204916 0.051230 -0.733740 0.025848 -0.053966 0.546541 -0.022918 0.160536 0.061353 -0.225799 -0.367553 -0.285238 -0.038514 -0.042579 0.395755 0.378326 -0.174420 0.210666 -0.156377 0.468843 -0.166597 0.037869 -0.095167 0.056932 0.254508 -0.567037 -0.848540 0.157431 0.268053 -0.117017 -0.370105 -0.178795 -0.045554 -0.041899 -0.103625 0.395754 0.667746 -0.202638 -0.281394 0.508811 -0.024896 0.318489 0.625070 0.026819 0.508767 -0.143938 -0.037999 -0.077691 -0.195507 -0.195009 -0.611732 0.113853 -0.049123 0.072096 0.220877 -0.049963 0.059897 -0.132967 -0.326637 -0.156854 -0.041370 -0.178039 -0.247539 0.377105 0.277448 0.263422 0.275738 0.526354 -0.186326 -0.554588 0.183206 0.039239 0.078938 0.061869 -0.161701 0.029002 0.150583 -0.445086 -0.144493 0.011122 -0.013392 -0.262010 0.011572 0.759143 0.076483 0.166824 0.240142 0.225023 0.604617 0.103573 0.120317 -0.478937 0.090939 0.159136 -0.190514 -0.326699 0.161783 -0.184982 0.042150 0.347596 -0.089885 0.007387 -0.037786 -0.229714 -0.232959 -0.140429 0.481574 0.229241 -0.004800 0.035173 -0.088298 0.053792 0.225011 0.168076 0.466378 0.345018 0.407363 0.076945 0.147256 0.047336 0.489346 -0.128545 0.157507 0.288100 0.148987 0.165693 0.172189 0.011989 0.234599 0.310919 -0.062433 0.313596 0.179497 0.677471 -0.160008 0.029291 -0.227663 -0.075794 0.300954 0.753774 -0.629948 0.247069 0.170247 0.303888 0.226991 -0.561457 -0.018785 -0.184420 -0.210388 0.237437 -0.036987 0.013556 -0.089019 0.311443 -0.008310 -0.324419 0.324920 0.040084 0.029023 0.006265 0.002321 -0.258736 0.135451 -0.586635 0.122968 0.300332 0.255803 -0.220064 -0.109829 -0.080742 0.273822 -0.237037 0.294858 0.093951 0.046903 0.391589 0.328961 0.290342 -0.199087 -0.241465 -0.588837 0.162140 -0.222789 -0.149357 0.056085 0.107059 -0.226742 0.061992 0.156153 -0.613925 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_wrap(int* const&, int*) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base(int*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__miter_base(int*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::base() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int*&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator::move_iterator(int*) = 0.056185 0.138521 0.287218 -0.514428 -0.763271 0.079404 -0.042654 -0.211197 0.029549 -0.177093 0.406095 -0.460342 -0.364626 0.814145 -0.113574 -0.553383 -0.125766 -0.243197 -0.179063 0.064751 0.043097 0.307648 -0.099651 0.150057 -0.009671 0.061307 -0.189500 0.340305 0.562438 -0.324487 -0.460950 -0.059202 0.033540 0.594767 0.050005 -0.096347 0.233696 1.074655 -0.310204 0.594128 -0.512708 -0.330436 0.337232 0.025850 -0.214413 -0.760849 -0.702710 0.407366 -0.591225 -0.124984 0.608842 0.104241 -0.109683 -0.010132 0.393325 0.529523 -1.061483 0.651740 0.217124 0.161255 0.184676 -0.101047 -0.196013 0.063675 -0.121285 -0.331241 0.119118 0.154308 -0.269911 -0.046909 -0.058749 -0.700526 1.171855 0.176396 -0.412196 0.168393 0.422670 -0.585349 0.584151 -0.543163 -0.694354 0.078342 0.019320 -0.018078 0.776273 -0.112086 0.100318 -0.898653 -0.013244 -0.924639 0.335044 -0.794616 0.174886 0.716420 -0.692356 0.116762 0.237143 -0.010343 0.587685 0.260156 0.622011 0.283116 0.263866 0.142229 0.364916 0.216772 -0.241271 -0.211356 -0.494511 -0.788010 -0.064121 -0.105322 -1.252840 0.156856 0.065399 0.245912 0.063137 0.032109 0.103151 0.299334 -0.395003 0.037322 0.204564 -0.095017 0.242917 0.901561 -0.316217 0.144574 -0.407104 0.724048 -0.207838 0.434141 -0.074381 0.175263 -0.123515 -0.826779 -0.832323 0.188389 0.263421 -0.283425 -0.593475 -0.691122 0.056923 0.001080 -0.259921 0.421777 1.176362 -0.392949 -0.555295 0.838963 0.552994 0.239707 0.608504 -0.024491 0.975020 -0.282910 -0.108072 -0.295172 -0.355381 -0.266323 -0.057183 0.255746 -0.177865 0.171816 0.046922 -1.031083 0.868436 -0.117553 -0.427670 0.084657 0.058099 -0.358720 -0.577376 0.885556 0.271957 0.527380 0.163403 0.861274 -0.198675 -0.647990 0.371453 0.045077 0.163163 -0.484206 -0.330262 0.279989 0.366009 -0.477614 -0.220044 -0.202349 -0.161390 -0.425228 0.072220 0.281901 0.136429 0.178569 0.398910 0.182246 0.924563 0.122348 0.224183 -0.819447 0.256990 0.254335 -0.289864 -0.777371 0.210171 -0.369608 0.006975 0.196268 -0.165483 0.102164 -0.279181 -0.449277 -0.105612 -0.310134 0.362055 0.211725 -0.639900 0.072384 -0.184879 0.380566 0.344205 0.362510 0.845843 0.626267 0.643948 0.140259 0.118249 0.122836 0.029397 -0.031613 0.087091 0.231068 0.317919 0.512609 0.339527 0.045511 0.474744 0.417029 0.000779 0.567953 0.384573 1.047093 0.189991 -0.158490 -0.156799 -0.102970 0.537026 1.219824 -0.337534 0.211443 0.315037 0.422148 -0.084051 -0.700796 -0.034773 -0.287380 -0.344136 0.563243 -0.094176 -0.117156 -0.036489 0.619942 -0.103298 -0.800262 0.254609 0.024407 0.242422 0.251526 0.051040 -0.010100 0.270706 -0.720519 0.522161 0.449750 0.428121 -0.384157 -0.410577 -0.050732 0.273393 0.129558 0.496803 -0.698676 0.197100 0.440264 0.618647 0.212970 0.259528 -0.451718 -0.489382 0.298903 -0.243709 -0.230578 -0.052512 0.255003 -0.506882 0.046376 -0.355036 -0.723311 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_backward::__copy_move_b(int const*, int const*, int*) = 1.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__copy_move_a > > >(int*, int*, __gnu_cxx::__normal_iterator > >) = 0.836868 0.432628 0.880020 -1.429992 -2.678588 1.104839 -2.121492 -1.307829 0.220885 0.042616 1.137508 -1.102878 -0.416488 2.115730 -1.032681 -1.748659 -0.798705 -0.732185 0.074671 -0.622113 0.063032 0.637622 -0.569502 0.707358 -0.692685 -0.336263 -0.288042 0.271210 2.008110 -0.513921 -1.864118 -0.251429 -0.538426 1.913265 0.875473 -0.922325 1.190569 3.311256 0.264236 0.393395 -1.447764 -1.470389 0.135683 0.319526 -0.294437 -0.777013 -1.559080 0.868797 -2.203968 0.936456 2.090399 -0.375259 -0.143399 0.859317 1.067414 0.611692 -3.164594 2.506098 0.186123 0.762870 0.589767 -0.567807 0.090674 0.847340 0.138136 -0.780532 1.187741 2.021539 -0.835189 -0.244359 -0.199396 -2.418888 2.964712 0.706844 -1.456056 -0.210868 1.515955 -1.688915 1.573437 -1.800044 -2.750199 0.505520 -0.116294 -0.917721 2.547587 -0.095996 0.703021 -2.726625 1.136313 -3.269275 0.691513 -1.730379 0.788744 2.028637 -2.656091 -0.420623 1.192539 1.261734 2.477545 0.227838 2.060314 0.770922 -0.113558 0.559977 0.916759 0.520790 -0.117323 0.416253 -1.004528 -2.429496 -0.904530 -0.368478 -3.720407 0.465892 -0.101025 0.996643 -0.580610 0.275980 -0.265351 0.889487 -2.156172 -1.738584 -0.302287 -0.208288 1.334865 2.022994 -1.128797 1.326121 -0.772331 2.528017 -1.111062 0.216367 -0.408688 0.293656 -0.453471 -1.730650 -4.350421 1.307876 1.676645 -1.085565 -2.151764 -1.688255 -0.294442 -0.315902 -0.464660 3.022448 3.564980 -1.255057 -1.767548 2.598863 0.116914 0.280811 3.571793 -0.102814 2.672235 -0.851376 -0.138302 -1.125656 -0.973786 -1.616022 -2.238791 0.759004 0.485374 0.555285 0.685961 -0.073157 1.525652 -0.459246 -1.893805 -1.205484 0.409516 -0.869398 -1.266478 2.318821 0.339564 0.826562 1.465148 2.798115 -0.903383 -2.341274 1.022694 -0.578732 0.504836 -0.228124 -0.707501 0.116400 1.599779 -1.483053 -0.719389 -0.116708 -0.419442 -1.277835 -0.083303 3.230556 0.809819 1.086895 1.241790 1.421644 3.742445 1.046983 0.608243 -2.145309 0.654958 1.505067 -1.338329 -1.467071 0.268445 -1.437556 0.285996 0.635230 -0.402882 0.590068 -1.437368 -1.538390 -1.397096 -0.222207 2.331373 1.453431 -2.135621 0.864710 -1.079221 0.972146 1.096771 0.820170 2.142784 2.362383 2.749406 -0.278024 0.671683 0.085779 1.832529 -0.300397 1.410727 0.938595 0.758060 2.117163 0.840277 0.386655 1.006297 1.677399 0.110532 1.593876 0.244829 3.565782 -0.632098 0.538096 -1.631887 -0.280580 1.606792 4.562101 -1.775744 1.117531 0.640244 1.327210 0.242559 -2.892066 0.279172 -0.989635 -0.002622 -0.222707 0.201337 -0.015592 -0.721831 1.741176 0.217194 -2.049987 1.276038 0.091377 0.314126 1.111749 -0.165098 -0.741225 0.145363 -2.821866 2.030867 1.952421 1.069370 -1.014317 -0.540979 -0.225019 1.508497 -0.992406 1.545896 -0.502953 1.729676 1.849546 1.557612 1.465791 0.146055 -1.810080 -2.327369 1.205428 -1.496015 -0.754393 0.704937 1.295503 -1.920291 1.127540 0.142576 -3.110724 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > > std::__niter_wrap<__gnu_cxx::__normal_iterator > >, int*>(__gnu_cxx::__normal_iterator > >, int*) = 0.754409 -0.237055 0.337639 -0.568164 -1.130009 0.593007 -0.859555 -0.940976 0.241366 -0.198448 0.667493 -0.794632 -0.432954 1.076128 -0.061664 -1.003926 0.121341 -0.345277 0.159340 -0.343609 -0.016134 0.230162 -0.311289 0.272610 -0.333251 -0.062391 -0.239421 0.313411 1.154726 -0.408137 -1.331793 -0.197444 -0.171391 1.419335 0.573908 -0.238489 0.386286 2.167380 0.279916 0.806500 -1.258326 -0.656916 0.385227 0.069680 -0.375943 -0.507988 -0.848310 0.733177 -1.175147 -0.006732 1.105730 -0.265361 -0.065047 0.282635 0.386908 1.057639 -1.823686 1.242838 0.125545 0.256675 0.143968 -0.396359 -0.017424 0.587343 -0.440022 -0.764938 0.950039 0.838235 -0.730195 0.190813 -0.625893 -1.914574 1.729762 0.584575 -1.105665 -0.277119 0.691492 -0.883757 0.986724 -0.291710 -1.513957 0.096548 -0.162781 -0.351742 1.418621 -0.128297 0.613884 -2.065980 0.471096 -2.360884 0.697407 -1.381455 0.978578 1.287748 -1.810675 -0.109813 0.556087 0.858155 1.307536 -0.100287 1.390727 0.469002 -0.132122 -0.077391 1.108779 0.203652 0.096151 -0.036946 -0.436779 -1.316470 -0.208548 -0.260040 -2.251774 0.355704 -0.774630 0.708404 -0.311692 0.589720 -0.164415 0.499170 -1.380140 -1.047178 0.031491 -0.227660 1.306868 1.636040 -0.925682 0.815603 -0.649054 1.669349 -0.312014 0.234153 -0.532008 0.330764 -0.216904 -1.245699 -2.539819 0.565228 1.332241 -1.095960 -1.715095 -1.369299 -0.177797 -0.069224 -0.490889 1.906285 2.394770 -0.820474 -0.807614 1.460602 0.052607 0.271654 2.150907 -0.163395 2.317117 -1.175611 0.530753 -0.491806 -0.135174 -0.789583 -1.013580 0.182720 -0.065095 0.225438 0.351115 -0.470098 1.564210 -0.237439 -0.988688 -0.214250 -0.075999 0.062596 -1.114745 1.634548 0.036001 0.576270 0.549286 1.635577 -0.641968 -1.381988 0.950821 -0.019270 0.013967 -0.013178 -0.540300 -0.085874 1.314329 -1.158327 -0.539467 -0.144376 -0.576330 -0.476519 0.277364 2.398704 0.249288 0.465100 0.686101 0.932919 2.161693 0.560133 0.385045 -1.624892 0.469718 1.217396 -0.680826 -0.539462 0.059704 -1.241258 0.029855 -0.003988 -0.184890 0.556172 -1.153902 -1.089642 -0.691333 0.053802 1.373917 0.768730 -1.695039 0.604086 -0.246396 0.233897 0.790151 1.021571 1.193300 1.291741 1.562449 -0.701577 0.407514 -0.095924 0.221383 -0.013120 0.480881 0.959097 0.437976 0.793501 0.482174 0.056362 0.832129 0.453221 0.437639 1.190944 0.747138 2.188523 -0.253558 0.478096 -0.582360 -0.874749 1.191624 2.978272 -1.089855 0.435457 0.552515 0.711670 -0.353174 -1.906940 -0.215869 -0.549555 -0.320976 0.109870 -0.287338 -0.013420 -0.724247 1.626336 0.185748 -1.838500 0.872232 0.056489 0.016080 1.228659 -0.276744 -0.101377 0.190675 -1.612085 1.126025 1.041346 0.959137 -0.659522 -0.451900 -0.307321 0.727955 -0.329683 0.526856 -0.577533 1.007538 1.173242 1.542368 1.274621 -0.153953 -1.197269 -0.822555 0.436965 -1.106762 -0.314601 0.345305 1.139792 -1.104063 0.292661 -0.754183 -1.259596 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a1(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__niter_base > >(__gnu_cxx::__normal_iterator > >) = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a2(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move::__copy_m(int const*, int const*, int*) = 1.112929 0.233813 0.611401 -0.916108 -0.953337 0.283888 0.415889 -0.927153 0.271459 1.372049 0.719835 -0.851523 -0.500474 1.414832 -0.110980 -0.794313 0.547387 -1.109535 -0.030857 -0.483100 0.008340 0.562455 -0.168344 -0.236887 0.062500 -0.167767 -0.204332 0.594640 0.028205 -0.492612 -1.119011 -0.236407 0.202177 1.763442 0.202662 -0.361203 -0.225890 2.196450 -1.126279 1.542567 -2.127428 -1.256324 1.239337 0.074032 -0.144251 -1.522862 -0.683845 0.885496 0.462110 -0.929166 0.672697 -0.216185 0.102717 -0.482514 0.107811 1.660123 -2.013229 0.670482 0.232753 -0.489585 -0.585237 -0.272459 0.500712 0.806164 -1.105215 -1.196548 0.942227 0.373186 -0.772789 0.535156 -0.951074 -2.346017 1.279505 0.718175 -0.962485 -0.010430 0.270863 -1.533747 1.322936 -0.594707 -1.182338 -0.244485 0.133043 -0.334882 0.882142 0.051966 1.210365 -2.632924 0.376071 -2.412392 1.195144 -1.561012 1.351596 1.403922 -0.863194 0.355824 0.416892 1.016479 1.336102 -0.263111 1.658312 0.906865 1.016629 -0.215687 1.272195 1.077683 -0.678487 -0.833524 -0.851633 -1.371565 0.343401 -0.229639 -2.129378 0.523897 -0.997385 -0.246123 0.293439 -0.095333 -0.077879 1.801259 -2.075644 -1.102280 0.681032 -0.311865 1.109620 1.863782 -0.643316 0.540534 -0.643800 1.689526 -0.065094 0.604788 -0.343791 0.663264 -1.140570 -1.468582 -1.562959 0.360019 0.972990 -1.703014 -1.841054 -2.281591 -0.113850 0.496695 -0.792331 1.864141 2.906800 -0.895850 -1.340192 1.320035 0.754768 -0.440766 1.621886 -0.119524 2.997714 -1.910688 0.878596 -0.487998 0.400542 0.075502 1.533295 -0.009839 -0.574782 0.512410 0.035439 -1.688828 1.929071 -0.261141 -0.478286 0.513515 0.022053 0.060253 -1.038919 1.692445 -0.379927 1.356222 -0.343956 2.027173 -1.145187 -1.250638 1.035298 -0.838756 -0.393839 -0.776983 -0.438201 0.146983 1.737122 -1.173964 -0.633395 -0.535501 -1.232548 -0.262320 0.888090 -0.043309 0.292971 0.015233 0.111921 1.463236 1.765634 0.254234 0.326666 -1.839448 0.591548 1.253529 -0.202170 -1.486546 -0.272399 -1.492378 -0.113084 -0.195532 -0.296492 0.992946 -1.146462 -1.009905 0.076343 -0.364525 0.468393 -0.097754 -1.898860 0.590374 -0.413149 0.703266 0.292290 1.771932 1.399790 1.395026 1.084252 -0.872809 0.298659 -0.699100 -0.984137 0.497522 0.247851 0.456270 0.723507 1.227624 0.335809 0.217668 1.589263 0.180891 0.366170 1.525140 0.389104 2.154084 -0.602792 0.381229 -0.098521 -1.129271 1.345188 3.002279 -0.298374 -0.485499 0.786843 0.315585 -1.098027 -1.129935 -0.343855 -0.618752 -0.488855 0.745730 0.447569 -0.352345 -0.783316 2.363775 0.352233 -2.741523 1.088977 0.037289 0.250325 1.648202 -0.622429 0.561593 0.639489 -0.832346 0.954197 0.973164 1.399218 -1.286165 -0.893606 -0.215524 0.904614 0.383231 0.218691 -2.719779 0.744724 1.198552 2.080077 0.813008 1.391663 -1.462673 0.039020 0.302988 -0.590532 -0.365443 0.267282 1.342194 -1.368121 0.259641 -1.927316 0.025276 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::__advance(int*&, long, std::random_access_iterator_tag) = 0.438944 0.234758 1.236295 -1.642503 -0.950220 0.402712 0.520347 -0.741144 0.498329 2.699231 0.522596 -0.594963 -1.496965 2.160101 -0.479125 -1.483828 0.503925 -1.106965 0.165461 -0.420329 0.029771 1.090398 -0.106480 -0.366779 0.708448 -0.639751 -0.080850 1.079063 0.039819 -0.454358 -0.721450 -0.358077 -0.273545 2.219531 -0.262634 0.560865 -0.138520 2.768874 -1.991673 3.021983 -3.075039 -2.612412 1.917179 0.225785 -0.009637 -1.650934 -0.100669 0.861240 -0.740183 -1.155144 0.785483 -0.348030 0.318488 -0.987725 0.614565 1.585658 -3.166080 0.745710 0.054321 -0.861842 -0.976087 -0.358392 0.669939 0.635392 -1.216768 -1.315897 0.471842 0.334096 -1.613690 0.408193 -0.553782 -1.944956 1.506908 0.882327 -1.129975 0.683284 0.619015 -1.660107 1.444584 -2.080450 -1.473807 -0.652050 0.559694 -1.108474 1.257899 0.823717 1.775811 -3.206108 0.686597 -2.388892 1.941911 -1.532829 1.685896 2.042453 -0.599072 1.059285 0.882524 1.179322 1.170506 -0.422169 2.067080 1.142934 1.410500 0.352753 1.226743 1.419528 -1.900498 -1.457244 -1.576012 -1.749520 0.275776 -0.913025 -2.251433 -0.005108 -0.881638 0.476058 1.123428 -0.489771 -0.550559 1.888385 -3.803657 -0.737713 0.620530 -0.342394 1.200705 1.663581 -0.100660 0.167799 0.071661 2.172718 -0.965648 0.457330 -0.433692 1.025832 -1.053485 -0.384167 -1.077233 -0.012983 0.362816 -1.659207 -2.009922 -3.096797 -0.676119 1.444305 -0.503299 2.733830 3.813148 -0.942327 -2.165222 1.737555 -0.465878 0.000000 1.693885 0.338594 2.397111 -1.922552 0.508460 -1.204089 0.444148 0.753221 3.454534 0.320150 -0.940307 0.988310 -0.043965 -1.182710 1.009017 -0.313308 -0.338560 -1.641951 0.203604 -1.281810 -0.756118 1.995621 -2.261905 2.267777 -1.170000 2.906238 -1.787221 -1.777475 0.926656 -2.937188 -0.541510 -1.837873 -0.962349 0.143646 1.479811 -2.127125 -0.978457 -1.337934 -0.945601 -0.349724 1.105609 -1.942011 0.270469 -0.250361 -0.206911 3.423790 1.612155 0.115576 -0.116066 -2.107568 0.548163 1.034923 -0.275508 -2.428508 0.166931 -1.346450 -0.246069 0.956971 -0.326839 1.057257 -1.272291 -0.938638 0.052032 -0.725765 0.239494 -0.629528 -2.976258 0.369091 -0.126228 0.798969 0.997381 1.877992 1.971077 1.616468 0.685784 -0.148651 0.169938 -1.006564 -0.836041 0.678294 0.585283 0.246083 0.973364 2.092398 0.770745 0.476012 1.951870 1.296417 -0.145670 1.969261 -0.049174 2.480061 -0.756137 -0.059507 0.224636 -0.655936 1.202005 2.721126 -1.176605 0.065670 1.371904 0.600630 -0.679271 -0.843426 -0.053238 -1.297495 -0.294058 1.479344 0.871741 -0.564564 -0.686041 2.787615 0.373964 -3.361190 1.557392 -0.099794 0.751908 1.212237 -0.553928 0.149388 1.075349 -1.527678 1.403114 0.974570 1.478081 -1.840013 -0.365168 -0.110426 1.346156 1.690002 0.523432 -3.425287 -0.024204 0.711266 2.417342 0.982336 2.628661 -1.125275 -0.303947 -0.034122 -1.186800 -0.687183 -0.218574 0.955544 -0.564088 0.336982 -2.614831 -0.403399 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::uninitialized_copy(int*, int*, int*) = 0.214932 0.401769 0.285778 -0.751109 -1.110044 0.059062 0.091594 -0.268181 0.032846 -0.005821 0.643491 -0.731980 -0.430801 1.232644 -0.185531 -0.570920 -0.106600 -0.688562 -0.274719 0.229322 0.061140 0.497958 -0.141955 0.214854 -0.040408 0.304939 -0.365092 0.358622 0.755750 -0.577277 -0.831220 -0.015413 0.096134 0.745725 0.064145 -0.487154 0.341121 1.389162 -0.762010 0.699143 -0.705005 -0.279901 0.389517 0.065404 -0.275226 -1.234901 -0.976336 0.626662 -0.448264 -0.286037 0.905440 0.142512 -0.196797 0.026437 0.532185 0.821151 -1.478896 0.984348 0.399850 0.487847 0.389763 -0.140867 -0.096671 0.135519 -0.168850 -0.479311 0.191058 0.022656 -0.330338 -0.149283 -0.219085 -1.026434 1.333171 0.237661 -0.597648 0.154416 0.409166 -1.065135 0.845890 -1.014886 -0.893683 0.265692 -0.008743 0.045909 1.016688 -0.249831 -0.009249 -1.176632 -0.083453 -1.225699 0.317886 -1.129483 0.176498 0.994941 -0.826589 -0.046810 0.160094 -0.086622 1.035420 0.396410 0.836915 0.454339 0.516691 0.047983 0.395621 0.496398 -0.353056 -0.169071 -0.609246 -1.075998 -0.120917 0.093812 -1.590754 0.304519 0.101570 0.071422 0.183788 -0.129714 0.120825 0.521175 -0.366831 -0.189409 0.210092 -0.101834 0.321541 1.448945 -0.450222 0.216640 -0.682473 0.947540 -0.081108 0.727978 -0.069379 0.178329 -0.413349 -1.365496 -1.082837 0.290648 0.374011 -0.428027 -0.780254 -1.131535 0.266920 -0.376411 -0.432074 0.479480 1.499967 -0.522961 -0.728020 1.176311 0.902458 0.200304 0.823850 -0.243960 1.479707 -0.446620 -0.037246 -0.219770 -0.464188 -0.573696 0.098655 0.319606 -0.213279 -0.000250 -0.022360 -1.692837 0.965688 0.115873 -0.562276 0.290104 0.083543 -0.419238 -0.866500 1.211866 0.371589 0.572575 0.273565 1.101851 -0.209786 -0.800810 0.658120 0.268717 0.334612 -0.686251 -0.597883 0.560474 0.536188 -0.487372 -0.163085 -0.229119 -0.118729 -0.699992 0.066053 0.129483 0.197575 0.230672 0.579612 0.083259 1.244394 0.078637 0.524225 -1.087936 0.373588 0.359270 -0.434381 -1.212437 0.254162 -0.655091 0.022832 0.330600 -0.337112 0.119850 -0.379312 -0.765366 0.051808 -0.431887 0.526597 0.275564 -0.769310 0.145821 -0.500907 0.577041 0.399810 0.540206 0.912515 0.890474 0.904849 0.061450 0.139425 0.200025 -0.032141 -0.062259 0.029541 0.129452 0.492541 0.644559 0.416377 0.032736 0.596956 0.400993 -0.199730 0.770771 0.506722 1.301841 0.298364 -0.199577 -0.216370 -0.293284 0.695307 1.678876 -0.397969 0.055977 0.355844 0.461277 -0.201129 -0.754344 -0.042743 -0.420037 -0.539515 0.633273 -0.194373 -0.145134 -0.018455 0.823656 -0.233928 -1.060178 0.300704 -0.030974 0.349849 0.384891 0.099921 0.092002 0.287578 -0.990667 0.747435 0.671771 0.623309 -0.336652 -0.752667 -0.071227 0.360326 0.107054 0.615201 -1.222750 0.337678 0.679757 0.814880 0.311144 0.443658 -0.632552 -0.598506 0.433405 -0.150195 -0.277739 -0.200418 0.496052 -0.814146 0.048584 -0.442615 -0.770298 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__uninitialized_copy::__uninit_copy(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::copy(int*, int*, int*) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__copy_move_a(int*, int*, int*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::max_size() const = 0.228205 0.254479 0.220634 -0.302525 -0.517535 0.159962 -0.255677 -0.279236 -0.024598 0.050425 0.242645 -0.198159 -0.219768 0.391015 -0.267232 -0.378971 -0.215196 -0.360766 -0.131216 -0.224552 -0.002802 0.135417 -0.075649 0.033389 -0.058361 -0.061551 -0.067139 0.061514 0.264459 -0.333014 -0.259129 -0.039811 0.053502 0.417219 0.107958 -0.115320 0.126735 0.607340 0.108594 -0.041712 -0.498208 -0.450146 0.200024 0.014354 -0.024829 -0.431460 -0.215537 0.263779 -0.279333 0.133178 0.254739 -0.040875 -0.138704 -0.013383 0.082529 0.247417 -0.750944 0.638468 0.070040 -0.017318 -0.050755 -0.036226 0.091403 0.065815 0.255682 -0.246634 0.173628 0.367899 -0.275654 0.052896 -0.025951 -0.452227 0.698327 0.066159 -0.164405 0.041992 0.144186 -0.208371 0.346257 -0.515344 -0.428591 0.009452 0.157882 0.047045 0.366989 0.077961 0.036973 -0.602685 0.090796 -0.618641 0.207024 -0.289820 0.194723 0.269611 -0.398835 0.042044 0.219240 -0.080012 0.438464 0.121363 0.449781 0.030050 0.197053 0.155074 0.118366 0.075290 -0.049001 0.028368 -0.222790 -0.550098 -0.088307 0.070159 -0.713407 0.134965 -0.061392 0.143993 -0.038468 -0.022957 0.114995 0.165691 -0.524223 -0.358708 0.074115 -0.035026 0.273249 0.400400 -0.143315 0.206562 -0.163418 0.444127 -0.180726 0.101941 -0.000564 0.111166 0.098150 -0.685339 -0.796651 0.210803 0.250108 -0.270882 -0.377130 -0.326676 -0.000751 -0.038002 -0.194332 0.462971 0.769253 -0.272665 -0.488374 0.492975 0.253664 0.026249 0.629283 0.019667 0.685834 -0.251282 -0.040346 -0.071967 -0.177931 -0.055186 -0.435055 0.064364 -0.015823 0.141023 0.214347 -0.224842 0.236027 -0.138751 -0.295049 0.149010 0.077707 -0.187555 -0.263112 0.290230 0.491940 0.386108 0.287550 0.607528 -0.304700 -0.516270 0.166804 -0.073311 0.028643 0.037951 -0.121902 0.019001 0.291623 -0.319661 -0.134299 -0.053165 -0.183400 -0.261066 0.132570 0.439822 0.223678 0.159055 0.129051 0.120910 0.650420 0.062245 0.149900 -0.484765 0.118323 0.298439 0.003533 -0.506292 -0.013394 -0.305319 0.042267 0.309031 -0.119291 0.203662 -0.024314 -0.176574 -0.092624 -0.162819 0.332421 0.131765 -0.021987 0.064537 -0.294101 0.211475 0.047636 0.329633 0.480983 0.455179 0.386403 0.025195 0.132353 -0.090093 0.395867 -0.140337 0.155406 0.239371 0.238139 0.313223 0.179247 0.139342 0.395395 0.282964 -0.066940 0.431425 -0.005767 0.748688 -0.422794 0.104592 -0.284993 -0.016892 0.362773 0.836172 -0.378891 0.028099 0.149313 0.236550 0.065673 -0.503429 0.005118 -0.168089 -0.090345 0.198258 0.253804 -0.006495 -0.137392 0.451180 0.048655 -0.470602 0.424920 0.029249 0.085766 0.089379 -0.079704 -0.153521 0.179566 -0.424218 0.082659 0.394305 0.344271 -0.386704 -0.217688 -0.028084 0.469543 -0.333542 0.303089 -0.348822 0.223140 0.412627 0.337747 0.130393 0.051074 -0.416398 -0.495138 0.234484 -0.092934 -0.130229 0.264941 0.227016 -0.417503 0.120123 -0.002142 -0.356339 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::size() const = 0.776671 -0.515843 0.486551 -0.355033 -0.520945 0.647094 -0.468926 -0.854428 0.258951 0.091955 0.417015 -0.103130 0.145808 0.508551 0.168785 -0.432332 0.296814 -0.471482 0.208864 -0.384472 -0.016562 0.040579 -0.310958 0.153392 -0.323336 -0.268430 0.082724 0.208866 -0.160899 -0.181161 -0.836384 -0.344125 -0.408597 1.103576 0.563806 0.054244 0.010529 1.574539 0.159119 0.683783 -0.889874 -0.737458 0.259453 -0.106087 -0.193772 0.123937 -0.354892 0.465466 0.115491 -0.358375 0.692930 -0.312225 0.196532 0.187989 0.021874 0.421661 -0.832364 -0.022164 0.006908 -0.306457 -0.390689 -0.333645 0.226471 0.661565 -0.898767 -0.544219 1.160722 0.681043 -0.258230 0.227051 -0.456815 -1.707081 0.825994 0.579676 -0.504022 -0.335611 0.638951 -0.661439 0.838113 0.714329 -1.193241 -0.139336 -0.471649 -1.060584 0.922077 -0.234077 0.952256 -1.565711 0.944163 -1.844251 0.509811 -0.794711 0.791192 0.779598 -0.995912 0.020287 0.685461 1.775125 0.634978 -0.589558 0.996283 0.464849 -0.272985 0.105416 1.339722 0.039925 -0.044582 -0.165104 -0.608052 -0.913234 0.286925 -0.691116 -1.273406 0.402897 -0.535426 -0.073401 -0.532239 0.624980 -0.183259 0.917075 -1.445037 -0.400816 0.241315 -0.194558 0.704173 0.863131 -0.781602 0.581497 -0.302278 1.127878 -0.549035 0.123877 -0.356985 0.354785 -0.295130 0.114142 -1.497548 0.477702 1.122940 -1.053401 -1.281940 -1.020636 -0.276709 0.612631 -0.379111 1.919482 1.837596 -0.777462 -0.572298 0.781358 0.231910 -0.314876 1.325460 0.064506 1.501301 -0.909659 0.307599 -0.637709 0.017918 -0.330834 -0.707451 0.169555 0.230866 0.603172 0.205673 0.080251 2.292517 -0.465282 -0.733835 0.273033 0.114345 0.186293 -0.775695 0.989049 0.086829 0.369774 0.581717 1.122038 -0.483782 -0.463087 0.465649 -0.350024 -0.209086 -0.234947 -0.169128 -0.457394 1.189311 -0.606891 -0.472091 -0.279595 -0.958094 -0.024630 0.295936 1.661172 0.424100 0.401869 0.327351 0.698413 1.705185 0.712849 -0.152073 -1.049359 0.413915 1.021402 -0.365178 0.360697 -0.386850 -0.934999 0.016719 -0.494028 0.058745 0.787437 -1.198312 -0.586076 -0.558141 0.382484 0.559548 0.622068 -1.967746 0.378710 0.183066 0.302216 0.504839 0.801616 0.842079 1.098309 1.250989 -0.765216 0.220472 -0.027196 -0.543851 -0.077646 0.285213 1.087660 0.260524 0.653531 0.382764 0.242034 0.739304 0.288507 0.965093 0.911643 0.317219 1.624902 -0.225007 0.472186 -0.426415 -0.456957 0.918335 2.001795 -0.272246 0.520668 0.371020 0.420582 -0.823311 -1.256195 -0.007113 -0.317101 0.350048 -0.346569 0.209691 0.086981 -0.801094 1.334430 0.306845 -1.624035 0.402309 0.062242 0.092714 1.575701 -0.289938 0.381570 -0.049335 -0.763826 1.111638 0.779512 0.650282 -0.763684 0.068262 -0.096858 0.521850 -0.379721 0.325885 -0.499321 1.167865 0.449991 1.045796 0.741741 0.037664 -1.165435 0.021618 0.415619 -1.101972 -0.082562 0.859876 1.134052 -0.762042 0.262997 -1.289179 -0.516264 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::max(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_max_size(std::allocator const&) = 0.422351 0.055149 0.332925 -0.566554 -0.800566 0.050068 -0.316930 0.075021 0.129351 0.112338 0.430748 -0.608410 -0.616869 1.025303 -0.260705 -0.804461 0.185081 -0.380096 0.030180 -0.047709 0.284618 0.349320 0.363912 -0.045063 0.049797 0.033595 -0.506331 0.370834 1.368188 -0.541196 -0.564671 0.215812 0.135473 0.401651 -0.273452 -0.616028 0.257095 1.058172 -0.154804 0.370478 -0.623055 -0.174745 0.620194 0.083842 -0.176665 -0.914442 -0.868522 0.576289 -0.727085 -0.342201 0.525783 0.143170 0.016192 -0.261575 -0.042140 0.839746 -1.460149 1.008729 -0.035430 0.509859 0.504586 0.141684 0.021636 0.221008 0.394170 -0.494795 0.101747 0.078319 -0.874514 -0.297629 -0.157118 -0.336845 1.314457 0.043848 -0.373697 0.175524 0.479220 -0.506559 0.644277 -1.106603 -0.668566 0.105135 -0.142917 0.129929 0.820783 -0.259292 0.072647 -1.115784 0.082611 -0.970287 0.724172 -0.874196 0.284689 0.738315 -0.900070 0.107814 0.186133 -0.254014 0.908660 0.426877 1.045017 0.314456 0.422370 0.070316 0.150803 0.149881 -0.221975 0.131176 -0.340068 -0.773650 -0.259787 0.017138 -1.477163 0.263429 0.019557 0.340425 0.596238 -0.290550 0.080953 0.203275 -0.402184 -0.178098 0.140160 -0.071833 0.236169 1.052959 -0.384314 0.069739 -0.411870 1.039432 -0.190549 0.311150 0.375516 0.150238 -0.050043 -1.400789 -0.616732 0.314883 0.179951 -0.338412 -0.692889 -0.853838 0.385134 -0.610870 -0.362917 0.559961 1.189807 -0.042379 -0.472031 0.761481 0.360676 0.328724 0.953629 -0.298513 1.418795 -0.513993 -0.247337 -0.039035 -0.283319 -0.021675 -0.136171 0.192809 0.025461 0.031673 0.112674 -1.030289 0.230535 -0.083584 -0.330806 0.097476 0.035918 -0.404951 -0.635402 0.729783 0.484461 0.417994 0.406265 1.145929 0.078147 -1.021461 0.702924 0.256480 0.072333 -0.175745 -0.357156 0.306166 0.161346 -0.559867 -0.235710 -0.410584 -0.015739 -0.408055 0.173761 0.372027 0.453185 0.345430 0.303126 0.249802 0.651517 0.082141 0.488080 -1.126946 0.042931 0.504605 -0.356083 -1.122675 0.257211 -0.569133 0.295110 0.715142 -0.349757 0.183194 -0.262350 -0.878538 -0.176262 -0.321615 0.513286 0.062709 -0.397486 -0.076516 -0.171204 0.395099 0.272675 0.732081 0.781681 0.418757 0.415707 0.291605 0.210896 0.278595 0.260444 -0.196864 -0.095317 0.110715 0.376673 0.400054 0.181545 0.109263 0.797884 0.397372 -0.446158 0.521181 0.312417 0.911504 -0.019856 -0.249484 -0.309215 -0.348689 0.665617 1.457308 -0.386159 -0.066558 0.407034 0.431484 0.293655 -0.848272 0.019757 -0.411922 -0.253765 0.664949 -0.082011 0.205380 -0.112239 0.396020 0.033705 -1.070908 0.902281 -0.112456 0.248058 0.377570 0.027988 -0.015516 0.063381 -1.015156 -0.006617 0.594563 0.501463 -0.317299 -0.382712 -0.106334 0.583895 -0.208654 0.565795 -0.935441 0.174090 0.775821 0.608074 0.316577 0.222749 -0.486097 -1.050681 0.154338 -0.158734 -0.257273 -0.222543 -0.063223 -0.885748 -0.052157 0.050506 -0.365738 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::_Vector_base >::_M_get_Tp_allocator() const = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::max_size(std::allocator const&) = 0.212329 0.182559 0.193341 -0.292994 -0.357517 0.102882 -0.046274 -0.183978 -0.004654 0.040495 0.213402 -0.147099 -0.150288 0.370334 -0.150885 -0.266727 -0.096784 -0.411171 -0.152243 -0.075311 -0.001228 0.127145 -0.059606 -0.001963 -0.006350 0.004010 -0.058124 0.084511 0.089387 -0.340071 -0.250639 -0.029819 0.036721 0.361863 0.047974 -0.095500 0.083019 0.527929 -0.041272 0.088371 -0.385175 -0.338205 0.214485 -0.016438 -0.059800 -0.398047 -0.197427 0.248363 -0.047622 -0.046789 0.224026 -0.005180 -0.130526 -0.078050 0.060270 0.267453 -0.615122 0.397848 0.100751 0.031207 -0.073534 -0.046084 0.107546 0.026791 0.097130 -0.228026 0.178318 0.173652 -0.225920 0.037631 -0.061218 -0.430731 0.573584 0.096289 -0.093915 0.070900 0.112477 -0.271477 0.333119 -0.369349 -0.333128 0.002661 0.088951 -0.025343 0.345183 -0.008520 0.034993 -0.521226 0.095708 -0.511088 0.161415 -0.315078 0.153804 0.270581 -0.264818 0.066565 0.150275 0.040093 0.295342 0.094418 0.391618 0.071373 0.198852 0.092380 0.179548 0.078577 -0.119210 -0.049847 -0.241675 -0.457720 -0.008974 0.025198 -0.587784 0.148576 -0.038509 0.010646 0.007938 -0.009762 0.093010 0.204034 -0.425836 -0.186354 0.114368 -0.038596 0.171994 0.408809 -0.133037 0.104031 -0.180469 0.362122 -0.108024 0.159154 -0.000870 0.102737 0.012141 -0.494481 -0.488226 0.123306 0.185942 -0.249468 -0.331144 -0.354594 0.030903 0.007474 -0.193397 0.398443 0.659462 -0.219475 -0.391264 0.405138 0.353524 0.024679 0.421501 0.001400 0.599042 -0.245487 -0.016910 -0.040371 -0.111842 -0.032972 -0.293100 0.052653 -0.031982 0.122936 0.106024 -0.344071 0.437363 -0.081415 -0.188681 0.285960 0.062229 -0.178816 -0.312900 0.312364 0.439626 0.365429 0.246833 0.523136 -0.229623 -0.328084 0.169503 -0.005561 0.037574 -0.145391 -0.144466 0.025688 0.253080 -0.219661 -0.116374 -0.077008 -0.172077 -0.200140 0.142132 0.218442 0.189698 0.080253 0.097973 0.031685 0.512752 0.008010 0.132169 -0.443097 0.117395 0.231557 -0.015198 -0.388120 -0.012009 -0.254795 0.021047 0.227498 -0.103161 0.171820 -0.076063 -0.186714 0.021192 -0.105919 0.164088 0.056689 -0.157307 0.002424 -0.206364 0.191003 0.058579 0.312734 0.418176 0.369863 0.289509 -0.015255 0.084230 -0.018952 0.081251 -0.141562 0.001911 0.255808 0.214892 0.241746 0.153406 0.109896 0.345557 0.204906 -0.033586 0.376077 0.078812 0.603251 -0.206694 0.003557 -0.156435 -0.056301 0.320099 0.646753 -0.254494 0.014345 0.147858 0.205453 -0.059559 -0.350570 -0.013351 -0.146679 -0.097566 0.191491 0.161010 -0.019088 -0.090673 0.422031 0.006170 -0.472795 0.262048 0.014046 0.125448 0.160153 -0.050082 0.006951 0.164155 -0.306655 0.119928 0.283210 0.304222 -0.313867 -0.168368 -0.001242 0.346093 -0.255603 0.229168 -0.389636 0.211737 0.264562 0.305295 0.095082 0.100455 -0.332555 -0.260601 0.170356 -0.055514 -0.080368 0.195203 0.239284 -0.346577 0.029649 -0.197174 -0.189439 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::max_size() const = 0.136284 0.141464 0.115401 -0.230987 -0.278616 0.031624 -0.008370 -0.126137 -0.010630 -0.018108 0.160664 -0.202184 -0.209054 0.382750 -0.132184 -0.268435 -0.069297 -0.228803 -0.133585 0.001767 0.009250 0.129636 -0.024783 -0.027463 0.030108 0.040593 -0.070351 0.079433 0.171869 -0.273190 -0.218922 -0.011790 0.102552 0.302332 0.004322 -0.000702 0.050197 0.424918 -0.019460 0.238743 -0.394459 -0.249037 0.211012 0.002574 -0.031905 -0.463637 -0.217153 0.215942 -0.163446 -0.065723 0.155310 0.015644 -0.158475 -0.106778 0.089648 0.307060 -0.557381 0.422076 0.094228 0.053808 0.001078 -0.030111 0.018330 -0.029640 0.095060 -0.206424 0.029828 0.121569 -0.262028 0.069592 -0.073182 -0.312604 0.564389 0.064301 -0.162094 0.086952 0.060358 -0.191289 0.245588 -0.441710 -0.228888 -0.002148 0.131282 0.169138 0.262288 0.066212 -0.000141 -0.448913 -0.019134 -0.408172 0.191303 -0.321974 0.147616 0.255372 -0.249534 0.081740 0.080460 -0.133514 0.272490 0.207551 0.311221 0.085800 0.178860 0.008736 0.116880 0.080549 -0.089305 -0.097721 -0.137745 -0.363890 -0.039998 0.079750 -0.562047 0.070879 -0.059248 0.186797 0.050677 0.014252 0.110693 0.041148 -0.359491 -0.165522 0.102389 -0.034306 0.204586 0.376122 -0.086899 0.068924 -0.191524 0.303768 -0.023618 0.131284 -0.014499 0.087741 -0.016425 -0.563076 -0.388423 0.053655 0.105849 -0.179128 -0.283902 -0.348219 0.026444 0.021115 -0.164311 0.210353 0.529197 -0.145504 -0.305456 0.343614 0.276238 0.096459 0.338506 -0.004979 0.538469 -0.232977 0.038276 0.030233 -0.068128 -0.013721 -0.142478 0.016346 -0.150763 0.050225 0.054591 -0.512895 0.251732 -0.044543 -0.116917 0.137399 -0.019310 -0.152816 -0.232086 0.308336 0.228392 0.348483 0.036920 0.432947 -0.207836 -0.327135 0.165480 -0.045240 0.025271 -0.103433 -0.124930 0.060512 0.205780 -0.302997 -0.101914 -0.016843 -0.114311 -0.172189 0.149680 0.078224 0.056890 0.024358 0.080924 0.114884 0.330635 -0.061210 0.159584 -0.379521 0.087201 0.152577 -0.013218 -0.462901 0.068303 -0.218015 -0.000332 0.197467 -0.098199 0.061132 -0.017679 -0.172119 0.038223 -0.180233 0.166340 -0.010532 0.040762 -0.020530 -0.166115 0.143481 0.061953 0.282392 0.356510 0.256101 0.173379 0.018170 0.071159 -0.069628 0.085915 -0.039376 0.002688 0.117435 0.171914 0.156773 0.112773 0.033966 0.288165 0.146753 -0.081044 0.312854 0.152989 0.460231 -0.140671 -0.026877 -0.057218 -0.110323 0.264204 0.536867 -0.308528 -0.007107 0.142861 0.142453 0.004200 -0.235599 -0.066983 -0.116244 -0.270351 0.314763 0.053903 -0.022284 -0.039619 0.361750 -0.015998 -0.381562 0.242882 0.010820 0.086448 0.060821 -0.042658 -0.019545 0.194480 -0.247818 0.022960 0.186353 0.278962 -0.236678 -0.251950 -0.038141 0.233001 -0.026812 0.163853 -0.322040 0.073245 0.281407 0.329208 0.077228 0.053410 -0.212971 -0.237075 0.075856 -0.002185 -0.091179 0.016407 0.134573 -0.202055 -0.065432 -0.131971 -0.182510 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::allocator_traits >::allocate(std::allocator&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::new_allocator::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::move_iterator std::__make_move_if_noexcept_iterator >(int*) = 0.220975 0.080947 0.138618 -0.404343 -0.565953 0.110172 -0.187647 -0.201704 0.017637 0.031665 0.223715 -0.355224 -0.153327 0.765996 -0.170136 -0.406481 -0.116483 -0.297381 -0.093261 0.144894 0.014045 0.297180 -0.101310 0.129282 -0.029468 0.100148 -0.156033 0.054654 0.328830 -0.300644 -0.478303 -0.070078 -0.026372 0.475535 0.072646 -0.101337 0.182327 0.861515 -0.091545 0.557644 -0.467642 -0.331603 0.129987 0.022528 -0.028714 -0.475047 -0.435860 0.319404 -0.253048 -0.097640 0.447601 0.047020 -0.243528 0.032115 0.318763 0.284432 -0.830077 0.589171 0.160816 0.284244 0.157050 -0.146241 -0.039982 0.056849 -0.141492 -0.266140 0.117049 0.260225 -0.327038 -0.001207 -0.099080 -0.564067 0.780339 0.228853 -0.404358 0.073456 0.294712 -0.454411 0.444634 -0.697347 -0.584749 0.114900 -0.004807 -0.035456 0.610886 0.028516 0.139886 -0.737449 0.288873 -0.763466 0.213703 -0.616637 0.166868 0.648391 -0.496673 0.014807 0.189524 0.256629 0.623174 0.269982 0.516264 0.318359 0.067322 0.070105 0.250719 0.206914 -0.154475 -0.077200 -0.250558 -0.612942 -0.116676 -0.009970 -0.932680 0.132323 0.063073 0.348903 0.001552 0.151456 0.015435 0.095860 -0.671286 -0.353693 0.059141 -0.065816 0.304809 0.621327 -0.278921 0.167111 -0.397226 0.594795 -0.123293 0.225465 -0.053285 0.111703 -0.313835 -0.486709 -0.751830 0.156414 0.250345 -0.272101 -0.519631 -0.679157 0.009644 0.036836 -0.230234 0.642437 0.912674 -0.301279 -0.382122 0.695653 0.255812 0.135765 0.630385 -0.070543 0.728471 -0.233692 -0.031773 -0.081573 -0.193883 -0.329195 -0.301070 0.203263 -0.116602 0.057977 -0.001273 -0.642090 0.536501 -0.019483 -0.359316 -0.223455 0.011387 -0.273151 -0.373156 0.692265 -0.101899 0.360374 0.107513 0.684931 -0.159876 -0.410615 0.338060 -0.235029 0.134816 -0.332399 -0.225470 0.070614 0.389471 -0.499685 -0.148585 0.036705 -0.174449 -0.380237 0.052558 0.280114 0.090303 0.158076 0.335984 0.448039 0.740916 0.087178 0.215522 -0.616125 0.197692 0.236571 -0.324683 -0.523396 0.158201 -0.351730 0.008727 0.166462 -0.151533 -0.006437 -0.318287 -0.419689 -0.133610 -0.160644 0.414287 0.190481 -0.320315 0.048908 -0.215547 0.352053 0.283601 0.291650 0.542145 0.519420 0.545914 -0.024095 0.100288 0.041171 0.118535 0.011032 0.126086 0.132200 0.244461 0.403707 0.255905 0.034603 0.337736 0.328449 -0.062764 0.461636 0.233476 0.840009 0.016486 -0.064704 -0.177218 -0.149012 0.427483 1.029985 -0.531270 0.229063 0.235978 0.214058 -0.078494 -0.363100 -0.015417 -0.250727 -0.322350 0.169825 -0.105492 -0.026919 -0.042253 0.489512 -0.087065 -0.612998 0.220017 0.010796 0.186952 0.287251 0.044499 0.026961 0.175348 -0.602860 0.416214 0.398518 0.329367 -0.230297 -0.311491 -0.065365 0.249889 0.067046 0.387030 -0.281140 0.329465 0.454451 0.492003 0.216013 0.041085 -0.345088 -0.416273 0.237051 -0.209591 -0.203347 -0.023118 0.301675 -0.284257 0.021344 -0.191361 -0.634996 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::__normal_iterator(int* const&) = 0.092269 0.093212 0.335854 -0.573039 -0.731795 0.055472 0.141578 -0.198937 0.055516 -0.029141 0.411658 -0.437137 -0.223122 0.950162 -0.081220 -0.426361 -0.041325 -0.332002 -0.182430 0.184327 0.072263 0.379587 -0.111898 0.137716 0.007450 0.096358 -0.159312 0.355053 0.293113 -0.288108 -0.483178 -0.103444 0.001259 0.606293 0.034091 -0.092303 0.155517 1.102676 -0.581544 0.852532 -0.542988 -0.337953 0.356737 0.004183 -0.170329 -0.847456 -0.778630 0.413690 -0.233045 -0.340463 0.617509 0.123721 -0.075113 -0.046632 0.411584 0.495096 -0.980795 0.405282 0.263549 0.134765 0.146681 -0.124426 -0.156866 0.106491 -0.408924 -0.341142 0.150459 0.066128 -0.192477 -0.046517 -0.082950 -0.788948 1.050394 0.222444 -0.407200 0.173049 0.450168 -0.769496 0.660998 -0.493458 -0.707919 0.073184 -0.089753 -0.176878 0.768635 -0.165063 0.231925 -0.934595 0.110818 -0.945053 0.334265 -0.866259 0.144944 0.786414 -0.575287 0.135237 0.245927 0.294921 0.615983 0.257103 0.610530 0.464675 0.304978 0.123232 0.502422 0.333947 -0.354837 -0.321380 -0.598278 -0.797795 0.045027 -0.205673 -1.240489 0.188162 0.157027 0.063449 0.046306 0.021481 0.092132 0.509033 -0.487524 0.177949 0.295753 -0.102819 0.107159 0.931232 -0.341234 0.089259 -0.466336 0.707377 -0.222609 0.526514 -0.042644 0.203419 -0.402277 -0.647863 -0.619676 0.170934 0.215537 -0.329442 -0.602658 -0.882359 0.070834 0.149660 -0.289628 0.450076 1.201113 -0.424203 -0.563825 0.817178 0.741951 0.081941 0.466041 -0.029625 0.966302 -0.290038 -0.125855 -0.345579 -0.342403 -0.269748 0.228399 0.293982 -0.193498 0.225886 -0.090215 -1.350226 1.218865 -0.106717 -0.401034 0.127873 0.091190 -0.385484 -0.583071 0.968671 0.077482 0.540254 0.036209 0.855863 -0.163575 -0.470380 0.364585 -0.111268 0.166820 -0.715508 -0.309518 0.291286 0.454315 -0.440655 -0.221750 -0.228696 -0.279998 -0.398591 0.094205 -0.109810 0.133925 0.158692 0.395145 0.241522 0.903525 0.140254 0.198795 -0.792584 0.301750 0.237474 -0.309693 -0.791464 0.168170 -0.401752 -0.011844 0.009365 -0.150449 0.116833 -0.411398 -0.472039 -0.036762 -0.319619 0.200579 0.169712 -0.834702 0.043113 -0.159427 0.524574 0.339818 0.378455 0.848242 0.672350 0.659593 0.101827 0.067516 0.129307 -0.280554 0.053010 0.056256 0.139219 0.323140 0.600791 0.355699 0.056266 0.498925 0.400044 0.097085 0.582474 0.391318 1.012315 0.335475 -0.215715 -0.083100 -0.087842 0.551130 1.198670 -0.138573 0.223565 0.318380 0.346845 -0.285625 -0.519008 -0.011409 -0.279793 -0.344066 0.549243 -0.068939 -0.128772 -0.022332 0.659277 -0.124814 -0.901348 0.114986 0.010223 0.319744 0.428122 0.069192 0.191841 0.255379 -0.592303 0.674258 0.433464 0.421383 -0.396581 -0.476209 -0.020866 0.183349 0.355342 0.500427 -0.912321 0.301427 0.358622 0.647889 0.096663 0.431424 -0.486449 -0.268926 0.312137 -0.242557 -0.226572 -0.066880 0.323278 -0.472594 -0.000897 -0.612075 -0.633608 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference&>::type&& std::move&>(std::greater&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_iter >::_Iter_comp_iter(std::greater) = 0.183893 0.003930 0.021492 -0.382579 -0.484989 0.181239 -0.224445 -0.236312 -0.037749 -0.121160 0.249369 -0.250798 -0.195293 0.589263 -0.058578 -0.405582 -0.050807 -0.264812 -0.033556 0.222331 -0.030894 0.234967 -0.133377 0.103044 -0.046215 0.128968 -0.198548 0.035056 0.387757 -0.303653 -0.491003 -0.083639 -0.107552 0.428660 0.171905 -0.091625 0.190359 0.779543 0.002778 0.439807 -0.366451 -0.204629 0.100880 -0.016586 -0.095543 -0.357481 -0.342140 0.287457 -0.326992 -0.082358 0.457928 -0.056513 -0.136232 0.092166 0.242773 0.279860 -0.695510 0.543961 0.198797 0.308653 0.216205 -0.150148 -0.066307 0.022816 -0.050852 -0.234134 0.107651 0.185234 -0.249407 -0.116913 -0.163681 -0.493216 0.763836 0.254113 -0.361275 0.000373 0.182655 -0.387812 0.335198 -0.542147 -0.590875 0.104336 -0.072718 0.010655 0.593503 -0.012860 0.090882 -0.642286 0.216404 -0.753829 0.133758 -0.482958 0.171226 0.576493 -0.469346 -0.062683 0.207074 0.135707 0.496873 0.197564 0.454717 0.167040 -0.087053 0.074574 0.217564 0.110810 -0.094431 0.004058 -0.153301 -0.497685 -0.113440 0.032747 -0.805827 0.160764 -0.010118 0.382043 -0.050909 0.192957 -0.006588 -0.025928 -0.437662 -0.303764 -0.039932 -0.068289 0.367309 0.587302 -0.220915 0.158651 -0.352658 0.504617 -0.141442 0.232269 -0.128623 0.139853 -0.126802 -0.446699 -0.692735 0.161778 0.299265 -0.270080 -0.474739 -0.529531 0.037040 -0.068954 -0.223680 0.556770 0.777926 -0.356963 -0.290502 0.650719 0.148854 0.197394 0.575397 -0.076293 0.604034 -0.169962 -0.043924 -0.038515 -0.240704 -0.392112 -0.424750 0.148938 -0.075784 0.028923 -0.012511 -0.449451 0.451453 0.069352 -0.402806 -0.103909 -0.041044 -0.223774 -0.407520 0.562913 0.011252 0.214018 0.253112 0.595691 -0.085373 -0.332161 0.321491 0.011821 0.100297 -0.248288 -0.266336 0.100604 0.243433 -0.413819 -0.127515 0.047299 -0.028285 -0.398311 0.057851 0.470786 0.068506 0.226222 0.285662 0.296035 0.699269 0.085034 0.171235 -0.475314 0.213834 0.198552 -0.352458 -0.359272 0.083711 -0.307989 0.007308 0.281909 -0.122317 0.059749 -0.269771 -0.364289 -0.096426 -0.047452 0.472322 0.297998 -0.275142 0.059677 -0.111262 0.179858 0.312110 0.269090 0.344173 0.520721 0.489861 0.002920 0.068156 0.185186 0.112768 -0.117468 0.068108 0.243338 0.242911 0.245457 0.272423 0.081813 0.268998 0.270960 0.023922 0.411824 0.230566 0.731654 0.095115 -0.096104 -0.124283 -0.148604 0.399135 0.844352 -0.581817 0.246829 0.181246 0.157343 -0.055276 -0.368377 0.082721 -0.210916 -0.293492 0.121135 -0.100283 0.115351 -0.143553 0.457069 -0.140780 -0.534230 0.237022 0.045856 0.210214 0.265737 0.102271 0.047074 0.072923 -0.575280 0.407406 0.435640 0.329706 -0.160248 -0.186100 -0.043475 0.187260 -0.041441 0.360311 -0.089090 0.236304 0.365362 0.426068 0.269101 -0.082971 -0.284950 -0.367162 0.216827 -0.192038 -0.086448 -0.070746 0.267252 -0.207720 -0.019665 -0.121601 -0.504616 +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.394932 0.957745 1.426338 -2.363448 -2.204757 0.985994 -0.871292 -1.691680 0.517751 2.162755 1.432723 -1.554827 -1.947761 2.570976 -1.226882 -2.673720 0.328312 -1.344135 0.050690 -1.199783 -0.157416 0.866216 -0.442549 -0.327863 0.224616 -0.729535 -0.036795 1.271800 2.336773 -1.051955 -2.230312 -0.190454 -0.182945 3.480445 0.389431 -0.598005 0.722129 4.391215 -0.882957 1.657592 -3.670119 -2.800002 2.201254 0.527159 -0.507408 -2.462245 -0.824899 1.436242 -2.718837 -0.002074 1.761059 -0.897483 0.167649 -0.754497 0.643323 2.808035 -5.079219 2.856584 0.308315 0.105805 -0.722594 -0.807458 1.315264 0.903159 -0.300670 -1.994433 1.501958 1.371695 -2.456446 0.555720 -1.505391 -3.460388 3.332951 1.066317 -1.889432 0.338312 0.706482 -2.686543 1.913244 -2.703868 -2.660334 -0.306178 1.045278 -0.657249 2.666640 0.403305 1.500976 -4.800184 0.494783 -4.392067 1.946148 -2.609871 2.627236 3.026774 -2.735063 0.589764 0.983893 0.818078 2.120879 -0.214561 3.474123 0.950808 1.368940 -0.152642 1.575404 1.410801 -1.301582 -0.993378 -1.348141 -3.005447 -0.791351 -0.226627 -4.895648 0.392413 -2.230679 0.866996 0.646869 -0.489169 -0.664160 1.949905 -4.142237 -2.756997 0.097099 -0.524043 2.684843 3.328549 -0.564015 1.279811 -0.343285 3.629576 -0.697937 0.265185 -1.008470 1.055183 -0.587631 -3.092072 -4.183228 0.587029 1.869805 -2.331145 -3.698153 -3.540930 -0.849448 -0.022931 -0.759691 3.907968 5.490962 -1.199683 -3.136297 3.096262 -0.778042 0.626881 4.655142 -0.002333 4.879905 -3.177596 1.411878 -1.064419 0.536804 -0.287659 0.472492 -0.142020 -0.801319 0.864090 0.344467 -0.394737 0.980584 -0.259144 -0.978905 -1.227939 0.135758 -1.294624 -2.124359 3.440229 -0.901867 2.963178 0.272207 4.758195 -2.621621 -3.784157 1.792497 -1.700952 -0.112430 -1.083021 -1.385626 0.181133 2.661307 -2.629836 -1.616037 -1.175502 -0.487206 -0.826741 1.512217 1.631528 0.564655 0.049646 0.213705 3.040002 3.645065 0.062578 0.905025 -3.496454 0.726308 2.510765 -0.727701 -3.219064 0.329712 -2.452916 -0.168276 1.439858 -0.613191 1.595879 -1.707234 -2.178324 -0.482996 -0.489504 2.087252 0.092515 -3.759090 1.290163 -1.471398 0.312591 1.230019 2.911424 2.990285 2.637129 1.839839 -1.088878 0.991430 -1.159897 0.531240 0.075567 1.110943 1.336436 1.328429 2.564784 0.885760 0.653833 2.242091 1.655850 -0.602782 2.844822 0.685267 4.429339 -1.582081 0.614194 -0.784022 -1.708506 2.226939 5.621913 -2.270478 -0.167607 1.550787 1.693539 -0.168815 -3.766899 -0.534717 -1.626291 -0.827557 1.087927 0.623368 -0.719598 -1.247395 4.198468 0.618246 -4.491294 2.837100 -0.109131 0.410138 1.555084 -1.110040 -0.771573 1.357228 -3.151410 1.839277 1.854979 2.404702 -1.985451 -0.525861 -0.345406 2.777123 -0.416119 0.653632 -3.369370 1.170021 2.289666 3.594793 2.796939 2.281473 -1.983145 -1.648568 0.259097 -1.648641 -0.825029 0.016987 2.025285 -2.251217 0.657644 -2.047077 -1.635471 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::remove_reference::type&& std::move(int&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +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.486082 1.479901 2.855903 -4.662517 -4.283993 2.046200 -2.027169 -4.134853 1.074559 4.164509 3.227881 -3.763501 -3.375948 5.139175 -2.732130 -5.497045 1.133417 0.872364 0.490351 -3.025787 0.050059 1.349235 -0.928583 -1.162045 0.160923 -2.372165 0.701033 2.777049 5.152512 -0.420094 -4.381306 -0.566016 0.293473 7.352096 1.145667 -0.291722 0.481780 8.062283 -1.420642 4.513940 -8.389514 -5.032621 4.656363 1.678217 -0.320539 -6.656915 -3.454533 2.193835 -5.615161 -0.141367 2.780257 -2.637123 1.411720 -1.635051 1.207902 6.242201 -8.833551 4.638253 0.584572 -1.502871 -1.554771 -1.001411 2.660669 2.237347 -1.705618 -4.152972 2.597893 3.865318 -4.181482 1.652016 -3.704715 -8.023676 7.065526 1.978025 -4.671485 0.313458 1.084030 -5.876966 3.286487 -3.820076 -5.022578 -1.130108 2.423271 -0.513591 4.108989 1.338072 4.456128 -10.010618 0.304868 -9.277218 4.645747 -5.096839 6.247486 5.649603 -5.493935 1.189592 2.325996 1.152589 4.213281 0.647290 6.771183 2.557065 2.354932 -1.471704 3.885982 3.140872 -2.218253 -3.169404 -2.161485 -5.828448 -1.576159 -0.672929 -11.227894 0.291460 -5.680725 2.368253 0.222384 -0.991102 -0.726246 4.620869 -7.849361 -5.322044 0.732711 -1.282944 5.585814 6.776504 -0.416992 2.884053 -0.515807 7.075205 -1.504489 -0.316978 -2.336176 2.412992 -2.299242 -7.464078 -8.358462 1.399672 3.871602 -5.015493 -7.715965 -6.827908 -2.551508 1.318358 -1.293022 6.277346 10.875731 -2.470124 -6.616167 5.193876 -1.204204 0.407093 9.664731 0.634111 11.071429 -7.640385 4.070140 -2.875672 1.663472 0.054473 2.458632 -1.064683 -2.424282 2.518211 0.011252 -3.285343 3.378494 -1.676278 -1.446125 -2.191107 0.326040 -1.519567 -3.335350 7.050439 -3.244229 6.544689 -1.574398 9.783699 -6.244149 -8.168234 2.894745 -3.889190 -1.222619 -1.121331 -1.427362 0.171119 6.622834 -5.641267 -3.721165 -1.847593 -2.019905 -0.516888 3.915989 2.621051 0.174052 -0.156195 -0.734384 6.675577 6.644511 0.430184 1.647050 -6.339422 1.448735 5.342016 -1.334141 -7.495684 0.448471 -5.560560 -0.401056 0.408801 -0.991574 3.634368 -3.750390 -4.011622 -1.769306 -1.930125 4.221936 -0.469870 -6.543990 3.247046 -3.168698 0.669858 1.708237 6.425072 6.512097 5.565837 3.266212 -2.600715 2.364588 -3.794380 0.616899 1.745954 3.334073 1.743845 2.209333 5.616857 0.907357 1.271041 4.555906 2.280099 0.672655 5.462301 1.446119 8.539733 -3.004127 1.784949 -1.128979 -4.261278 4.498470 12.149734 -3.220342 -0.673048 2.865154 2.918396 -0.794677 -8.648235 -1.180886 -2.301267 -3.468368 3.453434 2.233757 -1.228975 -3.494558 9.087289 2.131046 -9.367374 6.175936 -0.228973 0.152730 3.742028 -3.032965 -1.170280 2.838206 -4.332009 3.096886 3.358206 5.221160 -4.931288 -2.143816 -1.013236 5.001090 1.441621 0.272398 -7.770822 2.577759 5.206986 8.399435 5.087348 5.439637 -4.290564 -2.192028 0.090051 -3.251739 -1.897060 -0.849742 3.516912 -4.269192 0.752868 -4.551572 -2.896386 +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.103530 0.026247 0.208049 -0.567612 -0.938839 0.365729 -0.816974 -0.419770 0.109755 -0.508601 0.522906 -0.644486 -0.531623 0.879503 -0.215641 -1.014918 -0.226323 0.119317 -0.046806 -0.034308 0.031082 0.162295 -0.166561 0.180305 -0.184537 -0.046759 -0.180348 0.279834 1.303235 -0.261443 -0.849909 -0.002802 -0.085359 0.834150 0.249674 -0.071827 0.546224 1.352423 0.271703 0.510546 -0.578777 -0.399280 0.233465 0.166890 -0.334958 -0.423521 -0.766482 0.401173 -1.570353 0.262980 0.878316 -0.114310 -0.112539 0.200015 0.512781 0.656072 -1.437008 1.187936 0.106624 0.441034 0.383165 -0.191753 -0.171978 0.186125 0.173276 -0.378947 0.273672 0.634297 -0.544513 -0.118041 -0.176129 -0.980381 1.768573 0.285255 -0.733728 0.036763 0.567302 -0.544717 0.557492 -0.684268 -1.014829 0.177601 0.105430 0.053489 1.149675 0.009816 0.135038 -1.166988 0.054307 -1.329092 0.473877 -0.879010 0.431666 0.900961 -1.316497 -0.090724 0.373083 -0.019025 0.798748 0.322407 0.866449 0.155044 -0.104981 0.010623 0.384097 0.039333 -0.052718 -0.020394 -0.307556 -0.992237 -0.431210 -0.102519 -1.826077 0.087314 -0.268275 0.923103 -0.066963 0.229827 -0.032105 -0.077615 -0.612489 -0.495679 -0.143070 -0.108056 0.797763 1.084372 -0.414677 0.464349 -0.323478 1.081376 -0.279219 0.056659 -0.289075 0.130322 0.121076 -0.999901 -1.688518 0.410019 0.676906 -0.369999 -0.944602 -0.644863 -0.110887 -0.109783 -0.176142 0.956109 1.481697 -0.406927 -0.638006 1.079061 -0.014726 0.578304 1.448696 -0.038016 1.301381 -0.528661 0.147815 -0.350095 -0.320712 -0.590286 -0.927000 0.211061 -0.092885 0.134724 0.230069 -0.368710 0.599984 -0.135845 -0.630344 -0.457976 -0.015978 -0.380300 -0.697707 1.155941 0.159891 0.498010 0.469395 1.230007 -0.435760 -1.163951 0.553185 0.109239 0.134994 -0.134738 -0.477731 0.152490 0.547126 -0.827312 -0.334130 -0.074143 0.045299 -0.492807 0.071403 1.553760 0.099699 0.287162 0.466989 0.525198 1.358683 0.253878 0.302803 -1.051204 0.222801 0.542984 -0.663069 -0.690389 0.332638 -0.590653 0.091224 0.434579 -0.205660 0.107850 -0.512862 -0.726076 -0.531368 -0.186445 1.061842 0.452343 -0.781653 0.267467 -0.239665 0.138266 0.636498 0.446542 1.006411 0.835980 0.952398 -0.036494 0.317537 0.093256 0.627743 -0.145364 0.351325 0.571308 0.317483 0.632052 0.281880 0.016273 0.423375 0.615237 -0.006901 0.671214 0.528504 1.421126 0.122951 0.046843 -0.416216 -0.385362 0.690419 1.854418 -1.116670 0.503329 0.365961 0.696622 0.249899 -1.364979 -0.053419 -0.421944 -0.459077 0.416785 -0.283754 0.023040 -0.279727 0.803981 0.043449 -0.895295 0.560157 0.023731 0.092498 0.316228 -0.105248 -0.356016 0.183595 -1.267039 0.660876 0.627079 0.539177 -0.377332 -0.219987 -0.172865 0.485864 -0.200846 0.501362 -0.009021 0.385177 0.776354 0.870700 0.817517 -0.127072 -0.559565 -0.933634 0.250501 -0.606813 -0.272760 -0.158776 0.349785 -0.625776 0.182679 -0.028711 -1.328078 +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.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(__gnu_cxx::__ops::_Iter_comp_iter >&&) = 0.131282 -0.054877 0.202831 -0.510969 -0.695797 0.234697 -0.308567 -0.309524 0.035877 -0.177887 0.352685 -0.367099 -0.224643 0.819428 -0.102342 -0.571051 -0.087563 -0.119542 -0.032659 0.161908 0.022922 0.285841 -0.162470 0.158635 -0.083569 0.025008 -0.151848 0.200810 0.516620 -0.205725 -0.573922 -0.124921 -0.141785 0.618544 0.194818 -0.021384 0.256018 1.099414 -0.108377 0.719404 -0.486579 -0.347100 0.189675 0.023928 -0.148557 -0.472150 -0.621755 0.331171 -0.593352 -0.089744 0.644214 -0.039128 -0.064344 0.117046 0.396591 0.352527 -0.933072 0.567513 0.188359 0.235730 0.230189 -0.184167 -0.160534 0.123364 -0.234695 -0.289876 0.185231 0.333781 -0.267145 -0.099983 -0.121546 -0.740585 1.116670 0.295867 -0.501607 0.044762 0.444409 -0.574493 0.510365 -0.501062 -0.824200 0.091008 -0.110390 -0.155238 0.832460 -0.047116 0.268062 -0.909253 0.270763 -1.032013 0.298406 -0.715633 0.233658 0.783316 -0.736988 0.008466 0.343767 0.353400 0.625386 0.223342 0.614578 0.335167 -0.057407 0.124583 0.432603 0.169494 -0.182006 -0.133566 -0.374742 -0.727461 -0.122170 -0.184734 -1.244622 0.143552 0.025622 0.451692 -0.102909 0.215255 -0.012061 0.177383 -0.609862 -0.144190 0.050104 -0.101171 0.370509 0.767173 -0.331813 0.226595 -0.382488 0.745558 -0.300410 0.272625 -0.157106 0.186970 -0.233464 -0.484329 -0.942217 0.248993 0.385744 -0.331712 -0.670390 -0.710800 -0.046346 0.129033 -0.218538 0.727579 1.143221 -0.443289 -0.470249 0.833300 0.265247 0.210947 0.772042 -0.006553 0.827093 -0.254281 -0.077126 -0.306411 -0.327568 -0.432409 -0.333288 0.256221 -0.094719 0.199548 -0.006449 -0.696599 0.900889 -0.094987 -0.521711 -0.251480 0.018915 -0.342968 -0.501968 0.885969 -0.087792 0.373758 0.202772 0.863149 -0.180111 -0.541465 0.355942 -0.155244 0.116739 -0.427116 -0.281679 0.127827 0.425013 -0.575398 -0.249095 -0.064186 -0.151548 -0.413207 0.060308 0.551608 0.095668 0.271012 0.389572 0.468520 0.993334 0.223449 0.142790 -0.695344 0.273310 0.300962 -0.468391 -0.523591 0.155359 -0.395967 0.017934 0.138098 -0.110743 0.102873 -0.472581 -0.477977 -0.264730 -0.146881 0.537313 0.359883 -0.709045 0.116641 -0.089312 0.330718 0.447750 0.316594 0.705371 0.705548 0.726152 0.034495 0.118131 0.160487 0.081084 -0.027863 0.213404 0.288241 0.270456 0.536425 0.341127 0.080719 0.379563 0.465543 0.155599 0.537007 0.334590 1.044805 0.217886 -0.101836 -0.195972 -0.130279 0.545349 1.251149 -0.548902 0.419734 0.279703 0.335777 -0.098983 -0.664180 0.068439 -0.284689 -0.308630 0.283186 -0.104797 0.037201 -0.171518 0.623720 -0.080230 -0.782297 0.245806 0.049598 0.245050 0.418514 0.059727 0.028764 0.131639 -0.750985 0.678268 0.515564 0.390687 -0.322002 -0.255676 -0.060154 0.223027 0.152758 0.493350 -0.275928 0.358530 0.441479 0.624230 0.329200 0.085604 -0.445647 -0.455053 0.287978 -0.403806 -0.191007 -0.056572 0.315321 -0.347519 0.059227 -0.310149 -0.849253 +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.902813 0.767160 1.732292 -2.594524 -2.716065 1.031773 -1.029685 -2.065225 0.879055 1.409651 2.166314 -2.437620 -2.280060 3.553884 -1.393516 -3.217078 0.701671 -0.028589 0.272550 -1.131909 0.118999 1.031915 -0.448202 -0.237058 0.197725 -0.882743 -0.029546 1.939871 3.454394 -0.908483 -2.701414 -0.130902 -0.018583 3.913021 0.460954 -0.057152 0.921168 4.961599 -1.340985 3.185635 -4.510194 -2.353325 2.556447 0.869193 -0.752316 -3.648925 -2.224414 1.443402 -4.313659 0.007871 2.322624 -1.190231 0.613953 -0.643750 1.230789 3.841283 -5.702950 3.167544 0.443952 -0.090717 -0.124246 -0.651404 0.713148 1.064398 -0.682025 -2.194188 1.399729 1.733093 -2.649186 0.651238 -1.665696 -4.121322 4.774390 0.779956 -2.683646 0.333231 1.045043 -3.181754 2.134386 -2.967162 -3.055199 -0.320269 1.299136 0.007809 2.880299 0.413632 1.985678 -5.605648 -0.386540 -5.161420 2.813718 -3.353110 3.087424 3.449989 -3.833491 0.595205 1.158677 0.035366 2.606431 0.802461 3.847650 1.366240 1.262376 -0.695314 2.156283 1.641121 -1.207223 -1.556579 -1.545917 -3.546074 -0.967068 -0.156591 -6.530121 0.079784 -2.770284 1.924228 0.452683 -0.464284 -0.168691 2.215941 -3.484011 -2.023400 0.280503 -0.587698 2.986590 4.464929 -0.517282 1.515635 -0.584009 4.255635 -0.931905 0.454234 -1.343074 1.239456 -0.780045 -4.857771 -4.897141 0.546091 1.995425 -2.549305 -4.201650 -4.165783 -0.914318 0.320299 -0.717243 3.426102 6.263599 -1.437186 -3.575966 3.475024 -0.115901 0.679920 5.288687 0.011410 6.155668 -3.855445 1.840689 -1.691099 0.439136 -0.409851 1.433896 -0.156688 -1.368488 0.948174 0.235291 -2.989078 2.340590 -0.360607 -1.133267 -1.266302 -0.031085 -1.164392 -2.521178 4.398940 -1.141519 3.487932 -0.622243 5.668213 -3.040483 -4.917518 2.046829 -1.271810 -0.106661 -0.985581 -1.487102 0.805001 3.267239 -3.167924 -1.910922 -1.483764 -0.679490 -0.703415 1.641979 1.985260 0.231264 0.046119 0.039601 3.352980 4.082767 0.227822 1.225349 -4.033936 0.763393 2.799905 -0.862242 -4.479410 0.850536 -3.084406 -0.177921 0.697301 -0.721914 1.710437 -2.160520 -2.637522 -1.009216 -1.186723 2.619353 0.085714 -4.278389 1.552415 -1.545731 0.330058 1.497285 3.158799 3.784537 3.094203 2.152341 -1.045677 1.062600 -1.427335 0.595783 0.656920 1.653705 0.998785 1.245351 3.050231 0.874323 0.514919 2.430732 1.577612 -0.134688 3.148071 1.395515 4.912775 -1.158750 0.806277 -0.676228 -2.196357 2.771783 6.770573 -2.361645 -0.129261 1.656717 2.180818 -0.093477 -4.939022 -0.786317 -1.640405 -2.052438 2.465011 0.248345 -0.622604 -1.600091 4.762630 0.872192 -5.115081 3.232561 -0.283553 0.159302 1.618428 -1.236344 -1.167904 1.613571 -3.579404 2.064025 1.831242 2.989397 -2.114075 -1.583998 -0.643416 2.656586 1.031218 0.777037 -4.329751 1.142431 3.029833 4.570540 3.053896 2.775661 -2.219212 -1.839090 -0.025146 -2.068880 -1.155842 -0.738394 1.734861 -2.503985 0.393357 -2.362180 -2.305782 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::greater::operator()(int const&, int const&) const = 0.367738 0.321901 0.322524 -0.751710 -0.827942 0.091692 0.299683 -0.398316 0.089406 0.493347 0.554139 -0.519512 -0.143286 1.016298 -0.208952 -0.401765 0.058517 -0.574343 -0.214316 0.203024 0.115754 0.469576 -0.134831 -0.104479 0.011781 0.134933 -0.093435 0.319073 0.194490 -0.285279 -0.686221 -0.121291 0.155636 0.813663 0.083744 -0.261365 0.015052 1.122164 -0.774611 0.848985 -0.952681 -0.536862 0.614134 0.029461 -0.091431 -1.279123 -0.677056 0.497067 0.310736 -0.635260 0.490241 -0.031407 0.057126 -0.245348 0.199896 0.695035 -1.069469 0.391479 0.357216 0.033828 -0.047415 -0.140869 0.214494 0.359618 -0.608461 -0.532779 0.222455 0.067931 -0.259699 0.009090 -0.315025 -1.128906 1.173748 0.254659 -0.573549 0.100152 0.155757 -1.212466 0.771195 -0.615648 -0.695157 0.054742 0.020475 -0.038556 0.622462 -0.162852 0.476898 -1.242903 0.118882 -1.172924 0.478140 -0.884783 0.383031 0.842832 -0.554189 0.068646 0.192408 0.515521 0.876471 0.269929 0.795947 0.640579 0.653979 -0.102936 0.522715 0.661611 -0.469749 -0.474108 -0.578222 -0.943062 0.133336 -0.038065 -1.624376 0.285835 -0.070774 -0.101537 0.115937 -0.257926 0.137612 1.008051 -0.847060 -0.233193 0.370433 -0.108116 0.247800 1.128784 -0.271029 0.194567 -0.435023 0.793877 -0.075780 0.480462 0.001079 0.317595 -0.872286 -0.900095 -0.575325 0.271477 0.294478 -0.624473 -0.780459 -1.292351 0.092499 0.179461 -0.401987 0.401151 1.396325 -0.477256 -0.852351 0.816126 0.844958 -0.311305 0.644736 -0.116133 1.409683 -0.697781 0.173010 -0.247862 -0.111113 -0.177011 0.860530 0.105108 -0.354890 0.231843 -0.305910 -1.790936 1.217222 0.031850 -0.289244 0.359238 0.047581 -0.397470 -0.632741 1.023870 -0.087188 0.748736 -0.211512 1.101751 -0.467547 -0.527724 0.461634 -0.265120 0.000155 -0.765200 -0.310365 0.441712 0.800542 -0.531206 -0.229572 -0.141591 -0.416515 -0.386399 0.409837 -0.616364 0.117205 0.075491 0.150849 0.447595 0.867111 -0.009966 0.225694 -0.775646 0.347558 0.443547 -0.264644 -1.095477 -0.125949 -0.784764 -0.038012 -0.025093 -0.235504 0.367992 -0.440374 -0.574657 0.185002 -0.422567 0.176706 -0.045021 -0.874376 0.165483 -0.413167 0.669637 0.081378 0.776586 0.814902 0.885189 0.590094 -0.114772 0.161136 -0.170472 -0.531956 0.157939 0.100867 -0.029014 0.464423 0.842668 0.296935 0.170185 0.728335 0.287308 0.109362 0.807973 0.238615 1.113442 0.011979 -0.116096 -0.020589 -0.289829 0.707841 1.510118 -0.014643 -0.106015 0.272233 0.201167 -0.522581 -0.399507 -0.042933 -0.268874 -0.439697 0.559577 0.217148 -0.080608 -0.197270 1.044000 -0.021199 -1.252706 0.349105 -0.038564 0.388994 0.713964 -0.175623 0.402927 0.320892 -0.315376 0.693419 0.555807 0.653232 -0.582067 -0.752821 -0.017654 0.393487 0.351026 0.355742 -1.408744 0.401738 0.515576 0.960656 0.118770 0.846696 -0.718022 0.002737 0.289024 -0.058056 -0.183036 -0.180532 0.520583 -0.607918 -0.079960 -0.961296 -0.232464 +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.154351 0.120347 0.246174 -0.597828 -0.899968 0.253995 -0.470309 -0.363241 0.098758 -0.252948 0.520919 -0.623679 -0.409425 0.976145 -0.209017 -0.788939 -0.159591 -0.123150 -0.114993 0.052068 0.057224 0.259807 -0.146997 0.147384 -0.129234 0.043166 -0.181749 0.277327 0.945261 -0.311692 -0.789551 -0.020661 -0.020612 0.772287 0.171931 -0.148273 0.406823 1.261845 -0.105709 0.630674 -0.633715 -0.386959 0.284873 0.130489 -0.257768 -0.657152 -0.790086 0.434607 -1.014695 0.015818 0.795845 -0.039946 -0.123387 0.101570 0.472757 0.646579 -1.329311 0.968896 0.180508 0.376260 0.307813 -0.163323 -0.091955 0.189742 -0.030280 -0.395914 0.246493 0.435141 -0.445742 -0.091749 -0.184465 -0.980047 1.499928 0.258651 -0.646607 0.068914 0.482656 -0.701472 0.628641 -0.724301 -0.901323 0.173591 0.059976 0.003010 1.001549 -0.041766 0.160976 -1.122848 0.068762 -1.220709 0.431508 -0.897000 0.346612 0.868608 -1.051765 -0.056699 0.299082 0.088101 0.829648 0.336819 0.802096 0.296632 0.101602 -0.002708 0.418403 0.207748 -0.173808 -0.116406 -0.402928 -0.968491 -0.273765 -0.082118 -1.655073 0.142725 -0.140256 0.578367 -0.006388 0.104566 0.022701 0.177083 -0.606934 -0.359947 0.005799 -0.098456 0.579359 1.101933 -0.394096 0.357659 -0.401193 0.966147 -0.211956 0.227191 -0.185714 0.147359 -0.145755 -0.979366 -1.344071 0.353676 0.532762 -0.394771 -0.845087 -0.817286 -0.012520 -0.072621 -0.244432 0.792516 1.407642 -0.412069 -0.652005 1.001841 0.304456 0.350043 1.158802 -0.080422 1.294134 -0.514406 0.110550 -0.301937 -0.304764 -0.503340 -0.477284 0.220391 -0.140361 0.125694 0.102179 -0.831478 0.784014 -0.077371 -0.537101 -0.219773 0.031011 -0.373094 -0.671835 1.107812 0.123731 0.524601 0.304448 1.129420 -0.382561 -0.940238 0.532066 0.024539 0.151005 -0.329151 -0.451954 0.228561 0.578564 -0.692193 -0.270336 -0.115081 -0.081563 -0.481876 0.104327 0.901619 0.119732 0.228131 0.429595 0.429345 1.214541 0.188098 0.328505 -0.983780 0.252507 0.476615 -0.536216 -0.815345 0.260526 -0.606963 0.062814 0.295981 -0.224331 0.123858 -0.487209 -0.683954 -0.321290 -0.261034 0.783669 0.321840 -0.754671 0.204007 -0.304114 0.314007 0.504853 0.478115 0.931050 0.815708 0.865065 -0.036823 0.240571 0.060916 0.310124 -0.064494 0.246015 0.374278 0.346897 0.642672 0.283907 0.030070 0.476874 0.507239 -0.022368 0.673552 0.469310 1.286246 0.157793 -0.013937 -0.314516 -0.338475 0.655643 1.698336 -0.791200 0.337792 0.340142 0.553184 0.039474 -1.039132 -0.053604 -0.385729 -0.465545 0.458171 -0.191934 -0.026190 -0.200354 0.792343 -0.009392 -0.930777 0.432168 -0.004410 0.169908 0.385852 -0.075903 -0.143617 0.208485 -1.030411 0.656903 0.585328 0.537321 -0.382586 -0.385758 -0.128436 0.419822 -0.009839 0.478967 -0.427037 0.405541 0.689258 0.828916 0.572547 0.108758 -0.576270 -0.693438 0.272303 -0.437861 -0.259187 -0.150516 0.391869 -0.619590 0.111135 -0.244923 -1.041684 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::front() const = 0.112380 0.154523 0.168359 -0.408831 -0.730788 0.171313 -0.347400 -0.265259 -0.003859 -0.219462 0.343573 -0.408819 -0.390441 0.646418 -0.178675 -0.604283 -0.205925 -0.175794 -0.104497 -0.015096 0.002515 0.219837 -0.108848 0.163108 -0.081131 0.040797 -0.197314 0.165885 0.710341 -0.321639 -0.487099 -0.035712 0.003225 0.525400 0.132264 -0.111967 0.289253 0.937012 0.063123 0.309945 -0.474657 -0.324740 0.175656 0.051640 -0.152008 -0.527790 -0.499876 0.350628 -0.777542 0.108214 0.561273 0.010306 -0.161550 0.102711 0.340833 0.413420 -1.003623 0.858651 0.144327 0.239262 0.242127 -0.099070 -0.147931 0.060843 0.159941 -0.279186 0.109894 0.335208 -0.336012 -0.055959 -0.068204 -0.583609 1.098122 0.162869 -0.433983 0.067889 0.340409 -0.358065 0.439592 -0.656985 -0.672598 0.115420 0.075662 0.117986 0.703915 0.011234 0.012556 -0.783426 0.027374 -0.865254 0.273683 -0.601063 0.200839 0.594404 -0.713745 -0.009325 0.245633 -0.159051 0.616089 0.250133 0.572009 0.122191 0.091157 0.127064 0.188422 0.096248 -0.075075 -0.006801 -0.273446 -0.704353 -0.200975 0.038621 -1.106872 0.118940 -0.020940 0.480352 0.004433 0.098498 0.071228 0.002349 -0.429363 -0.303371 0.016530 -0.068560 0.428117 0.734675 -0.278062 0.253269 -0.325525 0.678404 -0.194862 0.234291 -0.105249 0.118697 0.059809 -0.832865 -1.055654 0.243693 0.349338 -0.245527 -0.549550 -0.495441 0.025287 -0.128430 -0.212269 0.508241 1.020101 -0.355680 -0.465796 0.785625 0.210216 0.297061 0.791814 -0.044717 0.860497 -0.246301 -0.054530 -0.163927 -0.320971 -0.344886 -0.463472 0.197584 -0.097255 0.078072 0.162643 -0.516766 0.359458 -0.077256 -0.469272 -0.109277 0.006977 -0.274913 -0.451700 0.679383 0.275597 0.373119 0.300183 0.775047 -0.217577 -0.699603 0.348685 0.070174 0.140712 -0.144339 -0.303599 0.182377 0.302050 -0.518620 -0.172973 -0.059096 -0.052886 -0.437396 0.030044 0.698722 0.124949 0.235676 0.369336 0.255438 0.902109 0.137675 0.231222 -0.704360 0.197207 0.265765 -0.308563 -0.620596 0.187016 -0.363841 0.040942 0.362507 -0.169310 0.068483 -0.181641 -0.411231 -0.214707 -0.226588 0.587449 0.299667 -0.285297 0.105169 -0.219568 0.230619 0.320944 0.302908 0.651150 0.587309 0.632790 0.089683 0.161497 0.096119 0.411086 -0.109393 0.179521 0.270163 0.276355 0.372926 0.281253 0.045734 0.377531 0.391586 -0.074597 0.499662 0.268500 0.976235 -0.043457 -0.022287 -0.266565 -0.132097 0.468606 1.163189 -0.633325 0.238936 0.244297 0.373207 0.114364 -0.715091 -0.001218 -0.275193 -0.314864 0.355050 -0.072077 -0.010309 -0.108776 0.514424 -0.068565 -0.599786 0.379224 0.030623 0.138659 0.142527 0.029368 -0.186032 0.181095 -0.788100 0.365010 0.486299 0.394402 -0.297235 -0.299934 -0.085926 0.341643 -0.129119 0.445957 -0.268197 0.175746 0.533453 0.523186 0.334015 -0.021946 -0.407672 -0.671409 0.279430 -0.254706 -0.203619 -0.015754 0.232256 -0.428187 0.092299 -0.000149 -0.772117 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::begin() const = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator*() const = 0.145181 -0.017609 0.211113 -0.326588 -0.391204 0.112517 -0.019547 -0.160333 0.040559 0.010859 0.183340 -0.176980 -0.063686 0.595502 -0.084247 -0.257623 -0.032619 -0.199558 -0.064407 0.148087 0.037085 0.217452 -0.088358 0.090462 -0.032580 0.033177 -0.048429 0.103390 0.021352 -0.154101 -0.335706 -0.105440 -0.064946 0.372872 0.069776 0.042328 0.071172 0.663397 -0.188456 0.627080 -0.369494 -0.291889 0.109663 -0.009307 0.001468 -0.409138 -0.385960 0.222341 -0.035614 -0.209929 0.362012 0.026466 -0.099040 0.016844 0.255735 0.168621 -0.540505 0.205397 0.118299 0.091909 0.080423 -0.109435 -0.064069 0.074070 -0.270017 -0.184370 0.121619 0.181350 -0.162108 0.017915 -0.051453 -0.491476 0.602520 0.193123 -0.275862 0.056686 0.318289 -0.401698 0.380806 -0.367874 -0.472837 0.036774 -0.102556 -0.139367 0.467621 -0.011660 0.216847 -0.570651 0.269407 -0.600853 0.210088 -0.485393 0.103896 0.478555 -0.292044 0.057189 0.225717 0.377130 0.393753 0.169730 0.361047 0.337640 0.050190 0.076439 0.343647 0.149859 -0.194761 -0.173781 -0.315764 -0.470471 0.013380 -0.149472 -0.709038 0.088460 0.129289 0.181614 -0.056579 0.139280 0.039314 0.193600 -0.552594 -0.003985 0.143864 -0.058184 0.124241 0.437666 -0.224455 0.100034 -0.274840 0.435501 -0.196138 0.222614 -0.031694 0.113244 -0.303014 -0.209206 -0.423245 0.122522 0.172284 -0.209051 -0.388471 -0.561269 -0.017732 0.255261 -0.163039 0.452352 0.717249 -0.265144 -0.298453 0.465240 0.353018 0.002956 0.340146 0.016552 0.491331 -0.158195 -0.073564 -0.178506 -0.169550 -0.201859 -0.040569 0.190324 -0.080390 0.180236 -0.053398 -0.688249 0.760754 -0.111294 -0.273364 -0.070422 0.024813 -0.231567 -0.258928 0.543335 -0.111503 0.289169 0.021351 0.515532 -0.116124 -0.199368 0.169472 -0.273451 0.086252 -0.400736 -0.120215 0.051596 0.327194 -0.371169 -0.147906 -0.041571 -0.250608 -0.208736 0.055542 -0.024279 0.071475 0.127070 0.232613 0.343574 0.562540 0.139387 0.069540 -0.425212 0.180461 0.125415 -0.230172 -0.354884 0.077782 -0.249271 0.004512 -0.026210 -0.059818 0.036724 -0.302221 -0.275237 -0.095260 -0.159400 0.158622 0.145215 -0.394403 -0.023368 -0.037395 0.341807 0.216237 0.199965 0.471176 0.437183 0.438652 0.000000 0.045791 0.060277 -0.130555 0.040703 0.095836 0.104402 0.159428 0.342058 0.204534 0.033497 0.282962 0.276949 0.130179 0.342638 0.192986 0.607914 0.130960 -0.085157 -0.080265 -0.045540 0.329162 0.711466 -0.232026 0.271315 0.176934 0.153281 -0.176157 -0.197881 0.027942 -0.169248 -0.210247 0.209436 0.013488 -0.009675 -0.060705 0.390112 -0.051343 -0.526590 0.045675 0.011716 0.183667 0.359457 0.038626 0.145146 0.104797 -0.330203 0.427161 0.267760 0.242327 -0.244912 -0.241094 -0.021009 0.093734 0.214531 0.302106 -0.333340 0.255557 0.228306 0.387445 0.057728 0.144706 -0.310927 -0.147926 0.188607 -0.220484 -0.141344 0.027349 0.243609 -0.158166 -0.032555 -0.357925 -0.434519 +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.279149 0.455743 0.620760 -1.574507 -2.255750 1.185256 -2.064455 -1.197130 0.242728 0.528738 0.899886 -0.904049 -0.743640 1.837386 -0.915710 -1.957616 -0.478279 -1.583883 0.160380 -0.479988 -0.203812 0.645951 -0.565375 0.518621 -0.367485 -0.221548 -0.481070 0.122172 2.151790 -1.049898 -2.126946 -0.138231 -0.746144 2.170221 0.757480 -1.225993 1.384480 3.578376 0.660491 0.036138 -1.461087 -1.645338 0.342745 0.230141 -0.492048 -0.246898 -0.618800 0.989041 -2.195395 0.949791 2.025219 -0.531241 -0.400022 0.580649 0.817651 0.943882 -3.647619 2.837744 0.174880 1.338178 0.329759 -0.829968 0.570455 0.636465 0.465382 -0.991141 1.449922 1.723423 -1.493582 -0.222903 -0.583317 -2.336152 2.756822 1.095610 -1.396203 -0.111606 1.148189 -1.719557 1.453512 -2.252425 -2.710820 0.455741 0.093538 -1.046758 2.860066 -0.109177 0.523661 -2.983503 1.415213 -3.349760 0.567819 -1.783307 1.206757 2.381430 -2.539381 -0.329370 0.983957 1.349926 2.172566 -0.196832 2.488205 0.459206 -0.146250 0.468803 0.660305 0.447700 -0.261647 0.599437 -0.666539 -2.228317 -1.129352 -0.047172 -3.447250 0.580522 -0.685204 1.177314 -0.088846 0.380893 -0.738224 0.569583 -2.741559 -2.777782 -0.679994 -0.274004 1.957201 2.130496 -1.032009 1.238626 -0.697205 2.785127 -0.794498 0.040072 -0.701535 0.346796 -0.192134 -1.379404 -4.345766 0.960289 1.847594 -1.359197 -2.537766 -1.817730 -0.398335 -0.811270 -0.532723 3.982707 3.788134 -1.108075 -1.705814 2.857722 -0.857834 0.845840 4.008370 -0.261110 2.679131 -1.201854 0.213580 -0.685870 -0.416441 -1.658484 -2.771047 0.535698 0.525263 0.236033 0.761115 1.578670 0.613549 0.002689 -1.690221 -1.366729 0.170863 -0.989788 -1.697755 2.407170 0.237111 1.014864 1.945215 3.156974 -1.047256 -2.444874 1.409738 -0.412994 0.517184 -0.373581 -1.087203 -0.119691 1.448530 -1.637016 -0.838771 -0.018547 0.043438 -1.372509 0.124579 3.885791 0.867638 0.846786 1.103365 1.862444 3.703020 0.634541 0.717654 -2.458090 0.613721 1.681187 -1.556669 -1.053327 0.300978 -1.409228 0.196728 1.584928 -0.497424 0.636778 -1.527147 -1.856697 -1.071175 0.360663 2.576239 1.322112 -2.518517 0.913229 -1.091077 0.344507 1.311998 1.158969 1.891602 2.179643 2.427475 -0.702160 0.731420 0.183840 1.762291 -0.713078 1.011979 1.555160 0.902829 1.906086 0.900831 0.444946 0.989131 1.707100 -0.431019 1.773494 0.296835 3.716471 -0.965456 0.413564 -1.511496 -0.773739 1.676448 4.473336 -2.694797 0.923652 0.872106 1.452078 0.341035 -2.958624 0.182254 -1.290084 0.223082 -0.817427 -0.106261 -0.067879 -0.772779 2.154648 0.132903 -2.393289 1.645428 0.111370 0.393072 1.075444 -0.167280 -0.794986 0.289504 -3.334106 1.942691 1.941398 1.242557 -0.825679 0.123654 -0.217422 1.906921 -2.018758 1.335873 -0.046125 1.574668 1.817646 1.706824 2.311067 -0.019907 -1.492690 -2.382876 0.957864 -1.539407 -0.649460 0.681219 1.642076 -1.937080 1.164850 0.021658 -2.693659 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::pop_back() = 0.463493 -0.306567 0.899761 -0.937614 -1.213121 0.886342 -1.097157 -0.765937 0.265427 -0.103565 0.604071 -0.063726 0.245270 0.946618 -0.224930 -0.938822 -0.304832 -0.485204 0.028599 -0.391232 0.031571 0.192710 -0.427887 0.395487 -0.402309 -0.557878 0.162200 0.373386 0.198823 -0.179020 -0.842861 -0.342645 -0.789962 1.259162 0.542837 -0.119859 0.599163 2.154614 0.151582 0.431716 -0.425225 -1.172014 0.170215 -0.007988 -0.345391 0.431869 -0.752548 0.396618 -0.608916 0.166028 1.256465 -0.226629 0.208831 0.402607 0.474707 -0.069489 -1.396308 0.230093 0.018227 -0.026325 -0.272641 -0.418193 0.184419 0.633636 -0.640006 -0.388989 1.254673 1.187564 -0.163518 -0.205950 0.075701 -1.749731 1.728433 0.666775 -0.354172 -0.026173 1.331867 -1.044385 1.124593 0.312663 -1.841333 0.026067 -0.485829 -1.811329 1.753586 -0.399649 0.995133 -1.675418 1.427685 -2.032157 0.419071 -0.903709 0.459569 1.214258 -1.359695 0.067396 1.101432 2.251959 0.728590 -0.491116 1.289042 0.504840 -0.384916 0.689670 1.236975 -0.006149 -0.393681 -0.062246 -1.182107 -1.491967 -0.041368 -1.126510 -2.045624 0.436997 0.119604 -0.034768 -0.619293 0.460600 -0.294969 1.137464 -1.635863 -0.109495 0.097463 -0.188403 0.318634 0.851898 -0.789943 0.593089 -0.182843 1.482334 -1.181049 0.077021 -0.217985 0.311855 -0.187173 0.624017 -1.984718 0.778337 1.088825 -0.784486 -1.314533 -0.826044 -0.438427 0.780725 -0.205201 2.573096 2.385160 -0.902550 -1.070594 1.339126 0.334593 -0.053059 1.743439 0.291199 1.180814 -0.416412 -0.400708 -1.236914 -0.551991 -0.604891 -1.622061 0.643478 0.673635 1.027901 0.319394 0.753851 2.776625 -0.744750 -1.104190 -0.232062 0.549048 -0.679288 -0.949221 1.416965 0.500629 0.643650 1.352167 1.788830 -0.480233 -0.782746 0.318342 -0.574236 0.093611 -0.863219 -0.253615 -0.431464 1.028950 -0.523933 -0.629945 -0.442110 -0.713395 -0.398185 -0.017667 2.091363 0.838259 0.656384 0.601201 0.717441 2.485497 0.985602 -0.307871 -1.318941 0.456873 0.960535 -0.872757 0.234494 -0.160682 -0.617119 0.173113 -0.072305 0.013756 0.719148 -1.387880 -0.701922 -0.989309 0.392624 0.762546 0.914014 -2.751907 0.336171 0.004466 0.685369 0.817166 0.418086 1.650658 1.558170 1.777704 -0.237181 0.319316 0.389465 0.092871 -0.444567 0.579466 1.401816 0.396969 1.514732 0.613501 0.499213 0.718255 1.241760 0.855211 0.975315 0.063697 2.352354 0.077998 0.138224 -0.932443 0.213730 1.051318 2.477063 -0.508590 1.219981 0.482242 1.035347 -0.453131 -1.894172 0.365537 -0.562663 0.810118 -0.523852 0.389363 0.009553 -0.598296 1.151044 0.292320 -1.604900 0.299263 0.102479 0.428573 1.367413 -0.121399 0.083542 -0.045855 -1.405453 1.748766 1.079837 0.462761 -0.996198 0.563075 0.100510 0.877663 -0.898066 1.004962 -0.100057 1.528302 0.364018 0.756981 0.731891 0.293556 -1.277517 -0.693628 0.828402 -1.387711 -0.297014 1.075833 0.952130 -1.119346 0.781700 -0.950198 -1.752336 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator--() = 0.018099 -0.095075 0.295010 -0.390428 -0.490974 0.122547 -0.081467 -0.156655 0.092664 -0.189780 0.261856 -0.280573 -0.167012 0.670967 -0.024236 -0.450432 -0.059084 -0.006271 -0.100827 0.116657 0.062541 0.200185 -0.088603 0.124003 -0.032813 -0.032571 -0.038399 0.271456 0.249064 -0.120124 -0.362401 -0.095341 -0.073425 0.489735 0.039605 0.144403 0.154213 0.869209 -0.184912 0.767529 -0.352734 -0.328727 0.209505 0.018796 -0.132341 -0.389239 -0.562526 0.260516 -0.403157 -0.210668 0.492958 0.078070 -0.059496 0.000000 0.361159 0.286413 -0.705183 0.233827 0.107483 0.059729 0.084579 -0.109067 -0.175802 0.104185 -0.338177 -0.221315 0.153992 0.210377 -0.192991 -0.004516 -0.005938 -0.634005 0.957632 0.211031 -0.340183 0.136521 0.498096 -0.440417 0.477584 -0.212223 -0.596336 0.020666 -0.087490 -0.225229 0.663685 -0.065585 0.274213 -0.724983 0.213209 -0.747184 0.338662 -0.643504 0.150134 0.609546 -0.530697 0.137946 0.286854 0.398851 0.365259 0.170727 0.473108 0.338629 0.052847 0.107880 0.469246 0.103200 -0.252734 -0.284940 -0.468308 -0.627643 0.012336 -0.313931 -1.021221 0.074465 0.107775 0.289782 -0.033078 0.175346 0.043314 0.236033 -0.533673 0.190886 0.197358 -0.084284 0.153840 0.600283 -0.296170 0.111425 -0.263158 0.595265 -0.274438 0.238216 -0.064966 0.139130 -0.204660 -0.212683 -0.556357 0.155010 0.231922 -0.216189 -0.499496 -0.580212 -0.066128 0.361657 -0.147241 0.528499 0.964685 -0.296284 -0.386105 0.587416 0.392082 0.153384 0.442448 0.067767 0.658461 -0.227354 -0.087644 -0.357351 -0.225350 -0.181148 -0.060988 0.260987 -0.114419 0.283483 -0.026357 -0.751556 1.064324 -0.224939 -0.319360 -0.106117 0.062006 -0.314650 -0.396208 0.776147 -0.051479 0.426847 0.062493 0.696684 -0.168465 -0.379261 0.223583 -0.216272 0.074176 -0.533974 -0.192115 0.075396 0.377522 -0.454287 -0.224362 -0.166063 -0.265707 -0.214145 0.047797 0.209293 0.084265 0.121628 0.302245 0.357538 0.742741 0.210797 0.022869 -0.638193 0.198132 0.178620 -0.334021 -0.375817 0.167177 -0.270542 0.011398 -0.046951 -0.065600 0.052599 -0.407628 -0.351356 -0.215921 -0.191757 0.209685 0.161690 -0.752179 -0.002760 0.048570 0.358854 0.359960 0.232350 0.760718 0.514560 0.566588 0.059652 0.093438 0.107152 -0.174761 0.037498 0.094269 0.268937 0.184928 0.469406 0.244685 0.019017 0.358255 0.393388 0.199172 0.420802 0.339862 0.833542 0.315867 -0.139277 -0.093431 -0.059267 0.421887 0.954609 -0.276849 0.402606 0.273627 0.357518 -0.166740 -0.506891 -0.016275 -0.227407 -0.230359 0.386820 -0.091781 -0.073425 -0.062324 0.485897 -0.019242 -0.686873 0.049261 0.008751 0.199559 0.407954 0.008510 0.100359 0.166952 -0.508260 0.560959 0.282690 0.275214 -0.351149 -0.183767 -0.034842 0.118178 0.262390 0.372861 -0.363819 0.267948 0.237690 0.516416 0.162237 0.193169 -0.373496 -0.221146 0.203561 -0.376656 -0.193196 -0.016151 0.219744 -0.253713 0.002788 -0.496676 -0.686424 +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.846902 0.762513 0.867297 -1.554411 -2.729715 0.935084 -2.170064 -1.396987 0.198462 0.010983 1.294480 -1.518352 -0.832059 2.200193 -1.290694 -2.093719 -0.860102 -0.707221 -0.130589 -1.009950 0.074845 0.613343 -0.462332 0.355176 -0.482451 -0.431958 -0.315095 0.516691 2.694693 -0.775248 -1.821984 -0.073214 -0.101572 2.232571 0.734649 -1.013006 1.238534 3.408033 0.372525 0.021272 -1.928099 -1.634692 0.782842 0.413042 -0.522389 -1.340547 -1.693445 0.999684 -2.924877 1.212062 1.812456 -0.425210 -0.226901 0.410078 0.834838 1.339079 -3.846439 3.249791 0.211663 0.645876 0.340795 -0.494607 0.266076 0.690817 0.667497 -1.080733 1.081872 2.058003 -1.290756 -0.061356 -0.354937 -2.490850 3.580030 0.512064 -1.473785 -0.014209 1.102760 -1.705737 1.570981 -2.138857 -2.529894 0.354771 0.520383 -0.343326 2.492760 0.058017 0.504039 -3.107206 0.478912 -3.426144 0.948385 -1.876956 1.167200 2.001670 -3.136832 -0.174934 0.959995 0.371619 2.485724 0.495701 2.369333 0.493418 0.333563 0.358429 0.745118 0.607165 -0.037997 0.307650 -0.848339 -2.588318 -1.097152 -0.070642 -4.363865 0.457426 -0.731887 1.114964 -0.347005 -0.038429 -0.135851 0.973149 -2.109984 -2.105393 -0.262406 -0.236542 1.653452 2.369093 -0.920623 1.309258 -0.752851 2.693854 -0.788332 0.079035 -0.477805 0.394407 -0.118141 -2.982411 -4.700598 1.197128 1.649035 -1.290379 -2.418389 -1.727395 -0.333189 -0.682941 -0.557791 2.834776 3.869540 -1.105133 -2.239555 2.742203 0.173896 0.591337 4.090811 -0.092111 3.456563 -1.391449 0.241871 -0.923009 -0.754334 -1.191441 -2.331247 0.365638 0.117601 0.429307 0.861068 -0.307100 1.077420 -0.421131 -1.623226 -0.929933 0.351483 -0.937111 -1.532467 2.485057 0.925294 1.458011 1.275326 3.260442 -1.412848 -3.138660 1.234381 -0.340934 0.340562 0.145473 -0.800176 0.180016 1.733020 -1.692850 -0.891497 -0.171753 -0.228433 -1.275471 0.364425 3.569530 0.771507 0.819460 0.960032 1.237372 3.637912 0.551940 0.957622 -2.527165 0.551375 1.949758 -0.980851 -2.324261 0.386455 -1.623404 0.237815 1.016779 -0.523094 0.781645 -1.161827 -1.591305 -1.199615 -0.412020 2.537995 1.043771 -1.831039 1.054531 -1.559472 0.692075 0.951880 1.361843 2.514615 2.236116 2.347717 -0.268975 0.819574 -0.419329 2.224316 -0.304905 1.376472 1.027960 0.934100 2.273005 0.754154 0.433648 1.297649 1.671257 -0.315597 1.883759 0.434605 3.847345 -1.167025 0.622129 -1.614506 -0.593621 1.839028 5.032196 -2.016638 0.507076 0.798527 1.576952 0.561907 -3.569605 -0.068586 -0.998798 -0.381806 0.386651 0.218856 -0.197546 -0.729016 2.230432 0.396781 -2.340723 1.983526 0.124040 0.192383 0.594014 -0.498496 -1.129736 0.629863 -2.942053 1.437520 1.920651 1.417147 -1.302897 -0.817529 -0.311024 2.057938 -1.189388 1.397387 -0.982588 1.594496 2.251236 1.964108 1.720568 0.291030 -1.811289 -2.676233 0.949665 -1.185193 -0.796916 0.582348 1.169432 -2.375916 1.117649 0.268896 -2.965556 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::destroy(std::allocator&, int*) = 0.219478 0.290759 0.276269 -0.484943 -0.701418 0.025651 0.057395 -0.173471 -0.005911 0.092387 0.325863 -0.377267 -0.229555 0.745915 -0.181820 -0.381938 -0.165961 -0.612011 -0.247939 -0.005112 0.011959 0.336132 -0.082878 0.133493 0.026593 0.103900 -0.197770 0.202150 0.279121 -0.493379 -0.379056 -0.040971 0.067424 0.519518 -0.011874 -0.265050 0.176550 0.955549 -0.321418 0.294777 -0.490785 -0.399112 0.307434 -0.015339 -0.129991 -0.702934 -0.490732 0.429350 -0.111608 -0.128109 0.464080 0.155536 -0.243699 -0.077446 0.265334 0.420287 -0.999359 0.631909 0.221171 0.171844 0.025626 -0.089002 0.002880 0.034096 -0.048925 -0.336963 0.184901 0.108612 -0.280928 0.001389 -0.037595 -0.621933 0.837544 0.155666 -0.237264 0.180745 0.289452 -0.550343 0.594179 -0.650606 -0.570107 0.088935 0.069213 -0.098881 0.633288 -0.115163 0.025505 -0.808966 0.129428 -0.776557 0.204366 -0.677997 0.121931 0.613274 -0.459972 0.122796 0.159280 0.075540 0.591927 0.187388 0.605270 0.243326 0.384382 0.193579 0.249174 0.259532 -0.244533 -0.109844 -0.463392 -0.747112 -0.009649 0.012638 -0.958083 0.240735 0.114914 -0.041498 0.111752 -0.042952 0.106520 0.391029 -0.512676 -0.179353 0.225644 -0.071359 0.140126 0.779121 -0.292597 0.097465 -0.427002 0.616904 -0.123872 0.438972 0.031102 0.143989 -0.177903 -0.749324 -0.709152 0.149328 0.196146 -0.313077 -0.492917 -0.671162 0.116283 -0.107293 -0.315849 0.523872 1.075642 -0.355155 -0.554369 0.776868 0.617144 0.093904 0.525100 -0.076078 0.913757 -0.254300 -0.142201 -0.134450 -0.282015 -0.176086 -0.166849 0.230590 -0.094640 0.107262 0.080824 -0.812065 0.714284 -0.059851 -0.349508 0.270811 0.124854 -0.322224 -0.542385 0.688108 0.458486 0.532425 0.270087 0.771583 -0.179763 -0.491459 0.357465 0.007543 0.178267 -0.446033 -0.287379 0.186880 0.355556 -0.314142 -0.142909 -0.154958 -0.230366 -0.438363 0.076140 0.134792 0.259632 0.137586 0.352742 0.077242 0.843424 0.039477 0.257547 -0.781089 0.227853 0.271473 -0.141453 -0.702161 0.112933 -0.346298 0.005366 0.265462 -0.201406 0.124602 -0.184122 -0.384685 0.030833 -0.225496 0.231422 0.123281 -0.456402 0.034157 -0.336458 0.437249 0.180617 0.381278 0.718346 0.559703 0.554580 0.069592 0.094610 0.073282 0.034463 -0.101751 -0.010759 0.218147 0.347976 0.462619 0.324494 0.102600 0.497478 0.338016 -0.148008 0.566445 0.202690 0.988565 -0.072216 -0.116805 -0.212367 -0.049230 0.488815 1.082732 -0.253897 0.033239 0.279208 0.333169 -0.147947 -0.501506 -0.042251 -0.272306 -0.185446 0.324133 0.020861 -0.156569 0.030039 0.565005 -0.109438 -0.738017 0.265823 0.008034 0.252480 0.212015 0.051789 0.037905 0.290177 -0.613920 0.362167 0.449648 0.399967 -0.374815 -0.373056 -0.008575 0.408778 -0.163629 0.473546 -0.769940 0.301021 0.420605 0.463283 0.100466 0.261641 -0.455960 -0.458486 0.346358 -0.085277 -0.213935 0.155916 0.334670 -0.569863 0.093505 -0.313585 -0.486131 +PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::destroy(int*) = 0.144880 0.152020 0.154515 -0.444649 -0.520987 0.002014 0.225700 -0.125726 -0.018109 0.027586 0.308342 -0.320835 -0.193773 0.719997 -0.037456 -0.260892 -0.004568 -0.477272 -0.183327 0.244749 0.018447 0.328713 -0.082805 0.082125 0.044804 0.200318 -0.206012 0.189299 0.164250 -0.386036 -0.400259 -0.062162 0.035492 0.416410 0.011178 -0.162545 0.089858 0.782806 -0.470389 0.572935 -0.422860 -0.195482 0.267941 -0.036331 -0.117316 -0.732787 -0.499014 0.369977 0.033315 -0.333077 0.431224 0.106336 -0.147001 -0.071512 0.257766 0.422429 -0.743233 0.381730 0.273988 0.207688 0.132697 -0.090407 -0.062639 0.005942 -0.225080 -0.285400 0.072880 -0.082418 -0.174739 -0.063447 -0.125084 -0.541578 0.697560 0.180690 -0.266868 0.128659 0.188414 -0.582815 0.485831 -0.534543 -0.474594 0.086512 -0.052081 -0.010985 0.529678 -0.130807 0.054745 -0.667629 0.056460 -0.666868 0.169617 -0.633584 0.082513 0.579591 -0.307645 0.064089 0.109234 0.077228 0.487469 0.231325 0.450669 0.296548 0.275333 0.073222 0.287384 0.275262 -0.267262 -0.183756 -0.376837 -0.568019 0.053757 0.011808 -0.801694 0.205374 0.121286 -0.006200 0.098307 -0.000816 0.097605 0.305722 -0.315324 0.018375 0.205717 -0.069937 0.103960 0.751362 -0.230337 0.021316 -0.436506 0.466436 -0.063641 0.486157 -0.014161 0.156303 -0.295614 -0.610233 -0.370194 0.083719 0.129059 -0.267810 -0.407008 -0.701089 0.154220 -0.048327 -0.294771 0.279266 0.835818 -0.337876 -0.384077 0.634596 0.625558 0.068388 0.269396 -0.099365 0.743243 -0.205719 -0.092653 -0.077684 -0.255539 -0.229451 0.136937 0.186699 -0.174564 0.055261 -0.096277 -1.103078 0.769429 0.057623 -0.282129 0.275444 0.031231 -0.266290 -0.488623 0.645615 0.176526 0.380514 0.086549 0.588405 -0.068836 -0.261075 0.330135 0.055797 0.150378 -0.536681 -0.294176 0.264063 0.272735 -0.279077 -0.100170 -0.117210 -0.156734 -0.383694 0.091748 -0.190632 0.106762 0.113902 0.291235 0.069037 0.609460 0.001840 0.227240 -0.572555 0.242274 0.135064 -0.193759 -0.627145 0.096522 -0.313774 -0.022470 0.153176 -0.162023 0.073709 -0.208589 -0.358350 0.131542 -0.220190 0.135588 0.107826 -0.400798 -0.013851 -0.181377 0.373714 0.204178 0.330951 0.487044 0.487523 0.423302 0.070252 0.017542 0.154006 -0.248869 -0.036595 -0.089040 0.094316 0.295595 0.309823 0.286995 0.057359 0.388360 0.205460 -0.034593 0.457291 0.287294 0.699165 0.212703 -0.209982 -0.011411 -0.106168 0.404916 0.791873 -0.171488 0.050660 0.219923 0.168411 -0.241918 -0.223205 0.002873 -0.206021 -0.328928 0.387191 -0.064425 -0.050622 0.005633 0.492626 -0.185365 -0.653281 0.106202 0.006482 0.284908 0.275345 0.111737 0.210151 0.196662 -0.416597 0.403396 0.353540 0.360403 -0.234826 -0.406633 -0.004187 0.147582 0.161142 0.367389 -0.725484 0.179201 0.282505 0.449726 0.036564 0.262850 -0.325752 -0.181035 0.240986 -0.030788 -0.122012 -0.081054 0.275209 -0.332795 -0.079789 -0.423527 -0.288971 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::push_back(int const&) = 0.938586 -0.443997 1.907441 -2.044053 -2.658401 1.830956 -2.228000 -1.624059 0.671628 0.777050 1.164797 -0.329496 -0.071385 2.206378 -0.621062 -2.182844 -0.498536 -0.989887 0.330134 -0.910628 0.038483 0.624524 -0.826581 0.818786 -0.705696 -1.204795 0.240131 0.842165 0.761005 -0.164416 -1.866201 -0.702868 -1.630292 2.809409 1.014842 -0.236774 1.211087 4.668082 -0.124399 1.490580 -1.529114 -2.811084 0.491542 0.166815 -0.508475 0.625366 -1.212009 0.886661 -1.767659 0.269304 2.695591 -0.560982 0.531721 0.783948 1.216963 0.093256 -3.398829 0.884139 -0.086488 -0.081039 -0.472116 -0.912524 0.451936 1.544210 -1.397304 -0.947858 2.381413 2.437489 -0.748398 -0.316045 -0.011956 -3.608402 3.310991 1.479085 -1.247649 -0.025777 2.758532 -2.273112 2.335002 -0.270336 -3.893657 0.033996 -0.807365 -3.596337 3.595927 -0.404372 2.279663 -3.824470 2.864320 -4.336964 1.266339 -1.992432 1.266009 2.843394 -2.708750 0.161001 2.257889 4.379261 1.917640 -1.154175 2.842538 1.262374 -0.429907 1.342172 2.363098 0.437500 -1.143651 -0.293497 -2.429801 -3.131441 -0.251568 -2.214506 -4.186380 0.663623 0.023279 0.413096 -0.767006 0.691731 -0.907854 2.349256 -4.081249 -0.851471 0.064551 -0.412098 1.153823 1.911354 -1.549443 1.383886 -0.176743 3.412500 -2.448153 0.102961 -0.571219 0.734209 -0.687168 1.227554 -4.329564 1.569081 2.234821 -1.742118 -2.950622 -2.302893 -1.046535 1.584491 -0.355371 5.548550 5.289329 -1.843698 -2.378824 2.972859 -0.230301 -0.051418 3.893590 0.521858 2.593410 -1.172964 -0.542429 -2.662501 -0.889146 -1.251984 -1.834556 1.371820 1.092009 2.000744 0.651706 1.698029 4.400900 -1.337253 -2.283306 -1.666603 0.991305 -1.521871 -1.700022 3.109327 -0.361944 1.420737 2.140761 3.942357 -1.293491 -2.057327 0.874926 -2.017778 0.142550 -1.839114 -0.786638 -0.648454 2.254545 -1.677092 -1.346553 -1.085875 -1.367481 -0.898442 0.015172 3.528063 1.505082 1.254189 1.222035 2.726837 5.082464 2.038754 -0.610184 -2.879065 0.955632 1.935800 -1.931427 -0.092773 -0.167847 -1.520193 0.288643 0.225437 -0.082527 1.435665 -2.930803 -1.670476 -2.057497 0.502821 1.814059 1.727483 -5.837584 0.882255 -0.013172 1.419092 1.889090 1.038936 3.320292 3.306593 3.681781 -0.539282 0.691035 0.452679 0.417502 -0.510851 1.548410 2.358185 0.892212 3.351406 1.285521 0.912395 1.623348 2.678557 1.342249 2.171609 -0.076195 4.881681 -0.153267 0.429319 -1.813368 0.159453 2.087083 5.349626 -1.517986 2.381463 1.194785 2.003645 -0.766335 -3.651001 0.708007 -1.506863 1.547606 -0.891173 0.830746 -0.156712 -1.290103 2.636159 0.637192 -3.609540 0.964026 0.116402 0.843309 2.824563 -0.353564 -0.078808 -0.000836 -3.297109 3.784081 2.322103 1.091162 -2.059722 0.995809 0.073352 1.869226 -1.175300 1.963540 -0.783132 2.612476 0.997104 1.979339 1.886936 1.189021 -2.601507 -1.633419 1.564307 -3.077223 -0.821920 1.723035 2.030948 -2.093926 1.743597 -1.999736 -3.668283 +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.810700 0.478616 0.302085 -1.367896 -2.199149 0.877070 -2.038717 -1.254395 0.093962 -0.148582 1.064770 -1.436374 -0.865653 1.920087 -0.981818 -1.889859 -0.483572 -0.365766 0.054503 -0.397650 -0.114033 0.525590 -0.477696 0.379475 -0.405833 -0.064809 -0.442136 0.163218 2.782605 -0.846936 -1.976038 -0.036237 -0.233873 1.952280 0.778723 -0.931674 1.126535 2.953711 0.852945 0.283135 -1.659122 -0.875135 0.387693 0.369886 -0.410418 -1.130675 -1.326896 0.940271 -2.725103 0.948881 1.631291 -0.577277 -0.328983 0.461533 0.745836 1.338816 -3.216216 3.037689 0.383615 1.093729 0.641194 -0.488156 0.328705 0.466898 0.565693 -0.984157 0.802871 1.650301 -1.347539 -0.189661 -0.716364 -2.158620 2.948659 0.650359 -1.665094 -0.158502 0.643636 -1.441736 1.106535 -2.146754 -2.241885 0.431760 0.399771 -0.052263 2.273592 0.067728 0.310996 -2.697512 0.517605 -3.096615 0.613839 -1.695565 1.185930 2.012360 -2.691716 -0.413430 0.684606 0.018789 2.192289 0.663056 2.048462 0.311163 -0.206094 0.003395 0.529113 0.402132 0.134368 0.408394 -0.208818 -2.067966 -1.193539 0.334018 -3.639802 0.410187 -0.976498 1.692130 -0.302813 0.370479 -0.283103 0.167532 -1.691660 -2.416922 -0.585655 -0.259089 1.951049 2.344128 -0.734371 1.199197 -0.860995 2.344038 -0.446777 -0.014635 -0.670793 0.348329 -0.053135 -2.557258 -4.166048 0.896143 1.617552 -1.079542 -2.257681 -1.556630 -0.345422 -1.032847 -0.547202 2.642957 3.184489 -0.984607 -1.601942 2.489602 -0.498509 0.900264 3.755076 -0.267299 3.063342 -1.328782 0.495629 -0.447118 -0.498810 -1.457691 -2.419141 0.155102 -0.028903 0.023750 0.518772 -0.080985 0.449801 0.071645 -1.443610 -1.024566 0.039361 -0.598914 -1.518685 2.231667 0.185907 1.039710 1.163608 2.823149 -1.074725 -2.627341 1.319663 0.112881 0.392407 0.347820 -0.839533 0.118291 1.463293 -1.625463 -0.739835 0.269482 0.143867 -1.252530 0.355319 3.691112 0.371680 0.739712 0.825169 1.419154 3.032567 0.301635 0.999742 -2.108584 0.531958 1.580824 -1.207537 -1.712691 0.428351 -1.529663 0.126537 1.118676 -0.512492 0.491652 -1.133741 -1.620975 -1.016172 -0.132217 2.681649 1.052665 -1.334390 0.985446 -1.347394 0.208105 1.040967 1.251048 1.729425 1.945436 1.959753 -0.461105 0.680837 -0.159849 1.937487 -0.362194 1.062512 0.980642 0.810197 1.470380 0.657738 0.304446 0.845515 1.095675 -0.323828 1.610812 0.585761 3.172404 -0.806391 0.465491 -1.199214 -0.978061 1.572329 4.307611 -2.460307 0.500760 0.677989 1.187723 0.523988 -3.093668 -0.025777 -0.868501 -0.775645 0.083773 -0.214073 0.102682 -0.774931 1.991558 0.116854 -1.981269 1.806828 0.074945 0.145824 0.578956 -0.228301 -0.858618 0.399441 -2.721282 1.168879 1.725465 1.298892 -0.775023 -0.643446 -0.359841 1.587352 -1.102979 1.048699 -0.288708 1.223460 2.057581 1.864923 1.896613 -0.198431 -1.294426 -2.277203 0.752185 -1.030186 -0.604859 -0.027159 1.106374 -1.663838 0.637135 0.432603 -2.492588 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::allocator_traits >::construct(std::allocator&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/Nearly_sorted_Algo.cpp__void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&) = 2.053344 0.671622 4.054183 -4.171438 -7.509161 3.243585 -5.051082 -4.353346 1.270610 1.043292 3.869509 -2.918350 -0.223305 5.752071 -2.358999 -4.554794 -1.895294 -1.462380 -0.063227 -3.307800 0.682044 1.456048 -1.606928 1.592834 -2.137936 -2.204957 0.294806 2.108158 3.621852 -0.528997 -4.335369 -1.106459 -1.462642 6.205431 2.369240 -1.615238 2.336291 9.712977 -1.109710 1.844252 -4.850489 -5.409369 1.771566 0.880014 -1.151281 -2.012025 -5.135563 2.505605 -4.447233 1.163150 5.534630 -0.953062 1.080884 1.628763 2.400317 1.852414 -8.212047 4.150048 0.228512 -0.886042 -0.528942 -1.159941 0.879555 3.870781 -2.160058 -2.638096 4.696767 5.809091 -1.260226 -0.274315 -0.211488 -8.879417 8.418863 1.733372 -3.377690 -0.426536 5.049455 -5.487480 5.622315 -1.132441 -7.925820 0.503018 -0.651203 -5.240176 6.626038 -0.824295 4.185948 -8.828532 3.617586 -10.018029 3.197033 -4.822374 2.815516 5.212336 -7.584722 -0.235936 4.150435 6.481284 6.375065 -0.781835 6.170481 2.780646 0.802450 1.967117 4.852597 1.898636 -1.290424 -0.445459 -5.036044 -7.888665 -0.642613 -3.438639 -11.202833 1.680756 -0.568535 0.073604 -2.106627 0.137753 -0.381347 6.275310 -6.846855 -2.278989 0.873811 -0.715675 2.445627 5.861787 -3.559130 3.703399 -1.286616 7.353867 -4.229609 0.709834 -0.655768 1.458437 -1.871968 -3.152274 -11.316420 4.294107 4.994730 -4.173920 -6.350686 -5.395821 -1.287617 1.732856 -1.404397 9.099206 11.661161 -4.145251 -6.295045 6.540358 2.331762 -1.241063 9.421061 0.492411 9.026714 -3.674550 -0.309151 -5.284244 -2.535692 -2.502070 -3.307672 2.299752 1.487572 3.588233 1.784939 -1.539266 9.405949 -2.957625 -5.016595 -1.472856 2.419230 -2.203837 -3.783560 6.835477 1.646669 3.535022 3.534417 8.539138 -3.593396 -6.355500 2.399310 -2.809643 0.164587 -1.739045 -1.504094 -0.177040 6.127105 -3.402652 -2.450141 -2.209702 -3.571050 -2.302138 0.517302 7.739575 3.181476 2.795751 2.682852 3.614825 11.312290 4.008767 0.300746 -6.728669 2.025643 5.422556 -2.766361 -3.622473 -0.495942 -4.919289 0.789871 -0.655410 -0.798122 3.562643 -5.291388 -3.697488 -4.305311 -0.689504 4.671785 3.310524 -10.014541 2.746086 -2.399294 3.981988 2.721276 3.311588 7.779744 7.562327 8.300883 -1.076032 1.925583 -0.643811 2.441314 -0.241463 3.998106 3.499537 2.308299 7.602239 2.309125 1.783814 4.340940 4.670205 2.444351 5.291541 0.187373 11.075138 -1.667289 2.102434 -4.585983 -0.237019 5.109307 13.991453 -1.795470 2.954604 2.109232 4.264932 -1.416784 -9.344064 0.632441 -2.597249 1.557556 0.147795 2.187829 -0.573299 -2.841126 6.151166 1.809324 -7.797741 3.369578 0.054283 1.027205 5.246363 -1.640509 -0.918602 0.595584 -6.591346 6.663999 5.568987 3.264150 -5.017618 -1.196968 -0.325650 4.821524 -1.768142 4.146050 -4.679818 6.268487 4.272573 5.131197 3.162593 2.848824 -6.918946 -4.561810 3.689185 -5.190523 -2.077583 3.503818 4.189397 -6.551824 3.710301 -3.167543 -7.845228 +PE-benchmarks/Nearly_sorted_Algo.cpp__void __gnu_cxx::new_allocator::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/Nearly_sorted_Algo.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_relocate(int*, int*, int*, std::allocator&) = 0.326511 0.486611 0.273236 -0.892046 -1.351133 0.128177 -0.008309 -0.384247 0.040621 0.177988 0.771897 -0.873942 -0.365803 1.528263 -0.246465 -0.605143 -0.146631 -0.845585 -0.280384 0.320116 0.084501 0.620785 -0.198262 0.277198 -0.125442 0.400869 -0.430407 0.282079 0.802307 -0.646255 -1.067934 -0.039191 0.063096 0.849098 0.135494 -0.634925 0.379419 1.586788 -0.951664 0.849427 -0.863086 -0.348430 0.342123 0.104630 -0.228262 -1.360986 -1.112514 0.732055 -0.300172 -0.395835 1.084041 0.122889 -0.230634 0.113268 0.632477 0.838763 -1.641209 1.121440 0.482625 0.614788 0.481188 -0.167890 0.001365 0.278808 -0.311074 -0.553630 0.260104 0.103644 -0.336251 -0.236218 -0.290170 -1.292192 1.403392 0.309801 -0.761555 0.090566 0.444416 -1.314851 1.014026 -1.266908 -1.100625 0.382905 -0.075449 -0.037348 1.133290 -0.244737 0.089064 -1.376970 0.086193 -1.470520 0.342626 -1.249076 0.196708 1.175381 -0.913786 -0.195291 0.210479 0.124425 1.401864 0.463017 0.961141 0.604295 0.544816 0.029393 0.459830 0.675021 -0.420738 -0.130225 -0.684012 -1.305346 -0.125135 0.124679 -1.800779 0.394501 0.160050 0.055082 0.160977 -0.158795 0.114643 0.662184 -0.565405 -0.417700 0.182621 -0.099204 0.399742 1.681369 -0.553707 0.326017 -0.813729 1.093678 -0.109227 0.803206 -0.039372 0.198042 -0.688638 -1.447524 -1.312629 0.446208 0.494738 -0.558667 -0.892541 -1.439420 0.338372 -0.429825 -0.527614 0.705747 1.737934 -0.669000 -0.843602 1.369620 0.999217 0.057984 1.027159 -0.352270 1.753554 -0.537798 -0.015819 -0.224608 -0.547704 -0.776465 0.149216 0.405242 -0.197330 -0.033474 -0.087138 -1.976223 1.085321 0.207843 -0.714230 0.195537 0.146920 -0.451138 -0.936411 1.369597 0.206407 0.550892 0.320571 1.253243 -0.242879 -0.827620 0.804187 0.165981 0.359075 -0.771678 -0.711835 0.629794 0.729808 -0.553958 -0.111792 -0.204606 -0.201784 -0.867556 0.047338 0.092424 0.253400 0.329390 0.678133 0.237447 1.511997 0.166930 0.602847 -1.201881 0.452428 0.458736 -0.586656 -1.352764 0.208370 -0.892142 0.049215 0.331747 -0.433611 0.160135 -0.540061 -0.927549 0.010135 -0.467386 0.694673 0.365833 -0.866195 0.209266 -0.654590 0.790768 0.456913 0.635737 0.924481 1.158037 1.164207 -0.006153 0.160109 0.216380 -0.018800 -0.036376 0.098703 0.065359 0.596915 0.798576 0.467244 0.076998 0.698434 0.422231 -0.212813 0.915277 0.458005 1.514857 0.313252 -0.150873 -0.312572 -0.359553 0.798171 2.040927 -0.513320 0.080706 0.362631 0.418209 -0.319506 -0.737943 0.020895 -0.500794 -0.611954 0.539269 -0.173475 -0.079900 -0.090875 0.939080 -0.266973 -1.231443 0.340214 -0.073293 0.422583 0.597872 0.101007 0.182397 0.225718 -1.140507 0.957094 0.887728 0.718763 -0.363895 -0.895565 -0.086336 0.433005 0.162266 0.716591 -1.386082 0.560895 0.848646 0.934611 0.340140 0.514039 -0.824673 -0.657700 0.561739 -0.190173 -0.312354 -0.248349 0.662248 -0.913273 0.087260 -0.501146 -0.901910 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::_S_do_relocate(int*, int*, int*, std::allocator&, std::integral_constant) = 0.326511 0.486611 0.273236 -0.892046 -1.351133 0.128177 -0.008309 -0.384247 0.040621 0.177988 0.771897 -0.873942 -0.365803 1.528263 -0.246465 -0.605143 -0.146631 -0.845585 -0.280384 0.320116 0.084501 0.620785 -0.198262 0.277198 -0.125442 0.400869 -0.430407 0.282079 0.802307 -0.646255 -1.067934 -0.039191 0.063096 0.849098 0.135494 -0.634925 0.379419 1.586788 -0.951664 0.849427 -0.863086 -0.348430 0.342123 0.104630 -0.228262 -1.360986 -1.112514 0.732055 -0.300172 -0.395835 1.084041 0.122889 -0.230634 0.113268 0.632477 0.838763 -1.641209 1.121440 0.482625 0.614788 0.481188 -0.167890 0.001365 0.278808 -0.311074 -0.553630 0.260104 0.103644 -0.336251 -0.236218 -0.290170 -1.292192 1.403392 0.309801 -0.761555 0.090566 0.444416 -1.314851 1.014026 -1.266908 -1.100625 0.382905 -0.075449 -0.037348 1.133290 -0.244737 0.089064 -1.376970 0.086193 -1.470520 0.342626 -1.249076 0.196708 1.175381 -0.913786 -0.195291 0.210479 0.124425 1.401864 0.463017 0.961141 0.604295 0.544816 0.029393 0.459830 0.675021 -0.420738 -0.130225 -0.684012 -1.305346 -0.125135 0.124679 -1.800779 0.394501 0.160050 0.055082 0.160977 -0.158795 0.114643 0.662184 -0.565405 -0.417700 0.182621 -0.099204 0.399742 1.681369 -0.553707 0.326017 -0.813729 1.093678 -0.109227 0.803206 -0.039372 0.198042 -0.688638 -1.447524 -1.312629 0.446208 0.494738 -0.558667 -0.892541 -1.439420 0.338372 -0.429825 -0.527614 0.705747 1.737934 -0.669000 -0.843602 1.369620 0.999217 0.057984 1.027159 -0.352270 1.753554 -0.537798 -0.015819 -0.224608 -0.547704 -0.776465 0.149216 0.405242 -0.197330 -0.033474 -0.087138 -1.976223 1.085321 0.207843 -0.714230 0.195537 0.146920 -0.451138 -0.936411 1.369597 0.206407 0.550892 0.320571 1.253243 -0.242879 -0.827620 0.804187 0.165981 0.359075 -0.771678 -0.711835 0.629794 0.729808 -0.553958 -0.111792 -0.204606 -0.201784 -0.867556 0.047338 0.092424 0.253400 0.329390 0.678133 0.237447 1.511997 0.166930 0.602847 -1.201881 0.452428 0.458736 -0.586656 -1.352764 0.208370 -0.892142 0.049215 0.331747 -0.433611 0.160135 -0.540061 -0.927549 0.010135 -0.467386 0.694673 0.365833 -0.866195 0.209266 -0.654590 0.790768 0.456913 0.635737 0.924481 1.158037 1.164207 -0.006153 0.160109 0.216380 -0.018800 -0.036376 0.098703 0.065359 0.596915 0.798576 0.467244 0.076998 0.698434 0.422231 -0.212813 0.915277 0.458005 1.514857 0.313252 -0.150873 -0.312572 -0.359553 0.798171 2.040927 -0.513320 0.080706 0.362631 0.418209 -0.319506 -0.737943 0.020895 -0.500794 -0.611954 0.539269 -0.173475 -0.079900 -0.090875 0.939080 -0.266973 -1.231443 0.340214 -0.073293 0.422583 0.597872 0.101007 0.182397 0.225718 -1.140507 0.957094 0.887728 0.718763 -0.363895 -0.895565 -0.086336 0.433005 0.162266 0.716591 -1.386082 0.560895 0.848646 0.934611 0.340140 0.514039 -0.824673 -0.657700 0.561739 -0.190173 -0.312354 -0.248349 0.662248 -0.913273 0.087260 -0.501146 -0.901910 +PE-benchmarks/Nearly_sorted_Algo.cpp__int* std::__relocate_a >(int*, int*, int*, std::allocator&) = 0.296899 0.701460 0.471424 -0.821169 -1.757970 0.254142 -0.598818 -0.618558 0.009935 0.193169 0.784034 -0.960395 -0.579148 1.458148 -0.635279 -0.915769 -0.551910 -0.548918 -0.234405 -0.297196 0.106809 0.575784 -0.198691 0.370304 -0.266339 0.077381 -0.353836 0.269599 1.217396 -0.519001 -0.897887 -0.065309 0.172627 0.956081 0.245870 -0.558429 0.453279 1.696634 -0.428192 0.400828 -1.181245 -0.759001 0.314435 0.205173 -0.077946 -1.431055 -1.128390 0.708192 -1.038619 0.217810 1.054729 0.065272 -0.235328 0.257335 0.673170 0.700309 -1.957487 1.733932 0.288634 0.263632 0.440439 -0.084129 -0.094846 0.384822 0.210141 -0.557645 0.214136 0.746461 -0.462819 -0.074503 -0.061215 -1.246318 1.730590 0.126669 -0.883105 0.055211 0.612041 -0.960159 1.010430 -1.563845 -1.266372 0.322765 0.197220 0.182492 1.076160 0.064904 0.107592 -1.523574 0.010116 -1.637337 0.540477 -1.093368 0.289722 1.021108 -1.248249 -0.152591 0.433796 -0.290687 1.683412 0.512797 1.054618 0.460811 0.611343 0.260523 0.268335 0.594344 -0.197764 0.033879 -0.675189 -1.525270 -0.327509 0.175444 -2.084657 0.267466 0.130508 0.428687 0.019815 -0.228676 0.231074 0.567318 -0.872882 -0.761949 0.154536 -0.077992 0.591696 1.467554 -0.546199 0.607576 -0.641740 1.272513 -0.376002 0.553664 0.014767 0.197562 -0.330645 -1.950280 -2.148471 0.670765 0.596169 -0.534787 -0.938007 -1.201477 0.173640 -0.393155 -0.455217 0.765764 1.981442 -0.735744 -1.135748 1.483463 0.711143 0.027180 1.532974 -0.193466 1.886729 -0.515754 -0.122280 -0.402493 -0.704401 -0.643158 -0.169315 0.435022 -0.151499 0.122337 0.311376 -1.542506 0.464789 -0.136578 -0.942997 -0.215472 0.218864 -0.465706 -0.645765 1.192729 0.424470 0.676693 0.330186 1.430009 -0.513502 -1.410364 0.650810 -0.163622 0.299304 -0.157384 -0.512554 0.548354 0.818682 -0.843841 -0.193167 -0.188937 -0.327777 -0.905553 0.013574 0.637376 0.356575 0.502581 0.712452 0.492062 1.798471 0.350263 0.567784 -1.280929 0.393366 0.605652 -0.381665 -1.688565 0.220519 -0.936999 0.115120 0.465930 -0.424705 0.239027 -0.285899 -0.764418 -0.376642 -0.716458 1.042093 0.494028 -0.391858 0.348384 -0.854481 0.857950 0.336532 0.614735 1.211569 1.290163 1.362775 0.172136 0.313979 -0.109336 0.963952 0.033997 0.607992 -0.026291 0.591025 1.019179 0.490262 0.133540 0.844899 0.679309 -0.280805 1.008254 0.153351 1.865452 -0.439467 0.194520 -0.703032 -0.134940 0.855875 2.471637 -0.723711 0.125346 0.362242 0.552482 0.116258 -1.194630 0.020903 -0.519394 -0.507494 0.659396 0.202069 -0.134020 -0.174024 0.939226 -0.050039 -1.131960 0.794946 -0.028440 0.228824 0.295094 -0.046260 -0.379576 0.325241 -1.359025 0.718040 1.089507 0.766175 -0.659821 -1.023132 -0.163795 0.795302 -0.020045 0.894277 -1.292701 0.504526 1.221639 0.964879 0.333837 0.421263 -1.052666 -1.346889 0.716551 -0.314484 -0.502669 0.069507 0.522128 -1.092504 0.382996 0.092531 -1.392364 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::enable_if::value, int*>::type std::__relocate_a_1(int*, int*, int*, std::allocator&) = 1.100336 0.288716 0.589989 -1.047430 -1.101426 0.261673 0.481670 -0.924560 0.272952 1.279750 0.856387 -1.009096 -0.616246 1.581083 -0.056708 -0.901708 0.576935 -1.224980 -0.095340 -0.377467 0.004510 0.628507 -0.185037 -0.211935 0.083081 -0.059536 -0.314012 0.694879 0.272797 -0.630829 -1.284143 -0.200929 0.221285 1.872140 0.189252 -0.491633 -0.129704 2.418676 -1.295906 1.613918 -2.149839 -1.184751 1.339296 0.082520 -0.288615 -1.694707 -0.855570 1.004691 0.310073 -1.006468 0.849913 -0.177169 0.082955 -0.497813 0.188910 1.890532 -2.259836 0.836658 0.335917 -0.320197 -0.484306 -0.295333 0.472140 0.796730 -1.121448 -1.282656 0.966533 0.244616 -0.819525 0.446410 -1.027293 -2.505075 1.528904 0.764099 -1.045120 0.034336 0.288771 -1.737368 1.445430 -0.688118 -1.300203 -0.177786 0.133257 -0.308717 1.088992 -0.064598 1.135702 -2.800181 0.263012 -2.589655 1.212350 -1.773583 1.377679 1.590736 -1.033811 0.332306 0.376628 0.905669 1.443615 -0.212706 1.799630 0.914298 1.100508 -0.246755 1.315658 1.144535 -0.742576 -0.854785 -0.931966 -1.522854 0.317527 -0.186859 -2.389238 0.599295 -1.033104 -0.263196 0.384025 -0.133548 -0.078968 1.858050 -1.946546 -1.088686 0.685140 -0.333613 1.176485 2.198869 -0.711662 0.535922 -0.770768 1.833753 -0.005887 0.766049 -0.385915 0.688444 -1.142517 -1.722468 -1.674295 0.376238 1.037994 -1.764093 -1.965330 -2.434917 -0.025266 0.307061 -0.870333 1.883800 3.124612 -0.964449 -1.418954 1.530798 0.900783 -0.305997 1.723309 -0.204193 3.271370 -2.000128 0.903283 -0.492229 0.328189 -0.048735 1.537929 0.023945 -0.623439 0.446229 0.006019 -1.955717 2.079540 -0.158931 -0.541190 0.654825 0.021830 -0.001117 -1.287174 1.933742 -0.239616 1.432365 -0.233036 2.196884 -1.136460 -1.385077 1.210342 -0.583726 -0.326791 -0.935231 -0.623405 0.295749 1.761741 -1.184457 -0.642243 -0.603215 -1.142111 -0.403416 0.894140 0.066601 0.309961 0.025160 0.213802 1.345151 1.946496 0.216193 0.445228 -2.050066 0.652126 1.310138 -0.319121 -1.648178 -0.203781 -1.588568 -0.116694 -0.075251 -0.374821 1.007532 -1.209849 -1.178800 0.139562 -0.384299 0.567411 -0.060391 -2.119875 0.627528 -0.482133 0.715613 0.403553 1.873920 1.519356 1.505919 1.197140 -0.862087 0.315509 -0.585647 -1.067062 0.430826 0.147206 0.546618 0.822408 1.275198 0.402859 0.211213 1.658175 0.200486 0.291054 1.641337 0.555942 2.342189 -0.415626 0.285841 -0.082564 -1.240109 1.456063 3.243429 -0.376315 -0.519509 0.856094 0.429110 -1.134311 -1.312498 -0.368120 -0.695702 -0.600622 0.870576 0.294447 -0.377187 -0.770511 2.498272 0.271011 -2.917997 1.120031 0.026809 0.322321 1.678642 -0.583911 0.592828 0.685049 -1.044464 1.081410 1.064322 1.504506 -1.278075 -0.968760 -0.223732 0.939030 0.343303 0.292244 -2.909096 0.757837 1.273993 2.212608 0.937677 1.446288 -1.510306 -0.029470 0.342917 -0.586182 -0.373850 0.140073 1.411384 -1.532929 0.246747 -2.021611 -0.055720 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__ops::_Iter_comp_val >::_Iter_comp_val(std::greater) = 0.183893 0.003930 0.021492 -0.382579 -0.484989 0.181239 -0.224445 -0.236312 -0.037749 -0.121160 0.249369 -0.250798 -0.195293 0.589263 -0.058578 -0.405582 -0.050807 -0.264812 -0.033556 0.222331 -0.030894 0.234967 -0.133377 0.103044 -0.046215 0.128968 -0.198548 0.035056 0.387757 -0.303653 -0.491003 -0.083639 -0.107552 0.428660 0.171905 -0.091625 0.190359 0.779543 0.002778 0.439807 -0.366451 -0.204629 0.100880 -0.016586 -0.095543 -0.357481 -0.342140 0.287457 -0.326992 -0.082358 0.457928 -0.056513 -0.136232 0.092166 0.242773 0.279860 -0.695510 0.543961 0.198797 0.308653 0.216205 -0.150148 -0.066307 0.022816 -0.050852 -0.234134 0.107651 0.185234 -0.249407 -0.116913 -0.163681 -0.493216 0.763836 0.254113 -0.361275 0.000373 0.182655 -0.387812 0.335198 -0.542147 -0.590875 0.104336 -0.072718 0.010655 0.593503 -0.012860 0.090882 -0.642286 0.216404 -0.753829 0.133758 -0.482958 0.171226 0.576493 -0.469346 -0.062683 0.207074 0.135707 0.496873 0.197564 0.454717 0.167040 -0.087053 0.074574 0.217564 0.110810 -0.094431 0.004058 -0.153301 -0.497685 -0.113440 0.032747 -0.805827 0.160764 -0.010118 0.382043 -0.050909 0.192957 -0.006588 -0.025928 -0.437662 -0.303764 -0.039932 -0.068289 0.367309 0.587302 -0.220915 0.158651 -0.352658 0.504617 -0.141442 0.232269 -0.128623 0.139853 -0.126802 -0.446699 -0.692735 0.161778 0.299265 -0.270080 -0.474739 -0.529531 0.037040 -0.068954 -0.223680 0.556770 0.777926 -0.356963 -0.290502 0.650719 0.148854 0.197394 0.575397 -0.076293 0.604034 -0.169962 -0.043924 -0.038515 -0.240704 -0.392112 -0.424750 0.148938 -0.075784 0.028923 -0.012511 -0.449451 0.451453 0.069352 -0.402806 -0.103909 -0.041044 -0.223774 -0.407520 0.562913 0.011252 0.214018 0.253112 0.595691 -0.085373 -0.332161 0.321491 0.011821 0.100297 -0.248288 -0.266336 0.100604 0.243433 -0.413819 -0.127515 0.047299 -0.028285 -0.398311 0.057851 0.470786 0.068506 0.226222 0.285662 0.296035 0.699269 0.085034 0.171235 -0.475314 0.213834 0.198552 -0.352458 -0.359272 0.083711 -0.307989 0.007308 0.281909 -0.122317 0.059749 -0.269771 -0.364289 -0.096426 -0.047452 0.472322 0.297998 -0.275142 0.059677 -0.111262 0.179858 0.312110 0.269090 0.344173 0.520721 0.489861 0.002920 0.068156 0.185186 0.112768 -0.117468 0.068108 0.243338 0.242911 0.245457 0.272423 0.081813 0.268998 0.270960 0.023922 0.411824 0.230566 0.731654 0.095115 -0.096104 -0.124283 -0.148604 0.399135 0.844352 -0.581817 0.246829 0.181246 0.157343 -0.055276 -0.368377 0.082721 -0.210916 -0.293492 0.121135 -0.100283 0.115351 -0.143553 0.457069 -0.140780 -0.534230 0.237022 0.045856 0.210214 0.265737 0.102271 0.047074 0.072923 -0.575280 0.407406 0.435640 0.329706 -0.160248 -0.186100 -0.043475 0.187260 -0.041441 0.360311 -0.089090 0.236304 0.365362 0.426068 0.269101 -0.082971 -0.284950 -0.367162 0.216827 -0.192038 -0.086448 -0.070746 0.267252 -0.207720 -0.019665 -0.121601 -0.504616 +PE-benchmarks/Nearly_sorted_Algo.cpp____gnu_cxx::__normal_iterator > >::operator-(long) const = 0.256145 -0.055517 0.249047 -0.890416 -0.977709 0.312344 -0.339810 -0.515046 0.133533 0.037462 0.597698 -0.735465 -0.266284 1.383426 -0.172278 -0.785050 0.084437 -0.051955 -0.036204 0.329969 0.004310 0.479399 -0.263297 0.228999 -0.058475 0.116694 -0.199665 0.259394 0.833074 -0.410268 -1.035742 -0.141154 -0.213608 1.055593 0.235968 -0.131591 0.301487 1.656481 -0.228288 1.292407 -0.926775 -0.300887 0.309407 0.125049 -0.184300 -0.917366 -1.001503 0.567580 -0.590152 -0.402697 0.906877 -0.159133 -0.073434 0.046205 0.553042 0.766513 -1.364823 0.693585 0.409307 0.404813 0.257408 -0.209005 0.115809 0.269880 -0.696011 -0.571586 0.348302 0.401058 -0.498758 -0.150597 -0.418741 -1.422139 1.435978 0.496481 -0.942706 0.075753 0.468487 -1.146169 0.794888 -0.730476 -1.181813 0.148503 -0.081561 -0.420864 1.187960 -0.143913 0.568281 -1.542377 0.500532 -1.649168 0.448985 -1.178387 0.573151 1.336604 -1.030566 -0.036017 0.403099 0.631567 1.019354 0.441686 1.036028 0.599499 -0.051804 -0.069559 0.754544 0.397433 -0.363418 -0.331654 -0.495188 -1.170389 -0.170653 -0.187617 -1.910471 0.259758 -0.265728 0.655873 -0.085492 0.323915 -0.069572 0.502365 -0.959244 -0.466554 0.084734 -0.194279 0.648822 1.509126 -0.420503 0.328223 -0.641850 1.176681 -0.327787 0.356820 -0.291634 0.324721 -0.601738 -0.673526 -1.288138 0.282936 0.626321 -0.623185 -1.151160 -1.324923 -0.154632 0.076070 -0.399049 1.279900 1.835489 -0.671023 -0.774599 1.239861 0.316480 0.243326 1.281335 -0.101332 1.650268 -0.761626 0.185417 -0.458634 -0.244797 -0.619063 -0.183797 0.262145 -0.241061 0.223498 -0.224024 -1.322903 1.580257 0.005131 -0.623145 -0.237835 0.092599 -0.371569 -0.933122 1.478831 -0.509814 0.726062 0.142744 1.477265 -0.406324 -0.817855 0.700448 -0.170319 0.143551 -0.666292 -0.461988 0.145239 0.924504 -0.799784 -0.379293 -0.034358 -0.307837 -0.557799 0.248244 0.767070 0.084772 0.257910 0.398495 0.908142 1.429897 0.218824 0.311178 -1.146329 0.429427 0.574472 -0.765180 -0.800426 0.200473 -0.875103 -0.033866 0.051612 -0.253366 0.241121 -0.942824 -0.883951 -0.342040 -0.166865 0.842662 0.331194 -1.383529 0.299789 -0.367530 0.473376 0.656306 0.720608 1.060815 1.152625 1.013009 -0.206362 0.190396 0.084749 -0.197921 0.051631 0.234546 0.432730 0.463766 0.804364 0.445675 0.154643 0.574268 0.391189 0.281112 0.925385 0.524480 1.589762 0.361437 -0.122943 -0.175920 -0.523864 0.857504 2.087258 -0.793149 0.450246 0.463847 0.495745 -0.397586 -1.164849 0.041704 -0.422809 -0.642756 0.368799 -0.206403 0.054585 -0.362402 1.176151 -0.084867 -1.439039 0.462350 -0.056993 0.354198 0.839513 0.043533 0.262869 0.225451 -1.042528 0.983125 0.772658 0.702887 -0.529687 -0.469322 -0.119213 0.405440 0.312355 0.546607 -0.804766 0.687601 0.693175 1.170857 0.616536 0.379257 -0.686805 -0.412547 0.403890 -0.602470 -0.320797 -0.306191 0.617772 -0.528035 -0.047526 -0.804823 -1.011794 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::empty() const = 0.115822 0.140974 0.172862 -0.554350 -0.920533 0.277441 -0.637509 -0.387755 0.049594 -0.399575 0.511355 -0.630769 -0.545938 0.837747 -0.223122 -0.910793 -0.227821 -0.042951 -0.101242 -0.043279 0.016275 0.207504 -0.144315 0.147015 -0.127734 0.012150 -0.228251 0.265503 1.201541 -0.355162 -0.749331 0.004998 -0.004029 0.768990 0.204486 -0.146270 0.468724 1.249606 0.159398 0.385050 -0.609733 -0.374446 0.291785 0.131378 -0.309378 -0.575325 -0.707811 0.429613 -1.349387 0.217134 0.770312 -0.073455 -0.140738 0.126959 0.433713 0.679472 -1.393129 1.198092 0.159149 0.387425 0.334509 -0.149852 -0.141976 0.127432 0.234445 -0.393869 0.200626 0.499098 -0.510408 -0.110656 -0.173540 -0.871425 1.614214 0.226899 -0.642098 0.063969 0.419519 -0.522213 0.540022 -0.757526 -0.898721 0.160641 0.155691 0.155706 1.004882 0.007233 0.047599 -1.096708 -0.045580 -1.217845 0.416201 -0.814631 0.384200 0.815184 -1.161481 -0.060307 0.296864 -0.208116 0.784952 0.333597 0.814753 0.106518 0.036283 0.038473 0.284370 0.097885 -0.061130 -0.009109 -0.288296 -0.938496 -0.364959 0.015981 -1.658872 0.128830 -0.240558 0.752361 -0.002665 0.127946 0.027276 -0.022284 -0.504317 -0.486913 -0.085326 -0.098060 0.710617 1.062980 -0.352212 0.390242 -0.358176 0.968083 -0.205930 0.158941 -0.229418 0.148200 0.130423 -1.147041 -1.524131 0.354998 0.568677 -0.367678 -0.838863 -0.631357 -0.027519 -0.223736 -0.229871 0.763365 1.382454 -0.411060 -0.644868 1.037654 0.111799 0.508967 1.276523 -0.069264 1.279637 -0.486745 0.104038 -0.245042 -0.334347 -0.493641 -0.754128 0.173651 -0.138400 0.075931 0.216610 -0.516651 0.458190 -0.069138 -0.576205 -0.253421 -0.009337 -0.353652 -0.679147 1.016924 0.307609 0.513211 0.423672 1.133168 -0.397199 -1.091219 0.538804 0.183457 0.132072 -0.112436 -0.466488 0.216192 0.468048 -0.724727 -0.277545 -0.082069 0.048736 -0.526668 0.101560 1.277497 0.117997 0.264066 0.423730 0.368746 1.224740 0.154372 0.341941 -0.987928 0.224035 0.496024 -0.509704 -0.801018 0.282759 -0.558966 0.067852 0.493684 -0.229536 0.130249 -0.355843 -0.640294 -0.367784 -0.227461 0.939790 0.377591 -0.567033 0.239830 -0.314661 0.157826 0.513175 0.475540 0.902713 0.775427 0.824160 0.022957 0.272437 0.073532 0.592354 -0.155965 0.267094 0.470874 0.354750 0.552244 0.297290 0.046589 0.459862 0.524154 -0.096556 0.669671 0.455974 1.324271 0.017528 0.017407 -0.363319 -0.335152 0.655299 1.693676 -0.978191 0.316685 0.339699 0.598227 0.220423 -1.207739 -0.054223 -0.381768 -0.465991 0.469694 -0.208545 0.006936 -0.226195 0.771998 -0.009350 -0.845512 0.589630 0.028977 0.121743 0.201676 -0.070655 -0.322246 0.229900 -1.141316 0.509898 0.621701 0.551965 -0.375336 -0.310373 -0.147834 0.505296 -0.214307 0.493092 -0.211848 0.295708 0.755113 0.800450 0.671684 -0.063553 -0.526757 -0.898252 0.262951 -0.421468 -0.245022 -0.139969 0.312195 -0.635598 0.148339 0.000000 -1.101535 +PE-benchmarks/Nearly_sorted_Algo.cpp__bool __gnu_cxx::operator== > >(__gnu_cxx::__normal_iterator > > const&, __gnu_cxx::__normal_iterator > > const&) = 0.335224 0.435520 0.395722 -0.588499 -1.144687 0.228966 -0.225686 -0.512798 0.018517 0.425057 0.460394 -0.437006 -0.269377 0.809432 -0.432218 -0.568141 -0.304827 -0.390915 -0.109991 -0.184335 0.080132 0.422754 -0.160968 0.137636 -0.161192 -0.049092 -0.102672 0.164999 0.454613 -0.184217 -0.531289 -0.168566 0.109216 0.720046 0.212132 -0.237811 0.116623 1.135045 -0.191237 0.372464 -0.951848 -0.743852 0.302308 0.063537 0.088613 -1.065926 -0.528665 0.441336 -0.192858 -0.083333 0.548860 -0.033145 -0.006967 0.067470 0.301886 0.320858 -1.112977 0.826777 0.187127 -0.104978 0.072395 -0.093026 0.026435 0.408647 -0.132747 -0.405603 0.165976 0.552900 -0.252490 0.060372 -0.055747 -0.906312 1.195369 0.152797 -0.639679 0.006966 0.378643 -0.759330 0.690337 -0.849152 -0.865812 0.090446 0.075975 0.083700 0.590023 0.046170 0.381358 -1.132592 0.212708 -1.169741 0.463272 -0.651559 0.290024 0.686736 -0.658484 -0.005782 0.400229 0.215442 1.074918 0.214913 0.741139 0.470882 0.518565 0.194558 0.252683 0.481046 -0.220711 -0.168653 -0.506953 -1.000894 -0.044218 0.048229 -1.503866 0.186279 0.117037 0.261361 -0.030263 -0.180230 0.182637 0.678720 -0.987040 -0.527736 0.250817 -0.072342 0.363476 0.795148 -0.321823 0.427129 -0.316909 0.848015 -0.344350 0.323850 0.057158 0.245143 -0.497367 -0.982836 -1.216402 0.455076 0.377644 -0.464113 -0.666361 -0.925866 0.011087 0.123335 -0.310425 0.461338 1.392541 -0.555146 -0.842043 0.890942 0.446222 -0.299200 0.886896 -0.029278 1.157638 -0.400420 -0.084411 -0.344352 -0.340688 -0.260248 0.389283 0.258473 -0.166114 0.287723 0.045762 -1.085345 0.499379 -0.198433 -0.592298 -0.074339 0.080049 -0.354112 -0.308163 0.718606 0.045081 0.563458 -0.006779 1.007484 -0.437034 -0.766562 0.283971 -0.431996 0.059874 -0.250532 -0.145330 0.364085 0.678643 -0.671613 -0.194513 -0.049633 -0.451555 -0.490646 0.161871 -0.055628 0.215951 0.331112 0.327458 0.624200 1.104637 0.262409 0.123124 -0.697544 0.310034 0.351062 -0.210020 -1.015431 -0.111213 -0.673508 0.033781 0.146124 -0.209052 0.295104 -0.181930 -0.403807 -0.183093 -0.519778 0.481622 0.253241 -0.360399 0.204200 -0.430635 0.705858 0.026384 0.510067 0.824760 0.950819 0.851758 0.070279 0.241404 -0.192288 0.347158 0.124639 0.484858 -0.096679 0.396520 0.817469 0.362439 0.178971 0.684946 0.475093 0.061107 0.738761 -0.084917 1.270273 -0.505760 0.128327 -0.376292 0.008121 0.629485 1.601191 -0.251961 0.106904 0.204228 0.230037 -0.134760 -0.551614 0.072463 -0.284843 -0.213790 0.383618 0.439689 -0.058336 -0.211006 0.775428 0.033717 -0.929630 0.528644 0.003548 0.239963 0.466291 -0.113266 -0.044307 0.237792 -0.553415 0.568911 0.736488 0.544703 -0.627852 -0.708652 -0.062497 0.522125 0.048795 0.569706 -0.969019 0.283748 0.716015 0.747273 0.082008 0.537457 -0.809898 -0.606896 0.516161 -0.204283 -0.317707 0.126660 0.399994 -0.585323 0.182441 -0.271105 -0.698113 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::vector >::end() const = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/Nearly_sorted_Algo.cpp___GLOBAL__sub_I_Nearly_sorted_Algo.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__printMaxSubSquare(int (*) [5]) = 4.938346 0.152659 7.442352 -4.329684 -0.092718 2.819046 3.298184 -5.988106 1.684985 17.665578 3.104377 -2.964154 -5.870719 6.612265 -2.776554 -6.206350 5.831246 5.293718 1.441155 -4.710492 -1.994833 1.415334 -1.433839 -6.147723 4.993019 -5.105949 4.155902 7.020176 -2.431820 5.201325 -4.090502 -1.691310 0.005404 14.673085 -0.235713 3.154489 -1.891276 12.607999 -11.978693 14.815252 -14.533096 -14.242082 13.656819 2.314170 2.358444 -4.488562 -0.251785 4.530816 -4.923293 -9.116938 1.118679 -5.061504 5.115219 -8.582221 0.154692 11.301712 -15.321145 -1.684935 0.726320 -8.653897 -11.973091 -1.788429 7.485977 2.893296 -9.040680 -8.709939 3.603870 3.666654 -5.687171 4.174107 -8.995359 -15.414892 5.450718 2.391236 -5.848825 2.991201 0.893503 -8.838165 5.983120 -0.320833 -6.150955 -6.302186 4.046142 -7.076771 4.778288 6.789722 12.917735 -18.983891 3.850853 -14.627053 12.279272 -7.324810 13.881361 11.008110 -5.440527 6.898150 5.716084 10.908278 0.327236 -2.426538 11.903462 5.221931 4.667617 -2.599719 8.444416 8.048198 -12.284778 -12.580492 -9.120032 -7.356747 2.663642 -5.946790 -11.680819 -0.878809 -12.466579 3.295406 4.018192 -3.330655 -3.477302 13.039769 -22.744508 -1.721925 4.236872 -2.616994 10.136651 7.934761 1.158934 2.288284 2.931767 11.119212 -4.203237 -4.324683 -4.300462 6.883740 -6.094099 -2.535838 -3.961262 0.439776 4.976995 -10.999007 -13.758863 -17.817420 -5.440203 11.249054 -1.930795 11.771781 20.151525 -3.238464 -9.797268 5.061356 -7.133122 -0.344429 12.521980 4.354479 16.956832 -17.058493 8.882398 -5.703612 7.246216 7.385749 14.880390 -3.224828 -7.073392 8.633230 0.109744 -0.622930 11.664887 -3.816303 1.940288 -6.937431 2.872460 -2.247275 -1.461625 12.798266 -15.507633 11.541315 -8.658246 17.737720 -13.172274 -9.405950 3.388484 -17.395166 -6.039843 -8.734336 -2.993017 -2.940533 12.127157 -12.223494 -8.159208 -6.703168 -4.553782 3.739631 11.078010 -7.257670 -0.818233 -3.960240 -6.262833 15.629651 4.457523 -0.607538 -1.545956 -10.771220 0.420774 7.095591 -2.579731 -12.866001 -0.723027 -9.478153 -1.862755 -0.427374 0.075678 8.445326 -9.430370 -4.633581 1.191088 -3.055098 -0.286964 -6.339788 -15.260737 4.329485 -1.316719 0.341613 5.557520 14.425646 12.512974 8.689502 0.693779 -3.234197 3.014626 -9.216751 -10.013747 7.081737 2.517557 6.910949 4.085761 7.793957 1.232968 2.800159 5.050637 0.622452 4.450884 11.488889 4.300259 11.811587 -4.161304 2.852342 3.885798 -7.069588 6.820062 11.650439 -4.824889 -2.222303 5.835841 1.267324 -5.872255 -5.607035 -1.702156 -4.574766 -4.608342 5.898216 7.088725 -3.297050 -7.132817 19.436595 3.598703 -21.203832 9.749381 -0.690325 2.627408 11.063283 -6.259708 4.071845 5.311267 0.426941 6.913953 2.898149 10.284152 -13.099170 2.439262 -1.002382 8.740411 10.509953 -3.544877 -22.247559 2.431935 1.934679 14.181397 6.748667 15.042905 -6.946864 5.301677 -4.860339 -8.775869 -1.418306 -2.935806 7.961968 0.049361 0.875590 -20.438673 2.422812 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.266891 0.038336 0.145111 -0.196524 -0.266872 0.119598 -0.328421 -0.092222 0.016393 -0.166257 -0.002949 -0.120700 -0.201547 0.301508 -0.223636 -0.401670 -0.136020 -0.285940 -0.048973 -0.100793 -0.065059 0.081187 -0.048907 0.081372 0.032062 -0.058520 -0.066594 0.007422 0.347740 -0.309280 -0.271065 -0.004503 -0.044706 0.371053 0.035190 -0.077939 0.260448 0.648614 0.477858 0.009535 -0.219850 -0.316419 0.063994 -0.014915 -0.064965 -0.086514 -0.082139 0.170158 -0.527753 0.313927 0.238628 0.007566 -0.320956 0.003400 0.146258 0.185754 -0.748837 0.653207 -0.022470 0.301213 0.032014 -0.177335 -0.030146 -0.142447 0.303456 -0.161151 0.178076 0.359599 -0.460025 0.155142 -0.027401 -0.209896 0.633331 0.178443 -0.173673 0.095120 0.256369 -0.066775 0.192185 -0.549287 -0.368662 0.014582 0.132055 0.030235 0.556877 0.044258 -0.086725 -0.482030 0.230256 -0.486719 0.083140 -0.418794 0.189189 0.410773 -0.465906 0.128172 0.130893 0.045964 0.201248 0.117973 0.441884 0.040831 -0.071518 0.103120 0.062694 -0.114453 0.058544 0.092165 -0.017332 -0.307325 -0.290433 0.061456 -0.625582 0.028986 -0.096894 0.443765 -0.012128 0.250844 -0.070698 -0.229110 -0.596366 -0.484948 -0.069965 -0.059487 0.358428 0.240886 -0.180171 0.135988 -0.206816 0.488428 -0.064862 -0.036277 -0.135676 0.012971 0.149369 -0.392183 -0.784498 -0.012493 0.227605 -0.120468 -0.465214 -0.176903 -0.135311 -0.078310 -0.082357 0.685527 0.614675 -0.053788 -0.224528 0.506177 -0.119515 0.399185 0.691615 0.039368 0.356319 -0.132634 -0.005871 0.021736 -0.008856 -0.193873 -0.974504 0.056487 0.027287 0.026117 0.240963 0.355229 0.072233 -0.120616 -0.208799 -0.217222 -0.083831 -0.213177 -0.296650 0.443740 0.252160 0.337528 0.322126 0.559084 -0.165912 -0.488660 0.178935 -0.085426 0.177030 -0.009645 -0.067910 -0.170260 0.162768 -0.435585 -0.237522 0.131543 0.010026 -0.187136 0.037827 0.857367 0.103441 0.060020 0.242619 0.304740 0.530784 -0.028481 0.196329 -0.515733 0.052242 0.218981 -0.172824 -0.205144 0.230144 -0.043136 0.011822 0.337707 -0.035384 -0.078814 -0.121998 -0.284932 -0.170922 0.032709 0.407892 0.166970 -0.100206 0.017723 -0.152456 -0.042065 0.209050 0.147864 0.490942 0.157669 0.276154 -0.086861 0.142805 -0.006207 0.443595 -0.151936 0.112792 0.357709 0.087883 0.197002 0.161057 -0.019993 0.127998 0.370338 -0.183539 0.267584 0.229467 0.657073 -0.278491 -0.001788 -0.245612 -0.120856 0.304605 0.677702 -0.651403 0.223141 0.213113 0.348390 0.232846 -0.537504 -0.110142 -0.194691 -0.089386 -0.032865 -0.137727 -0.113093 0.029753 0.335553 0.007644 -0.321787 0.283606 0.076257 0.009475 -0.037948 0.012901 -0.257813 0.224745 -0.599653 0.095006 0.164580 0.197179 -0.128969 0.010797 -0.064268 0.334472 -0.475369 0.254254 0.261891 0.178014 0.353618 0.273688 0.392653 -0.267820 -0.099610 -0.567561 0.092041 -0.218790 -0.179367 0.229588 0.204915 -0.269527 0.102039 0.149252 -0.583667 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/maximum-length-chain-of-pairs.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__maxChainLength(Pair*, int) = 3.490550 0.636339 4.024194 -3.598111 -0.958998 1.652504 2.262071 -3.417906 0.850148 11.341379 2.248341 -1.646321 -3.070552 4.303501 -1.650533 -3.548489 3.343927 0.866870 0.845686 -2.596662 -0.524886 1.742830 -0.743525 -4.090307 2.804916 -2.880489 1.563242 3.894997 -2.116773 2.843855 -2.441373 -1.153395 0.179270 8.474851 -0.193303 1.115373 -1.601067 7.429876 -8.348586 8.165953 -9.203203 -9.511103 8.615536 1.285856 1.640739 -3.796919 -0.337652 2.492930 -0.567034 -5.749032 0.429540 -2.845454 3.252415 -5.057669 -0.361623 6.150329 -9.099267 -1.241064 0.437796 -5.387266 -6.914166 -0.797498 4.518277 2.363842 -5.409908 -5.189470 2.031049 1.912249 -2.755287 2.047958 -4.730214 -8.862072 2.893552 1.957540 -2.756392 1.609060 0.275469 -6.478433 4.080437 -1.240509 -3.813552 -3.374904 1.901568 -3.910082 2.289209 3.676392 8.372364 -11.054369 2.718820 -8.689645 7.168826 -3.938655 7.558011 6.210966 -2.460889 3.754076 3.471447 7.084926 1.794640 -1.583752 7.306593 4.084904 4.129299 -1.112787 4.894758 5.868426 -7.191360 -6.807996 -5.496136 -4.656470 1.837079 -3.751674 -7.593692 0.129343 -6.257606 -0.189552 2.605161 -3.123718 -1.589157 9.102084 -13.551059 -1.800614 2.735858 -1.338944 4.721459 4.271002 0.700654 0.683014 1.554380 6.472379 -2.394865 -1.620134 -1.508371 4.289202 -5.211859 -2.069767 -1.593364 0.881270 2.334332 -7.347820 -7.623541 -11.109749 -2.238208 6.726090 -1.509568 6.521647 12.087707 -2.275866 -6.553627 3.216833 -2.560267 -2.169745 6.866899 2.126764 9.879933 -9.483955 4.558196 -3.095405 3.717671 4.153756 10.439887 -1.473386 -3.911190 4.884856 -0.560786 -2.315380 6.326520 -2.116344 1.145431 -3.592285 1.671621 -2.087165 -0.653385 6.804810 -8.591262 7.071188 -5.047446 9.832939 -7.332213 -5.182848 2.312498 -10.841721 -4.207673 -5.552590 -1.549448 -0.964872 6.790355 -6.716552 -4.230810 -4.349271 -3.222112 1.347466 6.548841 -6.898104 0.194801 -1.719134 -3.573085 8.592398 2.662072 -0.181310 -0.774034 -5.856786 0.664081 4.328689 -1.265446 -8.406229 -1.336547 -5.870972 -0.707477 -0.004606 -0.197891 5.597575 -4.782674 -2.634168 1.348649 -1.880738 -0.661350 -3.924819 -8.158437 2.443129 -0.911575 1.643806 2.177091 8.820766 6.800135 5.627254 0.182198 -1.681989 1.709761 -5.423395 -5.983478 3.818668 1.425657 2.494279 2.665229 5.631644 0.753200 2.316691 4.500811 1.389214 2.332691 6.908735 1.229083 6.918505 -2.590315 1.178273 2.282049 -3.795883 4.163611 7.378237 -1.304313 -1.798028 3.150534 -0.047383 -4.152992 -1.946550 -0.271368 -2.564612 -2.452697 3.468248 5.072073 -1.472345 -4.215782 10.983165 2.486913 -12.831883 5.965583 -0.346031 2.075810 6.808920 -3.894183 2.862836 2.999215 0.592125 4.529749 2.455198 5.832118 -7.944865 0.228929 -0.186486 5.424835 6.239661 -1.473064 -13.390352 2.161144 1.400606 8.024865 3.031580 9.885977 -4.792209 2.962102 -2.457110 -4.251140 -1.108291 -1.408263 4.276245 -0.952016 0.824828 -11.841716 2.230174 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +PE-benchmarks/maximum-length-chain-of-pairs.cpp___GLOBAL__sub_I_maximum_length_chain_of_pairs.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 0.961163 0.382892 1.445653 -1.781018 -0.536728 0.492041 1.738647 -1.106939 0.429791 3.940392 1.221961 -1.060215 -1.780109 2.365205 -0.176604 -1.434323 1.694741 -0.426258 0.053180 -0.273261 -0.471728 0.942259 -0.345757 -1.338711 1.408005 -0.566128 0.190600 1.715125 -0.233039 0.009351 -1.458168 -0.336687 0.081508 3.579523 -0.217884 0.235556 -0.359251 3.684557 -3.516930 4.097405 -3.512214 -3.018532 3.563099 0.361866 -0.030437 -1.948131 -0.177326 1.556904 -0.198167 -2.867041 0.816224 -0.943106 1.006535 -2.111194 0.135263 3.319431 -3.995678 -0.006749 0.663258 -1.307079 -2.253332 -0.594042 1.523732 0.641778 -2.358212 -2.176296 0.799855 -0.142266 -1.645759 0.394472 -2.194996 -3.773905 1.943305 1.007369 -1.436096 0.909337 -0.076910 -2.905697 1.823036 -0.868974 -1.752140 -1.089428 0.843609 -1.319254 1.595084 1.018895 2.678615 -4.894985 0.307817 -3.842647 2.772070 -2.298081 3.178931 3.158637 -1.039521 1.531904 1.033306 1.973504 0.518357 -0.269960 3.241756 1.234198 1.746364 -0.499628 2.027125 2.365274 -3.154725 -2.902836 -2.238268 -2.085618 0.835853 -0.673066 -2.844863 0.249617 -2.735936 0.125107 1.492351 -0.776631 -0.828677 3.219108 -4.530063 -0.648406 1.125300 -0.676420 2.428791 3.023383 0.173555 0.264095 0.085759 2.895411 -0.679402 0.183802 -1.125549 1.784795 -1.485424 -1.182203 -0.590191 -0.096187 1.038699 -2.880621 -3.393425 -4.861784 -0.741337 1.853245 -1.003518 2.611573 5.339645 -1.205607 -2.366141 2.024534 -0.546268 0.287093 2.477196 0.503081 4.614295 -4.012280 1.939606 -0.961023 1.379322 1.282183 4.709451 -0.483392 -1.810330 1.364948 -0.270841 -1.754814 3.062466 -0.198985 0.199442 -0.654965 0.436018 -0.963091 -1.645311 3.408054 -2.723029 2.873214 -1.634161 4.594225 -2.813661 -2.192119 1.607620 -2.522510 -1.058450 -3.031168 -1.287837 0.184598 2.604919 -2.544042 -1.730246 -1.570104 -0.788543 0.056372 2.353927 -2.448090 -0.052321 -0.843029 -1.167338 2.994615 1.426466 -0.440246 -0.034414 -3.089474 0.384748 1.500429 -0.698325 -3.355134 -0.112018 -2.456000 -0.547474 0.722412 -0.374438 1.920863 -2.042804 -1.573675 1.021771 -0.818597 -0.019074 -1.375239 -4.206216 0.893236 -0.261039 0.253702 1.353686 3.697696 2.827060 2.375974 0.327608 -0.619362 0.392113 -1.382115 -3.083934 1.189395 -0.113067 1.641582 1.481928 2.035092 0.818571 0.798169 1.907725 0.006619 0.535818 3.025318 1.123046 3.241106 -0.391813 -0.050027 1.234569 -1.927630 2.029025 3.273203 -1.073594 -1.075808 1.662095 0.400392 -1.811518 -1.086549 -0.252163 -1.349577 -1.221406 1.868123 1.216908 -0.556350 -1.524614 4.971769 0.208188 -5.603298 2.277434 -0.231032 1.284522 2.642392 -1.035734 1.405934 1.517255 -0.601423 2.023985 1.121415 2.803300 -2.827474 -0.150885 -0.234917 1.957041 2.171449 -0.465702 -6.059417 0.353240 0.525394 3.571178 1.756982 3.742230 -1.645498 1.195035 -0.855283 -1.642348 -0.370192 -1.033826 2.105030 -0.506742 -0.068332 -5.282988 1.051077 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycleUtil(bool (*) [5], int*, int) = 1.398983 0.669042 2.615477 -2.428073 -1.091510 0.882989 1.752690 -1.924096 0.719933 6.156379 1.511522 -1.311705 -2.443676 3.428694 -1.021329 -1.995969 1.857131 -0.138084 0.237192 -1.410198 -0.451098 1.250424 -0.448635 -1.837174 1.620652 -1.561025 0.796203 2.344231 -0.619921 0.740043 -1.667582 -0.678350 0.146389 5.052479 -0.154543 0.700188 -0.731187 5.061980 -4.782508 5.695031 -5.482419 -5.221624 4.776730 0.692028 0.646984 -2.870429 -0.316044 1.850137 -0.432463 -3.344595 0.890461 -1.428271 1.544991 -2.737839 0.322440 3.892153 -5.505712 0.051700 0.392721 -2.682008 -3.388923 -0.830759 2.133861 1.322427 -3.340827 -2.954724 1.214480 0.973645 -2.395187 1.069692 -2.655999 -5.237891 2.389517 1.163062 -2.097236 1.106037 0.442277 -3.857220 2.575986 -1.463237 -2.569665 -1.630418 1.305129 -2.005812 1.887860 2.020409 4.267173 -6.923179 0.744191 -5.410491 4.135024 -2.929998 4.471493 4.011071 -1.486677 2.271672 1.897992 3.423550 1.137658 -0.422056 4.428223 2.224930 2.647541 -0.427141 3.064074 3.361324 -4.249811 -4.099007 -3.316399 -3.064181 1.005844 -1.461520 -4.202840 -0.015864 -3.560853 0.040443 1.579624 -1.205347 -1.153677 4.921589 -7.611552 -1.122976 1.715342 -0.880371 3.214411 3.342965 0.206901 0.770005 0.597202 4.171414 -1.483007 -0.252479 -1.359266 2.421874 -2.329244 -1.486036 -1.580172 0.235434 1.465756 -3.970516 -4.772984 -6.637924 -1.588041 3.485022 -1.063619 3.867201 7.575971 -1.579681 -3.704353 2.556071 -1.188914 -0.289509 3.935015 1.120593 6.229608 -5.521312 2.622759 -1.854120 1.922779 2.107698 6.837110 -0.585448 -2.452934 2.368279 -0.015678 -2.157091 3.747967 -1.155774 0.144108 -2.271848 0.826278 -1.484581 -1.326342 4.500686 -4.798947 4.251632 -2.918990 6.385437 -4.422531 -3.422016 1.683403 -5.180307 -1.541449 -3.672608 -1.029857 -0.178097 4.126404 -3.982981 -2.632257 -2.274759 -1.765788 0.470584 3.342447 -3.978952 -0.000497 -1.046835 -1.625690 5.090784 2.222373 -0.135440 -0.274912 -4.050592 0.530167 2.327679 -0.500319 -5.168383 -0.222564 -3.446624 -0.665460 0.312606 -0.284675 2.785480 -2.724812 -1.870556 0.691351 -1.564451 -0.067060 -1.910624 -5.443624 1.387484 -0.540932 0.866338 1.553326 4.957841 4.364892 3.407764 0.731868 -0.908591 0.724649 -2.811996 -3.374106 2.314260 0.941405 1.549541 1.796765 3.720624 0.975057 1.165766 2.911094 0.581566 0.969755 4.179122 0.912599 4.664260 -1.637123 0.524541 1.153357 -2.208702 2.695460 5.033305 -1.070092 -1.212518 2.237420 0.561925 -2.248749 -1.479715 -0.392548 -1.855685 -1.339875 2.616234 2.590161 -0.997635 -2.194162 6.828953 0.860320 -7.638127 3.339544 -0.314632 1.502842 3.721469 -1.911030 1.426683 2.146664 -0.598500 2.857182 1.574405 3.606784 -4.392481 -0.630929 -0.369108 2.992783 3.621305 -0.672561 -8.583089 0.883951 1.027240 5.091471 2.107444 5.449684 -2.713704 1.268151 -1.036910 -2.659428 -0.813596 -0.784722 2.910890 -0.927059 0.311976 -6.973771 0.788888 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__hamCycle(bool (*) [5]) = 0.517525 0.657882 1.416411 -1.664899 -1.384005 0.311513 0.724863 -0.822323 0.258508 2.247586 0.828953 -0.849428 -2.149033 1.915893 -0.616507 -1.668149 0.444006 -1.009824 -0.117947 -0.885231 -0.229260 0.878484 -0.174566 -0.448085 0.770332 -0.689736 -0.113798 1.536141 0.945102 -0.423119 -0.884159 -0.271633 0.047613 2.617661 -0.157820 -0.031600 0.145923 3.401448 -2.033247 2.208100 -2.730718 -2.641241 2.364009 0.203903 -0.185660 -2.119873 -0.461783 1.183245 -1.621257 -0.812692 1.044111 -0.292706 0.349561 -1.109515 0.601784 2.212040 -3.838899 1.426495 0.227709 -0.741708 -1.016204 -0.542139 0.395919 0.349315 -0.725517 -1.560840 0.576773 0.333356 -1.684633 0.491452 -0.911751 -2.193341 2.150451 0.679160 -1.097187 0.801885 0.733478 -1.909298 1.560389 -1.747366 -1.734018 -0.589120 0.759943 -0.624819 1.837004 0.585978 1.243778 -3.641332 -0.131390 -2.951955 1.805691 -2.078958 1.875187 2.333473 -1.301676 1.282262 0.872767 0.506120 0.888521 -0.296323 2.523283 0.884033 1.737495 0.377641 1.275157 1.332934 -1.833945 -1.567027 -1.782238 -1.913279 0.014967 -0.600358 -2.872971 0.109261 -1.290089 0.152753 1.072266 -0.586397 -0.566941 1.996984 -3.372359 -0.620622 0.760391 -0.467937 1.577526 2.183576 -0.242647 0.348715 -0.060332 2.586164 -0.767103 0.659260 -0.696255 1.101083 -0.283094 -1.797401 -1.834107 0.045410 0.731787 -1.676370 -2.546033 -2.880405 -0.655506 0.760339 -0.587104 2.049498 4.329536 -0.913202 -2.184527 2.209877 -0.436705 0.702061 2.240546 0.430574 3.151132 -2.158085 0.644640 -1.074002 0.290498 0.601169 2.560387 0.104870 -1.128290 0.922732 0.413060 -0.966614 0.997825 -0.563816 -0.476386 -1.090031 0.211810 -1.286766 -1.287614 2.615639 -1.282499 2.517533 -0.651028 3.414339 -1.870163 -2.508182 1.095023 -1.757209 -0.126017 -1.859693 -0.907279 0.365904 1.466764 -2.119237 -1.381415 -1.417744 -0.461947 -0.459853 1.304739 -1.063082 0.266281 -0.224734 0.086015 2.231535 2.016696 -0.089178 0.259692 -2.673179 0.592390 1.135160 -0.222932 -3.078018 0.401198 -1.286737 -0.300856 1.145788 -0.275485 1.151334 -0.851973 -1.198232 0.240123 -0.884510 0.412878 -0.413662 -2.894478 0.629249 -0.394099 0.402613 1.032942 2.179853 2.690729 1.668720 0.841933 -0.034504 0.417743 -0.867000 -0.651802 0.597757 0.478016 0.810878 1.069840 2.088826 0.935947 0.467981 1.833888 1.198835 -0.265361 2.229862 0.665471 3.077785 -0.879324 -0.152613 0.137560 -0.815494 1.524584 3.175622 -0.963062 -0.327559 1.434851 1.048913 -0.445671 -1.660758 -0.314129 -1.296440 -0.472292 1.813095 0.810234 -0.888282 -0.592684 3.249976 0.152628 -3.706995 1.817034 0.029318 0.824080 1.019446 -0.577197 -0.083411 1.393982 -1.703075 1.507825 1.074189 1.708652 -1.985943 -0.581050 -0.142177 1.672536 0.955353 0.443695 -4.072213 -0.078274 0.893336 2.641832 1.395246 2.401483 -1.263147 -0.728631 0.018090 -1.221931 -0.647606 -0.147737 1.281339 -1.350004 0.428375 -2.541736 -0.641156 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 0.616520 0.609670 0.903902 -0.858270 -1.266670 0.573552 -0.738432 -1.075164 0.058564 1.748551 0.550966 -0.692103 -1.153890 1.307095 -0.955743 -1.412187 -0.262921 -0.028586 0.078785 -1.121557 -0.033964 0.494401 -0.185518 -0.245604 0.099566 -0.688878 0.124809 0.532086 0.797040 0.091550 -0.649271 -0.233739 0.116223 1.769036 0.238516 0.149628 0.086811 2.015611 -0.566641 1.046023 -2.351823 -2.256024 1.187497 0.367537 0.325615 -1.208012 -0.313809 0.663527 -1.554238 0.038043 0.537031 -0.482075 0.122756 -0.382474 0.372759 1.024404 -2.663207 1.576958 -0.082523 -0.800004 -0.727706 -0.188654 0.579781 0.530674 0.020591 -0.990309 0.325372 1.309475 -1.088884 0.483502 -0.489876 -1.659920 1.504609 0.269631 -1.047879 0.178502 0.453693 -0.795180 0.961093 -1.605032 -1.327855 -0.373359 0.694177 -0.172663 0.855888 1.052754 1.106393 -2.487692 0.412141 -2.152248 1.427526 -0.879224 1.370822 1.248217 -1.231841 0.468219 0.909026 0.381989 1.299061 -0.047874 1.617062 0.526237 0.789422 0.261770 0.575020 0.882563 -0.879277 -0.674423 -0.912974 -1.588644 -0.175417 -0.360054 -2.218094 -0.081021 -0.906394 0.834180 0.285865 -0.441001 -0.157127 0.985401 -3.055742 -1.338854 0.233040 -0.200647 1.435331 0.995136 -0.145271 0.790779 0.115204 1.765512 -0.785965 -0.268005 -0.269399 0.641932 -0.339041 -1.519973 -2.268980 0.602032 0.763349 -1.202698 -1.629722 -1.904999 -0.554360 0.759416 -0.309579 1.749644 2.881919 -0.720616 -1.757897 1.384878 -0.763880 -0.062698 2.348898 0.344400 2.283027 -1.529233 0.500146 -0.669070 0.092151 0.363483 0.829294 0.010908 -0.582042 0.794871 0.508222 -0.135085 -0.091335 -0.665499 -0.626953 -1.522439 0.285107 -0.643591 -0.072282 1.290829 -1.151223 1.462305 -0.525705 2.240753 -1.623297 -2.012786 0.507167 -2.273682 -0.474903 -0.173100 -0.388965 -0.152934 1.411234 -1.895026 -0.778333 -0.623049 -0.617236 -0.350691 0.866746 -0.005304 0.259325 0.164437 -0.023465 2.188428 1.598696 0.272900 0.098462 -1.516313 0.222749 1.123200 -0.108812 -2.225464 0.059505 -1.304071 -0.015498 0.675200 -0.259606 0.851240 -0.555740 -0.588196 -0.474441 -0.805728 0.964204 -0.096711 -0.819226 0.614268 -0.710341 0.534843 0.493939 1.472902 1.668076 1.461761 0.903692 -0.055766 0.582500 -1.152229 0.820626 0.557614 1.074863 0.298983 0.677725 1.410075 0.416801 0.419527 1.227984 0.935133 -0.075891 1.555377 -0.087008 2.257064 -1.466414 0.654409 -0.488402 -0.406452 0.972394 2.664645 -1.240979 0.015453 0.715803 0.382783 0.117424 -1.291946 -0.100679 -0.795693 -0.478150 0.874637 1.094495 -0.321566 -0.748013 2.042874 0.494544 -2.162053 1.767441 0.015601 0.169794 0.689069 -0.722896 -0.524254 0.732915 -1.109522 0.648587 1.105667 1.232628 -1.609935 -0.401756 -0.255695 1.549928 0.639603 0.404806 -2.036294 0.385839 1.229591 1.732402 0.787715 1.269805 -1.258579 -1.088778 0.139072 -0.915262 -0.564853 0.153140 0.799293 -0.639560 0.512322 -0.867021 -0.988370 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.512433 0.129573 0.193008 -0.485742 -0.633131 0.370816 -0.854762 -0.411545 0.050222 -0.292358 0.278150 -0.435124 -0.336064 0.591608 -0.409605 -0.784092 -0.179299 -0.433453 -0.050010 -0.206332 -0.095020 0.021059 -0.155386 0.012582 -0.145831 -0.071100 -0.062774 0.077740 0.983419 -0.414303 -0.813800 0.032455 -0.087834 0.830218 0.306518 -0.404997 0.568806 1.217192 0.645501 -0.104785 -0.454065 -0.439967 0.198101 0.060264 -0.252389 -0.178085 -0.336935 0.357338 -1.237307 0.579190 0.590933 -0.204123 -0.303875 0.074797 0.169056 0.551353 -1.421207 1.318759 0.045727 0.643636 0.145888 -0.357728 0.148901 0.029845 0.501391 -0.372123 0.482362 0.686569 -0.744098 0.092947 -0.329715 -0.733897 1.310211 0.318030 -0.459032 -0.031748 0.320301 -0.438708 0.384672 -0.835678 -0.825737 0.123604 0.181472 -0.016824 1.133219 -0.021100 -0.086511 -1.037594 0.258634 -1.192883 0.158605 -0.770696 0.461395 0.784955 -1.147159 -0.046043 0.196098 0.128013 0.540617 0.170835 0.848038 0.029847 -0.156174 -0.025452 0.259473 -0.069487 0.140178 0.209136 0.013081 -0.682186 -0.623734 0.106288 -1.452595 0.164278 -0.468234 0.706879 -0.144271 0.296461 -0.234838 -0.192153 -0.831770 -1.045786 -0.311663 -0.114622 0.868114 0.744614 -0.366047 0.486703 -0.305434 0.968666 -0.027443 -0.144873 -0.329853 0.058820 0.190990 -0.972355 -1.747323 0.274170 0.737208 -0.361993 -1.045168 -0.444057 -0.224651 -0.417327 -0.155030 1.309382 1.188009 -0.151818 -0.556581 0.964073 -0.278010 0.641940 1.647718 -0.038057 1.066433 -0.518350 0.258602 -0.015606 -0.038127 -0.588969 -1.731043 -0.069919 0.070948 0.034300 0.341392 0.610803 0.143022 -0.012982 -0.460920 -0.337511 -0.117144 -0.330718 -0.724817 0.979815 0.421096 0.477294 0.740924 1.195150 -0.456333 -1.074688 0.488294 0.128720 0.269895 0.121617 -0.301819 -0.165229 0.522214 -0.705365 -0.453913 0.194901 0.196963 -0.376876 0.216456 1.922567 0.166631 0.194555 0.361723 0.451543 1.186923 -0.040523 0.463333 -0.935462 0.144256 0.709226 -0.452637 -0.470713 0.261808 -0.383643 0.056591 0.584955 -0.097641 0.105428 -0.459179 -0.703958 -0.331903 0.133178 1.037532 0.427069 -0.552406 0.309926 -0.441320 -0.158660 0.469337 0.483659 0.773935 0.534453 0.671315 -0.328485 0.300285 -0.022106 0.810291 -0.344505 0.316586 0.686533 0.236589 0.516536 0.191749 0.035993 0.234827 0.611409 -0.300465 0.569400 0.438816 1.230886 -0.385953 0.162946 -0.528127 -0.448280 0.663582 1.606540 -1.210964 0.238407 0.312552 0.630542 0.374894 -1.332915 -0.185169 -0.379004 -0.166864 -0.125421 -0.216130 -0.074539 -0.200466 0.815295 0.086294 -0.728313 0.652728 0.130974 -0.003699 0.167294 -0.187153 -0.439863 0.238924 -1.168046 0.403158 0.499917 0.455168 -0.211995 0.012344 -0.122005 0.696552 -0.922884 0.349603 0.337769 0.509497 0.771876 0.692003 0.992454 -0.358032 -0.403400 -0.950867 0.162520 -0.434092 -0.175302 0.200113 0.557514 -0.765441 0.273745 0.256764 -1.070250 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp___GLOBAL__sub_I_hamiltonian_cycle_backtracking.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 1.465506 1.534992 4.349749 -4.840977 -2.431876 0.068741 4.323223 -2.170207 1.150863 8.120845 2.545205 -2.508025 -3.938331 6.021753 -1.416997 -3.455771 2.341965 -1.865819 -0.618160 -1.788985 0.335529 2.758210 -0.219871 -2.566265 2.599494 -1.839092 0.761862 4.933584 -0.290772 0.188807 -1.953089 -0.851671 0.880049 7.256673 -1.173408 0.713236 -1.219250 7.879505 -9.118277 8.321633 -8.828921 -7.296574 8.016474 0.759871 -0.416616 -7.851029 -2.589838 2.802098 -0.929673 -4.991966 1.503245 -0.815135 2.068614 -4.670935 0.969633 6.752813 -9.374591 0.401308 0.990740 -3.743202 -4.344076 -0.906904 2.641090 1.643940 -5.040442 -4.582731 1.473901 -0.474157 -3.314585 1.842486 -2.897608 -7.321458 4.755823 1.580291 -2.731201 2.486183 1.052890 -7.321765 4.780275 -2.844127 -3.281172 -2.482694 2.017227 -2.602069 3.205604 1.339539 5.400050 -10.135606 -0.196608 -7.347633 5.933212 -5.732873 5.417431 5.977592 -2.631184 3.995192 1.894148 3.691755 2.277355 -0.972505 6.348623 4.186237 6.233345 -0.406051 4.763708 5.380460 -6.412693 -6.419024 -5.875628 -5.256654 1.736709 -3.263075 -8.818699 0.278847 -3.746332 -2.103025 3.164812 -3.400838 -0.893364 8.788621 -9.556425 0.531386 3.594990 -1.248963 2.366462 6.282988 -0.064805 0.013082 -0.022810 6.108635 -1.606289 1.901505 -1.147430 3.424339 -4.457646 -4.237765 -1.234562 -0.162845 0.824399 -5.404556 -6.520773 -10.053302 -1.548696 4.211776 -1.650131 4.089621 11.364550 -2.136154 -7.191972 4.318560 1.705417 -0.800518 4.320657 1.277666 9.476131 -7.355810 2.776986 -3.612650 1.962747 3.521395 12.059155 -0.352534 -3.973130 3.627361 -1.136814 -7.848364 6.606670 -1.653003 0.545396 -1.315074 1.218730 -3.460636 -2.798308 7.531030 -5.286470 7.953842 -4.998431 8.867014 -6.004960 -5.437448 2.498806 -7.783937 -1.950134 -6.843767 -2.341357 1.171622 5.607808 -5.304075 -3.597727 -4.875131 -2.844024 0.151658 4.914509 -8.863407 0.321073 -1.928360 -1.313706 6.405637 3.624991 -0.803343 0.400990 -6.481925 1.473309 3.878067 0.172092 -9.783886 0.189358 -4.597600 -1.021684 0.222914 -0.729801 4.020718 -3.538517 -2.941429 1.887943 -3.174382 -1.436330 -3.486931 -9.773849 1.626582 -1.604806 2.547289 1.841169 7.132179 7.529285 4.466687 0.897490 -0.665871 1.172166 -4.160664 -5.841665 3.089366 0.764730 0.616220 2.961789 6.426807 1.702548 1.319561 5.542505 2.574860 0.412829 6.212330 1.973593 7.070557 -0.733923 -0.528083 1.809684 -2.646192 3.986728 8.158990 0.981904 -1.834734 3.789475 1.824903 -3.433029 -3.329210 -1.273806 -2.871370 -2.277653 6.393266 3.000976 -2.978827 -1.746366 9.689009 1.274498 -11.310964 4.190509 -0.283038 2.371626 4.242098 -2.717844 1.870508 4.159604 -1.571128 4.257483 1.839852 5.068335 -6.372773 -2.331738 -0.156382 4.068696 6.474626 0.150915 -14.733132 0.749377 1.582402 8.055807 2.015225 10.191568 -3.784071 1.677891 -1.004166 -2.340902 -1.546262 -1.430189 3.324976 -2.945531 0.111866 -10.620661 0.764656 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__findMaxSum(int (*) [5]) = 2.368479 2.161819 2.619028 -3.659446 -3.517491 1.592265 -1.195261 -3.413335 0.478764 6.226484 2.443714 -2.897290 -3.970460 4.792012 -2.777921 -4.531146 0.419442 -0.917356 0.093653 -2.961215 -0.045195 1.699662 -0.565278 -1.749459 0.846844 -1.747300 0.303874 2.442011 3.290394 -0.035046 -3.204773 -0.382556 0.612167 6.535805 0.543747 -0.499088 0.382447 6.937705 -3.740063 3.845639 -8.024209 -6.715818 5.229085 1.346727 0.101208 -5.108812 -1.530419 2.390480 -4.735702 -0.897814 1.857115 -1.983884 0.903537 -2.202759 0.794892 5.347132 -9.544074 4.864409 0.263322 -1.658824 -2.537088 -0.947987 2.949679 1.735621 -0.729970 -3.899714 1.562827 2.821311 -3.999216 1.345343 -2.942658 -6.471910 5.108628 1.252083 -3.575627 0.726380 0.453523 -4.763284 3.348492 -4.974284 -3.982063 -1.185485 2.502022 -0.585861 3.295764 2.581402 3.615718 -8.972563 0.334521 -7.574755 4.671835 -3.861431 5.334708 4.825793 -4.554610 1.475964 2.085861 1.452584 4.004992 -0.274699 6.007830 2.059794 3.413036 -0.488275 2.463528 3.735747 -3.468042 -2.815663 -2.876156 -5.121034 -0.713804 -1.045808 -8.506044 0.067579 -4.504481 1.358484 1.628936 -2.292770 -1.047572 4.530085 -9.254983 -4.624931 0.648417 -0.828252 5.047663 5.041024 -0.233225 2.214221 0.162246 6.154570 -1.374577 -0.526246 -1.490326 2.315544 -2.057401 -6.118222 -6.500300 1.507303 2.712050 -4.759202 -6.355564 -7.468674 -1.619523 1.320334 -1.212665 5.603826 9.838073 -1.974721 -6.271433 4.732888 -2.000827 0.180212 8.226237 0.581169 9.126449 -6.601867 3.150005 -1.852573 1.314380 1.021279 3.949779 -0.854392 -2.442673 2.001633 0.746881 -1.834770 0.506765 -1.103011 -1.115032 -3.859037 0.720827 -2.304792 -1.733092 5.645579 -4.021852 5.516127 -2.029455 8.181969 -5.910070 -7.019109 2.695667 -6.339201 -1.616306 -1.677463 -2.201498 0.083868 5.197599 -5.841651 -2.871266 -2.463002 -1.107999 -0.973917 3.844434 -0.752127 0.508812 -0.347645 -0.634917 6.471319 4.933625 -0.241232 1.278319 -5.544649 0.840582 4.686213 -0.660442 -8.322951 0.271487 -5.043980 -0.260057 2.310576 -1.096439 3.324514 -2.605449 -3.068483 -0.355333 -2.237768 3.042218 -1.183561 -4.829445 2.565448 -3.073157 0.993341 1.842430 6.131961 5.493216 4.676663 2.167930 -1.223981 2.048581 -4.045243 0.706490 1.754945 2.604401 1.235201 2.574694 5.020093 1.062325 1.329847 4.114035 2.625616 -0.713880 5.513233 0.919730 7.275462 -3.556379 1.632552 -0.766868 -2.986568 3.595542 9.392215 -3.512607 -1.157107 2.638034 1.603338 -0.319756 -5.030487 -0.876205 -2.791776 -2.313281 3.367117 2.716873 -1.363015 -2.634764 8.120662 1.612030 -8.417753 6.020314 -0.090417 0.807196 2.714301 -2.900954 -0.982738 2.785735 -3.670695 2.645024 3.269552 4.705695 -4.951648 -1.570407 -0.826141 5.283099 2.272753 0.368411 -8.400143 1.651385 3.953528 6.852793 3.847664 5.452442 -3.851425 -2.249497 -0.445085 -2.546091 -1.442229 -0.780666 3.312155 -3.063999 1.193778 -4.535004 -1.845394 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp___GLOBAL__sub_I_maximum_sum_rectangle_in_a_2d_matrix.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__isValid(int, int, int) = 0.983895 0.246023 0.769159 -1.020425 0.290753 0.510313 1.270346 -0.348253 0.749428 2.045511 0.225769 0.456071 -1.470454 -0.073368 -0.223219 -1.016784 1.481052 -1.188677 0.530940 0.003837 -0.010428 0.357774 0.032592 -0.937092 0.868298 -0.507376 0.173720 0.896199 0.179208 -0.048596 -1.105435 -0.003966 -0.133597 1.691918 -0.257933 0.089958 0.028099 1.467874 -0.569527 1.337773 -2.087032 -1.536598 1.647213 0.089469 -0.287006 -1.549596 1.199251 0.142589 -0.147224 -0.984615 0.251208 -0.987785 0.858273 -1.037578 -0.205696 1.893438 -2.116559 -0.065440 -0.209675 -0.094577 -0.734463 -0.524706 0.981761 0.449285 -0.358581 -0.900647 0.749804 -0.247560 -1.591029 0.746123 -1.039466 -1.314709 1.428823 0.857038 -1.013879 0.307399 -0.051639 -1.991475 0.455753 -0.938219 -0.398310 -0.639962 0.620410 0.249370 0.820836 -0.062600 1.125752 -2.224317 -0.285651 -1.382173 1.520524 -1.048633 1.946325 1.209210 -0.260161 0.700189 0.285953 0.656060 -0.224323 -0.858142 1.810616 0.823140 1.436134 -0.859911 0.477674 0.763814 -1.224416 -1.240594 -0.397762 -0.226991 -0.167244 0.060243 -2.095060 -0.359283 -1.724431 0.622269 1.333852 -0.776283 -0.612002 1.541818 -2.514372 -1.168345 0.174073 -0.285467 1.524368 1.198892 0.370056 0.146709 0.762122 1.744596 -0.055842 -0.196804 -0.940517 0.645504 -0.752023 -0.518294 0.046913 -0.666749 0.405908 -1.351821 -1.860596 -1.873676 -0.686735 0.671011 0.108303 0.961508 2.161106 0.097803 -1.249878 0.640077 -1.259815 0.188373 1.355098 0.189593 1.331154 -2.188845 1.552974 -0.549141 1.783230 0.503293 3.280427 -0.564600 -0.666313 0.329956 -0.235945 0.153124 -0.288948 0.094144 0.618947 -0.154003 -0.867346 -0.778240 -0.804789 1.357612 -1.385892 1.716085 -0.993675 2.215871 -1.754418 -1.507707 0.499455 -0.964234 -0.369998 -1.309359 -0.579217 0.606559 0.876099 -1.649059 -0.999428 -0.558799 0.097987 0.592356 1.297116 -1.475841 -0.266501 -0.870948 -0.959024 2.404072 0.157852 -0.567721 -0.143371 -0.987690 0.120420 0.525578 -0.428512 -1.276502 -0.105397 -0.978555 -0.217602 1.050308 -0.077605 0.865096 -0.484275 -1.162693 0.749874 -0.335629 -0.076632 -0.972321 -2.483406 0.250717 0.224007 -0.800246 0.056642 1.567432 1.086525 0.447538 -0.541121 -1.097215 0.651071 -0.989311 -1.391403 0.244149 0.129855 0.447229 0.281407 1.131814 0.061589 -0.015869 0.784349 0.613975 0.063687 1.097678 0.459679 0.994611 -0.837758 -0.166930 0.747138 -1.520106 0.825201 1.131541 -0.636122 -0.261458 0.700018 0.753089 -0.285138 -0.618341 -0.301574 -0.850861 -0.138538 0.933918 0.504732 -0.475854 -0.790841 2.471583 0.587181 -2.537336 1.194642 -0.117146 0.266017 1.072130 -0.776888 0.156278 0.814655 -0.423804 0.892461 -0.251641 1.315354 -0.823296 -0.199612 -0.169141 0.760942 -0.098867 -0.688419 -2.015925 -1.090537 0.119939 2.176001 1.920100 2.291356 -0.171421 0.773240 -0.941197 -0.723798 -0.273078 -0.660979 0.949478 -0.340598 -0.280369 -2.507972 1.232375 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 9.942892 4.045169 9.103469 -7.836916 -4.855628 5.054452 -1.437755 -12.927930 1.294527 24.056835 7.520178 -6.200941 -1.635376 12.771673 -9.759509 -6.883850 4.321956 9.350196 0.739260 -9.712307 1.093762 2.419085 -2.713007 -9.539500 1.605504 -7.465244 8.086291 5.335269 -2.063179 9.916050 -9.122154 -2.898824 3.082943 19.298313 2.872462 1.464222 -5.122279 13.589352 -15.758171 14.289903 -24.215880 -20.688751 15.889685 5.063375 6.661296 -15.925708 -8.325544 4.016171 0.883335 -9.698601 -0.299143 -9.126644 7.108003 -9.058710 -0.796157 12.326377 -17.722937 -0.637814 1.433534 -12.606176 -14.442591 -1.563977 15.195971 7.617062 -12.836819 -11.377198 6.458375 12.043986 -4.675739 6.495169 -12.436604 -26.170328 6.703541 1.447340 -9.576663 -0.079556 -0.844207 -18.531140 9.149430 -1.024964 -8.395370 -5.834632 5.871892 -4.945222 1.829681 9.604256 19.661403 -25.954263 5.845162 -21.836192 14.770628 -8.080404 18.312169 10.799004 -11.074357 3.931926 8.419207 19.132355 9.913769 0.624638 15.307088 12.076800 7.989254 -7.505935 12.999529 13.863050 -11.743118 -14.415242 -9.974345 -13.555398 2.431660 -7.992462 -25.365853 -0.326171 -16.141360 -3.527804 -2.231727 -8.368495 -0.888120 22.434989 -32.447097 -9.019233 6.096657 -2.531601 11.165317 10.759146 1.045672 6.918969 2.278128 13.792187 -4.805857 -7.642495 -3.062648 7.919535 -16.713753 -13.068640 -11.072163 6.086707 8.331416 -17.047375 -18.175141 -25.291704 -6.659578 14.297050 -2.578298 10.793212 25.193101 -4.972974 -18.059856 4.918727 -1.800304 -10.302464 22.798494 4.454755 29.050611 -24.877622 14.848251 -6.054842 8.862540 7.437403 13.845443 -6.141516 -8.261511 10.990441 -2.770802 -13.971450 16.850534 -8.328976 1.753685 -8.697085 6.247810 -2.220573 1.978686 15.650934 -20.831359 15.599769 -14.368882 21.263403 -21.102252 -13.352252 2.955877 -29.074126 -9.965685 -5.104515 0.633215 -5.078526 23.811118 -15.247645 -9.141856 -5.929441 -10.189294 5.185111 16.192053 -13.336981 -0.562815 -3.574533 -8.203859 16.875457 8.708000 0.705164 1.493323 -10.103757 0.904301 16.031964 -0.518358 -24.055038 -4.255761 -19.322967 -0.889761 -9.378333 -0.956672 13.026661 -11.258530 -6.772854 -1.288204 -7.260623 2.513692 -8.567409 -11.844345 8.246323 -11.251675 6.414902 0.456014 21.049444 16.413965 15.297895 3.817509 -8.306750 8.116426 -19.335147 -8.351331 12.095049 8.827903 1.959100 5.169184 14.796733 -1.085239 5.035247 8.840482 0.789666 8.404759 15.701634 3.243476 16.942770 -8.937423 8.380423 0.262498 -10.287447 9.649584 24.964899 2.224349 -3.937685 3.995528 -0.876084 -8.845208 -9.871533 -2.245251 -2.753198 -10.762095 7.356371 14.899981 -2.874622 -11.806170 26.010304 8.324753 -26.582584 14.683258 -1.729899 1.644264 17.244818 -12.930178 5.191086 5.996831 5.695439 8.451165 6.143165 14.197888 -18.650344 -5.837740 -2.150679 14.474416 16.247947 -6.201241 -30.301720 15.129206 8.910946 20.729812 5.079886 20.148912 -14.457310 7.087098 -4.775143 -7.877499 -2.277173 -2.226522 12.430360 -4.406005 -0.509594 -23.539621 1.767903 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__geMaxCollection(int (*) [4]) = 0.393720 -0.045423 0.270943 -0.405992 -0.442024 0.337820 -0.521425 -0.277228 0.139334 -0.237921 0.208838 -0.229663 -0.189605 0.607586 -0.304008 -0.538130 -0.003153 -0.259372 0.066481 -0.008070 -0.013609 0.083310 -0.139521 0.072250 -0.092997 -0.084983 -0.009571 0.105904 0.546595 -0.190267 -0.711444 -0.030103 -0.180284 0.648133 0.228590 -0.174531 0.419110 1.003005 0.308431 0.360451 -0.395455 -0.334638 0.074459 0.064582 -0.145753 -0.257199 -0.406075 0.193997 -0.811729 0.302061 0.587651 -0.202414 -0.148469 0.142062 0.287124 0.389425 -1.065213 0.732546 -0.003669 0.505749 0.228070 -0.311707 0.016886 0.019535 0.137913 -0.237390 0.402118 0.555188 -0.520862 0.108932 -0.227263 -0.650371 1.012411 0.324888 -0.449761 -0.034483 0.449627 -0.540499 0.338763 -0.629001 -0.703969 0.085367 -0.016109 -0.099799 0.941779 -0.054141 0.086729 -0.819585 0.282823 -0.954614 0.195668 -0.722701 0.358298 0.685955 -0.837021 -0.028290 0.266498 0.380742 0.433087 0.165074 0.659278 0.293452 -0.188903 -0.076054 0.371718 -0.018115 0.018651 0.050770 -0.097352 -0.489902 -0.460628 -0.062599 -1.208775 0.018761 -0.246454 0.566065 -0.162334 0.292000 -0.185156 -0.046577 -0.741959 -0.547691 -0.172080 -0.096332 0.566475 0.592639 -0.302020 0.329877 -0.261877 0.813589 -0.158423 -0.056753 -0.329227 0.031309 -0.096124 -0.588490 -1.203964 0.143084 0.519877 -0.277389 -0.856439 -0.504156 -0.214120 -0.057189 -0.063503 0.983320 0.952397 -0.132287 -0.382732 0.712546 -0.074740 0.414405 1.180747 0.021195 0.700376 -0.377176 0.196426 -0.182848 -0.009837 -0.553264 -1.072344 0.043441 0.082902 0.098195 0.186656 0.085777 0.526550 -0.110051 -0.366915 -0.365902 -0.133812 -0.291989 -0.497835 0.899358 0.031163 0.340249 0.378467 0.926835 -0.324097 -0.744555 0.306025 -0.111326 0.264182 -0.136610 -0.180282 -0.091965 0.455516 -0.637016 -0.401007 0.123516 0.051189 -0.191420 0.103946 1.149181 0.060831 0.137406 0.310391 0.506526 0.920741 0.092347 0.331271 -0.668594 0.141436 0.436836 -0.468992 -0.401633 0.282460 -0.293153 0.052473 0.217358 -0.016758 0.010412 -0.509467 -0.610618 -0.315672 0.018920 0.695574 0.353030 -0.626663 0.164162 -0.215098 -0.046216 0.423946 0.266809 0.683364 0.441123 0.577625 -0.295727 0.220816 -0.001864 0.392823 -0.121958 0.326334 0.425893 0.092999 0.482286 0.152306 -0.055960 0.109210 0.540860 -0.004594 0.382340 0.461073 0.896733 -0.049005 0.058587 -0.331373 -0.358191 0.496446 1.207464 -0.787711 0.421836 0.247022 0.512915 0.195108 -0.898244 -0.080995 -0.296158 -0.210493 -0.007489 -0.194800 -0.053371 -0.165356 0.637671 0.077987 -0.623753 0.304811 0.075164 0.016383 0.292641 -0.072342 -0.222106 0.133139 -0.845946 0.554535 0.286010 0.350190 -0.135126 -0.110191 -0.109944 0.321751 -0.342563 0.274557 0.170145 0.418199 0.503472 0.596894 0.730204 -0.145456 -0.280086 -0.571972 0.074677 -0.496193 -0.202621 0.113299 0.445292 -0.462153 0.134181 -0.039004 -0.876507 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__computeTransFun(char*, int, int (*) [256]) = 2.562412 -0.098855 3.271845 -2.340238 -1.131774 1.423024 1.351399 -3.150937 0.551068 8.169690 2.205590 -1.920185 -1.495965 4.635450 -1.101953 -2.743752 2.294840 2.172196 0.436883 -1.240839 -0.660192 1.432290 -1.009374 -2.838675 2.154058 -1.885571 1.489961 3.294380 -1.612492 2.693644 -2.480427 -1.090981 -0.042600 7.107056 0.232393 1.017806 -0.618102 6.894286 -7.574542 7.790230 -6.535121 -7.071421 6.775004 0.972486 0.951376 -1.947693 -1.577984 2.456883 -1.199761 -5.141991 1.350500 -2.082349 2.485830 -3.663085 0.557300 5.014822 -7.542661 -1.002302 0.925468 -3.802910 -5.409305 -1.081292 2.946129 1.651882 -5.478626 -4.256416 1.743185 1.918411 -1.579399 1.128147 -4.086759 -8.249014 3.842105 1.205516 -2.837779 1.291533 0.764475 -5.411413 3.782706 0.030037 -3.926985 -2.517899 1.108370 -3.733900 2.782361 3.012797 6.788586 -9.554873 2.554261 -7.916173 5.897183 -3.984943 6.065911 5.987346 -3.598591 2.854050 3.168401 7.191040 1.568366 -0.581391 6.001140 3.298300 1.924179 -0.859932 4.375297 4.785421 -6.212665 -5.959278 -5.241036 -4.369749 1.901490 -3.240347 -6.981456 0.213517 -4.805120 0.834436 1.350793 -1.797726 -1.213285 7.445278 -10.880875 0.018750 2.325511 -1.149851 4.153835 4.304569 -0.060896 1.022963 0.388624 5.490648 -2.308174 -1.385486 -1.661758 3.507310 -4.686403 -1.470804 -2.046156 1.035645 2.448269 -5.921977 -6.548273 -9.773813 -1.636596 5.881557 -1.482645 5.582498 10.368219 -2.489013 -4.884895 3.258099 -1.347946 -1.129582 5.929830 1.739180 8.642785 -7.643525 3.448672 -2.795763 2.261757 2.661330 6.658565 -0.790716 -3.285659 4.200607 -0.317819 -2.777182 8.442338 -1.591334 0.039060 -3.183956 1.887384 -1.404288 -0.881130 7.009246 -7.007859 4.976792 -3.968387 8.687621 -5.695347 -3.829876 2.032269 -8.518845 -3.044926 -5.423701 -1.749570 -0.855470 6.155933 -5.697800 -3.526490 -3.130572 -2.571941 0.824529 4.980553 -3.947007 0.000000 -1.168152 -2.303422 6.573965 3.180877 0.265805 -0.681595 -5.334038 0.525827 3.663269 -2.170248 -6.828579 -0.684079 -5.050220 -0.680785 -0.914089 -0.222492 4.159705 -5.290809 -2.477617 0.506665 -1.511929 0.000000 -2.364860 -7.533638 2.102894 -0.839603 1.669484 2.959451 6.903888 6.268965 5.292178 1.505504 -0.958009 1.316303 -3.729034 -5.417269 3.690858 1.196303 3.220522 2.434798 4.780680 1.105912 1.713168 2.643239 0.598703 2.809743 5.983053 2.326216 6.675423 -0.849092 1.038992 1.604058 -2.711599 3.979974 6.614672 -1.901559 -0.708392 2.549878 0.162885 -3.716676 -1.845010 -0.215621 -2.097623 -2.557613 2.486421 3.161089 -1.028247 -3.436134 9.373287 1.274574 -10.631650 4.174120 -0.190112 2.079338 6.115932 -2.652565 2.839779 2.220279 0.247586 4.734889 2.337671 5.190158 -6.404883 0.537897 -0.351008 4.058833 5.994950 -0.622692 -10.936411 2.818590 1.277588 6.607503 2.285479 7.057513 -4.154537 2.585168 -1.794201 -4.100842 -0.542163 -1.378551 3.986566 -0.395987 0.783237 -10.289522 0.226513 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 1.295237 1.320993 1.421923 -2.401447 -2.064762 0.853914 -0.009633 -2.162784 0.107065 3.993799 1.926084 -2.141270 -1.804545 3.364987 -1.347023 -2.346927 0.742971 0.033431 -0.186529 -1.549085 -0.127354 1.145022 -0.506210 -1.448295 0.709135 -0.915604 0.298412 1.307105 1.434019 0.079982 -2.066831 -0.398129 0.752870 4.342072 0.389022 -0.209908 -0.420336 4.371577 -2.614329 3.148339 -4.955105 -3.996435 3.758606 0.802546 0.209496 -3.526868 -1.373077 1.768071 -1.145182 -1.757783 0.825916 -1.304159 0.754753 -1.867099 0.066958 3.541246 -5.083376 2.028613 0.731024 -1.559571 -2.148129 -0.574129 2.196056 1.176992 -1.626569 -2.456407 0.901559 1.453567 -2.004383 0.547020 -2.342496 -4.850909 3.012285 0.894288 -2.153817 0.518557 -0.340131 -3.414839 2.191767 -1.888125 -2.489492 -0.825406 1.538055 -0.374954 1.584227 1.626694 2.954736 -6.068109 0.174681 -5.216686 3.036054 -2.412603 3.730096 3.290859 -2.585249 1.041799 1.339496 1.478638 2.366994 0.373279 3.910821 1.385852 2.124314 -0.631696 2.095945 2.938537 -2.455459 -2.454844 -1.888238 -3.413638 0.286865 -0.378513 -5.019213 0.418690 -3.302423 -0.051694 0.637408 -1.193356 -0.488439 3.303302 -5.418273 -2.865706 0.996375 -0.687208 3.216475 3.595309 0.024452 1.326124 -0.224574 3.619133 -0.743410 -0.160500 -0.977230 1.869293 -1.799156 -3.772280 -3.240052 0.973252 1.736042 -3.489595 -4.125614 -5.404651 -0.927611 1.256927 -1.253158 2.814351 6.450373 -1.635930 -3.764256 2.844023 -0.196165 -0.191515 4.735331 0.376227 6.666438 -4.742615 2.388999 -0.747013 0.988954 1.002508 3.265244 -0.768033 -1.866750 1.375102 -0.149381 -2.597625 2.099641 -0.843084 -0.487520 -1.444881 0.804746 -1.174012 -1.591994 3.714801 -2.338845 3.448933 -1.685879 5.374277 -3.887517 -3.817181 1.916663 -3.525012 -1.464441 -1.591043 -0.948718 -0.092503 3.967647 -3.267556 -1.864791 -1.167317 -1.115141 -0.543647 2.614959 -1.378283 0.149843 -0.328969 -0.865589 3.100964 2.738708 -0.271341 0.632397 -3.527615 0.374357 3.037343 -0.213418 -5.095292 -0.264360 -3.740713 -0.389816 0.534782 -0.739753 2.290749 -1.786410 -1.857160 0.255136 -1.550911 1.538933 -1.113541 -3.113768 1.724145 -1.943219 0.900643 0.793413 4.577111 3.540112 3.391328 1.190719 -0.842476 1.204134 -2.579603 -1.003688 1.340535 1.095294 1.117161 1.896201 2.908083 0.855185 1.188208 2.833454 0.435789 0.188320 3.723521 0.714032 4.774545 -1.677504 0.904798 0.109202 -2.199494 2.637870 6.170019 -1.035735 -1.467624 1.655423 0.371818 -1.262781 -2.921935 -0.425179 -1.293337 -2.023933 2.222121 2.055132 -0.504885 -2.018917 5.765175 0.702992 -6.063092 3.812086 -0.189270 0.998056 2.553726 -1.873139 0.483609 1.961133 -1.204013 1.741908 2.227807 3.434012 -3.581095 -1.282932 -0.607334 3.317908 1.992910 -0.203731 -6.235168 1.866869 2.309395 4.390834 1.949974 3.643749 -2.736668 -0.288790 -0.391723 -1.425158 -0.803961 -0.728483 2.459577 -1.482863 0.114464 -4.125073 -0.179687 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp___GLOBAL__sub_I_efficient_constructtion_of_finite_automata.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/find-two-non-repeating-element.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-two-non-repeating-element.cpp__get2NonRepeatingNos(int*, int, int*, int*) = 1.673216 0.763374 3.213098 -3.381281 -1.233215 0.678074 2.285527 -2.834679 0.653121 6.923508 1.502323 -2.275615 -1.045023 4.185849 -0.605350 -1.790997 2.269706 0.194229 0.263336 -1.343213 0.227714 1.761978 -0.723496 -2.524854 1.458321 -1.539477 1.153755 2.601411 -1.349613 1.146589 -2.005532 -1.106253 0.659106 5.848655 -0.064403 0.838120 -1.261457 5.708371 -5.971062 6.328903 -7.229292 -5.929696 5.525208 0.840748 0.462821 -5.145441 -2.144873 1.905260 0.250142 -3.952499 0.791695 -1.431251 1.792225 -3.199997 0.441836 4.664521 -5.766390 -0.327277 0.867663 -3.345666 -3.859892 -0.555541 2.287640 2.269682 -4.410959 -3.669443 1.763442 0.854105 -1.766207 1.481525 -3.051783 -6.007923 3.755306 0.838501 -2.292888 1.189100 0.338025 -5.699286 3.233331 -1.344504 -2.918387 -1.925586 1.192746 -2.773336 1.797923 1.605994 5.311645 -8.106525 1.053185 -5.842236 4.787046 -3.195193 4.815972 4.486197 -1.597268 2.381827 1.918232 4.278740 2.038529 0.350827 5.068460 3.442554 3.338838 -0.862560 4.387804 4.371839 -5.294287 -5.176749 -4.179404 -3.862086 1.453763 -2.005706 -7.380430 0.399504 -3.704173 -1.146528 1.114429 -2.359467 -0.441270 6.231904 -8.276856 -0.509344 2.606920 -1.161416 2.227413 4.244934 0.148190 0.894647 0.000135 4.485437 -1.508162 0.291755 -1.036793 2.832608 -4.159287 -3.092481 -1.512918 0.701305 1.269976 -4.846296 -5.193711 -7.673606 -1.705889 4.120476 -1.213121 3.239488 8.684597 -1.777083 -5.867906 2.891623 1.437778 -1.309220 4.062428 1.194730 7.949755 -6.439560 2.941913 -2.801054 1.988993 2.559254 7.882577 -0.709039 -2.978504 3.154453 -0.976289 -5.785145 6.108091 -1.384719 0.255671 -1.033972 1.126402 -1.412904 -1.490890 5.398354 -4.603001 5.626605 -3.894464 7.305763 -4.495863 -3.723606 0.921360 -5.831386 -2.510500 -3.883330 -1.543311 -0.235064 5.238587 -4.125600 -2.832981 -2.478960 -3.085038 0.535524 3.970922 -5.677925 -0.024821 -1.098002 -1.801448 5.301227 2.741355 -0.045886 -0.333040 -4.545876 0.885361 3.187661 -0.767168 -6.743559 -0.511986 -4.519902 -0.642835 -1.205966 -0.605618 3.885471 -3.978636 -2.173572 0.834734 -2.051029 -0.602318 -2.473371 -5.500891 1.802898 -1.126793 2.256380 1.656673 5.958642 4.902089 4.329027 1.068336 -1.164136 0.973373 -3.580663 -4.755762 2.798066 1.174983 0.669455 2.079344 4.849096 1.202905 1.428352 4.075624 0.679206 1.639858 5.017862 0.605283 5.434487 -0.909395 0.354106 1.260387 -2.357788 3.283433 6.415892 -0.125830 -2.115044 2.551180 0.066437 -3.113687 -2.290747 -0.076165 -1.649347 -2.263160 2.870635 3.353845 -1.350549 -2.526331 7.915614 1.466063 -8.998557 3.531180 -0.247990 1.589145 4.850014 -2.127092 1.939993 2.556831 -0.540157 3.382374 1.987254 4.153208 -5.343130 -1.636597 -0.243830 3.365653 4.549140 0.003017 -10.622030 2.152697 1.495165 6.177871 1.475612 6.755520 -3.588026 2.189746 -0.544967 -2.125946 -1.024515 -0.772912 3.496605 -1.725265 -0.487048 -8.462965 1.108051 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.903027 0.845103 0.967609 -0.960721 -2.170010 0.757786 -1.673374 -1.200549 0.110572 0.748573 0.726784 -0.817388 -0.283516 1.602265 -1.466580 -1.146314 -0.909060 -0.732734 0.018847 -1.199111 0.120584 0.541562 -0.342326 0.361043 -0.519014 -0.555709 0.002900 0.052789 1.134949 -0.318768 -1.024563 -0.226018 -0.022060 1.455190 0.641396 -0.731324 0.614474 2.193174 0.318051 -0.161032 -1.800885 -1.687518 0.238318 0.306400 0.265204 -1.232313 -1.030319 0.588029 -1.335706 1.127983 1.052600 -0.357860 -0.205212 0.475827 0.554035 0.312671 -2.550396 2.303324 -0.049565 -0.034957 0.090390 -0.291698 0.320654 0.677093 0.570491 -0.648492 0.765346 2.071793 -0.795865 0.296771 0.008263 -1.614930 1.905868 0.195352 -1.014778 -0.183982 0.916119 -1.045469 1.137927 -2.034630 -1.791728 0.193548 0.358494 -0.264210 1.310645 0.402978 0.573955 -2.089394 0.744846 -2.314707 0.682544 -1.008098 0.687953 1.075605 -1.785198 -0.147820 0.930053 0.543643 2.180443 0.359912 1.496167 0.674627 0.429781 0.497766 0.419141 0.617277 0.075313 0.354821 -0.645632 -1.830437 -0.746614 0.007694 -2.702994 0.206531 -0.118053 0.598353 -0.532609 -0.158609 0.042988 0.960062 -2.242646 -1.821296 -0.033061 -0.096213 0.924260 1.039130 -0.627832 1.144293 -0.437420 1.784396 -0.869485 -0.072268 -0.077858 0.228904 -0.472517 -2.124307 -3.592772 1.028208 1.043917 -0.876542 -1.518338 -1.278507 -0.345732 -0.111793 -0.350243 2.010461 2.599541 -0.831428 -1.744090 1.725077 0.205909 -0.336801 2.891757 0.084480 2.114294 -0.744270 -0.064248 -0.737096 -0.600767 -0.710494 -1.347568 0.346980 0.257712 0.523395 0.799583 -0.259856 0.338483 -0.641915 -1.291438 -1.002176 0.364846 -0.589875 -0.364094 1.245074 0.382041 0.925637 0.558359 2.102108 -1.120896 -2.107549 0.440497 -1.257372 0.273624 0.525913 -0.045260 -0.043235 1.448524 -1.318159 -0.592719 0.049632 -0.701735 -0.791721 0.178829 1.722434 0.682172 0.760846 0.646588 1.335310 2.557907 0.642001 0.591658 -1.406559 0.369795 1.298546 -0.263693 -1.938262 0.051381 -1.157204 0.220090 0.375944 -0.268564 0.575295 -0.596346 -0.794294 -1.006488 -0.626760 1.621077 0.788523 -0.467466 0.707518 -1.362601 0.971971 0.210365 0.769814 1.675573 1.674923 1.785977 -0.169795 0.567739 -0.759121 2.146926 0.097610 1.579487 0.066523 0.537391 1.830697 0.502060 0.363662 0.978965 1.299778 -0.156826 1.260456 -0.363008 2.608779 -1.782940 0.863849 -1.485723 0.025098 1.165996 3.493653 -1.044675 0.341679 0.375293 0.763045 0.453520 -1.976018 0.087700 -0.608499 0.007283 0.024981 0.947005 -0.180355 -0.516994 1.365985 0.468901 -1.384111 1.467174 0.097084 0.006529 0.427443 -0.416594 -0.941007 0.381544 -1.672797 0.862998 1.461788 0.901190 -1.128548 -0.985539 -0.212932 1.573090 -0.644713 1.106793 -0.996745 1.260321 1.775638 1.159250 0.645738 0.402106 -1.555935 -2.084505 0.914643 -0.783735 -0.752892 1.009732 0.879387 -1.592526 0.998020 0.569746 -2.100068 +PE-benchmarks/find-two-non-repeating-element.cpp___GLOBAL__sub_I_find_two_non_repeating_element.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/permutations-of-a-given-string.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/permutations-of-a-given-string.cpp__permute(std::__cxx11::basic_string, std::allocator >, int, int) = 1.649424 1.263801 1.752813 -1.363065 -1.416135 0.203828 -0.920943 -1.356743 0.542646 4.526992 1.157427 -1.758426 -2.395886 2.581957 -1.688170 -2.128015 0.267350 -0.066489 0.740319 -1.766853 0.309295 0.852275 0.085111 -1.037313 0.972320 -0.827413 -0.394860 0.870767 1.785370 -0.214059 -1.335501 0.103978 0.929493 3.098448 -0.883911 -0.630354 -0.072030 3.322101 -2.011691 1.570732 -4.552526 -4.082361 3.212580 0.688966 0.657752 -2.525273 -0.224644 1.272263 -2.215246 -0.764548 0.122631 -0.522684 0.118288 -1.992037 -0.134093 2.762991 -6.070800 2.804946 0.095492 -1.215097 -1.485818 0.201567 1.640949 0.501123 0.381041 -1.893470 0.448246 1.344390 -2.685490 1.005044 -1.274123 -2.651511 2.286165 0.347481 -1.479536 1.213900 0.594291 -1.871529 2.068579 -3.615167 -1.592855 -0.960894 1.620937 0.140374 1.132828 2.091683 1.871804 -4.307118 0.593011 -3.439761 3.234378 -2.221422 2.849537 2.501600 -2.371985 1.336185 1.621387 0.351516 2.526973 0.281873 3.741207 1.477838 2.104244 -0.165223 0.441055 2.243755 -2.065291 -1.204884 -1.575669 -2.607535 -0.542073 -0.054806 -3.789342 -0.242189 -2.506522 1.104967 2.000500 -1.760508 0.038759 2.573677 -5.700389 -2.722772 0.799585 -0.327723 2.210667 2.500914 0.239510 0.321837 0.055094 3.403359 -0.948377 -0.990545 0.356884 1.180444 -1.073943 -4.011544 -2.845592 0.198534 0.392107 -3.049248 -2.840932 -4.264380 -0.277111 0.800635 -0.337409 2.759366 5.355113 -0.552575 -2.925699 2.238916 -1.389880 -0.263483 4.893286 0.551279 5.251940 -3.535336 1.375698 -0.747544 0.916638 1.538703 2.165330 -0.280717 -1.098056 0.826809 1.357022 -0.513940 -0.734158 -0.886300 0.175286 -1.967084 0.633240 -1.274251 -0.484389 2.133486 -1.778146 3.185111 -1.550898 4.535447 -2.832872 -3.906193 1.746956 -3.893379 -1.060546 -0.187331 -0.990630 -0.032039 2.449110 -3.421820 -1.386558 -1.559293 -0.932128 -0.108507 2.407486 -0.988582 0.763428 -0.161895 -1.123041 3.508635 1.546683 -0.618132 0.950212 -3.395452 -0.204437 2.006032 -0.401001 -5.326407 0.549340 -2.994048 0.338645 1.860461 -0.935684 2.039270 -1.010537 -1.791284 0.051885 -1.513967 1.039021 -1.911820 -0.846611 0.901408 -1.923615 0.933173 0.906088 3.490578 2.904502 2.173446 0.198924 0.000603 0.975201 -2.506196 1.092323 1.297511 0.768650 0.636026 1.182407 2.194128 0.257989 0.962556 2.101184 0.885485 -1.028685 3.269847 -0.025052 3.372652 -3.045293 0.955500 -0.133034 -1.665584 2.068069 4.393166 -2.179400 -1.216964 1.362217 0.519753 0.072791 -1.924597 -0.654252 -1.112792 -1.712619 1.942939 2.091349 -0.437283 -1.160864 3.711545 1.331865 -4.601827 3.981439 -0.348364 0.093384 1.004567 -1.343209 -0.897762 1.840961 -1.363748 0.107160 1.311438 2.886159 -3.360351 -0.718115 -0.343582 3.682222 1.059110 0.336575 -5.415582 0.518342 2.318519 2.642867 1.589049 3.003649 -2.148189 -1.987784 -0.643786 -1.187474 -1.364260 -0.562671 1.131798 -1.479113 0.632931 -1.816865 -0.202577 +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.297395 0.586785 0.674730 -0.983190 -1.531578 0.130725 -0.156688 -0.709235 0.050174 0.574519 0.799886 -0.951353 -0.352901 1.687886 -0.692750 -0.741947 -0.344686 -0.466645 -0.282770 -0.354216 0.207323 0.688764 -0.168515 0.023131 -0.068768 -0.115059 -0.129428 0.516937 0.641246 -0.338421 -0.647775 -0.180087 0.298592 1.167936 0.173476 -0.295743 0.108880 1.692525 -0.978103 0.946667 -1.595641 -1.016884 0.847897 0.158308 -0.026605 -1.870558 -1.340045 0.660727 -0.473602 -0.173926 0.688326 -0.004522 0.002480 -0.176968 0.449629 0.861781 -1.873405 1.182597 0.350883 -0.294888 -0.030380 -0.076282 0.064685 0.416712 -0.372378 -0.713139 0.195401 0.654144 -0.411838 0.104740 -0.131688 -1.407020 1.705109 0.091820 -0.763951 0.179998 0.423420 -1.282208 1.098615 -1.255293 -1.108503 0.018438 0.269829 -0.017879 0.823940 0.117358 0.590671 -1.788093 0.011004 -1.719050 0.770336 -1.153206 0.485596 1.026995 -1.135370 0.204693 0.455857 0.178965 1.514132 0.572639 1.095203 0.766101 0.874920 0.195579 0.641769 0.883640 -0.442754 -0.456951 -0.883680 -1.505624 -0.019120 -0.145797 -2.336456 0.275665 -0.032483 -0.000854 -0.050162 -0.397823 0.299675 1.294924 -1.194839 -0.318964 0.513410 -0.128611 0.293891 1.401235 -0.365188 0.393925 -0.607784 1.187909 -0.411677 0.586945 0.058959 0.429838 -0.819561 -1.914261 -1.582485 0.526912 0.361663 -0.788212 -1.048591 -1.576535 0.017650 0.185613 -0.511572 0.663405 2.126127 -0.752980 -1.471712 1.297382 1.178375 -0.355912 1.298539 0.006924 2.071401 -0.787063 -0.026678 -0.582078 -0.518987 -0.114077 0.716389 0.241701 -0.437212 0.436341 0.028265 -2.394061 1.352655 -0.295227 -0.658496 -0.012309 0.296076 -0.576781 -0.612253 1.325156 0.127148 1.141684 -0.337608 1.614339 -0.782682 -1.306981 0.518962 -0.754883 0.023370 -0.485326 -0.269399 0.456907 1.114228 -0.884616 -0.397490 -0.334146 -0.675263 -0.634974 0.448724 -0.373125 0.300645 0.297981 0.343378 0.655986 1.505616 0.155379 0.462011 -1.215547 0.431214 0.827609 -0.044985 -2.124191 0.049795 -1.003998 0.004642 -0.023659 -0.305218 0.525489 -0.464654 -0.585883 -0.152427 -0.834526 0.545579 0.088587 -0.762797 0.376990 -0.876435 1.047944 0.159145 0.956661 1.454005 1.279563 0.991161 0.172394 0.221020 -0.520867 0.289904 0.354527 0.631891 -0.230964 0.633657 1.418996 0.482398 0.288282 1.108809 0.681085 0.009463 1.165899 0.141119 1.834571 -0.482531 0.124422 -0.426849 -0.079249 1.002890 2.467336 -0.092230 -0.139886 0.441825 0.409218 -0.273744 -1.081010 -0.060193 -0.383075 -0.600998 1.053337 0.536279 -0.226110 -0.234820 1.337212 0.117685 -1.549766 0.874314 0.020867 0.360672 0.457334 -0.258703 -0.050947 0.588992 -0.777467 0.704768 0.954645 0.892542 -1.044280 -1.243085 -0.093566 0.847759 0.707434 0.783554 -2.087194 0.668175 1.073474 1.245061 -0.017382 1.051898 -1.130382 -0.796984 0.540563 -0.180479 -0.473738 0.096853 0.475660 -1.100593 0.249943 -0.629926 -0.963087 +PE-benchmarks/permutations-of-a-given-string.cpp__main = 0.291717 0.094809 1.572279 -1.752265 -1.391114 -0.192734 -1.316417 0.783393 0.948012 0.952048 0.967053 -2.073369 -2.983224 2.333834 -0.655793 -2.424633 0.985892 -0.374077 1.328168 -0.978785 0.811886 0.464877 1.091348 -0.291196 0.762164 -0.349484 -2.103826 1.140533 4.597659 -1.375511 -0.793344 0.903481 0.646365 1.720981 -1.802980 -1.353595 0.663909 3.005488 0.063056 0.923966 -2.230634 -1.284853 2.469518 0.468328 -0.494741 -2.352818 -1.255839 1.139007 -3.418294 -0.405878 0.623474 0.685262 0.092611 -1.587979 -0.610394 2.682020 -5.543354 2.615770 -0.198836 0.438973 0.836727 1.251066 -0.094253 0.415220 1.581113 -0.966449 0.012254 -0.146494 -2.909037 -0.121261 0.169637 -0.270344 3.185520 0.373264 -0.739079 1.841367 2.196409 -1.043044 1.783578 -3.442987 -1.420878 -0.165172 0.310935 -0.105492 2.443549 -0.106456 0.565649 -2.427095 0.064022 -2.038938 2.652366 -2.896222 1.068485 2.324083 -2.363681 1.207936 0.982568 -1.755749 2.200134 0.887807 3.598661 1.221584 1.658674 0.426908 0.477325 0.767629 -0.630641 0.183867 -1.126013 -1.968797 -1.444545 -0.064912 -3.270361 0.171111 -1.049130 1.082756 2.806449 -1.016908 -0.070758 0.742940 -1.219885 -1.127998 0.460602 -0.254428 0.216018 2.834852 -0.316832 -0.894910 -0.119753 3.504981 -0.725431 0.085154 1.718446 0.542045 0.826753 -3.774326 -1.631935 -0.074390 -0.569266 -1.605111 -1.732082 -2.377183 0.685492 -1.071393 -0.078350 1.897840 4.277090 0.643578 -1.494735 2.284848 -0.064938 1.281370 3.549064 0.039688 4.014216 -1.623595 -0.444811 -1.011508 -0.073555 0.819062 0.908974 0.695048 0.302185 0.104313 1.330166 -1.091007 -0.985981 -0.785302 0.398044 -0.227628 -0.134767 -1.791505 -2.185684 1.675338 1.290730 2.404828 0.538268 3.621949 0.308617 -4.236853 2.182191 0.291217 -0.013332 0.383546 -0.970471 0.804822 -0.192654 -1.916121 -1.104429 -1.936777 0.346783 -0.628744 0.691465 0.959675 1.490529 0.671860 -0.226611 1.288376 0.797592 -0.463555 1.426812 -3.824104 -0.541186 0.933798 -0.996984 -3.377402 1.475818 -1.519530 1.080803 2.642821 -0.984420 1.200150 -0.664461 -2.381207 -0.230533 -0.841632 0.940409 -1.373479 -1.689117 0.048385 -0.259717 0.714954 1.348831 2.204035 2.862209 0.910008 -0.354106 1.326098 0.430356 0.037283 1.291451 -0.646268 -0.577805 0.557832 0.523000 0.910554 0.141327 0.646363 2.226352 1.467017 -1.897993 2.005866 0.109520 1.986108 -0.525429 -0.703676 0.132745 -1.588590 1.829758 3.701730 -1.195246 -0.544611 1.582932 1.485429 0.976000 -3.314782 -0.255847 -0.860625 -0.721483 2.456271 0.074965 0.031383 -0.108285 0.760921 1.206470 -3.295550 3.192613 -0.330530 -0.151789 0.216722 -0.002661 -1.246251 1.166256 -2.938905 -0.398207 0.792410 1.413558 -2.053368 -0.301394 0.139383 2.644267 -0.758968 1.482728 -3.352278 -0.659581 1.353704 0.737388 1.813658 1.498164 -1.061466 -3.675699 0.057789 -0.933982 -2.059864 -1.174974 -0.653200 -2.347187 0.259958 0.488367 -0.752102 +PE-benchmarks/permutations-of-a-given-string.cpp__std::remove_reference::type&& std::move(char&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/permutations-of-a-given-string.cpp___GLOBAL__sub_I_permutations_of_a_given_string.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__findMedian(int*, int) = 0.700066 0.154350 0.452950 -0.322819 -0.592087 0.251948 -0.106726 -0.715507 0.074325 0.985371 0.582132 -0.638060 0.239193 1.150336 -0.380583 -0.406306 0.150028 0.253950 0.012921 -0.083123 -0.081146 0.365151 -0.254986 -0.244980 0.136427 -0.128936 0.164955 0.288257 -0.205755 0.083995 -0.616535 -0.212650 0.103316 1.051207 0.180587 0.072020 0.011523 1.216699 -0.952796 1.182172 -1.080937 -0.963880 0.839499 0.184535 0.258496 -0.471908 -0.557601 0.511133 0.072372 -0.631865 0.416114 -0.276122 0.100089 -0.331241 0.193480 0.702477 -1.166849 0.205517 0.283549 -0.395534 -0.619147 -0.216345 0.287937 0.285635 -0.860898 -0.713997 0.339647 0.690525 -0.212178 0.234783 -0.638418 -1.408194 1.021239 0.040391 -0.548749 0.022113 0.104397 -0.823045 0.711361 -0.405931 -0.833117 -0.184058 0.186932 -0.137517 0.359550 0.473091 1.067931 -1.592092 0.564254 -1.510350 0.880679 -0.760378 0.851870 1.018144 -0.894407 0.206120 0.506096 1.165784 0.820523 0.478251 1.041187 0.631771 0.068525 -0.195895 0.663552 0.849071 -0.612916 -0.716960 -0.689224 -1.040784 0.255829 0.016606 -1.522704 0.171105 -0.608569 0.365525 -0.149541 -0.104849 0.222616 1.063099 -1.625862 -0.327244 0.379622 -0.122253 0.670721 0.845562 -0.148308 0.388507 -0.372959 0.913507 -0.289555 -0.088693 -0.141726 0.486507 -1.059199 -1.046131 -0.882612 0.293303 0.509071 -1.022922 -1.041585 -1.744969 0.012410 0.896625 -0.456634 0.870573 1.696654 -0.604515 -0.748905 0.733997 0.421752 -0.563670 1.202393 0.042735 1.776395 -1.136855 0.464259 -0.142983 0.151307 0.106536 0.252044 -0.041980 -0.539284 0.515674 -0.061078 -1.257904 1.848317 -0.123849 -0.256009 -0.191872 0.246117 -0.003730 -0.246145 1.175910 -0.558509 0.729366 -0.507118 1.553928 -0.754147 -0.639778 0.452258 -1.011718 -0.332062 -0.616742 -0.155630 -0.008903 1.275432 -0.864622 -0.445798 -0.194942 -0.692908 -0.106838 0.621364 -0.091228 0.105853 0.043513 -0.222870 0.768353 0.883230 0.156498 0.142551 -0.954803 0.104060 0.687142 -0.332064 -1.178841 -0.131889 -1.063058 -0.070624 -0.472207 -0.164215 0.583231 -0.854934 -0.476399 -0.128478 -0.287749 0.324749 -0.087850 -0.508952 0.337088 -0.452535 0.606798 0.260884 1.069837 0.923022 1.120455 0.625719 -0.237786 0.203095 -0.487607 -0.471303 0.638737 0.368853 0.379966 0.402925 0.741879 0.247223 0.340761 0.508533 -0.051134 0.406833 1.023179 0.357039 1.365726 -0.493597 0.426213 -0.044243 -0.344074 0.886970 1.535934 -0.511613 -0.217101 0.215388 -0.026861 -0.631237 -0.278414 -0.109918 -0.187456 -0.826843 0.114865 0.369263 0.055281 -0.543682 1.430848 0.148066 -1.603227 0.720666 -0.107096 0.211324 1.009994 -0.354199 0.294473 0.333359 -0.074269 0.654813 0.616650 1.018947 -0.817084 -0.353859 -0.117822 0.796663 0.754748 0.182904 -1.491456 1.009131 0.822095 1.008757 0.174041 0.715386 -0.905453 0.102696 -0.084975 -0.523804 -0.153088 0.006275 0.666890 -0.211419 0.092710 -1.220268 -0.283699 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::sort(int*, int*) = 0.291576 0.299768 -0.039827 -0.630425 -0.848664 -0.003647 -0.076436 -0.232975 -0.110345 0.071849 0.381091 -0.645092 -0.363076 1.056223 -0.172736 -0.548273 -0.139874 -0.690130 -0.220266 0.286822 -0.051199 0.527442 -0.127838 0.134344 0.088273 0.342329 -0.453844 0.097675 0.753114 -0.693306 -0.649470 -0.028605 0.081241 0.638193 0.050198 -0.437777 0.279613 1.210607 -0.289031 0.459622 -0.631752 -0.264921 0.361423 -0.014216 -0.192731 -0.874160 -0.586101 0.566761 -0.354575 -0.136826 0.568671 0.119385 -0.401538 -0.063189 0.342252 0.650984 -1.288636 1.114753 0.409153 0.561707 0.263353 -0.183835 -0.036214 -0.067488 -0.013858 -0.464650 0.034689 0.026885 -0.479059 -0.138724 -0.246890 -0.646358 1.038849 0.280743 -0.504852 0.161621 0.069980 -0.698017 0.589944 -1.160529 -0.720348 0.206550 0.116698 0.184630 0.807596 -0.058410 -0.062717 -1.020830 0.114832 -1.027193 0.144674 -0.874618 0.223751 0.952404 -0.702199 0.009058 0.049978 -0.145678 0.913515 0.419281 0.763458 0.240876 0.261186 0.104922 0.108474 0.403998 -0.188467 0.003949 -0.224693 -0.812542 -0.170448 0.286308 -1.231873 0.327923 -0.028496 0.311438 0.188354 0.049039 0.036959 0.130908 -0.532514 -0.653721 0.036399 -0.100014 0.456099 1.100119 -0.305537 0.110004 -0.713705 0.755556 0.064561 0.540103 -0.081278 0.211214 -0.322422 -1.142759 -0.962187 0.119238 0.261242 -0.431758 -0.675246 -0.947481 0.206796 -0.490247 -0.459451 0.657732 1.225795 -0.470636 -0.554202 1.123476 0.423745 0.336322 0.800391 -0.261507 1.171093 -0.315649 -0.057662 0.129158 -0.337413 -0.471575 -0.366590 0.195568 -0.274332 -0.180642 -0.037440 -1.019392 0.370131 0.279383 -0.478969 -0.011484 -0.010134 -0.364100 -0.743092 0.927930 0.174539 0.525891 0.242932 0.923878 -0.115413 -0.630310 0.667054 0.137786 0.216956 -0.429179 -0.492266 0.299954 0.352867 -0.527261 -0.119360 0.052671 0.018967 -0.763005 0.124215 0.386489 0.135941 0.208032 0.478720 0.275319 0.944534 -0.134217 0.495299 -0.908950 0.309313 0.362473 -0.369416 -0.963699 0.217825 -0.486987 -0.041601 0.560121 -0.325797 0.029507 -0.242424 -0.605457 0.099553 -0.174503 0.636207 0.225834 -0.266948 0.143805 -0.507871 0.369857 0.346774 0.541060 0.577107 0.663597 0.587304 0.064598 0.088803 0.153966 0.193869 -0.109630 -0.048052 0.159404 0.491809 0.428630 0.448849 0.114119 0.512247 0.308319 -0.376243 0.716568 0.355090 1.169848 -0.005809 -0.220838 -0.155526 -0.276211 0.629078 1.377281 -0.746035 -0.051813 0.343811 0.229445 -0.087842 -0.527280 -0.038356 -0.345885 -0.553884 0.303015 -0.285133 -0.042089 0.019171 0.729404 -0.299755 -0.857738 0.490563 0.043047 0.349792 0.115771 0.170283 0.020406 0.349940 -0.927290 0.391685 0.655229 0.550295 -0.215945 -0.527923 -0.071961 0.450751 -0.091194 0.572733 -0.617996 0.316005 0.703222 0.660395 0.318794 0.054781 -0.364510 -0.686447 0.345637 0.026090 -0.209674 -0.189630 0.368543 -0.548419 0.007871 -0.114668 -0.630221 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__kthSmallest(int*, int, int, int) = 4.920769 1.999680 4.571354 -5.136797 -0.827422 1.914623 3.062427 -5.990314 1.314539 13.034489 3.814384 -3.619292 -3.614647 5.592117 -3.303791 -4.454537 5.510287 2.993961 0.795364 -4.078916 -0.856762 1.277974 -1.006106 -5.028238 2.684500 -3.625376 3.275909 4.265961 -0.628299 1.849300 -4.617991 -0.920453 1.119802 11.007732 0.483553 1.238998 -3.020596 8.128394 -6.934101 9.999332 -13.530742 -8.182426 9.548606 2.271496 2.248722 -9.527912 -1.686875 3.030900 0.521919 -6.396255 -0.167825 -5.119643 3.858285 -6.376464 -1.167185 10.171449 -9.341525 -0.743801 1.466955 -6.420324 -7.721575 -0.616178 7.677138 3.272154 -7.105108 -7.194012 3.449841 3.168295 -4.821289 4.151290 -8.428875 -12.937589 3.597629 2.062752 -5.208880 0.967406 -1.992126 -9.086886 3.980879 -1.556889 -3.678413 -4.074302 4.339524 -1.773293 1.270699 3.895911 9.999767 -14.720384 1.074267 -11.604919 8.287405 -5.620842 11.430315 7.157515 -2.841462 3.662611 2.895548 5.406961 2.267786 0.332190 9.024490 4.689028 4.841738 -4.519792 6.780363 6.693535 -6.789054 -9.124257 -4.013215 -5.780773 1.197906 -1.515759 -11.052174 0.320946 -11.429816 0.352198 1.476725 -2.939199 -0.902218 11.040675 -14.542166 -5.456426 3.304678 -1.918366 7.716035 8.084393 1.869751 2.728698 1.009958 7.822050 -1.024302 -2.145234 -3.225725 5.088360 -6.236015 -7.023238 -3.728808 0.177182 4.232315 -9.175018 -10.694928 -13.024500 -4.326505 6.202875 -2.189806 7.093342 14.038249 -2.642622 -8.615569 3.162550 -2.370339 -2.785283 10.234473 1.993562 16.304159 -14.968542 9.104751 -2.751073 6.937668 5.241919 12.462679 -4.286663 -5.996438 5.237795 -1.888122 -6.612807 8.217200 -2.227966 2.204060 -0.574884 1.166455 -0.045559 -2.528969 8.629634 -10.233671 10.549650 -7.528521 13.484618 -11.024209 -7.761567 3.081980 -9.999689 -4.336969 -3.886453 -0.294611 -1.429270 11.394860 -7.634849 -5.890625 -3.388379 -4.880038 3.135721 9.410299 -6.348037 -1.003237 -3.241782 -6.102855 10.728041 3.474761 -1.387107 0.698373 -7.148853 1.189147 6.811301 0.399670 -10.999021 -1.686129 -9.211328 -1.625730 -2.787142 -0.601593 7.321129 -5.922210 -4.101253 1.266164 -2.819606 0.760169 -5.410140 -9.133725 4.268934 -3.892223 0.390989 0.629974 12.405857 8.078453 7.026436 -0.192208 -5.420627 2.944216 -8.711371 -7.453046 5.443611 2.590723 2.522210 2.981100 6.032096 -0.249487 2.561083 5.761425 -1.571822 3.436640 8.558228 1.952413 8.326960 -5.202773 3.101443 2.559058 -7.651075 5.801846 11.634350 -0.771678 -4.622882 3.520798 0.564191 -5.428771 -6.299227 -2.202465 -2.052677 -6.057931 5.283827 6.387733 -1.830421 -6.411709 15.658335 3.776496 -16.123572 8.661409 -1.111639 0.789081 8.699419 -5.825220 3.207818 4.511793 1.692350 2.754540 2.352207 8.738801 -9.197370 -2.327396 -1.037486 6.975570 6.546021 -4.240916 -18.336464 3.285880 4.315258 12.796186 5.044453 12.437648 -5.850945 5.086500 -2.957056 -3.702692 -1.237984 -2.632654 6.341373 -2.405208 -1.310091 -14.173885 4.563160 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__partition(int*, int, int, int) = 2.384954 0.802575 2.663257 -2.318950 -1.333465 0.932089 1.104257 -2.769338 0.537299 7.966133 1.721583 -1.908669 -1.342004 4.258808 -1.645868 -2.255715 1.510331 0.892053 0.136318 -1.560473 -0.336177 1.629109 -0.646502 -2.347105 1.782042 -1.575215 1.154448 2.180163 -1.349844 1.396447 -1.870528 -0.824329 0.454080 5.817195 -0.128286 0.712518 -0.993349 5.307960 -5.787275 6.022938 -6.732189 -6.317022 5.561554 0.956066 1.264667 -2.916362 -0.895910 2.126564 0.186992 -4.112175 0.431512 -1.643441 1.524089 -3.333288 0.198064 4.101595 -6.373719 -0.055872 0.702363 -3.466711 -4.684730 -0.551578 3.270069 1.679519 -4.219107 -3.739822 1.261445 1.870816 -2.020902 1.330278 -3.117352 -6.724151 2.636105 0.879593 -2.550949 1.134830 -0.007845 -4.477032 3.225633 -1.553868 -2.786600 -2.015686 1.703564 -2.555609 1.401176 2.879483 5.635708 -8.059794 2.182703 -6.239477 4.960740 -2.956645 5.172787 4.539417 -2.312281 2.319905 2.290942 5.205976 2.300706 -0.148602 5.042077 2.862748 2.633897 -0.773877 3.109484 4.372031 -4.932236 -4.698894 -3.908764 -4.020685 1.528524 -1.982746 -5.739304 0.217063 -3.998035 0.441694 1.447364 -1.948378 -0.672439 6.448671 -9.870709 -1.631886 2.072076 -0.847507 3.378462 3.589400 0.235009 0.921566 0.300353 4.449178 -1.632073 -1.148146 -0.876677 2.853117 -4.317163 -1.894916 -1.886746 0.795944 1.626159 -5.072316 -5.151845 -8.343361 -1.424035 4.552976 -1.454057 4.814493 8.651986 -2.031801 -4.793757 2.640414 -0.972380 -1.727911 5.058241 1.178007 7.763054 -6.697288 3.063165 -1.922580 2.225170 2.791975 6.625260 -0.784586 -2.941117 3.103511 -0.380081 -3.130717 5.363673 -1.217968 0.304036 -2.619856 1.611920 -1.201555 -0.462055 5.024413 -5.965301 4.894805 -3.920001 7.189131 -5.300119 -3.489920 1.773866 -7.818867 -2.697740 -3.680384 -1.194589 -0.736210 5.551322 -4.793007 -2.562114 -2.312974 -2.797575 0.499089 4.331921 -4.464084 0.198248 -1.175600 -2.235403 6.314896 2.425024 -0.129672 -0.296162 -4.390288 0.449868 3.341415 -0.900144 -6.409818 -0.840041 -4.721768 -0.596338 -0.448581 -0.586776 3.533314 -3.724477 -1.882024 0.547391 -1.718002 0.050985 -2.647433 -5.087942 1.751251 -1.712878 1.970787 1.501323 6.124317 4.965420 4.406392 0.932217 -1.064695 1.177527 -4.106563 -3.649652 3.200797 1.271200 1.599622 2.265681 4.307421 0.790086 1.600630 3.087887 0.391267 1.524433 5.225701 0.784400 5.619909 -2.368627 1.235333 1.021229 -2.336787 3.205663 6.129623 -1.530405 -1.370446 2.154631 -0.089790 -3.009801 -1.306395 -0.383766 -1.759935 -2.223446 2.248525 3.316680 -0.969464 -2.741071 7.839021 1.386654 -8.772927 4.219027 -0.417678 1.530125 4.613914 -2.533413 2.024989 2.267640 0.282940 2.815760 2.134314 4.429207 -5.617093 -0.557224 -0.370821 4.080278 4.733462 -0.570104 -9.794792 2.353324 1.773823 5.747771 1.464645 6.359513 -3.671373 1.707038 -1.173954 -2.611118 -0.830795 -0.883696 3.204488 -0.641540 0.531279 -8.024232 0.763132 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.528132 0.311904 0.357379 -0.742027 -0.855229 0.350004 -0.526080 -0.557281 0.127688 -0.076256 0.539932 -0.675272 -0.544922 0.947860 -0.570639 -0.798676 0.055384 -0.338117 -0.027597 -0.185373 -0.068040 0.187869 -0.191953 0.032033 -0.063660 -0.024463 -0.084579 0.258092 1.171676 -0.512705 -1.053051 0.032784 0.004676 1.093165 0.307346 -0.491521 0.472547 1.438056 0.292179 0.335041 -1.007343 -0.291585 0.371500 0.168287 -0.219347 -1.131675 -0.752039 0.490491 -1.188608 0.329417 0.718809 -0.367193 -0.131393 -0.011013 0.262680 1.053897 -1.734290 1.370680 0.224891 0.549928 0.251177 -0.254646 0.292784 0.073069 0.291346 -0.576681 0.460312 0.623509 -0.829812 0.154059 -0.559596 -1.149789 1.444480 0.302836 -0.802430 -0.009797 0.235076 -0.958883 0.532786 -1.098999 -0.912041 0.090259 0.285332 0.118148 1.155590 -0.105373 0.037413 -1.420045 -0.033750 -1.527566 0.331528 -1.089710 0.722193 0.983137 -1.195752 -0.043266 0.210859 -0.235574 0.802655 0.438282 1.060033 0.273180 0.129011 -0.261447 0.441332 0.183699 0.010672 -0.029419 -0.090570 -0.891921 -0.644424 0.270277 -1.879303 0.133301 -0.724052 0.709924 -0.084102 0.140479 -0.113302 0.221058 -0.739591 -1.000396 -0.139879 -0.176615 0.946439 1.366771 -0.264477 0.504863 -0.458108 1.181461 -0.052593 0.076487 -0.457701 0.173173 -0.027006 -1.693163 -1.821050 0.193273 0.747418 -0.518613 -1.303457 -0.873284 -0.249747 -0.557622 -0.268012 1.064031 1.548872 -0.297063 -0.851048 1.108050 0.046263 0.535267 1.804017 -0.068369 1.703951 -0.928132 0.501471 -0.191405 0.017313 -0.596015 -0.956669 -0.166501 -0.143749 0.037532 0.198435 -0.543951 0.516331 0.018173 -0.440047 0.036151 -0.127574 -0.262246 -0.935431 1.269717 0.275127 0.780542 0.385990 1.550665 -0.686845 -1.404088 0.602631 0.259379 0.338179 0.076746 -0.342631 0.110076 0.817989 -0.815470 -0.558255 0.125353 0.082979 -0.369499 0.419345 1.474823 0.064102 0.125846 0.230409 0.545623 1.268226 -0.121641 0.701806 -1.099139 0.255882 0.770108 -0.392113 -1.149040 0.309865 -0.739576 -0.002024 0.435990 -0.174920 0.261323 -0.533741 -0.892962 -0.206561 -0.198844 1.069886 0.287541 -0.733335 0.428910 -0.753033 -0.101353 0.402865 0.787185 1.011425 0.780038 0.674131 -0.410865 0.326911 -0.238024 0.590138 -0.154021 0.408528 0.466747 0.330796 0.623568 0.220010 0.028387 0.361956 0.420691 -0.155115 0.789954 0.593317 1.377938 -0.385357 0.162101 -0.388388 -0.734395 0.811055 2.001039 -0.975466 0.039309 0.378047 0.702082 0.211893 -1.635974 -0.204656 -0.382411 -0.585554 0.387560 -0.072810 -0.109307 -0.341248 1.227966 0.095404 -1.141209 0.860755 0.031053 0.008287 0.276522 -0.175095 -0.310883 0.366250 -1.111160 0.439911 0.570582 0.774968 -0.403227 -0.554293 -0.182709 0.716920 -0.489346 0.290499 -0.677016 0.408439 0.933655 1.131241 1.006943 0.172306 -0.535049 -0.843288 0.179646 -0.403562 -0.302235 -0.062783 0.651630 -0.908234 0.075007 -0.108556 -0.842246 +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.219568 0.380138 0.258465 -0.819601 -1.235597 0.276850 0.020743 -1.028572 0.071721 1.585853 0.569634 -0.996391 -0.580964 1.595621 -0.332584 -0.826632 0.308632 -1.085727 0.122811 -0.375344 -0.065236 0.791075 -0.206499 -0.051632 -0.011369 0.027687 -0.460896 0.168834 0.365406 -0.535618 -1.190795 -0.291897 0.237555 1.609266 0.338072 -0.503598 -0.216102 2.161178 -0.764132 1.475611 -2.324012 -1.229455 0.887363 0.095963 0.184626 -1.633660 -0.547240 0.917777 0.327246 -0.634333 0.645818 -0.233341 -0.175308 -0.206270 0.241840 1.396226 -2.042028 1.354265 0.291635 -0.229185 -0.208983 -0.296451 0.351597 0.740779 -0.806473 -1.150269 0.581986 0.617910 -0.889714 0.495922 -0.955048 -2.000891 1.029397 0.715318 -1.294053 -0.170384 0.082747 -1.261715 1.153748 -1.514645 -1.277297 -0.068063 0.180175 0.192152 0.712993 0.411232 1.061254 -2.538739 0.519593 -2.409575 1.045962 -1.427385 1.265178 1.487373 -0.834022 0.109247 0.388869 0.585258 1.920887 0.028235 1.555461 0.911366 0.813013 -0.137989 0.794114 1.208621 -0.411936 -0.463631 -0.415810 -1.303379 0.103763 0.248870 -1.927599 0.482632 -0.840416 0.353103 0.251620 0.028869 -0.072866 1.216333 -2.290444 -1.914693 0.412216 -0.272202 1.404901 1.698800 -0.627195 0.697217 -0.878812 1.646418 0.004644 0.584492 -0.309491 0.631669 -1.301004 -1.819989 -2.023503 0.425384 0.935046 -1.623887 -1.727787 -2.353030 -0.028565 0.127488 -0.865630 1.821267 2.717340 -1.014376 -1.176938 1.527591 0.250708 -0.443136 1.807294 -0.292242 2.811945 -1.618430 0.759395 -0.121281 0.222618 -0.279013 1.341938 0.061601 -0.666980 0.158971 0.068108 -1.626983 0.706925 -0.005710 -0.760758 -0.263433 -0.133048 0.151984 -0.688380 1.451787 -0.969836 1.032668 -0.531652 1.802787 -0.959137 -1.277667 1.112446 -1.131015 -0.310516 -0.289351 -0.385333 0.207010 1.621019 -1.479754 -0.451170 -0.099780 -1.097455 -0.637859 0.708480 0.001874 0.141268 0.263605 0.326726 1.957733 1.734517 0.251150 0.496614 -1.616258 0.619975 1.101264 -0.285205 -1.725093 -0.209727 -1.527718 -0.122898 0.081051 -0.396933 0.711269 -0.896962 -0.987826 -0.036169 -0.485584 0.966091 0.151265 -0.810575 0.655840 -0.635468 0.794373 0.247535 1.622769 0.939088 1.437641 1.179663 -0.748664 0.275599 -0.743494 -0.186834 0.646243 0.551610 -0.058295 0.749529 1.042582 0.444961 0.186817 1.483716 0.130401 0.047686 1.491395 0.123627 2.108662 -1.041223 0.509384 -0.232533 -1.079436 1.262108 3.044142 -0.853224 -0.505006 0.685228 -0.089953 -0.799925 -0.699507 -0.221464 -0.621876 -0.781297 0.491117 0.396167 -0.172787 -0.735623 2.121499 0.155039 -2.383027 1.331094 0.075079 0.210575 1.342175 -0.408327 0.308773 0.566429 -1.027655 0.753210 1.241082 1.373445 -1.026647 -1.208646 -0.321552 0.874297 0.540338 0.396912 -2.261697 0.606563 1.622905 1.979717 0.736489 0.954770 -1.350905 -0.496424 0.450468 -0.412954 -0.462125 0.080781 1.238379 -1.060390 0.268430 -1.091369 -0.250244 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp____gnu_cxx::__ops::__iter_less_iter() = 0.066146 -0.011008 0.045480 -0.045720 0.032277 -0.019850 0.144477 0.035089 -0.033142 -0.103578 -0.034375 0.050020 -0.106276 0.074098 0.021985 -0.075661 0.004278 -0.169583 -0.089680 0.092815 -0.029077 0.036185 0.007164 -0.013802 0.073418 0.044875 -0.028998 0.005318 -0.136428 -0.196475 -0.008558 -0.024649 0.028277 0.065249 -0.050141 0.129867 -0.033588 0.123491 0.111811 0.173592 -0.091413 -0.099711 0.057936 -0.071556 0.013304 -0.149058 0.032497 0.088107 0.084452 -0.107447 -0.001969 0.060736 -0.160261 -0.097248 0.014533 0.070537 -0.139750 0.061055 0.036233 0.018944 -0.038731 -0.017619 -0.051505 -0.138868 0.065560 -0.056166 -0.029036 -0.037414 -0.136669 0.082733 0.005222 -0.003626 0.192199 0.057006 0.029390 0.087629 0.034184 0.066508 0.060871 -0.155142 -0.020808 -0.050149 0.027776 0.109507 0.087641 0.035314 -0.063102 -0.098312 0.044278 -0.056411 0.045545 -0.115674 0.008391 0.067915 0.067485 0.123217 0.034266 -0.071469 -0.070394 0.082731 0.074667 0.001209 0.028950 0.047964 0.047809 -0.086217 -0.052370 -0.077618 -0.046408 -0.061116 0.045875 0.037027 -0.055429 0.019190 0.055234 0.126178 0.043605 0.123259 0.077854 -0.150574 -0.191704 0.054642 0.095628 -0.017976 0.039236 0.038664 -0.023052 -0.063891 -0.098209 0.047313 -0.007111 0.093314 0.006004 0.032772 0.093784 -0.078576 0.044032 -0.088804 -0.033511 -0.010791 -0.048118 -0.067798 0.012537 0.124736 -0.077483 0.054293 0.131108 -0.031792 -0.015274 0.080968 0.155334 0.111244 -0.064090 0.043707 0.039784 -0.000993 -0.059591 0.094787 -0.004611 0.070303 -0.159583 0.019237 -0.078300 0.043309 0.020191 -0.169472 0.170307 -0.053799 0.003141 0.180289 -0.065463 -0.072543 -0.080300 0.041058 0.180227 0.161120 0.037660 0.091020 -0.006335 0.028954 -0.000821 -0.006074 0.026830 -0.124265 -0.010381 -0.042687 -0.030199 -0.132009 -0.043211 0.023225 -0.077747 -0.032922 0.054803 -0.069789 0.009830 -0.023803 0.032846 0.008205 0.014477 -0.066363 0.005431 -0.121709 0.029739 -0.078194 0.042340 -0.039351 0.046056 0.043944 -0.020054 0.123354 -0.003173 -0.048483 0.079122 0.004683 0.095039 -0.047872 -0.076161 -0.033027 0.160195 -0.153844 0.081164 0.020061 0.012311 0.061288 0.117500 0.002940 -0.027552 0.044775 -0.010939 0.056440 -0.092349 -0.074899 -0.133068 0.130191 0.040858 -0.104642 0.068867 -0.010132 0.102498 0.044125 -0.010265 0.085160 0.109287 0.101637 -0.020398 -0.106825 0.066394 0.006437 0.069612 -0.026956 -0.164734 0.066927 0.071824 0.029773 -0.016665 0.084062 -0.032261 -0.024474 -0.119977 0.151965 0.005755 -0.002892 0.045146 0.086665 -0.064856 -0.102547 -0.002407 0.025404 0.065636 0.002822 0.057642 0.064742 0.105375 -0.013667 -0.080686 -0.018394 0.083205 -0.080484 -0.026422 0.006181 0.011940 -0.054692 0.065192 -0.001187 -0.078485 -0.001222 0.061276 -0.050782 -0.091431 0.006662 -0.015892 0.006405 0.033045 -0.013489 0.062625 0.024816 0.070095 -0.140402 -0.110922 0.027413 +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.327564 0.719036 0.851510 -1.725015 -1.938589 0.329239 0.606679 -1.307933 0.255385 2.663453 1.039766 -1.362881 -1.424594 2.645167 -0.523491 -1.351931 0.553431 -1.824939 0.032347 -0.393657 0.017751 1.397091 -0.314828 -0.084989 0.305463 0.083005 -0.554533 0.824390 0.830691 -0.856416 -1.766529 -0.424219 0.176604 2.597814 0.186700 -0.589585 -0.199676 3.577684 -2.151124 2.518604 -3.626201 -2.207665 1.791181 0.171270 0.002138 -3.037638 -0.907164 1.505417 -0.082045 -1.364313 1.262557 -0.264107 -0.009365 -0.634374 0.637420 2.274083 -3.719215 1.779978 0.572576 -0.234010 -0.441534 -0.527747 0.748436 0.940071 -1.443095 -1.764172 0.817588 0.256836 -1.529939 0.527426 -1.277544 -2.999773 1.636941 0.979121 -1.877757 0.170075 0.370832 -2.582184 1.990916 -2.380035 -1.999944 -0.158619 0.301476 -0.318885 1.528485 0.361051 1.475980 -4.003570 0.502133 -3.559360 1.638511 -2.415451 1.863456 2.556494 -1.447181 0.450745 0.638753 1.053141 2.624828 -0.223384 2.556042 1.573438 1.785300 -0.083918 1.448513 1.938145 -1.330370 -1.067395 -1.358101 -2.339311 0.239315 -0.165931 -3.311483 0.546822 -1.114292 -0.063679 0.803868 -0.488974 -0.302475 2.249184 -3.640647 -1.942159 0.751801 -0.411439 1.744633 2.991436 -0.831987 0.726903 -1.007219 2.701427 -0.325263 1.206861 -0.485026 1.040559 -1.812649 -2.480875 -2.443280 0.412402 1.101861 -2.248758 -2.676905 -3.994373 -0.086307 0.121630 -1.114538 2.376005 4.472319 -1.442670 -2.260717 2.526639 0.362490 -0.391208 2.526355 -0.360057 4.113257 -2.416889 0.943524 -0.624454 0.203667 -0.259389 2.856024 0.259291 -1.085678 0.363585 -0.176395 -2.892344 1.196520 0.035449 -0.957732 -0.740587 0.048612 -0.645343 -1.376649 2.660190 -1.802579 2.012965 -0.936311 2.968474 -1.604986 -2.090360 1.672324 -2.032689 -0.243569 -1.411608 -1.174482 0.603315 2.289740 -2.239735 -0.800336 -0.933940 -1.190454 -0.998231 1.124731 -1.240497 0.272100 0.157059 0.603221 2.715727 2.594120 0.179992 0.744911 -2.639921 0.938093 1.656711 -0.391905 -3.130035 -0.048518 -2.373950 -0.270697 0.530901 -0.649634 1.168024 -1.320985 -1.682790 0.248731 -0.910546 1.006622 -0.053338 -2.557233 0.849261 -1.037098 1.217481 0.743644 2.498134 1.867883 2.245879 1.629463 -0.787408 0.497658 -1.027724 -0.818942 0.789578 0.579424 -0.014296 1.280272 1.872534 1.015931 0.349898 2.224380 0.717356 -0.204838 2.520459 0.509598 3.315133 -0.949836 0.295470 -0.097931 -1.392701 1.755106 4.373231 -0.830953 -0.488424 1.246887 0.346409 -1.197120 -1.292300 -0.316506 -1.247027 -1.001571 1.267664 0.516170 -0.600467 -0.839994 3.386626 0.047581 -3.955320 1.840095 -0.109352 0.696244 1.872239 -0.516190 0.426257 1.055530 -1.890595 1.737055 1.715225 2.031351 -1.630202 -1.663363 -0.345435 1.505571 1.309851 0.664466 -4.294805 0.770522 1.783236 3.079881 1.243135 2.247102 -1.864960 -0.592894 0.510292 -0.885162 -0.726669 -0.227356 1.893379 -1.450380 0.134583 -2.536657 -0.444752 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::__lg(long) = 0.234820 0.130371 0.196570 -0.119734 0.075246 0.138714 0.218186 -0.179378 0.006901 0.225463 0.219651 -0.193575 -0.094329 0.210257 -0.099901 -0.135653 0.379495 0.131855 -0.003114 -0.101092 -0.146577 -0.034941 -0.082670 -0.257472 0.207181 -0.037286 0.117541 0.029917 -0.098501 -0.124745 -0.298353 -0.002990 0.175719 0.569285 0.075098 0.026835 -0.127241 0.384324 0.187319 0.438836 -0.543828 -0.164246 0.435481 0.062481 0.032443 -0.449345 -0.055220 0.261716 0.087177 -0.324785 -0.027568 -0.309780 0.048972 -0.353153 -0.223749 0.641337 -0.468816 0.095987 0.174155 -0.173116 -0.361432 -0.034116 0.395642 -0.079417 -0.006805 -0.220496 0.117655 0.115680 -0.264798 0.158198 -0.494470 -0.636873 0.328503 0.127019 -0.200531 0.062459 -0.267919 -0.218009 0.089250 -0.031039 -0.147511 -0.233486 0.261114 0.133727 0.103414 0.183535 0.258818 -0.701331 -0.085937 -0.627913 0.380083 -0.264653 0.627833 0.344448 -0.133645 0.176618 0.118491 -0.209116 -0.100250 0.246375 0.455727 -0.049112 0.044775 -0.295405 0.258582 0.219418 -0.215091 -0.373005 -0.001301 -0.220235 0.041595 0.324373 -0.209807 0.030705 -0.743676 0.239170 0.010960 0.114492 0.001158 0.045726 -0.317933 -0.415198 0.163596 -0.141478 0.607409 0.504052 0.153660 0.166794 -0.089034 0.335153 -0.003125 -0.130091 -0.297592 0.246717 0.058937 -0.669903 -0.234023 -0.085208 0.259093 -0.396585 -0.574490 -0.614942 -0.144618 0.083671 -0.235157 0.177781 0.634129 -0.126721 -0.238186 0.176128 0.159628 0.200451 0.537388 0.107418 0.893078 -0.779557 0.517518 0.141887 0.349411 0.202833 0.096475 -0.335698 -0.195497 0.181507 0.004174 -0.266194 0.574658 -0.090822 0.107250 0.504560 -0.021382 0.115813 -0.393466 0.345935 0.293328 0.317507 -0.114823 0.759545 -0.539269 -0.428176 0.186512 0.055167 -0.171273 -0.012214 0.014800 -0.133265 0.518395 -0.348502 -0.337623 0.158849 -0.086432 0.120101 0.357741 0.163002 -0.092823 -0.153682 -0.385970 0.059474 0.025432 -0.215285 0.136697 -0.409102 -0.143945 0.244361 0.086336 -0.392132 -0.023196 -0.448187 -0.108232 0.052447 -0.025350 0.213584 -0.192272 -0.191274 0.255718 -0.201086 0.161286 -0.223618 -0.102301 0.132333 -0.182274 -0.249896 0.000342 0.675505 0.369262 0.298285 -0.121619 -0.210171 0.100683 -0.276479 -0.311072 -0.006035 -0.077602 0.479468 0.170698 -0.200695 0.053352 0.079191 0.109595 -0.410889 0.136983 0.366891 0.284233 0.385984 -0.212817 0.163772 0.215845 -0.511344 0.372799 0.468051 -0.165767 -0.376997 0.179020 -0.036670 -0.158385 -0.476715 -0.080719 0.002118 -0.442767 0.287932 0.290503 0.051072 -0.363278 0.840962 0.015966 -0.758315 0.536450 -0.027481 0.045392 0.330391 -0.155597 0.208055 0.295342 0.137489 -0.105360 0.103170 0.642021 -0.448451 -0.066729 -0.152256 0.348434 -0.033467 -0.234164 -0.731856 0.071336 0.191292 0.439817 0.311436 0.286457 -0.203704 0.182296 -0.242837 -0.145948 -0.086146 -0.063240 0.379240 0.154409 -0.254071 -0.618064 0.423273 +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.031786 0.114575 0.282916 -1.015968 -1.437548 0.358007 -0.199899 -1.043799 0.127664 1.537827 0.555583 -1.060761 -0.761625 1.963493 -0.220955 -1.020537 0.243718 -1.192839 0.182927 -0.080193 -0.092660 1.012280 -0.302857 0.201416 0.054502 0.185041 -0.574376 0.217016 0.719897 -0.747497 -1.350424 -0.388715 -0.075713 1.776687 0.347827 -0.316953 -0.015114 2.723006 -0.756811 1.916266 -2.399636 -1.387888 0.853731 0.024595 0.057540 -1.374955 -0.506070 1.134283 -0.235270 -0.771133 0.975941 -0.140181 -0.305299 -0.132947 0.516731 1.263192 -2.450748 1.554528 0.401574 0.092754 -0.114644 -0.473449 0.257732 0.698606 -1.081409 -1.190375 0.589762 0.488088 -1.174300 0.285483 -0.852526 -2.020320 1.209942 0.845264 -1.521110 -0.061857 0.344457 -1.317812 1.345247 -1.782905 -1.689903 0.009518 0.008177 -0.350049 1.234376 0.378168 1.090648 -2.820007 0.912261 -2.713758 1.030250 -1.673334 1.251020 1.984310 -1.239732 0.153475 0.515634 1.053344 2.114685 -0.048557 1.760197 0.991259 0.569686 0.117575 0.987437 1.139237 -0.583053 -0.406207 -0.642149 -1.638227 0.098064 -0.028554 -2.139276 0.489681 -0.681784 0.712190 0.317014 0.308473 -0.303016 0.983329 -2.777924 -1.843358 0.270016 -0.289878 1.529460 1.948908 -0.842857 0.668481 -0.974532 1.954685 -0.269877 0.716499 -0.374680 0.714405 -1.231920 -1.280846 -2.254895 0.390850 1.008764 -1.586845 -1.929935 -2.736944 -0.094577 0.087616 -0.891692 2.412959 3.159115 -1.204327 -1.246768 2.002732 -0.176083 -0.117336 2.010528 -0.351137 2.738596 -1.445304 0.486870 -0.281062 -0.027596 -0.548604 1.066451 0.346597 -0.659646 0.112018 -0.019891 -1.420586 0.837607 0.182334 -1.045979 -1.043782 -0.080884 -0.241566 -0.990761 1.838507 -1.520238 1.056534 -0.392138 2.016186 -0.824057 -1.299394 1.341004 -1.385120 -0.149660 -0.657739 -0.805050 0.138008 1.603221 -1.775106 -0.478579 -0.235481 -0.933828 -0.954897 0.563458 0.327647 0.193127 0.411931 0.688886 2.380967 2.111077 0.322745 0.432156 -1.914731 0.716374 1.186044 -0.585235 -1.534311 -0.036117 -1.641343 -0.185637 0.415179 -0.450175 0.633180 -1.216007 -1.205836 -0.203604 -0.294685 1.226149 0.404601 -1.609490 0.630069 -0.496658 0.867741 0.803689 1.583845 1.048338 1.668846 1.494314 -0.593085 0.222378 -0.452562 -0.173321 0.481903 0.511382 0.192295 0.883382 1.168877 0.867100 0.250835 1.484116 0.474171 -0.074533 1.782681 0.282447 2.547457 -0.791996 0.333938 -0.258079 -0.941340 1.357960 3.298754 -1.378887 -0.033431 0.881818 0.095332 -0.816719 -0.871131 -0.149346 -0.896662 -0.631497 0.303082 0.006719 -0.142787 -0.658890 2.212847 -0.081269 -2.632720 1.318754 0.004775 0.455164 1.430473 -0.158964 0.253140 0.561447 -1.723920 1.263445 1.475644 1.326727 -0.953974 -0.974914 -0.314763 0.975038 0.701815 0.750585 -1.975872 0.760733 1.481932 2.065169 1.000453 0.745761 -1.333787 -0.771398 0.568736 -0.853979 -0.522155 -0.020595 1.369979 -0.808060 0.211045 -1.335994 -0.841861 +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.444644 0.533235 0.265251 -0.905641 -1.426025 0.075524 -0.154296 -0.430364 0.002004 0.447893 0.638064 -0.950692 -0.282736 1.702095 -0.443438 -0.632003 -0.277085 -0.886350 -0.273307 0.206541 0.074881 0.755584 -0.191146 0.279172 -0.070298 0.342893 -0.434753 0.161473 0.767128 -0.672848 -0.978725 -0.081495 0.116644 0.914623 0.102435 -0.639727 0.337522 1.691999 -0.798147 0.864817 -1.058908 -0.571705 0.370845 0.104757 -0.069828 -1.386950 -1.065340 0.745858 -0.221159 -0.264015 0.931490 0.165872 -0.410999 0.050456 0.628042 0.724137 -1.768129 1.332461 0.459194 0.567349 0.363832 -0.207640 0.047726 0.246572 -0.325698 -0.604863 0.197050 0.313411 -0.493768 -0.106436 -0.236806 -1.215972 1.326791 0.317236 -0.821987 0.134786 0.408068 -1.245206 1.029481 -1.608729 -1.121439 0.350575 0.049920 -0.024024 1.074172 -0.058553 0.190461 -1.501081 0.320345 -1.518156 0.360719 -1.269248 0.252179 1.280011 -0.953069 -0.092065 0.216696 0.262798 1.600878 0.566459 1.040118 0.703236 0.559828 0.116209 0.367015 0.783265 -0.379072 -0.101826 -0.603133 -1.351157 -0.178692 0.171928 -1.865757 0.386758 0.176720 0.180894 0.141660 -0.111650 0.094544 0.660439 -1.016529 -0.789950 0.193057 -0.104833 0.437450 1.536120 -0.547236 0.337967 -0.902357 1.154721 -0.103672 0.710358 0.020595 0.230162 -0.892295 -1.477431 -1.491207 0.410118 0.422967 -0.619432 -0.953194 -1.569533 0.246504 -0.360431 -0.568797 0.959282 1.848984 -0.671587 -0.944310 1.476285 0.851852 -0.002130 1.196738 -0.330874 1.771830 -0.525988 -0.059450 -0.147037 -0.502678 -0.697825 0.033973 0.413208 -0.266721 -0.047577 -0.062475 -1.868760 0.869460 0.165817 -0.731194 -0.189647 0.164378 -0.502692 -0.807039 1.383263 -0.069245 0.696761 0.126304 1.337183 -0.308470 -0.902993 0.813914 -0.289759 0.329284 -0.672962 -0.572388 0.466839 0.846872 -0.744574 -0.151440 -0.049216 -0.327153 -0.934351 0.090664 0.048737 0.264318 0.330500 0.701058 0.608030 1.518641 0.107447 0.638698 -1.254842 0.441803 0.558948 -0.516393 -1.523064 0.235358 -0.894594 0.017117 0.321091 -0.446728 0.099382 -0.543811 -0.895811 -0.061551 -0.489784 0.777219 0.307432 -0.637754 0.253276 -0.823329 0.924338 0.396309 0.688102 0.996043 1.145481 1.138851 -0.004021 0.173289 -0.002937 0.235820 0.108608 0.258306 -0.094090 0.623817 0.964165 0.523716 0.119170 0.774541 0.511414 -0.350972 0.999811 0.314792 1.676942 -0.051363 -0.081274 -0.403731 -0.297243 0.855246 2.226484 -0.648165 0.027745 0.415856 0.331395 -0.270652 -0.675778 -0.028103 -0.510493 -0.642275 0.416071 -0.118664 -0.150040 -0.018977 0.993394 -0.232177 -1.267607 0.520012 -0.041186 0.418080 0.493998 0.080790 0.082800 0.371399 -1.176694 0.843017 0.950467 0.723894 -0.442942 -0.986942 -0.112969 0.603663 0.227147 0.807927 -1.331983 0.698333 1.041079 0.974903 0.269157 0.478608 -0.826992 -0.859745 0.602123 -0.148545 -0.428333 -0.135443 0.651351 -0.896256 0.164854 -0.346449 -1.062216 +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.103389 -0.039542 0.439579 -1.027938 -1.930080 0.670279 -0.843353 -1.509365 0.262701 0.948571 1.082215 -1.365741 0.045790 2.382991 -0.315171 -0.995599 0.101475 -0.443328 0.251669 -0.067439 0.129999 0.886265 -0.504923 0.400975 -0.546433 0.094404 -0.260629 0.183985 0.748962 -0.349704 -1.779788 -0.531425 -0.170448 1.774001 0.777821 -0.180193 0.047694 2.801460 -0.851896 2.190048 -2.281616 -1.187621 0.479255 0.204098 0.126904 -1.375281 -1.392690 1.047733 -0.145914 -0.740071 1.454243 -0.298984 -0.023475 0.385166 0.745385 0.968610 -1.981463 1.187826 0.457868 -0.006571 0.184125 -0.506649 0.124693 1.198975 -1.711140 -1.099206 0.951013 1.153435 -0.618215 0.184873 -0.889604 -2.719644 1.736953 0.699448 -1.738334 -0.497878 0.732863 -1.682743 1.556871 -1.121551 -2.174394 0.255933 -0.376708 -0.435897 1.257413 0.198006 1.601358 -2.932064 1.174315 -3.246240 1.101320 -1.770539 1.143606 1.973775 -1.884709 -0.343434 0.826915 1.954084 2.681615 0.319747 1.719838 1.404474 0.067501 -0.120020 1.603256 1.223731 -0.265293 -0.408425 -0.833045 -2.172130 0.169657 -0.227474 -3.037785 0.569478 -0.513078 0.584048 -0.549577 0.448384 0.067366 1.349793 -2.512537 -1.509634 0.326575 -0.237898 1.354115 2.157075 -1.136865 1.153747 -1.139010 2.043278 -0.535434 0.666798 -0.292064 0.632816 -1.832326 -1.571033 -2.896546 0.965565 1.463803 -1.699230 -2.034213 -2.936570 0.004953 0.592377 -0.889095 2.323143 3.257573 -1.497962 -1.310320 1.963284 0.641089 -0.894315 2.419210 -0.435818 3.275009 -1.507767 0.544899 -0.580377 -0.354120 -1.043655 0.436588 0.489143 -0.477551 0.404169 -0.261600 -2.557920 2.428245 -0.075562 -1.430343 -0.885142 0.112855 0.012418 -0.974970 2.163796 -1.413936 0.771066 -0.303643 2.156805 -0.795838 -1.233737 1.277338 -1.301478 -0.165470 -0.561167 -0.574893 0.205801 2.322221 -1.596540 -0.450856 -0.218563 -1.430138 -0.874212 0.373741 0.910484 0.264826 0.777088 0.830572 2.000092 2.827457 0.951053 0.417721 -1.829932 0.791994 1.521709 -0.819457 -1.353475 -0.233471 -2.166817 -0.045156 -0.772317 -0.424168 0.806521 -1.739438 -1.356902 -0.863699 -0.350570 1.532119 0.890340 -1.866775 0.816897 -0.615786 1.407366 0.736813 1.480094 1.184006 2.306536 2.327471 -0.845905 0.356929 -0.356782 -0.199447 0.705169 1.001132 0.106045 0.746321 1.490558 0.762977 0.343750 1.498105 0.422813 0.626217 1.756693 0.373260 2.850972 -0.434833 0.772968 -0.662722 -0.849198 1.596250 4.143258 -0.919675 0.328052 0.558245 0.142484 -1.148272 -1.286088 -0.096725 -0.654260 -0.943288 0.044477 0.055364 0.179988 -0.993090 2.171583 0.128385 -2.664269 1.013356 -0.134474 0.277162 2.167185 -0.368383 0.319328 0.173690 -1.601348 1.852747 1.744560 1.389730 -0.894477 -1.288137 -0.358409 0.880342 1.054667 0.877714 -1.752927 1.867150 1.905836 2.169203 0.829133 0.630582 -1.948879 -0.594505 0.793281 -1.197233 -0.494440 0.123651 1.539693 -1.018134 0.210270 -1.396687 -1.499447 +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.533718 0.873699 1.305433 -1.616349 -2.118423 0.214522 0.200970 -0.665470 0.330473 2.389953 0.708733 -1.171587 -1.312137 2.796822 -0.829559 -1.362537 -0.239185 -1.614449 -0.162338 -0.440742 0.078140 1.353299 -0.161968 0.392950 0.254828 -0.164895 -0.419972 0.785515 0.519715 -0.790202 -1.026298 -0.284123 -0.062919 1.935066 -0.219467 -0.307819 0.241530 3.163400 -2.086362 2.471917 -2.705498 -2.304979 1.142201 0.278075 0.187228 -2.106218 -0.874160 1.221873 -0.754356 -0.694632 1.443334 0.256335 -0.346298 -0.340347 1.217887 1.208506 -3.543048 1.785170 0.243218 -0.152248 -0.195774 -0.314734 0.262588 0.700739 -0.852181 -1.167742 0.407838 0.571620 -1.351007 0.292309 -0.189173 -1.989003 1.558413 0.671338 -1.348272 0.603277 1.204249 -1.739681 1.902314 -3.049894 -1.916898 0.004161 0.344285 -0.921281 1.682011 0.577799 1.061601 -3.052411 0.810647 -2.509315 1.488313 -2.021744 0.906327 2.273678 -0.879438 0.607883 0.784344 0.764955 2.282596 0.048189 1.994046 1.364387 1.621036 0.675924 0.903335 1.570488 -1.578895 -0.870408 -1.775848 -2.344568 -0.000178 -0.478870 -2.412066 0.225695 0.144397 0.338814 0.976093 -0.483369 -0.285747 1.626494 -3.360659 -1.064087 0.646313 -0.252057 0.894455 2.112354 -0.727299 0.506561 -0.659491 2.361110 -0.872504 1.038882 -0.010137 0.660859 -1.282624 -1.287253 -2.187236 0.450337 0.483630 -1.230558 -1.801039 -3.141505 -0.170440 0.560772 -0.706859 2.548331 3.938036 -1.099442 -2.061074 2.376484 0.333637 -0.066745 1.861940 -0.059928 2.682370 -1.260216 -0.106458 -1.068674 -0.386570 -0.151198 2.500906 0.914565 -0.622830 0.632456 0.224689 -1.984329 0.731708 -0.262384 -1.012001 -1.604416 0.447140 -1.231569 -0.817943 2.244632 -1.570531 1.812164 -0.547137 2.704776 -1.190772 -1.885034 1.126945 -2.424474 0.222064 -1.683633 -1.061011 0.529093 1.518620 -1.918786 -0.609467 -1.078318 -1.049644 -1.090140 0.333794 -1.512263 0.551094 0.235393 0.837340 2.825995 2.465180 0.475456 0.411147 -2.480081 0.688784 0.808982 -0.482853 -2.800532 0.480345 -1.393160 -0.084810 0.887279 -0.605258 0.493215 -1.069700 -1.254489 -0.203373 -1.127073 0.669685 -0.000136 -2.241972 0.349489 -0.756793 1.619478 0.968906 1.344199 2.159277 1.930589 1.745804 0.113177 0.206316 -0.570750 0.121299 0.614594 0.784542 -0.252775 1.054056 2.107106 0.968634 0.244685 1.844733 1.389502 -0.707781 1.936117 -0.070544 2.943702 -0.728534 0.043337 -0.483383 -0.302884 1.229413 3.476330 -1.153539 0.178731 1.232616 0.687392 -0.471924 -0.856031 -0.066914 -1.404820 -0.347444 1.175229 0.552834 -0.790604 -0.140447 2.121824 -0.011326 -2.856065 1.171327 -0.160580 0.714659 1.033596 -0.144856 -0.112096 0.925979 -2.218786 1.637898 1.432315 1.267035 -1.469414 -1.082352 -0.167704 1.294329 1.254726 1.222570 -3.515651 0.348385 1.337154 2.001509 0.602349 2.144482 -1.494229 -1.328656 0.782749 -1.006036 -1.029576 0.033901 1.149127 -1.135559 0.664626 -1.536838 -1.554941 +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.613470 0.178739 0.718437 -0.694302 -1.032947 0.072740 0.537469 -0.643589 0.282827 1.200993 0.476800 -0.810863 -0.927963 1.365220 -0.057972 -0.772891 0.327934 -0.899396 -0.023226 -0.422632 0.020566 0.669492 -0.088559 0.115698 0.168437 -0.043245 -0.272319 0.675579 0.290852 -0.507963 -0.757123 -0.256274 0.196596 1.460910 -0.023619 0.024517 -0.194032 2.135097 -1.033631 1.741460 -2.047668 -1.246421 1.018020 0.023388 -0.063775 -1.528315 -0.509741 0.954728 -0.235672 -0.868057 0.714019 0.126304 -0.096624 -0.398289 0.425272 1.349150 -2.060606 0.859972 0.163573 -0.468220 -0.367795 -0.218750 0.043186 0.587555 -0.961841 -0.996759 0.514251 0.098273 -0.916474 0.564974 -0.523352 -1.698821 1.070334 0.478189 -1.041529 0.189374 0.567587 -0.992221 1.249812 -0.932322 -1.082657 -0.217998 0.128621 -0.284201 0.876580 0.177298 0.843517 -2.305746 0.206399 -1.987560 1.177495 -1.545780 1.011848 1.366472 -0.831084 0.528296 0.380909 0.517761 1.276988 -0.234408 1.388566 0.849953 1.081195 0.089723 1.063016 0.860571 -0.703396 -0.796895 -0.989190 -1.359404 0.358380 -0.291346 -1.691265 0.244831 -0.529970 0.178544 0.530677 0.010537 -0.058701 1.195372 -2.050712 -0.602372 0.717915 -0.252713 0.935579 1.667180 -0.712309 0.403214 -0.564397 1.604433 -0.249364 0.783954 -0.219808 0.569492 -0.716689 -1.215289 -1.410300 0.149718 0.631407 -1.179078 -1.498360 -2.151508 -0.094348 0.443533 -0.645363 1.390218 2.697133 -0.790470 -1.122898 1.359251 0.381639 -0.117251 1.146062 -0.091339 2.377713 -1.363902 0.436631 -0.572129 0.112409 0.125541 1.890018 0.297056 -0.682929 0.380168 0.128958 -1.737598 1.169555 -0.262305 -0.550774 -0.204136 -0.023912 -0.162685 -0.822751 1.544426 -0.770690 1.223400 -0.620574 1.624072 -0.840541 -1.215760 0.903551 -1.040522 -0.129657 -0.801710 -0.607628 0.274492 1.312750 -1.371778 -0.500247 -0.704942 -1.061285 -0.380047 0.524156 -0.459733 0.175587 0.041233 0.474443 1.605724 1.515638 0.283632 0.221074 -1.798588 0.520330 0.810325 -0.060295 -1.454596 0.067643 -1.225900 -0.177654 0.053522 -0.285333 0.592221 -0.790791 -0.845826 0.002357 -0.614452 0.334345 -0.038977 -1.715622 0.341537 -0.147522 0.750183 0.516288 1.327671 1.356889 1.121400 1.060047 -0.389098 0.194634 -0.543540 -0.669665 0.539002 0.242596 0.172642 0.627381 0.930475 0.606211 0.021807 1.405457 0.344198 0.038096 1.431693 0.442454 1.961942 -0.543957 0.238099 -0.017208 -0.719070 1.035648 2.475205 -0.416701 -0.176642 0.845173 0.378764 -0.772452 -0.827109 -0.400118 -0.733146 -0.397824 0.990944 0.143934 -0.530674 -0.371801 1.866084 0.094303 -2.326891 0.865176 -0.064300 0.253888 1.165224 -0.293964 0.217680 0.695770 -1.145489 0.899172 0.811660 1.095556 -1.066742 -0.939895 -0.248535 0.685061 0.844683 0.441278 -2.564242 0.172828 0.926926 1.793075 0.619770 1.168193 -1.162640 -0.326471 0.341270 -0.753577 -0.524931 0.129047 1.038802 -0.820493 0.103417 -1.692657 -0.373509 +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.743757 0.313512 1.010747 -1.468633 -1.128606 0.324540 1.091801 -1.892173 0.500334 3.154149 1.116170 -1.581173 -1.646372 2.285937 -0.222387 -1.380241 1.476997 -1.264446 0.264185 -1.028936 -0.091133 1.018955 -0.264203 -0.655512 0.453057 -0.265434 -0.089991 1.228633 0.493534 -0.800954 -1.746082 -0.547157 0.477658 3.242148 0.284997 0.178179 -0.942670 3.600082 -2.003237 3.306052 -4.814211 -2.374543 2.634426 0.181847 0.010718 -3.393424 -0.519533 1.692023 0.040212 -1.981089 0.630696 -0.694069 0.373057 -1.360743 -0.054709 3.329612 -3.547883 1.208720 0.490391 -1.327373 -1.400442 -0.538502 1.205316 1.265373 -2.247071 -2.355962 1.250523 0.144089 -2.053431 1.356026 -2.192720 -3.718620 1.341601 0.946591 -2.080763 -0.041269 -0.250514 -2.315103 1.887850 -1.297621 -1.654560 -0.823109 0.656460 -0.109720 0.864869 0.636450 2.286538 -4.884731 0.173038 -4.190459 2.372859 -2.559165 3.024739 2.455033 -1.569784 0.906136 0.507806 1.157748 2.120564 -0.526804 2.853161 1.537341 1.923894 -0.786545 2.411148 1.993060 -1.232946 -1.875605 -1.148331 -2.284644 0.721222 -0.187150 -3.415068 0.517521 -2.736447 -0.011988 0.717418 -0.228593 -0.240669 2.692224 -4.290418 -2.156704 1.156285 -0.586017 2.555184 3.306856 -0.716939 0.955718 -0.762584 2.874576 0.009863 0.946905 -0.866021 1.460526 -1.729336 -3.038361 -2.365166 0.080142 1.554612 -3.042939 -3.429923 -4.603123 -0.506930 0.809642 -1.306480 2.643135 4.949110 -1.454782 -2.448998 2.054062 0.027261 -0.747694 2.873105 -0.238750 5.465061 -3.891450 2.150821 -0.538934 1.259159 0.725722 4.000011 -0.554076 -1.836529 0.685786 -0.355083 -3.259115 1.939087 -0.116085 -0.407284 -0.121465 -0.263048 0.173132 -1.633063 2.795066 -2.365520 2.735109 -1.896971 3.437997 -2.423192 -2.430348 1.876992 -2.286639 -0.944793 -0.937508 -0.989001 0.173259 3.291729 -2.662152 -1.273229 -1.302435 -1.937602 -0.127224 2.103933 -1.099673 -0.044929 -0.319883 -0.213555 3.328534 2.279742 -0.055802 0.628098 -3.013136 0.918329 2.457113 0.403538 -3.037518 -0.427809 -3.122637 -0.578913 -0.307981 -0.465928 1.963846 -1.718798 -1.633715 0.384400 -0.771623 0.781313 -0.616906 -3.199767 1.203266 -0.763607 0.653447 0.568937 3.676161 1.854919 2.190999 1.126777 -1.710820 0.543088 -1.915796 -1.937994 1.271233 0.508363 0.357974 1.229358 1.496836 0.797464 0.425045 2.823905 -0.102722 0.294928 2.986133 0.849880 3.339838 -1.708184 0.982702 0.432972 -2.341773 2.108269 4.773744 -0.612842 -1.322635 1.469671 0.190921 -1.882548 -1.877336 -1.029460 -1.090748 -1.472932 1.731200 0.729363 -0.690868 -1.546829 4.647631 0.564687 -5.104999 2.549581 -0.210551 0.239284 2.662056 -1.283938 0.612429 1.438508 -1.331376 1.224319 1.469415 2.691638 -2.122633 -1.719497 -0.538728 1.832920 1.879784 -0.234834 -5.397097 0.820704 2.049309 4.212436 1.761960 2.720825 -2.206373 0.448853 -0.116513 -1.186915 -0.527818 -0.178780 2.359792 -1.375133 -0.372643 -3.926972 0.824986 +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.367738 0.321901 0.322524 -0.751710 -0.827942 0.091692 0.299683 -0.398316 0.089406 0.493347 0.554139 -0.519512 -0.143286 1.016298 -0.208952 -0.401765 0.058517 -0.574343 -0.214316 0.203024 0.115754 0.469576 -0.134831 -0.104479 0.011781 0.134933 -0.093435 0.319073 0.194490 -0.285279 -0.686221 -0.121291 0.155636 0.813663 0.083744 -0.261365 0.015052 1.122164 -0.774611 0.848985 -0.952681 -0.536862 0.614134 0.029461 -0.091431 -1.279123 -0.677056 0.497067 0.310736 -0.635260 0.490241 -0.031407 0.057126 -0.245348 0.199896 0.695035 -1.069469 0.391479 0.357216 0.033828 -0.047415 -0.140869 0.214494 0.359618 -0.608461 -0.532779 0.222455 0.067931 -0.259699 0.009090 -0.315025 -1.128906 1.173748 0.254659 -0.573549 0.100152 0.155757 -1.212466 0.771195 -0.615648 -0.695157 0.054742 0.020475 -0.038556 0.622462 -0.162852 0.476898 -1.242903 0.118882 -1.172924 0.478140 -0.884783 0.383031 0.842832 -0.554189 0.068646 0.192408 0.515521 0.876471 0.269929 0.795947 0.640579 0.653979 -0.102936 0.522715 0.661611 -0.469749 -0.474108 -0.578222 -0.943062 0.133336 -0.038065 -1.624376 0.285835 -0.070774 -0.101537 0.115937 -0.257926 0.137612 1.008051 -0.847060 -0.233193 0.370433 -0.108116 0.247800 1.128784 -0.271029 0.194567 -0.435023 0.793877 -0.075780 0.480462 0.001079 0.317595 -0.872286 -0.900095 -0.575325 0.271477 0.294478 -0.624473 -0.780459 -1.292351 0.092499 0.179461 -0.401987 0.401151 1.396325 -0.477256 -0.852351 0.816126 0.844958 -0.311305 0.644736 -0.116133 1.409683 -0.697781 0.173010 -0.247862 -0.111113 -0.177011 0.860530 0.105108 -0.354890 0.231843 -0.305910 -1.790936 1.217222 0.031850 -0.289244 0.359238 0.047581 -0.397470 -0.632741 1.023870 -0.087188 0.748736 -0.211512 1.101751 -0.467547 -0.527724 0.461634 -0.265120 0.000155 -0.765200 -0.310365 0.441712 0.800542 -0.531206 -0.229572 -0.141591 -0.416515 -0.386399 0.409837 -0.616364 0.117205 0.075491 0.150849 0.447595 0.867111 -0.009966 0.225694 -0.775646 0.347558 0.443547 -0.264644 -1.095477 -0.125949 -0.784764 -0.038012 -0.025093 -0.235504 0.367992 -0.440374 -0.574657 0.185002 -0.422567 0.176706 -0.045021 -0.874376 0.165483 -0.413167 0.669637 0.081378 0.776586 0.814902 0.885189 0.590094 -0.114772 0.161136 -0.170472 -0.531956 0.157939 0.100867 -0.029014 0.464423 0.842668 0.296935 0.170185 0.728335 0.287308 0.109362 0.807973 0.238615 1.113442 0.011979 -0.116096 -0.020589 -0.289829 0.707841 1.510118 -0.014643 -0.106015 0.272233 0.201167 -0.522581 -0.399507 -0.042933 -0.268874 -0.439697 0.559577 0.217148 -0.080608 -0.197270 1.044000 -0.021199 -1.252706 0.349105 -0.038564 0.388994 0.713964 -0.175623 0.402927 0.320892 -0.315376 0.693419 0.555807 0.653232 -0.582067 -0.752821 -0.017654 0.393487 0.351026 0.355742 -1.408744 0.401738 0.515576 0.960656 0.118770 0.846696 -0.718022 0.002737 0.289024 -0.058056 -0.183036 -0.180532 0.520583 -0.607918 -0.079960 -0.961296 -0.232464 +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.938231 0.566721 0.594704 -1.104525 -1.970079 0.214642 -0.171578 -1.277036 0.133936 0.987890 1.116086 -1.564260 -0.495883 2.315161 -0.639963 -0.872021 -0.023182 -0.906615 -0.160975 -0.488920 0.200350 0.942887 -0.281314 0.056820 -0.181217 0.123543 -0.388700 0.531851 1.005113 -0.634199 -1.382004 -0.287557 0.482289 1.842472 0.446960 -0.609815 -0.037656 2.590267 -1.238024 1.504983 -2.642525 -1.169746 1.151668 0.167841 -0.063517 -2.558653 -1.694452 1.167818 -0.315352 -0.559914 0.966803 -0.121570 -0.092568 -0.175726 0.438332 1.674557 -2.625533 1.800063 0.534338 -0.250835 -0.022559 -0.233036 0.215676 0.817053 -0.912284 -1.266915 0.602999 0.752624 -0.794602 0.369169 -0.763347 -2.460822 1.932679 0.332324 -1.470516 -0.114848 0.297806 -1.824839 1.598184 -1.523017 -1.589035 0.074391 0.213482 0.130854 1.059382 0.128613 0.939499 -2.905717 0.085305 -2.902378 1.121634 -1.884571 1.121123 1.596459 -1.831233 0.062459 0.441841 0.483683 2.501328 0.554937 1.721090 1.154699 1.087781 -0.133386 1.198345 1.341955 -0.303747 -0.507415 -0.867003 -2.018415 0.087838 0.053265 -3.146846 0.554154 -0.677347 0.059403 -0.097616 -0.206050 0.277804 1.762644 -1.897080 -1.236759 0.650110 -0.239107 1.059089 2.414755 -0.853489 0.795836 -1.172556 1.883143 -0.159524 0.889020 -0.174113 0.656264 -1.398072 -2.998973 -2.636261 0.715773 0.992390 -1.602722 -1.911764 -2.699702 0.128293 -0.120637 -0.973603 1.334155 3.180941 -1.198027 -1.776689 1.904370 1.346228 -0.589248 2.203169 -0.332591 3.638705 -1.677314 0.583369 -0.464917 -0.353578 -0.439379 1.027966 0.136135 -0.749540 0.224376 0.031425 -3.407934 1.855791 -0.108646 -1.011453 0.095128 0.140577 -0.131907 -1.114893 2.020717 -0.246348 1.333382 -0.590525 2.157031 -1.101370 -1.822711 1.216105 -0.806339 -0.097006 -0.274182 -0.553459 0.519800 2.010504 -1.454250 -0.505105 -0.305026 -1.167610 -0.869187 0.763676 0.196406 0.274326 0.428989 0.604418 1.186020 2.277581 0.244992 0.878654 -1.955759 0.709592 1.577317 -0.112152 -2.665067 -0.092553 -1.965697 -0.079154 -0.282553 -0.488828 0.878224 -1.008990 -1.160840 -0.168269 -0.885397 1.143827 0.275480 -1.222262 0.803980 -1.216341 1.240758 0.318298 1.783794 1.599633 1.836571 1.588463 -0.462613 0.345149 -0.876166 0.044423 0.656097 0.761028 -0.188918 0.912421 1.586463 0.669595 0.254986 1.652390 0.374474 0.122616 1.859971 0.508397 2.680023 -0.867185 0.550212 -0.506615 -0.864035 1.597863 3.968283 -0.368713 -0.512489 0.665150 0.313690 -0.799942 -1.567979 -0.343629 -0.568341 -1.045487 1.121901 0.344705 -0.240200 -0.648322 2.329047 0.157694 -2.612110 1.439079 -0.005502 0.291407 1.221706 -0.468503 0.149109 0.730190 -1.273760 1.023482 1.495714 1.532671 -1.268271 -1.986024 -0.339245 1.143432 0.957966 0.792654 -3.034695 1.183300 1.867905 2.220274 0.496184 1.087152 -1.789291 -0.869768 0.670900 -0.427364 -0.575912 0.112630 1.238600 -1.634296 0.205868 -1.213870 -0.918544 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__std::remove_reference::type&& std::move(int&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +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) = 2.201411 1.002192 2.447569 -3.901369 -2.254692 1.150779 0.402888 -3.344944 0.882946 5.754837 2.290992 -2.623072 -1.820971 4.416243 -1.874923 -3.326659 1.807112 0.735878 0.296809 -2.076881 0.181477 1.477021 -0.620775 -1.731683 0.675261 -2.023617 1.153876 2.205444 1.221521 0.045783 -2.712556 -0.852058 0.498875 5.879972 0.425086 0.732156 -1.290174 5.537407 -3.039962 5.636570 -7.834218 -4.636900 4.557727 1.228173 0.653258 -6.256428 -2.305314 1.656260 -0.683445 -2.388186 0.860923 -2.149946 1.538615 -2.547824 0.318419 4.851480 -5.528944 1.064663 0.731462 -2.923848 -2.778666 -0.512818 3.160425 2.129879 -3.762553 -3.663200 1.836673 2.218969 -2.920938 1.814829 -3.402806 -6.791407 3.667585 1.673195 -3.345294 0.467301 -0.059419 -5.241182 2.711986 -2.227727 -3.088637 -1.628462 1.910597 -1.119863 1.551575 1.561038 5.201147 -8.204648 1.012744 -6.885330 4.201028 -3.602176 5.394271 4.277506 -2.263667 1.635131 1.775188 2.652348 2.891136 0.379189 5.067431 3.009211 2.708083 -1.544817 3.924908 3.577786 -2.925606 -4.094505 -2.196716 -4.392152 0.260206 -1.099449 -7.853535 0.339500 -4.679208 0.346274 0.387496 -1.245531 -0.343917 5.437815 -7.734626 -3.544360 1.714730 -1.101470 3.581966 4.873062 0.316755 1.605075 -0.213300 4.811540 -1.113834 -0.070021 -1.361137 2.520757 -3.848106 -4.320784 -3.702467 0.615022 2.213033 -4.704052 -5.753751 -6.807904 -2.225763 3.108917 -1.337360 4.658612 8.476937 -2.108558 -5.551836 2.982669 -0.112229 -1.547057 5.880147 0.763785 8.935469 -6.899010 3.684657 -2.235563 2.302856 1.748296 5.989014 -1.202459 -2.835532 2.717176 -1.334644 -4.939631 4.359103 -1.479476 -0.026358 -1.144827 0.601291 -0.986956 -1.901822 5.078971 -4.811726 6.063622 -3.475355 7.479156 -5.446172 -4.815960 1.886045 -5.338432 -2.035830 -2.146010 -0.514974 -0.249511 6.155629 -4.265809 -2.900172 -1.860692 -3.163680 0.456220 4.142225 -2.702858 -0.102107 -0.866507 -1.867405 6.398719 3.768562 0.019152 0.554885 -4.369778 1.253399 4.134179 -0.127241 -6.160514 -0.558177 -4.883818 -0.702088 -1.240187 -0.703651 3.548972 -3.307825 -2.479510 -0.447844 -1.803735 1.307205 -1.908342 -5.442334 2.284002 -2.251702 1.482005 0.509137 6.018899 4.707212 4.462621 1.444087 -2.433412 1.488761 -4.031820 -2.460111 2.525304 2.169620 0.413640 1.881742 4.649569 0.497990 1.469764 4.440526 0.832412 1.353442 4.600551 0.378226 5.893690 -2.453721 1.294379 0.329790 -3.422899 3.358091 8.579983 -0.708528 -1.446994 2.318735 0.961254 -2.545938 -4.705747 -0.966052 -1.432919 -3.151169 3.126540 3.021119 -1.012847 -3.045643 7.911831 1.927802 -8.459000 4.592195 -0.435071 0.552813 4.240529 -2.864770 0.833697 2.564150 -1.017718 2.179377 2.222212 4.357849 -4.768239 -2.000160 -0.565078 3.720024 3.508795 -0.642082 -8.668896 2.328832 3.376197 7.148559 2.536465 6.338898 -3.590210 0.911805 -0.346768 -1.981549 -1.297934 -0.923710 2.945172 -2.323576 -0.282115 -6.248652 0.187989 +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.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +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.182754 0.071419 -0.016312 -0.344654 -0.317575 0.036358 0.147390 -0.096784 -0.054770 -0.023388 0.212576 -0.202136 -0.145118 0.529207 0.032039 -0.194381 0.049897 -0.468880 -0.119403 0.338372 -0.032345 0.252266 -0.085523 0.047113 0.043977 0.249403 -0.221122 0.040799 0.124036 -0.397338 -0.399926 -0.047263 -0.027304 0.299915 0.050093 -0.152296 0.085421 0.581534 -0.253161 0.431614 -0.278075 -0.072850 0.147244 -0.062111 -0.097408 -0.471093 -0.271714 0.299152 0.102197 -0.294008 0.336077 0.034067 -0.173471 -0.034446 0.162231 0.324829 -0.532679 0.330760 0.256968 0.318895 0.156069 -0.108197 -0.009289 -0.055407 -0.125320 -0.222592 0.053821 -0.119989 -0.178337 -0.106277 -0.183083 -0.382965 0.491910 0.211590 -0.208660 0.056775 0.038803 -0.423526 0.316361 -0.485890 -0.368341 0.098693 -0.078029 0.046588 0.431208 -0.097946 -0.016767 -0.480745 0.111709 -0.517480 0.046559 -0.454563 0.075194 0.475116 -0.187666 -0.022611 0.055325 0.057674 0.356354 0.188084 0.343681 0.168392 0.080217 0.017546 0.175545 0.165337 -0.172163 -0.060144 -0.163791 -0.371776 0.014190 0.108538 -0.521551 0.198481 0.049155 0.086424 0.072902 0.091519 0.037253 0.057413 -0.241200 -0.136304 0.058000 -0.054457 0.183408 0.583601 -0.165038 0.004746 -0.388192 0.324054 0.013293 0.367641 -0.057303 0.120305 -0.200881 -0.414222 -0.252512 0.035392 0.138840 -0.227422 -0.320055 -0.538634 0.153150 -0.134896 -0.261329 0.300349 0.569329 -0.277662 -0.198861 0.507448 0.378940 0.125329 0.220182 -0.131832 0.518713 -0.142784 -0.039970 0.091647 -0.171645 -0.279525 -0.118659 0.108322 -0.123786 -0.052264 -0.111587 -0.712305 0.486391 0.174325 -0.229831 0.228027 -0.042625 -0.181065 -0.425742 0.453803 0.117254 0.207056 0.174641 0.416123 0.007803 -0.097873 0.309937 0.151216 0.121582 -0.394741 -0.283867 0.172065 0.148023 -0.215659 -0.044090 0.008866 -0.025216 -0.353091 0.078352 -0.011024 0.057062 0.108265 0.220955 0.051681 0.438498 -0.052888 0.204594 -0.393086 0.197851 0.082162 -0.224507 -0.351963 0.054985 -0.241630 -0.023504 0.248681 -0.139892 0.029246 -0.163650 -0.309545 0.158618 -0.055656 0.187293 0.134431 -0.188678 -0.036626 -0.113425 0.191120 0.195795 0.267820 0.203606 0.369051 0.289989 0.000574 -0.006199 0.217517 -0.209516 -0.122446 -0.159861 0.154594 0.243857 0.096418 0.232436 0.055410 0.248478 0.101889 -0.054497 0.344293 0.249208 0.486116 0.200573 -0.200694 0.032277 -0.156253 0.307582 0.520005 -0.330912 0.055415 0.150628 0.058112 -0.189359 -0.071460 0.040703 -0.160877 -0.307251 0.169754 -0.126494 0.065143 -0.031618 0.376947 -0.214590 -0.470819 0.085783 0.016697 0.249984 0.229539 0.143088 0.218004 0.097728 -0.349304 0.288604 0.299080 0.294540 -0.080241 -0.236918 -0.002070 0.087813 0.001720 0.260370 -0.334275 0.140938 0.211843 0.322590 0.105128 0.030343 -0.183081 -0.112885 0.161268 0.013181 -0.027020 -0.117856 0.253330 -0.164896 -0.134410 -0.275806 -0.141025 +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.847312 0.466385 1.661552 -2.178883 -1.514457 0.562677 0.398607 -1.618121 0.832854 2.510144 1.584773 -1.659444 -1.168771 3.151442 -0.941360 -1.860040 1.085600 -0.265229 0.149385 -0.670529 0.215918 1.098139 -0.285916 -0.548773 0.469031 -0.776905 0.348655 1.593139 0.827222 -0.612089 -1.704394 -0.335631 0.017101 3.095497 0.031140 0.523464 -0.132075 3.548905 -2.342303 3.832603 -4.159980 -2.285335 2.465501 0.591317 -0.130204 -3.265370 -1.516043 1.107761 -1.106881 -1.343515 1.206955 -0.891276 0.690974 -1.182544 0.692561 2.871678 -3.735147 0.848142 0.471026 -1.004392 -1.008133 -0.398936 1.135191 1.087335 -2.053285 -1.896852 1.149808 0.876276 -1.871879 0.808509 -1.427178 -3.527472 2.663553 0.646202 -1.807773 0.428305 0.522856 -2.901988 1.903772 -1.893691 -1.982063 -0.636570 0.923338 -0.697197 1.431978 0.488501 2.570083 -4.596579 0.307070 -3.794716 2.546994 -2.486052 2.577636 2.657445 -1.872097 0.902383 0.922197 1.392049 1.809287 0.511721 2.900606 1.751312 1.486933 -0.666459 2.328347 1.909227 -1.697484 -2.129196 -1.722510 -2.770170 0.177802 -0.586046 -4.527105 0.142059 -2.096284 0.502412 0.478399 -0.600220 0.009836 2.945073 -3.686558 -0.947713 0.929161 -0.483187 1.676723 3.255072 -0.155547 0.780569 -0.364353 2.976834 -0.812604 0.554723 -0.719317 1.290082 -1.830606 -2.681122 -2.151817 0.123607 1.058102 -2.418387 -3.095103 -4.208172 -0.793413 1.575746 -0.727677 2.775785 4.963296 -1.225627 -3.017356 2.149566 0.620943 -0.634292 3.097425 0.143946 4.867817 -3.435226 1.566597 -1.445506 0.861410 0.629376 3.422163 -0.175158 -1.465628 1.214804 -0.535912 -3.771702 3.288357 -0.378756 -0.297636 -0.618986 0.241389 -0.891438 -1.671165 3.275042 -2.043566 3.258628 -1.645836 4.386617 -2.614209 -2.851291 1.389102 -2.345481 -0.573785 -1.725050 -0.870250 0.409625 3.130542 -2.295401 -1.474007 -1.540588 -1.542411 -0.045234 1.761628 -1.176538 0.201771 -0.377190 -0.626505 3.255832 2.521451 0.090494 0.499123 -2.925135 0.652604 2.162871 -0.147593 -3.535227 0.190273 -2.690004 -0.334706 -0.432451 -0.513998 1.725502 -2.059417 -1.741439 -0.296409 -1.033193 0.775558 -0.765854 -3.943276 0.971046 -1.008447 0.939602 0.770346 2.904145 2.855123 2.506487 1.187658 -1.049330 0.558546 -1.599561 -1.339025 1.109482 1.007219 0.307996 1.032194 2.651766 0.630670 0.675805 2.396892 0.817450 0.366713 2.663891 0.674977 3.459156 -0.895690 0.568290 0.080586 -1.621873 2.128456 4.751865 -0.727785 -0.493085 1.349869 1.092928 -1.257428 -2.638072 -0.644961 -1.152629 -1.628584 2.072123 0.836751 -0.560659 -1.341261 4.105043 0.840094 -4.678881 2.205667 -0.418408 0.411754 2.107942 -1.187417 0.095724 1.432317 -1.592795 1.670509 1.160960 2.439343 -2.115973 -1.387675 -0.337528 1.979655 2.122521 0.268070 -4.917202 1.236583 1.877503 3.796296 1.515045 3.417473 -1.925024 0.078591 -0.215219 -1.442917 -0.836793 -0.524785 1.532204 -1.453476 -0.110115 -3.552269 -0.527433 +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.367738 0.321901 0.322524 -0.751710 -0.827942 0.091692 0.299683 -0.398316 0.089406 0.493347 0.554139 -0.519512 -0.143286 1.016298 -0.208952 -0.401765 0.058517 -0.574343 -0.214316 0.203024 0.115754 0.469576 -0.134831 -0.104479 0.011781 0.134933 -0.093435 0.319073 0.194490 -0.285279 -0.686221 -0.121291 0.155636 0.813663 0.083744 -0.261365 0.015052 1.122164 -0.774611 0.848985 -0.952681 -0.536862 0.614134 0.029461 -0.091431 -1.279123 -0.677056 0.497067 0.310736 -0.635260 0.490241 -0.031407 0.057126 -0.245348 0.199896 0.695035 -1.069469 0.391479 0.357216 0.033828 -0.047415 -0.140869 0.214494 0.359618 -0.608461 -0.532779 0.222455 0.067931 -0.259699 0.009090 -0.315025 -1.128906 1.173748 0.254659 -0.573549 0.100152 0.155757 -1.212466 0.771195 -0.615648 -0.695157 0.054742 0.020475 -0.038556 0.622462 -0.162852 0.476898 -1.242903 0.118882 -1.172924 0.478140 -0.884783 0.383031 0.842832 -0.554189 0.068646 0.192408 0.515521 0.876471 0.269929 0.795947 0.640579 0.653979 -0.102936 0.522715 0.661611 -0.469749 -0.474108 -0.578222 -0.943062 0.133336 -0.038065 -1.624376 0.285835 -0.070774 -0.101537 0.115937 -0.257926 0.137612 1.008051 -0.847060 -0.233193 0.370433 -0.108116 0.247800 1.128784 -0.271029 0.194567 -0.435023 0.793877 -0.075780 0.480462 0.001079 0.317595 -0.872286 -0.900095 -0.575325 0.271477 0.294478 -0.624473 -0.780459 -1.292351 0.092499 0.179461 -0.401987 0.401151 1.396325 -0.477256 -0.852351 0.816126 0.844958 -0.311305 0.644736 -0.116133 1.409683 -0.697781 0.173010 -0.247862 -0.111113 -0.177011 0.860530 0.105108 -0.354890 0.231843 -0.305910 -1.790936 1.217222 0.031850 -0.289244 0.359238 0.047581 -0.397470 -0.632741 1.023870 -0.087188 0.748736 -0.211512 1.101751 -0.467547 -0.527724 0.461634 -0.265120 0.000155 -0.765200 -0.310365 0.441712 0.800542 -0.531206 -0.229572 -0.141591 -0.416515 -0.386399 0.409837 -0.616364 0.117205 0.075491 0.150849 0.447595 0.867111 -0.009966 0.225694 -0.775646 0.347558 0.443547 -0.264644 -1.095477 -0.125949 -0.784764 -0.038012 -0.025093 -0.235504 0.367992 -0.440374 -0.574657 0.185002 -0.422567 0.176706 -0.045021 -0.874376 0.165483 -0.413167 0.669637 0.081378 0.776586 0.814902 0.885189 0.590094 -0.114772 0.161136 -0.170472 -0.531956 0.157939 0.100867 -0.029014 0.464423 0.842668 0.296935 0.170185 0.728335 0.287308 0.109362 0.807973 0.238615 1.113442 0.011979 -0.116096 -0.020589 -0.289829 0.707841 1.510118 -0.014643 -0.106015 0.272233 0.201167 -0.522581 -0.399507 -0.042933 -0.268874 -0.439697 0.559577 0.217148 -0.080608 -0.197270 1.044000 -0.021199 -1.252706 0.349105 -0.038564 0.388994 0.713964 -0.175623 0.402927 0.320892 -0.315376 0.693419 0.555807 0.653232 -0.582067 -0.752821 -0.017654 0.393487 0.351026 0.355742 -1.408744 0.401738 0.515576 0.960656 0.118770 0.846696 -0.718022 0.002737 0.289024 -0.058056 -0.183036 -0.180532 0.520583 -0.607918 -0.079960 -0.961296 -0.232464 +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.159384 1.914519 2.804670 -2.510132 -3.433160 0.360354 -0.375063 -1.353560 0.571818 6.199989 0.457070 -1.888600 -2.599384 5.294607 -2.586190 -2.288023 -0.881252 -3.036108 0.081240 -2.239091 0.073918 2.564222 -0.070571 0.616593 0.691414 -1.098562 -0.458902 0.939260 0.058119 -1.281316 -0.840003 -0.590689 -0.061857 3.408972 -0.612028 -0.089563 0.020783 5.184151 -3.596949 4.407115 -6.109952 -5.546966 2.004284 0.722662 1.384091 -3.394062 -0.629395 1.892085 -1.660664 -0.168927 1.651914 0.304386 -1.073763 -0.802791 2.083107 1.487062 -6.792984 3.965522 -0.284175 -1.277064 -1.114154 -0.427845 0.935535 1.087364 -0.712338 -2.065361 0.465998 2.136148 -3.225266 1.328444 0.054160 -2.643271 0.942192 0.886896 -2.134144 1.171872 1.996960 -1.797441 3.054461 -7.293818 -2.980539 -0.470235 1.412318 -1.846335 2.003590 2.639556 2.189977 -5.392098 2.020948 -3.909078 3.024547 -2.788685 1.924601 3.488639 -0.804915 1.584855 1.619717 1.015655 4.378281 -0.011498 3.363364 2.402362 3.065744 1.741054 1.123622 3.046601 -2.837660 -1.289087 -2.887013 -3.869936 -0.298684 -0.874896 -2.726947 -0.142729 0.049168 0.909219 1.863371 -1.008824 -0.799135 2.522813 -8.042354 -3.180151 1.000887 -0.357228 1.799101 2.285442 -0.816294 1.006636 -0.632711 4.062184 -1.989382 1.025051 0.164281 1.178491 -2.106775 -2.206608 -4.498941 0.593805 0.377113 -2.248112 -3.009340 -5.656681 -0.939094 1.543820 -1.035142 5.765082 6.906845 -1.673383 -4.079532 3.870925 -0.831380 -0.449964 3.873380 0.319244 4.173912 -2.224920 -0.230194 -1.832056 -0.283960 0.741793 4.804224 1.494083 -1.141040 1.273078 1.252082 -1.761345 -1.243421 -0.935388 -1.593693 -5.159207 1.082180 -2.189834 0.021464 2.962370 -4.266384 3.545421 -1.990637 4.696336 -2.855535 -3.889403 1.546876 -7.178708 0.096658 -1.754646 -1.319311 -0.113673 2.833982 -4.151136 -1.226099 -2.030934 -2.384313 -1.600607 0.729392 -3.576878 1.118067 0.261140 1.039109 6.969414 3.879264 0.809024 0.781385 -4.210152 0.863421 1.730045 0.275963 -5.919460 1.094978 -2.234233 -0.185526 1.932948 -0.949394 0.850227 -1.570037 -1.517571 -0.772110 -2.301133 1.229734 -0.503657 -2.389566 0.707961 -1.871745 2.952370 1.516936 2.357501 3.606221 2.980259 2.518314 0.276878 0.194973 -2.456327 2.048879 1.778024 2.452369 -1.384434 1.704243 4.036281 1.561298 0.540621 3.499008 2.848056 -2.117351 3.425095 -1.378497 4.933681 -3.579572 1.004000 -1.332483 -0.125987 1.719886 5.812306 -2.728490 -0.083530 2.407557 0.701583 -0.034211 -0.898621 -0.221029 -2.712356 -0.243943 1.880695 2.053609 -1.764014 -0.198095 3.641495 0.537363 -4.678327 3.094955 -0.254032 0.778958 0.878777 -0.584285 -1.293520 2.029979 -4.035377 1.798129 2.473968 2.119540 -3.064159 -1.876311 -0.443009 3.122194 2.990503 2.053484 -6.589276 0.507734 2.852540 3.304835 0.721811 4.007776 -2.524837 -3.344524 1.108950 -1.919213 -2.287748 0.940181 1.811490 -1.594609 1.837540 -1.642137 -2.815346 +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) = 0.251928 0.599351 1.842793 -1.958972 -2.275927 0.375825 0.181791 -0.774058 0.536383 2.822066 0.767600 -1.228697 -1.868201 3.276459 -0.762267 -1.939979 -0.150334 -1.400838 -0.045277 -0.725692 0.088841 1.499207 -0.166343 0.434587 0.424543 -0.598073 -0.332386 1.315915 0.545409 -0.664648 -0.943048 -0.423413 -0.338214 2.506995 -0.337871 0.283400 0.248577 3.987601 -2.594034 3.598586 -3.313186 -3.100220 1.615697 0.356122 0.090627 -2.023051 -0.955877 1.359808 -1.623907 -0.907623 1.774319 0.256349 -0.125505 -0.527807 1.576587 1.460004 -4.303088 1.706158 0.083591 -0.675482 -0.516551 -0.369264 0.141843 0.877908 -1.292914 -1.396437 0.541050 0.728159 -1.700614 0.369522 -0.100280 -2.415035 2.005464 0.905644 -1.546156 0.897047 1.797491 -1.796168 2.276969 -3.135736 -2.422520 -0.299221 0.388829 -1.655904 2.168362 0.869539 1.678700 -3.839537 1.054228 -3.081684 2.169101 -2.386408 1.291227 2.811098 -1.092377 1.089770 1.230634 1.195408 2.240030 -0.286728 2.444459 1.561973 1.761080 1.032122 1.461170 1.694142 -2.205557 -1.408418 -2.479345 -2.820898 0.153576 -1.241871 -2.820182 0.083867 0.028064 0.636432 1.249050 -0.416314 -0.534809 1.970360 -4.342275 -0.623703 0.859382 -0.367926 1.115047 2.349933 -0.816488 0.508859 -0.406420 2.981409 -1.480904 1.095164 -0.162260 0.947451 -1.142855 -0.744282 -2.455696 0.456065 0.575047 -1.503042 -2.272605 -3.707801 -0.545682 1.386936 -0.669922 3.508005 5.061449 -1.361685 -2.558658 2.783586 -0.039733 0.185749 2.164064 0.265363 3.016888 -1.592165 -0.196555 -1.820238 -0.414956 0.223179 3.455270 1.206073 -0.793531 1.208584 0.367127 -1.794673 1.306618 -0.671034 -1.181289 -2.452669 0.636087 -1.655059 -0.925667 2.824380 -2.355722 2.403265 -0.801904 3.451077 -1.609438 -2.386635 1.226108 -3.435364 0.020335 -2.317525 -1.328264 0.386226 1.765770 -2.530426 -0.973507 -1.781891 -1.367327 -1.032208 0.459926 -1.764964 0.652617 0.207103 0.869704 3.909931 3.012232 0.802063 0.062743 -3.148539 0.808198 0.976310 -0.610831 -3.097215 0.689862 -1.497377 -0.137834 1.041913 -0.561384 0.753046 -1.572724 -1.358826 -0.524922 -1.272218 0.631348 -0.069489 -3.598745 0.386517 -0.320717 1.781683 1.572288 1.606624 2.948593 2.321539 2.063223 0.296178 0.189745 -0.676893 -0.126258 0.807764 1.000031 0.068181 1.207227 2.696054 1.221157 0.342237 2.348160 1.958512 -0.533522 2.367374 -0.041405 3.650139 -0.581947 -0.011640 -0.427057 -0.250164 1.453652 4.058428 -1.482743 0.609857 1.739087 1.060022 -0.574893 -1.334348 -0.042364 -1.834099 -0.168616 1.728303 0.723630 -1.026951 -0.316829 2.707593 0.157977 -3.724428 1.409758 -0.167006 0.885580 1.370118 -0.254717 -0.206114 1.165540 -2.834928 2.199248 1.599471 1.473292 -2.082469 -0.735593 -0.179141 1.511013 1.988475 1.450814 -4.222773 0.208994 1.254161 2.556213 0.882288 2.833755 -1.760275 -1.464160 0.766909 -1.750563 -1.260588 0.061103 1.232000 -1.123688 0.898427 -2.348656 -2.067883 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__void std::iter_swap(int*, int*) = 0.143433 0.249664 0.198329 -0.422935 -0.622517 -0.045607 0.095298 -0.115631 -0.011887 0.033784 0.273125 -0.432351 -0.288321 0.758332 -0.163119 -0.383646 -0.138475 -0.429643 -0.229281 0.071967 0.022437 0.338623 -0.048055 0.107994 0.063051 0.140482 -0.209997 0.197072 0.361603 -0.426498 -0.347339 -0.022943 0.133254 0.459987 -0.055527 -0.170252 0.143727 0.852539 -0.299605 0.445149 -0.500069 -0.309944 0.303960 0.003673 -0.102095 -0.768525 -0.510458 0.396929 -0.227432 -0.147043 0.395363 0.176359 -0.271648 -0.106173 0.294712 0.459894 -0.941618 0.656136 0.214647 0.194444 0.100238 -0.073029 -0.086335 -0.022335 -0.050995 -0.315361 0.036411 0.056530 -0.317035 0.033351 -0.049559 -0.503807 0.828349 0.123678 -0.305443 0.196798 0.237333 -0.470155 0.506649 -0.722968 -0.465867 0.084126 0.111543 0.095600 0.550393 -0.040432 -0.009628 -0.736652 0.014586 -0.673641 0.234255 -0.684893 0.115743 0.598065 -0.444688 0.137970 0.089465 -0.098067 0.569074 0.300522 0.524874 0.257753 0.364390 0.109935 0.186506 0.261504 -0.214629 -0.157718 -0.359462 -0.653282 -0.040674 0.067190 -0.932346 0.163038 0.094175 0.134653 0.154491 -0.018938 0.124203 0.228144 -0.446331 -0.158520 0.213665 -0.067068 0.172718 0.746434 -0.246459 0.062358 -0.438056 0.558551 -0.039466 0.411103 0.017473 0.128993 -0.206469 -0.817918 -0.609348 0.079677 0.116053 -0.242738 -0.445676 -0.664787 0.111825 -0.093652 -0.286763 0.335782 0.945378 -0.281184 -0.468561 0.715343 0.539858 0.165684 0.442105 -0.082457 0.853184 -0.241789 -0.087015 -0.063846 -0.238301 -0.156835 -0.016227 0.194283 -0.213421 0.034552 0.029391 -0.980889 0.528653 -0.022980 -0.277744 0.122251 0.043314 -0.296224 -0.461570 0.684079 0.247252 0.515480 0.060173 0.681394 -0.157977 -0.490510 0.353442 -0.032136 0.165965 -0.404075 -0.267842 0.221703 0.308256 -0.397477 -0.128450 -0.094793 -0.172599 -0.410412 0.083688 -0.005426 0.126825 0.081692 0.335693 0.160441 0.661306 -0.029743 0.284963 -0.717513 0.197659 0.192492 -0.139473 -0.776942 0.193245 -0.309518 -0.016012 0.235432 -0.196444 0.013914 -0.125739 -0.370091 0.047864 -0.299809 0.233674 0.056060 -0.258333 0.011203 -0.296209 0.389727 0.183991 0.350936 0.656680 0.445940 0.438450 0.103017 0.081540 0.022606 0.039127 0.000434 -0.009983 0.079774 0.304998 0.377646 0.283861 0.026669 0.440086 0.279864 -0.195467 0.503222 0.276867 0.845545 -0.006192 -0.147239 -0.113150 -0.103252 0.432920 0.972846 -0.307931 0.011787 0.274212 0.270169 -0.084187 -0.386534 -0.095884 -0.241870 -0.358232 0.447405 -0.086246 -0.159765 0.081093 0.504723 -0.131606 -0.646784 0.246658 0.004808 0.213481 0.112682 0.059212 0.011409 0.320503 -0.555083 0.265200 0.352791 0.374708 -0.297625 -0.456639 -0.045475 0.295685 0.065162 0.408232 -0.702344 0.162529 0.437450 0.487196 0.082613 0.214596 -0.336377 -0.434961 0.251858 -0.031948 -0.224746 -0.022880 0.229958 -0.425341 -0.001576 -0.248382 -0.479202 +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.297395 0.586785 0.674730 -0.983190 -1.531578 0.130725 -0.156688 -0.709235 0.050174 0.574519 0.799886 -0.951353 -0.352901 1.687886 -0.692750 -0.741947 -0.344686 -0.466645 -0.282770 -0.354216 0.207323 0.688764 -0.168515 0.023131 -0.068768 -0.115059 -0.129428 0.516937 0.641246 -0.338421 -0.647775 -0.180087 0.298592 1.167936 0.173476 -0.295743 0.108880 1.692525 -0.978103 0.946667 -1.595641 -1.016884 0.847897 0.158308 -0.026605 -1.870558 -1.340045 0.660727 -0.473602 -0.173926 0.688326 -0.004522 0.002480 -0.176968 0.449629 0.861781 -1.873405 1.182597 0.350883 -0.294888 -0.030380 -0.076282 0.064685 0.416712 -0.372378 -0.713139 0.195401 0.654144 -0.411838 0.104740 -0.131688 -1.407020 1.705109 0.091820 -0.763951 0.179998 0.423420 -1.282208 1.098615 -1.255293 -1.108503 0.018438 0.269829 -0.017879 0.823940 0.117358 0.590671 -1.788093 0.011004 -1.719050 0.770336 -1.153206 0.485596 1.026995 -1.135370 0.204693 0.455857 0.178965 1.514132 0.572639 1.095203 0.766101 0.874920 0.195579 0.641769 0.883640 -0.442754 -0.456951 -0.883680 -1.505624 -0.019120 -0.145797 -2.336456 0.275665 -0.032483 -0.000854 -0.050162 -0.397823 0.299675 1.294924 -1.194839 -0.318964 0.513410 -0.128611 0.293891 1.401235 -0.365188 0.393925 -0.607784 1.187909 -0.411677 0.586945 0.058959 0.429838 -0.819561 -1.914261 -1.582485 0.526912 0.361663 -0.788212 -1.048591 -1.576535 0.017650 0.185613 -0.511572 0.663405 2.126127 -0.752980 -1.471712 1.297382 1.178375 -0.355912 1.298539 0.006924 2.071401 -0.787063 -0.026678 -0.582078 -0.518987 -0.114077 0.716389 0.241701 -0.437212 0.436341 0.028265 -2.394061 1.352655 -0.295227 -0.658496 -0.012309 0.296076 -0.576781 -0.612253 1.325156 0.127148 1.141684 -0.337608 1.614339 -0.782682 -1.306981 0.518962 -0.754883 0.023370 -0.485326 -0.269399 0.456907 1.114228 -0.884616 -0.397490 -0.334146 -0.675263 -0.634974 0.448724 -0.373125 0.300645 0.297981 0.343378 0.655986 1.505616 0.155379 0.462011 -1.215547 0.431214 0.827609 -0.044985 -2.124191 0.049795 -1.003998 0.004642 -0.023659 -0.305218 0.525489 -0.464654 -0.585883 -0.152427 -0.834526 0.545579 0.088587 -0.762797 0.376990 -0.876435 1.047944 0.159145 0.956661 1.454005 1.279563 0.991161 0.172394 0.221020 -0.520867 0.289904 0.354527 0.631891 -0.230964 0.633657 1.418996 0.482398 0.288282 1.108809 0.681085 0.009463 1.165899 0.141119 1.834571 -0.482531 0.124422 -0.426849 -0.079249 1.002890 2.467336 -0.092230 -0.139886 0.441825 0.409218 -0.273744 -1.081010 -0.060193 -0.383075 -0.600998 1.053337 0.536279 -0.226110 -0.234820 1.337212 0.117685 -1.549766 0.874314 0.020867 0.360672 0.457334 -0.258703 -0.050947 0.588992 -0.777467 0.704768 0.954645 0.892542 -1.044280 -1.243085 -0.093566 0.847759 0.707434 0.783554 -2.087194 0.668175 1.073474 1.245061 -0.017382 1.051898 -1.130382 -0.796984 0.540563 -0.180479 -0.473738 0.096853 0.475660 -1.100593 0.249943 -0.629926 -0.963087 +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) = 0.929053 0.939165 1.494664 -2.550356 -3.131584 0.739926 -0.395903 -1.502660 0.312335 3.660596 1.113528 -1.566577 -1.802987 3.964832 -1.166207 -2.223721 -0.245307 -2.087763 0.148784 -0.519834 -0.006025 2.036644 -0.456916 0.384004 0.276337 -0.357090 -0.678067 0.919700 1.056273 -0.949699 -1.705325 -0.640253 -0.450812 3.096087 0.212578 -0.389504 0.321529 4.811787 -2.592039 3.563842 -4.225290 -3.506210 1.749540 0.345400 0.283006 -2.670501 -0.995907 1.701586 -1.293249 -0.912003 2.059103 -0.195178 -0.095983 -0.332537 1.503607 1.608439 -5.005266 2.685304 0.491572 -0.324848 -0.328821 -0.630537 0.559390 1.229121 -1.390878 -1.809566 0.644997 1.181074 -1.932585 0.098135 -0.610651 -3.048135 2.422071 1.251080 -2.234239 0.539915 1.329563 -2.629408 2.556010 -4.306895 -3.224609 -0.093649 0.356149 -1.455013 2.463714 1.027134 2.078249 -4.770990 1.583038 -4.240603 2.141151 -2.571947 1.722803 3.512210 -1.580222 0.643731 1.431913 1.578938 3.522701 -0.100893 3.065258 1.841730 1.725611 1.048792 1.339423 2.363155 -2.146176 -1.067373 -2.212916 -3.348547 -0.053231 -0.707657 -3.782604 0.475596 -0.246133 0.935947 1.045199 -0.509814 -0.655806 2.377971 -5.252577 -2.212273 0.531541 -0.425956 1.831203 2.935615 -0.889783 0.946961 -0.864079 3.505875 -1.519936 1.232474 -0.289424 1.281512 -1.963449 -1.572680 -3.582833 0.884575 1.053628 -2.219013 -2.912847 -4.680955 -0.453280 0.830757 -1.092939 4.271481 5.891621 -2.035824 -3.132866 3.645372 -0.337312 -0.237093 3.267033 -0.061007 3.881840 -1.925041 -0.073139 -1.551641 -0.618054 -0.455449 3.352375 1.136775 -0.901330 0.991743 0.132878 -2.117220 0.838232 -0.125596 -1.828022 -2.909150 0.545114 -1.790423 -1.177356 3.146362 -2.929000 2.427894 -0.712797 4.165483 -1.845250 -2.742599 1.723447 -3.773862 -0.061923 -2.114386 -1.522184 0.620285 2.303447 -3.032658 -0.994697 -1.300176 -1.340348 -1.785773 0.763734 -1.479851 0.734797 0.706195 0.973751 4.722374 3.817767 0.771177 0.362203 -3.258560 1.154742 1.534014 -0.981388 -3.831564 0.260644 -2.278573 -0.171554 1.516622 -0.807826 1.154853 -1.843745 -1.763408 -0.493347 -1.216727 1.597740 0.388295 -3.408329 0.871262 -1.025182 2.107280 1.553716 2.242574 2.672747 3.252911 2.586931 0.091950 0.295882 -0.806150 0.426596 0.802345 1.483693 -0.190720 1.681926 3.248373 1.599688 0.759573 2.743304 2.099047 -0.625569 3.028870 -0.445359 4.529391 -1.346560 0.193390 -0.723006 -0.479410 2.018371 5.334126 -2.175674 0.374738 1.717739 0.641740 -0.751525 -1.429788 0.301818 -1.997257 -0.441948 1.224583 1.082788 -0.590540 -0.805370 3.481291 -0.000449 -4.405274 2.263008 -0.069725 1.215605 1.764580 -0.237332 -0.107476 1.119860 -3.269466 2.646017 2.615783 2.027807 -2.244893 -1.269051 -0.223639 2.077196 1.799916 1.857222 -4.459532 0.740975 2.082437 3.138220 1.183225 2.927293 -2.286086 -1.952724 1.176975 -1.617719 -1.254630 -0.075749 1.733107 -1.434139 1.043246 -2.111251 -2.239252 +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.447209 0.405118 0.215964 -1.418625 -1.426654 0.152419 0.276313 -0.439105 -0.024994 1.161786 0.645416 -0.932662 -1.152145 1.976173 -0.058780 -1.173091 0.142438 -1.570225 -0.134887 0.521401 -0.187179 1.110275 -0.246807 0.219325 0.363472 0.439469 -0.823309 0.497813 1.027439 -1.128676 -1.183383 -0.177703 -0.239541 1.490598 0.000000 -0.571282 0.396043 2.633658 -1.332034 1.692046 -1.571571 -1.035895 0.965366 -0.018006 -0.354578 -1.374887 -0.512918 1.124747 -0.680519 -0.774626 1.272628 0.096196 -0.345830 -0.271655 0.760875 1.319541 -2.659249 1.591400 0.657336 0.717435 0.195952 -0.441253 0.103101 0.166392 -0.567554 -1.001761 0.214996 -0.290977 -1.062044 -0.308033 -0.608479 -1.390476 1.496578 0.845844 -1.051955 0.410762 0.341968 -1.499244 1.256259 -2.203968 -1.587050 0.159692 0.065623 -0.415918 1.678906 0.031244 0.412265 -2.316864 0.484529 -2.121783 0.665357 -1.667016 0.730881 2.146834 -0.858272 0.245543 0.319977 0.242242 1.507903 0.057671 1.642992 0.601804 0.737431 0.398119 0.496749 1.038956 -1.070969 -0.396743 -0.891139 -1.553956 -0.064868 0.062952 -1.878739 0.534874 -0.193721 0.486817 0.851005 -0.055984 -0.391711 0.671625 -1.752248 -1.061564 0.105387 -0.269036 1.063880 2.120101 -0.524494 0.159699 -0.918519 1.723560 -0.249281 1.137702 -0.317325 0.643362 -0.685374 -1.082078 -1.418004 0.135884 0.529289 -1.059216 -1.501751 -2.327119 0.165594 -0.446861 -0.791698 1.936237 2.858757 -1.050330 -1.197990 2.206327 0.036558 0.619228 1.343491 -0.376279 2.050560 -0.847461 -0.060430 -0.245724 -0.410280 -0.650487 1.042642 0.541084 -0.575207 -0.019509 -0.157554 -1.246325 0.488280 0.572259 -0.899775 -0.695748 0.028466 -0.929196 -1.380622 1.897463 -0.831505 1.115232 0.225690 2.040331 -0.421092 -1.136766 1.340860 -0.532934 0.235743 -1.518295 -1.289660 0.622735 0.675859 -1.247980 -0.375966 -0.535483 -0.036097 -1.324592 0.321676 -0.232700 0.281810 0.303963 0.763036 1.576891 1.869678 -0.035950 0.500221 -1.891912 0.697793 0.578900 -0.848044 -1.665540 0.330120 -0.983028 -0.173507 1.371967 -0.572105 0.353196 -0.838802 -1.216890 0.277603 -0.256478 0.913322 0.318772 -1.820697 0.309359 -0.420272 0.659694 1.064621 1.195413 1.073048 1.470670 1.154491 0.081751 0.045420 0.348469 -0.310143 -0.097474 -0.085434 0.386078 1.033791 1.044269 1.000723 0.307347 1.223456 0.799192 -0.655517 1.548788 0.408598 2.260778 0.141788 -0.494699 -0.007538 -0.579290 1.113833 2.423126 -1.492490 0.045384 0.953886 0.406637 -0.469783 -0.717345 0.097748 -1.061691 -0.565115 0.611631 -0.300063 -0.209998 -0.181672 1.760072 -0.542382 -2.251553 0.941163 0.015933 0.877288 0.713457 0.293881 0.236600 0.608726 -2.015226 1.345905 1.312859 1.110723 -0.632288 -0.471837 -0.068549 0.821670 0.344985 0.998104 -1.918221 0.131547 0.912727 1.539064 0.925137 0.992508 -0.744981 -0.903899 0.559152 -0.472625 -0.401086 -0.522755 0.928921 -0.760864 0.178673 -1.109718 -0.876346 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::move_backward(int*, int*, int*) = 0.239210 0.523343 0.364938 -0.627307 -1.310408 0.185644 -0.412994 -0.455146 -0.000834 0.118982 0.579432 -0.707791 -0.460930 1.112135 -0.470963 -0.705742 -0.412863 -0.454084 -0.198223 -0.199694 0.072837 0.440884 -0.147227 0.274277 -0.181400 0.069254 -0.272626 0.203529 0.878940 -0.438370 -0.675555 -0.055144 0.136540 0.733373 0.171868 -0.386355 0.331562 1.303349 -0.293191 0.344019 -0.908787 -0.594179 0.250310 0.135991 -0.055134 -1.110556 -0.838168 0.553171 -0.757852 0.136495 0.790555 0.064138 -0.216561 0.168689 0.508511 0.542866 -1.503053 1.315713 0.225534 0.202460 0.320646 -0.067502 -0.084011 0.253899 0.173996 -0.432275 0.153343 0.550492 -0.381281 -0.035194 -0.044606 -0.935645 1.345992 0.109253 -0.654981 0.063316 0.467577 -0.703492 0.773040 -1.211669 -0.954981 0.229537 0.154859 0.164246 0.829030 0.057507 0.064918 -1.167258 0.018656 -1.242105 0.416744 -0.848944 0.219389 0.782810 -0.919316 -0.083639 0.333913 -0.235882 1.244961 0.405280 0.809630 0.345911 0.465745 0.207383 0.213203 0.424204 -0.161415 0.006005 -0.517994 -1.159232 -0.234163 0.140839 -1.577350 0.205397 0.111690 0.353060 0.025762 -0.140692 0.192769 0.387845 -0.702587 -0.557801 0.139809 -0.062988 0.453581 1.110332 -0.415413 0.439709 -0.505858 0.966213 -0.283779 0.438577 0.012576 0.156364 -0.224538 -1.482354 -1.600345 0.480873 0.438749 -0.403788 -0.715534 -0.918057 0.133364 -0.263682 -0.360783 0.587896 1.518858 -0.559756 -0.855630 1.132840 0.572191 0.048196 1.133708 -0.134173 1.424993 -0.387063 -0.106608 -0.278173 -0.529454 -0.464793 -0.166882 0.331075 -0.133199 0.102580 0.238580 -1.199248 0.391169 -0.115883 -0.706462 -0.116532 0.147783 -0.367416 -0.504399 0.904811 0.363409 0.547800 0.257054 1.095262 -0.386710 -1.050535 0.487902 -0.124235 0.231186 -0.149104 -0.387011 0.400594 0.606462 -0.665883 -0.155678 -0.135897 -0.265270 -0.687395 0.023881 0.460585 0.269889 0.370985 0.542551 0.371098 1.352473 0.246106 0.427196 -0.991124 0.302459 0.434690 -0.275664 -1.276261 0.176903 -0.691763 0.081326 0.380286 -0.319322 0.167149 -0.194644 -0.572143 -0.258722 -0.549312 0.762529 0.362265 -0.253844 0.222827 -0.620570 0.648477 0.255477 0.476373 0.938052 0.968357 1.015194 0.140296 0.232750 -0.067892 0.699877 0.006773 0.422727 0.012830 0.453483 0.738224 0.384913 0.097622 0.659299 0.520513 -0.213170 0.777481 0.142335 1.424498 -0.334700 0.119184 -0.510676 -0.099596 0.659309 1.846988 -0.583967 0.110741 0.289637 0.421804 0.083027 -0.874957 0.007612 -0.395664 -0.410615 0.532538 0.152990 -0.101238 -0.119231 0.726086 -0.053743 -0.874607 0.595608 -0.014979 0.188027 0.222026 -0.020284 -0.268496 0.270275 -1.022685 0.518358 0.812532 0.595433 -0.514986 -0.773955 -0.121301 0.599461 -0.028707 0.687005 -0.969822 0.358773 0.915924 0.738978 0.237682 0.293089 -0.787834 -1.014140 0.539014 -0.227602 -0.380374 0.067787 0.397800 -0.801855 0.252146 0.041668 -1.037420 +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.276823 0.726551 1.406322 -1.677064 -2.394469 0.290361 -0.222361 -1.030710 0.277651 1.499864 1.130543 -1.447327 -0.925639 2.937753 -0.991064 -1.430123 -0.438516 -0.727569 -0.272000 -0.706708 0.295241 1.195318 -0.237025 0.201456 0.018679 -0.425460 -0.179073 1.056930 0.869096 -0.419247 -0.943312 -0.344835 0.152652 2.068166 0.090647 -0.134590 0.208295 3.115829 -2.009743 2.307205 -2.759460 -2.114968 1.419785 0.334161 -0.010689 -2.537220 -1.894894 1.088390 -1.208003 -0.432960 1.358808 0.071356 0.064296 -0.306186 1.065171 1.333448 -3.359511 1.698922 0.346068 -0.654806 -0.208962 -0.180295 0.065595 0.801127 -0.944767 -1.176881 0.417389 1.030114 -0.908767 0.207691 -0.105472 -2.341022 2.450828 0.362217 -1.316850 0.479427 1.170490 -1.947903 1.935797 -2.193863 -2.022783 -0.096714 0.369651 -0.754751 1.599759 0.428736 1.301005 -3.157023 0.380802 -2.855184 1.588265 -1.996817 0.927294 1.999459 -1.653481 0.584798 0.960826 0.728162 2.343744 0.490956 1.928091 1.376588 1.435473 0.581637 1.282079 1.500937 -1.215281 -0.990255 -1.854300 -2.559530 0.043036 -0.765060 -3.439680 0.274551 -0.002266 0.164893 0.273158 -0.558357 0.116816 2.125766 -2.661105 -0.345661 0.841829 -0.256892 0.592862 2.223794 -0.675097 0.603761 -0.715994 2.254484 -1.044117 0.932330 0.007554 0.765358 -1.265987 -2.141577 -2.532167 0.770943 0.583226 -1.315088 -1.855942 -2.873580 -0.225475 0.795167 -0.700063 1.922952 3.951790 -1.257430 -2.437784 2.254680 1.246962 -0.357919 2.119358 0.155920 3.176693 -1.344638 -0.122749 -1.408410 -0.745164 -0.025736 1.960680 0.704549 -0.681134 0.964010 0.169462 -3.143797 2.082225 -0.644052 -1.117469 -0.995776 0.619690 -1.161729 -0.893861 2.391641 -0.772008 1.980053 -0.681541 2.852168 -1.381552 -2.211987 0.908968 -2.078254 -0.001871 -1.284577 -0.691325 0.561385 1.820775 -1.750496 -0.772114 -1.047080 -1.226013 -0.947103 0.585473 -0.933700 0.546328 0.407435 0.655528 2.029343 2.657604 0.550978 0.456057 -2.327063 0.713990 1.257341 -0.265391 -3.270265 0.313256 -1.554780 -0.021263 0.136822 -0.469585 0.836232 -1.145897 -1.043293 -0.490167 -1.313811 0.783583 0.097433 -2.225476 0.578194 -0.995791 1.751595 0.767284 1.482455 2.610041 2.155933 1.809706 0.313386 0.284403 -0.810561 0.278136 0.725778 1.114204 -0.242738 1.027787 2.527035 0.892664 0.422769 1.934212 1.430608 -0.051756 1.985644 0.126310 3.163451 -0.587698 0.178722 -0.641552 -0.104855 1.526969 4.025988 -0.469185 0.148654 1.052989 0.834323 -0.488743 -1.718347 -0.058705 -1.008508 -0.632270 1.722188 0.821124 -0.597623 -0.382833 2.275760 0.252053 -2.869334 1.345795 -0.040576 0.642873 0.976203 -0.395149 -0.158666 0.969434 -1.780938 1.582853 1.532691 1.374914 -1.843152 -1.518327 -0.160737 1.366290 1.618390 1.326131 -3.640913 0.884151 1.517764 2.156855 0.244786 2.122079 -1.825035 -1.323701 0.824820 -0.905185 -0.946354 0.145064 0.866345 -1.561808 0.650565 -1.478191 -1.867640 +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.143387 -0.010095 -0.070830 -0.145190 -0.040943 0.025425 0.106778 -0.016377 -0.062286 -0.088970 0.041217 -0.016708 -0.101370 0.206258 0.061759 -0.101765 0.054320 -0.315035 -0.072580 0.262405 -0.056107 0.106002 -0.040539 -0.000851 0.058284 0.171682 -0.132616 -0.051192 -0.026303 -0.302557 -0.204076 -0.028507 -0.030911 0.124335 0.019434 -0.006090 0.023698 0.251877 0.037939 0.231943 -0.112352 -0.024964 0.042241 -0.079723 -0.032098 -0.179228 -0.005959 0.158218 0.127766 -0.181193 0.119480 0.011267 -0.180101 -0.047314 0.040615 0.148883 -0.230938 0.170422 0.138090 0.224523 0.070355 -0.071803 -0.003721 -0.127812 0.020000 -0.107975 0.002863 -0.097487 -0.159302 -0.033188 -0.117930 -0.113989 0.239229 0.149747 -0.060531 0.036260 -0.038312 -0.098865 0.103882 -0.296189 -0.141448 0.030362 -0.038101 0.106834 0.210190 -0.014885 -0.075690 -0.196086 0.105618 -0.212252 -0.015477 -0.195608 0.038134 0.219278 -0.000101 0.006953 0.017841 -0.016674 0.077422 0.113786 0.155680 0.020722 -0.042975 0.004917 0.055758 -0.015402 -0.064717 -0.007075 0.001423 -0.118324 0.010249 0.121147 -0.148419 0.105389 0.016129 0.152613 0.045551 0.153557 0.027377 -0.170735 -0.179390 -0.118171 0.002956 -0.028477 0.151046 0.227252 -0.061395 -0.037857 -0.219044 0.114492 0.041558 0.171219 -0.047220 0.058539 -0.006182 -0.148394 -0.045399 -0.050869 0.057555 -0.098913 -0.140610 -0.221988 0.082308 -0.048364 -0.152685 0.187863 0.216974 -0.124619 -0.014459 0.230634 0.143828 0.146757 0.053439 -0.060296 0.166984 -0.040421 -0.023439 0.177882 -0.046181 -0.129649 -0.266919 0.024591 -0.075654 -0.058240 -0.053353 -0.245502 0.186830 0.118614 -0.087196 0.180450 -0.090972 -0.084192 -0.221581 0.151524 0.119105 0.097359 0.150197 0.167431 0.039054 0.047142 0.144459 0.120281 0.059809 -0.188534 -0.141970 0.018690 -0.003444 -0.142125 -0.015611 0.079084 0.014278 -0.177705 0.059879 0.049397 0.008596 0.039413 0.091760 0.021265 0.141007 -0.086989 0.093690 -0.167664 0.091584 -0.024467 -0.106458 -0.058066 0.029752 -0.062771 -0.022296 0.233771 -0.060467 -0.031850 -0.019794 -0.128029 0.140367 0.030503 0.081418 0.064005 0.091818 -0.106622 0.017845 0.014294 0.099862 0.132988 0.018834 0.126760 0.064562 -0.012165 -0.020440 0.168733 -0.131255 -0.141598 -0.181875 0.172531 0.116489 -0.110815 0.123373 0.021664 0.105546 0.021222 -0.042334 0.158227 0.160204 0.187353 0.084022 -0.149116 0.071179 -0.099951 0.139930 0.110590 -0.327535 0.063549 0.076578 -0.011208 -0.076733 0.082173 0.023136 -0.070104 -0.202776 0.052140 -0.091404 0.089007 -0.011862 0.173967 -0.154336 -0.195452 0.031479 0.026158 0.140348 0.093278 0.116041 0.145299 0.052085 -0.147839 0.046563 0.113113 0.155941 -0.003070 -0.046813 0.003113 0.019992 -0.106197 0.109271 0.027874 0.012094 0.069979 0.128365 0.061454 -0.146798 -0.016874 -0.030313 0.043977 0.045098 0.027242 -0.046017 0.128133 0.036550 -0.164716 -0.119503 0.017167 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a(int*, int*, int*) = 0.273408 0.691867 0.444199 -0.631235 -1.641357 0.300290 -0.848832 -0.633409 -0.017525 0.137516 0.641919 -0.826028 -0.604879 1.155880 -0.721905 -0.935397 -0.665899 -0.344668 -0.166555 -0.522405 0.081473 0.437792 -0.169751 0.357692 -0.304043 -0.065902 -0.274345 0.154612 1.242129 -0.417163 -0.710527 -0.056544 0.185800 0.835857 0.275195 -0.432043 0.435272 1.446387 0.012775 0.071074 -1.128555 -0.823057 0.194971 0.218352 0.022335 -1.172604 -0.880745 0.582673 -1.244762 0.510591 0.868845 0.006776 -0.250136 0.309134 0.573812 0.504327 -1.791568 1.814214 0.139045 0.120735 0.377504 -0.037876 -0.105421 0.351440 0.514013 -0.461636 0.158489 0.963210 -0.493518 0.013852 0.039205 -0.998838 1.602653 0.034697 -0.805466 0.005788 0.566636 -0.572390 0.811089 -1.520140 -1.134941 0.261225 0.306080 0.315127 0.876948 0.234445 0.050649 -1.320375 -0.000888 -1.439660 0.524050 -0.809154 0.293580 0.764300 -1.194701 -0.147548 0.465276 -0.485141 1.547602 0.465444 0.924781 0.271818 0.486352 0.310588 0.087365 0.410317 -0.020109 0.165164 -0.491089 -1.364196 -0.410784 0.233014 -1.837147 0.160762 0.074599 0.628223 -0.053942 -0.179833 0.243184 0.300827 -0.909459 -0.916169 0.059239 -0.048441 0.660589 1.102797 -0.452836 0.667504 -0.455541 1.144957 -0.420438 0.300030 0.025155 0.144225 -0.049937 -1.875309 -2.249782 0.672001 0.579050 -0.427691 -0.804548 -0.856913 0.071144 -0.352100 -0.347508 0.717806 1.738878 -0.635892 -1.048457 1.294486 0.376171 0.050178 1.574013 -0.103664 1.621791 -0.419185 -0.129186 -0.347854 -0.645027 -0.515496 -0.459530 0.363002 -0.087208 0.134448 0.477933 -0.956474 -0.036108 -0.249624 -0.906729 -0.399999 0.185996 -0.377572 -0.391815 0.868317 0.478634 0.587676 0.346459 1.265708 -0.557329 -1.453535 0.482633 -0.262307 0.228599 0.232166 -0.348093 0.388292 0.705758 -0.870307 -0.182613 -0.094877 -0.299607 -0.791093 -0.014461 0.919177 0.342089 0.512531 0.614335 0.550872 1.638648 0.370396 0.474611 -1.097173 0.288027 0.565904 -0.244885 -1.512840 0.193901 -0.808664 0.137549 0.532552 -0.361410 0.209773 -0.090295 -0.572762 -0.508711 -0.687199 1.104551 0.498677 0.023959 0.340501 -0.810947 0.701595 0.229655 0.496802 1.089604 1.133187 1.234242 0.199847 0.347862 -0.229260 1.356828 0.016070 0.739472 -0.024790 0.486904 0.883423 0.407039 0.129240 0.751806 0.676699 -0.301995 0.877536 -0.020231 1.712125 -0.772117 0.347133 -0.792688 -0.039229 0.730897 2.251641 -0.844731 0.147233 0.289647 0.514260 0.354117 -1.193855 0.021805 -0.450031 -0.395798 0.548550 0.329954 -0.097562 -0.200986 0.765395 0.052700 -0.854400 0.903514 -0.003776 0.079506 0.088058 -0.102930 -0.612752 0.295009 -1.275123 0.438730 1.014636 0.667626 -0.655487 -0.882346 -0.185453 0.850930 -0.205901 0.817100 -0.889739 0.387087 1.227840 0.803106 0.325475 0.194741 -0.970302 -1.498854 0.663388 -0.319987 -0.498269 0.211085 0.384664 -0.961985 0.443163 0.443865 -1.401072 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__miter_base(int*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_wrap(int* const&, int*) = 0.095365 0.150091 0.103262 -0.361374 -0.403355 -0.030648 0.233838 -0.030472 -0.000936 -0.131620 0.277536 -0.309096 -0.270787 0.565680 0.028288 -0.280839 0.013191 -0.430267 -0.211371 0.250186 0.002638 0.228864 -0.044950 0.071824 0.061071 0.226793 -0.210872 0.194624 0.271549 -0.422381 -0.387532 0.010655 0.066692 0.341299 -0.049532 -0.152817 0.140600 0.659592 -0.342683 0.431835 -0.273249 -0.081019 0.236480 -0.024677 -0.188844 -0.607989 -0.411340 0.346908 -0.116642 -0.283402 0.408709 0.136581 -0.190612 -0.088568 0.238033 0.478424 -0.704970 0.404830 0.233208 0.298030 0.159213 -0.066978 -0.074769 -0.056403 -0.073079 -0.249036 0.060753 -0.164263 -0.215209 -0.060588 -0.122874 -0.451862 0.701453 0.150475 -0.210878 0.153199 0.164847 -0.456886 0.407617 -0.454733 -0.354601 0.102987 0.001419 0.081530 0.519815 -0.160333 -0.097073 -0.540425 -0.072409 -0.521353 0.140874 -0.597926 0.063889 0.493997 -0.298049 0.055268 0.024920 -0.116978 0.332449 0.213707 0.402809 0.164867 0.260226 0.007342 0.207586 0.154063 -0.223016 -0.149220 -0.302821 -0.486066 0.005989 0.069450 -0.696974 0.170269 0.061216 0.051386 0.174649 0.010254 0.093084 0.124032 -0.134513 0.036442 0.154715 -0.058299 0.142961 0.739382 -0.211906 -0.003167 -0.378111 0.415836 0.032575 0.426875 -0.034234 0.090720 -0.100279 -0.609530 -0.307006 0.029810 0.124746 -0.181455 -0.348880 -0.532462 0.173050 -0.148895 -0.248983 0.187291 0.701713 -0.223188 -0.277044 0.554519 0.540162 0.223426 0.228818 -0.118523 0.688385 -0.213329 -0.027139 -0.002168 -0.185823 -0.210085 -0.015426 0.145256 -0.161416 -0.021203 -0.044757 -0.898849 0.595732 0.085052 -0.189929 0.359609 -0.010082 -0.223465 -0.519710 0.592407 0.329286 0.345477 0.180995 0.511087 -0.049322 -0.277129 0.339829 0.277319 0.170928 -0.474134 -0.343693 0.260526 0.168097 -0.220460 -0.071623 -0.121371 -0.038494 -0.331250 0.060108 -0.004468 0.079526 0.038917 0.273551 -0.078141 0.503669 -0.054483 0.246849 -0.580465 0.180296 0.082495 -0.199344 -0.495115 0.159676 -0.246958 -0.011091 0.247746 -0.170756 0.006138 -0.127268 -0.366627 0.154153 -0.177894 0.134087 0.061026 -0.334154 -0.053246 -0.133995 0.221409 0.215574 0.284738 0.447776 0.350324 0.336024 0.046887 0.039018 0.199590 -0.225814 -0.115596 -0.201942 0.197856 0.254054 0.152410 0.215425 -0.010115 0.307172 0.144458 -0.119663 0.376782 0.371720 0.585259 0.278100 -0.227912 0.018552 -0.179154 0.334379 0.649423 -0.258022 0.033768 0.212224 0.242878 -0.144951 -0.265315 -0.061704 -0.203744 -0.335843 0.396902 -0.191083 -0.073110 0.049878 0.405153 -0.184859 -0.538568 0.065113 -0.013739 0.218111 0.177103 0.099807 0.145370 0.190490 -0.444561 0.283477 0.238644 0.319186 -0.144391 -0.301433 -0.017679 0.118747 -0.008020 0.272093 -0.554196 0.068977 0.231869 0.387256 0.134731 0.140748 -0.221960 -0.182595 0.159743 -0.012067 -0.094330 -0.132603 0.230601 -0.314437 -0.112920 -0.349386 -0.241626 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a1(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__niter_base(int*) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__int* std::__copy_move_backward_a2(int*, int*, int*) = 0.207459 0.379502 0.310352 -0.608245 -0.990371 0.071484 0.005811 -0.264629 0.039052 0.099123 0.520945 -0.605670 -0.321971 1.070772 -0.238270 -0.481255 -0.176038 -0.554894 -0.240277 0.098788 0.075985 0.424339 -0.115140 0.203573 -0.077379 0.200376 -0.254595 0.249522 0.528797 -0.452484 -0.658574 -0.035160 0.102978 0.622661 0.051900 -0.346715 0.244131 1.144528 -0.592924 0.604185 -0.682722 -0.370296 0.279232 0.074408 -0.125076 -1.043729 -0.801947 0.522339 -0.294429 -0.223437 0.729130 0.135529 -0.200205 0.039355 0.463994 0.582938 -1.231409 0.834473 0.286956 0.299511 0.275089 -0.087219 -0.051725 0.175853 -0.143107 -0.395059 0.162723 0.161997 -0.281814 -0.065724 -0.115141 -0.892653 1.096507 0.169513 -0.514000 0.121132 0.404158 -0.829705 0.746764 -0.919679 -0.764056 0.215955 0.016997 0.019469 0.785418 -0.115454 0.060958 -1.004339 0.028481 -1.027001 0.325524 -0.899460 0.137552 0.784750 -0.651283 -0.034597 0.195985 0.004329 0.958718 0.351390 0.693304 0.428558 0.469343 0.081994 0.335568 0.430779 -0.301833 -0.150426 -0.555763 -0.974476 -0.075497 0.050916 -1.326105 0.232621 0.157455 0.086366 0.118573 -0.114303 0.148799 0.464530 -0.505813 -0.213093 0.220314 -0.070128 0.251072 1.127149 -0.394855 0.234647 -0.539960 0.802204 -0.138376 0.553001 0.011966 0.139506 -0.396556 -1.100638 -0.983497 0.305878 0.310417 -0.360960 -0.623562 -0.973893 0.196671 -0.172729 -0.358913 0.458839 1.299276 -0.453375 -0.661409 0.957167 0.771911 0.045056 0.718145 -0.170707 1.251410 -0.375475 -0.059735 -0.214980 -0.397276 -0.420363 0.117030 0.307653 -0.165517 0.066405 0.021932 -1.437706 0.793841 -0.001211 -0.493727 0.157367 0.116826 -0.349937 -0.603976 0.949079 0.258782 0.506440 0.175620 0.926477 -0.236554 -0.674164 0.493300 0.011264 0.249048 -0.515788 -0.432139 0.413968 0.529376 -0.465884 -0.119828 -0.183581 -0.242624 -0.565542 0.043006 0.017825 0.201928 0.213380 0.480395 0.192648 1.077137 0.137635 0.391732 -0.907789 0.300603 0.300928 -0.313126 -1.039918 0.179673 -0.590715 0.038885 0.217220 -0.287063 0.103466 -0.298141 -0.592422 -0.031089 -0.435513 0.425863 0.212114 -0.524485 0.098601 -0.445096 0.607534 0.277364 0.442574 0.812437 0.797727 0.821405 0.059396 0.136504 0.074389 0.070647 0.004324 0.115739 0.045703 0.406989 0.595270 0.333231 0.038730 0.559623 0.364397 -0.146463 0.666785 0.311493 1.133625 0.097499 -0.082885 -0.253559 -0.178413 0.573962 1.468151 -0.335172 0.083234 0.286727 0.359610 -0.167437 -0.569240 -0.029325 -0.352845 -0.425056 0.519003 -0.032599 -0.126425 -0.025793 0.667787 -0.138713 -0.878993 0.269862 -0.045384 0.267391 0.363574 0.038961 0.052447 0.239452 -0.787559 0.592895 0.590341 0.515334 -0.369312 -0.675315 -0.067617 0.352563 0.127171 0.539162 -1.051450 0.335966 0.619794 0.674074 0.167060 0.391851 -0.620148 -0.545066 0.410759 -0.152763 -0.280651 -0.071690 0.422335 -0.660003 0.071199 -0.348396 -0.703620 +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.147499 0.129769 0.764671 -1.066827 -0.931898 0.409492 0.391097 -1.185143 0.352818 1.564573 0.779401 -0.951064 -0.543330 1.431531 -0.204323 -0.855676 0.799674 -0.567243 0.065779 -0.580294 -0.101781 0.470337 -0.256160 -0.174199 0.032656 -0.287522 0.028789 0.599247 0.081814 -0.483126 -1.276657 -0.299392 0.095105 2.074669 0.321215 -0.203270 -0.398749 2.341657 -0.672103 1.932068 -2.519788 -1.055590 1.161768 0.152193 0.035512 -1.844474 -0.771339 0.982003 0.503488 -1.137081 0.611045 -0.482737 0.255802 -0.576794 0.037741 1.854185 -1.903833 0.428165 0.353568 -0.737651 -0.755500 -0.167219 0.876590 0.960832 -1.501554 -1.362886 1.075152 0.555346 -0.919602 0.671172 -1.254142 -2.824576 1.151986 0.797291 -1.313559 -0.059944 0.220064 -1.653630 1.311734 -0.351772 -1.313141 -0.384527 0.188934 -0.675321 0.909288 0.020965 1.561885 -2.988231 0.613749 -2.774777 1.280578 -1.672739 1.730554 1.601652 -0.783095 0.394378 0.524689 1.086193 1.254226 -0.151574 1.793487 0.973430 0.848983 -0.418249 1.617817 0.996438 -0.705365 -1.106667 -0.804956 -1.527606 0.331560 -0.253295 -2.248445 0.513196 -1.441552 0.123533 0.127306 0.185091 -0.121596 1.951217 -2.313835 -1.277574 0.747449 -0.426105 1.369895 2.205009 -0.557369 0.696277 -0.613130 1.851579 -0.203704 0.434283 -0.491321 0.800429 -1.117677 -1.284544 -1.714940 0.311849 1.207804 -1.772599 -2.164246 -2.418995 -0.499268 0.638454 -0.826825 2.230597 3.211865 -1.005749 -1.473882 1.289387 0.437296 -0.473852 1.907238 0.006230 3.481531 -2.384591 1.178634 -0.733094 0.646938 0.182510 1.737533 -0.192613 -0.685198 0.753940 -0.148992 -1.786339 2.427092 -0.372740 -0.431806 0.703798 0.068505 0.289473 -1.209724 1.841905 -0.878374 1.643878 -0.486119 2.415791 -1.406247 -1.369439 1.021780 -0.839946 -0.420960 -0.595585 -0.262942 -0.076676 2.186494 -1.284001 -0.843137 -0.417691 -1.507319 -0.046698 1.161810 0.266280 0.188074 -0.035250 -0.159060 1.977855 1.850587 0.273778 0.244674 -1.947992 0.673465 1.345904 -0.208544 -1.319299 -0.371483 -1.792730 -0.215504 -0.510475 -0.247478 1.201306 -1.456378 -1.089128 -0.076725 -0.357357 0.579103 -0.181406 -2.357285 0.748651 -0.498021 0.595030 0.307265 2.066711 1.598155 1.651613 1.116479 -1.150046 0.328777 -0.897165 -1.244200 0.574803 0.363072 0.627704 0.721541 1.152037 0.308691 0.300505 1.605405 -0.137802 0.759764 1.710869 0.368811 2.308351 -0.749846 0.526269 -0.007765 -1.430048 1.455396 3.330406 -0.331140 -0.450472 0.862693 0.374678 -1.352501 -1.675140 -0.370293 -0.570154 -0.638340 0.777500 0.678353 -0.303524 -1.085793 2.759861 0.471112 -3.140859 1.283521 -0.067557 0.172553 2.051346 -0.682216 0.784424 0.646677 -0.670612 0.912620 1.030739 1.557390 -1.579351 -0.901446 -0.249066 0.975320 0.444666 0.030318 -3.107658 0.774452 1.198646 2.483364 0.968811 1.651923 -1.614363 0.315381 0.398667 -0.835311 -0.439019 0.160168 1.541154 -1.239731 0.036898 -2.350810 0.169728 +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.367738 0.321901 0.322524 -0.751710 -0.827942 0.091692 0.299683 -0.398316 0.089406 0.493347 0.554139 -0.519512 -0.143286 1.016298 -0.208952 -0.401765 0.058517 -0.574343 -0.214316 0.203024 0.115754 0.469576 -0.134831 -0.104479 0.011781 0.134933 -0.093435 0.319073 0.194490 -0.285279 -0.686221 -0.121291 0.155636 0.813663 0.083744 -0.261365 0.015052 1.122164 -0.774611 0.848985 -0.952681 -0.536862 0.614134 0.029461 -0.091431 -1.279123 -0.677056 0.497067 0.310736 -0.635260 0.490241 -0.031407 0.057126 -0.245348 0.199896 0.695035 -1.069469 0.391479 0.357216 0.033828 -0.047415 -0.140869 0.214494 0.359618 -0.608461 -0.532779 0.222455 0.067931 -0.259699 0.009090 -0.315025 -1.128906 1.173748 0.254659 -0.573549 0.100152 0.155757 -1.212466 0.771195 -0.615648 -0.695157 0.054742 0.020475 -0.038556 0.622462 -0.162852 0.476898 -1.242903 0.118882 -1.172924 0.478140 -0.884783 0.383031 0.842832 -0.554189 0.068646 0.192408 0.515521 0.876471 0.269929 0.795947 0.640579 0.653979 -0.102936 0.522715 0.661611 -0.469749 -0.474108 -0.578222 -0.943062 0.133336 -0.038065 -1.624376 0.285835 -0.070774 -0.101537 0.115937 -0.257926 0.137612 1.008051 -0.847060 -0.233193 0.370433 -0.108116 0.247800 1.128784 -0.271029 0.194567 -0.435023 0.793877 -0.075780 0.480462 0.001079 0.317595 -0.872286 -0.900095 -0.575325 0.271477 0.294478 -0.624473 -0.780459 -1.292351 0.092499 0.179461 -0.401987 0.401151 1.396325 -0.477256 -0.852351 0.816126 0.844958 -0.311305 0.644736 -0.116133 1.409683 -0.697781 0.173010 -0.247862 -0.111113 -0.177011 0.860530 0.105108 -0.354890 0.231843 -0.305910 -1.790936 1.217222 0.031850 -0.289244 0.359238 0.047581 -0.397470 -0.632741 1.023870 -0.087188 0.748736 -0.211512 1.101751 -0.467547 -0.527724 0.461634 -0.265120 0.000155 -0.765200 -0.310365 0.441712 0.800542 -0.531206 -0.229572 -0.141591 -0.416515 -0.386399 0.409837 -0.616364 0.117205 0.075491 0.150849 0.447595 0.867111 -0.009966 0.225694 -0.775646 0.347558 0.443547 -0.264644 -1.095477 -0.125949 -0.784764 -0.038012 -0.025093 -0.235504 0.367992 -0.440374 -0.574657 0.185002 -0.422567 0.176706 -0.045021 -0.874376 0.165483 -0.413167 0.669637 0.081378 0.776586 0.814902 0.885189 0.590094 -0.114772 0.161136 -0.170472 -0.531956 0.157939 0.100867 -0.029014 0.464423 0.842668 0.296935 0.170185 0.728335 0.287308 0.109362 0.807973 0.238615 1.113442 0.011979 -0.116096 -0.020589 -0.289829 0.707841 1.510118 -0.014643 -0.106015 0.272233 0.201167 -0.522581 -0.399507 -0.042933 -0.268874 -0.439697 0.559577 0.217148 -0.080608 -0.197270 1.044000 -0.021199 -1.252706 0.349105 -0.038564 0.388994 0.713964 -0.175623 0.402927 0.320892 -0.315376 0.693419 0.555807 0.653232 -0.582067 -0.752821 -0.017654 0.393487 0.351026 0.355742 -1.408744 0.401738 0.515576 0.960656 0.118770 0.846696 -0.718022 0.002737 0.289024 -0.058056 -0.183036 -0.180532 0.520583 -0.607918 -0.079960 -0.961296 -0.232464 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/little-and-big-endian-mystery.cpp__show_mem_rep(char*, int) = 0.652815 0.409621 0.604077 -0.725267 -0.297653 0.141400 0.537486 -0.621879 0.014157 1.801712 0.521105 -0.609266 -0.965367 1.055075 -0.318743 -0.854168 0.476433 -0.250038 -0.155447 -0.348072 -0.209295 0.358033 -0.110772 -0.763913 0.605043 -0.210058 0.106793 0.756452 0.084823 -0.069591 -0.631044 -0.089127 0.274763 1.662487 -0.101220 0.022877 -0.130386 1.588294 -1.529267 1.382856 -1.805811 -1.605731 1.753080 0.168686 0.052732 -1.087798 -0.121733 0.789705 -0.544151 -1.013382 0.203609 -0.362447 0.198306 -1.091519 -0.009061 1.632250 -2.227925 0.605715 0.298635 -0.567275 -1.129048 -0.220857 0.800869 0.138506 -0.518714 -1.136989 0.259590 0.079194 -0.886775 0.355476 -1.046913 -1.637622 1.027130 0.272155 -0.577235 0.430450 -0.194834 -1.093736 0.839760 -0.813154 -0.675020 -0.534141 0.641500 -0.202756 0.662272 0.707510 0.928270 -2.247680 0.051827 -1.716270 1.264255 -1.022414 1.412413 1.297030 -0.699679 0.711567 0.379836 0.475897 0.379272 -0.051980 1.467726 0.409341 0.929877 -0.250147 0.699986 1.016073 -1.323262 -1.204081 -0.933164 -1.054766 0.242589 -0.232980 -1.569916 0.141762 -1.296311 0.192972 0.700487 -0.561242 -0.221495 1.232811 -2.318900 -0.532823 0.459541 -0.262094 1.221702 1.298162 0.061696 0.182458 -0.022740 1.274677 -0.116961 -0.044603 -0.362662 0.771871 -0.540004 -1.259446 -0.623050 0.065290 0.496091 -1.311716 -1.522358 -2.153926 -0.225943 0.633428 -0.489283 1.129200 2.390904 -0.445037 -1.294144 0.946673 -0.272003 0.165213 1.425930 0.216148 2.306573 -1.871305 0.909806 -0.157501 0.584510 0.706474 1.407933 -0.379467 -0.958621 0.605114 0.032992 -0.705235 0.800102 -0.080146 0.135749 -0.305182 0.216550 -0.448231 -0.531782 1.466846 -0.952270 1.470371 -0.692273 2.044266 -1.418321 -1.225036 0.705555 -1.435219 -0.562255 -1.004545 -0.686979 -0.015151 1.179071 -1.355607 -0.749217 -0.743337 -0.290163 -0.052796 1.285251 -0.911764 0.009021 -0.404719 -0.480246 1.272506 0.650591 -0.397854 0.220248 -1.472539 0.146929 0.892869 -0.131754 -1.991542 -0.019762 -1.142995 -0.203091 0.588142 -0.231433 0.893224 -0.670034 -0.653655 0.530733 -0.458174 0.123873 -0.715883 -1.133235 0.391999 -0.462253 0.127357 0.545972 1.834383 1.307099 1.007327 0.067756 -0.222025 0.317552 -0.879034 -0.889114 0.485046 -0.041451 0.708996 0.739525 0.778559 0.269697 0.341078 0.915015 0.149156 -0.100263 1.491933 0.580675 1.524515 -0.553184 0.125692 0.403454 -0.867858 0.915235 1.551207 -0.846787 -0.619888 0.724193 0.138263 -0.526649 -0.556005 -0.291612 -0.619025 -0.806854 0.980125 0.625722 -0.363312 -0.611688 2.256703 0.161923 -2.407715 1.306427 -0.026292 0.447704 0.884272 -0.638992 0.361952 0.803320 -0.306886 0.512009 0.543152 1.346956 -1.364151 -0.089065 -0.105878 1.193006 0.821321 -0.187087 -2.671387 0.175662 0.545714 1.659163 0.737241 1.502191 -0.806738 0.207223 -0.437754 -0.468662 -0.101731 -0.418776 0.912634 -0.357390 -0.016250 -1.971282 0.353574 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.221849 0.185791 0.128074 -0.384225 -0.386253 0.017662 0.006245 -0.125385 -0.062731 -0.252655 0.219565 -0.293030 -0.399623 0.400362 -0.133816 -0.435257 -0.030520 -0.522634 -0.192489 -0.015624 -0.084262 0.140113 -0.053671 -0.042159 0.110925 0.083721 -0.179977 0.247313 0.541356 -0.497565 -0.343306 0.025171 0.089900 0.513244 0.043927 -0.272633 0.253488 0.818560 0.076975 0.000360 -0.325692 -0.186077 0.401923 -0.068917 -0.282181 -0.569467 -0.305810 0.346967 -0.593395 0.141277 0.304648 0.024077 -0.221071 -0.171449 0.064209 0.607116 -0.990896 0.797766 0.193722 0.322143 0.044027 -0.171533 -0.044626 -0.198553 0.321976 -0.316346 0.140420 0.009492 -0.436383 0.055439 -0.198473 -0.332452 0.900418 0.148974 -0.143978 0.161751 0.062458 -0.342796 0.305007 -0.544812 -0.391531 -0.004819 0.175089 0.181601 0.671325 -0.143902 -0.229851 -0.670524 -0.163656 -0.671214 0.082254 -0.619090 0.221143 0.517748 -0.566821 0.183596 0.009212 -0.348398 0.179360 0.167729 0.544679 -0.035846 0.202555 0.065884 0.132960 0.019899 -0.036761 -0.026864 -0.122586 -0.407553 -0.218480 0.166945 -0.875569 0.182764 -0.226435 0.183167 0.102868 0.062291 -0.006819 0.004669 -0.197203 -0.263021 0.034329 -0.099492 0.351874 0.657075 -0.157982 0.056853 -0.346003 0.522867 0.081098 0.290388 -0.169402 0.132815 0.230059 -0.977730 -0.703954 -0.031594 0.230694 -0.221942 -0.571679 -0.330498 0.020449 -0.389451 -0.229664 0.384716 0.783391 -0.152363 -0.401687 0.677013 0.274696 0.496110 0.621416 -0.030971 0.734468 -0.263394 0.017967 0.064375 -0.121430 -0.168777 -0.668056 -0.052015 -0.144438 -0.011727 0.147814 -0.246294 0.282334 0.057696 -0.203117 0.343528 -0.103432 -0.274302 -0.648879 0.632729 0.676568 0.504602 0.372482 0.727571 -0.176335 -0.622245 0.336225 0.398014 0.208638 -0.186220 -0.262300 0.117645 0.125980 -0.326084 -0.280632 -0.024118 0.157670 -0.326208 0.215607 0.673802 0.105544 0.045409 0.230825 -0.110054 0.581657 -0.234070 0.359107 -0.670739 0.154093 0.305298 -0.072694 -0.599929 0.199504 -0.120139 -0.041390 0.492565 -0.091460 0.089506 -0.048236 -0.357188 0.147864 -0.046866 0.343263 0.127977 -0.279186 0.078808 -0.259703 -0.086553 0.213930 0.398451 0.561640 0.241218 0.203526 0.013972 0.092122 0.096141 0.176657 -0.263806 -0.094820 0.401630 0.254972 0.202018 0.252219 0.043140 0.284643 0.305875 -0.270601 0.430714 0.419365 0.750831 -0.110744 -0.162293 -0.100243 -0.206938 0.458582 0.784081 -0.470382 -0.088338 0.269264 0.385782 0.126934 -0.721913 -0.156351 -0.204280 -0.238441 0.338983 -0.158214 -0.145585 0.029096 0.583296 -0.120637 -0.565897 0.393874 0.120655 0.147692 -0.094783 0.026758 -0.144207 0.351782 -0.614162 0.108792 0.261015 0.381716 -0.192714 -0.177333 -0.021827 0.383742 -0.458849 0.294486 -0.327239 0.035466 0.366888 0.447537 0.393429 -0.027347 -0.156073 -0.497800 0.107775 0.003831 -0.081420 0.060752 0.241472 -0.533077 0.012481 -0.049372 -0.347026 +PE-benchmarks/cutting-a-rod.cpp__max(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 1.318767 0.651077 1.531403 -2.467764 -1.001095 0.533917 1.270601 -2.002411 0.174642 4.480022 1.760600 -1.752373 -2.218743 3.126535 -0.806885 -2.170476 1.581561 0.610051 -0.242460 -0.958226 -0.374045 1.036158 -0.493938 -1.827363 1.370690 -0.880529 0.527523 2.080333 0.764103 0.243150 -1.934149 -0.441806 0.419337 4.602769 -0.031087 0.296864 -0.690268 4.372920 -3.979999 4.190920 -4.880078 -3.773207 4.450567 0.659956 0.173372 -3.542422 -1.320552 1.821553 -0.878229 -3.005025 0.608514 -1.339293 1.135149 -2.662600 0.114352 4.234257 -5.001308 0.537807 0.995021 -1.864395 -2.849424 -0.512793 2.408576 0.754400 -2.798069 -3.034650 0.972960 0.478955 -2.000834 0.690997 -2.950472 -5.182944 2.492321 0.920353 -1.970441 0.948996 -0.420817 -3.902571 2.237992 -0.806101 -2.102815 -1.307335 1.422609 -1.168945 1.692676 1.401127 3.320631 -6.253390 0.274759 -5.059917 3.124920 -2.823571 4.103677 3.631329 -2.146682 1.692798 1.289208 2.296242 1.188461 0.053718 4.028107 1.657569 2.119447 -0.980693 2.752172 2.747937 -3.343246 -3.494278 -2.511874 -3.056129 0.746311 -1.216424 -5.022015 0.394663 -3.776114 -0.269700 1.070777 -1.230117 -0.625189 4.164820 -5.830118 -1.156717 1.395070 -0.830594 2.915592 3.967133 0.248005 0.512981 -0.091882 3.491889 -0.667403 -0.087523 -1.201608 2.192724 -1.934615 -2.784834 -1.538690 0.254410 1.503317 -3.691473 -4.328649 -5.688941 -1.120439 1.977308 -1.197994 2.829977 6.595708 -1.521565 -3.616053 2.429512 -0.583657 0.007839 3.967111 0.673044 6.706922 -5.323194 2.724667 -1.085450 1.570914 1.699308 4.084952 -1.008948 -2.529016 1.750263 -0.584685 -3.053533 3.735282 -0.723153 0.290960 -0.892763 0.914123 -1.078594 -1.702800 4.297730 -3.631832 4.198041 -2.228083 5.497358 -3.875174 -3.142465 1.856279 -3.680563 -1.604216 -2.785116 -1.251031 -0.266387 3.840342 -3.189315 -2.152971 -1.965043 -1.166625 0.118340 3.515872 -2.439471 -0.120504 -0.996705 -1.364909 3.251024 2.096146 -0.652970 0.443965 -3.684591 0.676887 2.769926 -0.491581 -5.045802 -0.219057 -3.545971 -0.618102 0.178112 -0.533131 2.703200 -2.269191 -1.905491 0.782296 -1.089232 0.428628 -1.838871 -4.295287 1.466007 -1.451561 0.525083 1.300831 5.006086 3.844411 3.152873 0.451199 -1.023127 1.049752 -2.535064 -3.096798 1.694853 0.204699 1.746569 1.867869 2.687440 0.748203 1.192435 2.576377 0.113334 0.899487 4.012993 1.604706 4.385003 -0.733819 0.224809 1.116639 -2.569861 2.520386 5.052961 -0.888227 -1.263789 1.877869 0.571788 -2.118616 -2.470798 -0.579016 -1.306828 -2.412358 2.682388 1.771121 -0.760397 -2.056812 6.322037 0.634489 -6.843389 3.309706 -0.286688 1.283756 3.073380 -1.764680 1.450846 2.001425 -0.427684 1.964361 1.558606 3.456744 -3.838226 -0.713492 -0.301460 2.968346 2.929229 -0.800533 -7.424040 1.549693 1.308606 4.949877 1.952370 4.329412 -2.346664 1.226915 -0.912160 -1.619718 -0.358379 -1.355376 2.528501 -1.207731 -0.425449 -6.022598 0.826940 +PE-benchmarks/cutting-a-rod.cpp__main = 0.432961 0.239427 0.164221 -0.512978 -0.552904 0.237787 -0.592133 -0.445469 0.025765 -0.152016 0.368969 -0.565198 -0.408794 0.665064 -0.436736 -0.720900 -0.101229 -0.329519 -0.128220 -0.220296 -0.034396 0.053103 -0.097237 -0.207414 -0.055130 -0.051567 -0.032294 0.183292 0.939461 -0.387911 -0.711795 0.055951 0.143467 0.848183 0.240716 -0.313983 0.376100 1.016188 0.323780 0.052192 -0.736215 -0.433906 0.490740 0.087719 -0.238076 -0.623681 -0.448148 0.373144 -1.104472 0.375391 0.363047 -0.236314 -0.199147 -0.163456 0.034032 0.804813 -1.393093 1.272233 0.117437 0.394574 0.029998 -0.250539 0.221605 0.030882 0.441415 -0.468531 0.303775 0.528959 -0.735793 0.140740 -0.417215 -0.746583 1.334181 0.181204 -0.451413 0.012686 0.029119 -0.515310 0.359484 -0.854510 -0.597447 0.025339 0.353561 0.270599 0.835703 0.079104 -0.035098 -1.077857 -0.085250 -1.120510 0.303742 -0.721966 0.547669 0.643941 -1.065294 0.031491 0.080954 -0.194282 0.536275 0.336143 0.787733 0.042407 0.114512 -0.181378 0.259902 0.105916 0.070107 0.002543 0.029600 -0.661213 -0.499351 0.188313 -1.528600 0.146455 -0.631332 0.580013 -0.063007 0.066334 -0.086082 0.012484 -0.703626 -0.899089 -0.167986 -0.107812 0.817475 0.828576 -0.196000 0.398839 -0.280215 0.828493 0.109812 -0.102052 -0.278177 0.147339 0.080545 -1.389448 -1.450738 0.225946 0.581567 -0.444896 -0.980667 -0.584703 -0.168331 -0.365469 -0.211689 0.870880 1.113354 -0.126540 -0.707755 0.811041 -0.016941 0.483699 1.479212 -0.032058 1.304754 -0.721466 0.417531 0.065378 0.042152 -0.300050 -1.078659 -0.252975 -0.198333 0.023910 0.212548 -0.111782 0.132306 0.042187 -0.259468 -0.097181 -0.131590 -0.298133 -0.672159 0.905213 0.400152 0.661670 0.329519 1.180504 -0.626022 -1.123272 0.481093 0.086041 0.101078 0.165114 -0.282588 -0.025897 0.588893 -0.706197 -0.436616 0.126257 0.149620 -0.296464 0.459426 1.303348 0.057831 0.057980 0.117332 0.356200 0.881570 -0.245752 0.525739 -0.851273 0.125968 0.763526 -0.196909 -0.911286 0.187061 -0.507360 0.011937 0.501640 -0.127960 0.226915 -0.313126 -0.595511 -0.105973 -0.077795 0.860434 0.140707 -0.298012 0.324616 -0.556832 -0.128833 0.293004 0.712203 0.735654 0.486363 0.378148 -0.266469 0.265648 -0.277188 0.615071 -0.186391 0.264925 0.444882 0.296837 0.528020 0.111079 0.068364 0.383629 0.440061 -0.318291 0.633101 0.441378 1.058285 -0.455136 0.162606 -0.330262 -0.524312 0.670152 1.525002 -0.978293 -0.105848 0.294755 0.484650 0.296798 -1.199412 -0.267085 -0.284931 -0.436013 0.297209 -0.064553 -0.067219 -0.235285 0.958279 0.133579 -0.812676 0.797985 0.112520 0.002785 0.070088 -0.324678 -0.356905 0.371771 -0.834488 0.151535 0.429256 0.581646 -0.344722 -0.281157 -0.129799 0.715099 -0.511465 0.196410 -0.184963 0.371230 0.800567 0.843573 0.793762 -0.074023 -0.411730 -0.732641 0.014556 -0.170559 -0.122604 -0.005867 0.436405 -0.750686 0.109167 0.078926 -0.685670 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 4.854053 -8.307107 8.074294 -13.480304 0.996144 8.955747 -6.256215 -12.667705 1.734734 12.231731 5.811791 -1.102549 -8.677927 9.298514 -2.329138 -18.484406 8.510194 21.944791 3.395968 -8.692211 1.944770 -1.038524 -3.728583 -10.786277 0.933692 -13.185929 11.259714 10.759205 7.996504 17.128938 -11.890992 -5.505093 -4.248184 24.355069 4.291939 12.830602 -5.396784 21.136166 -8.351878 22.455583 -20.888015 -24.652252 17.725981 4.873090 0.429937 -10.890485 -10.216341 0.029952 -16.090071 -9.503681 3.390412 -11.439923 11.096982 -8.982037 2.466578 12.536188 -17.093784 -8.255125 -0.971197 -11.360512 -13.691980 -6.554788 13.387952 6.567949 -19.910168 -10.657383 10.032371 10.905131 -7.677496 5.739097 -14.790035 -29.510350 12.903664 10.263037 -11.484614 0.842708 6.423236 -21.277817 7.160233 14.857221 -13.889848 -8.585475 1.596737 -10.744835 11.819276 7.253872 25.348257 -30.357256 8.900694 -27.582484 15.397478 -12.140129 23.285941 17.340412 -19.051345 7.159765 13.090602 31.200699 0.313717 -9.433157 18.472280 13.758746 0.030620 -8.202259 24.112909 6.621790 -13.096778 -19.172152 -10.922654 -13.668494 0.652874 -24.386677 -37.830042 -2.768573 -20.967643 -3.598185 -5.579638 -1.806493 -8.195603 15.086015 -38.722887 -4.182933 3.850175 -5.030840 15.383468 10.426208 -0.896562 6.314314 6.765884 19.358290 -8.977605 -9.298559 -9.739352 9.468632 -11.217398 2.781390 -11.087266 4.733940 13.007128 -17.538614 -25.808531 -22.216463 -15.010439 22.313382 2.502170 17.960059 30.743217 -4.549495 -18.448264 6.876024 -14.627443 0.728071 27.512381 8.754612 25.329512 -25.845658 17.369960 -12.359559 11.189953 5.715937 3.538965 -5.385367 -8.204513 16.625090 -8.338081 0.928824 21.750160 -16.563788 1.235298 -23.651250 4.598323 -9.617806 -1.589196 25.123146 -35.938499 20.082254 -12.336460 22.041644 -22.345163 -14.477232 2.800813 -38.027623 -13.657071 -13.963171 -0.771717 -12.432588 24.066773 -21.424430 -15.406234 -12.473910 -6.008920 8.824072 17.216911 -5.009518 -4.234649 -4.409508 -3.415802 22.940117 14.490561 4.806324 -3.937353 -12.139175 3.150139 20.592424 -6.934031 -13.421845 -0.449846 -16.742533 -1.880456 -11.719171 2.726994 13.010429 -16.939361 -10.527083 -8.558230 -0.774400 5.028940 -5.582920 -34.341552 8.894286 -0.568071 -0.487234 9.562624 21.324410 22.733786 15.012781 5.841607 -12.061157 13.575768 -15.908186 -16.418568 9.666974 7.804714 11.718699 3.070599 15.630742 0.586658 4.482690 10.493410 11.113089 15.292790 15.058842 12.697759 22.176696 9.109219 2.289472 3.190940 -14.466804 9.107403 30.280103 2.911584 11.731670 9.314955 5.973551 -8.631558 -23.840013 -2.886467 -4.975828 -11.592016 10.224819 8.014828 -4.878336 -14.444252 30.463033 9.796247 -32.562330 11.333965 -0.068212 2.848405 23.592503 -15.255217 4.566727 6.450297 -2.037063 19.694943 3.342944 11.390053 -18.582558 7.382399 -2.247229 11.168316 20.777596 -9.344718 -13.250214 19.019015 3.404772 28.329173 17.186350 17.896245 -10.566770 11.073620 -8.571512 -18.595126 -0.896972 -6.672788 13.486573 -0.272828 -5.524394 -32.528828 -7.960005 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.728407 0.099248 0.517159 -0.299640 -0.599682 0.907646 -2.624089 -1.080362 0.335087 -0.643291 0.304068 -0.807045 -0.688170 0.420267 -1.349873 -1.618153 -0.447342 0.960324 0.275623 -1.364506 0.035612 -0.691105 -0.102978 -0.530643 -0.542909 -0.937330 0.677324 0.110950 2.210268 0.400430 -1.150752 0.178661 0.205500 1.454880 0.760575 0.027372 0.869854 1.148436 2.201798 -0.452749 -1.292560 -1.070699 0.380049 0.504432 -0.092017 -0.054444 -0.432786 0.013166 -3.707044 1.965285 0.309992 -0.959271 -0.079496 0.070997 -0.064617 0.917995 -2.171234 2.546218 -0.617615 0.338825 0.025741 -0.467230 0.437980 0.364988 1.552171 -0.479541 0.680081 2.371878 -1.606064 0.749543 -0.607033 -1.063233 2.478946 0.067703 -1.046958 -0.375164 0.384461 0.009077 -0.028365 -1.178704 -0.880410 -0.123182 0.939831 0.718870 1.232546 0.796938 0.164303 -1.558963 -0.140975 -1.772029 0.858977 -0.661616 1.319267 0.466544 -2.479807 -0.112732 0.400647 -0.325326 0.645539 0.540052 1.093547 -0.132976 -0.525951 -0.665646 0.360910 -0.437302 0.823738 0.256917 0.714810 -0.748138 -1.631712 0.083883 -2.827954 -0.429646 -1.730985 2.275136 -0.693000 0.396910 -0.391069 -0.787439 -1.790180 -2.261727 -0.864905 -0.117369 2.082817 0.358993 -0.198044 1.386597 0.422326 1.504490 -0.035406 -1.684960 -0.745501 -0.055817 0.707327 -2.184562 -3.708795 0.700630 1.460939 -0.447313 -1.888524 -0.093313 -1.106440 -0.087834 0.342584 1.867137 1.389893 0.424222 -1.112846 0.718596 -1.621088 1.003872 3.757711 0.388987 1.796813 -1.484857 1.338778 -0.174440 0.604909 -0.449950 -3.087827 -0.858337 -0.078189 0.321270 0.942494 1.928915 -1.093478 -0.581513 -0.307024 -1.756836 -0.441068 -0.260998 -0.256393 1.221562 -0.028537 0.882339 0.336174 2.019764 -1.761791 -2.756188 0.283364 -0.718254 -0.037092 1.777004 0.152176 -0.757054 1.327073 -1.847420 -1.108392 0.606781 0.375145 0.299668 0.847404 4.016136 -0.213762 0.040752 -0.177573 1.581901 1.344681 -0.128621 0.706367 -1.025983 -0.229107 1.662598 -0.320288 -1.137881 0.471161 -0.779020 0.198581 0.503636 0.153662 0.274578 -0.620272 -0.860218 -1.251812 -0.124316 2.229986 0.338607 0.038846 0.872176 -0.848637 -0.894437 0.487414 0.905160 1.352341 0.450978 0.576308 -0.872782 0.834227 -1.332364 2.627280 -0.036286 1.583282 0.750975 -0.104963 1.060773 -0.449184 -0.155620 0.122960 1.087167 -0.367139 0.607613 0.565997 1.459554 -1.693464 1.199018 -1.116386 -1.073778 0.888707 2.796815 -2.405773 0.298075 0.297233 1.110091 1.556229 -2.897964 -0.702893 -0.368227 -0.538889 0.160500 0.148747 -0.083078 -0.771417 1.397429 1.059358 -0.697308 1.761038 0.235720 -0.853991 -0.118558 -1.276804 -1.681800 0.421709 -1.436552 -0.127824 0.323770 0.685132 -0.588193 -0.049312 -0.477674 1.389991 -1.090829 -0.208604 1.379450 0.650789 1.708355 1.476588 2.076603 -0.772037 -0.641819 -1.799037 -0.458831 -0.995136 -0.338191 0.215385 0.525638 -1.062410 0.556459 1.226554 -2.053531 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 2.933518 -0.057282 3.509766 -2.093675 1.143573 1.413434 3.000275 -2.444435 0.939043 9.800067 1.192220 -0.568767 -4.170411 2.610894 -0.803706 -3.225501 4.122419 1.060946 1.040353 -1.779879 -1.250664 0.777128 -0.497557 -3.913716 3.435182 -2.446745 1.671926 3.935000 -1.543845 2.541302 -2.409894 -0.652436 -0.215521 7.610574 -0.561349 1.381120 -0.625860 6.733181 -7.165904 7.797918 -7.024331 -7.954640 7.829021 0.848716 0.853542 -1.500871 1.578850 2.122778 -2.563455 -5.126815 0.597696 -2.779363 2.694259 -4.929966 -0.031683 6.498882 -8.598598 -1.011838 0.123851 -3.525808 -6.284023 -1.598256 3.629428 0.918662 -4.083668 -4.478401 2.045964 0.694185 -3.731904 2.234554 -5.124272 -7.154101 2.563544 1.686449 -2.534625 1.817989 0.286318 -4.855006 2.826663 -0.718803 -2.804603 -3.319538 2.129686 -2.990793 2.903850 3.512197 6.251413 -9.932549 1.406239 -7.099495 6.562655 -3.941344 7.544856 6.022918 -2.348342 3.977771 2.672963 5.814182 -1.055254 -2.122637 6.655559 2.572803 2.837873 -1.583474 3.925637 4.210982 -7.038270 -6.691907 -4.593716 -2.650472 1.317367 -2.788135 -5.307117 -0.642811 -6.957419 1.543264 3.311952 -2.040094 -2.549057 6.312045 -12.321514 -1.111561 1.800835 -1.373275 5.979041 3.771092 0.771190 0.706069 1.993594 6.106267 -1.634881 -2.104718 -2.815055 3.671465 -2.802193 -0.897833 -0.812917 -0.633196 2.371512 -6.085270 -7.399152 -9.444718 -2.585755 5.605892 -0.673511 6.036600 10.338316 -1.082289 -4.382228 2.766542 -5.051376 0.876245 6.121071 2.122941 7.728350 -8.957971 5.060286 -2.198779 4.731403 3.772281 8.553878 -1.845417 -3.836561 3.729327 0.352751 1.605746 4.235032 -1.321850 1.566447 -4.229263 0.674624 -1.722167 -1.015528 6.826933 -8.481330 5.855127 -4.369023 9.182704 -6.776023 -4.707632 2.084003 -8.618317 -3.005319 -5.749378 -2.212975 -1.160987 5.230678 -6.713555 -4.414039 -3.868098 -1.092903 2.108305 5.885394 -4.740415 -0.622923 -2.630735 -3.392563 8.198136 1.487798 -0.991661 -0.880057 -5.671727 -0.012823 3.238286 -1.711739 -6.564206 0.014533 -4.287806 -1.037548 1.270131 0.060784 4.138653 -4.430250 -2.966740 1.680023 -1.094207 -0.640379 -3.640374 -8.265432 1.866970 0.382498 -1.105485 3.218292 7.474052 5.967872 3.603646 -0.602869 -1.993838 1.631485 -4.290600 -6.156599 3.382608 0.399243 4.116220 1.978102 3.790914 0.697223 1.195095 2.254330 0.570624 1.539488 5.874025 2.929724 5.553667 -1.853351 0.772861 2.804919 -4.327326 3.492761 4.513875 -3.250192 -1.405759 3.216319 0.669692 -2.793142 -1.522090 -1.015142 -2.985744 -2.078630 2.920603 2.948288 -1.921266 -3.540057 10.355843 1.534163 -11.302776 4.944983 -0.180194 1.776996 5.609262 -3.155766 2.084996 2.994943 -0.170512 4.013492 0.730759 5.410169 -5.975060 1.964770 -0.535928 4.336130 4.812095 -2.424473 -11.092271 0.108624 0.368521 7.395273 4.716812 7.694442 -2.620774 3.268716 -3.676435 -4.625553 -0.383716 -2.044965 4.515238 0.196866 0.334092 -11.276552 2.371919 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 0.786867 0.452832 1.019182 -1.123193 -0.128164 0.221307 0.855263 -0.789973 0.082559 2.856948 0.431913 -0.562883 -1.867515 1.160710 -0.391715 -1.446458 0.811185 -0.391252 -0.075934 -0.799380 -0.329178 0.401632 -0.066274 -1.149287 0.933037 -0.604101 0.309991 1.240952 0.136159 0.058294 -0.652511 -0.186019 0.233465 2.431937 -0.240751 0.363268 -0.332062 2.285514 -1.961523 2.093195 -2.738501 -2.647093 2.566233 0.212585 0.085661 -1.461531 0.342653 0.987587 -1.213065 -1.282479 0.141643 -0.540697 0.371695 -1.693303 -0.040553 2.237407 -3.185830 0.760210 0.172737 -1.018961 -1.763734 -0.423962 1.189719 0.219403 -0.689383 -1.569272 0.391858 -0.012694 -1.601093 0.735598 -1.462200 -2.009172 1.074241 0.574933 -0.776630 0.702558 -0.132028 -1.306292 1.023146 -1.166829 -0.878925 -0.976115 0.975966 -0.467454 0.976096 1.133382 1.395209 -3.209675 0.086454 -2.285959 1.881555 -1.378287 2.146354 1.838833 -0.706147 1.292720 0.561005 0.633865 0.117466 -0.623221 2.047199 0.544546 1.477273 -0.225348 1.099425 1.286408 -2.002052 -1.860573 -1.298055 -1.292950 0.265969 -0.682222 -1.936896 0.009331 -1.981059 0.263659 1.211187 -0.766773 -0.669977 1.504295 -3.766769 -0.869721 0.599507 -0.432378 1.874218 1.496476 0.159641 0.245169 0.371175 1.896425 -0.265545 -0.125210 -0.628344 1.134657 -0.427986 -1.170334 -0.762365 -0.100644 0.659365 -1.748140 -2.262951 -2.884203 -0.704819 1.097313 -0.459785 1.899635 3.416044 -0.437756 -1.896168 1.246559 -1.204702 0.512367 1.960101 0.494194 2.841691 -2.636859 1.334692 -0.413124 1.098108 1.276588 2.548157 -0.573887 -1.400403 1.034073 0.039534 0.004561 0.221482 -0.317572 0.330311 -1.135027 0.172680 -0.881556 -0.614187 1.994028 -2.057593 2.309719 -1.153056 2.832232 -2.162859 -1.844883 0.862973 -2.670884 -0.851710 -1.512074 -0.950534 -0.232699 1.535912 -2.168715 -1.267822 -1.359377 -0.329529 0.151754 1.880525 -1.659714 -0.083529 -0.718555 -0.678516 2.497666 0.798825 -0.563577 0.068467 -2.066593 0.220543 1.248642 0.017294 -2.590922 0.072555 -1.350596 -0.379109 1.060134 -0.176803 1.263000 -0.856221 -0.853006 0.700602 -0.581363 0.017779 -1.121072 -2.118429 0.542788 -0.287240 -0.100875 0.886229 2.561639 1.851561 1.160287 -0.111124 -0.404066 0.492520 -1.378892 -1.274260 0.666741 0.035618 0.948484 0.939183 1.105988 0.392172 0.425767 1.446365 0.570935 -0.346698 2.020042 0.674872 2.022081 -0.879373 0.131015 0.672240 -1.247398 1.087562 1.974403 -1.191477 -0.712220 1.253544 0.295065 -0.561950 -0.894064 -0.526638 -1.068466 -0.800834 1.499415 0.973161 -0.799482 -0.821062 3.239199 0.348340 -3.463364 1.890848 0.012175 0.566380 1.182058 -1.040965 0.260274 1.268732 -0.657304 0.757766 0.562234 1.718601 -1.945174 0.291282 -0.133935 1.674481 1.248967 -0.444117 -3.631680 -0.206254 0.545929 2.498985 1.368847 2.402282 -0.921291 0.314537 -0.756735 -0.891970 -0.187272 -0.580859 1.283509 -0.318802 -0.027470 -2.883586 0.522177 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 2.647984 1.040863 2.688405 -2.740664 -1.075380 1.060841 1.305331 -3.073000 0.922745 7.851517 1.994590 -1.710312 -0.835368 4.058735 -1.943419 -1.944334 1.867760 0.429321 0.228315 -1.662855 0.173133 1.465955 -0.553088 -2.777796 1.328416 -1.774116 1.659553 2.052926 -1.615646 1.354646 -2.141892 -0.845158 0.675111 5.559305 0.070677 0.891729 -1.508021 4.365544 -5.517454 5.789040 -7.403164 -6.049827 5.458104 1.062433 1.230343 -4.323891 -0.916245 1.605738 1.458252 -4.051169 0.002957 -2.136727 1.990914 -3.352217 -0.354741 4.114089 -5.386669 -0.654697 0.524856 -3.652661 -4.438002 -0.568485 3.881990 2.269384 -4.466498 -3.608536 1.618238 1.909494 -2.111711 1.694982 -3.245713 -6.754993 2.554904 0.857048 -2.545943 0.613513 -0.570945 -5.253539 2.928474 -1.394713 -2.211737 -1.969720 1.776256 -1.754256 0.546546 2.428926 5.897779 -7.728457 1.622162 -5.933361 4.855627 -2.599342 5.272451 3.654541 -1.972380 1.865957 1.940447 5.285870 2.493554 -0.102236 4.697584 3.350252 3.179996 -1.625584 3.510184 4.474552 -4.287092 -4.670379 -3.245148 -3.846609 1.445987 -1.720804 -6.463915 0.119769 -4.315305 -0.559871 0.943500 -2.409278 -0.336931 7.030055 -9.424710 -2.092319 2.090403 -0.736383 2.981546 3.462723 0.551484 1.149765 0.644910 4.038863 -1.214148 -1.128181 -0.807020 2.665417 -5.064301 -2.537389 -1.445177 0.795376 1.574039 -5.162294 -5.043597 -8.179605 -1.553837 4.657300 -1.241382 3.942667 7.778997 -1.695203 -5.229195 1.810160 -0.090197 -2.943041 4.935683 0.961032 7.896237 -7.080751 3.785608 -1.795794 2.829704 2.871302 7.685043 -1.366688 -2.935018 2.975275 -1.161304 -4.738343 5.216853 -1.173955 0.816256 -1.729366 1.140491 -1.161415 -0.460366 4.483454 -5.819627 5.202552 -4.558072 6.828557 -5.765156 -3.385502 1.480563 -7.698349 -2.849556 -3.162653 -0.669216 -0.423697 6.129268 -4.346294 -2.496053 -2.185044 -3.157441 1.099057 4.674812 -5.684241 0.019237 -1.420093 -2.820143 6.121968 2.037778 -0.320267 -0.117795 -3.498728 0.515791 3.853824 -0.083894 -6.454719 -1.377206 -5.181305 -0.580252 -1.366568 -0.511474 3.885153 -3.440940 -1.858400 0.660149 -1.863218 -0.223910 -2.982400 -5.021645 1.825191 -2.086533 2.003484 0.375778 6.283907 4.303113 4.215733 0.483907 -1.986348 1.352212 -4.786120 -3.951754 3.227601 1.666031 0.510497 1.967347 4.660835 0.249667 1.622700 3.595798 0.395849 1.657557 4.828020 0.328544 4.813400 -2.776695 1.574445 0.984733 -2.695430 3.072520 6.367861 -0.195533 -1.821648 1.742913 -0.138185 -3.193104 -1.409818 -0.666765 -1.347767 -2.398985 2.502627 3.783392 -0.785169 -3.008513 7.874951 2.000256 -8.490496 4.131048 -0.605449 1.104672 4.830777 -3.263504 1.948588 2.201852 1.050770 2.496301 1.730877 4.386896 -5.243148 -1.511775 -0.360141 3.954658 4.779749 -1.214543 -9.761347 2.714559 2.046890 6.166914 1.429591 7.001537 -3.761846 2.544236 -1.402156 -1.987367 -0.670740 -0.850658 3.167525 -1.043235 -0.070242 -8.077538 1.745162 +PE-benchmarks/find-k-closest-elements-given-value.cpp__printKclosest(int*, int, int, int) = 3.831387 1.421587 4.280415 -3.988275 -0.112746 1.761161 2.586833 -4.236423 1.244927 12.008268 2.209564 -1.223500 -3.893129 4.007065 -2.873105 -3.781213 4.049994 1.183062 0.829570 -3.558873 -0.039247 1.375166 -0.514027 -4.656091 2.638387 -3.340396 2.770158 3.643541 -1.225916 2.667769 -3.318962 -0.941048 0.691510 8.801488 -0.205500 1.458942 -2.244925 6.582509 -7.148578 7.747470 -11.307210 -9.464172 8.407363 1.558486 1.815525 -6.933020 -0.104808 1.818769 -0.394859 -5.264499 -0.424750 -3.937499 3.322965 -5.516747 -0.612030 7.164836 -9.057382 -0.781290 0.231241 -5.219667 -6.872761 -1.004883 6.481882 2.533679 -4.935835 -5.242572 2.764937 2.259754 -4.368442 3.372698 -5.593510 -9.648874 2.439525 1.680293 -3.770077 1.253677 -0.601066 -7.629751 3.585399 -1.806154 -2.762481 -3.552435 3.257315 -2.275751 1.418235 3.742940 8.071573 -11.836946 1.450082 -8.434068 7.360299 -3.940044 8.929749 5.419312 -2.616829 3.504021 2.972313 6.311307 1.514313 -1.748613 7.423339 4.437434 5.101912 -2.964593 5.155208 5.572179 -6.694286 -7.336366 -4.440056 -4.434796 1.288616 -3.240980 -9.028806 -0.623077 -8.090479 -0.603253 2.282547 -3.788117 -1.639026 9.133401 -14.706579 -3.649999 2.634722 -1.405890 5.770659 4.968703 1.249463 1.667691 2.202641 6.728296 -1.805061 -2.313337 -2.248429 4.013481 -5.295226 -3.733981 -2.033802 0.190431 2.605760 -7.473678 -8.274817 -11.079499 -3.454334 6.046984 -0.743490 5.738868 11.668755 -1.445559 -7.683163 2.446639 -3.425006 -2.196987 8.155767 2.111601 11.018642 -11.323700 6.720116 -2.844318 5.699132 4.737114 11.094984 -2.778572 -4.290744 4.404413 -1.103144 -3.127585 4.227028 -2.562564 2.027928 -3.653301 1.224919 -2.052288 -0.481671 6.690833 -9.845414 8.311311 -6.591246 10.006886 -9.422016 -6.173561 1.741225 -11.896533 -4.163652 -4.280766 -1.136343 -1.418402 8.359754 -7.336072 -4.560401 -4.074185 -3.228851 2.730027 7.478552 -8.075175 -0.478097 -2.942316 -4.403556 9.779710 2.265696 -1.029312 -0.214993 -5.305967 0.407500 5.702063 0.139312 -9.669940 -1.138143 -7.031858 -0.987675 -0.720671 -0.400348 5.678246 -4.216716 -3.301134 1.288636 -2.666629 -0.396861 -5.056215 -8.206820 2.730128 -2.517216 0.519007 0.911517 9.444984 6.891471 5.052160 -0.506213 -3.687048 2.992015 -7.676967 -5.735857 4.263786 2.106221 1.684299 2.325335 5.749521 0.051705 1.844454 4.503767 0.923744 2.119291 6.997457 1.516825 6.586059 -3.957776 2.065858 2.013152 -5.384156 3.959315 8.288032 -0.405262 -2.191326 3.101079 0.501381 -3.573739 -3.623818 -1.395571 -2.616926 -3.373349 4.578922 5.680699 -2.227727 -4.714942 12.196336 3.282024 -12.859746 6.757891 -0.703720 1.242933 6.709861 -5.116500 2.031186 3.743625 1.032022 3.359257 1.295019 6.408567 -7.735634 -0.981975 -0.783404 5.999314 6.180556 -3.203737 -14.269447 2.213550 2.188362 9.845079 4.149736 10.632598 -4.404323 3.854718 -3.294499 -3.690550 -1.056624 -1.852965 5.222601 -1.195898 -0.697006 -12.266296 3.304571 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.453007 0.170746 0.196406 -0.853215 -0.733627 0.113412 -0.000772 -0.237440 0.088990 -0.264323 0.535712 -0.697932 -0.469966 1.190434 -0.216652 -0.694041 0.195993 -0.818590 -0.167984 0.327138 -0.036209 0.401846 -0.155142 -0.022395 0.153949 0.258125 -0.338400 0.443504 1.028220 -0.679046 -1.060635 0.052087 -0.005566 1.015507 0.108963 -0.616391 0.553257 1.633361 -0.414732 0.647960 -0.637762 -0.158928 0.624199 0.022055 -0.535454 -1.084394 -0.908344 0.557698 -0.896678 -0.029483 0.858531 -0.079331 -0.241917 -0.152578 0.370412 1.200243 -1.826939 1.162116 0.384852 0.916831 0.347956 -0.411748 0.013673 -0.155909 -0.011748 -0.579528 0.388469 0.002297 -0.726453 -0.034704 -0.532527 -0.996789 1.570525 0.441963 -0.595496 0.183992 0.252254 -1.269982 0.675261 -1.042716 -0.877471 0.163701 0.085223 0.064530 1.402665 -0.385120 -0.110035 -1.370202 -0.116953 -1.419292 0.209717 -1.405039 0.494635 1.261570 -1.203943 0.088882 0.020125 0.030715 0.678144 0.393882 1.091591 0.407823 0.241211 -0.199762 0.489603 0.345880 -0.218705 -0.131186 -0.275059 -0.802066 -0.470947 0.145370 -1.939789 0.275472 -0.443686 0.283276 0.162247 0.084062 -0.179143 0.333538 -0.437648 -0.516586 -0.039435 -0.185162 0.642870 1.545623 -0.375970 0.143086 -0.742997 1.146063 0.164986 0.521069 -0.445676 0.195630 -0.318611 -1.553335 -1.227841 -0.011241 0.512919 -0.547489 -1.252480 -1.116504 0.042389 -0.641570 -0.370795 0.913672 1.541728 -0.286721 -0.706048 1.305200 0.540403 0.737251 1.330244 -0.212823 1.523839 -0.692949 0.299417 -0.061921 -0.104608 -0.717715 -0.770894 -0.005799 -0.229123 -0.135264 -0.017378 -1.040749 1.020979 0.272288 -0.377749 0.201079 -0.180971 -0.511314 -1.254647 1.620376 0.397564 0.771659 0.404145 1.443549 -0.331557 -1.081010 0.816035 0.491345 0.433727 -0.697653 -0.621449 0.336817 0.540056 -0.657946 -0.499900 -0.027491 0.296015 -0.574624 0.324571 0.955029 0.061106 0.039360 0.476686 0.148283 1.192303 -0.291695 0.787902 -1.239619 0.332208 0.666094 -0.583506 -1.193833 0.463764 -0.515168 -0.046829 0.518127 -0.218263 0.093838 -0.633942 -1.037750 0.145558 -0.064848 0.768198 0.253233 -1.163627 0.278211 -0.558547 -0.013501 0.604726 0.725100 1.010977 0.618612 0.588043 -0.264212 0.193677 0.152669 -0.066554 -0.209317 -0.041980 0.508023 0.421480 0.682847 0.382210 -0.028568 0.372418 0.543743 -0.321495 0.772980 0.968249 1.356903 0.350770 -0.315372 -0.122541 -0.693483 0.868783 1.782499 -0.782328 0.022293 0.487211 0.709577 -0.014871 -1.262125 -0.233562 -0.452071 -0.641196 0.478483 -0.585148 -0.217596 -0.036381 1.184289 -0.190543 -1.244887 0.491644 0.100972 0.297606 0.242449 0.037390 -0.024687 0.469996 -1.229327 0.762807 0.465472 0.724703 -0.151477 -0.512672 -0.103124 0.469834 -0.265845 0.445525 -0.751535 0.433392 0.712027 1.050304 0.941636 0.216198 -0.305094 -0.618225 0.092249 -0.232170 -0.213415 -0.260512 0.621379 -0.966547 0.006710 -0.458984 -0.789970 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 7.893447 1.371559 6.953677 -5.375957 -0.158966 3.126321 6.313527 -6.796192 1.148563 21.484302 4.900037 -3.669675 -6.947881 6.789863 -1.968042 -7.887248 8.365842 4.724523 1.451172 -4.465556 -3.095374 2.110721 -1.829926 -8.843863 7.025937 -5.507043 2.984446 8.832564 -2.616448 6.123136 -6.113128 -1.498534 0.922466 18.178561 -0.397706 0.658038 -1.757006 15.761939 -16.698561 15.724102 -15.635907 -16.332123 18.510656 2.692846 1.510674 -5.584661 -0.348645 5.436560 -2.752625 -12.005619 1.885475 -6.470209 6.965383 -10.742688 -0.572154 16.507036 -18.830991 -2.212699 1.718580 -9.460764 -14.299484 -2.383308 8.458615 3.017014 -10.282209 -11.458443 4.619698 3.188460 -5.161679 4.051801 -12.763558 -19.950374 8.919274 3.997937 -6.481537 3.598467 -0.700767 -13.193016 7.300272 0.974057 -7.334373 -7.287262 5.101587 -5.207264 5.730943 7.046505 15.561488 -23.657895 2.655322 -18.550682 14.899839 -9.482548 17.796312 14.123520 -6.270791 7.947412 6.394533 11.971059 0.092619 -3.107157 16.081799 5.661745 6.667201 -4.121494 8.343025 11.474464 -15.395309 -15.400456 -10.507108 -7.705767 3.557363 -4.653408 -15.540377 0.335062 -16.406589 2.045631 6.235480 -5.709391 -3.682461 18.055121 -24.386657 -3.383231 5.411387 -3.449821 13.193280 11.182815 2.023948 2.092592 2.336706 13.747208 -3.035895 -4.140624 -6.090694 8.838969 -8.651883 -6.609451 -3.541037 0.423122 6.344711 -15.656955 -17.179975 -21.589219 -4.517948 12.065271 -3.518923 12.050839 25.023063 -4.653467 -11.042918 6.895869 -6.430030 -0.259934 14.798236 4.379674 22.442781 -21.980419 12.008415 -5.194438 9.552299 8.317538 18.896714 -4.499582 -8.946031 9.375444 0.327612 -1.290342 15.232165 -3.669688 2.620101 -3.344862 2.721237 -1.378262 -3.011354 16.257269 -14.748823 13.670214 -9.037468 22.415295 -15.481863 -11.438772 5.518512 -16.374509 -8.201279 -12.342886 -3.715385 -1.276064 13.689909 -13.467947 -9.702327 -7.467212 -4.376383 3.692817 13.985237 -8.620983 -0.918035 -5.078152 -8.363312 15.407746 5.372092 -1.354019 -1.226742 -13.552367 0.798872 7.974271 -5.003977 -16.805127 -1.708055 -11.276990 -2.028825 0.531614 -0.589262 10.924702 -10.581179 -6.468116 3.622378 -3.278544 -0.410643 -7.915001 -16.774509 5.830470 -1.755529 -0.476736 5.420561 18.849646 15.028613 10.812406 0.230123 -4.357727 4.204802 -9.859790 -14.399480 8.651095 1.188772 9.717977 5.800276 9.361289 0.858927 3.662759 6.414942 -0.956301 6.017022 13.864227 6.254239 14.982797 -3.778704 2.139111 5.776723 -10.401834 9.530676 14.334950 -5.100122 -5.232915 6.748500 0.973438 -8.181465 -5.632566 -1.422933 -5.042257 -7.121320 7.201883 8.239647 -3.504528 -9.340626 25.079149 3.768531 -27.137615 12.362035 -0.035414 3.996669 13.894506 -7.438673 6.658006 6.679982 1.934495 8.457315 3.974523 14.350674 -15.779492 2.655527 -1.141935 10.323150 10.015114 -4.955606 -28.465041 2.379995 3.431792 17.596584 8.859337 19.025012 -8.295831 7.584727 -6.362818 -8.402598 -0.918732 -4.566506 9.827627 -2.426131 1.978006 -25.215902 6.065333 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.705522 0.176530 0.448750 -0.573821 -0.863625 0.884142 -2.487454 -1.074915 0.343848 -0.827975 0.577509 -1.076327 -0.919965 0.750728 -1.233680 -1.833252 -0.349123 0.729982 0.189353 -1.126576 0.027711 -0.526315 -0.146003 -0.480128 -0.461126 -0.732311 0.425399 0.303254 2.700077 0.105980 -1.481904 0.242053 0.203398 1.671984 0.732879 -0.212707 1.063213 1.592201 1.862861 -0.299584 -1.358960 -0.922828 0.591185 0.522507 -0.397232 -0.396365 -0.761292 0.219201 -3.988301 1.811509 0.665290 -0.927403 -0.089375 0.054082 0.098753 1.391169 -2.665181 2.842605 -0.412164 0.678290 0.237406 -0.512506 0.381368 0.308822 1.520847 -0.651427 0.729371 2.115901 -1.700187 0.548872 -0.758151 -1.369687 2.969702 0.183051 -1.212425 -0.285543 0.390677 -0.428890 0.192818 -1.366312 -1.115857 -0.005579 0.940927 0.778415 1.626877 0.564272 0.043252 -1.893004 -0.367591 -2.125791 0.894099 -1.059324 1.411529 0.839347 -2.821154 -0.160303 0.347460 -0.541234 0.854605 0.635445 1.402311 -0.117650 -0.398603 -0.728928 0.430520 -0.303333 0.695588 0.235736 0.575244 -1.015991 -1.684305 0.179458 -3.347734 -0.294261 -1.835411 2.241412 -0.511344 0.319884 -0.392856 -0.656888 -1.521986 -2.235423 -0.872784 -0.161851 2.216712 1.027354 -0.290180 1.337451 0.169189 1.792910 0.048238 -1.363640 -0.872600 0.009320 0.703497 -2.691360 -3.889882 0.688174 1.564301 -0.608448 -2.136936 -0.400337 -0.929316 -0.466967 0.187715 1.906605 1.825496 0.258257 -1.270343 1.141258 -1.344585 1.273313 3.961844 0.222811 2.309572 -1.664704 1.391734 -0.191785 0.472945 -0.698707 -3.079056 -0.790506 -0.161179 0.166932 0.884729 1.395289 -0.766795 -0.369532 -0.432235 -1.474661 -0.452058 -0.383096 -0.752303 1.680756 0.247730 1.034460 0.543517 2.359456 -1.745431 -3.026404 0.633625 -0.208311 0.072638 1.460205 -0.218525 -0.459795 1.343265 -1.867391 -1.125875 0.471041 0.576297 0.018449 0.858800 4.237202 -0.179664 0.059761 -0.007925 1.345750 1.688321 -0.204036 0.944266 -1.415749 -0.108461 1.775572 -0.568795 -1.471813 0.609326 -0.972212 0.190691 0.770236 -0.003404 0.322600 -0.746929 -1.190845 -1.126467 -0.138236 2.440600 0.412669 -0.402776 0.946282 -0.987201 -0.911840 0.709662 1.108493 1.568114 0.672536 0.760527 -0.852419 0.868910 -1.106013 2.459257 -0.169342 1.382511 0.948290 0.092270 1.155999 -0.298055 -0.150001 0.249171 1.126246 -0.469786 0.839427 0.900336 1.835701 -1.316183 0.986541 -1.061763 -1.304955 1.109716 3.248129 -2.562168 0.252005 0.435435 1.338609 1.484698 -3.263556 -0.707143 -0.512926 -0.781054 0.410211 -0.157228 -0.095190 -0.778301 1.687746 0.897844 -1.062905 1.856568 0.213741 -0.698312 -0.084855 -1.165977 -1.620558 0.510869 -1.861187 0.126327 0.505054 0.923150 -0.569508 -0.199902 -0.497166 1.459107 -1.150628 -0.062271 1.018686 0.682884 1.843175 1.741589 2.339798 -0.662815 -0.697553 -1.931310 -0.408202 -0.995907 -0.355789 -0.038883 0.636473 -1.365303 0.521007 1.021189 -2.164841 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 0.292960 0.587171 1.062890 -1.381807 -1.838672 0.095850 0.458721 -0.518270 0.226237 1.306966 0.774656 -0.973044 -0.859866 2.188685 -0.473577 -1.027404 -0.134966 -1.105199 -0.259369 -0.121878 0.131738 1.082244 -0.180804 0.309780 0.169067 -0.050433 -0.328328 0.877340 0.492378 -0.535682 -0.839985 -0.275326 0.021041 1.555680 -0.105101 -0.291301 0.196985 2.645936 -1.786271 1.980192 -1.876302 -1.502021 1.043578 0.120063 -0.093124 -2.036310 -1.199581 0.994782 -0.460409 -0.750384 1.265640 0.281873 -0.067437 -0.275829 0.953358 1.080435 -2.631292 1.096576 0.395358 -0.152581 -0.047236 -0.255893 -0.059910 0.539481 -0.974142 -0.915909 0.326814 0.236749 -0.714898 0.117172 -0.127093 -1.739296 1.779627 0.498706 -1.049353 0.502837 1.042121 -1.745290 1.619883 -1.774029 -1.613570 0.013579 0.070051 -0.676204 1.504520 0.010210 0.847901 -2.438931 0.399543 -2.142349 1.096825 -1.843473 0.577646 1.879216 -0.948482 0.523802 0.624488 0.696719 1.684434 0.155111 1.576383 1.192457 1.321343 0.512507 0.938637 1.220761 -1.197414 -0.867332 -1.590084 -1.924206 0.155318 -0.497145 -2.463797 0.303958 0.273756 -0.000627 0.579579 -0.392765 -0.029589 1.646591 -2.034622 -0.155710 0.749103 -0.238805 0.387134 1.944884 -0.663881 0.299957 -0.713148 1.843688 -0.681608 1.133909 -0.001744 0.584638 -1.130866 -1.251660 -1.518593 0.378306 0.365718 -0.935071 -1.444477 -2.421811 -0.017824 0.466458 -0.617757 1.434502 3.147211 -0.980315 -1.652529 1.939574 0.988341 -0.108462 1.191563 -0.021868 2.236741 -0.884321 -0.241559 -1.022118 -0.537897 -0.212772 2.018227 0.753321 -0.535589 0.627338 -0.046572 -2.461729 1.635808 -0.287138 -0.864315 -0.527483 0.334538 -1.011377 -0.959897 2.055855 -0.694372 1.487613 -0.386121 2.162143 -0.741730 -1.386308 0.842203 -1.306177 0.247849 -1.656691 -0.754649 0.698775 1.191252 -1.292763 -0.543507 -0.855937 -0.849355 -0.887270 0.284262 -1.229215 0.411982 0.256946 0.765949 1.578425 2.045018 0.383261 0.293696 -1.947409 0.665480 0.590885 -0.454971 -2.239574 0.304976 -1.052613 -0.087124 0.321379 -0.415454 0.453372 -0.871959 -1.010061 -0.058006 -0.956758 0.330172 0.109148 -2.159167 0.266011 -0.505879 1.396385 0.688885 1.044680 1.973409 1.612352 1.467181 0.233970 0.167441 -0.197242 -0.392689 0.443876 0.479273 -0.123336 0.846266 1.769635 0.868143 0.211034 1.454735 1.083528 -0.178855 1.531705 0.261989 2.443056 -0.056878 -0.229776 -0.264486 -0.120073 1.152218 2.852940 -0.297291 0.196799 0.909604 0.673019 -0.615937 -0.924124 -0.035573 -0.931115 -0.366598 1.213044 0.330044 -0.618844 -0.058026 1.721939 -0.112771 -2.363732 0.666113 -0.059509 0.711931 0.947533 -0.021048 0.185499 0.758699 -1.513246 1.547528 1.119052 1.019668 -1.200427 -1.079526 -0.062584 0.793734 1.064603 1.110227 -2.980175 0.343706 0.917386 1.635980 0.270102 1.803366 -1.253213 -0.798502 0.744806 -0.683412 -0.746107 -0.039672 0.837458 -1.098106 0.379060 -1.522860 -1.263035 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__sortedInsert(Node**, Node*) = 1.105379 -0.226361 3.185635 -3.087660 -3.369411 1.558024 -0.431642 -2.207690 1.228534 4.400488 1.296318 -1.006885 -0.726114 4.781390 -1.552777 -2.299802 0.389780 -0.713095 0.874155 -0.742186 0.623262 2.115858 -0.694750 0.262167 -0.106766 -1.662149 0.646386 1.734185 -0.533961 1.143029 -2.141872 -1.315216 -1.174885 4.157113 0.657885 0.776315 0.041400 6.017886 -3.484523 6.439133 -5.147087 -4.827756 1.952153 0.497806 0.774857 -3.006020 -2.154821 1.085983 -0.713781 -1.699357 2.621416 -0.820524 1.323761 -0.152850 2.068306 0.993614 -4.872794 0.278529 -0.031961 -1.666864 -0.830966 -1.065240 0.481008 2.527056 -4.073449 -1.728520 1.679298 2.611553 -1.479127 0.779453 -0.431857 -4.802047 3.433513 1.729765 -3.076929 0.317515 3.272622 -4.437057 3.361853 -2.726846 -4.417592 -0.603202 -0.619255 -3.394033 3.238155 0.804597 4.723299 -6.182904 3.061529 -5.654257 3.437708 -3.459654 2.328711 4.340274 -2.248198 1.115182 2.797675 5.751707 3.655907 -0.499621 3.617404 4.103971 1.536602 0.866870 3.534892 2.881266 -2.920867 -2.620489 -3.655541 -3.890538 0.363290 -3.004839 -6.121741 -0.058142 0.073092 0.935097 -0.004409 -0.280600 -0.927481 4.831126 -7.668768 -0.629119 1.347770 -0.619008 1.282778 2.678258 -1.370367 1.471873 -0.265833 4.677686 -3.046764 0.721785 -0.517648 1.648687 -4.283395 0.514641 -3.710297 1.342011 1.502757 -2.793026 -4.117257 -6.090302 -1.685000 4.125168 -0.451548 5.416361 7.422865 -2.245517 -3.997429 3.496090 0.123038 -1.730368 3.889248 0.910351 3.922336 -2.586751 0.109767 -3.888849 -0.190738 -0.418749 5.653467 1.584693 -0.698293 2.884781 -0.510542 -3.610182 5.105667 -1.745781 -2.061934 -4.320247 0.717228 -2.397923 -0.677392 4.777301 -5.605162 3.091202 -2.278665 5.414276 -2.734750 -2.807214 0.885174 -6.736528 -0.352001 -3.683931 -0.486377 0.263779 4.111981 -4.134862 -2.065967 -1.727742 -3.011588 -0.537007 1.110742 -3.057822 0.617950 0.768532 0.767135 7.138031 4.784679 2.074013 -0.775855 -3.271640 1.418701 1.997760 -1.688010 -3.871624 -0.010440 -2.801544 -0.107435 -1.233518 -0.087224 1.698078 -3.851921 -2.190981 -1.703751 -1.720340 0.890935 0.463894 -7.020433 1.075278 -0.064926 3.237132 1.804512 2.207054 4.554510 4.252996 3.657212 -0.543728 0.626440 -1.625793 -1.300377 2.124498 3.078153 -0.581727 1.115034 5.632346 1.555989 0.742304 2.945994 3.300502 1.736472 3.294917 -0.299250 5.390628 -0.621671 0.485885 -0.825349 -0.245995 2.693377 6.857497 -0.488188 2.079577 1.861982 1.112802 -1.887846 -1.991010 0.486897 -2.086960 0.130956 1.488378 2.055422 -0.887002 -1.505495 4.505468 1.060602 -5.983874 1.475470 -0.059572 1.350496 4.172300 -0.953699 0.695985 0.979338 -2.535521 5.122914 2.342032 2.018810 -3.336927 -1.604344 -0.217624 1.535041 4.128155 1.982832 -5.444818 1.896432 1.685528 4.402112 1.126631 4.906744 -3.337866 -0.541605 1.135550 -3.483542 -1.785190 0.340097 2.359496 -1.401471 1.263256 -4.694358 -3.471237 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__printList(Node*) = 0.279730 0.184324 0.754150 -0.898662 -0.917688 0.246343 0.101604 -0.461773 0.226249 1.042186 0.392720 -0.481815 -0.653202 1.303420 -0.315199 -0.834459 0.037156 -0.553394 -0.038526 -0.161431 0.051619 0.550839 -0.117922 0.001630 0.112432 -0.234800 -0.011275 0.552684 0.169958 -0.190333 -0.585114 -0.226315 -0.094589 1.194006 0.006167 0.135918 0.059599 1.714813 -0.888312 1.568948 -1.444535 -1.279662 0.770759 0.094153 0.023268 -1.026687 -0.439908 0.580094 -0.489398 -0.525915 0.697222 -0.028859 0.048962 -0.302150 0.498709 0.695844 -1.724235 0.602556 0.107353 -0.265097 -0.261169 -0.242517 0.142937 0.453227 -0.674878 -0.647700 0.306128 0.359547 -0.708960 0.207118 -0.222544 -1.219228 1.200154 0.447419 -0.744955 0.280438 0.661873 -0.980270 0.953705 -1.098286 -1.067487 -0.159426 0.100627 -0.559001 0.984300 0.254417 0.824634 -1.754491 0.470216 -1.508352 0.931684 -1.085539 0.649050 1.228540 -0.581421 0.422895 0.525846 0.752554 0.885592 -0.050141 1.086053 0.753882 0.696755 0.246116 0.771844 0.694261 -0.862637 -0.713984 -0.953743 -1.190111 0.072507 -0.497893 -1.598129 0.092739 -0.121529 0.357173 0.358141 -0.110997 -0.185010 0.933421 -1.917412 -0.309494 0.385513 -0.182326 0.575804 1.044620 -0.358595 0.303594 -0.188901 1.285711 -0.532108 0.385078 -0.118241 0.455737 -0.667484 -0.394145 -1.030586 0.254044 0.388856 -0.722171 -1.138457 -1.641588 -0.285895 0.718322 -0.308163 1.387603 2.146519 -0.566446 -1.124426 1.130202 0.110246 -0.022495 1.021484 0.139395 1.415798 -0.833920 0.082388 -0.702390 -0.062649 0.034399 1.344020 0.335082 -0.410666 0.601745 -0.027167 -0.992852 0.924746 -0.272958 -0.459282 -0.745820 0.121428 -0.702465 -0.505958 1.320025 -0.937509 1.082379 -0.367345 1.594808 -0.775413 -0.955741 0.486039 -1.326104 -0.041080 -1.015376 -0.453277 0.183147 0.926268 -1.153536 -0.519340 -0.553816 -0.606134 -0.349435 0.413335 -0.675130 0.181601 0.081688 0.257625 1.625920 1.257240 0.246982 -0.003535 -1.244564 0.386455 0.500999 -0.323049 -1.246170 0.121077 -0.741853 -0.075081 0.278135 -0.171184 0.412580 -0.738636 -0.638341 -0.137854 -0.512229 0.275723 -0.021377 -1.571068 0.183655 -0.099437 0.715032 0.558656 0.845929 1.271640 1.059687 0.841254 -0.028763 0.145196 -0.320008 -0.304258 0.310779 0.423557 0.107468 0.503966 1.186068 0.469107 0.169244 1.002363 0.801133 -0.011130 1.051956 0.108981 1.563734 -0.227850 -0.018680 -0.107930 -0.224601 0.766160 1.840766 -0.583980 0.257865 0.662804 0.414353 -0.366916 -0.611391 -0.055153 -0.675441 -0.180891 0.725886 0.375430 -0.328303 -0.258926 1.351901 0.109414 -1.715297 0.588512 -0.019968 0.408580 0.832683 -0.237924 0.107256 0.483981 -0.943046 1.008766 0.666454 0.712150 -0.928757 -0.390948 -0.061265 0.604392 0.739229 0.525913 -1.657986 0.171384 0.547246 1.269749 0.436270 1.185296 -0.833289 -0.362777 0.284369 -0.684438 -0.427463 -0.036064 0.634160 -0.485598 0.208332 -1.198390 -0.762556 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 0.219849 0.245343 0.858384 -1.155050 -1.592788 0.260702 -0.038050 -0.621294 0.175193 0.255654 0.875653 -0.803868 -0.261432 1.815247 -0.426978 -0.812044 -0.172352 -0.501393 -0.207239 -0.091715 0.209273 0.737970 -0.262656 0.237398 -0.068102 -0.139139 -0.155147 0.743860 0.563689 -0.290724 -0.829641 -0.260905 -0.059205 1.298469 0.201693 -0.256633 0.293269 2.173192 -1.189859 1.363400 -1.272725 -0.932466 0.775784 0.097550 -0.267098 -1.615164 -1.590862 0.664326 -0.529384 -0.360403 1.147411 0.039019 0.149406 -0.006499 0.714672 0.826446 -1.944156 0.741231 0.384281 -0.107807 0.099523 -0.222853 -0.149106 0.428195 -0.821327 -0.665728 0.471286 0.535547 -0.257837 -0.052706 -0.077868 -1.674811 1.965594 0.348521 -0.786243 0.236659 0.920892 -1.641915 1.308921 -0.797626 -1.491291 0.051256 -0.119088 -0.620217 1.378519 -0.263837 0.763263 -1.943123 0.290855 -1.993491 0.742451 -1.503036 0.431689 1.408525 -1.309610 0.256025 0.668565 0.863509 1.359599 0.344626 1.270610 0.981611 0.637811 0.335123 1.040109 0.787582 -0.635703 -0.565426 -1.254099 -1.617879 0.048390 -0.579224 -2.601348 0.323424 0.178072 -0.130097 -0.117189 -0.170440 0.140197 1.513773 -1.128910 0.242346 0.572824 -0.194381 0.128440 1.645883 -0.588311 0.312859 -0.699881 1.457182 -0.692352 0.823023 -0.096858 0.450502 -0.895434 -1.308109 -1.528705 0.496154 0.487944 -0.801458 -1.258690 -1.686194 -0.030326 0.403611 -0.473655 1.037060 2.478214 -0.902870 -1.399635 1.540672 1.357552 -0.182667 1.243639 0.064012 1.948095 -0.656849 -0.233190 -1.002919 -0.671923 -0.411991 0.570798 0.532933 -0.214821 0.637677 -0.048328 -2.355064 2.439215 -0.420369 -0.861309 0.040205 0.350405 -0.746287 -0.955581 1.806141 0.112489 1.102624 -0.014971 1.810969 -0.560805 -1.177416 0.569812 -0.592455 0.196401 -1.132467 -0.400567 0.479888 1.097673 -0.821900 -0.535314 -0.540467 -0.693616 -0.656132 0.245320 -0.103534 0.396667 0.394679 0.615367 0.610736 1.940928 0.443801 0.314832 -1.443619 0.567176 0.756596 -0.465739 -1.733319 0.166934 -0.896425 0.016426 -0.201241 -0.224388 0.512942 -0.913322 -0.814540 -0.310013 -0.634896 0.469910 0.366930 -1.888273 0.328381 -0.527760 1.096335 0.529616 0.781750 1.789976 1.461394 1.362533 0.156668 0.201979 -0.068253 -0.223083 0.241256 0.535219 0.155942 0.604079 1.610762 0.668196 0.263613 1.030428 0.936872 0.379850 1.179292 0.447580 2.134079 0.235330 -0.145425 -0.407328 -0.022716 1.125434 2.632084 0.065170 0.384728 0.569432 0.726402 -0.518122 -1.362087 0.075092 -0.504234 -0.372878 0.947990 0.262148 -0.272687 -0.231071 1.407140 0.022422 -1.834199 0.482940 0.036483 0.538261 0.845980 -0.044264 0.179761 0.478589 -1.091716 1.407497 0.973590 0.840590 -1.009663 -0.965127 -0.032070 0.615506 0.717083 1.001470 -2.014217 0.856832 0.790283 1.287889 0.169166 1.143649 -1.158064 -0.648360 0.661689 -0.616830 -0.510151 0.166855 0.629285 -1.177936 0.316413 -1.125434 -1.325391 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.320927 0.812949 0.466165 -0.360791 -1.223660 -0.273105 -1.006431 -0.299155 -0.096568 0.033907 -0.040759 -1.154941 -0.999158 0.961978 -1.244694 -1.297841 -0.948287 -0.070072 -0.378694 -1.253643 -0.044259 0.368511 0.131439 0.018063 0.240747 -0.429026 -0.149429 0.305807 1.882076 -0.571965 0.015224 0.145508 0.795093 1.022101 -0.226954 -0.280369 0.503477 1.505570 1.193767 -0.522957 -1.296319 -1.171771 0.807754 0.188973 0.007019 -1.222063 -0.581468 0.525319 -2.461588 1.508886 -0.049828 0.342717 -0.982085 -0.448745 0.284491 0.867087 -2.499301 2.867118 -0.152377 0.052672 -0.187381 -0.159568 -0.260579 -0.366305 1.356733 -0.615454 -0.234307 1.217519 -1.485890 0.839443 0.202800 -0.084988 1.881133 -0.218748 -0.630853 0.549676 0.304227 0.271429 0.433795 -2.180756 -0.493902 -0.132805 1.307338 1.044531 0.795118 0.678591 -0.404600 -1.427109 -0.369786 -1.035887 0.614483 -1.072875 0.593115 0.822188 -1.666087 0.770989 -0.029303 -1.434140 0.998866 0.833982 1.109917 -0.046669 0.769504 0.333633 -0.456411 0.157333 0.381278 0.055201 0.099131 -0.989004 -0.944637 0.537297 -2.113077 -0.140157 -0.500506 1.354423 0.276225 -0.027892 0.141566 -0.381389 -1.485753 -1.673804 0.104880 -0.125036 0.926909 0.547621 -0.210522 0.425223 -0.472519 1.246039 0.174265 -0.236277 -0.018650 0.106172 0.472142 -2.742845 -2.602953 -0.031110 0.136710 -0.186547 -1.068052 -0.388921 -0.431422 -0.553851 -0.216039 0.821703 1.682210 0.123970 -1.192081 1.364738 -0.380481 1.008218 2.051211 0.179275 1.575410 -0.541387 0.061522 0.116186 -0.047565 0.305176 -1.475803 -0.113226 -0.611157 -0.050676 0.897254 0.185929 -1.396480 -0.514832 -0.292483 -1.151889 -0.115851 -0.558645 -0.320562 1.049461 0.616162 1.551788 -0.268534 1.551228 -0.912128 -2.354961 0.445817 -0.760378 0.265648 0.834994 0.132839 -0.194729 0.578534 -1.482484 -0.663799 0.304944 -0.037381 -0.553244 0.377326 1.654300 0.097854 -0.067679 0.495722 1.008340 0.959142 -0.520029 0.823680 -1.555780 -0.059234 0.865587 0.391325 -2.138758 0.824503 -0.158191 -0.069832 0.872449 -0.230506 -0.248476 0.420190 -0.401920 -0.458655 -0.740645 1.158954 -0.163270 0.864913 0.410292 -1.179031 0.130621 0.044673 0.687648 1.759153 0.073229 0.271454 0.280563 0.490305 -1.084165 2.322574 0.265115 0.831970 -0.072108 0.338174 0.963631 0.328442 -0.092194 0.718487 0.963555 -1.292575 0.866243 0.284316 1.863753 -1.901236 0.345769 -0.791950 -0.139181 0.812641 2.294205 -1.388950 -0.424697 0.659475 0.862213 1.220479 -1.826036 -0.813410 -0.398724 -0.638243 0.875291 -0.099106 -0.861003 0.459280 0.916532 0.277222 -0.679567 1.614841 0.235923 -0.297674 -1.222301 -0.380046 -1.539825 1.320543 -1.456741 -0.766759 0.399423 0.584709 -0.748982 -0.853341 -0.332557 1.433468 -0.582934 0.679211 -0.361222 -0.021972 1.664222 0.958046 0.613138 -0.209107 -0.290936 -2.331161 0.185286 0.029960 -0.837247 0.409369 -0.076490 -1.120244 0.546251 1.233684 -1.796010 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 0.881499 0.753205 1.023493 -2.526319 -0.611466 -0.110076 2.197461 -0.794225 0.211111 2.848407 1.288262 -1.273061 -2.097632 2.596416 -0.193622 -1.771336 1.493522 -1.376547 -0.495384 -0.201449 0.054006 1.114639 -0.054543 -1.486233 1.197116 -0.299187 -0.110460 1.999136 0.587070 -0.602292 -1.483708 -0.141200 0.513006 3.168559 -0.499803 -0.179007 -0.555540 3.293412 -3.864977 3.294896 -3.642376 -2.410963 3.638323 0.287031 -0.687828 -4.038082 -1.281158 1.252265 -0.209726 -2.286107 0.639802 -0.501816 0.614923 -2.224954 0.182657 3.831707 -4.084721 0.580849 0.788755 -0.664649 -1.420326 -0.504249 1.478157 0.294815 -1.775205 -2.183718 0.669154 -0.983104 -1.705473 0.555920 -2.011642 -3.282514 2.095381 1.154673 -1.081321 1.002417 -0.358774 -3.638551 1.817558 -1.403048 -1.137172 -0.866313 0.988606 -0.200213 1.534405 0.225131 1.721885 -4.362017 -0.698929 -3.218985 2.073837 -2.733579 2.533849 2.706769 -1.017504 1.414253 0.257937 0.652243 0.776468 -0.344336 2.859499 1.474049 2.674409 -0.815686 1.982888 2.242550 -2.540481 -2.573007 -1.782497 -1.981973 0.459828 -0.896089 -4.058148 0.471473 -2.281635 -1.394139 1.547530 -1.459464 -0.495548 3.131409 -3.172045 -0.555456 1.212221 -0.631912 1.466456 3.451512 0.121225 -0.201345 -0.462871 2.507520 0.224369 1.211535 -0.826801 1.443065 -1.710055 -2.797935 -0.247677 -0.315767 0.531906 -2.582615 -3.031968 -4.193681 -0.383755 0.703020 -0.940485 1.569245 4.606808 -0.814470 -2.949919 2.008506 0.956805 0.340831 1.983039 0.124631 4.683236 -3.564865 1.839285 -0.656491 1.155041 1.117074 4.313203 -0.635944 -1.916853 0.902016 -0.921456 -3.672538 2.243465 -0.153259 0.517474 0.384278 0.164444 -1.391241 -1.950649 3.422483 -1.758742 3.559815 -1.625785 3.682495 -2.489434 -2.290705 1.644324 -2.142722 -0.878848 -2.993388 -1.390298 0.612902 2.191090 -1.973999 -1.469840 -1.947225 -0.525653 -0.187809 2.417352 -3.446188 -0.096090 -1.056001 -0.556867 1.926546 1.449906 -0.956311 0.832923 -2.870039 0.801523 1.941802 -0.047738 -4.308519 0.207346 -2.037053 -0.488861 0.644663 -0.532392 1.673124 -1.287560 -1.725707 1.419840 -0.973263 -0.276573 -1.618523 -3.803995 0.747952 -0.968442 0.415058 0.746524 3.540950 2.709560 1.685625 -0.048534 -0.823875 0.647687 -1.465629 -2.977671 0.805949 -0.485940 0.547993 1.459562 2.094134 0.505070 0.509958 2.549729 0.773702 -0.263508 2.589763 1.476067 2.803796 0.533494 -0.701746 1.145797 -2.141804 1.756924 3.625673 0.171737 -1.242940 1.725019 0.724989 -1.506235 -1.747419 -0.725757 -1.196656 -1.860451 3.013752 0.660880 -1.137802 -0.832139 4.472490 0.290069 -4.960412 1.923179 -0.011732 1.073316 1.693863 -1.201166 1.064510 1.890594 -0.878098 1.463047 0.721258 2.443516 -2.218817 -0.994662 -0.096763 1.637600 2.165617 -0.417392 -5.931092 0.363006 0.950220 3.849001 1.510413 4.004305 -1.195437 1.011459 -0.717915 -0.266467 -0.300404 -1.305644 1.605901 -1.642128 -0.535224 -4.395108 1.066318 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.334034 0.460191 0.295174 -0.425475 -0.880379 0.268156 -0.747542 -0.552623 0.010285 0.066526 0.403851 -0.561727 -0.498973 0.710091 -0.684593 -0.743003 -0.361600 -0.130046 -0.063166 -0.528530 0.049516 0.170245 -0.087015 -0.047636 -0.134302 -0.195888 -0.052406 0.110415 0.961436 -0.263270 -0.519303 0.002678 0.234595 0.738273 0.246240 -0.197399 0.278443 0.892599 0.322921 -0.045531 -1.047914 -0.677211 0.361383 0.183884 0.010626 -0.916183 -0.507621 0.314235 -1.149465 0.562909 0.345711 -0.236772 -0.142814 0.019991 0.165622 0.590567 -1.398926 1.450639 0.008974 0.019606 0.104372 -0.071492 0.103911 0.140748 0.633781 -0.408258 0.128358 0.866666 -0.624077 0.199528 -0.150922 -0.669145 1.281720 -0.005132 -0.559959 -0.026602 0.131590 -0.341659 0.382257 -1.155485 -0.622435 0.024437 0.464941 0.506456 0.516047 0.338547 0.047730 -1.023876 -0.177935 -1.050779 0.469645 -0.498912 0.494136 0.409499 -0.992812 -0.016511 0.273281 -0.530680 0.905934 0.433178 0.717182 0.096820 0.290711 -0.010159 0.055694 0.208443 0.125063 0.084876 -0.058617 -0.791856 -0.468900 0.272579 -1.484866 0.008619 -0.410151 0.664241 -0.105244 -0.125202 0.142704 0.098656 -0.820572 -0.929471 -0.062757 -0.048902 0.725245 0.656564 -0.126303 0.502291 -0.189111 0.803921 -0.162102 -0.110718 -0.138537 0.135708 0.090499 -1.703355 -1.692256 0.365227 0.451325 -0.410237 -0.759327 -0.538911 -0.132721 -0.227620 -0.186379 0.543695 1.142115 -0.268739 -0.856400 0.764853 0.044211 0.150579 1.454848 0.027915 1.268046 -0.592349 0.245665 -0.090484 -0.152343 -0.176153 -0.626938 -0.098228 -0.185208 0.084222 0.399069 -0.450576 -0.272725 -0.189931 -0.419135 -0.314716 -0.029063 -0.243113 -0.248713 0.576359 0.369884 0.621882 0.069442 1.057203 -0.716542 -1.300550 0.296794 -0.287882 0.028617 0.503647 -0.121038 0.095527 0.594359 -0.813271 -0.312084 0.074121 -0.093600 -0.340942 0.314392 0.914343 0.114956 0.199413 0.121304 0.505013 0.921659 -0.007767 0.458148 -0.707073 0.102354 0.641353 0.004902 -1.285577 0.141939 -0.600384 0.072995 0.451547 -0.175902 0.246226 -0.015580 -0.377872 -0.306965 -0.450568 0.897992 0.164967 0.295931 0.317421 -0.695165 0.150265 0.069095 0.583761 0.768783 0.624718 0.505790 -0.035577 0.313306 -0.514456 1.145786 0.029002 0.622030 0.047697 0.286954 0.624961 0.132377 0.094143 0.507169 0.478601 -0.255835 0.634962 0.080586 1.103366 -0.899306 0.374519 -0.508750 -0.257722 0.574975 1.594289 -0.820041 -0.081308 0.207596 0.385636 0.458049 -1.060994 -0.130005 -0.245652 -0.459510 0.509505 0.327673 -0.036640 -0.275866 0.793375 0.227913 -0.642332 0.968585 0.057784 -0.087857 -0.113194 -0.309026 -0.603432 0.353392 -0.757374 -0.014526 0.562713 0.604229 -0.533510 -0.637641 -0.182429 0.783383 -0.218043 0.329885 -0.469006 0.247477 0.986071 0.759021 0.452783 0.059565 -0.577594 -1.052076 0.166111 -0.156008 -0.294406 0.138377 0.240735 -0.691326 0.226126 0.396794 -0.794718 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp___GLOBAL__sub_I_count_possible_ways_to_construct_buildings.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/vertex-cover-problem.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/vertex-cover-problem.cpp__Graph::Graph(int) = 0.632215 -0.300965 1.142276 -1.149712 -0.991054 1.047999 -1.193429 -0.349856 0.827714 0.593028 1.173084 -0.556417 -1.440837 0.100021 -0.341461 -1.721827 1.116998 0.439814 0.935306 -0.783965 0.174716 0.061609 -0.088033 -0.692668 0.461320 -0.994571 -0.413726 1.139654 1.795500 0.516296 -1.134613 0.171411 -0.430820 2.177862 -0.003181 -0.188036 0.739556 2.297340 0.443690 0.621657 -1.642944 -1.802639 1.814464 0.638607 0.112192 -0.281956 -0.303486 0.209837 -2.831339 -0.018821 0.680141 -1.056197 1.229328 -0.514241 -0.203463 1.553816 -3.219448 0.285815 -0.505420 -0.736161 -0.791351 0.462446 0.276968 0.770044 0.541921 -0.943236 0.843473 1.248307 -0.891582 0.109002 -0.261503 -1.760942 2.429858 0.589272 -0.500306 0.315532 1.231081 -1.462263 0.916578 -0.484915 -1.602410 -0.429323 0.166253 -1.119341 1.679075 0.028017 1.921510 -2.183855 0.631582 -2.452852 1.856559 -0.950463 1.655092 1.352361 -1.819102 0.622420 1.290724 0.643111 0.708618 0.082408 2.631854 0.932453 0.588038 -0.208829 1.099133 0.512287 -0.636005 -0.413662 -0.909997 -1.286028 -0.909887 -0.855608 -2.889756 -0.136081 -1.659158 1.294442 0.781624 -0.182524 -0.106070 1.344179 -1.695836 -0.831377 -0.107878 -0.191525 1.170813 1.072695 0.042607 -0.209711 1.066538 2.632473 -1.085492 -0.996376 -0.113733 0.822422 0.251583 -1.219027 -1.693822 0.549880 0.916391 -1.623542 -2.095174 -1.527298 -0.348436 0.825758 0.136811 2.092127 3.417125 -0.064132 -1.418524 1.195245 -1.345898 0.017321 3.175299 0.560794 2.261895 -1.955138 0.827876 -1.455321 0.631431 -0.029528 0.430507 -0.057924 -0.006073 0.796419 0.694941 0.818964 0.914182 -0.720345 0.316432 -0.325250 -0.159225 -0.787001 -0.880504 1.483953 -0.001921 1.744003 0.520471 2.900190 -1.124681 -3.006360 0.834296 -0.470741 -0.885147 0.080382 -0.329450 0.220161 0.547801 -1.389132 -1.158622 -1.167832 -0.082582 0.071684 1.090088 2.294280 0.626007 0.339602 -0.804283 1.126950 0.977900 0.426603 0.069122 -1.920764 -0.084311 0.716996 -1.363990 -1.221491 -0.141440 -1.275191 0.542901 1.057528 0.132683 1.598170 -0.666173 -1.243577 -0.591528 0.165145 0.905938 -0.479672 -2.381336 0.620274 0.564102 -0.337456 0.696414 1.741148 2.347146 1.376520 -0.117224 -0.228596 0.659265 -0.518860 0.471340 -0.446151 0.429788 1.272935 -0.061564 1.226741 -0.036949 0.621059 0.966267 1.338867 0.662204 1.488887 0.463232 1.822736 -0.599946 -0.021401 0.312145 -1.317354 1.282719 2.348340 -1.196560 0.474151 0.508718 1.217535 -0.060944 -2.268551 0.438213 -0.767898 -0.170902 0.577345 0.704763 0.417456 -1.325599 1.621104 1.539220 -2.919237 2.194107 -0.257498 -0.096729 1.307128 -0.805212 -0.375289 0.238196 -1.231922 1.350153 0.663424 0.899098 -1.824534 0.232267 0.058365 1.728449 -0.829967 0.317283 -0.779754 0.273479 0.249539 1.227215 2.016263 1.342137 -1.329086 -1.198328 -0.740509 -2.199767 -1.165946 -0.088945 0.022224 -1.146346 0.685177 -1.417475 -0.552764 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::list() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/vertex-cover-problem.cpp__Graph::addEdge(int, int) = 0.445450 -0.039208 0.368635 -0.503556 -0.916004 0.337734 -0.553410 -0.620888 0.075622 0.468661 0.601095 -0.799850 -0.061683 1.391921 -0.336437 -0.818404 -0.070142 0.442614 -0.022082 0.047356 -0.061672 0.451198 -0.282939 -0.048594 0.156157 -0.095024 -0.091915 0.343985 0.565955 0.051030 -0.837641 -0.138618 -0.030950 1.258321 0.182131 -0.047048 0.389227 1.725141 -0.622642 1.224181 -0.932317 -0.915263 0.779681 0.209203 -0.019059 -0.284347 -0.945013 0.583156 -0.822612 -0.423984 0.748908 -0.193943 -0.008331 -0.162343 0.499316 0.811193 -1.733851 0.704110 0.292178 -0.011726 -0.314420 -0.210454 0.074082 0.198670 -0.645732 -0.713724 0.291265 0.842156 -0.350644 -0.051994 -0.442152 -1.610574 1.724032 0.242125 -0.831948 0.185436 0.464869 -0.956008 0.879013 -0.524915 -1.192020 -0.051280 0.148348 -0.405006 1.036761 0.367154 0.906570 -1.805527 0.623501 -1.795566 0.891138 -1.065323 0.840187 1.382178 -1.445433 0.197392 0.642527 1.083586 1.005365 0.537556 1.279728 0.563613 -0.121089 -0.012285 0.594261 0.653306 -0.636119 -0.552366 -0.786603 -1.232173 -0.014029 -0.267177 -2.066044 0.168078 -0.483293 0.881987 -0.050696 0.100098 0.031180 0.849157 -1.602573 -0.341133 0.210240 -0.166671 0.834629 1.200543 -0.344478 0.350125 -0.506274 1.283799 -0.464681 -0.146813 -0.270656 0.458683 -0.782264 -0.883920 -1.413167 0.410392 0.630906 -0.952302 -1.249812 -1.630208 -0.086919 0.630556 -0.427345 1.308742 2.150073 -0.687453 -0.842525 1.204996 0.185989 0.106141 1.625306 0.098455 1.867210 -1.042162 0.286451 -0.433752 -0.142285 -0.230644 -0.408668 0.202740 -0.388405 0.453998 0.150985 -0.935204 1.951158 -0.212711 -0.541484 -0.603290 0.319950 -0.279524 -0.517539 1.605529 -0.505487 0.754827 -0.130143 1.794494 -0.718147 -1.034210 0.648246 -0.816183 -0.221465 -0.686146 -0.399471 -0.041157 1.101873 -1.128065 -0.491658 -0.085549 -0.409804 -0.421082 0.462450 0.881995 0.141275 0.172213 0.130634 0.927193 1.310948 0.245347 0.193536 -1.321340 0.175613 0.716629 -0.876606 -1.239215 0.158070 -0.989838 0.017744 -0.021863 -0.234799 0.396869 -1.054554 -0.738018 -0.400824 -0.262459 0.805723 0.116986 -0.972315 0.386129 -0.439102 0.553186 0.729220 0.965493 1.428616 1.249513 0.935154 0.001874 0.300222 -0.285580 -0.073377 0.446978 0.372231 0.749279 0.519020 1.018159 0.396639 0.249847 0.428198 0.318333 0.444081 1.158012 0.629838 1.876377 -0.046037 0.141473 -0.193335 -0.400136 1.028797 2.077974 -1.065675 0.291966 0.432180 0.371010 -0.360130 -0.910637 0.038407 -0.389600 -0.754958 0.279478 0.021581 0.041095 -0.488548 1.455668 0.068474 -1.698829 0.794168 -0.011722 0.362652 0.862565 -0.161888 0.209748 0.348767 -0.718037 0.940883 0.801474 0.968188 -0.959522 -0.260381 -0.171861 0.789041 0.571051 0.508791 -1.062086 0.958716 0.809580 1.116782 0.492465 0.390384 -0.876799 -0.468642 0.093922 -0.793620 -0.320888 -0.155323 0.598565 -0.418760 0.292883 -1.026330 -1.086527 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::push_back(int const&) = 0.171647 0.148963 0.325838 -0.673587 -1.084869 0.198494 -0.415390 -0.367582 0.072812 -0.107432 0.492827 -0.680158 -0.367929 1.183094 -0.275975 -0.791588 -0.242104 -0.217151 -0.135821 0.040863 0.062457 0.422379 -0.163140 0.245178 -0.098250 0.038859 -0.228028 0.297651 0.877357 -0.333875 -0.734844 -0.085874 -0.024716 0.829473 0.142133 -0.181345 0.387889 1.483022 -0.222460 0.778509 -0.723213 -0.514443 0.304280 0.102322 -0.191121 -0.794974 -0.905311 0.497728 -0.903156 -0.002363 0.841816 0.067725 -0.199579 0.106363 0.575938 0.567471 -1.450069 1.019518 0.222830 0.332183 0.294744 -0.193275 -0.178923 0.186986 -0.183016 -0.426598 0.214245 0.474449 -0.441245 -0.057759 -0.097898 -0.991990 1.507314 0.286401 -0.697816 0.133704 0.606083 -0.781606 0.755434 -0.895668 -1.031401 0.175060 0.026666 -0.102796 1.078499 -0.035823 0.244383 -1.253132 0.225260 -1.326465 0.441167 -1.036623 0.296302 1.041058 -1.068949 0.037917 0.354917 0.243405 1.002321 0.373110 0.875607 0.452596 0.179047 0.151742 0.448039 0.329163 -0.235930 -0.157870 -0.533447 -1.086384 -0.230613 -0.139710 -1.756959 0.176897 0.040212 0.534826 -0.006268 0.122344 0.030857 0.317620 -0.812775 -0.352879 0.113032 -0.116876 0.476128 1.127876 -0.468444 0.332973 -0.536972 1.061968 -0.295755 0.369871 -0.123587 0.192429 -0.336436 -0.969083 -1.421072 0.347346 0.465993 -0.416225 -0.885544 -0.985835 -0.016812 -0.000288 -0.304028 0.897434 1.605573 -0.509395 -0.737741 1.176834 0.418360 0.285657 1.136236 -0.067206 1.311978 -0.413246 -0.063724 -0.385297 -0.419189 -0.515944 -0.346930 0.356040 -0.168035 0.180508 0.083692 -1.036898 0.935070 -0.138948 -0.647493 -0.366664 0.086601 -0.462454 -0.666071 1.234485 -0.008318 0.616938 0.208811 1.206493 -0.320965 -0.942544 0.544855 -0.214814 0.209375 -0.486132 -0.403452 0.239915 0.634212 -0.771756 -0.296939 -0.118652 -0.218598 -0.597157 0.051502 0.692226 0.168437 0.291596 0.572854 0.591663 1.353511 0.241787 0.323370 -1.088439 0.318675 0.462470 -0.538837 -0.967519 0.297083 -0.586423 0.036964 0.224465 -0.234418 0.083114 -0.532734 -0.692133 -0.352512 -0.336748 0.746629 0.364806 -0.839913 0.205139 -0.350319 0.535731 0.519562 0.458041 1.085717 0.900455 0.991987 0.058650 0.215235 0.058783 0.318540 0.035166 0.324232 0.251015 0.394153 0.813726 0.417501 0.056501 0.567051 0.620685 -0.039556 0.758363 0.419759 1.486701 0.110324 -0.064791 -0.361509 -0.202116 0.727245 1.867350 -0.700693 0.381711 0.405141 0.537115 -0.033254 -0.994324 -0.035495 -0.422859 -0.442034 0.463490 -0.170334 -0.117318 -0.104131 0.819809 -0.065252 -1.035346 0.422728 0.019260 0.254102 0.399694 0.010850 -0.120586 0.295035 -1.108247 0.777021 0.680695 0.535685 -0.456798 -0.505540 -0.117093 0.443521 0.143379 0.667542 -0.616481 0.476207 0.754073 0.855149 0.436092 0.214904 -0.637260 -0.807192 0.412258 -0.454428 -0.366175 -0.066415 0.406666 -0.659789 0.177816 -0.279173 -1.227528 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 1.857280 0.531240 3.205499 -3.761515 -2.026570 2.109108 0.063965 -3.171319 0.881674 8.304958 2.377021 -2.489911 -4.417860 5.315756 -1.211709 -4.741097 2.286490 0.132806 0.689810 -2.486643 -1.041262 1.660841 -0.872485 -2.654874 2.292976 -2.573149 0.600606 3.162786 1.375092 0.719597 -3.100786 -0.889418 -0.337827 8.297279 0.233939 1.121723 -0.046413 8.928295 -5.340381 7.937332 -7.913983 -8.586228 7.281726 1.199042 0.156884 -1.729886 0.152615 3.031462 -4.058994 -3.641702 2.121233 -2.438620 1.877111 -3.646853 0.681922 5.991143 -9.715323 2.262622 0.356447 -3.091793 -4.898154 -1.742255 3.023015 1.907865 -3.605100 -4.427352 2.099481 2.392936 -4.537404 0.823603 -4.137666 -8.010755 5.038615 2.426053 -3.405002 1.610558 0.802302 -4.632839 3.728482 -2.775060 -5.076022 -2.272656 2.310119 -3.217619 4.151683 3.813185 6.302793 -11.271984 1.622901 -9.324339 6.527666 -4.251947 7.421336 6.954080 -4.017527 3.142284 3.280535 4.813286 1.995062 -1.057902 7.551642 1.982954 2.526159 -0.078579 4.221521 4.591544 -6.085723 -5.197591 -4.433653 -5.188150 0.703333 -2.171010 -6.690537 0.146094 -6.341915 1.838194 2.425305 -0.943563 -2.621587 5.293449 -12.042121 -3.816905 1.276598 -1.429195 6.848070 5.171741 0.015724 1.846696 1.057800 7.289634 -2.571204 -1.216960 -2.726433 3.787582 -1.784037 -2.001978 -4.937450 0.922141 3.321617 -6.450554 -8.043228 -9.790027 -2.635851 4.497596 -1.659575 8.399113 12.653625 -2.793584 -5.603910 5.209889 -4.072018 1.521325 8.248095 1.570500 9.846111 -8.460896 4.040731 -2.450531 2.566962 2.428451 6.908161 -0.692869 -3.232100 3.289828 0.884134 1.032971 3.799529 -1.514663 -0.761669 -5.776368 1.282999 -2.677432 -2.733612 7.263127 -6.847671 5.960414 -2.589057 10.663037 -6.980782 -6.545891 3.539089 -7.667857 -2.756234 -4.805037 -2.543511 -1.050223 5.990458 -6.930171 -4.187402 -3.314881 -1.491137 -0.246466 4.544256 -1.413731 0.274067 -0.983874 -1.925857 8.444598 4.834958 0.139065 -0.473614 -7.245783 0.491610 4.468661 -1.799670 -6.859775 0.139632 -5.348112 -0.863477 2.534365 -0.695649 4.129391 -4.659024 -3.351237 -0.018528 -1.368579 2.269699 -1.862965 -8.793100 2.665556 -0.482933 0.283629 3.811488 7.747130 6.667977 5.689583 1.975557 -1.237355 1.399139 -3.577828 -2.902835 2.459292 1.602123 4.239289 3.143487 5.513770 1.941672 2.053665 4.545563 1.649983 0.593974 6.739013 1.456540 8.643007 -2.526866 1.128728 0.978511 -3.758736 4.585786 9.151627 -4.699071 -1.194696 3.970813 1.348284 -2.171556 -4.124628 -0.370461 -3.528694 -1.729710 2.966319 3.008836 -1.007896 -3.895743 10.753965 1.192723 -11.864086 6.416590 -0.211802 2.289232 5.244810 -2.951198 0.822861 3.226940 -3.542282 4.649286 3.430756 5.808011 -6.565209 0.955952 -0.898538 5.624252 3.822151 -0.489656 -10.001221 1.861828 2.403416 7.717439 5.192452 6.418356 -4.116237 -0.155116 -1.691840 -5.137694 -1.254504 -1.166006 4.577126 -1.368087 1.340654 -9.092075 -0.766316 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator() = 0.000942 -0.014913 0.205407 -0.305433 -0.326620 0.011392 0.126137 -0.035530 0.041976 -0.252604 0.205493 -0.223854 -0.251398 0.470514 0.032493 -0.348524 -0.002931 -0.139758 -0.153266 0.138025 0.020909 0.153111 -0.038623 0.066741 0.056646 0.049146 -0.091978 0.271311 0.237028 -0.236764 -0.256609 -0.030454 0.013152 0.363831 -0.040638 0.069678 0.128257 0.665587 -0.168971 0.524540 -0.233951 -0.170609 0.246690 -0.022554 -0.184074 -0.435572 -0.418844 0.251016 -0.333945 -0.192136 0.361533 0.117137 -0.108135 -0.087667 0.249450 0.373613 -0.623920 0.250783 0.128958 0.115409 0.076183 -0.074511 -0.174303 -0.047754 -0.134516 -0.198016 0.072850 -0.017437 -0.201143 0.010916 -0.028863 -0.410054 0.794432 0.144683 -0.193577 0.176785 0.313846 -0.323794 0.358533 -0.207467 -0.371998 0.003220 -0.009683 -0.030221 0.533449 -0.115506 0.039414 -0.532535 -0.014423 -0.511858 0.227399 -0.560918 0.096906 0.461551 -0.370774 0.170848 0.130695 0.035413 0.165632 0.158913 0.375846 0.176770 0.142473 0.066906 0.306311 0.039320 -0.204034 -0.236503 -0.348181 -0.442180 0.011271 -0.137675 -0.754085 0.077376 0.055255 0.178754 0.082191 0.107341 0.071290 0.109528 -0.234806 0.227810 0.189773 -0.072606 0.109300 0.553621 -0.202296 -0.000560 -0.255007 0.432481 -0.106872 0.294932 -0.064604 0.105068 -0.014825 -0.370092 -0.316786 0.014630 0.117971 -0.133502 -0.368044 -0.402394 0.017735 0.133088 -0.150342 0.244761 0.714215 -0.186717 -0.273783 0.474313 0.417742 0.259565 0.233979 0.028777 0.536499 -0.174752 -0.068105 -0.177340 -0.163828 -0.094232 -0.063487 0.160303 -0.145892 0.147752 -0.003168 -0.683510 0.770212 -0.115928 -0.178667 0.174029 -0.005726 -0.253107 -0.423003 0.605411 0.221494 0.397003 0.098241 0.528189 -0.092347 -0.314790 0.208673 0.081892 0.110320 -0.461340 -0.210928 0.133301 0.175999 -0.304080 -0.173639 -0.155974 -0.110573 -0.188916 0.063310 0.120942 0.053982 0.030914 0.238638 0.062605 0.489404 0.034011 0.095547 -0.552357 0.149794 0.080824 -0.190545 -0.365302 0.186323 -0.140225 -0.013038 0.099824 -0.069928 0.009227 -0.187074 -0.277900 -0.010047 -0.167076 0.087848 0.066223 -0.494724 -0.059726 0.034129 0.183268 0.259215 0.210779 0.598264 0.298660 0.321627 0.087071 0.055885 0.145194 -0.206958 -0.051990 -0.088417 0.265443 0.167304 0.233899 0.204622 -0.017680 0.281975 0.258303 0.046296 0.326539 0.380149 0.602893 0.289540 -0.207946 0.010662 -0.086076 0.326701 0.620991 -0.209760 0.205822 0.239532 0.321732 -0.096657 -0.394303 -0.070808 -0.175197 -0.246882 0.438863 -0.151881 -0.105885 0.029987 0.387813 -0.085528 -0.527088 0.037432 0.018666 0.172468 0.186039 0.053616 0.077667 0.209651 -0.401490 0.317388 0.152688 0.249473 -0.234148 -0.171152 -0.018706 0.082123 0.099579 0.271782 -0.377342 0.056853 0.150336 0.391970 0.133986 0.131768 -0.201668 -0.172273 0.117485 -0.174373 -0.126455 -0.050411 0.142075 -0.234511 -0.074404 -0.393766 -0.398219 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::begin() = 0.380816 -0.228478 0.401960 -0.681685 -0.874484 0.549240 -0.775922 -0.533194 0.146506 -0.016353 0.386646 -0.265714 0.094144 1.015986 -0.214341 -0.685159 -0.152300 -0.239528 0.081545 0.060672 0.029755 0.295695 -0.294678 0.265029 -0.251817 -0.168152 -0.015635 0.108322 0.335560 -0.131089 -0.820218 -0.239519 -0.464621 0.881645 0.389505 -0.065237 0.397175 1.530764 0.061576 0.800049 -0.518416 -0.688913 0.046270 0.037831 -0.104769 -0.022810 -0.647384 0.324653 -0.487365 -0.000235 0.897830 -0.175495 -0.024985 0.303574 0.475376 0.075957 -1.081717 0.452621 0.107200 0.278878 0.104679 -0.347137 0.038824 0.369148 -0.518689 -0.316655 0.616243 0.803383 -0.291131 -0.127175 -0.111681 -1.176504 1.243562 0.526707 -0.579868 -0.065384 0.794585 -0.818005 0.726775 -0.379700 -1.283474 0.122706 -0.320469 -0.835792 1.212309 -0.091627 0.660746 -1.239723 0.966529 -1.483654 0.323525 -0.810189 0.355561 1.054876 -0.987180 -0.068241 0.655257 1.383417 0.832491 0.015215 0.882358 0.549655 -0.349791 0.264090 0.761981 0.163138 -0.235071 -0.055300 -0.568484 -1.003360 -0.169704 -0.536719 -1.573383 0.233096 0.064123 0.434301 -0.379379 0.423504 -0.206443 0.457993 -1.289110 -0.412402 -0.039004 -0.130834 0.453064 0.744293 -0.543289 0.438662 -0.361847 1.072511 -0.625678 0.081884 -0.208860 0.211637 -0.485245 0.113679 -1.442611 0.482425 0.715591 -0.543944 -0.995377 -0.911669 -0.252550 0.446911 -0.203296 1.687120 1.604164 -0.611998 -0.642971 1.051055 0.108805 0.047493 1.303993 0.067166 0.923278 -0.335787 -0.124919 -0.600481 -0.343331 -0.664452 -0.951092 0.412540 0.217015 0.464855 0.045034 -0.073480 1.556051 -0.282637 -0.782398 -0.605029 0.181343 -0.462563 -0.585391 1.155035 -0.296540 0.386664 0.554123 1.229818 -0.297722 -0.561395 0.379297 -0.594703 0.117085 -0.574942 -0.236335 -0.188746 0.781522 -0.690537 -0.393635 -0.042356 -0.395150 -0.423308 0.017068 1.171509 0.319783 0.446252 0.498285 0.895528 1.591091 0.548819 -0.000237 -0.879764 0.348930 0.593077 -0.769786 -0.173510 0.044524 -0.555462 0.082661 -0.023764 -0.061440 0.257432 -0.989133 -0.656151 -0.636323 0.116910 0.766729 0.623458 -1.441285 0.230227 -0.088628 0.516374 0.643297 0.338292 0.963963 1.077407 1.199646 -0.203238 0.202518 0.194284 0.136878 -0.096228 0.470615 0.616203 0.286306 0.966001 0.421622 0.217537 0.438588 0.778864 0.430424 0.694502 0.205101 1.537013 0.145747 0.050642 -0.514517 -0.081710 0.742690 1.822807 -0.728164 0.830825 0.338256 0.500255 -0.255803 -0.996289 0.204327 -0.411309 0.050128 -0.250110 0.027003 0.093294 -0.372569 0.831475 0.072215 -1.091167 0.246696 0.060136 0.302327 0.912652 -0.015398 0.090048 -0.005870 -1.035119 1.193187 0.763435 0.398549 -0.491445 0.041137 -0.032229 0.437473 -0.138359 0.673262 0.023951 0.974067 0.503547 0.718949 0.556712 0.065893 -0.756906 -0.536628 0.477708 -0.855915 -0.256280 0.321959 0.645675 -0.525636 0.327519 -0.506255 -1.316124 +PE-benchmarks/vertex-cover-problem.cpp__std::operator!=(std::_List_iterator const&, std::_List_iterator const&) = 0.273999 0.012861 0.362158 -0.626228 -0.839439 0.290409 -0.131745 -0.410820 0.132333 0.189795 0.417007 -0.330088 -0.091808 0.846818 -0.148064 -0.541569 -0.032585 -0.184400 -0.022403 0.180546 0.089329 0.355066 -0.192502 0.108089 -0.133534 -0.027721 -0.021462 0.245500 0.281768 -0.025078 -0.679483 -0.201349 -0.118404 0.756111 0.215821 -0.037190 0.151636 1.213421 -0.278824 0.909181 -0.676468 -0.559646 0.267424 0.031421 -0.047542 -0.705049 -0.597075 0.356283 -0.124392 -0.379899 0.669712 -0.071523 0.100225 0.062027 0.373936 0.311064 -0.895350 0.290700 0.193631 0.068640 0.101551 -0.216363 -0.023032 0.408999 -0.618017 -0.354254 0.292397 0.386355 -0.195695 -0.021959 -0.158012 -1.040831 1.240251 0.358363 -0.662948 0.009792 0.539510 -0.940328 0.675457 -0.377686 -0.929031 0.074569 -0.189125 -0.277720 0.827387 -0.129580 0.588735 -1.129837 0.441747 -1.212229 0.455232 -0.809381 0.318413 0.893371 -0.685779 0.012158 0.427870 0.851930 0.783470 0.126095 0.730557 0.633472 0.191223 0.057836 0.581449 0.385141 -0.346082 -0.353110 -0.561513 -0.883202 0.017855 -0.283198 -1.569927 0.165293 0.090020 0.319213 -0.092264 0.075424 0.007016 0.665408 -0.986415 -0.173239 0.215962 -0.114286 0.326261 0.836184 -0.392463 0.324815 -0.314044 0.881123 -0.363013 0.281954 -0.086703 0.250523 -0.693244 -0.284359 -0.863152 0.357858 0.441832 -0.463774 -0.791785 -1.019331 -0.094518 0.437124 -0.231386 0.716064 1.370570 -0.500988 -0.636885 0.826136 0.385492 -0.161350 0.766198 0.008733 0.981113 -0.431598 0.001425 -0.478290 -0.214450 -0.396562 0.344924 0.292862 -0.134746 0.377748 -0.189381 -1.036554 1.234848 -0.179035 -0.512776 -0.190415 0.021298 -0.404573 -0.470874 1.025361 -0.376177 0.494662 -0.012707 1.029051 -0.323075 -0.482395 0.317874 -0.439787 0.053028 -0.690993 -0.200525 0.247911 0.715293 -0.667934 -0.289663 -0.068136 -0.412400 -0.337380 0.159118 0.022472 0.102916 0.251815 0.332562 0.756007 1.075507 0.321311 -0.014521 -0.695331 0.338287 0.316316 -0.540845 -0.557361 -0.048222 -0.604129 0.010522 -0.113552 -0.109384 0.228743 -0.601167 -0.553853 -0.237916 -0.275771 0.378348 0.280072 -1.074606 0.148353 -0.075360 0.601447 0.302787 0.445011 0.854665 0.912898 0.863925 -0.086826 0.197624 0.027614 -0.266735 0.129697 0.326819 0.146556 0.301640 0.829640 0.339048 0.113993 0.526636 0.501002 0.351360 0.652433 0.216117 1.179603 0.147722 -0.066630 -0.175179 -0.134215 0.641897 1.492210 -0.256184 0.434717 0.259642 0.304110 -0.367522 -0.534014 0.082624 -0.299281 -0.215154 0.259311 0.120933 -0.008294 -0.248000 0.819075 0.011398 -1.065223 0.179631 0.001056 0.319151 0.821783 -0.076406 0.255721 0.126536 -0.535113 0.955587 0.565226 0.454838 -0.496516 -0.409736 -0.037938 0.227222 0.274227 0.473901 -0.641904 0.428866 0.430794 0.824421 0.268711 0.508353 -0.678264 -0.177304 0.370769 -0.465043 -0.237118 -0.058074 0.476909 -0.387270 0.050035 -0.742823 -0.757695 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::list >::end() = 0.343593 -0.115680 0.315520 -0.585149 -0.738546 0.428291 -0.588319 -0.405925 0.103518 -0.066532 0.344290 -0.240257 0.002815 0.819913 -0.156079 -0.600980 -0.136038 -0.354792 -0.000936 0.057137 -0.000861 0.241055 -0.234577 0.221439 -0.178747 -0.082767 -0.068398 0.099317 0.341165 -0.261152 -0.706912 -0.158902 -0.352091 0.741374 0.283607 -0.129952 0.370416 1.304733 0.076976 0.533452 -0.399761 -0.549616 0.073128 0.013973 -0.150718 -0.049815 -0.501038 0.330024 -0.416356 0.003594 0.767311 -0.104395 -0.096795 0.213462 0.376575 0.155353 -0.999575 0.485878 0.118945 0.315611 0.082539 -0.281806 0.056696 0.248110 -0.305518 -0.295212 0.531070 0.586340 -0.297496 -0.116932 -0.106882 -0.977831 1.093096 0.438135 -0.432250 -0.013638 0.623235 -0.669572 0.631092 -0.373148 -1.047374 0.122221 -0.216708 -0.641060 1.057652 -0.123736 0.421490 -1.042240 0.737772 -1.226891 0.237106 -0.710151 0.289470 0.883504 -0.822569 -0.046645 0.494725 1.000120 0.663674 0.008787 0.782802 0.369448 -0.223633 0.226060 0.582456 0.100491 -0.199237 -0.009478 -0.475207 -0.867666 -0.151221 -0.360578 -1.301459 0.239507 0.031769 0.321145 -0.238737 0.332693 -0.151583 0.331634 -1.000127 -0.385569 -0.032261 -0.109200 0.404919 0.710921 -0.462394 0.340073 -0.338150 0.908619 -0.456172 0.124884 -0.169277 0.163933 -0.280563 -0.032759 -1.215035 0.373494 0.603050 -0.455269 -0.831510 -0.729536 -0.150351 0.232389 -0.211238 1.402400 1.370815 -0.501443 -0.542800 0.929571 0.149933 0.133195 1.091241 0.016760 0.846675 -0.301481 -0.103182 -0.419911 -0.287250 -0.548440 -0.930583 0.333688 0.184646 0.329598 0.083096 -0.017191 1.240560 -0.188501 -0.636059 -0.316308 0.146671 -0.393090 -0.597918 0.962810 0.003938 0.366829 0.602846 1.055661 -0.239646 -0.504718 0.374610 -0.298963 0.134713 -0.490093 -0.274609 -0.128582 0.597805 -0.529335 -0.308504 -0.054443 -0.273473 -0.404725 0.015584 1.081410 0.310844 0.348173 0.437342 0.591898 1.351358 0.392991 0.058510 -0.824399 0.288187 0.493549 -0.622007 -0.152108 0.057799 -0.456959 0.070667 0.129912 -0.094049 0.212261 -0.750794 -0.578645 -0.450128 0.118191 0.643176 0.501904 -1.160020 0.163195 -0.116243 0.383629 0.531369 0.321077 0.820997 0.879654 0.984129 -0.167152 0.178895 0.220143 0.124545 -0.185830 0.273482 0.619308 0.282031 0.728779 0.365462 0.180379 0.393886 0.626779 0.255699 0.612450 0.216997 1.326253 0.105721 0.003276 -0.431656 -0.104486 0.637032 1.519614 -0.676219 0.627288 0.304295 0.476327 -0.188312 -0.881159 0.138946 -0.368856 0.036298 -0.187491 -0.024446 0.054702 -0.274792 0.712019 0.019922 -0.926671 0.235080 0.045161 0.264775 0.699858 0.007266 0.059037 0.034263 -0.937359 0.922289 0.643161 0.370121 -0.399015 0.055951 -0.020690 0.428070 -0.320982 0.569697 -0.007589 0.774374 0.431670 0.586229 0.509045 0.007310 -0.620306 -0.502806 0.408914 -0.651849 -0.200859 0.289217 0.563478 -0.517099 0.260047 -0.403421 -1.042236 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator*() const = 0.237103 0.095407 0.316346 -0.398127 -0.630124 0.240855 -0.266853 -0.313433 0.026591 0.079391 0.265321 -0.172956 -0.074399 0.603767 -0.219295 -0.368159 -0.178517 -0.331521 -0.062038 -0.078232 0.025033 0.223234 -0.139224 0.151314 -0.121050 -0.068966 -0.045217 0.085471 0.113942 -0.213925 -0.375913 -0.133460 -0.113996 0.487759 0.173412 -0.072290 0.147710 0.845818 -0.060402 0.346626 -0.473244 -0.492998 0.098676 0.002473 0.008544 -0.376961 -0.384344 0.270178 -0.151501 -0.011028 0.461440 -0.030053 -0.079270 0.110238 0.248616 0.108978 -0.734067 0.421789 0.094111 0.020783 0.028590 -0.115549 0.009003 0.169524 -0.109395 -0.224580 0.265420 0.427680 -0.175735 0.001218 -0.004222 -0.631099 0.736457 0.194981 -0.278173 0.011726 0.402117 -0.418780 0.481475 -0.441508 -0.672540 0.048373 -0.075956 -0.261459 0.572322 0.000000 0.253961 -0.724424 0.379336 -0.811321 0.225809 -0.453239 0.151002 0.492794 -0.441344 0.017493 0.364497 0.430631 0.559727 0.083542 0.499607 0.281890 0.068383 0.222777 0.345133 0.144599 -0.154456 -0.047691 -0.400809 -0.656679 -0.034929 -0.159062 -0.860397 0.152545 0.127146 0.138810 -0.145723 0.102071 0.043616 0.318143 -0.717327 -0.197171 0.115591 -0.058904 0.192904 0.461945 -0.280871 0.237672 -0.246735 0.575859 -0.353246 0.193271 -0.017760 0.136670 -0.188439 -0.331470 -0.831473 0.279670 0.316543 -0.300804 -0.481699 -0.539726 -0.044927 0.196143 -0.193060 0.704970 0.957304 -0.392305 -0.481372 0.614602 0.330444 -0.067254 0.630923 0.041198 0.638696 -0.176500 -0.152187 -0.280706 -0.279353 -0.243325 -0.333146 0.238343 0.054550 0.271034 0.106358 -0.400195 0.745049 -0.205502 -0.451496 -0.058811 0.121831 -0.266307 -0.289954 0.525229 0.152044 0.326794 0.271982 0.690113 -0.212989 -0.388503 0.170796 -0.301522 0.089623 -0.259352 -0.117187 0.010085 0.413037 -0.387833 -0.180291 -0.077893 -0.319698 -0.297613 0.038432 0.337319 0.238262 0.261767 0.280740 0.349600 0.882326 0.262842 0.059856 -0.530456 0.211582 0.271277 -0.213421 -0.398275 -0.003915 -0.336575 0.047112 0.085353 -0.080909 0.179254 -0.308856 -0.279692 -0.226108 -0.141985 0.324703 0.287511 -0.457152 0.061699 -0.165381 0.409800 0.201920 0.247207 0.595650 0.636261 0.651676 0.007104 0.106984 0.039812 0.179396 -0.060258 0.248553 0.226339 0.225653 0.498508 0.271008 0.138874 0.390192 0.413159 0.144284 0.461209 0.034229 0.896371 -0.151163 0.046312 -0.308040 0.047891 0.427730 1.010771 -0.302389 0.306521 0.183385 0.247378 -0.114685 -0.465712 0.100043 -0.221093 -0.030241 0.092932 0.213389 0.006114 -0.158478 0.479542 0.013310 -0.615630 0.227713 0.030144 0.182984 0.388015 0.001580 0.011170 0.089883 -0.506603 0.486861 0.475712 0.307636 -0.394938 -0.206831 -0.010952 0.330276 -0.092199 0.441342 -0.360121 0.405453 0.359526 0.395984 0.110892 0.142370 -0.514353 -0.405989 0.347235 -0.311233 -0.180394 0.275883 0.336052 -0.373614 0.153000 -0.228096 -0.608348 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::operator++() = 0.077834 -0.215826 0.402963 -0.483373 -0.609407 0.253776 -0.266101 -0.277815 0.151149 -0.153570 0.294206 -0.290883 -0.073730 0.865041 -0.102281 -0.522049 -0.051667 0.099375 0.001310 0.120864 0.093925 0.242755 -0.149261 0.166632 -0.108116 -0.125658 0.029860 0.286398 0.238864 0.030455 -0.501212 -0.173105 -0.196208 0.636145 0.154517 0.193060 0.198053 1.101866 -0.193538 1.044952 -0.464965 -0.454198 0.166555 0.045941 -0.084652 -0.376782 -0.717891 0.238944 -0.499452 -0.185632 0.639436 -0.011033 0.018265 0.103669 0.467837 0.216356 -0.805075 0.201530 0.080402 0.057269 0.131763 -0.195264 -0.199173 0.213818 -0.537944 -0.233046 0.257719 0.440872 -0.201183 0.008945 -0.025184 -0.827601 1.102537 0.307530 -0.498318 0.073582 0.692186 -0.615771 0.561671 -0.237051 -0.833234 0.022297 -0.203847 -0.413581 0.847067 -0.047310 0.499696 -0.917699 0.433372 -1.007833 0.416325 -0.771721 0.221440 0.787725 -0.707350 0.112787 0.445195 0.792961 0.519664 0.178044 0.573780 0.545739 -0.085635 0.120782 0.661887 0.157303 -0.274813 -0.325418 -0.545600 -0.733779 -0.043647 -0.487705 -1.306486 0.047143 0.128639 0.413535 -0.185985 0.276210 -0.031986 0.351913 -0.822869 0.160484 0.176221 -0.108468 0.210088 0.629646 -0.380952 0.219351 -0.286187 0.775000 -0.437140 0.184810 -0.131803 0.171480 -0.421607 -0.088455 -0.804526 0.248626 0.355022 -0.291927 -0.692819 -0.761354 -0.185574 0.564666 -0.119313 0.815053 1.181350 -0.377582 -0.472732 0.703256 0.339185 0.087004 0.684224 0.123564 0.712919 -0.263897 -0.087284 -0.544967 -0.259385 -0.332529 -0.113242 0.326512 -0.067482 0.413960 -0.056584 -0.791772 1.376589 -0.323271 -0.458877 -0.412980 0.070875 -0.384731 -0.384943 0.997635 -0.368863 0.435191 0.008765 0.878166 -0.228961 -0.454775 0.218175 -0.512161 0.090339 -0.616452 -0.140590 0.014044 0.565642 -0.630908 -0.334986 -0.138466 -0.365618 -0.207926 0.047060 0.316973 0.076100 0.211014 0.370152 0.671188 0.979708 0.361488 -0.009995 -0.685802 0.254992 0.277333 -0.492787 -0.408341 0.179541 -0.353083 0.024730 -0.218327 -0.014539 0.078509 -0.662900 -0.453809 -0.404792 -0.193725 0.340309 0.295592 -1.050090 0.067786 0.074455 0.460933 0.479136 0.231840 0.910134 0.688365 0.777920 -0.006449 0.121998 0.074388 -0.154571 0.134062 0.315606 0.254486 0.162780 0.710589 0.287384 0.029361 0.364209 0.562545 0.373629 0.480004 0.362948 1.021166 0.364373 -0.087333 -0.179956 -0.058974 0.524255 1.253191 -0.325620 0.621880 0.304554 0.399849 -0.211013 -0.637743 0.037209 -0.271650 -0.218847 0.316101 -0.057610 -0.050211 -0.153885 0.607735 0.040533 -0.840261 0.042825 0.029414 0.218415 0.619206 -0.015112 0.116378 0.123297 -0.614321 0.854093 0.373149 0.298424 -0.413835 -0.210532 -0.052251 0.105499 0.443508 0.461164 -0.315806 0.461746 0.309877 0.656634 0.246489 0.249348 -0.489649 -0.255558 0.251190 -0.600052 -0.255471 0.018894 0.317868 -0.269864 0.070608 -0.587300 -0.975847 +PE-benchmarks/vertex-cover-problem.cpp__main = 0.434293 0.486175 0.402786 -0.192144 -0.646832 -0.249112 -0.672413 0.084048 0.057850 -0.323158 -0.292908 -0.690774 -0.898249 0.636780 -1.032784 -0.966276 -0.483915 -0.252847 -0.120363 -0.786638 -0.127612 0.215975 0.124055 0.099741 0.357865 -0.283845 -0.155540 0.219549 1.609190 -0.520409 -0.205314 0.194957 0.472633 0.749925 -0.275689 -0.386925 0.658958 1.273877 1.277721 -0.451497 -0.708370 -0.621397 0.415133 0.109969 -0.069163 -0.894056 -0.346722 0.271835 -2.282036 1.534474 0.136438 0.246518 -0.951088 -0.259136 0.387406 0.784532 -2.172797 2.385062 -0.234024 0.677602 0.196018 -0.362895 -0.402829 -0.676419 1.400435 -0.357312 -0.078347 0.888567 -1.462609 0.843935 0.069837 0.244613 1.394388 -0.013996 -0.523644 0.482779 0.447599 0.139111 0.136392 -2.045993 -0.302893 -0.065739 0.989272 1.026225 0.986969 0.353149 -0.707391 -0.933555 -0.383536 -0.660690 0.271319 -1.173562 0.479150 0.806154 -1.378434 0.661591 -0.151335 -1.286706 0.510813 0.677972 0.918202 0.076814 0.391646 0.045802 -0.467366 -0.121396 0.488295 0.211798 0.368081 -0.349603 -1.213211 0.620333 -1.575517 -0.301677 -0.478958 1.343609 0.285765 0.233756 -0.132303 -0.798036 -1.023377 -1.449213 -0.117005 -0.138534 0.851486 0.411631 -0.203675 0.224437 -0.478477 1.099947 0.310895 -0.223262 -0.347315 -0.105201 0.498341 -2.290544 -2.124418 -0.443443 0.095133 0.063318 -1.051129 -0.121437 -0.432604 -0.791809 -0.003718 0.679562 1.081529 0.439036 -0.576741 1.095071 -0.590966 1.375495 1.771917 0.129992 0.805985 -0.298849 0.205111 0.219632 0.236703 -0.148323 -1.891077 -0.130127 -0.340371 -0.300829 0.849169 0.666831 -1.437604 -0.316775 -0.087895 -1.092621 -0.414239 -0.461862 -0.389403 1.095222 0.486675 1.094232 -0.082089 1.192132 -0.560863 -1.972935 0.354329 -0.307420 0.645348 0.614631 0.126010 -0.183022 0.202286 -1.288842 -0.712389 0.458450 0.369300 -0.281581 0.124911 1.765905 -0.122350 -0.230874 0.565440 0.772690 0.625124 -0.564139 0.986295 -1.262157 -0.111955 0.479977 0.078512 -1.571581 1.078308 0.256287 -0.079016 0.829171 -0.042994 -0.608873 0.317306 -0.621285 -0.309793 -0.421622 1.011586 -0.035104 0.699658 0.212040 -0.860850 -0.380258 0.203812 0.249894 1.388984 -0.378578 0.051436 -0.039979 0.412161 -0.723854 1.987627 0.130220 0.602581 0.026799 0.006366 0.517637 0.216337 -0.433908 0.070754 0.873786 -1.248888 0.395942 0.708150 1.230822 -1.306342 0.095738 -0.560425 -0.400922 0.550358 1.522202 -1.351746 -0.105443 0.580495 0.972960 1.310124 -1.523325 -0.764518 -0.359500 -0.586749 0.507556 -0.598243 -0.879765 0.592228 0.610758 0.113742 -0.305874 1.038399 0.228120 -0.375412 -1.241142 -0.074397 -1.441844 1.065493 -1.457432 -0.527801 -0.113805 0.370252 -0.099748 -0.619683 -0.321189 0.867781 -0.764427 0.398309 0.273008 -0.237398 1.261302 0.680640 0.987328 -0.517820 0.263970 -1.989920 -0.127277 -0.130577 -0.744359 0.291558 -0.002414 -0.835529 0.361362 1.257978 -1.571557 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_base() = 0.086884 0.004058 0.129647 -0.266998 -0.342369 0.030777 -0.090713 -0.091747 -0.005635 -0.138174 0.105316 -0.228410 -0.220278 0.472376 -0.089420 -0.384820 -0.100131 -0.130741 -0.107253 0.053428 -0.010084 0.186424 -0.044446 0.067898 0.057799 0.011920 -0.106214 0.125260 0.286867 -0.252182 -0.216083 -0.049153 0.016918 0.366024 -0.007718 0.062492 0.126948 0.657262 0.091335 0.396532 -0.315987 -0.276901 0.193472 -0.019984 -0.077418 -0.334413 -0.290662 0.230213 -0.375853 -0.016708 0.253040 0.084646 -0.215642 -0.068207 0.210595 0.257482 -0.650014 0.451118 0.093377 0.123030 0.040581 -0.098352 -0.132519 -0.075035 -0.012672 -0.201533 0.029448 0.165784 -0.306568 0.062024 -0.013547 -0.303385 0.715678 0.148786 -0.229934 0.148500 0.236721 -0.177774 0.288095 -0.427049 -0.377010 -0.003459 0.074494 0.041422 0.465558 0.037257 0.055347 -0.541879 0.127822 -0.514758 0.197721 -0.468865 0.141442 0.461144 -0.397434 0.166850 0.141331 0.034770 0.271142 0.202486 0.390922 0.141500 0.051522 0.113823 0.173393 0.036836 -0.100548 -0.121390 -0.191776 -0.413153 -0.074958 -0.043205 -0.709315 0.063252 0.016083 0.354645 0.036628 0.170484 0.042057 -0.034670 -0.472499 -0.121832 0.101006 -0.065896 0.218505 0.392912 -0.171550 0.048396 -0.266639 0.432814 -0.101978 0.160643 -0.056038 0.107344 -0.026282 -0.382469 -0.501446 0.016170 0.119059 -0.154397 -0.377887 -0.372264 -0.044561 0.101762 -0.154680 0.414335 0.691391 -0.184497 -0.280084 0.507990 0.170820 0.258764 0.398053 0.032375 0.476768 -0.140277 -0.075297 -0.069688 -0.132413 -0.091057 -0.319885 0.130954 -0.147119 0.095982 0.055671 -0.374777 0.420094 -0.107258 -0.214184 -0.110745 -0.026187 -0.240642 -0.301983 0.505272 0.080189 0.393549 0.065512 0.526215 -0.124362 -0.364968 0.202088 -0.132144 0.076561 -0.249342 -0.124769 0.002481 0.191447 -0.417680 -0.174385 -0.003319 -0.113160 -0.237475 0.073493 0.299593 0.051582 0.068052 0.230499 0.283831 0.476079 0.004023 0.111016 -0.509936 0.122735 0.137920 -0.161422 -0.371947 0.178355 -0.130641 -0.018994 0.183016 -0.073486 -0.027460 -0.140605 -0.232559 -0.089260 -0.124458 0.239139 0.087863 -0.206783 -0.018052 -0.060134 0.168993 0.219250 0.213845 0.523730 0.275804 0.290740 0.073523 0.074666 0.031720 0.097336 -0.021811 0.032721 0.207638 0.166510 0.245730 0.218499 0.017154 0.275006 0.290138 -0.049413 0.339980 0.247210 0.650129 -0.006883 -0.117985 -0.077353 -0.060259 0.327908 0.672544 -0.419093 0.188596 0.232225 0.238724 0.016665 -0.363778 -0.067158 -0.168179 -0.247593 0.271928 -0.109112 -0.076776 0.023950 0.371705 -0.061501 -0.452842 0.198558 0.047428 0.132914 0.075812 0.044372 -0.048441 0.240730 -0.444719 0.184319 0.212375 0.239132 -0.232798 -0.156643 -0.044385 0.199292 0.013339 0.300902 -0.134281 0.112143 0.285254 0.364774 0.150431 -0.026891 -0.173414 -0.356489 0.129881 -0.150284 -0.161879 0.022510 0.119553 -0.177515 -0.017680 -0.145041 -0.487849 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_List_impl::_List_impl() = 0.159037 0.118114 0.226726 -0.322425 -0.511889 0.053928 -0.241985 -0.151747 -0.016632 -0.072048 0.118836 -0.268725 -0.251070 0.495912 -0.215535 -0.500698 -0.245312 -0.274086 -0.161480 -0.172204 -0.028355 0.213480 -0.054083 0.106556 0.058210 -0.080464 -0.114285 0.141035 0.388693 -0.366617 -0.176889 -0.046545 0.033151 0.477361 -0.014129 -0.033966 0.197362 0.845787 0.234074 0.131154 -0.390210 -0.475535 0.259381 -0.019771 -0.097619 -0.309339 -0.276024 0.290915 -0.497288 0.174097 0.269030 0.119816 -0.295121 -0.085251 0.197378 0.253807 -0.889269 0.684035 0.065626 0.071860 -0.077789 -0.106854 -0.077874 -0.066375 0.140569 -0.260951 0.126945 0.332591 -0.399988 0.108344 0.060666 -0.363539 0.848487 0.138058 -0.190826 0.200297 0.302119 -0.150190 0.384672 -0.526632 -0.483488 -0.019144 0.182429 -0.052578 0.564863 0.048923 0.044337 -0.693018 0.210509 -0.641996 0.216382 -0.502552 0.188507 0.511396 -0.542410 0.240424 0.197944 0.042129 0.359201 0.152274 0.546700 0.079724 0.136365 0.256364 0.138657 0.028417 -0.078708 -0.050205 -0.267465 -0.572036 -0.120410 -0.044627 -0.857151 0.116024 0.001036 0.310878 0.036966 0.141101 0.044527 0.060969 -0.659754 -0.305900 0.120998 -0.074723 0.250173 0.411390 -0.216944 0.101813 -0.273349 0.568548 -0.170953 0.137580 -0.022744 0.124027 0.088846 -0.510321 -0.807815 0.065646 0.174177 -0.218588 -0.466756 -0.347644 -0.083585 0.040261 -0.190904 0.658088 0.930778 -0.232020 -0.451769 0.664288 0.158706 0.285438 0.629016 0.061687 0.624066 -0.168324 -0.149140 -0.119967 -0.175494 -0.031418 -0.614934 0.166341 -0.080868 0.152289 0.210065 -0.088079 0.389553 -0.205662 -0.294032 -0.105810 0.060179 -0.303898 -0.368751 0.539991 0.351552 0.546944 0.241080 0.707730 -0.214826 -0.568723 0.229290 -0.177825 0.089174 -0.173281 -0.111761 -0.075774 0.252057 -0.448320 -0.226040 -0.034402 -0.175100 -0.310298 0.077102 0.609184 0.200212 0.107795 0.282377 0.290713 0.699204 0.025841 0.129371 -0.695756 0.124603 0.276878 -0.102434 -0.446728 0.174999 -0.147312 -0.004938 0.306102 -0.103041 0.044494 -0.116990 -0.237996 -0.167613 -0.105675 0.329617 0.117056 -0.269551 0.036509 -0.200311 0.220353 0.199624 0.277542 0.729093 0.353784 0.396757 0.094211 0.132868 -0.029917 0.352949 -0.093815 0.101245 0.336215 0.231964 0.396279 0.285553 0.089668 0.391293 0.422624 -0.140711 0.459775 0.156014 0.942776 -0.286583 -0.050689 -0.253413 0.015129 0.425567 0.937589 -0.489532 0.162190 0.294410 0.373221 0.090011 -0.628899 -0.089537 -0.222917 -0.104488 0.206393 -0.015200 -0.161213 0.036673 0.463073 -0.007048 -0.553399 0.376018 0.068183 0.129643 0.004901 0.007823 -0.197375 0.340333 -0.624730 0.148182 0.328570 0.286602 -0.377961 -0.113314 -0.038305 0.455917 -0.290115 0.424809 -0.177193 0.228457 0.407566 0.379106 0.197163 -0.028514 -0.288840 -0.618299 0.239134 -0.187227 -0.235630 0.255658 0.167614 -0.396304 0.145544 -0.047233 -0.655156 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator >::allocator() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_List_node_header() = 0.177666 0.184562 0.197076 -0.300611 -0.413875 0.014233 0.033816 -0.105318 -0.036623 0.028130 0.150504 -0.175723 -0.180817 0.420584 -0.133851 -0.284155 -0.145326 -0.466772 -0.190731 -0.056850 -0.023586 0.209505 -0.047458 0.072819 0.059522 0.030212 -0.125576 0.113083 0.115737 -0.405691 -0.165214 -0.040798 0.048117 0.352166 -0.025893 -0.112797 0.098548 0.641674 -0.036550 0.107885 -0.331360 -0.346231 0.228848 -0.053729 -0.072207 -0.415848 -0.218621 0.289744 -0.062551 -0.029457 0.230618 0.118706 -0.233111 -0.101424 0.122934 0.242808 -0.680746 0.454309 0.127359 0.062146 -0.071387 -0.062515 -0.002427 -0.057803 0.073481 -0.230201 0.119418 0.106891 -0.249124 0.055963 0.014282 -0.332757 0.577689 0.108121 -0.079630 0.159942 0.176697 -0.230570 0.369928 -0.444426 -0.354179 0.002497 0.095782 -0.044738 0.407965 -0.036080 -0.015189 -0.534110 0.133056 -0.488878 0.126243 -0.408316 0.092517 0.374006 -0.265055 0.167226 0.128362 0.010239 0.296597 0.106817 0.418446 0.087102 0.236985 0.203133 0.132860 0.086105 -0.137976 -0.059503 -0.287311 -0.473451 0.004363 0.022995 -0.576398 0.165054 0.073213 0.016222 0.071294 0.031838 0.090200 0.173214 -0.440769 -0.147559 0.170665 -0.052784 0.103266 0.413490 -0.172089 0.032129 -0.274068 0.392609 -0.104351 0.266673 0.029216 0.111221 0.014213 -0.472256 -0.469450 0.046933 0.102892 -0.203492 -0.316431 -0.359824 0.044354 -0.023297 -0.222350 0.410533 0.722850 -0.232357 -0.371361 0.514081 0.378332 0.116490 0.333616 0.001482 0.538812 -0.131404 -0.149965 -0.041727 -0.173156 -0.019936 -0.306372 0.138355 -0.060181 0.105593 0.116351 -0.349577 0.439327 -0.096493 -0.219341 0.232802 0.069250 -0.232672 -0.351230 0.378056 0.449739 0.424212 0.237672 0.521228 -0.128050 -0.319815 0.191858 -0.020820 0.101218 -0.254412 -0.139271 0.032432 0.181879 -0.236184 -0.123345 -0.078075 -0.179181 -0.281132 0.076884 0.179381 0.206926 0.084792 0.213918 0.045503 0.535093 -0.010444 0.134691 -0.532952 0.137874 0.167393 -0.016721 -0.408029 0.067933 -0.151586 -0.007206 0.261351 -0.112153 0.084567 -0.041118 -0.182271 0.034937 -0.115248 0.120192 0.066593 -0.183069 -0.029287 -0.190283 0.248248 0.088618 0.259816 0.507636 0.323212 0.303892 0.078201 0.061504 0.043585 0.085003 -0.127750 -0.042530 0.240830 0.233681 0.253140 0.244986 0.096128 0.361716 0.257279 -0.113727 0.391020 0.107095 0.693048 -0.183548 -0.091107 -0.148569 0.025523 0.334923 0.647503 -0.238550 0.032388 0.208059 0.233589 -0.055946 -0.334691 -0.037074 -0.169986 -0.081346 0.204043 0.064577 -0.111194 0.038112 0.381013 -0.070658 -0.478471 0.229357 0.036697 0.172001 0.068173 0.048141 -0.011487 0.250622 -0.395144 0.125217 0.283768 0.269274 -0.302818 -0.173198 0.007077 0.336387 -0.250229 0.340197 -0.406248 0.166672 0.262954 0.269834 0.039623 0.084086 -0.274971 -0.360273 0.232949 -0.035814 -0.141501 0.223934 0.198074 -0.350139 0.053129 -0.169417 -0.298086 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::new_allocator() = 0.105513 0.070506 0.099998 -0.245185 -0.244355 -0.008918 0.185089 -0.045318 -0.025626 -0.037996 0.136983 -0.135408 -0.150025 0.397048 -0.007735 -0.168277 -0.000145 -0.323428 -0.136503 0.168782 -0.005315 0.182449 -0.037821 0.034161 0.059111 0.122597 -0.117505 0.097308 0.013911 -0.291256 -0.204408 -0.043406 0.031885 0.240830 -0.019481 -0.016339 0.028135 0.453149 -0.179289 0.373264 -0.257137 -0.147596 0.162939 -0.053943 -0.052006 -0.440922 -0.233259 0.229042 0.058884 -0.220262 0.214627 0.083536 -0.153631 -0.084380 0.136150 0.246483 -0.441492 0.221392 0.155110 0.113316 0.046983 -0.054013 -0.057072 -0.066463 -0.079760 -0.170783 0.021922 -0.059916 -0.155704 0.009643 -0.059931 -0.272602 0.444879 0.118848 -0.118739 0.108144 0.111299 -0.258153 0.273351 -0.344842 -0.247701 0.018182 -0.012153 0.049261 0.308659 -0.047747 -0.004179 -0.382970 0.050369 -0.361640 0.107581 -0.374629 0.045452 0.323753 -0.120080 0.093653 0.071750 0.002880 0.208538 0.157028 0.262668 0.148878 0.152141 0.060593 0.167596 0.094523 -0.159816 -0.130687 -0.211622 -0.314568 0.049816 0.024417 -0.428562 0.112282 0.088260 0.059989 0.070956 0.061221 0.087729 0.077574 -0.253514 0.036509 0.150673 -0.043957 0.071598 0.395013 -0.126694 -0.021288 -0.267357 0.256875 -0.035376 0.289736 -0.004079 0.094537 -0.100915 -0.344405 -0.163081 -0.002543 0.047774 -0.139300 -0.227563 -0.384444 0.083379 0.038204 -0.186127 0.166780 0.483463 -0.184834 -0.199676 0.357782 0.390446 0.089816 0.102653 -0.027829 0.391514 -0.103356 -0.076122 0.008551 -0.130075 -0.079574 -0.011323 0.102968 -0.126432 0.049285 -0.038043 -0.636275 0.469868 0.001912 -0.139494 0.227867 -0.017116 -0.169416 -0.284462 0.343336 0.178376 0.270817 0.062104 0.339713 -0.037586 -0.116061 0.164657 0.024862 0.088604 -0.330473 -0.152279 0.110688 0.121268 -0.205543 -0.071691 -0.046992 -0.117240 -0.208308 0.073275 -0.130211 0.058296 0.045049 0.162041 0.038621 0.311968 -0.032261 0.116335 -0.347132 0.136006 0.028435 -0.075710 -0.333248 0.071289 -0.134915 -0.021262 0.138265 -0.082598 0.012613 -0.064733 -0.176834 0.113290 -0.134031 0.029713 0.037400 -0.120301 -0.083847 -0.050106 0.196888 0.108245 0.196120 0.302272 0.245232 0.197875 0.057514 0.003301 0.105223 -0.170609 -0.055747 -0.111054 0.112254 0.168227 0.102591 0.177931 0.023613 0.245429 0.124793 -0.022429 0.271226 0.198291 0.400401 0.096152 -0.158404 0.027492 -0.049866 0.237264 0.382459 -0.168111 0.058794 0.145873 0.099092 -0.129292 -0.069571 -0.014694 -0.115247 -0.224452 0.269578 -0.029335 -0.026757 0.025389 0.289645 -0.125110 -0.377914 0.051897 0.015943 0.175272 0.139083 0.084689 0.137447 0.151018 -0.215132 0.161355 0.167573 0.221804 -0.157655 -0.216527 0.000997 0.079761 0.053225 0.216290 -0.363335 0.050358 0.140642 0.255501 -0.007109 0.085709 -0.159545 -0.098463 0.123696 0.001129 -0.067750 -0.009215 0.150012 -0.131350 -0.110095 -0.267225 -0.130779 +PE-benchmarks/vertex-cover-problem.cpp__std::__detail::_List_node_header::_M_init() = 0.040005 -0.095102 0.646883 -0.623495 -0.699436 0.275580 -0.085475 -0.195622 0.187408 -0.518658 0.486719 -0.204230 -0.270906 0.575817 0.055313 -0.686165 -0.051070 -0.337745 -0.212725 -0.129823 0.030909 0.094530 -0.154816 0.194730 -0.041271 -0.211171 -0.005058 0.643410 0.418176 -0.314999 -0.463677 -0.074367 -0.247757 0.802792 0.073662 -0.052691 0.427773 1.421906 -0.213230 0.399585 -0.159603 -0.465316 0.434939 -0.034301 -0.537684 -0.247426 -0.733500 0.377354 -0.773929 -0.064377 0.860588 0.089835 0.089873 -0.005677 0.375010 0.516857 -1.162879 0.220579 0.105953 0.070740 -0.075507 -0.194200 -0.157493 0.128058 -0.247327 -0.315432 0.624206 0.212995 -0.185487 -0.077235 0.041440 -1.014060 1.508386 0.314542 -0.139729 0.254428 0.862398 -0.727448 0.768122 0.282571 -0.945076 -0.029238 -0.157688 -0.772353 1.256133 -0.493030 0.236457 -1.053640 0.201644 -1.142481 0.352524 -0.930262 0.231242 0.806152 -0.922705 0.291018 0.462405 0.641162 0.117567 -0.182102 0.845684 0.207620 0.146585 0.327519 0.788333 -0.078233 -0.369319 -0.301896 -0.906239 -0.929128 0.007708 -0.625399 -1.487132 0.237154 0.031296 -0.110041 -0.048928 0.150344 -0.041521 0.661946 -0.386541 0.558005 0.289581 -0.152733 0.090533 0.955609 -0.478931 0.132822 -0.212688 0.959864 -0.505022 0.402648 -0.183987 0.184762 0.228206 -0.226657 -0.911611 0.226480 0.497233 -0.338911 -0.823147 -0.461735 -0.118511 0.267884 -0.161190 0.965977 1.549392 -0.413381 -0.667273 0.900331 0.688724 0.404204 0.749900 0.172544 0.962830 -0.336781 -0.219827 -0.761494 -0.357035 -0.210395 -0.642691 0.362065 0.172427 0.562345 0.206008 -0.259746 1.949171 -0.447350 -0.477954 0.503462 0.228610 -0.506419 -0.956798 1.163136 0.913929 0.690204 0.787280 1.181372 -0.249187 -0.707304 0.298550 0.317411 0.209175 -0.861166 -0.367376 0.071798 0.409555 -0.262144 -0.455322 -0.532255 -0.237081 -0.227336 0.037732 1.045650 0.422434 0.177692 0.440314 -0.130329 1.377022 0.353257 -0.014343 -1.123063 0.280356 0.424278 -0.430460 -0.215955 0.181324 -0.229369 0.055102 0.106133 -0.031196 0.336317 -0.624690 -0.527867 -0.288136 0.013175 0.199077 0.351619 -1.861585 0.067446 0.095025 0.255756 0.562218 0.326767 1.355758 0.728659 0.888077 0.037245 0.186337 0.389344 -0.313512 -0.350918 -0.031026 0.980340 0.281044 0.753153 0.395998 0.127985 0.495666 0.716784 0.347971 0.614624 0.549726 1.417047 0.491942 -0.237032 -0.299418 -0.000462 0.683730 1.397289 -0.115812 0.570990 0.441705 0.944154 -0.220076 -1.391224 -0.011291 -0.376645 0.223923 0.397040 -0.084305 -0.248420 -0.119448 0.786363 0.046148 -1.103844 0.065784 0.058678 0.294319 0.568824 -0.008360 0.045914 0.238506 -0.941708 0.947685 0.403762 0.383277 -0.594133 0.168149 0.057184 0.399472 -0.474274 0.581196 -0.590125 0.473919 0.103711 0.601442 0.489152 0.362203 -0.609435 -0.375419 0.371279 -0.687147 -0.200113 0.402065 0.444862 -0.863736 0.272501 -0.842381 -0.939567 +PE-benchmarks/vertex-cover-problem.cpp__void std::__cxx11::list >::_M_insert(std::_List_iterator, int const&) = 0.397601 0.449596 0.604179 -0.996425 -1.752435 0.371196 -0.770388 -0.654979 0.070860 0.078839 0.749680 -0.886730 -0.451230 1.535846 -0.586641 -1.098056 -0.513927 -0.655921 -0.214847 -0.334448 0.056665 0.589411 -0.269185 0.391691 -0.202849 -0.085649 -0.305897 0.393434 1.217517 -0.582399 -0.957214 -0.127190 -0.064180 1.237415 0.279031 -0.554684 0.613645 2.190252 -0.235993 0.443175 -1.060484 -0.948246 0.448114 0.135214 -0.267815 -1.044136 -1.163832 0.731001 -1.191333 0.303394 1.189791 0.051173 -0.246706 0.209073 0.685096 0.689437 -2.202378 1.630125 0.274432 0.338532 0.235298 -0.265152 -0.062272 0.352100 -0.001069 -0.631132 0.525054 0.878536 -0.581883 -0.077521 -0.056054 -1.455666 2.021182 0.347301 -0.819665 0.149862 0.855165 -1.122686 1.153563 -1.276862 -1.565273 0.240451 0.108677 -0.372755 1.532250 -0.109303 0.315637 -1.837936 0.415375 -1.973287 0.528829 -1.325290 0.432750 1.368195 -1.562831 0.038669 0.585601 0.389427 1.520874 0.311896 1.359062 0.509642 0.392951 0.428122 0.547692 0.487681 -0.267478 -0.008321 -0.843411 -1.655369 -0.357934 -0.160964 -2.442627 0.365935 0.044556 0.392663 -0.079988 0.003767 0.027065 0.755471 -1.226787 -0.751837 0.145401 -0.154955 0.616923 1.522973 -0.677783 0.575968 -0.684057 1.563464 -0.543298 0.503481 -0.113693 0.278949 -0.313695 -1.507237 -2.363375 0.624916 0.757214 -0.687743 -1.276541 -1.255326 -0.029438 -0.218951 -0.458931 1.508127 2.420687 -0.807863 -1.263203 1.753663 0.607016 0.240014 1.853743 -0.079393 1.936226 -0.564200 -0.210623 -0.631057 -0.675490 -0.683017 -0.818042 0.509850 -0.000407 0.328809 0.347442 -0.912876 1.185159 -0.280046 -1.041286 -0.320682 0.292528 -0.657931 -0.969288 1.582640 0.507835 0.906163 0.654449 1.818606 -0.541966 -1.499285 0.728764 -0.257780 0.320925 -0.472525 -0.516064 0.272337 0.936536 -0.908014 -0.434950 -0.240764 -0.367355 -0.909443 0.054253 1.320574 0.515217 0.526195 0.809017 0.645006 2.191147 0.416024 0.468830 -1.597169 0.454049 0.853104 -0.592134 -1.390709 0.262900 -0.853295 0.093748 0.456325 -0.346039 0.339432 -0.676543 -0.908489 -0.546138 -0.387397 1.116135 0.619071 -1.262572 0.418276 -0.751483 0.801246 0.588799 0.686085 1.606776 1.395857 1.532271 0.069086 0.353809 0.018560 0.813701 -0.111684 0.591691 0.472244 0.626778 1.331919 0.646633 0.241325 0.894752 0.987120 -0.129182 1.159944 0.293792 2.343433 -0.326469 0.086973 -0.807911 -0.112082 1.087835 2.836504 -0.841698 0.398116 0.544794 0.853431 0.012154 -1.696631 0.019896 -0.622005 -0.225715 0.390965 0.071112 -0.225209 -0.202722 1.205971 0.001081 -1.489199 0.818479 0.054669 0.341089 0.492061 -0.036655 -0.345784 0.421846 -1.674425 1.064859 1.160995 0.781844 -0.799415 -0.630005 -0.112010 0.982427 -0.360393 1.066521 -1.031850 0.865365 1.149779 1.079744 0.616248 0.385681 -1.101873 -1.410226 0.776265 -0.633366 -0.540090 0.345731 0.688295 -1.303085 0.557250 -0.195629 -1.742391 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node* std::__cxx11::list >::_M_create_node(int const&) = 0.784588 0.940748 1.335958 -1.698304 -3.049133 0.292685 -1.910860 -1.004771 0.536710 1.250661 1.520716 -1.811551 -1.112506 2.950895 -1.207784 -1.631576 -0.830370 -1.009644 0.505805 -0.689905 0.774016 1.027626 -0.127600 0.720065 -0.459044 -0.027129 -1.070950 0.221984 2.538089 -1.072932 -1.684674 -0.015263 0.259711 1.617703 -0.263306 -1.421858 0.651364 3.267472 -0.749268 0.536434 -2.497831 -1.877837 0.769702 0.311134 0.014693 -2.378778 -1.817269 1.083910 -1.694557 0.301066 1.554077 0.348659 -0.285517 0.073296 0.723505 0.893720 -4.362854 3.004330 0.432427 0.342588 1.025420 0.254192 0.085039 0.895777 0.460336 -0.720145 0.655932 1.292597 -1.362831 -0.184749 0.226746 -1.894986 2.910454 0.480231 -1.333870 0.600486 1.881063 -1.898777 2.315701 -3.328103 -2.461762 0.399776 0.035148 -0.296311 2.021504 0.180334 0.637699 -2.582690 0.916442 -2.988326 1.473906 -2.307155 0.502454 2.069706 -2.526651 -0.041890 1.523626 0.244541 3.666713 0.717721 2.556114 1.574486 1.129730 0.734905 0.461649 1.264456 -0.448383 0.552156 -1.367316 -2.924989 -0.883252 -0.046340 -3.816691 0.408526 0.246266 0.512075 0.673387 -0.762093 0.521100 1.706396 -2.345164 -1.699255 0.439827 -0.099738 0.395489 2.712184 -0.910838 0.492168 -1.065447 2.783219 -1.287438 0.570400 1.001891 0.344736 -0.867468 -3.259192 -3.730624 0.975437 0.473225 -1.612808 -1.578459 -2.464149 0.498580 -0.586548 -0.341057 2.267285 4.061908 -1.100908 -2.095776 2.728875 0.933697 -0.510464 3.703491 -0.139103 3.720715 -0.808014 -0.678835 -1.252426 -1.316518 -0.788445 -0.221523 1.145264 0.439083 0.266178 1.052812 -2.031681 0.571573 -0.603062 -1.412760 -0.717379 0.658995 -1.384474 -1.304503 1.697543 0.646528 1.497056 0.645948 2.984980 -0.577588 -2.717743 1.582325 -0.942373 0.425728 0.064242 -0.833680 0.845920 1.464050 -1.623067 -0.404918 -0.858976 -0.971028 -1.344916 0.270005 1.067311 1.352842 1.314663 0.830659 1.453986 3.164007 0.594923 1.075571 -2.690067 0.468824 1.225215 -1.009475 -3.298749 0.585100 -2.129886 0.728285 1.178254 -0.984857 1.070301 -0.923981 -1.865131 -0.945714 -1.126628 1.649656 0.223682 -1.166814 0.497110 -1.617320 2.080050 0.841923 1.225894 2.188274 2.474724 2.163734 0.565214 0.454084 -0.201736 2.223873 0.031041 0.898676 -0.076608 0.884095 2.267652 0.741253 0.737159 1.850580 1.559025 -0.770676 2.143365 -0.513430 3.266353 -1.277329 0.335929 -1.359939 -0.273878 1.879187 4.841842 -1.144935 0.284138 0.743407 1.034684 0.177216 -2.428234 0.082607 -0.773756 -0.638867 1.012904 0.995739 0.165306 -0.371304 1.254845 0.599494 -2.483406 1.987151 -0.257215 0.228742 0.744621 -0.029576 -0.995519 0.647608 -2.591203 1.102002 1.931420 1.481950 -1.799271 -1.474611 -0.066193 2.196985 -0.313051 2.058525 -2.753976 1.201838 2.297524 1.106546 0.655784 1.231366 -2.291466 -3.139060 1.313859 -0.865361 -1.453733 0.160991 0.610310 -2.420740 0.897225 0.523059 -2.381473 +PE-benchmarks/vertex-cover-problem.cpp__int const& std::forward(std::remove_reference::type&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_inc_size(unsigned long) = 0.128484 -0.227072 0.233903 -0.655729 -0.393964 0.238975 -0.107346 -0.338850 0.071656 -0.152690 0.425140 -0.321837 -0.296029 0.825176 0.004916 -0.703097 0.185366 0.240762 -0.055886 0.151617 0.081099 0.215350 -0.163470 -0.112185 0.043234 -0.106858 0.022893 0.413728 0.519440 0.008553 -0.662900 -0.140445 -0.131594 0.852249 0.125773 0.217247 0.097555 1.152788 -0.364774 1.007632 -0.628368 -0.501084 0.546448 0.078588 -0.251824 -0.678063 -0.788984 0.257373 -0.588449 -0.393728 0.542031 -0.173742 0.118667 -0.160511 0.332683 0.658212 -0.972137 0.146729 0.201541 0.079909 -0.032962 -0.227796 0.081727 0.081809 -0.586772 -0.419065 0.297699 0.212268 -0.306495 -0.022567 -0.365000 -1.089510 1.181015 0.403203 -0.495397 0.125900 0.375494 -0.927709 0.526012 0.022158 -0.749324 -0.072186 -0.054105 -0.228700 0.844521 -0.060391 0.550162 -1.163223 0.196963 -1.177640 0.455750 -0.845682 0.552844 0.886012 -0.888522 0.166667 0.389687 0.728323 0.354161 0.097444 0.788074 0.488101 -0.001495 -0.147588 0.791554 0.216222 -0.390999 -0.499329 -0.490176 -0.754861 -0.017660 -0.545435 -1.676004 0.092643 -0.359928 0.127454 -0.119106 0.115509 -0.071104 0.435878 -0.842457 0.067600 0.178454 -0.166051 0.421762 0.924641 -0.237036 0.120567 -0.268927 0.835988 -0.269398 0.168324 -0.305277 0.295148 -0.373293 -0.431416 -0.618045 0.147045 0.422360 -0.557727 -0.915110 -0.921037 -0.196313 0.431417 -0.162687 0.657513 1.337239 -0.380077 -0.638030 0.719302 0.273886 0.249087 0.879915 0.105198 1.132746 -0.673693 0.277377 -0.383101 -0.032569 -0.195295 -0.204856 0.072523 -0.263511 0.362126 -0.240000 -0.919380 1.421964 -0.303042 -0.252861 -0.226790 0.073797 -0.432098 -0.584307 1.183088 -0.426188 0.708353 -0.056686 1.002504 -0.463837 -0.582092 0.373202 -0.473230 -0.137505 -0.736115 -0.290676 -0.045135 0.672244 -0.674229 -0.428446 -0.299028 -0.167473 -0.143931 0.371481 0.232721 -0.020678 0.027273 0.206643 0.419592 0.894033 0.135444 0.118735 -0.774501 0.260886 0.560666 -0.473430 -0.657171 0.163558 -0.568011 -0.029415 -0.134042 -0.065028 0.276501 -0.635055 -0.582797 -0.203061 -0.106460 0.360689 0.068379 -1.198728 0.163532 -0.073685 0.194627 0.492439 0.640925 0.967422 0.707710 0.521476 -0.182594 0.305515 -0.070520 -0.513731 0.093146 0.064322 0.504956 0.272138 0.599543 0.254084 0.109641 0.465370 0.457472 0.413263 0.651045 0.681858 1.112132 0.604457 -0.202870 0.045168 -0.430365 0.587467 1.378906 -0.228533 0.470220 0.385088 0.428293 -0.315416 -0.924552 -0.042595 -0.251603 -0.583413 0.561805 -0.108342 -0.056641 -0.317355 1.016000 0.055844 -1.186842 0.275584 0.017473 0.281002 0.684979 -0.172567 0.230214 0.267120 -0.528660 0.807826 0.331953 0.529230 -0.514858 -0.129438 -0.070793 0.279479 0.503548 0.167245 -0.525886 0.616719 0.301682 0.973285 0.509798 0.375404 -0.423973 0.013116 -0.011896 -0.510987 -0.118664 -0.253133 0.421283 -0.307403 -0.197542 -0.982462 -0.614593 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_node() = 0.207655 0.060842 0.261930 -0.326394 -0.484076 0.217987 -0.238713 -0.224323 0.036064 -0.092460 0.220509 -0.129954 -0.144471 0.445070 -0.155084 -0.370376 -0.120867 -0.302739 -0.060042 -0.047894 -0.001791 0.130952 -0.111490 0.127342 -0.088394 -0.046159 -0.050894 0.099656 0.203601 -0.236845 -0.370700 -0.076373 -0.108748 0.427015 0.138357 -0.072573 0.199255 0.745013 0.067845 0.229133 -0.323505 -0.359713 0.077541 -0.003365 -0.068770 -0.271491 -0.299334 0.232237 -0.303256 0.053350 0.438020 -0.031841 -0.099710 0.095563 0.215975 0.172778 -0.696684 0.428588 0.063061 0.130073 0.068850 -0.122895 -0.019500 0.076279 0.033096 -0.186359 0.257323 0.335064 -0.217992 0.009266 -0.029736 -0.516104 0.727615 0.186990 -0.223196 0.024784 0.365651 -0.324660 0.379893 -0.363494 -0.564309 0.047886 -0.048408 -0.168669 0.586880 -0.047249 0.106600 -0.602255 0.251592 -0.687242 0.172222 -0.435033 0.145241 0.430577 -0.436437 0.019977 0.284556 0.256284 0.373896 0.060538 0.454040 0.168557 0.016746 0.153953 0.281925 0.022167 -0.097345 -0.010539 -0.299943 -0.524957 -0.102244 -0.101305 -0.760466 0.113940 0.046909 0.198524 -0.094753 0.135947 0.012211 0.136307 -0.526632 -0.169014 0.050260 -0.057222 0.235509 0.436675 -0.249462 0.199794 -0.203886 0.526368 -0.258970 0.147705 -0.077054 0.084730 -0.007951 -0.341739 -0.756289 0.194312 0.310821 -0.220437 -0.455986 -0.375414 -0.044433 0.081528 -0.142432 0.613977 0.806078 -0.278604 -0.362188 0.542905 0.229579 0.108264 0.594627 0.033456 0.538478 -0.165815 -0.088871 -0.205749 -0.204196 -0.253054 -0.508518 0.175069 0.068593 0.194096 0.143005 -0.184208 0.592731 -0.163198 -0.364943 0.016780 0.047458 -0.231412 -0.335310 0.493511 0.277300 0.281749 0.353452 0.618457 -0.175433 -0.396764 0.170267 -0.077577 0.128689 -0.209021 -0.147243 0.004288 0.290593 -0.340212 -0.186152 -0.059878 -0.168001 -0.238523 0.023788 0.525231 0.189683 0.194148 0.260391 0.211119 0.762931 0.185562 0.093397 -0.507895 0.162010 0.220441 -0.223310 -0.277132 0.065109 -0.237945 0.046048 0.173023 -0.061362 0.113482 -0.245320 -0.292018 -0.183817 -0.076288 0.324918 0.266798 -0.414317 0.032371 -0.104826 0.214655 0.224498 0.196637 0.536893 0.480916 0.534954 -0.024928 0.114531 0.097578 0.182589 -0.139145 0.150098 0.323279 0.170762 0.342810 0.215534 0.071861 0.277425 0.369158 0.081063 0.368490 0.147047 0.762577 -0.072068 0.007079 -0.256845 -0.029128 0.367664 0.837896 -0.373779 0.296382 0.175553 0.309987 -0.015126 -0.510364 0.046314 -0.209059 -0.039849 0.092065 0.078080 -0.010242 -0.119700 0.413441 -0.000177 -0.505627 0.186411 0.034813 0.126649 0.280652 0.012092 -0.045292 0.086277 -0.525557 0.394268 0.351088 0.269107 -0.279933 -0.103829 -0.019847 0.274789 -0.241549 0.348534 -0.170817 0.283827 0.293412 0.341788 0.228474 0.017450 -0.375332 -0.392498 0.248709 -0.294295 -0.141393 0.222816 0.295972 -0.344590 0.110148 -0.153879 -0.546686 +PE-benchmarks/vertex-cover-problem.cpp__std::__cxx11::_List_base >::_M_get_Node_allocator() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::__allocated_ptr(std::allocator >&, std::_List_node*) = -0.009018 0.134616 0.447145 -0.774140 -1.122168 0.110646 -0.060994 -0.281816 0.104667 -0.326119 0.645963 -0.734216 -0.509748 1.210561 -0.103066 -0.826246 -0.132975 -0.213372 -0.242649 0.109961 0.093083 0.424574 -0.145437 0.230601 -0.026444 0.065579 -0.252480 0.606298 0.935894 -0.364775 -0.709001 -0.065007 0.018415 0.893349 0.059508 -0.156536 0.395542 1.616751 -0.590986 0.945076 -0.655246 -0.401334 0.525986 0.074852 -0.411791 -1.047363 -1.154050 0.570275 -1.009622 -0.209673 0.972344 0.160642 -0.057557 -0.000551 0.628241 0.832598 -1.545653 0.841468 0.309849 0.257720 0.299591 -0.157939 -0.318812 0.154789 -0.321361 -0.473091 0.221003 0.174284 -0.334385 -0.118726 -0.092834 -1.106954 1.774088 0.264073 -0.635164 0.257549 0.702332 -0.975650 0.881813 -0.595489 -1.045544 0.131711 -0.018138 -0.157807 1.222081 -0.262906 0.202834 -1.332877 -0.071944 -1.380086 0.516898 -1.239860 0.263401 1.110056 -1.130616 0.164393 0.333572 0.096539 0.823711 0.336338 0.923190 0.458676 0.377390 0.161171 0.623418 0.342309 -0.392936 -0.370241 -0.796285 -1.169075 -0.098725 -0.280024 -1.951496 0.215042 0.065420 0.298488 0.101723 0.016191 0.096587 0.559436 -0.438105 0.210490 0.298708 -0.149647 0.312980 1.416519 -0.495460 0.207905 -0.563901 1.109216 -0.307599 0.635760 -0.144988 0.247560 -0.232124 -1.118295 -1.193141 0.291823 0.414903 -0.406136 -0.913402 -1.025718 0.062122 0.009432 -0.332781 0.612245 1.759469 -0.547874 -0.813804 1.232308 0.815402 0.388029 0.906573 -0.039421 1.471735 -0.456668 -0.116586 -0.567299 -0.514598 -0.430858 0.038912 0.396812 -0.245457 0.276259 0.023564 -1.545121 1.468341 -0.179683 -0.609479 0.078398 0.117835 -0.539284 -0.920079 1.449909 0.313225 0.763264 0.223984 1.298443 -0.284687 -0.991734 0.580947 0.133042 0.246652 -0.821282 -0.530809 0.455977 0.572207 -0.649685 -0.350472 -0.381549 -0.194216 -0.581222 0.080727 0.472633 0.180582 0.233286 0.604701 0.236645 1.399490 0.222721 0.314300 -1.250094 0.377045 0.413353 -0.522749 -1.103323 0.350437 -0.553776 0.013990 0.172738 -0.232238 0.159874 -0.545377 -0.731860 -0.210697 -0.429338 0.526064 0.310975 -1.294819 0.166502 -0.231914 0.543774 0.591109 0.512001 1.326607 0.921987 0.993127 0.182556 0.185073 0.211590 -0.085213 -0.008704 0.131743 0.366320 0.444365 0.851151 0.475281 0.037964 0.654221 0.631207 0.057340 0.809332 0.655435 1.548348 0.499929 -0.259612 -0.212532 -0.195482 0.794115 1.867771 -0.382560 0.350338 0.482746 0.714107 -0.164043 -1.179161 -0.073320 -0.438102 -0.471041 0.850141 -0.251813 -0.220149 -0.051649 0.921090 -0.123970 -1.224803 0.294447 0.017669 0.349254 0.434743 0.047013 0.002824 0.374982 -1.108342 0.920236 0.620832 0.594389 -0.537821 -0.555307 -0.075619 0.343575 0.283830 0.703393 -1.074831 0.332439 0.591822 0.949340 0.397738 0.482728 -0.660047 -0.645763 0.409982 -0.451127 -0.343545 -0.165548 0.372262 -0.811488 0.112374 -0.637880 -1.148943 +PE-benchmarks/vertex-cover-problem.cpp__void std::allocator_traits > >::construct(std::allocator >&, int*, int const&) = 0.277166 0.468876 0.382755 -0.678805 -1.148979 0.094149 -0.128429 -0.336883 0.004858 0.166574 0.530465 -0.629870 -0.347773 1.091928 -0.346136 -0.591965 -0.305008 -0.706845 -0.284120 -0.102615 0.045931 0.471032 -0.134341 0.229520 -0.058347 0.112026 -0.278979 0.268220 0.617577 -0.574011 -0.601388 -0.051136 0.103511 0.742226 0.062129 -0.437124 0.298266 1.348835 -0.456418 0.351586 -0.763244 -0.563934 0.371559 0.053843 -0.152803 -1.023433 -0.780953 0.584371 -0.392376 -0.046795 0.728254 0.156670 -0.262466 0.011200 0.429994 0.577730 -1.453793 1.050128 0.284271 0.233016 0.145419 -0.105629 -0.007955 0.165018 -0.012780 -0.462333 0.245694 0.304580 -0.362465 -0.037920 -0.054204 -0.932606 1.222142 0.173082 -0.465388 0.172641 0.433916 -0.807010 0.831569 -1.002782 -0.881498 0.182164 0.111574 -0.080635 0.880418 -0.107765 0.068179 -1.165281 0.120888 -1.171789 0.328099 -0.922421 0.192263 0.851572 -0.788906 0.053844 0.259163 0.020736 1.030378 0.294905 0.850258 0.358227 0.529981 0.246719 0.304305 0.429672 -0.280882 -0.081970 -0.620587 -1.113151 -0.102995 0.047242 -1.465389 0.302804 0.133732 0.034130 0.105804 -0.130936 0.144825 0.570502 -0.682971 -0.383501 0.240371 -0.086363 0.278241 1.136344 -0.423384 0.265332 -0.562885 0.923204 -0.216094 0.554060 0.033293 0.185187 -0.284010 -1.217250 -1.257277 0.339220 0.353566 -0.444076 -0.715390 -0.954581 0.156559 -0.236766 -0.410282 0.701739 1.538225 -0.531143 -0.834488 1.127492 0.756096 0.072888 0.924367 -0.135371 1.375493 -0.382990 -0.157873 -0.258770 -0.456962 -0.354451 -0.169282 0.334536 -0.112939 0.127019 0.153620 -1.155323 0.787904 -0.080546 -0.586043 0.171871 0.195935 -0.420515 -0.683751 0.976025 0.519547 0.661319 0.343218 1.106330 -0.306555 -0.851289 0.520373 -0.031844 0.246385 -0.454313 -0.412922 0.334641 0.567776 -0.492100 -0.180398 -0.207999 -0.292873 -0.656521 0.065833 0.311584 0.346318 0.269182 0.522644 0.198206 1.289422 0.143634 0.398136 -1.070894 0.318760 0.442435 -0.247454 -1.114464 0.156549 -0.591533 0.039159 0.351106 -0.306789 0.196480 -0.275378 -0.576961 -0.087087 -0.392642 0.510986 0.255045 -0.594415 0.159714 -0.570369 0.646721 0.261672 0.519640 0.991863 0.881508 0.902162 0.101432 0.175840 0.031838 0.298539 -0.074527 0.174506 0.179026 0.485517 0.743574 0.429842 0.138518 0.683079 0.496812 -0.215643 0.797219 0.213706 1.429519 -0.176983 -0.041469 -0.404724 -0.084574 0.685381 1.707380 -0.393642 0.047844 0.351813 0.463846 -0.114716 -0.821179 -0.028960 -0.396036 -0.282326 0.450991 0.069939 -0.189351 -0.024754 0.778145 -0.105734 -0.995370 0.465161 -0.005427 0.293277 0.285083 0.025813 -0.073174 0.345144 -0.950259 0.561849 0.726623 0.570710 -0.519649 -0.622234 -0.051069 0.604618 -0.154967 0.680817 -1.092818 0.446774 0.726320 0.689183 0.196621 0.389814 -0.720792 -0.791235 0.523894 -0.172160 -0.336230 0.157637 0.458998 -0.860513 0.224354 -0.262722 -0.841075 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_node::_M_valptr() = 0.109097 0.027700 0.162477 -0.267977 -0.422680 0.136449 -0.203779 -0.172592 0.014592 -0.137093 0.177777 -0.200185 -0.205189 0.459485 -0.116601 -0.384645 -0.117060 -0.110754 -0.061041 0.028512 0.007919 0.145513 -0.076111 0.102803 -0.049702 -0.001874 -0.078618 0.088642 0.290677 -0.190480 -0.313477 -0.061198 -0.032664 0.361346 0.085690 0.038283 0.149351 0.635376 0.082883 0.368677 -0.339214 -0.284372 0.090158 0.012360 -0.042615 -0.322532 -0.310040 0.216018 -0.393794 0.005550 0.353344 0.006986 -0.133610 0.053343 0.237476 0.203047 -0.621193 0.451855 0.071874 0.118400 0.118418 -0.086056 -0.103216 0.031254 0.017622 -0.174469 0.090278 0.269530 -0.239543 0.017523 -0.027252 -0.403055 0.723981 0.147075 -0.280858 0.052030 0.290792 -0.217551 0.303959 -0.417579 -0.459271 0.041932 0.006517 0.019433 0.475259 0.041317 0.085240 -0.534709 0.145344 -0.580439 0.210867 -0.413750 0.133837 0.408560 -0.409112 0.038714 0.216933 0.071865 0.365455 0.172783 0.372527 0.156081 0.009077 0.095437 0.206141 0.032683 -0.081195 -0.063757 -0.211998 -0.460686 -0.095768 -0.049121 -0.721389 0.057154 0.037662 0.364078 -0.039748 0.149908 0.050333 -0.016099 -0.460074 -0.144611 0.052675 -0.050382 0.259998 0.407996 -0.199438 0.155350 -0.215609 0.452172 -0.181367 0.130241 -0.063430 0.085088 -0.024253 -0.388121 -0.635893 0.139976 0.220169 -0.163034 -0.379288 -0.370032 -0.031643 0.106681 -0.133332 0.424053 0.692497 -0.233891 -0.289924 0.487026 0.164061 0.160722 0.482608 0.021686 0.500049 -0.151067 -0.055782 -0.128099 -0.182529 -0.198434 -0.326151 0.152089 -0.064757 0.126166 0.083739 -0.369106 0.410326 -0.122131 -0.300000 -0.113638 -0.008278 -0.204803 -0.253233 0.460220 0.082972 0.276295 0.148544 0.520943 -0.151225 -0.376978 0.176339 -0.117106 0.082595 -0.169433 -0.140958 0.040299 0.238889 -0.408128 -0.146200 -0.015224 -0.132000 -0.235373 0.033557 0.367432 0.073979 0.146947 0.236377 0.284299 0.583579 0.121480 0.094929 -0.452075 0.135700 0.142276 -0.210343 -0.340792 0.119783 -0.217126 0.023331 0.160693 -0.074852 0.022055 -0.170003 -0.252476 -0.164110 -0.149914 0.320098 0.187228 -0.199602 0.005903 -0.062847 0.197800 0.220624 0.184021 0.468777 0.391101 0.423008 0.038512 0.096524 0.053807 0.179396 -0.043921 0.126671 0.196251 0.154207 0.253875 0.188362 0.022743 0.258781 0.293934 0.033873 0.328117 0.186241 0.642693 -0.014524 -0.027933 -0.153964 -0.060667 0.315058 0.732620 -0.430987 0.259192 0.173591 0.228584 0.025417 -0.379669 0.004579 -0.176834 -0.210318 0.223436 -0.011750 0.001940 -0.074862 0.350778 -0.029827 -0.425505 0.185297 0.025900 0.106345 0.182861 0.020474 -0.056795 0.120124 -0.458419 0.275065 0.284046 0.249065 -0.232488 -0.175461 -0.050876 0.183778 -0.011253 0.298482 -0.119694 0.151230 0.309948 0.358203 0.174035 -0.027190 -0.276196 -0.368382 0.175374 -0.221636 -0.145351 0.041717 0.175334 -0.192454 0.014719 -0.100886 -0.524222 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::operator=(decltype(nullptr)) = -0.009205 0.064672 0.208671 -0.421623 -0.485620 -0.010338 0.174886 -0.020684 0.066665 -0.346229 0.346046 -0.397543 -0.372161 0.639147 0.068516 -0.461086 0.010405 -0.246597 -0.228134 0.219428 0.028862 0.199527 -0.045752 0.104404 0.058606 0.153343 -0.185345 0.368627 0.494666 -0.367889 -0.439733 0.023607 0.047960 0.464300 -0.070688 -0.066800 0.240722 0.872031 -0.332365 0.583111 -0.250063 -0.104032 0.320232 0.006712 -0.320913 -0.602638 -0.596925 0.368882 -0.509471 -0.255275 0.555615 0.170182 -0.145116 -0.091855 0.351333 0.605554 -0.887399 0.434221 0.207056 0.300122 0.188413 -0.087477 -0.192000 -0.037694 -0.127835 -0.276269 0.111681 -0.121785 -0.260648 -0.059315 -0.091807 -0.589313 1.051005 0.176310 -0.285717 0.221840 0.367394 -0.522526 0.492800 -0.317358 -0.478898 0.088025 0.003890 0.002047 0.744604 -0.228092 -0.053480 -0.689990 -0.137201 -0.671571 0.260692 -0.784215 0.115343 0.631795 -0.548744 0.132463 0.083865 -0.084444 0.289543 0.215592 0.515987 0.192758 0.250558 0.013654 0.346300 0.098860 -0.267235 -0.255035 -0.439379 -0.613679 -0.032556 -0.092643 -1.022498 0.135363 0.028211 0.170151 0.185884 0.056374 0.076645 0.155986 -0.115805 0.227743 0.193815 -0.086948 0.180663 0.897990 -0.287507 0.017561 -0.365760 0.591443 -0.038921 0.432071 -0.094759 0.101251 -0.014189 -0.635218 -0.460711 0.046982 0.194943 -0.175656 -0.489361 -0.550413 0.107407 -0.054012 -0.213198 0.265273 0.932465 -0.225071 -0.351152 0.671049 0.567458 0.393176 0.360144 -0.061916 0.833370 -0.284725 -0.019122 -0.188060 -0.219576 -0.224742 -0.067591 0.202591 -0.180876 0.077265 -0.009881 -0.946083 0.896076 -0.032788 -0.229103 0.305772 0.001308 -0.307155 -0.658252 0.854482 0.372404 0.471664 0.217132 0.699563 -0.104084 -0.475859 0.383846 0.334349 0.192643 -0.605002 -0.402343 0.283139 0.222828 -0.318997 -0.173572 -0.230353 -0.031827 -0.311858 0.050142 0.246685 0.075212 0.024782 0.350148 -0.054157 0.681105 0.011789 0.226061 -0.785690 0.194084 0.134884 -0.314179 -0.527169 0.274709 -0.252268 -0.002868 0.209305 -0.158086 0.002752 -0.249608 -0.467693 0.030816 -0.210939 0.192221 0.089849 -0.708576 -0.029125 -0.049760 0.207790 0.366544 0.299397 0.743767 0.403753 0.459776 0.076445 0.091602 0.239560 -0.262163 -0.111839 -0.179305 0.351044 0.253131 0.283719 0.242116 -0.051408 0.343718 0.277969 -0.050938 0.432095 0.553579 0.787751 0.471488 -0.277454 0.001723 -0.215365 0.423815 0.887955 -0.299671 0.180797 0.305883 0.465518 -0.112317 -0.590047 -0.117817 -0.263693 -0.358272 0.566186 -0.313630 -0.152238 0.054475 0.503320 -0.145277 -0.687741 0.050647 -0.011017 0.215307 0.224059 0.068734 0.085590 0.249123 -0.630919 0.439510 0.223759 0.346855 -0.220884 -0.256058 -0.037382 0.121109 0.038335 0.327586 -0.568203 0.075472 0.241563 0.523725 0.275825 0.186807 -0.264083 -0.256405 0.153531 -0.187568 -0.153034 -0.173799 0.222663 -0.417598 -0.077229 -0.475927 -0.509066 +PE-benchmarks/vertex-cover-problem.cpp__std::__allocated_ptr > >::~__allocated_ptr() = 0.470108 -0.364483 0.725154 -0.596652 -0.744690 0.319306 -0.502366 0.021887 0.343035 0.724256 0.084300 -0.212904 -0.608229 1.034240 -0.280474 -1.004446 0.245489 -0.133895 0.385247 -0.173125 0.266503 0.428956 0.312647 0.122802 0.062425 -0.400479 -0.255344 0.393104 0.860912 -0.063648 -0.453842 -0.034492 -0.304849 0.625748 -0.263582 -0.080928 0.189397 1.475916 0.052277 1.181178 -0.830971 -0.876730 0.464104 0.082700 0.126601 -0.326911 -0.431421 0.430474 -0.758207 -0.430323 0.646567 0.077899 0.160196 -0.153329 0.212128 0.308003 -1.458630 0.500177 -0.356795 0.156083 0.260996 -0.046050 -0.055132 0.492842 -0.191704 -0.426640 0.273633 0.514680 -1.033608 -0.069825 0.028544 -0.418604 1.161409 0.371315 -0.619094 0.208475 1.130550 -0.413064 0.728998 -1.053566 -1.058543 -0.099991 -0.382527 -0.614309 1.053866 0.005825 0.797469 -1.420581 0.946591 -1.189936 1.071527 -0.916348 0.476528 1.100393 -0.733467 0.374400 0.657011 0.924618 0.844108 -0.032995 1.204601 0.739316 0.192567 0.376520 0.465755 0.147959 -0.550950 -0.151549 -0.652264 -0.813587 -0.186751 -0.610466 -1.427463 0.020052 0.222077 0.806472 0.592119 0.033460 -0.270855 0.317859 -1.727062 -0.211379 0.190945 -0.135395 0.351847 0.561848 -0.510505 0.191402 -0.082967 1.415375 -0.774263 0.038090 0.292105 0.251384 -0.376800 0.029156 -0.705355 0.301688 0.252805 -0.391422 -0.949648 -1.137485 -0.113284 0.412814 -0.147317 1.505342 1.668846 -0.119749 -0.486781 0.820455 -0.488661 0.208392 1.064674 0.016936 0.885762 -0.449914 -0.405719 -0.612944 -0.095315 0.065797 0.469739 0.524308 0.138680 0.536791 0.121898 -0.064244 0.395249 -0.520666 -0.494823 -1.147901 0.031355 -0.648383 -0.251299 0.918618 -0.870418 0.506673 0.089033 1.394054 -0.049169 -0.925622 0.479043 -1.103367 -0.022958 -0.613204 -0.151129 -0.057563 0.375363 -1.133384 -0.497088 -0.525386 -0.435167 -0.179063 0.062102 0.064888 0.447159 0.402517 0.380010 1.696787 0.893369 0.560621 -0.094499 -1.184419 0.090477 0.359525 -0.660018 -0.613877 0.265656 -0.456494 0.263284 0.498298 -0.145707 0.146059 -0.731744 -0.871838 -0.653783 -0.262328 0.414365 0.173361 -1.290418 -0.125875 0.416426 0.600677 0.569899 0.546125 1.092715 0.587212 0.724878 0.212993 0.243074 0.183096 0.110136 0.110137 0.354087 0.138109 0.228031 0.830630 0.325170 0.102911 0.860115 0.888334 -0.079472 0.562757 0.026618 1.193466 -0.140958 -0.181108 -0.354528 -0.132514 0.648225 1.562421 -0.591776 0.661079 0.615991 0.477642 0.174342 -0.646360 0.163713 -0.652071 0.233138 0.321986 0.138207 0.077087 -0.215226 0.511416 0.218371 -1.402207 0.755608 -0.104738 0.301033 0.915296 0.011697 0.005466 0.009309 -1.194975 0.617404 0.586883 0.347974 -0.565697 0.082339 -0.107123 0.489062 0.220494 0.691497 -0.642740 0.138698 0.564877 0.771533 0.476122 0.536971 -0.569020 -0.973355 0.209473 -0.921887 -0.493138 0.012506 0.072489 -0.425682 0.168168 -0.423106 -0.860392 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::allocate(std::allocator >&, unsigned long) = 0.258887 0.280915 0.271623 -0.473729 -0.623734 0.135713 -0.034657 -0.239614 0.055030 0.103341 0.393098 -0.318894 -0.204267 0.696005 -0.209455 -0.369990 -0.094506 -0.547256 -0.177140 -0.021138 0.045859 0.266822 -0.095098 0.072032 -0.017281 0.062219 -0.146570 0.162480 0.266440 -0.438686 -0.483362 -0.018972 0.031409 0.520693 0.044478 -0.233021 0.178285 0.825336 -0.319591 0.272946 -0.559881 -0.391356 0.277872 0.043831 -0.126544 -0.678585 -0.460949 0.354285 -0.097349 -0.130450 0.475219 -0.000484 -0.128689 -0.029277 0.224628 0.458823 -0.951337 0.556744 0.168619 0.156919 0.044584 -0.062192 0.124259 0.100886 -0.001221 -0.326601 0.259004 0.200758 -0.271145 -0.021604 -0.098497 -0.728445 0.832572 0.153039 -0.261250 0.092080 0.231271 -0.617088 0.545336 -0.592796 -0.537810 0.091413 0.076409 -0.066167 0.555443 -0.083162 0.085733 -0.785805 0.081862 -0.780455 0.256335 -0.568052 0.215666 0.492454 -0.467201 0.006732 0.201969 0.102059 0.601111 0.175846 0.603393 0.236612 0.330048 0.059495 0.275071 0.244958 -0.224851 -0.076121 -0.407520 -0.716865 -0.041786 0.027107 -0.978079 0.191436 -0.021121 -0.038184 0.061984 -0.097899 0.116167 0.428485 -0.497842 -0.232692 0.153189 -0.050749 0.213519 0.781909 -0.225854 0.152178 -0.316390 0.601116 -0.153572 0.306129 -0.029867 0.121285 -0.177329 -0.781816 -0.718931 0.196940 0.264521 -0.379107 -0.504531 -0.660994 0.103875 -0.073850 -0.270615 0.512784 1.012670 -0.340795 -0.572853 0.655035 0.580510 0.000840 0.639014 -0.079022 0.962648 -0.389882 0.018730 -0.148464 -0.191352 -0.195679 -0.162811 0.153655 -0.038443 0.098324 0.094278 -0.802090 0.713461 -0.056282 -0.305783 0.313954 0.114545 -0.260403 -0.490448 0.606788 0.454616 0.471993 0.272718 0.775423 -0.302892 -0.527695 0.335411 0.020112 0.105533 -0.322730 -0.299074 0.180937 0.415923 -0.301029 -0.126808 -0.160868 -0.214676 -0.338242 0.121466 0.190933 0.246761 0.116143 0.212311 0.064768 0.813838 0.074416 0.267754 -0.682480 0.190573 0.332846 -0.161217 -0.693153 0.053687 -0.466170 0.046730 0.246847 -0.202650 0.209646 -0.218099 -0.402865 -0.006359 -0.214626 0.293254 0.098973 -0.423069 0.059114 -0.368038 0.350080 0.146365 0.420184 0.631464 0.600324 0.523899 -0.046292 0.137186 -0.008898 0.056260 -0.108379 0.043957 0.244996 0.315544 0.453550 0.220386 0.107623 0.462538 0.285604 -0.042399 0.540284 0.181662 0.895458 -0.097632 -0.017959 -0.222419 -0.159005 0.459492 1.076811 -0.282325 0.046130 0.215807 0.336761 -0.129898 -0.531032 0.003008 -0.251346 -0.219922 0.314076 0.108937 -0.048401 -0.119557 0.608356 -0.010205 -0.729169 0.314095 -0.034839 0.188457 0.284400 -0.036042 0.031804 0.195664 -0.543142 0.351511 0.427972 0.454452 -0.378184 -0.378260 -0.030438 0.423340 -0.170262 0.343996 -0.737002 0.357462 0.421938 0.497906 0.186951 0.278396 -0.488794 -0.369748 0.250654 -0.131996 -0.171758 0.131158 0.359734 -0.557858 0.070429 -0.345983 -0.356656 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::allocate(unsigned long, void const*) = 0.886337 0.390451 0.277858 -0.803663 -0.958984 -0.077346 0.347752 -0.220409 0.021161 1.108513 0.487297 -0.603745 -0.904445 0.782311 -0.217009 -1.306242 0.201842 -0.775355 -0.399261 -0.391941 0.113748 0.703033 0.266723 -0.377130 0.492420 -0.282463 -0.099165 0.629553 0.985713 -0.704755 -0.638413 0.021918 0.279813 0.958186 -0.224687 -0.477601 -0.014164 1.709836 -0.212128 0.477245 -1.476955 -1.002021 1.410334 0.061481 -0.195957 -1.191389 -0.300156 0.677299 -0.503225 -0.318024 0.257439 -0.180448 -0.019310 -0.817765 0.011022 1.405653 -1.862002 1.323930 -0.022856 -0.052549 -0.416926 -0.279467 0.487158 0.132345 0.159014 -0.968775 0.325985 0.128854 -1.286649 0.158145 -0.615005 -0.862544 1.569600 0.414014 -0.430006 0.187835 -0.299543 -0.739992 0.727417 -1.181340 -0.757286 -0.431887 0.572104 0.416996 0.461742 0.061654 0.474022 -2.204533 0.005084 -1.612440 1.033425 -0.790447 1.129182 1.030246 -0.713525 0.741691 0.086737 -0.319321 0.571109 0.086547 1.476564 0.116968 1.114612 -0.050137 -0.152283 0.501714 -0.742237 -0.493518 -0.146714 -0.907144 -0.045160 0.170030 -1.918410 0.242809 -0.714520 0.495270 0.896073 -0.391931 0.187202 0.690980 -1.536176 -1.009545 0.353487 -0.257201 1.165519 1.161773 -0.179125 0.168103 -0.488205 1.359106 -0.080107 0.277314 -0.306082 0.556733 -0.356364 -1.492364 -0.866944 0.053675 0.479460 -0.883572 -1.395212 -1.125359 -0.079548 -0.293863 -0.639482 1.204546 1.928563 -0.443200 -1.222625 1.070595 -0.274655 0.428326 1.274134 -0.171492 1.975741 -1.284419 0.380881 0.032438 0.316751 0.492419 0.763456 -0.157347 -0.685329 0.217700 0.020332 -0.332468 0.063291 -0.095369 -0.151761 -0.021913 0.088282 -0.377508 -0.747960 1.037136 0.117114 1.363282 -0.058410 1.938532 -1.183765 -1.292891 0.852202 -0.522517 -0.355688 -0.691985 -0.273308 0.199430 0.820914 -0.991024 -0.542434 -0.365593 -0.448797 -0.421324 0.954467 0.168934 0.206819 -0.133282 0.074227 1.250115 0.901215 -0.272597 0.230662 -1.500671 0.272642 0.839910 -0.044566 -1.591245 0.030191 -0.619676 -0.086643 1.052025 -0.388192 0.366261 -0.034095 -0.824032 0.094246 -0.341693 0.432019 -0.308386 -0.866058 0.181111 -0.311620 0.117962 -0.186499 1.432404 1.113418 0.516525 0.239704 -0.249738 0.405871 -0.372718 0.175591 0.188640 -0.016327 0.321694 0.591374 0.953031 0.337059 0.214239 1.367656 0.401055 -0.545661 0.884671 0.356575 1.768796 -1.056384 -0.319110 -0.235173 -0.606941 1.060438 2.004107 -0.738648 -0.624045 0.713261 0.558468 0.087236 -0.998088 -0.243551 -0.734367 -0.405953 0.829264 0.405394 -0.137826 -0.376206 1.694432 0.080210 -2.018797 1.697407 -0.006750 0.577917 0.347789 -0.458833 0.072246 0.775184 -1.014597 -0.130001 0.767059 1.029397 -0.756402 -0.405175 -0.362904 0.919898 -0.329207 0.295107 -1.462359 0.000918 1.335678 1.662659 0.563626 1.001717 -0.640809 -0.765277 -0.246152 -0.179666 -0.181206 0.040903 0.124064 -1.051906 0.150974 -0.847439 0.011919 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::_M_max_size() const = 0.128025 0.062553 0.121510 -0.241593 -0.226850 0.001362 0.188058 -0.039209 -0.010129 -0.051966 0.126977 -0.120261 -0.148072 0.395049 -0.027517 -0.155715 0.023534 -0.333045 -0.116847 0.169455 -0.004547 0.170379 -0.038377 0.033200 0.056878 0.114894 -0.102009 0.103245 0.009317 -0.270740 -0.229914 -0.040552 0.021631 0.246968 -0.010467 -0.032397 0.045217 0.459775 -0.172514 0.384091 -0.250711 -0.133770 0.146848 -0.050657 -0.050266 -0.455471 -0.242278 0.212841 0.033597 -0.191396 0.230587 0.065533 -0.147680 -0.070888 0.144026 0.255821 -0.459242 0.222353 0.139774 0.147590 0.072027 -0.074879 -0.062571 -0.077869 -0.066356 -0.161071 0.040477 -0.046464 -0.170261 0.033347 -0.074379 -0.267526 0.439319 0.126775 -0.129255 0.096950 0.134039 -0.285074 0.261754 -0.363118 -0.248499 0.019327 -0.024748 0.055641 0.337385 -0.061581 -0.017952 -0.378203 0.041775 -0.365526 0.098824 -0.402808 0.050668 0.330560 -0.132121 0.090091 0.069557 0.013692 0.194126 0.157917 0.263784 0.175781 0.139817 0.035465 0.180712 0.085978 -0.146061 -0.125343 -0.195638 -0.285009 0.012315 0.026785 -0.441902 0.091371 0.076769 0.070587 0.058691 0.071275 0.067290 0.067095 -0.253728 0.032939 0.136279 -0.046507 0.079701 0.391004 -0.130581 -0.011951 -0.266689 0.272718 -0.028572 0.279329 -0.031331 0.079183 -0.113179 -0.366616 -0.183674 -0.017858 0.058333 -0.126364 -0.257019 -0.383451 0.066131 0.026692 -0.166140 0.168615 0.466779 -0.155576 -0.186132 0.352137 0.378678 0.109137 0.131676 -0.022438 0.369370 -0.105594 -0.054025 0.001505 -0.108029 -0.114943 -0.043068 0.089641 -0.111864 0.044504 -0.030209 -0.620202 0.466641 -0.002284 -0.132672 0.209724 -0.042919 -0.170025 -0.285724 0.372599 0.161470 0.259325 0.057098 0.347037 -0.040007 -0.134897 0.154562 0.024712 0.122396 -0.328102 -0.139028 0.109501 0.125672 -0.220963 -0.097183 -0.031481 -0.095474 -0.183507 0.071055 -0.112630 0.041192 0.036356 0.169005 0.048641 0.309203 -0.037399 0.142219 -0.339376 0.132123 0.027619 -0.086696 -0.344369 0.096927 -0.118953 -0.019924 0.120565 -0.064146 -0.006649 -0.081666 -0.201781 0.110614 -0.134718 0.036785 0.049749 -0.136948 -0.080333 -0.051837 0.166221 0.115492 0.178394 0.308722 0.221284 0.193692 0.027498 0.008239 0.098319 -0.162752 -0.048786 -0.086850 0.100908 0.141803 0.106551 0.164471 -0.003199 0.206681 0.141864 -0.022697 0.248375 0.233273 0.377265 0.104632 -0.153826 0.023828 -0.072349 0.233975 0.377848 -0.164937 0.074531 0.142839 0.117495 -0.106074 -0.085294 -0.026591 -0.117038 -0.226769 0.261479 -0.046612 -0.042135 0.031605 0.292028 -0.117629 -0.366805 0.033846 0.021630 0.156576 0.137542 0.083732 0.122454 0.147496 -0.223434 0.183591 0.137758 0.216586 -0.127911 -0.228478 -0.004873 0.057679 0.051720 0.201028 -0.346862 0.044463 0.140951 0.262999 0.029476 0.083305 -0.139098 -0.099054 0.102531 -0.018200 -0.074603 -0.006911 0.165939 -0.138965 -0.109747 -0.255015 -0.146314 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator >* std::__addressof > >(std::allocator >&) = 0.107958 0.095189 0.124673 -0.230052 -0.255266 -0.008432 0.168056 -0.033064 -0.002429 -0.039321 0.140984 -0.151523 -0.155015 0.399429 -0.025984 -0.173444 -0.016357 -0.314822 -0.146888 0.144553 0.006468 0.162812 -0.028256 0.046872 0.040489 0.118562 -0.101192 0.094384 0.026957 -0.284164 -0.222400 -0.024822 0.047584 0.232601 -0.036122 -0.022387 0.044413 0.437367 -0.173056 0.360484 -0.250838 -0.152592 0.136522 -0.033165 -0.044480 -0.436144 -0.239615 0.227713 0.035395 -0.206099 0.231493 0.097565 -0.170850 -0.073269 0.156934 0.248016 -0.458363 0.238654 0.130044 0.128642 0.058282 -0.044105 -0.046198 -0.046969 -0.056846 -0.162927 0.036447 -0.035693 -0.168473 0.028159 -0.046655 -0.292803 0.452054 0.104551 -0.128243 0.108433 0.146939 -0.253265 0.285123 -0.361322 -0.236737 0.036289 0.001206 0.055365 0.312965 -0.043769 -0.022409 -0.373168 0.040649 -0.344090 0.123668 -0.385355 0.037805 0.307183 -0.127432 0.078786 0.065184 -0.006168 0.224936 0.163302 0.261491 0.157433 0.176347 0.038409 0.164123 0.087211 -0.158927 -0.127959 -0.222488 -0.334777 0.031862 0.026669 -0.437114 0.094871 0.096935 0.068458 0.084063 0.048470 0.094174 0.067241 -0.263611 0.022848 0.150608 -0.036550 0.076096 0.404295 -0.143560 0.001445 -0.251143 0.271609 -0.026632 0.265614 0.007890 0.065540 -0.098332 -0.355644 -0.195669 0.013591 0.059743 -0.120376 -0.224604 -0.379136 0.084466 0.040740 -0.170981 0.167632 0.483900 -0.154589 -0.198283 0.343756 0.394146 0.088658 0.127394 -0.033854 0.414729 -0.123889 -0.051827 0.002063 -0.113470 -0.085848 -0.020060 0.111472 -0.112759 0.044979 -0.015337 -0.631960 0.445264 -0.017158 -0.127025 0.218298 -0.009859 -0.162095 -0.271455 0.351110 0.188974 0.269333 0.070074 0.341375 -0.058049 -0.142690 0.164785 0.022289 0.103880 -0.315887 -0.158489 0.111760 0.143478 -0.209968 -0.062775 -0.053658 -0.128931 -0.190153 0.054058 -0.114378 0.062536 0.028990 0.171670 0.039944 0.322807 -0.016442 0.128287 -0.369847 0.119718 0.025886 -0.082392 -0.333483 0.091057 -0.150768 -0.007481 0.127465 -0.092426 -0.008448 -0.063882 -0.197732 0.090935 -0.158119 0.035069 0.023662 -0.113138 -0.090400 -0.065010 0.209062 0.104310 0.182750 0.328210 0.239431 0.223136 0.036166 0.022168 0.086137 -0.142888 -0.048900 -0.101297 0.107507 0.155153 0.104836 0.148375 -0.003660 0.238260 0.124863 -0.044546 0.260585 0.204882 0.397154 0.090934 -0.132523 0.002596 -0.068316 0.223504 0.408273 -0.180081 0.067778 0.142973 0.129353 -0.108666 -0.082752 -0.037439 -0.126795 -0.224077 0.272055 -0.037961 -0.048268 0.037073 0.270656 -0.103636 -0.362093 0.034059 -0.003259 0.146115 0.146664 0.061290 0.114134 0.144930 -0.232443 0.156263 0.147486 0.213898 -0.152481 -0.226280 -0.009471 0.084331 0.031908 0.198541 -0.364879 0.055864 0.156429 0.254725 0.010061 0.086123 -0.174327 -0.114104 0.119814 -0.016417 -0.085923 -0.005393 0.161412 -0.149629 -0.100026 -0.255091 -0.160631 +PE-benchmarks/vertex-cover-problem.cpp__void __gnu_cxx::new_allocator >::construct(int*, int const&) = 0.326789 0.442601 0.526468 -0.869058 -1.182183 0.161175 0.092388 -0.443829 0.029819 0.282561 0.700622 -0.565453 -0.222684 1.192224 -0.280273 -0.511595 -0.171370 -0.918227 -0.318087 -0.069848 0.074827 0.513265 -0.191243 0.141766 -0.051974 0.077819 -0.224112 0.424993 0.334752 -0.592305 -0.656398 -0.118843 0.025202 0.897276 0.130670 -0.486910 0.227447 1.507308 -0.868746 0.491444 -0.858422 -0.640781 0.575079 0.004778 -0.245748 -1.182657 -0.930156 0.634806 -0.028328 -0.306716 0.804217 0.077837 -0.045628 -0.071763 0.348876 0.675805 -1.470028 0.728005 0.387116 0.070818 -0.011390 -0.126963 0.121402 0.269888 -0.314114 -0.549526 0.433257 0.194078 -0.211515 -0.116196 -0.134837 -1.225223 1.286615 0.235359 -0.370697 0.167473 0.432796 -1.165166 1.003307 -0.708562 -1.008373 0.113843 -0.020648 -0.403992 0.964278 -0.286211 0.277715 -1.359543 0.177203 -1.391400 0.362570 -0.994387 0.249078 0.918512 -0.767859 0.093828 0.355533 0.391000 0.990775 0.166847 0.956182 0.471886 0.636138 0.279142 0.597102 0.555321 -0.459994 -0.234450 -0.878215 -1.234488 0.087454 -0.153554 -1.631376 0.436761 0.111739 -0.398977 0.032199 -0.237435 0.148986 1.081858 -0.679829 -0.075114 0.384216 -0.117735 0.120180 1.312673 -0.434892 0.218181 -0.572239 0.967246 -0.334639 0.722505 0.023768 0.306259 -0.446006 -1.142315 -1.087351 0.397674 0.406854 -0.636138 -0.827187 -1.162024 0.177027 -0.095196 -0.488358 0.789570 1.760487 -0.689990 -1.032485 1.161466 1.143952 -0.145740 0.862455 -0.096800 1.564390 -0.505127 -0.182136 -0.446287 -0.506982 -0.295628 0.117132 0.326295 -0.073915 0.319430 0.033592 -1.503940 1.529758 -0.104498 -0.610482 0.586660 0.307062 -0.491109 -0.877925 1.104987 0.695832 0.776709 0.409573 1.281329 -0.370087 -0.755636 0.524551 0.003141 0.186944 -0.756290 -0.451895 0.388540 0.705815 -0.342387 -0.252788 -0.397019 -0.428658 -0.627621 0.204143 0.042377 0.464898 0.295547 0.434062 0.025350 1.449975 0.184341 0.337256 -1.114273 0.420834 0.579247 -0.215846 -1.176080 -0.020086 -0.705583 0.027262 0.202643 -0.279275 0.470223 -0.467948 -0.592249 0.035944 -0.344370 0.316525 0.251896 -1.135653 0.194698 -0.562201 0.762598 0.259389 0.689241 1.106887 1.092482 0.964545 0.067823 0.130657 0.084866 -0.147008 -0.126438 0.106228 0.302775 0.577418 0.952345 0.496282 0.282541 0.835864 0.527894 0.031567 0.935071 0.214135 1.560093 -0.022268 -0.104334 -0.352250 -0.046347 0.822392 1.821524 -0.035821 0.005792 0.373148 0.487131 -0.421755 -0.911373 0.060329 -0.392257 -0.155784 0.518406 0.268631 -0.157875 -0.155673 1.022941 -0.084418 -1.313044 0.428079 0.007337 0.447800 0.570234 -0.011362 0.194316 0.330139 -0.818404 0.820862 0.826547 0.680447 -0.705158 -0.624959 0.033642 0.650027 -0.087821 0.721446 -1.571193 0.640672 0.586320 0.797744 0.114548 0.733875 -0.912441 -0.501779 0.583037 -0.199100 -0.254901 0.263300 0.604868 -1.043611 0.229894 -0.734836 -0.630846 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_ptr() = 0.199880 0.208205 0.229906 -0.301590 -0.494186 0.119906 -0.079250 -0.186164 -0.016397 0.029211 0.222965 -0.147499 -0.165728 0.407694 -0.161032 -0.283980 -0.162255 -0.446785 -0.144519 -0.081766 -0.005584 0.168594 -0.079123 0.107724 -0.047980 0.016418 -0.097980 0.076466 0.119547 -0.343988 -0.262608 -0.052843 -0.001466 0.347488 0.067514 -0.137005 0.120951 0.619788 -0.045002 0.080030 -0.354588 -0.353701 0.125534 -0.021385 -0.037404 -0.403967 -0.237999 0.275549 -0.080492 -0.007199 0.330922 0.041046 -0.151079 0.020126 0.149815 0.188373 -0.651925 0.455047 0.105857 0.057516 0.006450 -0.050219 0.026875 0.048485 0.103776 -0.203138 0.180247 0.210637 -0.182099 0.011462 0.000577 -0.432426 0.585992 0.106410 -0.130554 0.063472 0.230767 -0.270347 0.385792 -0.434956 -0.436440 0.047888 0.027806 -0.066727 0.417666 -0.032020 0.014705 -0.526940 0.150579 -0.554559 0.139389 -0.353201 0.084912 0.321422 -0.276732 0.039090 0.203964 0.047334 0.390910 0.077114 0.400051 0.101683 0.194541 0.184747 0.165608 0.081952 -0.118623 -0.001870 -0.307533 -0.520984 -0.016447 0.017079 -0.588473 0.158956 0.094791 0.025654 -0.005082 0.011261 0.098476 0.191784 -0.428344 -0.170338 0.122334 -0.037270 0.144759 0.428574 -0.199976 0.139083 -0.223038 0.411967 -0.183740 0.236271 0.021824 0.088965 0.016243 -0.477908 -0.603897 0.170739 0.204002 -0.212129 -0.317832 -0.357592 0.057271 -0.018378 -0.201002 0.420251 0.723956 -0.281750 -0.381201 0.493117 0.371572 0.018448 0.418171 -0.009207 0.562093 -0.142194 -0.130449 -0.100137 -0.223272 -0.127314 -0.312638 0.159490 0.022182 0.135777 0.144419 -0.343906 0.429558 -0.111365 -0.305158 0.229909 0.087158 -0.196834 -0.302480 0.333004 0.452521 0.306958 0.320705 0.515956 -0.154913 -0.331825 0.166109 -0.005782 0.107251 -0.174503 -0.155461 0.070250 0.229321 -0.226632 -0.095159 -0.089980 -0.198021 -0.279030 0.036948 0.247220 0.229323 0.163687 0.219797 0.045970 0.642593 0.107013 0.118604 -0.475090 0.150839 0.171748 -0.065642 -0.376873 0.009360 -0.238072 0.035118 0.239029 -0.113518 0.134082 -0.070517 -0.202187 -0.039913 -0.140705 0.201151 0.165958 -0.175887 -0.005333 -0.192996 0.277055 0.089993 0.229991 0.452683 0.438509 0.436160 0.043190 0.083361 0.065672 0.167063 -0.149860 0.051420 0.229443 0.221378 0.261286 0.214849 0.101716 0.345490 0.261074 -0.030442 0.379156 0.046126 0.685611 -0.191189 -0.001055 -0.225180 0.025115 0.322073 0.707578 -0.250445 0.102985 0.149424 0.223450 -0.047194 -0.350582 0.034663 -0.178640 -0.044071 0.155551 0.161940 -0.032478 -0.060700 0.360086 -0.038984 -0.451133 0.216097 0.015169 0.145432 0.175222 0.024243 -0.019842 0.130016 -0.408843 0.215963 0.355438 0.279207 -0.302508 -0.192017 0.000586 0.320873 -0.274822 0.337777 -0.391661 0.205759 0.287649 0.263264 0.063226 0.083787 -0.377753 -0.372166 0.278442 -0.107167 -0.124973 0.243141 0.253855 -0.365077 0.085528 -0.125262 -0.334460 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::__aligned_membuf::_M_addr() = 0.169267 -0.003125 0.213124 -0.320454 -0.341562 0.150627 -0.032280 -0.135175 0.040511 -0.088420 0.201272 -0.094040 -0.076944 0.426387 -0.018955 -0.270694 -0.026134 -0.343527 -0.100725 0.100674 -0.000985 0.134749 -0.094890 0.092951 -0.034150 0.027104 -0.057375 0.116716 0.033124 -0.264418 -0.336705 -0.069235 -0.115276 0.365520 0.069359 -0.036695 0.138458 0.658976 -0.088796 0.348388 -0.216898 -0.261598 0.108093 -0.037443 -0.105482 -0.223528 -0.272204 0.233023 -0.046259 -0.155482 0.391348 0.021858 -0.097484 0.017404 0.185840 0.183477 -0.543112 0.187008 0.109109 0.144325 0.021027 -0.111887 0.002142 0.048661 -0.138859 -0.177463 0.243458 0.127365 -0.153702 -0.029704 -0.050556 -0.499685 0.608433 0.209193 -0.142189 0.064886 0.311201 -0.360846 0.378351 -0.199223 -0.468049 0.039950 -0.104744 -0.247437 0.536348 -0.119895 0.118393 -0.525563 0.265099 -0.575803 0.135369 -0.432113 0.099106 0.424739 -0.290380 0.048060 0.217784 0.365578 0.245186 0.032704 0.394760 0.182978 0.030869 0.116386 0.329991 0.033999 -0.181308 -0.094098 -0.334812 -0.462139 0.014590 -0.148634 -0.621503 0.148463 0.081283 0.054580 -0.036082 0.139088 0.010665 0.185129 -0.428032 0.006910 0.104907 -0.058242 0.126152 0.449092 -0.235296 0.087926 -0.221605 0.428520 -0.193072 0.215323 -0.050107 0.091655 -0.081696 -0.128670 -0.427272 0.122130 0.236096 -0.211960 -0.380544 -0.404325 0.004469 0.138516 -0.161483 0.547614 0.712971 -0.254671 -0.278622 0.460714 0.341207 0.087373 0.357822 0.009798 0.473831 -0.157783 -0.087531 -0.167106 -0.160153 -0.195470 -0.334817 0.176684 0.037865 0.180789 0.026848 -0.319510 0.797293 -0.101667 -0.265397 0.171871 0.057783 -0.222064 -0.383836 0.486382 0.241893 0.272561 0.317741 0.526740 -0.097934 -0.189742 0.183061 -0.009678 0.103828 -0.394734 -0.183058 0.012162 0.247646 -0.224793 -0.142734 -0.099231 -0.178444 -0.202397 0.035571 0.286270 0.172806 0.124039 0.222349 0.111874 0.628028 0.136464 0.049782 -0.473984 0.164965 0.154375 -0.231054 -0.147838 0.040856 -0.203382 0.023489 0.109190 -0.063684 0.100902 -0.280135 -0.277210 -0.067324 -0.018702 0.149514 0.179374 -0.532991 -0.033256 -0.015359 0.224850 0.228194 0.197464 0.467636 0.419548 0.442244 -0.035363 0.061471 0.175623 -0.139884 -0.147331 -0.027600 0.351061 0.173938 0.267372 0.203154 0.069228 0.266335 0.274028 0.114685 0.335992 0.196643 0.640276 0.135552 -0.098533 -0.124623 -0.046053 0.328279 0.653088 -0.252556 0.266891 0.177132 0.260487 -0.163575 -0.341782 0.039743 -0.185859 -0.044753 0.093397 0.002562 -0.007457 -0.079197 0.381909 -0.050143 -0.518930 0.041590 0.013923 0.185026 0.352968 0.042673 0.130172 0.074388 -0.399693 0.409301 0.269808 0.234275 -0.236840 -0.042559 0.012866 0.173422 -0.162106 0.289875 -0.228104 0.278318 0.145038 0.301838 0.156577 0.069235 -0.311936 -0.157371 0.205746 -0.237546 -0.084678 0.150774 0.292313 -0.266051 0.019325 -0.361121 -0.364251 +PE-benchmarks/vertex-cover-problem.cpp__std::allocator_traits > >::deallocate(std::allocator >&, std::_List_node*, unsigned long) = 0.276040 0.338787 0.293311 -0.672214 -0.820055 0.040973 0.119021 -0.239176 0.042320 0.167841 0.491995 -0.532545 -0.263103 1.031845 -0.211994 -0.462780 -0.082000 -0.721088 -0.270175 0.079746 0.051619 0.453997 -0.108418 0.085091 0.075913 0.153735 -0.262673 0.291088 0.412969 -0.595169 -0.581819 -0.025683 0.084600 0.700952 -0.018271 -0.355018 0.217606 1.176879 -0.602239 0.500474 -0.702377 -0.431771 0.486188 0.029099 -0.226657 -0.982331 -0.707326 0.509414 -0.104977 -0.265522 0.591512 0.099976 -0.204090 -0.137959 0.319363 0.689204 -1.281899 0.716345 0.309000 0.255922 0.052461 -0.110883 0.089389 0.067003 -0.176835 -0.468281 0.249132 0.074509 -0.357204 -0.050193 -0.149945 -0.897752 1.076950 0.216592 -0.358455 0.209064 0.254316 -0.901972 0.741952 -0.791966 -0.682442 0.114353 0.104457 -0.104424 0.766760 -0.170283 0.114763 -1.077633 0.070431 -1.020003 0.305225 -0.882122 0.260331 0.800876 -0.643088 0.105304 0.163851 0.139313 0.785730 0.279847 0.809789 0.369700 0.495684 0.090510 0.362110 0.429850 -0.351650 -0.186823 -0.552514 -0.922784 -0.017035 0.020414 -1.339137 0.290626 -0.009674 -0.113805 0.165711 -0.139361 0.117767 0.638062 -0.572077 -0.228046 0.256563 -0.092244 0.204388 1.123174 -0.301609 0.087827 -0.536569 0.791319 -0.102448 0.532953 -0.032557 0.205307 -0.374058 -1.041992 -0.791597 0.159396 0.244696 -0.498979 -0.682576 -0.979872 0.161799 -0.165300 -0.400608 0.615553 1.363919 -0.444444 -0.747415 0.952812 0.822381 0.077453 0.721201 -0.139868 1.291097 -0.481456 -0.017317 -0.176289 -0.266700 -0.238178 -0.008285 0.216251 -0.168937 0.074116 0.007976 -1.274564 1.022791 0.014301 -0.362602 0.364425 0.144983 -0.393115 -0.743359 0.954118 0.449982 0.698944 0.214130 1.029387 -0.307279 -0.660700 0.526638 0.036009 0.161273 -0.608846 -0.424782 0.296494 0.519948 -0.384115 -0.183474 -0.219181 -0.235330 -0.515730 0.179875 0.062673 0.272830 0.106101 0.335627 0.094716 1.003830 -0.008939 0.394745 -0.965764 0.283876 0.435120 -0.230346 -1.018206 0.137492 -0.558544 0.003197 0.284081 -0.280710 0.221226 -0.332556 -0.564465 0.086743 -0.275328 0.318169 0.070035 -0.710747 0.105156 -0.496595 0.498099 0.240924 0.584840 0.871189 0.727319 0.617059 0.001457 0.129569 0.017799 -0.104060 -0.067117 -0.027979 0.238446 0.455215 0.652637 0.359587 0.135780 0.621694 0.362476 -0.137848 0.738213 0.331634 1.201658 0.026560 -0.159590 -0.184711 -0.214899 0.639993 1.426150 -0.273807 -0.032599 0.348490 0.416220 -0.251276 -0.668775 -0.051162 -0.333465 -0.361673 0.480182 -0.023516 -0.150981 -0.040502 0.832264 -0.102133 -1.031874 0.381660 -0.022771 0.324661 0.313612 0.014903 0.112863 0.361913 -0.730907 0.502807 0.542269 0.583118 -0.455666 -0.549548 -0.029132 0.506674 -0.037753 0.497514 -1.113737 0.447218 0.539108 0.698701 0.207021 0.455835 -0.552218 -0.440426 0.322452 -0.092560 -0.242548 0.040112 0.429149 -0.744365 0.068337 -0.546440 -0.478475 +PE-benchmarks/vertex-cover-problem.cpp____clang_call_terminate = 0.128142 0.041604 -0.003310 0.013652 -0.351061 -0.133774 -0.149976 0.036194 -0.089018 0.092191 0.016260 -0.183064 -0.172411 0.112428 -0.100775 -0.300850 -0.181730 0.019094 -0.164965 -0.223063 0.078788 0.195179 0.156557 0.054119 0.076003 -0.071853 0.016689 0.067583 0.461207 -0.171161 0.042908 0.012136 0.096570 -0.067158 -0.066526 -0.117758 0.001867 0.292410 0.262243 -0.180729 -0.193358 -0.121774 0.175184 -0.007795 0.047125 -0.078886 -0.133739 0.156486 -0.430571 0.203557 -0.042325 0.067961 -0.136494 -0.112262 0.031027 0.056358 -0.285207 0.573210 -0.093346 0.016283 -0.004400 -0.052372 -0.016435 -0.079999 0.274245 -0.117330 -0.062244 0.108245 -0.350481 -0.006072 0.034629 0.200164 0.190558 -0.090923 0.005974 -0.015741 -0.101972 0.265158 0.063230 -0.351948 -0.137293 -0.099872 0.130301 0.162721 -0.063566 0.072477 -0.096362 -0.356218 0.034758 -0.218380 0.124724 0.022507 0.081336 0.073742 -0.264806 0.214423 -0.037577 -0.308841 0.148091 0.136490 0.167617 -0.137736 0.140738 0.140358 -0.291081 -0.081628 0.007194 0.111416 0.143411 -0.155759 -0.064825 0.054819 -0.230306 0.003286 0.043769 0.289828 0.143871 0.004433 0.149023 -0.222594 -0.235842 -0.182115 0.022473 -0.025640 0.221622 0.006860 -0.111200 0.050504 -0.197754 0.192015 -0.086766 0.011100 0.020703 0.059815 0.123141 -0.363888 -0.313065 0.048402 0.055120 0.065099 -0.157233 0.051335 0.006478 -0.304619 -0.138635 0.183652 0.149153 -0.056261 -0.169815 0.194827 -0.285976 0.210451 0.241159 -0.080846 0.209944 0.017512 -0.169671 0.115896 -0.134648 0.134153 -0.309390 0.017943 -0.127860 -0.040616 0.093033 0.197847 -0.390925 -0.055889 -0.128602 -0.349464 0.127431 -0.041905 0.010820 0.014596 0.081856 0.126714 0.041719 0.225438 -0.154042 -0.253707 0.135141 -0.169787 -0.020293 0.124621 0.054365 -0.079550 0.057985 -0.178017 -0.040221 -0.014519 -0.084902 -0.182053 0.100688 0.365967 0.063532 0.085395 0.220097 0.212859 0.130647 -0.035392 0.057670 -0.263434 -0.002787 0.183628 0.145268 -0.306265 0.092848 0.034461 -0.007885 0.299208 -0.083471 -0.126482 0.212111 -0.077585 -0.174161 -0.071703 0.185061 0.063869 0.177965 -0.014625 -0.078570 0.034325 -0.121731 0.133064 0.123929 -0.085245 0.064358 0.118986 0.070746 -0.027236 0.558351 0.051762 0.068701 -0.068650 0.052798 0.096750 0.145401 0.019421 0.234877 0.100236 -0.320175 0.035823 0.045123 0.356177 -0.467702 -0.065579 -0.258429 0.123050 0.157752 0.339416 -0.204766 -0.121560 0.107814 0.103329 0.301214 -0.234263 -0.070328 -0.160468 0.000000 0.074361 0.035805 0.017747 0.049699 0.065366 -0.066374 -0.150925 0.504660 -0.013277 0.130159 -0.226587 -0.020808 -0.185398 0.139849 -0.364293 -0.305199 0.225930 0.035740 0.002506 -0.085333 -0.165583 0.187444 -0.104613 0.203766 0.062266 0.036070 0.447121 0.183133 -0.082160 -0.139236 -0.066000 -0.548380 -0.056989 -0.042724 -0.034539 0.151876 -0.237208 -0.161385 0.069034 0.269863 -0.261750 +PE-benchmarks/vertex-cover-problem.cpp____gnu_cxx::new_allocator >::deallocate(std::_List_node*, unsigned long) = 0.206740 0.288456 0.204596 -0.642934 -0.806360 0.023877 0.145280 -0.182872 -0.021839 0.001327 0.458751 -0.472859 -0.340587 0.907744 -0.101650 -0.484476 -0.081077 -0.735514 -0.259342 0.151415 -0.003896 0.454507 -0.118773 0.146346 0.106416 0.204722 -0.356328 0.297139 0.511291 -0.656705 -0.527085 -0.031640 0.030515 0.636152 -0.009520 -0.368651 0.257444 1.192871 -0.496961 0.389371 -0.541073 -0.317818 0.445028 -0.026529 -0.298367 -0.877788 -0.641157 0.517520 -0.217339 -0.218746 0.625296 0.134359 -0.216598 -0.090172 0.326821 0.661520 -1.229827 0.744857 0.348524 0.326595 0.125062 -0.121312 -0.036035 -0.032130 -0.086929 -0.430595 0.195360 -0.043019 -0.315546 -0.129050 -0.125769 -0.749128 1.071727 0.239387 -0.310592 0.225311 0.242120 -0.789578 0.681096 -0.728324 -0.698655 0.121733 0.056736 -0.071604 0.816464 -0.235242 -0.002652 -0.985551 0.025591 -0.970607 0.206195 -0.852408 0.195756 0.815833 -0.623350 0.113609 0.152923 -0.020510 0.677082 0.226102 0.773893 0.242664 0.403647 0.183549 0.278794 0.333961 -0.309483 -0.112493 -0.511759 -0.843467 -0.018415 0.063180 -1.209450 0.318134 0.037532 -0.066619 0.189714 -0.069011 0.099378 0.475121 -0.363483 -0.152982 0.213723 -0.101498 0.202659 1.103113 -0.299521 0.030199 -0.569385 0.746362 -0.108179 0.623154 -0.065841 0.212943 -0.182369 -0.990997 -0.746315 0.104520 0.222535 -0.432058 -0.620012 -0.830167 0.203735 -0.299326 -0.407862 0.542829 1.292996 -0.482766 -0.634498 1.002793 0.743931 0.229734 0.603069 -0.151559 1.129644 -0.324174 -0.138228 -0.141075 -0.358230 -0.294333 -0.153975 0.256133 -0.142646 0.023412 0.029773 -1.083117 0.915102 0.068990 -0.424284 0.421244 0.106830 -0.390274 -0.803046 0.898231 0.583844 0.609887 0.358538 0.939901 -0.151667 -0.600606 0.532553 0.265028 0.205673 -0.619170 -0.466665 0.334301 0.324920 -0.319196 -0.160459 -0.216319 -0.107961 -0.596640 0.100703 0.230116 0.272500 0.162727 0.410880 -0.042147 0.995362 -0.013717 0.364933 -0.937523 0.304208 0.330388 -0.266326 -0.874226 0.162712 -0.427447 -0.012694 0.422582 -0.270314 0.179098 -0.248245 -0.525520 0.115316 -0.195553 0.337663 0.173717 -0.684172 0.077661 -0.391133 0.395324 0.295536 0.495993 0.788615 0.676168 0.600650 0.100581 0.093578 0.205266 -0.078354 -0.174959 -0.120643 0.329860 0.459381 0.508026 0.438129 0.141947 0.561946 0.357431 -0.153422 0.692703 0.363599 1.179854 0.123118 -0.259774 -0.148805 -0.151119 0.612710 1.267082 -0.320381 0.012194 0.351059 0.417901 -0.203819 -0.671354 0.000508 -0.328508 -0.316220 0.446520 -0.123365 -0.122328 -0.001334 0.739814 -0.211203 -0.942961 0.348137 0.015738 0.365320 0.207697 0.147498 0.091225 0.339866 -0.809126 0.494196 0.559862 0.540603 -0.369394 -0.438740 -0.009391 0.438908 -0.162183 0.564076 -0.939843 0.314498 0.464198 0.596529 0.221821 0.315824 -0.449279 -0.506628 0.360940 -0.072853 -0.204954 0.025036 0.364915 -0.689669 0.060878 -0.436789 -0.486594 +PE-benchmarks/vertex-cover-problem.cpp__std::_List_iterator::_List_iterator(std::__detail::_List_node_base*) = 0.040309 0.066601 0.259925 -0.504897 -0.603252 0.022324 0.166749 -0.115938 0.049493 -0.187022 0.376852 -0.409282 -0.295147 0.793464 0.002773 -0.441140 -0.007354 -0.293602 -0.200090 0.213992 0.044671 0.299375 -0.083607 0.114705 0.042339 0.126868 -0.180485 0.363302 0.387367 -0.331544 -0.452459 -0.049210 0.016760 0.539411 -0.009978 -0.076527 0.189981 0.995245 -0.460071 0.724211 -0.399675 -0.218494 0.351693 -0.004941 -0.249384 -0.727436 -0.684599 0.391950 -0.359514 -0.304951 0.578130 0.139937 -0.101505 -0.074799 0.371066 0.549559 -0.925661 0.411120 0.247835 0.209781 0.161897 -0.110905 -0.179871 0.024652 -0.279836 -0.312633 0.123807 -0.039940 -0.220178 -0.062174 -0.094016 -0.679030 1.047112 0.206526 -0.341706 0.197300 0.390961 -0.648455 0.571013 -0.397168 -0.598891 0.071551 -0.049611 -0.090467 0.754467 -0.198566 0.098338 -0.817194 -0.008332 -0.817087 0.289435 -0.819874 0.133967 0.717390 -0.558339 0.141284 0.168179 0.109762 0.444564 0.233211 0.563847 0.324439 0.265665 0.079535 0.426098 0.220060 -0.311480 -0.289572 -0.513396 -0.695632 0.015212 -0.150284 -1.127218 0.170468 0.088281 0.112565 0.109542 0.045304 0.081166 0.337676 -0.296616 0.209676 0.244817 -0.098587 0.141662 0.909970 -0.305938 0.042043 -0.424155 0.642043 -0.135137 0.491354 -0.074686 0.166834 -0.209524 -0.635921 -0.523899 0.100892 0.199256 -0.262011 -0.547489 -0.719040 0.088577 0.046557 -0.258986 0.357248 1.066570 -0.339759 -0.458185 0.751127 0.652854 0.238137 0.400722 -0.042758 0.888229 -0.277115 -0.084636 -0.263576 -0.289292 -0.244109 0.084773 0.244034 -0.194024 0.153728 -0.061401 -1.150312 1.069773 -0.060218 -0.321302 0.221607 0.042620 -0.349980 -0.627165 0.907690 0.219644 0.506700 0.122685 0.776882 -0.123598 -0.459805 0.374151 0.112827 0.172094 -0.667548 -0.352826 0.286676 0.327466 -0.377614 -0.202119 -0.226192 -0.150067 -0.364302 0.081782 0.060521 0.102449 0.099766 0.367832 0.093021 0.786895 0.068112 0.206452 -0.777779 0.256062 0.187453 -0.308595 -0.659199 0.211556 -0.319084 -0.014246 0.114735 -0.149353 0.070323 -0.330929 -0.459417 0.008205 -0.253235 0.193722 0.136649 -0.775220 0.010271 -0.097142 0.360095 0.355148 0.345611 0.783036 0.540952 0.547054 0.099810 0.070126 0.193977 -0.285219 -0.032838 -0.066403 0.247505 0.294672 0.441132 0.313686 0.016066 0.424906 0.338971 0.034132 0.512605 0.469152 0.901656 0.406090 -0.259525 -0.028241 -0.142378 0.494353 1.030406 -0.213137 0.197689 0.313582 0.391051 -0.209283 -0.547937 -0.053241 -0.265970 -0.351357 0.556476 -0.186971 -0.129749 0.010230 0.590793 -0.145782 -0.802455 0.091736 0.009205 0.282104 0.322300 0.080663 0.150371 0.255295 -0.602956 0.559430 0.338655 0.388072 -0.311319 -0.361257 -0.023890 0.149944 0.207497 0.422881 -0.739490 0.185697 0.292199 0.586195 0.177659 0.308909 -0.367875 -0.254845 0.234775 -0.206289 -0.180717 -0.122250 0.267271 -0.435956 -0.044097 -0.550068 -0.556411 +PE-benchmarks/vertex-cover-problem.cpp___GLOBAL__sub_I_vertex_cover_problem.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/largest-sum-contiguous-subarray.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__maxSubArraySum(int*, int) = 1.064575 1.618927 1.865334 -2.607352 -2.593998 0.324248 0.431879 -1.735931 0.269139 3.538608 1.850728 -2.196040 -3.044812 3.087196 -1.545558 -3.082290 0.354679 -0.629479 -0.498313 -2.074867 0.311971 1.430672 -0.002971 -1.183416 0.920043 -1.129360 0.133433 2.470438 2.808525 -0.267970 -1.595123 -0.105224 0.930586 4.020080 -0.171698 -0.439358 0.029617 4.656417 -3.090112 2.352106 -5.212984 -3.957214 4.202457 0.800330 -0.501881 -4.729803 -1.847222 1.667989 -3.281273 -0.814018 1.022997 -0.826179 0.759000 -1.972908 0.499926 4.212417 -6.353965 3.110606 0.255733 -1.352572 -1.612855 -0.464879 1.555179 0.818383 -0.562138 -2.653455 0.709117 0.839346 -2.616547 0.909120 -1.647552 -3.818307 3.851746 0.505537 -2.019057 0.855614 0.132873 -3.446368 2.360555 -2.721228 -2.202358 -0.984916 1.822575 0.104593 1.945088 0.949737 1.940166 -5.992600 -0.963685 -4.689926 3.123773 -2.894195 3.291466 3.030897 -3.145759 1.607183 0.901572 -0.151491 2.183776 -0.070659 3.950281 1.316414 3.328218 -0.269185 1.507090 2.457067 -2.421891 -2.253897 -2.129971 -3.398162 -0.141243 -0.844779 -6.275537 0.031150 -2.712425 -0.029823 1.580232 -2.084169 -0.185383 3.527244 -4.801269 -1.711808 1.089399 -0.601274 2.581480 3.820569 -0.109187 0.909766 -0.180491 3.990018 -0.660489 0.528125 -0.842405 1.579492 -1.173594 -5.048334 -3.333011 0.593907 1.191446 -2.791571 -4.015933 -4.598658 -0.813913 0.334685 -0.899069 2.190864 6.367441 -1.140890 -4.471742 3.128913 -0.209183 0.370359 4.465666 0.293765 6.284372 -4.198072 1.725974 -1.404410 0.616529 1.295053 3.855575 -0.578678 -2.031615 1.239510 0.164875 -2.977303 0.856112 -0.941906 -0.411230 -1.428489 0.546648 -1.755343 -1.634744 3.944796 -1.608826 4.303017 -1.762780 5.270581 -3.784239 -4.854323 1.818881 -3.338897 -0.977977 -1.716096 -1.386356 0.673395 3.116098 -3.367831 -1.924154 -2.196695 -0.706899 -0.667758 2.674574 -1.600461 0.317683 -0.516445 -0.157485 3.133173 2.873147 -0.561240 0.968299 -3.915822 0.630350 3.067892 0.241439 -6.326480 0.447000 -2.974982 -0.292458 1.372740 -0.806002 2.068348 -1.027975 -1.968448 0.182979 -1.964461 1.206325 -1.199167 -3.781752 1.538225 -2.038580 0.716011 0.697873 4.124272 4.196547 2.484401 0.943384 -0.340161 1.398994 -2.565311 -0.126924 1.252647 1.227898 0.378354 1.731707 3.480300 0.865669 0.767034 3.182530 1.777886 -0.720820 3.475555 1.170599 4.824468 -1.843526 0.342250 -0.250247 -1.714929 2.431722 6.159827 -0.751497 -1.317741 1.915837 1.523690 -0.192431 -3.860142 -0.956509 -1.781213 -1.670644 3.559032 1.523979 -1.379049 -1.171656 5.314228 0.901726 -5.729766 3.998120 -0.081019 0.771881 1.130407 -1.872193 -0.591402 2.430260 -2.318884 1.318842 1.857371 3.025711 -3.235380 -1.707590 -0.601120 3.228824 1.904838 0.385300 -6.741872 0.583285 2.544523 4.781466 1.959249 4.346149 -2.284688 -1.446240 -0.417258 -1.115341 -1.007185 -0.675458 1.476636 -2.638749 0.467660 -3.428706 -0.860744 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.368318 0.136734 0.110180 -0.665503 -0.589822 0.177312 -0.163357 -0.256207 0.055209 -0.286914 0.466834 -0.529722 -0.416987 0.860590 -0.154767 -0.638935 0.112448 -0.615906 -0.133917 0.224237 -0.044273 0.250880 -0.140152 -0.032571 0.067453 0.189717 -0.268786 0.297085 0.895475 -0.584110 -0.885662 0.050239 -0.027996 0.816834 0.144667 -0.446221 0.462691 1.261937 -0.152406 0.387951 -0.514543 -0.159993 0.464155 0.026929 -0.440563 -0.737001 -0.634907 0.451172 -0.813192 0.018992 0.694360 -0.125781 -0.184371 -0.084371 0.252047 0.941850 -1.443125 0.999635 0.290481 0.715009 0.264947 -0.300459 0.065040 -0.087808 0.123654 -0.466984 0.342675 0.088190 -0.596723 -0.077228 -0.437736 -0.842713 1.342827 0.354628 -0.466741 0.100589 0.160989 -0.904335 0.513435 -0.788718 -0.730447 0.137324 0.094960 0.083650 1.105170 -0.256495 -0.097745 -1.092676 -0.079739 -1.168084 0.187098 -1.006433 0.434321 0.932727 -0.991932 0.000995 0.064820 -0.038975 0.536762 0.287216 0.881846 0.194026 0.112549 -0.155394 0.363215 0.186622 -0.133170 -0.036515 -0.178019 -0.684824 -0.383196 0.144961 -1.538710 0.239016 -0.420660 0.327104 0.095316 0.095363 -0.119425 0.155397 -0.362772 -0.510523 -0.099628 -0.136017 0.627692 1.216383 -0.288555 0.179425 -0.524824 0.908330 0.093450 0.325464 -0.361227 0.157671 -0.085090 -1.226525 -1.093398 0.072249 0.501067 -0.466426 -0.986066 -0.800604 0.036208 -0.515582 -0.300763 0.805399 1.240531 -0.270845 -0.572118 1.024359 0.333835 0.602673 1.160985 -0.168150 1.261822 -0.594664 0.269172 -0.012956 -0.095399 -0.569108 -0.830183 -0.028414 -0.142333 -0.096715 0.045422 -0.616495 0.721328 0.214291 -0.341396 0.205036 -0.133999 -0.376777 -0.997950 1.185259 0.452916 0.579183 0.477750 1.167612 -0.319907 -0.891496 0.655093 0.475895 0.276611 -0.418647 -0.535494 0.224821 0.422819 -0.528602 -0.366758 -0.015711 0.251369 -0.471541 0.272824 1.030547 0.086347 0.075483 0.332477 0.088275 1.010609 -0.192926 0.583261 -0.979603 0.250555 0.566267 -0.481417 -0.835417 0.303044 -0.470679 -0.007310 0.533994 -0.195559 0.140042 -0.468686 -0.801307 0.060486 -0.002084 0.722069 0.245125 -0.826011 0.221627 -0.424797 -0.069521 0.488424 0.613620 0.751902 0.563460 0.507435 -0.221916 0.186482 0.146685 0.070194 -0.271462 -0.042655 0.548611 0.361078 0.471878 0.283390 0.023714 0.329505 0.415656 -0.225240 0.643602 0.713329 1.120111 0.201138 -0.187474 -0.149259 -0.570139 0.698149 1.446992 -0.800367 0.053811 0.363629 0.574910 0.036856 -1.077214 -0.143701 -0.364582 -0.492494 0.336675 -0.400863 -0.068881 -0.134085 0.953234 -0.121058 -0.975511 0.478234 0.071842 0.217488 0.217861 -0.010681 -0.060768 0.314313 -1.016657 0.544804 0.440620 0.611691 -0.163228 -0.305533 -0.086820 0.452746 -0.393839 0.337793 -0.424219 0.361322 0.593929 0.827015 0.811810 0.045971 -0.303010 -0.545775 0.083944 -0.213619 -0.122066 -0.176375 0.504184 -0.757197 0.007756 -0.295158 -0.621547 +PE-benchmarks/largest-sum-contiguous-subarray.cpp___GLOBAL__sub_I_largest_sum_contiguous_subarray.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 2.933765 1.096332 2.595371 -2.783882 -2.028141 1.546727 -0.031991 -4.093025 0.302543 8.001909 2.561806 -2.414177 -0.851207 4.633960 -2.415794 -2.432971 1.454677 2.188403 0.195534 -2.111472 -0.197506 1.388157 -1.039436 -2.664278 1.039156 -1.783797 1.713891 1.836593 -0.631563 1.957800 -2.825146 -1.028100 0.634081 6.520131 0.849635 0.414507 -1.354747 5.369883 -5.264219 5.592047 -7.822930 -6.281696 5.493467 1.299711 1.732425 -4.365652 -2.115607 2.167991 0.332162 -4.000079 0.377316 -2.645299 2.108799 -3.096686 -0.171778 4.386665 -6.235883 0.205689 1.109450 -3.913271 -4.719387 -0.416980 4.370261 2.327154 -4.530647 -4.118094 1.677441 3.106385 -1.685602 1.316894 -4.022214 -8.378088 2.967466 0.764322 -3.312521 0.367788 -0.579292 -5.528916 3.307434 -1.010972 -3.348830 -1.937835 1.772905 -2.264656 1.160409 3.002500 6.382400 -8.915513 2.306281 -7.617240 4.932473 -2.856250 5.922696 4.467092 -3.256055 1.538254 2.722219 5.612911 3.326912 0.431949 5.344593 3.211957 2.278590 -1.572990 3.831007 4.653608 -4.391673 -4.700098 -3.558477 -4.776385 1.290329 -1.929113 -7.471134 0.455916 -5.011168 0.200036 0.084421 -2.099934 -0.330722 7.193148 -10.185242 -2.678943 1.973047 -0.931967 3.983759 4.327604 0.323435 1.828493 0.160625 4.660674 -1.783377 -1.709297 -1.030769 3.087653 -4.938426 -3.509201 -3.347330 1.729205 2.606190 -5.736355 -5.895198 -8.778174 -1.752676 4.366335 -1.620161 4.629902 9.100051 -2.547574 -5.659004 2.602695 -0.674407 -2.731699 6.747274 1.203826 9.627953 -7.813883 3.987420 -1.969760 2.215284 2.393346 5.482595 -1.502776 -3.011847 3.450415 -0.838476 -4.509496 6.258827 -1.585165 -0.025414 -2.136699 1.958143 -0.716914 -0.402931 5.235818 -6.262996 5.061597 -4.033748 7.746801 -6.201939 -4.057991 1.722080 -8.060725 -3.133799 -2.433140 -0.667230 -1.054328 7.066552 -4.936506 -2.782512 -1.836102 -3.228086 0.631073 5.144996 -3.574039 0.077981 -0.775277 -2.661999 6.075876 3.185416 0.075515 0.115786 -4.053026 0.655842 4.527561 -0.793259 -7.270867 -1.551250 -6.155178 -0.517813 -1.588324 -0.613172 4.408262 -4.066904 -2.111387 0.046902 -1.956657 1.043023 -2.405119 -4.574018 2.543786 -3.004089 2.191518 0.968025 7.098000 5.103151 5.586994 1.471703 -1.798624 1.770381 -5.030876 -3.201488 3.430027 2.130688 1.473165 2.415616 4.601885 0.506331 2.061384 3.264346 -0.098640 2.563160 5.753230 0.730954 6.226987 -2.895935 2.097259 0.545512 -2.972676 3.666947 7.918155 -0.966146 -1.540848 1.722620 -0.404719 -3.360389 -2.726395 -0.233144 -1.269324 -3.189312 2.250644 4.407665 -0.383153 -3.858677 8.801589 1.866300 -9.354016 5.097016 -0.500789 1.301809 5.557325 -3.234682 2.271085 1.979779 1.031608 2.873518 2.894227 5.047634 -6.291436 -1.425026 -0.512717 4.718009 4.917019 -1.000987 -10.353081 3.894941 2.676202 6.663975 1.536581 6.480028 -4.721096 1.945816 -0.922495 -2.579354 -0.658119 -1.003208 3.837569 -1.110210 0.120707 -8.054796 0.754412 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.099722 0.337092 0.432659 -0.836920 -0.393084 0.275252 0.347644 0.299894 0.155206 1.043188 -0.128061 0.292665 -0.488158 1.160075 -0.445186 -0.262578 0.450969 -0.926128 -0.164369 0.084681 -0.291641 0.934813 0.024839 -0.450835 0.966355 -0.239493 -0.452552 0.458224 -0.452936 -0.468312 -0.214663 -0.061298 -0.430204 0.822695 -0.721787 0.132338 0.519996 0.864021 -1.043860 1.312474 -1.097075 -0.686477 0.669463 -0.097143 0.170422 -0.811772 -0.099368 0.037173 0.100668 -0.418464 0.125257 -0.471754 -0.446781 -0.147720 0.803131 0.689831 -1.610574 0.211008 0.086901 0.375237 -0.149392 -0.349423 0.213403 -0.327271 -0.396813 -0.793872 -0.219944 0.091492 -0.650049 0.011413 -0.250376 -0.338366 0.172991 0.376830 -0.173340 0.407638 0.073830 -0.995731 0.355662 -1.470861 -0.282581 -0.205798 0.556419 -0.396346 0.640950 0.149371 0.228020 -0.787287 0.238345 -0.402580 0.188095 -0.682937 0.638444 0.883011 0.118836 0.146202 0.238452 0.257225 0.639201 0.367350 0.848587 0.449305 0.685410 -0.293037 0.463072 0.448432 -0.862660 -0.529615 -0.198778 -0.536693 -0.023685 -0.245249 -0.647678 -0.067573 -0.154193 -0.081169 0.440444 -0.024366 -0.224985 0.610705 -1.353305 -0.280845 0.293561 -0.093064 0.115552 0.357099 -0.016208 -0.366328 0.196756 0.396919 -0.206444 0.288118 -0.360025 0.364004 -0.571945 -0.464902 -0.190956 -0.801489 -0.443906 -0.787119 -0.732106 -1.225741 -0.105942 0.107297 -0.098970 0.936752 1.582329 -0.190155 -0.597781 0.428770 0.207972 0.286957 0.759021 0.145202 0.621745 -0.559806 0.053752 -0.112559 0.107079 0.281653 0.868266 -0.143702 -0.094527 0.092629 0.111826 -0.735985 0.586249 0.054800 0.270398 -0.451180 -0.000587 -0.528964 -0.359238 0.816158 -0.718110 1.031593 -0.312336 1.057003 -0.682864 -0.574557 0.570913 -0.861252 0.236321 -1.015892 -0.678881 0.187466 0.138107 -0.565288 -0.320513 -0.410056 -0.074421 -0.013451 0.222856 -0.953036 0.218165 -0.529730 -0.017113 1.003704 0.439054 -0.315853 0.586025 -0.642529 0.574197 0.545405 -0.083571 -1.165486 0.340427 -0.354066 -0.169577 0.605751 -0.182705 -0.000386 -0.172021 -0.433759 0.476681 -0.465363 -0.338399 -0.040718 -0.830499 -0.184386 -0.648727 0.161960 0.300207 0.425792 0.589956 0.123075 -0.157531 -0.015236 -0.323078 -0.543078 -0.129256 0.310016 -0.248144 0.090073 0.528758 0.605232 0.480906 0.207764 0.298923 0.471330 -0.149895 0.767382 0.288279 0.604996 -0.050338 -0.113949 0.079113 -0.300050 0.566781 0.512290 -0.586434 0.088203 0.448553 0.365761 -0.092874 -0.078938 -0.180449 -0.563917 -0.530212 0.458968 -0.183530 -0.153868 0.166250 1.127618 0.022093 -0.934953 0.258315 -0.574766 0.351391 0.129048 0.232357 -0.015807 0.521342 -0.705989 0.280459 0.086138 0.573721 -0.329744 -0.327309 -0.025152 0.206893 0.673300 0.419724 -1.456352 -0.015424 0.000000 0.559665 0.533916 0.844913 0.177923 -0.266008 -0.318169 -0.343552 -0.558219 -0.197471 0.216273 -0.157971 0.114194 -1.219836 0.104963 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__dist(Point, Point) = 0.879337 -0.661392 0.577477 -1.321885 -0.281901 1.104535 -0.961022 -1.362121 0.342615 0.797323 0.670177 -0.472346 0.137340 1.165160 -0.437374 -1.286004 0.920895 1.671040 0.423313 -0.472633 -0.207282 -0.066905 -0.462974 -0.518396 -0.140220 -1.056990 0.696541 0.332007 0.166755 0.522640 -1.410833 -0.374552 -0.639880 2.202502 0.680351 0.535503 -0.244232 1.800331 0.685732 2.260921 -1.898231 -0.697885 0.693296 0.447168 0.236286 -0.888651 -1.184059 0.122433 -0.115697 -0.655627 0.390715 -1.442979 0.748937 -0.289536 0.058422 1.292380 -0.879077 -0.632239 0.197220 -0.792516 -0.772960 -0.175716 1.339855 0.892125 -1.789051 -1.132949 1.136883 1.739174 -0.575346 0.375802 -1.527515 -3.121687 1.381114 1.164277 -1.371660 -0.291034 0.251366 -1.724949 0.552535 0.792416 -1.460608 -0.584707 0.153184 -1.236802 1.024484 0.213422 2.401499 -2.633553 1.427153 -2.803146 1.056396 -1.084774 2.145235 1.595219 -0.877170 0.108776 1.080049 2.096108 0.453574 0.210667 1.613529 0.914772 -0.750708 -0.913681 1.972952 0.371753 -0.565967 -1.301940 -0.178245 -1.170276 -0.208920 -0.942878 -2.761439 0.209097 -2.004753 0.980045 -0.907686 0.818230 -0.415537 1.507112 -2.366139 -1.299456 0.215424 -0.540854 1.512613 1.455748 0.033661 0.786863 -0.021673 1.564596 -0.711737 -0.873950 -0.966257 0.806116 -1.100950 0.179589 -1.679059 0.364108 1.456308 -1.641089 -2.356937 -1.524437 -1.456161 1.630081 -0.268207 2.960630 2.768866 -0.832417 -1.300401 0.610520 -0.578402 -0.242749 2.663637 0.634512 2.902177 -2.547040 1.570133 -1.177491 0.990296 0.084335 -0.118668 -0.642912 -0.306721 1.440092 -0.545284 -0.342220 3.469880 -0.995341 -0.175301 -0.081428 0.234421 0.295186 -0.791824 1.873127 -1.990351 1.649373 -0.269305 2.718544 -1.756894 -1.174663 0.472042 -1.377274 -0.797312 -0.299249 0.507234 -1.031445 2.404962 -1.253297 -1.305114 0.140325 -1.282209 0.662982 1.422870 1.685482 -0.121169 -0.099864 -0.909520 2.568905 1.697657 0.511628 -0.146660 -1.149615 0.604580 1.483710 -0.951127 -0.357735 -0.406328 -1.536496 -0.125696 -1.290999 0.135915 1.215959 -2.151884 -0.939915 -0.979881 0.176263 1.013062 -0.049311 -2.636532 0.938985 -0.388516 -0.022920 0.491403 1.815338 1.775103 1.748443 0.823405 -1.459906 0.508640 -1.055368 -1.075736 0.589846 0.853227 1.236057 0.352967 1.307490 -0.212699 0.574121 0.871492 -0.015127 1.982027 1.204435 0.351665 1.974312 0.027054 0.561932 -0.052296 -1.621820 1.332973 3.200602 -0.656236 0.612687 0.649806 0.502000 -1.127453 -2.621427 0.040619 -0.154234 -1.045408 0.279192 0.944561 0.307105 -1.710046 2.745170 0.980269 -2.794871 1.185955 -0.086531 -0.001628 2.433697 -0.910674 0.928254 0.219418 -0.011901 0.988103 0.737928 1.331968 -1.744190 0.197883 -0.193491 0.710294 0.514631 -0.450512 -1.165690 1.549008 0.875804 2.474036 1.341956 1.340537 -1.204010 0.818660 0.058782 -1.350242 -0.327231 -0.215094 1.155371 -0.594943 -0.096976 -2.190538 -0.339198 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp____gnu_cxx::__enable_if<__is_integer::__value, double>::__type std::sqrt(int) = -0.014327 0.209649 0.027037 -0.170277 -0.316485 0.141143 -0.001839 0.020594 -0.062553 -0.140714 0.140017 0.076192 -0.105557 0.474967 -0.134368 -0.102194 -0.145361 -0.319865 -0.177290 -0.163268 -0.204885 0.265929 0.045424 -0.230606 0.280602 -0.105746 -0.194279 0.171359 -0.130742 -0.348769 -0.077888 -0.021339 -0.073147 0.380767 -0.185543 0.289844 0.259229 0.341907 -0.026945 0.183356 -0.442282 -0.249800 0.406428 -0.030507 0.101880 -0.524221 -0.266712 0.103482 -0.020223 -0.083629 0.068144 -0.186589 -0.235883 -0.048568 0.257738 0.250697 -0.450604 0.312837 0.128409 0.124569 -0.029049 0.000590 -0.008133 -0.225190 0.113386 -0.475784 -0.230112 0.211001 -0.176509 -0.007653 -0.209250 -0.197291 0.500598 0.176156 -0.116327 0.112780 -0.131965 -0.206303 0.053925 -0.595169 -0.135143 -0.097979 0.384571 0.190960 0.195023 0.031113 0.069330 -0.228978 -0.160898 -0.369733 -0.005923 -0.251635 0.312865 0.352611 -0.228423 0.007422 0.134255 -0.105526 0.286897 0.358773 0.370017 -0.026220 0.154422 -0.114228 -0.004130 0.021321 -0.280367 -0.176411 0.061037 -0.365008 -0.020739 0.108215 -0.490298 0.128466 -0.155450 0.081217 0.005104 0.200069 0.063885 0.152633 -0.424372 -0.157872 0.083589 -0.041611 0.189077 0.172292 0.048516 -0.097799 -0.047540 0.107460 0.000832 0.105022 -0.153888 0.181219 -0.099082 -0.484222 -0.300071 -0.278197 -0.083410 -0.369380 -0.317964 -0.326532 0.030915 0.028271 -0.191903 0.180444 0.659489 -0.199872 -0.260800 0.199899 0.404912 0.146479 0.362897 0.060945 0.306417 -0.260180 0.063861 0.064635 -0.057695 -0.002787 -0.076354 -0.155541 0.019181 -0.058136 0.140838 -0.413941 0.368384 0.061666 0.034026 0.310647 -0.052931 -0.153011 -0.127515 0.289203 0.300614 0.525747 -0.098755 0.525348 -0.353866 -0.285501 0.351184 -0.089208 0.101648 -0.181790 -0.191113 0.066027 0.032539 -0.264610 -0.157640 0.048124 -0.098783 -0.093742 0.186957 0.035035 0.081085 -0.148603 -0.046622 0.025405 0.297187 -0.189195 0.342726 -0.255717 0.288370 0.264145 0.033895 -0.468165 0.023223 -0.167421 -0.088846 0.350655 -0.104320 0.047619 0.028897 -0.004078 0.196697 -0.243380 -0.008062 0.000000 0.041104 -0.006680 -0.349402 -0.053387 0.079415 0.300359 0.407048 0.141953 -0.069612 0.091010 -0.113703 -0.214719 0.128695 0.053814 -0.143940 0.179716 0.319347 0.134212 0.225478 0.221491 0.176170 0.176984 0.013116 0.437343 0.204015 0.435751 -0.376856 0.104214 -0.000591 -0.082994 0.369034 0.455265 -0.215930 -0.036026 0.195711 0.118899 0.002843 -0.285005 -0.089123 -0.061076 -0.387935 0.259634 -0.002540 0.043214 -0.036539 0.534899 -0.029373 -0.185641 0.260049 -0.187279 0.141187 -0.033283 -0.001232 -0.029510 0.314948 -0.228453 -0.115852 0.066709 0.421442 -0.220482 -0.259871 -0.028235 0.285622 0.065872 0.191607 -0.294778 0.105779 0.112173 0.216925 0.052566 0.095090 -0.012158 -0.240956 0.044458 0.060264 -0.150699 0.003564 -0.043830 -0.153910 -0.036558 -0.336299 0.004184 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__cost(Point*, int, int, int) = 3.804290 2.306358 2.217310 -3.217420 -4.507242 2.690449 -3.347946 -2.670864 0.486797 3.385306 2.218619 -0.685427 1.319622 3.295875 -2.854651 -1.537244 -1.233927 -5.026554 -0.442644 -2.128205 -0.715463 1.230715 -1.308504 -0.221610 -0.266519 -1.070984 -0.356863 0.337725 0.414000 -2.295251 -3.430672 -0.380758 -1.420677 4.459155 1.212633 -3.832398 2.645942 6.043606 -1.499172 -2.227285 -3.028179 -3.863096 1.860597 0.171981 -0.422101 -0.915234 -1.459601 1.703156 0.534104 1.055114 2.813503 -1.799797 -0.369523 0.606028 0.599373 1.361275 -6.680947 3.345265 0.671708 1.259503 -1.665494 -1.407290 3.157195 1.427075 -0.086084 -2.690298 3.847977 4.066041 -1.162316 -0.653581 -1.389938 -5.955549 3.446828 1.329897 -0.680630 -0.425654 1.167802 -5.051591 3.420995 -2.612454 -4.683419 0.443519 0.552491 -4.015521 4.395960 -0.582059 2.007969 -5.545784 3.851698 -6.416542 0.251921 -2.413010 2.521765 3.512392 -4.030359 -0.946990 2.297800 5.302790 4.374520 -0.597491 5.281975 0.904028 0.872784 0.741563 2.001896 1.751144 -1.394971 0.917868 -2.374721 -4.549121 -0.840272 -0.171409 -5.850569 1.938179 -1.335929 -2.265706 -1.171630 -0.739406 -1.051630 5.259816 -5.640830 -4.893051 -0.164162 -0.434710 1.767585 3.454122 -1.673797 1.821856 -0.725173 4.076340 -1.805808 -0.273759 -0.818336 1.046595 -1.816768 -2.918452 -7.388651 1.916820 3.242203 -4.165531 -4.431784 -4.156115 -0.136044 -1.070670 -1.549068 7.806074 7.817269 -2.574246 -4.095557 4.420509 1.283709 -1.345921 7.897556 -0.212795 6.348991 -3.067235 0.303027 -1.476751 -0.768858 -2.040692 -5.833089 0.153223 2.072940 1.484601 1.928444 2.407724 5.472261 -0.306728 -2.373045 1.244413 1.982871 -1.288652 -3.311262 3.892285 3.611866 2.385130 4.962820 6.423645 -2.910923 -3.541193 2.447807 -0.489560 0.772105 -1.090326 -1.632398 -0.526317 3.785513 -0.798457 -1.533863 -0.407903 -1.202680 -1.841577 1.131868 6.296544 3.557033 1.131584 0.483905 0.824514 7.323129 0.918150 1.889711 -4.282307 1.427056 4.517813 -1.896881 -2.705864 -1.237173 -3.445724 0.504871 1.632423 -0.894831 2.805968 -3.220174 -2.713890 -0.685512 0.866045 2.798073 2.011855 -5.421426 2.032084 -4.469831 1.726706 1.116231 3.250004 3.979648 4.831387 4.211656 -1.745864 0.872798 -0.801650 2.113510 -1.402892 1.330823 3.474011 2.503890 4.625390 1.571473 2.269825 1.929444 2.603309 0.382271 4.196238 -0.430644 7.323124 -3.558805 1.850377 -3.753084 -0.745091 3.899223 8.567683 -1.892472 -0.275124 0.926611 2.292807 -1.076174 -5.482384 0.710734 -1.764704 1.647739 -2.579654 2.143140 0.106104 -1.969759 5.282039 0.893153 -5.201459 3.129205 -0.453714 1.160203 3.068820 -0.928560 -0.188759 0.574320 -3.676957 3.422653 4.157418 3.082287 -3.069270 0.150325 0.239688 5.161511 -5.497896 2.503409 -3.741286 5.585259 2.709831 2.022321 2.539939 1.802952 -4.215356 -3.057720 2.182900 -2.257886 -0.906349 3.562310 3.998131 -5.502818 3.493439 -2.179439 -2.504540 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 3.978155 1.268663 2.505616 -4.369532 -0.990649 2.117673 2.022933 -3.320675 0.281457 12.171390 2.479390 -2.084852 -2.790012 5.810560 -1.576477 -4.359939 3.872885 2.244086 0.190506 -2.330281 -2.124571 2.291361 -0.848330 -5.836217 4.315076 -3.724211 0.332447 4.218391 -2.163561 2.554050 -3.048956 -0.968265 0.108387 9.920174 -1.018370 0.635334 -0.636165 8.053992 -10.103468 9.957581 -9.330274 -8.757504 10.283184 1.536892 1.408521 -3.839615 -1.440159 2.072460 0.826358 -6.490046 0.220381 -4.263660 2.600465 -5.200064 0.809786 8.720352 -9.709973 -1.106742 1.051272 -4.964056 -7.216521 -1.299704 4.567656 1.573892 -6.743345 -7.255647 1.346152 3.227680 -2.471406 1.156257 -7.097127 -11.114251 4.355790 3.005479 -3.140057 1.783769 -1.431144 -7.817385 3.626761 -1.001795 -3.876299 -3.656629 3.784826 -2.159936 2.313850 4.877303 9.486212 -12.438652 2.182378 -9.965825 7.244601 -4.593266 9.960231 7.698921 -2.129654 3.229602 3.631764 6.569996 2.121063 0.048752 8.941818 3.051874 3.623187 -2.795041 4.877172 6.901615 -8.495730 -8.366387 -4.384370 -4.433153 2.067624 -2.328849 -8.457567 0.634626 -8.521803 -0.187229 2.600132 -2.561314 -1.992115 10.145774 -13.442428 -3.937556 3.112362 -1.923490 6.575544 5.341811 1.415062 0.401232 1.292691 6.126283 -1.258557 -2.187309 -3.363348 5.164578 -6.205189 -3.819385 -2.252864 -0.211053 2.552154 -10.008555 -8.860447 -11.923138 -2.295723 7.185929 -2.468326 7.874088 14.535013 -3.374013 -5.957429 3.528244 -2.205437 -0.949140 8.662406 2.316945 13.313925 -12.004242 6.452530 -2.083996 4.581274 4.680030 10.395847 -2.853880 -4.933637 4.858112 0.059852 -2.624635 9.040012 -2.102504 1.726397 -2.295223 1.919589 -0.444632 -1.379933 8.499638 -8.956481 8.271410 -4.806433 12.155525 -8.898833 -5.699624 4.156273 -9.279373 -4.929484 -6.779825 -1.766042 -0.789865 7.504265 -6.579923 -4.789254 -3.427458 -3.282685 1.547647 7.582168 -5.284342 0.110715 -3.109465 -5.056458 9.186094 3.628105 -0.744711 0.389548 -7.051419 1.826288 5.244255 -2.867224 -10.070467 -1.246623 -6.309436 -1.084136 -0.105280 -0.785707 5.549349 -5.568445 -3.052244 1.956308 -2.199995 -0.258399 -3.974862 -7.379685 3.245910 -2.561659 0.908415 2.469291 10.586167 7.693247 6.137371 -0.045527 -2.355764 1.155467 -6.236103 -7.004172 5.596483 0.373024 4.072102 4.253211 6.181798 0.313755 3.016028 4.890059 -0.424026 3.646354 7.766534 2.275936 8.374206 -1.886392 1.308367 2.513605 -6.018106 5.856679 9.429582 -2.879191 -3.646133 3.807235 -0.341193 -4.958349 -2.493950 -0.497693 -2.515679 -5.587216 4.535700 4.597491 -0.731318 -5.219454 14.245043 2.344795 -14.453457 6.800564 -0.866725 2.509526 7.519630 -4.085370 4.007706 3.924404 1.374629 3.565431 3.058952 8.079804 -8.950433 0.451440 -0.583976 5.313024 6.487129 -2.191700 -15.605310 2.752454 2.892516 9.473099 3.875143 10.310465 -4.434934 3.686414 -3.048964 -3.566563 -1.013599 -2.857838 4.418246 -2.358645 1.929513 -13.416270 3.596662 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.110868 -1.037000 0.911909 -1.182772 -1.110182 0.899712 -1.397230 -0.462189 0.547330 -1.938438 0.703632 -0.617370 -0.797012 1.306003 -0.060160 -1.993289 0.173700 0.930011 0.264707 -0.041507 -0.010321 0.039427 -0.365585 0.194092 -0.029204 -0.734488 0.050641 1.372444 2.288015 0.252515 -1.402342 -0.141627 -0.840282 1.941149 0.448116 0.351574 1.392439 3.111047 0.627196 1.642492 -0.321797 -0.531508 0.776472 0.149341 -1.246954 -0.067378 -1.841659 0.268127 -3.975258 0.739760 1.865651 -0.472097 0.364908 0.367229 1.112154 1.321110 -2.653353 1.037128 -0.070513 0.839959 0.586991 -0.842545 -0.882281 0.052481 -0.402720 -0.601924 0.943513 1.147927 -0.900126 -0.084909 -0.331204 -1.773235 3.818676 0.922343 -1.160872 0.237708 1.847775 -1.454751 0.851034 0.308931 -2.143267 -0.104504 -0.250347 -0.987374 3.126796 -0.684417 0.658962 -2.232937 0.233303 -2.713932 0.819789 -2.235037 1.035742 2.190747 -3.099169 0.412979 0.965773 1.242465 0.223179 0.082281 1.782409 0.593524 -0.874944 0.002927 1.642373 -0.449076 -0.206239 -0.539511 -0.806195 -1.321639 -0.997394 -1.361369 -4.058564 -0.121050 -0.750652 1.675785 -0.496954 1.000236 -0.673305 0.230865 -0.892119 0.515962 -0.191455 -0.419722 1.134303 1.730891 -0.858937 0.512385 -0.285164 2.308528 -0.907997 -0.029994 -1.234114 0.333923 0.381021 -0.670905 -2.835698 0.162964 1.284928 -0.571603 -2.440041 -0.813670 -0.920909 0.502635 0.166330 2.294651 2.987409 -0.443073 -0.968578 1.913069 -0.285091 1.853189 2.781639 0.516703 1.636201 -0.829422 0.199076 -1.650604 -0.384905 -1.149434 -2.286169 0.303257 0.139341 0.896556 0.366438 0.316321 3.159617 -0.817167 -0.986923 -1.154508 -0.243538 -1.051996 -1.814090 3.181943 0.013953 1.180698 0.962718 2.710502 -0.672582 -2.270322 0.771822 0.262435 0.513776 -1.168691 -0.619036 -0.055439 0.845701 -1.586520 -1.487790 -0.437048 0.398710 -0.202325 0.163023 3.856614 0.023477 0.287663 0.933732 1.044113 2.657788 0.570270 0.295201 -2.053700 0.533488 1.164724 -1.680233 -0.555220 1.031246 -0.305674 0.038268 0.061823 0.249262 0.158492 -1.869293 -1.520210 -1.299861 0.200773 1.568659 1.156847 -3.973578 0.600127 0.373728 -0.476606 1.871147 0.456813 2.750239 1.059004 1.581620 -0.203029 0.477338 0.462868 0.261039 -0.255429 0.735617 1.841549 0.181896 1.722707 0.660290 -0.121380 0.203574 1.873485 0.858556 0.937347 1.922178 2.689874 1.427968 -0.353863 -0.533243 -0.672600 1.491256 3.260328 -1.447864 1.824003 0.972534 2.134452 0.432658 -3.718368 -0.240990 -0.769654 -0.330769 0.804419 -1.192066 -0.330684 -0.405838 1.811723 0.278193 -1.995888 0.434824 0.228882 0.193944 0.832331 -0.099378 -0.624833 0.466609 -2.544886 2.201913 0.496117 0.732942 -0.623641 0.450083 -0.212136 0.324889 -0.137988 0.947122 0.617767 0.798350 0.598882 1.792885 2.238144 -0.014107 -0.477502 -1.274768 0.059083 -2.063501 -0.562968 -0.125317 0.561980 -1.257637 0.522727 -0.969427 -3.069159 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp___GLOBAL__sub_I_minimum_cost_polygon_triangulation.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__findCommon(int*, int*, int*, int, int, int) = 3.247812 1.019479 3.333174 -3.388408 -1.414592 1.530041 1.891573 -3.648521 0.751569 9.954776 2.508550 -1.792898 -2.323572 4.758880 -1.848311 -3.160213 2.671151 0.724554 0.426828 -1.860867 -0.200707 1.886727 -0.847563 -3.465954 2.181906 -2.086545 1.553678 3.160669 -1.225930 2.227813 -3.111937 -1.046097 0.389896 7.619282 0.078897 0.674018 -1.260068 6.832319 -7.849515 7.315282 -8.660331 -8.168105 7.385150 1.183512 1.179597 -4.582599 -1.052305 2.329780 0.028985 -5.345822 0.869984 -2.670815 2.702755 -4.181612 0.139859 5.757595 -8.261184 -0.460446 0.839377 -4.013649 -5.595421 -1.050918 4.434771 2.291590 -5.210245 -4.697752 2.090657 1.864116 -2.553610 1.660002 -4.503583 -8.894961 3.570731 1.503932 -3.317290 1.151734 -0.032588 -6.921664 4.002793 -1.413009 -3.614866 -2.535918 1.896837 -2.703495 2.113761 3.087270 7.166031 -10.479990 2.044410 -8.200674 6.309881 -3.912893 6.937829 5.744057 -3.196379 2.668261 2.972413 6.810762 2.552059 -1.030296 6.686513 3.943529 3.760613 -1.603050 4.318418 5.579540 -6.349323 -6.093875 -4.909721 -4.787983 1.759876 -2.844347 -8.282777 0.184475 -5.603048 -0.394809 1.877116 -3.100038 -1.148433 8.525508 -12.290091 -2.063350 2.429670 -1.134417 4.578545 4.904384 0.345946 1.300815 0.816216 5.981815 -1.944007 -1.225152 -1.599961 3.667924 -5.552514 -2.899648 -2.135827 1.004655 2.408033 -6.781132 -6.997509 -10.643650 -1.813221 5.422721 -1.462312 5.310366 10.978685 -2.409438 -6.318140 3.287835 -1.452835 -2.145213 6.713002 1.419529 9.832134 -8.897413 4.534104 -2.534097 3.265945 3.099801 8.952654 -1.315254 -3.602005 3.855737 -0.877596 -3.957064 6.261617 -1.590212 0.532434 -3.080032 1.622252 -1.911546 -0.848613 6.697701 -7.714427 6.202489 -4.853337 9.030904 -7.034952 -4.648709 2.219854 -9.667043 -3.504544 -5.123655 -1.793119 -0.470552 7.003591 -6.135216 -3.470128 -3.441262 -2.867732 0.940567 5.759205 -6.363523 0.046930 -1.622914 -2.837337 7.537834 3.177292 -0.199205 -0.300468 -5.222306 0.689910 4.566698 -1.304360 -8.370613 -1.184076 -6.224673 -0.702264 -0.466705 -0.652281 4.827833 -4.525589 -2.946398 1.045834 -2.130403 0.017750 -3.298908 -7.426629 2.354340 -1.964925 1.835010 1.761057 7.975495 6.148191 5.580552 1.043287 -1.979743 2.057340 -5.168384 -5.336978 3.766095 1.522317 2.049197 2.726154 5.532320 0.859860 1.925826 3.900860 0.906772 2.186771 6.547167 1.556464 6.913384 -2.207161 1.322134 1.542775 -3.636472 4.053083 7.818375 -1.067014 -1.519371 2.631663 0.111114 -3.812622 -2.088192 -0.452084 -2.365337 -2.889725 3.236875 4.241641 -1.307989 -3.872992 10.400811 1.903926 -11.491310 5.265790 -0.465735 2.008626 6.334125 -3.569301 2.592959 2.748444 0.337862 4.365126 2.425331 5.781699 -6.786015 -0.720549 -0.479669 4.977430 5.828126 -1.298065 -12.448228 2.841538 2.017258 7.867891 2.768859 8.641094 -4.539668 2.827735 -1.989131 -3.386711 -0.749826 -1.600804 4.506150 -1.143167 0.244067 -10.806852 1.563166 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.884814 0.318987 0.458213 -1.187302 -1.398738 0.532828 -0.998465 -0.633127 0.266126 -0.189024 0.777506 -1.036990 -0.489225 1.728889 -0.696909 -1.249454 -0.072010 -1.018455 -0.084973 -0.034356 -0.017383 0.437456 -0.302544 0.144039 -0.115560 0.061427 -0.302219 0.373611 1.744567 -0.788317 -1.750163 0.075679 -0.182633 1.608786 0.370661 -0.998793 1.051335 2.524551 0.024989 0.472839 -1.008640 -0.650777 0.533582 0.215004 -0.590868 -0.963025 -1.197372 0.718492 -1.737038 0.544441 1.427959 -0.285667 -0.396413 0.138888 0.634277 1.341513 -2.850470 2.075881 0.261638 1.347139 0.474610 -0.643419 0.273059 0.143837 0.235962 -0.783586 0.927147 0.886739 -1.187369 0.013593 -0.641284 -1.751025 2.366556 0.664968 -1.049293 0.052277 0.717031 -1.710841 1.052124 -1.674888 -1.623634 0.366337 0.174404 -0.262338 2.202850 -0.339129 0.059262 -2.148223 0.365584 -2.341453 0.390893 -1.871485 0.849030 1.807711 -2.143680 -0.130579 0.313124 0.587264 1.418816 0.429095 1.763619 0.603880 0.086197 -0.206571 0.690019 0.405912 -0.111812 0.155068 -0.364942 -1.465168 -0.991967 0.087568 -3.068287 0.331706 -0.694635 0.724988 -0.042772 0.210765 -0.401973 0.446328 -1.331688 -1.533326 -0.341008 -0.223822 1.240407 2.020731 -0.726133 0.683836 -0.844391 1.982432 -0.051274 0.199314 -0.629081 0.141513 -0.444286 -1.985356 -2.828876 0.402317 1.163689 -0.868434 -2.017681 -1.510851 -0.186011 -0.823784 -0.389616 2.198267 2.522258 -0.425762 -1.200673 1.992809 0.190799 0.905236 2.834045 -0.265628 2.344564 -1.122586 0.523945 -0.307319 -0.121849 -1.276345 -2.030388 0.099359 0.060621 -0.062322 0.326683 -0.338901 1.123999 0.124142 -0.825679 -0.465173 -0.081805 -0.713183 -1.576162 2.325870 0.411539 0.992820 0.969033 2.352255 -0.777710 -1.955655 1.151118 0.201893 0.609348 -0.488724 -0.789319 0.129749 1.164148 -1.164655 -0.760763 0.092096 0.252534 -0.811417 0.306143 2.503456 0.310782 0.255447 0.780765 0.759865 2.319014 -0.015061 1.071953 -1.921787 0.393534 1.309453 -1.061466 -1.455553 0.614045 -0.990756 0.092229 0.735253 -0.335038 0.200278 -1.180239 -1.631056 -0.442790 0.024585 1.689183 0.636151 -1.782022 0.624093 -1.043745 0.094163 0.935540 0.963728 1.648373 1.196340 1.392056 -0.647034 0.517936 -0.024065 0.805558 -0.321876 0.504199 0.899346 0.542780 1.363679 0.442315 0.007713 0.517122 1.079532 -0.451739 1.172815 1.034337 2.398677 -0.086597 0.060224 -0.796132 -0.984623 1.307546 3.295450 -1.618006 0.370154 0.657600 1.238545 0.259314 -2.334432 -0.280298 -0.787991 -0.551185 0.063030 -0.618501 -0.275678 -0.275889 1.696364 0.061947 -1.753125 0.961954 0.088848 0.187257 0.556320 -0.199987 -0.459418 0.484728 -2.208010 1.274853 0.935517 0.990637 -0.350494 -0.501508 -0.232290 1.094433 -0.949498 0.724114 -0.460333 1.163567 1.397013 1.509213 1.715847 0.059427 -0.803640 -1.442839 0.315382 -0.802847 -0.479289 0.050256 1.121861 -1.636594 0.472327 -0.191640 -1.863253 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp___GLOBAL__sub_I_find_common_elements_three_sorted_arrays.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 3.145079 1.257114 2.817417 -3.139743 -2.178410 1.715136 0.122684 -4.219247 0.523057 8.403499 2.795335 -2.519474 -1.514086 4.894671 -2.554859 -2.894918 1.885742 1.752567 0.357883 -2.152210 -0.170750 1.542008 -1.017432 -2.799461 1.246500 -1.840273 1.578115 2.164486 -0.078495 1.779765 -3.404273 -0.911468 0.563593 7.072272 0.789097 0.187288 -1.068731 6.075645 -5.612137 5.964990 -8.449468 -6.601235 5.901041 1.390438 1.528504 -4.892134 -2.093199 2.267478 -0.374218 -4.017692 0.762774 -2.926556 2.257111 -3.227124 0.026454 5.176516 -7.317701 0.691773 1.091392 -3.589413 -4.622374 -0.571985 4.549725 2.401683 -4.324557 -4.372658 1.985772 3.072843 -2.275680 1.440109 -4.340694 -8.855225 3.513307 0.971721 -3.695553 0.460352 -0.416511 -6.196018 3.569235 -1.702897 -3.661730 -1.949693 1.998226 -2.149365 1.712673 2.944699 6.486032 -9.727300 2.053591 -8.181789 5.395457 -3.389507 6.456137 4.988437 -3.671271 1.617113 2.793721 5.453216 3.482687 0.312417 6.015914 3.409376 2.654907 -1.838274 3.952093 4.872082 -4.697569 -4.889226 -3.719510 -4.981708 1.024588 -1.859598 -8.263797 0.371265 -5.549592 0.511459 0.525722 -2.349708 -0.543123 7.465561 -10.669502 -3.112646 1.863316 -1.011862 4.579602 5.046923 0.292522 1.971973 0.227349 5.424089 -1.804012 -1.643307 -1.374309 3.223117 -4.962547 -4.196256 -3.832381 1.597015 2.852603 -6.142397 -6.547769 -9.372738 -1.848933 4.130842 -1.559677 5.104815 9.958342 -2.541748 -6.080727 3.118884 -1.051946 -2.375602 7.517862 1.141132 10.287119 -8.468449 4.433887 -2.165160 2.578113 2.230956 6.026084 -1.562951 -3.117510 3.350451 -0.699161 -4.508654 5.992842 -1.457652 -0.032323 -2.351789 1.763399 -0.977461 -0.832441 5.883689 -6.482059 5.501973 -4.057867 8.546432 -6.688804 -4.862635 2.069476 -8.045746 -3.048901 -2.709376 -1.091408 -0.776925 7.289249 -5.454285 -3.052856 -2.129729 -2.980928 0.610473 5.359388 -3.447446 0.083982 -0.935913 -2.715767 6.667430 3.581180 -0.045689 0.341261 -4.637360 0.682998 4.818041 -1.053578 -7.959343 -1.289048 -6.515819 -0.511436 -1.078178 -0.760760 4.575643 -4.279626 -2.741962 0.137382 -2.094164 1.373148 -2.523359 -5.389806 2.699208 -3.100247 1.870523 1.219396 7.480563 5.557247 5.800871 1.565785 -2.110968 2.010457 -5.192914 -3.218493 3.389367 2.200255 1.656786 2.514208 4.974517 0.563320 1.984526 3.414815 0.169285 2.351951 6.151956 1.068768 6.728385 -2.985857 2.087244 0.573924 -3.577876 4.013242 8.578314 -1.441496 -1.578044 1.982451 0.009364 -3.228301 -3.322617 -0.352885 -1.702454 -3.351933 2.631577 4.290418 -0.577528 -4.078985 9.492501 1.991142 -10.106100 5.560335 -0.541891 1.339927 5.732793 -3.377063 2.045642 2.219153 0.347271 3.243485 2.912668 5.489686 -6.377394 -1.592055 -0.645188 5.030295 4.791062 -1.050983 -10.986296 3.644558 2.961254 7.356338 2.356670 6.994319 -4.795034 1.751132 -1.183608 -2.901981 -0.831562 -1.299609 4.201153 -1.513281 0.165919 -8.481339 0.705994 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.681921 0.213366 0.322589 -1.047061 -0.990862 0.297502 -0.392499 -0.431116 0.188664 -0.140071 0.659612 -0.863232 -0.402100 1.509989 -0.425639 -0.905891 0.125108 -0.940310 -0.141852 0.209070 -0.010419 0.440931 -0.224929 0.000289 0.049687 0.174949 -0.293035 0.416985 1.238949 -0.723792 -1.397776 0.051847 -0.086020 1.322028 0.217578 -0.776788 0.735700 2.043724 -0.332063 0.688358 -0.856848 -0.407776 0.641164 0.108527 -0.553188 -1.056778 -1.066022 0.635764 -1.108690 0.115512 1.086151 -0.186870 -0.294579 -0.080929 0.462764 1.288536 -2.271083 1.466690 0.351573 1.088449 0.339772 -0.526773 0.206024 0.010228 -0.041737 -0.703807 0.663236 0.375209 -0.932826 -0.009127 -0.622680 -1.419809 1.904386 0.567466 -0.796318 0.129773 0.427876 -1.569590 0.881578 -1.292008 -1.205281 0.239254 0.112147 -0.160802 1.748334 -0.369945 0.057448 -1.776710 0.163208 -1.866901 0.315307 -1.640933 0.688699 1.540813 -1.603300 0.003907 0.145268 0.452595 1.022051 0.418170 1.417090 0.568025 0.192578 -0.246285 0.658976 0.437068 -0.229212 -0.069731 -0.346947 -1.121657 -0.654396 0.069169 -2.490848 0.324508 -0.584251 0.400097 0.063965 0.126561 -0.288581 0.506147 -0.929568 -0.960866 -0.141413 -0.207782 0.883326 1.790134 -0.528147 0.363609 -0.802360 1.523068 0.083926 0.373022 -0.519230 0.197213 -0.516748 -1.677069 -1.853903 0.170752 0.800052 -0.756108 -1.631600 -1.408293 -0.069416 -0.639705 -0.401250 1.558297 2.020463 -0.355359 -0.969429 1.596945 0.456939 0.735815 1.998066 -0.239184 1.959389 -0.961860 0.448511 -0.176417 -0.062047 -0.933887 -1.232208 0.019143 -0.126434 -0.075788 0.062969 -0.857515 1.253219 0.220706 -0.533569 -0.073343 -0.114405 -0.616317 -1.422831 1.989729 0.309319 0.923657 0.588559 1.895124 -0.573227 -1.418239 0.986887 0.268631 0.471631 -0.695469 -0.696141 0.217244 0.905932 -0.881626 -0.629046 0.017860 0.217059 -0.652657 0.380052 1.510208 0.173431 0.100094 0.562449 0.471559 1.681602 -0.191357 0.911074 -1.555153 0.370471 1.009656 -0.801685 -1.331802 0.494400 -0.785376 0.005586 0.536323 -0.273181 0.182892 -0.967506 -1.325573 -0.082301 -0.007138 1.125886 0.362877 -1.552612 0.438638 -0.794239 0.084642 0.748609 0.902620 1.310396 0.908168 0.926638 -0.489054 0.328406 0.028677 0.167693 -0.222616 0.178835 0.676615 0.494709 1.055604 0.396357 0.012446 0.476268 0.766525 -0.339902 0.990044 1.003516 1.830789 0.192836 -0.156169 -0.386283 -0.860955 1.095874 2.500290 -1.104298 0.150097 0.574811 0.918209 0.003644 -1.699517 -0.263306 -0.599362 -0.621744 0.285776 -0.581033 -0.238060 -0.167151 1.489775 -0.056220 -1.565934 0.688989 0.084413 0.280448 0.480919 -0.108906 -0.120189 0.488529 -1.599315 1.035743 0.671144 0.869417 -0.277749 -0.522107 -0.150753 0.760762 -0.484418 0.539958 -0.719980 0.856579 1.002001 1.311646 1.268223 0.233297 -0.559357 -0.864226 0.166972 -0.481442 -0.318620 -0.137433 0.890508 -1.271369 0.187768 -0.495892 -1.201482 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp___GLOBAL__sub_I_Find_the_closest_pair_from_two_sorted_arrays.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/anagram-substring-search-search-permutations.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__compare(char*, char*) = 0.959880 0.369651 1.022496 -0.930575 -0.259704 0.190916 1.404237 -0.673622 0.105246 3.013826 0.672185 -0.618906 -1.306840 1.475583 -0.136032 -0.947700 1.060541 -0.501033 -0.034215 -0.107007 -0.457490 0.668648 -0.223850 -0.957469 1.149449 -0.196456 0.044496 1.286813 -0.461478 0.067502 -0.883287 -0.200093 0.097011 2.408632 -0.260802 -0.043707 -0.112675 2.541699 -2.947293 2.555944 -2.270473 -2.235797 2.574149 0.154907 0.066187 -1.136908 0.030684 1.195831 -0.365118 -1.993584 0.576712 -0.466857 0.507750 -1.555454 0.172916 2.344825 -3.191341 0.185980 0.504516 -0.778791 -1.710712 -0.414625 0.946800 0.126926 -1.297187 -1.624327 0.426889 -0.299966 -1.000885 0.386244 -1.574676 -2.392266 1.157302 0.529391 -0.810801 0.736810 -0.026765 -1.812425 1.325186 -0.887373 -1.116990 -0.838162 0.564912 -0.852037 1.170049 0.840400 1.551230 -3.268034 0.331580 -2.475467 1.882148 -1.665217 2.016681 2.246945 -0.700097 1.178039 0.674091 1.265421 0.258270 -0.350835 2.203373 0.787478 1.252360 -0.215975 1.082514 1.658482 -2.400899 -1.987353 -1.758923 -1.321260 0.615014 -0.473895 -1.772876 0.191106 -1.681489 0.218562 1.299199 -0.774437 -0.516975 2.163964 -3.357668 -0.132394 0.793595 -0.428204 1.616791 1.942694 0.048695 0.031366 -0.064652 1.931867 -0.369221 0.170299 -0.662793 1.214207 -1.062011 -1.061799 -0.283437 -0.134242 0.610010 -1.941112 -2.225979 -3.466124 -0.220399 1.162889 -0.725028 1.721768 3.607539 -0.762704 -1.536423 1.440123 -0.466315 0.262565 1.574817 0.339865 2.943310 -2.583168 1.125300 -0.492176 0.863222 0.922117 2.854582 -0.291467 -1.319514 0.982355 0.013770 -0.888221 1.870019 0.030904 0.167398 -0.405148 0.334490 -0.611418 -0.829709 2.380508 -1.772422 1.865031 -1.044511 3.025393 -1.731246 -1.372594 1.043359 -2.044145 -0.675778 -2.249185 -1.166473 0.175874 1.499272 -1.882146 -1.130699 -1.268588 -0.384971 -0.043412 1.691599 -1.855162 0.014875 -0.611517 -0.660035 1.968035 0.852467 -0.424522 0.088606 -2.192009 0.248671 0.846674 -0.594148 -2.603233 0.014866 -1.468268 -0.355557 0.803580 -0.260306 1.258014 -1.322506 -1.027486 0.977760 -0.544666 -0.221108 -0.964815 -2.412437 0.470025 -0.226186 0.185467 1.105293 2.487251 1.896540 1.495184 0.150924 -0.203404 0.261677 -0.852377 -2.101924 0.843471 -0.278919 1.224288 1.049065 1.073351 0.577666 0.442491 1.008238 0.085044 0.134831 2.140283 1.012359 2.124082 -0.306620 -0.078123 0.904790 -1.158163 1.305074 1.699473 -1.081181 -0.738378 1.106979 0.138848 -1.137484 -0.254570 -0.210778 -1.016713 -0.909240 1.179598 0.738095 -0.583649 -0.832310 3.297660 -0.015509 -3.748169 1.487473 -0.058122 0.893145 1.622997 -0.557001 0.958390 1.025851 -0.369370 1.324178 0.705928 1.962279 -1.893489 0.174375 -0.076512 1.376970 1.492008 -0.184021 -4.357759 -0.017156 0.305443 2.245287 1.045143 2.545660 -1.032768 0.733356 -0.676236 -1.002024 -0.141576 -0.697799 1.448191 -0.212918 0.097454 -3.544139 0.747342 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 2.733879 1.051203 3.224604 -2.879577 -2.016909 2.098126 -1.109549 -3.990821 0.433618 7.460505 2.391597 -2.520989 -2.184700 4.549465 -2.594896 -3.744402 1.511413 2.303448 0.496924 -3.375553 -0.438127 0.935679 -0.986889 -2.503336 1.094090 -2.543447 1.808987 2.194185 0.745903 1.949614 -3.043849 -0.848998 0.375325 7.399536 0.926534 0.641284 -0.688396 6.668166 -3.846873 5.549589 -8.004684 -7.227343 5.681172 1.569892 1.198702 -3.535080 -1.734733 2.244636 -2.911348 -2.542964 1.006507 -2.888115 1.798415 -2.964047 0.107648 5.013429 -8.049143 1.734658 0.429693 -3.554350 -4.741642 -0.896183 4.301762 1.957084 -3.082015 -3.950573 2.148529 3.789986 -2.917775 1.717138 -4.132618 -8.412482 3.567350 1.302064 -3.440654 0.580218 0.267108 -4.721260 3.189372 -1.569978 -4.062095 -2.188208 2.214286 -2.506327 2.504274 3.502951 6.020156 -9.806804 2.078432 -8.443368 5.442465 -3.391718 6.708409 5.169278 -4.269859 1.998229 3.099718 4.693014 2.670670 -0.280394 6.160181 2.510518 1.904836 -1.227304 4.088348 4.126054 -4.397272 -4.494726 -3.475073 -5.013978 0.377913 -2.210976 -7.527728 -0.035110 -6.050885 1.085409 0.359830 -1.509871 -1.288927 5.518277 -10.936069 -3.889933 1.395526 -1.164734 5.501599 4.408616 0.153781 2.486604 0.644404 5.944549 -2.192578 -2.197791 -1.902767 2.995212 -3.063112 -3.900094 -5.417762 1.656416 3.359390 -5.671429 -7.101350 -8.623319 -2.585685 3.991889 -1.247132 6.350631 10.343781 -2.203867 -5.896979 3.510136 -2.375795 -0.686272 8.632011 1.593968 9.943016 -8.249436 4.346534 -2.252788 2.492698 2.209952 3.716590 -1.557503 -2.546104 3.691573 0.229689 -1.016738 4.635968 -2.387649 -0.412238 -3.888032 1.775982 -1.247347 -0.996849 6.044008 -5.906179 5.330797 -3.075548 8.875015 -6.919549 -5.956325 2.050033 -8.556691 -2.932768 -2.094735 -1.022078 -1.871949 7.120454 -6.038903 -3.694997 -2.229550 -2.395098 0.665571 4.749256 -0.987607 0.153052 -0.784331 -2.154409 6.866042 4.182488 0.265239 0.262180 -5.327468 0.188763 5.163464 -0.830913 -7.192788 -0.457320 -5.901874 -0.511843 -0.354262 -0.468463 4.090896 -4.321828 -2.654934 -0.665413 -1.914730 2.243433 -1.928867 -5.851665 2.919402 -2.668729 0.922124 2.000430 7.218548 6.163212 5.399384 1.874242 -1.976865 2.241222 -5.036774 -1.731894 2.834445 2.625823 2.775473 2.309212 4.417992 0.709037 1.786790 3.273679 0.865040 1.700251 5.820299 1.335639 7.285246 -3.028008 2.499378 0.009600 -3.544211 3.844965 9.065317 -2.321648 -1.053038 2.551199 0.582712 -1.996299 -5.039645 -0.647098 -2.047971 -2.795698 2.434177 4.023791 -1.022917 -3.963644 9.468429 2.096126 -9.883900 6.019169 -0.281605 0.856370 5.115360 -3.529126 0.779715 2.566885 -1.109795 3.126902 2.951082 5.351549 -6.432879 -0.124258 -0.952329 5.464639 3.893554 -0.988291 -9.384216 3.584260 3.078364 7.025369 3.475307 6.080844 -4.505936 0.332664 -1.344408 -3.920321 -1.220773 -0.554815 4.302075 -1.203344 0.669845 -7.433685 -0.715186 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/anagram-substring-search-search-permutations.cpp___GLOBAL__sub_I_anagram_substring_search_search_permutations.cpp = 0.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp____cxx_global_var_init = 0.093169 0.190116 0.130284 0.001728 -0.135749 -0.047856 -0.184454 -0.035896 -0.017699 -0.077406 -0.046248 -0.174136 -0.259604 0.100177 -0.235776 -0.298262 -0.237905 -0.027877 -0.175412 -0.273647 -0.010281 -0.039404 0.064589 -0.050168 0.022043 -0.085522 0.046735 0.003391 0.218259 -0.200854 0.030738 0.053749 0.237024 0.170622 -0.092166 0.117015 0.041357 0.165680 0.442108 -0.099178 -0.284365 -0.320338 0.130810 0.023865 0.065111 -0.209280 0.022214 0.134314 -0.421443 0.232297 -0.098012 0.109030 -0.319396 -0.167991 0.003805 0.156221 -0.453294 0.572110 -0.083114 -0.054498 -0.126900 0.023191 -0.000330 -0.093023 0.413323 -0.122098 -0.058277 0.281857 -0.384637 0.262657 0.066174 -0.017520 0.450539 -0.078054 -0.052343 0.134487 0.061763 0.276758 0.077733 -0.439648 0.006451 -0.057072 0.334166 0.328753 0.081353 0.239185 -0.151714 -0.233752 -0.066601 -0.110478 0.193194 -0.141761 0.103690 0.018832 -0.198900 0.185721 -0.004134 -0.388870 0.081122 0.207867 0.171297 -0.101123 0.185133 0.033967 -0.086467 -0.114214 0.070746 -0.039954 0.023746 -0.230426 -0.137524 0.137726 -0.319509 -0.049138 -0.086398 0.393419 0.079027 0.058764 0.127022 -0.281547 -0.438685 -0.323400 0.071387 -0.004472 0.240816 0.016658 -0.043936 0.107285 -0.024725 0.186357 0.063593 -0.138990 0.070068 -0.016111 0.267356 -0.505906 -0.462048 0.008245 0.038205 0.013431 -0.143265 0.005100 -0.086748 0.062185 -0.048793 0.154231 0.286423 0.092999 -0.205565 0.146411 -0.029046 0.215279 0.343185 0.080301 0.331233 -0.165716 0.056865 0.139187 0.061830 0.209056 -0.443405 -0.060063 -0.155812 0.045515 0.237418 0.075944 -0.314350 -0.188418 0.029507 -0.062925 -0.045029 -0.086519 -0.001473 0.067922 0.305325 0.373919 0.000599 0.276973 -0.264633 -0.410218 0.023137 -0.163991 0.003450 0.235684 0.043593 -0.134951 0.122879 -0.348878 -0.101928 0.076105 -0.110958 -0.024496 0.123851 0.322605 0.028369 -0.075860 0.030301 0.175853 0.103074 -0.127560 0.105626 -0.330526 -0.063168 0.103619 0.173722 -0.308133 0.138866 -0.034088 0.008003 0.238774 -0.052788 -0.078608 0.208911 -0.009505 -0.062614 -0.199322 0.145972 -0.132058 0.463315 -0.065272 -0.149082 0.024766 -0.053888 0.168188 0.364732 -0.027545 0.004657 0.039276 0.119933 -0.249256 0.454345 -0.021835 0.059214 0.104212 0.054517 0.017283 -0.016454 -0.048998 0.208572 0.140599 -0.277340 0.173298 0.052896 0.307910 -0.479065 0.109144 -0.142764 -0.041604 0.125295 0.339410 -0.441081 -0.059797 0.123401 0.173424 0.273519 -0.244829 -0.227587 -0.070520 -0.176548 0.257346 0.066902 -0.145137 0.088092 0.149544 0.097084 -0.087049 0.295613 0.019627 -0.106302 -0.210926 -0.156022 -0.289763 0.274636 -0.184438 -0.357003 0.000668 0.127226 -0.224811 -0.111569 -0.071169 0.312998 -0.250765 0.054370 0.045378 -0.078141 0.310548 0.172514 0.065747 -0.171956 -0.096921 -0.413136 -0.001335 0.038045 -0.138867 0.146270 -0.008330 -0.119878 -0.007861 0.216250 -0.265229 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__maxProfit(int*, int) = 4.784403 1.258529 5.298036 -4.540269 -3.166506 2.494139 1.210692 -5.904746 1.071728 14.181776 3.988248 -3.754318 -1.683727 7.187215 -3.331270 -3.560786 3.404935 2.809299 0.820722 -3.153651 -0.712587 2.391560 -1.625722 -4.140962 2.450626 -3.022735 2.483279 3.912424 -2.363743 3.284788 -4.181211 -1.636719 0.405639 11.103641 0.875356 0.496762 -1.886615 9.738481 -9.587642 10.460066 -12.347782 -10.416486 9.536079 1.976835 2.997889 -5.793625 -2.708109 3.987888 0.533927 -7.511567 0.997734 -4.046241 3.996036 -5.511021 -0.307908 7.363817 -10.909354 -1.056207 1.680441 -6.873318 -8.434094 -0.430408 6.629648 3.964695 -8.179316 -6.888739 2.916490 4.280012 -2.642824 2.171239 -6.337089 -13.461960 4.184038 1.558683 -4.961844 1.209831 0.119164 -8.962075 5.896147 -1.485158 -5.919599 -3.567515 2.204994 -5.979760 2.822351 4.354371 11.216379 -14.780124 4.704095 -12.622891 8.643653 -5.268023 9.547718 8.235065 -4.342721 3.458300 4.727171 9.872251 4.564986 0.295469 9.258743 5.623865 4.026953 -1.847261 6.766270 7.790845 -8.250130 -8.271450 -6.980640 -7.608192 2.380589 -3.747887 -10.825510 0.802785 -7.872700 0.936130 1.318011 -3.135930 -1.009083 12.764405 -16.745635 -2.896236 3.609658 -1.667568 5.965297 7.111805 0.403824 2.136210 0.629860 8.270317 -3.514819 -2.479328 -1.480563 5.444966 -7.953957 -3.865074 -4.328185 2.365898 3.998601 -9.356592 -9.960033 -14.964316 -2.855564 7.964329 -2.695924 8.841436 15.905464 -4.028723 -8.786550 4.524782 -1.587033 -4.386612 10.221563 2.327390 15.092930 -12.674916 5.807279 -4.316085 3.716211 4.179149 11.300599 -1.899684 -4.728998 6.346941 -1.032805 -6.324428 11.814440 -2.343491 0.311529 -3.039500 3.157207 -1.284205 -1.295370 9.085428 -10.448987 8.468846 -6.191363 13.537865 -9.427099 -6.568235 3.072798 -12.518491 -4.756637 -5.356996 -1.327864 -1.368472 10.858578 -7.971210 -5.032425 -3.799006 -5.508776 1.180118 8.347716 -6.092017 0.538675 -1.228515 -4.658734 10.647272 4.830244 0.302715 -0.418624 -7.538282 1.092757 6.216445 -1.973470 -10.938547 -2.448630 -9.400799 -0.843616 -2.139278 -0.632059 7.521780 -7.473001 -3.597810 0.609274 -2.794147 0.601062 -4.130612 -9.837087 3.909251 -3.327269 3.593665 2.415440 11.549692 9.006532 9.150405 2.071145 -2.397757 2.001053 -7.250946 -6.710845 5.311974 2.921370 3.007304 3.743140 7.613769 1.117159 3.454239 5.151507 0.031741 4.395309 9.610442 1.090225 10.009691 -4.385899 2.843702 1.717053 -4.652762 6.206895 11.833849 -1.760659 -2.504552 3.207767 -0.361088 -6.262912 -3.895480 -0.031350 -2.530537 -3.870658 3.292651 7.128213 -0.846314 -6.122066 14.298180 3.081408 -16.446215 7.932546 -0.940455 2.481006 9.839817 -4.672800 4.463716 3.102553 1.458861 5.735369 4.579976 7.962739 -10.728163 -1.506449 -0.420052 7.424983 7.888964 -1.123729 -18.252687 5.082557 3.027727 10.417694 2.679711 11.934155 -7.806761 3.506496 -1.517382 -5.473344 -1.633462 -1.470460 6.195309 -1.658158 0.988221 -14.699291 1.683745 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__int const& std::max(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +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.059808 0.037271 0.039943 -0.054272 -0.047431 -0.068442 0.048141 0.020675 -0.073312 -0.094730 -0.077593 -0.029265 -0.190844 0.107670 -0.067180 -0.188079 -0.097205 -0.139166 -0.114865 -0.031509 -0.048654 0.085368 0.022785 -0.013355 0.128909 -0.006892 -0.065610 0.018939 0.034834 -0.251121 0.080345 -0.022597 0.094641 0.125284 -0.083565 0.134255 -0.012275 0.224788 0.270130 0.071365 -0.181218 -0.204181 0.146789 -0.073109 0.013472 -0.194353 0.033764 0.117718 -0.129318 0.050261 -0.071561 0.102700 -0.250471 -0.154131 0.009910 0.104936 -0.304393 0.300937 0.027024 -0.024951 -0.093789 -0.020056 -0.096950 -0.206133 0.193817 -0.101837 -0.094555 0.053088 -0.253428 0.142499 0.054195 0.074547 0.308639 0.028587 0.009824 0.155191 0.011823 0.169392 0.058145 -0.310606 -0.034010 -0.088750 0.164683 0.203885 0.099746 0.117734 -0.091015 -0.186940 0.021843 -0.098283 0.078008 -0.145530 0.056915 0.119528 -0.054853 0.226832 0.027628 -0.228669 -0.021585 0.139379 0.151225 -0.054695 0.069595 0.129044 -0.046121 -0.085352 -0.001514 -0.057035 -0.007301 -0.105960 -0.012648 0.087904 -0.168977 0.011676 0.010773 0.250092 0.073575 0.130641 0.091563 -0.207487 -0.302517 -0.094933 0.103707 -0.029920 0.098997 0.015171 -0.005443 -0.068313 -0.132189 0.109960 -0.000424 0.066503 0.013701 0.063456 0.177764 -0.263782 -0.129945 -0.125113 -0.070455 -0.023567 -0.092703 -0.042112 -0.032034 0.074341 -0.099766 0.109104 0.239793 -0.035588 -0.102545 0.189768 0.062233 0.210855 0.059136 0.072663 0.103294 0.004003 -0.102543 0.121600 -0.020584 0.155466 -0.295272 0.009813 -0.144503 0.031212 0.100446 -0.055914 -0.021261 -0.096262 -0.017410 0.046233 -0.067893 -0.117121 -0.079261 0.063976 0.229758 0.299053 -0.004656 0.180684 -0.054549 -0.147222 0.022229 -0.088861 0.011866 -0.020832 0.028372 -0.087192 -0.039098 -0.241561 -0.089321 0.058973 -0.070230 -0.095950 0.085177 0.083751 0.021413 -0.023895 0.058046 0.096963 0.044645 -0.129584 0.039250 -0.221238 0.017702 -0.015668 0.109991 -0.188678 0.103244 0.079905 -0.041157 0.227210 -0.017937 -0.066157 0.160269 0.034739 0.056072 -0.079314 0.011213 -0.057316 0.288334 -0.115685 -0.003860 0.011726 0.000000 0.108012 0.235260 -0.027041 -0.062926 0.120236 0.015326 -0.036787 0.140207 -0.051565 -0.073524 0.125141 0.076408 -0.041311 0.124845 0.013725 0.168561 0.118388 -0.126904 0.152371 0.085677 0.254511 -0.228856 -0.095843 0.014447 0.046253 0.125136 0.102387 -0.277237 0.010085 0.131913 0.071009 0.099815 -0.052906 -0.085529 -0.037230 -0.150032 0.207224 0.001187 -0.069015 0.097240 0.136741 -0.054045 -0.127692 0.173726 0.062135 0.052522 -0.175002 0.051918 -0.087375 0.241391 -0.117530 -0.208700 0.021031 0.113321 -0.153632 -0.056923 -0.014171 0.150903 -0.108039 0.141533 0.025040 -0.106169 0.122149 0.100299 -0.039075 -0.140513 0.025601 -0.238535 0.025041 0.066978 -0.079878 0.113156 -0.043233 0.014108 -0.082327 0.039955 -0.103113 diff --git a/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt new file mode 100644 index 00000000..2dba7882 --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm14_onDemand/ir2vec.txt @@ -0,0 +1,269 @@ +PE-benchmarks/subset-sum.cpp__main = 0.515901 0.260879 0.279822 -0.747753 -0.689829 0.151293 -0.280249 -0.401891 0.106686 0.043730 0.471760 -0.726864 -0.334404 1.137643 -0.455553 -0.684754 0.026099 -0.584014 -0.183040 -0.020958 0.024623 0.293561 -0.113869 -0.181625 0.056330 0.047785 -0.102652 0.318563 0.838784 -0.491333 -0.894858 0.037455 0.145203 1.029356 0.136912 -0.439308 0.387866 1.370128 -0.210652 0.533853 -0.911548 -0.473277 0.660855 0.097262 -0.293799 -1.017256 -0.777232 0.483384 -0.803365 0.082859 0.538563 -0.152481 -0.238820 -0.259242 0.197644 1.025529 -1.695190 1.184894 0.237897 0.532699 0.057328 -0.323189 0.242663 0.030098 0.038535 -0.594357 0.373528 0.377591 -0.785164 0.150102 -0.479437 -1.027973 1.457846 0.293640 -0.573344 0.123798 0.144081 -1.032212 0.621087 -1.055997 -0.734232 0.064688 0.287327 0.099344 1.057350 -0.066410 0.103583 -1.380780 -0.001151 -1.348497 0.375980 -1.129877 0.592410 0.995199 -1.150972 0.114708 0.063637 0.146666 0.761616 0.445111 1.007539 0.401527 0.316939 -0.240003 0.473299 0.385079 -0.154698 -0.186045 -0.203806 -0.853051 -0.439706 0.098155 -1.907810 0.205807 -0.555386 0.349885 0.038320 -0.001801 -0.102659 0.417584 -0.880791 -0.785591 -0.004039 -0.145830 0.689853 1.212254 -0.289835 0.294053 -0.525730 1.047302 0.135687 0.157292 -0.295299 0.200946 -0.401980 -1.514426 -1.354940 0.143004 0.521710 -0.598978 -1.191293 -1.083580 -0.111613 -0.314645 -0.319976 1.005637 1.473524 -0.200463 -0.874490 1.054469 0.393993 0.419456 1.498730 -0.101533 1.614217 -0.864437 0.437969 -0.041759 0.047782 -0.394174 -0.688268 -0.148199 -0.288222 0.018404 0.043430 -0.878542 0.765375 0.088833 -0.257295 -0.041220 -0.089895 -0.442932 -0.905412 1.357067 0.200977 0.886871 0.140172 1.439977 -0.639748 -1.152100 0.655788 -0.059818 0.200452 -0.321065 -0.387013 0.101643 0.797004 -0.775577 -0.502434 0.043466 0.029020 -0.385230 0.498461 0.833870 0.072889 -0.013595 0.228992 0.458111 1.051351 -0.284034 0.677906 -1.113898 0.227058 0.842783 -0.324823 -1.272689 0.294968 -0.648433 -0.022184 0.338709 -0.192598 0.210632 -0.574914 -0.839455 0.007499 -0.171217 0.754236 0.053962 -0.782403 0.331595 -0.692072 0.114777 0.382276 0.847696 1.012744 0.623663 0.491732 -0.330943 0.250951 -0.289653 0.205927 -0.039513 0.206388 0.342263 0.388589 0.823820 0.210908 0.044443 0.502268 0.517051 -0.314352 0.800841 0.646923 1.300014 -0.184468 -0.001610 -0.249600 -0.633964 0.833210 1.869219 -0.792095 -0.116799 0.421648 0.569197 0.039352 -1.197918 -0.310997 -0.375148 -0.597891 0.446186 -0.206028 -0.202241 -0.144984 1.207247 0.071495 -1.186364 0.705619 0.076667 0.150989 0.262340 -0.269546 -0.136750 0.505036 -0.937361 0.466705 0.456248 0.709987 -0.392030 -0.549814 -0.128509 0.695732 -0.177253 0.302019 -0.744088 0.576300 0.851917 1.079494 0.782307 0.273708 -0.479471 -0.610029 0.041432 -0.193865 -0.233368 -0.101184 0.585276 -0.920355 0.070623 -0.358867 -0.742345 +PE-benchmarks/subset-sum.cpp__subset_sum(int*, int*, int, int, int, int, int) = 4.523950 1.665229 4.028006 -4.411453 -1.482390 1.855958 1.626715 -5.258707 0.719641 13.478189 2.673314 -2.037952 -1.446874 5.935316 -3.508538 -3.061114 2.758836 2.091873 0.386935 -3.444207 0.209387 2.175588 -1.088620 -4.453161 1.871599 -3.155883 3.136761 2.546964 -2.705778 3.369848 -3.397125 -1.697283 0.922831 8.980258 0.392892 1.412835 -3.283887 6.642026 -8.241086 8.372121 -12.021509 -10.405805 8.107006 1.815681 3.059852 -7.474211 -1.648119 2.247218 3.129692 -6.484538 -0.672514 -3.722508 3.098890 -5.248511 -0.608327 5.620142 -7.937895 -1.637143 0.877887 -6.309607 -7.585685 -0.831653 7.392618 3.462099 -7.451123 -5.665269 2.565445 3.614759 -2.907050 2.930680 -5.610368 -11.354286 1.817830 1.677150 -4.217602 0.757099 -0.978116 -8.658001 4.418025 -1.297244 -3.541997 -3.248268 2.645822 -3.273059 0.434863 4.449396 9.803606 -12.314047 3.651100 -9.535549 7.041896 -3.632548 8.695821 5.727414 -2.731543 2.828535 3.650374 9.558226 4.048900 -0.906115 7.336899 5.788488 4.806130 -2.664906 5.859438 7.043859 -6.902507 -7.459862 -5.041344 -6.035263 2.292408 -3.806559 -10.011439 0.103276 -7.021182 -2.175610 0.709740 -3.885635 -0.962625 10.982249 -16.667438 -4.317815 3.379203 -1.317457 4.832088 4.822670 0.919315 2.021619 1.200441 6.236391 -2.286499 -2.404380 -1.240518 4.289766 -8.360399 -3.081096 -2.363044 1.628807 2.753295 -8.295767 -8.108151 -12.838607 -3.142031 7.469794 -1.696650 6.087756 12.240241 -2.749164 -8.430556 2.486626 -1.524873 -4.949547 8.370476 1.944407 12.391872 -11.361468 6.301668 -2.728230 4.704414 4.624666 10.819808 -2.346401 -4.446102 5.112275 -2.234958 -6.217583 7.110778 -3.093241 1.308660 -4.179778 2.574100 -1.794389 0.548386 6.744284 -11.513710 8.164198 -7.519926 9.828966 -9.460200 -4.778019 1.736454 -14.724072 -5.025455 -4.540355 -0.296040 -2.112431 10.315345 -7.183726 -4.019472 -3.354757 -5.235913 2.042618 7.714143 -10.022099 -0.169513 -2.172012 -4.139293 9.964841 3.153230 -0.141349 -0.323137 -4.816342 0.887147 6.489409 0.003430 -10.258397 -2.442122 -8.543795 -0.944073 -2.990919 -0.632885 6.201060 -5.112591 -2.755597 0.686052 -2.968128 -0.368269 -4.867806 -7.098297 3.142793 -4.043859 3.352095 0.273659 10.193601 6.874679 6.902950 0.816286 -3.600850 3.036947 -8.505854 -6.214253 5.514799 2.907832 0.661864 3.014104 6.836297 0.293036 2.737383 5.370734 0.491707 3.346704 7.706190 0.409021 7.694912 -4.210962 2.663879 1.430177 -4.473409 4.214708 10.218155 0.963179 -2.108177 2.667447 -0.986174 -5.327457 -2.334215 -0.725849 -1.857935 -4.122908 3.436296 7.044395 -1.526324 -5.089723 12.544468 3.255275 -13.432042 6.620615 -0.929955 1.794026 8.319974 -5.376219 3.575995 3.303475 2.652491 4.049987 2.870264 6.607956 -8.909110 -2.006865 -0.613685 6.483335 8.129181 -2.687444 -15.301557 5.490537 2.948207 9.845639 1.980335 10.964441 -6.076716 4.485484 -2.053946 -3.304930 -1.066746 -1.282959 5.674042 -0.902144 -0.677996 -12.977378 2.805695 +PE-benchmarks/karatsuba.cpp__main = 1.998881 1.760976 9.162445 -7.864347 -8.562564 -0.064027 -13.443611 7.977338 4.060051 6.691977 0.665788 -11.294380 -22.847683 9.995272 -8.224652 -18.704114 4.000236 -1.623325 8.588767 -13.041719 2.980651 2.168263 10.787780 -2.412721 6.125804 -6.116690 -15.144795 8.654107 35.658632 -7.224420 1.736383 7.765873 4.351131 9.510455 -12.050640 -9.059801 7.564924 16.424509 5.794700 -2.050445 -9.558406 -9.931672 16.066873 4.803467 -1.983839 -7.302613 -4.179387 6.616621 -30.490508 2.965379 2.305512 5.099049 -0.470216 -8.915447 -5.013825 15.863745 -35.724106 20.841457 -7.291799 2.401791 3.474609 10.066021 -2.691907 2.802670 18.634542 -8.058436 -2.809325 3.550160 -21.079901 -0.619165 4.960985 6.213529 19.134163 -1.981866 -3.224095 11.652851 15.262399 2.109856 7.252212 -25.446127 -6.736604 -0.422732 4.053900 0.105254 15.013950 1.657155 1.921933 -13.418257 0.186324 -7.067031 17.429491 -12.924228 5.977991 11.168607 -14.766484 8.815546 3.709893 -15.666492 12.069577 4.035923 23.539173 2.835355 10.106918 6.470615 -1.547984 1.383876 -1.633660 4.095027 -6.811391 -9.883431 -10.799160 -0.858965 -17.689404 0.171770 -5.233842 10.765636 20.403475 -8.108967 -3.634332 -0.319662 -9.473326 -9.442280 -0.783906 -0.616609 1.771279 9.855228 -1.828577 -5.117998 5.034729 22.708108 -3.770707 -4.109885 13.222568 2.325334 12.147133 -22.630230 -11.878519 1.325980 -3.865898 -6.483992 -8.804774 -9.515955 4.137384 -8.846783 -0.556632 13.043723 25.575271 8.442365 -8.094087 13.320235 -9.067148 11.336219 21.739243 -0.011485 19.927936 -8.534570 -6.296704 -4.604510 -0.185097 9.101556 1.524434 4.804083 2.764909 0.408702 12.629442 6.333508 -22.313759 -6.440254 2.982511 -8.743871 -2.262402 -10.041240 -7.923074 7.176860 8.135853 13.811472 5.719794 20.710351 5.390460 -32.966051 10.809726 -0.016385 -1.455183 7.559240 -4.813304 2.165647 -8.029632 -13.500160 -6.520165 -13.181351 6.464384 -5.319154 1.720455 11.032287 11.517629 3.560641 -0.167383 10.731669 2.069422 -1.420721 8.561016 -24.550204 -5.861864 5.818906 -4.759949 -19.876347 9.752134 -4.388277 7.637722 21.870751 -6.665311 4.754160 -0.113696 -11.582330 -4.846693 -4.372161 7.587272 -7.385714 -3.736613 0.610441 0.934993 1.917468 8.428217 12.581826 19.805826 1.175121 -4.643786 11.947402 4.589144 -0.972999 15.352224 -4.771277 -1.108850 2.782773 2.754635 4.693526 -0.402599 3.544487 14.272786 13.001094 -15.624637 10.750484 -2.176138 11.767872 -8.442846 -3.497168 -2.012061 -7.633494 7.994317 19.750668 -12.055348 -3.412019 10.685671 9.813524 13.611630 -20.322708 0.471298 -7.938780 1.418506 13.604137 -1.552105 -1.496830 1.007305 -0.901684 8.090594 -16.581777 23.684080 -1.078214 -3.593206 -3.748980 -0.772143 -12.424161 5.551010 -22.283255 -7.764652 5.343959 4.623053 -11.935331 3.282029 1.098940 18.928423 -9.918362 9.623328 -15.945904 -8.217183 7.724773 2.252371 12.201233 4.603771 -3.652096 -30.713497 1.223982 -5.164324 -13.584159 -5.497805 -7.571277 -15.991115 6.516340 12.220199 -6.986058 +PE-benchmarks/karatsuba.cpp__multiply(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.611464 0.883139 8.140696 -6.770330 -4.152632 0.538219 -4.423262 4.454007 3.425402 11.138178 2.608059 -8.411529 -16.187452 8.290815 -4.389079 -12.882908 7.544198 -0.668414 6.903991 -8.238172 1.325220 1.501565 6.860468 -4.595229 6.006522 -4.564122 -9.973982 8.249169 20.592541 -3.428587 -0.757902 5.165979 2.797388 10.265976 -8.692271 -6.899858 3.597055 13.700349 -3.762968 4.501874 -10.090980 -8.968252 15.748654 3.744251 -0.054106 -7.454164 -3.340392 5.975346 -16.500150 -4.113873 2.034064 1.600377 3.072801 -9.373937 -4.583940 15.818146 -27.522970 9.732122 -3.552391 -1.276200 -1.099779 7.249408 0.944486 3.204288 8.105496 -8.341532 -0.309234 0.695051 -13.676698 0.190787 -1.305453 -1.457565 12.697805 -0.103955 -2.706929 8.732131 9.832319 -3.390459 7.096405 -15.457005 -5.744149 -2.184938 2.363785 -2.471943 10.714561 1.458163 6.048996 -14.005032 0.700307 -9.097052 15.633938 -11.671169 8.041337 10.930423 -8.903780 7.495561 4.028754 -7.263897 7.657037 2.467050 19.445810 4.489806 9.054844 2.255135 2.502715 4.759909 -6.025836 -1.931970 -7.783592 -7.610963 -5.612772 -1.106528 -12.995397 1.036010 -7.784192 5.187684 16.105769 -7.593457 -2.777039 6.325136 -9.923826 -4.725898 1.689717 -1.352990 2.838713 10.312683 -0.392184 -3.974765 3.639791 17.986047 -2.982250 -2.317593 8.164682 4.112620 4.426987 -16.803814 -4.975478 0.984842 -1.619353 -8.993266 -9.580761 -12.849526 2.886641 -2.674589 -1.590262 10.344702 22.352433 4.701266 -7.463516 9.150088 -5.036908 5.786928 15.939275 0.811967 19.562463 -11.872438 -0.575694 -4.402225 2.838664 8.147810 8.867524 1.845741 -0.161177 2.749601 7.378734 -0.458154 -7.471263 -4.288715 4.005843 -2.574209 -0.688144 -6.123396 -6.537960 8.323732 2.357572 12.064788 1.509840 19.134221 1.233375 -22.852977 8.964165 -1.861961 -2.883951 1.124864 -4.223673 2.343970 -2.487782 -10.092097 -6.704666 -12.007138 2.686920 -1.557663 5.101276 1.371772 7.659067 1.431475 -3.668579 8.764041 0.694579 -1.341995 5.690649 -19.268648 -3.590727 4.714141 -4.981504 -17.322688 5.174100 -6.229652 5.095831 13.374686 -4.122999 7.506508 -3.616877 -9.878519 -0.405929 -3.221736 2.731881 -7.797929 -6.944711 1.226237 1.180985 1.474994 6.473470 13.799234 15.324487 3.672787 -4.337343 6.629291 3.119341 -1.834979 2.692027 -1.259332 -2.134395 4.073774 2.784400 3.394178 -0.973459 3.405653 10.525943 6.194918 -7.936930 10.190358 0.293821 8.690478 -4.746971 -2.434057 2.139513 -8.646308 7.494393 14.276248 -6.602399 -4.993654 8.268463 5.735868 4.743674 -12.787178 0.368011 -5.736757 -1.368176 10.944742 1.494117 -1.090505 -2.333609 5.185330 6.839346 -18.709273 17.934272 -1.129603 -1.002199 3.297518 -1.667436 -4.076640 4.213154 -12.110929 -2.735871 3.958798 6.849869 -11.714529 2.363060 1.256854 14.110617 -2.919444 4.337163 -21.176085 -4.973158 4.557881 4.880472 9.622266 9.903946 -4.707958 -15.777966 -1.222049 -5.441046 -8.938800 -5.854330 -2.606281 -11.016688 3.706204 -0.445954 0.841840 +PE-benchmarks/sort-array-wave-form-2.cpp__main = 0.773556 0.392456 0.759687 -1.053914 -0.711406 0.332204 -0.009910 -0.684367 0.157004 1.484497 0.501190 -0.677007 -1.136008 1.378080 -0.610664 -1.246848 0.319967 -0.586620 -0.022764 -0.511276 -0.143637 0.487570 -0.156697 -0.476390 0.468238 -0.361640 0.014941 0.747906 0.733403 -0.280517 -0.961032 -0.101601 0.049818 1.889687 0.005609 -0.158827 0.222010 2.210911 -0.957548 1.289070 -1.964023 -1.741807 1.512954 0.216226 -0.102964 -1.263345 -0.341839 0.747865 -1.273551 -0.344388 0.614016 -0.406338 0.012194 -0.769657 0.287732 1.609781 -2.836192 1.276868 0.149575 -0.088830 -0.708896 -0.448526 0.675076 0.140218 -0.227720 -1.111228 0.524647 0.509633 -1.317592 0.442135 -0.897244 -1.685336 1.495338 0.538640 -0.860556 0.397978 0.259273 -1.349402 0.955484 -1.448531 -1.121321 -0.381730 0.623946 -0.284694 1.298630 0.538102 0.813298 -2.535848 0.234511 -2.111986 1.173506 -1.428180 1.465098 1.647293 -1.226897 0.652323 0.498030 0.546656 0.769318 -0.078215 1.793242 0.607026 0.817710 -0.126451 0.778182 0.871506 -1.042621 -0.859574 -0.818790 -1.271314 -0.276211 -0.292226 -2.277699 0.074757 -1.229576 0.469560 0.572874 -0.331701 -0.439194 1.013539 -2.619222 -1.119557 0.216087 -0.301509 1.404225 1.496169 -0.164430 0.382465 -0.169321 1.796962 -0.269683 0.007355 -0.561697 0.648480 -0.475465 -1.503494 -1.602189 0.076203 0.711959 -1.274344 -1.945224 -2.115882 -0.463100 0.319586 -0.390257 1.838055 2.818947 -0.446773 -1.530571 1.465353 -0.505687 0.523624 2.176283 0.187410 2.354025 -1.752369 0.822645 -0.392230 0.483230 0.191979 0.560659 -0.197326 -0.687935 0.516152 0.212068 -0.267654 0.525718 -0.214459 -0.205910 -0.905041 0.071218 -0.756064 -0.814796 1.892879 -0.943341 1.642250 -0.350620 2.405480 -1.459252 -1.808945 0.841620 -1.521388 -0.209307 -0.891078 -0.696777 -0.081383 1.269833 -1.667033 -0.957083 -0.628644 -0.174261 -0.260699 1.051798 0.020510 0.103445 -0.237043 -0.038181 1.716717 1.351488 -0.244729 0.470723 -1.797786 0.265884 1.155192 -0.351571 -2.091274 0.306988 -1.093068 -0.150104 0.801321 -0.227269 0.713278 -0.849307 -1.029846 0.101765 -0.388851 0.701717 -0.329697 -1.617375 0.521408 -0.647787 0.078244 0.749910 1.660295 1.678173 1.094525 0.499853 -0.408050 0.476700 -0.843047 -0.140814 0.320664 0.370441 0.704742 0.687370 1.218623 0.419808 0.238240 0.990029 0.793690 -0.320546 1.522549 0.660599 2.071459 -0.682699 0.129938 -0.032781 -0.942322 1.086127 2.395847 -1.212771 -0.177450 0.907256 0.635660 -0.129336 -1.363025 -0.334386 -0.844708 -0.663627 0.844580 0.359373 -0.525982 -0.524491 2.334126 0.245571 -2.463836 1.446998 0.040638 0.349046 0.726812 -0.576553 -0.142997 0.899422 -1.213954 0.845342 0.688170 1.305950 -1.211343 -0.206974 -0.184961 1.345281 0.388361 0.142697 -2.111363 0.385160 0.924199 1.882974 1.278408 1.294955 -0.801112 -0.556234 -0.232347 -0.783885 -0.389618 -0.175882 1.029026 -0.800181 0.216052 -1.465578 -0.542662 +PE-benchmarks/sort-array-wave-form-2.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/word-wrap.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +PE-benchmarks/word-wrap.cpp__printSolution(int*, int) = 1.248467 0.885558 1.306295 -1.000549 -1.800318 0.937620 -1.260868 -1.956981 0.138460 2.857488 1.086416 -1.258640 -0.671592 2.063796 -1.689903 -1.489388 -0.246243 0.778628 0.175821 -1.569282 -0.030818 0.597039 -0.428655 -0.583521 0.018986 -0.975151 0.534897 0.519481 0.648689 0.603384 -1.189870 -0.356380 0.339003 2.666106 0.611828 -0.014889 -0.021143 2.538707 -1.023581 1.547999 -3.493864 -2.921433 1.707702 0.692897 0.847411 -1.758517 -0.959028 0.922166 -1.304113 -0.308444 0.528369 -1.074748 0.502725 -0.590604 0.255222 1.487338 -3.346499 1.694696 0.092818 -1.469473 -1.379847 -0.107896 1.327672 1.056252 -0.585021 -1.548770 0.621000 2.419376 -1.051860 0.690003 -1.083371 -3.148202 2.053230 0.080210 -1.700927 -0.029984 0.278587 -1.604462 1.407543 -1.680860 -1.844313 -0.545768 0.987209 -0.416384 0.775871 1.575986 2.171901 -3.703498 0.875140 -3.377725 2.135035 -1.113564 2.241705 1.671886 -1.983696 0.378443 1.389992 1.328657 2.177651 0.522442 2.311065 1.052226 0.819992 -0.164572 1.019262 1.624260 -1.183273 -1.165112 -1.256464 -2.350318 -0.104233 -0.324141 -3.474947 -0.024190 -1.700164 1.186054 -0.159045 -0.718020 0.060106 2.274087 -4.376120 -1.944654 0.461747 -0.270334 2.014727 1.570067 -0.075407 1.340762 0.048318 2.344309 -1.088465 -0.931503 -0.341467 1.001821 -1.365790 -2.481987 -3.242454 1.145070 1.310432 -2.059583 -2.445224 -3.125243 -0.782307 1.397734 -0.574133 2.297558 4.015137 -1.128493 -2.558885 1.582122 -0.595051 -0.932165 3.732912 0.510062 3.968625 -2.788276 1.210877 -0.954692 0.358067 0.543849 1.065693 -0.338184 -0.883993 1.300883 0.531357 -1.150939 1.303523 -0.918320 -0.726701 -1.590022 0.689472 -0.335164 0.106685 1.917220 -1.780400 1.921401 -1.158225 3.453974 -2.629857 -2.699593 0.630088 -3.256647 -0.923378 0.128179 -0.143566 -0.348660 2.802983 -2.513682 -1.118609 -0.408673 -1.310282 -0.171364 1.629819 0.139736 0.292573 0.202699 -0.635108 2.901867 2.091907 0.396056 0.242494 -1.889983 0.199211 1.896607 -0.280582 -3.402878 -0.350791 -2.484081 0.014646 -0.055610 -0.345531 1.557911 -1.295072 -0.831349 -0.738599 -1.203047 1.415424 -0.339253 -0.838827 1.168466 -1.583705 1.022852 0.372813 2.474332 2.393310 2.481479 1.286669 -0.402590 0.862095 -2.160079 0.843892 1.268530 1.794025 0.377537 0.936525 2.198055 0.291699 0.757688 1.400741 0.567573 0.630009 2.357490 -0.140334 3.146853 -2.374826 1.408663 -0.707031 -0.803892 1.620094 4.084679 -1.396341 -0.349731 0.641127 0.194445 -0.344727 -1.793292 -0.060478 -0.709992 -1.078553 0.873922 1.994290 -0.112610 -1.514299 3.243830 0.951298 -3.293486 2.648408 -0.110534 0.143010 1.575491 -1.285590 -0.206959 0.815461 -0.551689 0.878873 1.656088 2.048293 -2.612111 -0.993120 -0.401191 2.341324 1.255935 0.259913 -3.497977 1.391489 1.939717 2.567724 0.767861 1.980814 -2.230925 -0.911430 0.104623 -1.263644 -0.705262 0.177453 1.355256 -0.908336 0.696491 -1.655065 -1.017722 +PE-benchmarks/word-wrap.cpp__solveWordWrap(int*, int, int) = 9.648524 0.523043 4.950438 -5.519087 1.656531 4.506085 4.463916 -9.959636 0.213431 25.531114 6.357709 -5.114217 -4.886769 8.029746 -2.036200 -8.200891 10.130555 11.625008 1.811660 -5.845191 -4.016737 1.010459 -2.483003 -11.827274 6.673439 -7.679289 4.246777 7.139118 -5.027346 8.854435 -7.212642 -1.969114 1.484087 20.548393 0.988149 2.048771 -4.701876 14.517589 -17.401236 19.275573 -17.817622 -17.593309 20.190402 4.280071 4.443106 -3.925177 -1.493652 4.893077 3.022291 -15.259674 -0.675732 -9.650356 8.714569 -12.193794 -2.349740 18.102820 -15.101349 -6.026541 2.241519 -14.078100 -18.000452 -1.206360 12.111135 5.044075 -14.824792 -13.657860 5.367802 7.404634 -3.840058 3.903784 -17.043286 -26.080900 7.387158 4.976220 -7.333083 2.293939 -3.968592 -13.904353 6.738744 5.534979 -7.472631 -8.294005 6.422230 -5.090310 2.000977 10.911816 21.915688 -26.891541 4.844826 -21.772319 17.140542 -7.439425 22.485957 14.141320 -4.537765 7.367352 8.197886 16.067174 0.300081 -0.907464 17.520142 5.847754 4.181325 -6.849703 10.604699 13.590065 -16.611606 -18.469433 -9.442759 -8.060620 5.278915 -4.735527 -15.652630 1.336467 -21.900459 1.874885 3.762595 -4.762303 -3.200061 21.302632 -28.112449 -7.186543 6.092404 -4.122551 16.583468 11.271723 4.088798 3.323325 2.817951 13.400330 -2.927881 -8.163591 -6.915014 10.794647 -11.492112 -5.593818 -3.147742 2.360134 8.673396 -20.405369 -18.977696 -23.325411 -6.287643 17.398754 -4.853303 15.027675 27.178666 -6.586036 -11.190958 4.784693 -7.868323 -3.363391 17.693224 5.545881 28.975428 -28.312706 16.976812 -4.159266 12.650203 11.122164 20.049976 -7.072894 -11.130593 11.217163 -0.499760 -2.044844 20.714668 -5.760238 3.882416 -2.930102 4.714533 2.562917 -1.015449 15.916678 -20.311432 15.117985 -11.474443 25.074092 -19.288539 -10.582313 6.136272 -19.182336 -13.052138 -10.796557 -0.399875 -4.805240 18.638890 -13.748743 -10.469436 -5.995271 -8.124657 5.891910 18.019288 -8.289381 -1.731415 -5.718274 -13.373610 17.929252 4.904820 -0.412798 -2.554131 -13.334905 0.826211 10.114345 -5.824058 -17.175348 -4.512986 -14.968077 -2.026609 -4.030053 -0.792948 14.184891 -13.026718 -5.787589 2.207556 -2.668729 0.533535 -10.292342 -13.457205 7.928988 -2.589335 -0.135366 4.006115 23.661223 15.332835 14.058449 -0.421003 -7.229451 4.878836 -13.391386 -17.821039 12.319211 1.803408 11.651599 6.571714 10.280433 -1.812131 6.080110 8.341767 -6.144084 11.374043 15.429098 4.826488 16.094425 -5.041058 4.410323 6.968571 -14.188321 11.015240 17.462505 -5.631752 -7.700130 6.417580 -2.322239 -12.228696 -4.915430 -0.512571 -3.303392 -11.424943 6.733382 12.577594 -0.541100 -14.427304 29.571473 6.003257 -31.302493 15.381985 -0.271418 3.983156 19.273359 -10.518246 10.803906 6.167642 7.883196 6.821329 5.508615 17.017475 -20.093870 2.957796 -1.664426 11.815252 12.977650 -9.118357 -31.309855 7.244384 5.547361 20.902404 8.274890 19.905986 -11.096505 12.388211 -7.525752 -8.593681 0.164970 -5.867736 11.308437 -2.341108 1.606774 -29.007522 10.163096 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__main = 0.181759 0.208490 0.090014 -0.179250 -0.400344 0.164174 -0.376477 -0.263293 -0.078423 -0.202862 0.153164 -0.218278 -0.410269 0.250034 -0.310966 -0.454828 -0.187272 -0.145365 -0.035870 -0.240240 -0.025902 0.080439 -0.037535 0.007140 -0.026018 -0.073244 -0.112395 0.069478 0.591027 -0.248208 -0.224900 0.013757 0.107721 0.370664 0.156966 -0.064382 0.208663 0.511498 0.418219 -0.094557 -0.468597 -0.302318 0.166800 0.045222 -0.070488 -0.463030 -0.180655 0.167903 -0.801818 0.402981 0.169350 -0.139935 -0.167858 0.045359 0.057454 0.368678 -0.816515 0.900604 -0.007750 0.105793 0.115243 -0.064298 -0.063721 -0.120719 0.549399 -0.195323 -0.003700 0.400858 -0.405325 0.134494 -0.066322 -0.167775 0.779318 0.027348 -0.259960 -0.007631 0.040846 -0.017808 0.111950 -0.652584 -0.321383 -0.006933 0.230830 0.413569 0.361540 0.155274 -0.153336 -0.488623 -0.164507 -0.523767 0.166704 -0.270119 0.239738 0.220363 -0.532465 0.036196 0.137594 -0.516933 0.290877 0.230595 0.385160 -0.097396 0.033760 0.081716 -0.051413 -0.057822 0.137133 0.127597 0.073293 -0.314444 -0.281812 0.231803 -0.732610 -0.032557 -0.224869 0.527429 -0.030896 0.056779 0.082719 -0.228725 -0.343196 -0.476678 -0.099839 -0.031638 0.458959 0.284356 -0.028507 0.228944 -0.145290 0.435967 -0.063244 -0.009085 -0.145124 0.052058 0.308455 -0.993470 -0.899821 0.098054 0.211652 -0.133648 -0.403610 -0.127738 -0.076124 -0.214305 -0.090140 0.251169 0.539292 -0.121966 -0.356533 0.484184 -0.066195 0.299554 0.728379 0.036006 0.517413 -0.186159 0.028660 0.051806 -0.133753 -0.131053 -0.650586 -0.085924 -0.088271 -0.018009 0.287402 -0.030072 -0.263368 -0.104758 -0.278930 -0.084810 -0.154243 -0.142135 -0.193401 0.257395 0.403446 0.323280 0.167231 0.526887 -0.261442 -0.715537 0.138285 0.045666 0.074383 0.307446 -0.065010 0.022036 0.116247 -0.484241 -0.204458 0.111453 0.110175 -0.245843 0.146867 0.724493 0.051552 0.149677 0.128699 0.173681 0.442684 -0.089110 0.236828 -0.357081 0.043561 0.258716 0.026779 -0.611307 0.166576 -0.171759 0.030756 0.438227 -0.070122 0.055453 0.115291 -0.148853 -0.125106 -0.203738 0.523411 0.188562 0.310486 0.118552 -0.270361 -0.118786 0.071021 0.242943 0.380136 0.205851 0.173913 0.070912 0.166454 -0.125811 0.676875 -0.108232 0.272476 0.155827 0.129301 0.150605 0.124727 0.046359 0.205560 0.310638 -0.149917 0.294705 0.160910 0.572143 -0.471056 0.116672 -0.242810 -0.092775 0.295647 0.683616 -0.600326 0.011941 0.115009 0.220917 0.381367 -0.605152 -0.085247 -0.136343 -0.270886 0.316112 0.075886 0.011007 -0.093044 0.378832 0.048695 -0.250599 0.546615 0.108771 -0.059171 -0.226539 -0.064919 -0.390261 0.245577 -0.480321 -0.119242 0.290025 0.316299 -0.211062 -0.255554 -0.110044 0.374765 -0.293993 0.248185 -0.004962 -0.051620 0.482486 0.355161 0.282863 -0.175667 -0.159694 -0.686575 0.082765 -0.042465 -0.145351 0.104369 0.064453 -0.294629 0.064632 0.347923 -0.434336 +PE-benchmarks/count-number-binary-strings-without-consecutive-1s.cpp__countStrings(int) = 1.425743 0.095052 1.314232 -1.755512 -0.804617 0.956568 0.508132 -2.551882 0.149039 4.072537 2.022359 -1.948690 -1.200069 2.765037 -0.772066 -1.601349 1.795704 2.813122 -0.014350 -0.755382 -0.792807 0.460229 -0.853974 -1.702060 1.113280 -0.918627 0.976893 1.588199 0.547699 0.889982 -2.241541 -0.497745 0.225951 4.687430 0.538364 0.422770 -0.652160 4.008861 -2.921142 4.338447 -4.148280 -2.797941 3.843623 0.836719 0.761198 -2.212108 -1.595641 1.868240 -0.380777 -3.447061 0.494131 -1.934398 1.518723 -2.353200 -0.126742 3.947816 -3.728094 -0.452803 1.280686 -2.230199 -3.199426 -0.251393 2.650442 0.983531 -3.653494 -3.069974 1.150657 1.455891 -1.307707 0.425382 -3.525556 -6.133936 2.420813 0.577188 -2.363379 0.507153 -0.614776 -3.552485 1.937792 0.959863 -2.334701 -1.249181 1.183625 -1.750986 1.429965 1.524306 4.024933 -6.235978 0.958183 -5.552649 3.036092 -2.421226 4.538501 3.617144 -2.407658 1.266135 1.698412 3.268209 0.854915 0.964265 3.955997 1.396191 0.571169 -1.453266 3.068167 2.370428 -3.057728 -3.682710 -2.278474 -2.994872 0.912725 -0.867096 -4.627653 0.462108 -4.488449 0.903657 0.051531 -0.263911 -0.399213 4.283205 -5.504159 -0.965142 1.296474 -0.895172 3.414428 4.017783 0.362682 0.938887 -0.109952 3.265302 -0.945205 -1.191199 -1.438509 2.300113 -1.874125 -2.022250 -1.776705 0.611954 2.210148 -3.776671 -4.474467 -5.388745 -1.439999 2.574311 -1.299757 2.962002 6.405077 -1.809572 -2.778157 1.920155 -1.089905 -0.283869 4.432208 0.907245 7.303434 -5.913427 3.227978 -1.121920 1.736020 1.510482 2.641644 -1.348267 -2.478906 2.005994 -0.492644 -2.713373 5.960127 -0.845067 0.207898 -0.278609 1.264199 0.136454 -1.612546 4.263898 -3.935530 3.531084 -1.986320 5.865625 -3.871049 -2.650376 1.702058 -2.532565 -1.737943 -2.027483 -0.534982 -0.867718 4.541899 -2.859574 -2.248037 -0.979168 -1.538876 0.595070 3.759071 -0.231164 -0.320108 -0.784807 -2.104466 2.884640 1.958759 -0.304764 0.065978 -3.403059 0.484726 2.570622 -1.186666 -3.839552 -0.679793 -4.073432 -0.601844 -1.049977 -0.355891 2.965429 -3.019758 -1.771841 0.153239 -0.681959 0.867600 -1.574590 -3.871827 1.787150 -1.403013 0.263341 1.367087 5.148095 3.842001 3.738320 0.712535 -1.299838 0.972004 -2.439902 -3.480397 2.064958 0.339493 2.781534 1.664276 2.211513 0.476652 1.460758 1.598373 -1.433006 2.499853 4.071161 1.782517 4.388171 -0.855896 0.791598 1.171493 -2.835088 2.771252 4.976092 -1.331790 -1.158825 1.343952 0.274727 -2.744807 -2.669358 -0.270909 -0.686752 -2.780449 1.647525 2.016086 0.138024 -2.880984 6.493641 0.691219 -6.910037 3.274923 -0.499393 1.147729 4.102274 -1.682911 2.278309 1.345870 0.787406 1.898480 1.742494 3.607107 -4.177074 -0.446906 -0.389703 2.847704 2.678995 -1.276495 -6.984795 2.404929 1.148237 4.795621 1.817369 3.374486 -2.751135 1.996470 -0.839654 -2.256258 -0.116183 -1.444045 2.803510 -0.652259 -0.552551 -6.437407 0.955195 +PE-benchmarks/binary-insertion-sort.cpp__main = 0.791409 0.381528 0.713055 -1.028783 -0.491628 0.255817 0.062933 -0.692774 0.145743 1.508561 0.477389 -0.751819 -1.099638 1.305061 -0.587419 -1.206552 0.388873 -0.525094 -0.113219 -0.527465 -0.146225 0.358936 -0.107953 -0.709695 0.488879 -0.359537 0.143471 0.783269 0.658792 -0.243741 -0.917324 -0.059010 0.191128 1.927250 -0.015080 -0.111329 0.127896 2.044348 -0.956955 1.297608 -1.988338 -1.715269 1.694837 0.203142 -0.122309 -1.259821 -0.284229 0.759530 -1.229957 -0.439387 0.381630 -0.420493 0.011230 -1.004486 0.085514 1.741691 -2.744253 1.217141 0.166184 -0.158151 -0.899772 -0.451105 0.824480 0.151934 -0.266209 -1.169522 0.504907 0.409115 -1.391161 0.522310 -1.036754 -1.685071 1.479430 0.485695 -0.777378 0.412369 0.046251 -1.295100 0.885979 -1.299264 -0.926226 -0.458705 0.731540 -0.222461 1.188094 0.580198 0.815552 -2.535171 0.135485 -2.044119 1.200050 -1.396074 1.530338 1.563831 -1.195491 0.723210 0.342538 0.529797 0.573703 -0.039046 1.725297 0.536934 0.882944 -0.286708 0.844170 0.871538 -1.044739 -1.000936 -0.718408 -1.194027 -0.241619 -0.298268 -2.267652 0.102229 -1.438877 0.430234 0.584842 -0.359805 -0.457355 1.014433 -2.624106 -1.136161 0.232407 -0.309599 1.453864 1.450984 -0.102798 0.369472 -0.101996 1.682610 -0.057453 -0.120352 -0.533350 0.675467 -0.486377 -1.527348 -1.421429 0.054990 0.717161 -1.289990 -1.975088 -2.114451 -0.516836 0.368482 -0.392460 1.793285 2.689563 -0.294932 -1.552143 1.301152 -0.514428 0.537436 2.155629 0.208323 2.473814 -1.936489 1.018269 -0.248446 0.664000 0.387504 0.609466 -0.420029 -0.838583 0.538727 0.110419 -0.272604 0.514441 -0.150612 0.013383 -0.782480 0.035192 -0.728633 -0.849844 1.890625 -0.971019 1.761005 -0.477334 2.417638 -1.586021 -1.772160 0.847934 -1.518140 -0.315206 -0.846835 -0.667994 -0.171034 1.361230 -1.650696 -1.008856 -0.595409 -0.151236 -0.123022 1.282792 -0.055370 0.019718 -0.386165 -0.223229 1.686783 1.117136 -0.459887 0.484348 -1.774025 0.216308 1.277845 -0.214793 -2.092198 0.242627 -1.109038 -0.190689 0.736982 -0.195911 0.772113 -0.861482 -0.992325 0.248514 -0.346451 0.597078 -0.533164 -1.588195 0.543877 -0.658429 -0.021838 0.691576 1.840436 1.629938 0.963492 0.264405 -0.501433 0.457605 -0.992098 -0.335813 0.329742 0.260632 0.728981 0.688609 1.177139 0.292421 0.244818 1.020559 0.681503 -0.399889 1.528189 0.718052 1.910111 -0.714389 0.156679 0.084184 -1.067700 1.097417 2.310355 -1.207873 -0.407611 0.907623 0.566470 -0.176767 -1.348888 -0.496228 -0.787640 -0.733729 0.913947 0.365597 -0.552838 -0.531131 2.434359 0.312543 -2.497682 1.489897 0.059633 0.314861 0.743447 -0.769387 -0.063644 0.977706 -0.991466 0.658915 0.565861 1.308999 -1.244247 -0.149360 -0.171997 1.390580 0.408002 -0.055229 -2.141507 0.379868 0.894361 1.967935 1.297237 1.327934 -0.774996 -0.326876 -0.386180 -0.644089 -0.280668 -0.275882 1.043573 -0.798348 0.113552 -1.587988 -0.324128 +PE-benchmarks/binary-insertion-sort.cpp__insertionSort(int*, int) = 1.637988 0.633666 1.618978 -2.261401 -1.008027 0.592482 1.234732 -1.985518 0.168994 4.730149 1.604441 -1.429437 -1.304897 3.170618 -0.930872 -1.686080 1.409155 0.253705 -0.126575 -0.733239 -0.128557 1.134655 -0.527177 -1.733020 1.080300 -0.744574 0.679307 1.752431 -0.260217 0.658635 -1.906695 -0.575314 0.329734 4.190119 0.112592 0.135402 -0.801844 3.933492 -4.384481 4.121078 -4.724590 -3.805074 3.962164 0.589232 0.442528 -3.463770 -1.442348 1.567858 0.110487 -3.026349 0.614705 -1.260571 1.155075 -2.315714 0.145885 3.477556 -4.530637 0.054335 0.915152 -1.802596 -2.681841 -0.541881 2.440269 0.955415 -2.990921 -2.699702 1.029952 0.591845 -1.370692 0.735734 -2.677000 -5.023302 1.937839 0.894155 -1.819752 0.665897 -0.235313 -4.078156 2.299802 -0.882253 -2.044857 -1.211011 0.931374 -1.371369 1.407030 1.319840 3.454785 -5.740007 0.869195 -4.704939 2.926571 -2.588319 3.554979 3.341412 -1.831440 1.356915 1.350553 3.139037 1.587504 -0.137876 3.557998 2.153355 2.032547 -0.946425 2.689272 2.984748 -3.256481 -3.252348 -2.570752 -2.892449 0.891999 -1.457359 -4.791886 0.405722 -2.982669 -0.714429 0.756908 -1.462675 -0.501045 4.405621 -5.926011 -0.964442 1.422017 -0.697361 2.268981 3.392574 0.069013 0.568322 -0.208736 3.129053 -0.757416 -0.030530 -0.857930 1.988917 -2.931891 -2.350705 -1.245819 0.509672 1.333955 -3.549513 -3.901393 -5.853042 -0.840611 2.252003 -1.102963 2.662736 5.975008 -1.481038 -3.537203 2.088557 0.077761 -0.880429 3.555677 0.579070 5.943985 -4.754050 2.369266 -1.133588 1.366524 1.377403 4.142185 -0.787960 -2.116301 1.910415 -0.848792 -3.484294 3.998879 -0.704735 0.174334 -0.936923 0.970308 -1.053344 -1.074270 3.977228 -3.756535 3.574018 -2.386398 4.840542 -3.532029 -2.438554 1.472547 -4.564424 -1.605624 -2.857007 -1.091258 -0.224089 3.886824 -3.010844 -1.868991 -1.819663 -1.480242 0.152795 3.187884 -3.360480 -0.028933 -0.787363 -1.166584 3.306291 2.002684 -0.351455 0.377039 -3.041211 0.657123 2.659552 -0.530360 -4.879016 -0.472057 -3.453685 -0.482131 -0.410288 -0.440369 2.535896 -2.449943 -1.747796 0.779980 -1.160722 0.119494 -1.641282 -3.984686 1.301905 -1.511987 1.126230 1.034522 4.516149 3.370838 3.140699 0.681170 -1.056086 1.006062 -2.527845 -3.132940 1.805590 0.479722 1.061095 1.673139 2.715950 0.622221 1.068876 2.304261 0.339766 1.038455 3.644079 1.273457 3.884944 -0.545194 0.397601 0.900854 -2.130707 2.284771 4.671427 -0.263451 -0.964846 1.536616 0.096866 -2.271919 -1.644610 -0.366119 -1.153384 -2.149042 2.153352 1.978928 -0.730848 -1.911238 5.725814 0.688051 -6.290353 2.724965 -0.228628 1.216062 3.314895 -1.711970 1.660730 1.612779 0.012711 2.273868 1.508789 3.181759 -3.552369 -0.808491 -0.214036 2.589234 3.301788 -0.571448 -7.110592 1.904663 1.242780 4.438762 1.327302 4.493077 -2.453225 1.493628 -0.773226 -1.429229 -0.337179 -1.065127 2.529816 -0.916714 -0.304830 -5.782205 0.755974 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__main = 0.528132 0.311904 0.357379 -0.742027 -0.855229 0.350004 -0.526080 -0.557281 0.127688 -0.076256 0.539932 -0.675272 -0.544922 0.947860 -0.570639 -0.798676 0.055384 -0.338117 -0.027597 -0.185373 -0.068040 0.187869 -0.191953 0.032033 -0.063660 -0.024463 -0.084579 0.258092 1.171676 -0.512705 -1.053051 0.032784 0.004676 1.093165 0.307346 -0.491521 0.472547 1.438056 0.292179 0.335041 -1.007343 -0.291585 0.371500 0.168287 -0.219347 -1.131675 -0.752039 0.490491 -1.188608 0.329417 0.718809 -0.367193 -0.131393 -0.011013 0.262680 1.053897 -1.734290 1.370680 0.224891 0.549928 0.251177 -0.254646 0.292784 0.073069 0.291346 -0.576681 0.460312 0.623509 -0.829812 0.154059 -0.559596 -1.149789 1.444480 0.302836 -0.802430 -0.009797 0.235076 -0.958883 0.532786 -1.098999 -0.912041 0.090259 0.285332 0.118148 1.155590 -0.105373 0.037413 -1.420045 -0.033750 -1.527566 0.331528 -1.089710 0.722193 0.983137 -1.195752 -0.043266 0.210859 -0.235574 0.802655 0.438282 1.060033 0.273180 0.129011 -0.261447 0.441332 0.183699 0.010672 -0.029419 -0.090570 -0.891921 -0.644424 0.270277 -1.879303 0.133301 -0.724052 0.709924 -0.084102 0.140479 -0.113302 0.221058 -0.739591 -1.000396 -0.139879 -0.176615 0.946439 1.366771 -0.264477 0.504863 -0.458108 1.181461 -0.052593 0.076487 -0.457701 0.173173 -0.027006 -1.693163 -1.821050 0.193273 0.747418 -0.518613 -1.303457 -0.873284 -0.249747 -0.557622 -0.268012 1.064031 1.548872 -0.297063 -0.851048 1.108050 0.046263 0.535267 1.804017 -0.068369 1.703951 -0.928132 0.501471 -0.191405 0.017313 -0.596015 -0.956669 -0.166501 -0.143749 0.037532 0.198435 -0.543951 0.516331 0.018173 -0.440047 0.036151 -0.127574 -0.262246 -0.935431 1.269717 0.275127 0.780542 0.385990 1.550665 -0.686845 -1.404088 0.602631 0.259379 0.338179 0.076746 -0.342631 0.110076 0.817989 -0.815470 -0.558255 0.125353 0.082979 -0.369499 0.419345 1.474823 0.064102 0.125846 0.230409 0.545623 1.268226 -0.121641 0.701806 -1.099139 0.255882 0.770108 -0.392113 -1.149040 0.309865 -0.739576 -0.002024 0.435990 -0.174920 0.261323 -0.533741 -0.892962 -0.206561 -0.198844 1.069886 0.287541 -0.733335 0.428910 -0.753033 -0.101353 0.402865 0.787185 1.011425 0.780038 0.674131 -0.410865 0.326911 -0.238024 0.590138 -0.154021 0.408528 0.466747 0.330796 0.623568 0.220010 0.028387 0.361956 0.420691 -0.155115 0.789954 0.593317 1.377938 -0.385357 0.162101 -0.388388 -0.734395 0.811055 2.001039 -0.975466 0.039309 0.378047 0.702082 0.211893 -1.635974 -0.204656 -0.382411 -0.585554 0.387560 -0.072810 -0.109307 -0.341248 1.227966 0.095404 -1.141209 0.860755 0.031053 0.008287 0.276522 -0.175095 -0.310883 0.366250 -1.111160 0.439911 0.570582 0.774968 -0.403227 -0.554293 -0.182709 0.716920 -0.489346 0.290499 -0.677016 0.408439 0.933655 1.131241 1.006943 0.172306 -0.535049 -0.843288 0.179646 -0.403562 -0.302235 -0.062783 0.651630 -0.908234 0.075007 -0.108556 -0.842246 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-2-expected-linear-time.cpp__randomPartition(int*, int, int) = 0.950227 0.511929 0.523298 -1.120540 -0.927986 0.418769 -0.170509 -1.456496 -0.095194 1.764495 1.226869 -1.241438 -0.201234 1.832926 -0.774479 -1.092188 0.454502 0.676585 -0.182029 -0.525240 0.093722 0.508213 -0.349458 -0.869128 0.311033 -0.253663 0.356144 0.567449 0.460039 0.281233 -1.348606 -0.052252 0.330950 2.194302 0.350544 -0.022172 -0.338611 1.909679 -1.456330 1.519261 -2.545808 -1.556747 1.734023 0.489149 0.386845 -2.061916 -1.382124 0.826435 -0.051786 -1.164321 0.351317 -0.833531 0.373415 -0.854858 0.015120 1.839583 -2.240540 0.604756 0.649876 -0.772167 -1.144370 0.027309 1.337403 0.558016 -1.203792 -1.474273 0.562234 1.008129 -0.466145 0.412247 -1.526995 -3.068380 1.611674 0.322681 -1.072417 0.138952 -0.383505 -2.245681 1.209798 -0.566000 -1.169272 -0.385620 0.823355 -0.082567 0.547226 0.867329 1.762930 -3.033031 0.268657 -2.764937 1.445378 -1.326210 1.928585 1.583933 -1.578561 0.257846 0.718075 1.358759 1.589288 0.792698 1.917763 1.057621 0.618869 -0.817854 1.194496 1.399403 -1.094814 -1.369373 -0.893074 -1.711384 0.129493 -0.409264 -3.309335 0.487652 -1.830480 -0.082502 -0.268241 -0.619473 0.342178 2.165452 -2.702721 -1.214318 0.513587 -0.134465 1.378598 1.995776 0.028347 0.707920 -0.476274 1.596607 -0.148874 -0.315081 -0.397996 0.957897 -1.639992 -2.259256 -1.552833 0.654376 1.065413 -1.959069 -2.026593 -2.822669 -0.398852 0.729501 -0.737212 1.156180 2.902584 -0.920457 -1.925461 1.142071 0.612668 -0.651010 2.564814 0.132303 3.730000 -2.740444 1.496686 -0.196641 0.612164 0.429808 0.608718 -0.615023 -1.035192 0.837442 -0.305374 -2.548663 2.400785 -0.326666 -0.087909 -0.060078 0.568330 -0.161905 -0.645442 2.022448 -1.232902 1.879899 -1.155309 2.512979 -2.072648 -1.600463 0.901714 -1.871110 -0.782705 -0.625662 -0.265125 -0.318455 2.417907 -1.632655 -0.848943 -0.263238 -0.911167 -0.059986 1.614314 -0.463955 -0.011219 -0.199865 -0.644008 1.105120 1.324799 -0.115708 0.575735 -1.558160 0.370957 1.725450 -0.209114 -2.737309 -0.343160 -2.319189 -0.115050 -0.700559 -0.380998 1.366931 -1.230027 -0.988974 0.045877 -0.612335 0.905107 -0.612774 -1.067951 0.924015 -1.437252 0.708351 0.321989 2.485700 1.844302 1.944728 0.547088 -0.807449 0.906198 -1.686254 -0.844394 0.964480 0.575884 0.680796 0.844585 1.492667 0.194450 0.579908 1.066062 -0.147314 0.823788 2.113069 0.700155 2.327538 -0.663023 0.603419 0.051733 -1.254013 1.499016 3.139592 -0.312654 -0.691833 0.452516 0.074921 -1.044260 -1.491456 -0.251268 -0.243349 -1.695422 0.910272 0.945882 -0.028461 -1.233405 2.986735 0.598512 -3.065951 1.795423 -0.229065 0.370727 1.669593 -0.952665 0.711597 0.769514 -0.023076 0.774018 1.030167 1.870269 -1.900910 -1.006344 -0.251427 1.611620 1.291234 -0.365075 -3.079864 1.812551 1.303617 2.394265 0.679458 1.593247 -1.567975 0.404378 -0.240303 -0.504692 -0.271661 -0.534544 1.272314 -0.725490 -0.304315 -2.305144 -0.137189 +PE-benchmarks/tarjan-algorithm.cpp__main = 2.248726 3.414159 2.663570 -0.068861 -4.309716 -1.117682 -6.394036 -0.054823 0.527098 -0.866547 -2.144053 -4.131136 -4.781856 2.650936 -7.379477 -5.639546 -4.115297 0.460391 -0.097055 -7.021504 -0.470709 0.680785 0.885356 0.854076 1.295168 -2.975001 -0.148974 0.689869 10.218873 -1.386990 -0.153037 1.263027 3.034852 3.784199 -1.334517 -2.261422 3.918615 6.077432 8.973999 -4.929477 -4.282341 -4.446029 1.535041 1.348964 0.507669 -3.820868 -1.460440 0.687607 -14.897985 11.274165 -0.028383 1.105281 -5.138546 -0.699198 2.077070 3.049262 -11.960629 14.698743 -2.568692 2.615590 0.803500 -1.655471 -2.042811 -2.962323 9.298430 -1.483032 -0.538935 7.463055 -8.254329 5.428280 1.344762 2.157041 6.950767 -1.066186 -3.210035 2.241078 2.855850 2.304270 0.085582 -11.844315 -1.366510 -0.370951 6.525731 5.973436 4.339609 3.198183 -3.693081 -4.586335 -2.129926 -3.006333 1.827804 -5.172113 2.813672 3.241341 -8.503525 3.415873 -0.587702 -7.774480 3.711522 3.623695 4.696892 0.062756 2.176186 0.554034 -3.784564 -0.755234 3.869600 2.133361 2.758014 -1.832058 -7.767610 3.529351 -8.553811 -2.544934 -2.946175 8.322017 1.043035 0.700073 -0.823657 -4.609761 -6.539589 -10.008534 -1.257636 -0.515600 5.039158 0.436677 -0.888147 2.371606 -1.413695 6.131055 1.268204 -3.200222 -1.578396 -1.114993 3.234063 -13.168439 -14.253301 -1.678920 0.659072 0.852011 -5.438573 0.753548 -3.279811 -4.449879 0.870611 3.951633 5.380121 3.133598 -3.618032 5.417880 -5.548505 6.970149 11.593781 1.111220 3.978144 -1.508487 1.319699 0.632028 1.536527 -0.337102 -11.241306 -0.869170 -1.317265 -1.556406 6.033736 6.936177 -11.677047 -2.831575 -0.624579 -8.994413 -1.880348 -2.092849 -0.153002 4.874824 1.880266 5.725292 -1.088617 6.249841 -4.015746 -12.636939 1.170077 -3.664557 3.284770 6.337069 1.894723 -1.765963 1.590200 -7.593997 -3.952773 2.946277 1.814001 -1.008914 0.238578 11.618607 -0.539603 -1.081674 2.913442 5.671933 3.471568 -2.467527 5.302507 -6.416874 -1.356765 3.329329 1.163373 -9.104215 6.052809 1.435722 -0.122821 4.142280 -0.094887 -3.480330 2.358654 -2.754018 -3.530942 -2.845462 6.761652 -0.159897 5.533895 2.098150 -5.842448 -2.091113 0.360839 0.683474 7.901910 -2.535374 0.494800 -0.224902 2.903124 -5.906191 14.882850 1.626476 5.668781 -1.074688 -0.590586 3.823852 0.504407 -2.500304 -0.004625 5.344689 -7.520237 1.635900 2.269338 6.808387 -10.164530 2.403179 -4.726605 -1.588547 2.462359 9.283974 -7.606263 -0.782606 2.803712 5.546941 9.040327 -9.614114 -4.511925 -1.839403 -2.257574 1.925302 -2.306931 -5.360992 3.237039 2.447595 1.924085 -0.232753 6.975356 1.198727 -3.455799 -8.171999 -1.387039 -10.334094 5.880127 -8.301222 -4.032869 -0.609489 1.374100 -0.841103 -3.508270 -2.162343 5.882835 -4.712213 2.021146 2.704111 -1.077479 8.147551 3.202439 5.597937 -3.147111 1.173363 -13.075991 -0.614880 -1.193289 -4.876646 2.611423 -0.697417 -5.062474 3.579766 9.784320 -10.345385 +PE-benchmarks/tarjan-algorithm.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/tarjan-algorithm.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/tarjan-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/tarjan-algorithm.cpp__Graph::SCC() = 2.764605 0.278961 3.554713 -3.212729 -2.973139 1.628716 -1.344836 -2.434581 1.354616 6.367312 2.875539 -2.563121 -2.466168 4.058362 -1.744329 -3.203627 1.915322 0.478194 1.785564 -1.829249 0.441794 1.303313 -0.566778 -1.905278 1.215733 -1.723115 -0.356577 2.626783 1.592773 1.432114 -3.151682 -0.377232 -0.080612 6.232904 -0.132970 -0.980490 0.345915 6.953813 -4.540742 4.518226 -6.389193 -6.380543 5.593125 1.164270 1.014295 -2.706409 -2.001958 2.095070 -3.392117 -2.606074 1.675261 -1.808971 2.372972 -2.582560 -0.131200 4.207691 -9.188072 1.266194 0.365984 -2.492267 -2.791775 0.189948 2.177246 2.119727 -2.067308 -3.287482 1.823590 2.491684 -2.309157 0.636556 -2.390462 -6.234213 4.223730 1.510327 -2.259574 1.264449 2.341281 -5.205995 4.030220 -2.799342 -4.561077 -1.514282 0.356513 -3.328610 3.701399 1.657660 5.661519 -7.780110 2.712147 -7.693828 5.356810 -4.143848 4.518415 5.282389 -4.324691 1.912787 3.622832 4.375421 3.850455 0.255651 6.600673 3.827343 2.333537 -0.229983 3.455713 3.878315 -3.822451 -2.683686 -4.006619 -4.650648 -0.550356 -2.506690 -7.651647 0.307683 -3.709770 1.354712 1.906408 -2.068760 -0.449207 6.441024 -8.378633 -1.835899 1.331590 -0.765960 2.681244 4.425828 -0.311664 0.227763 0.398842 6.327719 -2.723278 -1.296826 0.188879 2.708932 -3.162222 -4.026066 -4.139614 1.523927 1.930788 -5.493766 -5.885522 -7.820458 -0.598469 3.167160 -0.743662 5.654808 10.059721 -1.639689 -4.781077 3.896007 -1.265784 -1.698265 7.882480 1.283176 8.317451 -5.853313 1.902554 -3.202731 0.830298 0.936700 4.077982 -0.015952 -1.165861 3.012435 0.974443 -2.004909 4.860893 -1.551431 -0.136354 -2.355873 1.204522 -2.209823 -1.854030 5.300942 -3.494391 4.695560 -1.294762 8.224163 -3.872222 -5.811841 2.887553 -5.171929 -1.968174 -2.222517 -1.367107 0.230357 4.346892 -4.939271 -3.049832 -3.153497 -1.936221 -0.140758 4.023950 -0.357217 1.419804 0.696051 -1.791485 4.947329 3.576846 0.460131 0.702313 -5.517121 0.419863 3.145775 -2.529605 -6.683055 -0.213039 -4.979516 0.731766 1.090725 -0.494566 4.463833 -3.849782 -3.403604 -0.242980 -1.245406 1.395359 -1.808395 -5.772033 1.945547 -1.073106 2.003942 2.414177 5.885473 5.694368 5.167157 1.268342 -0.243967 1.073138 -2.572613 -1.045437 1.411767 1.469904 1.898729 1.530568 4.738352 0.669765 2.095333 3.199311 2.344550 1.222476 5.465868 0.666754 5.934682 -2.043710 0.847226 0.459742 -2.730093 4.120708 7.698320 -2.058380 -0.439493 1.925536 1.115757 -1.965485 -3.857272 0.372661 -1.714160 -1.676074 2.079019 3.348476 0.158651 -3.071737 6.460894 2.535619 -9.356783 5.236001 -0.520152 1.009329 4.682027 -2.076494 0.688443 1.512680 -1.818638 3.954385 2.864731 4.067996 -5.897701 -0.762540 0.083519 4.888347 2.415355 1.010766 -8.372395 2.335447 2.080874 4.576469 2.957773 6.030987 -4.700633 -1.470029 -0.834918 -4.205594 -2.199875 -0.860878 2.293940 -2.689249 1.613266 -5.781960 -0.945688 +PE-benchmarks/topological-sorting.cpp__main = 0.452614 0.582778 0.454754 -0.186541 -0.817762 -0.191546 -0.898848 0.001044 0.061102 -0.314553 -0.259664 -0.757951 -0.972719 0.659843 -1.167380 -1.083687 -0.618538 -0.193836 -0.109721 -0.960108 -0.117403 0.204611 0.117575 0.147804 0.287232 -0.353441 -0.148242 0.193629 1.797307 -0.506260 -0.231796 0.203549 0.505113 0.797053 -0.232346 -0.412794 0.718952 1.337506 1.433820 -0.594359 -0.815104 -0.738334 0.374255 0.161539 -0.026666 -0.922691 -0.371188 0.285922 -2.537236 1.728603 0.184016 0.224852 -0.976485 -0.183359 0.430448 0.766029 -2.325490 2.642944 -0.289801 0.644402 0.230097 -0.343129 -0.408097 -0.617902 1.581901 -0.368065 -0.068512 1.107038 -1.525112 0.877716 0.118381 0.202917 1.526306 -0.058423 -0.603638 0.454159 0.514949 0.207106 0.161302 -2.208468 -0.387391 -0.040841 1.071562 1.104717 1.013080 0.443607 -0.723641 -1.005212 -0.398168 -0.750693 0.333015 -1.159030 0.512422 0.788614 -1.519802 0.622203 -0.088936 -1.415859 0.670333 0.711191 0.975189 0.044045 0.414052 0.086312 -0.532022 -0.131996 0.559392 0.292742 0.376100 -0.462189 -1.310498 0.667546 -1.709691 -0.332700 -0.493166 1.485426 0.252466 0.207809 -0.103873 -0.846712 -1.131861 -1.635227 -0.157323 -0.127557 0.957239 0.412505 -0.230820 0.349701 -0.445212 1.196685 0.246938 -0.304596 -0.335042 -0.125769 0.586932 -2.492642 -2.465431 -0.339812 0.171269 0.060829 -1.094156 -0.088211 -0.463170 -0.834750 0.010493 0.744943 1.191758 0.416090 -0.672458 1.168881 -0.687126 1.375907 2.004441 0.142234 0.915992 -0.325176 0.205970 0.181547 0.187219 -0.176812 -2.041770 -0.109912 -0.310539 -0.287048 0.980199 0.790375 -1.663544 -0.393180 -0.181794 -1.239139 -0.391504 -0.463280 -0.326608 1.080861 0.549586 1.113429 -0.033402 1.278187 -0.656404 -2.187750 0.351759 -0.377742 0.651693 0.812559 0.142364 -0.188637 0.263039 -1.393266 -0.721399 0.475627 0.346286 -0.324353 0.096131 2.003118 -0.084130 -0.168130 0.606147 0.863239 0.773631 -0.494084 1.015979 -1.326539 -0.127316 0.544309 0.090561 -1.689988 1.096691 0.189910 -0.044014 0.899904 -0.068952 -0.598091 0.369907 -0.632044 -0.445965 -0.502609 1.185275 0.026233 0.842141 0.267601 -0.963491 -0.347612 0.188934 0.253424 1.477729 -0.299064 0.173591 -0.020877 0.479150 -0.814081 2.329963 0.138292 0.765832 0.005616 0.016539 0.591359 0.212622 -0.431736 0.113423 0.951915 -1.304359 0.440650 0.630163 1.373013 -1.527660 0.222653 -0.713879 -0.379963 0.579272 1.737436 -1.488113 -0.082705 0.579050 1.034318 1.455981 -1.689365 -0.768794 -0.392457 -0.579153 0.516800 -0.514075 -0.888682 0.557192 0.620918 0.177700 -0.287860 1.183433 0.224121 -0.444251 -1.304335 -0.127420 -1.625628 1.074816 -1.592307 -0.570161 -0.022797 0.402396 -0.167411 -0.678755 -0.358500 0.995801 -0.863682 0.454482 0.312278 -0.220489 1.425154 0.712316 1.039809 -0.566788 0.165344 -2.240098 -0.067031 -0.185543 -0.812392 0.365118 -0.003282 -0.924733 0.461905 1.465143 -1.768309 +PE-benchmarks/topological-sorting.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.184262 0.673657 1.722379 -1.729688 -2.872859 1.172808 -1.831732 -1.899786 0.316874 2.962551 1.453898 -2.066758 -1.086592 3.824071 -1.518946 -2.523166 -0.386599 -0.082141 0.195002 -1.342631 -0.216299 1.270136 -0.635684 -0.076153 0.292887 -0.898102 -0.128919 0.948204 1.462100 -0.079143 -1.905324 -0.421027 -0.180178 3.749085 0.530247 -0.341129 0.873852 4.996156 -1.827698 2.951108 -3.728051 -3.780690 2.243919 0.718219 0.216330 -0.975374 -1.575939 1.685365 -2.908533 -0.273586 2.008016 -0.685445 0.048792 -0.459747 1.227776 2.055208 -5.592654 2.955369 0.287867 -0.666953 -1.195878 -0.637730 0.788272 1.038659 -0.857009 -1.900391 1.062246 2.627106 -1.716215 0.192012 -1.037798 -4.060280 3.520084 0.798124 -2.128030 0.482563 1.379097 -2.102946 2.464913 -2.937750 -3.458069 -0.367829 0.848341 -1.624168 2.706325 1.670638 2.492420 -5.337874 1.662418 -5.019692 2.762476 -2.500338 2.561745 3.581958 -3.273680 0.728893 1.894970 2.112883 3.081772 0.473154 3.616766 1.257057 0.599984 0.618364 1.510049 2.170252 -1.979060 -1.211431 -2.260315 -3.579095 -0.322637 -0.755323 -4.461280 0.322103 -1.563156 1.845620 0.335402 -0.217447 -0.578988 2.260672 -5.431610 -2.325003 0.365171 -0.483943 2.762211 2.860175 -0.836432 1.480855 -0.651806 3.893236 -1.705890 -0.348532 -0.720358 1.331737 -1.402818 -2.443968 -4.930360 1.338421 1.856011 -2.693941 -3.631095 -4.629611 -0.705185 1.334648 -1.035267 4.800283 6.454432 -1.871057 -3.087712 3.533007 -0.600326 0.282674 5.086799 0.392728 5.059277 -2.973574 0.740128 -1.524302 -0.282788 -0.202962 0.388398 0.582765 -0.726963 1.475357 1.040132 -0.529993 2.504058 -0.782855 -1.722821 -2.968790 1.051484 -1.177828 -1.132662 3.774473 -1.774559 2.259514 -0.255806 5.226501 -2.692983 -3.764295 1.751021 -3.649892 -0.595970 -1.257197 -1.242324 -0.315169 3.122900 -3.399655 -1.548665 -0.928575 -1.198859 -1.224665 1.109891 1.712382 0.780214 0.589121 0.348034 3.896514 4.055729 0.871388 0.483028 -3.888752 0.401342 2.386292 -1.414902 -3.913600 0.421635 -2.729113 0.008557 0.984329 -0.655308 1.430073 -2.586777 -1.850399 -1.175986 -1.017782 2.437171 0.342579 -3.113045 1.393307 -1.418875 1.455569 1.961392 2.810849 3.727366 3.514634 2.712990 -0.056237 0.736030 -1.387879 1.151648 1.008192 1.802587 1.491047 1.574048 3.192085 1.213480 0.842469 1.943447 1.546383 0.033689 3.291094 0.401220 5.298773 -1.673501 1.094961 -1.108114 -0.923650 2.580114 6.121421 -3.026271 0.249537 1.615321 0.982890 -0.346546 -2.921147 0.097847 -1.707814 -0.891073 0.773322 1.135932 -0.394682 -1.461058 4.208830 0.516072 -4.824208 3.077813 -0.010519 0.777921 1.971372 -0.844108 -0.466594 1.196555 -3.007206 2.423251 2.612663 2.665642 -2.965700 -0.427604 -0.533618 2.974231 1.237289 1.446530 -3.872692 2.007123 2.531025 3.096303 1.820548 2.055831 -2.719839 -2.277580 0.455236 -2.467523 -1.238332 0.308071 1.982357 -1.496076 1.576753 -2.126189 -2.957943 +PE-benchmarks/topological-sorting.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/topological-sorting.cpp__Graph::topologicalSort() = 1.755732 0.493673 2.583960 -2.597074 -0.599804 0.871930 -0.512903 -1.224499 1.287664 5.350704 0.982167 -0.768680 -3.425284 3.494354 -1.602015 -2.558129 2.194657 -0.477076 2.007819 -1.143049 0.536433 1.279331 0.840571 -1.188073 1.614902 -1.693807 -0.565956 1.987274 2.223307 -0.303584 -2.031072 -0.133070 0.444249 4.365112 -1.073312 -0.263971 -0.104977 5.107932 -2.949404 4.825147 -3.938846 -4.363202 4.203318 0.888081 -0.328541 -2.325547 -0.327067 1.258404 -1.796418 -3.118097 1.080680 -1.196430 1.131853 -2.324295 -0.276792 3.731251 -6.410060 0.881932 -0.477386 -0.788509 -0.838201 -0.317669 1.738927 0.965711 -0.993369 -2.292132 0.948843 0.613094 -4.316146 0.169561 -1.676131 -3.081133 3.285191 1.447926 -2.150262 1.527105 1.999796 -3.241023 2.233366 -3.355655 -2.576308 -1.287810 0.333337 -0.887106 2.581673 1.543816 3.330955 -5.920999 0.941007 -4.198632 4.476499 -2.856542 4.078858 3.793354 -2.351859 1.965909 2.427657 2.807078 1.470157 -0.955398 5.703700 2.523838 1.322467 -0.131405 2.360585 2.368326 -3.371976 -2.222700 -2.774116 -2.772342 0.348835 -1.505741 -4.516075 -0.616703 -3.133028 0.560411 2.897605 -1.658940 -1.593474 3.442876 -7.528034 -2.213205 0.749538 -0.655684 2.486559 3.522640 0.399619 -0.144112 1.164953 4.915353 -1.956779 -1.320183 0.146327 1.650007 -1.004712 -1.663035 -1.431807 -0.641542 0.688889 -3.981666 -4.268502 -5.985722 -0.866253 1.667936 -0.287815 4.219401 7.647240 -0.587963 -2.560706 2.865891 -2.049883 0.248003 5.114417 0.831625 5.940568 -4.679788 0.929328 -1.706911 0.903225 2.329906 5.902463 0.112959 -0.554128 1.367199 0.960721 -0.482156 -0.213301 -1.586072 0.082745 -2.458378 -0.080196 -2.095698 -1.855456 3.397941 -4.058629 3.315792 -2.063903 6.219632 -2.318713 -4.784939 1.941372 -4.199081 -1.373367 -3.205723 -1.176112 -0.526272 2.814568 -4.398765 -2.164416 -2.266831 -0.670336 0.176169 2.731730 -3.095332 1.236658 -0.729383 -1.503335 5.493031 2.264282 -0.139982 0.563152 -4.489185 -0.143913 2.322877 -1.067801 -5.125587 0.847940 -3.559640 0.152467 2.083803 -1.725545 1.946341 -2.648032 -2.777296 -0.294282 -1.833849 0.386255 -2.088018 -5.227875 0.979880 0.142765 0.481386 2.448498 4.360776 3.971126 2.874518 0.392861 -0.249752 1.080221 -1.771584 -2.243277 1.587066 0.276242 1.569355 1.546788 3.523467 0.804680 1.527571 3.241273 1.473532 0.377934 3.987345 0.164851 4.268204 -0.708700 -0.090717 0.448293 -2.701538 2.638483 5.472849 -1.573727 -0.587628 2.481890 0.667374 -0.514789 -2.471471 0.596907 -2.059758 -0.974399 3.243872 2.185365 0.375658 -1.956415 4.781773 0.588799 -7.249466 3.792201 -0.607437 0.441345 3.134708 -1.491149 0.742960 1.553468 -2.197244 1.620969 1.432791 3.615456 -4.070406 0.963726 -0.481544 3.169916 2.058541 0.057604 -7.793990 0.113289 1.028412 4.188994 2.848048 4.687612 -2.330341 -0.842934 -0.429942 -1.984382 -1.429025 -1.675336 2.476755 -1.647754 0.237839 -4.253147 0.887192 +PE-benchmarks/find-minimum-number-of-coins-that-make-a-change.cpp__main = 0.491882 0.322953 0.274994 -0.710253 -0.906049 0.318848 -0.605452 -0.496920 0.094978 -0.114510 0.548559 -0.676382 -0.476510 1.024055 -0.517586 -0.829165 -0.101619 -0.510287 -0.083041 -0.145241 0.008862 0.254845 -0.162441 -0.024082 -0.069303 0.000000 -0.177666 0.250978 1.142702 -0.487943 -0.982881 0.039065 0.049397 0.998484 0.264898 -0.488286 0.527365 1.411393 0.048823 0.249715 -0.895487 -0.484002 0.460303 0.147426 -0.297170 -0.922919 -0.746317 0.457697 -1.189538 0.361014 0.737960 -0.249558 -0.182267 0.010667 0.296983 0.938799 -1.784592 1.453322 0.174198 0.581557 0.262949 -0.291178 0.152679 0.077966 0.364256 -0.532174 0.405623 0.607665 -0.752405 0.055864 -0.405825 -1.029252 1.591976 0.279501 -0.666101 0.015332 0.259344 -0.917437 0.588971 -1.162626 -0.905957 0.144671 0.267948 0.201986 1.127804 -0.032410 0.009857 -1.342909 -0.053317 -1.436472 0.368591 -1.013809 0.585950 0.922637 -1.291744 -0.059914 0.211484 -0.108551 0.917241 0.395739 1.035186 0.265318 0.188663 -0.148171 0.337284 0.267391 -0.021164 0.050929 -0.165019 -0.919337 -0.577984 0.194485 -1.932982 0.163373 -0.525122 0.557209 -0.033763 0.008678 -0.077505 0.231175 -0.768355 -0.933865 -0.151686 -0.122172 0.840034 1.215619 -0.315088 0.451453 -0.457237 1.133140 -0.039418 0.110432 -0.354585 0.151538 -0.117025 -1.681447 -1.776121 0.286804 0.662118 -0.563238 -1.170059 -0.893481 -0.086283 -0.484022 -0.275392 1.009015 1.514352 -0.309646 -0.865711 1.144405 0.200797 0.472854 1.723705 -0.114533 1.574714 -0.765772 0.365308 -0.118410 -0.114000 -0.592752 -1.000151 -0.058201 -0.121739 -0.014617 0.248107 -0.553411 0.423119 0.040735 -0.485628 -0.143825 -0.090693 -0.397705 -0.839947 1.226141 0.406775 0.698108 0.409770 1.433206 -0.628097 -1.346797 0.633685 0.111227 0.248140 -0.039269 -0.435233 0.172453 0.699337 -0.808940 -0.451114 0.044623 0.123120 -0.487682 0.330651 1.323444 0.137534 0.167767 0.326345 0.413608 1.291646 -0.084815 0.674420 -1.083423 0.228195 0.803946 -0.418962 -1.226862 0.300692 -0.686862 0.052361 0.540859 -0.219762 0.226592 -0.466434 -0.844921 -0.198397 -0.196345 1.046312 0.303942 -0.598591 0.376862 -0.707463 0.043531 0.419172 0.718541 0.966541 0.761293 0.713448 -0.270156 0.323656 -0.189968 0.681576 -0.154210 0.381200 0.412979 0.376983 0.763403 0.243070 0.049625 0.450181 0.593889 -0.276643 0.776957 0.547188 1.409653 -0.319139 0.119356 -0.445945 -0.577585 0.807491 1.980288 -0.999414 0.052262 0.360937 0.653826 0.263080 -1.396075 -0.170331 -0.414149 -0.525823 0.375772 -0.132702 -0.087726 -0.260475 1.106364 0.080462 -1.048928 0.819451 0.069426 0.078769 0.180686 -0.203480 -0.375066 0.363660 -1.181865 0.501113 0.615403 0.729087 -0.365431 -0.526931 -0.166114 0.745328 -0.426791 0.403813 -0.500012 0.510954 0.965278 1.001590 0.904217 0.084817 -0.553189 -0.949236 0.152548 -0.327494 -0.266235 -0.019520 0.559809 -0.961358 0.196511 -0.002535 -0.962762 +PE-benchmarks/largest-independent-set-problem.cpp__main = 0.380293 -0.562656 2.259091 -2.117253 -4.191772 1.899972 -3.772736 -2.516434 0.577121 -0.186039 1.477286 -1.582268 -0.526321 3.700440 -2.007397 -3.078842 -1.228515 1.818515 0.875478 -1.582669 0.494127 1.053409 -0.908359 0.933987 -1.115735 -1.876944 0.450514 1.255779 2.879675 1.403529 -1.953650 -1.049659 -0.966003 3.402884 1.715692 0.503171 1.271056 5.455077 0.441572 3.043127 -3.204813 -3.091022 0.650345 0.636220 0.081181 -1.766976 -3.591060 0.606312 -5.059134 1.753488 2.881955 -0.970566 0.943135 1.375568 2.074157 0.371125 -4.442671 2.798021 -0.217844 -0.809522 0.742709 -0.937767 -1.098345 1.632260 -1.164028 -0.984627 1.215848 4.435339 -0.929126 0.269215 0.213937 -3.596545 5.471314 0.914848 -2.994416 -0.323101 3.369367 -2.417959 2.185274 -1.804261 -4.683045 -0.090847 -0.402048 -1.590221 3.695315 0.629257 2.868159 -4.712658 1.792307 -5.584846 2.205814 -2.806929 1.595875 3.280479 -4.847686 0.243189 2.841019 2.942050 3.617222 0.711544 2.870666 2.318929 -0.747731 1.147082 2.469420 0.936898 -0.184730 -0.589332 -1.985485 -3.539984 -1.281069 -2.177554 -7.118160 -0.225029 -0.031438 2.821043 -1.898789 0.838394 -0.348829 2.000074 -4.363906 -0.872693 0.143602 -0.486716 1.688450 2.005474 -1.504523 2.166858 -0.645699 4.142432 -2.992657 -0.209164 -0.898315 0.939400 -1.480998 -2.096074 -6.868619 2.035654 2.215484 -1.528522 -3.702895 -2.798731 -1.681778 2.128867 -0.081374 4.075531 5.865091 -2.073556 -3.190455 3.616963 -0.196783 -0.055639 5.475834 1.036144 3.370511 -1.068851 -0.529363 -3.447779 -1.714365 -1.757771 -1.308290 1.268889 0.092503 2.292734 0.781096 -1.585343 3.907897 -2.214422 -3.131730 -4.249700 0.481578 -1.686904 -0.672578 4.165700 -2.158656 1.785407 -0.252240 4.597829 -1.880091 -4.180637 0.485518 -3.688252 0.210421 -0.366988 0.258217 -0.108637 3.039257 -3.691744 -2.063240 -0.333494 -1.540496 -1.054132 0.219222 3.647523 0.461447 1.863933 1.640166 4.311467 5.510391 2.324872 0.008334 -2.675294 1.090075 2.303800 -1.845255 -3.215637 0.629921 -1.838377 0.269736 -1.039933 0.234597 0.988070 -2.827765 -1.660262 -3.366136 -1.288135 3.296363 2.295054 -4.056998 1.593293 -0.663590 1.941723 1.900710 0.936103 4.490296 3.705131 4.173936 0.272442 0.982864 -0.937849 2.870494 1.175459 3.997973 0.260517 0.566376 4.638085 1.414125 0.524479 1.612197 3.543760 1.829376 2.289794 0.416017 5.564688 -0.848369 1.018246 -2.246162 0.383410 2.642103 7.389509 -1.636148 2.817008 1.146456 1.925429 0.509022 -4.875060 0.514110 -1.146398 -0.345247 1.102498 1.053510 -0.179792 -1.405504 2.966228 1.020558 -3.439525 2.007660 0.493876 0.314637 1.866459 -0.579206 -1.467549 0.537721 -3.494352 3.832898 2.652400 1.421669 -2.480204 -1.452519 -0.487250 1.560716 1.947113 2.622223 -1.013221 2.350828 2.750252 3.183628 1.537856 1.176975 -2.857386 -3.383703 1.556082 -3.335793 -1.641218 0.907453 1.061023 -2.044377 1.773888 -0.290590 -6.178712 +PE-benchmarks/largest-independent-set-problem.cpp__LISS(node*) = 1.817386 -0.385721 4.033958 -4.524223 -4.326572 2.785902 -2.325679 -4.090286 1.293504 6.069174 1.967553 -1.399519 -1.911495 5.656409 -2.587500 -4.725675 0.327631 1.405361 1.343975 -2.542695 0.758314 2.149336 -1.165036 -0.677709 -0.316159 -3.364344 1.676249 2.478603 1.200446 2.722782 -3.179415 -1.967042 -1.375009 6.846644 1.468656 1.878364 -0.373492 8.336867 -3.121977 7.538205 -8.128172 -8.077861 3.702636 1.153037 1.082357 -4.348920 -2.775704 1.237373 -3.204084 -1.559911 2.882355 -2.203521 2.406239 -0.743722 2.132096 1.983377 -7.211775 1.057811 -0.348305 -3.291955 -2.194599 -1.616554 1.864558 3.579631 -5.007838 -2.985924 2.470353 4.896224 -2.609508 1.423831 -1.624123 -7.641632 5.503024 2.569464 -4.683950 0.168367 3.684881 -6.052248 4.024546 -2.396056 -6.207554 -1.471000 0.104445 -3.812785 4.180448 2.144261 7.273939 -9.549994 3.896047 -8.925805 5.205391 -4.192792 4.931938 5.843941 -4.665044 1.633719 4.392489 7.911053 4.763536 -1.313187 5.728947 5.078504 1.779628 0.519197 5.204332 3.674493 -3.710151 -3.904952 -4.376958 -5.774271 -0.016048 -4.757133 -10.461129 -0.371716 -2.152028 1.436921 -0.707672 -0.689029 -1.562981 6.255719 -12.235551 -2.583431 1.460878 -1.053174 3.448114 3.440418 -1.323480 2.719979 0.629727 6.886290 -4.263349 -0.620791 -1.382098 2.668695 -4.995361 -0.314831 -6.585661 2.367817 3.064430 -4.695938 -6.825085 -8.100873 -3.343939 6.000392 -0.357577 7.494617 10.953715 -3.075122 -6.525376 4.576537 -2.013637 -1.973898 7.734117 1.816181 6.869872 -5.177085 1.690523 -5.137899 0.576836 0.208111 5.750552 0.997311 -1.497981 4.574765 -0.747844 -2.693619 5.431302 -3.506834 -2.526729 -7.345663 1.124784 -3.377956 -0.435994 6.711450 -8.764338 5.243200 -3.407512 8.086229 -5.494795 -5.336749 1.146655 -10.939191 -1.892337 -3.716944 -0.340585 -0.844184 6.685706 -6.833657 -3.595917 -2.563946 -3.754826 -0.132855 2.885855 -2.543903 0.399516 0.811804 0.376993 10.195920 6.823118 2.727783 -1.137955 -4.483303 1.774548 4.380568 -2.070926 -5.878933 -0.420074 -4.817235 -0.213454 -1.597601 0.056839 3.318968 -4.983223 -2.905832 -3.059590 -2.157592 2.401512 0.270893 -9.204336 2.382892 -0.791944 3.413896 2.366056 4.578608 6.831563 6.260961 4.607415 -1.438788 2.143719 -3.813928 -0.818523 3.094772 4.897471 0.211906 1.703713 7.708143 1.772348 1.494343 4.540621 4.824760 2.870801 5.125876 -0.086514 8.354900 -1.704107 1.407429 -1.275035 -1.282976 3.796318 10.937477 -1.055235 2.964888 2.733800 1.699148 -1.964526 -4.909184 0.383452 -2.614546 -0.769311 2.382773 3.721019 -1.147303 -3.235342 7.749433 2.317370 -9.106471 3.828928 0.018256 1.397621 5.895023 -2.724437 0.169539 1.728740 -3.218210 6.533116 3.523138 3.437344 -5.718859 -1.300664 -0.544532 3.530880 5.484396 1.506060 -6.544019 3.582492 2.983351 7.354176 2.891364 6.542545 -4.930654 -0.913943 0.805344 -5.232929 -2.131280 0.202873 3.459979 -1.809135 1.356776 -6.544431 -4.858496 +PE-benchmarks/reservoir-sampling.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +PE-benchmarks/reservoir-sampling.cpp__selectKItems(int*, int, int) = 1.321865 1.119144 1.591013 -2.434975 -1.307270 0.586664 0.867000 -2.066766 0.158112 5.225361 1.748396 -1.957722 -2.429289 3.279659 -1.050831 -2.743461 1.268102 -0.097692 -0.180131 -1.602097 -0.229728 1.305008 -0.327834 -2.093700 1.640491 -1.149858 0.326054 1.992589 0.824419 0.151254 -1.646518 -0.232335 0.647149 4.832348 -0.194022 0.477799 -0.654918 4.633645 -3.821104 3.930580 -5.547023 -4.903193 4.958041 0.765207 0.244032 -3.183354 -0.594845 1.880670 -1.256596 -2.542989 0.489656 -1.271836 0.897617 -2.774340 -0.013734 4.233449 -5.792536 1.528861 0.661542 -2.217230 -3.213331 -0.454040 2.286715 0.936757 -2.025951 -3.083236 0.825733 0.946790 -2.378219 0.924095 -2.664944 -4.948394 3.053402 1.009790 -1.794785 1.173299 -0.559653 -3.525369 2.380360 -1.994294 -2.177153 -1.444276 2.163421 -0.600070 1.420636 2.293510 3.556415 -6.695844 0.034470 -5.184814 3.865588 -2.596824 4.422074 3.650466 -2.308082 1.935430 1.391905 1.918370 1.850847 0.064002 4.430706 1.454539 2.610893 -0.616972 2.080825 3.190610 -3.490880 -3.388511 -2.455820 -3.177042 0.635812 -0.941029 -5.065540 0.453887 -3.975048 -0.016532 1.499086 -1.608368 -0.501200 4.108516 -6.748107 -2.392958 1.262921 -0.590971 3.439509 3.498622 0.386705 0.805958 0.160193 3.826934 -0.658260 -0.325849 -1.115536 2.354625 -1.924850 -3.235803 -2.233764 0.426437 1.450613 -4.114068 -4.363223 -6.063173 -1.127784 2.092272 -1.324178 3.274200 7.041667 -1.591177 -4.058274 2.774034 -0.777385 0.016587 4.485302 0.652971 6.744088 -5.543709 2.752870 -0.774128 1.753752 2.187928 4.744318 -0.938629 -2.581967 1.744309 0.023181 -2.248718 2.229600 -0.692059 0.194327 -1.838841 0.828137 -1.414686 -1.497241 4.034567 -3.293969 4.496493 -2.618387 5.860321 -4.551874 -3.935751 2.110573 -4.661146 -1.917732 -2.563263 -1.312424 -0.303991 3.851051 -3.948446 -2.165912 -1.885243 -1.250560 -0.146078 3.338558 -2.654818 0.078225 -0.997640 -1.512869 3.952433 2.169175 -0.644341 0.346085 -4.065664 0.453210 3.015241 -0.068572 -5.657140 -0.238322 -3.736540 -0.565291 0.928002 -0.728516 2.773067 -1.951217 -1.772694 0.780802 -1.356284 0.923698 -1.981932 -3.760442 1.603996 -1.491992 0.687473 1.242798 5.287778 4.006136 3.222608 0.328659 -0.853352 1.277077 -3.186718 -2.043655 1.823088 0.674026 1.672654 2.073082 3.326216 0.925770 1.262009 3.132769 0.545200 0.179796 4.413126 0.912585 4.916977 -1.981061 0.628554 0.818061 -2.361672 2.820672 5.496368 -1.522118 -1.860318 2.053254 0.483339 -1.605538 -2.289322 -0.654118 -1.575063 -2.098008 2.685333 2.047509 -0.853233 -2.087369 6.619661 0.949904 -7.088767 4.232128 -0.270251 1.256470 2.614332 -2.033645 0.731760 2.464227 -1.120124 1.655893 1.837232 3.830723 -4.212714 -0.779308 -0.480119 3.692136 2.713474 -0.651268 -7.315311 1.388676 1.894087 4.980644 2.201090 4.466389 -2.533130 0.364528 -1.092243 -1.591188 -0.728822 -1.032745 2.381043 -1.219865 0.099794 -5.525473 0.494865 +PE-benchmarks/min-cost-path.cpp__main = 0.380077 0.121490 0.176142 -0.313987 -0.350761 0.235514 -0.498287 -0.255548 0.059174 -0.265476 0.181824 -0.284615 -0.329733 0.394495 -0.341345 -0.543463 -0.062745 -0.297771 -0.035008 -0.156825 -0.052986 -0.017556 -0.075873 -0.058996 -0.052306 -0.062091 -0.015241 0.093046 0.683443 -0.298431 -0.575779 0.052525 0.011833 0.586114 0.180652 -0.232293 0.380871 0.780996 0.470878 -0.025570 -0.405139 -0.291516 0.191007 0.054584 -0.170165 -0.318245 -0.245857 0.221282 -0.938890 0.431276 0.363219 -0.181103 -0.220329 -0.006354 0.099079 0.513973 -1.064488 0.967928 -0.001797 0.451633 0.127621 -0.242761 0.087880 -0.066369 0.478935 -0.267630 0.295124 0.470022 -0.607361 0.165270 -0.263589 -0.462962 0.975147 0.186862 -0.326291 -0.004594 0.185656 -0.304253 0.215580 -0.685571 -0.471266 0.044131 0.203701 0.195387 0.751508 0.019290 -0.140305 -0.708124 0.004501 -0.780245 0.160086 -0.575988 0.369570 0.480167 -0.787047 0.011663 0.100466 -0.126567 0.301385 0.202038 0.584502 0.032597 -0.044031 -0.120426 0.165742 -0.080378 0.123190 0.102762 0.070433 -0.397837 -0.495206 0.154356 -1.053174 0.034002 -0.410678 0.562359 -0.068668 0.180319 -0.120613 -0.205664 -0.548756 -0.694684 -0.197397 -0.078876 0.642156 0.523625 -0.192154 0.315956 -0.195573 0.667158 0.040124 -0.122758 -0.281149 0.020026 0.187820 -0.932093 -1.178138 0.102977 0.468118 -0.227413 -0.754969 -0.296043 -0.170986 -0.294007 -0.081054 0.740318 0.763929 -0.014124 -0.391154 0.603810 -0.139692 0.509162 1.153079 0.002525 0.758852 -0.430458 0.280391 0.041261 0.062237 -0.358568 -1.165019 -0.139304 -0.015468 -0.005534 0.270864 0.256662 0.016387 -0.031792 -0.223532 -0.148066 -0.174648 -0.221201 -0.484601 0.679985 0.364816 0.401213 0.400565 0.842317 -0.394252 -0.844356 0.301732 0.119575 0.212291 0.146410 -0.178496 -0.083849 0.344936 -0.565433 -0.364145 0.155222 0.178901 -0.174002 0.218005 1.234605 0.041890 0.051598 0.183187 0.276493 0.696081 -0.124735 0.408586 -0.631658 0.064977 0.466789 -0.230751 -0.498748 0.252286 -0.245233 0.034517 0.425797 -0.044904 0.037030 -0.225892 -0.493764 -0.158741 -0.003454 0.685357 0.211687 -0.199070 0.173753 -0.328319 -0.214618 0.273875 0.363248 0.566118 0.266070 0.328648 -0.255209 0.226334 -0.112127 0.583745 -0.209220 0.222912 0.427053 0.119128 0.294676 0.073072 -0.046746 0.133196 0.410704 -0.241285 0.363776 0.413820 0.752360 -0.318366 0.112685 -0.306140 -0.395022 0.445987 1.038036 -0.851729 0.112480 0.216150 0.470359 0.353803 -0.922314 -0.197456 -0.240807 -0.252341 0.095343 -0.146029 -0.082043 -0.123459 0.606975 0.090927 -0.481897 0.486437 0.094490 -0.063366 0.013601 -0.164018 -0.362257 0.230869 -0.745850 0.155701 0.225720 0.367288 -0.134572 -0.111014 -0.113532 0.456162 -0.582645 0.154825 0.165119 0.224510 0.556847 0.539494 0.718678 -0.237138 -0.206880 -0.650188 -0.004965 -0.250875 -0.133499 0.098385 0.352401 -0.514485 0.100899 0.191590 -0.645326 +PE-benchmarks/min-cost-path.cpp__min(int, int, int) = 0.835847 0.371756 1.116604 -1.508597 0.224626 0.218154 1.590468 -0.493278 0.747282 3.230389 0.454703 -0.259188 -1.629181 1.674385 -0.448046 -1.007074 1.586217 -1.769206 0.237546 -0.137077 0.146877 0.879646 0.163745 -1.138070 1.148701 -0.455677 0.062144 1.147888 -0.496173 -0.576630 -1.069270 0.008459 -0.016172 2.152300 -0.602314 0.276420 -0.258654 2.045334 -2.552670 3.033962 -3.275561 -2.250121 2.342921 0.193128 -0.074748 -2.129038 0.447940 0.536245 0.061543 -1.612647 0.209005 -0.759235 0.474493 -1.621303 0.126104 2.438938 -3.116649 0.186851 0.014184 -0.452767 -1.215250 -0.385712 1.387279 0.440302 -0.989742 -1.324774 0.758852 -0.424936 -2.050463 0.807033 -1.141401 -1.869562 0.825738 0.801066 -0.848760 0.700170 -0.065668 -2.243618 1.163377 -2.179799 -0.532757 -0.763592 0.914652 -0.552803 0.824711 0.605801 1.598382 -3.129686 0.039546 -1.752279 2.085010 -1.508742 2.089279 1.683291 -0.063335 1.109535 0.296569 0.972761 0.358301 -0.456604 2.100864 1.254741 1.926898 -0.690486 1.165063 1.521285 -2.058565 -1.789629 -1.140898 -0.908314 0.238569 -0.517595 -1.930705 -0.158518 -1.768566 0.052182 1.652855 -1.002350 -0.643391 2.146597 -3.575595 -0.937251 0.534397 -0.316168 1.361271 1.803018 0.301650 -0.094605 0.367162 2.017461 -0.188567 0.218552 -0.651274 0.971016 -1.345106 -0.858432 0.159109 -0.665928 0.143191 -1.922440 -2.066268 -3.260596 -0.620094 1.135350 -0.229804 2.226017 3.182387 -0.172378 -2.023479 1.097141 -0.534064 -0.003450 1.514717 0.178781 2.438122 -2.748573 1.544199 -0.654826 1.668999 1.085722 4.332178 -0.407058 -1.123916 0.487212 -0.269305 -1.420672 0.541949 0.178752 0.702676 -0.804174 -0.220033 -1.114751 -0.910599 1.887069 -2.283985 2.492894 -1.663972 2.814497 -2.228355 -1.669255 0.948498 -2.464752 -0.610720 -1.918761 -1.059890 0.253145 1.486589 -1.933415 -1.019016 -1.361429 -0.519625 0.377791 1.667201 -2.937465 0.019800 -1.056787 -1.047970 3.202550 0.461729 -0.731876 0.204672 -1.841083 0.209332 1.169060 0.033166 -2.713390 0.228430 -1.461244 -0.281496 0.984787 -0.369455 1.120087 -1.123654 -1.334490 0.936169 -0.637051 -0.340198 -1.570003 -2.964107 0.234174 -0.207920 -0.066514 0.543521 2.207778 1.545290 0.848069 -0.479556 -0.977559 0.305581 -1.493824 -1.832797 0.639071 -0.014126 0.130235 0.692397 1.761948 0.194327 0.228369 1.565344 0.716355 -0.428922 1.809451 0.401761 1.452649 -0.753548 -0.103441 0.823346 -1.663425 1.124520 1.787140 -0.865139 -0.723958 1.214800 0.509504 -0.796857 -0.419793 -0.481033 -1.305997 -0.598730 1.710977 0.702416 -0.724460 -0.783424 3.065274 0.640029 -3.467777 1.579879 -0.213648 0.576136 1.263427 -0.947620 0.400032 1.267641 -0.841896 0.908555 0.009652 1.666193 -1.394379 -0.561944 -0.189340 1.279896 1.472911 -0.467783 -3.943734 -0.419609 0.444510 2.691992 1.482067 3.100006 -0.583785 0.806769 -1.054820 -0.727794 -0.459650 -0.743575 1.242712 -0.620825 -0.216479 -3.328063 1.188592 +PE-benchmarks/box-stacking.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/box-stacking.cpp__maxStackHeight(Box*, int) = 8.660684 -3.055077 8.222956 -5.612010 -2.930383 7.142810 -4.559881 -12.831725 2.293344 22.378063 7.531528 -7.043983 0.865664 14.155906 -4.844261 -8.877397 5.669442 14.763557 2.705395 -4.888951 -1.271782 2.002500 -3.875893 -10.184917 3.739153 -8.106826 7.044677 7.319730 -3.728545 12.513542 -9.182882 -3.487723 -0.461934 22.134564 3.672124 4.834087 -1.372195 18.729720 -17.340714 23.133866 -19.003142 -21.435377 18.949164 4.473985 4.182239 0.327683 -6.606443 5.210923 -4.643067 -13.432194 2.687761 -9.447758 9.076528 -9.366835 0.310034 12.704200 -18.861475 -4.265704 1.487493 -12.926242 -17.249047 -3.209541 10.434301 7.912735 -18.357385 -12.466351 6.711548 13.406738 -3.497727 2.859308 -13.141944 -28.389982 14.789617 3.242637 -10.134219 1.106973 1.676635 -15.566761 9.991142 5.024817 -12.836852 -7.210826 3.419809 -11.865638 6.913279 11.368956 25.108822 -29.209129 10.949249 -26.090319 18.890180 -9.199347 20.442339 16.575850 -15.217784 5.982965 11.354416 28.458144 6.303610 0.979385 17.935084 10.121383 -0.102750 -5.058705 14.578679 13.664044 -15.781225 -17.259677 -13.059281 -13.493718 4.631791 -10.952231 -25.169984 0.264118 -17.521100 6.675829 -1.290634 -3.151646 -3.327589 22.805213 -35.135462 -3.503329 4.880168 -3.157715 14.861892 10.289961 0.107062 6.074779 2.614686 16.306269 -7.694223 -11.147153 -5.454056 10.355174 -16.647984 -1.982818 -10.515898 6.651437 10.551630 -19.604657 -20.907014 -28.067925 -7.195165 22.171337 -3.530477 20.367195 30.322830 -7.499640 -14.476001 7.515015 -6.552664 -6.194598 23.818419 6.189292 28.158026 -25.686357 13.580717 -8.745791 8.129251 7.263744 12.137408 -4.226068 -9.079021 13.894633 -0.909019 -5.200836 30.270041 -6.524891 -0.214862 -13.520832 6.474592 -1.904203 -0.262843 20.924533 -24.152304 13.455420 -12.436993 27.538920 -19.812038 -12.094283 5.442378 -27.829663 -12.318655 -11.324386 -1.896315 -6.296873 22.896317 -18.113134 -11.113866 -5.494097 -9.487046 4.580409 16.488667 -2.282741 -0.627752 -2.590535 -9.854414 22.112070 10.452036 2.677892 -3.406357 -14.000310 0.457481 14.592058 -8.984076 -17.547029 -4.157862 -17.948660 -0.993824 -7.858124 0.017038 13.865767 -19.641669 -7.156724 -3.632891 -2.738373 4.322067 -6.380075 -20.851207 8.656372 -3.312958 5.036520 8.468761 21.610501 18.954771 17.918821 5.851743 -5.391413 5.227072 -14.215331 -13.299230 13.086211 7.538774 11.235636 6.214543 17.367081 0.623101 6.365176 6.769093 0.679871 13.288813 17.671758 5.883954 20.967637 -4.343682 6.909931 2.541338 -9.396835 13.325171 24.319498 -8.523341 -0.588618 5.716327 -0.306469 -11.210765 -8.179604 -0.120210 -4.256221 -8.853956 3.541219 10.837766 0.536588 -14.206168 28.943046 7.271846 -31.410072 14.260155 -0.551005 4.484720 21.602361 -11.393794 8.566955 4.555314 3.609337 14.194934 7.992263 15.585811 -20.684501 2.519828 -1.854795 13.420558 18.097244 -3.652317 -25.214635 15.224261 6.335430 20.758431 7.857187 17.261453 -14.818931 8.524765 -6.357565 -14.487426 -0.937227 -3.795114 11.928595 -1.160594 3.613068 -29.300203 -2.507361 +PE-benchmarks/box-stacking.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/detect-cycle-in-a-graph.cpp__main = 0.456324 0.663793 0.643798 -0.311950 -0.748799 -0.090793 -0.859610 -0.020737 0.126592 0.318694 -0.332162 -0.689435 -1.558084 0.791385 -1.210707 -1.342233 -0.503638 -0.531116 0.017052 -1.183504 -0.220091 0.276950 0.156909 0.128523 0.458749 -0.493753 -0.219165 0.307724 1.774129 -0.686484 -0.216628 0.205084 0.353545 1.032226 -0.335081 -0.258595 0.718261 1.599480 1.151169 -0.229969 -1.309292 -1.234501 0.570801 0.217862 0.025710 -0.854886 0.062304 0.397805 -2.987822 1.719846 0.285063 0.133864 -0.989487 -0.305228 0.536767 0.986514 -2.897400 2.931638 -0.426088 0.519256 0.073591 -0.364920 -0.262619 -0.626179 1.791969 -0.517912 -0.037055 1.078485 -1.959482 0.954459 0.034194 0.203350 1.289947 0.077523 -0.649704 0.573363 0.571254 0.378121 0.224827 -2.841050 -0.495856 -0.189463 1.247056 0.911262 1.120172 0.807986 -0.654959 -1.323651 -0.361704 -0.877851 0.633410 -1.165358 0.788362 0.947716 -1.302222 0.796140 0.034015 -1.669900 0.653841 0.415397 1.193179 -0.058587 0.597991 0.248054 -0.528297 -0.047201 0.201261 0.214238 0.216818 -0.546764 -1.354356 0.600949 -1.357301 -0.440968 -0.723699 1.689988 0.651788 0.137396 -0.353083 -0.975075 -1.777910 -1.902082 -0.242883 -0.160029 1.335156 0.464954 -0.146627 0.366779 -0.220314 1.462725 0.052374 -0.309636 -0.469314 -0.014389 0.906372 -2.382580 -2.627939 -0.435650 0.204316 -0.100026 -1.286654 -0.385831 -0.598634 -0.764022 0.012676 1.376413 1.632254 0.354854 -0.868894 1.347898 -1.302326 1.623531 2.227706 0.209161 0.999852 -0.560104 0.290390 0.081723 0.327222 0.027712 -1.468198 -0.067782 -0.385357 -0.221683 1.223457 1.430753 -2.397604 -0.361163 -0.197967 -1.807617 -0.381506 -0.621982 -0.283135 1.074921 0.082468 1.318244 -0.071066 1.580499 -0.945373 -2.504405 0.480322 -0.929845 0.585408 0.728570 -0.170863 -0.267901 0.213092 -1.748813 -0.825750 0.093338 0.389494 -0.347329 0.178705 1.753318 -0.024480 -0.241334 0.527204 1.582068 0.887029 -0.478158 0.983100 -1.624161 -0.123362 0.570373 0.164739 -1.939616 1.231562 0.136424 -0.077327 1.507714 -0.119656 -0.474600 0.334109 -0.683332 -0.410906 -0.542762 1.258098 -0.073705 0.606291 0.263281 -0.847271 -0.508339 0.484260 0.445156 1.502256 -0.218431 0.142430 -0.012154 0.427563 -0.927368 2.492827 0.117600 0.813067 0.113958 0.132273 0.602487 0.294443 -0.402698 0.347343 1.147255 -1.615691 0.647942 0.469785 1.508298 -1.833933 0.299822 -0.670729 -0.503464 0.537808 1.735774 -2.058254 -0.099494 0.850751 1.087792 1.607642 -1.660295 -0.746543 -0.741064 -0.458365 0.688757 -0.341116 -0.991005 0.440243 0.908033 0.212974 -0.620228 1.522854 0.190869 -0.422284 -1.350120 -0.161897 -1.844085 1.176539 -2.059887 -0.560098 0.072030 0.572895 -0.345631 -0.418049 -0.390473 1.239348 -0.729701 0.427347 -0.109333 -0.592984 1.436240 0.920150 1.362532 -0.261863 0.163115 -2.462090 -0.186160 -0.457179 -0.890751 0.362251 0.118890 -0.825239 0.600995 1.318598 -1.678741 +PE-benchmarks/detect-cycle-in-a-graph.cpp__Graph::isCyclic() = 1.185438 0.386240 2.029341 -2.116195 -1.172200 0.614091 1.026595 -1.463085 0.420154 4.281221 1.232023 -1.344607 -2.224238 3.240266 -0.764098 -2.207263 1.231186 -0.401708 0.120358 -0.804790 -0.317087 1.203327 -0.380958 -1.214210 1.325980 -0.908973 0.260650 2.199466 0.232770 0.292547 -1.608524 -0.465664 -0.074451 4.177342 -0.143035 0.300015 -0.034829 4.711624 -4.206812 4.551350 -4.356332 -4.018979 3.854581 0.489743 0.009481 -2.416863 -0.940716 1.661576 -1.959871 -2.203790 1.322890 -0.862672 0.868489 -2.010161 0.774410 3.493940 -5.607476 1.000436 0.477572 -1.347041 -2.193236 -0.769418 1.320130 0.611972 -2.110742 -2.501106 0.923170 0.525414 -2.004307 0.734231 -2.065503 -4.098575 2.552307 1.042516 -1.768861 1.043901 0.727844 -3.175569 2.339006 -1.973745 -2.440793 -1.236358 0.905865 -1.665111 2.388901 1.420540 2.856199 -5.686536 0.692930 -4.577844 3.194356 -2.998202 3.261069 3.761036 -2.011554 1.796301 1.449606 2.281123 1.246437 -0.453453 3.682606 1.759772 1.875727 -0.135467 2.343367 2.554198 -3.399502 -2.959062 -2.843079 -2.726311 0.429330 -1.528809 -4.208027 0.090149 -2.508571 0.517495 1.465650 -1.028738 -0.965542 3.441783 -5.869966 -0.556187 1.107332 -0.710180 2.530601 3.207391 -0.196385 0.465647 -0.076166 3.670283 -1.141710 0.228944 -1.125074 1.851976 -1.791715 -1.952552 -1.938506 0.176916 1.218682 -3.052413 -3.998549 -5.498390 -0.938115 2.107917 -0.888938 3.636327 6.395621 -1.343267 -3.238874 2.755666 -0.760345 0.427416 3.569630 0.721155 5.006200 -4.017583 1.648300 -1.606776 0.983743 1.118253 4.087122 -0.186066 -1.884449 1.856434 0.060510 -1.786100 2.993354 -0.602007 -0.261460 -2.073930 0.633857 -1.515368 -1.323862 4.294371 -3.470806 3.432671 -1.827773 5.203977 -3.146048 -3.134710 1.623033 -4.313162 -0.984134 -3.163222 -1.627338 0.016478 2.928760 -3.518022 -2.098358 -2.204039 -0.940172 -0.166394 2.496387 -2.253198 0.102001 -0.641440 -0.556310 4.112346 2.446597 -0.148984 0.285124 -3.750368 0.621022 2.090389 -0.877564 -4.677655 0.376526 -2.513617 -0.453339 0.855453 -0.338603 1.993576 -2.514435 -1.869453 0.477506 -1.108212 0.421346 -1.113843 -4.700048 1.067355 -0.631655 0.694874 1.998118 3.776870 3.738551 2.742694 0.985705 -0.427968 0.629536 -1.793536 -2.169094 1.486450 0.629494 1.408340 1.567399 2.842164 0.997302 0.698916 2.164404 1.266786 0.259160 3.469514 1.406854 4.138654 -0.533412 0.131164 0.707672 -1.720977 2.264807 4.370248 -1.673220 -0.407311 2.034316 0.815216 -1.340717 -1.856490 -0.390532 -1.817893 -1.389246 2.322305 1.242179 -1.094961 -1.411000 5.330643 0.460777 -6.053741 2.641827 -0.031535 1.184246 2.485842 -1.189525 0.718165 1.754764 -1.636843 2.587514 1.423833 2.935649 -3.207270 -0.188200 -0.253328 2.389004 2.963141 0.158426 -6.460548 0.642715 1.133279 4.142812 1.976731 4.142784 -1.989144 0.192938 -0.734362 -2.135925 -0.681938 -0.833346 2.188753 -0.970615 0.454678 -5.008042 -0.436637 +PE-benchmarks/longest-even-length-substring-sum-first-second-half.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +PE-benchmarks/strongly-connected-components.cpp__main = 0.411483 0.525723 0.392591 -0.200305 -0.762153 -0.163999 -0.791417 -0.009017 0.047082 -0.294137 -0.200434 -0.692845 -0.887066 0.627887 -1.020401 -0.991224 -0.548203 -0.213625 -0.113463 -0.812899 -0.111145 0.199204 0.093504 0.136568 0.254829 -0.282235 -0.158936 0.171058 1.622189 -0.499738 -0.251696 0.177206 0.443557 0.732971 -0.200311 -0.379018 0.647197 1.238738 1.255721 -0.501007 -0.744448 -0.656520 0.344000 0.135741 -0.037841 -0.853077 -0.348060 0.290042 -2.249405 1.499001 0.204823 0.204864 -0.880960 -0.164569 0.398534 0.711422 -2.108475 2.383879 -0.224854 0.604425 0.223768 -0.308867 -0.362529 -0.547319 1.403921 -0.349673 -0.054628 0.965409 -1.366471 0.752026 0.085027 0.134791 1.413812 -0.031561 -0.553534 0.408697 0.456189 0.153175 0.175449 -1.999971 -0.383559 -0.022640 0.946485 0.991478 0.939218 0.384879 -0.649951 -0.935920 -0.348825 -0.718598 0.301979 -1.062090 0.461113 0.739956 -1.366029 0.540578 -0.071348 -1.271236 0.633950 0.646491 0.897575 0.037589 0.373851 0.077671 -0.460850 -0.108460 0.480138 0.258744 0.315891 -0.456253 -1.159020 0.609682 -1.560910 -0.265952 -0.434397 1.331846 0.233920 0.193072 -0.083148 -0.758508 -1.010525 -1.464853 -0.136548 -0.117920 0.876773 0.434732 -0.223790 0.312717 -0.428784 1.087619 0.217898 -0.232851 -0.300201 -0.096749 0.524898 -2.251774 -2.217680 -0.289006 0.175125 0.028808 -0.993616 -0.121191 -0.385192 -0.763865 -0.022343 0.685611 1.116003 0.331127 -0.613669 1.085399 -0.574190 1.238811 1.798426 0.108520 0.873554 -0.305164 0.180433 0.175315 0.142495 -0.184963 -1.833852 -0.082338 -0.287145 -0.261084 0.861570 0.640356 -1.440920 -0.323257 -0.187355 -1.059229 -0.344723 -0.424807 -0.338130 0.991645 0.523270 0.999962 0.010955 1.172212 -0.582885 -1.947271 0.348770 -0.292084 0.583798 0.689800 0.083318 -0.142830 0.240920 -1.248451 -0.633219 0.415523 0.306927 -0.329083 0.089416 1.798583 -0.065746 -0.134592 0.557389 0.753118 0.738155 -0.436407 0.918441 -1.219808 -0.091224 0.485963 0.051565 -1.518183 0.968459 0.137878 -0.039367 0.842249 -0.081263 -0.520834 0.321774 -0.591306 -0.379290 -0.445704 1.078402 0.039564 0.740132 0.228966 -0.860102 -0.290118 0.190691 0.255521 1.321132 -0.215386 0.192071 -0.014960 0.424144 -0.687959 2.053972 0.094188 0.648124 0.038103 0.046909 0.517861 0.213121 -0.374694 0.132024 0.843438 -1.165066 0.429780 0.577216 1.269658 -1.330943 0.176636 -0.629709 -0.356363 0.544086 1.591500 -1.369988 -0.066321 0.527929 0.926015 1.272441 -1.507770 -0.668988 -0.364574 -0.544840 0.475262 -0.466326 -0.770293 0.480983 0.585066 0.130453 -0.300755 1.061242 0.195217 -0.364589 -1.131009 -0.096379 -1.420213 0.951932 -1.454529 -0.481528 0.017494 0.390621 -0.158927 -0.614600 -0.315939 0.896432 -0.786009 0.426414 0.254648 -0.186521 1.285378 0.659073 0.937760 -0.513311 0.120293 -2.000632 -0.039455 -0.163272 -0.714125 0.306159 0.021514 -0.835238 0.393064 1.277713 -1.576861 +PE-benchmarks/strongly-connected-components.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/strongly-connected-components.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/overlapping-subproblems-property.cpp__main = 0.226644 0.314298 0.146336 -0.385686 -0.626354 0.088307 -0.398814 -0.320215 -0.054157 -0.111000 0.268902 -0.479205 -0.522066 0.578199 -0.430721 -0.652630 -0.225336 -0.214865 -0.119572 -0.282704 -0.022427 0.203394 -0.049661 -0.056638 0.055713 -0.065545 -0.164642 0.176080 0.880877 -0.393566 -0.358686 0.018757 0.213312 0.622795 0.101600 -0.167003 0.252163 0.851066 0.286784 0.001304 -0.750349 -0.443846 0.437997 0.065120 -0.130859 -0.790109 -0.403963 0.321119 -1.012176 0.407461 0.248478 -0.089033 -0.229175 -0.118438 0.123941 0.637355 -1.239853 1.237795 0.100712 0.143435 0.076357 -0.104076 -0.034673 -0.103697 0.534841 -0.379027 0.018446 0.451144 -0.599710 0.149907 -0.148308 -0.399355 1.143451 0.049504 -0.390681 0.115022 0.033614 -0.252594 0.292399 -0.955317 -0.460924 -0.020365 0.416266 0.488876 0.534244 0.183047 -0.101559 -0.857504 -0.235386 -0.828149 0.311859 -0.549571 0.396247 0.478009 -0.827380 0.144451 0.117786 -0.607493 0.559852 0.382191 0.641517 -0.003473 0.242917 0.038571 0.000811 0.119993 0.077668 0.023358 -0.016526 -0.572629 -0.370136 0.276300 -1.217482 0.055837 -0.361642 0.568648 0.041540 -0.021082 0.094055 -0.044514 -0.526015 -0.659274 -0.017014 -0.077241 0.580768 0.629827 -0.086048 0.235178 -0.290009 0.657602 -0.015743 0.067097 -0.164735 0.157172 0.194149 -1.455850 -1.204103 0.099047 0.263889 -0.313265 -0.649376 -0.419356 -0.072049 -0.321088 -0.214046 0.396724 0.960295 -0.204477 -0.636534 0.747961 0.072380 0.399332 1.044379 0.008647 0.996520 -0.418483 0.128675 0.034737 -0.127668 -0.102716 -0.624406 -0.091192 -0.257437 -0.014753 0.284474 -0.384029 -0.169309 -0.063035 -0.288632 -0.118054 -0.100603 -0.267371 -0.406938 0.587657 0.448650 0.629399 0.090101 0.888597 -0.458989 -1.040261 0.331157 -0.006151 0.075915 0.230073 -0.169295 0.102203 0.313346 -0.657904 -0.299331 0.065046 0.063932 -0.363027 0.284719 0.792567 0.058249 0.098342 0.159600 0.278458 0.668024 -0.184237 0.426691 -0.695026 0.108794 0.465385 -0.000889 -1.054580 0.227116 -0.332277 -0.006443 0.530838 -0.148011 0.122741 0.046381 -0.329150 -0.089726 -0.288436 0.668194 0.094209 0.180003 0.203860 -0.499253 -0.001788 0.133277 0.507838 0.678354 0.372956 0.260219 0.058108 0.207335 -0.277934 0.774817 -0.057955 0.281922 0.166934 0.280176 0.400727 0.215215 0.065275 0.413809 0.391702 -0.321340 0.545968 0.258099 0.943561 -0.579008 0.083249 -0.267675 -0.232942 0.517868 1.185726 -0.730323 -0.120864 0.267343 0.366360 0.371522 -0.894823 -0.168540 -0.210631 -0.458553 0.517568 0.037666 -0.099296 -0.091166 0.692704 0.044684 -0.582950 0.785450 0.102619 0.019052 -0.255384 -0.122910 -0.456244 0.436540 -0.704330 -0.076613 0.397540 0.511731 -0.374711 -0.458695 -0.129357 0.607681 -0.239943 0.324945 -0.350513 0.064266 0.738402 0.630967 0.408668 -0.030766 -0.288030 -0.871848 0.094979 -0.027529 -0.223479 0.034357 0.132987 -0.550765 0.095794 0.267259 -0.599564 +PE-benchmarks/overlapping-subproblems-property.cpp__fib(int) = 1.124626 0.080738 1.115961 -0.560178 0.288196 0.574208 0.428256 -1.207173 0.308375 3.039997 0.491541 -0.429142 -0.724981 0.828714 -0.683403 -0.872801 1.098841 1.136475 0.283127 -0.808886 -0.394833 0.067751 -0.256928 -1.260768 0.859859 -0.877057 0.883111 0.848548 -0.633683 0.763925 -0.741884 -0.240494 0.153316 2.471440 0.060119 0.626341 -0.486536 1.640732 -1.251320 2.238662 -2.709933 -2.202608 2.235332 0.420914 0.633884 -0.851735 0.245208 0.693016 -0.303136 -1.574024 -0.267458 -1.191478 0.854624 -1.596749 -0.388717 1.974495 -2.232535 -0.368365 0.139369 -1.619957 -2.251131 -0.149771 1.687864 0.481506 -1.346264 -1.540364 0.603530 0.930146 -1.086315 0.881016 -1.724835 -2.691929 0.897047 0.279036 -1.056824 0.352173 -0.370093 -1.324574 0.744356 -0.000514 -0.716502 -1.173952 0.948346 -0.840620 0.334057 1.293586 2.270182 -3.126832 0.692179 -2.379064 2.086204 -0.889964 2.634909 1.509057 -0.737787 1.056422 0.900001 1.656179 -0.047265 -0.054432 1.961775 0.717705 0.606087 -0.810045 1.261694 1.211616 -1.800814 -2.090519 -1.068004 -1.062844 0.411517 -0.522069 -1.878137 -0.184149 -2.567129 0.992448 0.486750 -0.443861 -0.363008 2.135075 -3.929881 -0.785968 0.657537 -0.418868 1.948113 1.201691 0.492531 0.467443 0.580753 1.644091 -0.549355 -1.211754 -0.756414 1.169939 -1.020454 -0.657272 -0.581070 -0.007243 0.887147 -1.955548 -2.296926 -2.847323 -1.041592 1.965730 -0.378478 1.879905 3.075831 -0.452142 -1.615954 0.455692 -1.291324 -0.327167 2.285557 0.771116 3.056542 -3.267077 1.908286 -0.643242 1.628486 1.485990 2.191172 -0.968908 -1.274772 1.395573 -0.010364 -0.140204 1.980331 -0.564256 0.610131 -0.593990 0.344856 -0.000854 -0.128023 1.729095 -2.391359 2.027138 -1.614028 3.055539 -2.519235 -1.540872 0.435795 -2.697379 -1.210095 -0.820982 -0.177985 -0.700133 2.269215 -2.056089 -1.364438 -0.613585 -0.923612 0.907257 2.218472 -0.878125 -0.242760 -0.808808 -1.644586 2.681472 0.305632 -0.366251 -0.239224 -1.510536 -0.067528 1.248536 -0.242058 -2.028553 -0.411005 -1.832516 -0.325166 -0.173490 0.024064 1.571338 -1.462083 -0.619320 0.283809 -0.477739 0.033056 -1.335647 -1.764487 0.732915 -0.468591 -0.186743 0.513293 2.689281 1.860386 1.408346 -0.299928 -0.830583 0.546144 -1.942180 -1.584527 1.195759 0.450827 1.242972 0.628318 1.038184 -0.044712 0.554945 0.735934 -0.399960 0.986626 1.941865 0.552031 1.728183 -1.385463 0.753463 0.726556 -1.442728 1.183869 1.792148 -1.052963 -0.673615 0.767649 0.027464 -1.004765 -0.889039 -0.318300 -0.491664 -1.029683 0.841584 1.526096 -0.242649 -1.488846 3.434553 0.808572 -3.486937 1.969477 -0.184256 0.250531 1.881310 -1.229848 0.802848 0.876123 0.701582 0.513425 0.380212 1.924988 -2.344310 0.244095 -0.218201 1.641542 1.405384 -0.940961 -3.559153 0.434932 0.437961 2.450013 1.077092 2.325297 -1.172673 1.155738 -0.980810 -1.242911 -0.152418 -0.450608 1.319759 0.213567 -0.115725 -3.389399 1.026614 +PE-benchmarks/count-1s-sorted-binary-array.cpp__main = 0.453803 0.263989 0.317914 -0.554750 -0.732772 0.345815 -0.602637 -0.485169 0.092932 -0.139152 0.388143 -0.505392 -0.518567 0.664270 -0.531283 -0.735874 -0.029344 -0.210269 0.007295 -0.268468 -0.096926 0.095123 -0.165929 0.094718 -0.088749 -0.082073 -0.051424 0.152119 1.056091 -0.442357 -0.843664 0.025663 -0.026865 0.897072 0.287211 -0.370763 0.431674 1.193631 0.572775 0.116200 -0.817458 -0.273022 0.193637 0.142441 -0.133381 -0.831182 -0.517836 0.392944 -1.170624 0.452955 0.593148 -0.325763 -0.164528 0.060803 0.222732 0.789533 -1.451601 1.266581 0.126455 0.447592 0.220402 -0.201520 0.223180 0.033763 0.429907 -0.446888 0.392728 0.669544 -0.752400 0.177276 -0.418201 -0.887585 1.209768 0.243187 -0.680424 -0.026546 0.253512 -0.606170 0.384576 -0.956629 -0.787662 0.066009 0.276711 0.130630 0.978329 -0.031978 -0.028025 -1.145868 0.023624 -1.261922 0.256223 -0.840700 0.611025 0.771332 -1.008060 -0.037615 0.229255 -0.313494 0.633703 0.345792 0.879349 0.128917 0.013832 -0.156581 0.294488 0.014880 0.104951 0.066284 -0.007197 -0.731292 -0.618338 0.272400 -1.493519 0.071500 -0.612287 0.780524 -0.112207 0.213487 -0.097273 -0.008860 -0.680075 -0.962677 -0.172562 -0.146758 0.878738 1.034195 -0.223887 0.487974 -0.332196 1.005902 -0.106847 -0.032412 -0.397673 0.112990 0.184058 -1.388550 -1.709015 0.169760 0.673633 -0.365701 -1.081243 -0.560629 -0.276972 -0.485430 -0.186960 0.971518 1.277695 -0.235554 -0.670127 0.924860 -0.159033 0.531143 1.604920 -0.012831 1.337417 -0.720238 0.382366 -0.157890 0.009299 -0.505111 -1.092721 -0.130068 -0.056022 0.049177 0.287230 -0.093057 0.212191 -0.063292 -0.420711 -0.049334 -0.125188 -0.182782 -0.719587 0.958816 0.306779 0.623866 0.440423 1.287469 -0.578464 -1.243977 0.443855 0.228373 0.312290 0.251472 -0.224980 0.002449 0.638359 -0.733487 -0.483069 0.167088 0.074763 -0.297805 0.297908 1.546441 0.072365 0.149122 0.216075 0.519472 1.103340 -0.051601 0.551453 -0.913465 0.186942 0.604485 -0.313520 -0.832775 0.280363 -0.559956 0.011918 0.450310 -0.124304 0.181751 -0.367406 -0.701971 -0.283241 -0.146783 0.994002 0.314034 -0.454773 0.347643 -0.606664 -0.161461 0.331097 0.587336 0.854711 0.630340 0.599539 -0.335143 0.306865 -0.195278 0.746352 -0.188433 0.411818 0.469666 0.236337 0.431914 0.185849 0.013274 0.257706 0.379121 -0.139538 0.629818 0.436646 1.184671 -0.494882 0.204491 -0.414567 -0.574194 0.648667 1.657060 -0.971214 0.120344 0.308598 0.632357 0.313667 -1.466630 -0.162312 -0.321808 -0.425266 0.242106 -0.019512 -0.083455 -0.297735 0.960658 0.103023 -0.855289 0.778552 0.035949 -0.062669 0.156871 -0.126859 -0.395387 0.289990 -1.003582 0.271668 0.486658 0.616573 -0.344441 -0.375885 -0.169826 0.645961 -0.614976 0.263272 -0.333366 0.279514 0.814569 0.887488 0.894829 -0.019099 -0.434487 -0.871692 0.191605 -0.403968 -0.285725 0.054691 0.525078 -0.717674 0.100231 0.107448 -0.813539 +PE-benchmarks/count-1s-sorted-binary-array.cpp__countOnes(bool*, int, int) = 1.625410 1.042629 2.068683 -2.533186 -0.339252 1.087849 1.785814 -2.342297 0.704351 6.162604 1.789182 -1.108966 -1.765514 2.481686 -1.100767 -1.627120 2.414730 0.505749 0.225846 -1.964107 -0.217374 0.678710 -0.444327 -2.707074 1.211716 -1.889853 1.549878 1.577839 -0.769543 1.014436 -1.826383 -0.722762 0.762124 4.885468 0.174094 1.068773 -1.849302 3.614187 -3.275753 4.736834 -5.890510 -5.091686 4.832020 0.891887 0.935215 -3.790172 0.269039 1.342623 1.684358 -3.583210 -0.316521 -2.229044 1.985262 -3.124505 -0.966286 3.804905 -3.507766 -0.932759 0.358255 -3.363299 -3.910530 -0.818865 3.493817 1.880201 -3.635397 -2.702609 1.486534 1.183764 -2.366396 1.371760 -3.362843 -5.591656 1.602607 1.204211 -1.924928 0.466248 -1.028363 -4.104945 1.769537 0.007537 -1.686320 -1.708466 1.786759 -0.700858 0.224622 2.070512 4.854991 -6.686412 0.145973 -5.193253 3.957751 -1.834515 5.246351 2.904859 -0.938716 1.785205 1.565838 3.466250 0.799299 -0.339795 4.165192 2.072204 2.881595 -1.649779 3.387207 3.495657 -3.439266 -4.252003 -2.036798 -2.769127 1.228466 -0.691795 -4.128700 0.010004 -4.944478 -1.418805 0.710229 -1.391771 -0.885238 4.848528 -7.235648 -2.843106 1.767221 -0.891283 3.623175 2.883977 0.904045 1.289708 1.221651 3.444017 -0.804672 -0.916287 -1.450070 2.446310 -2.558132 -1.940499 -0.925410 0.336256 1.728034 -4.397468 -4.718627 -6.272314 -1.953624 3.611693 -1.007366 2.434947 6.522728 -1.262481 -3.754148 1.309082 -0.991711 -1.359562 4.066551 0.987329 6.925308 -6.577138 4.117728 -0.832278 3.121598 2.710194 7.228128 -1.740505 -2.587634 2.156162 -0.971855 -2.525531 2.979687 -1.517408 0.990869 -1.270880 0.592199 -0.980656 -1.277699 3.396221 -4.608492 4.368036 -3.526241 5.875847 -5.342941 -3.092819 1.443550 -4.889008 -2.406292 -2.571443 0.068097 -0.631592 5.180031 -3.364552 -2.601216 -1.587015 -2.062181 1.322791 3.886344 -4.809167 -0.396090 -1.456039 -2.770270 4.131349 1.241809 -0.489653 -0.398638 -2.938290 0.118055 3.103284 0.690543 -4.453458 -1.192483 -4.378200 -0.808317 -0.862373 -0.249748 3.265187 -1.952327 -1.579257 0.921748 -1.559165 -0.148414 -2.602139 -4.431733 1.731963 -1.024626 0.392808 -0.110966 5.795395 3.398948 3.268046 -0.170131 -2.170888 1.297980 -3.868000 -3.927960 2.307351 0.972194 1.182633 1.595250 3.172927 0.346363 1.534555 3.421163 -0.618443 1.331244 3.823679 0.313856 3.901201 -2.352219 1.207951 1.387604 -3.092177 2.526436 5.271615 0.713099 -2.341462 1.714799 -0.135458 -2.690454 -1.733791 -0.695210 -1.001340 -1.898734 2.387934 3.539699 -0.486614 -2.979627 7.281688 1.423430 -7.558298 3.841279 -0.619009 1.093121 4.331337 -3.029815 1.655498 2.247983 1.080308 1.884776 1.256109 3.857925 -4.361103 -1.068914 -0.588361 3.354830 3.091164 -2.244251 -8.051910 1.894839 1.298746 5.379392 2.253142 5.518147 -2.845685 2.668726 -1.612235 -1.949014 -0.483994 -0.825441 3.223757 -0.596176 -0.842340 -7.300851 2.711038 +PE-benchmarks/bfs.cpp__main = 0.493447 0.671428 0.528235 -0.177348 -0.971186 -0.123700 -1.122314 -0.075851 0.079852 -0.319918 -0.236427 -0.809980 -1.045236 0.680907 -1.321758 -1.188537 -0.729483 -0.144443 -0.079422 -1.132905 -0.106425 0.181177 0.110539 0.194906 0.214367 -0.430738 -0.125449 0.173646 1.980829 -0.471595 -0.283783 0.214994 0.527340 0.850319 -0.179987 -0.454720 0.796027 1.407761 1.596694 -0.726395 -0.915413 -0.841444 0.317286 0.216395 0.017572 -0.965875 -0.404674 0.283807 -2.817722 1.951598 0.247554 0.185182 -0.995930 -0.094089 0.481368 0.756864 -2.495933 2.901786 -0.360915 0.645475 0.289219 -0.344228 -0.418865 -0.570790 1.776770 -0.369106 -0.040121 1.338960 -1.602172 0.935201 0.152477 0.166297 1.652663 -0.094922 -0.694150 0.414346 0.605038 0.248180 0.174615 -2.389219 -0.472686 -0.014797 1.141256 1.189589 1.067918 0.520231 -0.753664 -1.072101 -0.421394 -0.844582 0.385955 -1.172677 0.550910 0.777881 -1.673212 0.579254 -0.028730 -1.534200 0.815441 0.745299 1.033292 0.038179 0.424135 0.101695 -0.583561 -0.151139 0.644244 0.379029 0.400104 -0.545217 -1.445286 0.717127 -1.857206 -0.384634 -0.518864 1.637840 0.206902 0.191917 -0.095883 -0.905866 -1.240559 -1.824811 -0.212034 -0.119131 1.071095 0.409370 -0.261851 0.484301 -0.411278 1.309267 0.189784 -0.396336 -0.350021 -0.161691 0.663260 -2.716950 -2.827036 -0.251497 0.257963 0.071275 -1.166639 -0.053993 -0.510984 -0.889204 0.044690 0.812159 1.285302 0.422402 -0.754632 1.237045 -0.795053 1.395640 2.265987 0.159867 1.003854 -0.353741 0.228925 0.136416 0.159782 -0.240669 -2.224209 -0.103023 -0.266139 -0.278047 1.119063 0.929993 -1.892711 -0.473781 -0.268872 -1.403799 -0.394572 -0.465306 -0.265075 1.095763 0.595591 1.121134 0.010280 1.371566 -0.754366 -2.421401 0.339094 -0.448214 0.691829 1.012858 0.171969 -0.195438 0.328197 -1.513110 -0.755900 0.508315 0.345038 -0.342323 0.065130 2.257911 -0.063014 -0.114080 0.653818 0.963807 0.919373 -0.429167 1.071546 -1.383165 -0.146559 0.607826 0.091622 -1.819516 1.140712 0.139495 -0.007675 0.952937 -0.076459 -0.606571 0.405574 -0.667750 -0.584814 -0.584284 1.366035 0.099920 0.967978 0.326675 -1.067863 -0.345633 0.181304 0.239228 1.572924 -0.243497 0.291562 -0.031791 0.551076 -0.911213 2.680156 0.153325 0.953287 -0.026913 0.000289 0.669043 0.195446 -0.456376 0.117345 1.047115 -1.360099 0.462508 0.587158 1.492067 -1.740497 0.354145 -0.870997 -0.381488 0.604897 1.948058 -1.621306 -0.044230 0.574571 1.114078 1.625056 -1.871127 -0.784967 -0.427204 -0.573874 0.517946 -0.447183 -0.912977 0.528372 0.633460 0.249140 -0.258737 1.310415 0.225808 -0.531786 -1.369070 -0.181400 -1.824405 1.080617 -1.735482 -0.590285 0.038397 0.429322 -0.205330 -0.749777 -0.401680 1.101738 -0.964442 0.495392 0.368021 -0.209474 1.589315 0.751489 1.128876 -0.618159 0.087166 -2.490866 -0.027949 -0.259837 -0.887278 0.440981 0.011776 -1.021552 0.562797 1.684519 -1.980596 +PE-benchmarks/bfs.cpp__Graph::BFS(int) = 2.066174 0.750682 3.419485 -2.800888 -3.105134 1.559004 -3.219361 -2.712950 1.059859 5.729225 1.902904 -2.880761 -3.237581 5.530730 -2.477314 -4.422276 0.613803 0.829930 1.838773 -2.524252 0.202952 1.710718 -0.137523 -0.737843 1.249054 -2.051682 -0.632394 2.097840 3.553927 0.053987 -2.822229 -0.342328 0.133434 6.209652 -0.321356 -0.473508 1.143068 7.932394 -2.863247 4.875876 -6.153686 -6.448432 4.738140 1.321698 -0.073484 -1.772413 -1.937536 2.254153 -5.955814 -1.095664 2.457029 -1.274446 0.675741 -1.830772 1.033324 4.302167 -10.191021 4.275855 -0.099128 -1.321036 -1.616308 -0.407796 1.428940 1.418652 -0.354786 -3.140080 1.538492 3.430946 -4.225580 0.443111 -1.765759 -5.306328 5.946579 1.186317 -3.238396 1.649021 2.873766 -3.201557 3.713576 -5.062946 -4.976735 -1.389228 1.331273 -2.028057 4.260419 2.912553 4.250316 -8.530765 2.227199 -7.287999 5.763562 -4.072958 4.938684 5.722945 -5.521983 2.036003 3.656815 2.845091 4.067961 0.154341 7.063422 2.424575 0.937815 0.730537 2.415441 3.248464 -3.784919 -2.113644 -3.826231 -5.140130 -0.669718 -1.691264 -7.534820 -0.250482 -3.675696 3.113915 2.175376 -1.419551 -1.130533 3.774411 -9.536390 -3.361294 0.693261 -0.854785 4.125382 4.753323 -0.497997 1.303616 0.047220 6.907437 -3.166636 -1.686131 -0.376301 2.230310 -1.167094 -4.377953 -6.571805 0.973159 2.023313 -5.049361 -5.933611 -7.552344 -1.148848 2.067186 -0.796728 7.319389 10.943330 -1.978026 -4.810916 5.251253 -2.251052 0.824485 8.954294 1.162769 8.633088 -5.519917 1.072465 -2.904243 0.073373 1.431478 2.312965 0.670834 -0.847376 2.416706 2.408841 0.221339 1.882233 -1.951465 -1.663155 -4.710907 1.186899 -2.246637 -1.879608 5.492072 -3.441988 4.271193 -1.204128 9.024106 -3.830978 -7.298675 2.754132 -6.237451 -1.638050 -1.871583 -2.077058 -0.838311 4.367910 -6.234990 -2.906327 -2.517190 -1.439493 -0.966807 2.721188 1.652534 1.666745 0.454876 -0.684586 7.081357 5.323582 0.790833 0.902019 -6.786517 -0.012091 3.785516 -2.311326 -7.333700 1.359535 -4.728766 0.420601 2.569804 -1.626140 2.882095 -4.204079 -3.444873 -1.815579 -2.009569 3.108112 -1.001911 -5.291132 2.062270 -1.549675 1.558523 3.825276 5.219185 6.252638 5.044552 2.758592 0.329213 1.455030 -2.558391 1.282155 1.841516 2.123495 2.685857 2.257346 4.851760 1.550865 1.752366 3.497885 2.585051 0.007836 5.683429 0.455571 7.778988 -2.490580 1.323709 -1.087191 -2.334614 4.232687 9.237174 -4.725342 -0.035874 3.068872 1.569880 0.194395 -5.264857 0.400886 -2.728609 -1.703809 2.693548 2.459813 -0.168066 -2.601564 6.605623 1.390573 -8.739068 5.964042 -0.266303 0.537335 3.068845 -1.546478 -1.061781 2.197496 -4.785202 2.724261 3.384891 4.858896 -5.651650 0.546435 -0.802267 5.390764 2.088274 1.957736 -7.919387 1.906590 3.515620 5.023909 3.616091 4.369286 -4.052048 -3.883488 0.065094 -3.860708 -2.340196 -0.596707 2.786276 -2.547964 2.006413 -3.495192 -3.086941 +PE-benchmarks/binomial-coefficient.cpp__main = 0.501941 0.680012 0.502514 -0.518229 -1.216896 0.416022 -1.201834 -0.868005 0.075519 0.420739 0.524825 -0.767104 -0.477974 0.997274 -1.119726 -0.918931 -0.584057 -0.008990 -0.032395 -0.946120 0.145614 0.205407 -0.107956 -0.112151 -0.280707 -0.424950 0.100560 0.055244 1.101890 -0.133174 -0.627759 -0.023976 0.360627 0.986814 0.365346 -0.203724 0.269919 1.035219 0.405865 -0.070712 -1.602886 -1.124004 0.441199 0.335944 0.216463 -1.196873 -0.669826 0.330185 -1.364675 0.815125 0.322702 -0.390958 -0.116936 0.042639 0.174439 0.604329 -1.757844 1.857591 -0.106431 -0.234118 -0.006571 -0.040823 0.311599 0.397567 0.748159 -0.528701 0.211998 1.465994 -0.794092 0.369258 -0.142016 -0.989184 1.534477 -0.096685 -0.787162 -0.117201 0.183761 -0.445124 0.518474 -1.558281 -0.791900 0.005151 0.684885 0.579490 0.455945 0.637448 0.304750 -1.380761 -0.088360 -1.382225 0.742837 -0.497097 0.712772 0.394216 -1.292969 -0.067296 0.439632 -0.442197 1.393075 0.588284 0.906478 0.259690 0.446980 -0.048662 0.103437 0.400958 0.180259 0.089918 -0.091491 -1.115036 -0.606853 0.274717 -1.986933 -0.056210 -0.559003 0.828094 -0.259167 -0.279538 0.217008 0.358185 -1.424438 -1.410647 -0.057516 -0.030659 0.926715 0.670588 -0.134172 0.799877 -0.105591 1.043110 -0.304787 -0.381422 -0.083326 0.166290 -0.123443 -2.175821 -2.367081 0.633840 0.612009 -0.605831 -0.979385 -0.787792 -0.280987 -0.053056 -0.188886 0.817349 1.503106 -0.328722 -1.277847 0.854591 -0.002311 -0.149685 2.081935 0.093857 1.741318 -0.897968 0.416319 -0.217616 -0.118066 -0.101999 -0.610733 -0.163074 -0.219146 0.226110 0.549417 -0.599328 -0.435416 -0.394910 -0.520975 -0.692686 0.070944 -0.273596 -0.042768 0.636092 0.196189 0.842839 -0.145910 1.403297 -1.157460 -1.770480 0.279438 -0.878847 -0.093321 0.876393 0.014065 0.005467 1.039290 -1.138685 -0.402878 0.122747 -0.359294 -0.319128 0.472829 1.006383 0.179337 0.259823 0.023325 0.955866 1.203091 0.094440 0.541283 -0.824176 0.079833 0.987129 0.121006 -1.809646 0.068963 -0.947773 0.133439 0.348411 -0.219124 0.415225 -0.081558 -0.414585 -0.569389 -0.699829 1.190315 0.121492 0.506258 0.503188 -1.066658 0.384585 -0.058083 0.808624 1.033609 0.903451 0.707135 -0.131577 0.462668 -1.012586 1.695884 0.240287 1.104589 -0.163258 0.338190 1.054890 0.056532 0.167974 0.733511 0.644738 -0.269279 0.847317 -0.159095 1.441095 -1.519402 0.751074 -0.812784 -0.288015 0.728649 2.265450 -0.963717 -0.152372 0.208269 0.414206 0.592974 -1.348372 -0.173664 -0.286839 -0.536350 0.587885 0.721586 -0.047250 -0.459323 1.055562 0.509548 -0.831593 1.379217 0.030374 -0.219381 -0.050494 -0.610063 -0.857788 0.434396 -0.818750 -0.066751 0.769804 0.777262 -0.856903 -0.948144 -0.265126 1.161242 -0.103743 0.362355 -0.733622 0.530218 1.416233 1.029046 0.476635 0.240412 -0.936377 -1.373103 0.221272 -0.252715 -0.451144 0.304183 0.333268 -0.924290 0.411922 0.555421 -1.082427 +PE-benchmarks/binomial-coefficient.cpp__binomialCoeff(int, int) = 3.313561 0.425454 1.297446 -2.336009 0.270104 1.456792 1.549419 -3.198279 -0.037700 8.086059 2.174139 -1.808709 -2.243835 2.929887 -0.662735 -3.166863 3.417817 2.903112 0.571980 -1.742772 -1.371031 0.635967 -0.787555 -3.776110 2.293595 -2.331953 0.825037 2.297161 -0.885860 2.088818 -2.729234 -0.565641 0.458502 6.886744 0.296539 0.299656 -1.389649 5.225667 -5.415496 6.200042 -6.176170 -5.598958 6.656007 1.364723 1.129793 -2.098416 -0.544542 1.705418 0.734836 -4.658187 0.062447 -3.198942 2.549890 -3.907438 -0.636107 6.499319 -5.581588 -1.049860 0.867968 -3.991731 -5.319503 -0.489209 3.867104 1.376122 -4.242919 -4.640498 1.734499 2.199840 -1.771339 1.192334 -5.734587 -8.439742 2.826440 2.057655 -2.571009 0.807805 -1.501012 -4.844569 2.217364 0.736048 -2.625827 -2.564909 2.287461 -0.975602 1.017048 3.395285 6.733615 -9.077484 1.210295 -7.399549 5.440666 -2.797755 7.496413 4.938166 -1.460516 2.334542 2.517189 4.191830 0.426739 -0.228081 6.091358 1.780214 1.587367 -2.227455 3.207932 4.455553 -5.246077 -5.700266 -2.691969 -2.673826 1.332162 -1.025685 -5.509070 0.595431 -7.323030 0.687162 1.537121 -1.519104 -1.108005 6.541547 -8.887646 -3.204324 1.779823 -1.425189 5.785646 4.278178 1.386710 1.000831 0.517739 4.696979 -0.696212 -2.119815 -2.520922 3.548011 -3.467341 -2.815831 -1.487774 0.539104 2.856586 -6.851706 -6.474963 -7.610837 -1.938271 4.842868 -1.794714 5.171902 9.226521 -2.327030 -3.852734 2.171831 -2.499426 -0.540258 6.089055 1.557159 9.816702 -9.282705 5.594176 -1.058075 4.082142 3.257230 6.321260 -2.304016 -3.690311 3.213380 -0.128300 -0.852823 5.887279 -1.603095 1.064413 -0.681761 1.192476 0.662834 -0.882482 5.351935 -6.158932 5.259825 -3.362990 8.452326 -6.254155 -3.942351 2.430541 -5.632012 -4.062182 -3.490259 -0.389989 -1.267792 5.798756 -4.619863 -3.438303 -1.882444 -2.316209 1.430041 5.843116 -2.380011 -0.549385 -1.799138 -4.108601 5.922427 2.006373 -0.360999 -0.362862 -4.689371 0.521697 3.365562 -1.953780 -6.089062 -1.213843 -4.830276 -0.684353 -0.472551 -0.471405 4.534105 -3.948559 -2.233174 0.917539 -0.855873 0.675746 -3.194945 -4.144510 2.617360 -1.077675 -0.318695 1.309582 7.892665 4.946548 4.613780 -0.132590 -2.474926 1.640399 -4.137324 -5.393348 3.663396 0.441383 3.751114 2.360938 3.307381 -0.439076 1.962522 3.147890 -1.754352 3.206621 5.135085 1.663642 5.604449 -1.655496 1.104961 2.246984 -5.050046 3.776512 6.240565 -2.336259 -2.653621 2.356187 -0.549071 -3.703873 -2.034547 -0.147441 -1.291322 -4.106082 2.571271 3.828464 -0.179100 -4.678135 9.916129 1.771131 -10.403500 5.422135 0.035745 1.374996 5.869168 -3.214755 3.260899 2.265282 1.767958 2.052119 2.034843 5.836239 -6.345497 0.632791 -0.604863 3.945789 3.700990 -2.780753 -10.153423 2.020564 2.308029 7.193240 3.179449 6.408311 -3.406293 3.432575 -2.317402 -2.450818 -0.057595 -2.079602 3.686478 -1.260798 0.452886 -8.937524 3.335431 +PE-benchmarks/binomial-coefficient.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/tower-of-hanoi.cpp__main = 0.231657 0.075639 0.140884 -0.370049 -0.219541 -0.035556 0.222357 -0.030549 0.017225 -0.192657 0.156715 -0.264866 -0.318220 0.545138 -0.132926 -0.290299 0.151679 -0.439152 -0.105574 0.184810 -0.031540 0.203453 -0.032282 -0.068601 0.182038 0.124473 -0.147276 0.257759 0.358992 -0.364200 -0.403709 0.015686 0.078324 0.468995 -0.015126 -0.191174 0.193915 0.740355 -0.152455 0.428473 -0.367685 -0.077043 0.370574 -0.043122 -0.215681 -0.744214 -0.410907 0.254784 -0.402283 -0.020413 0.294249 -0.003760 -0.190121 -0.184899 0.149555 0.644863 -0.905570 0.558752 0.177008 0.402815 0.151835 -0.210294 -0.094287 -0.252784 0.083130 -0.277033 0.075584 -0.078481 -0.437590 0.130540 -0.248936 -0.301131 0.757775 0.188092 -0.237896 0.160448 0.089357 -0.526435 0.259095 -0.621287 -0.291205 -0.010179 0.097185 0.243360 0.623181 -0.145376 -0.150877 -0.614341 -0.181842 -0.578172 0.110647 -0.737279 0.227893 0.568752 -0.466015 0.194720 -0.035429 -0.198451 0.166421 0.280444 0.479986 0.222960 0.182823 -0.110344 0.213240 0.114909 -0.091996 -0.150008 -0.080220 -0.249875 -0.234158 0.138147 -0.872772 0.061729 -0.202842 0.206940 0.117835 0.082437 -0.034197 0.037160 -0.223904 -0.123245 0.068593 -0.101682 0.269579 0.653511 -0.116945 -0.032085 -0.397939 0.494227 0.138314 0.308754 -0.236684 0.101047 -0.099151 -0.922097 -0.423690 -0.178090 0.109159 -0.191801 -0.589434 -0.508438 -0.003551 -0.247583 -0.174032 0.229598 0.644926 -0.049654 -0.295902 0.569521 0.351004 0.447513 0.480033 -0.034564 0.609550 -0.283986 0.127440 0.055109 0.008702 -0.230247 -0.304577 -0.067974 -0.221719 -0.066210 -0.001306 -0.697647 0.441820 0.085506 -0.078008 0.191885 -0.206775 -0.268319 -0.562677 0.754713 0.243288 0.475898 0.018834 0.648552 -0.145846 -0.509325 0.305446 0.199002 0.258486 -0.356540 -0.202020 0.162192 0.164960 -0.406710 -0.309734 0.033745 0.148947 -0.202889 0.220777 0.194114 -0.059617 -0.064653 0.199455 0.053804 0.365725 -0.279174 0.425629 -0.556034 0.144093 0.205034 -0.133802 -0.721948 0.309787 -0.100244 -0.065799 0.255469 -0.044796 -0.047247 -0.154969 -0.428987 0.204944 -0.130498 0.216115 0.029036 -0.301639 0.026858 -0.212963 -0.081324 0.223199 0.334590 0.517852 0.119614 0.078377 -0.073493 0.058043 0.018486 -0.087366 -0.055891 -0.066197 0.160588 0.150725 0.215474 0.188310 -0.084407 0.155154 0.264841 -0.196822 0.325092 0.577506 0.523450 0.115454 -0.236614 0.063160 -0.318751 0.395714 0.638648 -0.331590 -0.035259 0.258343 0.316012 0.057217 -0.470247 -0.188879 -0.172185 -0.434046 0.434551 -0.282993 -0.175089 0.085928 0.569448 -0.126954 -0.550359 0.214564 0.094398 0.131153 -0.040198 0.060810 -0.023287 0.351689 -0.461423 0.203026 0.067126 0.358820 -0.060781 -0.360484 -0.054145 0.141296 -0.008544 0.183751 -0.424017 0.000887 0.302436 0.514850 0.363465 0.093082 -0.005577 -0.265934 -0.048930 -0.007363 -0.120886 -0.123833 0.220743 -0.361053 -0.128771 -0.221428 -0.260637 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__main = 0.305520 0.848560 0.537473 -0.370790 -1.454349 -0.196232 -1.096307 -0.278494 -0.062112 0.008517 -0.012957 -1.096244 -1.040518 1.037378 -1.286188 -1.343305 -1.033405 -0.122992 -0.298623 -1.261683 -0.029887 0.477508 0.092259 0.264079 0.201484 -0.435164 -0.261646 0.267520 1.969732 -0.601649 -0.046476 0.121502 0.669482 0.976310 -0.222906 -0.333914 0.613869 1.656350 1.199406 -0.544275 -1.265705 -1.203305 0.599454 0.222834 0.033890 -1.220808 -0.645434 0.512325 -2.528670 1.618048 0.199425 0.370902 -0.998341 -0.202805 0.507494 0.736710 -2.608111 2.944107 -0.194052 0.137319 0.014795 -0.147081 -0.399109 -0.358527 1.418135 -0.549305 -0.200042 1.342260 -1.425090 0.777783 0.355585 -0.105453 1.904216 -0.180100 -0.723536 0.535574 0.552889 0.222016 0.515071 -2.346504 -0.678032 -0.037723 1.213103 0.988401 0.909958 0.640472 -0.425084 -1.417984 -0.280479 -1.086204 0.604026 -1.115709 0.520229 0.889080 -1.704845 0.685235 0.119624 -1.426329 1.210880 0.801088 1.176685 0.031979 0.728476 0.471706 -0.525872 0.149989 0.384285 0.199291 -0.012115 -1.086500 -0.997183 0.545591 -2.131676 -0.185040 -0.282531 1.402218 0.277364 -0.012540 0.166172 -0.392616 -1.490967 -1.670861 0.088496 -0.109540 0.881768 0.602088 -0.289020 0.460949 -0.523629 1.375126 -0.029220 -0.132691 -0.035029 0.050187 0.485636 -2.730230 -2.816301 0.006236 0.143477 -0.151976 -1.035229 -0.385043 -0.376599 -0.600212 -0.198690 0.867325 1.812031 0.002373 -1.169116 1.514912 -0.368039 0.993248 2.096607 0.152337 1.478835 -0.377799 -0.109807 -0.034086 -0.211730 0.103377 -1.533347 0.117981 -0.446837 -0.077558 1.021609 0.195194 -1.409807 -0.597749 -0.499307 -1.284018 -0.072569 -0.578753 -0.272508 1.059488 0.654437 1.431550 -0.133850 1.540734 -0.805821 -2.418375 0.439632 -0.766199 0.386823 0.805336 0.097846 -0.104005 0.509348 -1.503245 -0.603111 0.265044 -0.072097 -0.672767 0.127115 1.746013 0.185820 0.065384 0.690400 1.039597 1.204333 -0.289052 0.822008 -1.602257 -0.025947 0.740385 0.247865 -2.138068 0.908632 -0.158074 -0.015466 0.925988 -0.271692 -0.328372 0.433217 -0.460339 -0.627759 -0.807134 1.268948 0.026459 0.842897 0.381271 -1.183294 0.242877 0.099072 0.494137 1.833326 0.198461 0.532162 0.352599 0.528267 -0.954200 2.545294 0.262884 0.951536 -0.101094 0.323861 1.007361 0.426272 -0.126045 0.680789 1.075812 -1.235350 0.849964 0.233456 2.021855 -1.874765 0.344909 -0.933811 -0.032253 0.787591 2.405512 -1.405818 -0.185552 0.656208 0.961664 1.288536 -1.853354 -0.674313 -0.467339 -0.567766 0.808401 -0.113956 -0.855657 0.477604 0.797310 0.231724 -0.629900 1.554104 0.197725 -0.292646 -1.231355 -0.210612 -1.642491 1.236171 -1.696541 -0.585423 0.501646 0.573754 -0.710904 -0.920707 -0.355990 1.392739 -0.623891 0.859388 -0.332622 -0.011174 1.709847 0.872309 0.611479 -0.241671 -0.331834 -2.576160 0.335237 -0.127382 -0.964369 0.513190 -0.079638 -1.140357 0.658820 1.368227 -2.044397 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__push(Node**, int) = 0.219849 0.245343 0.858384 -1.155050 -1.592788 0.260702 -0.038050 -0.621294 0.175193 0.255654 0.875653 -0.803868 -0.261432 1.815247 -0.426978 -0.812044 -0.172352 -0.501393 -0.207239 -0.091715 0.209273 0.737970 -0.262656 0.237398 -0.068102 -0.139139 -0.155147 0.743860 0.563689 -0.290724 -0.829641 -0.260905 -0.059205 1.298469 0.201693 -0.256633 0.293269 2.173192 -1.189859 1.363400 -1.272725 -0.932466 0.775784 0.097550 -0.267098 -1.615164 -1.590862 0.664326 -0.529384 -0.360403 1.147411 0.039019 0.149406 -0.006499 0.714672 0.826446 -1.944156 0.741231 0.384281 -0.107807 0.099523 -0.222853 -0.149106 0.428195 -0.821327 -0.665728 0.471286 0.535547 -0.257837 -0.052706 -0.077868 -1.674811 1.965594 0.348521 -0.786243 0.236659 0.920892 -1.641915 1.308921 -0.797626 -1.491291 0.051256 -0.119088 -0.620217 1.378519 -0.263837 0.763263 -1.943123 0.290855 -1.993491 0.742451 -1.503036 0.431689 1.408525 -1.309610 0.256025 0.668565 0.863509 1.359599 0.344626 1.270610 0.981611 0.637811 0.335123 1.040109 0.787582 -0.635703 -0.565426 -1.254099 -1.617879 0.048390 -0.579224 -2.601348 0.323424 0.178072 -0.130097 -0.117189 -0.170440 0.140197 1.513773 -1.128910 0.242346 0.572824 -0.194381 0.128440 1.645883 -0.588311 0.312859 -0.699881 1.457182 -0.692352 0.823023 -0.096858 0.450502 -0.895434 -1.308109 -1.528705 0.496154 0.487944 -0.801458 -1.258690 -1.686194 -0.030326 0.403611 -0.473655 1.037060 2.478214 -0.902870 -1.399635 1.540672 1.357552 -0.182667 1.243639 0.064012 1.948095 -0.656849 -0.233190 -1.002919 -0.671923 -0.411991 0.570798 0.532933 -0.214821 0.637677 -0.048328 -2.355064 2.439215 -0.420369 -0.861309 0.040205 0.350405 -0.746287 -0.955581 1.806141 0.112489 1.102624 -0.014971 1.810969 -0.560805 -1.177416 0.569812 -0.592455 0.196401 -1.132467 -0.400567 0.479888 1.097673 -0.821900 -0.535314 -0.540467 -0.693616 -0.656132 0.245320 -0.103534 0.396667 0.394679 0.615367 0.610736 1.940928 0.443801 0.314832 -1.443619 0.567176 0.756596 -0.465739 -1.733319 0.166934 -0.896425 0.016426 -0.201241 -0.224388 0.512942 -0.913322 -0.814540 -0.310013 -0.634896 0.469910 0.366930 -1.888273 0.328381 -0.527760 1.096335 0.529616 0.781750 1.789976 1.461394 1.362533 0.156668 0.201979 -0.068253 -0.223083 0.241256 0.535219 0.155942 0.604079 1.610762 0.668196 0.263613 1.030428 0.936872 0.379850 1.179292 0.447580 2.134079 0.235330 -0.145425 -0.407328 -0.022716 1.125434 2.632084 0.065170 0.384728 0.569432 0.726402 -0.518122 -1.362087 0.075092 -0.504234 -0.372878 0.947990 0.262148 -0.272687 -0.231071 1.407140 0.022422 -1.834199 0.482940 0.036483 0.538261 0.845980 -0.044264 0.179761 0.478589 -1.091716 1.407497 0.973590 0.840590 -1.009663 -0.965127 -0.032070 0.615506 0.717083 1.001470 -2.014217 0.856832 0.790283 1.287889 0.169166 1.143649 -1.158064 -0.648360 0.661689 -0.616830 -0.510151 0.166855 0.629285 -1.177936 0.316413 -1.125434 -1.325391 +PE-benchmarks/quicksort-on-singly-linked-list.cpp__quickSort(Node**) = 0.257716 0.399466 0.577873 -0.553533 -1.164344 0.170828 -0.247950 -0.501522 0.012415 0.505156 0.399656 -0.455909 -0.126556 1.101676 -0.580150 -0.420108 -0.409559 -0.337603 -0.115778 -0.336548 0.136888 0.496440 -0.142498 0.221622 -0.167370 -0.153174 -0.040592 0.172145 0.134553 -0.128440 -0.331869 -0.222406 0.097439 0.660454 0.177138 -0.119603 0.032891 1.119754 -0.454971 0.626602 -1.051628 -0.857482 0.243429 0.081572 0.242719 -1.124724 -0.785226 0.394587 -0.117503 0.008226 0.506204 0.049797 -0.081559 0.103501 0.418539 0.142157 -1.105961 0.753349 0.132783 -0.304664 0.034819 -0.047160 -0.062820 0.337944 -0.226766 -0.348478 0.126082 0.708577 -0.181239 0.148490 0.115079 -0.824162 0.917035 0.061148 -0.523913 0.049746 0.537589 -0.649464 0.750823 -0.990836 -0.860999 0.042587 0.044589 -0.116663 0.497551 0.196841 0.453825 -1.075174 0.333026 -1.092481 0.472437 -0.653015 0.159893 0.616792 -0.566287 0.098305 0.490265 0.328652 1.156552 0.332111 0.624855 0.623649 0.485804 0.350564 0.382569 0.532224 -0.243679 -0.190565 -0.652410 -1.022264 0.002206 -0.146305 -1.308316 0.127622 0.329537 0.095178 -0.173051 -0.141721 0.231393 0.752937 -1.107235 -0.262363 0.370629 -0.057586 0.095651 0.619024 -0.335306 0.364722 -0.391896 0.774002 -0.511387 0.375186 0.147766 0.228153 -0.599305 -0.969198 -1.217530 0.447040 0.227138 -0.405882 -0.569036 -0.975713 -0.030998 0.345665 -0.298220 0.554090 1.373599 -0.574516 -0.894639 0.844729 0.708334 -0.433733 0.788129 0.074548 1.047062 -0.237182 -0.275040 -0.476472 -0.488874 -0.157123 0.382503 0.363113 -0.129642 0.405150 0.130178 -1.384016 0.772905 -0.388030 -0.631254 -0.289384 0.240662 -0.371307 -0.102477 0.681597 -0.073614 0.584811 -0.196013 0.919385 -0.404776 -0.713990 0.150888 -0.880914 0.098992 -0.235023 0.006253 0.204213 0.725822 -0.662508 -0.213599 -0.139562 -0.672889 -0.445477 0.085597 -0.362220 0.274625 0.369008 0.386046 0.681254 1.118993 0.363184 0.163426 -0.677064 0.303062 0.362611 -0.017477 -1.241803 -0.000333 -0.571965 0.043201 -0.121085 -0.150103 0.239229 -0.246732 -0.264123 -0.298675 -0.635604 0.340601 0.246395 -0.233061 0.155129 -0.495292 0.926035 0.044814 0.378212 0.932882 0.922727 0.887853 0.192795 0.134326 -0.313666 0.460982 0.296947 0.644488 -0.310501 0.338787 0.940173 0.380657 0.177782 0.699875 0.567769 0.097508 0.693887 -0.159694 1.233052 -0.540982 0.191688 -0.462786 0.224194 0.576519 1.563774 -0.045760 0.168160 0.229574 0.169229 -0.139786 -0.453427 0.087163 -0.256229 -0.209439 0.481329 0.563794 -0.135912 -0.116800 0.650083 0.073464 -0.836849 0.449972 0.019987 0.214595 0.368387 -0.063719 -0.090254 0.274938 -0.502905 0.541003 0.708564 0.459794 -0.708524 -0.839490 -0.056199 0.491215 0.478989 0.686042 -1.192954 0.464126 0.722489 0.631847 -0.230868 0.587415 -0.840406 -0.693572 0.559873 -0.244027 -0.418202 0.336996 0.326776 -0.569293 0.265143 -0.198769 -0.873968 +PE-benchmarks/biconnectivity.cpp__main = 1.739796 2.574443 2.809593 -0.666320 -2.741085 0.453769 -4.237325 -0.508149 1.046547 2.513585 -1.072436 -1.992556 -5.974395 2.572413 -5.004985 -4.869719 -1.270501 -1.786469 1.040423 -5.133935 -0.412246 0.702750 0.711869 0.719268 1.112691 -2.295693 -0.573313 0.709084 6.525443 -1.643185 -1.642480 1.044143 0.634325 3.491882 -1.007751 -1.336557 3.123913 5.457949 3.705822 -0.968956 -5.225625 -4.906077 0.940809 1.220090 0.838202 -2.137468 0.740453 0.653352 -11.830695 7.105060 1.611611 -0.333032 -2.991364 -0.095723 2.638354 3.054929 -10.720678 10.728900 -2.277511 2.151601 0.846624 -1.171669 -0.395853 -1.243854 7.296320 -1.227321 0.868618 5.001726 -7.278066 3.599060 0.233471 0.352105 3.151496 0.027584 -2.695055 1.443238 3.077302 1.288368 0.880812 -11.289924 -2.117164 -0.232050 4.500772 2.751908 3.922911 3.412037 -1.849190 -4.919711 -0.894214 -2.941986 3.011549 -3.565170 3.054406 2.966563 -4.621337 1.984067 0.678577 -5.507286 2.944564 0.886348 4.363604 0.183178 1.990299 0.417539 -2.019162 -0.115545 0.712684 1.273223 0.670240 -1.714430 -5.458550 1.831469 -4.128429 -2.119007 -2.844873 6.619057 2.406575 -0.050217 -1.712520 -3.513756 -7.182208 -7.892518 -1.696374 -0.377074 5.487624 1.372208 -0.778816 2.325892 0.241445 5.988796 -0.577194 -2.038292 -1.761366 -0.360717 3.235857 -8.137172 -10.711445 -1.032576 1.363494 -0.597250 -4.532489 -1.352268 -2.395129 -2.800254 1.065564 6.132368 5.968568 1.619374 -3.112707 4.605460 -6.583444 5.300942 9.368653 0.660228 3.223060 -2.433008 1.666686 -0.452853 1.828413 -0.577589 -4.655223 0.128305 -0.388395 -1.013251 5.283920 7.168503 -10.807447 -1.439275 -0.965234 -8.596117 -1.075667 -1.961254 0.061350 3.386682 -1.229303 3.761677 -0.062671 5.596664 -4.082481 -9.691873 1.457836 -4.387962 2.197337 3.702814 -0.834047 -1.079793 1.137595 -6.567162 -2.677470 -0.279511 1.415084 -0.640107 -0.063832 6.893946 0.256321 -0.698312 1.689720 7.301468 3.749204 -0.683910 3.345311 -5.635831 -0.928957 2.311507 0.192234 -6.911684 4.707963 -0.111821 0.217319 5.356519 -0.630536 -1.652872 0.819144 -3.265669 -2.557434 -2.099741 5.297245 -0.085130 1.767646 1.188794 -2.959410 -2.152130 1.874190 0.792940 5.044338 -0.503882 1.324676 -0.964113 2.044474 -3.866473 10.458010 0.563426 3.997904 -0.130881 -0.211054 2.600820 0.447591 -1.751515 0.522741 4.252736 -5.884646 2.119547 0.893533 5.030131 -7.291451 2.333531 -3.336065 -2.456580 1.674965 6.363661 -7.937323 0.249196 2.681123 4.012663 6.414623 -6.193778 -2.388690 -3.418899 -0.845096 1.688508 -0.736119 -3.569011 0.769794 2.642975 1.610043 -1.846267 5.708458 0.310800 -2.154427 -4.173191 -0.993746 -7.680018 3.388758 -8.348920 -1.364203 -0.007783 1.818280 -0.733199 -1.385648 -1.776606 4.672514 -2.830012 1.120511 -0.104729 -2.036132 5.605694 3.223317 5.929101 -0.694315 0.203840 -9.274984 -1.113455 -2.881110 -3.584491 1.304110 1.115060 -3.203627 2.919473 5.477174 -6.617066 +PE-benchmarks/biconnectivity.cpp__Graph::isBCUtil(int, bool*, int*, int*, int*) = 4.359091 1.182742 5.676244 -3.961074 -5.001469 2.998853 -1.021993 -6.015032 1.271412 12.996341 4.350333 -4.498215 -1.043977 9.352068 -3.633110 -4.602946 1.513456 2.546130 0.789022 -3.125066 -0.480277 3.012618 -1.834610 -3.140770 2.021525 -3.167939 1.916124 3.967137 -1.388956 3.508079 -4.594771 -1.681502 0.159492 11.217417 1.137926 0.373736 0.001608 11.679472 -10.618303 11.135437 -11.457940 -11.703655 9.224638 2.115745 2.042407 -3.275654 -3.784668 4.153783 -2.276138 -5.974580 3.229131 -3.244730 3.292811 -3.994319 1.599985 6.681633 -13.020478 1.407749 1.152040 -5.780061 -7.299904 -1.336330 4.459810 4.052452 -7.415046 -6.420908 3.106395 6.072654 -2.508114 1.401294 -5.007378 -13.780603 7.720615 1.395742 -5.509874 1.309872 2.098301 -8.498500 6.938900 -2.952878 -7.718422 -2.860239 2.042803 -5.887147 4.567154 5.205425 10.871799 -15.600459 4.913451 -13.655461 9.606714 -6.081730 8.972725 9.269652 -7.134342 3.115276 5.640628 11.051822 6.316522 0.577946 9.861306 5.529037 3.041760 -0.499256 6.075485 8.265364 -8.511493 -7.528923 -8.190397 -8.819936 2.111923 -3.915026 -12.375476 0.584175 -6.260705 2.497741 1.116290 -2.904804 -1.131691 12.248216 -17.537916 -2.571391 3.197477 -1.446790 6.596522 7.168293 -0.841579 3.185670 -0.063969 9.536982 -4.599899 -2.487382 -1.809825 5.039574 -8.228181 -4.334467 -7.549271 3.434068 4.502500 -9.469610 -10.225246 -15.746995 -2.222177 8.539971 -2.751680 10.481329 17.496806 -4.873695 -8.911055 6.434169 -0.754152 -3.326085 11.732079 2.187995 14.990066 -11.541972 4.534165 -5.020813 1.999193 2.802041 9.095162 -0.197894 -3.978841 6.320002 0.735672 -5.474314 12.872298 -2.617556 -1.851625 -5.968062 3.615116 -2.110485 -1.120363 10.679455 -9.234807 7.211384 -5.362754 14.727758 -9.370684 -7.783938 3.537225 -13.573785 -4.259651 -6.267936 -2.389167 -0.863064 10.895653 -9.206233 -4.890702 -3.746028 -5.271589 -0.130874 6.505956 -3.473618 1.139403 -0.349115 -2.869166 11.283589 7.556651 1.747335 -0.458752 -8.957131 0.816547 6.599883 -3.573208 -11.928636 -1.306412 -9.200374 -0.420620 -1.390018 -1.044575 6.472244 -8.650434 -4.146412 -1.083222 -3.348287 2.388246 -2.370955 -10.398277 3.993274 -3.245418 4.689388 4.098677 10.287688 10.394916 10.081752 4.886021 -1.162626 2.090501 -6.430769 -4.157278 5.863622 4.278154 3.763222 4.197931 9.607970 1.962488 3.006918 4.937987 1.697484 3.869160 9.846297 1.545538 12.460877 -4.056889 3.335105 -0.077839 -3.292146 7.084471 14.030736 -4.179194 -1.076473 3.607227 0.575517 -4.887647 -4.145946 0.250022 -3.516592 -3.332298 2.928910 5.939817 -0.962396 -5.673320 14.170157 2.599247 -16.121299 7.763215 -0.513776 2.793896 9.241562 -4.244827 2.899257 3.093347 -1.415392 7.508777 5.633975 8.425827 -10.517056 -1.191407 -0.936785 7.671782 8.275711 0.937095 -16.864103 6.062083 4.509591 9.997931 3.025141 10.497634 -8.418362 0.760227 -1.020190 -6.676092 -2.039231 -0.594668 6.254385 -2.344916 3.092455 -13.148382 -2.528780 +PE-benchmarks/biconnectivity.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/find-parity.cpp__main = 0.426058 0.682912 0.343199 -0.488062 -1.109430 0.424784 -0.847562 -0.810263 0.062148 0.195421 0.549013 -0.609474 -0.757826 0.276106 -0.768466 -0.841487 -0.373810 0.083949 -0.082758 -0.833465 0.015630 -0.015453 -0.110437 -0.260323 -0.178546 -0.442451 0.100096 0.224512 1.094141 -0.000173 -0.625552 -0.002436 0.415009 0.986911 0.375118 -0.208516 0.255629 0.999435 0.758903 -0.376283 -1.140191 -1.073400 0.578724 0.247693 0.188162 -0.829785 -0.323615 0.369881 -1.480883 0.600516 0.241862 -0.434554 0.055825 -0.083193 -0.006351 0.723252 -1.347118 1.546223 -0.082823 -0.273417 -0.104526 -0.114745 0.171532 0.350695 0.836366 -0.557576 0.176429 1.201601 -0.808270 0.269026 -0.305120 -0.888723 1.424575 0.052579 -0.654775 -0.100908 0.051469 -0.355909 0.338440 -0.895833 -0.716317 0.034942 0.690465 0.721092 0.497417 0.398789 0.296309 -1.325913 -0.414451 -1.374873 0.681754 -0.388371 0.820730 0.403217 -1.153730 0.005726 0.379429 -0.633687 0.831174 0.512366 0.950805 0.010041 0.543288 -0.109875 0.161522 0.181699 0.210432 -0.026191 -0.040325 -0.913194 -0.492704 0.324902 -1.844173 -0.004507 -0.791563 0.883928 -0.178458 -0.201546 0.144302 0.337943 -1.088402 -1.357758 -0.031952 -0.074660 1.076973 0.658494 -0.077465 0.741411 0.133669 0.953248 -0.151308 -0.378571 -0.212101 0.251620 0.406941 -2.010426 -2.018047 0.563957 0.755666 -0.584474 -1.028922 -0.342262 -0.341950 -0.124987 -0.159105 0.291320 1.439995 -0.271457 -0.820544 0.762289 -0.472669 -0.002741 1.783571 0.118743 1.624372 -1.002751 0.552459 -0.039269 -0.010251 -0.005596 -0.275884 -0.313277 -0.392050 0.127899 0.509154 -0.102848 -0.665994 -0.358402 -0.395340 -0.327628 -0.105401 -0.217282 -0.274485 0.566409 0.251489 0.883917 0.082648 1.267940 -1.109413 -1.630122 0.447176 0.292727 -0.112208 0.656311 0.167761 0.131457 0.844337 -0.994800 -0.477582 0.224824 -0.178826 -0.216781 0.600770 1.314366 0.053285 0.174451 -0.115703 0.320772 1.006771 -0.022070 0.292059 -0.808290 0.114654 0.651213 0.099065 -1.244664 -0.063365 -0.845939 0.063556 0.503996 -0.161257 0.476732 0.319768 -0.414074 -0.362362 -0.593563 1.090195 0.113421 0.580105 0.496409 -0.552717 0.008571 -0.119983 0.905295 0.977213 0.812253 0.531074 -0.184048 0.451631 -0.715651 1.196600 -0.039199 0.764997 0.148131 0.339764 0.956588 0.074334 0.262088 0.724023 0.380759 -0.080384 0.838014 -0.087020 1.398753 -1.356834 0.590328 -0.614236 -0.468845 0.764731 1.963289 -0.839764 -0.343906 0.143688 0.483727 0.446717 -1.269662 -0.205469 -0.236450 -0.410063 0.569247 0.696000 0.050718 -0.528445 1.112517 0.428428 -0.948392 1.209928 -0.029402 -0.061798 0.131436 -0.652465 -0.647406 0.421433 -0.572137 -0.011582 0.675917 0.644467 -0.817706 -0.934857 -0.234440 1.041928 -0.615969 -0.014279 -0.402795 0.150455 1.077709 1.075240 0.745953 0.259960 -0.863550 -1.009467 0.159526 -0.365056 -0.267526 0.185016 0.363234 -0.989173 0.281203 0.208337 -0.637480 +PE-benchmarks/the-knights-tour.cpp__main = 0.119711 0.057421 0.034057 -0.189525 -0.114566 -0.003348 0.068765 -0.067943 -0.061023 -0.199867 0.093506 -0.141551 -0.261953 0.216952 -0.040657 -0.242276 0.021543 -0.236004 -0.123475 0.078801 -0.051914 0.051508 -0.016662 -0.091138 0.075777 0.079244 -0.076906 0.116501 0.217173 -0.278853 -0.184349 0.000000 0.090766 0.272704 0.029079 -0.019678 0.069003 0.378773 0.096547 0.159953 -0.235610 -0.091664 0.241820 -0.063412 -0.113570 -0.388820 -0.137039 0.198142 -0.292839 -0.015795 0.096387 0.000000 -0.150952 -0.154978 0.001358 0.363241 -0.486404 0.414015 0.123916 0.150705 0.022678 -0.088517 -0.048827 -0.155473 0.181072 -0.182388 -0.003967 -0.031426 -0.279883 0.068973 -0.154295 -0.143594 0.536504 0.083626 -0.088923 0.087863 -0.030689 -0.108029 0.120900 -0.331746 -0.154630 -0.040017 0.105489 0.242781 0.312023 -0.007357 -0.134861 -0.351859 -0.125816 -0.341390 0.079988 -0.327201 0.129916 0.250497 -0.234499 0.125797 -0.009317 -0.275619 0.029011 0.172031 0.244174 -0.026754 0.082688 -0.017518 0.094527 -0.028757 -0.021133 -0.084748 -0.009399 -0.176707 -0.090107 0.123104 -0.449742 0.079006 -0.144012 0.231280 0.049580 0.097032 0.039123 -0.137137 -0.148717 -0.099069 0.038952 -0.056409 0.241633 0.320810 -0.053335 0.012107 -0.197448 0.225954 0.086001 0.148880 -0.094099 0.092662 0.143988 -0.562810 -0.277651 -0.050524 0.101423 -0.103620 -0.296663 -0.198468 0.006473 -0.112755 -0.140266 0.118487 0.359996 -0.064512 -0.176934 0.307216 0.168032 0.294868 0.255723 0.007580 0.381016 -0.161964 0.047223 0.126490 -0.033483 -0.039714 -0.322886 -0.086029 -0.177495 0.003401 0.029878 -0.293934 0.144254 0.043212 -0.061542 0.223998 -0.130712 -0.141137 -0.318325 0.305960 0.309304 0.296563 0.103974 0.363358 -0.110219 -0.273007 0.154298 0.186391 0.076668 -0.094188 -0.122814 0.050582 0.054153 -0.258536 -0.160229 0.036991 0.073950 -0.143736 0.191172 0.234972 -0.021629 -0.002933 0.072766 -0.017567 0.194041 -0.191752 0.182375 -0.312529 0.083124 0.108814 0.000559 -0.341508 0.102734 -0.055054 -0.040730 0.273798 -0.030307 0.020429 0.026253 -0.153860 0.145996 -0.068588 0.144980 0.022984 0.045052 -0.026486 -0.061984 -0.076754 0.103862 0.254849 0.249749 0.094439 0.018249 0.021246 0.026061 0.039048 0.015976 -0.132181 -0.101351 0.200650 0.130390 -0.001781 0.115478 0.003433 0.169770 0.119722 -0.125767 0.229784 0.280349 0.313104 -0.040389 -0.117475 0.042292 -0.144973 0.242867 0.312923 -0.340320 -0.050412 0.140996 0.131215 0.064063 -0.255965 -0.108657 -0.080559 -0.264771 0.298348 -0.073075 -0.027060 0.002819 0.333676 -0.087356 -0.295264 0.203624 0.079803 0.087201 -0.043649 0.003304 -0.019835 0.207575 -0.222741 -0.031846 0.093205 0.231489 -0.109956 -0.131360 -0.018426 0.141435 -0.133774 0.109803 -0.129500 -0.076664 0.184303 0.284900 0.166028 -0.075127 -0.048690 -0.181959 -0.002961 0.057535 -0.003729 -0.045972 0.103766 -0.152532 -0.128478 -0.065171 -0.097506 +PE-benchmarks/the-knights-tour.cpp__printSolution(int (*) [8]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/the-knights-tour.cpp__isSafe(int, int, int (*) [8]) = 1.196636 0.135981 0.855506 -0.796635 0.099606 0.653568 0.843061 -0.715903 0.634031 2.360628 0.454426 0.114282 -0.901101 0.380241 -0.359123 -0.903481 1.342785 -0.454382 0.507488 -0.021572 -0.093212 0.320015 -0.138698 -1.037286 0.768807 -0.518186 0.360139 0.829468 -0.171690 0.420747 -1.266579 -0.095326 -0.093594 1.983524 -0.019230 0.052253 0.065012 1.703791 -1.071668 1.727935 -2.092769 -1.773552 1.785790 0.193387 0.018913 -1.028071 0.717841 0.333287 -0.074416 -1.284718 0.337652 -1.085501 0.934288 -1.037269 -0.152469 1.829100 -2.227196 -0.208083 -0.046628 -0.377907 -1.116096 -0.506563 1.090759 0.613605 -0.852280 -1.078926 0.822112 0.296925 -1.198746 0.647746 -1.292472 -2.013827 1.576143 0.672010 -1.133226 0.202332 0.015418 -2.055531 0.715504 -0.579693 -0.754804 -0.660184 0.510383 -0.178734 0.864386 0.311294 1.652730 -2.634502 0.244629 -1.934217 1.776428 -1.111849 2.102400 1.491462 -0.713539 0.623563 0.598724 1.558324 0.093818 -0.502286 1.965255 0.986291 0.998832 -0.891717 0.753152 1.080737 -1.462630 -1.480808 -0.754004 -0.587289 0.050312 -0.140453 -2.339252 -0.227281 -1.835550 0.854210 0.945751 -0.691113 -0.508881 1.964695 -3.046677 -0.995483 0.276947 -0.296906 1.691592 1.274045 0.227192 0.381462 0.584342 1.856597 -0.262341 -0.578943 -0.863697 0.810611 -1.270784 -0.540535 -0.333416 -0.227623 0.723507 -1.685753 -2.084021 -2.455986 -0.626047 1.206201 -0.069355 1.341301 2.588400 -0.176805 -1.289601 0.726133 -1.092110 -0.168286 1.836242 0.295443 1.950210 -2.517015 1.636648 -0.611335 1.622774 0.480536 2.746274 -0.567564 -0.757160 0.671311 -0.152974 -0.108399 0.969076 -0.017989 0.427624 -0.376626 -0.450347 -0.514400 -0.580178 1.735601 -1.716519 1.535392 -1.089221 2.618218 -1.914978 -1.434475 0.553550 -1.478710 -0.614672 -1.354631 -0.519436 0.327460 1.454903 -1.832468 -1.072649 -0.451884 -0.233717 0.588085 1.500785 -1.079709 -0.208955 -0.703459 -1.080045 2.449635 0.432151 -0.339170 -0.195277 -1.182980 0.052595 0.779638 -0.765332 -1.517616 -0.271113 -1.399502 -0.165313 0.491681 -0.076290 1.081636 -1.080290 -1.178828 0.522601 -0.356293 0.096318 -0.890935 -2.370857 0.451888 0.030627 -0.407890 0.307317 1.866590 1.380785 0.994498 -0.142593 -1.025137 0.650191 -1.143786 -1.532719 0.630691 0.320601 0.764686 0.398735 1.329878 0.043987 0.165260 0.597302 0.306972 0.549785 1.430398 0.599714 1.398194 -0.836433 0.182023 0.636836 -1.473019 1.123901 1.542181 -0.882179 -0.263997 0.593144 0.456291 -0.644186 -0.514115 -0.193146 -0.761122 -0.419559 0.616077 0.737064 -0.263472 -1.096505 2.790479 0.625211 -2.925462 1.310175 -0.120106 0.358341 1.657260 -0.902652 0.520657 0.658643 -0.064779 1.195640 0.087423 1.570592 -1.246733 -0.108940 -0.198318 0.987611 0.399792 -0.619677 -2.391270 -0.299672 0.318205 2.226122 1.660977 2.211253 -0.686497 0.934544 -0.928300 -1.028457 -0.205942 -0.629746 1.224617 -0.235501 -0.064207 -2.875575 0.903316 +PE-benchmarks/the-knights-tour.cpp__solveKTUtil(int, int, int, int (*) [8], int*, int*) = 2.127491 0.911104 2.479431 -3.020783 -1.578977 0.826667 1.666050 -2.385337 0.526720 6.594272 2.178246 -2.045619 -2.143000 4.689508 -1.253354 -2.510218 1.859647 -0.306257 -0.029184 -0.943172 -0.168189 1.759219 -0.623390 -2.166188 1.707424 -1.030247 0.580790 2.683250 -0.174821 0.701643 -2.641162 -0.626590 0.305524 5.766124 -0.114042 0.047975 -0.524713 5.846235 -6.628351 5.973405 -6.362778 -5.499453 5.560578 0.874507 0.293994 -4.137230 -1.788028 2.207654 -0.742341 -3.876703 1.403407 -1.511123 1.485667 -3.007816 0.651695 4.968178 -7.130538 0.612973 0.969180 -2.092942 -3.404018 -0.859273 2.804427 1.234523 -3.680874 -3.660845 1.430146 0.776943 -2.178041 0.905988 -3.312474 -6.617492 3.169989 1.253201 -2.496696 1.146435 0.203074 -5.496674 3.377478 -2.070085 -3.008501 -1.561294 1.319247 -2.018715 2.439922 1.898141 4.504049 -7.953576 1.005534 -6.400526 4.383035 -3.849576 4.774132 4.855518 -2.761705 1.983856 1.889540 4.079392 2.340991 -0.290438 5.138505 2.924324 2.954074 -0.991391 3.380449 4.223732 -4.769576 -4.292403 -3.872439 -4.000400 1.013871 -1.941668 -6.469236 0.365917 -3.815291 -0.507457 1.661079 -2.141332 -0.883365 5.986627 -8.182268 -1.125906 1.791447 -0.891954 3.211568 4.761591 -0.051208 0.685879 -0.225642 4.718254 -1.200995 0.076808 -1.297584 2.609967 -3.848017 -3.269397 -2.028288 0.586572 1.707410 -4.841722 -5.415670 -8.253514 -0.946482 3.024401 -1.443566 4.168166 8.600386 -1.958742 -4.807913 3.288393 -0.026415 -0.737928 5.011394 0.717615 7.900281 -6.338187 3.008344 -1.822685 1.733603 1.688866 6.103289 -0.666721 -2.745931 2.436992 -0.581956 -4.299978 5.142861 -0.749648 0.064558 -1.907835 1.228620 -1.731312 -1.595906 5.792266 -4.916595 4.783660 -3.092532 7.005545 -4.779337 -3.855075 2.289296 -6.201044 -1.923799 -4.325191 -2.025989 0.084480 4.918304 -4.403624 -2.563793 -2.822312 -1.735403 -0.019206 3.958245 -4.358974 0.128310 -1.099407 -1.349754 4.904385 3.027952 -0.352433 0.613209 -4.697466 0.799360 3.426188 -1.107687 -7.002359 -0.170212 -4.481956 -0.551614 0.189142 -0.707437 3.232195 -3.542535 -2.651903 0.997403 -1.678374 0.322550 -2.123242 -5.941439 1.687004 -1.805296 1.498257 1.948463 5.884002 4.890082 4.208043 1.164349 -1.149853 1.207959 -3.190591 -3.851827 2.470520 0.743768 1.551645 2.323421 4.120516 0.979076 1.234441 3.105894 0.966676 0.905372 5.001754 1.849423 5.550412 -0.726344 0.459984 1.099921 -2.809040 3.195744 6.425823 -1.163207 -1.186483 2.347574 0.569282 -2.678276 -2.110821 -0.479869 -2.046795 -2.595132 3.047440 2.254557 -1.190341 -2.366800 7.753658 0.891776 -8.669769 3.727000 -0.312253 1.689867 4.160218 -2.145993 1.799427 2.270767 -0.937776 3.475365 2.049894 4.412936 -4.691316 -0.988220 -0.354801 3.558576 4.502986 -0.389053 -9.842692 2.115361 1.765432 5.954848 2.207716 6.252417 -3.231980 1.359291 -1.187499 -2.346116 -0.704002 -1.408282 3.340238 -1.496913 0.198042 -7.725067 0.481299 +PE-benchmarks/coin-change.cpp__main = 0.473561 0.226349 0.223025 -0.715856 -0.735120 0.261282 -0.379017 -0.413915 0.091725 -0.123115 0.515315 -0.609206 -0.402040 1.000992 -0.382990 -0.711753 0.033005 -0.569298 -0.093683 0.028229 -0.001347 0.266209 -0.155962 -0.072145 0.001329 0.069501 -0.184963 0.276898 0.954585 -0.502092 -0.956399 0.030474 0.016917 0.951357 0.221555 -0.462418 0.467372 1.347765 -0.107276 0.392578 -0.788753 -0.367065 0.501181 0.095857 -0.339667 -0.894284 -0.721851 0.443610 -0.934339 0.166885 0.690382 -0.227892 -0.156870 -0.065111 0.253940 0.957302 -1.631899 1.195440 0.229975 0.614757 0.228870 -0.310944 0.157948 0.019449 0.182791 -0.521421 0.395788 0.389194 -0.689903 0.022083 -0.454369 -0.987556 1.460059 0.323927 -0.586107 0.043952 0.191995 -0.985432 0.564061 -1.000151 -0.821459 0.119773 0.185658 0.123494 1.101693 -0.122868 0.026107 -1.271252 -0.038686 -1.346469 0.306894 -1.028341 0.552678 0.940177 -1.150376 -0.020526 0.149086 0.020603 0.757721 0.362520 0.978199 0.298086 0.166256 -0.188682 0.401940 0.277991 -0.092261 -0.030014 -0.173039 -0.806751 -0.480697 0.147272 -1.798808 0.194396 -0.510914 0.415393 -0.000464 0.034624 -0.105935 0.279850 -0.659870 -0.747850 -0.111369 -0.133149 0.734281 1.214745 -0.287943 0.326189 -0.490503 1.036401 0.024539 0.191766 -0.366858 0.172107 -0.205616 -1.479349 -1.435108 0.183174 0.585983 -0.560748 -1.127031 -0.926707 -0.055717 -0.441081 -0.289602 0.943634 1.404124 -0.286701 -0.769994 1.070595 0.296956 0.472441 1.491181 -0.126776 1.464707 -0.739445 0.364449 -0.080325 -0.064516 -0.564264 -0.849458 -0.078416 -0.151571 -0.028398 0.117077 -0.676956 0.649059 0.117141 -0.391729 0.002693 -0.113428 -0.396288 -0.902743 1.240501 0.343864 0.678911 0.361083 1.347152 -0.532555 -1.131982 0.636255 0.181549 0.241796 -0.237197 -0.451587 0.178068 0.638584 -0.704516 -0.442105 0.027446 0.146134 -0.444910 0.359431 1.086231 0.099314 0.105024 0.285638 0.323059 1.143139 -0.154869 0.644736 -1.019041 0.243556 0.739614 -0.431010 -1.108456 0.282310 -0.620485 0.017360 0.470126 -0.193804 0.215810 -0.519034 -0.834162 -0.062225 -0.115357 0.872623 0.242605 -0.741075 0.321301 -0.604823 0.010885 0.434050 0.715011 0.877796 0.681779 0.591293 -0.289257 0.256667 -0.099741 0.339241 -0.162282 0.217949 0.434162 0.366810 0.689680 0.246785 0.047453 0.407512 0.515761 -0.221172 0.732249 0.625175 1.267463 -0.097821 -0.007559 -0.292491 -0.598543 0.778577 1.765054 -0.863046 0.029524 0.362382 0.592468 0.117223 -1.230035 -0.166055 -0.381192 -0.533419 0.366528 -0.216870 -0.078809 -0.225439 1.096204 0.016504 -1.066942 0.674417 0.073426 0.147609 0.243879 -0.150457 -0.191282 0.354337 -1.046991 0.543473 0.524394 0.696943 -0.297768 -0.467859 -0.128804 0.617308 -0.327535 0.347640 -0.539282 0.494044 0.801427 0.969914 0.851736 0.133784 -0.454564 -0.699058 0.092302 -0.272529 -0.198202 -0.093080 0.560678 -0.872154 0.095969 -0.209701 -0.766010 +PE-benchmarks/coin-change.cpp__count(int*, int, int) = 3.838211 0.453023 2.294996 -3.406143 0.224791 1.696401 2.615715 -3.744564 0.356306 10.232588 2.675600 -2.169708 -3.390482 4.310886 -0.915204 -3.903709 4.742582 2.421114 0.818514 -1.875517 -1.398613 1.161084 -0.838598 -4.369590 2.985439 -2.660347 1.003446 3.362236 -1.035136 2.148119 -3.763255 -0.656875 0.226261 8.706496 0.110076 0.316360 -1.464622 7.249136 -7.600247 8.753091 -8.254674 -6.952488 8.199395 1.530000 1.168898 -3.595466 -0.938260 2.218241 0.205100 -5.891758 0.629906 -3.798189 3.080976 -4.872695 -0.222733 8.329363 -7.926873 -1.140716 1.118423 -4.259997 -6.109547 -0.853087 4.746078 1.678414 -5.432091 -5.610318 2.477276 1.966917 -2.885662 1.704990 -6.885154 -10.310764 3.211904 2.641548 -3.385538 1.243918 -1.088237 -6.734424 3.233466 -0.228433 -3.521490 -3.076531 2.580615 -1.954583 2.148998 3.657753 8.064286 -11.677390 1.483940 -9.217588 6.845724 -4.339705 9.025403 6.683967 -1.917292 3.117625 2.983772 5.346652 0.586581 -0.563606 7.712544 2.891166 2.527746 -2.721814 4.574999 5.545474 -6.863578 -7.230616 -3.882921 -3.497072 1.485741 -1.841708 -7.109193 0.558843 -8.663971 0.704169 2.350099 -1.977388 -1.746833 8.189776 -11.317008 -3.358824 2.220168 -1.789986 6.848275 5.985637 1.314001 1.132105 0.544160 6.450874 -1.081028 -1.843178 -3.165293 4.352422 -4.461137 -3.407351 -1.787495 0.232863 3.347726 -8.209408 -8.334819 -10.159068 -2.519405 5.617071 -1.911312 6.934058 11.919894 -2.634764 -5.183760 3.259463 -3.016158 -0.297974 7.499901 1.807407 11.893950 -11.302140 6.650110 -1.904004 5.033473 3.630059 8.871351 -2.485089 -4.439798 3.861683 -0.369094 -1.878144 7.249703 -1.706933 1.252821 -1.459733 1.317842 0.010826 -1.687546 7.395631 -8.290071 6.854587 -4.360197 10.690637 -7.661954 -5.164886 3.124945 -7.367712 -4.276053 -5.132202 -1.146740 -1.247664 7.156241 -6.029240 -4.429887 -3.035685 -2.651849 1.715020 6.978069 -3.918197 -0.589891 -2.343018 -4.514599 8.071781 2.842816 -0.577482 -0.183503 -6.280663 0.779697 4.278197 -2.303518 -8.034594 -0.840717 -5.950661 -0.923395 -0.368012 -0.613734 5.355583 -5.278992 -3.480372 1.320611 -1.267443 0.579182 -3.934574 -7.043654 3.018240 -1.179525 -0.368956 2.167543 9.438546 6.479608 5.562841 0.054130 -3.193791 1.941398 -4.925916 -7.041586 4.257396 0.517428 4.167226 2.784016 4.482876 -0.153453 2.101567 3.863543 -1.367170 3.360250 6.552661 2.489262 6.979659 -1.468255 1.046762 2.801573 -6.340833 4.739266 7.845229 -2.675715 -2.821009 3.267395 -0.130245 -4.526712 -2.944102 -0.452050 -2.263565 -4.695013 3.698009 4.177341 -0.843857 -5.360649 12.268531 2.063203 -13.211612 6.329013 -0.070598 1.856690 7.298218 -3.717231 3.773016 3.027607 1.033978 3.378462 2.175812 7.030841 -7.386555 0.431526 -0.760379 4.697382 5.128524 -3.039275 -13.347413 2.107361 2.562031 9.264616 4.382655 8.648287 -4.010387 4.129060 -2.929961 -3.487293 -0.404316 -2.769418 4.958570 -1.723404 0.313171 -11.645764 3.604543 +PE-benchmarks/magic-square.cpp__main = 0.164122 0.099499 0.076347 -0.380822 -0.272057 -0.066395 0.213450 -0.048879 -0.029265 -0.150748 0.186734 -0.310308 -0.324077 0.551133 -0.073579 -0.327984 0.080641 -0.410300 -0.164543 0.182792 -0.033845 0.239663 -0.030611 -0.065719 0.188737 0.147580 -0.193765 0.239948 0.372776 -0.425746 -0.327192 0.007125 0.109084 0.450580 -0.042171 -0.143000 0.142670 0.720475 -0.172778 0.395991 -0.386962 -0.118523 0.418846 -0.052980 -0.220902 -0.700567 -0.383848 0.303387 -0.326424 -0.107011 0.246370 0.050250 -0.207976 -0.225374 0.125926 0.616850 -0.852319 0.555872 0.223017 0.299995 0.076704 -0.147695 -0.077790 -0.218567 0.042918 -0.306170 0.019919 -0.118837 -0.393920 0.059428 -0.205592 -0.316362 0.774455 0.164311 -0.206346 0.194030 0.021136 -0.445672 0.293885 -0.566459 -0.288813 -0.013617 0.134969 0.224222 0.537003 -0.103872 -0.109557 -0.628643 -0.156059 -0.566512 0.136918 -0.652742 0.212245 0.548331 -0.429892 0.205406 -0.028852 -0.230888 0.209657 0.277778 0.476637 0.142252 0.219797 -0.034961 0.173892 0.140543 -0.133260 -0.166039 -0.128173 -0.338551 -0.121656 0.131045 -0.832751 0.124463 -0.168368 0.175147 0.154630 0.052277 0.027121 0.068597 -0.223264 -0.112536 0.111775 -0.094032 0.245270 0.665536 -0.105286 -0.060096 -0.399945 0.446699 0.117902 0.339973 -0.154925 0.147109 -0.062359 -0.855463 -0.361913 -0.132145 0.077481 -0.230609 -0.501065 -0.511416 0.048192 -0.213046 -0.233992 0.224094 0.694978 -0.137426 -0.336533 0.586457 0.386308 0.389549 0.392962 -0.050737 0.675982 -0.277274 0.061149 0.076249 -0.057437 -0.124140 -0.209340 -0.027993 -0.265424 -0.051868 -0.024808 -0.745867 0.451499 0.098092 -0.098474 0.246312 -0.129365 -0.266493 -0.558891 0.666925 0.294007 0.510373 0.033851 0.626578 -0.138583 -0.452816 0.335731 0.199450 0.157110 -0.363651 -0.241772 0.165753 0.151748 -0.360451 -0.233257 -0.012788 0.083648 -0.277293 0.227439 0.141372 -0.008307 -0.038572 0.178562 0.023744 0.374022 -0.263760 0.347978 -0.579302 0.155743 0.207481 -0.100843 -0.688584 0.232873 -0.148129 -0.069814 0.308570 -0.100151 0.010538 -0.104170 -0.354144 0.212974 -0.128436 0.194901 -0.008010 -0.251700 0.016316 -0.207771 0.010675 0.201455 0.387767 0.498502 0.191456 0.090927 0.016553 0.043231 0.039199 -0.110938 -0.076774 -0.138809 0.194626 0.229995 0.203592 0.228691 -0.003969 0.271397 0.213626 -0.196017 0.393643 0.472559 0.592858 0.090014 -0.250347 0.074151 -0.251302 0.405581 0.652480 -0.341112 -0.082471 0.267445 0.260804 -0.012434 -0.423078 -0.153188 -0.166815 -0.427095 0.458849 -0.231162 -0.128955 0.067280 0.562300 -0.149398 -0.583688 0.268719 0.077336 0.187240 -0.035574 0.063683 0.021691 0.362256 -0.436518 0.136319 0.156570 0.374474 -0.150014 -0.324633 -0.036534 0.207543 -0.004029 0.229538 -0.473436 0.018572 0.301508 0.492356 0.253709 0.100294 -0.066917 -0.264162 0.014563 0.050624 -0.100328 -0.130742 0.172963 -0.338209 -0.129817 -0.258058 -0.214032 +PE-benchmarks/detect-cycle-undirected-graph.cpp__main = 0.761823 1.043171 1.161721 -0.374771 -1.149490 0.162803 -1.576478 -0.178660 0.407112 0.867856 -0.393922 -0.846729 -2.534781 1.175739 -1.998424 -2.058039 -0.463830 -0.898351 0.354238 -1.948603 -0.192043 0.340822 0.277437 0.287865 0.516451 -0.847477 -0.301586 0.360361 2.696759 -0.839030 -0.777038 0.421697 0.272749 1.526241 -0.426836 -0.557356 1.312206 2.427785 1.487649 -0.238626 -2.168744 -1.976087 0.473653 0.446831 0.256452 -1.081778 0.201008 0.366254 -4.846646 2.803236 0.754664 -0.099386 -1.306191 -0.100052 1.116085 1.423746 -4.574667 4.470506 -0.843720 1.013568 0.400508 -0.530799 -0.228624 -0.626022 2.986057 -0.573030 0.355384 1.931034 -3.062804 1.478489 0.032157 0.075069 1.537079 0.085510 -1.126907 0.652220 1.279832 0.408628 0.438536 -4.718843 -0.938372 -0.096020 1.818988 1.208808 1.792519 1.308822 -0.842663 -2.141245 -0.413304 -1.338611 1.228317 -1.669781 1.263556 1.367305 -1.951206 0.874417 0.265623 -2.322803 1.180240 0.444663 1.892601 0.106898 0.842544 0.162039 -0.749312 -0.068411 0.247022 0.461538 0.229794 -0.766806 -2.235944 0.793534 -1.881179 -0.818846 -1.156988 2.751438 1.024272 0.053602 -0.671488 -1.485788 -2.928912 -3.146228 -0.640097 -0.184096 2.281828 0.758309 -0.362316 0.894217 -0.050740 2.542427 -0.190894 -0.674935 -0.773071 -0.116346 1.345586 -3.522429 -4.379669 -0.494801 0.569011 -0.271449 -1.973663 -0.668980 -0.934325 -1.188554 0.354399 2.510875 2.591647 0.621470 -1.297846 2.035561 -2.491497 2.319284 3.831048 0.256340 1.445274 -1.021831 0.662779 -0.130125 0.710624 -0.300445 -2.029494 0.056525 -0.226933 -0.427369 2.127533 2.652287 -4.164147 -0.554241 -0.420133 -3.297499 -0.514352 -0.877667 -0.179608 1.572381 -0.320781 1.656823 0.044420 2.424092 -1.636889 -3.994762 0.676075 -1.621578 0.980226 1.330263 -0.419535 -0.379500 0.448072 -2.757178 -1.155800 -0.103864 0.614654 -0.340640 0.021187 2.834155 0.091875 -0.295155 0.769056 2.887913 1.614158 -0.363399 1.455916 -2.452139 -0.319497 0.923871 0.030752 -2.932829 1.996541 -0.037004 0.065137 2.285559 -0.270615 -0.707417 0.325895 -1.430340 -0.931152 -0.878237 2.159259 -0.011054 0.666695 0.421379 -1.190269 -0.897010 0.834528 0.401473 2.183471 -0.175245 0.557199 -0.376740 0.826942 -1.466711 4.126034 0.153479 1.505666 0.062706 -0.030504 1.024192 0.262068 -0.737778 0.266026 1.781465 -2.419998 0.949770 0.571701 2.180754 -2.842556 0.811252 -1.291309 -1.065902 0.789624 2.682146 -3.333168 0.129646 1.165417 1.716632 2.586273 -2.583890 -1.009983 -1.429211 -0.486953 0.838592 -0.407975 -1.473470 0.358379 1.211310 0.561913 -0.899502 2.314051 0.157402 -0.800065 -1.690383 -0.333120 -3.059508 1.470067 -3.502170 -0.505754 0.008761 0.841245 -0.305824 -0.636524 -0.721135 1.887452 -1.193327 0.529399 -0.123974 -0.870848 2.305663 1.425723 2.469982 -0.313638 0.099369 -3.799840 -0.446165 -1.147128 -1.463908 0.495156 0.509741 -1.354347 1.083957 2.112597 -2.717996 +PE-benchmarks/detect-cycle-undirected-graph.cpp__Graph::isCyclic() = 0.978698 0.317819 1.982229 -2.114045 -0.525968 0.540247 1.461965 -1.086021 0.490890 4.618312 0.870328 -0.969112 -2.340450 3.007130 -0.509209 -2.023090 1.547696 -0.931832 0.220295 -0.824645 -0.315213 1.177929 -0.227260 -1.315176 1.502519 -0.968302 0.277293 1.981253 -0.396435 0.067739 -1.268108 -0.461201 -0.149089 3.924722 -0.381310 0.645886 -0.397741 4.275078 -4.019931 4.835410 -4.423449 -4.127395 3.789410 0.419101 0.023032 -2.202777 -0.177010 1.495760 -1.342247 -2.351109 0.962133 -0.832630 0.752985 -2.214820 0.540021 3.289747 -5.148051 0.598789 0.283975 -1.451943 -2.349807 -0.796197 1.555906 0.518805 -2.048236 -2.216471 0.854452 0.058623 -2.265535 0.820989 -1.968705 -3.550672 1.600272 1.303169 -1.418295 1.137014 0.483480 -2.733614 2.043242 -2.118913 -2.011622 -1.399720 0.962606 -1.756899 1.977264 1.593279 2.826789 -5.339231 0.707611 -3.996115 3.165852 -2.606613 3.260783 3.486890 -1.093233 1.962799 1.269567 2.049847 0.758101 -0.859549 3.398367 1.581252 2.017570 -0.084353 2.301576 2.527901 -3.516881 -2.969923 -2.570360 -2.302754 0.581622 -1.504720 -2.958995 -0.025674 -2.568038 0.126358 1.773782 -0.925944 -1.255248 2.895669 -5.911670 -0.872919 1.075716 -0.719604 2.502156 2.728191 0.042216 0.270138 0.214395 3.356544 -1.070870 0.299112 -1.156048 1.822860 -1.537826 -1.104137 -1.154752 -0.188351 0.901991 -2.936981 -3.724207 -5.403272 -1.080153 2.212812 -0.808035 3.802356 5.960771 -1.118776 -3.028409 2.397228 -1.033229 0.575073 2.965628 0.733556 4.345223 -3.898776 1.712373 -1.366746 1.353965 1.487160 4.937432 -0.237301 -1.775648 1.761024 -0.084884 -1.078664 2.060143 -0.569486 0.067822 -2.311640 0.503399 -1.638335 -1.255713 3.718833 -3.726138 3.342455 -2.000879 4.785483 -3.166141 -2.756682 1.546942 -4.728117 -1.132854 -3.262070 -1.599036 -0.241429 2.667371 -3.388173 -2.030835 -2.296138 -0.906645 0.028149 2.309357 -3.188868 0.043318 -0.881411 -0.761822 4.432022 1.862315 -0.287603 0.078261 -3.498510 0.430140 1.914070 -0.413211 -4.125601 0.401938 -2.236435 -0.559187 1.146407 -0.289821 1.814444 -2.302337 -1.647135 0.769637 -1.013527 0.045554 -1.413290 -4.778724 0.845036 -0.235941 0.424416 1.878677 3.676793 3.198606 2.287597 0.471062 -0.555678 0.451243 -1.813522 -2.457282 1.285578 0.365721 1.254406 1.483359 2.416696 0.967768 0.649543 2.336008 1.181594 -0.143487 3.149941 1.018916 3.540002 -0.498438 0.050815 0.992295 -1.793964 1.906222 3.663071 -1.459850 -0.588386 2.203552 0.543861 -1.322410 -1.378714 -0.402816 -1.893268 -1.060108 2.293225 1.323413 -1.161456 -1.320620 5.137786 0.434356 -5.860494 2.549648 -0.070308 1.175250 2.340793 -1.194883 0.717872 1.858434 -1.609834 2.277845 1.112924 2.778087 -3.008106 0.201244 -0.279645 2.232293 3.023555 -0.145510 -6.228981 0.245966 0.758474 3.873393 2.025072 4.309564 -1.582005 0.507747 -1.002005 -2.047381 -0.706150 -0.763435 2.142269 -0.406104 0.233373 -5.110810 0.252581 +PE-benchmarks/channel-assignment.cpp__main = -0.076628 -0.911224 0.688258 -0.995910 -0.809278 0.668100 -0.939861 -0.362673 0.429136 -1.763222 0.648940 -0.552217 -0.739164 1.023759 0.135021 -1.666157 0.278779 0.599572 0.173207 0.159287 -0.009533 -0.022359 -0.309121 0.198221 -0.022630 -0.458359 -0.005901 1.171130 1.973098 0.032243 -1.261840 -0.083682 -0.665833 1.601645 0.401819 0.191239 1.143741 2.672966 0.479437 1.331588 -0.124712 -0.292244 0.674772 0.078268 -1.176868 -0.019053 -1.481833 0.325350 -3.246749 0.485366 1.639925 -0.294021 0.313199 0.199858 0.846626 1.245558 -2.216621 0.838193 0.043807 0.829071 0.500099 -0.705869 -0.722376 -0.044936 -0.318802 -0.462620 0.877963 0.666999 -0.785134 -0.126180 -0.342976 -1.500496 3.230215 0.807445 -0.903194 0.259617 1.503311 -1.233043 0.755550 0.371327 -1.783581 -0.062136 -0.290221 -0.819068 2.702739 -0.707684 0.433661 -1.909095 0.104091 -2.271454 0.656698 -1.947649 0.829129 1.872428 -2.544122 0.398623 0.722351 0.932953 -0.016536 0.006314 1.519824 0.404796 -0.746571 0.030016 1.381754 -0.421302 -0.190122 -0.448360 -0.745456 -1.058077 -0.780981 -1.079491 -3.310971 -0.012936 -0.683349 1.314965 -0.303801 0.855684 -0.562054 0.112262 -0.510984 0.538097 -0.183847 -0.365644 0.985479 1.666122 -0.731031 0.375032 -0.363929 1.971487 -0.660431 0.118231 -1.040396 0.280356 0.460120 -0.572443 -2.173113 0.132224 1.138677 -0.454521 -2.034086 -0.666414 -0.678156 0.267354 0.074924 1.872454 2.447072 -0.376976 -0.758233 1.701935 -0.141180 1.709875 2.169505 0.357108 1.404221 -0.710639 0.180222 -1.278550 -0.292157 -1.016431 -2.008136 0.286735 0.067774 0.666432 0.243049 0.268474 2.732002 -0.546915 -0.823391 -0.637481 -0.233180 -0.891257 -1.735943 2.711429 0.271423 0.969184 0.958187 2.256488 -0.453162 -1.817531 0.701836 0.569321 0.445639 -1.124180 -0.628963 -0.012444 0.627911 -1.216422 -1.218721 -0.402219 0.444229 -0.243836 0.163175 3.289926 0.010180 0.245629 0.803077 0.616410 2.202699 0.403010 0.231870 -1.822485 0.400344 0.900496 -1.444849 -0.337375 0.893952 -0.211005 0.023247 0.199822 0.184237 0.161003 -1.552755 -1.349189 -0.955522 0.294784 1.294986 0.904950 -3.425836 0.446891 0.451239 -0.502447 1.617003 0.444387 2.253165 0.884851 1.299999 -0.198144 0.437552 0.629483 -0.056174 -0.377331 0.383150 1.731793 0.152307 1.264720 0.562327 -0.128300 0.187951 1.474835 0.647833 0.786545 1.759933 2.263292 1.406641 -0.479513 -0.315415 -0.656442 1.248302 2.627792 -1.238986 1.464938 0.854156 1.814640 0.280148 -3.093930 -0.192565 -0.661508 -0.268107 0.684754 -1.104845 -0.285832 -0.347090 1.518194 0.116660 -1.751773 0.306688 0.284786 0.234014 0.698502 -0.024165 -0.399132 0.395635 -2.170887 1.885869 0.397157 0.618378 -0.438185 0.470561 -0.151655 0.274768 -0.293286 0.746322 0.503018 0.586847 0.429966 1.504416 1.925501 -0.076799 -0.375351 -0.935672 0.029948 -1.658956 -0.349055 -0.163082 0.548391 -1.078673 0.321009 -0.899085 -2.441138 +PE-benchmarks/channel-assignment.cpp__bpm(int (*) [4], int, bool*, int*) = 1.792210 0.503569 2.398236 -1.964758 -1.256719 0.942712 1.187433 -1.968211 0.620427 6.103567 1.604217 -1.555774 -1.092573 3.892115 -0.987055 -1.740935 1.531610 -0.050145 0.294448 -0.762125 -0.316847 1.449608 -0.590901 -1.667994 1.473947 -1.039863 0.628765 1.960935 -1.310489 0.961059 -1.879836 -0.656093 0.071067 4.791084 -0.003173 0.316816 -0.383806 4.899691 -5.346631 5.668042 -5.104855 -4.905800 4.447503 0.694217 0.621077 -2.001297 -0.870725 1.888457 -0.116673 -3.470639 1.181940 -1.279493 1.356722 -2.370713 0.491006 3.508976 -5.619007 0.012842 0.611284 -2.251824 -3.266096 -0.714594 2.102929 1.335375 -3.401416 -2.801470 1.181513 1.166043 -1.530329 0.721829 -2.493909 -5.479893 2.542631 1.007147 -2.066429 0.916856 0.472433 -3.871958 2.849095 -1.600085 -2.755391 -1.475969 0.891295 -2.391719 1.879694 2.046252 4.395213 -6.643264 1.637666 -5.377737 4.139882 -2.847377 3.982530 4.144153 -1.929674 1.774109 1.960820 4.206207 1.871339 -0.195981 4.198673 2.379658 1.963151 -0.425085 2.705161 3.727472 -4.272365 -3.716004 -3.484529 -3.243217 1.198413 -1.516929 -4.301128 0.217110 -2.924061 0.462108 1.375558 -1.368774 -0.828789 5.040426 -7.379764 -0.856776 1.566987 -0.723348 2.827607 3.310438 -0.072875 0.779212 0.024644 3.931726 -1.528099 -0.400892 -1.005515 2.292280 -3.447055 -1.464466 -1.664137 0.651908 1.453203 -4.075866 -4.391195 -7.207652 -0.869875 3.510987 -1.266390 4.222192 7.320155 -1.816104 -3.608937 2.610371 -0.268121 -0.936956 3.980358 0.829194 6.063302 -5.138547 2.208764 -1.775560 1.443010 1.590472 5.776405 -0.269528 -2.045109 2.462031 -0.127511 -2.655746 4.975778 -0.668585 -0.167009 -2.036399 1.135642 -1.184110 -0.951142 4.572724 -4.284499 3.385876 -2.692383 6.155851 -3.952491 -2.881189 1.722642 -5.686467 -1.764527 -3.702526 -1.449770 -0.111414 4.214688 -3.879694 -2.167526 -1.999937 -1.919327 0.102659 2.967900 -3.461572 0.230074 -0.719947 -1.455034 4.940855 2.392667 0.128197 -0.152167 -3.892886 0.360964 2.407204 -1.193016 -5.096879 -0.375445 -3.640049 -0.443245 0.020073 -0.449915 2.634497 -3.486476 -1.889837 0.615637 -1.420588 0.171067 -1.614829 -5.061414 1.330058 -0.862282 1.516435 1.815741 4.667252 4.021884 3.743852 1.216636 -0.659085 0.620439 -2.523587 -3.222555 2.303165 0.939234 1.547156 1.875019 3.515315 0.924944 1.103161 2.323061 0.518039 1.111248 4.122821 0.957241 4.632253 -1.106896 0.778837 0.886112 -1.880309 2.797691 4.958396 -1.496219 -0.931993 1.909844 0.073154 -2.414829 -0.965670 -0.074677 -1.742481 -1.506756 1.831001 2.265643 -0.702131 -2.169674 6.360248 0.758859 -7.285113 3.049959 -0.254436 1.483138 3.919431 -1.645029 1.726648 1.668581 -0.515518 3.127634 1.871391 3.738050 -4.203753 -0.332736 -0.343192 2.881304 3.899493 -0.048877 -8.081516 1.592009 1.268814 4.454468 1.532987 5.232694 -2.947454 1.207933 -0.948128 -2.535704 -0.749410 -0.750501 2.814144 -0.515352 0.701620 -6.650548 0.304302 +PE-benchmarks/longest-palindrome-substring.cpp__main = 0.508712 0.057457 1.560925 -1.515602 -1.296039 -0.023257 -1.943047 0.802029 0.980528 0.782797 0.720982 -1.556641 -2.960256 2.133484 -0.968278 -2.353295 0.845827 -0.353914 1.705476 -0.925824 0.995089 0.471082 1.387441 -0.064356 0.654149 -0.497771 -2.270435 1.129211 4.853272 -1.273028 -0.726931 0.948492 0.575051 1.368604 -1.790850 -1.504283 0.948484 2.736718 0.088186 0.541298 -1.472526 -1.124447 2.088328 0.556686 -0.589109 -1.798831 -1.306814 0.841349 -3.591805 -0.340641 0.807899 0.636022 0.140907 -1.128839 -0.557300 2.291521 -5.360045 2.477932 -0.596204 0.779176 1.425824 1.357243 -0.358516 0.388191 2.103551 -0.864448 -0.058100 0.084456 -2.959817 -0.410223 0.566312 0.290548 3.304565 0.166551 -0.696996 1.690925 2.689555 -0.823515 1.600423 -3.633644 -1.402615 -0.006151 -0.131938 0.081784 2.454902 -0.174963 0.386149 -1.944832 0.212983 -1.485465 2.611111 -2.480869 0.767566 1.916431 -2.489332 0.949506 1.194068 -1.392358 2.207516 0.618627 3.675083 1.301439 1.096241 0.617597 0.257828 0.394885 -0.442097 0.674168 -1.251597 -1.769416 -1.386756 -0.329504 -3.310628 -0.048854 -0.538794 1.160622 2.843742 -1.273295 -0.127501 0.650328 -1.358244 -0.829059 0.142527 -0.089863 -0.189141 2.423955 -0.313854 -1.029784 0.220896 3.441326 -0.999714 -0.332739 2.087059 0.262815 1.005783 -3.451169 -1.483804 -0.069849 -0.670794 -1.453664 -1.358283 -1.991624 0.937013 -1.194962 0.137392 1.751730 3.999318 0.806104 -1.086254 2.107438 -0.250701 1.007472 3.485739 0.000566 3.440315 -1.178973 -1.103006 -1.083611 -0.550044 0.832413 0.566746 0.970053 0.838572 -0.002278 1.655244 -0.706251 -1.742060 -0.954777 0.202474 -0.357856 -0.295389 -1.713914 -1.727652 1.243859 1.255498 1.812933 0.736979 3.217228 0.975253 -4.288951 1.817612 0.293705 0.000237 0.380139 -0.921000 0.689281 -0.648698 -1.914499 -0.815226 -1.952507 0.549097 -0.666466 0.453809 0.968887 1.841458 0.768819 -0.104177 1.299944 0.879325 -0.133462 1.459938 -3.526391 -0.611118 0.791604 -1.202286 -3.273178 1.525868 -1.371629 1.306305 2.776347 -1.296645 0.928118 -0.619870 -2.288547 -0.676208 -0.915284 0.883208 -1.130847 -1.306701 -0.096859 0.027289 0.748114 1.527500 1.736658 2.686356 0.822811 -0.212025 1.561393 0.557032 0.304048 1.494505 -0.596638 -0.486587 0.456110 0.400258 1.028719 0.033259 0.707261 2.055870 1.797682 -1.552476 1.819975 -0.115521 1.771215 -0.271580 -0.748364 -0.237837 -1.311398 1.580060 3.368888 -1.263078 -0.074201 1.386649 1.400764 1.400870 -2.979727 0.283451 -0.918945 -0.397694 2.398184 0.085074 0.453335 -0.093358 -0.005537 1.052409 -2.853330 2.921286 -0.367734 -0.437719 0.157204 0.105076 -1.243867 0.625483 -3.009973 -0.516267 0.786921 1.203854 -1.881336 0.160990 0.169372 2.414512 -0.933190 1.665976 -3.070609 -0.752865 1.141798 0.426711 1.611881 1.169384 -1.021862 -3.964138 0.346493 -0.744602 -1.960303 -1.185974 -0.737333 -2.493697 0.477627 1.180558 -0.810509 +PE-benchmarks/longest-palindrome-substring.cpp__printSubStr(std::__cxx11::basic_string, std::allocator >, int, int) = 0.549571 0.458065 0.580022 -0.889838 -0.386312 0.126736 0.612592 -0.512228 0.074256 1.681319 0.486902 -0.463367 -1.069438 1.113590 -0.354160 -0.852795 0.457234 -0.594989 -0.092598 -0.323113 -0.100916 0.538014 -0.077412 -0.576290 0.614860 -0.214886 -0.058862 0.697401 0.184067 -0.324313 -0.584698 -0.097613 0.175400 1.489404 -0.177971 0.036117 -0.149161 1.536781 -1.436350 1.301343 -1.909954 -1.528458 1.566999 0.161257 -0.020516 -1.435500 -0.133315 0.659289 -0.391148 -0.839358 0.268956 -0.340574 0.157638 -0.920755 0.105101 1.527070 -2.182931 0.655545 0.239590 -0.461224 -0.836176 -0.184419 0.717528 0.072306 -0.383143 -1.024215 0.237786 0.001289 -0.957860 0.320379 -0.803941 -1.397339 0.909234 0.361400 -0.564234 0.440834 -0.144096 -1.191448 0.805826 -1.125624 -0.633272 -0.461084 0.623173 -0.089324 0.597023 0.563125 0.797121 -2.070831 -0.054601 -1.526034 1.129342 -0.970909 1.291298 1.170253 -0.529338 0.654105 0.371119 0.211838 0.533583 -0.102331 1.421998 0.483101 1.051687 -0.150163 0.595757 0.961289 -1.187622 -0.980625 -0.840105 -1.001448 0.163748 -0.178358 -1.530880 0.082657 -1.075376 -0.022184 0.744613 -0.607970 -0.176708 1.181635 -2.106159 -0.593149 0.435896 -0.232058 0.991010 1.295509 0.118307 0.055428 -0.062723 1.240266 -0.204304 0.209391 -0.367620 0.688426 -0.491884 -1.313138 -0.550092 -0.082020 0.292144 -1.228326 -1.357278 -1.985381 -0.195303 0.437047 -0.446527 1.012413 2.270337 -0.484471 -1.352429 0.984246 -0.104431 0.125196 1.242413 0.143995 2.037357 -1.617336 0.736705 -0.230773 0.488443 0.610424 1.593476 -0.227800 -0.812180 0.431548 0.009732 -0.963506 0.490732 -0.095561 0.072654 -0.286718 0.141258 -0.571636 -0.550147 1.261401 -0.821260 1.500728 -0.683857 1.829792 -1.299383 -1.236859 0.668275 -1.372898 -0.448193 -0.959571 -0.667510 0.113867 0.967312 -1.236853 -0.636944 -0.789865 -0.284958 -0.151691 1.063530 -1.183913 0.071052 -0.360380 -0.354112 1.246377 0.692280 -0.338870 0.292654 -1.338490 0.218779 0.807105 -0.003643 -2.035670 0.063136 -1.039552 -0.181805 0.711951 -0.276308 0.800110 -0.455369 -0.632026 0.489768 -0.505990 0.117338 -0.657952 -1.093917 0.301668 -0.516700 0.161415 0.406925 1.610142 1.193291 0.915079 0.043681 -0.201787 0.307682 -0.825599 -0.676764 0.387544 0.012491 0.423226 0.703174 0.833898 0.344894 0.314552 1.040946 0.342172 -0.185455 1.361843 0.412436 1.458820 -0.551529 -0.005328 0.335078 -0.775756 0.793594 1.529324 -0.618938 -0.489916 0.739372 0.245299 -0.411431 -0.580069 -0.190444 -0.635429 -0.733011 1.103508 0.595908 -0.369004 -0.509620 2.053157 0.150119 -2.210689 1.257725 -0.056787 0.436903 0.616921 -0.474519 0.194233 0.817307 -0.521063 0.463466 0.517213 1.254274 -1.204993 -0.330747 -0.104830 1.096056 0.796067 -0.061154 -2.577563 0.073735 0.546951 1.583642 0.678021 1.540443 -0.653426 0.010130 -0.329424 -0.362083 -0.220208 -0.320700 0.747194 -0.438266 -0.060616 -1.730761 0.367686 +PE-benchmarks/egg-dropping-puzzle.cpp__main = 0.432847 0.275505 0.256470 -0.638706 -0.399309 0.078792 0.009966 -0.430103 0.105410 0.281491 0.479252 -0.635228 -0.208746 1.013275 -0.428009 -0.414311 0.152425 -0.385436 -0.191237 -0.016903 0.107886 0.222439 -0.054091 -0.426061 0.073191 0.018555 0.058624 0.304317 0.383566 -0.292595 -0.691119 0.020568 0.301285 0.872450 0.108929 -0.206194 0.060579 0.838975 -0.527839 0.710879 -1.087908 -0.448144 0.780773 0.114496 -0.137030 -1.231163 -0.708968 0.366585 -0.279437 -0.230212 0.187093 -0.247649 -0.030072 -0.438805 -0.021733 1.004845 -1.238075 0.731349 0.230988 0.123871 -0.129478 -0.169823 0.394883 0.119240 -0.146870 -0.568697 0.217600 0.244598 -0.598809 0.203172 -0.525242 -0.964851 1.121537 0.131382 -0.453007 0.067097 -0.165389 -0.981156 0.487727 -0.807678 -0.374078 -0.062820 0.334890 0.259845 0.512154 0.081773 0.271345 -1.169924 -0.200947 -1.053103 0.480206 -0.810541 0.598861 0.608950 -0.764110 0.115707 -0.002412 0.081570 0.615366 0.502477 0.728241 0.435656 0.475427 -0.420814 0.511079 0.501310 -0.225290 -0.397304 -0.162045 -0.665503 -0.193426 0.084155 -1.597066 0.141011 -0.626813 0.105579 0.011292 -0.211148 0.053918 0.632822 -0.770719 -0.499344 0.141846 -0.102777 0.504485 0.988629 -0.065165 0.205887 -0.340233 0.684412 0.200243 0.076068 -0.181944 0.248954 -0.582193 -1.470217 -0.752450 0.130185 0.327451 -0.620963 -0.928475 -1.097579 -0.082058 -0.011246 -0.296336 0.490830 1.089056 -0.132047 -0.873176 0.587519 0.613915 0.007514 1.076551 -0.045213 1.537515 -0.980870 0.593065 0.023689 0.194340 -0.030811 0.126917 -0.342288 -0.457210 0.091072 -0.144084 -1.463869 0.798984 0.088451 0.020790 0.209999 -0.075884 -0.303790 -0.604275 0.988987 0.007096 0.868662 -0.334832 1.158632 -0.767528 -0.871232 0.460587 -0.274590 -0.054240 -0.225124 -0.234583 0.137902 0.843560 -0.640945 -0.404685 -0.008722 -0.138044 -0.125494 0.707228 -0.066380 -0.047381 -0.151311 -0.149444 0.382076 0.537734 -0.382862 0.562049 -0.727319 0.164111 0.778763 -0.008808 -1.391181 0.068777 -0.727882 -0.043462 0.048957 -0.148275 0.354469 -0.429688 -0.567222 0.211854 -0.330285 0.383675 -0.257823 -0.418486 0.267459 -0.651846 0.171258 0.099750 0.945253 0.730688 0.518608 0.125233 -0.325094 0.168261 -0.558056 -0.146781 0.155002 0.171624 0.026660 0.340810 0.720439 0.020671 0.086224 0.554841 0.234774 -0.140155 0.703984 0.471275 0.809569 -0.240839 0.077879 -0.012082 -0.616492 0.676671 1.421798 -0.372154 -0.385940 0.277544 0.250140 -0.142157 -0.729162 -0.303484 -0.189580 -0.722901 0.696809 0.120516 -0.088578 -0.250918 1.163275 0.181711 -1.080218 0.661741 0.026274 0.117287 0.314059 -0.438906 0.082083 0.459829 -0.279521 0.193647 0.284820 0.706279 -0.489444 -0.725710 -0.101873 0.562983 0.328946 0.014194 -1.120203 0.458500 0.681487 1.052012 0.410653 0.554578 -0.479553 -0.100078 -0.143932 0.050714 -0.099020 -0.232790 0.447099 -0.677191 -0.139484 -0.605496 -0.130708 +PE-benchmarks/egg-dropping-puzzle.cpp__eggDrop(int, int) = 4.589582 0.291942 2.624157 -3.795792 0.691129 1.935727 2.997009 -4.423255 0.120457 12.453277 3.147761 -2.774038 -4.010934 4.734823 -0.594456 -5.575841 5.380768 4.461357 0.789451 -2.992544 -1.920884 1.047202 -0.947067 -5.985815 3.924536 -4.071650 1.311950 4.601184 -1.600869 3.574188 -3.587477 -0.860044 0.677693 10.915678 -0.105164 1.064540 -2.105587 8.663330 -9.528239 10.569035 -9.590777 -9.346848 11.143161 2.072622 1.120023 -3.107334 -1.159935 2.533605 -0.141376 -7.213871 0.296493 -4.401682 4.084531 -6.518513 -0.585205 10.496034 -9.485728 -1.934181 0.998492 -6.666776 -8.555926 -0.820762 5.366336 1.966930 -6.728757 -7.192263 2.648024 2.837019 -2.799763 2.108860 -8.442324 -12.835837 4.901375 3.409136 -3.574234 1.895895 -1.503906 -7.370281 3.770264 1.393156 -4.062295 -4.473280 3.579304 -2.055788 2.089443 5.249593 10.637896 -14.334481 1.616315 -11.293990 9.119826 -4.911206 11.503236 8.008201 -2.359565 4.521493 3.957063 6.466143 -0.018079 -1.145176 9.532328 2.904939 3.036023 -2.985482 5.363159 7.006030 -8.854464 -9.549904 -5.056141 -4.187120 2.295969 -2.832869 -8.877544 0.723846 -11.029887 0.742992 3.096296 -2.704829 -1.961173 10.403627 -13.901303 -3.563165 3.209422 -2.311601 8.485983 6.537703 1.995555 1.086302 1.034106 7.617663 -1.309111 -2.838701 -3.883988 5.614135 -5.243143 -3.888182 -1.791984 0.536886 3.997073 -10.558948 -10.130496 -11.970410 -3.118288 8.325650 -2.550109 8.408773 14.937981 -3.390629 -6.410957 3.552202 -3.522897 -0.249361 8.910591 2.791113 14.859314 -14.227654 8.261093 -2.485595 6.272610 5.755098 11.087399 -3.181673 -5.872071 5.694338 -0.119911 -1.142088 9.639249 -3.016128 1.856138 -1.551752 1.933191 0.363130 -1.401613 8.992547 -9.600687 8.821372 -5.586346 13.314013 -9.753223 -6.505997 3.695372 -9.887089 -6.544273 -6.608063 -1.018080 -1.902154 8.636388 -7.520823 -5.688724 -4.127560 -3.680168 2.430423 8.966516 -4.658787 -0.775255 -3.130249 -6.070144 9.734243 3.244997 -0.423311 -0.880145 -7.970663 0.813698 5.235873 -2.958961 -9.847663 -1.303577 -6.768140 -1.098872 -0.624703 -0.571050 6.944866 -6.457285 -3.413657 1.444582 -1.536061 0.313916 -5.303178 -8.126059 3.849924 -0.872928 -0.375793 2.652635 12.107475 8.637223 6.746088 -0.287007 -3.355822 2.484414 -6.339781 -8.986866 5.799339 0.507748 5.910679 3.644885 5.599249 -0.608378 2.768836 5.349971 -1.659359 4.663159 7.894569 2.987235 8.903501 -1.513339 1.235334 3.745824 -7.556254 5.837454 9.611292 -3.236216 -3.738676 4.329824 -0.308457 -5.603647 -3.583542 -0.531295 -2.438213 -6.035852 5.096966 5.573627 -1.171666 -6.779642 15.456913 2.937598 -16.587810 8.101175 0.305015 2.182991 8.837931 -5.123632 4.767225 4.036040 2.085671 3.621777 2.700338 8.943848 -10.161470 1.712633 -0.849505 5.908880 6.720429 -3.984203 -16.348899 2.455838 3.229498 11.372441 4.996625 11.026850 -5.054737 5.283934 -3.896251 -4.127012 -0.319659 -3.229921 5.303134 -2.098568 1.113270 -14.521620 4.596925 +PE-benchmarks/palindrome-partitioning.cpp__main = 0.335053 0.137397 0.133117 -0.321170 -0.385772 0.214954 -0.504225 -0.267768 0.028181 -0.237537 0.201837 -0.314909 -0.333639 0.398492 -0.301780 -0.568587 -0.110104 -0.278536 -0.074320 -0.158170 -0.054522 0.006583 -0.074759 -0.057074 -0.047840 -0.046686 -0.046233 0.081172 0.692632 -0.339462 -0.524768 0.046819 0.032340 0.573838 0.162622 -0.200177 0.346707 0.767742 0.457329 -0.047225 -0.417990 -0.319168 0.223188 0.048012 -0.173646 -0.289147 -0.227818 0.253684 -0.888317 0.373544 0.331300 -0.145096 -0.232232 -0.033337 0.083326 0.495297 -1.028987 0.966008 0.028875 0.383086 0.077533 -0.201029 0.098878 -0.043558 0.452126 -0.287055 0.258014 0.443118 -0.578247 0.117862 -0.234694 -0.473115 0.986267 0.171008 -0.305258 0.017794 0.140176 -0.250411 0.238774 -0.649019 -0.469671 0.041840 0.228891 0.182628 0.694056 0.046960 -0.112759 -0.717658 0.021689 -0.772472 0.177599 -0.519630 0.359138 0.466553 -0.762965 0.018786 0.104850 -0.148191 0.330209 0.200261 0.582270 -0.021208 -0.019382 -0.070171 0.139510 -0.063289 0.095680 0.092075 0.038464 -0.456954 -0.420204 0.149621 -1.026493 0.075825 -0.387696 0.541163 -0.044137 0.160212 -0.079735 -0.184706 -0.548329 -0.687545 -0.168609 -0.073776 0.625949 0.531642 -0.184381 0.297282 -0.196910 0.635473 0.026516 -0.101945 -0.226643 0.050734 0.212348 -0.887671 -1.136953 0.133608 0.447000 -0.253286 -0.696056 -0.298028 -0.136491 -0.270982 -0.121027 0.736649 0.797296 -0.072639 -0.418242 0.615101 -0.116156 0.470520 1.095032 -0.008257 0.803140 -0.425983 0.236197 0.055354 0.018145 -0.287830 -1.101528 -0.112650 -0.044604 0.004027 0.255197 0.224516 0.022839 -0.023401 -0.237176 -0.111781 -0.123041 -0.219984 -0.482076 0.621460 0.398628 0.424196 0.410577 0.827668 -0.389410 -0.806683 0.321923 0.119874 0.144708 0.141669 -0.204998 -0.081475 0.336127 -0.534594 -0.313160 0.124200 0.135368 -0.223605 0.222447 1.199443 0.076096 0.068985 0.169258 0.256453 0.701612 -0.114459 0.356819 -0.647170 0.072743 0.468421 -0.208778 -0.476505 0.201009 -0.277156 0.031841 0.461197 -0.081807 0.075553 -0.192026 -0.443869 -0.153389 -0.002080 0.671214 0.186990 -0.165778 0.166725 -0.324858 -0.153285 0.259380 0.398699 0.553219 0.313965 0.337015 -0.195179 0.216460 -0.098319 0.568030 -0.223142 0.174504 0.449745 0.171975 0.286754 0.099993 0.006879 0.210691 0.376561 -0.240748 0.409476 0.343855 0.798631 -0.335326 0.103530 -0.298813 -0.350056 0.452565 1.047257 -0.858077 0.081006 0.222218 0.433553 0.307369 -0.890868 -0.173662 -0.237227 -0.247707 0.111542 -0.111475 -0.051287 -0.135891 0.602210 0.075965 -0.504116 0.522540 0.083115 -0.025974 0.016684 -0.162102 -0.332271 0.237913 -0.729247 0.111229 0.285349 0.377724 -0.194060 -0.087113 -0.101791 0.500326 -0.579635 0.185349 0.132173 0.236301 0.556228 0.524498 0.645508 -0.232329 -0.247774 -0.649007 0.037364 -0.212217 -0.119794 0.093779 0.320547 -0.499257 0.100202 0.167170 -0.614256 +PE-benchmarks/palindrome-partitioning.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/palindrome-partitioning.cpp__minPalPartion(char*) = 6.262600 1.060989 4.636099 -4.239406 1.007341 3.339136 4.429389 -6.856383 0.457193 19.800787 4.669908 -3.356952 -4.722396 6.122557 -1.559521 -5.329441 7.684543 6.244517 1.245687 -4.703054 -2.883649 1.048932 -1.728846 -8.928326 5.335811 -5.496681 3.354650 5.403996 -3.972472 6.114393 -5.078089 -1.623067 1.368025 15.368261 0.524555 1.781355 -3.595886 11.487226 -13.465667 14.632173 -13.627329 -14.743623 15.682468 2.760947 3.257773 -3.104991 0.614469 4.264251 2.170343 -11.757748 -0.416667 -6.823734 6.361390 -9.545060 -2.052358 12.838397 -12.000800 -3.873725 1.491019 -10.297293 -13.750879 -1.804312 8.910356 3.791812 -10.660607 -9.437291 3.901609 4.390027 -4.073677 2.848959 -12.086872 -18.232442 4.859034 3.428861 -5.007637 2.057359 -2.739130 -10.144449 5.245035 3.042762 -5.714571 -6.031866 4.801375 -4.062679 1.895635 8.357210 15.568645 -20.366045 2.686039 -16.128740 12.961906 -5.468626 16.533169 10.633571 -3.392339 6.053812 6.001518 12.081047 -0.091668 -1.224716 13.216042 4.292342 4.535522 -4.342254 8.222257 10.548088 -12.946056 -13.773810 -7.650210 -6.273064 4.296141 -3.171908 -10.007519 0.631206 -15.973953 0.078971 3.400598 -3.687979 -3.250707 15.050628 -21.959544 -5.542711 4.658554 -2.984434 12.694140 7.951719 2.781903 2.758629 2.948153 10.390623 -2.590402 -5.399765 -5.186005 8.187574 -7.424677 -3.721905 -2.118711 1.494874 6.146021 -14.755506 -14.317312 -18.523150 -4.725579 12.502461 -3.454960 10.275873 20.606844 -4.531492 -8.365015 4.135490 -6.347068 -1.763728 12.771008 4.064224 20.647144 -20.499827 12.215375 -2.587026 9.252812 8.397721 17.075194 -5.022179 -8.177408 7.756854 -0.073358 -0.759191 12.988380 -4.064586 2.761207 -4.079607 3.300541 0.137302 -1.584744 11.731664 -14.972985 10.844777 -8.783630 18.722878 -14.710974 -8.159753 4.748026 -14.567186 -8.904023 -8.975122 -0.893036 -3.208736 13.636023 -10.699268 -8.031104 -4.912450 -5.067207 4.046704 12.706837 -8.621676 -1.180244 -4.286128 -9.376740 12.714595 3.225105 -0.807315 -2.128914 -10.186540 -0.049730 7.516959 -2.939499 -12.962898 -3.089863 -11.316341 -1.861997 -1.591368 -0.519693 10.162367 -8.674283 -4.441298 2.660498 -2.639710 -0.129887 -7.596740 -11.262175 5.582779 -1.288076 -0.316658 3.188858 17.576314 11.174942 10.154268 -0.507042 -4.784093 3.369723 -9.821271 -13.214328 8.504911 1.210578 8.463087 5.070326 7.840034 -0.033299 4.580980 6.497739 -4.047388 6.690895 11.891524 3.383613 12.051747 -4.610307 3.251106 5.353190 -9.815565 8.145033 12.429070 -3.414846 -6.402546 5.107225 -1.759488 -8.645494 -2.755678 -0.635243 -3.197622 -6.860767 5.089750 9.545982 -0.789431 -10.096584 22.203912 3.649408 -23.572232 11.561193 -0.515898 3.795916 13.991870 -7.793577 7.304754 5.275490 4.822368 6.033044 4.075454 12.500698 -14.551563 1.864572 -1.449451 9.414345 9.652999 -6.707592 -24.042965 4.862024 3.117647 14.933757 6.707252 14.821176 -8.165003 8.739037 -6.058020 -7.145866 -0.116580 -3.862470 9.348155 -0.889155 0.714839 -22.452249 7.753672 +PE-benchmarks/dfa-based-division.cpp__main = 0.466854 0.400056 0.374433 -0.928369 -0.415789 0.085563 0.311840 -0.442172 0.133569 0.874624 0.468452 -0.677103 -0.983503 1.049151 -0.338400 -0.859201 0.367711 -0.840391 -0.160698 -0.110097 -0.053110 0.352604 -0.018458 -0.568923 0.372227 -0.037123 -0.087740 0.619266 0.672498 -0.561741 -0.748952 0.027755 0.256840 1.319503 -0.031325 -0.174937 0.092916 1.394058 -0.767773 1.029012 -1.594764 -0.921755 1.312152 0.086073 -0.297821 -1.408789 -0.231734 0.630378 -0.833958 -0.406307 0.290135 -0.285578 0.003921 -0.788844 -0.019063 1.548446 -2.022782 1.128844 0.248307 0.079442 -0.368277 -0.283047 0.508310 0.104137 -0.029316 -0.879725 0.221483 -0.066186 -1.143454 0.270462 -0.764148 -1.051496 1.341816 0.357105 -0.603930 0.299727 -0.227069 -1.050380 0.621265 -1.324748 -0.545321 -0.258539 0.582355 0.212022 0.835664 0.232328 0.321819 -1.764949 -0.336510 -1.398526 0.823619 -1.072982 1.007917 1.052397 -0.736899 0.441965 -0.001027 -0.270979 0.496395 0.149914 1.166418 0.294611 0.885153 -0.298446 0.504861 0.662131 -0.663845 -0.659320 -0.341215 -0.821957 -0.206124 0.106876 -1.695920 0.151122 -1.023821 0.359037 0.603115 -0.342925 -0.232137 0.663530 -1.363043 -0.815818 0.134415 -0.204784 1.023728 1.339837 -0.002746 0.176049 -0.188465 1.119165 0.190515 0.231771 -0.376596 0.492439 -0.277654 -1.553617 -0.861478 -0.051918 0.401410 -0.876656 -1.342324 -1.524600 -0.207750 -0.100452 -0.387731 0.997875 1.795903 -0.217444 -1.183054 0.996159 -0.017362 0.453662 1.316754 -0.018653 1.875965 -1.370854 0.741547 -0.033636 0.408238 0.211774 0.964094 -0.386656 -0.742415 0.146464 -0.059362 -0.918291 0.129044 0.253688 0.045913 -0.082116 -0.207580 -0.589576 -0.919001 1.286262 -0.329183 1.335960 -0.368803 1.728664 -1.078471 -1.329263 0.757527 -0.480546 -0.124549 -0.587556 -0.661339 0.268557 0.794523 -1.081728 -0.626670 -0.379435 0.050383 -0.256982 0.975543 -0.288199 -0.049042 -0.295342 -0.210381 1.066769 0.683038 -0.583702 0.516851 -1.238319 0.251989 0.848898 -0.023839 -1.720525 0.158284 -0.804238 -0.166819 0.839454 -0.230348 0.553851 -0.435829 -0.756497 0.475751 -0.347740 0.443280 -0.422656 -1.039520 0.334403 -0.492630 -0.080950 0.402984 1.384822 0.937478 0.624192 0.020615 -0.299089 0.172992 -0.584652 -0.292286 0.056048 0.030516 0.286207 0.591685 0.811266 0.227149 0.149291 0.924312 0.454185 -0.532770 1.090662 0.499272 1.189229 -0.470933 -0.059018 0.198799 -0.863203 0.837087 1.618277 -0.937580 -0.572501 0.657794 0.411014 -0.086476 -0.909848 -0.393443 -0.579639 -0.650229 1.021436 0.142408 -0.296225 -0.322350 1.750368 0.116918 -1.738871 1.115556 0.052211 0.283203 0.307828 -0.494934 -0.033754 0.760647 -0.807174 0.293450 0.421836 1.008673 -0.730170 -0.467473 -0.107161 0.876646 0.259135 0.018920 -1.720439 -0.123481 0.701077 1.518868 0.925303 1.038733 -0.465903 -0.250027 -0.252839 -0.111013 -0.139957 -0.437711 0.617861 -0.726187 -0.081069 -1.023671 0.046485 +PE-benchmarks/dfa-based-division.cpp__isDivisible(int, int) = 0.793674 0.557146 0.386286 -0.827958 -0.998739 0.143733 -0.013604 -0.616006 -0.006317 0.839765 0.714046 -0.901680 -0.200302 1.492897 -0.592892 -0.721167 0.050902 -0.530298 -0.206422 -0.239788 -0.022974 0.571433 -0.166808 -0.299205 0.215159 -0.101358 -0.244057 0.397845 0.403035 -0.374604 -0.848537 -0.032048 0.310761 1.325448 0.100652 -0.639577 0.200448 1.634858 -1.004077 0.788859 -1.348555 -0.887204 1.078575 0.204046 -0.073573 -1.362158 -1.063978 0.590787 -0.091292 -0.245002 0.542035 -0.223007 -0.069637 -0.393289 0.228117 1.325914 -1.967896 1.063638 0.355925 -0.040632 -0.294810 -0.152543 0.342760 0.158846 -0.240394 -0.888773 0.372220 0.644503 -0.469160 0.165977 -0.634600 -1.607818 1.550929 0.309557 -0.618568 0.194705 0.041002 -1.381606 0.925069 -1.136982 -0.912869 -0.074123 0.438859 0.162421 0.791855 0.208448 0.653036 -1.895982 0.092932 -1.751399 0.779654 -1.188804 0.897715 1.183650 -0.989683 0.239265 0.331607 0.267296 1.155866 0.565483 1.367106 0.594911 0.637842 -0.155096 0.430270 0.987696 -0.547136 -0.500178 -0.577309 -1.109107 -0.128645 0.199491 -2.114597 0.363747 -0.660624 0.056868 0.144351 -0.370340 0.145291 1.313716 -1.220487 -0.860979 0.367271 -0.197786 0.703614 1.441388 -0.159973 0.277687 -0.702605 1.220478 -0.027750 0.264831 -0.231835 0.461294 -0.947009 -2.052729 -1.374597 0.295508 0.486883 -1.172019 -1.304936 -1.624659 0.057338 0.077390 -0.609937 1.049452 2.117324 -0.613875 -1.202885 1.216232 0.925347 -0.101799 1.580948 -0.033121 2.315510 -1.282915 0.496125 -0.173502 0.038615 -0.070471 0.173989 -0.082027 -0.462605 0.284016 0.155878 -1.596192 1.463659 -0.122024 -0.340010 0.375865 0.197381 -0.209904 -0.703367 1.452883 0.272007 1.143797 -0.159276 1.879405 -0.907963 -1.295782 0.732777 -0.473224 -0.159213 -0.542899 -0.240443 0.240480 1.126086 -0.840255 -0.522453 -0.094182 -0.477616 -0.463616 0.709328 0.154899 0.237647 0.020475 -0.041406 0.584102 1.252036 -0.108222 0.641348 -1.355078 0.296719 0.888225 -0.350556 -2.042275 0.073489 -0.950495 0.002759 0.127890 -0.327468 0.566410 -0.665064 -0.763299 0.106098 -0.482406 0.615419 -0.154193 -0.496657 0.477196 -0.958977 0.558297 0.156995 1.270146 1.369420 1.099582 0.619169 -0.223363 0.283564 -0.573779 -0.035550 0.399064 0.319519 0.278017 0.636145 1.169237 0.203706 0.269841 0.860948 0.262354 0.029817 1.125244 0.413664 1.753447 -0.481589 0.116652 -0.216401 -0.659658 1.114048 2.288264 -0.518513 -0.505554 0.472145 0.307667 -0.360467 -0.970985 -0.108074 -0.340339 -0.891570 0.696222 0.381074 -0.183347 -0.418342 1.693355 0.169270 -1.794587 1.074796 0.106199 0.296392 0.561451 -0.333929 0.185151 0.644067 -0.545075 0.470955 0.787125 1.189631 -1.003041 -0.853223 -0.136778 0.951132 0.220159 0.382088 -1.994572 0.765919 1.185923 1.316676 0.384900 0.959074 -0.907184 -0.495847 0.148442 -0.065301 -0.349029 0.001319 0.651643 -1.186122 0.359462 -0.767808 -0.386617 +PE-benchmarks/count-ways-reach-nth-stair.cpp__main = 0.299138 0.224208 0.128391 -0.549881 -0.393741 0.045572 0.028419 -0.292985 0.023484 -0.054188 0.420765 -0.548088 -0.373694 0.769836 -0.243818 -0.468037 0.121846 -0.397076 -0.190340 0.077976 0.020424 0.184185 -0.055673 -0.278130 0.096953 0.112461 -0.096061 0.310571 0.606301 -0.401484 -0.617636 0.045821 0.224515 0.726393 0.093150 -0.245557 0.172812 0.839394 -0.304817 0.463114 -0.752704 -0.230230 0.645618 0.044796 -0.265399 -1.012521 -0.589340 0.380137 -0.551138 -0.108333 0.288392 -0.150824 -0.089525 -0.321009 0.034752 0.952544 -1.167671 0.822898 0.259904 0.295869 0.038322 -0.170867 0.165784 -0.040039 0.078769 -0.477614 0.139105 0.057988 -0.541031 0.082489 -0.450338 -0.708004 1.125440 0.148378 -0.376290 0.100168 -0.118501 -0.746590 0.389559 -0.713353 -0.384574 -0.011846 0.266167 0.337692 0.620173 -0.040190 0.000000 -0.966156 -0.310066 -0.919211 0.314320 -0.772566 0.454416 0.605724 -0.739337 0.102582 -0.037400 -0.256172 0.430867 0.407536 0.654096 0.198694 0.339765 -0.279106 0.337498 0.294908 -0.139179 -0.243188 -0.102266 -0.547288 -0.232093 0.174191 -1.354796 0.161205 -0.515051 0.216890 0.085511 -0.095953 0.030029 0.286274 -0.373724 -0.376536 0.056036 -0.106473 0.510022 0.967070 -0.094719 0.136095 -0.373437 0.623966 0.206269 0.208226 -0.224576 0.206233 -0.193651 -1.390706 -0.727062 0.052699 0.307068 -0.449272 -0.797430 -0.787553 0.003989 -0.274227 -0.280554 0.347087 0.948085 -0.148201 -0.644556 0.659427 0.464416 0.309760 0.889769 -0.080645 1.261040 -0.707372 0.399833 0.081141 0.044490 -0.155668 -0.181937 -0.245516 -0.377280 -0.018948 -0.055078 -1.072343 0.534398 0.159688 -0.077637 0.304501 -0.137678 -0.283463 -0.697637 0.892760 0.296015 0.687581 -0.030076 0.982985 -0.497230 -0.804303 0.472675 0.178303 0.065112 -0.216599 -0.330768 0.215660 0.497925 -0.519955 -0.340825 -0.016328 0.093313 -0.251006 0.510449 0.300172 -0.039561 -0.070175 0.020319 0.110997 0.542478 -0.360780 0.526329 -0.716265 0.172199 0.564201 -0.094134 -1.103690 0.158751 -0.497394 -0.047684 0.304359 -0.147140 0.228093 -0.259362 -0.531128 0.224289 -0.218911 0.433374 -0.077934 -0.351010 0.199365 -0.470730 -0.009944 0.201106 0.740819 0.617415 0.404705 0.142937 -0.169542 0.134011 -0.221295 -0.039929 -0.046987 0.005811 0.199994 0.322995 0.435709 0.118641 0.044010 0.421007 0.224824 -0.215536 0.591685 0.548390 0.759467 -0.058160 -0.070726 0.009939 -0.525832 0.594584 1.155289 -0.489242 -0.278384 0.276881 0.314025 -0.005993 -0.760682 -0.245633 -0.202760 -0.631245 0.634440 -0.096434 -0.074292 -0.149215 0.940397 0.006519 -0.870751 0.559016 0.064887 0.140289 0.117392 -0.220515 -0.007817 0.403559 -0.470582 0.166244 0.279832 0.605439 -0.306551 -0.523598 -0.083329 0.436592 0.037452 0.111820 -0.775504 0.204073 0.563241 0.846115 0.474593 0.275383 -0.303239 -0.263765 -0.074720 0.055036 -0.060177 -0.255298 0.341430 -0.604356 -0.134264 -0.361926 -0.206651 +PE-benchmarks/count-ways-reach-nth-stair.cpp__countWays(int, int) = 0.266151 0.141035 0.042871 -0.464296 -0.152885 0.081664 0.116221 -0.251546 -0.039632 0.125272 0.320735 -0.216098 -0.362616 0.497924 -0.139363 -0.427621 0.180357 -0.126279 -0.121154 0.005962 0.036326 0.183422 -0.067912 -0.270908 0.166335 0.005703 -0.056902 0.193353 0.367264 -0.242065 -0.455715 -0.019490 0.116793 0.582936 0.011147 0.006385 -0.050418 0.573430 -0.298845 0.338253 -0.710030 -0.401825 0.564658 0.069509 -0.127242 -0.892939 -0.382707 0.206226 -0.151931 -0.265475 0.130975 -0.213417 -0.013303 -0.304505 0.024845 0.717683 -0.814930 0.343693 0.189802 0.051719 -0.132715 -0.086653 0.328141 -0.109019 -0.045397 -0.403052 0.130217 0.037870 -0.367616 0.072781 -0.401781 -0.687891 0.639722 0.193023 -0.244884 0.104202 -0.168347 -0.677025 0.276284 -0.314333 -0.243558 -0.091538 0.242315 0.287307 0.287572 0.077240 0.180185 -0.796794 -0.155205 -0.691519 0.283598 -0.453791 0.527661 0.412096 -0.467161 0.110610 0.121283 -0.005515 0.274433 0.152590 0.598265 0.204315 0.273787 -0.264395 0.315197 0.237764 -0.234177 -0.274030 -0.140984 -0.443060 -0.040497 -0.018736 -1.066788 0.080341 -0.514874 -0.128913 0.055643 -0.173566 0.068938 0.292627 -0.570299 -0.308246 0.125006 -0.092249 0.394526 0.695838 0.045524 0.009502 -0.198763 0.460632 0.037428 0.114227 -0.214067 0.218420 -0.170482 -0.950456 -0.309314 -0.021959 0.185352 -0.519476 -0.587719 -0.665292 -0.018242 -0.017871 -0.202061 0.148478 0.803361 -0.201708 -0.561432 0.407174 0.276441 0.120414 0.654568 -0.007683 1.002887 -0.679432 0.411691 0.087679 0.156971 0.055947 -0.131445 -0.192256 -0.303701 0.039487 -0.126022 -0.819876 0.444115 -0.086518 0.029254 0.201699 0.003091 -0.228330 -0.375011 0.568405 0.018241 0.642058 -0.126543 0.645523 -0.506665 -0.511831 0.301148 -0.233243 -0.183146 -0.254403 -0.224958 0.005556 0.432800 -0.428188 -0.231368 -0.171376 -0.015745 -0.098553 0.464382 -0.141699 -0.021157 -0.126054 -0.072793 0.023152 0.351578 -0.203764 0.319270 -0.466514 0.118100 0.482322 -0.027232 -0.866019 0.055267 -0.516313 -0.037625 0.173921 -0.141567 0.284162 -0.086269 -0.352413 0.168864 -0.158499 0.218583 -0.206737 -0.176431 0.104818 -0.393770 -0.018936 0.062960 0.692583 0.488033 0.376867 0.008992 -0.208400 0.276853 -0.305752 -0.235174 0.019700 -0.091459 0.260145 0.269674 0.211672 0.095498 0.118887 0.405814 0.119785 0.046741 0.519695 0.436303 0.635410 0.035008 -0.089844 0.107197 -0.477613 0.366404 0.821064 -0.146187 -0.086220 0.221959 0.176822 -0.131664 -0.522849 -0.095317 -0.114157 -0.648200 0.547629 0.095570 -0.027052 -0.250245 0.843214 0.050169 -0.812755 0.496422 -0.014635 0.150510 0.211279 -0.202150 0.096229 0.326818 -0.177516 0.108390 0.189034 0.557399 -0.385538 -0.307794 -0.073074 0.423159 0.178308 -0.086303 -0.672152 0.349430 0.339670 0.714214 0.327152 0.299964 -0.220672 0.005993 -0.164142 0.004266 -0.026036 -0.193974 0.293776 -0.275403 -0.289628 -0.581571 0.106839 +PE-benchmarks/maximum-sum-increasing-subsequence.cpp__main = 0.436468 0.369980 0.243591 -0.510359 -0.948182 0.393409 -0.908856 -0.543525 0.018298 -0.174949 0.432853 -0.577064 -0.525702 0.754523 -0.601809 -0.873755 -0.323342 -0.341741 -0.033539 -0.401244 -0.004747 0.181779 -0.140616 0.089168 -0.163942 -0.121452 -0.170229 0.126140 1.216825 -0.403597 -0.761168 0.041857 0.052903 0.847377 0.321169 -0.391087 0.548090 1.230124 0.487901 -0.102063 -0.816700 -0.577708 0.253172 0.174259 -0.195873 -0.655221 -0.537188 0.364380 -1.422864 0.679506 0.620858 -0.262158 -0.242508 0.179868 0.261039 0.676680 -1.660840 1.612935 0.016087 0.432546 0.255812 -0.213204 0.078417 0.063602 0.675133 -0.414607 0.309239 0.852900 -0.722724 0.110293 -0.211874 -0.766272 1.481761 0.176572 -0.624424 -0.057185 0.288825 -0.484851 0.442303 -1.159557 -0.863318 0.143254 0.314303 0.293170 0.964591 0.126530 -0.072310 -1.139081 -0.010910 -1.260078 0.326352 -0.721503 0.506021 0.692257 -1.248496 -0.100380 0.289246 -0.315157 0.871006 0.333122 0.911257 0.055820 0.054882 0.041692 0.113358 0.088386 0.146501 0.251351 -0.044059 -0.848143 -0.607969 0.245711 -1.682492 0.057354 -0.435527 0.771123 -0.097262 0.057921 -0.026263 -0.048147 -0.804619 -1.083288 -0.252356 -0.074986 0.875637 0.851537 -0.263195 0.556723 -0.313901 1.055047 -0.150993 -0.063488 -0.287750 0.071896 0.182116 -1.584159 -1.966237 0.368448 0.638514 -0.411823 -0.982448 -0.543943 -0.148246 -0.459063 -0.179545 0.981817 1.328947 -0.283135 -0.782242 1.068883 -0.115271 0.453778 1.734431 -0.051366 1.291267 -0.552542 0.201103 -0.105565 -0.207588 -0.529046 -1.280968 -0.028814 -0.003512 -0.011408 0.454487 0.021575 -0.085222 -0.115661 -0.597199 -0.373012 -0.098225 -0.317856 -0.561314 0.875174 0.490920 0.560610 0.498277 1.239890 -0.571884 -1.394227 0.471388 0.010084 0.204196 0.337095 -0.289091 0.043354 0.549688 -0.833833 -0.385869 0.128443 0.132100 -0.501098 0.196614 1.628543 0.197744 0.290448 0.354385 0.478117 1.247747 0.022284 0.522176 -0.917145 0.139448 0.724952 -0.300607 -1.040201 0.290085 -0.572721 0.102120 0.640537 -0.201047 0.171673 -0.246844 -0.620379 -0.406239 -0.223389 1.155520 0.422994 -0.180840 0.381759 -0.664506 -0.018490 0.322472 0.521625 0.868378 0.667669 0.718107 -0.132774 0.371094 -0.214395 1.150669 -0.180041 0.570345 0.386985 0.298254 0.646373 0.218305 0.083551 0.389413 0.648145 -0.277063 0.660463 0.313419 1.356434 -0.649443 0.286099 -0.622817 -0.354160 0.672997 1.827365 -1.121461 0.135225 0.270281 0.592575 0.512046 -1.393688 -0.132685 -0.383783 -0.358298 0.246919 0.002396 -0.037085 -0.251511 0.850347 0.151761 -0.734818 0.919836 0.102623 -0.062710 -0.029945 -0.203278 -0.629992 0.321558 -1.188292 0.265875 0.668136 0.601133 -0.372337 -0.401413 -0.198593 0.801476 -0.631938 0.474830 -0.105437 0.390189 0.996275 0.788984 0.806016 -0.155728 -0.524986 -1.236194 0.240380 -0.344134 -0.315678 0.172280 0.406430 -0.842799 0.323619 0.423961 -1.109279 +PE-benchmarks/eulerian-path-and-circuit.cpp__main = 3.290141 0.351466 4.466312 -2.038703 0.623233 0.006122 -5.503710 3.384760 2.630252 0.450846 -2.483450 -0.130344 -6.218358 3.841074 -6.130283 -4.396048 3.816497 -0.561755 6.181933 -2.949166 2.400608 1.463489 6.095758 0.544211 3.406393 -3.404779 -4.564222 3.668904 12.410460 -2.612421 -0.473909 2.683524 2.419211 3.152224 -4.555964 -4.500361 3.745176 6.099263 3.714609 1.190320 2.152439 0.141839 3.911274 2.189966 -3.191448 -2.752490 -3.872595 -0.172742 -9.480653 0.195694 1.498611 0.393585 -0.820124 -1.716332 -1.835999 5.898686 -11.411313 4.445709 -4.597818 5.290676 5.743060 1.861346 -1.436425 -1.950306 8.088736 -1.633411 -0.717928 1.062136 -10.424910 -0.235342 2.278913 5.158606 7.408465 -0.209073 -2.099718 3.806373 8.099752 -0.889027 0.373759 -9.833686 -1.368196 -0.560743 -1.341414 2.534657 6.517713 -1.508795 -0.737045 -3.522934 -0.209254 0.535572 5.474568 -4.900751 2.634389 3.624146 -6.490341 3.417298 1.682067 -2.053686 0.773262 0.040283 10.319979 3.520355 -1.536014 0.813744 0.251390 -1.420135 0.605848 2.435067 -1.797071 -0.589971 -3.343374 -1.305968 -7.612354 -2.886214 -1.599273 3.304350 6.861343 -2.931893 -3.377118 -0.913916 -4.630471 -2.735295 -1.474742 -0.232927 -1.313166 3.301787 0.531445 -3.347812 2.397959 8.401599 -1.793597 -4.411874 4.267868 -1.149188 3.602846 -7.066967 -1.575258 -4.191252 -2.391050 -1.474966 -4.066839 -3.204723 0.760381 -5.066673 1.362130 3.347127 7.977243 5.346221 0.582781 4.019485 -2.186222 4.591059 8.050298 0.371616 4.667064 -2.360460 -4.699458 -1.604855 -1.118021 3.872355 0.053223 1.505828 4.478663 -0.923849 4.816620 2.149065 -9.646128 -4.247217 1.237485 -1.474018 -3.780633 -2.914852 -3.285244 3.307069 1.656527 2.199965 -0.197251 6.932362 5.324314 -13.059283 1.161951 0.226721 0.989360 -1.072481 0.482383 -1.900588 -2.619962 -5.995007 -2.884726 -1.630527 3.967523 -0.192079 0.056034 1.737489 4.643937 -1.296414 0.001850 4.798911 0.590496 -1.017214 5.363533 -7.687312 -3.221205 2.330990 -1.627495 -7.765065 6.255928 -0.537077 2.277826 5.492782 -4.777132 -2.882938 -2.104530 -5.218975 -3.241276 -3.583130 1.089216 -2.568511 -3.791782 -0.005672 1.394627 -1.866594 4.431745 2.260712 7.874046 -1.988074 -2.412168 2.789110 2.765172 0.002857 1.794063 0.133007 -0.409284 0.772262 -0.305691 2.778152 -0.184289 0.524129 2.441474 5.235378 -2.225716 2.203121 1.308323 3.255353 1.742096 -2.510508 -1.838958 -4.028573 2.367009 6.488183 -1.182204 0.461996 4.014842 3.260505 7.105054 -8.475295 2.414344 -2.752572 0.363325 6.628499 -1.966660 0.853931 1.287909 -1.987732 0.011843 -5.493838 5.466445 -0.517848 -4.002922 -1.508734 0.321885 -2.488797 1.195592 -7.445997 -3.615500 -0.919086 2.504822 -2.491084 4.072908 -0.921244 3.434384 -3.007945 2.706323 -7.249190 -3.311781 0.963862 1.649664 4.836496 2.086381 1.104205 -9.517307 0.952411 0.366046 -4.970288 -2.972329 -0.286270 -5.717959 1.219338 5.483291 -0.825032 +PE-benchmarks/eulerian-path-and-circuit.cpp__Graph::isConnected() = 1.126326 0.311371 3.006617 -3.454740 -0.889006 1.006852 2.016477 -1.857040 1.076086 6.566582 1.483701 -1.451638 -4.698429 3.522483 -0.626209 -4.024089 2.483009 -0.344520 0.365324 -1.795198 -0.586205 1.392854 -0.285639 -2.469504 2.471802 -2.253171 0.665488 3.710327 1.141070 0.511250 -1.918124 -0.631682 -0.050606 6.617539 -0.642672 1.506511 -0.399624 6.980356 -4.802060 6.870503 -6.679914 -6.774550 6.645664 0.734193 -0.412740 -3.136477 0.408047 2.159872 -3.410980 -3.421493 1.257714 -1.585498 1.828392 -3.819791 0.517877 5.640120 -7.927555 0.957207 0.091470 -2.755831 -4.021774 -1.381878 2.115717 1.202466 -3.219626 -3.757592 1.431030 0.466879 -4.198982 1.393845 -3.122504 -5.690856 4.375171 2.031292 -2.633636 1.946097 0.806275 -4.327206 2.884329 -1.916021 -3.155879 -2.333003 2.104268 -2.089968 3.347666 2.242721 4.749169 -8.864496 0.154058 -6.612500 5.425047 -4.065415 5.947648 5.453946 -2.605768 3.505423 2.061832 3.098524 0.371352 -1.493544 5.970555 2.042846 3.474813 -0.347023 3.583147 3.385268 -5.271442 -5.135852 -3.820086 -3.580301 0.673344 -2.313920 -6.164359 -0.304860 -5.028593 0.979454 2.968542 -1.359528 -2.080703 4.891880 -9.405028 -1.568832 1.669762 -1.239526 4.706144 4.302193 0.296399 0.607686 1.279541 5.822507 -1.603963 -0.253598 -2.238436 3.051430 -1.366585 -1.507967 -2.134627 -0.385524 1.775494 -4.724567 -6.412169 -7.500053 -2.433079 3.901314 -0.910761 5.407488 9.888610 -1.494709 -4.827760 3.741333 -3.098460 1.572924 5.217464 1.506561 7.238007 -6.840296 3.344139 -2.503829 2.779436 2.877537 8.221608 -0.755100 -3.299159 2.790497 0.093049 -0.406002 2.763223 -1.386329 0.415642 -3.825666 0.306233 -2.781180 -2.457712 6.149039 -5.910859 6.164538 -3.207985 8.291357 -5.645815 -5.333709 2.480102 -6.101908 -2.012429 -4.978007 -2.077811 -0.153746 4.181069 -5.665742 -3.702694 -3.498326 -1.071903 0.504577 4.205374 -3.591113 -0.218818 -1.717852 -1.678670 7.087565 2.877929 -0.612561 -0.533094 -5.771284 0.689095 3.075797 -0.881199 -5.948719 0.449706 -3.520083 -0.961148 2.060637 -0.318674 3.233407 -3.090990 -2.672670 0.778167 -1.450140 0.332308 -2.485184 -8.376173 1.659595 0.247994 -0.176229 2.713069 6.181191 5.911828 3.444290 0.401800 -1.030833 1.203345 -3.125758 -3.854155 2.122088 0.719576 2.753541 2.256777 4.618563 1.429724 1.174346 4.038970 1.992910 0.269987 5.176840 1.781608 6.217447 -1.436379 -0.120635 1.725338 -3.155438 3.340152 6.382144 -2.528597 -0.937177 3.569705 1.851104 -1.779400 -3.295650 -0.970000 -2.925646 -1.370476 4.043403 2.014402 -1.823045 -2.384916 8.742969 1.131333 -9.736258 4.557616 -0.142823 1.810201 3.672597 -2.494663 0.699630 3.309992 -2.475292 3.525220 1.502343 4.340000 -5.166767 0.408944 -0.495288 3.854228 3.676515 -0.796955 -9.075593 -0.254274 1.084023 6.936096 4.237465 6.604268 -2.445426 0.789751 -1.800721 -3.641101 -1.053839 -1.511008 3.092597 -1.297526 0.370220 -8.466341 0.295836 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__main = 0.481787 0.220124 0.451318 -0.647913 -1.052458 0.339107 -1.189008 -0.563871 0.173356 -0.055773 0.333024 -0.824386 -0.461230 1.187191 -0.827003 -1.168318 -0.420494 -0.032422 -0.039418 -0.559690 0.047326 0.271026 -0.126373 0.045638 -0.073529 -0.350795 -0.018384 0.220302 1.389689 -0.289086 -0.802895 0.002801 0.091789 1.180913 0.193562 -0.193848 0.603692 1.672739 0.658601 0.331911 -1.098393 -0.954984 0.466608 0.242684 -0.138541 -0.641073 -0.774099 0.388992 -1.807744 0.801277 0.611283 -0.164818 -0.399774 -0.015230 0.432887 0.725623 -2.071846 1.790846 -0.075078 0.372915 0.065016 -0.332209 0.062181 0.115694 0.410620 -0.549284 0.387213 1.249173 -1.070471 0.341375 -0.157789 -1.007687 1.906237 0.260265 -0.838424 0.135553 0.581597 -0.592735 0.616998 -1.370553 -1.039786 0.044108 0.521533 0.107651 1.223409 0.309372 0.266349 -1.593398 0.295710 -1.571196 0.620366 -1.095210 0.742272 1.075696 -1.691123 0.191052 0.375553 0.176150 1.075650 0.507779 1.210807 0.367544 0.070245 0.010016 0.325454 0.189815 0.087663 0.004182 -0.158235 -1.110035 -0.767394 -0.028625 -2.348140 -0.017615 -0.549075 1.119856 -0.128281 0.213865 -0.125298 0.082162 -1.568833 -1.310499 -0.141660 -0.139279 0.996380 0.914364 -0.390573 0.594555 -0.374070 1.415126 -0.220485 -0.305412 -0.313789 0.139176 -0.140582 -1.521489 -2.380015 0.317963 0.680206 -0.547309 -1.361867 -0.866414 -0.440894 -0.049969 -0.161038 1.568299 1.863829 -0.213948 -1.052930 1.284637 -0.265744 0.595032 2.239046 0.090902 1.618147 -0.811666 0.332324 -0.306669 -0.021548 -0.393194 -1.466483 0.031638 -0.169842 0.178793 0.468358 0.027763 0.261377 -0.364454 -0.535438 -1.063762 -0.030378 -0.527554 -0.591108 1.408804 -0.026155 1.025277 0.165071 1.718414 -0.882456 -1.769791 0.560167 -0.704514 0.157733 0.194759 -0.167392 -0.221528 0.956709 -1.293166 -0.643233 0.173577 -0.127086 -0.411645 0.321965 1.864888 0.146016 0.144394 0.404737 1.164097 1.483418 0.033077 0.563622 -1.346979 0.128814 1.005143 -0.434675 -1.295630 0.495059 -0.641826 0.060589 0.412332 -0.170877 0.084935 -0.586372 -0.817930 -0.701223 -0.269929 1.301040 0.247639 -0.579066 0.457017 -0.761088 0.178254 0.494163 0.692290 1.481412 0.734191 0.846526 -0.245859 0.476730 -0.587539 1.298301 0.101897 0.803170 0.413608 0.302621 1.156397 0.254097 0.022765 0.547909 0.945403 -0.341911 0.870932 0.446116 1.852495 -0.799484 0.322403 -0.720862 -0.465458 0.909540 2.509553 -1.376062 0.312373 0.522155 0.857876 0.544843 -1.780926 -0.337233 -0.481084 -0.486879 0.312416 -0.127066 -0.289813 -0.181074 1.166047 0.335139 -1.112188 1.082765 0.102129 -0.082510 0.046759 -0.379448 -0.783197 0.603471 -1.448200 0.406401 0.606543 0.663334 -0.623600 -0.445448 -0.264690 1.034685 -0.356641 0.541465 -0.061109 0.720467 1.267841 1.146041 1.004956 -0.068549 -0.613878 -1.445317 0.166378 -0.632894 -0.556132 0.216463 0.448197 -0.957803 0.434895 0.254157 -1.710752 +PE-benchmarks/sort-n-numbers-range-0-n2-1-linear-time.cpp__countSort(int*, int, int) = 3.557921 1.037151 4.031114 -3.808501 -0.649770 1.219752 3.620165 -4.943020 0.456679 12.681800 3.838897 -3.324376 -3.280606 5.577179 -1.349615 -4.219353 4.644065 2.998816 0.114542 -3.134834 -0.814814 1.755402 -0.884333 -5.016041 3.647243 -2.845396 2.652988 5.046119 -1.538676 2.622081 -3.170816 -0.805609 0.644401 9.927255 -0.194779 2.190619 -2.626021 8.481470 -10.429604 10.054663 -10.836638 -9.443731 10.620716 1.750078 1.807836 -5.297875 -1.159726 3.627366 -0.226039 -7.829213 0.486967 -3.491346 3.568376 -6.432842 -0.493601 8.731241 -9.252834 -1.675215 1.585329 -6.523321 -8.644482 -0.812714 5.639531 2.348076 -7.833511 -6.928170 2.574333 1.486952 -3.179311 2.722750 -7.452909 -11.573014 3.537480 1.451040 -3.112863 1.848693 -1.439896 -7.735502 4.628155 0.157939 -3.981029 -4.024904 3.577176 -2.979611 1.382045 4.823691 9.698787 -13.970283 1.168071 -10.818119 8.474406 -5.039493 10.052501 7.477732 -3.665831 4.438462 3.298813 7.711018 1.736872 -0.235455 8.689065 3.986953 4.179661 -2.635967 6.150154 6.765368 -8.513408 -9.302617 -6.040389 -5.741386 2.852464 -3.307725 -9.358749 0.877520 -9.537689 -1.081150 2.121475 -3.256757 -0.574759 10.740713 -14.678696 -1.835119 3.502009 -1.247325 6.687225 6.624973 1.170161 1.688538 0.927927 7.117637 -1.591239 -1.505271 -2.587835 5.434235 -5.757783 -4.380791 -1.652619 0.592850 3.594891 -8.989658 -9.286480 -13.453704 -2.793028 7.033309 -2.534833 6.084704 13.603424 -3.233848 -7.279540 3.528968 -2.063988 -2.063929 7.999719 1.857319 14.111414 -13.013117 6.961662 -2.076057 5.157800 5.775130 11.519341 -2.841436 -6.132991 5.301060 -1.165839 -5.358671 9.460093 -1.756243 1.678978 -2.746281 2.397166 -1.024185 -2.030550 8.751667 -9.997248 9.099102 -7.154743 11.993928 -9.642941 -5.819527 3.522818 -10.921274 -4.609991 -6.762093 -1.771380 -1.576031 9.550443 -7.454838 -5.105320 -4.927941 -4.044488 2.110227 8.275259 -7.584046 -0.451264 -2.796743 -4.719940 8.060791 3.103735 -0.753300 -0.369021 -7.548437 0.943411 5.993887 -0.078737 -10.210214 -1.456380 -8.354165 -1.545059 -2.065943 -0.685704 6.930742 -5.743662 -3.311994 1.665081 -1.975914 -0.282706 -4.744314 -9.545432 3.453271 -1.983225 1.248508 2.526935 11.626201 7.840400 6.840058 0.049707 -3.144376 2.646024 -6.970447 -8.654005 5.616917 1.068989 4.207393 3.387274 5.951865 1.161327 2.828458 5.156803 -1.119184 3.189068 9.028059 2.907410 8.661684 -3.189837 2.000560 3.000369 -5.207379 5.606163 8.997587 -0.881123 -4.143046 3.436576 0.043936 -5.819100 -3.214070 -1.676293 -2.427538 -4.989525 4.351390 4.880807 -1.572378 -5.414007 14.486144 2.437943 -15.887269 7.535942 -1.217926 2.372441 8.420134 -4.733596 3.786508 4.155750 0.990888 4.237224 2.716460 8.073101 -8.864590 -0.303204 -0.748093 6.722479 8.091792 -3.358020 -17.360345 4.224224 2.616239 10.790108 3.794724 10.800828 -5.607843 5.104272 -3.531249 -4.492818 -0.443737 -2.520466 5.656430 -0.899265 -0.772446 -15.356439 3.331150 +PE-benchmarks/rotate-bits-of-an-integer.cpp__main = 1.005988 1.438844 0.911865 -0.782336 -2.383943 0.931349 -2.958910 -1.902650 0.161173 1.203495 0.947877 -1.526124 -0.687839 1.718609 -2.439457 -1.721384 -1.393184 0.377181 0.051442 -2.270886 0.337005 0.223779 -0.193917 -0.281385 -0.791298 -1.039954 0.411717 -0.185177 2.158358 0.089198 -1.085304 -0.030330 0.768715 1.776991 0.841581 -0.381479 0.440726 1.551892 1.116955 -0.602392 -3.212900 -2.374331 0.641143 0.805416 0.709368 -1.902449 -1.051645 0.469183 -2.682679 1.913995 0.340060 -0.909813 -0.140707 0.208724 0.168494 0.778923 -3.069560 3.699435 -0.417693 -0.752744 -0.175428 0.033380 0.892748 1.111253 1.596957 -0.930227 0.416931 3.354882 -1.468215 0.766402 -0.204643 -1.874283 2.583568 -0.379903 -1.558982 -0.450056 0.206743 -0.526757 0.828474 -2.989859 -1.405048 0.035808 1.482960 1.100198 0.428528 1.585465 0.789964 -2.487584 0.003800 -2.509891 1.486153 -0.445007 1.425854 0.377134 -2.487699 -0.357462 0.883917 -0.729147 2.935278 1.089905 1.553388 0.395681 0.777842 -0.145894 0.000394 0.822014 0.559714 0.371567 0.055016 -2.136729 -1.255833 0.553688 -3.602215 -0.194286 -1.203604 1.702123 -0.698918 -0.677644 0.404642 0.690578 -3.038581 -3.293695 -0.300686 0.022751 1.909785 0.834437 -0.173777 1.846491 0.125585 1.846500 -0.628602 -1.275050 -0.003507 0.241711 -0.310357 -4.010602 -4.915278 1.541285 1.295572 -1.168646 -1.716786 -1.311090 -0.684880 -0.002297 -0.228475 1.714278 2.622027 -0.540467 -2.525732 1.329932 -0.519467 -0.698178 4.339621 0.200808 3.317111 -1.818498 0.972124 -0.399735 -0.112108 -0.066081 -1.231384 -0.437494 -0.315046 0.468370 1.177411 -0.487798 -1.608963 -0.847597 -0.983170 -1.902852 0.282561 -0.331131 0.431568 0.775156 -0.003308 1.417851 -0.418512 2.526877 -2.483469 -3.489334 0.386081 -2.210009 -0.424381 2.378682 0.252801 -0.226730 2.235063 -2.195549 -0.653378 0.384153 -0.835719 -0.470873 0.929167 2.168035 0.371896 0.560928 -0.179681 2.201587 2.223237 0.328137 0.916998 -1.283917 0.001395 2.114696 0.381468 -3.361482 -0.102964 -2.015702 0.337056 0.507988 -0.425916 0.911728 -0.114941 -0.598177 -1.425583 -1.351809 2.529880 0.186525 1.450895 1.173006 -2.279859 0.823685 -0.339079 1.537038 1.722042 1.777333 1.388293 -0.377226 0.982869 -2.387980 3.901625 0.631013 2.554855 -0.581955 0.570729 2.159815 -0.136316 0.408501 1.386003 1.154254 -0.559759 1.539627 -0.847965 2.612863 -3.563966 1.948715 -1.865310 -0.487585 1.246281 4.463957 -1.942985 -0.424123 0.211556 0.577815 1.319168 -2.562323 -0.317504 -0.468854 -0.831554 0.748707 1.764049 0.019989 -1.074206 1.848423 1.285603 -1.293279 2.908659 -0.002514 -0.676416 -0.105535 -1.501470 -1.919641 0.662820 -1.375773 -0.395001 1.576275 1.363039 -1.732500 -1.758745 -0.562470 2.478106 -0.262654 0.515116 -1.087444 1.248990 2.941480 1.848564 0.862018 0.383408 -1.991549 -2.780585 0.430972 -0.506070 -0.869685 0.717724 0.593782 -1.733748 1.039139 1.541439 -2.156034 +PE-benchmarks/union-find.cpp__main = 0.192601 -1.506596 1.967245 -2.522807 -2.999760 1.790265 -2.513934 -1.992425 0.877669 0.002500 1.401145 -1.365759 -0.674609 3.840258 -0.762580 -3.121648 -0.031170 1.549203 0.900067 -0.223150 0.365647 1.089672 -0.877406 0.538393 -0.528694 -1.490570 0.362266 1.722686 2.269925 1.202434 -2.359288 -1.017837 -1.485512 3.712296 1.288031 1.019482 1.165243 5.798004 -0.664778 4.928877 -2.801541 -2.751431 1.271567 0.460895 -0.563955 -1.010046 -3.126092 0.742124 -4.369625 0.021181 3.074111 -0.934218 1.167214 0.673799 2.084696 1.093640 -4.248064 1.223111 0.048024 -0.292316 0.393648 -1.231758 -0.824680 1.540749 -2.713966 -1.229598 1.454224 2.910535 -1.179320 -0.088823 -0.427679 -4.054311 5.363853 1.687893 -2.928808 0.054989 3.252676 -3.122642 2.307926 -0.810428 -4.578244 -0.278544 -0.848926 -2.624477 4.277586 0.151094 3.389393 -5.067118 2.162849 -5.620675 2.413225 -3.363529 1.982527 4.150218 -4.344595 0.590860 2.572515 4.304151 2.524825 0.129996 3.143505 2.522269 -0.946949 0.692884 3.280917 1.016094 -1.247631 -1.513099 -2.343026 -3.288744 -0.710144 -2.902728 -6.884618 -0.068799 -0.501374 2.630487 -1.116986 1.180807 -0.987647 2.198461 -4.565621 0.000000 0.196908 -0.662184 1.832332 2.691297 -1.496395 1.485505 -0.589242 4.281825 -2.673883 0.081254 -1.301255 1.219377 -1.934920 -0.004959 -4.943835 1.395025 2.180070 -1.883168 -4.103696 -3.665948 -1.741957 2.778713 -0.151898 4.937374 6.211597 -1.982006 -2.787880 3.599263 -0.513451 0.582176 4.665741 0.925006 3.340848 -1.689875 -0.021886 -3.489798 -0.983494 -1.611453 0.083960 1.250706 -0.278186 2.335226 -0.127510 -1.578634 5.509859 -1.603157 -2.498886 -4.090254 0.286075 -2.006027 -1.616387 5.079191 -3.491848 2.091438 -0.382826 4.918327 -1.740080 -3.263870 1.070860 -3.519157 -0.055847 -2.349633 -0.588206 -0.156697 2.967023 -3.648058 -2.217523 -0.881126 -1.255893 -0.794644 0.585510 2.730056 0.172391 1.229019 1.355201 4.845521 5.074481 1.984218 -0.399924 -3.112373 1.233069 2.147459 -2.663946 -2.130758 0.719681 -1.841457 0.031307 -0.896195 0.228839 1.052973 -3.879566 -2.213274 -2.702288 -0.519331 2.582825 1.755370 -6.575750 1.314125 0.445512 1.485411 2.801092 1.398007 4.388249 3.574841 3.710863 -0.177981 0.726870 -0.228797 0.147871 1.002433 2.713059 1.211441 0.722398 4.424686 1.472643 0.477369 1.668178 3.321358 2.098313 2.457013 1.278545 5.313626 1.118227 0.078096 -1.075287 -0.423366 2.702707 6.761195 -1.934749 3.093519 1.644106 2.032916 -0.550572 -4.356657 0.425412 -1.508064 -0.444082 1.143601 0.046675 -0.167129 -1.485767 3.623325 0.717327 -4.524547 1.280011 0.360899 0.888776 2.934507 -0.489611 -0.215301 0.536141 -3.549655 4.737376 2.179387 1.516921 -2.261294 -0.353751 -0.340205 0.970534 2.572772 2.112674 -1.176998 2.167784 1.684699 3.736713 2.274615 1.777388 -2.350927 -1.677850 0.915478 -3.751794 -1.250380 -0.104671 1.434525 -1.411039 1.143854 -2.566455 -5.263977 +PE-benchmarks/union-find.cpp__find(int*, int) = 0.702002 0.270554 0.750414 -0.858038 -0.652551 0.285309 0.334924 -0.787379 0.210402 1.921551 0.687012 -0.731043 -0.360964 1.627096 -0.455116 -0.686314 0.388654 -0.246193 -0.048171 -0.126020 -0.034742 0.619375 -0.202319 -0.593163 0.462671 -0.235900 0.119500 0.652879 -0.272712 0.013413 -0.787588 -0.203751 0.135868 1.704469 0.013612 0.053327 -0.090372 1.774339 -1.788462 1.958517 -1.983540 -1.630850 1.588834 0.218874 0.158062 -1.091661 -0.541061 0.750052 0.039405 -1.205526 0.417345 -0.406331 0.322867 -0.852476 0.172476 1.355986 -2.117390 0.315164 0.323407 -0.655810 -1.007701 -0.198544 0.727068 0.469224 -1.113899 -1.109319 0.376136 0.464820 -0.660946 0.230787 -0.827035 -1.998583 1.333530 0.309831 -0.804983 0.322005 0.059785 -1.499527 1.112846 -0.892215 -0.984943 -0.422390 0.399125 -0.602377 0.699275 0.633871 1.429622 -2.412103 0.509368 -1.981795 1.414891 -1.113855 1.331703 1.439074 -0.830766 0.549501 0.604281 1.306039 0.949571 0.240356 1.531028 0.874626 0.784712 -0.192380 0.922610 1.286114 -1.354861 -1.217207 -1.151123 -1.330260 0.371689 -0.377908 -1.977838 0.184485 -0.937715 0.280136 0.433185 -0.485388 -0.078164 1.838275 -2.543037 -0.386407 0.566565 -0.221719 0.928177 1.391916 -0.061165 0.249004 -0.201129 1.390919 -0.419414 -0.026902 -0.246836 0.794222 -1.309274 -0.957915 -0.741634 0.275633 0.488055 -1.470909 -1.538527 -2.558066 -0.200773 1.108226 -0.568287 1.472889 2.636265 -0.708877 -1.452428 1.047792 0.297065 -0.423297 1.481260 0.191523 2.414472 -1.824808 0.735005 -0.519619 0.384348 0.497119 1.788151 -0.113505 -0.822086 0.746199 -0.101603 -1.628275 1.942621 -0.105883 -0.104726 -0.388211 0.340979 -0.466507 -0.495233 1.645376 -1.183305 1.405550 -0.908919 2.263079 -1.400597 -1.093212 0.700610 -1.735124 -0.569921 -1.192792 -0.544869 0.086872 1.532573 -1.367590 -0.681405 -0.570924 -0.760894 -0.134739 1.157247 -1.083387 0.130157 -0.211194 -0.484918 1.647916 0.970336 -0.083239 0.118255 -1.437454 0.244589 0.948286 -0.387397 -2.046959 -0.169735 -1.397299 -0.127025 0.079512 -0.260412 0.954635 -1.152393 -0.713523 0.242687 -0.552007 0.178787 -0.578106 -1.501287 0.423552 -0.528935 0.700592 0.528048 1.733518 1.465828 1.409541 0.466764 -0.215609 0.202492 -0.912814 -0.985012 0.737134 0.304493 0.438540 0.759476 1.393850 0.330648 0.433011 1.017471 0.249715 0.332499 1.579992 0.341667 1.777563 -0.529402 0.211479 0.228199 -0.664091 1.129302 2.038124 -0.708221 -0.383902 0.642098 0.105310 -0.849872 -0.411617 -0.072237 -0.578711 -0.737269 0.819011 0.751340 -0.143965 -0.726866 2.275074 0.273379 -2.565298 1.161903 -0.088331 0.550881 1.270595 -0.585660 0.611553 0.648168 -0.235601 0.932498 0.767526 1.380682 -1.503511 -0.486240 -0.099469 1.099232 1.258138 0.140460 -2.835802 0.660429 0.673664 1.711351 0.417576 1.712669 -1.134940 0.270537 -0.195587 -0.638126 -0.255641 -0.277680 0.915470 -0.450991 0.160204 -2.191699 0.026641 +PE-benchmarks/union-find.cpp__Union(int*, int, int) = 0.625307 0.491710 0.616957 -1.222245 -1.031699 0.229197 0.285793 -0.818665 0.241851 1.445990 0.989014 -1.051935 -0.550961 1.912981 -0.514724 -0.920649 0.319688 -0.556422 -0.198827 -0.043925 0.110747 0.760095 -0.188990 -0.551627 0.386940 -0.078043 -0.102862 0.746778 0.482383 -0.390887 -1.084940 -0.098999 0.282158 1.779412 0.016812 -0.215962 0.053634 1.970606 -1.737479 1.721799 -2.163733 -1.366839 1.681097 0.264267 -0.190432 -1.836972 -0.999318 0.827486 -0.229902 -1.034290 0.621341 -0.385178 0.267739 -0.800534 0.234214 1.756680 -2.453748 0.842913 0.465906 -0.303155 -0.611219 -0.177784 0.710057 0.479422 -0.884363 -1.195845 0.396008 0.336561 -0.821589 0.091652 -0.816802 -2.147196 1.944367 0.346849 -0.963870 0.328575 -0.050684 -1.943660 1.238381 -1.212262 -1.060538 -0.227456 0.529079 -0.200440 0.906056 0.304295 1.145145 -2.560571 0.039998 -2.174684 1.324300 -1.386524 1.319269 1.502338 -1.226329 0.381573 0.422553 0.733864 1.328146 0.462752 1.703861 0.872886 1.065759 -0.337198 0.895952 1.325123 -1.129672 -1.035028 -1.025072 -1.593866 0.167838 -0.156047 -2.742954 0.299352 -0.993637 0.105046 0.463252 -0.653338 0.064029 1.902281 -1.991238 -0.599336 0.518131 -0.218347 0.915851 1.989581 -0.104756 0.256587 -0.437678 1.550919 -0.215179 0.294983 -0.278864 0.745004 -1.266708 -1.848974 -1.081775 0.309406 0.520637 -1.515959 -1.651897 -2.553154 -0.047523 0.509252 -0.665586 1.222788 2.800650 -0.769307 -1.759506 1.354846 0.808868 -0.291821 1.728774 -0.029997 2.924162 -1.915295 0.809256 -0.473258 0.225316 0.241703 1.649738 -0.138212 -0.853834 0.460760 -0.209952 -2.474998 1.890675 0.054683 -0.192037 0.053520 0.245503 -0.620926 -0.971615 1.868224 -0.571650 1.645612 -0.734997 2.413772 -1.442621 -1.503446 0.965971 -1.062462 -0.436627 -1.101653 -0.738500 0.439651 1.557012 -1.265406 -0.619378 -0.564617 -0.579955 -0.412302 1.147048 -0.809165 0.164989 -0.179152 -0.315919 1.231324 1.278905 -0.231570 0.483396 -1.631930 0.370085 1.198487 -0.364979 -2.486705 -0.073924 -1.596985 -0.095765 0.275847 -0.438884 0.972149 -1.006787 -0.974573 0.291617 -0.663859 0.488215 -0.528183 -1.602279 0.520390 -0.903210 0.715134 0.427433 1.860528 1.598169 1.506530 0.570790 -0.262031 0.309066 -0.872371 -0.751806 0.523921 0.257743 0.307043 0.899415 1.592171 0.375185 0.422318 1.286197 0.391250 0.104868 1.680368 0.500430 2.043433 -0.381357 0.066988 0.111257 -0.868074 1.297058 2.672793 -0.620637 -0.520884 0.685419 0.405128 -0.725341 -1.014406 -0.156728 -0.601151 -0.999063 1.210631 0.514063 -0.146413 -0.675107 2.392036 0.251226 -2.633130 1.332377 -0.110128 0.558595 1.028309 -0.602067 0.434710 0.784665 -0.634594 0.893660 0.904190 1.513718 -1.398185 -0.978262 -0.137781 1.206206 1.014774 0.274080 -2.945337 0.739454 0.995375 1.971127 0.600582 1.731390 -1.177698 -0.048532 -0.069215 -0.363820 -0.314342 -0.447061 0.858029 -0.989472 0.057483 -1.960042 -0.121884 +PE-benchmarks/longest-increasing-subsequence.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/longest-increasing-subsequence.cpp__lis(int*, int) = 0.264874 0.269929 0.197495 -0.593999 -0.551947 0.030208 0.124741 -0.264216 0.066582 0.120328 0.478249 -0.573207 -0.268708 0.954312 -0.209363 -0.411767 0.060267 -0.466276 -0.233409 0.143056 0.078037 0.307560 -0.066710 -0.139160 0.063899 0.159481 -0.135843 0.282518 0.420679 -0.427311 -0.630182 0.018182 0.191586 0.680152 0.018935 -0.232209 0.131140 0.891360 -0.581194 0.652817 -0.774357 -0.304984 0.556411 0.071758 -0.198050 -1.045296 -0.682896 0.425909 -0.197617 -0.327503 0.407538 -0.035183 -0.115375 -0.252792 0.182452 0.827982 -1.121880 0.646577 0.281369 0.239533 0.048882 -0.105589 0.173912 0.079871 -0.172554 -0.467866 0.160964 0.040269 -0.415064 0.017971 -0.328250 -0.862290 1.046549 0.161376 -0.405094 0.131932 0.036386 -0.864905 0.565377 -0.724653 -0.465883 0.063313 0.174479 0.143896 0.592389 -0.062767 0.126279 -0.992231 -0.135007 -0.918025 0.366757 -0.802542 0.357090 0.655603 -0.620230 0.059133 0.039293 0.002467 0.641204 0.397918 0.670297 0.355978 0.445748 -0.198051 0.393978 0.419421 -0.290728 -0.291743 -0.331340 -0.734916 -0.072624 0.075389 -1.328827 0.197981 -0.262613 0.043470 0.132259 -0.154569 0.105519 0.501131 -0.488406 -0.251050 0.182085 -0.084064 0.336382 1.054564 -0.181058 0.116096 -0.427801 0.653778 0.086831 0.335365 -0.095335 0.194465 -0.423707 -1.161330 -0.624488 0.132130 0.254829 -0.478964 -0.695915 -0.969213 0.099230 -0.109220 -0.331255 0.394397 1.088672 -0.267535 -0.679448 0.701612 0.702299 0.084229 0.732417 -0.127469 1.316897 -0.667060 0.278686 -0.036239 -0.057543 -0.166433 0.152635 -0.034689 -0.327112 0.027409 -0.108127 -1.426442 0.838633 0.103514 -0.149943 0.316944 0.008978 -0.303813 -0.649504 0.908647 0.192592 0.671843 -0.058971 0.953678 -0.442639 -0.655149 0.493257 0.014350 0.058531 -0.440668 -0.379693 0.278025 0.582846 -0.455967 -0.217879 -0.122488 -0.131335 -0.322225 0.375556 -0.066759 0.061707 -0.029558 0.112258 0.158489 0.674010 -0.180332 0.446358 -0.781339 0.212676 0.482089 -0.166099 -1.084543 0.121436 -0.609069 -0.015773 0.175727 -0.227711 0.218478 -0.332563 -0.550052 0.171905 -0.307756 0.316392 -0.089606 -0.492554 0.131937 -0.472027 0.306538 0.194307 0.686446 0.689426 0.573644 0.352008 -0.124607 0.125180 -0.167301 -0.206650 0.029333 -0.018340 0.118198 0.374182 0.538365 0.164998 0.063731 0.528244 0.212894 -0.134047 0.645337 0.437940 0.866654 0.064682 -0.090352 -0.026093 -0.426692 0.578510 1.255250 -0.332177 -0.175931 0.281893 0.293760 -0.201940 -0.571746 -0.162517 -0.247205 -0.588233 0.616247 -0.044043 -0.080122 -0.121178 0.874994 -0.017243 -0.948689 0.407502 -0.023862 0.217899 0.309246 -0.161572 0.141145 0.344436 -0.471983 0.332117 0.363928 0.593066 -0.378820 -0.606567 -0.068504 0.401570 0.204639 0.215820 -1.027356 0.342496 0.535057 0.808441 0.282041 0.439038 -0.449323 -0.195319 0.069219 0.000411 -0.135517 -0.217022 0.383149 -0.593840 -0.106161 -0.564056 -0.254240 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__main = 0.239645 0.796953 0.610069 -0.420766 -1.410184 -0.205823 -0.859455 -0.228421 -0.022200 -0.118558 0.073213 -1.060426 -1.064696 1.031136 -1.165809 -1.289279 -0.896314 -0.150231 -0.314596 -1.152185 -0.009909 0.451762 0.087961 0.249251 0.216720 -0.401606 -0.248226 0.422432 1.902253 -0.572807 -0.094515 0.124470 0.639763 0.988483 -0.230171 -0.336737 0.615982 1.687085 0.939642 -0.392660 -1.183542 -1.078191 0.662998 0.202773 -0.078552 -1.341294 -0.776280 0.518256 -2.488560 1.457323 0.307012 0.371360 -0.867664 -0.219885 0.533442 0.860645 -2.582897 2.727470 -0.148741 0.148645 0.064141 -0.154014 -0.457267 -0.362145 1.286782 -0.543931 -0.152610 1.148268 -1.321453 0.731863 0.312545 -0.186845 1.970235 -0.161979 -0.688191 0.552378 0.617114 0.044187 0.562141 -2.128718 -0.684782 -0.048005 1.102973 0.917034 1.002270 0.469897 -0.436559 -1.413676 -0.421599 -1.104741 0.608860 -1.225215 0.488556 0.912865 -1.682874 0.700537 0.113360 -1.405826 1.074560 0.752130 1.163902 0.085596 0.782897 0.421844 -0.376364 0.151240 0.293664 0.086794 -0.141670 -1.065760 -0.930501 0.451237 -2.181235 -0.174417 -0.263524 1.228455 0.297555 -0.052878 0.168521 -0.248564 -1.243390 -1.311128 0.162933 -0.126207 0.776167 0.749506 -0.306787 0.398597 -0.527543 1.375903 -0.036054 0.015313 -0.082816 0.061555 0.482247 -2.728825 -2.619645 -0.026753 0.140978 -0.137069 -1.057801 -0.419489 -0.332639 -0.582934 -0.189511 0.698734 1.817734 -0.000833 -1.150665 1.489617 -0.136586 1.014528 1.936815 0.160154 1.493207 -0.393979 -0.104813 -0.142296 -0.237704 0.071107 -1.299958 0.125500 -0.444714 -0.026261 0.947898 -0.101780 -1.038311 -0.591545 -0.469437 -1.007817 -0.085168 -0.599149 -0.407797 1.181117 0.768238 1.424996 -0.114097 1.548370 -0.755765 -2.360404 0.435993 -0.549740 0.439098 0.581122 0.031147 0.024555 0.476094 -1.400641 -0.636773 0.134565 -0.036053 -0.617561 0.133928 1.569111 0.166878 0.035611 0.695874 0.827067 1.204053 -0.280021 0.820471 -1.614207 0.013518 0.685022 0.214438 -2.142311 0.922469 -0.135843 -0.021953 0.835896 -0.239854 -0.289886 0.368963 -0.509729 -0.528867 -0.826351 1.119372 0.030906 0.531147 0.349663 -1.075858 0.214313 0.150220 0.486715 1.888373 0.203171 0.533605 0.357480 0.495558 -0.828544 2.221136 0.232819 0.844845 -0.049889 0.311305 0.997246 0.428491 -0.160418 0.656179 1.060979 -1.117793 0.824312 0.394786 1.954729 -1.564644 0.233645 -0.824565 -0.062103 0.796855 2.323533 -1.181341 -0.161573 0.663382 1.032814 1.177805 -1.886421 -0.667116 -0.464600 -0.569747 0.964758 -0.165376 -0.878633 0.478172 0.834790 0.193704 -0.708858 1.392764 0.193852 -0.242630 -1.130251 -0.178926 -1.508064 1.207657 -1.644302 -0.425027 0.432230 0.586783 -0.687685 -0.937414 -0.325713 1.248917 -0.517839 0.832755 -0.557666 -0.077864 1.559452 0.907780 0.614448 -0.085830 -0.324859 -2.376894 0.305558 -0.153253 -0.917626 0.438751 -0.052588 -1.186688 0.592376 1.119578 -1.940449 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/merge-sort-for-doubly-linked-list.cpp__mergeSort(Node*) = 0.378933 0.928954 1.450929 -1.412368 -2.425543 0.406253 -0.144984 -0.892009 0.315670 1.746111 0.864693 -0.961947 -1.250760 2.050189 -0.938614 -1.491903 -0.504368 -0.909126 -0.106134 -0.873909 0.171898 1.057671 -0.211411 0.410947 -0.029079 -0.500651 -0.183355 0.906982 0.893215 -0.296405 -0.820893 -0.344340 0.062689 1.837795 0.050608 -0.194785 0.263503 2.912933 -1.310669 1.609155 -2.498699 -2.254357 1.044617 0.285850 0.142110 -2.210213 -0.982920 0.999449 -1.176570 -0.241015 1.385304 0.091487 0.118119 -0.085875 1.036635 0.961218 -3.135065 1.696073 0.103450 -0.658626 -0.149534 -0.181063 -0.007269 0.932269 -0.500627 -0.988971 0.415209 1.036395 -0.921064 0.329342 0.066547 -1.963905 2.238202 0.400515 -1.378560 0.410593 1.353172 -1.581311 1.737515 -2.181064 -1.960351 -0.068802 0.347778 -0.530269 1.497534 0.379504 1.103669 -2.842712 0.410581 -2.527422 1.544467 -1.681650 0.859845 1.794179 -1.245887 0.517977 1.025455 0.458164 2.138790 -0.023974 1.858170 1.168264 1.608696 0.739275 0.784600 1.264012 -1.154318 -0.795437 -1.748642 -2.323849 -0.027268 -0.480903 -2.937161 0.119122 0.187485 0.461095 0.563901 -0.622279 0.036290 1.816208 -2.797938 -0.716124 0.740268 -0.222323 0.783013 1.809226 -0.677337 0.770518 -0.318434 2.270511 -1.135267 0.815310 0.024262 0.634630 -0.872458 -1.634395 -2.550706 0.741868 0.620401 -1.056705 -1.646409 -2.407663 -0.261509 0.696974 -0.509960 1.657818 3.725919 -1.138969 -2.138613 2.109864 0.452166 -0.339666 1.903523 0.163013 2.519585 -1.089094 -0.230085 -1.411163 -0.582283 -0.069926 2.316903 0.844357 -0.457407 0.931354 0.390922 -1.869731 0.821080 -0.717872 -1.172201 -1.088584 0.389584 -1.090020 -0.593858 1.904499 -0.736580 1.684559 -0.417950 2.577689 -1.262271 -2.149437 0.683240 -1.916414 0.117689 -1.115853 -0.623610 0.742171 1.461686 -1.794078 -0.663576 -0.967939 -1.111003 -0.881621 0.289475 -0.917820 0.563097 0.454641 0.735343 2.276648 2.533117 0.750803 0.099095 -2.097307 0.641664 0.738366 -0.345515 -2.621541 0.176246 -1.332382 0.009064 0.568961 -0.439658 0.699994 -0.660738 -0.941148 -0.515641 -1.339163 0.724763 0.238849 -1.978058 0.455032 -0.652001 1.553771 0.539907 1.142079 2.362572 2.001845 1.862971 0.307099 0.439526 -0.640149 0.592714 0.564881 1.180128 -0.230113 0.886392 2.187901 0.893458 0.294219 1.764481 1.453346 -0.159129 1.765419 -0.242050 2.981216 -1.055002 0.252751 -0.717762 0.045556 1.251332 3.530444 -0.573418 0.328356 0.936158 0.868691 -0.220804 -1.387092 0.042285 -1.095099 -0.100491 1.334888 0.995326 -0.679256 -0.328877 1.937380 0.228746 -2.535323 1.245319 -0.086223 0.522522 0.940556 -0.300648 -0.393876 0.802099 -1.810013 1.540101 1.445831 1.195398 -1.686182 -1.216047 -0.158662 1.273267 0.832081 1.259314 -3.172820 0.155194 1.334390 1.876968 0.435498 2.073909 -1.714048 -1.473408 0.953667 -1.025133 -1.006468 0.297008 0.862946 -1.298973 0.766222 -1.172409 -1.714898 +PE-benchmarks/trie-suffixes.cpp__main = 1.316564 0.547097 5.258161 -4.200305 -4.403533 0.518758 -7.068412 4.090348 2.514002 2.722870 0.711363 -4.783853 -11.140122 5.478395 -4.245096 -8.871253 2.837867 -0.840080 5.615742 -5.679359 2.355567 1.430166 5.940711 -0.314187 2.781427 -3.088401 -8.250537 4.660134 18.197416 -3.514542 0.188229 3.900962 1.887997 4.437883 -6.074477 -5.214843 4.115668 8.633656 2.153207 -0.093388 -3.407833 -3.913561 7.333485 2.614273 -1.668869 -4.089817 -3.493205 2.860178 -14.325525 0.191119 2.300989 2.272916 0.562289 -3.408096 -2.442910 7.811786 -17.801238 8.807587 -3.984217 2.035385 3.716986 5.434745 -1.806818 1.566429 9.103208 -3.517269 -1.157368 1.386859 -10.272064 -1.285580 3.075454 3.225771 10.267816 -0.762837 -1.933458 5.628424 9.432897 -0.192929 3.979489 -12.329976 -4.097406 0.151857 -0.001458 -0.298442 8.291746 -0.445618 1.230569 -6.310029 0.481034 -3.356147 8.981484 -6.761646 2.493852 5.658669 -7.705893 3.777414 2.922889 -6.388518 6.231045 1.548176 12.655543 2.646371 3.905412 3.450152 -0.025737 0.465525 -0.957964 2.654686 -4.364837 -5.055595 -4.811549 -1.251751 -9.601210 -0.320447 -1.516306 4.539694 10.386215 -4.550376 -1.779527 0.754358 -4.053491 -3.117647 -0.411903 -0.172171 -0.579326 5.701935 -0.979043 -3.083496 2.663295 12.023594 -3.085776 -1.952587 7.437203 0.726570 5.672554 -10.848496 -4.882738 0.490140 -2.259241 -3.387330 -4.159811 -5.224798 2.837056 -4.599399 0.124478 5.881831 13.230516 4.140078 -3.238813 6.836859 -3.054670 4.691037 10.675037 -0.105609 9.849103 -3.649247 -4.758887 -3.354835 -1.478483 4.083373 1.906300 3.336757 3.119841 0.280267 6.384576 1.331369 -9.698863 -4.009059 0.807797 -2.862327 -1.482380 -5.115877 -4.391704 3.517495 4.546963 5.657943 3.261877 10.309772 4.608982 -16.562959 5.071507 0.950057 -0.432437 2.503206 -2.325115 1.456227 -4.394306 -6.471856 -2.968024 -6.931189 3.316450 -2.722261 0.158468 4.351957 6.784982 2.396629 0.177261 4.757890 1.680131 0.267682 4.380372 -12.116607 -3.034311 2.495992 -3.253131 -9.954489 5.183942 -2.747336 4.450997 10.371594 -4.174771 2.159276 -0.952376 -6.420247 -3.111906 -2.900869 3.229433 -3.128052 -3.525619 0.024953 1.338015 1.458442 4.815340 5.588714 10.144141 1.198325 -1.609808 6.507395 2.503928 0.914100 6.127837 -2.409853 -0.742688 1.356580 1.137600 2.666978 -0.116249 2.147858 7.026870 6.867911 -5.998585 5.226052 -1.068146 5.741162 -1.855259 -2.346349 -1.300424 -3.689701 4.089078 10.141685 -4.276652 -0.539109 5.086157 4.792227 6.632933 -10.425212 1.683068 -3.952757 1.045832 7.540523 -0.535903 0.534771 0.213975 -1.582955 3.627290 -8.688078 10.913684 -0.830179 -2.118663 -0.610308 0.283151 -5.102879 1.683734 -11.174832 -2.973429 2.897251 2.543108 -6.019670 2.120190 0.563335 8.506526 -4.616344 5.620905 -9.455558 -4.020809 2.992713 0.697829 5.633315 3.073916 -2.247568 -15.246283 1.551905 -2.619249 -7.130795 -3.229776 -3.508852 -8.407031 3.050048 5.915305 -3.045475 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::search(std::__cxx11::basic_string, std::allocator >) = 0.795926 0.083803 1.667292 -1.377968 -1.701666 0.527678 -1.388340 -0.830343 0.923573 2.089079 1.075797 -1.303403 -1.856561 2.330278 -0.732211 -2.065113 0.222386 0.072865 1.071057 -0.551821 0.455177 0.628061 -0.057347 0.064720 0.255596 -0.554653 -0.600986 0.849358 2.095258 -0.154090 -1.653700 -0.034690 -0.090076 2.295677 -0.527131 -0.369932 0.611470 3.507505 -0.976898 2.151952 -2.717407 -2.545326 1.619407 0.395648 0.001741 -1.214718 -0.685191 0.927166 -2.781085 -0.467025 1.377488 -0.143763 0.320678 -0.660707 0.649428 1.592544 -4.764615 1.976370 0.017102 -0.121841 0.149961 -0.032279 0.184627 0.780746 -0.135486 -0.980245 0.706203 1.080450 -1.983170 0.240141 -0.445215 -2.097409 3.014815 0.838071 -1.604892 0.909273 2.037027 -1.675401 1.982120 -2.583597 -2.313752 -0.355504 0.192707 -0.745795 2.290674 0.785105 1.509378 -3.207610 1.041536 -3.159662 2.509022 -2.483929 1.612467 2.644380 -2.432302 0.732187 1.792729 1.034920 2.226188 0.065986 2.986661 1.598144 0.794533 0.286235 0.871935 1.186195 -1.426847 -0.597615 -1.588897 -2.315583 -0.783421 -0.669739 -3.573629 -0.208972 -0.972454 1.818443 1.404999 -0.513062 -0.203951 1.587526 -3.783196 -1.231023 0.391705 -0.297531 1.442250 2.415608 -0.538482 0.336097 -0.150280 3.278104 -1.469952 -0.350332 0.248945 0.705937 -0.681762 -1.788823 -2.860069 0.354088 0.623511 -1.948885 -2.365035 -3.056159 -0.243013 0.828270 0.052303 2.999977 4.592592 -0.672875 -1.791166 2.355406 -1.047754 0.303775 3.901557 0.432504 3.446170 -1.854401 0.253388 -1.633264 -0.069252 -0.032217 1.255034 0.741837 -0.122050 0.842258 1.089976 -0.213936 0.674517 -0.758047 -0.686716 -1.965510 0.249130 -1.447372 -1.101406 2.358794 -1.394605 1.887455 -0.259779 3.778515 -1.303032 -2.955558 1.547155 -2.099636 -0.110507 -0.802169 -1.073682 0.435554 1.549192 -2.731681 -1.150458 -1.297888 -0.676491 -0.368657 0.972843 0.744657 0.746214 0.569469 -0.005696 3.198569 2.351266 0.403449 0.395584 -2.996948 0.167450 1.000004 -1.585134 -2.883500 0.837578 -2.007407 0.512356 1.424311 -0.613386 1.230366 -1.656152 -2.039724 -0.821409 -0.896521 1.270881 -0.442592 -2.604255 0.471762 -0.381539 1.004575 1.678959 1.743468 2.580559 2.125675 1.382825 0.242770 0.520368 -0.547232 0.905460 0.540436 0.744383 0.856397 0.656956 2.101932 0.534668 0.508435 1.454965 1.517041 -0.321125 2.289001 0.198032 3.001981 -0.944981 0.249709 -0.382274 -1.021152 1.863302 4.007087 -2.167172 0.605342 1.201958 1.181220 0.110271 -2.170958 -0.141588 -1.133205 -0.719495 1.264872 0.819827 -0.037224 -0.810852 2.230329 0.881042 -3.499143 2.153682 -0.262340 0.202653 1.386728 -0.399220 -0.754803 0.841358 -2.358936 1.517914 1.187581 1.812013 -2.163284 -0.190822 -0.174723 2.025783 0.579961 1.182655 -2.874709 0.202166 1.549262 1.845501 1.775699 1.901577 -1.795361 -2.098565 0.117911 -1.969688 -1.342446 -0.566136 0.778033 -1.296019 0.739773 -1.174507 -1.805549 +PE-benchmarks/trie-suffixes.cpp__SuffixTrie::search(std::__cxx11::basic_string, std::allocator >) = 0.808028 1.214294 1.740742 -2.249657 -3.373203 0.893191 -2.916635 -1.489441 0.708186 2.317312 1.539622 -2.283387 -3.087016 3.274025 -1.610829 -3.368226 -0.685012 -1.057369 0.916405 -1.846161 0.426498 1.083128 -0.096831 0.602831 -0.098616 -0.735093 -1.222284 0.580754 4.209797 -1.525477 -2.033782 0.088825 0.089067 3.038810 -0.238686 -0.999935 1.024289 4.811195 0.310333 1.166276 -4.243174 -3.392870 1.611253 0.682763 -0.217605 -2.283511 -0.828416 1.539452 -4.702154 1.049499 1.876753 -0.251031 -0.393324 -0.285110 0.835461 2.130090 -6.777604 5.021437 0.000000 0.135402 0.564104 0.043589 0.601605 0.980096 1.551785 -1.311101 0.810735 2.018820 -3.227460 0.179124 -0.254972 -2.398954 3.829635 1.040564 -2.183305 0.884135 1.956457 -1.358804 2.399496 -5.035127 -3.275612 -0.060009 1.051966 -0.340854 2.924388 1.261626 0.976218 -4.393798 0.833334 -4.341732 2.656478 -2.684792 2.045608 3.093900 -3.304974 0.488397 1.945737 -1.000455 3.783928 0.196703 3.890761 0.889816 1.325972 1.006142 0.427058 1.330549 -0.959172 0.391730 -1.278245 -3.650085 -1.552300 0.105377 -4.380811 0.023409 -1.405255 2.342791 1.596297 -0.577904 -0.296614 0.805154 -4.387446 -3.831945 -0.120369 -0.348236 2.596834 3.366671 -0.676711 1.165448 -0.440519 4.365399 -1.745019 -0.035015 0.211754 0.768587 0.546998 -3.917139 -5.817167 0.916212 1.189547 -2.260240 -3.032069 -3.254128 -0.418732 -0.741855 -0.336955 4.582977 6.186369 -1.278980 -3.096174 3.938053 -1.599063 0.975176 5.933329 0.126319 5.051349 -2.154715 0.060362 -1.539342 -0.720252 -0.372022 0.161848 0.891822 0.105484 0.466900 1.888491 0.712440 -1.827351 -0.803386 -1.744228 -2.760970 0.405381 -1.902725 -1.818743 2.356101 -0.305781 2.586966 0.761922 4.913475 -1.994990 -5.010593 2.315265 -2.091740 0.054157 0.559228 -1.570526 0.381754 1.904419 -3.387182 -1.202068 -1.331387 -0.518641 -1.602528 0.715398 2.758018 1.382546 1.215451 0.613284 3.969860 4.091608 0.472723 1.046425 -4.178920 0.295737 2.037266 -1.044242 -4.104449 1.158417 -2.731870 0.594119 3.184861 -1.208574 1.456294 -1.194928 -2.387935 -1.424203 -1.299019 3.116144 0.152793 -2.250360 1.094325 -1.618796 1.072052 1.774012 2.321305 3.069344 2.960652 2.307073 0.410415 0.838192 -0.855408 3.654491 -0.195494 1.545567 0.874155 1.334792 2.576905 1.065213 0.917386 2.683883 2.296262 -1.701281 3.096612 -0.654957 4.787777 -2.660013 0.881729 -1.594887 -1.149246 2.368699 6.513870 -3.587564 0.192782 1.745493 1.684599 1.191441 -4.323808 -0.193937 -1.815628 -0.634470 1.607157 1.244893 -0.123031 -1.018853 2.846537 0.976220 -3.968336 4.019798 -0.219333 0.023036 0.502242 -0.539865 -2.277528 1.434995 -4.663514 0.967004 2.593378 2.412893 -2.659772 -0.650826 -0.491933 3.580608 -0.807983 2.073948 -3.091336 0.323034 3.137912 2.423616 2.593967 1.715602 -2.468981 -4.687694 0.985212 -1.972227 -2.005652 0.007248 1.031547 -2.437421 1.379580 0.551329 -3.087835 +PE-benchmarks/trie-suffixes.cpp__SuffixTrieNode::insertSuffix(std::__cxx11::basic_string, std::allocator >, int) = 1.182058 -0.193928 2.079199 -1.755082 -1.814120 0.787612 -2.072721 -0.784493 1.067267 2.507697 1.290653 -1.670264 -2.338183 2.695105 -1.064865 -2.845168 0.702478 0.692314 1.537034 -1.144376 0.573559 0.579002 0.229101 -0.457922 0.554323 -1.044895 -0.945508 1.288776 3.336849 0.128363 -1.775357 0.181284 -0.037092 3.082344 -0.813936 -0.654421 0.803845 4.302030 -0.915065 2.154422 -3.200559 -3.218857 2.695391 0.650218 0.012019 -1.351340 -1.135724 1.093309 -3.693034 -0.677695 1.337462 -0.331979 0.751949 -1.232014 0.171671 2.376029 -6.152015 2.119020 -0.215075 -0.359397 -0.251592 0.323482 0.468925 1.019997 0.023499 -1.508782 0.907324 1.566772 -2.539639 0.220059 -0.646458 -2.556535 3.965513 0.825494 -1.735667 1.281204 2.552363 -2.159020 2.332295 -2.617373 -2.756408 -0.566906 0.247720 -1.137530 2.936373 0.848309 2.320974 -4.182552 1.430066 -3.974009 3.400575 -3.040726 2.336098 3.284562 -3.475257 1.132425 2.240268 1.564317 2.591109 0.210488 4.276962 1.987438 0.921001 0.246512 1.302911 1.402502 -1.642150 -0.771352 -2.020620 -2.771131 -1.098026 -1.128745 -5.004948 -0.111214 -1.721523 1.943617 1.823669 -0.886084 -0.383537 2.273021 -4.616604 -1.456804 0.463312 -0.398150 1.600320 2.814503 -0.540535 0.159934 0.157269 4.365649 -1.765031 -0.931284 0.629605 1.036770 -0.693327 -2.586693 -3.211789 0.597206 0.735458 -2.721267 -3.148572 -3.804546 -0.237120 1.049391 0.021597 3.665381 5.946194 -0.408537 -2.320926 2.742075 -1.383494 0.434070 5.269819 0.627278 4.702413 -2.766477 0.427121 -1.963644 0.261001 0.452307 0.808789 0.659162 -0.043428 1.249387 1.371466 0.008110 1.155242 -1.311175 -0.391983 -2.220142 0.353510 -1.782626 -1.389132 3.028563 -1.348923 2.626417 -0.146905 4.986881 -1.406752 -4.256821 1.939887 -2.534040 -0.601031 -0.628126 -1.033244 0.187117 1.711264 -3.355462 -1.719605 -1.868146 -0.550668 -0.242651 1.500701 1.405070 1.188052 0.682266 -0.391577 3.466819 2.423657 0.414269 0.616958 -3.946281 -0.124902 1.701897 -2.041796 -3.700173 0.921375 -2.547182 0.857827 1.676667 -0.696886 1.910800 -2.144032 -2.602948 -1.092585 -0.801225 1.548807 -0.874110 -3.228906 0.717081 -0.430416 1.040962 1.995316 2.752887 3.722792 2.474331 1.090095 0.443907 0.961780 -0.888849 0.905756 0.536847 0.763798 1.431088 0.749334 2.512869 0.399240 0.883837 1.934100 1.930751 -0.208098 2.950076 0.418784 3.721982 -1.109863 0.204508 -0.309374 -1.580049 2.448959 5.109927 -2.259458 0.571406 1.553427 1.520843 0.221509 -3.304102 -0.040074 -1.239332 -0.862659 1.571638 1.014024 0.049012 -1.234690 2.770337 1.517082 -4.766890 3.319902 -0.273869 0.163465 1.915895 -0.721146 -0.838207 1.008053 -2.669155 1.578745 1.436265 2.233604 -3.053266 0.140190 -0.081003 3.049773 0.390472 1.278625 -3.620548 0.710371 1.760079 2.205359 2.399792 2.254272 -2.182344 -2.754726 -0.134099 -2.493577 -1.753561 -0.769683 0.686920 -1.932532 0.908602 -1.494408 -1.874895 +PE-benchmarks/m-coloring-problem.cpp__main = 0.378610 0.114354 0.157178 -0.522645 -0.473969 0.178601 -0.234209 -0.259061 0.047941 -0.194529 0.329945 -0.418014 -0.300965 0.696380 -0.216687 -0.531230 0.043776 -0.501009 -0.112130 0.091940 -0.040201 0.152142 -0.113821 -0.058134 0.006252 0.092929 -0.126541 0.205020 0.650260 -0.427876 -0.719641 0.022324 -0.006786 0.708428 0.158953 -0.336572 0.365518 1.040398 0.016904 0.306137 -0.470554 -0.236291 0.352978 0.017341 -0.279713 -0.566925 -0.478127 0.364331 -0.683972 0.095466 0.516278 -0.118633 -0.194253 -0.082755 0.169777 0.699084 -1.195786 0.869424 0.188194 0.544931 0.154212 -0.278056 0.093080 -0.041076 0.138745 -0.381207 0.317691 0.215597 -0.549336 0.034696 -0.362838 -0.695318 1.101470 0.285204 -0.383909 0.055735 0.172681 -0.669988 0.414747 -0.694520 -0.612864 0.086419 0.094078 0.050269 0.917689 -0.140394 -0.051358 -0.925893 0.033818 -0.991584 0.169182 -0.821296 0.368143 0.746738 -0.821202 0.025048 0.077743 0.066123 0.435208 0.242228 0.714401 0.186133 0.069079 -0.123180 0.337069 0.119505 -0.069109 -0.036594 -0.118786 -0.568261 -0.356477 0.092166 -1.278791 0.179028 -0.351953 0.343756 0.004247 0.134174 -0.118728 0.081638 -0.501868 -0.523233 -0.087642 -0.113284 0.560661 0.883109 -0.264766 0.223959 -0.398655 0.764138 0.069013 0.165405 -0.276252 0.117714 -0.083207 -0.973613 -1.023647 0.100924 0.462709 -0.366369 -0.861930 -0.646907 -0.052331 -0.326084 -0.223895 0.785589 1.022739 -0.173478 -0.493382 0.812460 0.203347 0.468001 1.058275 -0.086644 1.022719 -0.504257 0.240904 0.000157 -0.035789 -0.444588 -0.834320 -0.062461 -0.108000 -0.008559 0.073767 -0.349758 0.545114 0.104519 -0.279089 0.064171 -0.123232 -0.316049 -0.750295 0.967362 0.316960 0.503205 0.381329 0.997631 -0.327541 -0.755719 0.479876 0.220982 0.233929 -0.260097 -0.349998 0.076328 0.431245 -0.519124 -0.358123 0.052315 0.140655 -0.331418 0.267478 0.919390 0.069239 0.066400 0.264710 0.206340 0.847831 -0.155551 0.463923 -0.800455 0.190488 0.509902 -0.349862 -0.663117 0.233497 -0.373677 -0.003030 0.387675 -0.116822 0.106606 -0.405415 -0.639575 -0.001641 -0.007938 0.610472 0.208427 -0.605404 0.184675 -0.355218 -0.039771 0.377439 0.512275 0.655696 0.452795 0.436104 -0.231558 0.168649 0.033787 0.155291 -0.205101 0.057471 0.441645 0.262746 0.424225 0.199311 0.011640 0.272206 0.396171 -0.197710 0.527984 0.545828 0.932069 0.011022 -0.070386 -0.187925 -0.449799 0.588014 1.236828 -0.721913 0.065872 0.294678 0.459917 0.072102 -0.894185 -0.163716 -0.296833 -0.362096 0.211811 -0.248011 -0.081612 -0.114396 0.797413 -0.040767 -0.786387 0.413759 0.083341 0.133805 0.214597 -0.082990 -0.090775 0.270712 -0.804139 0.417866 0.350492 0.478961 -0.173824 -0.230097 -0.075535 0.418045 -0.373968 0.265013 -0.252772 0.342339 0.534550 0.694545 0.673285 -0.008626 -0.294909 -0.481991 0.073244 -0.208497 -0.112875 -0.049317 0.462539 -0.619112 0.030314 -0.184088 -0.591231 +PE-benchmarks/m-coloring-problem.cpp__printSolution(int*) = 0.507399 0.396666 0.605326 -0.692289 -0.279782 0.138054 0.241832 -0.594982 0.020236 1.532330 0.333088 -0.523291 -1.049194 0.818782 -0.406654 -0.942236 0.263227 -0.221415 -0.160361 -0.593530 -0.141230 0.208845 -0.031707 -0.706483 0.414748 -0.360167 0.222275 0.654433 0.238082 -0.056030 -0.427526 -0.091560 0.299922 1.474864 -0.068700 0.192691 -0.181366 1.348271 -0.899629 1.091451 -1.767895 -1.610492 1.501328 0.147061 0.091642 -1.042506 0.040575 0.643903 -0.829010 -0.586951 0.029259 -0.297423 0.095016 -0.995825 -0.072949 1.320380 -1.969818 0.796514 0.111953 -0.626244 -1.013362 -0.208009 0.722343 0.203935 -0.221537 -0.963395 0.206290 0.237772 -1.024918 0.487855 -0.814341 -1.254834 0.941929 0.243052 -0.512086 0.370328 -0.118929 -0.688351 0.654996 -0.889681 -0.548940 -0.526248 0.699495 -0.071912 0.554047 0.744502 0.761212 -1.963978 0.011061 -1.452595 1.140805 -0.817940 1.233979 1.002217 -0.596270 0.703482 0.308123 0.197814 0.296602 -0.135306 1.208316 0.284363 0.919166 -0.148030 0.625460 0.735948 -1.004948 -1.023483 -0.682311 -0.943850 0.079788 -0.287996 -1.423939 0.053342 -1.153387 0.305575 0.577847 -0.437034 -0.250742 0.818219 -2.268100 -0.726752 0.355551 -0.231126 1.159957 0.913598 0.043962 0.285821 0.148106 1.132133 -0.098691 -0.145264 -0.261232 0.644091 -0.232688 -1.078748 -0.810282 0.102873 0.462513 -1.022773 -1.352448 -1.665395 -0.410574 0.609619 -0.328590 1.132081 2.061315 -0.265106 -1.272648 0.785100 -0.517440 0.227715 1.378298 0.277912 1.934234 -1.599545 0.796329 -0.157549 0.559354 0.756022 1.178622 -0.396072 -0.869177 0.612407 0.077856 -0.243407 0.084519 -0.225962 0.130873 -0.588814 0.107773 -0.517308 -0.367201 1.149047 -0.937725 1.460257 -0.647144 1.763175 -1.389628 -1.262448 0.516624 -1.537278 -0.509651 -0.605454 -0.483210 -0.156316 1.055816 -1.350733 -0.732005 -0.653348 -0.300591 0.016185 1.171694 -0.708357 -0.014664 -0.358372 -0.389108 1.443283 0.594461 -0.369021 0.134169 -1.275220 0.130188 0.882987 0.123285 -1.706523 0.001087 -0.908012 -0.188071 0.610145 -0.147257 0.755125 -0.425462 -0.483794 0.327746 -0.456812 0.185824 -0.643273 -0.897674 0.349843 -0.363851 0.073416 0.405157 1.589279 1.179498 0.768557 0.028743 -0.222531 0.326017 -0.950387 -0.406612 0.366295 0.146835 0.482673 0.597365 0.751278 0.188343 0.277296 0.991006 0.374816 -0.291709 1.264405 0.320976 1.330044 -0.793350 0.212186 0.222407 -0.708814 0.746738 1.486733 -0.844009 -0.506723 0.701674 0.189355 -0.223527 -0.694647 -0.389917 -0.585641 -0.575863 0.968173 0.672180 -0.426387 -0.492666 1.923607 0.281734 -1.988790 1.269184 0.024210 0.267393 0.622509 -0.738866 0.030155 0.802967 -0.406764 0.255752 0.440903 1.054454 -1.242063 -0.045259 -0.106561 1.142336 0.606557 -0.181562 -2.054464 0.005872 0.584251 1.536785 0.726558 1.265969 -0.711984 -0.042264 -0.345335 -0.401279 -0.140504 -0.258087 0.736273 -0.358200 -0.003875 -1.432562 0.113614 +PE-benchmarks/m-coloring-problem.cpp__isSafe(int, bool (*) [4], int*, int) = 0.795251 0.311077 1.113770 -1.571921 -0.437723 0.335365 1.467506 -0.698935 0.325458 3.065760 0.983081 -0.901309 -1.503681 2.217598 -0.023203 -1.365641 1.370237 -0.860725 0.019128 0.006879 -0.288478 0.959308 -0.243227 -1.028554 1.243179 -0.250863 -0.097742 1.443818 -0.128056 -0.252074 -1.292678 -0.218985 0.005249 2.886007 -0.305453 0.095470 -0.139245 3.187554 -3.213044 3.436128 -2.898292 -2.492044 2.962389 0.261743 -0.320517 -1.668777 -0.287915 1.301268 -0.463163 -2.264948 0.909238 -0.607041 0.606303 -1.687612 0.298721 2.858884 -3.753629 0.302587 0.570852 -0.653239 -1.605059 -0.550262 1.160612 0.305349 -1.646060 -1.723469 0.626764 -0.434381 -1.395667 0.223181 -1.692145 -2.947103 1.677726 0.987467 -1.077483 0.851392 0.008021 -2.462871 1.612137 -1.213115 -1.477626 -0.852263 0.630562 -1.041501 1.547486 0.766382 1.934270 -3.978417 0.259689 -3.075003 2.254842 -2.073009 2.430530 2.753626 -0.970615 1.225747 0.754175 1.395311 0.593830 -0.387690 2.686152 1.021507 1.479224 -0.332822 1.543314 2.023028 -2.671449 -2.190536 -1.886460 -1.764625 0.617232 -0.646605 -2.415844 0.243171 -2.019803 -0.007871 1.468388 -0.779736 -0.724833 2.348537 -3.563295 -0.514407 0.825416 -0.531364 1.891978 2.648722 0.040038 0.056048 -0.158378 2.440416 -0.491941 0.459488 -0.919202 1.392371 -1.302038 -1.204145 -0.475195 -0.168011 0.716950 -2.363935 -2.733114 -4.206549 -0.335326 1.208297 -0.864899 2.322969 4.426114 -0.992971 -2.049723 1.914180 -0.127533 0.466118 2.003592 0.246719 3.642991 -3.072500 1.406072 -0.708668 0.964205 0.847160 3.612432 -0.217825 -1.353525 0.995196 -0.265066 -1.546308 2.315718 0.032942 0.085084 -0.611083 0.324965 -1.033118 -1.475981 2.943506 -1.927801 2.281656 -1.163782 3.659451 -2.139242 -1.843745 1.485566 -2.286093 -0.845384 -2.746164 -1.497073 0.264406 1.898683 -2.154552 -1.304434 -1.507561 -0.424187 -0.220998 1.699475 -2.114892 0.039613 -0.678864 -0.652799 2.396485 1.318464 -0.402669 0.199317 -2.696801 0.307179 1.309635 -0.678045 -2.958432 0.154404 -1.910469 -0.406474 0.984738 -0.420101 1.391441 -1.745372 -1.448759 0.977137 -0.645857 0.067438 -1.060894 -3.594479 0.611442 -0.262464 0.242547 1.351552 2.926389 2.243670 1.865626 0.330090 -0.406545 0.324396 -0.920622 -2.427973 0.733323 -0.281562 1.316815 1.298504 1.527134 0.773861 0.525140 1.598792 0.358337 0.030360 2.443731 1.113408 2.696058 0.146971 -0.221500 0.992108 -1.594858 1.628221 2.700547 -1.059652 -0.728071 1.506858 0.379946 -1.311502 -0.932589 -0.196528 -1.289628 -1.092982 1.648925 0.624816 -0.587673 -1.050565 3.959330 0.039502 -4.537774 1.805232 -0.127110 1.091817 1.912845 -0.692075 0.997835 1.299769 -1.030026 1.774493 0.929306 2.357619 -2.088886 0.030299 -0.202961 1.569537 1.858150 -0.115892 -4.795079 0.258197 0.507990 2.826976 1.540327 3.100327 -1.177086 0.710041 -0.772114 -1.247157 -0.352884 -0.914324 1.661862 -0.377847 -0.024403 -4.158495 0.655754 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__main = 0.656000 0.170328 4.292556 -3.809128 -3.251518 0.149159 -4.493805 3.387451 2.189230 2.588491 1.142036 -4.381825 -8.580936 4.779843 -2.535404 -6.971769 2.775319 -0.864170 4.065344 -4.269371 1.854835 0.980191 4.285878 -1.070802 2.374825 -2.222570 -6.244525 3.680266 13.431675 -2.721413 -0.072861 2.970958 1.563127 3.947317 -5.000504 -3.723973 2.548555 6.967355 0.877593 0.877165 -3.925445 -3.664156 6.785724 1.825681 -1.206485 -3.864330 -2.595338 2.574133 -10.416822 -0.496940 1.482128 1.893282 0.792345 -3.720846 -2.263456 6.626978 -14.168801 6.484462 -2.522634 0.868611 1.961888 4.157837 -0.968536 1.569361 6.122793 -2.772118 -0.631411 0.457059 -7.841676 -0.829296 1.804015 1.582444 7.988567 -0.142220 -1.187053 4.785135 6.782528 -0.787086 3.607123 -9.146067 -3.188516 -0.248693 0.453102 -0.651084 6.343173 -0.169542 1.665979 -5.584230 0.196371 -3.455510 7.554610 -5.884896 2.391965 4.918023 -5.754987 3.386622 2.202712 -4.976073 5.000375 1.471967 9.850274 2.305022 4.143351 2.240034 0.620648 1.235071 -1.314189 1.180470 -3.494105 -4.237173 -3.722348 -0.932602 -7.406198 0.209287 -1.941442 2.809594 8.245844 -3.510556 -1.285190 1.150474 -2.975692 -2.447623 0.362557 -0.353098 -0.166208 5.024437 -0.774071 -2.512470 1.815925 9.418793 -2.165908 -0.938069 5.569596 1.142047 3.819438 -8.739561 -3.392257 0.485480 -1.788275 -3.333512 -3.698153 -5.078057 2.158988 -2.898868 -0.164779 4.721088 10.814233 3.051796 -3.203607 5.260741 -1.563911 3.705088 8.356850 0.041782 8.625072 -3.663677 -2.603174 -2.608613 -0.307917 3.416473 2.714152 2.280485 1.752972 0.587866 4.400933 0.028803 -6.017216 -2.874940 1.282066 -1.915217 -0.782301 -4.464545 -4.154632 3.265820 3.777211 5.225205 2.155539 8.696819 2.505701 -12.610288 4.643504 0.421082 -0.728167 1.657223 -2.056244 1.505671 -2.771499 -4.968607 -2.729107 -5.894168 2.135654 -1.781491 0.629144 2.468856 4.892510 1.726038 -0.447391 3.459990 0.918826 -0.212750 3.314939 -9.899230 -2.385398 2.230472 -2.361427 -8.025595 3.742431 -2.564936 3.338096 7.908710 -2.746322 2.497981 -0.999972 -5.315832 -1.490863 -2.075629 2.195658 -3.217188 -3.590803 -0.009303 0.989227 1.400795 3.567326 5.327628 8.008619 1.224860 -1.693400 4.777833 1.618604 0.332831 4.011054 -2.047921 -1.065823 1.217858 1.073469 2.058078 -0.084512 1.691552 6.072914 4.946027 -5.228266 4.409501 -0.672665 4.442373 -1.434999 -1.911083 -0.138064 -3.444201 3.703267 8.269600 -2.855531 -1.188867 4.302493 3.736018 4.249079 -8.172828 0.679267 -2.901147 0.384077 6.170736 -0.117068 0.062678 -0.094975 -0.094215 3.317592 -7.775950 8.890724 -0.675565 -1.014254 0.059839 -0.125246 -3.755553 1.954979 -8.344810 -1.868994 2.102666 2.427736 -5.180460 1.092519 0.564424 7.053598 -2.938277 3.968095 -8.053593 -2.784512 2.441534 0.783112 4.688205 3.247846 -2.056685 -11.078767 0.376208 -2.438236 -5.612859 -2.670710 -2.711384 -6.345451 1.951014 3.124668 -1.773720 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__buildSuffixArray(std::__cxx11::basic_string, std::allocator >, int) = 5.342312 -3.091563 6.700076 -6.006110 -1.283029 4.766975 -1.946522 -7.682073 2.864549 15.104477 5.421392 -5.301238 -5.312862 10.210007 -1.836678 -9.637438 6.735358 8.935998 3.248835 -2.942490 -1.167093 1.497114 -2.096752 -6.596515 4.310761 -5.809312 3.144156 7.509963 2.321493 6.221020 -8.101682 -1.666653 -1.461273 17.483522 0.682250 3.504646 0.365789 17.266146 -11.520349 18.823390 -14.464440 -15.038135 14.974884 3.031473 0.569577 -1.087998 -3.420561 4.351843 -9.715683 -9.373217 3.879243 -6.432346 6.171608 -7.836208 1.311641 13.010896 -18.570215 -0.857004 0.941486 -6.638193 -10.466085 -2.804339 6.492132 4.202728 -11.472490 -9.434361 5.528732 6.503302 -6.895563 2.387434 -10.300407 -19.539868 12.559686 4.492184 -8.125769 2.827651 3.335091 -11.712757 7.652696 0.923454 -10.295297 -5.615522 2.895882 -8.395129 9.003326 6.821412 16.481185 -22.975396 6.192642 -19.925958 14.778305 -10.260416 16.284690 15.142371 -11.852728 6.107235 8.195266 16.623972 2.536395 -0.952712 15.791782 6.904585 0.709605 -3.595259 11.042799 8.450266 -12.473178 -12.772621 -9.531209 -9.722036 1.373331 -7.977408 -19.260849 -0.520294 -14.829076 7.064051 2.985540 -1.445098 -4.139628 13.922101 -25.031867 -3.015977 2.870687 -3.019279 12.865565 11.072519 -0.018436 3.111465 2.017163 15.251710 -5.581538 -6.339508 -5.402266 7.680891 -7.938011 -2.331779 -8.168274 1.893485 7.529568 -14.363681 -17.478439 -20.436563 -5.952455 13.540703 -1.605122 17.480877 25.209073 -4.556534 -10.310756 8.257462 -8.557968 1.016246 19.029577 4.453256 21.445184 -19.523852 10.237841 -7.391351 7.024308 4.827155 9.940951 -2.485874 -6.712788 8.994105 0.341570 -0.060429 18.339090 -4.306642 0.284776 -10.674873 2.896747 -3.407375 -4.249433 17.708776 -17.836132 12.310110 -7.304606 22.712785 -13.927939 -12.074999 6.344587 -17.087451 -7.237750 -10.183556 -4.029043 -3.559980 14.591721 -14.856574 -9.639368 -6.623515 -4.295006 3.124558 11.904897 0.988603 -0.450661 -2.574672 -6.229144 18.224983 8.743536 0.817182 -1.604646 -14.025878 0.644911 9.961475 -7.888521 -12.830801 0.325104 -12.192779 -0.834991 -1.032172 -0.500461 9.716614 -14.431783 -8.252717 -2.252151 -1.301506 3.969973 -5.089486 -20.726313 5.833128 -0.295671 0.375006 9.155852 16.084779 15.412191 11.916544 3.544121 -4.201451 3.977806 -8.037328 -10.084683 7.534676 3.325300 10.576528 4.416380 11.586782 1.323305 3.896311 5.761544 2.285193 7.002266 13.600984 6.645595 16.418363 -1.010365 2.679441 3.189722 -9.608667 10.362446 18.545849 -9.291390 0.579708 6.685703 3.144064 -6.509101 -10.172026 -1.343919 -5.267214 -6.803161 5.271360 4.842067 -0.949621 -9.656895 22.219307 4.943981 -25.373575 11.430478 -0.564165 3.139037 14.638516 -7.107544 4.135680 4.999928 -3.043677 10.930019 4.680047 12.098393 -14.188886 3.802594 -1.537547 10.034498 10.993921 -2.339982 -18.767486 6.906436 4.326485 16.934941 10.786329 13.433718 -8.779710 3.920716 -5.562743 -12.447840 -1.896814 -4.923105 8.728822 -1.982164 1.831031 -21.895065 -2.427736 +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.960671 0.913701 1.000098 -0.994351 -2.004311 0.631192 -1.091360 -0.909067 0.052467 0.674137 0.692013 -0.509611 -0.172590 1.256111 -1.122597 -0.876815 -0.802264 -1.557333 -0.199699 -1.069498 -0.004408 0.526138 -0.343248 0.471996 -0.373546 -0.375796 -0.139943 0.136710 0.680682 -0.783654 -0.867263 -0.177856 -0.167572 1.300073 0.464732 -1.077771 0.670396 2.231309 0.084514 -0.722945 -1.206896 -1.490912 0.251305 0.091782 -0.010965 -0.904201 -0.749954 0.707989 -0.604583 0.906953 1.124046 -0.105541 -0.309131 0.378088 0.413490 0.262522 -2.400255 1.884894 0.084239 0.147963 -0.115097 -0.310957 0.413935 0.483067 0.561940 -0.611274 1.036876 1.462436 -0.588756 0.138590 0.091371 -1.501247 1.539558 0.283334 -0.468999 -0.017000 0.925371 -1.105624 1.266285 -1.546918 -1.703724 0.219231 0.169871 -0.778171 1.477853 -0.114828 0.250313 -1.856930 0.853228 -2.062434 0.297124 -1.012139 0.425079 1.053612 -1.386256 -0.028606 0.801631 0.722653 1.702946 -0.074879 1.511229 0.431033 0.589816 0.766886 0.416505 0.459617 -0.094697 0.455236 -0.917662 -1.748101 -0.482388 -0.026928 -2.124513 0.499832 0.125178 -0.248719 -0.326908 -0.195875 -0.013926 1.194951 -1.772360 -1.412055 0.103516 -0.110626 0.509871 1.114539 -0.718621 0.839165 -0.524862 1.631819 -0.801108 0.342363 0.010772 0.196452 -0.157811 -1.621267 -3.016289 0.838120 0.950081 -0.824237 -1.323989 -1.021550 -0.110377 -0.438546 -0.464635 2.101171 2.530305 -0.857364 -1.572911 1.757391 0.628674 -0.226645 2.331153 -0.000955 1.847360 -0.485075 -0.390867 -0.677775 -0.679889 -0.657199 -1.662713 0.487714 0.561135 0.497742 0.830125 0.254706 0.852229 -0.523181 -1.227531 0.000218 0.519960 -0.624617 -0.803650 1.126780 1.366166 0.883520 1.298606 1.940003 -0.741303 -1.635615 0.481675 -0.495908 0.469341 0.013445 -0.230169 -0.028542 1.085603 -0.662980 -0.490157 -0.195504 -0.622138 -0.878885 0.010190 1.754443 1.024832 0.717952 0.775465 0.481910 2.613903 0.577948 0.517359 -1.542915 0.422300 1.130751 -0.203502 -1.332336 -0.048582 -0.849540 0.199426 0.618199 -0.292225 0.648063 -0.516546 -0.758362 -0.623791 -0.242383 1.135056 0.818330 -1.043073 0.519364 -1.228851 0.907492 0.190920 0.654691 1.624814 1.544225 1.748298 -0.143651 0.447231 -0.208034 1.548548 -0.388180 0.945687 0.589310 0.625438 1.574471 0.656683 0.460530 0.956006 1.213432 -0.240300 1.216169 -0.337644 2.600953 -1.474353 0.536749 -1.424521 0.212725 1.116458 3.008776 -0.624435 0.246814 0.413280 0.926002 0.150962 -1.899967 0.151483 -0.644429 0.559416 -0.314382 0.826379 -0.319509 -0.299304 1.216618 0.233718 -1.398639 1.103256 0.103339 0.223395 0.463880 -0.149536 -0.634976 0.358210 -1.700441 0.949127 1.407959 0.783073 -1.019516 -0.525113 -0.019421 1.583165 -1.498206 1.211168 -1.156962 1.281019 1.296366 0.751477 0.557522 0.427453 -1.464659 -1.833702 1.098292 -0.642957 -0.607026 1.391377 1.041815 -1.842849 1.060934 0.236450 -1.659785 +PE-benchmarks/construction-of-lcp-array-from-suffix-array.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/weighted-job-scheduling.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +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.960671 0.913701 1.000098 -0.994351 -2.004311 0.631192 -1.091360 -0.909067 0.052467 0.674137 0.692013 -0.509611 -0.172590 1.256111 -1.122597 -0.876815 -0.802264 -1.557333 -0.199699 -1.069498 -0.004408 0.526138 -0.343248 0.471996 -0.373546 -0.375796 -0.139943 0.136710 0.680682 -0.783654 -0.867263 -0.177856 -0.167572 1.300073 0.464732 -1.077771 0.670396 2.231309 0.084514 -0.722945 -1.206896 -1.490912 0.251305 0.091782 -0.010965 -0.904201 -0.749954 0.707989 -0.604583 0.906953 1.124046 -0.105541 -0.309131 0.378088 0.413490 0.262522 -2.400255 1.884894 0.084239 0.147963 -0.115097 -0.310957 0.413935 0.483067 0.561940 -0.611274 1.036876 1.462436 -0.588756 0.138590 0.091371 -1.501247 1.539558 0.283334 -0.468999 -0.017000 0.925371 -1.105624 1.266285 -1.546918 -1.703724 0.219231 0.169871 -0.778171 1.477853 -0.114828 0.250313 -1.856930 0.853228 -2.062434 0.297124 -1.012139 0.425079 1.053612 -1.386256 -0.028606 0.801631 0.722653 1.702946 -0.074879 1.511229 0.431033 0.589816 0.766886 0.416505 0.459617 -0.094697 0.455236 -0.917662 -1.748101 -0.482388 -0.026928 -2.124513 0.499832 0.125178 -0.248719 -0.326908 -0.195875 -0.013926 1.194951 -1.772360 -1.412055 0.103516 -0.110626 0.509871 1.114539 -0.718621 0.839165 -0.524862 1.631819 -0.801108 0.342363 0.010772 0.196452 -0.157811 -1.621267 -3.016289 0.838120 0.950081 -0.824237 -1.323989 -1.021550 -0.110377 -0.438546 -0.464635 2.101171 2.530305 -0.857364 -1.572911 1.757391 0.628674 -0.226645 2.331153 -0.000955 1.847360 -0.485075 -0.390867 -0.677775 -0.679889 -0.657199 -1.662713 0.487714 0.561135 0.497742 0.830125 0.254706 0.852229 -0.523181 -1.227531 0.000218 0.519960 -0.624617 -0.803650 1.126780 1.366166 0.883520 1.298606 1.940003 -0.741303 -1.635615 0.481675 -0.495908 0.469341 0.013445 -0.230169 -0.028542 1.085603 -0.662980 -0.490157 -0.195504 -0.622138 -0.878885 0.010190 1.754443 1.024832 0.717952 0.775465 0.481910 2.613903 0.577948 0.517359 -1.542915 0.422300 1.130751 -0.203502 -1.332336 -0.048582 -0.849540 0.199426 0.618199 -0.292225 0.648063 -0.516546 -0.758362 -0.623791 -0.242383 1.135056 0.818330 -1.043073 0.519364 -1.228851 0.907492 0.190920 0.654691 1.624814 1.544225 1.748298 -0.143651 0.447231 -0.208034 1.548548 -0.388180 0.945687 0.589310 0.625438 1.574471 0.656683 0.460530 0.956006 1.213432 -0.240300 1.216169 -0.337644 2.600953 -1.474353 0.536749 -1.424521 0.212725 1.116458 3.008776 -0.624435 0.246814 0.413280 0.926002 0.150962 -1.899967 0.151483 -0.644429 0.559416 -0.314382 0.826379 -0.319509 -0.299304 1.216618 0.233718 -1.398639 1.103256 0.103339 0.223395 0.463880 -0.149536 -0.634976 0.358210 -1.700441 0.949127 1.407959 0.783073 -1.019516 -0.525113 -0.019421 1.583165 -1.498206 1.211168 -1.156962 1.281019 1.296366 0.751477 0.557522 0.427453 -1.464659 -1.833702 1.098292 -0.642957 -0.607026 1.391377 1.041815 -1.842849 1.060934 0.236450 -1.659785 +PE-benchmarks/weighted-job-scheduling.cpp__findMaxProfit(Job*, int) = 2.595215 0.624391 2.927700 -2.757937 -2.719414 1.704590 -0.668316 -3.265433 0.733343 6.601055 2.437963 -2.408366 -0.926899 4.213373 -2.104368 -2.577234 1.275599 1.314841 0.574355 -1.923979 -0.085557 1.430365 -0.906964 -1.912201 0.930100 -1.807962 0.953842 2.118110 -0.099692 1.694205 -2.599057 -0.805198 0.106908 6.143821 0.710765 0.023293 -0.329403 5.959494 -4.270415 5.121956 -6.573019 -5.904807 4.921472 1.212385 1.372429 -2.903915 -2.101543 2.085128 -1.120616 -3.017199 1.102472 -2.141798 2.016191 -2.350940 0.110928 3.738169 -6.735610 0.480425 0.612683 -3.257933 -3.891873 -0.229437 2.985851 2.355412 -3.682296 -3.588997 1.701936 3.199651 -1.573250 0.989694 -2.781443 -7.213536 3.604812 0.981925 -2.840064 0.529434 0.819684 -4.917069 3.449985 -1.450513 -3.931640 -1.541126 1.020910 -3.192536 2.330304 2.113787 6.022350 -8.101322 2.753907 -7.364798 4.722967 -3.112942 4.855558 4.639956 -3.481752 1.594534 2.856465 5.298611 3.360457 0.520404 5.417074 3.201920 1.951856 -0.625967 3.616101 3.977767 -3.809302 -3.691215 -3.699355 -4.641958 0.624179 -2.190784 -7.213037 0.439498 -3.789691 1.140579 0.438984 -1.518794 -0.397319 6.617770 -8.911005 -2.043829 1.573418 -0.802767 3.166464 3.870724 -0.163659 1.340151 0.206840 5.124492 -2.200013 -1.422255 -0.624240 2.752512 -4.127173 -2.774582 -3.835099 1.811257 2.416677 -5.011389 -5.622728 -7.775743 -1.439671 4.085420 -1.357208 5.343846 9.134112 -2.223422 -5.051446 3.158423 -0.685438 -2.288880 6.566116 1.184904 8.245664 -6.381351 2.640026 -2.659979 1.346163 1.468177 4.546492 -0.613219 -2.067618 3.327062 -0.135961 -3.242438 6.331140 -1.510994 -0.419046 -2.219673 1.555516 -1.132222 -0.970548 5.221833 -4.746752 4.600413 -2.546255 7.653051 -4.871984 -4.504571 1.906297 -6.344667 -2.373730 -2.383046 -0.682394 -0.581795 5.711509 -4.603031 -2.758206 -1.893841 -2.843031 0.067790 4.071308 -1.394086 0.657676 -0.040505 -1.913271 5.635886 3.545243 0.570999 -0.001568 -4.455584 0.642426 3.637320 -1.541495 -6.000671 -1.078105 -5.086749 -0.097286 -0.810546 -0.388281 3.953986 -4.051803 -2.260946 -0.438098 -1.477481 1.276081 -1.570285 -5.322190 2.260736 -1.833571 2.220628 1.470667 5.915053 5.430602 5.247419 1.767593 -1.037195 1.258813 -3.639459 -2.139025 2.430335 2.175223 1.582935 1.921314 4.845460 0.706087 1.921970 3.038801 1.102056 2.241587 5.232759 0.525533 6.184491 -2.492897 1.575633 0.199867 -2.281866 3.710179 7.650800 -1.530438 -0.725172 1.693267 0.400138 -2.746395 -3.124770 0.142695 -1.496313 -1.880789 1.639262 3.535819 -0.238252 -3.246884 7.326637 1.995547 -8.754833 4.590358 -0.410513 1.179131 5.032878 -2.531931 1.639539 1.593403 -0.347540 3.515528 2.961997 4.082922 -5.759738 -1.160912 -0.266125 4.313085 3.499609 0.218433 -8.485574 3.217100 2.225859 5.516608 1.816206 5.817820 -4.571105 0.413976 -0.446247 -3.371954 -1.367357 -0.417858 3.003544 -1.696518 1.131525 -6.801052 -0.658018 +PE-benchmarks/euler-circuit-directed-graph.cpp__main = 1.228864 0.264925 1.541357 -0.878425 0.143867 -0.007150 -1.791398 0.494491 1.125565 0.521537 -0.349533 -0.028855 -1.872399 1.805305 -1.859274 -1.222822 1.080628 -0.485988 2.058167 -0.368054 1.016604 0.568036 1.565153 0.418980 0.860342 -0.771401 -1.174931 0.842002 3.286662 -1.171111 -1.058829 0.613666 0.710197 1.133093 -1.371021 -1.287089 0.991670 2.203740 0.558439 1.099349 0.069693 -0.209953 0.910399 0.608685 -1.074039 -1.270908 -1.231361 -0.052072 -2.592559 -0.241535 0.838372 -0.037775 -0.424369 -0.433287 -0.145040 1.797409 -3.893976 1.546604 -1.059225 1.906294 2.228605 0.243257 -0.114002 -0.656680 2.219176 -0.345377 0.135811 0.224074 -3.482814 -0.076980 0.397538 0.862109 2.402361 0.385080 -0.963327 1.134120 2.575946 -0.866395 0.536585 -3.589854 -0.731327 -0.209177 -0.465803 0.967057 2.054172 -0.210261 -0.283871 -1.327864 0.051700 -0.308352 1.800692 -1.843417 1.006814 1.339549 -2.120376 0.800817 0.987082 -0.219658 0.675101 -0.118163 3.258487 1.522401 -0.621224 -0.070832 0.263326 -0.209458 -0.144009 0.736317 -0.629520 -0.608029 -0.980161 -0.371263 -2.578645 -1.063646 -0.615615 1.054434 2.049780 -0.900542 -0.833382 -0.086025 -2.208941 -1.162607 -0.372375 -0.085242 -0.082346 1.791610 0.163572 -0.937529 0.389149 2.659028 -0.853727 -1.312015 1.084271 -0.408660 0.680198 -2.270658 -0.921175 -1.542707 -0.580594 -0.915855 -1.470931 -1.571773 0.216759 -1.448464 0.571684 1.507515 2.830550 1.158249 0.011119 1.453098 -0.474966 1.111918 3.091271 0.137848 2.009157 -0.964674 -1.164699 -0.648477 -0.519166 0.860471 0.287205 0.564729 1.454385 -0.395864 1.536423 0.140934 -2.683373 -1.166694 0.140088 -0.445304 -1.019875 -1.074756 -1.270622 1.143874 0.047425 0.697716 -0.278189 2.427892 1.047786 -3.714068 0.626970 -0.371098 0.455441 -0.759886 -0.283854 -0.501809 -0.018621 -2.149593 -0.755966 -0.481514 0.773359 0.026930 0.292766 0.156260 1.371209 -0.440170 -0.078746 1.983554 0.923940 -0.328086 1.837213 -2.467358 -0.740014 0.810650 -0.695730 -2.842016 2.076400 -0.875427 0.669794 1.742694 -1.772555 -0.777459 -1.032175 -2.039544 -0.992953 -1.390297 0.457478 -0.915178 -1.498230 -0.073307 0.041151 -0.342962 1.691767 0.714539 2.122760 -0.000567 -0.176113 0.378411 0.767168 -0.079258 0.525013 0.236660 -0.190663 0.343382 0.050391 1.175536 0.051860 0.192407 0.797063 1.502871 -0.557689 1.038839 0.417791 1.299180 0.633105 -0.592852 -0.696982 -1.529303 0.973344 2.556443 -0.831845 0.370787 1.244526 1.024129 1.897130 -2.534213 0.668804 -0.916335 -0.475139 2.272142 -0.210791 0.558584 0.146843 -0.072588 -0.128935 -2.042951 1.454701 -0.386204 -1.213989 -0.131320 0.048688 -0.687707 0.427701 -2.439361 -0.758846 -0.239675 1.378791 -0.914626 1.054118 -0.437909 1.036725 -0.504989 0.804127 -2.749794 -0.751923 0.660311 0.916588 1.652644 1.033743 -0.105710 -2.617042 0.283521 -0.006552 -1.448108 -1.081158 0.521383 -1.697951 0.126526 1.233759 -0.277449 +PE-benchmarks/euler-circuit-directed-graph.cpp__Graph::isSC() = 2.075774 0.352071 4.471464 -5.388902 -1.392244 1.405126 2.038789 -2.759835 1.894648 10.720436 2.647911 -2.742862 -7.352215 5.971947 -0.817089 -6.176945 4.009825 -0.475119 1.433024 -2.353301 -0.468467 2.124971 -0.308792 -3.675332 3.677945 -2.964441 0.204843 5.012136 2.670415 0.437262 -3.636756 -0.727209 -0.003845 9.940028 -1.505303 1.452308 -0.609226 10.851977 -7.422211 10.308872 -10.384092 -10.358436 10.115904 1.153159 -0.480590 -4.558689 0.694821 3.408986 -5.227657 -5.550432 1.909247 -2.243517 2.656344 -6.006808 0.421520 8.569360 -13.089879 1.992723 0.409238 -3.570777 -5.408724 -1.719066 3.558019 1.923553 -4.531148 -5.483455 2.231328 0.416225 -6.866694 1.664036 -4.939895 -8.581426 6.440783 3.407251 -4.061271 3.261699 1.597681 -6.786412 4.848942 -3.923319 -5.135873 -3.365471 2.828114 -3.201421 5.294689 3.647038 7.273769 -13.379145 0.952841 -10.365043 8.611888 -6.620941 9.052057 8.816581 -4.436678 5.011882 3.695311 4.863098 1.657562 -2.099326 9.775447 3.600282 4.999579 -0.619763 5.145910 5.545669 -8.085593 -7.057866 -5.626477 -5.758029 0.591497 -3.233885 -9.271346 -0.352054 -7.870365 1.618275 5.237602 -2.341617 -3.065245 7.338352 -14.628614 -3.387565 2.342657 -1.834382 7.153361 7.224575 0.431087 0.546738 1.627228 9.359676 -2.656085 -0.725005 -2.553283 4.593630 -2.343235 -2.792232 -3.456471 -0.581671 2.434346 -7.934311 -9.707074 -12.117513 -3.050150 5.256891 -1.172615 8.900670 15.482323 -2.215508 -7.042570 6.052850 -5.174968 2.188386 9.213836 2.070655 11.901086 -10.471610 4.950162 -3.625799 4.027080 4.086125 11.976595 -0.862766 -4.426606 3.758672 0.540317 -0.152594 3.307126 -1.873453 0.705310 -6.156951 0.677787 -4.509377 -4.090208 9.053864 -9.132960 9.059694 -4.486685 12.969463 -8.071428 -8.257458 4.694413 -9.280097 -3.134165 -7.061338 -3.598190 -0.146255 6.357475 -8.794608 -5.405565 -5.543089 -1.498827 0.567576 6.510955 -5.053171 0.182838 -2.043141 -2.801764 10.939282 4.388337 -1.076723 -0.329624 -9.278751 0.753953 4.772805 -2.118182 -9.458739 0.970292 -6.237396 -0.909986 3.923591 -0.997780 5.339130 -5.101081 -4.933699 1.138868 -2.053751 0.945045 -4.203224 -12.379306 2.487564 0.040651 0.112624 4.639442 9.735998 8.455018 5.678008 0.565309 -1.366850 1.769022 -4.397197 -5.234528 3.030077 0.570987 4.318685 3.468937 6.732443 2.038185 2.198450 6.216963 2.794230 -0.197496 8.302178 2.292823 9.339318 -2.196182 -0.150962 2.629632 -5.362609 5.451313 10.253554 -4.470268 -1.593668 5.414590 2.460920 -2.690787 -5.049913 -1.347582 -4.351151 -2.561947 5.797339 3.259651 -2.004861 -3.844480 12.899711 1.974647 -15.215608 7.616419 -0.501180 2.641443 5.924145 -3.569518 0.908454 4.855621 -4.194377 5.182490 2.602210 7.012329 -8.084933 0.930864 -0.688495 6.570649 5.256644 -0.877047 -14.015732 0.008154 2.116243 9.908720 6.811492 9.935002 -4.125366 0.352431 -2.790035 -5.675063 -1.982920 -2.943627 4.654868 -2.132588 0.508172 -12.181866 0.617375 +PE-benchmarks/sieve-of-eratosthenes.cpp__main = 0.302409 0.485217 0.279678 -0.410944 -0.941309 0.201176 -0.684897 -0.497423 -0.043665 0.046688 0.347792 -0.609852 -0.535570 0.753719 -0.674791 -0.755578 -0.428724 -0.195355 -0.108070 -0.533736 0.044008 0.264013 -0.063022 0.042359 -0.085969 -0.167872 -0.136561 0.143119 1.002422 -0.321948 -0.413062 0.011602 0.264257 0.718206 0.188793 -0.218434 0.311854 0.990089 0.336258 -0.028872 -0.992165 -0.685564 0.360938 0.168479 -0.021421 -0.933367 -0.535779 0.344430 -1.183994 0.595227 0.330149 -0.131220 -0.264326 0.029334 0.210032 0.588203 -1.487665 1.530193 0.006618 0.052396 0.107377 -0.072933 0.005423 0.042072 0.623896 -0.404050 0.045347 0.804856 -0.645279 0.233809 -0.058134 -0.548898 1.285579 -0.006450 -0.555513 0.035579 0.175145 -0.283985 0.407470 -1.223867 -0.629763 0.040315 0.457819 0.493373 0.571070 0.310051 -0.021160 -1.025649 -0.150642 -1.010267 0.421930 -0.574112 0.423169 0.495318 -1.003476 0.062554 0.241768 -0.569115 0.886784 0.448505 0.742602 0.088637 0.312040 0.122898 -0.006895 0.209072 0.109474 0.101723 -0.085551 -0.804644 -0.432301 0.274519 -1.483152 -0.005509 -0.297717 0.679785 -0.030876 -0.094172 0.153122 0.056775 -0.832897 -0.905464 -0.034194 -0.049331 0.658565 0.638148 -0.143773 0.450017 -0.282336 0.849871 -0.143047 -0.011009 -0.101951 0.116304 0.094639 -1.697596 -1.667206 0.306514 0.354289 -0.344344 -0.733231 -0.535176 -0.122355 -0.260147 -0.199602 0.556572 1.181484 -0.263429 -0.836838 0.893627 0.058107 0.225868 1.369004 0.017361 1.204112 -0.467135 0.090947 -0.080914 -0.233143 -0.168100 -0.643020 -0.031284 -0.199066 0.040355 0.418658 -0.451220 -0.273627 -0.222604 -0.474334 -0.374626 -0.047438 -0.287845 -0.274041 0.624118 0.380176 0.679164 0.053639 1.040784 -0.592060 -1.311636 0.318328 -0.305528 0.083136 0.412923 -0.109917 0.087485 0.514596 -0.836670 -0.311072 0.091297 -0.072185 -0.446118 0.246106 0.887382 0.150151 0.224554 0.248547 0.520265 0.927318 -0.043397 0.441047 -0.774655 0.102098 0.596936 0.024410 -1.316918 0.242161 -0.512130 0.059338 0.489225 -0.200665 0.151785 0.020870 -0.350017 -0.310566 -0.482102 0.870854 0.192354 0.274037 0.309762 -0.694758 0.185126 0.085146 0.516876 0.853988 0.548826 0.502530 0.079089 0.309941 -0.447950 1.147801 0.050169 0.609949 0.020243 0.298226 0.639502 0.207512 0.099967 0.516972 0.548742 -0.318619 0.638199 0.116350 1.187774 -0.880839 0.303174 -0.523019 -0.152083 0.575020 1.596676 -0.805999 -0.075091 0.245134 0.391149 0.483622 -1.059214 -0.176893 -0.277785 -0.443273 0.531890 0.220245 -0.116551 -0.134911 0.734499 0.172280 -0.622010 0.955611 0.093532 -0.072145 -0.225380 -0.229215 -0.631820 0.458607 -0.842305 -0.038964 0.588832 0.559673 -0.515316 -0.646041 -0.192630 0.777333 -0.214247 0.465237 -0.475507 0.199169 0.986482 0.722256 0.375925 0.043436 -0.508526 -1.175766 0.240449 -0.115121 -0.371630 0.171696 0.184965 -0.695962 0.261016 0.440011 -0.911688 +PE-benchmarks/Iterative_QuickSort.cpp__main = 0.433168 0.056670 0.336077 -0.624665 -0.558980 0.198826 -0.371737 -0.343235 0.138607 -0.102390 0.260334 -0.552352 -0.392925 0.867823 -0.437086 -0.713327 0.090453 -0.176780 -0.034060 -0.090089 -0.088958 0.203677 -0.137092 0.045856 0.086572 -0.078344 -0.028525 0.254433 0.880841 -0.435664 -0.771684 -0.002289 -0.041311 0.983115 0.129669 -0.243859 0.386190 1.368241 0.430645 0.555811 -0.770327 -0.290431 0.361450 0.091597 -0.184484 -0.789747 -0.613671 0.399218 -0.997529 0.238807 0.509212 -0.191818 -0.265823 -0.145740 0.266296 0.840577 -1.472434 1.008491 0.163361 0.483971 0.075389 -0.291394 0.173720 -0.077304 0.020510 -0.495994 0.375457 0.509070 -0.843120 0.259285 -0.417579 -0.885624 1.226059 0.351014 -0.665209 0.143843 0.320652 -0.733267 0.447164 -0.852605 -0.752814 -0.012971 0.253329 -0.086409 1.096082 -0.090492 0.131234 -1.266427 0.212528 -1.262221 0.286827 -1.086951 0.643759 1.032271 -1.022653 0.206715 0.163055 0.106671 0.487170 0.390955 0.956354 0.329841 -0.001432 -0.166657 0.466225 0.081808 -0.038909 -0.170291 -0.089781 -0.699752 -0.533820 0.065381 -1.624224 0.073486 -0.591532 0.749937 -0.040585 0.345893 -0.184226 0.108366 -0.905618 -0.785258 -0.042457 -0.195584 0.747140 1.055090 -0.255594 0.292858 -0.458791 1.063808 -0.036129 0.018482 -0.410809 0.167779 -0.108109 -1.051189 -1.391861 -0.040285 0.531758 -0.396763 -1.193364 -0.769836 -0.372264 -0.232735 -0.205634 1.173125 1.399477 -0.163887 -0.652115 0.986409 -0.083082 0.638796 1.465520 0.034662 1.303880 -0.747702 0.369329 -0.196530 0.136145 -0.390426 -0.967480 -0.096693 -0.190865 0.101673 0.107415 -0.275602 0.723951 -0.089417 -0.276581 -0.204888 -0.134554 -0.307871 -0.841341 1.271052 -0.040979 0.856045 0.192888 1.389439 -0.528198 -1.115079 0.502867 -0.032266 0.306802 -0.161950 -0.183101 -0.125590 0.710858 -0.818217 -0.597731 0.172477 -0.009602 -0.241509 0.369610 1.295314 0.006769 -0.005450 0.243812 0.734265 1.001245 -0.169102 0.519100 -1.065601 0.204538 0.625873 -0.388872 -0.798551 0.405387 -0.450816 -0.068178 0.248948 -0.082664 0.074989 -0.597845 -0.770681 -0.228276 -0.064339 0.792660 0.148044 -0.878558 0.298101 -0.500790 -0.094628 0.447285 0.633932 1.070713 0.506383 0.478886 -0.363005 0.257516 -0.213256 0.307672 -0.048988 0.277313 0.501025 0.228897 0.583613 0.246886 -0.017466 0.277852 0.445628 -0.120148 0.669609 0.637857 1.261621 -0.228693 -0.003402 -0.240543 -0.608461 0.723590 1.676497 -0.886943 0.177919 0.455472 0.675727 0.124066 -1.410299 -0.281617 -0.337090 -0.492833 0.272180 -0.264210 -0.236398 -0.139485 1.073830 0.070957 -1.060834 0.635978 0.059576 0.038546 0.233920 -0.095504 -0.210507 0.469569 -0.973690 0.393252 0.332409 0.577179 -0.359481 -0.313495 -0.152010 0.567512 -0.326547 0.280006 -0.373358 0.395135 0.704780 1.000120 0.877148 0.089877 -0.296462 -0.662832 0.101404 -0.445457 -0.342514 -0.016899 0.519380 -0.643688 0.022500 -0.266593 -0.877633 +PE-benchmarks/Iterative_QuickSort.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/longest-bitonic-subsequence.cpp__main = 0.409381 0.185312 0.172582 -0.508447 -0.508229 0.219143 -0.427668 -0.339880 0.062937 -0.174641 0.353626 -0.484790 -0.359994 0.682083 -0.341136 -0.631388 -0.025376 -0.406384 -0.109212 -0.075075 -0.025636 0.099329 -0.100783 -0.119758 -0.022751 0.010925 -0.079387 0.187145 0.808217 -0.409810 -0.734154 0.053940 0.063881 0.769931 0.182756 -0.320935 0.387581 1.012167 0.176733 0.171616 -0.607876 -0.337731 0.401051 0.073858 -0.259611 -0.589640 -0.462021 0.351231 -0.906302 0.250006 0.456961 -0.186526 -0.199097 -0.105153 0.123275 0.759661 -1.311676 1.070108 0.127311 0.485423 0.108307 -0.254154 0.168483 -0.004252 0.313565 -0.416848 0.325597 0.397082 -0.655659 0.094645 -0.376089 -0.735320 1.220980 0.230658 -0.427264 0.034543 0.121740 -0.603124 0.386984 -0.791388 -0.594050 0.066089 0.237512 0.170145 0.871317 -0.026436 -0.047320 -0.991835 -0.035685 -1.038117 0.252904 -0.768640 0.470306 0.678357 -0.950657 0.013135 0.086454 -0.070271 0.499160 0.292751 0.762954 0.123055 0.095797 -0.175036 0.286353 0.105531 0.001402 -0.003628 -0.044908 -0.617583 -0.446291 0.147499 -1.412277 0.137625 -0.499462 0.470564 -0.016032 0.087204 -0.095764 0.045212 -0.607845 -0.725264 -0.135925 -0.103633 0.693650 0.864218 -0.224971 0.314171 -0.322822 0.811032 0.080771 0.006953 -0.286672 0.110918 0.001284 -1.192283 -1.248988 0.157121 0.520785 -0.406197 -0.918270 -0.610682 -0.109266 -0.343173 -0.202079 0.829162 1.068473 -0.134148 -0.599163 0.798291 0.089140 0.474644 1.294128 -0.063794 1.169675 -0.633877 0.355303 0.021838 0.026158 -0.378734 -0.965475 -0.149083 -0.132331 -0.007618 0.166401 -0.226378 0.326979 0.058064 -0.256512 -0.026296 -0.125427 -0.299448 -0.697920 0.932361 0.366976 0.580871 0.356144 1.090865 -0.497791 -0.966794 0.480699 0.150880 0.170596 -0.033057 -0.322649 0.026152 0.515757 -0.616577 -0.388347 0.082465 0.143585 -0.295299 0.343883 1.127825 0.067834 0.045709 0.183593 0.282604 0.866497 -0.184499 0.507171 -0.832844 0.141683 0.634043 -0.287370 -0.792770 0.230511 -0.456777 0.017899 0.446877 -0.132423 0.155126 -0.358361 -0.634860 -0.076708 -0.054140 0.747098 0.160496 -0.444340 0.247992 -0.471227 -0.093177 0.331148 0.598548 0.709933 0.463664 0.411608 -0.270901 0.236506 -0.141064 0.411816 -0.188731 0.171214 0.446826 0.266434 0.478408 0.134153 0.021992 0.314942 0.418132 -0.256325 0.569613 0.500526 0.991898 -0.225801 0.061141 -0.272635 -0.510257 0.614953 1.391236 -0.862330 0.000000 0.291666 0.503278 0.205594 -1.060212 -0.216005 -0.297829 -0.407995 0.256996 -0.164773 -0.077140 -0.179404 0.869518 0.068346 -0.790035 0.604744 0.078219 0.044982 0.136335 -0.210338 -0.247766 0.314174 -0.836825 0.279471 0.369272 0.536119 -0.252846 -0.265520 -0.114673 0.571285 -0.454004 0.212576 -0.211476 0.365226 0.675315 0.768252 0.757622 -0.040925 -0.348336 -0.620603 0.025404 -0.211811 -0.136303 -0.023695 0.447099 -0.689817 0.074978 -0.048834 -0.642963 +PE-benchmarks/cut-vertices.cpp__main = 1.083318 1.627614 1.155099 -0.217164 -2.202286 -0.475561 -2.948140 -0.092282 0.202971 -0.457843 -0.816860 -2.021354 -2.320544 1.447674 -3.318066 -2.760608 -1.909736 0.004652 -0.127714 -3.033949 -0.253385 0.407551 0.344999 0.427903 0.580578 -1.201382 -0.218117 0.295036 4.869825 -0.904230 -0.321770 0.562058 1.369868 1.874090 -0.575206 -1.117569 1.852378 3.065475 4.046261 -2.155129 -2.089459 -2.060395 0.757995 0.587569 0.167864 -1.919287 -0.765484 0.513548 -6.846707 5.008966 0.213059 0.535149 -2.436602 -0.319148 1.046315 1.552697 -5.732465 6.986923 -1.007089 1.370146 0.475657 -0.776598 -0.929256 -1.331326 4.283299 -0.806002 -0.213477 3.364462 -3.858556 2.336012 0.514775 0.737159 3.507323 -0.387706 -1.581160 1.052114 1.303461 0.905142 0.215399 -5.671162 -0.852043 -0.087587 2.985651 2.803018 2.196242 1.439160 -1.729377 -2.345378 -0.943317 -1.669895 0.878674 -2.535458 1.329541 1.698700 -4.012138 1.488477 -0.223997 -3.655115 1.954440 1.746895 2.331549 0.011436 1.033807 0.264007 -1.695678 -0.290630 1.699345 0.992067 1.175695 -1.108540 -3.554446 1.722330 -4.164674 -1.004957 -1.337677 3.905456 0.527197 0.358149 -0.329052 -2.154911 -3.047038 -4.714448 -0.572445 -0.258935 2.475170 0.569064 -0.513789 1.120258 -0.822672 2.954938 0.568814 -1.286068 -0.730257 -0.431749 1.507276 -6.264900 -6.748990 -0.679127 0.440237 0.248287 -2.612857 0.118302 -1.364629 -2.181563 0.227119 1.962626 2.793532 1.222585 -1.763112 2.750745 -2.383731 3.281903 5.460014 0.407586 2.171226 -0.786754 0.596844 0.366276 0.571163 -0.309940 -5.290069 -0.310315 -0.661842 -0.752961 2.735875 2.888148 -5.223238 -1.157873 -0.439333 -3.947363 -0.831853 -1.027990 -0.314695 2.397937 1.043869 2.681824 -0.272689 3.075174 -1.858199 -5.849234 0.741491 -1.464370 1.526915 2.776875 0.634749 -0.679559 0.782845 -3.552335 -1.763917 1.320275 0.824311 -0.697376 0.123705 5.481385 -0.192369 -0.406904 1.442871 2.551802 1.892006 -1.105899 2.525245 -3.177955 -0.507442 1.557572 0.373494 -4.280371 2.741243 0.474608 -0.053213 2.146332 -0.161937 -1.537039 1.051419 -1.428239 -1.555066 -1.304151 3.278792 0.019814 2.524956 0.931753 -2.730938 -0.845653 0.286305 0.482077 3.671937 -0.873315 0.454316 -0.084425 1.333598 -2.540342 6.812465 0.595709 2.452204 -0.323365 -0.089615 1.729867 0.361758 -1.095246 0.175305 2.443206 -3.506889 0.967618 1.105599 3.418893 -4.567440 1.013803 -2.173137 -0.830855 1.292108 4.562120 -3.779376 -0.326161 1.359093 2.586661 4.055145 -4.471373 -1.991617 -0.934691 -1.195327 0.951055 -1.100136 -2.355308 1.401759 1.301217 0.743786 -0.344124 3.285151 0.523552 -1.432225 -3.611550 -0.555466 -4.644663 2.678723 -4.051212 -1.725397 -0.054251 0.811713 -0.449105 -1.676507 -0.983778 2.793422 -2.283073 1.055371 1.133602 -0.428192 3.877807 1.611303 2.655556 -1.509353 0.376522 -6.101518 -0.161716 -0.544655 -2.205783 1.105035 -0.189175 -2.411886 1.573368 4.406431 -4.812433 +PE-benchmarks/cut-vertices.cpp__Graph::AP() = 3.557325 0.698340 4.288108 -3.812689 -3.221774 2.905306 -1.032491 -3.648436 1.316588 9.158892 3.392696 -2.808579 -3.012519 4.234827 -2.480990 -3.917822 2.955244 1.135930 1.721796 -3.426035 -0.383765 1.329140 -1.042892 -3.542601 1.804367 -3.154014 0.761083 3.397517 0.603556 3.029057 -3.641616 -0.799583 -0.051471 8.917630 0.917454 -0.238629 -0.057192 8.516720 -5.448755 6.330515 -8.532857 -9.298850 7.822271 1.862886 1.982074 -2.475399 -1.317093 2.673406 -3.616898 -3.513269 1.545658 -3.575489 3.650673 -3.527380 -0.616761 5.595728 -10.294982 0.785692 -0.024751 -4.578923 -5.573189 -0.429833 3.620426 3.188886 -3.319830 -4.673188 2.397940 4.279083 -2.766871 1.229748 -4.048272 -8.889553 4.412832 1.914697 -2.955999 0.819130 1.464131 -6.242334 4.154061 -2.198008 -5.580968 -2.305119 1.312146 -4.248169 3.804375 3.218523 8.454527 -10.974322 2.963060 -10.366579 7.084090 -3.893568 7.221749 6.337254 -4.598621 2.625386 4.260513 6.163709 3.616436 0.155588 8.238185 4.010581 3.063676 -0.793906 5.000326 5.369799 -5.231675 -4.632730 -4.734621 -5.451557 -0.137402 -2.941561 -8.633138 0.251686 -6.386625 1.604678 1.511221 -2.186425 -1.461534 8.085826 -11.890200 -3.621378 1.468921 -1.167622 5.308167 4.386335 0.184402 1.406305 1.741434 7.782375 -3.129420 -2.596298 -1.282421 4.055091 -3.780812 -4.161346 -5.350081 2.446925 3.621054 -7.250583 -8.443110 -10.239509 -1.990928 5.374857 -1.420768 7.207139 12.918927 -2.205740 -6.244363 4.294634 -3.054434 -2.096070 9.915212 1.982356 10.616036 -9.022400 4.175943 -3.367150 2.440719 1.859932 6.655203 -1.210046 -2.489215 4.339947 0.863241 -0.968154 5.749140 -2.228796 0.125033 -4.179868 1.405236 -2.102260 -1.682737 6.844327 -6.007576 5.991435 -2.476154 10.845182 -6.792861 -7.625921 3.133387 -7.481606 -3.460791 -2.870063 -0.891936 -0.637354 6.537064 -6.699550 -4.528065 -3.294880 -2.421050 0.350217 5.650156 -0.950553 0.886159 0.081793 -3.175940 6.858289 3.941164 0.668256 0.078276 -6.441918 0.275978 4.485069 -2.289141 -7.849754 -1.253195 -6.441993 0.175046 0.732319 -0.002628 5.801794 -4.615602 -3.426107 -0.046722 -1.558848 1.982543 -2.248428 -7.144575 3.257450 -0.881939 1.410171 2.383738 8.534816 7.289422 6.666295 1.144646 -1.308863 1.615161 -4.602097 -2.222512 2.358103 2.751188 2.821896 2.095787 6.165078 0.763048 2.746303 4.173083 2.139178 2.299523 6.919446 0.778951 7.755420 -3.682347 1.956008 1.000488 -4.001983 5.009891 9.558107 -2.586621 -1.542016 2.466982 0.716598 -2.881650 -4.303240 0.582209 -2.351692 -1.794073 2.098326 5.070530 0.026551 -4.935965 9.972494 3.220320 -12.615539 7.248517 -0.549127 1.538793 6.733295 -3.819068 1.435561 2.067930 -1.161967 5.320669 3.808080 5.368557 -7.857043 -0.830402 -0.318689 6.328997 3.525042 -0.458279 -10.573602 3.266690 2.300365 6.950519 4.378122 7.850446 -6.003250 -0.263398 -1.941279 -5.942407 -2.269576 -0.675737 3.929295 -2.406246 2.137239 -8.991505 -0.113058 +PE-benchmarks/cut-vertices.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/program-wish-womens-day.cpp__main = 3.443781 3.637321 4.322478 -6.019604 -0.837969 2.005232 3.419066 -3.131229 0.837148 14.867940 0.584157 0.186558 -6.654497 4.530855 -3.128435 -5.346038 4.332664 -2.793615 0.212297 -4.865216 -2.325438 2.287141 0.062321 -5.361060 4.249315 -4.743574 1.207595 4.575948 -2.092790 -0.080173 -1.572095 -1.323689 -0.177559 9.949054 -1.736425 2.715703 -1.695617 7.608568 -6.664874 8.571946 -13.436987 -10.380160 9.681783 1.147385 2.412561 -8.573009 2.919949 1.850866 -0.435937 -4.220393 -1.105375 -4.485867 2.081748 -6.025650 0.748567 8.137335 -9.813483 0.955078 -0.063799 -5.161025 -7.133976 -1.561131 6.416157 1.248897 -3.788889 -6.993865 1.232619 1.938014 -6.732555 3.843164 -6.522686 -7.373937 0.381620 3.704461 -3.280647 1.986038 -1.791904 -6.156073 2.213494 -6.503147 -2.344272 -4.709353 5.806058 -0.854403 1.262710 4.906085 7.909582 -11.953989 0.277300 -7.937826 6.554458 -3.868017 10.380885 6.344524 1.865307 4.256374 2.761765 1.531710 0.938518 -2.633713 8.299401 2.476433 6.976349 -1.936430 4.484263 5.875857 -8.063769 -8.162025 -3.158251 -4.442222 0.985231 -1.899330 -5.889340 -0.330779 -8.802392 -0.973651 4.425418 -2.820199 -3.346665 7.475344 -16.226794 -7.230752 2.522379 -1.908157 6.971116 4.094201 2.172142 0.932945 3.931830 6.044339 -1.085025 -0.840092 -3.191928 4.958570 -3.213723 -3.867917 -2.376761 -2.492070 1.716085 -8.461014 -9.066519 -10.367939 -4.080967 4.929597 -1.485685 8.308962 14.091449 -1.935794 -8.336180 2.982933 -5.300769 -0.372243 7.758188 2.342060 10.172391 -11.821457 6.413417 -1.823251 6.558183 6.164543 15.944656 -3.449509 -5.290928 3.992507 -0.600578 0.865046 -1.965600 -1.914372 2.682651 -3.883919 -0.002542 -2.127810 -0.898510 6.057485 -10.571448 11.447987 -6.502411 11.548550 -10.605415 -7.587152 3.311527 -12.339909 -3.645053 -5.269173 -1.952073 -0.778320 6.604371 -7.284210 -5.438103 -5.407307 -3.249617 2.395510 7.892494 -10.493640 0.004830 -4.249896 -4.922529 13.737547 3.214415 -1.805853 0.644979 -6.230858 2.415056 5.579807 1.884654 -9.983716 -0.914999 -5.099542 -2.073394 3.462160 -0.658745 5.210723 -2.272364 -2.153183 2.557708 -3.522192 -1.423737 -5.031515 -7.662368 2.464754 -2.709417 -0.847714 0.801969 10.469336 6.308577 4.086234 -1.870114 -3.509115 1.640183 -7.778095 -4.550877 4.472897 1.144450 0.965697 3.745637 5.150181 0.598407 2.995871 6.965437 2.268571 -0.761584 7.453723 -0.240063 7.151323 -6.743817 2.173660 2.267401 -5.986635 4.155117 8.346714 -2.094114 -4.216436 5.146592 0.722966 -2.662357 -3.528834 -2.169792 -4.067660 -3.555298 5.968766 6.266753 -2.777887 -4.327684 14.108258 2.961064 -13.155962 8.231300 -1.252553 1.055191 4.592598 -5.019160 0.589679 5.489455 -1.206951 1.352043 1.570947 6.750008 -7.665479 0.425214 -0.482365 6.948867 5.291608 -2.786872 -16.236266 -1.652236 2.708186 10.353077 5.278702 13.336102 -3.093842 2.341006 -2.618945 -2.836862 -1.865198 -1.766730 4.156097 -1.530445 0.544665 -11.884942 5.186332 +PE-benchmarks/naive-algorithm.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/naive-algorithm.cpp__search(char*, char*) = 1.563328 1.235617 1.920611 -2.126342 -0.856872 0.792166 1.293682 -1.847892 0.275124 5.907400 1.278036 -1.230106 -2.251430 2.534011 -1.034922 -2.140886 1.508034 -0.536673 0.116912 -1.659434 -0.352407 1.056520 -0.324172 -1.919628 1.372622 -1.168240 0.641169 1.603616 -0.318110 0.372821 -1.442130 -0.480058 0.548707 4.462434 -0.082198 0.361258 -0.964016 3.971981 -3.450796 3.875850 -5.514212 -4.847204 4.342744 0.658575 0.508683 -3.084517 0.292554 1.711954 -0.402333 -2.655450 0.255163 -1.425187 1.092673 -2.665231 -0.318444 3.664779 -5.139559 0.873112 0.424972 -2.375638 -3.257516 -0.555519 2.796790 1.135720 -1.873527 -2.574363 0.893933 0.644949 -2.246368 1.079445 -2.593707 -4.491013 1.636410 1.088235 -1.779668 0.834126 -0.549812 -3.016894 2.028387 -1.873910 -1.886675 -1.604620 1.647654 -1.028001 1.052302 2.100366 3.443989 -6.092169 0.557944 -4.596905 3.640237 -2.019326 4.160298 3.202611 -1.122984 1.752335 1.362794 1.798031 1.245575 -0.827189 3.828590 1.364305 2.720112 -0.574020 2.040639 3.177489 -3.540270 -3.236046 -2.292101 -2.782901 0.861159 -0.764330 -3.446803 0.121092 -3.646547 -0.128598 1.670456 -1.634807 -0.929821 3.626792 -6.732840 -2.516889 1.271802 -0.747937 3.333957 2.883625 0.460228 0.946436 0.598038 3.453366 -0.887914 -0.351587 -1.024160 2.144898 -1.871331 -2.242420 -1.628487 0.349679 1.321626 -3.662810 -4.038578 -5.958077 -1.175954 2.197856 -1.081613 3.248156 6.411819 -1.329020 -3.758394 2.175819 -1.246507 -0.391161 3.831213 0.715915 5.801743 -5.155190 2.628415 -0.908947 1.952148 2.152287 5.806902 -0.967121 -2.084036 1.959598 -0.240452 -1.144945 1.266200 -0.771179 0.272135 -1.629569 0.669863 -1.229936 -0.982049 3.211911 -3.525475 3.698904 -2.444877 5.319775 -4.278751 -3.285003 1.552644 -5.156334 -1.957430 -2.356934 -1.223697 -0.299682 3.722988 -3.633984 -2.047462 -1.907189 -1.307512 0.178289 3.066530 -3.644058 0.058682 -0.960314 -1.636746 4.510570 1.659278 -0.514547 -0.056287 -3.349310 0.169864 2.563047 0.157835 -4.764894 -0.512237 -3.443140 -0.600437 1.060182 -0.530470 2.594515 -1.847324 -1.476794 1.054095 -1.514740 0.321847 -1.963403 -3.821779 1.378658 -1.137861 0.522549 0.860837 4.873701 3.159896 2.933617 0.251940 -0.956438 1.015183 -2.936809 -2.283444 1.496419 0.699059 1.203089 1.841205 2.374174 0.737041 1.124021 2.843829 0.363971 0.023660 3.729211 0.319991 3.953724 -2.045680 0.898386 0.910292 -2.256601 2.190588 4.521331 -1.034103 -1.712139 1.942712 -0.073497 -1.584545 -1.666063 -0.456395 -1.624158 -1.393791 2.263933 2.692065 -0.936013 -2.095030 6.117226 0.851038 -6.561509 3.798055 -0.225098 1.042681 2.883912 -2.037678 0.871565 2.096292 -0.568234 1.598755 1.638452 3.564796 -3.930314 -0.198583 -0.460111 3.269503 2.518819 -0.763365 -7.341210 0.570028 1.379991 4.404768 1.984630 5.036399 -2.388367 0.830629 -1.044704 -1.627266 -0.680652 -0.752376 2.606404 -0.392241 0.044078 -5.491130 1.393563 +PE-benchmarks/kmp-algorithm.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/kmp-algorithm.cpp__KMPSearch(char*, char*) = 2.900291 1.612815 3.098768 -2.760313 -1.441451 1.246026 1.787212 -3.445868 0.599070 9.495744 2.426203 -2.498696 -2.067069 4.301326 -1.972463 -2.506287 2.442869 0.957572 0.158392 -2.263009 -0.742084 1.444716 -0.793460 -3.273698 2.153911 -1.834341 1.521802 2.496838 -1.076517 1.443265 -2.554612 -0.784900 1.070356 7.291743 0.148717 0.287751 -1.380467 6.103837 -5.925204 6.460050 -8.198732 -6.995939 6.998303 1.191945 1.392778 -4.134753 -0.459551 2.813060 0.395369 -4.927271 0.205346 -2.533854 2.200847 -4.341909 -0.652425 5.793459 -7.385276 0.324041 1.057030 -4.217664 -5.760049 -0.689500 4.476106 2.143801 -4.368206 -4.475444 1.581871 1.965346 -2.721424 1.627448 -4.569286 -8.269941 3.174246 1.017084 -3.164930 1.128544 -0.990852 -5.348183 3.396746 -1.511999 -3.061199 -2.486440 2.515924 -2.142302 1.406164 3.292305 6.374590 -9.899616 1.393560 -7.809213 5.935321 -3.345911 6.882019 5.216232 -2.511466 2.639726 2.353927 4.590684 2.162819 0.010770 6.192294 2.651726 3.542686 -1.548195 3.567355 5.318502 -5.596129 -5.713236 -3.922828 -4.509883 1.627237 -1.021729 -6.235101 0.363144 -6.153366 0.468644 1.794884 -2.329041 -0.964463 7.376572 -10.676649 -3.103786 2.368885 -1.175728 5.096723 4.823285 0.713012 1.606335 0.658397 5.311810 -1.385042 -1.521698 -1.541509 3.572924 -4.195246 -3.552747 -2.512842 0.890344 2.437900 -6.177315 -6.631295 -9.794607 -1.871607 4.397234 -1.925032 4.855911 10.211946 -2.249723 -5.579019 2.979623 -1.409060 -1.574376 6.448832 1.322074 10.202616 -8.930118 4.663796 -1.658361 3.285056 3.443073 8.598957 -1.850897 -3.669842 3.398026 -0.386314 -3.253575 5.344371 -1.159533 0.666834 -1.738836 1.522753 -0.963858 -1.376564 5.723903 -5.921847 5.725946 -4.415602 9.124262 -6.919700 -4.809379 2.362455 -7.406637 -3.159678 -3.610440 -1.195734 -0.565446 6.894126 -5.457141 -3.383554 -2.177305 -2.762714 0.819010 5.536687 -4.736092 -0.070737 -1.601711 -3.412208 6.663942 2.399584 -0.770216 -0.122737 -5.239181 0.223706 4.073578 -0.504609 -7.621436 -1.323557 -6.044110 -0.915650 -0.094976 -0.690024 4.514539 -3.895734 -2.366503 1.373124 -2.264151 0.394060 -3.330227 -5.755891 2.524440 -2.249234 1.296658 1.223337 8.080828 5.581958 5.213806 0.550195 -1.699464 1.449236 -5.066802 -4.423466 3.402870 1.331955 2.306553 2.809816 4.427339 0.802743 1.982536 3.654468 -0.689219 1.545065 6.246896 0.919971 6.434473 -3.556594 1.825221 1.540040 -3.657947 4.060308 7.405702 -1.570088 -3.040990 2.491464 -0.262067 -3.462134 -2.293122 -0.668052 -1.887305 -2.747727 2.878461 4.441458 -0.954845 -3.771870 10.114397 1.560517 -10.794005 5.818356 -0.542896 1.696185 5.535421 -3.365124 2.425603 2.939016 0.776814 2.724029 2.577011 5.872272 -6.755929 -0.921339 -0.660983 5.171658 4.455785 -1.514662 -12.402400 2.106085 2.242284 7.104894 2.509714 7.731196 -4.420055 2.318158 -1.694548 -2.816560 -0.848486 -1.321055 4.297654 -0.879265 0.259275 -9.596154 2.267277 +PE-benchmarks/matrix-chain-multiplication.cpp__main = 0.441133 0.329153 0.227168 -0.527508 -0.828267 0.333303 -0.846474 -0.530397 0.023050 -0.154781 0.412113 -0.586911 -0.498953 0.723445 -0.573830 -0.855875 -0.262200 -0.305574 -0.067158 -0.373557 -0.028784 0.115874 -0.132871 -0.049053 -0.126772 -0.120197 -0.097418 0.141152 1.158360 -0.395696 -0.751135 0.033956 0.097442 0.880643 0.302724 -0.360575 0.475012 1.170988 0.476466 -0.088550 -0.833941 -0.561614 0.372129 0.135441 -0.189669 -0.656467 -0.498242 0.382063 -1.369724 0.609938 0.518386 -0.257917 -0.215453 0.024180 0.167791 0.719589 -1.583320 1.551347 0.065889 0.388372 0.153865 -0.234437 0.136198 0.073794 0.630668 -0.454064 0.316218 0.785578 -0.755126 0.125175 -0.305554 -0.778312 1.470465 0.170398 -0.568244 -0.023273 0.185159 -0.476911 0.413260 -1.083378 -0.784975 0.079671 0.375374 0.314923 0.914929 0.146525 -0.043360 -1.154754 -0.045509 -1.253221 0.344124 -0.718124 0.552144 0.676417 -1.218690 -0.035907 0.224382 -0.310482 0.785403 0.346641 0.879281 0.040408 0.092199 -0.049648 0.163989 0.098956 0.141820 0.152803 -0.007138 -0.802338 -0.604958 0.237422 -1.663522 0.110402 -0.545227 0.737257 -0.108843 0.060815 -0.051794 -0.031473 -0.804620 -1.069971 -0.216430 -0.096493 0.896159 0.847401 -0.245528 0.519233 -0.288720 0.975042 -0.064632 -0.107471 -0.286062 0.127776 0.173301 -1.573999 -1.865837 0.332116 0.649116 -0.449025 -1.010242 -0.554847 -0.172573 -0.434126 -0.203950 0.958220 1.288056 -0.240529 -0.793383 0.973964 -0.110580 0.477784 1.709692 -0.027260 1.343258 -0.645466 0.308430 -0.041355 -0.106020 -0.423164 -1.249387 -0.125660 -0.100013 0.028556 0.383049 0.012080 -0.075694 -0.056608 -0.469248 -0.300195 -0.094470 -0.316926 -0.598343 0.888093 0.471603 0.622231 0.437578 1.259649 -0.647947 -1.343165 0.475302 0.015381 0.152734 0.333627 -0.277521 0.012777 0.592843 -0.816577 -0.424197 0.130150 0.120939 -0.417152 0.324758 1.570585 0.135795 0.203314 0.245749 0.461054 1.141833 -0.076028 0.542635 -0.916178 0.143539 0.767806 -0.249908 -1.029114 0.227741 -0.557825 0.060341 0.609943 -0.164682 0.218809 -0.254864 -0.614581 -0.304341 -0.167939 1.083764 0.310647 -0.173700 0.372219 -0.646700 -0.052234 0.309260 0.632347 0.835548 0.634294 0.605396 -0.190002 0.332752 -0.283346 1.041046 -0.186281 0.478202 0.413953 0.312928 0.621361 0.185835 0.080884 0.414618 0.574248 -0.323033 0.680309 0.331368 1.282772 -0.658000 0.263210 -0.529751 -0.431440 0.700301 1.770074 -1.111124 0.027478 0.294577 0.565473 0.456059 -1.365930 -0.179068 -0.340649 -0.393554 0.270531 0.020817 -0.051953 -0.272842 0.927817 0.153315 -0.785650 0.930489 0.108624 -0.034383 -0.005213 -0.269584 -0.568710 0.344996 -1.071951 0.204934 0.591463 0.616218 -0.398521 -0.364160 -0.168358 0.818183 -0.609882 0.360420 -0.129849 0.388033 0.971444 0.833156 0.828244 -0.139686 -0.516022 -1.089677 0.153660 -0.286650 -0.236026 0.115782 0.422564 -0.831668 0.255925 0.341230 -0.976763 +PE-benchmarks/snake-ladder.cpp__main = -0.327528 -0.129253 1.394375 -2.130320 -1.854834 0.355175 -0.009311 -0.933064 0.463624 -0.118103 1.602724 -1.868933 -2.489448 2.595911 -0.178521 -2.899355 0.447319 0.787121 -0.351816 -0.624812 -0.007011 0.691572 -0.253089 -0.516954 0.750965 -0.867255 -0.164409 2.575195 3.146003 -0.213005 -1.421722 -0.115330 0.128465 3.389082 -0.079382 0.469912 0.836256 4.577812 -1.740226 3.002178 -2.405075 -2.070604 3.154667 0.396815 -1.412181 -2.257171 -2.348099 1.307603 -4.411255 -0.635647 1.805101 -0.254464 0.688869 -1.201666 1.086572 3.429081 -4.755804 1.835250 0.452897 -0.453044 -0.600832 -0.613339 -0.428934 0.238330 -1.087458 -1.835251 0.660316 0.496762 -1.779671 0.090445 -0.980226 -3.179330 5.076702 0.746520 -1.624350 1.131669 1.337538 -2.502705 1.901583 -0.431984 -2.427992 -0.588181 0.873510 -0.554374 3.163570 -0.000369 1.421862 -4.558818 -0.983626 -4.089952 2.352432 -3.223497 2.286340 3.185633 -3.593126 1.529900 1.015192 0.322536 0.708140 0.367067 3.201405 0.784413 1.177803 0.053531 2.126624 0.935036 -1.681598 -2.104370 -2.153697 -2.692819 -0.280955 -1.378568 -5.675092 0.112279 -1.929360 1.063791 0.752500 -0.181461 -0.403586 2.025210 -2.236737 0.639456 0.825414 -0.654315 1.890481 3.598613 -0.550957 0.335850 -0.380421 3.426569 -0.843042 0.654509 -1.200602 1.276852 0.249648 -2.830753 -2.781805 0.196674 1.214537 -1.816057 -3.431752 -2.842492 -0.853745 0.901144 -0.554122 2.010650 5.503237 -1.069358 -2.643519 2.999451 0.237276 1.955391 3.260310 0.612366 4.588751 -2.735068 0.905141 -1.848250 -0.117956 0.335408 1.217624 0.113784 -1.517032 1.207131 0.298085 -2.262179 3.563364 -0.942527 -0.694945 -0.875113 0.225022 -1.654533 -2.573114 4.411911 -0.464385 3.291669 -0.407982 4.574198 -2.116431 -3.798916 1.644671 -0.447373 -0.248531 -2.330265 -1.324014 0.587097 1.804201 -2.514499 -1.935715 -1.727104 -0.045438 -0.565135 1.521762 1.450006 0.037302 -0.249041 0.388005 1.508303 2.991343 -0.045369 0.448234 -3.807187 0.701897 1.862983 -1.072395 -3.503874 1.058019 -1.532053 -0.267502 0.758165 -0.290006 1.236696 -1.662900 -1.856405 -0.472067 -0.871451 1.240935 -0.203394 -4.802503 0.987467 -0.181849 0.069928 1.973545 2.566921 4.356144 2.046081 1.344946 0.228905 0.747685 -0.533877 -0.897129 0.506083 0.373652 1.956449 1.205828 2.798693 1.075447 0.381580 1.996071 1.690795 0.391962 2.644158 2.257583 4.377380 0.836744 -0.644204 0.202768 -1.309121 2.353253 4.959229 -1.327181 0.332324 1.869721 2.336967 -0.278469 -4.200404 -0.665778 -1.310071 -1.383596 3.118085 -0.403941 -0.921034 -0.750612 4.009443 0.292260 -4.574622 2.004114 0.141259 0.881483 1.050284 -0.774231 -0.316578 1.792225 -2.670443 2.180393 1.118463 2.075831 -2.341188 -0.560912 -0.304328 1.687823 1.373959 0.759176 -3.628051 0.437616 1.206455 3.640595 2.261074 2.096292 -1.397060 -1.120701 -0.184337 -1.865784 -0.732182 -0.914352 0.925595 -2.122190 0.317318 -3.098462 -2.276687 +PE-benchmarks/snake-ladder.cpp__std::queue > >::push(queueEntry const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/snake-ladder.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/snake-ladder.cpp__getMinDiceThrows(int*, int) = 3.042747 0.374498 4.189428 -4.311578 -1.038901 1.564011 -0.045502 -2.721179 1.613199 8.703807 1.825082 -1.806744 -4.228782 5.603149 -1.998713 -4.461206 3.443983 -0.205401 2.179915 -1.987671 0.326376 1.961682 0.097734 -2.376370 2.485805 -2.472379 0.172001 3.386818 1.883875 0.451573 -3.693363 -0.566038 -0.112316 7.911811 -0.961848 0.020312 -0.134305 8.797821 -5.536751 7.735641 -7.913643 -7.655154 6.959420 1.261655 -0.302020 -4.059107 -1.193152 2.200992 -3.479635 -4.180129 1.915543 -2.241218 1.868538 -3.919760 0.310271 6.397152 -10.856033 1.305780 0.064350 -1.794443 -3.207030 -1.023695 3.621800 1.618888 -2.934219 -4.176807 2.539579 1.412718 -5.416372 1.257076 -3.695553 -7.013051 4.790456 2.464693 -3.467728 2.160400 2.364108 -6.273570 4.094270 -4.044128 -4.557655 -2.476633 1.218290 -3.086919 4.555640 2.385571 6.090997 -10.620708 2.416204 -8.070009 6.787858 -5.236060 6.988250 6.991408 -4.344801 3.222771 3.592135 5.550599 2.398965 -1.593372 8.521137 4.102994 2.494827 -0.775305 4.552986 4.333948 -5.993380 -4.607496 -4.737848 -4.837617 0.284799 -3.225915 -8.670999 -0.388704 -5.739179 0.763800 3.414646 -2.426587 -2.324832 6.255964 -12.364307 -3.104698 1.525454 -1.349475 4.528239 6.002419 0.124013 0.540744 0.890822 7.889453 -2.803185 -1.437061 -1.152346 3.126367 -2.999160 -2.964256 -3.438819 -0.371964 1.995129 -6.659985 -7.777795 -10.234329 -2.073935 3.446965 -0.659955 7.961863 12.570064 -1.509034 -5.840840 4.890122 -2.797120 0.476496 8.765001 1.493338 9.924575 -8.248043 3.036644 -3.311380 2.537547 2.872309 7.182132 -0.364440 -1.788233 3.221972 0.576748 -0.927454 3.352498 -2.158422 0.108072 -4.156964 0.754953 -3.108083 -2.812792 7.138676 -6.897996 6.375256 -3.177400 10.356503 -5.294948 -7.031845 2.997146 -8.554416 -2.509313 -5.063767 -2.482920 -1.212206 5.755547 -7.052961 -4.071568 -3.986169 -1.664277 0.532465 4.814919 -3.470387 1.173489 -1.280127 -2.030970 8.963070 4.407449 -0.204548 0.666134 -7.306321 0.271198 4.689361 -2.097054 -8.184631 1.041399 -5.747709 -0.167643 1.954824 -1.561537 3.987610 -5.396808 -4.564144 -0.125269 -1.919517 1.064537 -3.037066 -9.657468 2.115849 -0.970295 0.814344 3.933517 7.425344 6.996217 5.049117 1.210396 -1.528453 2.040990 -3.688160 -3.830211 2.433158 0.961102 3.042515 2.471301 5.463577 1.367643 1.945141 4.441046 2.573653 0.788834 6.651550 1.546478 7.636897 -0.989994 0.389625 0.861404 -4.458344 4.515213 9.223256 -2.719452 -0.512463 4.012286 1.508326 -1.779224 -5.112978 -0.017631 -3.319629 -2.173014 3.991568 3.051513 -0.998524 -3.345844 9.405223 1.725094 -12.083822 5.967922 -0.527007 1.167711 5.503457 -2.618342 1.033243 3.014788 -3.585414 4.018201 2.294476 5.883050 -6.508823 1.175730 -0.665363 5.449397 3.840020 0.044159 -11.689680 1.792875 2.140840 7.546012 4.963879 8.011015 -3.836284 -0.238783 -1.388850 -4.148437 -2.009846 -1.906222 4.483582 -2.261951 0.419320 -8.595118 0.177634 +PE-benchmarks/floyd-warshall.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/floyd-warshall.cpp__floydWarshall(int (*) [4]) = 3.528608 -0.205234 3.597851 -1.876507 0.932462 1.645840 2.208669 -3.284158 0.513763 10.922788 1.612783 -1.222899 -2.943991 3.487757 -1.044147 -3.285170 3.674450 2.949392 0.855792 -2.036049 -1.410919 0.773204 -0.930988 -4.361529 3.374523 -2.576919 2.234138 3.824837 -2.399290 3.657092 -2.493969 -1.004742 -0.017691 8.438522 -0.174962 1.665257 -1.066519 7.043874 -8.330842 8.410602 -7.552963 -8.958788 8.581228 1.179290 1.440416 -0.932947 0.611364 2.584861 -2.058596 -6.107608 0.431694 -3.003794 2.912603 -5.338092 -0.184907 6.486068 -8.875992 -1.604061 0.525547 -4.652484 -7.652141 -1.460289 4.481251 1.158330 -5.395287 -5.150795 2.011062 1.660485 -2.778601 2.093525 -5.853729 -8.915813 2.648104 1.499191 -2.755811 1.720254 -0.071982 -5.161919 3.326837 0.459363 -3.339100 -3.733707 2.091224 -3.895732 2.570097 4.537260 7.653043 -10.889540 2.677678 -8.321724 7.124516 -3.882605 8.223226 6.574872 -3.224617 3.979457 3.376659 7.812213 -0.304849 -1.843931 7.045551 2.916717 2.199673 -1.709489 4.559851 5.118608 -7.808749 -7.421791 -5.397389 -3.694787 2.023521 -3.562232 -6.176797 -0.347588 -7.487066 1.348627 2.564550 -2.269833 -2.276376 7.448654 -14.016203 -0.934307 2.252999 -1.448398 6.251470 3.911273 0.758253 0.978552 1.707723 6.125880 -2.050110 -2.966125 -2.620214 4.162796 -4.176467 -0.927289 -1.195671 0.271497 2.898283 -7.054043 -7.918918 -11.009003 -2.500975 6.946846 -1.243542 6.631859 11.360850 -1.822275 -4.990770 2.723232 -4.598315 -0.185858 7.101509 2.418141 9.366079 -9.996049 5.453684 -2.252316 4.536394 4.298221 7.632885 -2.066389 -4.260004 4.801739 0.050206 0.893758 6.807555 -1.812179 1.446262 -4.588206 1.773656 -1.272928 -0.290189 7.496366 -9.494134 5.939515 -4.963848 9.884005 -7.462859 -4.469976 2.161611 -10.897650 -4.165696 -5.982962 -2.195391 -2.033537 6.712673 -7.233279 -4.572650 -3.956601 -1.995646 2.155594 6.719430 -4.853877 -0.581098 -2.497236 -3.811706 8.327321 1.889363 -0.609004 -0.999330 -5.970459 -0.087237 4.130142 -2.153603 -7.338026 -0.642335 -5.473039 -1.039549 0.086043 0.039960 4.927490 -5.592600 -2.683727 1.401625 -1.155217 -0.502190 -3.879657 -7.986136 2.361780 -0.442237 -0.089047 3.584486 8.711268 6.577307 4.888037 -0.079461 -1.873639 1.892249 -5.117214 -6.831734 4.294527 0.657349 4.817339 2.509127 3.946506 0.657335 1.750977 2.305752 0.017654 2.617724 6.748829 3.157329 6.530551 -1.749071 1.464805 2.812441 -4.265180 3.880756 5.540959 -3.290607 -1.445858 3.166934 -0.152510 -3.767150 -1.431811 -0.777551 -2.621214 -3.048459 2.493865 3.811652 -1.614077 -4.277098 11.479896 1.713262 -12.474743 5.482763 -0.233022 1.973712 6.849047 -3.683680 3.049028 2.856296 0.988594 4.408192 1.577555 6.218335 -7.374047 2.503322 -0.519727 5.142207 6.347741 -2.539111 -12.285799 2.074728 0.715276 7.746149 3.985364 8.133159 -3.747913 3.951101 -3.733429 -5.009231 -0.143184 -2.021773 4.985679 0.834982 0.489739 -12.581897 2.205268 +PE-benchmarks/floyd-warshall.cpp__printSolution(int (*) [4]) = 1.270184 0.705388 1.624807 -1.215282 -0.872279 0.802964 0.182698 -1.457411 0.190241 4.393085 0.639589 -0.690889 -2.275963 1.692315 -0.978102 -2.066331 0.653063 -0.109039 0.326294 -1.484621 -0.477450 0.721494 -0.272796 -1.051154 1.028068 -1.119550 0.356990 1.357854 0.201536 0.490091 -0.956153 -0.376072 0.007967 3.349854 -0.026980 0.430861 -0.121544 3.397953 -2.347680 2.694244 -3.879514 -4.111885 2.943507 0.511153 0.558094 -1.255931 0.568662 1.260546 -1.978733 -1.256635 0.615601 -0.980630 0.633717 -1.565875 0.321354 2.417651 -4.597893 1.356446 -0.051325 -1.635346 -2.277703 -0.494320 1.447158 0.635898 -0.765132 -2.017789 0.627422 1.129975 -1.931682 0.922112 -1.632930 -2.973252 1.577399 0.680979 -1.480131 0.680645 0.359021 -1.545715 1.525951 -1.987212 -1.825788 -1.190814 1.192648 -0.960197 1.353874 1.983050 2.355618 -4.531693 0.804557 -3.486662 2.846239 -1.567273 3.000215 2.577338 -1.293606 1.429715 1.430417 1.389648 0.939381 -0.817331 3.010855 0.857101 1.533719 0.119520 1.162392 1.880220 -2.680457 -2.113281 -1.977277 -2.069402 0.247761 -0.843079 -2.642792 -0.200963 -2.386028 1.168021 1.398522 -0.979585 -0.838247 2.218335 -5.879773 -1.659364 0.607474 -0.497989 2.811366 1.701028 0.116994 0.811481 0.637387 2.977256 -1.133928 -0.631837 -0.849174 1.486999 -0.763639 -1.369147 -2.136103 0.338490 1.152545 -2.503623 -3.083566 -4.044081 -1.010955 1.870881 -0.547405 3.195368 5.094276 -1.002962 -2.596998 1.969667 -2.223739 0.215062 3.366065 0.762330 3.725003 -3.400367 1.487317 -1.025908 1.149527 1.370310 3.178188 -0.329418 -1.453177 1.581544 0.656020 0.806336 0.201870 -0.742717 -0.237282 -2.511118 0.459340 -0.983333 -0.186378 2.519009 -3.142030 2.633824 -1.424571 4.122155 -2.996569 -2.854906 1.017871 -4.318185 -1.180937 -1.559944 -1.117990 -0.375688 2.277670 -3.335144 -1.631464 -1.637615 -0.769542 0.005777 2.101216 -1.434066 0.165142 -0.457316 -0.797242 4.172860 1.724900 0.002522 -0.194183 -2.771545 0.204225 1.580759 -0.436116 -3.511369 0.017036 -2.116759 -0.302792 1.432820 -0.295091 1.760507 -1.401935 -1.082276 0.143254 -0.973210 0.655753 -0.967833 -2.523873 0.938565 -0.503592 0.232512 1.303952 3.128281 2.671448 2.176044 0.626985 -0.338005 0.796261 -1.958445 -0.610325 1.222660 0.944318 1.261706 1.226161 1.901209 0.657009 0.702444 1.735183 0.953933 -0.026971 2.849064 0.339008 3.310262 -2.003943 0.775578 0.280801 -1.259485 1.542285 3.162401 -2.202963 -0.446011 1.509358 0.343962 -0.502855 -1.168945 -0.242278 -1.573272 -0.740220 1.372095 1.791036 -0.793774 -1.445359 4.248380 0.659522 -4.619189 2.885493 -0.047374 0.626202 1.792414 -1.260143 -0.027161 1.366556 -1.208814 1.394688 1.322289 2.430353 -2.910753 0.386677 -0.317307 2.526780 1.634768 -0.126581 -4.689125 -0.013282 1.117653 3.152761 1.780617 3.103107 -1.705673 -0.365596 -0.658462 -1.875739 -0.598605 -0.307939 1.767228 -0.294166 0.669067 -3.373891 -0.110022 +PE-benchmarks/optimal-binary-search-tree.cpp__main = 0.602125 0.284056 0.319184 -0.668819 -1.020538 0.492420 -1.061540 -0.543815 0.134430 -0.234963 0.481420 -0.613084 -0.462810 0.936301 -0.614904 -0.992515 -0.248841 -0.519596 -0.001913 -0.298292 -0.037197 0.169988 -0.207552 0.134290 -0.189007 -0.101631 -0.160992 0.127551 1.344618 -0.496269 -1.099400 0.047184 -0.111237 1.042022 0.354504 -0.563664 0.742134 1.584167 0.530373 -0.041783 -0.750659 -0.591503 0.215736 0.176488 -0.291382 -0.500038 -0.618998 0.428791 -1.544702 0.719353 0.906529 -0.285259 -0.291839 0.226522 0.385505 0.745915 -1.928597 1.700531 0.041605 0.771111 0.332934 -0.374465 0.155378 0.113752 0.599052 -0.471407 0.592116 0.946760 -0.867034 0.068020 -0.331577 -1.056568 1.687516 0.361780 -0.717076 -0.050294 0.499586 -0.773970 0.586396 -1.240662 -1.115433 0.222607 0.239293 0.034440 1.378948 -0.018656 -0.037518 -1.368589 0.221064 -1.555377 0.307175 -1.009884 0.601840 0.995270 -1.503064 -0.149361 0.335338 0.077351 0.985534 0.280955 1.144044 0.189679 -0.055305 -0.044102 0.286139 0.078014 0.119417 0.290488 -0.107661 -0.989633 -0.792181 0.167792 -1.990463 0.139793 -0.509533 0.810883 -0.135306 0.191836 -0.203298 -0.009887 -1.002475 -1.282592 -0.343647 -0.119332 1.023662 1.112766 -0.445339 0.629528 -0.406622 1.320205 -0.164916 -0.090841 -0.416680 0.056223 0.077910 -1.483024 -2.298047 0.391226 0.875835 -0.520163 -1.290899 -0.716610 -0.199537 -0.552968 -0.196917 1.491090 1.634741 -0.295594 -0.820317 1.283269 -0.174480 0.637738 2.128064 -0.097683 1.483348 -0.692277 0.320777 -0.177712 -0.132332 -0.815818 -1.783689 0.038233 0.123210 -0.003287 0.469586 0.292553 0.215699 -0.060889 -0.664503 -0.474623 -0.078442 -0.413690 -0.840231 1.265742 0.477736 0.591399 0.795990 1.541086 -0.628657 -1.509288 0.641709 0.083804 0.353624 0.144273 -0.427114 -0.017055 0.717169 -0.905562 -0.498636 0.143416 0.173392 -0.531975 0.164085 2.151097 0.244929 0.283652 0.489618 0.585214 1.615666 0.091466 0.655262 -1.200001 0.197679 0.873788 -0.612198 -0.915942 0.372453 -0.646245 0.117945 0.683376 -0.205044 0.153624 -0.565433 -0.948653 -0.499394 -0.031574 1.360037 0.542373 -0.691921 0.425489 -0.707960 -0.039702 0.549213 0.576270 1.059059 0.820253 0.982119 -0.371515 0.426151 -0.109738 1.133321 -0.295954 0.546603 0.659811 0.320422 0.806102 0.258582 0.027607 0.344116 0.787197 -0.317432 0.754884 0.499325 1.642084 -0.486779 0.251223 -0.728518 -0.562010 0.827860 2.216235 -1.372502 0.330617 0.375722 0.843079 0.474668 -1.695605 -0.140704 -0.509218 -0.302572 -0.001672 -0.201041 -0.090573 -0.290664 1.035486 0.142289 -0.968213 0.865179 0.082757 -0.016538 0.199629 -0.193303 -0.615016 0.274275 -1.548108 0.614341 0.704843 0.659767 -0.311726 -0.268853 -0.197459 0.880020 -0.918247 0.504569 0.064015 0.672107 1.077352 0.923727 1.187246 -0.231491 -0.598286 -1.306075 0.252672 -0.594341 -0.342362 0.212083 0.665478 -1.046818 0.405753 0.310556 -1.399074 +PE-benchmarks/optimal-binary-search-tree.cpp__sum(int*, int, int) = 0.582372 0.392772 0.672235 -1.431183 -0.516555 0.064105 1.113431 -0.625737 0.100543 1.843132 0.878500 -0.782796 -1.155553 1.746215 -0.159614 -1.064911 0.793137 -0.592317 -0.282465 -0.035337 -0.005950 0.750799 -0.151707 -0.798895 0.745294 -0.102567 -0.051364 1.122457 0.303419 -0.316244 -1.012499 -0.154532 0.210897 2.021296 -0.237180 0.003482 -0.262239 2.179901 -2.438138 2.110486 -2.261302 -1.679828 2.179528 0.195186 -0.282154 -2.183727 -0.813513 0.901829 -0.179714 -1.592795 0.535563 -0.343755 0.343710 -1.275528 0.232333 2.181454 -2.654304 0.332561 0.562518 -0.430064 -0.996826 -0.300208 0.958891 0.165748 -1.221872 -1.381929 0.423102 -0.398313 -0.957568 0.217308 -1.213118 -2.259258 1.360624 0.605420 -0.763573 0.602728 -0.119271 -2.204335 1.256925 -0.800268 -0.927168 -0.497867 0.529236 -0.375365 1.015651 0.306642 1.198815 -2.827704 -0.092494 -2.188991 1.357109 -1.632655 1.606022 1.796184 -0.902479 0.796664 0.404460 0.848087 0.681072 -0.108325 1.887267 0.936779 1.384308 -0.411311 1.263139 1.388376 -1.696387 -1.560152 -1.331073 -1.487449 0.411774 -0.623873 -2.560954 0.285277 -1.336188 -0.631634 0.828201 -0.815302 -0.224382 1.938611 -2.363674 -0.227159 0.745140 -0.356342 0.992965 2.170623 -0.007726 -0.060072 -0.322191 1.637274 -0.137897 0.590876 -0.478126 0.941280 -1.097501 -1.568546 -0.320127 -0.054867 0.431281 -1.682829 -1.888545 -2.862757 -0.155729 0.620685 -0.643295 1.099953 3.075540 -0.704887 -1.806865 1.354576 0.497886 0.100843 1.420938 0.091879 2.993160 -2.211943 1.031610 -0.425921 0.547210 0.611926 2.201364 -0.251186 -1.135961 0.619053 -0.480225 -2.259663 1.814350 -0.119155 0.142715 -0.001767 0.306448 -0.853129 -1.102942 2.171574 -1.205007 2.047178 -0.923608 2.372884 -1.546555 -1.332527 1.028985 -1.558426 -0.594660 -1.880981 -0.989615 0.254729 1.485364 -1.363922 -0.838967 -1.197518 -0.398899 -0.216191 1.443353 -1.879682 0.030405 -0.519621 -0.292209 1.157692 1.060304 -0.424255 0.434064 -1.843336 0.438646 1.216793 -0.231239 -2.616850 0.076853 -1.518087 -0.267241 0.390562 -0.381528 1.085560 -0.941337 -1.071335 0.727880 -0.581842 -0.040876 -0.881623 -2.270839 0.429679 -0.658647 0.419095 0.651390 2.218976 1.753050 1.346485 0.213446 -0.381406 0.450638 -0.861352 -1.776120 0.531487 -0.280534 0.619976 0.976411 1.233719 0.476125 0.417077 1.420307 0.400345 0.056035 1.826735 0.980051 2.004684 0.278032 -0.319313 0.632820 -1.177421 1.146129 2.296275 -0.171615 -0.516121 0.997635 0.395225 -1.023229 -0.965479 -0.294451 -0.758341 -1.203392 1.616190 0.455021 -0.523853 -0.633656 2.817532 0.093314 -3.182442 1.235709 -0.108502 0.767976 1.247820 -0.632530 0.741097 1.040233 -0.558093 1.097507 0.645372 1.615647 -1.516778 -0.513416 -0.079579 1.181928 1.443394 -0.125200 -3.625431 0.572726 0.542781 2.282033 0.843042 2.235924 -0.925519 0.559217 -0.404569 -0.449330 -0.180718 -0.736954 1.116034 -0.730944 -0.348000 -2.918280 0.447569 +PE-benchmarks/bellman-ford-algorithm.cpp__main = -0.465466 -7.763825 6.305880 -7.216405 -9.051176 6.297429 -9.886799 -6.458665 3.137727 -2.736477 4.110432 -3.659373 1.608880 12.293894 -1.671936 -8.825579 -0.392145 9.082966 3.600404 0.206261 1.834180 2.864783 -3.251886 2.523133 -2.974321 -5.554794 2.444806 5.099335 5.581868 6.817350 -7.026100 -4.016433 -6.077037 10.766274 5.052315 4.870044 3.602749 17.707340 -1.229000 17.429204 -6.139370 -7.401732 2.025978 1.424424 -1.480214 -0.030884 -12.237032 0.842532 -12.899588 0.016790 10.021165 -2.965153 4.781587 3.773685 7.280470 0.249812 -9.506513 -0.243368 -0.195562 -1.598295 1.733360 -4.113821 -3.967784 5.711783 -12.165287 -2.430847 5.114260 10.876529 -1.033226 -0.903428 -0.194646 -13.214290 16.820441 5.478205 -9.211187 -0.652152 12.364821 -9.904333 7.010745 2.315226 -15.315427 -0.683466 -5.081882 -11.170930 13.700948 -0.368138 12.971056 -14.568186 9.437768 -17.599844 6.948800 -10.178972 4.997378 12.952492 -14.692782 1.314936 9.334834 19.208307 7.466155 0.675625 8.427782 9.533789 -6.424480 2.419734 12.422173 2.335957 -3.053601 -5.035731 -7.835815 -9.906477 -1.641971 -12.235393 -22.390325 -0.482777 0.271213 8.260878 -6.644281 5.685901 -3.159975 7.557937 -13.623059 3.286787 0.761129 -2.052633 3.562517 6.527705 -5.556308 4.795438 -1.907477 12.657451 -9.984037 -0.782671 -3.891832 3.500635 -8.214947 5.043319 -14.840509 5.303451 7.106712 -5.091919 -12.286343 -10.412435 -6.409716 12.084623 0.471903 16.013103 18.139912 -6.453602 -7.405636 10.093294 -0.692792 0.381223 13.765728 3.768461 8.058302 -3.462990 -1.271667 -13.055154 -4.119415 -6.192276 -2.125409 4.974574 0.387929 8.914675 -1.590578 -5.467322 23.792939 -6.715306 -8.623655 -14.696758 1.669718 -5.971171 -3.966241 16.617270 -13.346523 4.802124 -1.623123 14.073258 -3.966494 -7.815889 1.925459 -12.571571 -0.421947 -8.122521 0.113092 -1.952042 10.124671 -10.627764 -7.127380 -1.960819 -5.337071 -1.422767 0.648823 10.220727 0.272577 4.831088 4.892616 15.297652 16.476784 8.440049 -2.952791 -8.062085 3.965499 6.641688 -9.978826 -3.219005 1.961044 -5.016287 0.379912 -7.666822 1.877301 2.756191 -14.776430 -6.385748 -11.169510 -0.600659 7.749289 6.979382 -23.350853 4.186941 3.129983 5.990143 9.455703 2.220644 14.252921 11.558446 13.192230 -0.546393 2.073725 0.143295 -0.968602 4.211713 9.829136 3.787399 0.945449 15.162070 4.429874 1.494600 3.724508 10.933655 10.309654 6.293757 4.303996 16.261387 6.796245 0.224721 -3.854529 0.216140 8.323267 21.249165 -3.675606 12.940667 4.356916 6.215006 -3.029712 -13.918080 2.166011 -3.540785 -0.570450 1.718233 -0.508567 0.288160 -4.899876 9.609775 2.777383 -12.987396 1.188579 1.328881 2.744420 11.307111 -1.260122 0.616767 0.122967 -9.621027 17.401672 6.405734 2.924652 -6.725743 -0.142411 -0.862792 0.846025 10.540068 7.195458 0.092862 9.890864 4.014705 10.634724 5.743572 4.324517 -7.610051 -3.572973 3.409040 -13.623746 -3.860837 0.243171 3.909739 -3.255680 3.819649 -8.687344 -19.432102 +PE-benchmarks/dfs.cpp__main = 0.475126 0.574825 0.476267 -0.182950 -0.800256 -0.181266 -0.895879 0.007154 0.076599 -0.328523 -0.269671 -0.742803 -0.970767 0.657844 -1.187162 -1.071126 -0.594859 -0.203454 -0.090064 -0.959435 -0.116634 0.192541 0.117019 0.146843 0.285000 -0.361143 -0.132746 0.199566 1.792712 -0.485744 -0.257301 0.206402 0.494860 0.803191 -0.223331 -0.428851 0.736033 1.344133 1.440595 -0.583532 -0.808679 -0.724507 0.358164 0.164825 -0.024925 -0.937240 -0.380208 0.269721 -2.562522 1.757469 0.199976 0.206848 -0.970533 -0.169867 0.438325 0.775367 -2.343240 2.643904 -0.305138 0.678675 0.255141 -0.363995 -0.413596 -0.629308 1.595305 -0.358353 -0.049957 1.120490 -1.539669 0.901420 0.103933 0.207993 1.520746 -0.050496 -0.614155 0.442965 0.537689 0.180185 0.149705 -2.226744 -0.388188 -0.039695 1.058967 1.111097 1.041806 0.429773 -0.737414 -1.000444 -0.406762 -0.754579 0.324258 -1.187209 0.517638 0.795421 -1.531844 0.618641 -0.091128 -1.405047 0.655921 0.712080 0.976305 0.070948 0.401728 0.061185 -0.518905 -0.140540 0.573147 0.298085 0.392085 -0.432631 -1.347999 0.669913 -1.723032 -0.353611 -0.504657 1.496023 0.240201 0.217863 -0.124313 -0.857191 -1.132074 -1.638797 -0.171717 -0.130107 0.965342 0.408497 -0.234706 0.359038 -0.444543 1.212528 0.253742 -0.315002 -0.362295 -0.141123 0.574668 -2.514853 -2.486023 -0.355128 0.181828 0.073765 -1.123612 -0.087219 -0.480418 -0.846262 0.030479 0.746778 1.175074 0.445348 -0.658915 1.163236 -0.698894 1.395228 2.033464 0.147625 0.893848 -0.327414 0.228066 0.174501 0.209266 -0.212181 -2.073516 -0.123239 -0.295971 -0.291828 0.988033 0.806449 -1.666770 -0.397376 -0.174972 -1.257281 -0.417307 -0.463888 -0.327870 1.110124 0.532680 1.101937 -0.038407 1.285512 -0.658825 -2.206586 0.341664 -0.377891 0.685485 0.814930 0.155615 -0.189824 0.267443 -1.408686 -0.746891 0.491138 0.368052 -0.299552 0.093910 2.020699 -0.101234 -0.176823 0.613111 0.873258 0.770866 -0.499222 1.041862 -1.318783 -0.131199 0.543493 0.079574 -1.701109 1.122329 0.205872 -0.042676 0.882204 -0.050501 -0.617353 0.352974 -0.656991 -0.448642 -0.503296 1.192346 0.038582 0.825495 0.271115 -0.965222 -0.378278 0.196182 0.235698 1.484179 -0.323011 0.169408 -0.050893 0.484087 -0.820986 2.337820 0.145253 0.790036 -0.005730 -0.009885 0.595320 0.199161 -0.458549 0.074675 0.968986 -1.304628 0.417800 0.665145 1.349877 -1.519180 0.227230 -0.717543 -0.402446 0.575983 1.732825 -1.484939 -0.066968 0.576016 1.052720 1.479198 -1.705088 -0.780691 -0.394247 -0.581470 0.508701 -0.531352 -0.904060 0.563408 0.623300 0.185182 -0.276751 1.165381 0.229808 -0.462946 -1.305877 -0.128377 -1.640621 1.071294 -1.600608 -0.547926 -0.052611 0.397178 -0.137667 -0.690705 -0.364370 0.973719 -0.865187 0.439220 0.328751 -0.226384 1.425463 0.719814 1.076395 -0.569192 0.185791 -2.240688 -0.088195 -0.204872 -0.819245 0.367421 0.012644 -0.932348 0.462254 1.477353 -1.783844 +PE-benchmarks/dfs.cpp__Graph::DFS(int) = 0.671689 0.273217 0.925123 -1.161623 -0.906323 0.290711 0.382541 -0.805219 0.156561 1.832915 0.769905 -0.874316 -0.981202 1.850812 -0.456190 -1.207088 0.456165 -0.198865 -0.062718 -0.280760 -0.111390 0.725838 -0.243070 -0.529016 0.606570 -0.330102 0.016976 1.038438 0.394468 -0.010426 -0.982969 -0.234451 0.067813 2.155849 -0.024994 0.013787 0.074616 2.567068 -1.928560 2.167208 -2.186937 -1.925129 1.914310 0.239643 -0.055756 -1.491359 -0.820130 0.928124 -0.925157 -1.075395 0.778157 -0.365775 0.294071 -0.935064 0.458844 1.812410 -2.951078 0.759100 0.379781 -0.500643 -0.949110 -0.383049 0.579667 0.281395 -1.046095 -1.312736 0.448836 0.395520 -0.969016 0.303271 -0.997758 -2.246463 1.772747 0.516785 -1.019445 0.521921 0.378785 -1.796088 1.312462 -1.079727 -1.381658 -0.491151 0.469071 -0.616108 1.333981 0.585811 1.377998 -2.994153 0.359072 -2.519047 1.550938 -1.691358 1.594469 2.023075 -1.339354 0.812717 0.738556 1.134571 0.946856 0.063251 1.994167 0.957450 0.925754 -0.088330 1.142657 1.310345 -1.558184 -1.399501 -1.411414 -1.610619 0.175508 -0.616767 -2.664391 0.158565 -1.152260 0.335071 0.600358 -0.472462 -0.287972 1.772934 -2.847141 -0.398418 0.607530 -0.353891 1.249614 1.874081 -0.204431 0.271918 -0.320533 1.950064 -0.524021 0.219761 -0.511713 0.922144 -1.053531 -1.425745 -1.258454 0.182355 0.662582 -1.590651 -2.072825 -2.833647 -0.343484 0.919930 -0.576396 1.712294 3.389002 -0.805876 -1.723571 1.619095 0.024058 0.181418 1.970523 0.270533 2.829698 -2.002913 0.758834 -0.724855 0.318924 0.371114 1.572397 -0.028196 -0.964628 0.846591 -0.014223 -1.460288 1.890214 -0.306131 -0.282308 -0.775655 0.326913 -0.779630 -0.843248 2.340333 -1.358548 1.805121 -0.802087 2.742192 -1.525882 -1.675904 0.922904 -1.885303 -0.437688 -1.567101 -0.794292 0.111368 1.585159 -1.786258 -1.007528 -0.905801 -0.531073 -0.297749 1.219571 -0.804420 0.098189 -0.214898 -0.121888 1.804237 1.476126 -0.075949 0.285871 -2.015231 0.372699 1.133422 -0.561916 -2.523760 0.191047 -1.406640 -0.196153 0.362996 -0.267859 0.952740 -1.235944 -1.053444 0.181015 -0.627888 0.411980 -0.454835 -2.163327 0.550840 -0.545703 0.542345 0.922267 1.948634 2.071166 1.555340 0.697335 -0.173864 0.408434 -0.845374 -0.951740 0.711697 0.313546 0.735024 0.876866 1.531741 0.586245 0.380089 1.160228 0.645787 0.186620 1.865528 0.832990 2.410477 -0.241530 0.008143 0.234729 -0.861171 1.331055 2.630592 -0.863073 -0.164916 0.984327 0.489680 -0.700941 -1.134528 -0.192751 -0.844268 -0.935624 1.204136 0.515771 -0.480582 -0.675491 2.730812 0.168502 -3.099689 1.379392 -0.009938 0.651802 1.245810 -0.535704 0.388159 0.940486 -0.896717 1.317692 0.877913 1.581777 -1.644529 -0.390659 -0.153451 1.279348 1.328726 0.277089 -3.154777 0.592711 0.817939 2.155409 0.914688 1.888074 -1.127929 -0.103552 -0.201429 -0.952533 -0.403700 -0.408542 1.099123 -0.683180 0.174989 -2.400414 -0.475818 +PE-benchmarks/tug-of-war.cpp__main = 0.348693 0.108517 0.160002 -0.526665 -0.509002 0.111365 -0.166081 -0.167886 0.044943 -0.208305 0.271385 -0.416890 -0.336733 0.746970 -0.210253 -0.554136 0.018147 -0.547456 -0.118306 0.112836 -0.051018 0.247551 -0.101746 0.029969 0.094122 0.103654 -0.210245 0.222494 0.690278 -0.504421 -0.653097 0.022365 -0.020009 0.690211 0.067569 -0.339136 0.398312 1.137674 0.028176 0.323334 -0.432019 -0.244587 0.352142 0.001927 -0.301080 -0.578179 -0.490732 0.372029 -0.699573 0.127789 0.540600 -0.026881 -0.284412 -0.081335 0.254396 0.688330 -1.279013 0.907181 0.188859 0.591885 0.177463 -0.284108 -0.005487 -0.143475 0.139152 -0.375196 0.273995 0.174222 -0.585961 0.048367 -0.272740 -0.605881 1.104708 0.306239 -0.379326 0.145153 0.242942 -0.654918 0.439521 -0.786864 -0.622668 0.088569 0.114937 0.044193 0.965408 -0.163513 -0.091493 -0.928499 0.060949 -0.951062 0.150807 -0.897827 0.339304 0.832768 -0.828904 0.110308 0.076605 0.032934 0.446902 0.255483 0.766179 0.210876 0.091009 -0.035757 0.269590 0.119986 -0.086958 -0.022182 -0.154187 -0.569475 -0.361939 0.102230 -1.276015 0.162685 -0.264544 0.358221 0.081192 0.162426 -0.114701 0.057454 -0.516900 -0.498982 -0.047503 -0.121050 0.496598 0.895259 -0.276127 0.134868 -0.475241 0.809324 0.046660 0.247599 -0.277049 0.111977 -0.078489 -0.961653 -0.995873 -0.004210 0.364982 -0.340447 -0.844119 -0.647200 -0.037837 -0.354183 -0.236569 0.798682 1.086544 -0.184883 -0.472060 0.908511 0.216328 0.558557 0.996418 -0.089423 0.951151 -0.411673 0.135724 -0.016569 -0.067755 -0.438109 -0.856827 0.032008 -0.108202 -0.052183 0.107876 -0.350797 0.548219 0.077934 -0.296685 0.001000 -0.119499 -0.361941 -0.775017 1.017427 0.333315 0.560339 0.365638 0.997655 -0.247524 -0.775417 0.502533 0.203034 0.288482 -0.354834 -0.351305 0.083872 0.349210 -0.539056 -0.355965 0.044270 0.142137 -0.393281 0.182309 0.897408 0.090825 0.054036 0.356170 0.221501 0.862927 -0.157519 0.479174 -0.881554 0.194167 0.442945 -0.372672 -0.693928 0.334135 -0.287133 -0.018172 0.436767 -0.136050 0.017143 -0.369503 -0.648867 -0.011344 -0.015726 0.584510 0.203927 -0.623593 0.146210 -0.354636 -0.012450 0.403264 0.445345 0.747735 0.400114 0.434190 -0.160529 0.165772 0.076683 0.184592 -0.184107 0.023304 0.438539 0.267893 0.437944 0.278364 -0.010874 0.269582 0.448505 -0.252383 0.531707 0.581367 1.018556 0.031899 -0.160869 -0.182245 -0.395928 0.588339 1.232406 -0.718453 0.114848 0.351679 0.519782 0.097379 -0.891953 -0.165904 -0.322486 -0.364132 0.226858 -0.352799 -0.157655 -0.006422 0.758730 -0.095190 -0.788892 0.396651 0.085771 0.162888 0.103021 0.025625 -0.133753 0.349132 -0.910339 0.417789 0.329933 0.463550 -0.155095 -0.244962 -0.080761 0.413194 -0.369854 0.357521 -0.253058 0.308651 0.532668 0.658247 0.648852 -0.024609 -0.212576 -0.592598 0.102727 -0.215816 -0.192965 -0.016614 0.405184 -0.614229 0.054200 -0.160971 -0.679051 +PE-benchmarks/tug-of-war.cpp__tugOfWar(int*, int) = 2.740970 1.833190 3.657849 -3.252093 -2.630718 1.554743 0.965533 -3.610737 0.629036 9.477847 2.646826 -2.625608 -2.801318 5.430479 -2.471689 -3.158106 1.718445 0.241535 0.242156 -2.927726 -0.474126 1.861324 -0.831331 -2.912628 1.817731 -2.304935 1.259131 2.814324 -0.360244 1.659201 -2.776030 -0.980203 0.849355 7.606479 0.326454 0.232299 -0.915668 7.355841 -6.870436 6.836688 -8.578108 -8.425193 7.028332 1.328428 1.392407 -4.359882 -1.128429 2.812618 -1.070172 -3.978224 1.215259 -2.308721 2.078153 -3.671651 0.289682 5.438936 -8.763925 1.587988 0.615630 -4.070959 -5.100384 -1.139665 3.607391 2.310472 -3.941069 -4.404238 1.749553 2.827905 -3.050145 1.567888 -3.989404 -8.293163 3.946064 1.203517 -3.307562 1.135031 0.263304 -5.675852 3.986014 -2.857542 -4.119477 -2.155407 2.316281 -2.133226 2.347808 3.732094 6.355671 -10.511849 1.307715 -8.580681 6.236256 -3.901390 6.638951 5.651544 -3.412741 2.658658 3.010922 4.976593 3.256190 -0.169304 6.670900 3.230748 3.878973 -0.736257 3.880557 5.623645 -5.718461 -5.359953 -4.637521 -5.205200 1.175278 -1.680711 -7.215770 0.172170 -5.345253 0.051946 1.629939 -2.500481 -1.247289 7.372815 -11.735841 -3.200547 2.275138 -1.130636 5.165584 4.730774 0.147249 1.991755 0.622362 6.223139 -2.115957 -1.066275 -1.602715 3.495884 -4.139052 -4.255583 -4.232025 1.468915 2.647662 -6.310112 -7.078998 -10.193563 -1.893167 4.617452 -1.769692 5.481707 11.327219 -2.570430 -6.131185 4.007021 -1.371666 -1.321202 7.388735 1.434781 10.210865 -8.354328 4.035875 -2.213024 2.394604 2.767330 8.271737 -1.066681 -3.408810 3.477145 0.358905 -3.214135 4.602380 -1.841186 -0.306787 -3.862685 1.693718 -1.917263 -1.144280 6.425771 -6.319212 5.773173 -4.200104 9.503708 -7.044947 -5.797259 2.503152 -8.664504 -2.757112 -4.001672 -1.372425 -0.395127 6.890134 -6.222093 -3.614297 -2.838465 -2.725338 0.222275 4.954904 -4.900104 0.254310 -1.024702 -2.274563 7.092686 3.890118 0.010839 0.123474 -5.850795 0.472464 4.407061 -0.644381 -8.891641 -0.716694 -5.955385 -0.689142 0.281663 -0.698112 4.324077 -3.839887 -2.712250 0.604710 -2.758750 1.012048 -2.523578 -6.011398 2.631972 -2.250939 1.954266 1.788050 7.691823 6.395560 5.717304 1.738537 -1.275475 1.627145 -5.022237 -3.016125 3.650326 2.311538 1.843808 2.889938 5.754574 1.246182 1.933886 4.260546 0.874906 1.095453 6.469055 0.897645 7.544173 -3.626709 1.883874 0.690753 -3.105089 4.263178 8.777156 -1.788473 -2.276994 2.825772 0.233512 -2.782479 -2.561538 -0.503729 -2.498836 -2.459494 3.296929 4.536084 -1.268139 -3.571360 10.126678 1.581930 -10.972110 5.923640 -0.359746 1.880760 5.312139 -3.388237 1.440754 3.059111 -0.776057 3.873151 3.161700 5.767149 -6.836610 -1.430900 -0.768458 5.437153 5.073369 -0.721553 -12.434758 2.606330 2.893768 7.309071 2.786334 7.625953 -4.892631 0.766567 -1.347953 -3.528563 -1.277755 -0.772886 4.472943 -1.758506 1.059969 -8.848846 0.354900 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__main = 0.319389 0.044696 0.163562 -0.332205 -0.351534 0.127736 -0.236700 -0.083554 0.041181 -0.299140 0.099583 -0.216715 -0.306472 0.459383 -0.210462 -0.466211 -0.019222 -0.438843 -0.044103 0.031086 -0.078368 0.130666 -0.076836 0.090732 0.064567 0.030639 -0.146099 0.128395 0.565503 -0.393041 -0.494722 0.020951 -0.072057 0.506394 0.065465 -0.250494 0.391602 0.906502 0.322321 0.126148 -0.229283 -0.198371 0.142098 -0.017346 -0.211634 -0.306784 -0.274568 0.242079 -0.732161 0.309060 0.446858 -0.021458 -0.305644 0.017464 0.230201 0.442642 -1.031825 0.805002 0.059751 0.558095 0.196777 -0.272715 -0.086090 -0.205592 0.304522 -0.225978 0.243521 0.247161 -0.537662 0.118992 -0.160240 -0.333523 0.858875 0.262444 -0.278353 0.106016 0.306858 -0.356047 0.268117 -0.681046 -0.499884 0.066611 0.081125 0.069435 0.845599 -0.117788 -0.184478 -0.644788 0.101134 -0.693191 0.057989 -0.705175 0.238567 0.634578 -0.665294 0.108835 0.090617 -0.023362 0.249126 0.164771 0.587728 0.120418 -0.048819 0.018853 0.148979 -0.065924 0.034830 0.084208 -0.038846 -0.349729 -0.410854 0.109087 -0.916912 0.059061 -0.175761 0.450016 0.028556 0.255541 -0.139550 -0.193423 -0.457812 -0.468403 -0.108974 -0.096292 0.445103 0.554666 -0.243310 0.136654 -0.347992 0.665450 0.006013 0.117888 -0.271527 0.021086 0.108048 -0.701463 -0.925023 -0.058353 0.312316 -0.161662 -0.680818 -0.332560 -0.099558 -0.305017 -0.115544 0.709838 0.781999 -0.064859 -0.264052 0.714030 -0.012504 0.593075 0.855368 -0.023104 0.540328 -0.208254 0.060813 0.002853 -0.031676 -0.417944 -1.056370 0.041787 0.008661 -0.050099 0.212339 0.132244 0.237627 -0.011923 -0.263705 -0.120771 -0.168720 -0.283695 -0.561698 0.765051 0.331155 0.380680 0.410059 0.749107 -0.143986 -0.652979 0.323566 0.171729 0.330178 -0.175368 -0.207152 -0.026129 0.178388 -0.487912 -0.331763 0.117027 0.177453 -0.271984 0.056432 1.004187 0.064881 0.059925 0.355764 0.215390 0.692510 -0.097755 0.380588 -0.680368 0.117460 0.275691 -0.316052 -0.399906 0.355909 -0.075589 -0.001554 0.415687 -0.048530 -0.100953 -0.237035 -0.507771 -0.093377 0.034960 0.522769 0.255118 -0.378323 0.071971 -0.211728 -0.133890 0.345992 0.210045 0.603920 0.202520 0.351231 -0.144837 0.155600 0.105620 0.356521 -0.204596 0.075002 0.418766 0.120587 0.254212 0.217283 -0.079613 0.087836 0.441077 -0.237343 0.325870 0.494661 0.779018 -0.060666 -0.109325 -0.215750 -0.280693 0.419372 0.879205 -0.707852 0.227358 0.276162 0.486863 0.245588 -0.754054 -0.147354 -0.265464 -0.208479 0.065206 -0.334055 -0.162558 0.049523 0.496187 -0.072608 -0.480754 0.278344 0.102042 0.054541 -0.019713 0.071945 -0.248244 0.265826 -0.819364 0.294018 0.186381 0.294719 -0.036820 -0.090456 -0.079619 0.298071 -0.498495 0.299769 0.123537 0.167935 0.414200 0.429489 0.609908 -0.220822 -0.071121 -0.622182 0.072358 -0.254880 -0.190161 0.105467 0.310485 -0.438898 0.080121 0.079453 -0.681414 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__std::queue > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/minimum-cut-in-a-directed-graph.cpp__bfs(int (*) [6], int, int, int*) = 1.964499 0.312954 2.583075 -2.265750 -0.629030 1.005039 -0.280435 -1.717819 1.291488 5.353884 1.838392 -1.986924 -2.684708 3.901323 -1.136137 -2.518439 2.697293 1.118281 1.731855 -0.919203 0.057216 0.991069 0.209986 -2.074029 1.984122 -1.532438 -0.271740 2.244709 2.135949 0.551335 -2.852014 -0.052761 0.769107 5.515594 -0.792253 -0.447425 0.295144 6.002396 -3.704990 5.447625 -4.106142 -4.660340 5.462262 1.083292 -0.405375 -1.550723 -0.953283 1.808952 -2.145666 -3.751337 1.289194 -1.609807 1.586235 -2.964356 -0.370744 5.067337 -7.195257 0.789807 0.156655 -1.111024 -2.053992 -0.570073 1.781009 1.168146 -2.020980 -2.918264 1.377474 1.184046 -3.722318 0.153571 -2.899547 -4.988106 5.023417 1.156055 -2.485754 1.631020 1.423407 -4.143438 2.679875 -1.820282 -3.098032 -1.422865 0.884187 -1.015518 3.049769 1.844743 4.261700 -7.379941 0.636852 -5.812798 5.331316 -3.607639 5.274948 4.899457 -3.862054 2.149893 2.603639 3.722221 1.417958 0.345488 6.582870 2.450253 1.124004 -0.991224 2.854263 3.239846 -4.152601 -3.356379 -3.186036 -3.214053 0.403922 -0.905199 -5.991333 -0.306282 -4.776367 1.245650 2.548550 -1.494612 -1.298438 4.469373 -7.497062 -1.948335 1.152347 -0.909213 3.708549 4.612783 0.378093 0.334440 0.700552 5.581946 -1.631935 -1.917204 -0.732864 2.230871 -1.572644 -2.982884 -2.140226 -0.178752 1.501412 -5.067487 -5.516333 -7.204167 -0.895309 2.438993 -0.707538 4.124220 8.902172 -0.887543 -2.848083 3.304267 -1.543938 0.706818 6.445120 1.010594 8.135538 -6.426810 2.521325 -1.606188 1.702205 2.212115 5.095416 -0.541791 -1.460395 1.613648 1.177228 -1.229677 3.322538 -1.392642 0.302812 -1.885308 0.332211 -1.510598 -2.629162 5.121123 -3.543007 3.729931 -2.187701 8.080374 -3.380684 -5.327207 2.632660 -3.175849 -1.843396 -3.461488 -1.336572 -0.404360 4.014935 -4.726980 -2.875073 -1.814764 -0.673749 0.453833 3.525539 -1.201954 0.730661 -0.938121 -2.273518 4.533338 2.379734 -0.446760 0.555854 -5.527951 -0.470403 2.775125 -2.155337 -5.813118 0.730462 -4.553002 0.070362 1.316880 -1.450702 2.743142 -3.737719 -3.398979 0.051720 -1.647250 0.954741 -2.403808 -5.540324 1.654818 -0.268594 0.219611 2.859438 5.692038 5.115379 3.699770 0.520806 -0.545148 1.212860 -2.155385 -3.171582 2.191576 0.120658 3.113440 1.829800 3.823271 0.776511 1.634438 2.716117 0.175368 1.136364 4.848171 1.542528 5.373057 -0.646923 0.254559 1.024375 -3.581419 3.837521 6.493947 -2.361746 -1.565335 2.473058 0.820933 -1.301995 -3.011105 0.204741 -1.782878 -2.140193 2.885873 1.970924 0.464969 -2.690682 6.736651 0.877830 -8.829287 4.481939 -0.598994 0.899060 4.159925 -1.844490 1.301606 2.008736 -1.589863 2.398340 1.672509 4.737671 -4.854586 0.534518 -0.703099 3.880378 2.181783 -0.389517 -8.671795 1.330589 1.509983 4.883720 3.570449 4.568493 -2.961090 -0.059857 -1.312992 -2.845687 -1.280308 -2.041768 3.107918 -1.830384 0.291908 -6.117616 0.852723 +PE-benchmarks/n-queen-problem.cpp__main = 0.119711 0.057421 0.034057 -0.189525 -0.114566 -0.003348 0.068765 -0.067943 -0.061023 -0.199867 0.093506 -0.141551 -0.261953 0.216952 -0.040657 -0.242276 0.021543 -0.236004 -0.123475 0.078801 -0.051914 0.051508 -0.016662 -0.091138 0.075777 0.079244 -0.076906 0.116501 0.217173 -0.278853 -0.184349 0.000000 0.090766 0.272704 0.029079 -0.019678 0.069003 0.378773 0.096547 0.159953 -0.235610 -0.091664 0.241820 -0.063412 -0.113570 -0.388820 -0.137039 0.198142 -0.292839 -0.015795 0.096387 0.000000 -0.150952 -0.154978 0.001358 0.363241 -0.486404 0.414015 0.123916 0.150705 0.022678 -0.088517 -0.048827 -0.155473 0.181072 -0.182388 -0.003967 -0.031426 -0.279883 0.068973 -0.154295 -0.143594 0.536504 0.083626 -0.088923 0.087863 -0.030689 -0.108029 0.120900 -0.331746 -0.154630 -0.040017 0.105489 0.242781 0.312023 -0.007357 -0.134861 -0.351859 -0.125816 -0.341390 0.079988 -0.327201 0.129916 0.250497 -0.234499 0.125797 -0.009317 -0.275619 0.029011 0.172031 0.244174 -0.026754 0.082688 -0.017518 0.094527 -0.028757 -0.021133 -0.084748 -0.009399 -0.176707 -0.090107 0.123104 -0.449742 0.079006 -0.144012 0.231280 0.049580 0.097032 0.039123 -0.137137 -0.148717 -0.099069 0.038952 -0.056409 0.241633 0.320810 -0.053335 0.012107 -0.197448 0.225954 0.086001 0.148880 -0.094099 0.092662 0.143988 -0.562810 -0.277651 -0.050524 0.101423 -0.103620 -0.296663 -0.198468 0.006473 -0.112755 -0.140266 0.118487 0.359996 -0.064512 -0.176934 0.307216 0.168032 0.294868 0.255723 0.007580 0.381016 -0.161964 0.047223 0.126490 -0.033483 -0.039714 -0.322886 -0.086029 -0.177495 0.003401 0.029878 -0.293934 0.144254 0.043212 -0.061542 0.223998 -0.130712 -0.141137 -0.318325 0.305960 0.309304 0.296563 0.103974 0.363358 -0.110219 -0.273007 0.154298 0.186391 0.076668 -0.094188 -0.122814 0.050582 0.054153 -0.258536 -0.160229 0.036991 0.073950 -0.143736 0.191172 0.234972 -0.021629 -0.002933 0.072766 -0.017567 0.194041 -0.191752 0.182375 -0.312529 0.083124 0.108814 0.000559 -0.341508 0.102734 -0.055054 -0.040730 0.273798 -0.030307 0.020429 0.026253 -0.153860 0.145996 -0.068588 0.144980 0.022984 0.045052 -0.026486 -0.061984 -0.076754 0.103862 0.254849 0.249749 0.094439 0.018249 0.021246 0.026061 0.039048 0.015976 -0.132181 -0.101351 0.200650 0.130390 -0.001781 0.115478 0.003433 0.169770 0.119722 -0.125767 0.229784 0.280349 0.313104 -0.040389 -0.117475 0.042292 -0.144973 0.242867 0.312923 -0.340320 -0.050412 0.140996 0.131215 0.064063 -0.255965 -0.108657 -0.080559 -0.264771 0.298348 -0.073075 -0.027060 0.002819 0.333676 -0.087356 -0.295264 0.203624 0.079803 0.087201 -0.043649 0.003304 -0.019835 0.207575 -0.222741 -0.031846 0.093205 0.231489 -0.109956 -0.131360 -0.018426 0.141435 -0.133774 0.109803 -0.129500 -0.076664 0.184303 0.284900 0.166028 -0.075127 -0.048690 -0.181959 -0.002961 0.057535 -0.003729 -0.045972 0.103766 -0.152532 -0.128478 -0.065171 -0.097506 +PE-benchmarks/n-queen-problem.cpp__printSolution(int (*) [4]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/n-queen-problem.cpp__solveNQ() = 0.283464 0.129071 0.418705 -0.636240 -0.329674 0.252920 -0.188528 -0.301872 0.172756 0.418578 0.149841 -0.313681 -1.199191 0.539661 -0.329903 -0.953336 0.173760 -0.455847 0.005292 -0.454021 -0.230319 0.107673 -0.027855 -0.282416 0.327378 -0.411279 -0.039480 0.496498 0.941256 -0.417929 -0.490936 -0.000366 -0.020473 1.157195 -0.009246 0.071762 0.322670 1.454303 0.236856 0.614506 -0.952398 -1.053333 0.891092 0.068666 -0.188988 -0.384129 0.239763 0.421605 -1.398491 0.203435 0.339034 -0.258060 -0.107792 -0.464134 0.118656 0.998695 -1.721888 1.142445 -0.109717 0.080388 -0.323794 -0.411999 0.091869 -0.039753 0.266489 -0.633495 0.317663 0.431974 -1.314101 0.325036 -0.451423 -0.613569 1.282970 0.390221 -0.478803 0.312242 0.247566 -0.369873 0.342685 -0.961118 -0.670798 -0.210141 0.552061 0.062898 1.028095 0.343107 0.206515 -1.485795 -0.165193 -1.230314 0.653319 -0.852095 0.979472 0.943956 -0.790096 0.572273 0.251566 -0.096481 0.041408 0.012963 1.165337 0.017014 0.376993 0.058481 0.390561 0.075631 -0.383899 -0.399045 -0.210437 -0.558594 -0.453745 0.044563 -1.222799 -0.067814 -0.944497 0.763392 0.411787 0.215592 -0.457554 0.056563 -1.537209 -0.913749 -0.062834 -0.213577 1.197175 0.709428 -0.060323 0.263270 0.115856 1.210374 -0.114770 -0.140655 -0.555172 0.347840 0.546369 -0.760428 -1.255715 -0.138180 0.515505 -0.581147 -1.313803 -0.699342 -0.573587 0.110627 -0.122326 1.305468 1.689177 -0.089091 -0.680222 0.972049 -0.955627 0.977048 1.451491 0.229431 1.189174 -0.975138 0.524786 -0.140772 0.405137 0.134244 -0.086623 -0.195098 -0.459649 0.124235 0.476795 0.802867 -0.334338 -0.188215 -0.122893 -0.830931 -0.254866 -0.573474 -0.759765 1.085090 -0.378687 1.140668 0.082470 1.626095 -0.906404 -1.400496 0.555457 -0.235974 0.107590 -0.326558 -0.273914 -0.138801 0.453674 -1.115870 -0.777515 -0.203290 0.183883 -0.116504 0.616834 0.887246 -0.004302 -0.181072 -0.018697 1.109210 0.805320 -0.277127 0.207667 -1.230988 0.145626 0.552627 -0.158089 -0.885495 0.380470 -0.311237 -0.130014 0.952223 -0.035947 0.289855 -0.228366 -0.616813 -0.079035 -0.063649 0.634256 -0.081792 -0.927145 0.277257 -0.026730 -0.453660 0.547496 0.885813 1.104711 0.371029 0.151666 -0.239943 0.220252 -0.351404 0.320627 -0.003801 0.230516 0.746252 0.320171 0.789217 0.297143 0.112564 0.648687 0.615705 -0.387889 0.833860 0.428225 1.309656 -0.769274 -0.035078 -0.049922 -0.610533 0.693724 1.382087 -1.300795 -0.079621 0.670908 0.743326 0.313777 -1.066899 -0.333078 -0.597475 -0.154590 0.536943 0.023150 -0.284069 -0.251806 1.395193 0.139415 -1.358867 0.998936 0.088792 0.172150 0.104504 -0.340749 -0.454839 0.682955 -1.103192 0.308419 0.291496 0.631514 -0.608153 -0.003907 -0.145795 0.841279 -0.408198 0.011128 -0.582592 -0.181308 0.517311 1.175436 1.226541 0.217074 -0.239294 -0.717780 -0.187329 -0.640221 -0.246499 0.003423 0.525296 -0.664590 0.181094 -0.520671 -0.527243 +PE-benchmarks/birthday-paradox.cpp__main = 0.155371 0.091281 0.106526 -0.049004 -0.116081 0.097846 -0.235414 -0.141023 -0.030293 -0.100375 -0.005464 -0.021407 -0.225891 0.074104 -0.240126 -0.257772 -0.119716 -0.052394 -0.016039 -0.197867 -0.026333 -0.012859 -0.006521 -0.054706 0.006561 -0.114060 0.023820 -0.020757 0.174366 -0.137413 -0.064581 -0.015902 0.079519 0.202613 0.068316 0.099616 0.050075 0.203707 0.428823 -0.056577 -0.335215 -0.280444 0.085783 0.001547 0.064331 -0.239063 0.018808 0.059350 -0.396673 0.270627 -0.015520 -0.092888 -0.144161 -0.039107 -0.014742 0.128220 -0.410092 0.487017 -0.060968 -0.035869 -0.023069 -0.035499 -0.014118 -0.105327 0.402826 -0.098846 -0.003235 0.341000 -0.309071 0.186840 -0.014934 -0.034770 0.418157 0.002480 -0.095984 0.014853 0.024793 0.137749 0.011282 -0.418077 -0.110016 -0.079503 0.201593 0.308428 0.116222 0.204106 -0.066401 -0.245982 -0.037606 -0.235818 0.141276 -0.083392 0.169553 0.028748 -0.212715 0.094526 0.114121 -0.297296 0.091458 0.155703 0.184793 -0.057942 0.005014 0.030729 -0.034383 -0.113256 0.114970 0.041523 0.089189 -0.123489 -0.180320 0.139804 -0.332667 -0.060236 -0.146814 0.399059 -0.060717 0.095953 0.075480 -0.235968 -0.386398 -0.313221 -0.021631 -0.017262 0.285187 -0.005935 0.015557 0.124793 -0.020202 0.193164 -0.063191 -0.119040 -0.070585 0.032694 0.237172 -0.521287 -0.498330 0.008127 0.097879 -0.065084 -0.212315 -0.006979 -0.111634 0.036610 -0.031774 0.165212 0.252829 -0.017381 -0.192471 0.157372 -0.085970 0.159257 0.412850 0.101630 0.206028 -0.120350 0.051270 0.077267 0.018734 0.049477 -0.487447 -0.090831 -0.071009 0.057082 0.214110 0.100968 -0.231013 -0.146911 -0.079473 -0.073844 -0.111042 -0.073220 0.006333 0.034675 0.238146 0.237967 0.035211 0.281633 -0.236042 -0.381350 -0.023015 -0.141651 0.006875 0.276271 0.072243 -0.102997 0.079454 -0.355877 -0.151260 0.114905 -0.030916 -0.026282 0.136421 0.379354 0.003958 0.032980 -0.012893 0.192410 0.154441 -0.067171 0.106226 -0.157538 -0.009616 0.113746 0.108272 -0.309184 0.073193 -0.041904 0.010993 0.239489 0.011828 0.014415 0.143207 -0.009460 -0.076842 -0.128259 0.237585 0.032553 0.416123 -0.014833 -0.111139 -0.086380 -0.026493 0.142378 0.221507 0.057030 0.011218 0.007199 0.096050 -0.184274 0.466785 -0.050229 0.172819 0.100991 0.028020 0.026693 0.032185 0.003314 0.124745 0.178216 -0.080654 0.147076 0.042780 0.263879 -0.451142 0.109011 -0.129305 -0.041128 0.146408 0.281835 -0.411230 0.037270 0.067099 0.110776 0.267868 -0.253089 -0.067132 -0.038914 -0.163665 0.185241 0.155860 0.004928 -0.065832 0.211673 0.080230 -0.097604 0.333186 0.066061 -0.071104 -0.156878 -0.077844 -0.259394 0.163292 -0.163208 -0.206786 0.071939 0.177883 -0.178030 -0.125313 -0.061072 0.239895 -0.194361 0.073902 0.115412 -0.061491 0.272440 0.183208 0.124866 -0.178333 -0.074932 -0.374580 -0.015754 -0.028799 -0.082312 0.158770 0.017563 -0.068485 -0.014636 0.231650 -0.192436 +PE-benchmarks/birthday-paradox.cpp__find(double) = 0.140662 0.555214 0.035692 -0.677634 -0.795175 0.485366 -1.019932 0.075618 -0.316423 0.103225 -0.452740 0.599464 -0.186311 0.316605 -1.083211 -0.494275 -0.548588 -0.274546 -0.447275 -0.173717 -0.518309 0.356897 0.102374 -0.701524 0.699243 -0.725040 -0.333510 0.568756 0.024949 -0.391557 0.146223 -0.006270 -0.311440 0.768937 -0.504518 0.364060 0.911524 0.380742 0.366425 -0.063051 -0.565393 -0.601939 0.652723 -0.105938 0.421933 -0.906967 -0.346179 -0.227264 -0.714611 0.393432 -0.215087 -0.897300 -0.753185 0.171270 0.720816 0.090632 -0.881052 0.526065 0.144291 0.331282 0.017601 -0.214278 0.100934 -0.395434 0.597239 -0.657589 -0.741019 0.760485 -0.288970 -0.100968 -0.315811 -0.012915 0.577232 0.113139 0.105013 0.143967 -0.292119 -0.495414 -0.286790 -1.133234 -0.149777 -0.288052 0.897786 0.313498 0.448672 0.205432 -0.101073 -0.216578 -0.289504 -0.272831 -0.364937 -0.125313 0.636487 0.233997 -0.199525 -0.259752 0.390151 -0.183124 0.504081 0.709086 0.603447 -0.275611 0.145697 -0.363170 -0.191214 0.169444 -0.176468 -0.247780 0.402086 -0.448232 -0.210747 0.215990 -0.688487 0.106841 -0.081625 0.373075 -0.283302 -0.194010 -0.282960 0.186368 -0.938337 -0.594164 0.038452 -0.210407 -0.083425 -0.335093 0.150744 -0.427989 0.518064 -0.292268 -0.127111 -0.416131 -0.301498 0.365161 -0.165179 -0.647094 -0.853990 -0.840225 -0.281697 -0.584223 -0.358816 -0.040092 -0.438202 -0.282242 -0.099484 0.161290 1.233492 -0.233729 -0.189431 0.088949 0.001897 0.296170 0.853297 0.358017 0.236254 -0.196032 -0.180559 -0.097846 -0.225234 0.213517 -0.674959 -0.703677 -0.010655 0.123176 0.332878 -0.356161 -0.315900 -0.101307 0.337592 0.080269 0.017025 0.105768 -0.243039 0.477107 -0.047438 1.031934 0.354756 0.914493 -0.767748 -0.580302 0.784059 0.018139 0.508628 -0.026115 -0.387627 0.105530 -0.113175 -0.027127 -0.202041 0.304254 0.331700 0.067409 0.297571 0.387937 0.140887 -0.476880 -0.299625 0.594590 0.470883 -0.487439 0.881325 -0.133508 0.741138 0.602647 0.036435 -1.074935 -0.168177 -0.047363 -0.123823 0.424715 -0.030298 -0.314007 0.534963 0.173999 0.210362 -0.648469 -0.092509 0.568726 0.487220 -0.056304 -1.125829 -0.297238 0.155672 0.359132 0.633695 -0.006720 -0.299423 0.278213 -0.264819 -0.652923 1.093602 0.073475 0.033283 0.286467 0.640343 0.589539 0.432289 0.455001 -0.142340 0.340023 0.015753 0.870077 -0.107540 0.699297 -0.857932 0.294126 -0.507220 -0.260088 0.633328 0.283840 -0.527627 0.001259 0.057504 0.474421 0.504513 -0.877072 -0.244919 -0.003764 -0.659739 0.332145 0.042034 0.214766 0.120810 1.092390 0.085001 -0.063604 0.272534 -0.623084 0.106210 -0.408144 0.037301 -0.393406 0.281899 -0.403569 -0.667805 0.215002 0.530035 -0.495423 -0.129448 0.022390 0.454005 -0.484917 0.453814 0.033570 0.323049 -0.010598 0.226620 0.329231 0.138742 0.215454 -0.721425 0.302451 0.197335 -0.415993 -0.230753 -0.466758 -0.376108 0.308324 -0.409878 -0.133079 +PE-benchmarks/edit-distance.cpp__main = 0.366742 0.365349 2.434689 -2.326334 -2.148137 -0.032698 -2.979885 1.661315 1.304965 1.601297 0.895788 -3.006222 -5.184047 3.110379 -1.505359 -4.377844 1.238081 -0.589565 2.247805 -2.615581 1.128621 0.607122 2.242444 -0.608797 1.330911 -1.182833 -3.572479 1.818380 8.044125 -1.930679 -0.382931 1.678249 1.146035 2.556680 -2.932829 -2.077071 1.412018 4.422494 0.971722 0.452619 -3.024246 -2.637541 4.039171 1.015591 -0.737411 -2.496274 -1.303593 1.642473 -6.589135 0.189725 0.776547 1.132870 0.029745 -2.340044 -1.216158 3.976574 -8.917587 4.814157 -1.226450 0.527256 1.086509 2.185007 -0.390924 0.752874 3.888106 -1.518797 -0.322608 0.461382 -4.993342 -0.249274 0.886292 0.623646 5.006100 0.180054 -0.864519 2.908874 3.662870 -0.333970 2.287608 -5.968663 -2.022930 -0.237899 0.820735 0.101769 3.686845 0.392572 0.780742 -3.624854 -0.002794 -2.525590 4.533977 -3.680243 1.692585 3.132396 -3.766179 2.038711 1.406617 -3.443143 3.304882 1.038284 5.849020 1.185608 2.573913 1.232897 0.108621 0.920057 -0.710740 0.772497 -1.678530 -2.841043 -2.452874 -0.107122 -4.538431 0.073361 -1.576148 2.071475 4.806565 -1.876705 -0.575602 0.246570 -2.226531 -2.475976 0.225740 -0.266408 0.594134 3.272073 -0.418423 -1.215092 0.713139 5.663499 -1.206508 -0.583288 2.995726 0.721088 2.341633 -5.821505 -2.956777 0.200424 -0.927112 -2.230370 -2.447914 -3.161507 1.087567 -1.842118 -0.087772 3.190812 6.677165 1.535252 -2.228735 3.483809 -1.147829 2.472888 5.722807 0.069095 5.635271 -2.355635 -1.112010 -1.297741 -0.094870 1.884357 1.052719 1.200173 0.802740 0.157605 2.797126 0.414979 -4.037074 -1.613891 0.612389 -1.571493 -0.365027 -2.827609 -2.690703 1.996622 2.373995 3.416754 1.180795 5.487914 0.713014 -7.654121 3.117606 -0.078544 -0.434551 1.339099 -1.378550 0.821839 -1.099950 -3.332600 -1.677244 -3.192121 1.106804 -1.175129 0.546366 2.091737 2.699473 1.036827 -0.267530 2.351312 0.932478 -0.422437 2.091140 -6.115156 -1.409482 1.595975 -1.245671 -5.120259 2.396716 -1.856809 1.865410 5.046138 -1.673119 1.513553 -0.460752 -3.288001 -0.846716 -1.358148 1.842181 -2.019699 -1.741364 0.129000 0.033837 0.774876 2.102594 3.339775 4.659511 0.920405 -0.820122 2.603883 0.973386 -0.155162 3.253809 -1.214460 -0.508717 0.872635 0.790805 1.291956 0.100935 1.004382 3.725085 2.858133 -3.631023 2.876794 -0.426745 3.122369 -1.537709 -0.812872 -0.247500 -2.208128 2.478979 5.573776 -2.415560 -0.940791 2.657287 2.278869 2.674503 -5.236314 -0.060555 -1.711939 -0.267210 3.679938 0.083102 -0.053177 -0.086347 0.511520 2.027873 -4.699528 5.711004 -0.390354 -0.599564 -0.334143 -0.244876 -2.780789 1.694982 -5.289360 -1.303735 1.375077 1.861004 -3.218553 0.379824 0.117288 4.627097 -1.890752 2.372719 -4.411345 -1.484620 2.147990 0.686509 3.090769 1.770064 -1.385129 -6.964220 0.050846 -1.492634 -3.434845 -1.472633 -1.441276 -3.665415 1.116229 2.073440 -1.472533 +PE-benchmarks/edit-distance.cpp__editDist(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >, int, int) = 2.376892 0.863463 5.741993 -4.392338 -2.168426 0.620419 -2.303563 1.231714 2.658170 7.841153 1.473690 -4.286122 -9.397969 4.921883 -3.689354 -6.620391 4.667587 0.422621 4.226164 -5.084682 0.880069 0.889250 3.583209 -2.185800 3.366920 -2.995320 -4.129017 4.425484 10.845932 -2.141774 -1.134914 2.457408 1.465845 6.690925 -4.626568 -2.938154 1.093328 7.717962 -0.873133 3.783299 -8.080996 -5.054904 8.343362 2.312384 0.432181 -6.418283 -1.487760 3.344401 -8.682186 -2.950056 0.565788 -0.267895 1.993812 -5.651518 -2.691254 9.068274 -15.225598 4.854202 -1.846558 -1.544299 -1.115744 4.067897 2.502153 2.115116 3.454973 -4.901095 0.350870 0.997319 -9.025973 1.015782 -1.263655 -2.173192 6.170271 0.038064 -2.952118 4.672439 5.107553 -2.812185 3.967778 -8.967015 -3.105900 -1.912510 1.891727 -2.082939 5.495396 1.132897 4.130151 -8.860773 0.904089 -5.681083 9.018939 -6.469242 5.890517 6.037070 -4.449839 4.352751 2.723095 -3.540055 4.132444 1.170950 11.117141 3.206411 5.160560 0.367116 2.240780 2.477745 -3.629242 -1.876232 -4.230536 -4.835539 -2.987100 -0.893935 -7.890058 -0.256857 -5.686888 3.803176 8.488281 -3.903054 -1.655008 4.492841 -7.724859 -3.486905 1.293196 -0.949158 2.258076 6.861004 0.468624 -1.766788 2.559133 10.321653 -2.450664 -2.221670 3.965838 2.454008 2.285375 -8.731934 -3.120269 -0.357084 -0.608787 -5.158826 -6.265882 -8.081119 0.047518 -0.958603 -0.532233 6.635635 13.248715 2.383283 -5.035309 4.681592 -3.934821 2.415464 10.046486 0.976414 12.091058 -8.237906 0.717202 -3.496450 2.590496 5.360733 7.377548 0.263883 -0.313821 2.148783 3.660818 -0.803985 -3.845876 -2.858275 2.570655 -1.209919 -0.371490 -3.205664 -3.916999 4.556356 -1.017097 7.925933 -0.729710 11.695144 -1.214265 -13.162127 4.492954 -2.540375 -1.530514 1.070156 -1.904987 0.571195 0.733207 -6.636248 -4.200688 -6.171263 0.319348 0.219810 4.107469 -0.169028 3.887091 -0.009397 -3.254572 7.581435 0.599554 -1.153249 3.043452 -10.514852 -1.825024 3.109591 -1.731722 -10.020351 2.716948 -4.979054 2.307072 6.718615 -2.503427 4.623741 -2.617212 -5.624033 -0.510048 -2.679404 1.394028 -5.270744 -5.662679 1.003778 -0.445625 0.593933 3.367678 8.461725 9.029919 2.724716 -2.542051 2.400706 1.896129 -2.769428 0.968575 -0.077324 -0.433492 1.913539 1.598194 2.568757 -0.510708 2.136131 6.174949 2.888843 -3.376093 6.501552 -0.411976 5.200501 -4.097875 -0.533554 1.164902 -5.628476 4.298381 8.963570 -3.528282 -2.574063 4.775546 3.425859 2.103521 -8.546486 -0.013175 -3.225778 -1.048445 6.879617 2.564024 -0.534701 -2.116449 4.515866 4.118466 -11.542477 10.528186 -1.324669 -1.066969 2.556793 -1.521170 -1.947128 2.757073 -5.909531 -1.919049 1.946126 4.643981 -7.661155 0.625968 0.349705 8.258806 -0.909680 1.567172 -14.161799 -3.147026 2.409142 4.443932 5.553041 7.205435 -3.172130 -7.611285 -0.596769 -3.431074 -5.295667 -3.330130 -0.364758 -5.517698 1.006890 -2.019670 1.442341 +PE-benchmarks/edit-distance.cpp__min(int, int, int) = 0.138766 0.274985 0.072463 -0.507505 -0.659927 0.108026 -0.105061 -0.190916 0.036130 -0.195685 0.472023 -0.463029 -0.520809 0.734573 -0.153538 -0.606736 -0.043665 -0.390432 -0.134207 0.095327 0.022858 0.328797 -0.083997 0.085047 0.103877 0.149096 -0.363797 0.226545 0.864086 -0.582434 -0.596326 0.063651 0.067994 0.557750 0.001579 -0.231136 0.321801 0.915157 -0.195432 0.257190 -0.604453 -0.213647 0.377288 0.095197 -0.320069 -0.825876 -0.546591 0.370026 -0.677755 -0.009550 0.576783 -0.052451 -0.151680 -0.009438 0.319189 0.787980 -1.222355 0.921675 0.217081 0.376777 0.277731 -0.044772 -0.031613 -0.082392 0.270400 -0.380544 0.104834 0.110610 -0.432726 -0.125135 -0.159836 -0.657629 1.178155 0.167927 -0.417455 0.148418 0.110364 -0.617824 0.455842 -0.809846 -0.537305 0.126874 0.229364 0.327710 0.648299 -0.071092 -0.099119 -0.843859 -0.271096 -0.832863 0.305629 -0.661008 0.345693 0.592414 -0.739828 -0.021157 0.137787 -0.476198 0.645555 0.331603 0.728050 0.077832 0.272005 -0.038512 0.083727 0.197135 -0.145413 0.007447 -0.237957 -0.695088 -0.209525 0.244819 -1.224671 0.127010 -0.235183 0.304199 0.213104 -0.102665 0.144565 0.146627 -0.189881 -0.340659 0.021941 -0.062374 0.449065 1.051012 -0.133933 0.087931 -0.393584 0.703590 -0.064730 0.344743 -0.203058 0.132867 0.071046 -1.281264 -0.859940 0.071175 0.244025 -0.401785 -0.572102 -0.617451 0.174000 -0.398150 -0.287556 0.316356 1.075425 -0.361705 -0.557225 0.828329 0.429227 0.364962 0.802477 -0.158611 1.115343 -0.461617 0.123547 -0.049448 -0.207484 -0.297807 -0.294130 0.113421 -0.161600 -0.138588 0.152715 -0.918356 0.379361 0.087086 -0.322366 0.262596 -0.021398 -0.267725 -0.650993 0.714142 0.569458 0.517987 0.271919 0.860896 -0.309666 -0.841469 0.513645 0.391574 0.107889 -0.208323 -0.486069 0.352684 0.238847 -0.429787 -0.119063 -0.142696 0.092689 -0.476078 0.111671 0.554829 0.133683 0.088364 0.232679 -0.029354 0.797453 -0.049419 0.440672 -0.793446 0.175174 0.326849 -0.285567 -0.936808 0.246473 -0.495059 0.039221 0.576078 -0.291866 0.136575 -0.090653 -0.520080 0.002858 -0.247970 0.581157 0.109797 -0.250397 0.102181 -0.423415 0.086702 0.264831 0.474599 0.640247 0.550915 0.421897 0.034127 0.193665 0.046299 0.283606 -0.156842 -0.024040 0.322058 0.365109 0.328126 0.264688 0.051540 0.426650 0.263811 -0.166109 0.577578 0.417259 0.975195 0.015973 -0.129956 -0.135524 -0.357995 0.498888 1.167257 -0.614287 0.022443 0.276118 0.465525 0.101228 -0.781344 -0.009694 -0.287046 -0.541809 0.576230 -0.175988 0.010323 -0.134844 0.685884 -0.090217 -0.738623 0.532449 -0.036398 0.167504 -0.015441 0.059330 -0.167854 0.282958 -0.825438 0.229108 0.436498 0.596104 -0.275470 -0.471928 -0.111565 0.435277 -0.167069 0.347066 -0.609339 0.139496 0.563744 0.624986 0.437785 0.114024 -0.303049 -0.625754 0.124392 -0.094413 -0.196551 -0.160176 0.200848 -0.558986 -0.009600 -0.151585 -0.419066 +PE-benchmarks/edit-distance.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/quicksort-for-linked-list.cpp__main = 0.357480 0.875171 0.613401 -0.438931 -1.582892 -0.163084 -1.121477 -0.361493 -0.056088 0.166399 0.021849 -1.124099 -0.968494 1.194076 -1.370181 -1.328526 -1.067376 -0.161391 -0.280963 -1.291349 -0.002295 0.557720 0.063968 0.287090 0.166596 -0.465674 -0.240472 0.259271 1.875479 -0.558213 -0.077194 0.067268 0.653981 1.043192 -0.178836 -0.349690 0.579405 1.763782 1.077933 -0.415954 -1.409018 -1.322763 0.604498 0.231959 0.112944 -1.340828 -0.739465 0.534064 -2.402201 1.582535 0.238805 0.354687 -0.971949 -0.174638 0.548012 0.682247 -2.663245 2.938269 -0.178338 0.062303 -0.000422 -0.160602 -0.376105 -0.276687 1.289047 -0.577814 -0.173390 1.448328 -1.397389 0.793440 0.366652 -0.215371 1.907497 -0.164181 -0.789029 0.511322 0.612095 0.100975 0.605056 -2.442794 -0.787060 -0.036091 1.172961 0.901990 0.924127 0.673976 -0.291496 -1.535385 -0.161329 -1.214170 0.648856 -1.162094 0.531206 0.958105 -1.721793 0.679189 0.197372 -1.241170 1.382299 0.824980 1.223368 0.172214 0.767789 0.515403 -0.449548 0.263876 0.340928 0.167482 -0.096997 -1.188663 -0.967368 0.490202 -2.244947 -0.167346 -0.213785 1.353102 0.214128 -0.036362 0.177137 -0.221259 -1.681875 -1.702588 0.139432 -0.113772 0.847265 0.623350 -0.324316 0.508164 -0.565810 1.440460 -0.116693 -0.097531 -0.002988 0.086773 0.292884 -2.742173 -2.912077 0.076279 0.159758 -0.219407 -1.090398 -0.548362 -0.394342 -0.497108 -0.229333 0.960153 1.946574 -0.082071 -1.274756 1.580963 -0.278942 0.837051 2.161927 0.165470 1.556909 -0.390722 -0.151025 -0.116090 -0.264840 0.077738 -1.389721 0.167928 -0.446311 -0.005400 0.992795 -0.004719 -1.260714 -0.644248 -0.579039 -1.377751 -0.023999 -0.614257 -0.228414 1.120469 0.512275 1.465103 -0.220327 1.619715 -0.845798 -2.428951 0.430066 -0.990294 0.381549 0.757376 0.141154 -0.099395 0.636197 -1.566286 -0.622743 0.262539 -0.202029 -0.707056 0.139538 1.575682 0.217297 0.124310 0.717713 1.188098 1.320963 -0.216909 0.814351 -1.617062 0.019742 0.790405 0.246767 -2.270333 0.865246 -0.240742 -0.013064 0.820617 -0.272788 -0.281861 0.352748 -0.472961 -0.672726 -0.873518 1.275805 0.059521 0.783416 0.414114 -1.245579 0.407356 0.083741 0.526981 1.898533 0.329859 0.644701 0.354616 0.525657 -1.018870 2.549958 0.348732 1.074195 -0.209379 0.352328 1.167020 0.468286 -0.085845 0.754808 1.136885 -1.172398 0.919833 0.155621 2.132513 -1.945380 0.388719 -0.988670 0.022282 0.844368 2.573776 -1.331254 -0.159675 0.661007 0.917458 1.212194 -1.824425 -0.632481 -0.481163 -0.560475 0.801168 0.004076 -0.854679 0.445042 0.865793 0.252692 -0.728793 1.577354 0.198744 -0.255005 -1.125533 -0.222083 -1.601021 1.236255 -1.685888 -0.470595 0.596455 0.607066 -0.796166 -1.035659 -0.352965 1.426144 -0.476046 0.936934 -0.505453 0.104557 1.776270 0.934003 0.530483 -0.119156 -0.450408 -2.590241 0.412599 -0.163649 -1.010224 0.568560 -0.023631 -1.176994 0.702021 1.306220 -2.121594 +PE-benchmarks/quicksort-for-linked-list.cpp__push(Node**, int) = 0.345873 0.308940 1.653110 -1.764122 -2.445686 0.523536 -0.062694 -1.032843 0.440840 1.243289 1.134482 -1.024936 -0.475424 2.742977 -0.775892 -1.303721 -0.235616 -0.600315 -0.076311 -0.422659 0.350599 1.192699 -0.384882 0.388808 -0.101883 -0.561203 -0.000562 1.189257 0.454387 0.002739 -1.092544 -0.546707 -0.241819 2.120983 0.264174 -0.069902 0.270646 3.423785 -1.962866 2.589335 -2.330049 -2.039073 1.189542 0.220713 -0.083703 -2.296245 -2.037544 0.917317 -0.712352 -0.675096 1.700904 -0.001066 0.446372 -0.029840 1.194225 0.948883 -2.956743 0.792412 0.324811 -0.654635 -0.127391 -0.375470 -0.139207 1.010767 -1.660638 -1.008666 0.762440 1.090870 -0.484049 0.145066 -0.005952 -2.620569 2.683079 0.627436 -1.400818 0.371093 1.727088 -2.472748 2.063726 -1.299865 -2.402554 -0.096802 -0.213154 -1.364707 1.992324 -0.095606 1.733967 -3.183587 0.859500 -3.097419 1.505126 -2.200141 0.835917 2.250217 -1.724944 0.569591 1.283198 1.943363 2.147644 0.162873 1.991379 1.822233 1.150267 0.665362 1.718030 1.411351 -1.289793 -1.150333 -2.173177 -2.516849 0.189495 -1.251721 -3.827312 0.281063 0.350718 -0.039654 -0.048241 -0.332875 0.007556 2.641331 -2.698431 0.263758 0.982359 -0.314438 0.260019 2.148745 -0.894208 0.618140 -0.687380 2.425392 -1.413835 1.040273 -0.106968 0.778770 -1.711873 -1.178640 -2.314061 0.813551 0.724734 -1.294670 -2.016516 -2.878390 -0.373026 1.324562 -0.560332 2.003134 4.077606 -1.388921 -2.287559 2.257079 1.455484 -0.613084 1.913420 0.298868 2.729809 -1.104622 -0.350620 -1.953380 -0.809614 -0.368387 2.048148 0.970411 -0.354742 1.333594 -0.078810 -3.127540 3.431837 -0.925036 -1.320284 -0.838370 0.580416 -1.264132 -1.009305 2.735672 -0.950525 1.793181 -0.529216 2.897684 -1.116699 -1.817994 0.681241 -2.059323 0.137075 -1.922443 -0.459343 0.612613 1.918473 -1.643242 -0.941395 -1.017902 -1.429907 -0.774025 0.388424 -0.935331 0.582397 0.568477 0.841250 2.057934 2.971231 0.974120 0.067265 -2.167419 0.864340 1.074473 -0.720216 -2.582816 0.156345 -1.424559 -0.003717 -0.484022 -0.244106 0.866157 -1.592030 -1.161533 -0.708056 -1.130795 0.532444 0.446374 -3.372156 0.538508 -0.530755 1.917488 0.839753 1.173279 2.872573 2.354144 2.196805 0.190890 0.336740 -0.431234 -0.418956 0.743374 1.234490 -0.048623 0.848887 2.843349 1.027295 0.410363 1.728519 1.674745 0.716005 1.854781 0.263253 3.316089 0.011415 -0.027908 -0.632605 0.107405 1.628770 4.066866 0.165735 0.807017 0.978503 1.018366 -0.888027 -1.782418 0.171893 -0.942183 -0.207687 1.358193 0.799829 -0.578253 -0.451014 2.259983 0.256698 -3.045166 0.756699 0.001523 0.803381 1.639426 -0.236741 0.248976 0.723061 -1.610214 2.455615 1.479694 1.208824 -1.814823 -1.330944 -0.059417 0.953661 1.603355 1.489419 -3.371606 1.128631 1.109736 2.133765 0.255724 2.324342 -1.922163 -0.860395 1.016740 -1.351877 -0.960909 0.343707 1.035931 -1.515246 0.683365 -2.083036 -2.119010 +PE-benchmarks/quicksort-for-linked-list.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +PE-benchmarks/quicksort-for-linked-list.cpp__quickSort(Node*) = 0.211268 0.348196 0.301551 -0.500607 -0.911079 0.044621 -0.139275 -0.293889 -0.025807 0.201595 0.337174 -0.511267 -0.285776 0.935711 -0.363458 -0.481111 -0.290858 -0.417638 -0.190594 -0.106940 0.048455 0.427108 -0.092389 0.166357 -0.023848 0.044412 -0.197840 0.165827 0.442421 -0.376005 -0.386547 -0.087168 0.134534 0.582226 0.048526 -0.205848 0.152979 1.039381 -0.271212 0.443387 -0.756415 -0.541344 0.294543 0.043589 0.011931 -0.921958 -0.622599 0.434084 -0.332674 -0.002589 0.465456 0.124448 -0.253434 -0.013339 0.357488 0.385395 -1.132573 0.890918 0.199650 0.070903 0.107801 -0.076691 -0.079474 0.098528 -0.021531 -0.362478 0.058373 0.356845 -0.339068 0.064273 -0.003225 -0.635220 0.956373 0.109467 -0.441427 0.143638 0.328249 -0.528089 0.609772 -0.965253 -0.670357 0.092550 0.140332 0.081578 0.586368 0.079552 0.125939 -0.935513 0.128824 -0.909159 0.324694 -0.706020 0.167639 0.666119 -0.595652 0.107403 0.236177 -0.033014 0.883615 0.351359 0.629720 0.356665 0.401904 0.216326 0.201648 0.372104 -0.187777 -0.111311 -0.425459 -0.847822 -0.090192 0.056762 -1.171240 0.167120 0.140038 0.218883 0.044850 -0.055954 0.157154 0.361158 -0.735626 -0.362602 0.224349 -0.067730 0.239470 0.759287 -0.292034 0.212104 -0.463186 0.705890 -0.199640 0.389051 0.049819 0.174008 -0.313213 -1.020718 -1.013549 0.237217 0.196501 -0.331582 -0.546831 -0.800188 0.062428 -0.036025 -0.318340 0.493138 1.189711 -0.418818 -0.671311 0.869231 0.529095 0.011057 0.715206 -0.051057 1.018049 -0.260506 -0.151670 -0.177447 -0.357501 -0.204690 -0.014557 0.255942 -0.196736 0.124796 0.108901 -1.061574 0.476409 -0.126815 -0.463843 -0.108432 0.107362 -0.340466 -0.367688 0.722926 0.157404 0.569713 0.014414 0.844767 -0.273032 -0.689271 0.341178 -0.323980 0.151760 -0.268693 -0.201971 0.219626 0.473648 -0.560518 -0.166006 -0.073455 -0.313853 -0.505628 0.086548 0.045623 0.192281 0.219420 0.394084 0.398167 0.915604 0.096635 0.295037 -0.773985 0.244276 0.309394 -0.121840 -1.027378 0.148475 -0.442710 0.007610 0.211595 -0.213669 0.092266 -0.154459 -0.372573 -0.110919 -0.423093 0.408864 0.164198 -0.182494 0.106159 -0.446231 0.574677 0.157717 0.400680 0.784693 0.662653 0.647883 0.145484 0.127053 -0.113205 0.358407 0.087508 0.266170 -0.044949 0.356712 0.608782 0.351715 0.096315 0.563943 0.418995 -0.165868 0.628439 0.114453 1.101640 -0.292907 -0.002395 -0.296567 -0.009308 0.532371 1.330529 -0.357764 0.051417 0.280466 0.257061 -0.035297 -0.510464 -0.035584 -0.277104 -0.343720 0.446940 0.124581 -0.146194 0.001812 0.602356 -0.068153 -0.743484 0.432780 0.021029 0.211439 0.147730 0.018119 -0.107593 0.335998 -0.661993 0.342759 0.558695 0.448068 -0.455724 -0.620911 -0.069292 0.452539 0.135069 0.559700 -0.834362 0.289663 0.651937 0.581342 0.036928 0.287730 -0.538794 -0.683579 0.393347 -0.105634 -0.320462 0.102229 0.273697 -0.532904 0.132098 -0.115357 -0.723299 +PE-benchmarks/mergeSort_LinkedList.cpp__main = 0.245158 0.772294 0.409676 -0.435982 -1.285461 -0.298882 -0.775950 -0.103788 -0.054398 -0.264237 0.045538 -1.143639 -1.151892 1.021870 -1.033110 -1.335504 -0.811583 -0.268665 -0.371752 -0.952243 -0.070750 0.462642 0.109778 0.216997 0.325354 -0.234530 -0.384300 0.407866 2.115867 -0.776935 -0.179912 0.205475 0.661358 0.977136 -0.314714 -0.438758 0.701607 1.714143 1.001928 -0.447554 -1.031642 -0.881510 0.719156 0.173914 -0.230286 -1.258547 -0.707683 0.579492 -2.577262 1.410995 0.305643 0.429796 -1.013146 -0.308557 0.512908 1.049421 -2.664643 2.859200 -0.066161 0.449196 0.121907 -0.197066 -0.450916 -0.519723 1.362929 -0.586440 -0.193668 0.902604 -1.451581 0.663303 0.205307 -0.107821 2.012855 -0.097741 -0.671199 0.622018 0.466981 0.044520 0.511075 -2.199425 -0.603168 0.003590 1.158574 1.028864 1.105254 0.386112 -0.630858 -1.391416 -0.506650 -1.049385 0.505948 -1.324605 0.507279 1.031217 -1.729187 0.703589 -0.062979 -1.582333 0.973042 0.795270 1.215450 -0.041152 0.738310 0.331303 -0.480961 0.105008 0.306210 0.134239 0.000399 -0.993481 -0.993084 0.598915 -2.157431 -0.117225 -0.384278 1.303044 0.452220 0.009066 0.105248 -0.468986 -1.062689 -1.443095 0.067590 -0.140583 0.885485 0.911032 -0.298812 0.293195 -0.641013 1.373124 0.188221 0.064338 -0.148721 0.043996 0.575586 -2.792288 -2.511440 -0.166534 0.126622 -0.130199 -1.090765 -0.407284 -0.256954 -0.861521 -0.240274 0.730611 1.768389 0.070421 -1.032977 1.580169 -0.226728 1.303122 1.929212 0.047683 1.542267 -0.430227 -0.022662 0.074725 -0.159442 -0.002100 -1.553392 0.068276 -0.511283 -0.234457 0.897807 0.020748 -1.185716 -0.376830 -0.381758 -0.920599 -0.169899 -0.603811 -0.628914 1.283427 0.857093 1.443452 0.009854 1.552734 -0.663998 -2.346261 0.616717 -0.216901 0.486592 0.499491 -0.133769 0.044578 0.350769 -1.361692 -0.608812 0.198168 0.193051 -0.712001 0.147301 1.806622 0.116011 -0.055052 0.731225 0.692482 1.117293 -0.474427 0.944426 -1.725932 0.000421 0.681825 0.108977 -2.060151 1.027891 -0.089257 -0.055142 1.063205 -0.304516 -0.390339 0.380766 -0.630801 -0.386078 -0.680224 1.194491 -0.018229 0.522233 0.333535 -1.089083 0.027434 0.247792 0.542026 1.805391 0.074495 0.406173 0.312186 0.485675 -0.692754 2.123226 0.109228 0.589186 0.107378 0.357697 0.825514 0.441564 -0.201685 0.594266 0.973277 -1.318216 0.828733 0.591098 1.933976 -1.387185 0.083372 -0.713205 -0.241069 0.809485 2.258553 -1.418781 -0.252440 0.719072 1.076440 1.205953 -1.914529 -0.748031 -0.499298 -0.696737 0.923136 -0.486557 -0.887938 0.564222 0.855546 0.073055 -0.714386 1.398822 0.195914 -0.208146 -1.245086 -0.108559 -1.483934 1.268801 -1.792738 -0.508443 0.377171 0.608369 -0.520146 -0.833787 -0.335782 1.243647 -0.713914 0.783960 -0.371904 -0.136597 1.555323 0.918969 0.801248 -0.262999 -0.141821 -2.380982 0.216394 -0.051127 -0.865741 0.259354 -0.049660 -1.186936 0.502532 1.140983 -1.866977 +PE-benchmarks/mergeSort_LinkedList.cpp__push(Node**, int) = 0.359538 0.335540 1.020000 -1.199703 -1.709791 0.314694 -0.180415 -0.662964 0.210686 0.279871 0.859154 -0.798743 -0.286367 1.832788 -0.612440 -0.890237 -0.246495 -0.673590 -0.202498 -0.315329 0.193306 0.728816 -0.273963 0.273174 -0.074390 -0.254630 -0.116730 0.777446 0.651730 -0.343612 -0.866963 -0.249737 -0.073733 1.428220 0.222325 -0.401264 0.414928 2.381598 -1.026797 1.130504 -1.327672 -1.089621 0.793421 0.107622 -0.282078 -1.633736 -1.603283 0.676425 -0.726677 -0.083001 1.211281 0.020180 0.087782 0.016931 0.725085 0.850785 -2.236661 0.977028 0.310521 -0.056157 0.056284 -0.293954 -0.110958 0.402638 -0.627873 -0.696010 0.624447 0.742710 -0.394927 0.064727 -0.046999 -1.719735 2.081723 0.361575 -0.778685 0.254875 1.054510 -1.695094 1.370708 -0.952037 -1.600161 0.039009 -0.048937 -0.695079 1.564001 -0.293675 0.710933 -2.079961 0.347759 -2.132389 0.734842 -1.621259 0.494401 1.479199 -1.490708 0.318913 0.718601 0.903304 1.404422 0.297081 1.429737 1.000543 0.685681 0.402280 1.044722 0.753530 -0.572599 -0.478211 -1.281835 -1.688086 -0.109564 -0.573544 -2.789206 0.313462 0.128552 -0.142071 -0.153647 -0.169663 0.081350 1.577976 -1.316805 0.047569 0.549635 -0.210859 0.184417 1.652336 -0.645365 0.394286 -0.704586 1.640445 -0.740915 0.768741 -0.145322 0.421124 -0.817098 -1.502594 -1.896851 0.499684 0.574740 -0.826841 -1.435928 -1.658597 -0.121094 0.307572 -0.449918 1.286317 2.667549 -0.862620 -1.530689 1.680034 1.310134 -0.098030 1.561673 0.109496 2.028962 -0.691609 -0.240742 -1.074336 -0.648866 -0.458460 0.180512 0.528339 -0.104865 0.679643 0.129568 -2.020146 2.398995 -0.531361 -0.920691 -0.009287 0.359360 -0.811369 -1.026136 1.928648 0.333133 1.221545 0.145580 2.014458 -0.658532 -1.437680 0.566729 -0.638584 0.310391 -1.049295 -0.347807 0.398071 1.171496 -0.898799 -0.663446 -0.525016 -0.690258 -0.654552 0.242267 0.258800 0.493986 0.408342 0.688138 0.647677 2.155756 0.450205 0.410838 -1.606170 0.557395 0.893107 -0.439710 -1.841464 0.240492 -0.865211 0.034495 -0.131256 -0.198588 0.527111 -0.940506 -0.894820 -0.396395 -0.618175 0.581603 0.433170 -2.000978 0.393483 -0.673129 1.055697 0.531734 0.792270 2.014690 1.467532 1.455999 0.087311 0.274993 -0.150604 0.056101 0.190135 0.676354 0.250481 0.590263 1.773194 0.694869 0.255689 1.030472 1.120572 0.287747 1.230535 0.461331 2.357318 -0.018930 -0.064396 -0.594379 -0.014777 1.213226 2.883296 0.004253 0.405534 0.622515 0.916108 -0.375125 -1.674376 0.017021 -0.564343 -0.236723 0.858156 0.304228 -0.403258 -0.199700 1.505656 0.099318 -1.901427 0.606245 0.074300 0.478903 0.770445 -0.083686 -0.014152 0.567626 -1.296632 1.438067 1.000341 0.872406 -1.065593 -0.957650 -0.043602 0.805885 0.409114 1.079590 -2.007711 0.955461 0.913524 1.324716 0.325654 1.134813 -1.212150 -0.911941 0.707449 -0.711759 -0.604459 0.406914 0.725127 -1.419568 0.480683 -0.990997 -1.539303 +PE-benchmarks/mergeSort_LinkedList.cpp__SortedMerge(Node*, Node*) = 0.507730 0.613468 2.693072 -2.633206 -3.293083 0.760779 0.237105 -1.377205 0.836300 3.458032 1.236319 -1.371531 -1.726526 3.967867 -1.123897 -2.309281 -0.111711 -1.268119 0.121275 -0.928977 0.328881 1.852753 -0.389198 0.469841 0.194020 -1.046492 0.019586 1.866979 0.455875 0.012075 -1.420295 -0.795856 -0.465132 3.402993 0.000338 0.310052 0.212344 5.235353 -3.243352 4.640704 -4.226353 -3.967019 2.045848 0.429529 0.198302 -3.088280 -1.728481 1.512675 -1.497456 -1.309063 2.386695 0.029054 0.574850 -0.451632 1.890387 1.573694 -4.990100 1.392233 0.127116 -1.274732 -0.636238 -0.604661 0.100960 1.694349 -2.422025 -1.699314 0.972809 1.374436 -1.553914 0.556745 -0.146829 -3.648531 3.231701 1.168893 -2.314164 0.815888 2.623713 -3.174173 3.038942 -2.966215 -3.451785 -0.422814 0.052384 -2.250930 2.855180 0.614573 2.832079 -5.115559 1.486214 -4.441949 2.862313 -3.186261 1.692979 3.622424 -1.794966 1.248448 1.901323 2.661930 3.025737 -0.423273 3.154423 2.652532 2.273970 1.131222 2.345650 2.354982 -2.664710 -2.105509 -3.381021 -3.688596 0.313308 -1.935486 -4.768271 0.100927 0.201154 0.552500 0.941262 -0.660762 -0.537412 3.601650 -5.540140 -0.335423 1.373116 -0.510955 1.101673 2.950406 -1.177400 0.968193 -0.404036 3.953133 -2.178321 1.328545 -0.223186 1.303530 -2.346987 -0.833527 -3.243923 0.949796 0.986093 -2.022669 -3.176615 -4.847586 -0.901982 2.383843 -0.709289 3.881983 6.554765 -1.876971 -3.497775 3.390020 0.504265 -0.600921 2.854863 0.533170 3.877783 -2.080711 -0.219843 -2.948382 -0.573995 0.030926 5.027434 1.500812 -0.887476 2.068746 0.060185 -3.196350 3.080062 -1.259084 -1.693234 -2.733266 0.721259 -2.121146 -1.099806 3.944313 -3.147424 3.004373 -1.365726 4.588523 -2.150330 -2.966071 1.169471 -4.471873 -0.004790 -3.159659 -1.110311 0.792783 2.804541 -3.227653 -1.499086 -2.024866 -2.140028 -1.009499 0.732779 -2.576654 0.733663 0.483202 1.040823 4.969063 4.104740 1.385569 -0.252658 -3.584533 1.197620 1.348005 -0.990898 -3.898671 0.391522 -2.139847 -0.144156 0.208692 -0.442365 1.266170 -2.330947 -1.770937 -0.900217 -1.833966 0.637137 0.174318 -5.376856 0.726082 -0.324813 2.661024 1.605054 2.017988 4.131042 3.363992 3.005527 0.199829 0.448953 -1.017700 -0.662836 1.353821 1.873994 -0.230390 1.360116 4.159819 1.528165 0.499973 2.924952 2.671884 0.322821 2.977513 -0.077386 4.824020 -0.623113 0.092134 -0.642986 -0.111530 2.135738 5.702176 -0.723826 1.074270 1.913261 1.376861 -1.148840 -1.969923 0.098694 -2.023915 -0.000642 2.133108 1.400938 -1.231143 -0.679238 3.678972 0.466800 -4.989835 1.499831 -0.135184 1.172287 2.512643 -0.560378 0.114403 1.288947 -2.882492 3.583373 2.097133 1.865963 -2.894186 -1.410007 -0.164190 1.642893 2.798582 1.901961 -5.589054 0.626256 1.534963 3.540588 0.915176 4.187131 -2.705719 -1.307540 1.202765 -2.421352 -1.608632 0.198478 1.712020 -1.657335 1.156300 -3.523597 -2.808287 +PE-benchmarks/sudoku.cpp__main = 0.258607 0.132510 0.301747 -0.541889 -0.424197 0.322649 -0.367724 -0.264751 0.133783 0.370241 0.101552 -0.212443 -1.195552 0.430310 -0.269987 -0.957100 0.056624 -0.481687 0.067278 -0.396448 -0.268034 0.131677 -0.059001 -0.070101 0.251134 -0.341484 -0.165235 0.306012 0.997264 -0.481928 -0.500403 -0.007618 -0.148055 0.982925 0.016563 0.039800 0.393475 1.391245 0.445858 0.419750 -0.768271 -0.994612 0.583058 0.069074 -0.129204 -0.093851 0.406192 0.402543 -1.368936 0.293106 0.460354 -0.219974 -0.192065 -0.221795 0.229199 0.739684 -1.583914 1.202508 -0.136862 0.207006 -0.158138 -0.376041 0.017157 -0.033214 0.399701 -0.524293 0.295081 0.491078 -1.227134 0.196315 -0.329063 -0.497237 1.119563 0.420414 -0.492048 0.248555 0.330736 -0.175430 0.301492 -1.040874 -0.747362 -0.089376 0.456399 0.044366 1.006383 0.365056 0.113790 -1.299795 -0.002951 -1.124233 0.536608 -0.686983 0.848740 0.893584 -0.684680 0.407478 0.323629 -0.135561 0.157090 -0.059534 1.096757 -0.086760 0.205906 0.192280 0.200346 -0.024814 -0.313330 -0.163372 -0.161707 -0.553689 -0.470011 0.134838 -0.934515 -0.062357 -0.742683 0.882196 0.411570 0.303768 -0.452814 -0.198984 -1.477869 -1.057462 -0.182053 -0.176516 1.215109 0.605965 -0.110305 0.303674 0.110924 1.165429 -0.220158 -0.133572 -0.517337 0.271789 0.679062 -0.508355 -1.351781 -0.073637 0.537581 -0.493084 -1.135256 -0.534623 -0.485294 0.000586 -0.112643 1.368353 1.585897 -0.180221 -0.499154 1.005231 -1.150740 0.980473 1.388340 0.156081 0.946910 -0.743173 0.358367 -0.098740 0.268030 -0.046607 -0.335775 -0.015878 -0.288011 0.021365 0.569097 1.170606 -0.649996 -0.153600 -0.291659 -0.973746 -0.223288 -0.507783 -0.646906 0.868180 -0.361515 0.870120 0.329757 1.428399 -0.717523 -1.261698 0.549092 -0.145961 0.156751 -0.218713 -0.324809 -0.137429 0.284012 -1.043388 -0.609976 -0.147823 0.216875 -0.256000 0.358373 1.122160 0.068053 -0.035414 0.125885 1.103052 0.903165 -0.091268 0.130805 -1.144978 0.142769 0.376397 -0.295721 -0.576714 0.370858 -0.270088 -0.078689 1.110630 -0.091498 0.185169 -0.136650 -0.583694 -0.214618 0.010141 0.769234 0.110510 -0.704157 0.218635 0.041015 -0.420567 0.579296 0.665265 0.905905 0.425913 0.328986 -0.176475 0.223615 -0.143564 0.569158 -0.106142 0.230336 0.783617 0.307536 0.611541 0.350307 0.111861 0.560216 0.590358 -0.397617 0.750861 0.268650 1.301044 -0.774842 -0.014107 -0.163478 -0.499223 0.578657 1.261733 -1.482921 0.110856 0.604715 0.694204 0.386919 -0.910560 -0.176635 -0.626567 -0.039170 0.268795 -0.019486 -0.169776 -0.250671 1.134204 0.048798 -1.136307 0.920462 0.050454 0.167959 0.079903 -0.171840 -0.518439 0.508652 -1.258695 0.330767 0.399918 0.537689 -0.477484 0.122625 -0.152294 0.784660 -0.625624 0.115583 -0.213599 -0.202853 0.507716 0.947628 1.206420 -0.043161 -0.217947 -0.898155 -0.045539 -0.705463 -0.264139 0.065685 0.495960 -0.528297 0.248009 -0.246053 -0.647294 +PE-benchmarks/sudoku.cpp__isSafe(int (*) [9], int, int, int) = 1.413627 0.486685 1.345503 -1.247561 -0.373573 0.789964 0.169171 -1.758479 0.571317 3.407534 1.143317 -1.018878 -0.271487 2.196894 -1.330852 -1.012050 1.410462 0.143276 0.449219 -0.850468 0.240782 0.571747 -0.209440 -1.213860 0.683063 -0.742680 0.818023 0.718209 -0.667994 0.455830 -1.704219 0.151971 -0.023331 2.785661 0.261109 0.364419 -0.458030 2.057598 -1.865887 2.988301 -3.973700 -2.119835 1.905018 0.732685 0.951203 -2.335040 -0.729801 0.607536 0.318513 -1.396123 0.297987 -1.564511 0.733901 -1.068244 -0.016152 2.315832 -2.858830 0.200848 0.211339 -1.148696 -1.551519 0.107686 1.951257 0.990675 -1.494822 -1.695334 1.091028 1.550809 -1.217953 1.237096 -1.909885 -3.580831 1.184928 0.559163 -1.393328 0.137501 -0.221981 -2.831797 1.332976 -1.776892 -1.114431 -0.774966 1.247910 -0.555953 0.421155 1.464320 2.707196 -3.795958 0.498920 -3.031648 2.428837 -1.563814 2.813295 1.756359 -0.992080 0.506182 0.934490 2.019437 1.713666 0.910254 2.356113 1.800080 0.863090 -1.356351 1.538913 1.751596 -1.626754 -1.947882 -0.930128 -1.350316 -0.152861 -0.493442 -3.172441 0.141220 -2.683716 0.621227 0.040968 -0.693277 0.147772 3.015759 -4.284613 -1.884703 0.403771 -0.002902 1.916891 1.952184 0.365465 1.020074 0.045330 2.202621 -0.353983 -0.904735 -0.791582 1.118732 -2.415077 -1.904591 -1.589156 0.297606 1.204772 -2.461597 -2.681399 -3.783133 -1.138672 1.553945 -0.490324 2.464622 3.336282 -0.626107 -2.323834 0.870720 0.026904 -1.079234 3.239603 0.371259 3.859982 -3.905964 2.401568 -0.654739 1.831007 0.837280 2.633676 -0.950635 -1.077768 1.170024 -0.026512 -2.536012 2.453743 -0.218560 0.386606 -0.718310 0.234364 -0.083452 -0.458392 2.236893 -2.674736 2.498651 -2.319600 3.426543 -3.210237 -2.195528 0.847295 -3.218963 -0.688647 -0.653704 -0.059791 -0.581151 3.151131 -2.543204 -1.357368 -0.223906 -1.460021 0.784192 2.045454 -1.406942 -0.137100 -0.694085 -1.598135 3.238057 1.026536 -0.160483 0.551509 -1.731398 0.286541 1.861283 0.024692 -3.280867 -0.263648 -2.801490 -0.137406 -0.980401 -0.243457 1.699970 -2.030527 -1.358034 0.049747 -0.813658 0.893133 -1.165132 -1.985177 1.039798 -1.330155 0.438950 0.420968 2.852757 2.098945 1.973294 0.098606 -1.720410 0.936123 -2.813936 -1.119793 1.566922 1.344658 0.388858 0.524739 2.334519 -0.138236 0.369261 1.018127 -0.101398 1.038014 2.449994 0.341044 2.064636 -1.796956 1.210877 0.182925 -1.896689 1.759819 3.165593 -0.814639 -0.979762 0.585610 0.203253 -1.142353 -1.318662 -0.433493 -0.601633 -1.477570 0.946675 1.474832 -0.159788 -1.745404 3.829471 1.396904 -3.881402 2.276462 -0.475868 0.048327 2.260539 -1.331424 0.684353 0.917943 -0.085453 0.899686 0.562242 2.310664 -2.227504 -1.395288 -0.419233 1.771801 1.903635 -0.944984 -4.197549 1.457385 1.378824 3.201015 1.351660 2.762709 -1.658247 0.919704 -0.861978 -1.161378 -0.698758 -0.497238 1.715444 -0.574548 -0.198782 -3.212732 0.347087 +PE-benchmarks/sudoku.cpp__SolveSudoku(int (*) [9]) = 1.228828 0.509932 1.824214 -1.668823 -0.702406 0.471973 0.974088 -1.233538 0.456615 4.556139 0.935317 -1.215887 -1.785491 3.148327 -0.896335 -1.590904 1.119331 -0.737350 0.128016 -0.772017 -0.301187 1.131902 -0.239461 -1.198333 1.329122 -0.758340 0.238506 1.663698 -0.512641 0.025008 -1.274401 -0.316572 0.017317 3.555718 -0.312793 0.295557 -0.157494 3.742534 -4.121977 4.278755 -4.189799 -3.741546 3.401582 0.517786 0.331159 -1.881596 -0.464879 1.473442 -1.140310 -2.081842 0.860878 -0.794079 0.529658 -1.950749 0.579450 3.049534 -4.988490 0.901239 0.303366 -1.306354 -2.212644 -0.541774 1.511031 0.494739 -1.754188 -2.254293 0.747088 0.548879 -1.980612 0.776216 -1.822024 -3.478163 1.543280 0.771507 -1.381226 0.951984 0.339025 -2.500525 2.027617 -2.446659 -1.795202 -1.144626 1.036914 -1.565176 1.627077 1.739401 2.560608 -4.884831 0.804139 -3.681355 2.964068 -2.350865 2.929750 3.056506 -1.242959 1.590786 1.166139 1.981362 1.227367 -0.200098 3.129864 1.534049 1.741939 -0.191271 1.868453 2.472069 -3.181117 -2.562191 -2.426618 -2.274944 0.457108 -1.095735 -2.867699 0.002923 -2.297446 0.499370 1.517389 -1.014758 -0.832825 3.045377 -5.646280 -0.810960 0.938871 -0.536438 2.241230 2.569918 0.030064 0.315557 -0.005007 3.011850 -0.920226 -0.053310 -0.857463 1.585802 -1.788497 -1.639088 -1.420151 0.044623 0.851618 -2.808476 -3.313659 -5.143079 -0.753843 2.022000 -0.862848 3.613057 5.435218 -1.057329 -2.828271 2.149022 -0.704917 0.092797 3.073351 0.585693 4.404340 -3.743637 1.622825 -1.138129 1.134170 1.315713 3.982130 -0.265630 -1.706941 1.488929 0.242376 -1.561413 2.276115 -0.307597 0.046007 -2.015587 0.671194 -1.157362 -0.819429 3.386394 -3.328302 2.998276 -1.926119 4.543113 -2.985877 -2.612742 1.452885 -4.355086 -0.984565 -2.567528 -1.471184 -0.201515 2.658168 -3.109902 -1.686467 -1.902808 -1.038158 -0.027066 2.301357 -2.559580 0.160000 -0.768431 -0.879939 4.024152 1.732671 -0.304968 0.378154 -3.247726 0.363608 1.833610 -0.506322 -4.368389 0.323229 -2.322698 -0.378152 0.907783 -0.393676 1.752430 -2.260876 -1.495920 0.597157 -1.020923 0.212434 -1.368830 -3.475168 0.828841 -0.780917 0.696562 1.679367 3.432525 2.954359 2.280067 0.538823 -0.464935 0.332449 -1.957102 -1.790673 1.499532 0.539448 1.014473 1.401081 2.430935 0.678690 0.629823 1.910296 0.832948 -0.085657 3.070616 0.890022 3.272600 -1.047209 0.391225 0.657488 -1.583054 1.846424 3.455341 -1.887256 -0.758907 1.773369 0.403416 -1.194914 -0.914590 -0.368321 -1.657039 -1.261395 1.897401 1.326707 -0.885519 -1.257858 4.658430 0.518355 -5.239837 2.498530 -0.147568 0.945895 2.057615 -1.131953 0.658588 1.549901 -1.227950 1.805487 1.158939 2.668860 -2.873251 -0.233650 -0.255032 2.290529 2.867776 -0.041397 -6.088536 0.594641 1.059326 3.480317 1.509129 3.733815 -1.722844 0.250985 -0.874806 -1.740423 -0.625616 -0.615463 1.941111 -0.648881 0.495834 -4.385141 0.109195 +PE-benchmarks/optimized-naive-algorithm.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/optimized-naive-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.776769 1.647933 2.289844 -2.102260 -0.131388 0.682191 1.820085 -1.903402 0.259255 7.072094 0.992854 -0.861167 -3.181244 1.829287 -1.384858 -2.443144 1.811606 -0.371530 0.095745 -2.713398 -0.403090 0.774199 -0.106516 -2.657289 1.808307 -1.786451 1.125925 1.940001 -0.485356 0.692371 -0.984044 -0.424416 0.951980 4.864823 -0.428088 0.798312 -1.516545 3.619170 -3.508617 3.492002 -6.471951 -5.939924 5.238560 0.791923 0.771234 -3.777164 1.135732 1.568409 -0.693568 -2.615967 -0.592903 -1.718516 1.279102 -3.543930 -0.821860 4.250670 -5.610884 0.842215 0.050552 -3.296513 -4.278309 -0.501166 3.571748 0.974905 -1.372052 -2.886796 0.877623 0.610715 -2.904176 1.856573 -2.965226 -4.429638 1.019545 0.973552 -1.548621 1.097951 -1.023855 -2.828939 1.753337 -1.870232 -1.205186 -2.246899 2.484129 -0.533873 0.411561 2.757731 3.612500 -6.461812 -0.011677 -4.362508 4.168796 -1.728985 4.986276 2.804601 -0.744192 2.416791 1.325574 1.209171 0.511079 -1.434444 4.082106 1.206995 3.646721 -0.879471 2.012094 3.263355 -3.923884 -3.837807 -2.264919 -2.538039 0.875410 -0.914111 -3.328231 -0.261975 -4.694955 -0.613422 2.168437 -2.310414 -1.081660 3.818176 -7.920647 -2.996192 1.526162 -0.824310 3.804035 2.453926 1.010259 0.895996 1.411536 3.515619 -0.736266 -0.871095 -1.175633 2.339237 -1.386066 -2.764788 -1.246592 -0.032182 1.157805 -3.970559 -4.329085 -6.008305 -1.673499 2.556002 -0.844697 2.898174 6.587031 -0.846590 -4.318182 1.648126 -2.190471 -0.319043 4.115479 1.118914 6.111124 -6.083653 3.438220 -0.757763 2.948479 3.408555 6.830129 -1.647235 -2.568979 2.262636 -0.068123 -0.188388 -0.319548 -1.326124 1.102354 -1.924662 0.623898 -1.353140 -0.464782 2.883170 -4.069190 4.641553 -3.262496 5.485230 -5.345704 -3.917811 1.263137 -6.461550 -2.519388 -2.078124 -1.027440 -0.729151 3.950948 -4.156809 -2.458099 -2.479749 -1.315896 0.931870 3.895074 -4.939889 -0.126080 -1.666786 -2.356552 4.993026 0.896055 -1.011036 -0.113402 -3.380599 -0.099563 2.927236 1.084891 -5.576491 -0.552239 -3.547625 -0.751183 1.370309 -0.413679 3.013750 -1.187205 -1.215199 1.465780 -1.833314 -0.211073 -2.962551 -3.459221 1.445814 -1.337101 -0.071230 0.414527 5.639339 3.445302 2.462810 -0.759117 -1.286706 1.442675 -4.135006 -2.372255 1.783583 0.717457 1.191779 1.805514 2.213293 0.417225 1.144276 3.213224 0.386042 -0.331279 3.930713 0.254807 3.729996 -3.063845 1.182425 1.249618 -2.697573 1.938406 4.174326 -0.677418 -2.331986 2.191259 -0.070541 -1.303162 -1.819864 -0.913606 -1.692540 -1.537053 2.992879 3.506287 -1.512579 -2.262559 6.850690 1.355188 -7.043214 4.588862 -0.257844 0.763396 2.609433 -2.790895 0.478503 2.714103 -0.012003 0.804159 1.112990 3.870657 -4.558777 0.037006 -0.528694 3.946303 2.680889 -1.687140 -8.350688 0.029279 1.298491 4.952198 2.325573 5.912590 -2.236629 1.173574 -1.787041 -1.524134 -0.680114 -0.707728 2.698001 -0.248865 -0.210030 -6.070754 2.473798 +PE-benchmarks/finite-automata-algorithm.cpp__main = 0.173418 0.263977 0.195268 -0.562208 -0.724685 -0.047748 0.184051 -0.113073 -0.002596 -0.085129 0.385664 -0.543514 -0.395198 0.918205 -0.130162 -0.460749 -0.045356 -0.572929 -0.244067 0.203173 0.008360 0.400172 -0.075427 0.118314 0.097789 0.237344 -0.304998 0.312109 0.583960 -0.530775 -0.545490 -0.000342 0.116156 0.589190 -0.034267 -0.326750 0.257799 1.103800 -0.461916 0.550934 -0.515927 -0.205723 0.398155 -0.002045 -0.250505 -0.974246 -0.693867 0.485051 -0.406553 -0.180776 0.587634 0.165339 -0.262288 -0.105600 0.370779 0.707444 -1.206855 0.806971 0.312204 0.417053 0.239957 -0.147542 -0.136780 -0.074074 -0.063333 -0.389900 0.083301 -0.069359 -0.380115 -0.026503 -0.167950 -0.632511 1.059453 0.199753 -0.399607 0.218888 0.265081 -0.732506 0.594178 -0.836451 -0.596291 0.135009 0.073208 0.128420 0.810389 -0.188643 -0.093609 -0.904178 -0.105942 -0.876226 0.217860 -0.943095 0.159905 0.815063 -0.632035 0.122195 0.051382 -0.178206 0.631365 0.346430 0.669602 0.310437 0.399413 0.050796 0.259675 0.318578 -0.252097 -0.171019 -0.396961 -0.725244 -0.123594 0.112453 -1.210336 0.214024 0.026799 0.130307 0.207441 -0.024294 0.075790 0.274309 -0.307563 -0.138405 0.189050 -0.101323 0.251290 1.064222 -0.305713 0.053687 -0.579901 0.719730 0.024606 0.575674 -0.091125 0.152462 -0.235526 -1.104987 -0.729281 0.049132 0.190206 -0.296868 -0.631823 -0.821436 0.164826 -0.308846 -0.339937 0.358258 1.129385 -0.321512 -0.521629 0.928842 0.658637 0.340253 0.576834 -0.150320 1.059337 -0.315171 -0.042428 -0.075683 -0.283167 -0.345537 -0.066347 0.192910 -0.246615 -0.036884 -0.007067 -1.219948 0.697273 0.089909 -0.339471 0.236845 -0.015772 -0.366133 -0.725357 0.976128 0.343153 0.570124 0.153113 0.864092 -0.133629 -0.635993 0.508168 0.225168 0.285321 -0.572168 -0.420335 0.367022 0.319473 -0.434385 -0.197199 -0.124820 -0.026938 -0.520061 0.104513 0.123813 0.105368 0.090290 0.441874 0.061072 0.825798 -0.093879 0.443339 -0.889904 0.266761 0.250019 -0.271715 -0.960582 0.293373 -0.357932 -0.030727 0.331112 -0.228042 0.011037 -0.223843 -0.567982 0.128086 -0.296870 0.341479 0.131860 -0.519804 0.061937 -0.353751 0.328568 0.313685 0.430843 0.763207 0.514739 0.517710 0.075056 0.089398 0.141337 -0.055803 -0.059187 -0.071976 0.152177 0.364125 0.430895 0.353546 -0.006138 0.438671 0.333531 -0.249003 0.584358 0.507078 0.990625 0.203153 -0.259354 -0.079624 -0.240606 0.550976 1.178960 -0.367554 0.000267 0.340295 0.390239 -0.094663 -0.587362 -0.121199 -0.310853 -0.475008 0.553576 -0.265296 -0.193853 0.094647 0.662975 -0.219340 -0.816861 0.259447 0.024905 0.277243 0.132459 0.119214 0.035971 0.365106 -0.766493 0.441976 0.404406 0.477465 -0.235221 -0.545941 -0.054955 0.281366 0.043541 0.469009 -0.857171 0.158346 0.497722 0.635499 0.263282 0.263999 -0.328334 -0.488991 0.253340 -0.048709 -0.228686 -0.149304 0.319602 -0.587098 -0.023841 -0.330391 -0.561415 +PE-benchmarks/finite-automata-algorithm.cpp__search(char*, char*) = 1.268150 1.136324 1.350914 -2.399535 -1.624809 0.679648 0.471555 -1.959138 0.151704 3.994107 1.846857 -2.048996 -1.638837 3.292546 -1.086351 -2.104561 1.040937 -0.031212 -0.262202 -1.222917 -0.148242 1.062572 -0.466377 -1.657220 0.850327 -0.783227 0.389254 1.368110 1.025412 0.073769 -2.039817 -0.386046 0.763848 4.264626 0.250609 -0.139756 -0.580845 4.153620 -2.925497 3.422018 -4.746280 -3.756458 3.906485 0.702145 0.145758 -3.461287 -1.297910 1.754922 -0.628620 -2.187283 0.662019 -1.228526 0.798164 -2.152120 -0.070807 3.624227 -4.734212 1.485786 0.842248 -1.506694 -2.295634 -0.615079 2.286121 1.109138 -1.988137 -2.458648 0.917917 0.997749 -1.937319 0.531372 -2.506712 -4.819956 2.751503 0.948374 -1.956657 0.610285 -0.507216 -3.533112 2.136449 -1.519956 -2.220225 -0.902571 1.461264 -0.497979 1.490953 1.473728 2.979726 -5.920864 0.149906 -4.994724 2.962606 -2.459740 3.694382 3.276958 -2.287410 1.155314 1.136704 1.723524 1.995149 0.332909 3.762518 1.453087 2.165229 -0.848424 2.268940 2.955682 -2.600557 -2.709823 -1.889087 -3.183078 0.448543 -0.476725 -4.748997 0.498962 -3.366359 -0.352253 0.718638 -1.164073 -0.557940 3.396661 -5.221499 -2.507682 1.112806 -0.715856 3.034487 3.607990 0.062677 1.083572 -0.233494 3.375117 -0.511645 -0.090059 -0.976151 1.908315 -1.979989 -3.380404 -2.522804 0.761925 1.618312 -3.483969 -4.061436 -5.471391 -0.888631 1.372817 -1.275692 2.661696 6.189899 -1.486943 -3.581176 2.573431 0.008245 -0.170649 4.295028 0.363799 6.544845 -4.823951 2.543198 -0.619610 1.222701 1.152820 3.580736 -0.888302 -1.995570 1.378892 -0.437466 -2.845578 2.511842 -0.669359 -0.146834 -1.098165 0.777545 -1.155604 -1.728600 3.771988 -2.462789 3.469195 -1.828013 5.225251 -3.813423 -3.389748 1.925975 -3.384215 -1.498040 -1.961195 -0.982277 -0.109705 3.933716 -3.050300 -1.867269 -1.213294 -1.103656 -0.337848 2.762227 -1.879000 0.019932 -0.573708 -1.036380 2.905451 2.357459 -0.478125 0.617393 -3.443314 0.376593 2.946434 -0.200180 -4.847860 -0.323934 -3.624769 -0.474036 0.341122 -0.671130 2.274201 -1.897927 -1.871641 0.584666 -1.381663 1.130511 -1.376039 -3.377269 1.590378 -1.749940 0.825957 0.802088 4.654034 3.381666 3.187322 0.884220 -0.980603 1.069547 -2.506273 -1.742542 1.331846 0.696162 1.177002 1.864380 2.740118 0.771034 1.126649 2.758983 0.205775 0.209058 3.632671 0.901139 4.410010 -1.253862 0.679840 0.459384 -2.355590 2.579827 5.733890 -0.776605 -1.602879 1.676809 0.282521 -1.569233 -2.588459 -0.508500 -1.207383 -2.073630 2.232198 1.887963 -0.544940 -1.946810 5.784347 0.619576 -6.118310 3.496994 -0.213673 1.105748 2.720007 -1.880199 0.865835 1.953748 -0.852546 1.755505 1.928943 3.368998 -3.461604 -1.147040 -0.523415 3.087717 2.170844 -0.465985 -6.341207 1.841907 1.988435 4.370102 1.901580 3.758552 -2.560018 0.326801 -0.606699 -1.292834 -0.624587 -0.924458 2.500245 -1.329880 -0.134177 -4.597868 0.286629 +PE-benchmarks/subset-sum-problem.cpp__main = 0.459621 0.355780 0.331688 -0.879029 -0.511339 0.272025 -0.075368 -0.466211 0.152100 0.630204 0.442240 -0.585074 -1.211120 0.869826 -0.360116 -0.938107 0.276559 -0.818139 -0.101183 -0.280334 -0.209655 0.192832 -0.071724 -0.427159 0.271255 -0.179045 -0.123320 0.502372 1.055939 -0.617865 -0.872284 0.044970 0.088084 1.342836 0.084363 -0.252870 0.326010 1.588830 -0.235499 0.712617 -1.226541 -0.987836 1.075673 0.104516 -0.260096 -0.831236 0.034689 0.623548 -1.158285 -0.072558 0.471589 -0.353794 -0.072926 -0.551763 0.054691 1.369286 -1.984651 1.361875 0.107640 0.284119 -0.258285 -0.430674 0.365075 0.104708 0.175553 -0.830031 0.398291 0.267036 -1.354397 0.192940 -0.762480 -1.012094 1.427025 0.426700 -0.612177 0.227180 -0.012870 -0.843827 0.526801 -1.240134 -0.767179 -0.089420 0.563520 0.161862 1.115277 0.261839 0.189375 -1.770023 -0.299090 -1.542089 0.669231 -1.033403 1.081246 1.095369 -0.885320 0.369344 0.130725 -0.148575 0.379895 0.146103 1.320090 0.097728 0.600319 -0.168244 0.493042 0.367258 -0.493065 -0.427220 -0.229032 -0.791452 -0.442151 0.237134 -1.540907 0.124135 -1.126220 0.540361 0.467672 0.007192 -0.435376 0.335649 -1.481187 -1.163517 -0.090952 -0.218811 1.354497 1.219623 -0.095276 0.357305 -0.057242 1.308260 0.094481 0.028398 -0.556781 0.414766 0.257397 -1.294227 -1.365151 0.020962 0.683233 -0.820872 -1.505208 -1.142764 -0.388294 -0.203936 -0.309331 1.325583 1.900730 -0.204925 -0.899269 1.145039 -0.629124 0.835156 1.678261 0.023982 1.801306 -1.311956 0.767940 0.024657 0.401076 -0.043622 0.151742 -0.327721 -0.577266 -0.007959 0.304467 0.121598 -0.204557 0.125012 -0.142716 -0.478552 -0.239536 -0.576794 -1.046331 1.303658 -0.301997 1.200174 0.131487 1.864840 -1.049355 -1.484412 0.832829 0.008557 0.105740 -0.421710 -0.536274 0.089693 0.703033 -1.078881 -0.727352 -0.217888 0.240930 -0.293471 0.822459 0.694620 0.008496 -0.175288 -0.067874 0.969434 0.972140 -0.428554 0.468186 -1.371427 0.245273 0.787692 -0.211684 -1.289640 0.257049 -0.700097 -0.128205 1.054432 -0.186614 0.475064 -0.353874 -0.862291 0.174225 -0.118053 0.775270 -0.121331 -1.010302 0.399954 -0.340074 -0.352066 0.542549 1.244277 1.012448 0.649020 0.246753 -0.396862 0.221370 -0.375744 0.108400 -0.060951 0.123665 0.690198 0.522657 0.881701 0.276514 0.184569 0.819506 0.474025 -0.514483 1.063367 0.505946 1.421938 -0.700545 -0.011528 -0.017870 -0.895201 0.866754 1.763532 -1.359944 -0.397424 0.659082 0.655930 0.115215 -1.093763 -0.352232 -0.659182 -0.399485 0.633488 0.052714 -0.185726 -0.389618 1.716142 0.079407 -1.664871 1.143980 0.043374 0.278362 0.328338 -0.450450 -0.244661 0.665157 -1.139339 0.420592 0.511749 0.880251 -0.625655 -0.285780 -0.146554 0.975795 -0.392775 -0.038580 -1.119283 -0.000676 0.719503 1.443276 1.327248 0.435846 -0.462928 -0.588501 -0.165350 -0.450861 -0.143941 -0.231249 0.781803 -0.932344 0.093119 -0.727622 -0.296003 +PE-benchmarks/partition-problem.cpp__main = 0.408872 0.361981 0.283862 -0.696284 -0.433556 0.286480 -0.316390 -0.499688 0.080172 0.589933 0.305794 -0.495603 -1.233564 0.569216 -0.416360 -0.964818 0.115978 -0.613426 -0.085301 -0.508650 -0.247301 0.053861 -0.042154 -0.452131 0.213787 -0.299147 -0.043072 0.392546 1.071597 -0.525617 -0.640538 0.039860 0.136130 1.224995 0.122188 -0.125159 0.273657 1.348425 0.192144 0.374352 -1.164995 -1.065448 0.987499 0.092531 -0.152595 -0.564783 0.282765 0.547914 -1.338471 0.176366 0.252015 -0.362153 -0.106111 -0.538250 -0.074500 1.150076 -1.783379 1.459900 -0.000669 0.090933 -0.367369 -0.373933 0.348593 0.100537 0.441965 -0.751921 0.308886 0.444949 -1.357119 0.262252 -0.662210 -0.761154 1.305514 0.317597 -0.514320 0.188574 -0.087055 -0.403301 0.351091 -1.160886 -0.646197 -0.154420 0.670947 0.274798 0.902402 0.440774 0.136159 -1.581868 -0.291281 -1.358839 0.644764 -0.737718 1.047439 0.849149 -0.812265 0.393351 0.143623 -0.350507 0.248058 0.097005 1.164185 -0.127182 0.503854 -0.069720 0.319747 0.198823 -0.330081 -0.325347 -0.071151 -0.674453 -0.469125 0.280071 -1.271446 0.071164 -1.146325 0.720410 0.392592 0.059329 -0.409665 0.073002 -1.517452 -1.299624 -0.155696 -0.193132 1.410622 0.851405 -0.025716 0.425085 0.111276 1.150162 0.069267 -0.189505 -0.488258 0.391003 0.547723 -1.186780 -1.454866 0.066273 0.670231 -0.706658 -1.345392 -0.804130 -0.474584 -0.154040 -0.237889 1.274787 1.674434 -0.135807 -0.826941 0.974599 -0.940501 0.840086 1.664248 0.111255 1.569851 -1.191650 0.711063 0.101712 0.409056 0.125966 -0.097494 -0.395180 -0.555541 0.035214 0.439409 0.687089 -0.703369 0.027669 -0.126336 -0.634922 -0.243314 -0.496016 -0.804726 0.965610 -0.237169 1.124298 0.159295 1.691283 -1.069206 -1.480780 0.674446 -0.087289 0.010334 -0.048813 -0.378562 -0.069983 0.596539 -1.086518 -0.700434 -0.132361 0.238749 -0.222942 0.816566 0.941761 0.006756 -0.139741 -0.148469 1.016880 0.822328 -0.419767 0.336401 -1.204182 0.160617 0.751552 -0.042631 -1.091892 0.184098 -0.571060 -0.120225 1.123516 -0.131535 0.467281 -0.142304 -0.631950 0.068280 -0.089647 0.812723 -0.114627 -0.585411 0.395311 -0.279310 -0.447831 0.432638 1.158083 0.881455 0.522021 0.138700 -0.316709 0.230465 -0.469122 0.467869 -0.093023 0.220666 0.691172 0.458601 0.739660 0.219279 0.215828 0.783943 0.454384 -0.560873 0.966719 0.290126 1.295057 -1.039406 0.132326 -0.101676 -0.749055 0.759564 1.553318 -1.471655 -0.422208 0.592722 0.567577 0.308193 -1.063618 -0.360969 -0.585681 -0.267216 0.528246 0.206233 -0.149953 -0.401985 1.537595 0.152260 -1.401592 1.255018 0.082571 0.165210 0.142439 -0.516554 -0.438305 0.646494 -1.029425 0.124413 0.487809 0.767382 -0.658745 -0.123009 -0.148797 1.048651 -0.575866 -0.081973 -0.749119 -0.123597 0.725669 1.274843 1.251274 0.211343 -0.425761 -0.728942 -0.164238 -0.410016 -0.113731 -0.095947 0.644557 -0.802653 0.152533 -0.383858 -0.310003 +PE-benchmarks/boruvkas-algorithm.cpp__main = -0.194851 -4.734602 4.001838 -4.803908 -5.979613 3.931645 -6.135649 -4.151730 1.948793 -1.706195 2.777446 -2.565328 0.830457 8.126816 -1.129722 -5.747205 -0.243941 5.442269 2.153506 0.200723 1.152344 1.980637 -2.076204 1.560651 -1.802240 -3.385426 1.396653 3.338967 3.796704 4.029090 -4.653217 -2.517492 -3.731360 7.054188 3.177790 2.892644 2.349410 11.578184 -0.995337 11.143143 -4.161974 -4.746066 1.534012 0.896187 -1.052673 -0.507586 -7.980726 0.745690 -8.272071 -0.068822 6.485506 -1.843497 2.918627 2.267750 4.661527 0.539217 -6.520191 0.245143 0.040966 -0.852289 1.148686 -2.643355 -2.487639 3.551556 -7.642587 -1.738795 3.234980 6.792000 -0.839206 -0.587563 -0.253951 -8.587993 11.036222 3.514801 -5.955533 -0.324704 7.755622 -6.570860 4.639356 1.066742 -9.847474 -0.395724 -3.103582 -6.901862 8.904047 -0.286632 8.121813 -9.583947 5.824381 -11.464325 4.468424 -6.770039 3.270624 8.471679 -9.527650 0.878687 5.857841 11.923913 4.975602 0.598527 5.605473 6.089126 -3.836459 1.503850 7.897913 1.647869 -2.016388 -3.239395 -5.041578 -6.526901 -1.086469 -7.588123 -14.629599 -0.189012 0.075444 5.220814 -4.083629 3.511418 -1.946103 4.913381 -8.680395 1.928695 0.544421 -1.336164 2.388979 4.587091 -3.567687 3.029535 -1.446823 8.243689 -6.217579 -0.262135 -2.499636 2.301551 -5.269969 2.559670 -9.633505 3.348652 4.546364 -3.390576 -8.016320 -6.925692 -3.952316 7.403618 0.123214 10.192151 11.883485 -4.203725 -4.936599 6.737199 -0.153069 0.366369 8.947909 2.292090 5.605668 -2.385467 -0.755994 -8.183229 -2.678779 -3.993243 -1.333658 3.129069 0.088929 5.559866 -1.022825 -4.006248 15.192802 -4.127719 -5.531603 -9.083225 1.034229 -3.900940 -2.826527 10.839244 -8.213704 3.307544 -0.994606 9.249780 -2.610030 -5.227955 1.456204 -7.784523 -0.196397 -5.288523 -0.117133 -1.061759 6.520687 -6.863703 -4.571748 -1.273043 -3.333880 -1.124218 0.541072 6.463483 0.205754 3.057041 3.185970 9.618346 10.664993 5.186193 -1.626559 -5.430676 2.605318 4.356545 -6.334432 -2.536271 1.316962 -3.354080 0.212705 -4.634191 1.069411 1.803301 -9.360665 -4.244192 -6.906488 -0.496316 5.043259 4.396020 -14.837169 2.700777 1.742391 3.863536 6.039614 1.676236 9.242593 7.489781 8.430699 -0.324979 1.340108 0.084160 -0.621836 2.619725 6.140611 2.433215 0.785571 9.726551 2.926243 0.978759 2.565191 6.978086 6.347285 4.246077 2.905754 10.639199 4.279850 0.046360 -2.431965 -0.011509 5.495958 13.881844 -2.476664 8.018874 2.879619 4.034482 -1.946182 -9.026066 1.301382 -2.339222 -0.611822 1.352214 -0.392089 0.127431 -3.082323 6.402772 1.665644 -8.552609 0.967182 0.856314 1.850004 7.123995 -0.782151 0.401761 0.266395 -6.331625 11.053148 4.223801 2.097988 -4.356733 -0.359962 -0.566117 0.718731 6.645326 4.687369 -0.379164 6.293379 2.775443 7.003061 3.733669 2.861623 -4.925635 -2.440064 2.212886 -8.509626 -2.491600 0.056673 2.588299 -2.330468 2.374215 -5.600471 -12.348291 +PE-benchmarks/boruvkas-algorithm.cpp__find(subset*, int) = 1.046478 -0.378377 1.023775 -0.740638 -0.838620 0.940095 -0.814367 -1.516290 0.364372 2.285560 0.897993 -0.843702 0.474686 2.080963 -0.697246 -0.932746 0.355748 1.249061 0.350707 -0.219309 -0.021109 0.495060 -0.520427 -0.746944 0.192145 -0.732061 0.654367 0.565391 -0.589254 1.130160 -1.235800 -0.496061 -0.217941 2.379418 0.556093 0.509406 0.014896 2.346830 -1.706671 2.906611 -2.238608 -2.323265 1.648100 0.439448 0.564063 -0.062266 -0.989333 0.660414 -0.233396 -1.435553 0.659040 -0.955213 0.819329 -0.639137 0.310925 1.005338 -2.169085 -0.251390 0.216090 -1.180613 -1.495772 -0.372118 0.915099 1.047637 -2.133916 -1.272582 0.774648 1.818161 -0.343451 0.209174 -1.114355 -3.210584 2.047194 0.424442 -1.375284 0.006207 0.542466 -1.829952 1.362612 -0.056389 -1.817314 -0.582256 0.100443 -1.478104 1.007747 1.151170 2.835202 -3.260938 1.691623 -3.096985 2.061916 -1.165340 1.949257 1.983924 -1.782653 0.424898 1.435949 3.485228 1.359908 0.418392 1.972627 1.426375 -0.203818 -0.336682 1.630925 1.533425 -1.592401 -1.636112 -1.531304 -1.809010 0.470448 -1.127494 -3.055688 0.094186 -1.307765 1.173409 -0.363793 -0.091464 -0.194430 2.509903 -4.059274 -0.440407 0.519999 -0.286451 1.448198 1.226915 -0.249820 0.802454 -0.032133 1.935314 -1.133642 -1.034470 -0.440111 1.064937 -2.248970 -0.109500 -1.600930 0.929369 1.186562 -2.078586 -2.249922 -3.335356 -0.671689 2.569999 -0.502370 2.632951 3.514013 -1.095235 -1.663878 1.125758 -0.227164 -0.998593 2.683291 0.575593 2.985856 -2.457944 1.072028 -1.139804 0.484915 0.338245 1.138889 -0.084087 -0.772615 1.541324 -0.114350 -1.264679 3.883085 -0.626153 -0.466871 -1.562388 0.681710 -0.320894 -0.063964 2.364634 -2.534585 1.292083 -1.234035 3.136094 -1.957677 -1.224629 0.599772 -3.146089 -1.106834 -1.264815 -0.212097 -0.530726 2.622933 -2.121109 -1.078140 -0.312358 -1.367386 0.178807 1.484917 -0.073652 0.086641 0.061408 -0.779659 2.795872 1.620858 0.588345 -0.369084 -1.553807 0.191550 1.482780 -1.233161 -1.867747 -0.488338 -2.078278 -0.020580 -0.932988 -0.061006 1.363324 -2.397801 -0.877134 -0.663154 -0.416312 0.722323 -0.309196 -2.258537 0.818954 -0.396974 1.086792 0.984679 2.081578 2.108375 2.328788 1.194476 -0.469490 0.439012 -1.334334 -1.108365 1.379990 1.121975 0.983104 0.714865 2.202147 0.269397 0.689105 0.810825 0.344367 1.573122 2.001146 0.416167 2.587948 -0.573767 0.793380 -0.028560 -0.716601 1.634656 3.080823 -1.231096 0.351189 0.558950 -0.017846 -1.270202 -0.737856 0.205107 -0.523728 -0.870056 0.176123 1.179970 0.277843 -1.512676 2.973469 0.720534 -3.351239 1.391497 -0.080688 0.579508 2.523826 -0.990612 0.970376 0.320170 0.084279 1.871117 1.183672 1.687298 -2.212241 -0.109909 -0.201764 1.353481 2.017381 0.166298 -2.493288 1.878994 0.916265 2.186821 0.599992 1.712606 -1.881467 0.569919 -0.280397 -1.701827 -0.289474 -0.185327 1.317238 -0.125692 0.502487 -2.959284 -0.867000 +PE-benchmarks/boruvkas-algorithm.cpp__boruvkaMST(Graph*) = 9.005459 -0.074891 9.346996 -7.351404 -5.934168 6.170135 -2.273073 -11.237030 2.629375 24.736889 6.853026 -6.319272 -0.485282 14.034851 -6.208884 -7.178805 4.909034 6.263447 2.968308 -5.097022 -0.388951 4.243525 -3.197913 -8.156591 3.389825 -6.675310 4.865292 6.530017 -4.811146 9.160594 -8.085895 -3.473206 -0.415895 20.049439 2.836096 2.080154 -1.824076 18.189489 -17.506062 20.404209 -21.029447 -21.405221 16.987118 3.764596 5.355682 -4.831268 -4.958520 5.705701 -1.516338 -11.948363 2.779371 -7.875791 8.011942 -8.282962 0.164165 10.556105 -19.868921 -1.923858 1.339844 -11.968496 -14.697093 -2.171302 9.960683 8.497721 -15.334759 -11.448544 5.698274 11.131791 -4.068260 3.197335 -10.132961 -23.974152 10.641131 3.324445 -9.183620 1.139837 2.239367 -15.856645 10.661471 -2.531153 -12.426899 -6.082934 2.523226 -11.706240 6.243221 9.399029 22.587651 -26.605444 10.941461 -23.681090 16.950637 -8.788839 16.813394 15.194354 -10.935120 5.433868 10.131121 23.719829 9.739980 0.373370 16.713926 11.492649 4.445363 -2.713034 12.485707 14.479815 -14.472987 -14.021739 -12.665240 -13.449355 3.625398 -9.031060 -21.912217 0.742558 -12.848926 4.156750 0.803212 -5.024746 -2.700032 22.855033 -33.265765 -5.346387 4.970302 -2.535923 11.154666 9.591951 -0.227488 4.802208 2.065114 15.683777 -7.703654 -7.039083 -2.763221 9.585618 -16.994235 -3.853368 -9.973608 6.205433 8.006592 -17.612997 -18.415347 -27.630116 -5.363515 18.036961 -3.819420 18.804624 28.730067 -7.176364 -15.446676 8.325155 -4.327427 -8.892600 20.703420 4.693248 24.635073 -21.501780 9.842504 -8.721857 5.994409 5.841459 17.746663 -2.420393 -7.456260 12.207607 -1.127418 -8.240433 22.503292 -4.677232 -0.778166 -11.934229 5.324294 -3.597428 -0.242341 17.372293 -21.583598 13.145613 -11.547564 24.705301 -17.053229 -11.901426 5.228281 -26.812806 -9.696432 -10.025648 -2.090440 -3.185961 19.854717 -16.499019 -9.353739 -6.062721 -9.793453 2.096907 14.229755 -8.387043 0.961067 -0.983849 -7.872109 22.108507 9.909758 2.398092 -2.018300 -12.682813 1.461392 12.209000 -6.249544 -18.730452 -4.545288 -16.585567 -0.631052 -4.698337 -0.397731 13.146686 -15.933569 -6.644967 -1.523971 -4.104644 2.907263 -5.735054 -18.456356 7.403329 -4.091555 7.467412 5.986990 19.405995 16.216037 17.067515 5.375856 -3.973713 3.664657 -13.116474 -9.921160 10.670522 7.972947 5.239282 6.002982 17.129508 1.731755 6.208136 8.592557 3.204357 9.020722 16.735633 1.598051 18.684077 -7.444098 6.029205 1.698923 -7.043048 11.854968 22.571458 -5.828418 -1.762514 5.253789 -0.989943 -10.222362 -5.437265 0.855660 -4.890937 -5.698318 3.493187 12.179341 -0.193755 -11.690907 24.968877 6.731083 -28.916076 13.815222 -0.920214 4.505983 18.765481 -9.411234 7.004628 4.290219 1.593896 13.431939 8.780691 13.505628 -18.881329 -1.372639 -0.924678 13.006273 16.017065 -0.793218 -26.975974 11.607765 6.145584 18.122089 5.575445 19.563676 -14.693540 5.103631 -3.657267 -12.158966 -2.864419 -2.054182 10.601341 -2.476434 4.193005 -25.104637 -1.317858 +PE-benchmarks/boruvkas-algorithm.cpp__Union(subset*, int, int) = 1.981018 -0.624413 2.266894 -1.917856 -1.785668 1.760349 -1.187389 -3.120338 0.719909 5.175418 2.019165 -1.952717 0.390767 4.530415 -1.359933 -2.182748 0.971012 2.457565 0.634003 -0.688060 -0.044806 1.175950 -1.028150 -1.719791 0.648948 -1.595915 1.290142 1.689544 -0.844795 2.315801 -2.516723 -1.010731 -0.373976 5.290147 0.963969 0.966585 -0.086317 5.281550 -4.430571 6.263599 -5.035605 -5.077869 4.063067 0.959012 0.915297 -0.777956 -2.262658 1.526851 -0.918896 -3.183879 1.422521 -1.931431 1.894595 -1.705627 0.697689 2.704745 -5.081358 -0.443641 0.568162 -2.628361 -3.311337 -0.810301 2.047701 2.122680 -4.628042 -2.906601 1.610269 3.258004 -0.891148 0.443585 -2.547956 -6.863769 4.137896 0.960773 -2.846153 0.266673 1.045762 -4.249724 3.014603 -0.132207 -3.802934 -1.369815 0.392104 -3.212129 2.267612 2.327249 5.937875 -7.238130 3.069176 -6.668061 4.446672 -2.768372 4.315865 4.446252 -3.807028 1.200159 2.885448 6.938653 2.722224 0.542046 4.384788 3.017448 0.161370 -0.687748 3.633086 3.510963 -3.726142 -3.765971 -3.519035 -3.936713 1.056439 -2.640874 -6.644220 0.239159 -3.064449 1.782171 -0.370871 -0.608418 -0.610373 5.666085 -8.452965 -0.712681 1.262006 -0.702553 3.041394 3.057446 -0.448252 1.498347 -0.023968 4.278870 -2.289484 -1.763241 -1.038806 2.423730 -4.596852 -0.646345 -3.166254 1.775206 2.393367 -4.540447 -4.975340 -7.324103 -1.445552 5.091916 -1.087127 5.396666 7.830407 -2.319167 -3.892305 2.613524 -0.506970 -1.811646 5.620931 1.206744 6.716769 -5.459445 2.381289 -2.568195 1.075443 0.989436 3.323316 -0.249343 -1.898847 3.268710 -0.374493 -2.923845 7.889352 -1.315400 -0.831506 -3.332671 1.548126 -0.949025 -0.448135 5.354229 -5.572698 3.198800 -2.813134 6.795411 -4.304443 -2.939911 1.487389 -6.762466 -2.383075 -3.105553 -0.770477 -0.942146 5.511074 -4.464108 -2.436522 -1.293873 -2.663358 0.327292 3.347180 -0.898417 0.163241 -0.077917 -1.579437 5.801177 3.473445 1.029644 -0.616886 -3.633055 0.515036 3.370988 -2.356230 -4.588808 -0.853310 -4.422727 -0.171854 -1.747735 -0.190741 3.084502 -4.991792 -1.990761 -1.091693 -0.984719 1.313094 -0.916609 -5.555973 1.893310 -0.963522 2.168686 2.232148 4.746403 4.716456 4.872473 2.331781 -0.936447 0.978749 -2.925799 -2.741838 2.943841 2.157727 2.015910 1.693994 4.788408 0.700797 1.496289 2.038075 0.876800 2.991353 4.439011 1.098356 5.632211 -0.886517 1.434926 0.175422 -1.710063 3.455180 6.692151 -2.124128 0.415155 1.492632 0.132341 -2.760494 -1.989211 0.263833 -1.305524 -1.914046 0.982969 2.427772 0.176305 -3.098999 6.674669 1.458010 -7.558806 3.140612 -0.164959 1.356966 5.176038 -2.176057 1.987953 1.011877 -0.108969 4.080984 2.481847 3.692986 -4.808759 -0.227242 -0.396207 3.024343 4.649322 0.239359 -6.305408 3.747966 1.848946 4.986758 1.487840 4.329267 -3.892628 1.273719 -0.710801 -3.523637 -0.623364 -0.671638 2.842823 -0.574801 1.017425 -6.707743 -1.597999 +PE-benchmarks/rabin-karp-algorithm.cpp__main = 0.533265 0.117536 0.243658 -0.672507 -0.745948 0.289125 -0.545612 -0.286892 0.119152 -0.265862 0.356035 -0.523472 -0.349389 0.942808 -0.346927 -0.780288 -0.044347 -0.684613 -0.072070 0.042880 -0.068191 0.255440 -0.172881 0.125657 -0.000493 0.059728 -0.226726 0.205040 1.007779 -0.583095 -0.979002 0.037605 -0.149102 0.929841 0.177309 -0.535272 0.653953 1.554873 0.229129 0.250677 -0.477077 -0.370651 0.285438 0.056835 -0.381257 -0.455791 -0.597615 0.440670 -1.072721 0.362589 0.834829 -0.104011 -0.360849 0.062704 0.382867 0.759809 -1.705706 1.258491 0.154702 0.883775 0.278223 -0.420522 0.066815 -0.068383 0.235386 -0.444222 0.528070 0.467281 -0.778001 0.037306 -0.339888 -0.895401 1.434961 0.448168 -0.552306 0.096276 0.464747 -0.864164 0.585157 -1.007269 -0.956523 0.190754 0.094904 -0.135836 1.393813 -0.223155 -0.073429 -1.228356 0.277956 -1.335612 0.164697 -1.142912 0.466362 1.117205 -1.227915 0.015209 0.182062 0.296755 0.684147 0.233189 1.055722 0.279499 -0.037780 -0.036553 0.365289 0.099429 -0.040655 0.121674 -0.180202 -0.800400 -0.602223 0.073414 -1.719280 0.200906 -0.360720 0.541296 0.007754 0.272576 -0.256523 0.046310 -0.810537 -0.885428 -0.206780 -0.148067 0.747925 1.124982 -0.446968 0.329832 -0.550537 1.171949 -0.024583 0.155225 -0.399173 0.076846 -0.094619 -1.067843 -1.629834 0.123725 0.652483 -0.450284 -1.187172 -0.782984 -0.123866 -0.495321 -0.239146 1.373271 1.478109 -0.232341 -0.607587 1.230565 0.046347 0.727566 1.599873 -0.128109 1.226320 -0.546072 0.210300 -0.109386 -0.078073 -0.752079 -1.504313 0.092009 0.049020 -0.052498 0.240559 0.044273 0.644939 0.057775 -0.494896 -0.244313 -0.109634 -0.457390 -0.991144 1.367928 0.372624 0.610306 0.697425 1.368731 -0.356466 -1.098018 0.669334 0.206618 0.419855 -0.346017 -0.460838 0.001991 0.546672 -0.717661 -0.478673 0.101329 0.200626 -0.509268 0.137180 1.653443 0.189956 0.146645 0.533779 0.419258 1.351832 -0.051278 0.610369 -1.183806 0.232591 0.678410 -0.644500 -0.699273 0.435397 -0.426136 0.033470 0.564964 -0.171948 0.023747 -0.634837 -0.943591 -0.235661 0.096984 0.974118 0.415864 -0.995487 0.276104 -0.501501 -0.035574 0.605073 0.502923 0.996967 0.608772 0.777453 -0.337610 0.288313 0.114168 0.480122 -0.291439 0.185416 0.682452 0.305791 0.672297 0.328036 -0.017780 0.267767 0.683384 -0.308748 0.669771 0.690174 1.444255 -0.026215 -0.071390 -0.438640 -0.540553 0.771097 1.812332 -1.095793 0.312168 0.435913 0.778760 0.207192 -1.360828 -0.178619 -0.478158 -0.301169 -0.005132 -0.474436 -0.186355 -0.080124 0.955159 -0.040982 -0.994096 0.524582 0.094206 0.138536 0.241616 -0.012434 -0.289198 0.336007 -1.384159 0.699259 0.503297 0.552626 -0.160177 -0.165292 -0.124988 0.618845 -0.735679 0.485504 -0.032681 0.598729 0.763828 0.824138 1.043994 -0.149512 -0.358234 -0.921033 0.190892 -0.482255 -0.285601 0.097515 0.637405 -0.890249 0.238217 -0.063884 -1.144070 +PE-benchmarks/rabin-karp-algorithm.cpp__search(char*, char*, int) = 4.944675 2.528882 4.659909 -4.775512 -0.142994 1.605278 4.878580 -5.376846 0.142246 16.020567 3.447778 -2.887687 -4.250456 5.088774 -2.199565 -5.202366 5.622458 1.680999 0.420462 -4.811720 -0.874655 1.685362 -0.665367 -6.517695 4.078332 -3.891765 2.802819 4.946954 -3.339478 3.606604 -3.371123 -0.606731 1.434564 11.737420 -0.206007 1.418886 -3.869808 8.680058 -10.490318 10.367407 -13.600264 -11.394347 11.809449 2.093291 2.540471 -8.109266 -0.359754 3.322065 1.769276 -7.977014 -0.532128 -4.448703 4.029022 -7.471492 -1.510806 10.410581 -10.765812 -1.396562 1.215178 -8.103062 -9.868628 -0.325414 7.513136 3.012097 -6.822139 -7.505669 2.781386 2.126725 -3.373248 4.247256 -8.686874 -13.298742 2.999411 3.028572 -3.570016 2.111176 -2.113466 -9.191939 4.789048 -1.355966 -3.609640 -5.090450 4.795243 -1.987026 0.918080 6.011945 10.974395 -15.550469 0.882374 -11.607262 9.873908 -5.377945 11.799647 7.731409 -1.440257 5.003692 3.581538 6.370454 1.962383 -1.491290 9.567257 4.594877 6.394980 -3.275733 5.843636 8.365244 -9.573369 -10.531100 -5.741529 -5.080663 2.512233 -3.239980 -9.544971 1.024064 -11.214304 -1.917621 3.182313 -4.679868 -1.176570 12.286554 -16.857109 -5.238204 4.030978 -1.543916 7.985107 6.626501 2.092134 2.271533 1.544716 7.919325 -0.988823 -1.911342 -2.967326 6.005410 -7.044824 -5.596572 -1.975352 0.746899 3.819522 -10.532560 -10.467285 -14.590134 -3.821156 7.586601 -2.667009 7.002804 15.026914 -3.026097 -8.956793 3.363864 -1.996342 -2.499425 9.040232 2.627658 15.420745 -15.357246 8.764865 -2.244725 7.166191 7.086701 15.772947 -3.934028 -6.256127 6.581768 -0.996260 -4.484145 6.994028 -2.866542 2.464869 -1.643930 1.894341 -0.886099 -1.227884 8.590861 -10.597113 10.631074 -8.552005 13.065411 -11.925509 -7.302753 3.215769 -14.008821 -5.862684 -6.522417 -0.878999 -1.908066 10.578002 -9.030039 -6.024567 -4.509310 -4.890139 2.878187 9.517076 -10.986477 -0.727378 -3.592767 -6.174534 10.905676 2.673387 -1.154688 -0.365509 -7.732092 1.015601 6.308063 0.617920 -12.470738 -2.102117 -8.761375 -1.557708 -1.561028 -0.617643 7.781745 -5.601856 -3.337251 3.002435 -3.360685 -0.483251 -6.271100 -9.011334 4.119935 -2.666328 1.083952 1.369136 13.415420 8.810396 7.114655 -0.992365 -4.292274 3.560168 -9.446190 -9.156834 6.148972 1.872435 3.476321 3.758278 6.535520 0.091653 2.590649 6.397199 -0.950051 3.215010 9.475584 1.604513 8.716676 -4.495987 2.569959 3.501522 -6.966922 5.905610 10.151300 0.003214 -5.640582 4.169714 -0.920647 -5.964942 -3.570394 -1.660867 -2.636936 -5.217359 5.883616 7.595822 -2.713254 -6.357755 16.638491 3.749252 -17.624652 9.107776 -0.489400 1.946737 9.216862 -6.031176 4.386914 5.221913 2.212006 3.491041 2.628624 9.496497 -11.063456 -0.648844 -0.901732 7.274313 7.990012 -4.591467 -20.458267 2.459271 3.294440 12.413547 4.447660 14.292719 -6.147430 5.865711 -3.721813 -3.427834 -1.258998 -2.627965 6.614113 -1.383866 -0.297721 -16.017291 5.444817 +PE-benchmarks/boolean-parenthesization-problem.cpp__main = 0.487472 0.149307 0.313017 -0.714729 -0.837319 0.607514 -1.140326 -0.538920 0.187732 -0.324549 0.535032 -0.652124 -0.327607 0.949689 -0.476159 -1.088221 -0.063006 -0.324684 0.058170 -0.346978 -0.009691 0.072808 -0.216574 -0.045971 -0.181887 -0.216915 -0.045852 0.078171 1.285308 -0.376668 -1.142961 0.029998 -0.082504 1.199486 0.412311 -0.362125 0.630865 1.616010 0.781541 0.225638 -0.806422 -0.687595 0.381801 0.210768 -0.411776 -0.307478 -0.562367 0.393095 -1.521303 0.614480 0.831285 -0.420541 -0.177808 0.105479 0.206368 0.819490 -1.807256 1.519558 0.011017 0.645497 0.169190 -0.448104 0.306162 0.211888 0.476566 -0.367560 0.664216 0.976312 -0.905486 0.024484 -0.439315 -1.232439 1.799300 0.530034 -0.702467 -0.065087 0.389590 -0.741015 0.517678 -0.904829 -1.147553 0.113987 0.276475 -0.026683 1.351249 0.069797 0.227032 -1.542707 0.221510 -1.720736 0.501896 -0.936990 0.840652 1.057180 -1.564353 -0.108087 0.378747 0.218322 0.817181 0.222877 1.209720 0.106099 -0.172480 -0.161657 0.486415 0.163278 0.083384 0.144233 -0.009043 -1.001686 -0.715769 0.110816 -1.934017 0.132870 -0.833919 0.773576 -0.212854 0.316818 -0.336503 -0.160700 -1.000051 -1.507956 -0.347991 -0.176523 1.260548 1.097334 -0.376623 0.732935 -0.284456 1.369852 -0.190211 -0.247969 -0.553618 0.146727 0.105105 -1.279872 -2.266256 0.423000 0.987786 -0.667568 -1.458323 -0.875424 -0.338188 -0.344563 -0.207269 1.643567 1.750718 -0.292465 -0.853704 1.233376 -0.165538 0.749418 2.273376 -0.035860 1.632797 -0.939714 0.560447 -0.147591 0.051649 -0.700307 -1.637191 -0.085770 0.156344 0.117407 0.346013 0.521537 0.404720 -0.168129 -0.594247 -0.555261 -0.085120 -0.462521 -1.010931 1.323469 0.516440 0.564508 0.738119 1.715892 -0.863634 -1.583674 0.707785 -0.041351 0.101323 0.101672 -0.378714 -0.191157 0.938027 -0.983928 -0.625931 0.210898 0.176121 -0.418113 0.171513 2.248450 0.175475 0.223568 0.303129 0.646190 1.558966 0.093364 0.521955 -1.247620 0.033464 1.077624 -0.567231 -0.691497 0.318778 -0.781478 0.077047 0.600939 -0.169591 0.197473 -0.746787 -0.970286 -0.503977 -0.009805 1.451389 0.463037 -1.061415 0.512439 -0.545818 -0.186107 0.578518 0.779376 1.088729 0.870118 0.911005 -0.487865 0.463211 -0.186984 0.934901 -0.366609 0.532133 0.879995 0.342366 0.768909 0.252630 0.076427 0.452252 0.687852 -0.253411 0.745780 0.501552 1.701472 -0.308812 0.331590 -0.627264 -0.757632 0.930330 2.421168 -1.275230 0.242078 0.476878 0.768070 0.412613 -1.962499 -0.150443 -0.485969 -0.303046 0.021909 -0.146144 -0.010736 -0.486024 1.282372 0.215152 -1.195972 1.011683 0.091028 0.001728 0.409093 -0.376717 -0.555233 0.361206 -1.526807 0.676507 0.703080 0.808081 -0.426927 -0.039244 -0.290370 0.942581 -0.854728 0.340590 0.232913 0.827492 1.055757 0.999271 1.402924 -0.154372 -0.628938 -1.119667 0.053113 -0.745311 -0.359321 0.171547 0.757619 -0.823035 0.314805 0.047983 -1.289854 +PE-benchmarks/boolean-parenthesization-problem.cpp__countParenth(char*, char*, int) = 20.316291 -0.749361 3.004278 -3.033923 4.173889 8.939009 0.276781 -17.726518 -2.719162 37.175514 10.781885 -8.386304 3.486218 10.201638 -2.816510 -11.325528 14.422479 27.482313 3.778263 -8.993925 -6.485139 -1.414518 -4.957611 -21.496136 7.498260 -13.162557 7.087411 7.046900 -13.758047 22.614643 -12.398169 -3.015401 3.756498 30.245656 5.219094 -0.139049 -7.003589 17.682005 -27.207068 25.402591 -20.336022 -25.805909 29.549934 7.968710 9.456336 4.065972 -7.298525 3.953151 10.423623 -21.626091 -2.344552 -17.243711 14.915427 -15.699563 -5.219811 25.532776 -16.510606 -13.239973 3.020219 -23.332356 -28.718072 -1.217190 17.774989 8.593883 -22.569962 -20.091103 9.022085 19.546149 3.969720 4.821605 -29.308541 -44.558689 12.022648 7.886122 -9.179143 -0.473505 -7.895470 -20.391991 8.528016 17.307653 -11.625690 -12.293886 7.995390 -3.808332 -1.084660 19.933548 38.671710 -38.986549 11.358830 -34.599240 26.690210 -7.627450 34.767368 19.543901 -8.561290 7.228147 14.892573 31.374854 1.579043 1.265584 25.371018 8.903936 -1.389911 -13.522902 14.231129 23.222530 -22.981380 -27.325488 -11.755515 -9.032365 8.682522 -6.916953 -25.123884 3.926232 -34.724539 3.198073 -0.564529 -7.595385 -2.310994 34.582317 -39.955561 -13.433082 8.484859 -6.047024 26.220907 11.896980 6.536759 7.358263 2.230675 17.279643 -2.745817 -18.833116 -10.329487 16.149372 -24.930440 -11.182548 -6.678854 9.101823 16.517516 -35.476407 -27.876080 -33.357735 -6.878698 31.688209 -8.109094 21.927347 37.706084 -11.149619 -12.776873 3.387914 -7.937056 -10.945236 30.108603 9.083748 45.659246 -44.619496 28.684838 -3.245222 19.617005 15.054065 18.323859 -12.621864 -15.192182 19.484693 0.408016 0.016020 40.797685 -11.437150 5.214236 -1.146613 9.136164 11.448722 5.479339 23.155086 -28.018415 16.357971 -16.023014 36.255456 -28.831686 -12.472498 8.017612 -30.431944 -25.805702 -12.954888 4.990384 -10.281672 31.184766 -19.202288 -15.113812 -3.773716 -14.961154 10.763293 28.078285 -4.356950 -3.039396 -6.778458 -23.390797 22.141899 7.326351 2.987630 -4.493600 -16.405877 -0.424559 16.366883 -14.290247 -24.757118 -10.256147 -22.979968 -0.755344 -14.708394 -0.441320 22.344402 -23.041322 -7.223980 0.571719 -2.476870 3.366577 -14.059474 -7.760591 14.383418 -4.604230 1.297280 3.518441 36.210203 21.773002 23.436212 1.187860 -12.812091 9.146448 -21.258844 -26.739266 22.698022 4.802992 19.692293 8.704023 15.011604 -8.269865 9.929336 8.681684 -14.201193 25.038414 20.387806 7.609664 23.368473 -4.952712 10.699896 8.765355 -23.228853 18.318969 27.242726 -8.027869 -12.712596 5.514166 -9.750678 -20.588310 -3.552736 1.769446 -0.416652 -22.441043 4.083044 21.801964 3.258539 -26.395730 43.916236 11.745727 -45.373798 22.746656 2.068702 4.190297 34.217243 -18.679878 20.406522 5.403230 21.422909 9.822663 9.579410 27.503714 -31.810858 6.956640 -3.079314 16.373509 19.770679 -16.237537 -40.388960 19.393990 13.059263 28.945932 9.282443 26.455172 -19.751511 22.363163 -13.072270 -11.252346 2.588730 -8.055519 16.810506 -4.197019 6.804185 -39.904480 15.570856 +PE-benchmarks/z-algorithm-linear-time.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/z-algorithm-linear-time.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 1.392048 0.926310 2.284523 -2.326547 -1.730074 0.508700 -1.902138 -0.293055 1.085067 3.846439 1.358183 -2.374406 -4.494154 3.124731 -1.791276 -3.502287 1.665393 -0.042577 1.973267 -2.065231 0.525149 0.834416 1.325278 -0.906946 1.446975 -1.175942 -2.120363 1.728180 5.664782 -1.345936 -1.562145 0.914293 1.003267 3.738361 -1.783589 -1.631014 0.711472 4.710822 -0.718741 1.952733 -3.960063 -3.180388 4.151147 1.118259 -0.257031 -2.838437 -0.829309 1.835164 -4.321282 -1.506800 0.842793 -0.381631 0.596565 -2.389775 -0.931554 4.457884 -7.987262 3.445996 -0.460642 -0.237656 -0.142881 1.249749 1.247586 0.883108 1.719868 -2.346144 0.297194 0.802850 -4.592115 -0.032444 -0.993735 -1.937091 4.171625 0.492683 -1.899587 2.048107 2.154172 -1.860037 2.288318 -4.730247 -2.332984 -0.697703 1.020548 -0.094036 2.914576 1.109238 1.934523 -5.138054 0.287836 -3.848156 4.467948 -3.211008 3.338444 3.504048 -3.269539 1.692244 1.867314 -1.146615 2.716027 0.531915 6.012087 1.422853 1.980544 0.207308 0.888559 1.723885 -1.978100 -0.672865 -2.015387 -3.129155 -1.160834 0.002550 -4.718647 -0.090889 -3.106479 1.890797 3.820983 -1.889047 -0.725760 2.065582 -4.711967 -2.983597 0.406497 -0.481790 2.203485 4.101608 0.184091 -0.356180 0.742566 5.373236 -1.375418 -1.186085 1.449021 1.311788 0.910417 -4.921803 -2.829793 0.012461 0.282498 -3.355631 -3.561397 -4.668399 0.206729 -0.717657 -0.469325 3.546707 7.404252 0.197334 -2.585560 3.297226 -1.925454 1.246241 6.089435 0.299735 6.947542 -4.254224 0.463640 -1.213576 0.560329 2.048158 2.936061 0.231186 -0.177508 0.582641 2.048013 -0.215358 -2.115335 -1.265147 0.315444 -1.165239 -0.038293 -1.813658 -2.385918 2.627534 -0.473354 3.525029 -0.200750 6.305823 -1.197781 -6.574823 2.793444 -1.287234 -0.952816 -0.091221 -1.407717 0.285078 1.229676 -3.805343 -1.849068 -2.449446 0.245873 -0.631380 2.103607 0.548821 1.938412 0.226299 -1.282124 3.603685 1.663342 -0.523402 1.589358 -5.463886 -0.753901 2.085861 -1.228705 -5.542264 1.349872 -3.391374 1.002732 3.783516 -1.875258 2.193144 -1.404879 -3.106670 -0.432904 -1.636040 1.649031 -2.124170 -2.621644 0.893809 -0.736590 0.404721 2.044222 4.446373 4.266514 2.357017 -0.201935 1.022552 1.180834 -1.229193 0.884421 0.181605 -0.131291 1.590933 1.404271 1.952635 0.329528 1.459729 3.278573 1.298186 -1.498633 3.881884 -0.074761 3.979313 -1.971629 -0.016884 0.066281 -2.869692 2.750857 5.843834 -2.618036 -1.349864 2.331610 1.394200 0.969163 -4.283547 0.185533 -1.747830 -1.208224 3.312701 1.449458 0.384650 -1.450692 3.173006 1.359817 -6.234867 5.480064 -0.649526 -0.187518 1.455183 -0.912952 -0.959181 1.599468 -3.432869 -0.374234 1.818790 3.238031 -3.968171 0.308262 -0.250743 4.452213 -0.510841 0.995693 -6.809083 -0.647665 2.038185 2.720300 3.071011 3.131887 -2.201983 -3.999779 -0.092061 -1.595657 -2.337242 -1.775093 0.717806 -2.813791 0.598985 -1.059687 0.137415 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__main = 0.248389 0.230409 0.080565 -0.367136 -0.315958 0.060027 -0.212602 -0.326462 -0.048444 -0.094459 0.284319 -0.458616 -0.396138 0.469227 -0.300062 -0.494748 -0.038735 -0.192363 -0.174457 -0.150340 -0.017222 0.045214 -0.026102 -0.303102 0.039485 -0.007641 -0.015813 0.200746 0.621959 -0.309237 -0.385890 0.040711 0.272560 0.608552 0.130976 -0.117846 0.120459 0.598989 0.122826 0.124849 -0.691158 -0.307842 0.557444 0.032811 -0.157898 -0.746068 -0.341264 0.304503 -0.731323 0.140591 0.068817 -0.159183 -0.122710 -0.307495 -0.094439 0.733334 -0.966399 0.920923 0.151595 0.102684 -0.070761 -0.114126 0.149302 -0.044210 0.345181 -0.399505 0.049700 0.235901 -0.543752 0.151801 -0.350067 -0.457064 1.003928 0.039275 -0.278433 0.061563 -0.192687 -0.306064 0.213848 -0.634105 -0.263592 -0.076847 0.373593 0.450628 0.407298 0.138746 -0.053162 -0.778001 -0.302258 -0.735961 0.289853 -0.476881 0.420610 0.359503 -0.666283 0.126589 -0.024503 -0.458103 0.299030 0.358438 0.498191 -0.026216 0.243300 -0.180582 0.164203 0.126473 0.023804 -0.141314 0.055614 -0.430288 -0.259067 0.217128 -1.085336 0.108234 -0.535156 0.396938 0.010431 -0.043816 0.055740 0.023627 -0.409990 -0.512643 -0.008709 -0.080794 0.566147 0.598852 -0.025159 0.203875 -0.204919 0.465868 0.181055 -0.009678 -0.156053 0.182471 0.096675 -1.283258 -0.816778 0.098011 0.294066 -0.335059 -0.637613 -0.448919 -0.082301 -0.224331 -0.209111 0.296291 0.721788 -0.079083 -0.572228 0.488987 0.153039 0.314690 0.875756 0.006628 1.029585 -0.587067 0.342955 0.158195 0.052470 0.013920 -0.431173 -0.312976 -0.355555 0.024225 0.079864 -0.506852 0.035585 0.062345 -0.061256 0.148131 -0.141455 -0.202685 -0.456032 0.554712 0.360843 0.611704 -0.002268 0.809428 -0.517080 -0.800671 0.314292 0.082457 -0.030295 0.156297 -0.173056 0.055984 0.391431 -0.527592 -0.313908 0.069199 0.091131 -0.180477 0.504556 0.547313 -0.041300 -0.034629 -0.060277 0.158443 0.392665 -0.351993 0.394544 -0.549021 0.087544 0.528061 0.074920 -0.905942 0.085800 -0.368357 -0.039704 0.373443 -0.092061 0.220311 -0.047792 -0.300787 0.118345 -0.190505 0.470826 -0.071230 0.073881 0.194722 -0.409967 -0.105709 0.091195 0.654625 0.486421 0.277706 0.034885 -0.089388 0.143107 -0.314672 0.319541 -0.079058 0.102813 0.200969 0.258939 0.293667 0.061406 0.075269 0.385443 0.205182 -0.261926 0.495037 0.332570 0.632586 -0.397021 0.073128 -0.073867 -0.379686 0.487394 0.945075 -0.600953 -0.303167 0.210521 0.225672 0.186985 -0.730537 -0.254369 -0.129260 -0.498976 0.529199 0.057084 -0.038519 -0.161583 0.761849 0.079371 -0.607472 0.670054 0.104085 0.027137 -0.068506 -0.286619 -0.201461 0.384895 -0.360668 -0.129935 0.255893 0.492570 -0.339641 -0.360827 -0.085572 0.509448 -0.145639 0.068426 -0.405340 0.081152 0.569407 0.677682 0.398620 0.050880 -0.266072 -0.404205 -0.073608 0.095880 -0.029967 -0.119996 0.204184 -0.474666 -0.074850 -0.018161 -0.220651 +PE-benchmarks/program-for-nth-fibonacci-number.cpp__fib(int) = 0.514602 0.602455 1.062756 -2.034972 -0.480861 -0.153539 1.983123 -0.491188 0.300068 2.402740 0.928065 -0.923830 -1.999302 2.084790 -0.143419 -1.428495 1.181210 -1.400281 -0.409473 -0.151728 0.037121 0.986224 0.005430 -1.078658 1.141385 -0.213617 -0.093020 1.770670 0.464728 -0.711403 -1.018119 -0.112482 0.349256 2.551774 -0.587668 0.073399 -0.381583 2.784532 -3.151382 2.811510 -3.069183 -2.125706 3.018443 0.159946 -0.618539 -3.239780 -0.721816 1.130998 -0.486011 -1.915954 0.554400 -0.261835 0.423172 -1.910926 0.227886 3.060225 -3.586209 0.545866 0.576980 -0.551155 -1.229109 -0.422693 1.100591 0.141729 -1.355797 -1.749423 0.466781 -1.028641 -1.664007 0.502014 -1.387568 -2.375625 1.705435 0.840232 -0.849450 1.006278 -0.131831 -2.754709 1.537396 -1.403806 -0.888940 -0.772759 0.858264 -0.387854 1.367266 0.180261 1.230358 -3.527772 -0.609535 -2.454036 1.771617 -2.257904 1.985012 2.226289 -0.796206 1.366460 0.199447 0.402364 0.490664 -0.393419 2.337548 1.138421 2.356650 -0.444977 1.577618 1.695621 -2.222067 -2.121524 -1.658203 -1.675984 0.427066 -0.788038 -3.076111 0.250860 -1.697877 -0.943358 1.535968 -1.170901 -0.458712 2.428176 -2.796036 -0.151031 1.031078 -0.486331 1.117886 2.778663 0.080207 -0.289177 -0.229197 2.109009 0.018248 1.084100 -0.636980 1.173805 -1.074768 -2.003596 -0.057481 -0.460954 0.251061 -1.908617 -2.399877 -3.471592 -0.349876 0.591251 -0.708800 1.321440 3.840661 -0.596544 -2.440774 1.711024 0.577011 0.470782 1.411987 0.143509 3.526307 -2.740661 1.272639 -0.665801 0.892333 1.071142 3.859576 -0.377132 -1.581543 0.719517 -0.636793 -2.834493 1.588160 -0.052682 0.449687 0.090563 0.096616 -1.388371 -1.674445 2.749681 -1.441581 3.015468 -1.375138 3.027993 -2.003947 -1.928618 1.310860 -1.819440 -0.549494 -2.599475 -1.354051 0.566510 1.574650 -1.732328 -1.201507 -1.791035 -0.351298 -0.175011 1.875738 -3.023241 -0.022826 -0.928577 -0.379021 1.746240 1.086307 -0.856950 0.580943 -2.467288 0.608422 1.422893 0.100155 -3.457146 0.304206 -1.552907 -0.452219 0.888114 -0.429303 1.289912 -0.943928 -1.354844 1.233747 -0.845698 -0.397970 -1.378096 -3.421866 0.437251 -0.615747 0.297452 0.779495 2.767389 2.284130 1.245959 -0.123868 -0.455704 0.421593 -1.125140 -2.385384 0.536586 -0.476533 0.494328 1.200290 1.683754 0.624394 0.371136 2.078771 0.824755 -0.457370 2.199201 1.188390 2.289502 0.270467 -0.665937 0.993412 -1.517560 1.350848 2.670213 -0.043094 -0.898496 1.523098 0.788929 -1.094487 -1.340232 -0.644454 -1.147675 -1.219741 2.570823 0.440260 -1.056977 -0.478952 3.570279 0.144848 -4.036538 1.537900 -0.093538 0.939834 1.153161 -0.837589 0.688016 1.647398 -0.999463 1.205233 0.491409 1.909908 -1.797389 -0.731525 -0.054141 1.394147 1.780716 -0.188227 -4.950100 -0.074435 0.505146 3.045512 1.255448 3.314775 -0.852150 0.660497 -0.602139 -0.394517 -0.328302 -0.984934 1.241284 -1.136644 -0.472921 -3.739459 0.806004 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__min(int, int) = 0.398973 0.111584 0.386305 -0.606548 0.095880 0.118900 0.616281 -0.183308 0.282220 1.025343 0.216332 -0.077469 -0.630147 0.731656 -0.171921 -0.416068 0.666955 -0.780869 0.079174 0.097249 0.067953 0.366610 0.048841 -0.418374 0.456178 -0.088582 -0.046742 0.389595 -0.161971 -0.367397 -0.572654 0.022557 -0.028690 0.839069 -0.216738 0.089803 -0.029899 0.860576 -0.886830 1.226215 -1.254574 -0.781108 0.841516 0.048541 -0.058383 -0.919971 0.075638 0.210849 0.044332 -0.625760 0.167017 -0.325349 0.086164 -0.575395 0.105076 1.017841 -1.295457 0.149373 0.051055 0.024474 -0.337628 -0.171410 0.498193 0.057046 -0.280307 -0.505512 0.333275 -0.148309 -0.849667 0.304592 -0.467884 -0.773280 0.482246 0.351982 -0.348582 0.260511 0.000000 -0.940733 0.473554 -0.966287 -0.250345 -0.240117 0.328421 -0.077560 0.427887 0.178770 0.527773 -1.243135 0.019476 -0.734344 0.776128 -0.680235 0.804535 0.696354 -0.097492 0.377534 0.133531 0.338221 0.163743 -0.040627 0.878409 0.512445 0.642549 -0.336180 0.464534 0.506470 -0.735648 -0.632602 -0.390387 -0.356312 0.038100 -0.113207 -0.881846 -0.047632 -0.673393 0.127854 0.592684 -0.290571 -0.181634 0.689214 -1.336679 -0.380169 0.176696 -0.120541 0.571236 0.811913 0.084706 -0.053882 0.011523 0.834634 -0.054840 0.131723 -0.302732 0.349920 -0.500394 -0.522521 0.007443 -0.305020 0.082424 -0.767508 -0.841129 -1.276654 -0.178603 0.376559 -0.112809 0.868314 1.255054 -0.083622 -0.738683 0.503592 -0.054591 0.088246 0.656329 0.033509 0.988378 -1.060310 0.609463 -0.159403 0.634069 0.278343 1.300950 -0.146445 -0.402117 0.102354 -0.086701 -0.742505 0.390239 0.094167 0.236058 -0.149232 -0.149999 -0.433337 -0.453191 0.795619 -0.681056 0.958754 -0.526430 1.124492 -0.822791 -0.646800 0.402438 -0.764713 -0.165558 -0.751333 -0.439390 0.103227 0.551322 -0.783073 -0.386284 -0.438690 -0.161022 0.102113 0.618890 -0.945203 0.011639 -0.390512 -0.357390 1.109394 0.240224 -0.309494 0.179556 -0.752900 0.086241 0.437971 -0.067372 -1.075824 0.163144 -0.584532 -0.082250 0.426333 -0.171649 0.364274 -0.425848 -0.619668 0.376774 -0.234461 -0.050069 -0.553457 -1.002812 0.012649 -0.097679 -0.077944 0.226570 0.831546 0.624056 0.342656 -0.156250 -0.425879 0.150915 -0.487554 -0.696944 0.158388 -0.082834 0.148528 0.254276 0.595677 0.089780 0.053593 0.552328 0.271136 -0.125298 0.715665 0.319661 0.610941 -0.196879 -0.101231 0.314151 -0.731808 0.502277 0.725643 -0.470062 -0.181339 0.452044 0.247507 -0.284158 -0.192983 -0.172673 -0.504299 -0.392454 0.691012 0.164828 -0.208641 -0.315046 1.196159 0.202146 -1.341457 0.588194 -0.077471 0.238777 0.494066 -0.288135 0.177167 0.487221 -0.394830 0.349025 -0.016384 0.710210 -0.465830 -0.305600 -0.099066 0.463898 0.458871 -0.142249 -1.370404 -0.095091 0.229302 1.062930 0.622852 1.007779 -0.191408 0.270836 -0.433562 -0.268564 -0.181743 -0.295253 0.521033 -0.252173 -0.193384 -1.258286 0.423693 +PE-benchmarks/minimum-number-of-jumps-to-reach-end-of-a-given-array.cpp__minJumps(int*, int) = 2.939731 0.562608 3.298463 -3.047640 -1.361794 1.608147 1.228278 -3.097352 0.826290 8.870340 2.111398 -1.549967 -2.183278 3.580850 -1.659377 -2.807882 2.568353 0.828545 0.823325 -2.008605 -0.341036 1.473705 -0.764500 -3.079682 2.002268 -2.207708 1.263683 2.928033 -1.218157 2.177430 -2.362759 -0.960794 0.071386 6.959431 0.175208 0.683378 -1.092100 6.155013 -5.998281 6.287681 -7.675492 -7.402846 6.645399 1.099375 1.443269 -3.357962 -0.550071 2.125870 -0.579561 -4.472239 0.517050 -2.562991 2.757816 -3.771201 -0.370789 4.806374 -7.415766 -0.711963 0.493363 -4.188327 -5.312937 -0.537170 3.779325 2.203424 -4.332380 -4.200956 1.738759 2.021005 -2.219256 1.508315 -3.739555 -7.439171 2.797657 1.457352 -2.634160 1.040763 0.242305 -5.529743 3.387203 -1.187098 -3.438965 -2.513649 1.420474 -3.282059 2.017691 2.696373 6.871706 -9.041966 2.432934 -7.453902 5.688212 -3.180797 6.104911 5.056980 -2.508089 2.652238 2.938721 5.815942 2.084711 -0.809890 6.048946 3.447266 3.111193 -0.993928 3.998303 4.659776 -5.373891 -5.132522 -4.269573 -4.125802 1.235911 -2.748403 -6.788702 0.165857 -5.048055 0.388265 1.703752 -2.365251 -1.070011 7.518210 -10.817771 -1.810356 2.034469 -1.031902 3.849413 3.767663 0.481416 0.799437 1.152910 5.417252 -2.135460 -1.473849 -1.140068 3.454102 -4.344071 -2.059440 -1.983337 0.996555 2.143843 -5.914430 -6.309505 -9.034059 -1.813778 5.125071 -1.278325 5.295250 9.900989 -2.012940 -5.479139 2.784680 -1.978446 -2.136025 6.126167 1.601994 8.311188 -7.684350 3.634615 -2.652394 2.762535 2.877472 7.885473 -1.199499 -2.964312 3.856802 -0.517858 -2.409323 5.490533 -1.535558 0.651917 -2.664912 1.303130 -1.626309 -0.774163 5.499949 -6.640083 5.613808 -3.843029 8.207405 -5.914498 -4.470573 1.927095 -8.172569 -3.211497 -3.887769 -1.147257 -0.611030 5.765244 -5.434420 -3.373270 -3.070711 -2.672395 0.886538 5.278297 -4.604908 0.249888 -1.037955 -2.907416 6.876889 2.460147 -0.056656 -0.490276 -4.638999 0.595017 3.639243 -1.202599 -6.717911 -1.316047 -5.210267 -0.481122 -0.109595 -0.198058 4.687953 -3.979026 -2.285427 0.815417 -1.522978 0.002659 -2.854020 -6.560285 2.150159 -1.092144 1.490326 1.623228 7.156214 5.502650 4.986635 0.444624 -1.408994 1.412820 -4.389469 -4.273842 2.875294 1.517824 1.920630 2.142565 4.742233 0.716971 2.021061 3.529901 1.102677 2.155758 5.775151 0.814136 5.856043 -2.541882 1.179938 1.554707 -3.033425 3.601642 6.562100 -1.215576 -1.314716 2.285084 0.085877 -3.339610 -2.096563 -0.035362 -1.931647 -1.949827 2.473620 4.214254 -0.790919 -3.634716 8.854775 2.110256 -10.370469 5.073433 -0.423310 1.616668 5.650738 -3.075863 2.247564 2.191289 0.385159 3.790040 2.348028 4.750331 -6.456817 -0.338674 -0.161443 4.585703 4.617400 -0.909774 -10.534140 2.084517 1.343730 6.508458 2.496140 7.746221 -4.222895 2.029551 -1.666806 -3.604005 -1.045226 -1.063199 3.482795 -0.912110 0.632780 -9.286532 1.467174 +PE-benchmarks/graph-coloring.cpp__main = 2.133250 0.389332 2.423643 -1.024747 0.340626 0.069160 -3.447180 1.291874 1.614293 -0.124389 -1.156516 0.138543 -2.703321 2.333500 -3.659708 -1.986986 1.842018 -0.142878 3.520077 -1.157615 1.648867 0.811920 3.159403 0.643087 1.490600 -1.710671 -2.080310 1.622524 6.414364 -1.443496 -0.998523 1.288657 1.501369 1.615135 -2.186059 -2.547761 2.041076 3.232086 2.183392 0.744645 1.461882 0.445802 1.448444 1.221343 -1.937752 -1.746281 -2.583202 -0.391142 -4.641663 0.107992 1.056485 -0.056763 -0.625630 -0.456771 -0.750621 2.910606 -5.828257 2.348106 -2.367745 3.384304 3.854738 0.669182 -0.608852 -1.188324 4.329478 -0.554153 -0.135680 0.855199 -5.650488 -0.162429 1.152896 2.401717 4.347059 0.033507 -1.490495 1.728041 4.494748 -0.976308 0.213663 -5.311908 -0.836586 -0.179883 -0.988507 1.954973 3.431766 -0.910557 -0.623250 -1.741386 -0.116406 0.240722 2.731109 -2.657880 1.417067 1.783228 -3.935298 1.376126 1.193704 -0.489226 0.605959 0.060097 5.520595 2.297913 -1.518137 -0.002311 0.203924 -0.857948 0.591134 1.565093 -0.757245 -0.431851 -1.733499 -0.611363 -4.672273 -1.865079 -0.789907 1.774782 3.143371 -1.548198 -1.594714 -0.435277 -2.736942 -1.751570 -0.892429 -0.069342 -0.712167 2.138627 0.317539 -1.586664 1.021659 4.378971 -1.095275 -2.737760 2.159918 -0.951714 1.456478 -4.013968 -1.256373 -2.483989 -1.102885 -0.880725 -2.244111 -1.750142 0.377266 -2.876671 0.965623 1.588173 4.093719 2.700578 0.514011 2.114600 -0.661629 2.013818 4.829689 0.179031 2.722805 -1.244328 -2.519792 -0.861198 -0.969148 1.686263 -0.490252 0.781328 2.821249 -0.707115 2.585740 0.548492 -4.895407 -2.421922 0.360207 -0.406871 -2.132274 -1.401943 -1.820406 1.780899 0.871087 0.735534 -0.328206 3.641550 2.751869 -6.829133 0.427871 0.161465 0.741186 -0.758238 0.410511 -1.174766 -0.678610 -3.314122 -1.358253 -0.214768 1.892907 0.046298 0.067332 1.042152 2.465112 -0.789857 0.033014 2.537100 0.901313 -0.490561 3.170877 -3.801077 -1.675576 1.433498 -0.979445 -4.355038 3.493470 -0.778089 1.215351 2.366671 -2.955470 -1.913161 -1.430853 -3.041223 -2.083902 -2.336441 0.760665 -1.236689 -1.973598 0.056343 0.311692 -0.926441 2.390478 0.881057 4.028428 -0.786113 -0.756309 1.005980 1.661914 -0.094185 0.973605 0.380605 -0.022896 0.354236 -0.233659 1.837138 -0.141592 0.243949 0.964145 2.646110 -0.593771 1.145026 0.836621 1.896735 1.277617 -1.103206 -1.446760 -2.304498 1.389195 4.026210 -0.476073 0.549804 1.876026 1.681727 3.846612 -4.745940 1.414050 -1.278604 -0.274035 3.629042 -0.871983 0.895386 0.570914 -1.041233 -0.259111 -2.753015 2.440141 -0.420760 -2.485464 -0.618597 0.067974 -1.162364 0.485295 -3.761448 -1.867115 -0.589606 1.709923 -1.202433 2.029558 -0.757855 1.510545 -1.533301 1.388372 -3.854356 -1.260740 0.820067 1.115287 2.512326 1.059444 0.336461 -4.812895 0.725155 0.476492 -2.556449 -1.657856 0.402168 -3.131263 0.427290 3.107797 -0.593584 +PE-benchmarks/graph-coloring.cpp__Graph::greedyColoring() = 3.643976 0.519782 5.391260 -5.506240 -4.210893 3.965615 -2.192141 -6.159067 1.344982 13.170358 3.866099 -4.108342 -6.863052 8.277278 -2.822525 -8.487483 2.515155 2.036867 1.456209 -4.536695 -1.662130 2.465427 -1.692206 -3.755558 3.129772 -4.562162 1.231545 5.324652 3.326585 2.176122 -5.205540 -1.500445 -1.048596 13.602315 0.957879 1.726396 0.910165 14.760344 -8.073038 11.594889 -12.794995 -14.163501 11.142428 2.202356 0.589827 -1.776809 -0.511075 4.699053 -9.238936 -4.569657 3.952824 -4.232060 3.247593 -4.979870 1.776856 9.156152 -16.697240 4.570761 0.289390 -5.105018 -7.786313 -2.526755 4.568018 3.318306 -5.252619 -7.594942 3.593172 5.741586 -6.842596 1.493123 -6.362807 -13.448493 9.405111 3.254994 -6.239709 2.204659 2.256274 -7.219423 6.259862 -4.454953 -9.008622 -3.638621 3.602042 -5.740065 7.318105 6.411220 10.448524 -18.329493 3.751757 -15.633711 10.683078 -6.834232 11.879340 11.284347 -8.351388 4.629201 6.093558 8.680014 4.127607 -1.704040 12.386407 3.329839 2.939651 0.183332 6.401062 6.749447 -9.392350 -7.816414 -7.581551 -8.956716 0.503224 -4.363825 -12.976527 -0.003667 -9.858557 5.095177 3.238349 -1.703073 -3.777168 9.100193 -20.594640 -5.658268 1.527358 -2.120486 11.114760 8.064093 -0.392175 3.516554 1.789733 12.290049 -4.945727 -3.130229 -4.170732 5.921510 -3.085168 -3.582489 -10.097681 2.360579 6.013370 -10.320858 -13.121228 -15.211554 -4.389482 7.629551 -2.253838 14.547236 20.843458 -4.776219 -9.544040 8.685639 -7.857389 1.876443 14.988561 2.828406 15.919493 -13.406400 5.988806 -5.033205 3.451489 3.371170 8.195394 -0.821057 -4.942891 5.982742 2.201973 2.862282 6.711517 -2.777063 -2.039339 -10.419465 2.424118 -3.912283 -3.180254 12.088284 -11.660478 9.555827 -3.709840 17.538044 -11.220919 -11.335443 5.203402 -13.442378 -4.496972 -6.557731 -4.217957 -1.947638 9.835616 -11.960379 -6.748586 -5.434182 -2.631595 -0.459750 7.606691 0.792430 0.761632 -0.919229 -2.739886 14.721767 9.026710 1.034685 -0.871565 -11.675326 1.088332 7.580683 -4.092689 -11.415982 0.171466 -8.801568 -0.950287 3.813973 -1.038301 7.079154 -8.206974 -5.370610 -1.615114 -1.944746 4.751114 -2.178094 -13.718976 4.685879 -1.388347 0.834534 6.741384 12.015663 11.513398 9.863323 4.305202 -1.699107 2.800374 -6.075226 -2.712031 4.384602 3.871258 7.159218 4.854523 9.596976 2.881064 3.353080 6.491507 3.677501 1.932529 11.243482 2.462839 14.841425 -4.946826 2.582743 0.421953 -5.365140 7.527753 15.512335 -9.262351 -0.391138 5.921797 2.783256 -2.781272 -7.684344 -0.379283 -5.734693 -2.791492 4.025431 4.919590 -1.520309 -6.602327 16.986529 2.594424 -18.707280 10.694057 -0.189903 3.073029 8.393367 -4.821991 0.494057 4.491827 -6.130892 7.798799 6.065756 9.179460 -11.021356 1.980190 -1.313490 9.561502 5.905888 0.072601 -14.991872 3.526306 4.570662 12.618882 8.337847 9.709036 -7.281605 -1.527772 -2.172360 -9.033345 -2.016072 -1.548409 6.988601 -2.716369 3.243556 -13.464126 -3.448936 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__main = 2.231783 0.413650 2.262322 -0.906671 0.352934 0.193752 -2.842263 0.643218 1.681237 -0.252211 -0.748655 0.291147 -1.488174 2.275236 -3.402357 -1.151412 1.622061 -0.142394 2.965339 -0.560601 1.520274 0.529452 2.293067 0.562513 0.899265 -1.338358 -1.001676 1.134126 4.587315 -0.887039 -1.808674 0.871640 1.209220 1.485072 -1.398951 -2.266124 1.710337 2.666049 1.499929 1.020354 1.133973 0.636298 0.677497 1.045571 -1.547231 -1.961492 -2.645532 -0.577302 -3.305250 0.189537 1.296112 -0.452149 -0.434969 -0.048607 -0.235542 2.306363 -4.537868 1.713700 -1.815927 3.311838 3.651396 -0.010146 -0.227034 -0.904409 3.187913 -0.271438 0.451833 1.098006 -4.567116 0.106008 0.492270 1.172449 3.662917 0.229845 -1.619885 1.011380 3.803908 -1.794751 0.227891 -4.399334 -0.807866 -0.051239 -0.963527 1.892243 2.948053 -0.901368 -0.546739 -1.506987 -0.179135 -0.155255 2.033029 -2.546147 1.319878 1.461651 -3.535764 0.704655 1.063944 0.429039 0.715778 0.178869 4.354039 2.587170 -1.528664 -0.838982 0.596134 -0.567280 0.652009 1.178438 -0.445087 -0.311882 -1.726420 -0.444059 -4.474704 -1.750435 -0.808253 1.297657 1.829173 -1.175879 -1.340565 -0.025391 -2.503560 -1.629236 -0.772742 -0.086195 -0.397525 2.156698 0.118618 -0.894957 0.595161 3.520241 -0.823881 -2.469310 1.216292 -1.017405 0.289482 -3.631463 -1.602588 -2.144067 -0.432211 -0.801229 -2.318356 -1.746264 0.063637 -2.332559 0.986665 1.200064 3.133560 2.204321 0.424196 1.505732 0.006141 1.301768 4.556234 0.156279 2.443436 -1.351779 -1.371836 -0.810155 -0.583853 0.653897 -0.757967 0.409054 2.457231 -0.603030 1.914692 -0.383747 -3.238407 -1.930994 0.258462 -0.195316 -1.845815 -0.995401 -1.538563 2.016504 0.301417 0.299347 -0.618703 3.099706 1.665772 -5.412139 0.158827 -0.045436 1.048960 -0.866772 0.494361 -0.944951 0.418341 -2.828546 -1.251363 0.377689 1.305739 0.506017 0.201857 0.774804 1.613476 -0.938020 0.026731 2.147077 1.248688 -0.345029 3.081452 -2.803625 -1.200366 1.401518 -0.998494 -3.870950 2.926994 -0.993001 0.883693 1.000814 -2.342262 -1.824044 -1.694985 -2.971004 -1.793404 -2.143980 0.764817 -0.870695 -1.897916 0.159989 -0.253881 -0.769712 1.920168 0.535939 3.225182 -0.405050 -0.088225 -0.149137 1.464333 -0.474145 0.647034 0.703079 0.397064 0.043859 -0.407363 1.963290 -0.313797 -0.200274 0.236603 2.036976 -0.059556 0.778870 1.160824 1.481947 1.326326 -0.583239 -1.438730 -2.357895 1.254711 3.809042 -0.139111 0.708989 1.308820 1.541928 3.008822 -3.988253 1.039997 -0.903985 -0.682538 2.823050 -0.638251 0.716946 0.293697 -0.406175 -0.274716 -2.203719 1.326781 -0.454843 -2.239423 -0.061524 -0.191852 -0.774000 0.202453 -2.785011 -0.905410 -0.856964 1.669557 -0.639317 1.093505 -0.811778 0.772787 -0.907739 0.675953 -3.221868 -0.402097 0.976177 1.406925 2.372319 1.034313 0.072429 -3.249218 0.405552 0.280279 -1.918363 -1.360506 1.105583 -2.705332 0.148607 2.262746 -0.691686 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__std::stack > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__Graph::topologicalSortUtil(int, bool*, std::stack > >&) = 1.369127 0.857195 1.724223 -1.797524 -3.073332 1.324323 -2.228763 -1.973878 0.304908 2.766790 1.539367 -2.099889 -1.268325 3.673020 -1.630163 -2.785285 -0.528548 -0.436731 0.153852 -1.588545 -0.315516 1.168591 -0.678858 0.001075 0.236383 -0.924242 -0.232437 0.914998 1.959004 -0.398233 -2.109421 -0.317539 -0.245990 3.904678 0.610297 -0.694774 1.197457 5.278097 -1.368050 2.215859 -3.621187 -3.844113 2.214459 0.731146 0.010700 -0.732573 -1.434475 1.786803 -3.429540 0.185294 2.214910 -0.745809 -0.088857 -0.351703 1.189023 2.199369 -6.058764 3.544905 0.250619 -0.349766 -1.165175 -0.711314 0.917641 0.986833 -0.280808 -1.967532 1.333773 2.819161 -1.943179 0.140325 -1.077258 -4.160631 3.823353 0.851717 -2.080705 0.464435 1.418534 -2.064688 2.513778 -3.112466 -3.657463 -0.274269 0.985454 -1.651250 3.066300 1.553155 2.192984 -5.486421 1.651167 -5.247532 2.644749 -2.556120 2.666490 3.656808 -3.633080 0.636608 1.907492 1.870798 3.128358 0.328077 3.899806 0.940933 0.552027 0.704363 1.354858 1.975213 -1.814152 -0.866583 -2.182351 -3.738160 -0.604608 -0.564450 -4.662156 0.430537 -1.771250 1.913381 0.363590 -0.198742 -0.679058 2.086688 -5.399991 -2.832415 0.133492 -0.493221 3.064061 3.050262 -0.930632 1.644920 -0.649333 4.152259 -1.686006 -0.438287 -0.832974 1.264737 -0.909521 -2.795678 -5.616608 1.428397 2.146978 -2.758350 -3.851300 -4.403707 -0.699557 0.814233 -1.060310 5.249090 6.717725 -1.880921 -3.201740 3.830913 -0.844549 0.624529 5.678219 0.321174 5.303920 -3.058517 0.774742 -1.450259 -0.310323 -0.410472 -0.666046 0.553481 -0.481368 1.362733 1.376741 0.405018 2.145094 -0.737516 -1.885562 -2.810470 1.067868 -1.210361 -1.449441 3.845890 -1.039661 2.295200 0.453842 5.517358 -2.780273 -4.182149 1.923896 -3.151972 -0.453600 -0.988773 -1.424201 -0.384078 3.073430 -3.366257 -1.607910 -0.910756 -0.946161 -1.394813 1.052962 2.894415 1.001478 0.675481 0.475885 3.646842 4.497218 0.857293 0.658992 -4.203362 0.380744 2.620618 -1.514419 -3.808434 0.478093 -2.758396 0.074621 1.493936 -0.733983 1.508586 -2.540789 -2.038552 -1.277634 -0.795905 2.857095 0.555935 -3.214104 1.514946 -1.644151 1.191040 2.056221 2.878978 3.866962 3.599020 2.915961 -0.170877 0.879885 -1.261243 1.712410 0.617602 1.787868 1.973034 1.658502 3.183761 1.261009 0.890856 1.937311 1.704243 -0.224133 3.406447 0.434411 5.694757 -1.977931 1.198850 -1.429669 -1.033707 2.712766 6.503380 -3.484624 0.243665 1.670147 1.325983 -0.052053 -3.558471 0.072764 -1.847507 -0.669600 0.492202 1.053341 -0.425652 -1.513877 4.325740 0.540197 -4.870883 3.370755 0.019553 0.706851 1.812329 -0.861679 -0.805184 1.214654 -3.553009 2.383785 2.798983 2.766192 -2.948291 -0.174152 -0.548805 3.369046 0.255582 1.550387 -3.536260 2.126167 2.739318 3.077096 2.285015 1.747080 -2.798968 -2.800533 0.559755 -2.566832 -1.250571 0.578800 2.157419 -1.924090 1.825583 -1.746566 -3.215853 +PE-benchmarks/longest-path-directed-acyclic-graph.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/ugly-numbers.cpp__main = 0.248389 0.230409 0.080565 -0.367136 -0.315958 0.060027 -0.212602 -0.326462 -0.048444 -0.094459 0.284319 -0.458616 -0.396138 0.469227 -0.300062 -0.494748 -0.038735 -0.192363 -0.174457 -0.150340 -0.017222 0.045214 -0.026102 -0.303102 0.039485 -0.007641 -0.015813 0.200746 0.621959 -0.309237 -0.385890 0.040711 0.272560 0.608552 0.130976 -0.117846 0.120459 0.598989 0.122826 0.124849 -0.691158 -0.307842 0.557444 0.032811 -0.157898 -0.746068 -0.341264 0.304503 -0.731323 0.140591 0.068817 -0.159183 -0.122710 -0.307495 -0.094439 0.733334 -0.966399 0.920923 0.151595 0.102684 -0.070761 -0.114126 0.149302 -0.044210 0.345181 -0.399505 0.049700 0.235901 -0.543752 0.151801 -0.350067 -0.457064 1.003928 0.039275 -0.278433 0.061563 -0.192687 -0.306064 0.213848 -0.634105 -0.263592 -0.076847 0.373593 0.450628 0.407298 0.138746 -0.053162 -0.778001 -0.302258 -0.735961 0.289853 -0.476881 0.420610 0.359503 -0.666283 0.126589 -0.024503 -0.458103 0.299030 0.358438 0.498191 -0.026216 0.243300 -0.180582 0.164203 0.126473 0.023804 -0.141314 0.055614 -0.430288 -0.259067 0.217128 -1.085336 0.108234 -0.535156 0.396938 0.010431 -0.043816 0.055740 0.023627 -0.409990 -0.512643 -0.008709 -0.080794 0.566147 0.598852 -0.025159 0.203875 -0.204919 0.465868 0.181055 -0.009678 -0.156053 0.182471 0.096675 -1.283258 -0.816778 0.098011 0.294066 -0.335059 -0.637613 -0.448919 -0.082301 -0.224331 -0.209111 0.296291 0.721788 -0.079083 -0.572228 0.488987 0.153039 0.314690 0.875756 0.006628 1.029585 -0.587067 0.342955 0.158195 0.052470 0.013920 -0.431173 -0.312976 -0.355555 0.024225 0.079864 -0.506852 0.035585 0.062345 -0.061256 0.148131 -0.141455 -0.202685 -0.456032 0.554712 0.360843 0.611704 -0.002268 0.809428 -0.517080 -0.800671 0.314292 0.082457 -0.030295 0.156297 -0.173056 0.055984 0.391431 -0.527592 -0.313908 0.069199 0.091131 -0.180477 0.504556 0.547313 -0.041300 -0.034629 -0.060277 0.158443 0.392665 -0.351993 0.394544 -0.549021 0.087544 0.528061 0.074920 -0.905942 0.085800 -0.368357 -0.039704 0.373443 -0.092061 0.220311 -0.047792 -0.300787 0.118345 -0.190505 0.470826 -0.071230 0.073881 0.194722 -0.409967 -0.105709 0.091195 0.654625 0.486421 0.277706 0.034885 -0.089388 0.143107 -0.314672 0.319541 -0.079058 0.102813 0.200969 0.258939 0.293667 0.061406 0.075269 0.385443 0.205182 -0.261926 0.495037 0.332570 0.632586 -0.397021 0.073128 -0.073867 -0.379686 0.487394 0.945075 -0.600953 -0.303167 0.210521 0.225672 0.186985 -0.730537 -0.254369 -0.129260 -0.498976 0.529199 0.057084 -0.038519 -0.161583 0.761849 0.079371 -0.607472 0.670054 0.104085 0.027137 -0.068506 -0.286619 -0.201461 0.384895 -0.360668 -0.129935 0.255893 0.492570 -0.339641 -0.360827 -0.085572 0.509448 -0.145639 0.068426 -0.405340 0.081152 0.569407 0.677682 0.398620 0.050880 -0.266072 -0.404205 -0.073608 0.095880 -0.029967 -0.119996 0.204184 -0.474666 -0.074850 -0.018161 -0.220651 +PE-benchmarks/ugly-numbers.cpp__isUgly(int) = 0.319974 0.394540 0.515526 -0.571762 -0.294997 0.132930 0.157016 -0.533927 0.267567 0.272645 0.511630 -0.471109 -0.576458 0.301198 -0.545371 -0.507828 0.242371 0.168505 -0.176210 -0.613624 0.143875 -0.042485 0.029384 -0.774177 0.274810 -0.550604 0.353643 0.680564 0.384558 0.113819 -0.374160 0.047109 0.569654 1.080394 0.019161 0.153967 -0.072076 0.711372 -0.034646 0.339764 -1.234977 -0.948506 1.278089 0.202052 -0.045291 -1.234198 -0.498579 0.191974 -0.793307 -0.071072 -0.209094 -0.474756 0.340982 -0.761834 -0.289789 1.256858 -1.125581 0.483611 -0.061224 -0.621794 -0.601529 -0.098624 0.356472 0.122095 0.163433 -0.670733 0.198415 0.586912 -0.809403 0.493511 -0.471756 -0.950439 1.323435 0.039396 -0.325658 0.187875 -0.230104 -0.828025 0.289914 -0.156841 -0.131511 -0.336720 0.795455 0.571974 0.226561 0.183125 0.592599 -1.343791 -0.789782 -1.062616 0.891899 -0.569796 1.064351 0.305454 -0.886000 0.500392 0.145451 -0.266875 0.060414 0.534571 0.932385 0.287187 0.874212 -0.521209 0.615101 0.325161 -0.154605 -0.722602 -0.211571 -0.549296 -0.150839 -0.034826 -1.941539 -0.115425 -1.179058 0.217270 0.011919 -0.416607 0.174683 1.052392 -0.904009 -0.404174 0.384199 -0.133017 0.618986 0.721385 0.243946 0.194080 0.247502 0.727587 0.093699 -0.331249 -0.328426 0.384489 0.013441 -1.846345 -0.668861 0.017766 0.324191 -0.752173 -1.090176 -0.594116 -0.456854 0.433267 -0.105608 -0.162967 1.265473 0.050105 -0.916361 0.270528 0.197470 -0.091157 1.165580 0.304466 1.673828 -1.450328 0.938173 -0.146050 0.543889 0.679759 0.799654 -0.667494 -0.730942 0.293975 0.107169 -1.142889 0.613032 -0.427541 0.365311 0.384053 -0.165541 -0.292367 -0.477349 0.819584 0.158913 1.446089 -0.678663 1.323499 -1.347786 -1.382285 0.343860 0.184280 -0.351211 -0.021916 0.293358 0.090828 0.944711 -0.803600 -0.716813 -0.059099 -0.288674 0.380376 1.104495 0.062702 -0.148976 -0.434596 -0.688145 0.035041 0.226420 -0.491290 0.279571 -0.744418 0.028879 0.744862 0.417125 -1.509891 -0.031713 -0.736824 -0.078306 -0.049878 -0.002660 0.645748 0.116038 -0.341274 0.161202 -0.593103 0.204546 -0.648280 -0.154200 0.359155 -0.390405 -0.195974 -0.261784 1.230133 1.230609 0.358100 -0.313705 -0.362376 0.341829 -1.056786 -0.174360 0.229622 0.326858 0.160042 0.244086 1.100571 -0.128099 0.216551 0.765108 0.185740 0.217846 0.787005 0.380822 0.933477 -0.817422 0.243383 0.042141 -0.733243 0.772627 1.435101 0.028138 -0.688451 0.266023 0.559246 -0.016228 -1.118656 -0.473732 -0.051121 -0.648908 1.206288 0.618429 -0.169519 -0.452591 1.502294 0.603398 -1.348360 0.978481 -0.052944 0.016742 0.212043 -0.869529 -0.140897 0.764128 0.206113 -0.127479 0.009612 0.743628 -0.977065 -1.016302 -0.159350 0.831213 0.144809 -0.497095 -1.256840 0.115038 0.548216 1.349618 0.584619 0.989465 -0.543510 0.058041 -0.436358 -0.168689 -0.149167 -0.036440 0.236158 -0.929877 -0.118950 -0.984664 0.287651 +PE-benchmarks/longest-palindromic-subsequence.cpp__main = 0.269774 0.175633 0.145983 -0.508873 -0.537831 0.393836 -0.888128 -0.455020 0.041357 -0.400838 0.426580 -0.627844 -0.430535 0.579795 -0.340491 -0.960881 -0.065307 -0.081417 -0.057046 -0.395013 -0.040411 -0.074568 -0.113529 -0.265646 -0.106761 -0.189494 0.012801 0.111119 1.179635 -0.308604 -0.745097 0.059983 0.166295 0.979746 0.333977 -0.157993 0.380942 1.111869 0.842558 0.052867 -0.731110 -0.537977 0.548349 0.138719 -0.380157 -0.350435 -0.356169 0.358311 -1.472123 0.525587 0.386031 -0.344849 -0.140239 -0.149824 -0.073820 0.833735 -1.389243 1.394916 0.045530 0.321760 -0.015767 -0.304933 0.252572 0.107896 0.613215 -0.329895 0.346464 0.683677 -0.807858 0.070643 -0.438956 -0.835728 1.579833 0.313530 -0.478441 -0.014192 0.009917 -0.297078 0.266591 -0.633989 -0.719313 -0.032895 0.438670 0.326891 0.888125 0.197034 0.077556 -1.221749 -0.153995 -1.308926 0.477217 -0.615553 0.747530 0.686697 -1.255566 0.026815 0.169268 -0.351334 0.435192 0.263814 0.873323 -0.192422 -0.048088 -0.187568 0.308731 0.077379 0.148227 0.014289 0.166127 -0.726745 -0.539560 0.223568 -1.485194 0.118606 -0.914045 0.740177 -0.136743 0.222967 -0.202802 -0.360277 -0.611189 -1.249064 -0.255553 -0.155873 1.162884 0.803238 -0.169206 0.592612 -0.141386 0.944655 0.023573 -0.274435 -0.424157 0.195915 0.390604 -1.348638 -1.747267 0.322608 0.759462 -0.508946 -1.125596 -0.555278 -0.294524 -0.331496 -0.199939 1.016866 1.269074 -0.154434 -0.722549 0.870912 -0.178909 0.746915 1.763657 0.024291 1.425972 -0.858481 0.561443 0.086140 0.101724 -0.275456 -1.237280 -0.308377 -0.095402 0.103374 0.264508 0.436509 -0.036907 -0.105840 -0.332325 -0.277085 -0.146430 -0.338218 -0.826744 0.900467 0.646227 0.563436 0.472713 1.353543 -0.821391 -1.379010 0.550642 0.117009 -0.085203 0.324703 -0.265927 -0.166736 0.697686 -0.828492 -0.540991 0.207114 0.245013 -0.288130 0.339684 1.821189 0.030508 0.101208 0.056431 0.372186 0.975749 -0.162758 0.404255 -0.957747 -0.049563 0.924413 -0.182556 -0.661503 0.196757 -0.593725 0.003930 0.617637 -0.117898 0.218359 -0.356716 -0.609855 -0.240510 -0.081327 1.150325 0.212653 -0.491284 0.433080 -0.406774 -0.333194 0.358110 0.816622 0.797432 0.558792 0.438040 -0.285941 0.352572 -0.276280 0.812413 -0.349969 0.330799 0.730551 0.320047 0.422184 0.150397 0.098249 0.467517 0.413869 -0.347432 0.612554 0.404175 1.234811 -0.407147 0.295585 -0.371451 -0.653646 0.760493 1.811914 -1.075933 -0.117871 0.394134 0.502941 0.448683 -1.648105 -0.252175 -0.301229 -0.383062 0.298851 -0.033962 0.010844 -0.414830 1.103886 0.182804 -0.917688 1.038161 0.136097 -0.036286 0.118025 -0.451919 -0.525857 0.439890 -1.043592 0.157640 0.516009 0.711684 -0.436140 -0.009564 -0.250749 0.842483 -0.692949 0.137416 0.195556 0.416311 0.883700 0.847844 1.093892 -0.185469 -0.452850 -0.878254 -0.090151 -0.374334 -0.188174 0.015904 0.474843 -0.579690 0.121373 0.145303 -0.811172 +PE-benchmarks/longest-palindromic-subsequence.cpp__lps(char*) = 6.107055 0.545195 3.056801 -2.542536 0.555099 2.783643 2.002884 -5.961231 -0.185222 15.051099 3.606645 -3.061712 -1.928440 4.777179 -1.586076 -4.435846 5.469023 6.781261 1.228337 -3.492357 -2.487382 0.650334 -1.640882 -6.594519 3.724672 -4.195512 2.462855 3.650851 -3.601672 5.469603 -4.165311 -1.246937 0.937023 11.864327 0.958759 0.652548 -2.489015 8.524464 -9.900716 10.707640 -10.212432 -10.277630 11.309410 2.425965 2.983457 -1.729821 -1.011433 3.042484 1.665914 -8.396148 -0.212687 -5.587930 4.800319 -6.661997 -1.365704 9.978199 -9.135424 -2.903257 1.439725 -8.071873 -10.467945 -0.725162 6.919358 2.764659 -7.966632 -7.658666 2.999101 4.896674 -1.604413 2.295215 -9.827032 -15.066604 4.045369 2.614320 -4.258305 1.084099 -2.216761 -7.547562 3.987954 2.642080 -4.705158 -4.832963 3.500383 -3.016397 1.164566 6.709319 12.591871 -15.512773 3.505770 -12.869949 9.914215 -4.176775 12.734151 8.339055 -2.935449 4.017825 5.018369 9.313297 0.739579 -0.318491 10.002599 3.308600 1.847682 -3.659760 5.643613 8.195358 -9.466790 -10.246086 -5.494975 -4.741211 3.009673 -2.303840 -8.519898 0.861161 -12.290011 1.717824 1.799912 -2.712966 -1.692101 11.955885 -16.386358 -4.508384 3.428863 -2.337269 9.729552 6.158404 2.154187 2.335175 1.180378 7.707546 -1.964472 -4.930535 -3.844650 6.221099 -7.044857 -3.898922 -2.716175 1.759567 5.192938 -11.760803 -10.904153 -13.954583 -3.241990 9.827442 -3.016572 8.851258 15.665118 -4.052861 -6.337955 2.994311 -4.206718 -2.261597 10.677031 3.191193 16.545455 -15.938047 9.353385 -2.194121 6.824498 5.986196 10.359472 -3.954194 -6.002802 6.734376 0.100405 -0.693752 12.086085 -3.217653 1.689112 -1.751098 2.938327 1.853159 -0.068191 9.072081 -11.000955 7.785458 -6.362864 14.518824 -10.890631 -6.086771 3.347279 -11.721706 -7.482656 -5.696282 -0.198055 -2.893094 10.916419 -8.206987 -5.982536 -2.932860 -4.760779 3.072976 10.003186 -4.078746 -0.830852 -2.795464 -7.502786 10.290191 3.041983 0.005722 -1.309721 -7.602397 0.160286 5.789895 -3.526240 -10.166477 -2.686383 -8.694720 -1.080733 -2.374672 -0.415502 7.996377 -7.794898 -3.179994 1.252143 -1.757748 0.730812 -5.389049 -6.691506 4.680367 -1.896360 0.254381 2.398835 13.452217 8.661922 8.452716 0.250235 -3.791839 2.751889 -7.665692 -9.355352 7.115325 1.491401 6.731797 3.812916 5.410924 -0.850967 3.460122 4.108628 -3.728539 6.480905 8.907207 2.645792 9.442211 -3.422433 3.171446 3.590163 -7.727107 6.516412 10.003399 -3.631626 -4.495062 3.434509 -1.990455 -6.796761 -2.565820 -0.011807 -1.795802 -6.565038 3.076438 7.575745 -0.210213 -8.357128 16.845731 3.240123 -17.751515 9.098532 0.037274 2.184175 11.083698 -5.755346 6.094546 3.334665 4.618915 3.977443 3.631289 10.126257 -11.641135 1.901241 -1.064744 7.010085 7.393700 -4.667285 -17.956818 4.451831 3.623456 11.343000 4.329898 11.180365 -6.720418 6.518653 -4.164796 -5.038038 -0.048718 -2.887396 6.721268 -0.763858 1.410467 -15.941124 5.355580 +PE-benchmarks/aho-corasick-algorithm.cpp__main = 0.166831 -0.527729 4.587150 -4.173397 -3.912825 0.518475 -4.108984 2.395486 2.733569 2.652825 1.233955 -4.381392 -9.941365 4.919231 -1.726298 -8.796741 2.340110 -0.437914 3.401521 -3.734232 1.299618 1.249215 3.070277 -0.294980 2.500987 -2.458740 -5.187148 4.586922 13.440278 -2.341600 -1.550927 2.451389 0.174442 5.431433 -4.635071 -2.044100 3.608812 9.654193 0.648205 3.144155 -5.162587 -5.306025 6.447192 1.616147 -1.635285 -2.812288 -1.750244 2.675213 -13.935101 0.394544 3.196336 1.716352 0.360379 -3.265739 0.510785 7.043560 -15.938430 7.473448 -2.300966 1.349606 1.387295 2.458369 -1.565183 1.511618 4.555646 -3.132325 0.545501 1.057126 -8.642215 0.227586 1.276275 -0.629910 9.676712 1.059439 -2.777804 4.965607 7.867480 -1.584284 4.476125 -9.102656 -4.755712 -0.407679 1.385121 -1.743728 8.436149 0.217787 2.129481 -7.847394 0.718114 -5.441226 8.060748 -7.594566 3.508836 7.115862 -7.117061 3.994631 2.725231 -3.356688 4.406500 0.439743 10.229371 2.472160 4.129342 2.128782 1.181884 0.861302 -2.602054 -0.354191 -4.279360 -5.133192 -4.194504 -2.123686 -9.641091 -0.395242 -2.511162 5.773780 8.247056 -2.146361 -1.898001 0.970679 -6.004513 -2.549649 0.193420 -0.729701 2.371178 6.185274 -1.721513 -1.384430 1.534308 11.097969 -2.722982 -0.590365 3.063056 1.453510 3.660637 -6.635767 -5.986694 0.074937 -0.321534 -3.441978 -5.579625 -5.530106 0.344341 -1.147013 0.503992 7.796268 13.078673 2.057208 -4.151806 7.053892 -4.666742 5.675813 9.757396 0.536298 8.542991 -4.400882 -1.226942 -4.183909 0.665967 2.038308 2.444524 2.876439 0.450145 1.054373 4.525879 2.596867 -4.522293 -2.739867 0.290252 -5.494511 -0.752790 -5.298546 -4.647997 6.239971 0.325614 6.849404 1.947378 10.365825 0.091096 -12.911965 5.155017 -1.292012 -0.009748 -0.439051 -3.479932 1.556133 -1.416053 -7.000615 -3.563314 -6.370021 1.772883 -1.688615 0.754142 5.019088 3.735612 1.118629 0.801883 7.127789 3.600770 0.328443 2.123829 -11.371181 -1.319426 2.248100 -4.074091 -7.325956 4.805848 -2.430229 2.584511 8.202678 -2.173134 2.146992 -2.228816 -6.485524 -2.507397 -1.572839 3.402382 -2.468661 -7.607221 0.261446 1.587641 0.637585 5.228341 4.721705 9.740149 1.959953 0.433724 3.352751 2.115976 0.198849 4.158097 -1.461275 -0.217141 2.776626 1.087756 3.750778 0.759056 0.731504 5.501833 6.363657 -4.990801 5.287327 1.105891 7.109126 -1.291270 -1.885069 -0.354806 -3.858906 4.334885 9.830031 -6.214878 1.191095 5.164515 5.924978 4.005015 -9.477200 -0.661072 -4.467974 0.172822 5.866073 -1.653752 -1.685295 -0.115279 2.313795 3.367933 -9.041044 8.131122 -0.571049 -0.388303 0.595892 -0.285242 -4.805790 2.952742 -10.879980 0.984318 1.794017 2.649905 -4.934764 1.416920 0.063927 6.773455 -2.439180 4.065877 -6.254496 -3.209809 3.040660 3.351873 7.119140 3.517650 -1.967077 -10.744808 -0.178784 -5.129063 -5.674132 -2.749749 -1.491022 -6.012961 2.493633 0.675611 -5.268070 +PE-benchmarks/aho-corasick-algorithm.cpp__buildMatchingMachine(std::__cxx11::basic_string, std::allocator >*, int) = 7.677689 0.320407 7.599931 -3.399131 0.330788 3.173593 1.223330 -6.635717 2.385955 19.766393 4.524458 -4.423798 -4.112215 8.644280 -3.670484 -5.907265 7.014439 6.137642 3.122300 -3.087059 -1.667056 1.672756 -1.150726 -7.763458 6.211958 -4.601024 3.227128 7.125350 -1.819305 6.053237 -6.380149 -1.023533 1.193102 16.508868 -0.643461 0.262495 -0.200253 14.470629 -14.631767 15.787112 -13.756208 -14.978636 16.379251 2.983048 2.207850 -2.196645 -1.435568 4.989988 -5.448302 -11.090516 1.727116 -5.936571 5.613645 -9.613105 -0.738639 13.752992 -19.406935 -1.007035 0.949117 -7.153192 -12.179166 -1.984069 7.773488 2.520413 -8.153888 -9.919944 4.042229 4.696576 -6.329438 3.173498 -10.670842 -17.466400 9.502289 2.006217 -6.528747 3.395766 1.149341 -11.009950 7.114973 -1.666352 -7.190039 -6.421528 3.816029 -6.292810 6.029161 7.816070 14.200237 -21.111878 4.583738 -16.822020 14.800058 -8.810564 15.932797 13.169559 -9.603626 6.773651 6.877533 14.111244 1.840060 -0.771742 15.560062 6.653192 3.141914 -4.076946 8.041352 10.542562 -13.769533 -12.688140 -10.027996 -8.003732 2.615043 -4.567194 -14.367770 -0.915214 -14.759953 5.016272 5.415488 -4.612071 -3.418976 15.491070 -25.229414 -3.127292 3.818171 -2.492804 11.777408 9.672716 1.369220 1.955530 2.641861 13.343167 -4.079099 -7.245831 -3.766071 7.329091 -8.830653 -6.012195 -4.763998 0.666018 5.599026 -14.291642 -15.832613 -22.070445 -3.711242 10.883570 -2.363269 13.213044 23.034269 -3.013330 -9.218784 6.247485 -6.946006 -0.902754 16.972412 4.120836 20.980525 -19.950941 10.016793 -4.857868 7.544251 7.413259 13.614574 -3.841053 -6.944479 7.842302 1.693960 -1.197865 13.862370 -2.798729 2.362129 -6.223289 2.818251 -1.854747 -1.826172 15.134121 -15.115847 10.786879 -9.529621 21.622790 -13.218803 -11.624273 5.137285 -17.668812 -7.255558 -9.908577 -3.987653 -2.644229 13.601432 -13.803388 -8.726818 -5.779868 -3.791383 3.755513 12.845521 -5.157844 0.047796 -4.180129 -8.127918 15.344965 4.560109 -1.447230 0.099978 -13.028491 -0.923831 8.373599 -5.910293 -16.758813 -0.664156 -12.150152 -0.993968 0.318263 -1.237552 9.376014 -12.060765 -6.886815 1.411770 -3.304319 0.802798 -7.537539 -14.820710 5.206274 -2.195771 0.305275 7.364344 16.954216 13.805031 10.189208 0.527336 -3.194294 3.553618 -9.714185 -10.911534 8.615426 1.942123 9.211985 4.755264 9.141230 0.801010 3.521678 3.661842 -0.705601 5.181475 13.606545 6.110883 13.422464 -4.182170 3.464450 4.045930 -9.046600 9.246323 13.687150 -7.660312 -3.917562 5.637716 0.491190 -6.050694 -4.659940 -1.076320 -4.934608 -6.761225 5.193467 6.930751 -1.331034 -8.414525 21.450511 3.893639 -24.234787 11.944064 -0.882389 2.490501 12.902821 -6.903403 5.370620 5.162340 0.952530 7.514317 3.542626 13.282532 -14.582308 3.545532 -1.432240 10.831562 10.569924 -3.400240 -24.999765 4.488541 3.215692 14.435705 8.197455 15.556092 -8.370098 4.859598 -6.441363 -9.289998 -1.429076 -4.302631 9.101417 -0.962759 1.992107 -21.553399 3.295201 +PE-benchmarks/aho-corasick-algorithm.cpp__std::queue > >::push(int const&) = 0.128696 0.110255 0.208841 -0.451330 -0.629912 0.042195 -0.067134 -0.159900 0.025078 -0.073917 0.280675 -0.429953 -0.269016 0.797707 -0.137389 -0.482604 -0.120766 -0.275980 -0.164460 0.105166 0.025461 0.313051 -0.079866 0.128572 0.024870 0.085608 -0.178408 0.214327 0.450252 -0.339871 -0.429925 -0.049326 0.036225 0.533376 0.006302 -0.089762 0.204950 0.971137 -0.193532 0.583424 -0.475412 -0.329782 0.272058 0.018406 -0.135202 -0.621499 -0.562774 0.369818 -0.424910 -0.115360 0.486502 0.121475 -0.226230 -0.044228 0.352995 0.434961 -0.968626 0.628718 0.187188 0.232728 0.137595 -0.124838 -0.127212 0.016864 -0.135078 -0.308294 0.094931 0.167505 -0.338371 0.007450 -0.065424 -0.592562 0.975533 0.196332 -0.387568 0.169303 0.349476 -0.497547 0.512347 -0.633230 -0.592939 0.082979 0.047924 -0.012721 0.690881 -0.041826 0.096040 -0.816735 0.124194 -0.802437 0.275844 -0.738547 0.170856 0.700412 -0.592352 0.122420 0.172249 0.100071 0.566472 0.283057 0.577746 0.297724 0.198919 0.104268 0.289707 0.210264 -0.207105 -0.171731 -0.367856 -0.686814 -0.088971 -0.053562 -1.090999 0.138933 0.057784 0.296926 0.077085 0.095695 0.058377 0.183145 -0.544406 -0.153626 0.155985 -0.084470 0.255365 0.758544 -0.292058 0.113732 -0.419573 0.657109 -0.121499 0.332943 -0.054153 0.140112 -0.218399 -0.659538 -0.741147 0.118565 0.212313 -0.263982 -0.554373 -0.683601 0.027369 0.017766 -0.248179 0.527674 1.044184 -0.307295 -0.463092 0.770777 0.409633 0.236178 0.589537 -0.045185 0.851713 -0.263172 -0.067533 -0.162412 -0.241271 -0.247207 -0.180362 0.223189 -0.181578 0.097651 0.020144 -0.837265 0.695051 -0.070617 -0.344351 -0.072736 0.029417 -0.330193 -0.493137 0.815323 0.088937 0.501762 0.097926 0.776570 -0.176075 -0.536612 0.367695 -0.103781 0.153611 -0.440964 -0.272876 0.156929 0.365124 -0.495638 -0.193950 -0.080203 -0.164345 -0.394706 0.072749 0.255004 0.104287 0.120846 0.369322 0.315570 0.784409 0.053944 0.233872 -0.758074 0.212714 0.242001 -0.286155 -0.666079 0.223356 -0.325352 -0.006421 0.187126 -0.162740 0.012576 -0.283609 -0.434974 -0.093364 -0.234705 0.350370 0.144551 -0.480117 0.045392 -0.206308 0.357993 0.311249 0.335308 0.734440 0.512295 0.541427 0.064913 0.107773 0.061417 0.046796 0.004188 0.064492 0.184954 0.280805 0.455208 0.298006 0.023626 0.410768 0.370876 -0.083694 0.515406 0.342805 0.945646 0.104450 -0.143683 -0.141151 -0.135012 0.481800 1.107774 -0.434440 0.189447 0.303374 0.338303 -0.075336 -0.530593 -0.072335 -0.270500 -0.351693 0.392019 -0.152829 -0.122151 0.015877 0.555696 -0.100281 -0.712388 0.235024 0.018765 0.213393 0.219654 0.048019 0.000951 0.280286 -0.663495 0.421269 0.378255 0.369825 -0.304795 -0.356501 -0.060037 0.271683 0.099940 0.434251 -0.497973 0.246492 0.442904 0.558222 0.211275 0.150663 -0.354402 -0.454701 0.243290 -0.199747 -0.234313 -0.045508 0.256148 -0.397240 0.022695 -0.289209 -0.675893 +PE-benchmarks/aho-corasick-algorithm.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/shortest-common-supersequence.cpp__main = 0.380156 0.143943 0.414347 -0.554976 -0.838492 0.854111 -1.742602 -0.615704 0.243777 -0.487762 0.483329 -0.625342 -0.311084 0.721615 -0.606814 -1.330825 -0.183787 0.096863 0.213741 -0.824355 0.010884 -0.163986 -0.213643 -0.069344 -0.345587 -0.544406 0.148029 -0.117149 1.477457 -0.117388 -1.081111 0.028581 -0.040858 1.267389 0.554700 -0.123680 0.632875 1.543938 1.639052 0.010147 -0.872917 -0.971345 0.256065 0.328914 -0.357730 0.099207 -0.338505 0.255622 -2.040890 1.079136 0.757456 -0.593731 -0.135802 0.234790 0.089122 0.610371 -1.744113 1.752169 -0.260233 0.419694 0.092916 -0.470817 0.365807 0.364941 0.882382 -0.136001 0.725513 1.515744 -1.020644 0.119135 -0.337465 -1.219345 1.929085 0.565640 -0.746875 -0.176256 0.478210 -0.273199 0.327375 -0.788128 -1.225885 0.033206 0.444424 0.094419 1.255964 0.384892 0.366096 -1.576428 0.232878 -1.808229 0.727191 -0.642379 1.045271 0.885819 -1.744770 -0.147062 0.560965 0.044692 0.770092 0.140524 1.210918 -0.133476 -0.384670 -0.143580 0.436768 0.041434 0.311334 0.266254 0.220956 -1.019166 -0.882846 0.155124 -1.786817 -0.039722 -1.097937 1.111696 -0.409634 0.483022 -0.437699 -0.659738 -1.155508 -2.074769 -0.494442 -0.187003 1.657447 0.743057 -0.329379 1.088653 0.031489 1.469101 -0.384067 -0.697477 -0.660486 0.105203 0.496021 -1.220724 -2.845641 0.607892 1.199342 -0.641168 -1.548501 -0.653146 -0.599692 -0.172874 -0.068175 1.837963 1.782607 -0.215203 -0.870517 1.136622 -0.577748 0.896441 2.742685 0.116767 1.591437 -1.036387 0.726922 -0.174217 0.172742 -0.621607 -1.991622 -0.159564 0.366005 0.267747 0.588964 1.480650 -0.168732 -0.518036 -0.678810 -1.050704 -0.095550 -0.435940 -0.842722 1.100101 0.678806 0.396351 0.822043 1.814261 -1.186154 -1.965254 0.589753 -0.338457 -0.096594 0.634393 -0.153453 -0.486490 1.109569 -1.219999 -0.747044 0.385491 0.168138 -0.268498 -0.004497 2.927007 0.156518 0.294861 0.197648 0.882152 1.628864 0.295135 0.349429 -1.222818 -0.238178 1.242871 -0.441548 -0.409844 0.323643 -0.837920 0.122770 0.638889 -0.098535 0.144790 -0.690472 -0.872340 -0.862936 -0.099325 1.828377 0.557567 -0.900671 0.636272 -0.446050 -0.388661 0.520796 0.754243 1.152075 0.881419 1.001241 -0.550319 0.624078 -0.415748 1.593082 -0.441611 0.895863 1.038040 0.237351 0.695430 0.178166 0.060852 0.463980 0.737336 -0.285293 0.620254 0.261100 1.805700 -0.666045 0.717332 -0.866423 -0.796104 0.921662 2.703367 -1.440092 0.311524 0.499626 0.782857 0.790481 -2.423572 -0.150184 -0.471611 -0.132674 -0.097673 0.095834 0.046365 -0.695511 1.287035 0.438513 -1.079566 1.329948 0.107570 -0.226031 0.369435 -0.619856 -0.977508 0.383478 -1.684279 0.530184 0.739782 0.851852 -0.559179 0.226727 -0.456760 1.146057 -1.118362 0.231205 0.856947 0.875980 1.243398 0.909409 1.684621 -0.371401 -0.715386 -1.463198 -0.056323 -1.045276 -0.509542 0.400212 0.753325 -0.602330 0.450865 0.440165 -1.576500 +PE-benchmarks/shortest-common-supersequence.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/boyer-moore-algorithm.cpp__main = 0.345812 0.141683 2.262396 -2.308782 -2.277711 -0.411897 -2.361969 1.836071 1.170619 1.589643 0.739543 -2.961328 -5.273380 3.144479 -1.210003 -4.148378 1.023756 -0.876721 1.970365 -2.029380 0.967476 0.854068 2.093360 -0.291322 1.460970 -0.773809 -3.802822 1.999835 7.772532 -2.122469 -0.222990 1.608947 0.826729 2.238235 -3.131773 -2.157238 1.539684 4.514881 0.216720 0.507876 -2.767337 -2.355859 3.818667 0.755438 -0.580101 -2.538305 -1.365079 1.764806 -6.376684 0.048758 0.907900 1.597145 -0.216254 -2.287953 -0.733613 3.751850 -8.887936 4.646471 -0.923622 0.769129 1.156650 2.183845 -0.868179 0.445811 3.347789 -1.714304 -0.466401 -0.029788 -4.680371 -0.211631 1.017145 0.885334 4.678436 0.096895 -0.774816 3.095135 3.829070 -0.490772 2.504424 -6.052240 -1.996411 -0.089214 0.606727 -0.277337 3.909927 0.065118 0.460759 -3.287171 0.282114 -2.279891 4.006385 -4.073786 1.132014 3.374828 -3.499730 2.168858 1.242967 -3.175562 3.327235 1.131402 5.544161 1.418754 2.706429 1.519607 -0.039437 0.766300 -0.879092 0.729469 -1.959078 -2.723444 -2.431368 -0.293844 -4.526457 0.243437 -0.837281 2.121720 4.945399 -1.744599 -0.381246 0.569578 -2.134100 -1.512931 0.386890 -0.232801 0.011359 3.317326 -0.663034 -1.669302 0.223807 5.454745 -1.079259 0.051450 3.101121 0.693203 2.020204 -5.381689 -2.474524 -0.007618 -1.242116 -1.923746 -2.134874 -2.943070 1.283594 -1.833645 -0.118871 3.127989 6.409984 1.412881 -2.029854 3.636637 -1.150057 2.479256 4.949138 -0.012393 5.047799 -1.710616 -1.561737 -1.424767 -0.336403 1.555398 0.786701 1.540527 0.475208 0.010947 2.662906 -0.111682 -3.354283 -1.227267 0.566903 -1.553767 -0.281222 -2.875755 -2.583347 2.233023 1.867601 3.629721 1.247306 5.070961 1.289706 -6.883130 3.144334 0.131598 0.056584 0.837660 -1.592239 1.150624 -1.616229 -3.057215 -1.501712 -3.413812 1.040028 -1.398992 0.548372 1.815137 2.631537 1.123809 0.209442 2.262988 0.921241 -0.495758 2.072512 -6.056513 -0.926394 1.022804 -1.608521 -5.028916 2.514439 -1.338401 1.815629 4.994393 -1.499909 1.436859 -0.387252 -3.254376 -0.658273 -0.998569 1.416777 -1.879959 -1.688860 -0.161999 0.066352 1.101790 2.266161 2.885862 4.589800 0.743888 -0.750769 2.838397 0.692053 0.308101 2.935512 -1.094323 -0.817860 0.676349 0.742968 1.308444 0.266884 0.875014 3.433998 3.031265 -3.649291 2.872476 -0.113907 2.984897 -1.309303 -1.343568 -0.044769 -1.754304 2.321701 4.867239 -2.614384 -0.538310 2.570498 2.459067 2.316856 -4.444239 -0.197400 -1.729497 -0.307623 3.433543 -0.457346 -0.349754 0.439086 0.150342 1.794863 -4.388331 5.037822 -0.335553 -0.284534 -0.549492 0.313617 -2.563356 1.631999 -5.258785 -1.001941 1.248682 1.389375 -2.868418 0.092130 0.416846 4.225840 -1.663854 2.735868 -4.343370 -1.680002 1.874676 0.531545 2.643180 1.561628 -1.105083 -6.833580 0.297471 -1.414418 -3.295755 -1.514227 -1.717861 -3.785328 1.133526 1.920335 -1.800314 +PE-benchmarks/boyer-moore-algorithm.cpp__search(std::__cxx11::basic_string, std::allocator >, std::__cxx11::basic_string, std::allocator >) = 3.561279 1.854482 3.420708 -2.895014 -0.870853 1.415587 -0.039865 -3.687843 0.945681 9.708390 2.439275 -2.368652 -3.478073 3.796078 -2.922886 -3.351681 2.852916 1.578924 1.344408 -3.497744 0.110212 0.730728 -0.351745 -3.479829 1.733247 -2.247787 1.436726 1.887833 1.051735 1.514274 -3.453042 -0.286827 1.330018 7.194995 -0.302390 -0.229569 -1.498964 5.616245 -4.146636 4.812270 -9.499865 -7.415547 6.545042 1.537199 1.779554 -5.622198 -0.341321 2.003947 -1.742230 -3.339947 -0.408816 -3.133806 2.036708 -4.416467 -1.148566 6.126909 -8.989285 1.821422 0.500604 -3.571388 -4.716953 -0.221345 5.603454 1.915276 -1.963980 -3.945837 2.062061 2.555909 -4.247710 2.475445 -4.839133 -7.770891 2.362684 1.168860 -3.326457 1.124395 -0.452271 -5.341942 3.134912 -3.161270 -2.709846 -2.574849 2.955384 -0.841563 1.326428 3.733306 5.765846 -9.614881 1.248666 -7.593301 6.274099 -3.533782 7.405422 4.686415 -3.338527 2.278183 2.886483 3.122759 2.710993 -0.323835 6.791513 3.143829 3.592093 -2.476135 3.235637 4.692425 -4.629916 -4.562446 -2.743487 -4.259823 -0.028116 -1.021668 -7.054411 -0.396163 -7.385291 0.676008 2.144606 -3.030081 -0.898260 6.107618 -11.463129 -5.310066 1.690793 -1.107278 5.595320 4.924894 1.034174 1.773373 1.176064 6.097457 -1.477676 -2.682243 -1.051156 3.032897 -3.310660 -5.837994 -3.898940 0.580456 2.357480 -6.518365 -6.888567 -9.187031 -2.150202 3.065478 -0.650170 5.036823 9.974760 -1.084638 -5.950594 2.687120 -3.189724 -1.345283 9.156861 1.478347 10.862196 -9.462233 5.494862 -1.520999 4.091609 3.358354 6.368121 -2.398296 -2.756677 2.869224 0.400565 -1.398722 1.403610 -2.020970 1.303603 -2.770104 1.230104 -1.337119 -0.922509 4.853602 -6.151657 6.133842 -4.264781 8.968282 -7.443004 -6.418119 2.441677 -8.486635 -3.180732 -1.130482 -1.020598 -1.240277 7.052195 -6.300932 -3.612335 -2.639649 -2.207360 1.680706 5.987569 -3.637227 0.170476 -1.473067 -3.785459 7.244300 2.160747 -1.167413 0.935157 -5.209648 -0.411048 4.976726 -0.170746 -8.804996 -0.403328 -6.829470 -0.189175 0.650205 -0.956480 4.806461 -3.246151 -3.420500 0.730850 -2.525980 1.320766 -4.115706 -4.355381 2.594839 -3.302741 0.390550 0.969426 8.205565 5.302141 4.650178 -0.197382 -2.544736 2.521059 -6.152435 -1.925750 2.950084 1.697435 1.835073 2.005497 3.650728 -0.146702 1.862081 3.463230 -0.096550 0.511462 6.147022 0.778914 5.696146 -4.563350 2.579934 0.935379 -5.051712 3.851451 8.132662 -1.764764 -2.743325 2.365915 0.071954 -1.863721 -4.310937 -1.262702 -1.795054 -3.633827 3.371042 5.095134 -0.938074 -4.134012 9.540392 2.888114 -10.383748 7.226794 -0.764179 0.333605 4.936084 -4.018646 0.540900 3.122592 0.048731 1.388800 1.857860 6.061411 -6.711890 -0.862436 -0.935009 6.308983 3.404665 -2.120064 -11.545130 2.142528 3.293115 7.058148 3.917518 7.509656 -4.294549 0.747273 -2.469346 -2.936423 -1.548851 -1.708172 4.216494 -1.381372 -0.342685 -7.501583 2.228519 +PE-benchmarks/boyer-moore-algorithm.cpp__badCharHeuristic(std::__cxx11::basic_string, std::allocator >, int, int*) = 0.890516 0.525845 1.428858 -1.125477 -0.318221 0.129437 1.604337 -0.790361 0.122712 3.394869 0.744085 -0.673100 -1.761837 1.590365 -0.358365 -1.278982 1.073678 -0.228429 -0.116082 -0.698591 -0.387612 0.705473 -0.165483 -1.171734 1.338104 -0.593806 0.244388 1.710248 -0.350921 0.257051 -0.670334 -0.245673 0.284479 2.813726 -0.422019 0.239838 -0.317781 2.840111 -3.299703 2.728670 -2.892823 -2.901378 3.169616 0.254734 0.087822 -1.783494 -0.169234 1.223438 -0.810035 -1.986789 0.431716 -0.499373 0.664263 -1.932178 0.186446 2.729247 -3.751034 0.234482 0.399308 -1.393459 -2.154223 -0.368316 1.089934 0.099083 -1.318155 -1.856759 0.445154 -0.170142 -1.221139 0.706015 -1.602244 -2.668854 1.348732 0.463397 -0.813440 0.978228 0.080515 -1.981172 1.493654 -0.831254 -1.122097 -1.154947 0.917218 -0.828577 1.138516 1.081645 1.828411 -3.788967 0.055771 -2.733471 2.310600 -1.851238 2.402674 2.320998 -0.907022 1.626814 0.855814 1.136145 0.166648 -0.504402 2.522886 0.923734 1.772610 -0.176207 1.350540 1.824409 -2.696520 -2.438599 -2.136611 -1.589897 0.693322 -0.847416 -2.319938 0.044956 -2.012106 -0.098375 1.426480 -1.111538 -0.478040 2.620049 -3.949651 0.058210 1.134250 -0.504830 1.666511 2.053379 0.169402 0.001867 0.148511 2.225757 -0.562758 0.153772 -0.710109 1.403548 -0.950748 -1.571264 -0.397809 -0.203501 0.539286 -2.177743 -2.526801 -3.727962 -0.467084 1.535266 -0.682117 1.627589 4.216915 -0.765685 -2.105186 1.507908 -0.445317 0.274800 1.845729 0.617973 3.450977 -3.022338 1.296625 -0.802386 1.025070 1.510305 3.443238 -0.396506 -1.593975 1.346781 0.113019 -1.150200 1.940816 -0.483476 0.333846 -0.575722 0.499723 -0.838597 -0.740526 2.634863 -1.930373 2.563932 -1.503555 3.410696 -2.274449 -1.938956 0.956726 -2.810119 -0.921161 -2.379572 -1.090529 0.060103 1.789849 -2.235192 -1.435636 -1.761280 -0.605037 0.182356 2.041911 -2.469818 0.030051 -0.825188 -0.798809 2.169005 0.934384 -0.463035 0.075167 -2.527599 0.236895 1.158326 -0.212504 -3.398117 0.112474 -1.614885 -0.415781 0.715220 -0.224944 1.535515 -1.205563 -0.974735 0.969774 -0.892667 -0.439564 -1.337865 -2.714470 0.564293 -0.383912 0.232172 1.047670 2.897851 2.576617 1.564960 0.007935 -0.148371 0.484670 -1.408391 -2.162576 1.108461 -0.118322 1.227956 1.130189 1.405312 0.607522 0.511242 1.403689 0.342093 0.167347 2.443470 1.119636 2.518360 -0.561329 -0.018476 0.958460 -1.206793 1.407462 2.104712 -0.680844 -0.850141 1.362700 0.361022 -1.106285 -0.754120 -0.397049 -1.099777 -1.068468 1.891414 1.137539 -0.958642 -0.895018 3.824882 0.236283 -4.296737 1.889655 -0.055337 0.872104 1.568845 -0.869197 0.759741 1.449465 -0.332365 1.259026 0.640766 2.209576 -2.468008 0.058641 -0.111657 1.763044 1.962837 -0.307462 -5.297320 -0.032455 0.388939 2.703720 1.067566 3.198066 -1.201584 0.693329 -0.842312 -1.130699 -0.301294 -0.605554 1.459176 -0.407546 0.087117 -4.031730 0.773793 +PE-benchmarks/rat-in-a-maze.cpp__main = 0.304282 0.066439 0.117713 -0.335368 -0.351511 0.174412 -0.310766 -0.186950 0.013185 -0.257425 0.178157 -0.248134 -0.274609 0.412789 -0.177331 -0.468428 -0.040951 -0.373161 -0.077238 0.008845 -0.069087 0.059397 -0.087797 0.004550 -0.018838 0.035318 -0.093387 0.099047 0.534675 -0.357528 -0.510254 0.015203 -0.038327 0.512335 0.138819 -0.215814 0.324645 0.795972 0.297501 0.087296 -0.280668 -0.217728 0.175116 -0.008505 -0.193747 -0.266432 -0.243923 0.266784 -0.665988 0.219005 0.390617 -0.077204 -0.227388 -0.010939 0.129828 0.434720 -0.913098 0.765324 0.089758 0.442595 0.123438 -0.224930 0.023476 -0.080381 0.277306 -0.251414 0.250108 0.261633 -0.471924 0.057912 -0.221442 -0.433114 0.866757 0.225555 -0.261903 0.038986 0.191117 -0.317276 0.266536 -0.552151 -0.488485 0.062169 0.085456 0.062752 0.740428 -0.066999 -0.116797 -0.651716 0.091192 -0.725940 0.093877 -0.572286 0.256974 0.534934 -0.633510 0.030699 0.096140 -0.011797 0.266257 0.149737 0.533716 0.041870 -0.046100 -0.018314 0.190225 -0.049315 0.025170 0.059109 -0.035413 -0.407632 -0.330390 0.094289 -0.893007 0.117227 -0.240188 0.414355 -0.023858 0.207182 -0.102698 -0.148280 -0.442353 -0.485515 -0.120325 -0.083427 0.492961 0.550533 -0.224176 0.207071 -0.272744 0.588579 0.014758 0.056506 -0.216223 0.057530 0.127858 -0.669000 -0.911612 0.077410 0.388924 -0.213457 -0.639717 -0.334252 -0.079557 -0.253893 -0.142843 0.693076 0.751562 -0.111969 -0.312462 0.629270 -0.001949 0.463876 0.859178 -0.031106 0.656185 -0.296363 0.121799 0.033672 -0.043802 -0.353684 -0.970373 -0.026028 -0.020273 0.003086 0.162562 0.101136 0.240975 0.023054 -0.259753 -0.021314 -0.120846 -0.236585 -0.534452 0.656461 0.348612 0.346529 0.435761 0.734434 -0.219160 -0.595609 0.321099 0.189975 0.208041 -0.085371 -0.232347 -0.031299 0.251615 -0.437141 -0.282936 0.094050 0.132438 -0.259724 0.146042 0.991008 0.077502 0.089675 0.250375 0.180190 0.682946 -0.085511 0.313570 -0.614781 0.121548 0.344279 -0.271270 -0.346852 0.203996 -0.194057 0.010911 0.401995 -0.066206 0.027034 -0.239081 -0.448583 -0.078322 0.044122 0.534588 0.234921 -0.326841 0.103408 -0.208849 -0.099879 0.305671 0.312427 0.498981 0.303096 0.361512 -0.155836 0.148602 0.076533 0.311506 -0.239513 0.060762 0.444563 0.168288 0.232572 0.165151 -0.003473 0.167955 0.354601 -0.182133 0.367848 0.389157 0.738802 -0.098503 -0.027997 -0.214104 -0.289599 0.425625 0.892849 -0.717661 0.146907 0.225230 0.390193 0.173877 -0.724840 -0.121373 -0.236230 -0.201808 0.066357 -0.194713 -0.055760 -0.070883 0.530106 -0.033148 -0.500468 0.331555 0.088238 0.062849 0.094946 -0.034755 -0.175280 0.194451 -0.696561 0.249624 0.266569 0.320565 -0.115038 -0.051690 -0.062653 0.347087 -0.499599 0.237786 0.090878 0.213414 0.415463 0.450791 0.561170 -0.200030 -0.194348 -0.510394 0.085204 -0.208904 -0.096366 0.068157 0.335987 -0.428552 0.055539 0.031916 -0.562525 +PE-benchmarks/rat-in-a-maze.cpp__printSolution(int (*) [4]) = 0.760842 0.374034 1.002868 -1.133794 -0.072579 0.202177 1.036761 -0.696638 0.096534 2.835649 0.412570 -0.466359 -1.813726 1.175347 -0.277866 -1.351778 0.903250 -0.476723 -0.046541 -0.629930 -0.332202 0.467494 -0.079384 -1.074342 0.984038 -0.537574 0.246585 1.247729 -0.008130 0.029303 -0.656879 -0.206614 0.138179 2.361913 -0.282071 0.362364 -0.336859 2.297275 -2.114803 2.225399 -2.616459 -2.545923 2.502961 0.177946 0.056599 -1.432268 0.335136 0.967004 -0.991406 -1.422027 0.218691 -0.504938 0.388965 -1.646111 0.027906 2.190721 -3.087542 0.540822 0.207677 -0.943438 -1.696724 -0.437485 1.125722 0.164775 -0.840147 -1.525444 0.399155 -0.168794 -1.508190 0.670987 -1.434351 -1.977708 0.953865 0.638683 -0.742976 0.724126 -0.075047 -1.398994 1.038874 -1.087228 -0.886493 -0.953472 0.846559 -0.574011 1.007405 1.023864 1.401218 -3.133455 0.145739 -2.221115 1.814630 -1.414235 2.076638 1.889819 -0.584157 1.289231 0.573070 0.766924 0.063953 -0.672887 2.023596 0.616638 1.434352 -0.196822 1.129350 1.293335 -2.071646 -1.869472 -1.361698 -1.229111 0.336983 -0.725288 -1.812020 0.017912 -1.857864 0.145741 1.245055 -0.733151 -0.686104 1.547357 -3.660892 -0.682235 0.631632 -0.435606 1.745894 1.522836 0.147537 0.137768 0.312354 1.864229 -0.303330 0.007917 -0.648807 1.127233 -0.509831 -0.961929 -0.528027 -0.185601 0.586613 -1.728366 -2.203513 -2.915491 -0.646842 1.117073 -0.465321 1.857065 3.370726 -0.475609 -1.788969 1.247836 -1.102321 0.504470 1.750276 0.468483 2.683397 -2.528738 1.248169 -0.450176 1.065509 1.204177 2.670078 -0.478499 -1.348075 1.006851 -0.029319 -0.114351 0.440759 -0.282625 0.320798 -1.054574 0.171586 -0.890192 -0.652955 2.013402 -2.101367 2.230404 -1.134401 2.740929 -2.014165 -1.661775 0.862451 -2.603472 -0.797467 -1.724831 -0.984384 -0.181722 1.440566 -2.074672 -1.228468 -1.396504 -0.323873 0.134764 1.784199 -1.851070 -0.077766 -0.714768 -0.621885 2.422746 0.772914 -0.518143 0.037947 -2.025450 0.252547 1.121709 -0.066484 -2.472171 0.096237 -1.284161 -0.386927 1.016170 -0.171437 1.212271 -0.902308 -0.871457 0.752221 -0.533620 -0.100912 -1.087545 -2.271920 0.472717 -0.186730 -0.077393 0.928307 2.461354 1.799902 1.143389 -0.102924 -0.387150 0.444512 -1.223682 -1.505235 0.657554 -0.067850 0.955175 0.921854 1.054131 0.444803 0.406669 1.384846 0.548936 -0.262614 1.967194 0.727429 1.958942 -0.644819 0.003670 0.754763 -1.214892 1.046123 1.814823 -1.063543 -0.615385 1.253356 0.283432 -0.673779 -0.741684 -0.452814 -1.069817 -0.773191 1.456725 0.881567 -0.787892 -0.776864 3.169428 0.261633 -3.456545 1.715445 -0.002924 0.637733 1.240725 -0.903226 0.392725 1.217222 -0.642329 0.890794 0.522337 1.680980 -1.858472 0.316670 -0.108341 1.526097 1.327744 -0.410202 -3.656650 -0.217765 0.404890 2.424441 1.315536 2.434967 -0.843114 0.442215 -0.742005 -0.915675 -0.182800 -0.602508 1.282803 -0.239654 -0.071729 -3.023480 0.594736 +PE-benchmarks/rat-in-a-maze.cpp__isSafe(int (*) [4], int, int) = 0.994397 0.273639 0.941786 -1.192831 -0.157530 0.460947 1.288328 -0.632426 0.570939 2.802011 0.569570 -0.183724 -1.402114 0.853852 -0.137630 -1.215719 1.267552 -0.832173 0.285112 0.015738 -0.220959 0.645866 -0.144829 -1.007760 1.072798 -0.441339 0.098939 1.185965 -0.051445 -0.024457 -1.077116 -0.159401 -0.056800 2.324172 -0.269191 0.174951 -0.050347 2.267897 -1.771897 2.252394 -2.494979 -2.154705 2.383694 0.175274 -0.216413 -1.340476 0.725970 0.774131 -0.182783 -1.762717 0.488644 -0.803813 0.850981 -1.415591 -0.046673 2.265037 -2.842989 0.001869 0.150893 -0.631853 -1.400196 -0.472913 1.067408 0.540064 -1.156378 -1.458782 0.619618 -0.181156 -1.412229 0.483280 -1.323767 -2.189430 1.827762 0.837765 -1.152731 0.578145 -0.071607 -2.140357 1.043660 -0.880489 -0.945065 -0.819294 0.663251 -0.460093 1.068512 0.418460 1.727778 -3.114743 0.155497 -2.255763 2.002574 -1.418756 2.259142 1.950011 -0.625655 0.999207 0.596519 1.270035 0.225061 -0.654210 2.288013 0.879867 1.474413 -0.518952 0.853551 1.401284 -2.023151 -1.797146 -1.224548 -1.062896 0.338085 -0.254015 -2.401527 -0.054384 -1.846209 0.641234 1.466462 -0.833330 -0.573674 2.259825 -3.343286 -0.793360 0.553138 -0.383090 1.734155 1.788043 0.251998 0.112450 0.444903 2.064210 -0.340231 -0.086002 -0.840488 1.079592 -1.140643 -0.562882 -0.167509 -0.327488 0.577759 -1.906594 -2.256483 -3.017724 -0.531808 1.235014 -0.423950 1.656255 3.358131 -0.529984 -1.672897 1.187982 -0.920665 0.074738 1.634571 0.276801 2.479474 -2.697065 1.443416 -0.728263 1.402501 0.855713 3.712110 -0.390125 -1.122625 0.807256 -0.221872 -0.522010 1.143544 0.095526 0.362001 -0.328231 -0.275117 -0.813624 -0.972780 2.053520 -1.788652 2.068646 -1.169915 3.055762 -1.998607 -1.613709 0.929270 -1.681582 -0.742967 -2.012705 -0.987147 0.511309 1.413796 -1.978834 -1.123179 -0.947635 -0.326243 0.214813 1.662277 -1.734413 -0.099477 -0.766057 -0.981175 2.665771 0.680356 -0.442115 -0.212227 -1.785272 0.263488 0.794468 -0.699427 -1.968769 -0.234762 -1.500833 -0.311467 1.048834 -0.237295 1.293374 -1.129741 -1.144982 0.813325 -0.456624 -0.065575 -1.066829 -2.969016 0.449038 0.043140 -0.147893 0.638276 2.331743 1.695590 1.281909 -0.101902 -0.654195 0.471440 -1.026556 -1.945870 0.626213 0.002317 0.960297 0.854032 1.481918 0.401797 0.350463 1.225896 0.445474 0.254041 1.882639 0.582839 1.935953 -0.711398 -0.138067 0.887408 -1.385933 1.258016 1.858881 -1.073938 -0.489309 1.030208 0.551185 -0.896738 -0.536847 -0.185646 -1.016412 -0.478909 1.128782 0.741577 -0.431451 -0.993389 3.284248 0.385573 -3.609334 1.565902 -0.146157 0.700604 1.597428 -0.788818 0.684992 0.986049 -0.466108 1.296178 0.440315 1.857483 -1.678961 -0.004825 -0.114167 1.246516 0.780251 -0.366783 -3.431042 -0.553665 0.265125 2.533706 1.604917 2.778000 -0.813341 0.819236 -0.753299 -1.005818 -0.254009 -0.756058 1.201785 -0.305236 -0.013443 -3.470674 1.017114 +PE-benchmarks/rat-in-a-maze.cpp__solveMaze(int (*) [4]) = 0.347788 0.227314 0.519410 -0.816980 -0.599712 0.274618 -0.161981 -0.363915 0.218965 0.468866 0.315194 -0.500077 -1.245977 0.862993 -0.397655 -1.038558 0.176804 -0.610703 -0.032260 -0.401611 -0.194006 0.222231 -0.063831 -0.222703 0.292216 -0.345295 -0.096177 0.591501 1.100046 -0.485102 -0.730284 0.002315 -0.011420 1.330685 0.013788 -0.096549 0.417753 1.774805 -0.041237 0.812225 -1.105397 -1.092387 0.953587 0.110342 -0.245031 -0.685764 -0.041368 0.545010 -1.472834 0.133649 0.588456 -0.239233 -0.112429 -0.426664 0.268933 1.185512 -2.058251 1.321005 -0.031242 0.224359 -0.201737 -0.459352 0.091678 0.040741 0.157486 -0.730544 0.401700 0.447147 -1.360461 0.294167 -0.517748 -0.897669 1.537265 0.445694 -0.646953 0.321851 0.383061 -0.716567 0.555339 -1.185575 -0.887524 -0.122557 0.512896 0.015135 1.282144 0.250189 0.233435 -1.755884 -0.177416 -1.521880 0.722686 -1.149956 1.014102 1.190032 -0.997054 0.524280 0.280292 -0.020368 0.322326 0.094423 1.353278 0.200141 0.512066 0.023799 0.519991 0.240514 -0.476702 -0.444043 -0.370533 -0.802696 -0.505259 0.036574 -1.617824 -0.013044 -0.914287 0.716270 0.439980 0.150856 -0.461673 0.263899 -1.609330 -0.949112 -0.022249 -0.234702 1.242139 1.071051 -0.184718 0.337943 -0.036409 1.450513 -0.127487 0.021238 -0.580540 0.365254 0.341989 -1.059708 -1.516009 -0.051100 0.619319 -0.677797 -1.519746 -1.009687 -0.518906 0.015119 -0.195837 1.420641 2.025285 -0.182631 -0.849686 1.229191 -0.728582 0.973784 1.671999 0.157262 1.541974 -1.100272 0.554647 -0.240542 0.318324 -0.057276 0.021154 -0.116190 -0.479539 0.121125 0.449101 0.356453 -0.062608 -0.155770 -0.246237 -0.811065 -0.225066 -0.663634 -0.952182 1.424404 -0.386846 1.237390 0.109878 1.883774 -0.960538 -1.590977 0.710969 -0.207761 0.218431 -0.515809 -0.408771 0.014460 0.631755 -1.209247 -0.822572 -0.264662 0.154465 -0.248934 0.613869 0.860239 0.031300 -0.136972 0.127091 1.150969 1.110884 -0.232344 0.356407 -1.471370 0.231721 0.655891 -0.293808 -1.190748 0.451109 -0.489987 -0.116103 0.938634 -0.106749 0.310629 -0.388303 -0.844176 -0.085815 -0.174584 0.752558 -0.012755 -1.217124 0.344215 -0.174635 -0.295326 0.646743 0.989550 1.321871 0.583572 0.398170 -0.278567 0.258296 -0.328611 0.277945 0.029159 0.286491 0.712222 0.408042 1.002657 0.363190 0.092223 0.745702 0.713515 -0.422439 0.986436 0.558802 1.582037 -0.649462 -0.056199 -0.117384 -0.707769 0.844327 1.812706 -1.312968 -0.063033 0.739024 0.861309 0.244993 -1.249436 -0.350153 -0.701586 -0.261007 0.648934 -0.037844 -0.344822 -0.253663 1.581566 0.108116 -1.607304 1.017350 0.065816 0.233934 0.246804 -0.338060 -0.420440 0.718988 -1.330269 0.567605 0.427561 0.756989 -0.650406 -0.215715 -0.167317 0.891588 -0.323102 0.129215 -0.929811 -0.052854 0.675271 1.376383 1.323970 0.392224 -0.399836 -0.816583 -0.095085 -0.709012 -0.325786 -0.062291 0.677819 -0.891929 0.221818 -0.652629 -0.730823 +PE-benchmarks/minimum-adjacent-swaps-to-move-maximum-and-minimum-to-corners.cpp__main = 0.348693 0.108517 0.160002 -0.526665 -0.509002 0.111365 -0.166081 -0.167886 0.044943 -0.208305 0.271385 -0.416890 -0.336733 0.746970 -0.210253 -0.554136 0.018147 -0.547456 -0.118306 0.112836 -0.051018 0.247551 -0.101746 0.029969 0.094122 0.103654 -0.210245 0.222494 0.690278 -0.504421 -0.653097 0.022365 -0.020009 0.690211 0.067569 -0.339136 0.398312 1.137674 0.028176 0.323334 -0.432019 -0.244587 0.352142 0.001927 -0.301080 -0.578179 -0.490732 0.372029 -0.699573 0.127789 0.540600 -0.026881 -0.284412 -0.081335 0.254396 0.688330 -1.279013 0.907181 0.188859 0.591885 0.177463 -0.284108 -0.005487 -0.143475 0.139152 -0.375196 0.273995 0.174222 -0.585961 0.048367 -0.272740 -0.605881 1.104708 0.306239 -0.379326 0.145153 0.242942 -0.654918 0.439521 -0.786864 -0.622668 0.088569 0.114937 0.044193 0.965408 -0.163513 -0.091493 -0.928499 0.060949 -0.951062 0.150807 -0.897827 0.339304 0.832768 -0.828904 0.110308 0.076605 0.032934 0.446902 0.255483 0.766179 0.210876 0.091009 -0.035757 0.269590 0.119986 -0.086958 -0.022182 -0.154187 -0.569475 -0.361939 0.102230 -1.276015 0.162685 -0.264544 0.358221 0.081192 0.162426 -0.114701 0.057454 -0.516900 -0.498982 -0.047503 -0.121050 0.496598 0.895259 -0.276127 0.134868 -0.475241 0.809324 0.046660 0.247599 -0.277049 0.111977 -0.078489 -0.961653 -0.995873 -0.004210 0.364982 -0.340447 -0.844119 -0.647200 -0.037837 -0.354183 -0.236569 0.798682 1.086544 -0.184883 -0.472060 0.908511 0.216328 0.558557 0.996418 -0.089423 0.951151 -0.411673 0.135724 -0.016569 -0.067755 -0.438109 -0.856827 0.032008 -0.108202 -0.052183 0.107876 -0.350797 0.548219 0.077934 -0.296685 0.001000 -0.119499 -0.361941 -0.775017 1.017427 0.333315 0.560339 0.365638 0.997655 -0.247524 -0.775417 0.502533 0.203034 0.288482 -0.354834 -0.351305 0.083872 0.349210 -0.539056 -0.355965 0.044270 0.142137 -0.393281 0.182309 0.897408 0.090825 0.054036 0.356170 0.221501 0.862927 -0.157519 0.479174 -0.881554 0.194167 0.442945 -0.372672 -0.693928 0.334135 -0.287133 -0.018172 0.436767 -0.136050 0.017143 -0.369503 -0.648867 -0.011344 -0.015726 0.584510 0.203927 -0.623593 0.146210 -0.354636 -0.012450 0.403264 0.445345 0.747735 0.400114 0.434190 -0.160529 0.165772 0.076683 0.184592 -0.184107 0.023304 0.438539 0.267893 0.437944 0.278364 -0.010874 0.269582 0.448505 -0.252383 0.531707 0.581367 1.018556 0.031899 -0.160869 -0.182245 -0.395928 0.588339 1.232406 -0.718453 0.114848 0.351679 0.519782 0.097379 -0.891953 -0.165904 -0.322486 -0.364132 0.226858 -0.352799 -0.157655 -0.006422 0.758730 -0.095190 -0.788892 0.396651 0.085771 0.162888 0.103021 0.025625 -0.133753 0.349132 -0.910339 0.417789 0.329933 0.463550 -0.155095 -0.244962 -0.080761 0.413194 -0.369854 0.357521 -0.253058 0.308651 0.532668 0.658247 0.648852 -0.024609 -0.212576 -0.592598 0.102727 -0.215816 -0.192965 -0.016614 0.405184 -0.614229 0.054200 -0.160971 -0.679051 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__main = 0.586339 0.488883 0.422016 -0.347648 -1.683567 1.165293 -3.123523 -1.381162 0.012555 -0.528609 0.497465 -0.837417 -0.971324 0.619328 -1.522920 -1.899548 -1.099279 0.706798 0.379463 -1.676071 0.053107 -0.099180 -0.227388 0.234563 -0.693563 -0.938838 0.049641 -0.057612 2.728902 0.111911 -0.907112 0.053015 0.024264 1.334409 0.959810 -0.150446 1.081344 1.647380 2.362245 -0.912531 -1.504768 -1.423368 -0.030854 0.574153 -0.033553 -0.209984 -0.552780 0.126247 -3.959311 2.407805 0.724738 -0.908582 -0.210568 0.834667 0.323689 0.521729 -2.609430 3.287587 -0.624102 0.151228 0.404739 -0.242911 0.033261 0.340118 1.950656 -0.413437 0.404848 2.791994 -1.316409 0.436126 -0.000694 -0.890496 2.640691 0.027149 -1.293386 -0.490180 0.642740 0.239540 0.200642 -1.805093 -1.514013 0.123131 0.784182 0.740613 1.266032 0.907896 0.108284 -1.667678 0.087395 -2.036371 0.766287 -0.397070 1.070748 0.568483 -2.634336 -0.363894 0.895945 -0.781817 1.466450 0.480599 1.327086 -0.337060 -0.609460 0.276042 -0.173705 -0.340076 0.889587 0.893146 0.461096 -1.250689 -1.455145 0.296029 -2.875061 -0.427083 -1.042373 2.439524 -0.679580 0.289201 -0.077411 -0.778814 -1.832129 -2.543727 -0.944906 -0.026862 1.995176 0.361967 -0.225346 1.550746 0.167798 1.820893 -0.714965 -1.209214 -0.573807 -0.049255 0.995470 -2.541711 -4.498705 1.043263 1.336874 -0.456626 -1.571913 -0.013911 -0.837244 -0.385122 0.190022 1.927190 1.901119 -0.306560 -1.336046 1.499608 -1.636671 0.717796 3.821577 0.271549 1.672242 -0.781657 0.365560 -0.449604 -0.355994 -0.772920 -3.139340 -0.225058 0.275168 0.188409 1.371473 1.944193 -1.548151 -0.816580 -1.300587 -2.082869 -0.253383 -0.316576 -0.013152 0.797812 0.381556 0.650191 0.746081 1.947987 -1.324431 -3.053356 0.301373 -0.790098 -0.000893 2.048768 0.085321 -0.492737 0.956632 -1.916573 -0.774412 0.547049 0.285135 -0.570062 0.224982 4.304449 0.285326 0.806216 0.405098 1.635329 2.124562 0.439816 0.469670 -1.038101 -0.087554 1.473213 -0.355099 -1.449713 0.478654 -0.907689 0.349088 1.046684 -0.140448 0.315303 -0.218280 -0.567854 -1.741273 -0.444395 2.754476 1.062125 0.530019 0.996340 -1.074187 -0.433654 0.429848 0.518773 1.408787 0.998506 1.268505 -0.122228 0.932898 -0.932102 3.671038 -0.104894 2.089896 0.560743 0.143342 1.230376 0.086688 0.216397 0.407719 1.457303 -0.195667 0.822626 -0.048459 2.264680 -2.192908 1.301295 -1.686083 -0.273603 0.907700 3.259144 -2.521012 0.638794 0.209337 0.988304 1.805133 -3.010905 -0.178560 -0.541200 -0.289581 0.099322 0.476163 0.174581 -0.782576 1.072959 0.865154 -0.539079 2.194828 0.291278 -0.736962 -0.491700 -0.754445 -2.085711 0.380333 -2.097045 -0.030831 1.249934 0.758021 -0.801077 -0.324218 -0.549595 1.653549 -1.272475 0.767629 1.277053 0.600012 2.047675 1.168545 1.574430 -0.892042 -0.926973 -2.971115 0.358214 -1.041188 -0.704971 0.666583 0.259420 -1.150083 1.033569 1.981492 -2.717595 +PE-benchmarks/find-length-of-the-longest-consecutive-path-in-a-character-matrix.cpp__isvalid(int, int) = 0.517661 0.279233 0.646338 -1.070545 0.001242 0.165627 1.336095 -0.148657 0.455698 1.750207 0.250296 0.052646 -1.516887 0.432492 0.036992 -0.995749 0.997131 -1.235571 0.143974 0.065067 -0.121253 0.542043 0.031584 -0.631763 0.896780 -0.261589 -0.120422 0.963403 0.190557 -0.493403 -0.626234 -0.051694 -0.053209 1.500919 -0.418702 0.186916 -0.067769 1.584637 -1.036925 1.494857 -1.828739 -1.407924 1.687395 0.017772 -0.407088 -1.419132 0.793537 0.511460 -0.243685 -1.112165 0.326417 -0.414210 0.455247 -1.084858 -0.016546 1.756159 -2.106478 0.187806 0.044477 -0.237634 -0.743093 -0.352055 0.624256 0.178097 -0.472695 -0.966156 0.352502 -0.622339 -1.358105 0.417251 -0.759159 -1.060311 1.248782 0.747931 -0.697822 0.578500 -0.066044 -1.447282 0.638171 -1.015032 -0.455743 -0.591480 0.568540 -0.051235 0.823993 0.051941 0.796778 -2.015206 -0.284324 -1.262250 1.269858 -1.085566 1.474585 1.286253 -0.101426 0.866666 0.193398 0.157896 -0.084452 -0.681457 1.563684 0.496423 1.418463 -0.267231 0.468330 0.778844 -1.360728 -1.171946 -0.716153 -0.577287 0.127699 -0.067738 -1.521052 -0.094297 -1.191346 0.283737 1.396742 -0.615192 -0.473303 1.257636 -2.038118 -0.576739 0.386074 -0.283315 1.105254 1.323589 0.248854 -0.154308 0.350748 1.432385 -0.097534 0.350598 -0.639769 0.689596 -0.366610 -0.461773 0.171479 -0.595258 0.145898 -1.125134 -1.477880 -1.828020 -0.390639 0.499373 -0.242409 0.989305 2.224770 -0.224809 -1.203960 0.900047 -0.657375 0.428702 0.763292 0.129486 1.407505 -1.674199 0.889855 -0.458825 1.041921 0.674033 3.033867 -0.230788 -0.805452 0.349423 -0.199619 -0.338227 0.023021 0.155316 0.373755 -0.028883 -0.469955 -0.836480 -0.952383 1.285548 -0.970169 1.711129 -0.743138 1.962324 -1.283819 -1.218645 0.683386 -0.835817 -0.319598 -1.538313 -0.831490 0.562707 0.558873 -1.320510 -0.770827 -0.840799 -0.012194 0.080243 1.053295 -1.602430 -0.086175 -0.673015 -0.544300 1.853151 0.344684 -0.521736 -0.073635 -1.286094 0.272646 0.369354 -0.219119 -1.345324 0.031380 -0.732175 -0.283705 1.244261 -0.192112 0.747159 -0.379779 -0.816413 0.811596 -0.341750 -0.218927 -0.835180 -2.233033 0.119856 0.195255 -0.344842 0.369773 1.495740 1.092609 0.537674 -0.345294 -0.431377 0.282953 -0.554634 -1.357148 0.136764 -0.237612 0.515168 0.587829 0.888858 0.374606 0.124682 1.098403 0.576363 -0.250533 1.182528 0.395001 1.181962 -0.432176 -0.435290 0.755164 -1.002148 0.726956 1.051752 -0.667109 -0.359315 0.903411 0.631219 -0.407347 -0.456481 -0.240087 -0.846589 -0.201541 1.178712 0.313788 -0.510216 -0.425594 2.168072 0.172211 -2.393623 1.037001 -0.084841 0.500503 0.681454 -0.413769 0.253470 0.899609 -0.697611 0.699475 0.098193 1.182560 -0.942007 -0.070743 -0.049117 0.744593 0.276145 -0.228439 -2.339583 -1.004309 0.045664 1.808426 1.290198 2.050973 -0.211346 0.416723 -0.522108 -0.484331 -0.243801 -0.562857 0.669508 -0.309568 -0.194251 -2.285778 0.923418 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__main = 0.288989 0.217331 0.139370 -0.570013 -0.498174 0.083522 0.000514 -0.294908 0.017517 -0.065557 0.430665 -0.502624 -0.389384 0.805155 -0.246316 -0.485601 0.095499 -0.432142 -0.139920 0.098185 0.015826 0.258320 -0.084827 -0.167833 0.095944 0.113427 -0.168482 0.294352 0.637083 -0.423418 -0.630494 0.015234 0.146010 0.711726 0.111815 -0.266282 0.211730 0.930566 -0.308230 0.465235 -0.743695 -0.241001 0.567885 0.040949 -0.259489 -1.016672 -0.614967 0.374969 -0.561190 -0.067915 0.396152 -0.150761 -0.080434 -0.209149 0.125469 0.885822 -1.205206 0.844131 0.264133 0.322867 0.128110 -0.174531 0.085645 -0.055643 0.086556 -0.452395 0.141713 0.096136 -0.497862 0.033143 -0.387221 -0.698036 1.129806 0.181999 -0.413126 0.092829 -0.029811 -0.776186 0.418425 -0.779746 -0.487604 0.017587 0.205691 0.303523 0.673288 -0.063227 0.008043 -0.971395 -0.255693 -0.961919 0.293004 -0.783257 0.425620 0.655740 -0.751364 0.074572 0.043629 -0.243219 0.520475 0.384814 0.688656 0.229463 0.295045 -0.187885 0.306241 0.298548 -0.138564 -0.173871 -0.147024 -0.575826 -0.240413 0.176087 -1.355543 0.156174 -0.414739 0.232318 0.072974 -0.075526 0.035887 0.290993 -0.366234 -0.361404 0.047908 -0.106131 0.482953 0.985022 -0.117102 0.131225 -0.415207 0.673776 0.095782 0.284140 -0.244734 0.207238 -0.189486 -1.373159 -0.801148 0.055239 0.298482 -0.450911 -0.783977 -0.790923 0.030313 -0.299943 -0.287025 0.369046 1.012558 -0.239244 -0.634467 0.748541 0.466937 0.303433 0.887726 -0.088090 1.189538 -0.605046 0.289874 0.012493 -0.054198 -0.250294 -0.201971 -0.138417 -0.308793 -0.028083 -0.015607 -1.072026 0.552338 0.137299 -0.193517 0.248005 -0.123293 -0.300839 -0.686616 0.890000 0.304555 0.628945 0.029296 0.976075 -0.423614 -0.809381 0.469454 0.177965 0.110423 -0.246014 -0.342054 0.259949 0.441122 -0.525911 -0.319397 -0.029613 0.087645 -0.328922 0.404560 0.330196 0.000183 0.012415 0.108029 0.125303 0.654234 -0.261110 0.513541 -0.716789 0.205132 0.504149 -0.159181 -1.103111 0.181048 -0.481482 -0.034282 0.341929 -0.157905 0.209205 -0.253700 -0.539439 0.162093 -0.228067 0.483015 0.030668 -0.369181 0.191407 -0.457957 0.034010 0.232241 0.657433 0.628564 0.473121 0.248030 -0.112176 0.134126 -0.137226 0.043711 -0.054949 0.055837 0.190248 0.328912 0.455328 0.197113 0.054359 0.409327 0.280882 -0.164806 0.594185 0.516368 0.841765 -0.039706 -0.097037 -0.036096 -0.453918 0.595819 1.185128 -0.485706 -0.167795 0.278148 0.333490 0.007410 -0.761160 -0.153340 -0.225521 -0.596382 0.598518 -0.095233 -0.050109 -0.151737 0.899775 -0.037704 -0.861738 0.546486 0.064991 0.171961 0.105284 -0.112398 -0.035838 0.367461 -0.573170 0.262003 0.351030 0.607867 -0.292686 -0.547529 -0.084577 0.411657 0.038290 0.219657 -0.759660 0.203966 0.570266 0.804023 0.456593 0.258687 -0.308905 -0.370623 0.004137 -0.006089 -0.105566 -0.207209 0.328457 -0.596134 -0.088048 -0.306788 -0.300991 +PE-benchmarks/count-of-n-digit-numbers-whose-sum-of-digits-equals-to-given-sum.cpp__countRec(int, int) = 1.755126 0.387723 2.098635 -1.891317 0.114081 0.785655 1.975399 -1.933024 0.745268 5.771707 1.336890 -1.062021 -2.136589 2.091878 -0.811371 -1.770864 2.456359 0.941131 0.283336 -1.035899 -0.640629 0.599453 -0.412638 -2.345812 1.864934 -1.353301 1.163510 2.259676 -0.559179 0.873700 -1.731994 -0.392042 0.294714 4.877660 -0.210966 0.753439 -0.823022 3.879454 -3.746880 4.801538 -5.113865 -4.054613 4.813841 0.704216 0.524946 -2.632234 0.174165 1.600551 -0.293971 -3.633820 0.082403 -1.914552 1.798137 -3.225503 -0.433642 4.477582 -4.720606 -0.713038 0.542215 -2.575580 -3.826936 -0.511939 2.890116 1.018306 -3.157421 -3.136040 1.212410 0.586684 -2.294589 1.288186 -3.326656 -5.263030 2.189581 0.886460 -2.077183 0.987497 -0.562711 -3.699621 1.874426 -0.202457 -1.578240 -1.937469 1.634953 -1.597670 1.274059 1.673613 4.074288 -6.357067 0.495286 -4.773133 3.896406 -2.490686 4.912406 3.461661 -1.371507 2.150404 1.384881 2.971658 0.037786 -0.342936 4.147573 1.682680 2.170095 -1.472045 2.711007 2.745119 -3.912363 -4.260136 -2.514658 -2.295325 0.930571 -1.038368 -4.177425 -0.101991 -4.665888 0.746650 1.616896 -1.238967 -0.922958 4.799496 -6.814124 -1.035023 1.492610 -0.880599 3.434379 3.368845 0.754117 0.523537 0.877778 3.546863 -0.763851 -1.121609 -1.561826 2.342227 -2.098801 -1.489734 -0.552120 -0.252867 1.508516 -3.867001 -4.626405 -5.906832 -1.692451 3.151349 -0.894214 3.164421 6.483140 -1.010583 -3.300924 1.539302 -1.787258 -0.247602 3.808551 1.115109 6.256304 -6.249383 3.548694 -1.410589 2.913558 2.541952 6.016580 -1.535903 -2.684436 2.235822 -0.403342 -1.638595 3.968460 -0.693310 1.122910 -0.714855 0.501507 -0.646518 -1.315676 4.076660 -4.492541 4.325449 -3.005317 6.096651 -4.569183 -3.072719 1.457212 -4.075915 -1.891695 -2.929119 -0.939559 -0.394008 4.058947 -3.595456 -2.597916 -1.795882 -1.388062 1.260659 4.124514 -2.955200 -0.419506 -1.673261 -2.658797 4.602245 0.973806 -0.884975 -0.243176 -3.446606 0.284312 2.292469 -0.601078 -4.371088 -0.564474 -3.512993 -0.737965 0.100412 -0.185506 3.024577 -2.689635 -1.748252 1.108958 -1.017007 -0.275221 -2.588910 -4.961183 1.398996 -0.717108 -0.207257 1.166087 5.297648 3.830246 2.776340 -0.425805 -1.516961 0.926916 -3.118404 -4.092970 2.128926 0.303391 2.163047 1.527428 2.622541 0.295425 1.046730 2.055676 -0.447920 1.455550 3.930703 1.418301 3.657561 -1.652398 0.587487 1.747505 -2.971025 2.454171 3.897554 -1.295110 -1.565251 1.832723 0.536136 -2.335457 -1.751311 -0.688107 -1.320491 -1.861506 2.351150 2.328430 -0.778540 -2.489897 6.899612 1.133217 -7.322325 3.413041 -0.425115 1.034597 3.670113 -2.147233 1.827693 1.967254 0.632661 1.801623 0.812560 3.703320 -4.209656 -0.094117 -0.313314 2.884256 2.842909 -1.639652 -7.988185 0.479537 0.609753 5.164094 2.401161 5.222552 -2.153803 2.395905 -1.692568 -2.190094 -0.313304 -1.382413 2.687671 -0.445749 -0.344785 -7.298803 2.163094 +PE-benchmarks/total-number-of-non-decreasing-numbers-with-n-digits.cpp__main = 0.214661 0.169416 0.099904 -0.382736 -0.375717 0.079334 -0.076043 -0.222797 -0.017240 -0.128453 0.278876 -0.332744 -0.363029 0.521564 -0.206960 -0.422800 0.010771 -0.304293 -0.105028 0.015090 -0.013060 0.165575 -0.058803 -0.105149 0.070854 0.055816 -0.135328 0.188379 0.521498 -0.353070 -0.421108 0.008113 0.114469 0.515633 0.091681 -0.145524 0.170857 0.686141 -0.027633 0.246394 -0.553810 -0.222438 0.390022 0.015103 -0.173524 -0.716179 -0.380764 0.277422 -0.543206 0.055624 0.270492 -0.109331 -0.113569 -0.137333 0.085521 0.621459 -0.922517 0.740031 0.165697 0.220530 0.097336 -0.121405 0.016041 -0.094949 0.225118 -0.322602 0.074129 0.142171 -0.420450 0.056360 -0.245825 -0.435832 0.895093 0.122350 -0.291120 0.076080 -0.011375 -0.423473 0.270215 -0.637377 -0.363225 -0.006662 0.197069 0.316006 0.496027 0.010169 -0.057396 -0.697219 -0.198319 -0.696275 0.217699 -0.534246 0.314451 0.443936 -0.563672 0.080223 0.062026 -0.321139 0.351524 0.292324 0.507972 0.085200 0.179866 -0.083020 0.159397 0.129728 -0.044286 -0.078168 -0.063652 -0.415198 -0.214326 0.178209 -0.969759 0.094374 -0.302973 0.302918 0.044868 -0.002518 0.051916 0.061075 -0.306718 -0.323685 0.015225 -0.076274 0.415253 0.652446 -0.076513 0.114337 -0.289295 0.498216 0.041527 0.175242 -0.184706 0.147055 0.021578 -1.068546 -0.689113 0.031726 0.224698 -0.297999 -0.561764 -0.478268 0.003088 -0.227751 -0.205973 0.276532 0.741381 -0.177734 -0.453546 0.565351 0.261641 0.299308 0.688629 -0.032552 0.823004 -0.397152 0.170768 0.046008 -0.062211 -0.159390 -0.338024 -0.101984 -0.221066 -0.016438 0.073188 -0.621131 0.248199 0.055834 -0.174181 0.162520 -0.120907 -0.221376 -0.470773 0.579100 0.336208 0.472269 0.083729 0.712879 -0.315233 -0.649270 0.310677 0.146959 0.084535 -0.071288 -0.224403 0.152322 0.261492 -0.443929 -0.244211 0.012121 0.079429 -0.257228 0.283124 0.401813 0.008446 0.035690 0.093694 0.099152 0.489349 -0.191071 0.363188 -0.531115 0.136192 0.338526 -0.080589 -0.786846 0.151546 -0.301862 -0.020340 0.356249 -0.107289 0.129633 -0.087366 -0.348448 0.085413 -0.176006 0.407131 0.057162 -0.090619 0.110140 -0.311589 -0.026099 0.160473 0.457584 0.471849 0.323423 0.173438 -0.036454 0.114080 -0.094480 0.199925 -0.089361 0.059128 0.193167 0.234453 0.263674 0.162952 0.039246 0.305076 0.239311 -0.149229 0.434049 0.359697 0.648498 -0.149232 -0.054648 -0.062274 -0.293717 0.433430 0.841149 -0.481453 -0.086760 0.208699 0.263765 0.109184 -0.591816 -0.110996 -0.164918 -0.436094 0.453064 -0.041935 -0.024256 -0.108224 0.632467 -0.030085 -0.575819 0.464282 0.069887 0.101005 -0.014367 -0.064163 -0.120342 0.291200 -0.465593 0.093761 0.267107 0.449471 -0.233900 -0.369122 -0.071695 0.340699 -0.087341 0.192430 -0.416010 0.075041 0.451180 0.560269 0.344479 0.067282 -0.208344 -0.399027 0.016097 -0.006496 -0.089056 -0.089735 0.201905 -0.405574 -0.062824 -0.090784 -0.272285 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +PE-benchmarks/minimum-positive-points-to-reach-destination.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__main = 0.324904 0.130519 0.144095 -0.341302 -0.490205 0.252905 -0.532130 -0.269692 0.022213 -0.248906 0.211737 -0.269446 -0.349329 0.433810 -0.304278 -0.586151 -0.136451 -0.313602 -0.023900 -0.137961 -0.059119 0.080718 -0.103914 0.053223 -0.048850 -0.045720 -0.118654 0.064953 0.723415 -0.361396 -0.537626 0.016232 -0.046165 0.559170 0.181287 -0.220902 0.385625 0.858914 0.453916 -0.045104 -0.408982 -0.329940 0.145455 0.044165 -0.167736 -0.293298 -0.253445 0.248516 -0.898370 0.413962 0.439060 -0.145033 -0.223140 0.078522 0.174043 0.428575 -1.066522 0.987240 0.033104 0.410084 0.167321 -0.204693 0.018739 -0.059163 0.459914 -0.261836 0.260622 0.481266 -0.535078 0.068516 -0.171577 -0.463147 0.990633 0.204629 -0.342095 0.010454 0.228866 -0.280006 0.267640 -0.715412 -0.572701 0.071273 0.168415 0.148460 0.747171 0.023923 -0.104770 -0.722898 0.076062 -0.815180 0.156284 -0.530320 0.330341 0.516569 -0.774992 -0.009224 0.185879 -0.135238 0.419817 0.177539 0.616830 0.009561 -0.064102 0.021050 0.108253 -0.059649 0.096295 0.161392 -0.006294 -0.485493 -0.428524 0.151517 -1.027240 0.070794 -0.287383 0.556592 -0.056675 0.180640 -0.073876 -0.179987 -0.540839 -0.672412 -0.176736 -0.073434 0.598880 0.549593 -0.206764 0.292413 -0.238680 0.685282 -0.083970 -0.026031 -0.246801 0.051739 0.216513 -0.870124 -1.211039 0.136147 0.438414 -0.254924 -0.682604 -0.301397 -0.110167 -0.296697 -0.127499 0.758608 0.861770 -0.163682 -0.408153 0.704215 -0.113636 0.464192 1.092988 -0.015701 0.731638 -0.323657 0.126238 -0.013294 -0.080543 -0.382456 -1.121562 -0.005550 0.023883 -0.005108 0.294667 0.224833 0.040780 -0.045790 -0.353056 -0.168278 -0.108656 -0.237360 -0.471056 0.618701 0.407168 0.365560 0.469949 0.820758 -0.315794 -0.811761 0.318702 0.119536 0.190019 0.112254 -0.216284 -0.037186 0.279324 -0.540550 -0.291732 0.110915 0.129701 -0.301521 0.116558 1.229467 0.115840 0.151575 0.256968 0.270758 0.813369 -0.014790 0.344031 -0.647694 0.105675 0.408368 -0.273825 -0.475926 0.223306 -0.261245 0.045243 0.498767 -0.092571 0.056666 -0.186365 -0.452180 -0.215585 -0.011236 0.720856 0.295592 -0.183949 0.158767 -0.312085 -0.109331 0.290514 0.315313 0.564367 0.382382 0.442109 -0.137813 0.216575 -0.014250 0.651669 -0.231105 0.224531 0.439999 0.177892 0.306373 0.178464 0.017228 0.199011 0.432619 -0.190018 0.411976 0.311833 0.880929 -0.316872 0.077219 -0.344848 -0.278141 0.453800 1.077096 -0.854541 0.191595 0.223484 0.453018 0.320772 -0.891346 -0.081368 -0.259987 -0.212844 0.075620 -0.110274 -0.027103 -0.138413 0.561589 0.031742 -0.495104 0.510010 0.083219 0.005697 0.004576 -0.053985 -0.360291 0.201815 -0.831835 0.206988 0.356547 0.380152 -0.180195 -0.111044 -0.103039 0.475391 -0.578797 0.293187 0.148017 0.236194 0.563254 0.482406 0.627508 -0.249025 -0.253441 -0.755865 0.116222 -0.273342 -0.165183 0.141868 0.307574 -0.491034 0.146417 0.222308 -0.708597 +PE-benchmarks/lexicographic-rank-of-a-string.cpp__findRank(char*) = 1.063546 0.935638 1.196791 -2.099195 -0.723214 0.201852 1.145349 -1.397725 0.318275 2.811898 1.379765 -1.562116 -1.123001 2.415089 -0.834629 -1.486203 1.267004 -0.282790 -0.284902 -0.997850 0.088539 0.678674 -0.144533 -1.426998 0.601106 -0.717171 0.563694 1.331112 0.299491 -0.316533 -1.358676 -0.223845 0.772290 3.038567 -0.021990 0.129939 -0.905396 2.558217 -2.253849 2.903984 -4.037127 -2.190292 3.000376 0.543845 -0.031298 -3.924163 -1.275254 1.056316 0.190345 -1.648800 0.120650 -0.951624 0.670409 -1.947916 -0.294540 3.245653 -3.038455 0.570268 0.615912 -1.398662 -1.646288 -0.277589 1.938575 0.826239 -1.689884 -1.928761 0.820828 0.302962 -1.579732 0.972829 -2.053481 -3.456555 1.739524 0.735741 -1.257259 0.441565 -0.681296 -2.861051 1.416525 -1.131587 -1.020207 -0.927389 1.284914 0.091025 0.582612 0.668453 2.231867 -4.196229 -0.378277 -3.302761 2.170814 -2.021189 2.763434 2.032511 -0.988938 1.031894 0.377000 0.541891 1.096032 0.307115 2.491367 1.320098 2.101112 -1.154454 2.071937 2.147095 -1.675010 -2.378392 -1.085581 -2.114200 0.338258 -0.267070 -3.715753 0.355727 -2.762815 -0.827980 0.533459 -1.048160 -0.086814 2.832002 -3.145391 -1.582387 1.150599 -0.581150 1.739746 2.878648 0.326338 0.598084 -0.257067 2.174367 0.100461 0.373696 -0.672788 1.340897 -1.757144 -3.197761 -1.161925 0.084853 0.899274 -2.498696 -2.932362 -3.850540 -0.787961 1.104026 -0.909774 1.611279 4.099877 -0.789325 -2.946944 1.363648 0.974243 -0.571348 2.613321 0.230933 5.092899 -3.891753 2.262198 -0.512596 1.420139 1.324179 3.669222 -1.071090 -1.745103 1.175085 -0.890513 -3.570834 2.267772 -0.514707 0.495454 0.524845 0.242278 -0.598975 -1.472410 2.653968 -1.515169 3.301980 -1.902633 3.747666 -2.947200 -2.457839 1.233296 -2.308043 -1.110471 -1.382988 -0.401735 0.076715 3.132238 -1.855394 -1.506341 -1.160134 -1.288140 0.293626 2.404392 -2.405459 -0.142057 -0.854438 -1.184009 2.185801 1.357155 -0.681293 0.720869 -2.369229 0.449861 2.301604 0.617772 -3.798819 -0.239240 -2.541721 -0.472049 -0.469830 -0.407484 1.825693 -1.322824 -1.302957 0.722790 -1.155714 0.210829 -1.526421 -2.663061 1.074780 -1.422403 0.530932 -0.029157 3.590804 2.375388 1.911046 0.082648 -1.279598 0.694755 -2.191894 -1.978288 1.050067 0.411929 0.189948 1.153143 1.872395 0.123145 0.683770 2.495532 0.045180 0.092392 2.350409 0.655284 2.594525 -0.846109 0.472142 0.610824 -2.123213 1.801966 4.111204 0.364004 -1.664443 1.281514 0.327121 -1.397537 -2.262816 -0.858685 -0.651783 -1.985210 2.411308 1.464040 -0.728080 -1.340549 4.345316 0.828432 -4.504027 2.398848 -0.185941 0.390465 1.912218 -1.695435 0.677573 1.722487 -0.167498 0.649785 0.842027 2.528830 -2.381778 -1.308929 -0.308350 1.984485 1.895579 -0.723078 -5.394806 1.052688 1.651125 3.684760 1.210333 3.668970 -1.681552 0.942508 -0.599997 -0.317169 -0.456711 -0.735988 1.610468 -1.342899 -0.568797 -3.596980 1.069218 +PE-benchmarks/Nearly_sorted_Algo.cpp__main = 0.519485 0.218073 0.342301 -0.770546 -0.868154 0.296660 -0.669116 -0.529165 0.146904 -0.055367 0.512554 -0.791642 -0.389569 1.200081 -0.564419 -0.901122 -0.090816 -0.371340 -0.107577 -0.161228 0.037857 0.256625 -0.152159 -0.112984 -0.052484 -0.076685 -0.063765 0.309897 1.115550 -0.390557 -1.003927 0.019663 0.080654 1.149873 0.242084 -0.384686 0.509082 1.552355 0.051520 0.529266 -0.993626 -0.610052 0.588074 0.163565 -0.284408 -0.898865 -0.854014 0.470360 -1.256043 0.308671 0.677280 -0.229031 -0.218799 -0.121519 0.298970 0.982094 -1.874892 1.415357 0.154661 0.537783 0.128763 -0.355232 0.196519 0.127815 0.135917 -0.598044 0.441884 0.707037 -0.869003 0.157983 -0.446758 -1.158425 1.736947 0.321866 -0.735464 0.067684 0.323573 -0.991609 0.651695 -1.128734 -0.945802 0.088438 0.305997 0.069515 1.223950 0.022654 0.193001 -1.532519 0.093825 -1.567296 0.479266 -1.168998 0.680795 1.080006 -1.440004 0.059769 0.208821 0.215651 0.918534 0.460866 1.117398 0.408730 0.173876 -0.205159 0.511844 0.323240 -0.076077 -0.119115 -0.204182 -0.999169 -0.585290 0.024616 -2.200637 0.150679 -0.605984 0.653974 -0.072384 0.086886 -0.140055 0.323911 -1.087350 -0.966711 -0.102037 -0.152256 0.878253 1.225237 -0.362578 0.470691 -0.473981 1.242599 -0.010304 -0.002202 -0.354650 0.191497 -0.325318 -1.558143 -1.827752 0.285523 0.694105 -0.622712 -1.343018 -1.069168 -0.226634 -0.246169 -0.267181 1.262910 1.682559 -0.249520 -0.964738 1.183713 0.167608 0.490362 1.878686 -0.052018 1.722752 -0.912147 0.458309 -0.178409 -0.004672 -0.513034 -1.003096 -0.099078 -0.226547 0.095285 0.165213 -0.611373 0.705833 -0.035209 -0.417802 -0.382725 -0.081057 -0.478319 -0.874184 1.473950 0.105573 0.892349 0.226612 1.621207 -0.753388 -1.413017 0.667470 -0.201786 0.194442 -0.160026 -0.375693 0.031254 0.914625 -0.978162 -0.576944 0.075234 0.014260 -0.412295 0.458742 1.331513 0.088572 0.088303 0.303329 0.703789 1.322962 -0.130292 0.656500 -1.218841 0.226752 0.956623 -0.459456 -1.280233 0.343461 -0.730644 0.022409 0.361137 -0.184852 0.220075 -0.680184 -0.915097 -0.269901 -0.187101 1.044621 0.203790 -0.861703 0.421345 -0.704813 0.115689 0.494656 0.835597 1.179249 0.769532 0.716864 -0.349944 0.344173 -0.341069 0.555932 -0.027688 0.444114 0.426260 0.374570 0.975105 0.221339 0.043572 0.515619 0.686192 -0.258051 0.857733 0.634874 1.542305 -0.295144 0.128861 -0.431056 -0.644766 0.911003 2.219381 -1.054970 0.083599 0.449365 0.698689 0.194060 -1.508016 -0.291724 -0.436734 -0.583756 0.400044 -0.188443 -0.173544 -0.245235 1.268380 0.166778 -1.233955 0.839019 0.086624 0.082062 0.306118 -0.333762 -0.330992 0.474142 -1.180648 0.580415 0.572721 0.737248 -0.466862 -0.508748 -0.180382 0.799749 -0.241731 0.384212 -0.500447 0.677172 1.021222 1.182196 0.963451 0.160809 -0.596121 -0.879948 0.093109 -0.416630 -0.310968 -0.050253 0.610597 -0.981459 0.195437 -0.192528 -1.135788 +PE-benchmarks/Nearly_sorted_Algo.cpp__std::priority_queue >, std::greater >::push(int const&) = 0.211818 -0.460184 0.373544 -1.145839 -1.729730 0.790484 -1.709843 -0.862491 0.236055 -0.655997 0.775102 -1.064384 -0.449978 1.931086 -0.335302 -1.733881 -0.326340 0.494958 0.208836 0.187825 0.067970 0.522849 -0.437549 0.478076 -0.371921 -0.207224 -0.259930 0.424357 2.029094 -0.055469 -1.559312 -0.256144 -0.563628 1.611634 0.623255 -0.002045 0.955538 2.817581 0.363422 1.621094 -0.958472 -0.828019 0.250146 0.250185 -0.457805 -0.308787 -1.546612 0.589805 -2.539248 0.353014 1.704682 -0.267951 -0.055889 0.559731 1.111756 0.688062 -2.322384 1.622476 0.213825 0.784741 0.692703 -0.577381 -0.432678 0.496896 -0.568673 -0.607052 0.592541 1.366698 -0.790191 -0.308626 -0.283876 -1.867385 2.938485 0.804058 -1.528175 -0.023175 1.328548 -1.265115 1.067297 -1.005928 -2.239065 0.303313 -0.241659 -0.642772 2.303213 -0.004572 0.880567 -2.276344 0.913270 -2.692186 0.785878 -1.712756 0.775579 2.096416 -2.473790 -0.136989 0.928446 1.275025 1.621783 0.463545 1.595402 0.770935 -0.699457 0.208916 1.036394 0.263541 -0.188630 -0.122948 -0.654073 -1.755666 -0.707889 -0.694619 -3.422720 0.173021 -0.242882 1.734438 -0.444731 0.759835 -0.362560 0.150028 -1.670019 -0.850047 -0.302914 -0.258736 1.281697 1.722853 -0.893558 0.830695 -0.716769 2.089444 -0.824821 0.067094 -0.596673 0.356793 -0.530107 -0.741748 -3.023400 0.772195 1.255093 -0.775589 -1.897281 -1.510646 -0.458072 0.315252 -0.264444 2.415034 2.855544 -0.938675 -1.071501 2.118527 -0.328646 0.822733 2.660852 0.022088 1.955598 -0.704669 0.030695 -0.991100 -0.669500 -1.351328 -1.577198 0.629350 -0.058834 0.465218 0.107714 -0.480880 1.832036 -0.315516 -1.394559 -1.769423 0.046360 -0.820789 -1.137080 2.443251 -0.908741 0.737696 0.578684 2.278369 -0.559173 -1.736976 0.961609 -0.640507 0.221383 -0.676580 -0.652031 0.015902 1.205494 -1.658344 -0.745938 0.007458 -0.132038 -0.928886 0.011012 2.704325 0.130250 0.721239 1.028646 1.745220 2.694828 0.764215 0.279492 -1.767092 0.549716 1.046735 -1.606073 -0.882687 0.562247 -0.997420 0.104958 0.234548 -0.209634 0.145918 -1.588979 -1.376363 -1.311440 -0.066338 1.971324 1.100257 -2.248867 0.621214 -0.193170 0.540698 1.439397 0.621055 1.844887 1.714227 2.014175 -0.119608 0.470627 0.269269 0.822278 0.041548 0.967082 0.880270 0.497718 1.617213 0.718206 0.129816 0.645860 1.376915 0.414738 1.202517 0.853709 2.766853 0.565368 0.000572 -0.769036 -0.494589 1.342930 3.568457 -1.874792 1.402055 0.717565 1.076853 0.109496 -2.317205 0.121218 -0.776750 -0.612537 0.213465 -0.622483 0.101363 -0.555132 1.476163 0.047734 -1.804373 0.762282 0.127024 0.355969 1.027224 -0.029612 -0.365973 0.191427 -2.333096 1.912356 1.281390 0.779982 -0.640382 -0.204781 -0.270381 0.642361 0.255855 1.151352 0.342156 1.188631 1.287086 1.613318 1.428167 -0.144967 -1.014844 -1.495451 0.594592 -1.502121 -0.571530 -0.258573 0.723402 -0.871365 0.488052 -0.330975 -2.903392 +PE-benchmarks/Nearly_sorted_Algo.cpp__unsigned long const& std::min(unsigned long const&, unsigned long const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/Nearly_sorted_Algo.cpp__sortK(int*, int, int) = 1.899250 0.493085 2.451028 -2.735086 -1.819827 0.514977 -1.311612 -0.870059 0.985833 4.287861 1.692153 -1.867569 -3.599543 3.959893 -1.713561 -3.409903 1.826742 0.491668 1.729700 -1.492495 0.876869 1.484742 1.081867 -0.984908 1.621178 -1.417902 -1.359378 2.481599 4.797946 -0.386619 -2.248068 0.324713 0.698007 4.269153 -1.467236 -1.484972 0.522672 5.805068 -3.140113 3.194725 -3.611274 -3.780854 4.739043 1.111371 -0.648348 -3.067712 -2.324669 1.632920 -3.479468 -2.615014 1.529739 -0.670692 1.117836 -2.345833 -0.125393 4.470034 -7.847875 1.983824 -0.234808 -0.210606 -0.372726 0.330764 1.451954 0.729274 -0.276626 -2.703341 0.911131 0.681493 -3.978616 -0.321832 -1.505062 -3.322034 4.460829 0.870349 -2.061033 1.825483 2.463936 -3.790340 2.864840 -3.188645 -3.048176 -0.948863 0.274151 -0.796414 3.262639 0.761676 2.918394 -6.282850 0.814335 -4.798609 4.484958 -3.687048 3.776962 4.267915 -4.268551 1.915840 2.420535 2.053658 2.582568 -0.210449 6.526222 2.607959 1.598552 -0.066501 1.982863 2.293173 -2.998971 -1.603002 -3.118001 -3.593366 -0.227301 -1.726116 -6.683195 -0.144308 -2.886016 0.247896 3.108277 -2.339343 -0.857124 3.850159 -6.166724 -1.534465 0.891212 -0.631391 1.859068 4.631764 -0.140817 -0.499380 0.308515 5.658221 -1.923605 -0.980694 0.832052 1.597948 -0.944684 -4.121497 -2.265356 -0.050991 0.680051 -4.069090 -4.390405 -5.859349 0.082059 0.201951 -0.537746 3.568546 8.278651 -0.539568 -3.049333 3.599507 -1.167041 0.581241 6.160105 0.418194 7.380201 -4.614543 0.415786 -1.839205 0.151526 1.929619 3.200292 0.455598 -0.365415 1.181979 1.185589 -1.681175 0.786511 -1.836620 -0.071640 -1.746189 0.606949 -2.135180 -2.289915 4.188063 -2.245622 3.632254 -1.028084 6.572886 -1.626025 -5.871797 2.600561 -3.124268 -1.314341 -2.603953 -1.496073 -0.107283 2.470330 -4.035372 -2.078923 -2.972678 -0.276296 -0.483726 2.641109 -1.085916 1.835044 -0.138775 -0.703213 3.589317 2.829050 -0.018483 1.475872 -5.510262 -0.210231 2.949752 -1.741469 -6.370843 1.281761 -3.846428 0.701659 2.192496 -2.019528 2.185774 -2.498643 -3.519792 -0.736798 -1.712933 1.016921 -1.925879 -4.915482 1.133809 -0.839791 0.987170 2.478246 4.706459 5.083393 3.060253 0.725189 0.464705 1.690965 -1.368434 -1.178350 1.278229 -0.080826 1.841443 1.640002 3.404408 0.801343 1.608487 3.272110 1.766850 0.034229 4.281464 1.137332 5.186958 -0.157554 -0.523665 -0.046851 -2.747960 3.109837 6.783999 -1.086933 -0.484822 2.446861 1.443738 -0.085079 -4.252891 0.535668 -1.935708 -1.669526 3.526537 1.434248 0.255164 -1.697017 4.325431 0.816030 -7.529213 4.653520 -0.666838 0.499634 2.719904 -1.178584 0.314834 1.536662 -3.031627 1.426976 1.952075 3.641873 -4.179268 0.542675 -0.417072 3.941865 1.430227 0.879776 -8.012020 1.189770 1.881834 3.953254 2.731162 4.175559 -2.645712 -2.475220 -0.267469 -1.966112 -1.772419 -1.861165 1.628086 -3.026315 0.457810 -3.337933 -0.242263 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__main = 0.266891 0.038336 0.145111 -0.196524 -0.266872 0.119598 -0.328421 -0.092222 0.016393 -0.166257 -0.002949 -0.120700 -0.201547 0.301508 -0.223636 -0.401670 -0.136020 -0.285940 -0.048973 -0.100793 -0.065059 0.081187 -0.048907 0.081372 0.032062 -0.058520 -0.066594 0.007422 0.347740 -0.309280 -0.271065 -0.004503 -0.044706 0.371053 0.035190 -0.077939 0.260448 0.648614 0.477858 0.009535 -0.219850 -0.316419 0.063994 -0.014915 -0.064965 -0.086514 -0.082139 0.170158 -0.527753 0.313927 0.238628 0.007566 -0.320956 0.003400 0.146258 0.185754 -0.748837 0.653207 -0.022470 0.301213 0.032014 -0.177335 -0.030146 -0.142447 0.303456 -0.161151 0.178076 0.359599 -0.460025 0.155142 -0.027401 -0.209896 0.633331 0.178443 -0.173673 0.095120 0.256369 -0.066775 0.192185 -0.549287 -0.368662 0.014582 0.132055 0.030235 0.556877 0.044258 -0.086725 -0.482030 0.230256 -0.486719 0.083140 -0.418794 0.189189 0.410773 -0.465906 0.128172 0.130893 0.045964 0.201248 0.117973 0.441884 0.040831 -0.071518 0.103120 0.062694 -0.114453 0.058544 0.092165 -0.017332 -0.307325 -0.290433 0.061456 -0.625582 0.028986 -0.096894 0.443765 -0.012128 0.250844 -0.070698 -0.229110 -0.596366 -0.484948 -0.069965 -0.059487 0.358428 0.240886 -0.180171 0.135988 -0.206816 0.488428 -0.064862 -0.036277 -0.135676 0.012971 0.149369 -0.392183 -0.784498 -0.012493 0.227605 -0.120468 -0.465214 -0.176903 -0.135311 -0.078310 -0.082357 0.685527 0.614675 -0.053788 -0.224528 0.506177 -0.119515 0.399185 0.691615 0.039368 0.356319 -0.132634 -0.005871 0.021736 -0.008856 -0.193873 -0.974504 0.056487 0.027287 0.026117 0.240963 0.355229 0.072233 -0.120616 -0.208799 -0.217222 -0.083831 -0.213177 -0.296650 0.443740 0.252160 0.337528 0.322126 0.559084 -0.165912 -0.488660 0.178935 -0.085426 0.177030 -0.009645 -0.067910 -0.170260 0.162768 -0.435585 -0.237522 0.131543 0.010026 -0.187136 0.037827 0.857367 0.103441 0.060020 0.242619 0.304740 0.530784 -0.028481 0.196329 -0.515733 0.052242 0.218981 -0.172824 -0.205144 0.230144 -0.043136 0.011822 0.337707 -0.035384 -0.078814 -0.121998 -0.284932 -0.170922 0.032709 0.407892 0.166970 -0.100206 0.017723 -0.152456 -0.042065 0.209050 0.147864 0.490942 0.157669 0.276154 -0.086861 0.142805 -0.006207 0.443595 -0.151936 0.112792 0.357709 0.087883 0.197002 0.161057 -0.019993 0.127998 0.370338 -0.183539 0.267584 0.229467 0.657073 -0.278491 -0.001788 -0.245612 -0.120856 0.304605 0.677702 -0.651403 0.223141 0.213113 0.348390 0.232846 -0.537504 -0.110142 -0.194691 -0.089386 -0.032865 -0.137727 -0.113093 0.029753 0.335553 0.007644 -0.321787 0.283606 0.076257 0.009475 -0.037948 0.012901 -0.257813 0.224745 -0.599653 0.095006 0.164580 0.197179 -0.128969 0.010797 -0.064268 0.334472 -0.475369 0.254254 0.261891 0.178014 0.353618 0.273688 0.392653 -0.267820 -0.099610 -0.567561 0.092041 -0.218790 -0.179367 0.229588 0.204915 -0.269527 0.102039 0.149252 -0.583667 +PE-benchmarks/maximum-size-sub-matrix-with-all-1s-in-a-binary-matrix.cpp__int const& std::min(int const&, int const&) = 0.334995 0.440212 0.734766 -1.043342 -0.987275 0.045520 0.681553 -0.358120 0.185555 1.313155 0.520072 -0.575115 -0.666331 1.524897 -0.272384 -0.617228 0.154851 -1.064421 -0.193321 0.024042 0.070665 0.772661 -0.092878 -0.026306 0.267118 0.006789 -0.186510 0.624988 -0.031450 -0.483443 -0.608190 -0.189876 0.045978 1.167160 -0.147689 -0.130667 -0.043851 1.727176 -1.541108 1.632614 -1.568119 -1.171205 0.965246 0.052606 -0.027286 -1.577420 -0.567978 0.727480 0.134518 -0.881234 0.701693 0.093242 0.002579 -0.464156 0.482672 0.954049 -1.836869 0.541146 0.310983 -0.198077 -0.263142 -0.184680 0.235796 0.370911 -0.809441 -0.757510 0.245412 -0.077991 -0.636240 0.147387 -0.289913 -1.277533 1.025683 0.417585 -0.658541 0.384938 0.453392 -1.343980 1.117845 -1.322254 -0.944492 -0.111383 0.119675 -0.467778 0.883167 0.088128 0.698517 -1.797051 0.261507 -1.447673 0.865641 -1.235013 0.575061 1.279828 -0.339755 0.448418 0.356137 0.556444 1.020647 0.026723 1.136273 0.863392 1.112279 0.206238 0.729095 0.981034 -1.055311 -0.795903 -1.099953 -1.249396 0.251530 -0.303945 -1.528391 0.232243 -0.025826 -0.166487 0.587190 -0.389702 -0.065075 1.306877 -1.674687 -0.165947 0.580075 -0.178058 0.341783 1.383345 -0.316205 0.100997 -0.411268 1.216115 -0.358375 0.793829 -0.028230 0.501613 -0.924269 -0.784903 -0.624091 0.130138 0.186810 -0.825755 -1.054380 -1.948894 -0.014533 0.454567 -0.491906 1.051927 2.191450 -0.642843 -1.222629 1.209447 0.690141 -0.186578 0.686867 -0.021790 1.649125 -0.888689 0.053910 -0.568780 -0.103341 0.087197 1.962009 0.349553 -0.524319 0.441459 -0.174153 -1.865981 1.118592 -0.057075 -0.361739 -0.171765 0.171547 -0.722018 -0.696173 1.358549 -0.679397 1.198666 -0.473624 1.569026 -0.696482 -0.821702 0.625883 -1.084246 0.029967 -1.331451 -0.607963 0.472486 0.892412 -0.929734 -0.398681 -0.677371 -0.630536 -0.494333 0.462544 -1.476544 0.241279 -0.007414 0.254368 1.256873 1.152773 0.060141 0.192595 -1.315728 0.461173 0.441488 -0.181070 -1.654289 0.088401 -0.839330 -0.117362 0.334161 -0.302296 0.463362 -0.618385 -0.693068 0.275579 -0.646068 -0.007548 -0.203674 -1.542909 0.122957 -0.323366 0.892757 0.410738 0.994476 1.214726 1.083725 0.722274 0.018653 0.059831 -0.278261 -0.714643 0.321534 0.143645 -0.087776 0.655904 1.166778 0.541067 0.198158 1.142478 0.621607 -0.165901 1.157727 0.151351 1.516794 -0.113534 -0.200104 0.060438 -0.266294 0.792640 1.759920 -0.210456 -0.097393 0.676773 0.317774 -0.621439 -0.324515 -0.058872 -0.678345 -0.324295 0.947522 0.380981 -0.402416 -0.134026 1.445110 -0.055044 -1.874298 0.536632 -0.073563 0.569761 0.798599 -0.125076 0.360120 0.592689 -0.810523 0.975661 0.689366 0.847908 -0.916247 -0.732293 -0.013559 0.597053 0.875586 0.550279 -2.451821 0.126769 0.514075 1.289408 0.201163 1.539655 -0.840069 -0.166623 0.325440 -0.352809 -0.413514 -0.132235 0.691700 -0.645597 0.089958 -1.484844 -0.309786 +PE-benchmarks/maximum-length-chain-of-pairs.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__main = 0.512433 0.129573 0.193008 -0.485742 -0.633131 0.370816 -0.854762 -0.411545 0.050222 -0.292358 0.278150 -0.435124 -0.336064 0.591608 -0.409605 -0.784092 -0.179299 -0.433453 -0.050010 -0.206332 -0.095020 0.021059 -0.155386 0.012582 -0.145831 -0.071100 -0.062774 0.077740 0.983419 -0.414303 -0.813800 0.032455 -0.087834 0.830218 0.306518 -0.404997 0.568806 1.217192 0.645501 -0.104785 -0.454065 -0.439967 0.198101 0.060264 -0.252389 -0.178085 -0.336935 0.357338 -1.237307 0.579190 0.590933 -0.204123 -0.303875 0.074797 0.169056 0.551353 -1.421207 1.318759 0.045727 0.643636 0.145888 -0.357728 0.148901 0.029845 0.501391 -0.372123 0.482362 0.686569 -0.744098 0.092947 -0.329715 -0.733897 1.310211 0.318030 -0.459032 -0.031748 0.320301 -0.438708 0.384672 -0.835678 -0.825737 0.123604 0.181472 -0.016824 1.133219 -0.021100 -0.086511 -1.037594 0.258634 -1.192883 0.158605 -0.770696 0.461395 0.784955 -1.147159 -0.046043 0.196098 0.128013 0.540617 0.170835 0.848038 0.029847 -0.156174 -0.025452 0.259473 -0.069487 0.140178 0.209136 0.013081 -0.682186 -0.623734 0.106288 -1.452595 0.164278 -0.468234 0.706879 -0.144271 0.296461 -0.234838 -0.192153 -0.831770 -1.045786 -0.311663 -0.114622 0.868114 0.744614 -0.366047 0.486703 -0.305434 0.968666 -0.027443 -0.144873 -0.329853 0.058820 0.190990 -0.972355 -1.747323 0.274170 0.737208 -0.361993 -1.045168 -0.444057 -0.224651 -0.417327 -0.155030 1.309382 1.188009 -0.151818 -0.556581 0.964073 -0.278010 0.641940 1.647718 -0.038057 1.066433 -0.518350 0.258602 -0.015606 -0.038127 -0.588969 -1.731043 -0.069919 0.070948 0.034300 0.341392 0.610803 0.143022 -0.012982 -0.460920 -0.337511 -0.117144 -0.330718 -0.724817 0.979815 0.421096 0.477294 0.740924 1.195150 -0.456333 -1.074688 0.488294 0.128720 0.269895 0.121617 -0.301819 -0.165229 0.522214 -0.705365 -0.453913 0.194901 0.196963 -0.376876 0.216456 1.922567 0.166631 0.194555 0.361723 0.451543 1.186923 -0.040523 0.463333 -0.935462 0.144256 0.709226 -0.452637 -0.470713 0.261808 -0.383643 0.056591 0.584955 -0.097641 0.105428 -0.459179 -0.703958 -0.331903 0.133178 1.037532 0.427069 -0.552406 0.309926 -0.441320 -0.158660 0.469337 0.483659 0.773935 0.534453 0.671315 -0.328485 0.300285 -0.022106 0.810291 -0.344505 0.316586 0.686533 0.236589 0.516536 0.191749 0.035993 0.234827 0.611409 -0.300465 0.569400 0.438816 1.230886 -0.385953 0.162946 -0.528127 -0.448280 0.663582 1.606540 -1.210964 0.238407 0.312552 0.630542 0.374894 -1.332915 -0.185169 -0.379004 -0.166864 -0.125421 -0.216130 -0.074539 -0.200466 0.815295 0.086294 -0.728313 0.652728 0.130974 -0.003699 0.167294 -0.187153 -0.439863 0.238924 -1.168046 0.403158 0.499917 0.455168 -0.211995 0.012344 -0.122005 0.696552 -0.922884 0.349603 0.337769 0.509497 0.771876 0.692003 0.992454 -0.358032 -0.403400 -0.950867 0.162520 -0.434092 -0.175302 0.200113 0.557514 -0.765441 0.273745 0.256764 -1.070250 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__printSolution(int*) = 0.616520 0.609670 0.903902 -0.858270 -1.266670 0.573552 -0.738432 -1.075164 0.058564 1.748551 0.550966 -0.692103 -1.153890 1.307095 -0.955743 -1.412187 -0.262921 -0.028586 0.078785 -1.121557 -0.033964 0.494401 -0.185518 -0.245604 0.099566 -0.688878 0.124809 0.532086 0.797040 0.091550 -0.649271 -0.233739 0.116223 1.769036 0.238516 0.149628 0.086811 2.015611 -0.566641 1.046023 -2.351823 -2.256024 1.187497 0.367537 0.325615 -1.208012 -0.313809 0.663527 -1.554238 0.038043 0.537031 -0.482075 0.122756 -0.382474 0.372759 1.024404 -2.663207 1.576958 -0.082523 -0.800004 -0.727706 -0.188654 0.579781 0.530674 0.020591 -0.990309 0.325372 1.309475 -1.088884 0.483502 -0.489876 -1.659920 1.504609 0.269631 -1.047879 0.178502 0.453693 -0.795180 0.961093 -1.605032 -1.327855 -0.373359 0.694177 -0.172663 0.855888 1.052754 1.106393 -2.487692 0.412141 -2.152248 1.427526 -0.879224 1.370822 1.248217 -1.231841 0.468219 0.909026 0.381989 1.299061 -0.047874 1.617062 0.526237 0.789422 0.261770 0.575020 0.882563 -0.879277 -0.674423 -0.912974 -1.588644 -0.175417 -0.360054 -2.218094 -0.081021 -0.906394 0.834180 0.285865 -0.441001 -0.157127 0.985401 -3.055742 -1.338854 0.233040 -0.200647 1.435331 0.995136 -0.145271 0.790779 0.115204 1.765512 -0.785965 -0.268005 -0.269399 0.641932 -0.339041 -1.519973 -2.268980 0.602032 0.763349 -1.202698 -1.629722 -1.904999 -0.554360 0.759416 -0.309579 1.749644 2.881919 -0.720616 -1.757897 1.384878 -0.763880 -0.062698 2.348898 0.344400 2.283027 -1.529233 0.500146 -0.669070 0.092151 0.363483 0.829294 0.010908 -0.582042 0.794871 0.508222 -0.135085 -0.091335 -0.665499 -0.626953 -1.522439 0.285107 -0.643591 -0.072282 1.290829 -1.151223 1.462305 -0.525705 2.240753 -1.623297 -2.012786 0.507167 -2.273682 -0.474903 -0.173100 -0.388965 -0.152934 1.411234 -1.895026 -0.778333 -0.623049 -0.617236 -0.350691 0.866746 -0.005304 0.259325 0.164437 -0.023465 2.188428 1.598696 0.272900 0.098462 -1.516313 0.222749 1.123200 -0.108812 -2.225464 0.059505 -1.304071 -0.015498 0.675200 -0.259606 0.851240 -0.555740 -0.588196 -0.474441 -0.805728 0.964204 -0.096711 -0.819226 0.614268 -0.710341 0.534843 0.493939 1.472902 1.668076 1.461761 0.903692 -0.055766 0.582500 -1.152229 0.820626 0.557614 1.074863 0.298983 0.677725 1.410075 0.416801 0.419527 1.227984 0.935133 -0.075891 1.555377 -0.087008 2.257064 -1.466414 0.654409 -0.488402 -0.406452 0.972394 2.664645 -1.240979 0.015453 0.715803 0.382783 0.117424 -1.291946 -0.100679 -0.795693 -0.478150 0.874637 1.094495 -0.321566 -0.748013 2.042874 0.494544 -2.162053 1.767441 0.015601 0.169794 0.689069 -0.722896 -0.524254 0.732915 -1.109522 0.648587 1.105667 1.232628 -1.609935 -0.401756 -0.255695 1.549928 0.639603 0.404806 -2.036294 0.385839 1.229591 1.732402 0.787715 1.269805 -1.258579 -1.088778 0.139072 -0.915262 -0.564853 0.153140 0.799293 -0.639560 0.512322 -0.867021 -0.988370 +PE-benchmarks/hamiltonian-cycle-backtracking.cpp__isSafe(int, bool (*) [5], int*, int) = 0.961163 0.382892 1.445653 -1.781018 -0.536728 0.492041 1.738647 -1.106939 0.429791 3.940392 1.221961 -1.060215 -1.780109 2.365205 -0.176604 -1.434323 1.694741 -0.426258 0.053180 -0.273261 -0.471728 0.942259 -0.345757 -1.338711 1.408005 -0.566128 0.190600 1.715125 -0.233039 0.009351 -1.458168 -0.336687 0.081508 3.579523 -0.217884 0.235556 -0.359251 3.684557 -3.516930 4.097405 -3.512214 -3.018532 3.563099 0.361866 -0.030437 -1.948131 -0.177326 1.556904 -0.198167 -2.867041 0.816224 -0.943106 1.006535 -2.111194 0.135263 3.319431 -3.995678 -0.006749 0.663258 -1.307079 -2.253332 -0.594042 1.523732 0.641778 -2.358212 -2.176296 0.799855 -0.142266 -1.645759 0.394472 -2.194996 -3.773905 1.943305 1.007369 -1.436096 0.909337 -0.076910 -2.905697 1.823036 -0.868974 -1.752140 -1.089428 0.843609 -1.319254 1.595084 1.018895 2.678615 -4.894985 0.307817 -3.842647 2.772070 -2.298081 3.178931 3.158637 -1.039521 1.531904 1.033306 1.973504 0.518357 -0.269960 3.241756 1.234198 1.746364 -0.499628 2.027125 2.365274 -3.154725 -2.902836 -2.238268 -2.085618 0.835853 -0.673066 -2.844863 0.249617 -2.735936 0.125107 1.492351 -0.776631 -0.828677 3.219108 -4.530063 -0.648406 1.125300 -0.676420 2.428791 3.023383 0.173555 0.264095 0.085759 2.895411 -0.679402 0.183802 -1.125549 1.784795 -1.485424 -1.182203 -0.590191 -0.096187 1.038699 -2.880621 -3.393425 -4.861784 -0.741337 1.853245 -1.003518 2.611573 5.339645 -1.205607 -2.366141 2.024534 -0.546268 0.287093 2.477196 0.503081 4.614295 -4.012280 1.939606 -0.961023 1.379322 1.282183 4.709451 -0.483392 -1.810330 1.364948 -0.270841 -1.754814 3.062466 -0.198985 0.199442 -0.654965 0.436018 -0.963091 -1.645311 3.408054 -2.723029 2.873214 -1.634161 4.594225 -2.813661 -2.192119 1.607620 -2.522510 -1.058450 -3.031168 -1.287837 0.184598 2.604919 -2.544042 -1.730246 -1.570104 -0.788543 0.056372 2.353927 -2.448090 -0.052321 -0.843029 -1.167338 2.994615 1.426466 -0.440246 -0.034414 -3.089474 0.384748 1.500429 -0.698325 -3.355134 -0.112018 -2.456000 -0.547474 0.722412 -0.374438 1.920863 -2.042804 -1.573675 1.021771 -0.818597 -0.019074 -1.375239 -4.206216 0.893236 -0.261039 0.253702 1.353686 3.697696 2.827060 2.375974 0.327608 -0.619362 0.392113 -1.382115 -3.083934 1.189395 -0.113067 1.641582 1.481928 2.035092 0.818571 0.798169 1.907725 0.006619 0.535818 3.025318 1.123046 3.241106 -0.391813 -0.050027 1.234569 -1.927630 2.029025 3.273203 -1.073594 -1.075808 1.662095 0.400392 -1.811518 -1.086549 -0.252163 -1.349577 -1.221406 1.868123 1.216908 -0.556350 -1.524614 4.971769 0.208188 -5.603298 2.277434 -0.231032 1.284522 2.642392 -1.035734 1.405934 1.517255 -0.601423 2.023985 1.121415 2.803300 -2.827474 -0.150885 -0.234917 1.957041 2.171449 -0.465702 -6.059417 0.353240 0.525394 3.571178 1.756982 3.742230 -1.645498 1.195035 -0.855283 -1.642348 -0.370192 -1.033826 2.105030 -0.506742 -0.068332 -5.282988 1.051077 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/maximum-sum-rectangle-in-a-2d-matrix.cpp__kadane(int*, int*, int*, int) = 1.465506 1.534992 4.349749 -4.840977 -2.431876 0.068741 4.323223 -2.170207 1.150863 8.120845 2.545205 -2.508025 -3.938331 6.021753 -1.416997 -3.455771 2.341965 -1.865819 -0.618160 -1.788985 0.335529 2.758210 -0.219871 -2.566265 2.599494 -1.839092 0.761862 4.933584 -0.290772 0.188807 -1.953089 -0.851671 0.880049 7.256673 -1.173408 0.713236 -1.219250 7.879505 -9.118277 8.321633 -8.828921 -7.296574 8.016474 0.759871 -0.416616 -7.851029 -2.589838 2.802098 -0.929673 -4.991966 1.503245 -0.815135 2.068614 -4.670935 0.969633 6.752813 -9.374591 0.401308 0.990740 -3.743202 -4.344076 -0.906904 2.641090 1.643940 -5.040442 -4.582731 1.473901 -0.474157 -3.314585 1.842486 -2.897608 -7.321458 4.755823 1.580291 -2.731201 2.486183 1.052890 -7.321765 4.780275 -2.844127 -3.281172 -2.482694 2.017227 -2.602069 3.205604 1.339539 5.400050 -10.135606 -0.196608 -7.347633 5.933212 -5.732873 5.417431 5.977592 -2.631184 3.995192 1.894148 3.691755 2.277355 -0.972505 6.348623 4.186237 6.233345 -0.406051 4.763708 5.380460 -6.412693 -6.419024 -5.875628 -5.256654 1.736709 -3.263075 -8.818699 0.278847 -3.746332 -2.103025 3.164812 -3.400838 -0.893364 8.788621 -9.556425 0.531386 3.594990 -1.248963 2.366462 6.282988 -0.064805 0.013082 -0.022810 6.108635 -1.606289 1.901505 -1.147430 3.424339 -4.457646 -4.237765 -1.234562 -0.162845 0.824399 -5.404556 -6.520773 -10.053302 -1.548696 4.211776 -1.650131 4.089621 11.364550 -2.136154 -7.191972 4.318560 1.705417 -0.800518 4.320657 1.277666 9.476131 -7.355810 2.776986 -3.612650 1.962747 3.521395 12.059155 -0.352534 -3.973130 3.627361 -1.136814 -7.848364 6.606670 -1.653003 0.545396 -1.315074 1.218730 -3.460636 -2.798308 7.531030 -5.286470 7.953842 -4.998431 8.867014 -6.004960 -5.437448 2.498806 -7.783937 -1.950134 -6.843767 -2.341357 1.171622 5.607808 -5.304075 -3.597727 -4.875131 -2.844024 0.151658 4.914509 -8.863407 0.321073 -1.928360 -1.313706 6.405637 3.624991 -0.803343 0.400990 -6.481925 1.473309 3.878067 0.172092 -9.783886 0.189358 -4.597600 -1.021684 0.222914 -0.729801 4.020718 -3.538517 -2.941429 1.887943 -3.174382 -1.436330 -3.486931 -9.773849 1.626582 -1.604806 2.547289 1.841169 7.132179 7.529285 4.466687 0.897490 -0.665871 1.172166 -4.160664 -5.841665 3.089366 0.764730 0.616220 2.961789 6.426807 1.702548 1.319561 5.542505 2.574860 0.412829 6.212330 1.973593 7.070557 -0.733923 -0.528083 1.809684 -2.646192 3.986728 8.158990 0.981904 -1.834734 3.789475 1.824903 -3.433029 -3.329210 -1.273806 -2.871370 -2.277653 6.393266 3.000976 -2.978827 -1.746366 9.689009 1.274498 -11.310964 4.190509 -0.283038 2.371626 4.242098 -2.717844 1.870508 4.159604 -1.571128 4.257483 1.839852 5.068335 -6.372773 -2.331738 -0.156382 4.068696 6.474626 0.150915 -14.733132 0.749377 1.582402 8.055807 2.015225 10.191568 -3.784071 1.677891 -1.004166 -2.340902 -1.546262 -1.430189 3.324976 -2.945531 0.111866 -10.620661 0.764656 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__main = 0.343226 0.227123 0.196063 -0.335699 -0.661135 0.310471 -0.758565 -0.352696 0.025466 -0.240301 0.244981 -0.336622 -0.423798 0.456873 -0.438874 -0.703562 -0.271075 -0.254591 -0.013258 -0.311431 -0.048910 0.069354 -0.110393 0.101286 -0.119482 -0.115315 -0.111357 0.039033 0.911532 -0.347247 -0.564108 0.024823 -0.013685 0.606298 0.224630 -0.246770 0.445619 0.922543 0.610016 -0.187966 -0.515716 -0.446877 0.104577 0.095734 -0.125239 -0.321933 -0.277911 0.262602 -1.153569 0.608091 0.486638 -0.166699 -0.248537 0.154300 0.217086 0.410072 -1.219215 1.245122 -0.022673 0.376884 0.201400 -0.184926 0.013471 -0.000646 0.641379 -0.272588 0.270457 0.699737 -0.597581 0.102297 -0.123033 -0.504844 1.122551 0.160202 -0.422089 -0.018165 0.296216 -0.212011 0.292550 -0.877888 -0.657199 0.096171 0.250705 0.226952 0.773283 0.114381 -0.121020 -0.794555 0.061430 -0.905183 0.217981 -0.515789 0.363613 0.499029 -0.916360 -0.048612 0.248278 -0.264391 0.579337 0.210758 0.673817 -0.023208 -0.041695 0.061560 0.043597 -0.070249 0.167393 0.242335 0.001726 -0.598080 -0.525811 0.198730 -1.161414 0.039771 -0.301591 0.698408 -0.089974 0.154693 -0.045447 -0.228662 -0.649323 -0.858427 -0.217053 -0.062458 0.704634 0.550467 -0.233909 0.417676 -0.205414 0.782021 -0.147928 -0.107365 -0.234528 0.031171 0.305104 -1.072221 -1.552051 0.239778 0.514549 -0.257414 -0.725631 -0.268171 -0.140733 -0.339639 -0.113288 0.823989 0.971998 -0.186628 -0.503870 0.778025 -0.209795 0.464605 1.325511 -0.003459 0.841645 -0.349984 0.127096 -0.051379 -0.130027 -0.410944 -1.272255 0.014665 0.053715 0.008673 0.425698 0.348378 -0.185161 -0.122196 -0.446956 -0.314795 -0.085921 -0.238778 -0.408261 0.604340 0.470080 0.384756 0.518636 0.906813 -0.411335 -1.026576 0.316131 0.049214 0.196364 0.310182 -0.199930 -0.042800 0.340077 -0.644974 -0.300741 0.128092 0.106687 -0.344293 0.087779 1.466680 0.154060 0.214319 0.297675 0.361307 0.961876 0.055264 0.373715 -0.712076 0.090315 0.472701 -0.261777 -0.594333 0.241689 -0.327622 0.080245 0.569500 -0.118529 0.067447 -0.133765 -0.462938 -0.351757 -0.092223 0.894544 0.356930 -0.041465 0.214328 -0.414726 -0.076686 0.275636 0.318843 0.653113 0.461897 0.564264 -0.118712 0.283564 -0.104477 0.994005 -0.223033 0.387781 0.418816 0.188065 0.380096 0.174749 0.019400 0.241680 0.510747 -0.245490 0.456684 0.233846 1.023119 -0.538190 0.204134 -0.498301 -0.257183 0.482714 1.292330 -0.990908 0.214333 0.222039 0.514376 0.466629 -1.057386 -0.085644 -0.292944 -0.205248 0.084864 -0.026105 -0.036021 -0.173449 0.571748 0.095700 -0.477090 0.655044 0.079219 -0.063142 -0.058617 -0.107008 -0.544075 0.211138 -0.966709 0.164628 0.447556 0.412296 -0.247858 -0.170116 -0.140349 0.603411 -0.678052 0.349359 0.187287 0.253103 0.727106 0.514082 0.679989 -0.297992 -0.352066 -1.006043 0.176467 -0.328308 -0.233217 0.215428 0.306706 -0.580238 0.246960 0.429473 -0.905349 +PE-benchmarks/collect-maximum-points-in-a-grid-using-two-traversals.cpp__getMaxUtil(int (*) [4], int (*) [4][4], int, int, int) = 9.942892 4.045169 9.103469 -7.836916 -4.855628 5.054452 -1.437755 -12.927930 1.294527 24.056835 7.520178 -6.200941 -1.635376 12.771673 -9.759509 -6.883850 4.321956 9.350196 0.739260 -9.712307 1.093762 2.419085 -2.713007 -9.539500 1.605504 -7.465244 8.086291 5.335269 -2.063179 9.916050 -9.122154 -2.898824 3.082943 19.298313 2.872462 1.464222 -5.122279 13.589352 -15.758171 14.289903 -24.215880 -20.688751 15.889685 5.063375 6.661296 -15.925708 -8.325544 4.016171 0.883335 -9.698601 -0.299143 -9.126644 7.108003 -9.058710 -0.796157 12.326377 -17.722937 -0.637814 1.433534 -12.606176 -14.442591 -1.563977 15.195971 7.617062 -12.836819 -11.377198 6.458375 12.043986 -4.675739 6.495169 -12.436604 -26.170328 6.703541 1.447340 -9.576663 -0.079556 -0.844207 -18.531140 9.149430 -1.024964 -8.395370 -5.834632 5.871892 -4.945222 1.829681 9.604256 19.661403 -25.954263 5.845162 -21.836192 14.770628 -8.080404 18.312169 10.799004 -11.074357 3.931926 8.419207 19.132355 9.913769 0.624638 15.307088 12.076800 7.989254 -7.505935 12.999529 13.863050 -11.743118 -14.415242 -9.974345 -13.555398 2.431660 -7.992462 -25.365853 -0.326171 -16.141360 -3.527804 -2.231727 -8.368495 -0.888120 22.434989 -32.447097 -9.019233 6.096657 -2.531601 11.165317 10.759146 1.045672 6.918969 2.278128 13.792187 -4.805857 -7.642495 -3.062648 7.919535 -16.713753 -13.068640 -11.072163 6.086707 8.331416 -17.047375 -18.175141 -25.291704 -6.659578 14.297050 -2.578298 10.793212 25.193101 -4.972974 -18.059856 4.918727 -1.800304 -10.302464 22.798494 4.454755 29.050611 -24.877622 14.848251 -6.054842 8.862540 7.437403 13.845443 -6.141516 -8.261511 10.990441 -2.770802 -13.971450 16.850534 -8.328976 1.753685 -8.697085 6.247810 -2.220573 1.978686 15.650934 -20.831359 15.599769 -14.368882 21.263403 -21.102252 -13.352252 2.955877 -29.074126 -9.965685 -5.104515 0.633215 -5.078526 23.811118 -15.247645 -9.141856 -5.929441 -10.189294 5.185111 16.192053 -13.336981 -0.562815 -3.574533 -8.203859 16.875457 8.708000 0.705164 1.493323 -10.103757 0.904301 16.031964 -0.518358 -24.055038 -4.255761 -19.322967 -0.889761 -9.378333 -0.956672 13.026661 -11.258530 -6.772854 -1.288204 -7.260623 2.513692 -8.567409 -11.844345 8.246323 -11.251675 6.414902 0.456014 21.049444 16.413965 15.297895 3.817509 -8.306750 8.116426 -19.335147 -8.351331 12.095049 8.827903 1.959100 5.169184 14.796733 -1.085239 5.035247 8.840482 0.789666 8.404759 15.701634 3.243476 16.942770 -8.937423 8.380423 0.262498 -10.287447 9.649584 24.964899 2.224349 -3.937685 3.995528 -0.876084 -8.845208 -9.871533 -2.245251 -2.753198 -10.762095 7.356371 14.899981 -2.874622 -11.806170 26.010304 8.324753 -26.582584 14.683258 -1.729899 1.644264 17.244818 -12.930178 5.191086 5.996831 5.695439 8.451165 6.143165 14.197888 -18.650344 -5.837740 -2.150679 14.474416 16.247947 -6.201241 -30.301720 15.129206 8.910946 20.729812 5.079886 20.148912 -14.457310 7.087098 -4.775143 -7.877499 -2.277173 -2.226522 12.430360 -4.406005 -0.509594 -23.539621 1.767903 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/efficient-constructtion-of-finite-automata.cpp__search(char*, char*) = 1.295237 1.320993 1.421923 -2.401447 -2.064762 0.853914 -0.009633 -2.162784 0.107065 3.993799 1.926084 -2.141270 -1.804545 3.364987 -1.347023 -2.346927 0.742971 0.033431 -0.186529 -1.549085 -0.127354 1.145022 -0.506210 -1.448295 0.709135 -0.915604 0.298412 1.307105 1.434019 0.079982 -2.066831 -0.398129 0.752870 4.342072 0.389022 -0.209908 -0.420336 4.371577 -2.614329 3.148339 -4.955105 -3.996435 3.758606 0.802546 0.209496 -3.526868 -1.373077 1.768071 -1.145182 -1.757783 0.825916 -1.304159 0.754753 -1.867099 0.066958 3.541246 -5.083376 2.028613 0.731024 -1.559571 -2.148129 -0.574129 2.196056 1.176992 -1.626569 -2.456407 0.901559 1.453567 -2.004383 0.547020 -2.342496 -4.850909 3.012285 0.894288 -2.153817 0.518557 -0.340131 -3.414839 2.191767 -1.888125 -2.489492 -0.825406 1.538055 -0.374954 1.584227 1.626694 2.954736 -6.068109 0.174681 -5.216686 3.036054 -2.412603 3.730096 3.290859 -2.585249 1.041799 1.339496 1.478638 2.366994 0.373279 3.910821 1.385852 2.124314 -0.631696 2.095945 2.938537 -2.455459 -2.454844 -1.888238 -3.413638 0.286865 -0.378513 -5.019213 0.418690 -3.302423 -0.051694 0.637408 -1.193356 -0.488439 3.303302 -5.418273 -2.865706 0.996375 -0.687208 3.216475 3.595309 0.024452 1.326124 -0.224574 3.619133 -0.743410 -0.160500 -0.977230 1.869293 -1.799156 -3.772280 -3.240052 0.973252 1.736042 -3.489595 -4.125614 -5.404651 -0.927611 1.256927 -1.253158 2.814351 6.450373 -1.635930 -3.764256 2.844023 -0.196165 -0.191515 4.735331 0.376227 6.666438 -4.742615 2.388999 -0.747013 0.988954 1.002508 3.265244 -0.768033 -1.866750 1.375102 -0.149381 -2.597625 2.099641 -0.843084 -0.487520 -1.444881 0.804746 -1.174012 -1.591994 3.714801 -2.338845 3.448933 -1.685879 5.374277 -3.887517 -3.817181 1.916663 -3.525012 -1.464441 -1.591043 -0.948718 -0.092503 3.967647 -3.267556 -1.864791 -1.167317 -1.115141 -0.543647 2.614959 -1.378283 0.149843 -0.328969 -0.865589 3.100964 2.738708 -0.271341 0.632397 -3.527615 0.374357 3.037343 -0.213418 -5.095292 -0.264360 -3.740713 -0.389816 0.534782 -0.739753 2.290749 -1.786410 -1.857160 0.255136 -1.550911 1.538933 -1.113541 -3.113768 1.724145 -1.943219 0.900643 0.793413 4.577111 3.540112 3.391328 1.190719 -0.842476 1.204134 -2.579603 -1.003688 1.340535 1.095294 1.117161 1.896201 2.908083 0.855185 1.188208 2.833454 0.435789 0.188320 3.723521 0.714032 4.774545 -1.677504 0.904798 0.109202 -2.199494 2.637870 6.170019 -1.035735 -1.467624 1.655423 0.371818 -1.262781 -2.921935 -0.425179 -1.293337 -2.023933 2.222121 2.055132 -0.504885 -2.018917 5.765175 0.702992 -6.063092 3.812086 -0.189270 0.998056 2.553726 -1.873139 0.483609 1.961133 -1.204013 1.741908 2.227807 3.434012 -3.581095 -1.282932 -0.607334 3.317908 1.992910 -0.203731 -6.235168 1.866869 2.309395 4.390834 1.949974 3.643749 -2.736668 -0.288790 -0.391723 -1.425158 -0.803961 -0.728483 2.459577 -1.482863 0.114464 -4.125073 -0.179687 +PE-benchmarks/find-two-non-repeating-element.cpp__main = 0.903027 0.845103 0.967609 -0.960721 -2.170010 0.757786 -1.673374 -1.200549 0.110572 0.748573 0.726784 -0.817388 -0.283516 1.602265 -1.466580 -1.146314 -0.909060 -0.732734 0.018847 -1.199111 0.120584 0.541562 -0.342326 0.361043 -0.519014 -0.555709 0.002900 0.052789 1.134949 -0.318768 -1.024563 -0.226018 -0.022060 1.455190 0.641396 -0.731324 0.614474 2.193174 0.318051 -0.161032 -1.800885 -1.687518 0.238318 0.306400 0.265204 -1.232313 -1.030319 0.588029 -1.335706 1.127983 1.052600 -0.357860 -0.205212 0.475827 0.554035 0.312671 -2.550396 2.303324 -0.049565 -0.034957 0.090390 -0.291698 0.320654 0.677093 0.570491 -0.648492 0.765346 2.071793 -0.795865 0.296771 0.008263 -1.614930 1.905868 0.195352 -1.014778 -0.183982 0.916119 -1.045469 1.137927 -2.034630 -1.791728 0.193548 0.358494 -0.264210 1.310645 0.402978 0.573955 -2.089394 0.744846 -2.314707 0.682544 -1.008098 0.687953 1.075605 -1.785198 -0.147820 0.930053 0.543643 2.180443 0.359912 1.496167 0.674627 0.429781 0.497766 0.419141 0.617277 0.075313 0.354821 -0.645632 -1.830437 -0.746614 0.007694 -2.702994 0.206531 -0.118053 0.598353 -0.532609 -0.158609 0.042988 0.960062 -2.242646 -1.821296 -0.033061 -0.096213 0.924260 1.039130 -0.627832 1.144293 -0.437420 1.784396 -0.869485 -0.072268 -0.077858 0.228904 -0.472517 -2.124307 -3.592772 1.028208 1.043917 -0.876542 -1.518338 -1.278507 -0.345732 -0.111793 -0.350243 2.010461 2.599541 -0.831428 -1.744090 1.725077 0.205909 -0.336801 2.891757 0.084480 2.114294 -0.744270 -0.064248 -0.737096 -0.600767 -0.710494 -1.347568 0.346980 0.257712 0.523395 0.799583 -0.259856 0.338483 -0.641915 -1.291438 -1.002176 0.364846 -0.589875 -0.364094 1.245074 0.382041 0.925637 0.558359 2.102108 -1.120896 -2.107549 0.440497 -1.257372 0.273624 0.525913 -0.045260 -0.043235 1.448524 -1.318159 -0.592719 0.049632 -0.701735 -0.791721 0.178829 1.722434 0.682172 0.760846 0.646588 1.335310 2.557907 0.642001 0.591658 -1.406559 0.369795 1.298546 -0.263693 -1.938262 0.051381 -1.157204 0.220090 0.375944 -0.268564 0.575295 -0.596346 -0.794294 -1.006488 -0.626760 1.621077 0.788523 -0.467466 0.707518 -1.362601 0.971971 0.210365 0.769814 1.675573 1.674923 1.785977 -0.169795 0.567739 -0.759121 2.146926 0.097610 1.579487 0.066523 0.537391 1.830697 0.502060 0.363662 0.978965 1.299778 -0.156826 1.260456 -0.363008 2.608779 -1.782940 0.863849 -1.485723 0.025098 1.165996 3.493653 -1.044675 0.341679 0.375293 0.763045 0.453520 -1.976018 0.087700 -0.608499 0.007283 0.024981 0.947005 -0.180355 -0.516994 1.365985 0.468901 -1.384111 1.467174 0.097084 0.006529 0.427443 -0.416594 -0.941007 0.381544 -1.672797 0.862998 1.461788 0.901190 -1.128548 -0.985539 -0.212932 1.573090 -0.644713 1.106793 -0.996745 1.260321 1.775638 1.159250 0.645738 0.402106 -1.555935 -2.084505 0.914643 -0.783735 -0.752892 1.009732 0.879387 -1.592526 0.998020 0.569746 -2.100068 +PE-benchmarks/permutations-of-a-given-string.cpp__main = 0.291717 0.094809 1.572279 -1.752265 -1.391114 -0.192734 -1.316417 0.783393 0.948012 0.952048 0.967053 -2.073369 -2.983224 2.333834 -0.655793 -2.424633 0.985892 -0.374077 1.328168 -0.978785 0.811886 0.464877 1.091348 -0.291196 0.762164 -0.349484 -2.103826 1.140533 4.597659 -1.375511 -0.793344 0.903481 0.646365 1.720981 -1.802980 -1.353595 0.663909 3.005488 0.063056 0.923966 -2.230634 -1.284853 2.469518 0.468328 -0.494741 -2.352818 -1.255839 1.139007 -3.418294 -0.405878 0.623474 0.685262 0.092611 -1.587979 -0.610394 2.682020 -5.543354 2.615770 -0.198836 0.438973 0.836727 1.251066 -0.094253 0.415220 1.581113 -0.966449 0.012254 -0.146494 -2.909037 -0.121261 0.169637 -0.270344 3.185520 0.373264 -0.739079 1.841367 2.196409 -1.043044 1.783578 -3.442987 -1.420878 -0.165172 0.310935 -0.105492 2.443549 -0.106456 0.565649 -2.427095 0.064022 -2.038938 2.652366 -2.896222 1.068485 2.324083 -2.363681 1.207936 0.982568 -1.755749 2.200134 0.887807 3.598661 1.221584 1.658674 0.426908 0.477325 0.767629 -0.630641 0.183867 -1.126013 -1.968797 -1.444545 -0.064912 -3.270361 0.171111 -1.049130 1.082756 2.806449 -1.016908 -0.070758 0.742940 -1.219885 -1.127998 0.460602 -0.254428 0.216018 2.834852 -0.316832 -0.894910 -0.119753 3.504981 -0.725431 0.085154 1.718446 0.542045 0.826753 -3.774326 -1.631935 -0.074390 -0.569266 -1.605111 -1.732082 -2.377183 0.685492 -1.071393 -0.078350 1.897840 4.277090 0.643578 -1.494735 2.284848 -0.064938 1.281370 3.549064 0.039688 4.014216 -1.623595 -0.444811 -1.011508 -0.073555 0.819062 0.908974 0.695048 0.302185 0.104313 1.330166 -1.091007 -0.985981 -0.785302 0.398044 -0.227628 -0.134767 -1.791505 -2.185684 1.675338 1.290730 2.404828 0.538268 3.621949 0.308617 -4.236853 2.182191 0.291217 -0.013332 0.383546 -0.970471 0.804822 -0.192654 -1.916121 -1.104429 -1.936777 0.346783 -0.628744 0.691465 0.959675 1.490529 0.671860 -0.226611 1.288376 0.797592 -0.463555 1.426812 -3.824104 -0.541186 0.933798 -0.996984 -3.377402 1.475818 -1.519530 1.080803 2.642821 -0.984420 1.200150 -0.664461 -2.381207 -0.230533 -0.841632 0.940409 -1.373479 -1.689117 0.048385 -0.259717 0.714954 1.348831 2.204035 2.862209 0.910008 -0.354106 1.326098 0.430356 0.037283 1.291451 -0.646268 -0.577805 0.557832 0.523000 0.910554 0.141327 0.646363 2.226352 1.467017 -1.897993 2.005866 0.109520 1.986108 -0.525429 -0.703676 0.132745 -1.588590 1.829758 3.701730 -1.195246 -0.544611 1.582932 1.485429 0.976000 -3.314782 -0.255847 -0.860625 -0.721483 2.456271 0.074965 0.031383 -0.108285 0.760921 1.206470 -3.295550 3.192613 -0.330530 -0.151789 0.216722 -0.002661 -1.246251 1.166256 -2.938905 -0.398207 0.792410 1.413558 -2.053368 -0.301394 0.139383 2.644267 -0.758968 1.482728 -3.352278 -0.659581 1.353704 0.737388 1.813658 1.498164 -1.061466 -3.675699 0.057789 -0.933982 -2.059864 -1.174974 -0.653200 -2.347187 0.259958 0.488367 -0.752102 +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.297395 0.586785 0.674730 -0.983190 -1.531578 0.130725 -0.156688 -0.709235 0.050174 0.574519 0.799886 -0.951353 -0.352901 1.687886 -0.692750 -0.741947 -0.344686 -0.466645 -0.282770 -0.354216 0.207323 0.688764 -0.168515 0.023131 -0.068768 -0.115059 -0.129428 0.516937 0.641246 -0.338421 -0.647775 -0.180087 0.298592 1.167936 0.173476 -0.295743 0.108880 1.692525 -0.978103 0.946667 -1.595641 -1.016884 0.847897 0.158308 -0.026605 -1.870558 -1.340045 0.660727 -0.473602 -0.173926 0.688326 -0.004522 0.002480 -0.176968 0.449629 0.861781 -1.873405 1.182597 0.350883 -0.294888 -0.030380 -0.076282 0.064685 0.416712 -0.372378 -0.713139 0.195401 0.654144 -0.411838 0.104740 -0.131688 -1.407020 1.705109 0.091820 -0.763951 0.179998 0.423420 -1.282208 1.098615 -1.255293 -1.108503 0.018438 0.269829 -0.017879 0.823940 0.117358 0.590671 -1.788093 0.011004 -1.719050 0.770336 -1.153206 0.485596 1.026995 -1.135370 0.204693 0.455857 0.178965 1.514132 0.572639 1.095203 0.766101 0.874920 0.195579 0.641769 0.883640 -0.442754 -0.456951 -0.883680 -1.505624 -0.019120 -0.145797 -2.336456 0.275665 -0.032483 -0.000854 -0.050162 -0.397823 0.299675 1.294924 -1.194839 -0.318964 0.513410 -0.128611 0.293891 1.401235 -0.365188 0.393925 -0.607784 1.187909 -0.411677 0.586945 0.058959 0.429838 -0.819561 -1.914261 -1.582485 0.526912 0.361663 -0.788212 -1.048591 -1.576535 0.017650 0.185613 -0.511572 0.663405 2.126127 -0.752980 -1.471712 1.297382 1.178375 -0.355912 1.298539 0.006924 2.071401 -0.787063 -0.026678 -0.582078 -0.518987 -0.114077 0.716389 0.241701 -0.437212 0.436341 0.028265 -2.394061 1.352655 -0.295227 -0.658496 -0.012309 0.296076 -0.576781 -0.612253 1.325156 0.127148 1.141684 -0.337608 1.614339 -0.782682 -1.306981 0.518962 -0.754883 0.023370 -0.485326 -0.269399 0.456907 1.114228 -0.884616 -0.397490 -0.334146 -0.675263 -0.634974 0.448724 -0.373125 0.300645 0.297981 0.343378 0.655986 1.505616 0.155379 0.462011 -1.215547 0.431214 0.827609 -0.044985 -2.124191 0.049795 -1.003998 0.004642 -0.023659 -0.305218 0.525489 -0.464654 -0.585883 -0.152427 -0.834526 0.545579 0.088587 -0.762797 0.376990 -0.876435 1.047944 0.159145 0.956661 1.454005 1.279563 0.991161 0.172394 0.221020 -0.520867 0.289904 0.354527 0.631891 -0.230964 0.633657 1.418996 0.482398 0.288282 1.108809 0.681085 0.009463 1.165899 0.141119 1.834571 -0.482531 0.124422 -0.426849 -0.079249 1.002890 2.467336 -0.092230 -0.139886 0.441825 0.409218 -0.273744 -1.081010 -0.060193 -0.383075 -0.600998 1.053337 0.536279 -0.226110 -0.234820 1.337212 0.117685 -1.549766 0.874314 0.020867 0.360672 0.457334 -0.258703 -0.050947 0.588992 -0.777467 0.704768 0.954645 0.892542 -1.044280 -1.243085 -0.093566 0.847759 0.707434 0.783554 -2.087194 0.668175 1.073474 1.245061 -0.017382 1.051898 -1.130382 -0.796984 0.540563 -0.180479 -0.473738 0.096853 0.475660 -1.100593 0.249943 -0.629926 -0.963087 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__main = 0.528132 0.311904 0.357379 -0.742027 -0.855229 0.350004 -0.526080 -0.557281 0.127688 -0.076256 0.539932 -0.675272 -0.544922 0.947860 -0.570639 -0.798676 0.055384 -0.338117 -0.027597 -0.185373 -0.068040 0.187869 -0.191953 0.032033 -0.063660 -0.024463 -0.084579 0.258092 1.171676 -0.512705 -1.053051 0.032784 0.004676 1.093165 0.307346 -0.491521 0.472547 1.438056 0.292179 0.335041 -1.007343 -0.291585 0.371500 0.168287 -0.219347 -1.131675 -0.752039 0.490491 -1.188608 0.329417 0.718809 -0.367193 -0.131393 -0.011013 0.262680 1.053897 -1.734290 1.370680 0.224891 0.549928 0.251177 -0.254646 0.292784 0.073069 0.291346 -0.576681 0.460312 0.623509 -0.829812 0.154059 -0.559596 -1.149789 1.444480 0.302836 -0.802430 -0.009797 0.235076 -0.958883 0.532786 -1.098999 -0.912041 0.090259 0.285332 0.118148 1.155590 -0.105373 0.037413 -1.420045 -0.033750 -1.527566 0.331528 -1.089710 0.722193 0.983137 -1.195752 -0.043266 0.210859 -0.235574 0.802655 0.438282 1.060033 0.273180 0.129011 -0.261447 0.441332 0.183699 0.010672 -0.029419 -0.090570 -0.891921 -0.644424 0.270277 -1.879303 0.133301 -0.724052 0.709924 -0.084102 0.140479 -0.113302 0.221058 -0.739591 -1.000396 -0.139879 -0.176615 0.946439 1.366771 -0.264477 0.504863 -0.458108 1.181461 -0.052593 0.076487 -0.457701 0.173173 -0.027006 -1.693163 -1.821050 0.193273 0.747418 -0.518613 -1.303457 -0.873284 -0.249747 -0.557622 -0.268012 1.064031 1.548872 -0.297063 -0.851048 1.108050 0.046263 0.535267 1.804017 -0.068369 1.703951 -0.928132 0.501471 -0.191405 0.017313 -0.596015 -0.956669 -0.166501 -0.143749 0.037532 0.198435 -0.543951 0.516331 0.018173 -0.440047 0.036151 -0.127574 -0.262246 -0.935431 1.269717 0.275127 0.780542 0.385990 1.550665 -0.686845 -1.404088 0.602631 0.259379 0.338179 0.076746 -0.342631 0.110076 0.817989 -0.815470 -0.558255 0.125353 0.082979 -0.369499 0.419345 1.474823 0.064102 0.125846 0.230409 0.545623 1.268226 -0.121641 0.701806 -1.099139 0.255882 0.770108 -0.392113 -1.149040 0.309865 -0.739576 -0.002024 0.435990 -0.174920 0.261323 -0.533741 -0.892962 -0.206561 -0.198844 1.069886 0.287541 -0.733335 0.428910 -0.753033 -0.101353 0.402865 0.787185 1.011425 0.780038 0.674131 -0.410865 0.326911 -0.238024 0.590138 -0.154021 0.408528 0.466747 0.330796 0.623568 0.220010 0.028387 0.361956 0.420691 -0.155115 0.789954 0.593317 1.377938 -0.385357 0.162101 -0.388388 -0.734395 0.811055 2.001039 -0.975466 0.039309 0.378047 0.702082 0.211893 -1.635974 -0.204656 -0.382411 -0.585554 0.387560 -0.072810 -0.109307 -0.341248 1.227966 0.095404 -1.141209 0.860755 0.031053 0.008287 0.276522 -0.175095 -0.310883 0.366250 -1.111160 0.439911 0.570582 0.774968 -0.403227 -0.554293 -0.182709 0.716920 -0.489346 0.290499 -0.677016 0.408439 0.933655 1.131241 1.006943 0.172306 -0.535049 -0.843288 0.179646 -0.403562 -0.302235 -0.062783 0.651630 -0.908234 0.075007 -0.108556 -0.842246 +PE-benchmarks/kth-smallestlargest-element-unsorted-array-set-3-worst-case-linear-time.cpp__swap(int*, int*) = 0.249767 0.371023 0.592851 -0.954598 -1.051521 -0.040515 0.471520 -0.423458 0.110004 0.544729 0.712156 -0.798171 -0.144462 1.625842 -0.343710 -0.405216 0.010551 -0.617860 -0.345850 0.093506 0.212044 0.663947 -0.120383 -0.082926 0.087263 0.081623 -0.102382 0.585927 0.116032 -0.359593 -0.622304 -0.150112 0.248250 1.001868 -0.006475 -0.236283 -0.022266 1.454294 -1.427703 1.336916 -1.256542 -0.681059 0.891280 0.065934 -0.131519 -1.770318 -1.285714 0.614480 0.221531 -0.713825 0.596188 0.102565 0.027014 -0.370968 0.382854 0.921889 -1.465940 0.460738 0.443017 -0.149311 -0.098717 -0.105858 0.113113 0.299642 -0.848033 -0.657314 0.209470 0.071401 -0.262637 0.058945 -0.237490 -1.342532 1.330881 0.182210 -0.552481 0.266722 0.328291 -1.471527 1.059201 -0.817308 -0.822116 -0.001934 0.063036 -0.235045 0.758521 -0.142083 0.584731 -1.543714 0.025741 -1.396393 0.633508 -1.228980 0.362840 1.029905 -0.733321 0.278257 0.248965 0.539282 1.084767 0.491804 0.920713 0.890072 0.880318 0.007496 0.825315 0.893503 -0.653380 -0.691597 -0.940334 -1.228491 0.218880 -0.280681 -1.959588 0.316501 0.036164 -0.400895 0.089054 -0.358240 0.233720 1.409951 -0.899676 0.198098 0.634167 -0.139321 -0.009873 1.426461 -0.334352 0.086332 -0.658937 0.941895 -0.193573 0.758581 0.058043 0.404551 -1.077588 -1.341687 -0.657212 0.264420 0.169165 -0.723971 -0.910633 -1.660289 0.112611 0.322042 -0.508766 0.469818 1.796753 -0.593409 -1.180381 1.033873 1.477955 -0.360622 0.675194 -0.047877 1.811027 -0.769679 0.043631 -0.487289 -0.320720 -0.047433 1.142256 0.206568 -0.485690 0.382080 -0.296706 -2.751748 1.956664 -0.123219 -0.339393 0.398539 0.249642 -0.550563 -0.761618 1.391558 -0.029793 1.079644 -0.459760 1.361162 -0.557448 -0.742424 0.527058 -0.551634 0.050163 -1.035352 -0.337091 0.476969 0.998600 -0.584617 -0.343715 -0.405673 -0.641294 -0.452194 0.477411 -1.037264 0.198704 0.061574 0.250145 0.388311 1.092612 -0.007327 0.408816 -1.090545 0.428430 0.626965 -0.101178 -1.769675 0.053950 -0.852426 -0.059020 -0.268258 -0.256829 0.429964 -0.619899 -0.616302 0.189023 -0.663828 0.040580 -0.136639 -1.168757 0.190650 -0.613224 0.986529 0.191975 0.905963 1.265583 1.023618 0.700479 0.051045 0.076651 -0.307444 -0.653941 0.350853 0.171408 -0.181654 0.563916 1.204566 0.404875 0.199944 0.959295 0.446911 0.109524 0.999855 0.394856 1.398260 0.165767 -0.178681 -0.041174 -0.197475 0.874869 1.899080 0.280961 -0.181147 0.437459 0.315927 -0.649440 -0.622434 -0.115598 -0.318846 -0.622659 1.033035 0.257895 -0.263890 -0.094663 1.249764 -0.009769 -1.556344 0.385696 -0.024740 0.479719 0.669656 -0.169835 0.430468 0.542759 -0.424778 0.816574 0.621359 0.772394 -0.825768 -1.095126 -0.013040 0.477411 0.941250 0.561788 -2.209636 0.633964 0.629280 1.147704 -0.123315 1.200041 -0.878852 -0.093373 0.348179 -0.068220 -0.324154 -0.112363 0.512463 -0.887817 -0.021479 -1.215021 -0.462387 +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.297395 0.586785 0.674730 -0.983190 -1.531578 0.130725 -0.156688 -0.709235 0.050174 0.574519 0.799886 -0.951353 -0.352901 1.687886 -0.692750 -0.741947 -0.344686 -0.466645 -0.282770 -0.354216 0.207323 0.688764 -0.168515 0.023131 -0.068768 -0.115059 -0.129428 0.516937 0.641246 -0.338421 -0.647775 -0.180087 0.298592 1.167936 0.173476 -0.295743 0.108880 1.692525 -0.978103 0.946667 -1.595641 -1.016884 0.847897 0.158308 -0.026605 -1.870558 -1.340045 0.660727 -0.473602 -0.173926 0.688326 -0.004522 0.002480 -0.176968 0.449629 0.861781 -1.873405 1.182597 0.350883 -0.294888 -0.030380 -0.076282 0.064685 0.416712 -0.372378 -0.713139 0.195401 0.654144 -0.411838 0.104740 -0.131688 -1.407020 1.705109 0.091820 -0.763951 0.179998 0.423420 -1.282208 1.098615 -1.255293 -1.108503 0.018438 0.269829 -0.017879 0.823940 0.117358 0.590671 -1.788093 0.011004 -1.719050 0.770336 -1.153206 0.485596 1.026995 -1.135370 0.204693 0.455857 0.178965 1.514132 0.572639 1.095203 0.766101 0.874920 0.195579 0.641769 0.883640 -0.442754 -0.456951 -0.883680 -1.505624 -0.019120 -0.145797 -2.336456 0.275665 -0.032483 -0.000854 -0.050162 -0.397823 0.299675 1.294924 -1.194839 -0.318964 0.513410 -0.128611 0.293891 1.401235 -0.365188 0.393925 -0.607784 1.187909 -0.411677 0.586945 0.058959 0.429838 -0.819561 -1.914261 -1.582485 0.526912 0.361663 -0.788212 -1.048591 -1.576535 0.017650 0.185613 -0.511572 0.663405 2.126127 -0.752980 -1.471712 1.297382 1.178375 -0.355912 1.298539 0.006924 2.071401 -0.787063 -0.026678 -0.582078 -0.518987 -0.114077 0.716389 0.241701 -0.437212 0.436341 0.028265 -2.394061 1.352655 -0.295227 -0.658496 -0.012309 0.296076 -0.576781 -0.612253 1.325156 0.127148 1.141684 -0.337608 1.614339 -0.782682 -1.306981 0.518962 -0.754883 0.023370 -0.485326 -0.269399 0.456907 1.114228 -0.884616 -0.397490 -0.334146 -0.675263 -0.634974 0.448724 -0.373125 0.300645 0.297981 0.343378 0.655986 1.505616 0.155379 0.462011 -1.215547 0.431214 0.827609 -0.044985 -2.124191 0.049795 -1.003998 0.004642 -0.023659 -0.305218 0.525489 -0.464654 -0.585883 -0.152427 -0.834526 0.545579 0.088587 -0.762797 0.376990 -0.876435 1.047944 0.159145 0.956661 1.454005 1.279563 0.991161 0.172394 0.221020 -0.520867 0.289904 0.354527 0.631891 -0.230964 0.633657 1.418996 0.482398 0.288282 1.108809 0.681085 0.009463 1.165899 0.141119 1.834571 -0.482531 0.124422 -0.426849 -0.079249 1.002890 2.467336 -0.092230 -0.139886 0.441825 0.409218 -0.273744 -1.081010 -0.060193 -0.383075 -0.600998 1.053337 0.536279 -0.226110 -0.234820 1.337212 0.117685 -1.549766 0.874314 0.020867 0.360672 0.457334 -0.258703 -0.050947 0.588992 -0.777467 0.704768 0.954645 0.892542 -1.044280 -1.243085 -0.093566 0.847759 0.707434 0.783554 -2.087194 0.668175 1.073474 1.245061 -0.017382 1.051898 -1.130382 -0.796984 0.540563 -0.180479 -0.473738 0.096853 0.475660 -1.100593 0.249943 -0.629926 -0.963087 +PE-benchmarks/little-and-big-endian-mystery.cpp__main = 0.221849 0.185791 0.128074 -0.384225 -0.386253 0.017662 0.006245 -0.125385 -0.062731 -0.252655 0.219565 -0.293030 -0.399623 0.400362 -0.133816 -0.435257 -0.030520 -0.522634 -0.192489 -0.015624 -0.084262 0.140113 -0.053671 -0.042159 0.110925 0.083721 -0.179977 0.247313 0.541356 -0.497565 -0.343306 0.025171 0.089900 0.513244 0.043927 -0.272633 0.253488 0.818560 0.076975 0.000360 -0.325692 -0.186077 0.401923 -0.068917 -0.282181 -0.569467 -0.305810 0.346967 -0.593395 0.141277 0.304648 0.024077 -0.221071 -0.171449 0.064209 0.607116 -0.990896 0.797766 0.193722 0.322143 0.044027 -0.171533 -0.044626 -0.198553 0.321976 -0.316346 0.140420 0.009492 -0.436383 0.055439 -0.198473 -0.332452 0.900418 0.148974 -0.143978 0.161751 0.062458 -0.342796 0.305007 -0.544812 -0.391531 -0.004819 0.175089 0.181601 0.671325 -0.143902 -0.229851 -0.670524 -0.163656 -0.671214 0.082254 -0.619090 0.221143 0.517748 -0.566821 0.183596 0.009212 -0.348398 0.179360 0.167729 0.544679 -0.035846 0.202555 0.065884 0.132960 0.019899 -0.036761 -0.026864 -0.122586 -0.407553 -0.218480 0.166945 -0.875569 0.182764 -0.226435 0.183167 0.102868 0.062291 -0.006819 0.004669 -0.197203 -0.263021 0.034329 -0.099492 0.351874 0.657075 -0.157982 0.056853 -0.346003 0.522867 0.081098 0.290388 -0.169402 0.132815 0.230059 -0.977730 -0.703954 -0.031594 0.230694 -0.221942 -0.571679 -0.330498 0.020449 -0.389451 -0.229664 0.384716 0.783391 -0.152363 -0.401687 0.677013 0.274696 0.496110 0.621416 -0.030971 0.734468 -0.263394 0.017967 0.064375 -0.121430 -0.168777 -0.668056 -0.052015 -0.144438 -0.011727 0.147814 -0.246294 0.282334 0.057696 -0.203117 0.343528 -0.103432 -0.274302 -0.648879 0.632729 0.676568 0.504602 0.372482 0.727571 -0.176335 -0.622245 0.336225 0.398014 0.208638 -0.186220 -0.262300 0.117645 0.125980 -0.326084 -0.280632 -0.024118 0.157670 -0.326208 0.215607 0.673802 0.105544 0.045409 0.230825 -0.110054 0.581657 -0.234070 0.359107 -0.670739 0.154093 0.305298 -0.072694 -0.599929 0.199504 -0.120139 -0.041390 0.492565 -0.091460 0.089506 -0.048236 -0.357188 0.147864 -0.046866 0.343263 0.127977 -0.279186 0.078808 -0.259703 -0.086553 0.213930 0.398451 0.561640 0.241218 0.203526 0.013972 0.092122 0.096141 0.176657 -0.263806 -0.094820 0.401630 0.254972 0.202018 0.252219 0.043140 0.284643 0.305875 -0.270601 0.430714 0.419365 0.750831 -0.110744 -0.162293 -0.100243 -0.206938 0.458582 0.784081 -0.470382 -0.088338 0.269264 0.385782 0.126934 -0.721913 -0.156351 -0.204280 -0.238441 0.338983 -0.158214 -0.145585 0.029096 0.583296 -0.120637 -0.565897 0.393874 0.120655 0.147692 -0.094783 0.026758 -0.144207 0.351782 -0.614162 0.108792 0.261015 0.381716 -0.192714 -0.177333 -0.021827 0.383742 -0.458849 0.294486 -0.327239 0.035466 0.366888 0.447537 0.393429 -0.027347 -0.156073 -0.497800 0.107775 0.003831 -0.081420 0.060752 0.241472 -0.533077 0.012481 -0.049372 -0.347026 +PE-benchmarks/cutting-a-rod.cpp__main = 0.432961 0.239427 0.164221 -0.512978 -0.552904 0.237787 -0.592133 -0.445469 0.025765 -0.152016 0.368969 -0.565198 -0.408794 0.665064 -0.436736 -0.720900 -0.101229 -0.329519 -0.128220 -0.220296 -0.034396 0.053103 -0.097237 -0.207414 -0.055130 -0.051567 -0.032294 0.183292 0.939461 -0.387911 -0.711795 0.055951 0.143467 0.848183 0.240716 -0.313983 0.376100 1.016188 0.323780 0.052192 -0.736215 -0.433906 0.490740 0.087719 -0.238076 -0.623681 -0.448148 0.373144 -1.104472 0.375391 0.363047 -0.236314 -0.199147 -0.163456 0.034032 0.804813 -1.393093 1.272233 0.117437 0.394574 0.029998 -0.250539 0.221605 0.030882 0.441415 -0.468531 0.303775 0.528959 -0.735793 0.140740 -0.417215 -0.746583 1.334181 0.181204 -0.451413 0.012686 0.029119 -0.515310 0.359484 -0.854510 -0.597447 0.025339 0.353561 0.270599 0.835703 0.079104 -0.035098 -1.077857 -0.085250 -1.120510 0.303742 -0.721966 0.547669 0.643941 -1.065294 0.031491 0.080954 -0.194282 0.536275 0.336143 0.787733 0.042407 0.114512 -0.181378 0.259902 0.105916 0.070107 0.002543 0.029600 -0.661213 -0.499351 0.188313 -1.528600 0.146455 -0.631332 0.580013 -0.063007 0.066334 -0.086082 0.012484 -0.703626 -0.899089 -0.167986 -0.107812 0.817475 0.828576 -0.196000 0.398839 -0.280215 0.828493 0.109812 -0.102052 -0.278177 0.147339 0.080545 -1.389448 -1.450738 0.225946 0.581567 -0.444896 -0.980667 -0.584703 -0.168331 -0.365469 -0.211689 0.870880 1.113354 -0.126540 -0.707755 0.811041 -0.016941 0.483699 1.479212 -0.032058 1.304754 -0.721466 0.417531 0.065378 0.042152 -0.300050 -1.078659 -0.252975 -0.198333 0.023910 0.212548 -0.111782 0.132306 0.042187 -0.259468 -0.097181 -0.131590 -0.298133 -0.672159 0.905213 0.400152 0.661670 0.329519 1.180504 -0.626022 -1.123272 0.481093 0.086041 0.101078 0.165114 -0.282588 -0.025897 0.588893 -0.706197 -0.436616 0.126257 0.149620 -0.296464 0.459426 1.303348 0.057831 0.057980 0.117332 0.356200 0.881570 -0.245752 0.525739 -0.851273 0.125968 0.763526 -0.196909 -0.911286 0.187061 -0.507360 0.011937 0.501640 -0.127960 0.226915 -0.313126 -0.595511 -0.105973 -0.077795 0.860434 0.140707 -0.298012 0.324616 -0.556832 -0.128833 0.293004 0.712203 0.735654 0.486363 0.378148 -0.266469 0.265648 -0.277188 0.615071 -0.186391 0.264925 0.444882 0.296837 0.528020 0.111079 0.068364 0.383629 0.440061 -0.318291 0.633101 0.441378 1.058285 -0.455136 0.162606 -0.330262 -0.524312 0.670152 1.525002 -0.978293 -0.105848 0.294755 0.484650 0.296798 -1.199412 -0.267085 -0.284931 -0.436013 0.297209 -0.064553 -0.067219 -0.235285 0.958279 0.133579 -0.812676 0.797985 0.112520 0.002785 0.070088 -0.324678 -0.356905 0.371771 -0.834488 0.151535 0.429256 0.581646 -0.344722 -0.281157 -0.129799 0.715099 -0.511465 0.196410 -0.184963 0.371230 0.800567 0.843573 0.793762 -0.074023 -0.411730 -0.732641 0.014556 -0.170559 -0.122604 -0.005867 0.436405 -0.750686 0.109167 0.078926 -0.685670 +PE-benchmarks/cutting-a-rod.cpp__cutRod(int*, int) = 1.318767 0.651077 1.531403 -2.467764 -1.001095 0.533917 1.270601 -2.002411 0.174642 4.480022 1.760600 -1.752373 -2.218743 3.126535 -0.806885 -2.170476 1.581561 0.610051 -0.242460 -0.958226 -0.374045 1.036158 -0.493938 -1.827363 1.370690 -0.880529 0.527523 2.080333 0.764103 0.243150 -1.934149 -0.441806 0.419337 4.602769 -0.031087 0.296864 -0.690268 4.372920 -3.979999 4.190920 -4.880078 -3.773207 4.450567 0.659956 0.173372 -3.542422 -1.320552 1.821553 -0.878229 -3.005025 0.608514 -1.339293 1.135149 -2.662600 0.114352 4.234257 -5.001308 0.537807 0.995021 -1.864395 -2.849424 -0.512793 2.408576 0.754400 -2.798069 -3.034650 0.972960 0.478955 -2.000834 0.690997 -2.950472 -5.182944 2.492321 0.920353 -1.970441 0.948996 -0.420817 -3.902571 2.237992 -0.806101 -2.102815 -1.307335 1.422609 -1.168945 1.692676 1.401127 3.320631 -6.253390 0.274759 -5.059917 3.124920 -2.823571 4.103677 3.631329 -2.146682 1.692798 1.289208 2.296242 1.188461 0.053718 4.028107 1.657569 2.119447 -0.980693 2.752172 2.747937 -3.343246 -3.494278 -2.511874 -3.056129 0.746311 -1.216424 -5.022015 0.394663 -3.776114 -0.269700 1.070777 -1.230117 -0.625189 4.164820 -5.830118 -1.156717 1.395070 -0.830594 2.915592 3.967133 0.248005 0.512981 -0.091882 3.491889 -0.667403 -0.087523 -1.201608 2.192724 -1.934615 -2.784834 -1.538690 0.254410 1.503317 -3.691473 -4.328649 -5.688941 -1.120439 1.977308 -1.197994 2.829977 6.595708 -1.521565 -3.616053 2.429512 -0.583657 0.007839 3.967111 0.673044 6.706922 -5.323194 2.724667 -1.085450 1.570914 1.699308 4.084952 -1.008948 -2.529016 1.750263 -0.584685 -3.053533 3.735282 -0.723153 0.290960 -0.892763 0.914123 -1.078594 -1.702800 4.297730 -3.631832 4.198041 -2.228083 5.497358 -3.875174 -3.142465 1.856279 -3.680563 -1.604216 -2.785116 -1.251031 -0.266387 3.840342 -3.189315 -2.152971 -1.965043 -1.166625 0.118340 3.515872 -2.439471 -0.120504 -0.996705 -1.364909 3.251024 2.096146 -0.652970 0.443965 -3.684591 0.676887 2.769926 -0.491581 -5.045802 -0.219057 -3.545971 -0.618102 0.178112 -0.533131 2.703200 -2.269191 -1.905491 0.782296 -1.089232 0.428628 -1.838871 -4.295287 1.466007 -1.451561 0.525083 1.300831 5.006086 3.844411 3.152873 0.451199 -1.023127 1.049752 -2.535064 -3.096798 1.694853 0.204699 1.746569 1.867869 2.687440 0.748203 1.192435 2.576377 0.113334 0.899487 4.012993 1.604706 4.385003 -0.733819 0.224809 1.116639 -2.569861 2.520386 5.052961 -0.888227 -1.263789 1.877869 0.571788 -2.118616 -2.470798 -0.579016 -1.306828 -2.412358 2.682388 1.771121 -0.760397 -2.056812 6.322037 0.634489 -6.843389 3.309706 -0.286688 1.283756 3.073380 -1.764680 1.450846 2.001425 -0.427684 1.964361 1.558606 3.456744 -3.838226 -0.713492 -0.301460 2.968346 2.929229 -0.800533 -7.424040 1.549693 1.308606 4.949877 1.952370 4.329412 -2.346664 1.226915 -0.912160 -1.619718 -0.358379 -1.355376 2.528501 -1.207731 -0.425449 -6.022598 0.826940 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__main = 0.728407 0.099248 0.517159 -0.299640 -0.599682 0.907646 -2.624089 -1.080362 0.335087 -0.643291 0.304068 -0.807045 -0.688170 0.420267 -1.349873 -1.618153 -0.447342 0.960324 0.275623 -1.364506 0.035612 -0.691105 -0.102978 -0.530643 -0.542909 -0.937330 0.677324 0.110950 2.210268 0.400430 -1.150752 0.178661 0.205500 1.454880 0.760575 0.027372 0.869854 1.148436 2.201798 -0.452749 -1.292560 -1.070699 0.380049 0.504432 -0.092017 -0.054444 -0.432786 0.013166 -3.707044 1.965285 0.309992 -0.959271 -0.079496 0.070997 -0.064617 0.917995 -2.171234 2.546218 -0.617615 0.338825 0.025741 -0.467230 0.437980 0.364988 1.552171 -0.479541 0.680081 2.371878 -1.606064 0.749543 -0.607033 -1.063233 2.478946 0.067703 -1.046958 -0.375164 0.384461 0.009077 -0.028365 -1.178704 -0.880410 -0.123182 0.939831 0.718870 1.232546 0.796938 0.164303 -1.558963 -0.140975 -1.772029 0.858977 -0.661616 1.319267 0.466544 -2.479807 -0.112732 0.400647 -0.325326 0.645539 0.540052 1.093547 -0.132976 -0.525951 -0.665646 0.360910 -0.437302 0.823738 0.256917 0.714810 -0.748138 -1.631712 0.083883 -2.827954 -0.429646 -1.730985 2.275136 -0.693000 0.396910 -0.391069 -0.787439 -1.790180 -2.261727 -0.864905 -0.117369 2.082817 0.358993 -0.198044 1.386597 0.422326 1.504490 -0.035406 -1.684960 -0.745501 -0.055817 0.707327 -2.184562 -3.708795 0.700630 1.460939 -0.447313 -1.888524 -0.093313 -1.106440 -0.087834 0.342584 1.867137 1.389893 0.424222 -1.112846 0.718596 -1.621088 1.003872 3.757711 0.388987 1.796813 -1.484857 1.338778 -0.174440 0.604909 -0.449950 -3.087827 -0.858337 -0.078189 0.321270 0.942494 1.928915 -1.093478 -0.581513 -0.307024 -1.756836 -0.441068 -0.260998 -0.256393 1.221562 -0.028537 0.882339 0.336174 2.019764 -1.761791 -2.756188 0.283364 -0.718254 -0.037092 1.777004 0.152176 -0.757054 1.327073 -1.847420 -1.108392 0.606781 0.375145 0.299668 0.847404 4.016136 -0.213762 0.040752 -0.177573 1.581901 1.344681 -0.128621 0.706367 -1.025983 -0.229107 1.662598 -0.320288 -1.137881 0.471161 -0.779020 0.198581 0.503636 0.153662 0.274578 -0.620272 -0.860218 -1.251812 -0.124316 2.229986 0.338607 0.038846 0.872176 -0.848637 -0.894437 0.487414 0.905160 1.352341 0.450978 0.576308 -0.872782 0.834227 -1.332364 2.627280 -0.036286 1.583282 0.750975 -0.104963 1.060773 -0.449184 -0.155620 0.122960 1.087167 -0.367139 0.607613 0.565997 1.459554 -1.693464 1.199018 -1.116386 -1.073778 0.888707 2.796815 -2.405773 0.298075 0.297233 1.110091 1.556229 -2.897964 -0.702893 -0.368227 -0.538889 0.160500 0.148747 -0.083078 -0.771417 1.397429 1.059358 -0.697308 1.761038 0.235720 -0.853991 -0.118558 -1.276804 -1.681800 0.421709 -1.436552 -0.127824 0.323770 0.685132 -0.588193 -0.049312 -0.477674 1.389991 -1.090829 -0.208604 1.379450 0.650789 1.708355 1.476588 2.076603 -0.772037 -0.641819 -1.799037 -0.458831 -0.995136 -0.338191 0.215385 0.525638 -1.062410 0.556459 1.226554 -2.053531 +PE-benchmarks/mobile-numeric-keypad-problem_space_optm.cpp__getCount(char (*) [3], int) = 4.854053 -8.307107 8.074294 -13.480304 0.996144 8.955747 -6.256215 -12.667705 1.734734 12.231731 5.811791 -1.102549 -8.677927 9.298514 -2.329138 -18.484406 8.510194 21.944791 3.395968 -8.692211 1.944770 -1.038524 -3.728583 -10.786277 0.933692 -13.185929 11.259714 10.759205 7.996504 17.128938 -11.890992 -5.505093 -4.248184 24.355069 4.291939 12.830602 -5.396784 21.136166 -8.351878 22.455583 -20.888015 -24.652252 17.725981 4.873090 0.429937 -10.890485 -10.216341 0.029952 -16.090071 -9.503681 3.390412 -11.439923 11.096982 -8.982037 2.466578 12.536188 -17.093784 -8.255125 -0.971197 -11.360512 -13.691980 -6.554788 13.387952 6.567949 -19.910168 -10.657383 10.032371 10.905131 -7.677496 5.739097 -14.790035 -29.510350 12.903664 10.263037 -11.484614 0.842708 6.423236 -21.277817 7.160233 14.857221 -13.889848 -8.585475 1.596737 -10.744835 11.819276 7.253872 25.348257 -30.357256 8.900694 -27.582484 15.397478 -12.140129 23.285941 17.340412 -19.051345 7.159765 13.090602 31.200699 0.313717 -9.433157 18.472280 13.758746 0.030620 -8.202259 24.112909 6.621790 -13.096778 -19.172152 -10.922654 -13.668494 0.652874 -24.386677 -37.830042 -2.768573 -20.967643 -3.598185 -5.579638 -1.806493 -8.195603 15.086015 -38.722887 -4.182933 3.850175 -5.030840 15.383468 10.426208 -0.896562 6.314314 6.765884 19.358290 -8.977605 -9.298559 -9.739352 9.468632 -11.217398 2.781390 -11.087266 4.733940 13.007128 -17.538614 -25.808531 -22.216463 -15.010439 22.313382 2.502170 17.960059 30.743217 -4.549495 -18.448264 6.876024 -14.627443 0.728071 27.512381 8.754612 25.329512 -25.845658 17.369960 -12.359559 11.189953 5.715937 3.538965 -5.385367 -8.204513 16.625090 -8.338081 0.928824 21.750160 -16.563788 1.235298 -23.651250 4.598323 -9.617806 -1.589196 25.123146 -35.938499 20.082254 -12.336460 22.041644 -22.345163 -14.477232 2.800813 -38.027623 -13.657071 -13.963171 -0.771717 -12.432588 24.066773 -21.424430 -15.406234 -12.473910 -6.008920 8.824072 17.216911 -5.009518 -4.234649 -4.409508 -3.415802 22.940117 14.490561 4.806324 -3.937353 -12.139175 3.150139 20.592424 -6.934031 -13.421845 -0.449846 -16.742533 -1.880456 -11.719171 2.726994 13.010429 -16.939361 -10.527083 -8.558230 -0.774400 5.028940 -5.582920 -34.341552 8.894286 -0.568071 -0.487234 9.562624 21.324410 22.733786 15.012781 5.841607 -12.061157 13.575768 -15.908186 -16.418568 9.666974 7.804714 11.718699 3.070599 15.630742 0.586658 4.482690 10.493410 11.113089 15.292790 15.058842 12.697759 22.176696 9.109219 2.289472 3.190940 -14.466804 9.107403 30.280103 2.911584 11.731670 9.314955 5.973551 -8.631558 -23.840013 -2.886467 -4.975828 -11.592016 10.224819 8.014828 -4.878336 -14.444252 30.463033 9.796247 -32.562330 11.333965 -0.068212 2.848405 23.592503 -15.255217 4.566727 6.450297 -2.037063 19.694943 3.342944 11.390053 -18.582558 7.382399 -2.247229 11.168316 20.777596 -9.344718 -13.250214 19.019015 3.404772 28.329173 17.186350 17.896245 -10.566770 11.073620 -8.571512 -18.595126 -0.896972 -6.672788 13.486573 -0.272828 -5.524394 -32.528828 -7.960005 +PE-benchmarks/transitive-closure-of-a-graph.cpp__main = 0.274365 0.060602 0.120537 -0.339388 -0.386545 0.107176 -0.242638 -0.095774 0.010187 -0.271201 0.119596 -0.247009 -0.310377 0.463380 -0.170897 -0.491334 -0.066581 -0.419608 -0.083415 0.029741 -0.079904 0.154806 -0.075722 0.092653 0.069032 0.046043 -0.177091 0.116522 0.574693 -0.434072 -0.443711 0.015244 -0.051550 0.494117 0.047435 -0.218378 0.357438 0.893249 0.308772 0.104493 -0.242134 -0.226024 0.174279 -0.023919 -0.215115 -0.277686 -0.256528 0.274481 -0.681588 0.251328 0.414939 0.014549 -0.317547 -0.009519 0.214448 0.423966 -0.996324 0.803081 0.090424 0.489548 0.146689 -0.230983 -0.075092 -0.182781 0.277713 -0.245403 0.206412 0.220258 -0.508548 0.071584 -0.131344 -0.343677 0.869995 0.246590 -0.257320 0.128404 0.261377 -0.302205 0.291311 -0.644494 -0.498289 0.064319 0.106315 0.056676 0.788147 -0.090118 -0.156932 -0.654322 0.118322 -0.685417 0.075502 -0.648817 0.228135 0.620964 -0.641212 0.115959 0.095002 -0.044987 0.277950 0.162993 0.585495 0.066613 -0.024170 0.069109 0.122747 -0.048834 0.007321 0.073520 -0.070815 -0.408847 -0.335853 0.104352 -0.890231 0.100884 -0.152779 0.428821 0.053087 0.235434 -0.098672 -0.172465 -0.457385 -0.461264 -0.080186 -0.091192 0.428897 0.562683 -0.235537 0.117980 -0.349330 0.633765 -0.007595 0.138701 -0.217021 0.051794 0.132576 -0.657041 -0.883839 -0.027723 0.291198 -0.187535 -0.621905 -0.334545 -0.065062 -0.281992 -0.155517 0.706169 0.815367 -0.123374 -0.291139 0.725321 0.011032 0.554433 0.797321 -0.033886 0.584616 -0.203779 0.016619 0.016946 -0.075768 -0.347206 -0.992879 0.068441 -0.020475 -0.040538 0.196671 0.100097 0.244080 -0.003532 -0.277349 -0.084486 -0.117113 -0.282478 -0.559174 0.706526 0.364968 0.403663 0.420071 0.734458 -0.139143 -0.615306 0.343756 0.172027 0.262594 -0.180108 -0.233654 -0.023755 0.169580 -0.457073 -0.280778 0.086005 0.133920 -0.321586 0.060873 0.969025 0.099088 0.077312 0.341835 0.195351 0.698041 -0.087480 0.328821 -0.695880 0.125227 0.277323 -0.294079 -0.377663 0.304633 -0.107512 -0.004230 0.451087 -0.085433 -0.062430 -0.203169 -0.457876 -0.088024 0.036335 0.508626 0.230420 -0.345031 0.064943 -0.208267 -0.072558 0.331496 0.245496 0.591020 0.250416 0.359598 -0.084807 0.145726 0.119429 0.340806 -0.218518 0.026594 0.441458 0.173434 0.246291 0.244203 -0.025987 0.165332 0.406934 -0.236806 0.371571 0.424696 0.825289 -0.077626 -0.118480 -0.208423 -0.235727 0.425950 0.888427 -0.714200 0.195884 0.282230 0.450057 0.199153 -0.722608 -0.123560 -0.261884 -0.203845 0.081404 -0.299501 -0.131803 0.037091 0.491422 -0.087571 -0.502973 0.314447 0.090667 0.091932 -0.016630 0.073860 -0.218258 0.272871 -0.802761 0.249546 0.246010 0.305155 -0.096309 -0.066555 -0.067879 0.342235 -0.495485 0.330294 0.090591 0.179726 0.413582 0.414493 0.536738 -0.216013 -0.112014 -0.621001 0.114687 -0.216223 -0.176455 0.100860 0.278632 -0.423669 0.079424 0.055033 -0.650345 +PE-benchmarks/transitive-closure-of-a-graph.cpp__printSolution(int (*) [4]) = 0.786867 0.452832 1.019182 -1.123193 -0.128164 0.221307 0.855263 -0.789973 0.082559 2.856948 0.431913 -0.562883 -1.867515 1.160710 -0.391715 -1.446458 0.811185 -0.391252 -0.075934 -0.799380 -0.329178 0.401632 -0.066274 -1.149287 0.933037 -0.604101 0.309991 1.240952 0.136159 0.058294 -0.652511 -0.186019 0.233465 2.431937 -0.240751 0.363268 -0.332062 2.285514 -1.961523 2.093195 -2.738501 -2.647093 2.566233 0.212585 0.085661 -1.461531 0.342653 0.987587 -1.213065 -1.282479 0.141643 -0.540697 0.371695 -1.693303 -0.040553 2.237407 -3.185830 0.760210 0.172737 -1.018961 -1.763734 -0.423962 1.189719 0.219403 -0.689383 -1.569272 0.391858 -0.012694 -1.601093 0.735598 -1.462200 -2.009172 1.074241 0.574933 -0.776630 0.702558 -0.132028 -1.306292 1.023146 -1.166829 -0.878925 -0.976115 0.975966 -0.467454 0.976096 1.133382 1.395209 -3.209675 0.086454 -2.285959 1.881555 -1.378287 2.146354 1.838833 -0.706147 1.292720 0.561005 0.633865 0.117466 -0.623221 2.047199 0.544546 1.477273 -0.225348 1.099425 1.286408 -2.002052 -1.860573 -1.298055 -1.292950 0.265969 -0.682222 -1.936896 0.009331 -1.981059 0.263659 1.211187 -0.766773 -0.669977 1.504295 -3.766769 -0.869721 0.599507 -0.432378 1.874218 1.496476 0.159641 0.245169 0.371175 1.896425 -0.265545 -0.125210 -0.628344 1.134657 -0.427986 -1.170334 -0.762365 -0.100644 0.659365 -1.748140 -2.262951 -2.884203 -0.704819 1.097313 -0.459785 1.899635 3.416044 -0.437756 -1.896168 1.246559 -1.204702 0.512367 1.960101 0.494194 2.841691 -2.636859 1.334692 -0.413124 1.098108 1.276588 2.548157 -0.573887 -1.400403 1.034073 0.039534 0.004561 0.221482 -0.317572 0.330311 -1.135027 0.172680 -0.881556 -0.614187 1.994028 -2.057593 2.309719 -1.153056 2.832232 -2.162859 -1.844883 0.862973 -2.670884 -0.851710 -1.512074 -0.950534 -0.232699 1.535912 -2.168715 -1.267822 -1.359377 -0.329529 0.151754 1.880525 -1.659714 -0.083529 -0.718555 -0.678516 2.497666 0.798825 -0.563577 0.068467 -2.066593 0.220543 1.248642 0.017294 -2.590922 0.072555 -1.350596 -0.379109 1.060134 -0.176803 1.263000 -0.856221 -0.853006 0.700602 -0.581363 0.017779 -1.121072 -2.118429 0.542788 -0.287240 -0.100875 0.886229 2.561639 1.851561 1.160287 -0.111124 -0.404066 0.492520 -1.378892 -1.274260 0.666741 0.035618 0.948484 0.939183 1.105988 0.392172 0.425767 1.446365 0.570935 -0.346698 2.020042 0.674872 2.022081 -0.879373 0.131015 0.672240 -1.247398 1.087562 1.974403 -1.191477 -0.712220 1.253544 0.295065 -0.561950 -0.894064 -0.526638 -1.068466 -0.800834 1.499415 0.973161 -0.799482 -0.821062 3.239199 0.348340 -3.463364 1.890848 0.012175 0.566380 1.182058 -1.040965 0.260274 1.268732 -0.657304 0.757766 0.562234 1.718601 -1.945174 0.291282 -0.133935 1.674481 1.248967 -0.444117 -3.631680 -0.206254 0.545929 2.498985 1.368847 2.402282 -0.921291 0.314537 -0.756735 -0.891970 -0.187272 -0.580859 1.283509 -0.318802 -0.027470 -2.883586 0.522177 +PE-benchmarks/transitive-closure-of-a-graph.cpp__transitiveClosure(int (*) [4]) = 2.933518 -0.057282 3.509766 -2.093675 1.143573 1.413434 3.000275 -2.444435 0.939043 9.800067 1.192220 -0.568767 -4.170411 2.610894 -0.803706 -3.225501 4.122419 1.060946 1.040353 -1.779879 -1.250664 0.777128 -0.497557 -3.913716 3.435182 -2.446745 1.671926 3.935000 -1.543845 2.541302 -2.409894 -0.652436 -0.215521 7.610574 -0.561349 1.381120 -0.625860 6.733181 -7.165904 7.797918 -7.024331 -7.954640 7.829021 0.848716 0.853542 -1.500871 1.578850 2.122778 -2.563455 -5.126815 0.597696 -2.779363 2.694259 -4.929966 -0.031683 6.498882 -8.598598 -1.011838 0.123851 -3.525808 -6.284023 -1.598256 3.629428 0.918662 -4.083668 -4.478401 2.045964 0.694185 -3.731904 2.234554 -5.124272 -7.154101 2.563544 1.686449 -2.534625 1.817989 0.286318 -4.855006 2.826663 -0.718803 -2.804603 -3.319538 2.129686 -2.990793 2.903850 3.512197 6.251413 -9.932549 1.406239 -7.099495 6.562655 -3.941344 7.544856 6.022918 -2.348342 3.977771 2.672963 5.814182 -1.055254 -2.122637 6.655559 2.572803 2.837873 -1.583474 3.925637 4.210982 -7.038270 -6.691907 -4.593716 -2.650472 1.317367 -2.788135 -5.307117 -0.642811 -6.957419 1.543264 3.311952 -2.040094 -2.549057 6.312045 -12.321514 -1.111561 1.800835 -1.373275 5.979041 3.771092 0.771190 0.706069 1.993594 6.106267 -1.634881 -2.104718 -2.815055 3.671465 -2.802193 -0.897833 -0.812917 -0.633196 2.371512 -6.085270 -7.399152 -9.444718 -2.585755 5.605892 -0.673511 6.036600 10.338316 -1.082289 -4.382228 2.766542 -5.051376 0.876245 6.121071 2.122941 7.728350 -8.957971 5.060286 -2.198779 4.731403 3.772281 8.553878 -1.845417 -3.836561 3.729327 0.352751 1.605746 4.235032 -1.321850 1.566447 -4.229263 0.674624 -1.722167 -1.015528 6.826933 -8.481330 5.855127 -4.369023 9.182704 -6.776023 -4.707632 2.084003 -8.618317 -3.005319 -5.749378 -2.212975 -1.160987 5.230678 -6.713555 -4.414039 -3.868098 -1.092903 2.108305 5.885394 -4.740415 -0.622923 -2.630735 -3.392563 8.198136 1.487798 -0.991661 -0.880057 -5.671727 -0.012823 3.238286 -1.711739 -6.564206 0.014533 -4.287806 -1.037548 1.270131 0.060784 4.138653 -4.430250 -2.966740 1.680023 -1.094207 -0.640379 -3.640374 -8.265432 1.866970 0.382498 -1.105485 3.218292 7.474052 5.967872 3.603646 -0.602869 -1.993838 1.631485 -4.290600 -6.156599 3.382608 0.399243 4.116220 1.978102 3.790914 0.697223 1.195095 2.254330 0.570624 1.539488 5.874025 2.929724 5.553667 -1.853351 0.772861 2.804919 -4.327326 3.492761 4.513875 -3.250192 -1.405759 3.216319 0.669692 -2.793142 -1.522090 -1.015142 -2.985744 -2.078630 2.920603 2.948288 -1.921266 -3.540057 10.355843 1.534163 -11.302776 4.944983 -0.180194 1.776996 5.609262 -3.155766 2.084996 2.994943 -0.170512 4.013492 0.730759 5.410169 -5.975060 1.964770 -0.535928 4.336130 4.812095 -2.424473 -11.092271 0.108624 0.368521 7.395273 4.716812 7.694442 -2.620774 3.268716 -3.676435 -4.625553 -0.383716 -2.044965 4.515238 0.196866 0.334092 -11.276552 2.371919 +PE-benchmarks/find-k-closest-elements-given-value.cpp__main = 0.453007 0.170746 0.196406 -0.853215 -0.733627 0.113412 -0.000772 -0.237440 0.088990 -0.264323 0.535712 -0.697932 -0.469966 1.190434 -0.216652 -0.694041 0.195993 -0.818590 -0.167984 0.327138 -0.036209 0.401846 -0.155142 -0.022395 0.153949 0.258125 -0.338400 0.443504 1.028220 -0.679046 -1.060635 0.052087 -0.005566 1.015507 0.108963 -0.616391 0.553257 1.633361 -0.414732 0.647960 -0.637762 -0.158928 0.624199 0.022055 -0.535454 -1.084394 -0.908344 0.557698 -0.896678 -0.029483 0.858531 -0.079331 -0.241917 -0.152578 0.370412 1.200243 -1.826939 1.162116 0.384852 0.916831 0.347956 -0.411748 0.013673 -0.155909 -0.011748 -0.579528 0.388469 0.002297 -0.726453 -0.034704 -0.532527 -0.996789 1.570525 0.441963 -0.595496 0.183992 0.252254 -1.269982 0.675261 -1.042716 -0.877471 0.163701 0.085223 0.064530 1.402665 -0.385120 -0.110035 -1.370202 -0.116953 -1.419292 0.209717 -1.405039 0.494635 1.261570 -1.203943 0.088882 0.020125 0.030715 0.678144 0.393882 1.091591 0.407823 0.241211 -0.199762 0.489603 0.345880 -0.218705 -0.131186 -0.275059 -0.802066 -0.470947 0.145370 -1.939789 0.275472 -0.443686 0.283276 0.162247 0.084062 -0.179143 0.333538 -0.437648 -0.516586 -0.039435 -0.185162 0.642870 1.545623 -0.375970 0.143086 -0.742997 1.146063 0.164986 0.521069 -0.445676 0.195630 -0.318611 -1.553335 -1.227841 -0.011241 0.512919 -0.547489 -1.252480 -1.116504 0.042389 -0.641570 -0.370795 0.913672 1.541728 -0.286721 -0.706048 1.305200 0.540403 0.737251 1.330244 -0.212823 1.523839 -0.692949 0.299417 -0.061921 -0.104608 -0.717715 -0.770894 -0.005799 -0.229123 -0.135264 -0.017378 -1.040749 1.020979 0.272288 -0.377749 0.201079 -0.180971 -0.511314 -1.254647 1.620376 0.397564 0.771659 0.404145 1.443549 -0.331557 -1.081010 0.816035 0.491345 0.433727 -0.697653 -0.621449 0.336817 0.540056 -0.657946 -0.499900 -0.027491 0.296015 -0.574624 0.324571 0.955029 0.061106 0.039360 0.476686 0.148283 1.192303 -0.291695 0.787902 -1.239619 0.332208 0.666094 -0.583506 -1.193833 0.463764 -0.515168 -0.046829 0.518127 -0.218263 0.093838 -0.633942 -1.037750 0.145558 -0.064848 0.768198 0.253233 -1.163627 0.278211 -0.558547 -0.013501 0.604726 0.725100 1.010977 0.618612 0.588043 -0.264212 0.193677 0.152669 -0.066554 -0.209317 -0.041980 0.508023 0.421480 0.682847 0.382210 -0.028568 0.372418 0.543743 -0.321495 0.772980 0.968249 1.356903 0.350770 -0.315372 -0.122541 -0.693483 0.868783 1.782499 -0.782328 0.022293 0.487211 0.709577 -0.014871 -1.262125 -0.233562 -0.452071 -0.641196 0.478483 -0.585148 -0.217596 -0.036381 1.184289 -0.190543 -1.244887 0.491644 0.100972 0.297606 0.242449 0.037390 -0.024687 0.469996 -1.229327 0.762807 0.465472 0.724703 -0.151477 -0.512672 -0.103124 0.469834 -0.265845 0.445525 -0.751535 0.433392 0.712027 1.050304 0.941636 0.216198 -0.305094 -0.618225 0.092249 -0.232170 -0.213415 -0.260512 0.621379 -0.966547 0.006710 -0.458984 -0.789970 +PE-benchmarks/find-k-closest-elements-given-value.cpp__findCrossOver(int*, int, int, int) = 2.647984 1.040863 2.688405 -2.740664 -1.075380 1.060841 1.305331 -3.073000 0.922745 7.851517 1.994590 -1.710312 -0.835368 4.058735 -1.943419 -1.944334 1.867760 0.429321 0.228315 -1.662855 0.173133 1.465955 -0.553088 -2.777796 1.328416 -1.774116 1.659553 2.052926 -1.615646 1.354646 -2.141892 -0.845158 0.675111 5.559305 0.070677 0.891729 -1.508021 4.365544 -5.517454 5.789040 -7.403164 -6.049827 5.458104 1.062433 1.230343 -4.323891 -0.916245 1.605738 1.458252 -4.051169 0.002957 -2.136727 1.990914 -3.352217 -0.354741 4.114089 -5.386669 -0.654697 0.524856 -3.652661 -4.438002 -0.568485 3.881990 2.269384 -4.466498 -3.608536 1.618238 1.909494 -2.111711 1.694982 -3.245713 -6.754993 2.554904 0.857048 -2.545943 0.613513 -0.570945 -5.253539 2.928474 -1.394713 -2.211737 -1.969720 1.776256 -1.754256 0.546546 2.428926 5.897779 -7.728457 1.622162 -5.933361 4.855627 -2.599342 5.272451 3.654541 -1.972380 1.865957 1.940447 5.285870 2.493554 -0.102236 4.697584 3.350252 3.179996 -1.625584 3.510184 4.474552 -4.287092 -4.670379 -3.245148 -3.846609 1.445987 -1.720804 -6.463915 0.119769 -4.315305 -0.559871 0.943500 -2.409278 -0.336931 7.030055 -9.424710 -2.092319 2.090403 -0.736383 2.981546 3.462723 0.551484 1.149765 0.644910 4.038863 -1.214148 -1.128181 -0.807020 2.665417 -5.064301 -2.537389 -1.445177 0.795376 1.574039 -5.162294 -5.043597 -8.179605 -1.553837 4.657300 -1.241382 3.942667 7.778997 -1.695203 -5.229195 1.810160 -0.090197 -2.943041 4.935683 0.961032 7.896237 -7.080751 3.785608 -1.795794 2.829704 2.871302 7.685043 -1.366688 -2.935018 2.975275 -1.161304 -4.738343 5.216853 -1.173955 0.816256 -1.729366 1.140491 -1.161415 -0.460366 4.483454 -5.819627 5.202552 -4.558072 6.828557 -5.765156 -3.385502 1.480563 -7.698349 -2.849556 -3.162653 -0.669216 -0.423697 6.129268 -4.346294 -2.496053 -2.185044 -3.157441 1.099057 4.674812 -5.684241 0.019237 -1.420093 -2.820143 6.121968 2.037778 -0.320267 -0.117795 -3.498728 0.515791 3.853824 -0.083894 -6.454719 -1.377206 -5.181305 -0.580252 -1.366568 -0.511474 3.885153 -3.440940 -1.858400 0.660149 -1.863218 -0.223910 -2.982400 -5.021645 1.825191 -2.086533 2.003484 0.375778 6.283907 4.303113 4.215733 0.483907 -1.986348 1.352212 -4.786120 -3.951754 3.227601 1.666031 0.510497 1.967347 4.660835 0.249667 1.622700 3.595798 0.395849 1.657557 4.828020 0.328544 4.813400 -2.776695 1.574445 0.984733 -2.695430 3.072520 6.367861 -0.195533 -1.821648 1.742913 -0.138185 -3.193104 -1.409818 -0.666765 -1.347767 -2.398985 2.502627 3.783392 -0.785169 -3.008513 7.874951 2.000256 -8.490496 4.131048 -0.605449 1.104672 4.830777 -3.263504 1.948588 2.201852 1.050770 2.496301 1.730877 4.386896 -5.243148 -1.511775 -0.360141 3.954658 4.779749 -1.214543 -9.761347 2.714559 2.046890 6.166914 1.429591 7.001537 -3.761846 2.544236 -1.402156 -1.987367 -0.670740 -0.850658 3.167525 -1.043235 -0.070242 -8.077538 1.745162 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__main = 0.705522 0.176530 0.448750 -0.573821 -0.863625 0.884142 -2.487454 -1.074915 0.343848 -0.827975 0.577509 -1.076327 -0.919965 0.750728 -1.233680 -1.833252 -0.349123 0.729982 0.189353 -1.126576 0.027711 -0.526315 -0.146003 -0.480128 -0.461126 -0.732311 0.425399 0.303254 2.700077 0.105980 -1.481904 0.242053 0.203398 1.671984 0.732879 -0.212707 1.063213 1.592201 1.862861 -0.299584 -1.358960 -0.922828 0.591185 0.522507 -0.397232 -0.396365 -0.761292 0.219201 -3.988301 1.811509 0.665290 -0.927403 -0.089375 0.054082 0.098753 1.391169 -2.665181 2.842605 -0.412164 0.678290 0.237406 -0.512506 0.381368 0.308822 1.520847 -0.651427 0.729371 2.115901 -1.700187 0.548872 -0.758151 -1.369687 2.969702 0.183051 -1.212425 -0.285543 0.390677 -0.428890 0.192818 -1.366312 -1.115857 -0.005579 0.940927 0.778415 1.626877 0.564272 0.043252 -1.893004 -0.367591 -2.125791 0.894099 -1.059324 1.411529 0.839347 -2.821154 -0.160303 0.347460 -0.541234 0.854605 0.635445 1.402311 -0.117650 -0.398603 -0.728928 0.430520 -0.303333 0.695588 0.235736 0.575244 -1.015991 -1.684305 0.179458 -3.347734 -0.294261 -1.835411 2.241412 -0.511344 0.319884 -0.392856 -0.656888 -1.521986 -2.235423 -0.872784 -0.161851 2.216712 1.027354 -0.290180 1.337451 0.169189 1.792910 0.048238 -1.363640 -0.872600 0.009320 0.703497 -2.691360 -3.889882 0.688174 1.564301 -0.608448 -2.136936 -0.400337 -0.929316 -0.466967 0.187715 1.906605 1.825496 0.258257 -1.270343 1.141258 -1.344585 1.273313 3.961844 0.222811 2.309572 -1.664704 1.391734 -0.191785 0.472945 -0.698707 -3.079056 -0.790506 -0.161179 0.166932 0.884729 1.395289 -0.766795 -0.369532 -0.432235 -1.474661 -0.452058 -0.383096 -0.752303 1.680756 0.247730 1.034460 0.543517 2.359456 -1.745431 -3.026404 0.633625 -0.208311 0.072638 1.460205 -0.218525 -0.459795 1.343265 -1.867391 -1.125875 0.471041 0.576297 0.018449 0.858800 4.237202 -0.179664 0.059761 -0.007925 1.345750 1.688321 -0.204036 0.944266 -1.415749 -0.108461 1.775572 -0.568795 -1.471813 0.609326 -0.972212 0.190691 0.770236 -0.003404 0.322600 -0.746929 -1.190845 -1.126467 -0.138236 2.440600 0.412669 -0.402776 0.946282 -0.987201 -0.911840 0.709662 1.108493 1.568114 0.672536 0.760527 -0.852419 0.868910 -1.106013 2.459257 -0.169342 1.382511 0.948290 0.092270 1.155999 -0.298055 -0.150001 0.249171 1.126246 -0.469786 0.839427 0.900336 1.835701 -1.316183 0.986541 -1.061763 -1.304955 1.109716 3.248129 -2.562168 0.252005 0.435435 1.338609 1.484698 -3.263556 -0.707143 -0.512926 -0.781054 0.410211 -0.157228 -0.095190 -0.778301 1.687746 0.897844 -1.062905 1.856568 0.213741 -0.698312 -0.084855 -1.165977 -1.620558 0.510869 -1.861187 0.126327 0.505054 0.923150 -0.569508 -0.199902 -0.497166 1.459107 -1.150628 -0.062271 1.018686 0.682884 1.843175 1.741589 2.339798 -0.662815 -0.697553 -1.931310 -0.408202 -0.995907 -0.355789 -0.038883 0.636473 -1.365303 0.521007 1.021189 -2.164841 +PE-benchmarks/mobile-numeric-keypad-problem.cpp__getCount(char (*) [3], int) = 7.893447 1.371559 6.953677 -5.375957 -0.158966 3.126321 6.313527 -6.796192 1.148563 21.484302 4.900037 -3.669675 -6.947881 6.789863 -1.968042 -7.887248 8.365842 4.724523 1.451172 -4.465556 -3.095374 2.110721 -1.829926 -8.843863 7.025937 -5.507043 2.984446 8.832564 -2.616448 6.123136 -6.113128 -1.498534 0.922466 18.178561 -0.397706 0.658038 -1.757006 15.761939 -16.698561 15.724102 -15.635907 -16.332123 18.510656 2.692846 1.510674 -5.584661 -0.348645 5.436560 -2.752625 -12.005619 1.885475 -6.470209 6.965383 -10.742688 -0.572154 16.507036 -18.830991 -2.212699 1.718580 -9.460764 -14.299484 -2.383308 8.458615 3.017014 -10.282209 -11.458443 4.619698 3.188460 -5.161679 4.051801 -12.763558 -19.950374 8.919274 3.997937 -6.481537 3.598467 -0.700767 -13.193016 7.300272 0.974057 -7.334373 -7.287262 5.101587 -5.207264 5.730943 7.046505 15.561488 -23.657895 2.655322 -18.550682 14.899839 -9.482548 17.796312 14.123520 -6.270791 7.947412 6.394533 11.971059 0.092619 -3.107157 16.081799 5.661745 6.667201 -4.121494 8.343025 11.474464 -15.395309 -15.400456 -10.507108 -7.705767 3.557363 -4.653408 -15.540377 0.335062 -16.406589 2.045631 6.235480 -5.709391 -3.682461 18.055121 -24.386657 -3.383231 5.411387 -3.449821 13.193280 11.182815 2.023948 2.092592 2.336706 13.747208 -3.035895 -4.140624 -6.090694 8.838969 -8.651883 -6.609451 -3.541037 0.423122 6.344711 -15.656955 -17.179975 -21.589219 -4.517948 12.065271 -3.518923 12.050839 25.023063 -4.653467 -11.042918 6.895869 -6.430030 -0.259934 14.798236 4.379674 22.442781 -21.980419 12.008415 -5.194438 9.552299 8.317538 18.896714 -4.499582 -8.946031 9.375444 0.327612 -1.290342 15.232165 -3.669688 2.620101 -3.344862 2.721237 -1.378262 -3.011354 16.257269 -14.748823 13.670214 -9.037468 22.415295 -15.481863 -11.438772 5.518512 -16.374509 -8.201279 -12.342886 -3.715385 -1.276064 13.689909 -13.467947 -9.702327 -7.467212 -4.376383 3.692817 13.985237 -8.620983 -0.918035 -5.078152 -8.363312 15.407746 5.372092 -1.354019 -1.226742 -13.552367 0.798872 7.974271 -5.003977 -16.805127 -1.708055 -11.276990 -2.028825 0.531614 -0.589262 10.924702 -10.581179 -6.468116 3.622378 -3.278544 -0.410643 -7.915001 -16.774509 5.830470 -1.755529 -0.476736 5.420561 18.849646 15.028613 10.812406 0.230123 -4.357727 4.204802 -9.859790 -14.399480 8.651095 1.188772 9.717977 5.800276 9.361289 0.858927 3.662759 6.414942 -0.956301 6.017022 13.864227 6.254239 14.982797 -3.778704 2.139111 5.776723 -10.401834 9.530676 14.334950 -5.100122 -5.232915 6.748500 0.973438 -8.181465 -5.632566 -1.422933 -5.042257 -7.121320 7.201883 8.239647 -3.504528 -9.340626 25.079149 3.768531 -27.137615 12.362035 -0.035414 3.996669 13.894506 -7.438673 6.658006 6.679982 1.934495 8.457315 3.974523 14.350674 -15.779492 2.655527 -1.141935 10.323150 10.015114 -4.955606 -28.465041 2.379995 3.431792 17.596584 8.859337 19.025012 -8.295831 7.584727 -6.362818 -8.402598 -0.918732 -4.566506 9.827627 -2.426131 1.978006 -25.215902 6.065333 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__main = 0.320927 0.812949 0.466165 -0.360791 -1.223660 -0.273105 -1.006431 -0.299155 -0.096568 0.033907 -0.040759 -1.154941 -0.999158 0.961978 -1.244694 -1.297841 -0.948287 -0.070072 -0.378694 -1.253643 -0.044259 0.368511 0.131439 0.018063 0.240747 -0.429026 -0.149429 0.305807 1.882076 -0.571965 0.015224 0.145508 0.795093 1.022101 -0.226954 -0.280369 0.503477 1.505570 1.193767 -0.522957 -1.296319 -1.171771 0.807754 0.188973 0.007019 -1.222063 -0.581468 0.525319 -2.461588 1.508886 -0.049828 0.342717 -0.982085 -0.448745 0.284491 0.867087 -2.499301 2.867118 -0.152377 0.052672 -0.187381 -0.159568 -0.260579 -0.366305 1.356733 -0.615454 -0.234307 1.217519 -1.485890 0.839443 0.202800 -0.084988 1.881133 -0.218748 -0.630853 0.549676 0.304227 0.271429 0.433795 -2.180756 -0.493902 -0.132805 1.307338 1.044531 0.795118 0.678591 -0.404600 -1.427109 -0.369786 -1.035887 0.614483 -1.072875 0.593115 0.822188 -1.666087 0.770989 -0.029303 -1.434140 0.998866 0.833982 1.109917 -0.046669 0.769504 0.333633 -0.456411 0.157333 0.381278 0.055201 0.099131 -0.989004 -0.944637 0.537297 -2.113077 -0.140157 -0.500506 1.354423 0.276225 -0.027892 0.141566 -0.381389 -1.485753 -1.673804 0.104880 -0.125036 0.926909 0.547621 -0.210522 0.425223 -0.472519 1.246039 0.174265 -0.236277 -0.018650 0.106172 0.472142 -2.742845 -2.602953 -0.031110 0.136710 -0.186547 -1.068052 -0.388921 -0.431422 -0.553851 -0.216039 0.821703 1.682210 0.123970 -1.192081 1.364738 -0.380481 1.008218 2.051211 0.179275 1.575410 -0.541387 0.061522 0.116186 -0.047565 0.305176 -1.475803 -0.113226 -0.611157 -0.050676 0.897254 0.185929 -1.396480 -0.514832 -0.292483 -1.151889 -0.115851 -0.558645 -0.320562 1.049461 0.616162 1.551788 -0.268534 1.551228 -0.912128 -2.354961 0.445817 -0.760378 0.265648 0.834994 0.132839 -0.194729 0.578534 -1.482484 -0.663799 0.304944 -0.037381 -0.553244 0.377326 1.654300 0.097854 -0.067679 0.495722 1.008340 0.959142 -0.520029 0.823680 -1.555780 -0.059234 0.865587 0.391325 -2.138758 0.824503 -0.158191 -0.069832 0.872449 -0.230506 -0.248476 0.420190 -0.401920 -0.458655 -0.740645 1.158954 -0.163270 0.864913 0.410292 -1.179031 0.130621 0.044673 0.687648 1.759153 0.073229 0.271454 0.280563 0.490305 -1.084165 2.322574 0.265115 0.831970 -0.072108 0.338174 0.963631 0.328442 -0.092194 0.718487 0.963555 -1.292575 0.866243 0.284316 1.863753 -1.901236 0.345769 -0.791950 -0.139181 0.812641 2.294205 -1.388950 -0.424697 0.659475 0.862213 1.220479 -1.826036 -0.813410 -0.398724 -0.638243 0.875291 -0.099106 -0.861003 0.459280 0.916532 0.277222 -0.679567 1.614841 0.235923 -0.297674 -1.222301 -0.380046 -1.539825 1.320543 -1.456741 -0.766759 0.399423 0.584709 -0.748982 -0.853341 -0.332557 1.433468 -0.582934 0.679211 -0.361222 -0.021972 1.664222 0.958046 0.613138 -0.209107 -0.290936 -2.331161 0.185286 0.029960 -0.837247 0.409369 -0.076490 -1.120244 0.546251 1.233684 -1.796010 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__insertionSort(Node**) = 0.292960 0.587171 1.062890 -1.381807 -1.838672 0.095850 0.458721 -0.518270 0.226237 1.306966 0.774656 -0.973044 -0.859866 2.188685 -0.473577 -1.027404 -0.134966 -1.105199 -0.259369 -0.121878 0.131738 1.082244 -0.180804 0.309780 0.169067 -0.050433 -0.328328 0.877340 0.492378 -0.535682 -0.839985 -0.275326 0.021041 1.555680 -0.105101 -0.291301 0.196985 2.645936 -1.786271 1.980192 -1.876302 -1.502021 1.043578 0.120063 -0.093124 -2.036310 -1.199581 0.994782 -0.460409 -0.750384 1.265640 0.281873 -0.067437 -0.275829 0.953358 1.080435 -2.631292 1.096576 0.395358 -0.152581 -0.047236 -0.255893 -0.059910 0.539481 -0.974142 -0.915909 0.326814 0.236749 -0.714898 0.117172 -0.127093 -1.739296 1.779627 0.498706 -1.049353 0.502837 1.042121 -1.745290 1.619883 -1.774029 -1.613570 0.013579 0.070051 -0.676204 1.504520 0.010210 0.847901 -2.438931 0.399543 -2.142349 1.096825 -1.843473 0.577646 1.879216 -0.948482 0.523802 0.624488 0.696719 1.684434 0.155111 1.576383 1.192457 1.321343 0.512507 0.938637 1.220761 -1.197414 -0.867332 -1.590084 -1.924206 0.155318 -0.497145 -2.463797 0.303958 0.273756 -0.000627 0.579579 -0.392765 -0.029589 1.646591 -2.034622 -0.155710 0.749103 -0.238805 0.387134 1.944884 -0.663881 0.299957 -0.713148 1.843688 -0.681608 1.133909 -0.001744 0.584638 -1.130866 -1.251660 -1.518593 0.378306 0.365718 -0.935071 -1.444477 -2.421811 -0.017824 0.466458 -0.617757 1.434502 3.147211 -0.980315 -1.652529 1.939574 0.988341 -0.108462 1.191563 -0.021868 2.236741 -0.884321 -0.241559 -1.022118 -0.537897 -0.212772 2.018227 0.753321 -0.535589 0.627338 -0.046572 -2.461729 1.635808 -0.287138 -0.864315 -0.527483 0.334538 -1.011377 -0.959897 2.055855 -0.694372 1.487613 -0.386121 2.162143 -0.741730 -1.386308 0.842203 -1.306177 0.247849 -1.656691 -0.754649 0.698775 1.191252 -1.292763 -0.543507 -0.855937 -0.849355 -0.887270 0.284262 -1.229215 0.411982 0.256946 0.765949 1.578425 2.045018 0.383261 0.293696 -1.947409 0.665480 0.590885 -0.454971 -2.239574 0.304976 -1.052613 -0.087124 0.321379 -0.415454 0.453372 -0.871959 -1.010061 -0.058006 -0.956758 0.330172 0.109148 -2.159167 0.266011 -0.505879 1.396385 0.688885 1.044680 1.973409 1.612352 1.467181 0.233970 0.167441 -0.197242 -0.392689 0.443876 0.479273 -0.123336 0.846266 1.769635 0.868143 0.211034 1.454735 1.083528 -0.178855 1.531705 0.261989 2.443056 -0.056878 -0.229776 -0.264486 -0.120073 1.152218 2.852940 -0.297291 0.196799 0.909604 0.673019 -0.615937 -0.924124 -0.035573 -0.931115 -0.366598 1.213044 0.330044 -0.618844 -0.058026 1.721939 -0.112771 -2.363732 0.666113 -0.059509 0.711931 0.947533 -0.021048 0.185499 0.758699 -1.513246 1.547528 1.119052 1.019668 -1.200427 -1.079526 -0.062584 0.793734 1.064603 1.110227 -2.980175 0.343706 0.917386 1.635980 0.270102 1.803366 -1.253213 -0.798502 0.744806 -0.683412 -0.746107 -0.039672 0.837458 -1.098106 0.379060 -1.522860 -1.263035 +PE-benchmarks/insertion-sort-for-singly-linked-list.cpp__push(Node**, int) = 0.219849 0.245343 0.858384 -1.155050 -1.592788 0.260702 -0.038050 -0.621294 0.175193 0.255654 0.875653 -0.803868 -0.261432 1.815247 -0.426978 -0.812044 -0.172352 -0.501393 -0.207239 -0.091715 0.209273 0.737970 -0.262656 0.237398 -0.068102 -0.139139 -0.155147 0.743860 0.563689 -0.290724 -0.829641 -0.260905 -0.059205 1.298469 0.201693 -0.256633 0.293269 2.173192 -1.189859 1.363400 -1.272725 -0.932466 0.775784 0.097550 -0.267098 -1.615164 -1.590862 0.664326 -0.529384 -0.360403 1.147411 0.039019 0.149406 -0.006499 0.714672 0.826446 -1.944156 0.741231 0.384281 -0.107807 0.099523 -0.222853 -0.149106 0.428195 -0.821327 -0.665728 0.471286 0.535547 -0.257837 -0.052706 -0.077868 -1.674811 1.965594 0.348521 -0.786243 0.236659 0.920892 -1.641915 1.308921 -0.797626 -1.491291 0.051256 -0.119088 -0.620217 1.378519 -0.263837 0.763263 -1.943123 0.290855 -1.993491 0.742451 -1.503036 0.431689 1.408525 -1.309610 0.256025 0.668565 0.863509 1.359599 0.344626 1.270610 0.981611 0.637811 0.335123 1.040109 0.787582 -0.635703 -0.565426 -1.254099 -1.617879 0.048390 -0.579224 -2.601348 0.323424 0.178072 -0.130097 -0.117189 -0.170440 0.140197 1.513773 -1.128910 0.242346 0.572824 -0.194381 0.128440 1.645883 -0.588311 0.312859 -0.699881 1.457182 -0.692352 0.823023 -0.096858 0.450502 -0.895434 -1.308109 -1.528705 0.496154 0.487944 -0.801458 -1.258690 -1.686194 -0.030326 0.403611 -0.473655 1.037060 2.478214 -0.902870 -1.399635 1.540672 1.357552 -0.182667 1.243639 0.064012 1.948095 -0.656849 -0.233190 -1.002919 -0.671923 -0.411991 0.570798 0.532933 -0.214821 0.637677 -0.048328 -2.355064 2.439215 -0.420369 -0.861309 0.040205 0.350405 -0.746287 -0.955581 1.806141 0.112489 1.102624 -0.014971 1.810969 -0.560805 -1.177416 0.569812 -0.592455 0.196401 -1.132467 -0.400567 0.479888 1.097673 -0.821900 -0.535314 -0.540467 -0.693616 -0.656132 0.245320 -0.103534 0.396667 0.394679 0.615367 0.610736 1.940928 0.443801 0.314832 -1.443619 0.567176 0.756596 -0.465739 -1.733319 0.166934 -0.896425 0.016426 -0.201241 -0.224388 0.512942 -0.913322 -0.814540 -0.310013 -0.634896 0.469910 0.366930 -1.888273 0.328381 -0.527760 1.096335 0.529616 0.781750 1.789976 1.461394 1.362533 0.156668 0.201979 -0.068253 -0.223083 0.241256 0.535219 0.155942 0.604079 1.610762 0.668196 0.263613 1.030428 0.936872 0.379850 1.179292 0.447580 2.134079 0.235330 -0.145425 -0.407328 -0.022716 1.125434 2.632084 0.065170 0.384728 0.569432 0.726402 -0.518122 -1.362087 0.075092 -0.504234 -0.372878 0.947990 0.262148 -0.272687 -0.231071 1.407140 0.022422 -1.834199 0.482940 0.036483 0.538261 0.845980 -0.044264 0.179761 0.478589 -1.091716 1.407497 0.973590 0.840590 -1.009663 -0.965127 -0.032070 0.615506 0.717083 1.001470 -2.014217 0.856832 0.790283 1.287889 0.169166 1.143649 -1.158064 -0.648360 0.661689 -0.616830 -0.510151 0.166855 0.629285 -1.177936 0.316413 -1.125434 -1.325391 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__main = 0.334034 0.460191 0.295174 -0.425475 -0.880379 0.268156 -0.747542 -0.552623 0.010285 0.066526 0.403851 -0.561727 -0.498973 0.710091 -0.684593 -0.743003 -0.361600 -0.130046 -0.063166 -0.528530 0.049516 0.170245 -0.087015 -0.047636 -0.134302 -0.195888 -0.052406 0.110415 0.961436 -0.263270 -0.519303 0.002678 0.234595 0.738273 0.246240 -0.197399 0.278443 0.892599 0.322921 -0.045531 -1.047914 -0.677211 0.361383 0.183884 0.010626 -0.916183 -0.507621 0.314235 -1.149465 0.562909 0.345711 -0.236772 -0.142814 0.019991 0.165622 0.590567 -1.398926 1.450639 0.008974 0.019606 0.104372 -0.071492 0.103911 0.140748 0.633781 -0.408258 0.128358 0.866666 -0.624077 0.199528 -0.150922 -0.669145 1.281720 -0.005132 -0.559959 -0.026602 0.131590 -0.341659 0.382257 -1.155485 -0.622435 0.024437 0.464941 0.506456 0.516047 0.338547 0.047730 -1.023876 -0.177935 -1.050779 0.469645 -0.498912 0.494136 0.409499 -0.992812 -0.016511 0.273281 -0.530680 0.905934 0.433178 0.717182 0.096820 0.290711 -0.010159 0.055694 0.208443 0.125063 0.084876 -0.058617 -0.791856 -0.468900 0.272579 -1.484866 0.008619 -0.410151 0.664241 -0.105244 -0.125202 0.142704 0.098656 -0.820572 -0.929471 -0.062757 -0.048902 0.725245 0.656564 -0.126303 0.502291 -0.189111 0.803921 -0.162102 -0.110718 -0.138537 0.135708 0.090499 -1.703355 -1.692256 0.365227 0.451325 -0.410237 -0.759327 -0.538911 -0.132721 -0.227620 -0.186379 0.543695 1.142115 -0.268739 -0.856400 0.764853 0.044211 0.150579 1.454848 0.027915 1.268046 -0.592349 0.245665 -0.090484 -0.152343 -0.176153 -0.626938 -0.098228 -0.185208 0.084222 0.399069 -0.450576 -0.272725 -0.189931 -0.419135 -0.314716 -0.029063 -0.243113 -0.248713 0.576359 0.369884 0.621882 0.069442 1.057203 -0.716542 -1.300550 0.296794 -0.287882 0.028617 0.503647 -0.121038 0.095527 0.594359 -0.813271 -0.312084 0.074121 -0.093600 -0.340942 0.314392 0.914343 0.114956 0.199413 0.121304 0.505013 0.921659 -0.007767 0.458148 -0.707073 0.102354 0.641353 0.004902 -1.285577 0.141939 -0.600384 0.072995 0.451547 -0.175902 0.246226 -0.015580 -0.377872 -0.306965 -0.450568 0.897992 0.164967 0.295931 0.317421 -0.695165 0.150265 0.069095 0.583761 0.768783 0.624718 0.505790 -0.035577 0.313306 -0.514456 1.145786 0.029002 0.622030 0.047697 0.286954 0.624961 0.132377 0.094143 0.507169 0.478601 -0.255835 0.634962 0.080586 1.103366 -0.899306 0.374519 -0.508750 -0.257722 0.574975 1.594289 -0.820041 -0.081308 0.207596 0.385636 0.458049 -1.060994 -0.130005 -0.245652 -0.459510 0.509505 0.327673 -0.036640 -0.275866 0.793375 0.227913 -0.642332 0.968585 0.057784 -0.087857 -0.113194 -0.309026 -0.603432 0.353392 -0.757374 -0.014526 0.562713 0.604229 -0.533510 -0.637641 -0.182429 0.783383 -0.218043 0.329885 -0.469006 0.247477 0.986071 0.759021 0.452783 0.059565 -0.577594 -1.052076 0.166111 -0.156008 -0.294406 0.138377 0.240735 -0.691326 0.226126 0.396794 -0.794718 +PE-benchmarks/count-possible-ways-to-construct-buildings.cpp__countWays(int) = 0.881499 0.753205 1.023493 -2.526319 -0.611466 -0.110076 2.197461 -0.794225 0.211111 2.848407 1.288262 -1.273061 -2.097632 2.596416 -0.193622 -1.771336 1.493522 -1.376547 -0.495384 -0.201449 0.054006 1.114639 -0.054543 -1.486233 1.197116 -0.299187 -0.110460 1.999136 0.587070 -0.602292 -1.483708 -0.141200 0.513006 3.168559 -0.499803 -0.179007 -0.555540 3.293412 -3.864977 3.294896 -3.642376 -2.410963 3.638323 0.287031 -0.687828 -4.038082 -1.281158 1.252265 -0.209726 -2.286107 0.639802 -0.501816 0.614923 -2.224954 0.182657 3.831707 -4.084721 0.580849 0.788755 -0.664649 -1.420326 -0.504249 1.478157 0.294815 -1.775205 -2.183718 0.669154 -0.983104 -1.705473 0.555920 -2.011642 -3.282514 2.095381 1.154673 -1.081321 1.002417 -0.358774 -3.638551 1.817558 -1.403048 -1.137172 -0.866313 0.988606 -0.200213 1.534405 0.225131 1.721885 -4.362017 -0.698929 -3.218985 2.073837 -2.733579 2.533849 2.706769 -1.017504 1.414253 0.257937 0.652243 0.776468 -0.344336 2.859499 1.474049 2.674409 -0.815686 1.982888 2.242550 -2.540481 -2.573007 -1.782497 -1.981973 0.459828 -0.896089 -4.058148 0.471473 -2.281635 -1.394139 1.547530 -1.459464 -0.495548 3.131409 -3.172045 -0.555456 1.212221 -0.631912 1.466456 3.451512 0.121225 -0.201345 -0.462871 2.507520 0.224369 1.211535 -0.826801 1.443065 -1.710055 -2.797935 -0.247677 -0.315767 0.531906 -2.582615 -3.031968 -4.193681 -0.383755 0.703020 -0.940485 1.569245 4.606808 -0.814470 -2.949919 2.008506 0.956805 0.340831 1.983039 0.124631 4.683236 -3.564865 1.839285 -0.656491 1.155041 1.117074 4.313203 -0.635944 -1.916853 0.902016 -0.921456 -3.672538 2.243465 -0.153259 0.517474 0.384278 0.164444 -1.391241 -1.950649 3.422483 -1.758742 3.559815 -1.625785 3.682495 -2.489434 -2.290705 1.644324 -2.142722 -0.878848 -2.993388 -1.390298 0.612902 2.191090 -1.973999 -1.469840 -1.947225 -0.525653 -0.187809 2.417352 -3.446188 -0.096090 -1.056001 -0.556867 1.926546 1.449906 -0.956311 0.832923 -2.870039 0.801523 1.941802 -0.047738 -4.308519 0.207346 -2.037053 -0.488861 0.644663 -0.532392 1.673124 -1.287560 -1.725707 1.419840 -0.973263 -0.276573 -1.618523 -3.803995 0.747952 -0.968442 0.415058 0.746524 3.540950 2.709560 1.685625 -0.048534 -0.823875 0.647687 -1.465629 -2.977671 0.805949 -0.485940 0.547993 1.459562 2.094134 0.505070 0.509958 2.549729 0.773702 -0.263508 2.589763 1.476067 2.803796 0.533494 -0.701746 1.145797 -2.141804 1.756924 3.625673 0.171737 -1.242940 1.725019 0.724989 -1.506235 -1.747419 -0.725757 -1.196656 -1.860451 3.013752 0.660880 -1.137802 -0.832139 4.472490 0.290069 -4.960412 1.923179 -0.011732 1.073316 1.693863 -1.201166 1.064510 1.890594 -0.878098 1.463047 0.721258 2.443516 -2.218817 -0.994662 -0.096763 1.637600 2.165617 -0.417392 -5.931092 0.363006 0.950220 3.849001 1.510413 4.004305 -1.195437 1.011459 -0.717915 -0.266467 -0.300404 -1.305644 1.605901 -1.642128 -0.535224 -4.395108 1.066318 +PE-benchmarks/vertex-cover-problem.cpp__main = 0.434293 0.486175 0.402786 -0.192144 -0.646832 -0.249112 -0.672413 0.084048 0.057850 -0.323158 -0.292908 -0.690774 -0.898249 0.636780 -1.032784 -0.966276 -0.483915 -0.252847 -0.120363 -0.786638 -0.127612 0.215975 0.124055 0.099741 0.357865 -0.283845 -0.155540 0.219549 1.609190 -0.520409 -0.205314 0.194957 0.472633 0.749925 -0.275689 -0.386925 0.658958 1.273877 1.277721 -0.451497 -0.708370 -0.621397 0.415133 0.109969 -0.069163 -0.894056 -0.346722 0.271835 -2.282036 1.534474 0.136438 0.246518 -0.951088 -0.259136 0.387406 0.784532 -2.172797 2.385062 -0.234024 0.677602 0.196018 -0.362895 -0.402829 -0.676419 1.400435 -0.357312 -0.078347 0.888567 -1.462609 0.843935 0.069837 0.244613 1.394388 -0.013996 -0.523644 0.482779 0.447599 0.139111 0.136392 -2.045993 -0.302893 -0.065739 0.989272 1.026225 0.986969 0.353149 -0.707391 -0.933555 -0.383536 -0.660690 0.271319 -1.173562 0.479150 0.806154 -1.378434 0.661591 -0.151335 -1.286706 0.510813 0.677972 0.918202 0.076814 0.391646 0.045802 -0.467366 -0.121396 0.488295 0.211798 0.368081 -0.349603 -1.213211 0.620333 -1.575517 -0.301677 -0.478958 1.343609 0.285765 0.233756 -0.132303 -0.798036 -1.023377 -1.449213 -0.117005 -0.138534 0.851486 0.411631 -0.203675 0.224437 -0.478477 1.099947 0.310895 -0.223262 -0.347315 -0.105201 0.498341 -2.290544 -2.124418 -0.443443 0.095133 0.063318 -1.051129 -0.121437 -0.432604 -0.791809 -0.003718 0.679562 1.081529 0.439036 -0.576741 1.095071 -0.590966 1.375495 1.771917 0.129992 0.805985 -0.298849 0.205111 0.219632 0.236703 -0.148323 -1.891077 -0.130127 -0.340371 -0.300829 0.849169 0.666831 -1.437604 -0.316775 -0.087895 -1.092621 -0.414239 -0.461862 -0.389403 1.095222 0.486675 1.094232 -0.082089 1.192132 -0.560863 -1.972935 0.354329 -0.307420 0.645348 0.614631 0.126010 -0.183022 0.202286 -1.288842 -0.712389 0.458450 0.369300 -0.281581 0.124911 1.765905 -0.122350 -0.230874 0.565440 0.772690 0.625124 -0.564139 0.986295 -1.262157 -0.111955 0.479977 0.078512 -1.571581 1.078308 0.256287 -0.079016 0.829171 -0.042994 -0.608873 0.317306 -0.621285 -0.309793 -0.421622 1.011586 -0.035104 0.699658 0.212040 -0.860850 -0.380258 0.203812 0.249894 1.388984 -0.378578 0.051436 -0.039979 0.412161 -0.723854 1.987627 0.130220 0.602581 0.026799 0.006366 0.517637 0.216337 -0.433908 0.070754 0.873786 -1.248888 0.395942 0.708150 1.230822 -1.306342 0.095738 -0.560425 -0.400922 0.550358 1.522202 -1.351746 -0.105443 0.580495 0.972960 1.310124 -1.523325 -0.764518 -0.359500 -0.586749 0.507556 -0.598243 -0.879765 0.592228 0.610758 0.113742 -0.305874 1.038399 0.228120 -0.375412 -1.241142 -0.074397 -1.441844 1.065493 -1.457432 -0.527801 -0.113805 0.370252 -0.099748 -0.619683 -0.321189 0.867781 -0.764427 0.398309 0.273008 -0.237398 1.261302 0.680640 0.987328 -0.517820 0.263970 -1.989920 -0.127277 -0.130577 -0.744359 0.291558 -0.002414 -0.835529 0.361362 1.257978 -1.571557 +PE-benchmarks/vertex-cover-problem.cpp__Graph::printVertexCover() = 1.857280 0.531240 3.205499 -3.761515 -2.026570 2.109108 0.063965 -3.171319 0.881674 8.304958 2.377021 -2.489911 -4.417860 5.315756 -1.211709 -4.741097 2.286490 0.132806 0.689810 -2.486643 -1.041262 1.660841 -0.872485 -2.654874 2.292976 -2.573149 0.600606 3.162786 1.375092 0.719597 -3.100786 -0.889418 -0.337827 8.297279 0.233939 1.121723 -0.046413 8.928295 -5.340381 7.937332 -7.913983 -8.586228 7.281726 1.199042 0.156884 -1.729886 0.152615 3.031462 -4.058994 -3.641702 2.121233 -2.438620 1.877111 -3.646853 0.681922 5.991143 -9.715323 2.262622 0.356447 -3.091793 -4.898154 -1.742255 3.023015 1.907865 -3.605100 -4.427352 2.099481 2.392936 -4.537404 0.823603 -4.137666 -8.010755 5.038615 2.426053 -3.405002 1.610558 0.802302 -4.632839 3.728482 -2.775060 -5.076022 -2.272656 2.310119 -3.217619 4.151683 3.813185 6.302793 -11.271984 1.622901 -9.324339 6.527666 -4.251947 7.421336 6.954080 -4.017527 3.142284 3.280535 4.813286 1.995062 -1.057902 7.551642 1.982954 2.526159 -0.078579 4.221521 4.591544 -6.085723 -5.197591 -4.433653 -5.188150 0.703333 -2.171010 -6.690537 0.146094 -6.341915 1.838194 2.425305 -0.943563 -2.621587 5.293449 -12.042121 -3.816905 1.276598 -1.429195 6.848070 5.171741 0.015724 1.846696 1.057800 7.289634 -2.571204 -1.216960 -2.726433 3.787582 -1.784037 -2.001978 -4.937450 0.922141 3.321617 -6.450554 -8.043228 -9.790027 -2.635851 4.497596 -1.659575 8.399113 12.653625 -2.793584 -5.603910 5.209889 -4.072018 1.521325 8.248095 1.570500 9.846111 -8.460896 4.040731 -2.450531 2.566962 2.428451 6.908161 -0.692869 -3.232100 3.289828 0.884134 1.032971 3.799529 -1.514663 -0.761669 -5.776368 1.282999 -2.677432 -2.733612 7.263127 -6.847671 5.960414 -2.589057 10.663037 -6.980782 -6.545891 3.539089 -7.667857 -2.756234 -4.805037 -2.543511 -1.050223 5.990458 -6.930171 -4.187402 -3.314881 -1.491137 -0.246466 4.544256 -1.413731 0.274067 -0.983874 -1.925857 8.444598 4.834958 0.139065 -0.473614 -7.245783 0.491610 4.468661 -1.799670 -6.859775 0.139632 -5.348112 -0.863477 2.534365 -0.695649 4.129391 -4.659024 -3.351237 -0.018528 -1.368579 2.269699 -1.862965 -8.793100 2.665556 -0.482933 0.283629 3.811488 7.747130 6.667977 5.689583 1.975557 -1.237355 1.399139 -3.577828 -2.902835 2.459292 1.602123 4.239289 3.143487 5.513770 1.941672 2.053665 4.545563 1.649983 0.593974 6.739013 1.456540 8.643007 -2.526866 1.128728 0.978511 -3.758736 4.585786 9.151627 -4.699071 -1.194696 3.970813 1.348284 -2.171556 -4.124628 -0.370461 -3.528694 -1.729710 2.966319 3.008836 -1.007896 -3.895743 10.753965 1.192723 -11.864086 6.416590 -0.211802 2.289232 5.244810 -2.951198 0.822861 3.226940 -3.542282 4.649286 3.430756 5.808011 -6.565209 0.955952 -0.898538 5.624252 3.822151 -0.489656 -10.001221 1.861828 2.403416 7.717439 5.192452 6.418356 -4.116237 -0.155116 -1.691840 -5.137694 -1.254504 -1.166006 4.577126 -1.368087 1.340654 -9.092075 -0.766316 +PE-benchmarks/largest-sum-contiguous-subarray.cpp__main = 0.368318 0.136734 0.110180 -0.665503 -0.589822 0.177312 -0.163357 -0.256207 0.055209 -0.286914 0.466834 -0.529722 -0.416987 0.860590 -0.154767 -0.638935 0.112448 -0.615906 -0.133917 0.224237 -0.044273 0.250880 -0.140152 -0.032571 0.067453 0.189717 -0.268786 0.297085 0.895475 -0.584110 -0.885662 0.050239 -0.027996 0.816834 0.144667 -0.446221 0.462691 1.261937 -0.152406 0.387951 -0.514543 -0.159993 0.464155 0.026929 -0.440563 -0.737001 -0.634907 0.451172 -0.813192 0.018992 0.694360 -0.125781 -0.184371 -0.084371 0.252047 0.941850 -1.443125 0.999635 0.290481 0.715009 0.264947 -0.300459 0.065040 -0.087808 0.123654 -0.466984 0.342675 0.088190 -0.596723 -0.077228 -0.437736 -0.842713 1.342827 0.354628 -0.466741 0.100589 0.160989 -0.904335 0.513435 -0.788718 -0.730447 0.137324 0.094960 0.083650 1.105170 -0.256495 -0.097745 -1.092676 -0.079739 -1.168084 0.187098 -1.006433 0.434321 0.932727 -0.991932 0.000995 0.064820 -0.038975 0.536762 0.287216 0.881846 0.194026 0.112549 -0.155394 0.363215 0.186622 -0.133170 -0.036515 -0.178019 -0.684824 -0.383196 0.144961 -1.538710 0.239016 -0.420660 0.327104 0.095316 0.095363 -0.119425 0.155397 -0.362772 -0.510523 -0.099628 -0.136017 0.627692 1.216383 -0.288555 0.179425 -0.524824 0.908330 0.093450 0.325464 -0.361227 0.157671 -0.085090 -1.226525 -1.093398 0.072249 0.501067 -0.466426 -0.986066 -0.800604 0.036208 -0.515582 -0.300763 0.805399 1.240531 -0.270845 -0.572118 1.024359 0.333835 0.602673 1.160985 -0.168150 1.261822 -0.594664 0.269172 -0.012956 -0.095399 -0.569108 -0.830183 -0.028414 -0.142333 -0.096715 0.045422 -0.616495 0.721328 0.214291 -0.341396 0.205036 -0.133999 -0.376777 -0.997950 1.185259 0.452916 0.579183 0.477750 1.167612 -0.319907 -0.891496 0.655093 0.475895 0.276611 -0.418647 -0.535494 0.224821 0.422819 -0.528602 -0.366758 -0.015711 0.251369 -0.471541 0.272824 1.030547 0.086347 0.075483 0.332477 0.088275 1.010609 -0.192926 0.583261 -0.979603 0.250555 0.566267 -0.481417 -0.835417 0.303044 -0.470679 -0.007310 0.533994 -0.195559 0.140042 -0.468686 -0.801307 0.060486 -0.002084 0.722069 0.245125 -0.826011 0.221627 -0.424797 -0.069521 0.488424 0.613620 0.751902 0.563460 0.507435 -0.221916 0.186482 0.146685 0.070194 -0.271462 -0.042655 0.548611 0.361078 0.471878 0.283390 0.023714 0.329505 0.415656 -0.225240 0.643602 0.713329 1.120111 0.201138 -0.187474 -0.149259 -0.570139 0.698149 1.446992 -0.800367 0.053811 0.363629 0.574910 0.036856 -1.077214 -0.143701 -0.364582 -0.492494 0.336675 -0.400863 -0.068881 -0.134085 0.953234 -0.121058 -0.975511 0.478234 0.071842 0.217488 0.217861 -0.010681 -0.060768 0.314313 -1.016657 0.544804 0.440620 0.611691 -0.163228 -0.305533 -0.086820 0.452746 -0.393839 0.337793 -0.424219 0.361322 0.593929 0.827015 0.811810 0.045971 -0.303010 -0.545775 0.083944 -0.213619 -0.122066 -0.176375 0.504184 -0.757197 0.007756 -0.295158 -0.621547 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__main = 0.423021 0.156432 0.199468 -0.713942 -0.631460 0.115553 -0.089524 -0.239997 0.079699 -0.145409 0.423173 -0.586770 -0.363089 1.030561 -0.249609 -0.616937 0.102875 -0.675305 -0.153198 0.195931 -0.022132 0.340297 -0.127770 -0.032715 0.119212 0.161264 -0.243400 0.328467 0.805863 -0.574769 -0.862484 0.029486 0.011532 0.886304 0.087703 -0.459894 0.439185 1.382100 -0.252421 0.542175 -0.621905 -0.263149 0.530005 0.027773 -0.387045 -0.878672 -0.724935 0.469576 -0.717557 0.004250 0.666261 -0.068310 -0.251277 -0.153151 0.294345 0.952693 -1.561701 1.011281 0.287295 0.694222 0.208238 -0.337234 0.064117 -0.104169 0.000590 -0.504989 0.341578 0.128186 -0.663373 0.025150 -0.414136 -0.868085 1.339421 0.365889 -0.501332 0.161902 0.224506 -1.007631 0.587732 -0.929233 -0.747047 0.112818 0.123558 0.031710 1.142669 -0.236909 -0.026055 -1.202676 0.003575 -1.216707 0.226112 -1.146838 0.450472 1.044572 -1.016596 0.104657 0.058208 0.110854 0.615854 0.347974 0.946864 0.355139 0.206188 -0.140623 0.416434 0.288806 -0.181236 -0.117885 -0.237560 -0.730104 -0.388026 0.100107 -1.661799 0.224485 -0.376310 0.287622 0.109298 0.089419 -0.130730 0.287372 -0.576416 -0.536701 -0.014819 -0.150907 0.564298 1.227835 -0.316716 0.151756 -0.601152 0.984883 0.100914 0.356498 -0.337078 0.172161 -0.289553 -1.266266 -1.107908 0.019303 0.438767 -0.493358 -1.066332 -0.959855 -0.010612 -0.426375 -0.317621 0.891195 1.357721 -0.246393 -0.652981 1.091701 0.421624 0.562682 1.195514 -0.144960 1.317685 -0.619567 0.254830 -0.050084 -0.059742 -0.529013 -0.720774 -0.004425 -0.195929 -0.063828 0.019080 -0.801691 0.852359 0.159399 -0.316021 0.086485 -0.121885 -0.441405 -0.990861 1.328327 0.301663 0.717015 0.311205 1.260851 -0.355905 -0.935527 0.661309 0.234041 0.314370 -0.529560 -0.468956 0.191499 0.528840 -0.621039 -0.431151 0.002536 0.150353 -0.464975 0.303746 0.825790 0.082562 0.030761 0.370505 0.247652 1.027812 -0.227559 0.629526 -1.067228 0.263107 0.608568 -0.451264 -1.010193 0.363637 -0.466753 -0.032114 0.422446 -0.186666 0.096715 -0.535838 -0.839859 0.065336 -0.067787 0.660394 0.177433 -0.902156 0.227477 -0.501005 0.047658 0.475032 0.645194 0.904449 0.549812 0.508783 -0.236251 0.185818 0.033938 0.028377 -0.149695 0.020013 0.435620 0.362352 0.629598 0.312524 0.004239 0.373833 0.490076 -0.267959 0.691843 0.738038 1.211823 0.141425 -0.203258 -0.156066 -0.556129 0.750727 1.576385 -0.722705 0.033813 0.421128 0.589507 -0.004395 -1.061298 -0.208247 -0.383089 -0.524420 0.372312 -0.406097 -0.183508 -0.049935 1.026037 -0.102809 -1.074811 0.478854 0.080874 0.233844 0.222672 -0.022611 -0.049249 0.425392 -1.017917 0.586031 0.413857 0.621945 -0.213881 -0.423370 -0.093643 0.484152 -0.244223 0.384748 -0.596708 0.437576 0.651754 0.902001 0.760966 0.166796 -0.313137 -0.564194 0.090767 -0.215409 -0.209474 -0.134088 0.531735 -0.804789 0.028975 -0.376975 -0.707757 +PE-benchmarks/sorted-array-number-x-find-pair-array-whose-sum-closest-x.cpp__printClosest(int*, int, int) = 2.933765 1.096332 2.595371 -2.783882 -2.028141 1.546727 -0.031991 -4.093025 0.302543 8.001909 2.561806 -2.414177 -0.851207 4.633960 -2.415794 -2.432971 1.454677 2.188403 0.195534 -2.111472 -0.197506 1.388157 -1.039436 -2.664278 1.039156 -1.783797 1.713891 1.836593 -0.631563 1.957800 -2.825146 -1.028100 0.634081 6.520131 0.849635 0.414507 -1.354747 5.369883 -5.264219 5.592047 -7.822930 -6.281696 5.493467 1.299711 1.732425 -4.365652 -2.115607 2.167991 0.332162 -4.000079 0.377316 -2.645299 2.108799 -3.096686 -0.171778 4.386665 -6.235883 0.205689 1.109450 -3.913271 -4.719387 -0.416980 4.370261 2.327154 -4.530647 -4.118094 1.677441 3.106385 -1.685602 1.316894 -4.022214 -8.378088 2.967466 0.764322 -3.312521 0.367788 -0.579292 -5.528916 3.307434 -1.010972 -3.348830 -1.937835 1.772905 -2.264656 1.160409 3.002500 6.382400 -8.915513 2.306281 -7.617240 4.932473 -2.856250 5.922696 4.467092 -3.256055 1.538254 2.722219 5.612911 3.326912 0.431949 5.344593 3.211957 2.278590 -1.572990 3.831007 4.653608 -4.391673 -4.700098 -3.558477 -4.776385 1.290329 -1.929113 -7.471134 0.455916 -5.011168 0.200036 0.084421 -2.099934 -0.330722 7.193148 -10.185242 -2.678943 1.973047 -0.931967 3.983759 4.327604 0.323435 1.828493 0.160625 4.660674 -1.783377 -1.709297 -1.030769 3.087653 -4.938426 -3.509201 -3.347330 1.729205 2.606190 -5.736355 -5.895198 -8.778174 -1.752676 4.366335 -1.620161 4.629902 9.100051 -2.547574 -5.659004 2.602695 -0.674407 -2.731699 6.747274 1.203826 9.627953 -7.813883 3.987420 -1.969760 2.215284 2.393346 5.482595 -1.502776 -3.011847 3.450415 -0.838476 -4.509496 6.258827 -1.585165 -0.025414 -2.136699 1.958143 -0.716914 -0.402931 5.235818 -6.262996 5.061597 -4.033748 7.746801 -6.201939 -4.057991 1.722080 -8.060725 -3.133799 -2.433140 -0.667230 -1.054328 7.066552 -4.936506 -2.782512 -1.836102 -3.228086 0.631073 5.144996 -3.574039 0.077981 -0.775277 -2.661999 6.075876 3.185416 0.075515 0.115786 -4.053026 0.655842 4.527561 -0.793259 -7.270867 -1.551250 -6.155178 -0.517813 -1.588324 -0.613172 4.408262 -4.066904 -2.111387 0.046902 -1.956657 1.043023 -2.405119 -4.574018 2.543786 -3.004089 2.191518 0.968025 7.098000 5.103151 5.586994 1.471703 -1.798624 1.770381 -5.030876 -3.201488 3.430027 2.130688 1.473165 2.415616 4.601885 0.506331 2.061384 3.264346 -0.098640 2.563160 5.753230 0.730954 6.226987 -2.895935 2.097259 0.545512 -2.972676 3.666947 7.918155 -0.966146 -1.540848 1.722620 -0.404719 -3.360389 -2.726395 -0.233144 -1.269324 -3.189312 2.250644 4.407665 -0.383153 -3.858677 8.801589 1.866300 -9.354016 5.097016 -0.500789 1.301809 5.557325 -3.234682 2.271085 1.979779 1.031608 2.873518 2.894227 5.047634 -6.291436 -1.425026 -0.512717 4.718009 4.917019 -1.000987 -10.353081 3.894941 2.676202 6.663975 1.536581 6.480028 -4.721096 1.945816 -0.922495 -2.579354 -0.658119 -1.003208 3.837569 -1.110210 0.120707 -8.054796 0.754412 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__main = -0.110868 -1.037000 0.911909 -1.182772 -1.110182 0.899712 -1.397230 -0.462189 0.547330 -1.938438 0.703632 -0.617370 -0.797012 1.306003 -0.060160 -1.993289 0.173700 0.930011 0.264707 -0.041507 -0.010321 0.039427 -0.365585 0.194092 -0.029204 -0.734488 0.050641 1.372444 2.288015 0.252515 -1.402342 -0.141627 -0.840282 1.941149 0.448116 0.351574 1.392439 3.111047 0.627196 1.642492 -0.321797 -0.531508 0.776472 0.149341 -1.246954 -0.067378 -1.841659 0.268127 -3.975258 0.739760 1.865651 -0.472097 0.364908 0.367229 1.112154 1.321110 -2.653353 1.037128 -0.070513 0.839959 0.586991 -0.842545 -0.882281 0.052481 -0.402720 -0.601924 0.943513 1.147927 -0.900126 -0.084909 -0.331204 -1.773235 3.818676 0.922343 -1.160872 0.237708 1.847775 -1.454751 0.851034 0.308931 -2.143267 -0.104504 -0.250347 -0.987374 3.126796 -0.684417 0.658962 -2.232937 0.233303 -2.713932 0.819789 -2.235037 1.035742 2.190747 -3.099169 0.412979 0.965773 1.242465 0.223179 0.082281 1.782409 0.593524 -0.874944 0.002927 1.642373 -0.449076 -0.206239 -0.539511 -0.806195 -1.321639 -0.997394 -1.361369 -4.058564 -0.121050 -0.750652 1.675785 -0.496954 1.000236 -0.673305 0.230865 -0.892119 0.515962 -0.191455 -0.419722 1.134303 1.730891 -0.858937 0.512385 -0.285164 2.308528 -0.907997 -0.029994 -1.234114 0.333923 0.381021 -0.670905 -2.835698 0.162964 1.284928 -0.571603 -2.440041 -0.813670 -0.920909 0.502635 0.166330 2.294651 2.987409 -0.443073 -0.968578 1.913069 -0.285091 1.853189 2.781639 0.516703 1.636201 -0.829422 0.199076 -1.650604 -0.384905 -1.149434 -2.286169 0.303257 0.139341 0.896556 0.366438 0.316321 3.159617 -0.817167 -0.986923 -1.154508 -0.243538 -1.051996 -1.814090 3.181943 0.013953 1.180698 0.962718 2.710502 -0.672582 -2.270322 0.771822 0.262435 0.513776 -1.168691 -0.619036 -0.055439 0.845701 -1.586520 -1.487790 -0.437048 0.398710 -0.202325 0.163023 3.856614 0.023477 0.287663 0.933732 1.044113 2.657788 0.570270 0.295201 -2.053700 0.533488 1.164724 -1.680233 -0.555220 1.031246 -0.305674 0.038268 0.061823 0.249262 0.158492 -1.869293 -1.520210 -1.299861 0.200773 1.568659 1.156847 -3.973578 0.600127 0.373728 -0.476606 1.871147 0.456813 2.750239 1.059004 1.581620 -0.203029 0.477338 0.462868 0.261039 -0.255429 0.735617 1.841549 0.181896 1.722707 0.660290 -0.121380 0.203574 1.873485 0.858556 0.937347 1.922178 2.689874 1.427968 -0.353863 -0.533243 -0.672600 1.491256 3.260328 -1.447864 1.824003 0.972534 2.134452 0.432658 -3.718368 -0.240990 -0.769654 -0.330769 0.804419 -1.192066 -0.330684 -0.405838 1.811723 0.278193 -1.995888 0.434824 0.228882 0.193944 0.832331 -0.099378 -0.624833 0.466609 -2.544886 2.201913 0.496117 0.732942 -0.623641 0.450083 -0.212136 0.324889 -0.137988 0.947122 0.617767 0.798350 0.598882 1.792885 2.238144 -0.014107 -0.477502 -1.274768 0.059083 -2.063501 -0.562968 -0.125317 0.561980 -1.257637 0.522727 -0.969427 -3.069159 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__min(double, double) = 0.099722 0.337092 0.432659 -0.836920 -0.393084 0.275252 0.347644 0.299894 0.155206 1.043188 -0.128061 0.292665 -0.488158 1.160075 -0.445186 -0.262578 0.450969 -0.926128 -0.164369 0.084681 -0.291641 0.934813 0.024839 -0.450835 0.966355 -0.239493 -0.452552 0.458224 -0.452936 -0.468312 -0.214663 -0.061298 -0.430204 0.822695 -0.721787 0.132338 0.519996 0.864021 -1.043860 1.312474 -1.097075 -0.686477 0.669463 -0.097143 0.170422 -0.811772 -0.099368 0.037173 0.100668 -0.418464 0.125257 -0.471754 -0.446781 -0.147720 0.803131 0.689831 -1.610574 0.211008 0.086901 0.375237 -0.149392 -0.349423 0.213403 -0.327271 -0.396813 -0.793872 -0.219944 0.091492 -0.650049 0.011413 -0.250376 -0.338366 0.172991 0.376830 -0.173340 0.407638 0.073830 -0.995731 0.355662 -1.470861 -0.282581 -0.205798 0.556419 -0.396346 0.640950 0.149371 0.228020 -0.787287 0.238345 -0.402580 0.188095 -0.682937 0.638444 0.883011 0.118836 0.146202 0.238452 0.257225 0.639201 0.367350 0.848587 0.449305 0.685410 -0.293037 0.463072 0.448432 -0.862660 -0.529615 -0.198778 -0.536693 -0.023685 -0.245249 -0.647678 -0.067573 -0.154193 -0.081169 0.440444 -0.024366 -0.224985 0.610705 -1.353305 -0.280845 0.293561 -0.093064 0.115552 0.357099 -0.016208 -0.366328 0.196756 0.396919 -0.206444 0.288118 -0.360025 0.364004 -0.571945 -0.464902 -0.190956 -0.801489 -0.443906 -0.787119 -0.732106 -1.225741 -0.105942 0.107297 -0.098970 0.936752 1.582329 -0.190155 -0.597781 0.428770 0.207972 0.286957 0.759021 0.145202 0.621745 -0.559806 0.053752 -0.112559 0.107079 0.281653 0.868266 -0.143702 -0.094527 0.092629 0.111826 -0.735985 0.586249 0.054800 0.270398 -0.451180 -0.000587 -0.528964 -0.359238 0.816158 -0.718110 1.031593 -0.312336 1.057003 -0.682864 -0.574557 0.570913 -0.861252 0.236321 -1.015892 -0.678881 0.187466 0.138107 -0.565288 -0.320513 -0.410056 -0.074421 -0.013451 0.222856 -0.953036 0.218165 -0.529730 -0.017113 1.003704 0.439054 -0.315853 0.586025 -0.642529 0.574197 0.545405 -0.083571 -1.165486 0.340427 -0.354066 -0.169577 0.605751 -0.182705 -0.000386 -0.172021 -0.433759 0.476681 -0.465363 -0.338399 -0.040718 -0.830499 -0.184386 -0.648727 0.161960 0.300207 0.425792 0.589956 0.123075 -0.157531 -0.015236 -0.323078 -0.543078 -0.129256 0.310016 -0.248144 0.090073 0.528758 0.605232 0.480906 0.207764 0.298923 0.471330 -0.149895 0.767382 0.288279 0.604996 -0.050338 -0.113949 0.079113 -0.300050 0.566781 0.512290 -0.586434 0.088203 0.448553 0.365761 -0.092874 -0.078938 -0.180449 -0.563917 -0.530212 0.458968 -0.183530 -0.153868 0.166250 1.127618 0.022093 -0.934953 0.258315 -0.574766 0.351391 0.129048 0.232357 -0.015807 0.521342 -0.705989 0.280459 0.086138 0.573721 -0.329744 -0.327309 -0.025152 0.206893 0.673300 0.419724 -1.456352 -0.015424 0.000000 0.559665 0.533916 0.844913 0.177923 -0.266008 -0.318169 -0.343552 -0.558219 -0.197471 0.216273 -0.157971 0.114194 -1.219836 0.104963 +PE-benchmarks/minimum-cost-polygon-triangulation.cpp__mTCDP(Point*, int) = 3.978155 1.268663 2.505616 -4.369532 -0.990649 2.117673 2.022933 -3.320675 0.281457 12.171390 2.479390 -2.084852 -2.790012 5.810560 -1.576477 -4.359939 3.872885 2.244086 0.190506 -2.330281 -2.124571 2.291361 -0.848330 -5.836217 4.315076 -3.724211 0.332447 4.218391 -2.163561 2.554050 -3.048956 -0.968265 0.108387 9.920174 -1.018370 0.635334 -0.636165 8.053992 -10.103468 9.957581 -9.330274 -8.757504 10.283184 1.536892 1.408521 -3.839615 -1.440159 2.072460 0.826358 -6.490046 0.220381 -4.263660 2.600465 -5.200064 0.809786 8.720352 -9.709973 -1.106742 1.051272 -4.964056 -7.216521 -1.299704 4.567656 1.573892 -6.743345 -7.255647 1.346152 3.227680 -2.471406 1.156257 -7.097127 -11.114251 4.355790 3.005479 -3.140057 1.783769 -1.431144 -7.817385 3.626761 -1.001795 -3.876299 -3.656629 3.784826 -2.159936 2.313850 4.877303 9.486212 -12.438652 2.182378 -9.965825 7.244601 -4.593266 9.960231 7.698921 -2.129654 3.229602 3.631764 6.569996 2.121063 0.048752 8.941818 3.051874 3.623187 -2.795041 4.877172 6.901615 -8.495730 -8.366387 -4.384370 -4.433153 2.067624 -2.328849 -8.457567 0.634626 -8.521803 -0.187229 2.600132 -2.561314 -1.992115 10.145774 -13.442428 -3.937556 3.112362 -1.923490 6.575544 5.341811 1.415062 0.401232 1.292691 6.126283 -1.258557 -2.187309 -3.363348 5.164578 -6.205189 -3.819385 -2.252864 -0.211053 2.552154 -10.008555 -8.860447 -11.923138 -2.295723 7.185929 -2.468326 7.874088 14.535013 -3.374013 -5.957429 3.528244 -2.205437 -0.949140 8.662406 2.316945 13.313925 -12.004242 6.452530 -2.083996 4.581274 4.680030 10.395847 -2.853880 -4.933637 4.858112 0.059852 -2.624635 9.040012 -2.102504 1.726397 -2.295223 1.919589 -0.444632 -1.379933 8.499638 -8.956481 8.271410 -4.806433 12.155525 -8.898833 -5.699624 4.156273 -9.279373 -4.929484 -6.779825 -1.766042 -0.789865 7.504265 -6.579923 -4.789254 -3.427458 -3.282685 1.547647 7.582168 -5.284342 0.110715 -3.109465 -5.056458 9.186094 3.628105 -0.744711 0.389548 -7.051419 1.826288 5.244255 -2.867224 -10.070467 -1.246623 -6.309436 -1.084136 -0.105280 -0.785707 5.549349 -5.568445 -3.052244 1.956308 -2.199995 -0.258399 -3.974862 -7.379685 3.245910 -2.561659 0.908415 2.469291 10.586167 7.693247 6.137371 -0.045527 -2.355764 1.155467 -6.236103 -7.004172 5.596483 0.373024 4.072102 4.253211 6.181798 0.313755 3.016028 4.890059 -0.424026 3.646354 7.766534 2.275936 8.374206 -1.886392 1.308367 2.513605 -6.018106 5.856679 9.429582 -2.879191 -3.646133 3.807235 -0.341193 -4.958349 -2.493950 -0.497693 -2.515679 -5.587216 4.535700 4.597491 -0.731318 -5.219454 14.245043 2.344795 -14.453457 6.800564 -0.866725 2.509526 7.519630 -4.085370 4.007706 3.924404 1.374629 3.565431 3.058952 8.079804 -8.950433 0.451440 -0.583976 5.313024 6.487129 -2.191700 -15.605310 2.752454 2.892516 9.473099 3.875143 10.310465 -4.434934 3.686414 -3.048964 -3.566563 -1.013599 -2.857838 4.418246 -2.358645 1.929513 -13.416270 3.596662 +PE-benchmarks/find-common-elements-three-sorted-arrays.cpp__main = 0.884814 0.318987 0.458213 -1.187302 -1.398738 0.532828 -0.998465 -0.633127 0.266126 -0.189024 0.777506 -1.036990 -0.489225 1.728889 -0.696909 -1.249454 -0.072010 -1.018455 -0.084973 -0.034356 -0.017383 0.437456 -0.302544 0.144039 -0.115560 0.061427 -0.302219 0.373611 1.744567 -0.788317 -1.750163 0.075679 -0.182633 1.608786 0.370661 -0.998793 1.051335 2.524551 0.024989 0.472839 -1.008640 -0.650777 0.533582 0.215004 -0.590868 -0.963025 -1.197372 0.718492 -1.737038 0.544441 1.427959 -0.285667 -0.396413 0.138888 0.634277 1.341513 -2.850470 2.075881 0.261638 1.347139 0.474610 -0.643419 0.273059 0.143837 0.235962 -0.783586 0.927147 0.886739 -1.187369 0.013593 -0.641284 -1.751025 2.366556 0.664968 -1.049293 0.052277 0.717031 -1.710841 1.052124 -1.674888 -1.623634 0.366337 0.174404 -0.262338 2.202850 -0.339129 0.059262 -2.148223 0.365584 -2.341453 0.390893 -1.871485 0.849030 1.807711 -2.143680 -0.130579 0.313124 0.587264 1.418816 0.429095 1.763619 0.603880 0.086197 -0.206571 0.690019 0.405912 -0.111812 0.155068 -0.364942 -1.465168 -0.991967 0.087568 -3.068287 0.331706 -0.694635 0.724988 -0.042772 0.210765 -0.401973 0.446328 -1.331688 -1.533326 -0.341008 -0.223822 1.240407 2.020731 -0.726133 0.683836 -0.844391 1.982432 -0.051274 0.199314 -0.629081 0.141513 -0.444286 -1.985356 -2.828876 0.402317 1.163689 -0.868434 -2.017681 -1.510851 -0.186011 -0.823784 -0.389616 2.198267 2.522258 -0.425762 -1.200673 1.992809 0.190799 0.905236 2.834045 -0.265628 2.344564 -1.122586 0.523945 -0.307319 -0.121849 -1.276345 -2.030388 0.099359 0.060621 -0.062322 0.326683 -0.338901 1.123999 0.124142 -0.825679 -0.465173 -0.081805 -0.713183 -1.576162 2.325870 0.411539 0.992820 0.969033 2.352255 -0.777710 -1.955655 1.151118 0.201893 0.609348 -0.488724 -0.789319 0.129749 1.164148 -1.164655 -0.760763 0.092096 0.252534 -0.811417 0.306143 2.503456 0.310782 0.255447 0.780765 0.759865 2.319014 -0.015061 1.071953 -1.921787 0.393534 1.309453 -1.061466 -1.455553 0.614045 -0.990756 0.092229 0.735253 -0.335038 0.200278 -1.180239 -1.631056 -0.442790 0.024585 1.689183 0.636151 -1.782022 0.624093 -1.043745 0.094163 0.935540 0.963728 1.648373 1.196340 1.392056 -0.647034 0.517936 -0.024065 0.805558 -0.321876 0.504199 0.899346 0.542780 1.363679 0.442315 0.007713 0.517122 1.079532 -0.451739 1.172815 1.034337 2.398677 -0.086597 0.060224 -0.796132 -0.984623 1.307546 3.295450 -1.618006 0.370154 0.657600 1.238545 0.259314 -2.334432 -0.280298 -0.787991 -0.551185 0.063030 -0.618501 -0.275678 -0.275889 1.696364 0.061947 -1.753125 0.961954 0.088848 0.187257 0.556320 -0.199987 -0.459418 0.484728 -2.208010 1.274853 0.935517 0.990637 -0.350494 -0.501508 -0.232290 1.094433 -0.949498 0.724114 -0.460333 1.163567 1.397013 1.509213 1.715847 0.059427 -0.803640 -1.442839 0.315382 -0.802847 -0.479289 0.050256 1.121861 -1.636594 0.472327 -0.191640 -1.863253 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__main = 0.681921 0.213366 0.322589 -1.047061 -0.990862 0.297502 -0.392499 -0.431116 0.188664 -0.140071 0.659612 -0.863232 -0.402100 1.509989 -0.425639 -0.905891 0.125108 -0.940310 -0.141852 0.209070 -0.010419 0.440931 -0.224929 0.000289 0.049687 0.174949 -0.293035 0.416985 1.238949 -0.723792 -1.397776 0.051847 -0.086020 1.322028 0.217578 -0.776788 0.735700 2.043724 -0.332063 0.688358 -0.856848 -0.407776 0.641164 0.108527 -0.553188 -1.056778 -1.066022 0.635764 -1.108690 0.115512 1.086151 -0.186870 -0.294579 -0.080929 0.462764 1.288536 -2.271083 1.466690 0.351573 1.088449 0.339772 -0.526773 0.206024 0.010228 -0.041737 -0.703807 0.663236 0.375209 -0.932826 -0.009127 -0.622680 -1.419809 1.904386 0.567466 -0.796318 0.129773 0.427876 -1.569590 0.881578 -1.292008 -1.205281 0.239254 0.112147 -0.160802 1.748334 -0.369945 0.057448 -1.776710 0.163208 -1.866901 0.315307 -1.640933 0.688699 1.540813 -1.603300 0.003907 0.145268 0.452595 1.022051 0.418170 1.417090 0.568025 0.192578 -0.246285 0.658976 0.437068 -0.229212 -0.069731 -0.346947 -1.121657 -0.654396 0.069169 -2.490848 0.324508 -0.584251 0.400097 0.063965 0.126561 -0.288581 0.506147 -0.929568 -0.960866 -0.141413 -0.207782 0.883326 1.790134 -0.528147 0.363609 -0.802360 1.523068 0.083926 0.373022 -0.519230 0.197213 -0.516748 -1.677069 -1.853903 0.170752 0.800052 -0.756108 -1.631600 -1.408293 -0.069416 -0.639705 -0.401250 1.558297 2.020463 -0.355359 -0.969429 1.596945 0.456939 0.735815 1.998066 -0.239184 1.959389 -0.961860 0.448511 -0.176417 -0.062047 -0.933887 -1.232208 0.019143 -0.126434 -0.075788 0.062969 -0.857515 1.253219 0.220706 -0.533569 -0.073343 -0.114405 -0.616317 -1.422831 1.989729 0.309319 0.923657 0.588559 1.895124 -0.573227 -1.418239 0.986887 0.268631 0.471631 -0.695469 -0.696141 0.217244 0.905932 -0.881626 -0.629046 0.017860 0.217059 -0.652657 0.380052 1.510208 0.173431 0.100094 0.562449 0.471559 1.681602 -0.191357 0.911074 -1.555153 0.370471 1.009656 -0.801685 -1.331802 0.494400 -0.785376 0.005586 0.536323 -0.273181 0.182892 -0.967506 -1.325573 -0.082301 -0.007138 1.125886 0.362877 -1.552612 0.438638 -0.794239 0.084642 0.748609 0.902620 1.310396 0.908168 0.926638 -0.489054 0.328406 0.028677 0.167693 -0.222616 0.178835 0.676615 0.494709 1.055604 0.396357 0.012446 0.476268 0.766525 -0.339902 0.990044 1.003516 1.830789 0.192836 -0.156169 -0.386283 -0.860955 1.095874 2.500290 -1.104298 0.150097 0.574811 0.918209 0.003644 -1.699517 -0.263306 -0.599362 -0.621744 0.285776 -0.581033 -0.238060 -0.167151 1.489775 -0.056220 -1.565934 0.688989 0.084413 0.280448 0.480919 -0.108906 -0.120189 0.488529 -1.599315 1.035743 0.671144 0.869417 -0.277749 -0.522107 -0.150753 0.760762 -0.484418 0.539958 -0.719980 0.856579 1.002001 1.311646 1.268223 0.233297 -0.559357 -0.864226 0.166972 -0.481442 -0.318620 -0.137433 0.890508 -1.271369 0.187768 -0.495892 -1.201482 +PE-benchmarks/Find_the_closest_pair_from_two_sorted_arrays.cpp__printClosest(int*, int*, int, int, int) = 3.145079 1.257114 2.817417 -3.139743 -2.178410 1.715136 0.122684 -4.219247 0.523057 8.403499 2.795335 -2.519474 -1.514086 4.894671 -2.554859 -2.894918 1.885742 1.752567 0.357883 -2.152210 -0.170750 1.542008 -1.017432 -2.799461 1.246500 -1.840273 1.578115 2.164486 -0.078495 1.779765 -3.404273 -0.911468 0.563593 7.072272 0.789097 0.187288 -1.068731 6.075645 -5.612137 5.964990 -8.449468 -6.601235 5.901041 1.390438 1.528504 -4.892134 -2.093199 2.267478 -0.374218 -4.017692 0.762774 -2.926556 2.257111 -3.227124 0.026454 5.176516 -7.317701 0.691773 1.091392 -3.589413 -4.622374 -0.571985 4.549725 2.401683 -4.324557 -4.372658 1.985772 3.072843 -2.275680 1.440109 -4.340694 -8.855225 3.513307 0.971721 -3.695553 0.460352 -0.416511 -6.196018 3.569235 -1.702897 -3.661730 -1.949693 1.998226 -2.149365 1.712673 2.944699 6.486032 -9.727300 2.053591 -8.181789 5.395457 -3.389507 6.456137 4.988437 -3.671271 1.617113 2.793721 5.453216 3.482687 0.312417 6.015914 3.409376 2.654907 -1.838274 3.952093 4.872082 -4.697569 -4.889226 -3.719510 -4.981708 1.024588 -1.859598 -8.263797 0.371265 -5.549592 0.511459 0.525722 -2.349708 -0.543123 7.465561 -10.669502 -3.112646 1.863316 -1.011862 4.579602 5.046923 0.292522 1.971973 0.227349 5.424089 -1.804012 -1.643307 -1.374309 3.223117 -4.962547 -4.196256 -3.832381 1.597015 2.852603 -6.142397 -6.547769 -9.372738 -1.848933 4.130842 -1.559677 5.104815 9.958342 -2.541748 -6.080727 3.118884 -1.051946 -2.375602 7.517862 1.141132 10.287119 -8.468449 4.433887 -2.165160 2.578113 2.230956 6.026084 -1.562951 -3.117510 3.350451 -0.699161 -4.508654 5.992842 -1.457652 -0.032323 -2.351789 1.763399 -0.977461 -0.832441 5.883689 -6.482059 5.501973 -4.057867 8.546432 -6.688804 -4.862635 2.069476 -8.045746 -3.048901 -2.709376 -1.091408 -0.776925 7.289249 -5.454285 -3.052856 -2.129729 -2.980928 0.610473 5.359388 -3.447446 0.083982 -0.935913 -2.715767 6.667430 3.581180 -0.045689 0.341261 -4.637360 0.682998 4.818041 -1.053578 -7.959343 -1.289048 -6.515819 -0.511436 -1.078178 -0.760760 4.575643 -4.279626 -2.741962 0.137382 -2.094164 1.373148 -2.523359 -5.389806 2.699208 -3.100247 1.870523 1.219396 7.480563 5.557247 5.800871 1.565785 -2.110968 2.010457 -5.192914 -3.218493 3.389367 2.200255 1.656786 2.514208 4.974517 0.563320 1.984526 3.414815 0.169285 2.351951 6.151956 1.068768 6.728385 -2.985857 2.087244 0.573924 -3.577876 4.013242 8.578314 -1.441496 -1.578044 1.982451 0.009364 -3.228301 -3.322617 -0.352885 -1.702454 -3.351933 2.631577 4.290418 -0.577528 -4.078985 9.492501 1.991142 -10.106100 5.560335 -0.541891 1.339927 5.732793 -3.377063 2.045642 2.219153 0.347271 3.243485 2.912668 5.489686 -6.377394 -1.592055 -0.645188 5.030295 4.791062 -1.050983 -10.986296 3.644558 2.961254 7.356338 2.356670 6.994319 -4.795034 1.751132 -1.183608 -2.901981 -0.831562 -1.299609 4.201153 -1.513281 0.165919 -8.481339 0.705994 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__main = 0.458936 0.069621 0.204193 -0.485230 -0.623490 0.284936 -0.622169 -0.214781 0.084396 -0.328758 0.204246 -0.353591 -0.323033 0.659217 -0.307571 -0.717487 -0.129075 -0.556765 -0.037178 -0.040214 -0.097077 0.162695 -0.146857 0.188341 -0.025582 0.002117 -0.193572 0.099068 0.892194 -0.512747 -0.769616 0.030484 -0.180643 0.733748 0.157175 -0.414514 0.613080 1.310448 0.509726 0.031836 -0.287191 -0.352088 0.107575 0.030989 -0.295292 -0.155298 -0.363412 0.343123 -1.054737 0.486128 0.709168 -0.062582 -0.393984 0.134520 0.342919 0.495446 -1.423017 1.154391 0.056266 0.781438 0.247449 -0.367396 -0.002789 -0.107689 0.373948 -0.314429 0.460487 0.513316 -0.700589 0.060523 -0.198492 -0.633196 1.200248 0.388519 -0.430300 0.079527 0.483183 -0.511452 0.436947 -0.864899 -0.832144 0.166504 0.086282 -0.123353 1.216552 -0.149760 -0.138867 -0.954179 0.335330 -1.069967 0.089392 -0.893901 0.355194 0.905401 -1.040223 0.020861 0.200459 0.218835 0.515196 0.140699 0.875038 0.135237 -0.152959 0.068312 0.218446 -0.069391 0.053623 0.217377 -0.096829 -0.639771 -0.576137 0.075537 -1.333496 0.139105 -0.248955 0.611895 -0.020351 0.345584 -0.240493 -0.183608 -0.751021 -0.847710 -0.239464 -0.118210 0.680225 0.792407 -0.406378 0.312944 -0.424626 0.996390 -0.078838 0.046327 -0.339145 0.016662 0.116446 -0.763231 -1.517799 0.100212 0.578699 -0.297372 -0.964959 -0.470329 -0.151092 -0.423130 -0.158094 1.280757 1.206932 -0.170831 -0.426667 1.047375 -0.158949 0.723442 1.400777 -0.072572 0.859785 -0.338178 0.091194 -0.075871 -0.086087 -0.661175 -1.640365 0.128442 0.136747 -0.040853 0.329355 0.495168 0.340800 -0.023691 -0.475560 -0.329798 -0.107248 -0.377926 -0.775300 1.057028 0.404276 0.453630 0.751858 1.105534 -0.248085 -0.937907 0.510557 0.175611 0.393966 -0.171291 -0.343186 -0.105636 0.367042 -0.635678 -0.403486 0.143064 0.192409 -0.437574 0.015744 1.725061 0.198219 0.169921 0.519444 0.393108 1.186946 0.018761 0.460016 -0.998132 0.163651 0.512787 -0.565908 -0.383008 0.405895 -0.246516 0.047411 0.579284 -0.121332 -0.055825 -0.468502 -0.752600 -0.312341 0.149045 0.898234 0.442357 -0.716924 0.194837 -0.355132 -0.095682 0.533305 0.303074 0.840253 0.459073 0.702861 -0.261888 0.268267 0.156914 0.636336 -0.325851 0.188707 0.685371 0.211332 0.480643 0.293876 -0.032892 0.163517 0.641813 -0.293172 0.509635 0.533503 1.250988 -0.135741 -0.029001 -0.464818 -0.380352 0.608709 1.468353 -1.091541 0.393203 0.366464 0.709035 0.308967 -1.191483 -0.136276 -0.417555 -0.140882 -0.150586 -0.421138 -0.160503 -0.036611 0.687851 -0.033363 -0.708176 0.442378 0.099102 0.067580 0.121964 0.035802 -0.373703 0.259747 -1.276582 0.531016 0.419374 0.394230 -0.101390 0.013116 -0.112106 0.547886 -0.861310 0.458277 0.310969 0.469804 0.644742 0.580384 0.931880 -0.340917 -0.257673 -0.949436 0.202852 -0.482662 -0.269091 0.214989 0.510853 -0.699689 0.263441 0.152120 -1.115363 +PE-benchmarks/anagram-substring-search-search-permutations.cpp__search(char*, char*) = 2.733879 1.051203 3.224604 -2.879577 -2.016909 2.098126 -1.109549 -3.990821 0.433618 7.460505 2.391597 -2.520989 -2.184700 4.549465 -2.594896 -3.744402 1.511413 2.303448 0.496924 -3.375553 -0.438127 0.935679 -0.986889 -2.503336 1.094090 -2.543447 1.808987 2.194185 0.745903 1.949614 -3.043849 -0.848998 0.375325 7.399536 0.926534 0.641284 -0.688396 6.668166 -3.846873 5.549589 -8.004684 -7.227343 5.681172 1.569892 1.198702 -3.535080 -1.734733 2.244636 -2.911348 -2.542964 1.006507 -2.888115 1.798415 -2.964047 0.107648 5.013429 -8.049143 1.734658 0.429693 -3.554350 -4.741642 -0.896183 4.301762 1.957084 -3.082015 -3.950573 2.148529 3.789986 -2.917775 1.717138 -4.132618 -8.412482 3.567350 1.302064 -3.440654 0.580218 0.267108 -4.721260 3.189372 -1.569978 -4.062095 -2.188208 2.214286 -2.506327 2.504274 3.502951 6.020156 -9.806804 2.078432 -8.443368 5.442465 -3.391718 6.708409 5.169278 -4.269859 1.998229 3.099718 4.693014 2.670670 -0.280394 6.160181 2.510518 1.904836 -1.227304 4.088348 4.126054 -4.397272 -4.494726 -3.475073 -5.013978 0.377913 -2.210976 -7.527728 -0.035110 -6.050885 1.085409 0.359830 -1.509871 -1.288927 5.518277 -10.936069 -3.889933 1.395526 -1.164734 5.501599 4.408616 0.153781 2.486604 0.644404 5.944549 -2.192578 -2.197791 -1.902767 2.995212 -3.063112 -3.900094 -5.417762 1.656416 3.359390 -5.671429 -7.101350 -8.623319 -2.585685 3.991889 -1.247132 6.350631 10.343781 -2.203867 -5.896979 3.510136 -2.375795 -0.686272 8.632011 1.593968 9.943016 -8.249436 4.346534 -2.252788 2.492698 2.209952 3.716590 -1.557503 -2.546104 3.691573 0.229689 -1.016738 4.635968 -2.387649 -0.412238 -3.888032 1.775982 -1.247347 -0.996849 6.044008 -5.906179 5.330797 -3.075548 8.875015 -6.919549 -5.956325 2.050033 -8.556691 -2.932768 -2.094735 -1.022078 -1.871949 7.120454 -6.038903 -3.694997 -2.229550 -2.395098 0.665571 4.749256 -0.987607 0.153052 -0.784331 -2.154409 6.866042 4.182488 0.265239 0.262180 -5.327468 0.188763 5.163464 -0.830913 -7.192788 -0.457320 -5.901874 -0.511843 -0.354262 -0.468463 4.090896 -4.321828 -2.654934 -0.665413 -1.914730 2.243433 -1.928867 -5.851665 2.919402 -2.668729 0.922124 2.000430 7.218548 6.163212 5.399384 1.874242 -1.976865 2.241222 -5.036774 -1.731894 2.834445 2.625823 2.775473 2.309212 4.417992 0.709037 1.786790 3.273679 0.865040 1.700251 5.820299 1.335639 7.285246 -3.028008 2.499378 0.009600 -3.544211 3.844965 9.065317 -2.321648 -1.053038 2.551199 0.582712 -1.996299 -5.039645 -0.647098 -2.047971 -2.795698 2.434177 4.023791 -1.022917 -3.963644 9.468429 2.096126 -9.883900 6.019169 -0.281605 0.856370 5.115360 -3.529126 0.779715 2.566885 -1.109795 3.126902 2.951082 5.351549 -6.432879 -0.124258 -0.952329 5.464639 3.893554 -0.988291 -9.384216 3.584260 3.078364 7.025369 3.475307 6.080844 -4.505936 0.332664 -1.344408 -3.920321 -1.220773 -0.554815 4.302075 -1.203344 0.669845 -7.433685 -0.715186 +PE-benchmarks/maximum-profit-by-buying-and-selling-a-share-at-most-twice.cpp__main = 0.417554 0.275038 0.235529 -0.522976 -0.783592 0.314660 -0.682009 -0.424808 0.060222 -0.177406 0.396770 -0.506502 -0.450154 0.740464 -0.478230 -0.766363 -0.186347 -0.382439 -0.048150 -0.228336 -0.020024 0.162100 -0.136417 0.038602 -0.094393 -0.057705 -0.144511 0.145005 1.027117 -0.417595 -0.773495 0.031944 0.017856 0.802391 0.244764 -0.367528 0.486492 1.166968 0.329419 0.030874 -0.705602 -0.465439 0.282440 0.121580 -0.211204 -0.622426 -0.512114 0.360150 -1.171554 0.484553 0.612299 -0.208128 -0.215402 0.082484 0.257034 0.674436 -1.501903 1.349222 0.075762 0.479220 0.232174 -0.238052 0.083075 0.038660 0.502818 -0.402381 0.338040 0.653701 -0.674993 0.079080 -0.264429 -0.767048 1.357263 0.219852 -0.544095 -0.001416 0.277780 -0.564724 0.440761 -1.020257 -0.781578 0.120421 0.259326 0.214469 0.950544 0.040985 -0.055582 -1.068732 0.004056 -1.170827 0.293286 -0.764799 0.474782 0.710833 -1.104052 -0.054263 0.229881 -0.186471 0.748289 0.303249 0.854501 0.121055 0.073484 -0.043306 0.190440 0.098571 0.073115 0.146632 -0.081647 -0.758709 -0.551897 0.196607 -1.547198 0.101572 -0.413357 0.627808 -0.061868 0.081686 -0.061476 0.001256 -0.708839 -0.896146 -0.184370 -0.092315 0.772334 0.883043 -0.274498 0.434564 -0.331326 0.957580 -0.093673 0.001534 -0.294556 0.091355 0.094040 -1.376834 -1.664086 0.263291 0.588334 -0.410326 -0.947845 -0.580826 -0.113508 -0.411830 -0.194340 0.916502 1.243175 -0.248137 -0.684790 0.961215 -0.004499 0.468729 1.524608 -0.058996 1.208179 -0.557878 0.246202 -0.084894 -0.122013 -0.501848 -1.136203 -0.021768 -0.034012 -0.002972 0.336902 -0.102517 0.118979 -0.040730 -0.466292 -0.229310 -0.088307 -0.318242 -0.624104 0.915240 0.438427 0.541432 0.464203 1.170010 -0.519716 -1.186686 0.474908 0.080220 0.222252 0.135457 -0.317581 0.064826 0.519707 -0.726957 -0.375928 0.086357 0.114904 -0.415987 0.209215 1.395062 0.145797 0.191043 0.312010 0.387457 1.126761 -0.014775 0.524067 -0.897749 0.159255 0.638324 -0.340369 -0.910597 0.271191 -0.507242 0.066303 0.555179 -0.169146 0.147019 -0.300099 -0.653930 -0.275077 -0.144284 0.970428 0.330436 -0.320028 0.295595 -0.561094 -0.016577 0.347404 0.518692 0.809827 0.611595 0.638856 -0.194434 0.303610 -0.147222 0.837791 -0.188621 0.384491 0.415897 0.282524 0.571749 0.208909 0.034513 0.345931 0.552318 -0.261066 0.616821 0.390517 1.216386 -0.428664 0.161745 -0.472123 -0.417384 0.645102 1.636309 -0.995161 0.133297 0.291488 0.584101 0.364855 -1.226730 -0.127988 -0.353547 -0.365535 0.230318 -0.079403 -0.061873 -0.216962 0.839056 0.088081 -0.763009 0.737248 0.074323 0.007814 0.061034 -0.155244 -0.459571 0.287399 -1.074287 0.332871 0.531479 0.570691 -0.306644 -0.348523 -0.153232 0.674369 -0.552422 0.376586 -0.156363 0.382029 0.846192 0.757836 0.792103 -0.106588 -0.452627 -0.977640 0.164508 -0.327901 -0.249726 0.097954 0.433257 -0.770798 0.221736 0.213469 -0.934056 diff --git a/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt b/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt new file mode 100644 index 00000000..50a05344 --- /dev/null +++ b/src/test-suite/oracle/SYM_llvm14_p/ir2vec.txt @@ -0,0 +1,118 @@ +8.095423 3.926303 7.272478 -9.356151 -5.338497 3.110643 2.922263 -8.706549 1.355771 20.622690 5.869049 -5.196312 -4.141744 12.515624 -5.985557 -6.813011 4.112427 -1.063546 -0.333615 -5.065117 0.112549 4.730018 -1.925590 -6.776799 3.303023 -4.369613 3.367177 5.548908 -1.773900 2.380527 -7.506899 -2.401794 1.686442 16.701049 0.708532 0.016987 -3.282756 15.341758 -14.529859 14.180280 -20.375589 -17.393383 14.747471 2.649868 2.991007 -14.224285 -4.395867 5.511553 2.701356 -9.887684 1.622860 -5.370163 3.987359 -8.574413 0.009091 12.019933 -18.005603 1.571353 2.231687 -7.881240 -11.032701 -2.247515 10.796272 5.341445 -10.765719 -10.524334 5.075808 5.563851 -6.591808 4.260353 -9.356497 -19.953099 8.097745 3.656100 -7.536451 1.999389 -0.471186 -16.275335 9.332193 -5.753736 -8.229298 -4.499820 4.566546 -4.960457 4.704435 5.828861 14.526775 -23.067898 4.871161 -18.712674 11.880219 -9.361787 14.335597 12.109189 -6.906181 5.002529 5.792195 13.912563 8.341711 -0.581884 14.625337 9.423720 9.305892 -3.392540 9.915007 12.083208 -11.665603 -11.738150 -9.369984 -12.056076 2.688788 -5.016642 -20.184985 1.356160 -11.238807 -2.955895 2.333724 -6.194929 -1.721647 18.652371 -26.818939 -7.906387 5.514836 -2.461022 9.005075 11.634258 0.194365 3.564918 -0.042176 13.044766 -3.348771 -1.490848 -2.612085 7.307798 -12.917445 -9.320962 -7.483200 2.888813 5.512347 -14.453599 -15.629541 -22.650425 -4.289706 9.856203 -4.060568 12.429342 24.045021 -5.493250 -15.387501 8.075977 0.003672 -5.771428 16.012778 2.428229 23.516119 -19.036073 9.554451 -4.648737 6.242415 5.721104 16.152520 -3.070106 -7.380254 7.713113 -2.482246 -12.087293 13.433698 -4.024094 0.421973 -4.876001 3.606873 -4.487537 -2.992115 14.379395 -14.535885 15.075528 -9.594063 19.794637 -15.471419 -10.790090 5.115011 -20.380167 -6.387162 -9.286940 -2.377636 -1.557685 16.821902 -12.556129 -7.416528 -5.780869 -7.715269 0.890147 12.526186 -13.104811 0.795945 -2.865698 -4.957201 15.587251 8.907310 -0.797609 1.236808 -11.631015 2.484638 11.439485 -1.099075 -19.454136 -2.804726 -14.201011 -1.454651 -1.903417 -1.828636 10.229791 -8.998845 -6.679555 1.763332 -5.134024 1.172007 -6.618030 -14.156776 5.438915 -7.364904 5.792257 1.856163 17.709753 13.831766 12.713362 3.379801 -5.390736 4.708318 -12.157320 -9.218475 7.526861 4.322413 2.561910 6.338131 13.320302 1.847332 4.534638 10.523025 2.729591 3.624812 14.386914 2.155430 16.385528 -6.803334 3.202554 1.395608 -7.853691 9.312965 20.928571 -1.017462 -3.989003 5.709279 0.709700 -8.182894 -6.603079 -1.595787 -4.591930 -6.819041 7.046863 10.054102 -3.052229 -7.721293 22.592691 4.435582 -24.438326 11.915584 -0.964287 3.971953 13.134347 -8.147830 5.159932 6.689040 0.072434 8.167950 6.437445 12.315068 -14.820989 -4.685259 -1.013212 11.832890 10.586267 -1.979529 -26.970276 8.685385 6.709232 17.770847 5.104585 18.048496 -10.949731 4.229147 -2.073603 -5.412624 -2.384254 -1.679284 10.320619 -5.349854 0.130496 -20.933065 2.184029 +11.360630 7.422660 24.716647 -23.876305 -18.695725 1.447247 -18.050168 7.931388 9.832835 31.035821 8.213337 -27.240645 -48.136324 30.205329 -17.727317 -40.223476 15.624947 -5.965940 17.194541 -25.820296 5.462348 7.835943 18.522616 -10.581729 16.124260 -13.334352 -26.993073 22.235974 64.679834 -15.169925 -5.918531 13.081239 10.782839 33.974104 -23.539385 -19.277267 10.942793 46.479766 -4.121714 12.296576 -36.574134 -30.572001 44.745444 11.043554 -2.469257 -30.131831 -12.547726 18.723826 -54.167342 -6.551002 7.258731 4.653698 2.793781 -26.175216 -9.738404 46.068582 -85.736805 40.191421 -9.453510 -0.940518 -1.393131 17.433667 4.090905 7.905108 26.902244 -24.946432 -0.069882 6.413678 -46.606806 2.428395 -2.386355 -7.159494 44.575009 1.185008 -12.512893 25.237079 27.929400 -12.259492 22.610304 -54.394816 -20.045842 -5.838666 11.235998 -3.223249 33.742648 6.639402 14.413368 -46.792829 1.568291 -31.155958 44.449216 -35.901998 25.653517 34.047985 -31.682835 21.912184 12.097844 -23.126930 27.591923 8.190269 59.479442 13.520446 27.551280 7.286761 6.991734 14.282642 -15.877750 -4.309023 -21.280553 -28.781709 -17.741244 -2.013577 -48.492956 1.862394 -23.099262 17.850289 43.731672 -20.397944 -7.760395 15.002731 -37.495401 -24.191191 4.640665 -4.374541 12.881113 34.591943 -2.152460 -8.030303 7.555972 55.428831 -9.308941 -6.508324 21.394456 11.463249 13.052626 -55.953233 -26.834962 1.996622 -2.579589 -26.714987 -32.025305 -39.797256 5.134525 -11.345497 -5.342613 34.668679 71.526085 10.600130 -27.727788 33.387968 -13.987376 19.164985 54.749360 2.020214 62.738028 -35.613425 -1.741120 -12.573021 5.703140 22.136543 21.079755 5.443782 -1.750958 6.460601 22.062112 -2.474911 -28.126886 -13.690875 7.151157 -11.816219 -2.231232 -21.469395 -22.187551 27.502288 7.242509 40.126508 2.829271 60.057560 -2.689279 -72.329652 26.669217 -10.330865 -7.274059 3.721967 -13.831178 4.924267 -0.423457 -35.305774 -19.808114 -30.374196 5.607837 -8.552226 15.492458 8.515857 22.125684 3.320900 -6.665083 31.280076 11.369767 -5.361066 19.156880 -59.753350 -8.745257 18.981857 -11.356674 -56.776121 17.410515 -21.961199 12.775339 41.666245 -15.372732 19.041380 -9.390626 -30.275170 -4.180524 -13.685528 13.880272 -21.364284 -20.714814 5.449832 -3.518992 6.211807 19.494674 41.369275 48.615027 13.997643 -6.929295 17.008027 11.285754 -9.737131 16.066016 -3.427241 -2.358307 10.494539 11.225302 17.094594 1.260557 10.287993 35.621876 22.490668 -26.509610 33.973573 0.121776 35.807301 -18.942367 -5.400423 0.446116 -25.160854 24.721377 54.588331 -24.722326 -13.704839 26.504538 19.142766 16.860523 -45.307381 -0.829580 -19.310801 -6.851985 34.562464 5.791152 -4.777362 -5.748613 20.861118 17.795674 -56.251183 55.461422 -3.360872 -3.340079 5.815749 -6.775937 -16.760838 17.483010 -42.489871 -8.308950 14.841814 23.345577 -36.020438 2.740731 0.900484 45.216483 -10.623342 15.805293 -60.877323 -11.595169 20.077684 20.702785 29.717198 27.496984 -16.315176 -52.147381 -0.364844 -14.090548 -27.904096 -14.068034 -3.414097 -35.123299 9.995041 1.434406 -5.764310 +3.703929 1.415619 3.806214 -3.590431 -2.613290 1.475092 0.980153 -3.929320 0.598705 9.300788 2.241233 -2.614505 -2.556174 5.708495 -2.765226 -3.804108 1.648082 0.439434 -0.033395 -2.226736 -0.618158 2.123703 -0.966734 -2.644389 2.052681 -2.009319 1.445617 2.705256 -0.667413 0.840302 -3.151100 -1.153245 0.669737 8.220553 0.175211 0.704526 -0.954984 8.112929 -5.256196 7.448611 -9.418767 -8.272813 6.829776 1.058568 1.670902 -5.310037 -1.378262 3.218792 -0.759478 -4.453589 1.022963 -2.186423 1.220958 -4.131808 0.420107 5.715021 -9.478679 1.667594 1.045922 -3.772858 -5.474576 -0.995529 4.094781 1.876099 -4.369073 -5.105521 1.869258 3.136514 -3.711662 2.315846 -4.176603 -8.981723 4.963704 1.511972 -3.990515 1.458526 0.461626 -5.863776 4.390727 -3.407894 -4.371577 -2.508294 2.442369 -2.450434 2.985675 3.427198 6.598527 -11.284002 2.902118 -9.159028 6.235015 -4.819162 6.913596 6.506485 -3.629323 3.109563 3.123414 5.656703 3.377662 0.299305 7.206341 3.723892 3.457412 -0.908613 4.132072 4.968247 -5.690436 -5.771394 -4.648019 -5.822788 1.125268 -1.873510 -8.928886 0.364292 -5.244856 1.862931 1.560857 -1.709044 -0.732536 7.309971 -13.452581 -3.380541 2.617392 -1.279906 5.211592 5.367652 -0.099866 1.749447 -0.205030 6.681686 -2.108942 -1.179784 -1.405506 3.637436 -4.785164 -4.044354 -4.428327 0.973747 2.715410 -6.346564 -7.632411 -10.630339 -2.264287 5.200702 -2.083050 6.847594 12.158905 -2.740773 -6.645934 4.440547 -1.284225 -1.346261 7.803398 1.600980 10.798531 -8.736815 3.886139 -2.301071 2.733538 2.933298 6.450817 -1.086686 -3.811510 4.041547 -0.189249 -4.027309 6.496015 -1.905834 -0.205879 -2.847638 1.458991 -1.858822 -1.426316 7.114671 -6.605136 7.124884 -4.225723 10.282645 -7.056321 -5.598134 2.394744 -9.361524 -2.674023 -4.184951 -1.310934 -1.006422 7.462629 -7.099257 -3.863025 -2.250738 -3.648247 0.217806 5.706024 -3.901189 0.265168 -1.198772 -2.212968 8.591850 4.265297 -0.345386 0.148737 -6.453805 0.929432 4.412761 -1.139332 -8.613724 -0.728034 -6.126514 -0.825329 0.118265 -0.742556 4.271711 -4.409762 -2.977260 0.484754 -2.513381 1.010015 -2.787644 -6.060479 2.175146 -2.586689 2.333545 1.858941 8.116797 7.300477 6.009393 1.832457 -1.640844 1.889306 -5.180534 -3.495790 3.479421 1.981415 2.451552 3.001912 5.431019 1.393925 1.887745 4.335442 1.137511 1.642680 7.168974 1.438261 8.437271 -3.984005 1.543609 0.776262 -3.312281 4.749201 9.369374 -3.055644 -1.286041 3.070723 0.641413 -3.219056 -3.164532 -0.811382 -2.467845 -3.267697 3.239191 4.284357 -1.449617 -3.441153 10.691543 1.663477 -11.678457 5.987583 -0.334465 1.842004 5.783269 -3.102269 2.025825 3.402511 -0.690865 3.431069 3.106668 6.090442 -7.396861 -1.356613 -0.616793 5.670585 4.535376 -0.186121 -12.010476 2.714933 3.177841 8.177064 2.606324 7.478284 -4.969119 0.890157 -0.879359 -3.444302 -1.485826 -0.672896 4.587679 -1.402977 0.325584 -9.533102 -0.079369 +11.472989 1.792420 6.626428 -7.286122 -0.958426 5.442960 2.977210 -12.171835 0.340579 28.071058 7.743457 -7.163027 -6.371898 11.331951 -4.278668 -10.793558 9.652077 11.561289 1.544006 -7.523698 -4.128622 1.993758 -2.952054 -12.507034 6.962589 -8.585589 4.519399 8.009395 -3.319701 8.431075 -9.153913 -2.264855 2.166287 24.396710 1.511949 1.825258 -4.254752 18.828865 -17.965000 21.337933 -22.398975 -21.302411 22.705708 4.951497 4.982056 -6.965999 -3.121637 6.536851 0.449861 -15.281310 0.349325 -10.581684 8.396150 -13.259671 -1.786459 20.804008 -20.767236 -2.447518 2.565542 -14.932800 -19.392750 -1.648356 13.405644 5.697001 -14.802082 -15.935554 6.177548 10.287141 -6.193356 5.024093 -18.420423 -30.040160 11.538986 5.372851 -9.577861 2.715534 -3.391913 -16.070295 8.869897 2.174631 -10.091549 -8.872775 8.031846 -4.942346 4.100616 12.607812 23.818804 -32.218408 5.678782 -26.575512 19.772891 -9.987118 25.338739 16.996138 -7.791811 8.263004 9.669581 16.889145 3.153123 0.310198 21.100593 7.099299 5.462233 -6.991887 11.907806 15.303565 -17.906883 -19.849419 -10.920339 -11.477429 4.636484 -4.733930 -21.277863 1.499301 -24.052557 3.992072 3.865449 -5.201499 -3.052100 23.375057 -33.806187 -10.086231 6.714426 -4.578184 19.502306 14.101454 3.647296 4.854815 2.108203 17.025840 -3.852262 -8.811082 -7.509789 12.015975 -12.702336 -10.111759 -8.090096 3.407639 10.390344 -22.968447 -22.725221 -27.447520 -7.199344 18.506639 -5.893615 18.479763 33.077740 -7.903512 -14.710934 7.794696 -8.008563 -3.306740 23.023971 6.063947 34.696266 -31.882263 18.396841 -4.903254 12.989774 11.501521 19.656217 -7.465753 -12.510830 12.530945 0.388542 -3.977445 22.534938 -6.803838 2.851791 -4.450331 5.169198 1.582708 -1.980359 19.294124 -21.255086 18.429374 -12.325520 30.246575 -22.593483 -14.774874 7.473035 -22.457794 -13.645830 -10.983085 -0.940433 -5.184544 22.054493 -17.473903 -12.210445 -6.266331 -9.465774 5.135125 20.161880 -6.917498 -1.306499 -5.584569 -13.549865 21.351586 8.172257 -0.501445 -1.537235 -16.843879 1.243062 12.707470 -6.272190 -22.085230 -4.258031 -17.873093 -2.077232 -3.197232 -1.395870 15.694751 -14.488448 -7.433562 1.527751 -4.218200 2.766538 -10.643535 -14.446539 9.143975 -4.826987 0.971636 4.800066 27.056949 19.230586 17.035155 1.316180 -7.708780 6.062009 -15.803570 -16.354217 13.364646 3.603136 12.694110 8.001516 13.084058 -1.099517 6.806762 10.493474 -4.827449 11.331849 18.804101 5.562764 21.015523 -7.982380 5.629029 5.977157 -15.543692 13.636493 23.565367 -8.469115 -8.065760 7.735149 -1.293854 -12.204484 -8.067754 -1.094412 -4.504223 -13.354496 8.444187 14.233876 -1.051370 -15.806207 34.127625 6.894784 -35.885531 18.978587 -0.219316 4.306231 20.685595 -11.930551 10.170560 7.924524 6.011621 7.720530 7.600259 19.928260 -23.298305 1.372815 -2.244601 15.104629 13.630557 -8.277793 -35.334122 8.889139 8.571530 24.644941 9.830389 21.741126 -13.711887 10.260915 -7.306655 -9.967710 -0.968511 -5.564945 13.143866 -4.160002 2.242052 -30.783358 8.069274 +1.760479 0.530929 1.574473 -1.987306 -1.388142 1.004444 -0.004659 -2.830396 -0.020395 3.697540 2.051681 -2.370369 -2.060786 3.222918 -1.385987 -2.542518 1.273322 2.500714 -0.340498 -1.300779 -0.877643 0.586633 -0.804135 -1.758443 1.238215 -1.084285 0.845623 1.680007 1.391818 0.189799 -2.355357 -0.452835 0.665337 5.354000 0.519599 0.609658 -0.414415 4.910826 -1.790685 4.216077 -5.082460 -3.624778 4.288021 0.832698 0.769294 -3.078770 -1.720317 2.288176 -1.733356 -2.761522 0.493907 -1.862602 0.780998 -2.629963 -0.055572 4.577652 -5.302296 1.320848 1.216846 -2.203854 -3.304872 -0.312556 2.489442 0.563655 -2.496954 -3.489233 0.994126 2.191693 -2.351097 0.965031 -3.471508 -6.244684 3.959309 0.555069 -2.665858 0.789200 -0.500345 -3.124142 2.185620 -0.442975 -2.683642 -1.401935 1.913304 -0.804779 1.972605 2.036499 3.628867 -7.145294 0.748919 -6.285177 3.473997 -2.978636 4.938843 3.975867 -3.193876 1.714883 1.859500 2.133736 1.205328 1.542106 4.663678 1.142977 0.859657 -1.208540 2.884166 2.113040 -2.851362 -3.652101 -2.188738 -3.645702 0.480741 -0.409663 -5.848749 0.392089 -4.788943 2.074598 0.173238 -0.017727 -0.097908 3.565445 -6.588557 -1.860152 1.371729 -0.961201 4.213201 4.333968 0.284796 1.206803 -0.412156 3.997586 -0.945279 -1.272770 -1.499863 2.399516 -1.120551 -3.785408 -3.268520 0.593139 2.389550 -3.920455 -5.114046 -5.553494 -1.634905 2.496532 -1.538456 3.476506 7.470586 -1.874128 -3.442800 2.740518 -1.122912 0.441819 5.562908 1.096214 8.255375 -6.261299 3.210960 -0.809326 1.643513 1.743950 1.252380 -1.484441 -2.867493 2.064712 0.132622 -2.723416 5.361147 -1.234505 -0.058935 -0.380111 0.997033 -0.209320 -1.886681 4.653192 -2.997002 4.527335 -1.823146 6.850170 -4.451673 -3.923353 1.885709 -2.739751 -1.648245 -1.505185 -0.528027 -1.067825 4.741926 -3.934254 -2.643743 -0.732638 -1.609889 0.228782 4.114965 0.899686 -0.218774 -0.734885 -1.887420 3.331136 2.549162 -0.651019 0.447682 -4.311903 0.482820 2.917289 -0.876173 -4.947670 -0.271107 -4.199373 -0.604242 -0.145765 -0.496738 2.876117 -2.535288 -1.895460 0.021591 -1.164333 1.548195 -1.575402 -2.809692 1.724745 -1.826317 0.181046 1.384214 5.667239 4.822130 3.889585 0.828180 -1.069414 1.273718 -2.851756 -2.208970 1.883326 0.597658 3.166714 1.924501 2.338090 0.709770 1.471844 2.181067 -0.863381 1.945691 4.691535 2.081999 5.522734 -2.034872 0.921571 0.800367 -2.923213 3.317331 6.101505 -2.650433 -1.196596 1.714274 0.740078 -1.990105 -3.572244 -0.669271 -0.930845 -3.377915 2.428206 2.160062 -0.065121 -2.788697 7.158758 0.782952 -7.375377 4.290877 -0.308860 1.034779 3.489807 -1.851934 1.510909 2.107474 0.005117 1.213536 2.054218 4.163953 -4.766579 -0.870952 -0.585087 3.686369 2.026198 -0.832406 -6.919338 2.169000 2.063420 5.423595 2.126905 2.886349 -2.982149 0.658223 -0.733183 -2.193700 -0.480279 -1.080251 2.816400 -1.052657 -0.578107 -5.833279 0.152517 +4.732572 1.978632 4.608673 -5.903727 -2.056856 1.713728 2.749944 -5.197338 1.094618 12.924891 3.710824 -3.426198 -3.828871 7.840243 -3.184289 -4.783004 3.841958 -0.345225 0.010857 -2.791626 -0.073184 2.712150 -0.989843 -4.938384 2.824936 -2.629705 2.192714 4.414917 -0.618782 1.305858 -4.904082 -1.257580 1.027333 10.934951 0.028079 0.763570 -2.023355 9.780639 -10.084342 10.354668 -13.340900 -10.702243 10.368705 1.686405 1.257586 -9.121138 -2.394160 3.556528 -0.281927 -6.730742 0.998583 -3.656206 2.761270 -6.306979 -0.002638 9.166878 -12.226387 0.931310 1.477762 -4.688332 -7.151520 -1.613651 6.818789 2.763424 -6.664226 -6.938864 3.096042 2.232365 -5.094272 2.952870 -6.753351 -12.319365 5.122119 2.318155 -4.708760 1.648100 -0.718951 -10.098307 5.558668 -3.825295 -4.691849 -3.366329 3.332810 -2.741461 3.215677 3.873215 8.974636 -14.995842 2.007342 -11.710548 8.169105 -6.419015 9.779344 8.059505 -4.567499 3.745182 3.182149 7.644133 3.976123 -0.559759 9.423586 5.597452 5.887581 -2.907973 6.682531 7.507908 -7.936269 -8.237359 -5.834300 -7.141283 1.601628 -3.278303 -12.604967 0.490016 -8.489539 -1.142578 2.359605 -3.983916 -1.478135 10.970067 -16.630260 -4.225026 3.285727 -1.696439 6.498374 8.020958 0.507443 1.855745 0.308487 8.451591 -1.639541 -0.872824 -2.335872 4.894840 -7.373345 -6.521305 -3.832074 0.869200 3.390319 -9.263666 -10.401099 -14.891365 -2.825767 6.104356 -2.343886 7.808705 15.285180 -2.947411 -9.653294 5.008195 -0.901478 -2.374910 10.108369 1.545388 15.157133 -12.923355 6.961030 -2.726129 4.825503 4.146541 11.211416 -2.563735 -5.490428 4.721888 -1.809150 -7.569171 7.955801 -1.873332 1.112064 -3.371928 1.751681 -2.996009 -2.514876 9.791466 -9.948693 10.080175 -6.728630 12.976207 -10.194262 -7.365021 3.655384 -12.709159 -4.200992 -6.425053 -2.510321 -0.846065 10.353697 -8.487513 -5.148202 -4.627291 -3.943419 1.111416 8.546500 -8.585432 -0.100968 -2.627050 -3.689497 10.247448 4.803670 -1.340713 1.080067 -7.885085 1.327872 7.421123 -0.541118 -12.758391 -1.036712 -8.920317 -1.219510 -0.530612 -1.095051 6.534207 -5.968285 -4.667302 1.789644 -3.061605 0.532244 -4.878295 -10.036030 3.347862 -3.996739 2.267728 2.056841 11.783651 8.595879 7.360959 1.055789 -3.667052 2.851168 -7.696693 -6.887173 4.652731 1.962641 2.147536 3.911930 7.575207 1.070112 2.537705 6.447894 1.561987 1.633409 9.237358 2.620922 9.712906 -3.404274 1.743616 1.948399 -6.028238 5.866446 12.330477 -1.517758 -2.909749 4.104923 0.739386 -4.928491 -4.589630 -1.671555 -3.309080 -5.176322 5.577724 5.359028 -2.255625 -4.970463 15.011552 2.729503 -16.107906 7.838006 -0.688962 2.366276 7.996986 -5.337045 2.956269 4.682903 -0.511432 4.975347 3.205802 8.247243 -8.932977 -2.253032 -0.770062 7.377079 7.677167 -2.005484 -17.590178 4.391100 3.910857 11.993207 4.421075 11.888337 -6.065332 3.353773 -2.694555 -3.724741 -1.204623 -2.280251 6.491113 -2.726522 -0.643606 -14.260467 2.178240 +5.583875 3.173152 5.791995 -7.601740 -5.031355 2.067043 1.899084 -7.250764 1.263703 13.309436 5.464901 -6.167412 -3.633594 10.883771 -5.179706 -5.902283 3.427894 1.138647 -0.745709 -3.459517 -0.096505 3.481021 -1.571952 -4.381079 2.560618 -2.560891 2.567957 4.454757 0.986068 -0.043927 -6.719205 -1.244134 1.863659 13.620374 0.673051 0.317239 -2.238219 12.437287 -8.308786 12.073959 -17.045793 -10.392769 10.792155 2.355511 2.138364 -13.844982 -5.677651 5.323749 -0.024787 -7.486131 1.591724 -4.332794 2.310093 -6.727642 0.253931 11.368873 -14.700005 2.999253 2.861799 -5.536147 -7.489191 -0.611649 8.297549 3.611331 -7.795524 -8.794812 3.456687 4.666649 -6.033590 3.676224 -7.820835 -16.617271 8.517495 2.254822 -7.344794 1.844488 -0.792112 -12.369875 7.347128 -5.548456 -6.515138 -3.397909 4.646711 -2.892274 4.258799 3.946086 10.334522 -18.677957 2.561367 -15.570812 9.326354 -8.758279 11.610241 9.974670 -6.440683 3.766737 3.902540 6.907552 7.078447 2.698265 11.571599 6.720058 6.441930 -3.706643 7.965963 8.242525 -7.847842 -9.355029 -6.371951 -10.340089 1.133281 -2.224974 -17.289313 1.272890 -9.977322 1.149729 1.239047 -3.231310 0.048277 13.267140 -18.353095 -6.145984 4.395928 -1.993356 7.762333 11.992430 0.272227 3.147005 -1.517823 10.520558 -2.088992 -0.929039 -2.375163 5.698260 -8.627976 -10.577660 -7.623924 1.724002 4.785964 -10.440072 -12.792497 -17.329589 -3.784763 5.948483 -3.856987 9.369073 19.174762 -4.512335 -12.261020 6.912764 1.513258 -3.107718 13.484014 1.710244 21.084291 -16.027880 8.065964 -3.631888 4.652358 4.159116 10.754931 -3.061284 -6.545681 5.712392 -1.979752 -13.567172 12.815844 -2.483866 0.287476 -0.648790 2.437449 -2.281822 -4.393791 12.086723 -9.178224 13.003456 -7.488886 16.892717 -12.364300 -10.073366 4.595794 -12.079785 -3.807950 -5.230338 -1.773319 -0.960210 13.930459 -10.055295 -6.071435 -3.019198 -6.352859 0.498752 10.115279 -6.248829 0.058092 -2.304516 -4.257623 11.701301 7.256408 -1.459829 2.307226 -10.333877 2.193179 8.787881 -0.567753 -15.847576 -1.359288 -11.992285 -1.388013 -1.928797 -1.768843 7.661962 -7.333257 -5.774497 1.041728 -4.714729 2.523211 -5.141823 -10.306923 4.385860 -6.964330 3.947136 1.685467 14.408563 11.962436 10.350149 2.659316 -4.299538 3.480003 -9.616996 -6.249297 5.399458 3.244661 2.620238 5.019540 9.216235 1.487236 3.084919 7.834109 0.453432 3.175733 11.935386 2.884005 13.390539 -5.607806 2.670425 1.176834 -7.272603 8.204319 17.915682 -2.393676 -3.623872 4.573526 1.726273 -6.042092 -8.515329 -2.008041 -3.038677 -7.544178 7.238404 6.810616 -1.993492 -6.159292 18.209144 3.340265 -19.295903 10.193080 -1.236711 2.356143 9.488767 -5.620293 3.874745 5.743110 -0.638679 4.458869 5.059830 10.516458 -11.863798 -5.601817 -1.196769 9.197097 7.732006 -1.288064 -21.845734 6.048728 6.334555 15.032137 4.211217 13.117720 -8.607769 2.363608 -0.970090 -3.913119 -2.541242 -2.302301 7.593018 -4.346087 -1.307666 -15.602071 0.884758 +48.888567 6.731112 71.247364 -88.727576 -117.018193 40.899014 -55.186672 -56.493403 21.789156 41.530208 60.505584 -61.107893 -46.279701 130.135799 -39.090162 -103.014415 -6.741146 -36.203617 0.964403 -31.176230 9.891846 43.871412 -16.147883 10.695384 -3.106398 -28.229524 -12.747698 46.722687 77.216722 -31.593448 -85.622652 -14.500602 -15.977264 126.632928 13.766601 -20.475404 35.088037 200.880906 -27.626620 91.268784 -116.782637 -110.335736 68.512196 11.903114 -14.439059 -75.321601 -83.721889 59.586660 -90.336603 -12.228848 89.193458 -10.670547 0.500441 -10.069656 42.956352 73.641711 -197.799341 93.470833 10.647125 1.881227 -8.821608 -22.579722 11.432296 39.904838 -30.868982 -65.072464 60.785201 76.501815 -70.896375 5.831799 -22.048773 -144.341138 172.837656 45.098929 -69.348979 19.187561 84.998973 -103.166814 105.234320 -83.099656 -137.213369 -4.497658 1.520026 -60.250542 132.306491 1.005146 73.966871 -187.977825 63.375611 -188.659491 84.096474 -120.285035 69.654548 131.139789 -128.251369 27.791030 70.555991 87.544041 106.753194 11.044935 140.991616 64.474726 30.474314 25.591756 79.018867 42.719741 -50.027052 -32.011657 -84.764420 -137.175954 -18.837385 -46.249073 -216.574175 24.356067 -25.690417 43.663958 7.391578 6.446906 -7.149069 86.295646 -164.873337 -51.522268 25.230224 -19.375420 65.480934 124.934398 -52.756423 40.050169 -39.038089 154.958939 -64.333313 20.375392 -12.426004 39.006175 -40.190266 -87.376144 -170.896211 44.248346 67.948688 -85.167290 -135.588070 -137.753966 -19.300751 34.795759 -32.972626 167.573678 236.962152 -63.046443 -111.657315 136.139204 24.562578 13.473078 171.976138 9.513491 180.857367 -85.702868 2.015332 -70.843579 -24.324093 -26.438386 -29.341425 35.597600 -5.556345 55.722048 25.453102 -59.374522 144.563194 -44.610196 -67.700029 -41.445433 23.998508 -60.849557 -80.914695 146.707487 -4.418658 99.945024 32.729336 184.988387 -66.936078 -128.840277 63.552415 -70.621921 1.475980 -63.157146 -36.743134 2.055208 98.358487 -104.686317 -59.586586 -41.644087 -53.450729 -45.546307 34.213669 88.515843 43.706745 33.943615 40.581169 103.938983 172.045817 39.095559 19.817913 -150.957324 33.838470 81.869278 -59.666641 -111.145825 16.564925 -86.318877 9.668309 28.625868 -21.063914 51.110986 -86.230957 -87.744463 -49.066386 -25.588261 74.507380 27.494922 -155.683165 30.017516 -31.451693 61.623316 60.770025 88.077010 154.168882 121.582530 111.795554 -8.999135 33.744272 -12.773840 20.468343 2.379183 43.537811 62.437556 47.639563 121.008857 47.972993 27.354788 91.482963 85.445942 15.991257 111.448217 31.736722 201.108724 -25.638873 5.259089 -47.184448 -30.852272 104.285582 243.092206 -73.701822 42.902913 60.125087 72.096496 -19.136765 -142.434347 0.806170 -58.850530 -19.104987 42.851714 25.344918 -12.294514 -41.358974 133.636556 21.370808 -177.685952 85.143137 0.394180 32.491165 87.240153 -19.761768 -7.453719 38.855763 -126.742378 100.447207 87.705651 79.948053 -96.813018 -28.268030 -9.840891 90.922423 -5.370586 73.693783 -109.575849 76.206905 84.448605 116.809508 68.811269 61.910160 -102.984432 -88.370913 38.947533 -86.602281 -48.020233 26.074681 64.797590 -96.347683 36.040238 -79.317021 -119.152032 +44.993974 1.783895 66.363943 -89.929572 -111.970495 42.170089 -52.514129 -52.872038 21.411937 29.827956 59.705452 -54.355000 -44.762072 125.933338 -30.347528 -100.703509 -4.065321 -42.197760 0.899406 -21.838767 10.386497 42.467125 -15.453734 14.381939 -5.526597 -24.143635 -15.434898 44.578136 75.244172 -37.697601 -86.633736 -14.673771 -21.004350 119.916295 14.469693 -18.779429 35.119208 196.580013 -24.180230 91.696190 -104.886987 -100.076850 60.968918 9.137622 -20.536054 -68.885432 -81.127953 57.917587 -81.515870 -17.650950 92.702434 -9.398586 0.267303 -5.545248 42.755144 69.076235 -185.388868 84.268099 11.679270 9.051867 -1.613035 -22.915126 9.619551 39.108935 -32.836508 -60.744137 62.287548 67.080301 -68.028972 -1.195785 -19.934719 -139.997537 170.491597 48.887391 -65.601054 17.525084 85.897662 -101.461401 102.883212 -74.393674 -136.450636 -1.467190 -6.558660 -63.261094 133.958336 -6.945476 69.136031 -179.530119 64.384693 -182.144314 77.230005 -116.495992 63.457762 127.828136 -121.161252 23.358258 69.236138 89.991439 99.829800 5.523919 136.282050 60.676926 23.605056 27.167407 81.052840 35.546742 -48.633504 -28.169212 -83.546703 -133.803250 -14.742195 -48.351875 -207.650383 26.657519 -19.395755 37.812618 6.662151 11.155966 -8.713327 78.988492 -152.724854 -44.385652 22.572594 -18.886058 60.609683 124.995509 -54.046632 37.207917 -39.013345 149.640943 -64.503026 25.618306 -11.919336 36.581090 -34.226654 -71.398900 -159.929916 42.722353 67.671184 -81.035053 -129.288790 -130.335207 -16.460017 31.600049 -32.654889 166.846984 229.065544 -64.195225 -103.999971 133.812690 28.598120 16.073009 160.092720 6.800697 171.120365 -78.002322 -3.725075 -69.462842 -28.496857 -30.513877 -32.892218 38.984316 0.449595 53.128093 21.135947 -56.913610 148.115152 -41.700658 -69.732980 -31.696687 22.060070 -61.080662 -86.293600 141.334052 1.721759 92.242369 42.674518 176.297635 -57.089018 -117.292310 62.724349 -57.372747 3.331195 -69.368693 -39.982580 2.331591 90.879269 -95.849842 -54.871032 -42.051613 -50.174851 -47.394631 28.255746 89.375922 45.553829 35.535033 43.851745 95.893337 172.567481 41.544760 16.315329 -146.161932 35.545949 77.296351 -61.974073 -93.970609 15.210687 -82.292665 9.994684 30.692840 -22.450774 48.188917 -86.462492 -87.057532 -48.433402 -19.821256 71.377917 32.431929 -163.255915 25.437935 -22.630594 59.190723 63.078552 81.579486 145.612974 120.008178 113.517495 -9.115583 31.567996 0.202664 10.416262 -5.862330 35.047159 67.392284 47.310654 113.948774 49.176821 27.725419 91.009266 84.324897 19.588260 106.410334 31.528597 195.343764 -10.582696 -1.151530 -45.663998 -29.272337 100.658214 234.325090 -70.866995 49.307474 59.188077 71.761228 -22.011081 -139.036451 5.361610 -58.807126 -13.928169 40.053546 19.962012 -6.954685 -40.852062 125.678007 15.920328 -171.838137 74.850037 0.107631 34.621043 90.378064 -14.768168 -1.178573 32.687342 -128.520261 102.796001 86.945242 75.589227 -89.653746 -20.070124 -8.209130 82.389443 -11.866792 74.488390 -98.364170 74.657386 75.963563 111.461806 68.147918 55.415175 -99.125461 -82.021596 42.667447 -84.269504 -43.409747 24.803079 65.112449 -93.304456 31.206892 -79.966514 -114.699144 +2.931193 1.329650 2.888378 -4.162491 -1.833689 1.179829 1.747587 -3.228828 0.445898 8.028893 2.503544 -2.553089 -4.483599 5.120050 -1.649344 -4.592276 2.338669 -0.394995 -0.279043 -1.796951 -0.724650 1.923358 -0.728137 -3.176316 2.598700 -1.667928 0.656892 3.477641 1.372075 -0.008537 -3.422256 -0.714190 0.637306 8.194166 -0.252619 0.573555 -0.604519 8.218238 -5.910896 6.812846 -8.717967 -7.805088 7.806404 0.971538 0.179924 -5.404776 -0.950312 3.212424 -2.557212 -4.423136 1.313407 -2.141055 1.324534 -4.592280 0.343571 7.201488 -10.113432 2.283065 1.147636 -2.658024 -4.936284 -1.305157 3.830821 1.088205 -3.417162 -5.254280 1.768317 1.264056 -4.460248 1.640585 -4.686801 -8.331694 5.406650 1.954165 -3.436987 1.859749 -0.214887 -6.129477 3.968619 -3.097489 -3.907365 -2.368798 2.773707 -1.468010 3.605793 2.872993 5.331328 -11.117757 0.887720 -8.798762 5.878369 -5.049819 7.186813 6.572186 -3.966823 3.240123 2.396927 3.783836 2.182608 -0.456810 7.508848 2.678088 3.924168 -1.217473 3.976931 4.518383 -5.850829 -5.616147 -4.259285 -5.299208 0.798366 -1.798450 -8.996467 0.443332 -6.240502 0.830936 2.614684 -2.103199 -1.332593 6.266277 -11.708180 -3.159269 2.060373 -1.367978 5.794126 6.249726 0.199437 1.059377 0.078248 6.735151 -1.237270 -0.431318 -2.147254 3.654732 -2.946668 -4.834753 -3.608019 0.296420 2.649055 -6.421273 -7.802576 -9.930443 -1.929353 3.560514 -1.962356 6.024009 11.982587 -2.379739 -6.416474 4.799552 -1.976034 0.667940 7.554034 1.208054 10.883339 -8.936184 4.443214 -1.610228 2.952461 2.843141 6.275589 -1.458149 -4.161392 2.988839 -0.235784 -3.073243 4.549949 -1.220990 0.278680 -2.585621 0.964884 -2.522766 -2.759409 7.445596 -5.776268 7.445875 -3.351087 10.010525 -6.932737 -6.136036 3.274055 -7.240491 -2.655514 -4.890743 -2.583838 -0.450301 6.142097 -6.668040 -3.879650 -3.285371 -1.726689 -0.094718 5.846088 -3.510992 0.011517 -1.722602 -1.987103 6.910326 3.985122 -1.184827 0.668996 -6.901770 1.001778 4.624834 -1.155446 -8.704327 -0.073927 -5.688920 -0.943644 1.974193 -0.969640 4.278391 -3.585060 -3.500375 1.336756 -1.875271 1.172351 -2.997230 -6.969075 2.163204 -2.100775 0.677818 2.503272 8.472941 6.884451 5.194941 0.918421 -1.671327 2.042753 -4.335391 -4.092501 2.491232 0.563148 3.380062 3.267370 4.785087 1.490422 1.783710 4.648173 1.393891 0.547716 7.069407 2.620556 8.153620 -2.371508 0.422622 1.540018 -4.275607 4.507980 8.819477 -3.376158 -1.700591 3.568724 1.392252 -2.656076 -3.944793 -1.120110 -2.894848 -3.613286 4.312232 2.896867 -1.611115 -3.253830 10.985124 1.177100 -11.828387 6.160557 -0.257918 2.140443 4.793025 -3.078171 1.566812 3.773323 -1.956042 3.367217 2.699082 6.138935 -6.562818 -0.642342 -0.604868 5.617812 3.808449 -0.856029 -11.508606 1.818361 2.674180 8.525183 4.161400 7.072517 -3.881220 0.864615 -1.730161 -3.080303 -0.905096 -1.786399 4.400511 -2.000017 -0.193871 -9.657837 0.693876 +2.973004 -0.588161 7.952497 -8.385859 -10.110958 5.110629 -6.057889 -7.416179 2.385067 6.614351 4.291178 -3.946873 -3.841146 11.917033 -5.606317 -9.771190 -0.772507 2.083934 1.920389 -4.721453 1.461020 4.130893 -2.199329 0.051788 -0.927726 -5.890663 2.105536 5.028956 4.979805 3.219743 -6.426042 -3.204551 -2.241393 12.839672 3.033232 2.618000 1.428378 17.432593 -3.467530 13.010944 -14.160823 -13.545270 6.196272 1.927972 0.803536 -8.643545 -7.819596 2.820718 -10.086349 -0.031136 7.010443 -3.329613 3.043688 -0.189458 5.107973 4.419875 -15.869697 5.697874 -0.448488 -4.232332 -1.948036 -3.073331 0.898129 5.346516 -6.453020 -5.291847 4.568137 10.450315 -5.483590 2.539688 -1.738792 -13.626319 14.535980 4.192975 -8.867503 0.659767 8.442576 -10.455176 8.056764 -6.470357 -12.793936 -1.992071 0.446914 -5.764186 10.221736 3.015604 11.214640 -17.946661 6.040960 -17.563817 9.283990 -9.597672 8.062077 11.429448 -11.577517 3.073554 8.211186 11.644224 9.669607 -0.086931 11.209448 8.701697 2.304200 1.858279 9.185663 5.376098 -5.049390 -5.763502 -7.981976 -11.573174 -1.647037 -7.663676 -21.863214 -0.541392 -2.917845 5.245083 -2.120608 0.111380 -1.906089 9.782277 -20.011913 -3.996296 2.417886 -1.928303 6.328119 7.752331 -3.459484 5.305050 -0.665298 13.880565 -8.107052 -0.281769 -2.794018 4.371015 -7.092135 -4.829398 -16.034665 4.435749 6.000557 -7.702947 -13.140196 -13.590995 -5.682384 9.231237 -0.947238 14.147336 21.228146 -5.883204 -12.164006 10.602810 -1.271498 -1.332193 15.971312 3.319099 13.461890 -8.152222 1.550330 -9.763898 -1.000294 -1.355776 4.788742 2.587029 -2.137693 7.877035 0.505678 -6.442317 11.956777 -6.668512 -6.287318 -12.085118 1.626143 -6.534601 -2.635842 13.853618 -10.866086 9.873159 -4.000219 16.322949 -9.219422 -12.277961 2.529402 -16.329292 -1.540389 -5.628887 -0.706136 -0.870389 11.496098 -12.936296 -7.064596 -3.734731 -6.251608 -1.624585 4.133663 1.413159 1.323948 2.541285 2.424250 16.695991 14.877489 5.046941 -0.551250 -10.082037 3.381483 8.097849 -4.294004 -12.147085 1.001142 -7.885863 -0.004266 -1.995829 -0.005276 4.968576 -8.961450 -6.064729 -6.737383 -4.459467 6.462620 2.315522 -15.845831 4.193189 -2.075609 6.117019 5.160719 7.261200 14.756025 11.575238 10.019951 -1.396702 3.757265 -5.652884 2.063119 4.540674 9.573954 1.365747 3.066646 14.696670 3.997825 2.187934 7.938301 10.180143 4.650774 9.546120 1.442844 17.430963 -3.280247 2.283518 -3.939334 -1.675652 8.371730 22.337157 -4.037115 6.304938 5.255866 5.272482 -1.564123 -12.280217 0.366764 -4.936932 -1.984047 5.487195 5.140358 -2.186173 -5.004907 13.652304 3.821074 -15.931923 7.401912 0.622550 2.244935 8.656189 -3.849841 -1.670068 3.806585 -8.807600 11.679701 6.975993 6.561146 -10.085677 -3.861255 -1.294741 6.713735 7.912399 5.176678 -10.295951 6.565100 7.182720 13.219031 5.667068 9.352224 -9.136413 -5.601993 2.505785 -9.774735 -4.798308 1.491730 5.624583 -5.512252 3.357780 -8.826954 -12.842634 +2.414350 1.982684 2.599942 -4.107728 -2.866618 0.865021 0.823459 -3.005757 0.183083 6.486663 2.597495 -3.340834 -4.385649 5.726491 -2.053418 -4.935386 1.245540 -1.367212 -0.691400 -2.207936 -0.398292 2.244224 -0.490975 -2.585047 2.337768 -1.382961 -0.011998 3.033369 2.379930 -1.105593 -3.038452 -0.304095 1.116148 7.602116 -0.310388 0.315996 -0.193129 8.210666 -4.543903 5.721989 -8.585166 -7.385476 7.187394 0.963073 -0.065580 -5.780069 -1.521002 3.314428 -3.395252 -2.859007 1.445068 -1.467511 0.196273 -3.940038 0.542211 6.850906 -10.499121 4.397232 1.066522 -2.080726 -3.955830 -0.983258 2.849844 0.740276 -1.721031 -4.826690 1.264681 1.743755 -4.647554 1.653396 -3.651041 -7.263206 6.358925 1.695678 -3.091249 1.986128 -0.157319 -5.167039 4.005111 -4.895513 -3.896638 -1.856803 3.351139 -0.209645 3.559088 3.050668 4.138901 -10.551431 0.097289 -8.394709 5.552922 -5.049596 6.296599 6.132282 -4.399637 3.021700 2.015416 1.683690 3.295875 0.656523 7.212907 2.114642 3.987844 -0.546774 2.976806 4.191369 -4.722792 -4.472010 -3.590790 -5.495495 0.187867 -0.885799 -9.027943 0.701946 -5.383141 1.201995 2.391564 -1.835079 -0.595152 4.975349 -10.378032 -4.102920 1.771880 -1.003539 5.485077 6.059986 -0.002988 1.291283 -0.668723 6.578465 -0.885582 0.113098 -1.708487 3.241024 -2.168718 -6.596028 -5.054371 0.498540 2.329858 -5.805250 -7.123475 -9.030973 -1.528014 2.289178 -2.212232 5.718174 11.461717 -2.388506 -6.467281 5.441750 -0.622658 1.160685 7.649165 0.830711 10.635023 -7.851875 3.533893 -0.957272 1.988935 2.457601 4.582148 -1.079343 -3.802778 2.283017 0.527681 -3.742231 3.168952 -1.068784 -0.358352 -2.431917 0.772050 -2.683003 -3.076679 6.862149 -3.350150 7.345855 -2.829890 9.558905 -6.518389 -6.902787 3.502785 -6.194592 -2.006397 -3.703971 -2.377422 -0.260995 5.522714 -6.594378 -3.454204 -2.508988 -1.608889 -1.057260 4.789061 -2.102724 0.367642 -1.195483 -1.183149 5.969312 4.431764 -1.243693 1.319935 -7.154320 0.922716 4.596250 -0.371539 -9.185521 0.474370 -5.276768 -0.753554 2.568629 -1.288812 3.511115 -2.655496 -3.248365 0.999637 -2.282426 2.177814 -2.373189 -5.089804 2.061470 -2.660456 1.058207 2.197631 7.742245 6.891596 4.848163 1.197476 -1.018783 1.992764 -4.200700 -1.696816 1.984275 0.977336 2.805484 3.294548 4.933371 1.772995 1.591627 4.989141 1.862480 -0.626259 6.874817 2.122139 8.495751 -3.205146 0.573688 0.602270 -3.544043 4.698201 9.466281 -3.833498 -2.135592 3.481924 1.637314 -1.503877 -4.523261 -1.331442 -2.799567 -3.593799 4.559079 2.338563 -1.593079 -2.505107 9.961753 1.081691 -10.603220 6.547681 -0.125691 1.829819 3.127776 -2.652616 0.308154 4.188238 -3.276977 2.302836 3.055196 5.925809 -6.103783 -1.666083 -0.813081 5.835927 2.824005 0.117136 -10.200236 1.801848 3.719865 7.791806 3.727028 5.733849 -3.766575 -1.235185 -1.081410 -2.270541 -1.489736 -1.130925 3.633961 -2.650198 0.169315 -7.130863 -0.765627 +3.217425 1.201168 3.384354 -3.603771 -0.795281 1.486576 1.619481 -3.131527 1.616808 8.357766 1.882173 -1.731719 -2.860223 4.416946 -2.559283 -2.952778 3.077672 -1.083127 0.645443 -1.717952 -0.096653 1.508921 -0.375787 -2.945677 2.001291 -1.916551 1.454670 2.477104 -0.484193 0.005983 -3.411578 -0.419947 0.350928 6.946265 -0.121320 0.543914 -0.778177 5.865324 -4.290844 6.876447 -9.174593 -6.126356 5.872908 1.100671 0.890083 -5.637025 -0.194691 1.939920 -0.526520 -3.612288 0.457857 -2.967852 1.737831 -3.881823 -0.216427 6.133876 -8.044611 1.049651 0.348697 -2.517647 -4.123482 -0.823656 4.580814 1.951086 -3.138852 -4.188725 2.281389 1.952505 -4.599190 2.441699 -4.002049 -7.305660 3.601308 1.576643 -3.569271 0.990190 -0.349475 -5.941803 3.087877 -3.987329 -2.579336 -2.240944 2.614980 -1.706575 2.173662 2.287925 5.447400 -9.390160 1.222704 -6.941849 5.609736 -3.930445 6.646355 4.737844 -2.165685 2.366048 1.808008 3.690695 2.093541 0.002597 6.060583 3.315746 3.669114 -2.268549 3.658940 4.016033 -4.570964 -4.865367 -2.792427 -3.765282 0.179199 -1.034587 -7.296305 -0.271275 -5.944146 1.691195 2.116029 -1.923282 -1.162042 6.440887 -10.669497 -3.768698 1.520775 -1.037053 4.806961 5.028570 0.705104 1.372027 0.789700 5.741834 -1.098054 -1.345660 -1.901895 2.817054 -3.973950 -3.664853 -2.781955 -0.178591 2.119604 -5.483617 -6.787002 -8.800797 -2.532999 3.665895 -1.063446 6.186050 9.416221 -1.201448 -5.953481 2.852067 -1.775226 -1.024991 6.856122 1.095263 8.976258 -8.643054 4.941862 -2.100603 4.143458 2.619708 8.021895 -1.932805 -3.085948 2.622505 -0.484862 -3.537248 3.872087 -0.692376 1.099475 -1.793670 0.149965 -1.622308 -1.892036 5.614301 -6.046510 6.598378 -4.259003 8.968976 -7.002563 -5.473239 2.129772 -6.959794 -2.059630 -2.923432 -1.358322 -0.397309 6.313137 -5.814804 -3.474994 -2.002761 -2.455339 1.319421 5.414231 -4.008011 -0.161369 -2.053337 -3.291266 8.488080 2.459381 -1.253367 0.613221 -4.937291 0.568125 4.139033 -0.386584 -7.385514 -0.425523 -5.404121 -0.709114 0.654967 -0.617092 3.879341 -3.893287 -3.238007 1.004998 -1.957015 0.758805 -3.394740 -6.565099 1.894283 -2.181984 0.362897 1.086815 7.057167 5.301304 4.038312 0.027346 -2.955643 1.496177 -5.222124 -3.391900 2.534611 1.720659 1.297147 1.994089 4.907922 0.244128 1.160323 3.655533 0.901881 0.814775 5.545622 1.028853 5.487129 -3.813369 1.441001 1.149219 -4.452297 3.771753 7.372471 -2.666583 -1.840732 2.636754 1.180024 -2.301107 -3.306380 -1.160413 -2.419452 -2.495313 3.431606 3.459599 -1.235984 -3.365742 9.450573 2.313420 -9.871572 5.421117 -0.583909 0.901936 4.612154 -3.311160 1.276690 2.955494 -0.797760 2.280142 1.354647 5.234338 -5.406751 -1.761733 -0.692585 4.542680 3.410039 -1.440686 -10.495729 1.004884 2.456169 7.821658 3.763972 7.535108 -3.331539 1.692391 -1.947874 -2.703292 -1.257552 -1.286027 3.943653 -1.722102 -0.244574 -8.441091 1.834226 +10.896400 -2.719851 9.900267 -8.536902 -4.212154 8.397780 -4.241501 -14.616972 3.104610 25.273349 9.073679 -8.095203 -0.212454 17.757371 -5.936757 -11.095820 7.264815 12.499101 2.853385 -5.097548 -1.153975 3.155551 -4.274871 -11.315178 4.284431 -8.913113 7.117789 8.543745 -3.846629 11.479501 -12.179330 -3.771799 -0.887895 26.196521 4.046820 4.354128 -1.082149 23.387248 -19.579637 27.235242 -23.411316 -24.419155 21.590592 4.824749 3.937183 -2.760199 -8.050929 6.318212 -4.552895 -14.930084 4.299262 -10.916394 9.511470 -10.623108 0.833518 16.125934 -23.856274 -3.112776 1.932045 -12.921803 -18.316871 -4.071330 12.326615 8.961824 -19.957967 -14.678861 8.887809 14.821272 -5.880875 3.662965 -15.200942 -33.167340 18.270497 5.111999 -11.925997 1.450369 2.447618 -19.788753 12.431419 2.318042 -15.533768 -7.800175 4.017163 -13.119566 9.727041 11.652036 27.909772 -34.871592 12.350690 -30.978587 21.478553 -12.380881 23.550191 19.984288 -16.908822 6.782257 12.678407 31.287756 8.159119 1.133683 21.824695 12.297378 1.236912 -5.907672 17.247119 15.616888 -17.906707 -19.238987 -14.747172 -16.103884 4.372573 -11.799663 -30.499324 0.892824 -19.895805 7.143219 -0.743437 -3.440373 -3.967603 26.200646 -40.326275 -5.797952 5.491285 -3.825688 17.280048 13.936683 -0.359464 6.942465 1.864242 20.181903 -8.435200 -10.823643 -6.642039 11.749676 -19.103700 -4.294010 -13.290509 6.992835 12.346332 -22.996159 -25.145355 -32.819821 -8.195978 23.822864 -4.460368 25.509617 36.411502 -8.809842 -17.844932 10.348753 -5.727963 -6.338736 28.187120 6.476165 33.480033 -29.835082 15.604676 -10.049784 9.522449 7.153409 13.924028 -4.548839 -9.901515 15.284281 -1.097449 -7.698826 34.597976 -6.973833 -0.708148 -13.478810 6.491123 -3.174903 -2.546524 24.980932 -25.636865 16.979349 -12.813288 33.035922 -22.944058 -15.035014 7.154691 -30.370953 -12.868784 -13.750859 -2.843528 -6.430134 26.301448 -20.947679 -13.056178 -6.413672 -11.004308 4.400286 18.778517 -2.472910 -0.051306 -2.946796 -10.540500 26.136244 13.879623 2.636009 -2.641044 -17.500171 1.390896 17.192457 -10.166084 -21.179824 -4.099066 -20.628123 -1.058448 -7.401193 -0.483002 15.784647 -22.550242 -9.797920 -3.537402 -3.241163 5.523424 -7.010118 -25.422187 9.539987 -4.329833 5.713281 9.521134 25.063929 22.409943 20.859831 7.339885 -7.317824 6.016562 -15.666593 -15.061947 13.541194 8.287158 12.649370 7.481540 20.754404 1.019616 7.058137 9.320460 2.157347 14.010162 20.714069 6.868076 25.213001 -5.036202 7.086845 2.404658 -11.957468 16.216448 30.017545 -10.417629 -0.613075 7.392623 0.975060 -12.702620 -10.965015 -0.364122 -5.890958 -10.181211 5.118611 12.059693 0.154520 -16.087359 34.102050 8.315489 -37.138982 16.657126 -0.447878 5.374996 24.749039 -12.728063 9.539329 5.934913 1.665768 16.588788 9.419115 18.535145 -23.262394 1.480872 -2.138041 15.613768 18.655027 -3.315639 -29.714687 16.962804 8.382368 25.181379 10.299263 20.580296 -17.072685 8.702864 -6.570449 -16.031885 -1.712346 -3.849053 14.567281 -3.622043 3.902531 -33.353605 -2.931925 +12.071265 5.935059 18.459197 -24.749066 -31.726207 8.104079 -7.392101 -13.008430 4.099955 12.642026 17.042745 -18.725994 -17.089394 37.985818 -10.273002 -28.208800 -1.505056 -13.598625 -3.077681 -5.112873 1.003437 14.364914 -4.238614 1.426724 3.246852 -4.224852 -5.668878 14.394037 20.110998 -12.208549 -22.737609 -3.276440 -1.059651 35.504544 1.363103 -5.368591 9.492715 55.205266 -13.894108 28.725163 -33.658971 -30.558022 22.845266 3.020624 -4.270004 -26.627412 -22.413944 18.921088 -25.090769 -6.684075 24.161716 -1.199423 -2.734941 -6.286350 13.146340 25.416392 -58.757495 29.200893 5.521648 1.690129 -3.303955 -6.086000 1.967736 6.155482 -6.044124 -19.410015 11.801793 15.432539 -20.554558 1.747960 -7.253264 -37.901791 48.604250 11.333071 -18.573320 8.273123 19.174072 -28.294656 28.772756 -29.851508 -35.122704 -1.611441 4.027797 -10.385100 35.589623 2.701801 16.033688 -52.142544 11.344716 -50.025036 23.465707 -34.890076 19.293923 37.281978 -32.262390 9.874048 16.510929 14.111603 27.936811 6.671507 38.695242 15.920926 12.938020 6.394772 18.487336 14.594237 -17.411214 -11.626638 -24.109133 -37.780221 -4.083316 -7.838169 -56.955212 6.175665 -7.335051 12.934803 6.596125 -0.252112 -0.440327 20.996693 -43.174474 -12.393525 8.368504 -5.350030 19.418166 37.383359 -12.356969 8.202594 -12.753822 41.313949 -14.281969 9.266852 -4.382041 11.711017 -9.779895 -31.709363 -42.482504 8.991582 15.564821 -22.945482 -36.362306 -41.425357 -2.695708 7.437834 -11.606111 39.611793 65.437241 -17.295138 -30.927607 39.154796 10.129767 7.691194 42.848190 2.013091 51.013083 -24.282102 1.246160 -14.977117 -6.818519 -5.543307 -1.246895 8.763565 -6.878058 12.639439 6.435020 -24.872378 35.870343 -8.685658 -16.417240 -8.164982 5.321872 -17.892996 -23.418326 41.588027 0.988775 29.862916 5.751381 51.644233 -19.262985 -35.917129 19.068737 -17.393949 1.169829 -21.366369 -13.637853 4.029310 24.523685 -29.847263 -15.604681 -11.670869 -11.572025 -14.989171 10.689222 14.812445 9.809771 6.456151 10.526940 25.291076 43.180467 5.756336 8.217847 -43.151945 8.863503 19.001289 -14.342549 -38.193120 6.898770 -22.731208 1.084431 13.338036 -7.110609 11.753519 -19.196402 -23.437587 -6.678464 -10.683982 18.096272 4.199073 -36.099495 6.362522 -9.806584 15.885353 16.913847 26.253326 42.631842 32.135453 26.755940 0.615069 7.781196 -3.359726 3.279430 1.231792 7.809917 16.272977 15.279989 29.660765 14.426391 6.349739 25.136634 21.233633 -0.552262 32.137162 12.372652 54.189314 -6.031509 -1.628106 -8.546614 -9.445093 28.356757 62.063162 -22.976283 7.228398 17.583986 18.480317 -4.806094 -33.404639 -0.952329 -17.017557 -11.084547 17.953575 5.201708 -4.936450 -8.452228 38.869789 2.147486 -49.565003 23.963527 0.133521 11.024939 18.953644 -3.789828 -0.974847 14.271539 -33.886204 24.737544 22.973923 24.766690 -26.291459 -10.884511 -3.027036 24.447151 2.447183 19.505527 -37.383079 15.123450 22.728341 32.728868 17.082709 18.879959 -25.397562 -23.501010 8.276693 -19.624299 -12.927774 2.996022 17.036692 -23.477863 7.312111 -23.874355 -28.747335 +5.505960 1.519143 3.050397 -4.181165 -0.662073 2.302759 1.883153 -5.766869 0.070864 12.345822 3.794768 -3.678321 -3.355723 5.295787 -2.187141 -5.471578 4.828271 4.178078 0.419052 -3.639111 -1.756654 0.995927 -1.277676 -5.673994 3.111585 -3.584174 2.132101 3.543873 -0.838529 2.536619 -4.696316 -0.843999 1.284433 11.470473 0.712810 0.792591 -2.429943 8.871512 -6.696820 9.407160 -11.415382 -9.167159 10.261073 2.200615 2.142625 -5.687196 -1.486548 3.338321 0.525070 -6.718376 0.078501 -4.915400 3.247721 -6.319599 -1.187101 10.300634 -9.757698 -0.179062 1.596018 -6.350328 -8.487464 -0.681607 6.777801 2.480460 -6.189699 -7.482628 3.027904 4.205765 -3.672655 2.988727 -8.961650 -13.867376 5.384098 2.856456 -4.559724 1.246793 -2.184189 -7.806033 4.037464 -0.187646 -4.487872 -4.067917 4.310937 -1.102201 1.845423 5.335817 10.327824 -15.199843 1.927776 -12.541187 8.747017 -5.196816 11.896486 7.937091 -3.309686 3.741304 3.831785 6.009704 1.850220 0.502786 9.881755 3.248067 3.166338 -3.760273 5.632715 6.807928 -7.513103 -9.019851 -4.148233 -5.580158 1.633644 -1.289563 -10.474021 1.083684 -11.684028 1.451264 1.635660 -2.205734 -0.986608 9.951151 -15.008971 -6.226031 3.098879 -2.084410 9.306594 7.437681 1.746468 2.591696 0.413854 7.980438 -0.998313 -3.185720 -3.551978 5.515896 -5.517516 -6.459503 -4.315084 1.131810 4.987791 -10.432298 -10.850753 -12.696692 -3.521272 7.126555 -3.030334 8.197368 15.144817 -3.559000 -7.357639 3.915893 -2.807643 -1.275832 10.902087 2.360042 16.829288 -15.126789 8.958308 -1.500487 6.415715 5.180605 8.728014 -3.954863 -5.936887 5.475905 -0.456942 -3.152916 9.288887 -2.806825 1.482527 -0.583259 1.768949 0.644539 -2.064440 8.855465 -8.638128 9.452839 -5.632788 14.048334 -10.750270 -7.364323 3.758879 -9.513595 -5.739075 -4.482689 -0.349583 -2.315655 10.610759 -8.132277 -5.786690 -2.496866 -4.448547 2.201107 9.339422 -3.237719 -0.744555 -2.727253 -6.065145 9.551412 3.990831 -0.836755 0.079882 -8.049624 0.849773 6.277686 -1.719202 -10.360298 -1.875956 -8.674987 -1.228495 -1.388017 -0.831027 7.158377 -6.039831 -3.818854 1.199332 -2.124463 1.737548 -4.927718 -6.486333 4.234950 -2.948453 0.169435 1.549950 12.986979 8.676226 7.755491 0.344003 -4.411686 3.177760 -7.585817 -7.291964 5.406095 1.503011 5.486975 3.741074 5.346257 -0.317588 2.973256 5.526603 -2.327390 4.340476 8.883529 2.582126 9.810692 -4.213200 2.638223 2.701644 -7.845239 6.524920 11.701312 -3.392208 -4.426083 3.722221 -0.321932 -5.478445 -5.094438 -1.172250 -1.965476 -6.805261 4.391700 6.364661 -0.816136 -7.128425 16.159426 3.171084 -16.717546 9.237858 -0.284072 1.636391 9.229373 -5.530115 4.272902 4.280766 2.057759 2.731514 3.436455 9.588306 -10.353317 -0.228644 -1.161083 7.265750 5.233201 -4.038826 -16.346323 3.960315 4.691845 12.046361 5.083049 10.176581 -6.193911 4.503154 -3.117018 -3.811640 -0.735532 -2.578961 6.372946 -2.136490 -0.100225 -13.747023 4.092222 +48.179088 2.382870 70.535392 -94.315716 -117.151771 45.601707 -55.883923 -57.114852 22.288247 38.045567 62.501215 -57.855738 -48.245520 133.365837 -33.581652 -107.184924 -3.193063 -41.957080 1.624461 -25.563840 9.398788 45.086840 -16.611828 12.807573 -4.152030 -27.506333 -15.027057 47.854553 78.334011 -36.761884 -90.677822 -15.768220 -22.087462 129.645096 15.831533 -18.591119 36.604493 208.206532 -28.432483 99.465271 -113.597956 -109.866696 67.669758 10.978984 -19.915632 -70.188488 -83.372830 61.730013 -88.010126 -19.645649 96.686015 -12.104809 1.895070 -7.600976 44.469316 74.455231 -197.712484 88.899643 11.428621 6.446959 -6.112503 -24.669657 12.465767 42.145689 -35.943583 -66.022925 65.108536 73.020871 -72.668370 -0.680969 -23.343346 -149.676325 178.091742 51.163756 -70.260431 18.374763 88.678825 -106.564044 107.881769 -79.283363 -144.277872 -3.189079 -4.879046 -68.262397 140.287022 -3.091874 76.678588 -192.966006 68.669408 -194.199269 84.395982 -121.557893 70.943517 136.203917 -127.909654 25.908755 73.695534 96.802475 104.928324 5.203437 145.430295 63.456107 25.058044 28.264102 85.728189 40.250443 -54.219759 -32.208452 -88.985425 -141.309078 -15.038572 -51.475739 -217.942446 27.275760 -24.534423 41.648264 7.938554 10.619909 -11.388519 84.826328 -167.155853 -49.469701 23.306686 -20.289866 67.913575 130.574770 -55.367232 40.399084 -38.715731 159.109545 -68.575333 23.852221 -14.300839 40.432967 -37.104387 -74.501092 -169.432218 45.659531 72.552925 -87.635827 -138.936202 -141.387420 -19.166203 36.156599 -35.068375 178.891059 244.529426 -67.913388 -111.283912 141.042519 24.785973 17.020999 171.632903 8.196829 182.556268 -86.453897 -1.063456 -73.163606 -27.547482 -29.626642 -30.015614 39.337544 -1.708014 57.609227 22.735525 -55.719773 153.829028 -44.051258 -72.783259 -39.488284 24.051357 -63.891204 -88.724278 150.382643 -4.760811 98.109627 41.775676 189.172113 -64.023906 -126.264749 66.357564 -67.080796 0.750600 -73.386303 -42.500828 0.557669 98.050195 -104.239711 -59.460409 -45.097450 -52.612149 -49.107124 32.041178 92.169954 47.101629 36.151672 43.522522 106.395852 180.826446 43.708146 16.360161 -155.032108 36.474625 83.322684 -65.199479 -101.848884 15.275764 -88.432533 9.689421 33.101006 -23.251708 52.324162 -92.849178 -91.180254 -50.913090 -21.287700 76.199083 32.656554 -172.923347 28.866411 -24.216996 61.163183 67.640175 89.461739 154.646202 127.692179 118.408734 -9.989539 33.598212 -3.416971 10.628073 -3.437018 39.043516 71.815673 50.918792 121.458383 51.774903 30.002113 96.138799 88.224626 20.690650 114.024557 32.774686 207.295937 -14.243679 0.952537 -47.062590 -32.164538 106.288246 247.625101 -77.421946 49.925608 63.395102 74.011919 -23.319808 -145.686748 5.990999 -63.155788 -14.932268 41.740170 23.013439 -7.735469 -45.214160 136.725364 17.487889 -184.878814 82.623461 0.005409 36.693884 96.477404 -17.690356 -1.098229 35.103857 -134.701140 108.915871 92.684795 81.609840 -97.082653 -19.324237 -9.314484 89.358447 -8.849066 76.402236 -107.592120 78.982974 80.381956 119.986194 73.491169 61.137593 -105.146139 -85.490548 42.588064 -90.949177 -45.743273 25.213886 70.062069 -96.175150 34.520706 -87.484451 -119.698034 +1.780095 0.688934 1.983596 -1.518427 -0.383898 0.551923 0.774519 -1.654597 0.215325 3.858351 0.748004 -1.160902 -2.735830 2.060498 -1.367191 -2.655216 1.110027 0.426931 -0.183518 -1.548838 -0.681036 0.549883 -0.225730 -1.839206 1.710336 -1.256318 0.751432 1.804404 0.378764 -0.182478 -1.200158 -0.286088 0.712456 4.476443 -0.293533 1.006569 -0.349870 4.059250 -1.297593 3.424096 -4.989230 -4.291638 4.199749 0.429922 0.484184 -2.774561 0.095864 1.732173 -2.362824 -1.675834 -0.023276 -1.194867 0.195249 -2.894887 -0.162023 4.020438 -5.742136 1.807733 0.292044 -1.946987 -3.178978 -0.483746 1.879053 -0.096138 -0.586750 -2.837811 0.622113 1.349087 -3.062824 1.798916 -2.376202 -3.815641 3.313820 0.643365 -1.718904 1.261386 -0.164304 -1.752508 1.657770 -2.092533 -1.564765 -1.870929 2.207843 -0.076026 1.667813 2.173569 2.439170 -5.823556 0.358432 -4.348607 3.508943 -2.552935 4.121730 3.088785 -1.969031 2.429931 1.308962 0.649983 0.251480 0.283785 3.901963 0.826073 1.810061 -0.628782 1.703795 1.591092 -2.742263 -3.168045 -1.831551 -2.426387 0.113468 -0.418563 -4.324151 -0.204896 -3.793613 2.247491 1.421106 -0.527725 -0.369246 2.213836 -6.760805 -1.755404 1.237650 -0.770933 3.580850 2.618097 0.432708 0.593008 0.237011 3.487774 -0.667296 -1.006703 -1.226608 1.910849 -0.399527 -3.248012 -2.295127 -0.370550 1.254653 -2.994052 -4.205091 -4.593749 -1.513654 2.363015 -0.947719 3.248884 6.163004 -0.780409 -3.266818 2.151738 -1.575630 1.013929 4.238145 1.223465 5.535929 -4.917298 2.456392 -0.596391 2.050864 2.385283 2.127002 -1.262329 -2.492458 1.957415 0.623093 -0.604809 1.938003 -1.112708 0.557963 -0.962084 0.123003 -0.966306 -1.064225 3.487009 -2.173338 4.469988 -2.010827 5.660833 -4.095593 -3.836889 1.177386 -3.964962 -1.381507 -1.513138 -0.787176 -0.854015 3.096295 -4.265795 -2.504902 -1.197662 -1.115684 0.536764 3.493822 -0.707877 -0.196884 -1.240132 -1.612898 4.172885 1.380943 -1.106923 0.316305 -3.804601 0.127032 2.093946 0.004658 -4.657498 0.266538 -2.475278 -0.589664 1.399641 -0.220145 2.008456 -1.380414 -1.327998 0.693005 -1.291983 0.557383 -1.975217 -2.069842 0.794918 -0.955503 -0.330996 1.120954 4.532899 4.127039 2.090313 -0.274065 -0.690730 1.056724 -2.864880 -1.239035 1.290068 0.436762 2.276670 1.432016 1.720414 0.580231 0.685495 2.119017 0.550473 0.174589 3.685218 1.556198 4.110341 -2.682368 0.587615 0.879195 -2.211651 2.413632 3.953563 -2.913802 -1.006641 1.978363 0.916388 -0.588621 -2.380168 -1.037754 -1.338909 -2.191424 2.721024 1.873974 -1.042694 -1.613585 5.884365 0.892309 -5.950031 3.840479 0.027149 0.588171 1.733231 -1.698757 0.223325 2.501245 -0.637860 0.319728 0.852310 3.459859 -3.925813 -0.129934 -0.454634 3.256921 1.425744 -0.585516 -5.618011 -0.064591 1.558279 4.450986 2.135787 3.134116 -1.723536 -0.065891 -1.282045 -1.632547 -0.692718 -0.437059 1.943635 -0.454072 -0.272417 -4.513520 0.438254 +2.232191 1.534005 2.556824 -3.140480 -1.255204 1.317366 1.046863 -2.842687 0.706272 5.851317 2.053484 -1.817759 -2.734529 3.353802 -1.935006 -2.849336 2.050276 0.128437 -0.057137 -2.537732 -0.373235 0.819798 -0.522882 -2.675880 1.273919 -2.064339 1.479579 1.752289 0.539641 0.120104 -2.558964 -0.665947 1.066924 6.078447 0.285575 0.949280 -1.388547 5.198286 -1.990741 4.825221 -7.173551 -5.889227 5.303256 0.985084 0.880417 -5.024987 -0.192819 1.987600 -0.037027 -2.847696 0.107054 -2.343077 1.250866 -3.385823 -0.729839 4.855596 -5.717054 1.206868 0.428621 -2.995156 -3.910816 -1.017250 3.619717 1.614808 -2.598349 -3.373433 1.726431 2.188252 -3.756861 1.954191 -3.660674 -6.422214 3.571552 1.397930 -2.647871 0.729380 -0.701265 -4.264965 2.289991 -1.699347 -2.501541 -1.788278 2.562318 -0.037590 1.384050 2.395453 4.584236 -8.252973 0.124839 -6.663935 4.485176 -2.962505 6.017981 3.814552 -2.200530 2.160143 1.818588 2.535216 1.492539 0.353242 5.367063 2.045301 3.150154 -1.643349 3.549107 3.310971 -3.265083 -4.282708 -2.027551 -3.836806 0.459956 -0.193765 -6.110705 0.044042 -5.632390 0.005229 0.750625 -0.988879 -0.763925 4.350634 -8.656924 -4.224116 1.769753 -1.072432 4.841727 3.950002 0.630779 1.816654 0.732541 4.746236 -0.848350 -1.021185 -1.763973 2.606645 -1.928954 -4.098737 -3.226419 0.389148 2.369417 -4.773305 -6.035839 -6.869956 -2.349378 3.262789 -1.342886 3.669800 8.326639 -1.440625 -4.732385 2.570121 -1.117557 -0.402285 6.073792 1.127461 8.697252 -7.459089 4.454416 -0.729380 3.172143 2.569604 5.396729 -1.920823 -2.943972 2.282066 -0.346761 -2.598559 2.856266 -1.865380 0.582255 -1.336906 0.354089 -1.367077 -2.078021 4.486936 -3.766630 5.664874 -3.089875 7.620973 -6.240588 -4.894236 1.932770 -4.913487 -2.078686 -2.105120 -0.084918 -0.851286 5.902170 -4.688477 -3.275534 -1.284850 -2.168606 0.904541 4.393280 -2.856370 -0.273944 -1.406673 -2.465848 4.923637 2.492868 -0.798399 0.297691 -4.403519 0.259530 3.795720 0.660735 -5.783045 -0.670010 -4.892339 -0.829553 0.053922 -0.444777 3.302173 -1.950554 -2.255994 0.631965 -1.984585 1.002773 -2.477478 -4.134857 1.898650 -1.784232 0.267838 0.166237 6.658931 4.853650 3.843800 0.371139 -2.346519 1.740105 -4.349321 -2.587056 2.045519 1.369702 1.881652 1.962512 3.580813 0.640604 1.512555 4.056003 0.019665 0.787462 4.779166 0.889074 5.648294 -3.555022 1.425742 0.844721 -3.661722 3.425534 7.370472 -0.976433 -2.270830 2.278711 0.741332 -2.003452 -3.498155 -1.170638 -1.430899 -2.650580 3.094610 3.588278 -0.784220 -3.092030 8.528632 1.569491 -8.628329 5.089170 -0.501299 0.976674 4.102280 -3.260779 0.882973 3.054000 -0.225242 1.590742 1.764466 4.715045 -5.083987 -1.613291 -0.843527 4.464692 2.117384 -1.785075 -8.314858 1.990043 2.546012 6.539693 3.174644 5.186579 -3.351492 1.145363 -1.396924 -2.247959 -0.988464 -0.511325 3.697273 -1.419620 -0.832297 -6.937198 1.529157 +15.231383 6.708310 21.973470 -30.251425 -42.193389 10.411527 -14.949570 -15.214422 4.620475 8.252315 19.721854 -22.359506 -19.234275 45.715765 -13.866221 -36.009624 -5.231208 -17.287581 -3.698454 -6.612321 2.436338 17.546325 -4.085804 5.346410 1.206761 -5.085552 -8.618036 15.792575 30.241662 -17.480275 -27.644074 -3.575937 -2.000295 40.380506 2.114598 -8.879996 13.985187 67.815677 -7.860574 28.379412 -36.557830 -33.856316 22.934346 3.086139 -6.411855 -31.387788 -30.084048 22.746033 -32.694144 -3.643208 31.173179 0.508933 -5.596436 -3.854744 16.315658 27.113808 -70.298162 39.269735 5.607970 6.159045 1.129594 -6.704996 -0.123706 7.807209 -2.922354 -22.212600 14.930824 21.570316 -25.688949 0.530474 -4.926118 -42.637038 63.346040 13.145387 -22.657295 9.209778 27.075885 -32.047926 35.010830 -37.521173 -44.635885 0.397767 2.572176 -11.979741 45.929499 -0.422845 16.323287 -61.073322 16.223750 -59.810163 25.906008 -42.283074 19.739248 44.353632 -42.307995 10.052022 20.443412 16.462753 36.594018 9.052784 47.191043 18.578987 12.732232 10.483543 20.805947 13.235369 -16.334657 -8.714082 -27.988411 -47.078588 -7.029214 -9.336975 -73.003627 8.570502 -3.716267 17.449801 6.023026 1.471473 0.601584 21.806051 -49.292668 -15.944704 8.843981 -6.015224 20.644105 44.657712 -17.609513 10.852065 -17.280282 50.813168 -18.504923 11.736004 -2.491909 12.014391 -8.966870 -39.042781 -56.070969 12.520124 19.281562 -24.728010 -42.450652 -44.814204 -2.217450 4.746979 -13.935632 49.038234 78.111736 -20.636205 -36.423813 49.150663 14.137999 10.205548 53.153121 1.216666 59.898723 -24.406201 -4.076838 -18.391619 -12.538276 -9.488611 -13.493616 13.286026 -4.075909 14.539259 9.062394 -28.168525 42.190089 -12.124154 -23.546867 -8.255962 6.025848 -22.028240 -29.320781 48.889774 8.182497 34.165577 13.279866 61.176812 -18.154063 -44.450232 22.293578 -15.971568 3.898398 -22.495440 -14.981413 4.187123 27.289863 -34.746184 -17.636836 -11.887298 -14.004056 -20.651549 9.110995 27.677116 14.804188 11.163051 17.100841 28.243292 56.379938 9.456864 10.577028 -52.669697 11.190818 23.105942 -18.617193 -42.520785 9.032721 -25.769786 2.967985 16.995561 -9.590851 11.916681 -22.226769 -29.124019 -12.515627 -12.046063 25.026251 9.429268 -41.546815 6.624681 -12.087261 21.044264 19.974753 28.104693 52.547280 38.673504 36.315395 2.394255 10.504682 -0.168213 10.247680 -1.865161 10.364115 19.842003 18.055541 36.060012 18.368216 7.706177 30.950394 28.779565 -0.976944 37.316493 13.544177 67.977369 -7.327113 -2.774421 -15.349054 -8.470224 34.723182 78.616258 -28.220244 12.668683 20.686414 24.822415 -2.242955 -45.024141 0.292329 -20.283802 -10.530831 19.340218 4.379568 -4.576972 -8.469510 41.566969 2.028486 -56.171522 28.283812 0.489247 12.350838 21.433954 -2.328422 -3.470647 15.263190 -45.571669 28.475790 29.697346 27.444117 -29.822149 -12.920619 -3.482539 29.601745 -4.739478 28.275567 -37.262718 20.176305 29.586569 37.030463 19.733254 16.803521 -31.106010 -35.288408 14.922729 -22.785834 -16.564053 6.697449 18.825242 -32.054953 9.653259 -20.546400 -40.873957 +4.367452 1.444437 2.356492 -3.513331 -1.034093 1.875416 0.827553 -4.264813 0.229028 9.360005 2.791454 -2.856684 -3.802405 4.866664 -2.257338 -4.988203 3.165605 1.946210 0.328482 -2.896800 -1.216399 1.253948 -0.759297 -4.370159 2.620018 -2.937899 0.859980 2.764329 0.307152 1.136272 -3.818564 -0.535908 1.122103 9.008532 0.269416 0.437005 -1.120547 7.511931 -5.184223 7.327731 -9.499213 -8.028588 8.216321 1.699964 1.366456 -4.618892 -1.082752 2.498484 -1.136269 -4.186265 0.382593 -3.703519 1.949251 -4.762315 -0.342878 8.382647 -9.392576 1.830151 0.756503 -4.280824 -5.884391 -0.698307 4.579616 1.531578 -3.167926 -5.898648 2.126941 3.852470 -4.053162 2.271339 -6.224117 -10.145179 5.602341 2.263486 -3.749272 1.240793 -1.243750 -5.784275 3.345270 -2.538774 -3.695630 -2.945696 3.799616 0.058965 2.081980 4.568422 7.323409 -12.122073 1.096653 -9.724879 7.230832 -4.262378 9.174324 6.167096 -3.104731 3.057334 3.113845 3.470314 2.043094 0.666821 8.198767 2.396530 2.931625 -2.449286 3.643314 5.163415 -5.732234 -6.339939 -3.157404 -4.481560 0.613237 -0.638544 -8.866335 0.454128 -8.631051 2.286622 2.023240 -1.899808 -0.854046 7.099912 -12.389965 -5.413471 2.074096 -1.610780 7.623411 5.792507 1.287866 1.785799 0.266757 6.871041 -0.992670 -2.442001 -2.823211 4.111566 -3.646058 -6.283860 -4.439405 0.751055 3.518768 -8.235181 -8.531446 -9.712295 -2.516643 5.302897 -2.244968 7.120900 12.510897 -2.681964 -6.177374 3.866193 -2.523141 -0.175563 9.229639 1.837489 12.980925 -11.402697 6.574280 -1.174307 4.639391 3.798095 6.272800 -2.663784 -4.611889 3.618572 0.672280 -2.174628 5.506491 -2.188517 0.791594 -1.540371 1.000500 -0.247738 -1.459176 6.915544 -6.108716 7.734391 -4.039387 11.437772 -8.553588 -6.917071 3.157783 -7.528423 -4.305745 -3.150347 -0.743349 -1.381242 7.473149 -7.132059 -4.418714 -2.063310 -3.017713 1.092581 7.143863 -1.912474 -0.308628 -2.029582 -4.354319 8.260502 3.597407 -0.833197 0.502853 -6.818210 0.642304 4.878612 -1.616433 -9.471343 -0.739626 -6.316764 -0.666318 0.768178 -0.932903 5.168838 -4.086785 -3.242193 0.718383 -2.068799 1.973176 -3.816284 -3.889415 2.952241 -2.394954 0.024438 1.424175 9.809036 7.204204 5.805300 0.360027 -2.872872 2.389241 -5.923506 -3.799855 3.988671 1.448828 3.965737 3.084329 4.933920 -0.184373 2.148815 4.810862 -0.579491 2.407800 7.023736 1.962780 8.218906 -4.079697 1.768104 1.620035 -6.065219 5.257870 9.673455 -4.488355 -3.037044 3.271813 0.357076 -3.021722 -3.873636 -0.806893 -2.190211 -5.361466 4.314738 4.782968 -0.649143 -5.267173 12.454135 2.525864 -12.791291 7.858885 0.070410 1.340613 5.926811 -4.217057 2.203140 3.702927 0.252409 1.768691 2.809962 7.564259 -8.046673 -0.789444 -1.054394 6.034829 3.697314 -2.364743 -12.187030 2.271381 4.386262 9.558029 4.305609 7.344032 -4.605398 1.678637 -2.505985 -2.867074 -0.909228 -1.811247 4.489216 -2.543031 0.581236 -9.384185 2.308355 +1.592211 1.879017 1.735990 -1.897574 -2.773262 0.741324 -1.887436 -2.158685 0.346243 2.394379 1.093695 -2.197910 -1.975290 3.240228 -3.071350 -2.707058 -0.904313 -0.517375 -0.256164 -2.505731 0.207230 1.071120 -0.130898 -0.526094 0.170135 -1.234813 0.256818 0.575731 2.415492 -1.094006 -1.456438 -0.074566 1.127873 3.445819 0.296965 -0.059495 0.280665 3.550550 0.852437 1.316009 -5.540386 -3.591180 2.135682 0.860765 0.663931 -4.334277 -1.405765 1.283293 -3.000159 1.226344 0.344845 -0.975015 -0.723402 -0.998860 0.363219 2.673881 -5.695497 4.734541 -0.150235 -1.025906 -0.952851 -0.093305 1.421281 0.612481 1.250535 -2.082095 0.453869 3.349376 -3.239955 1.701627 -0.725363 -2.960853 3.986246 0.098242 -2.367352 0.403472 0.213823 -1.554568 1.675017 -4.892360 -1.886673 -0.565222 2.439437 1.219785 1.327999 1.900134 1.291719 -4.815945 0.038147 -3.996788 2.546607 -2.112775 2.770858 1.913526 -2.890569 0.893438 1.028103 -1.155125 3.245582 1.665773 3.227896 1.040006 1.949617 -0.188524 0.635531 1.397621 -0.386143 -0.775029 -0.534071 -3.200336 -1.278595 0.728539 -5.537553 -0.277024 -2.203399 2.486436 0.221479 -0.624174 0.451230 1.478071 -5.394617 -4.043185 0.442303 -0.315471 2.764312 2.422422 0.003844 1.606102 -0.473786 3.389715 -0.672552 -0.775316 -0.409232 0.857657 -0.638674 -5.699782 -5.472424 0.713694 1.165140 -2.055387 -3.325883 -3.228624 -1.275326 0.457759 -0.795619 3.074503 5.195789 -0.816451 -3.988430 2.695779 -0.236619 -0.024402 5.460471 0.470868 5.485259 -3.395950 1.488578 -0.608581 0.563679 0.795261 0.047716 -0.677718 -1.382330 0.793526 1.165762 -2.280908 -0.527308 -1.173871 -0.758763 -1.681736 0.023231 -1.022460 -0.650898 2.367833 -0.479093 3.893277 -1.420448 4.808951 -3.690871 -5.075874 1.058546 -3.306275 -0.398424 1.381601 -0.002959 -0.334875 3.224631 -3.791863 -1.600691 0.117595 -1.440744 -0.655397 2.055833 1.236793 0.380443 -0.046159 -0.404911 3.990988 2.787068 -0.502556 1.424939 -3.120465 0.282317 2.714561 0.719162 -5.571810 0.514879 -2.722380 -0.021266 1.223143 -0.700777 1.225947 -0.450228 -1.280458 -0.916328 -2.101384 2.530930 -0.727102 0.396575 1.203773 -2.933496 0.912396 -0.104542 3.106622 3.661839 2.241660 1.082639 -0.558044 1.211878 -3.330725 3.237679 1.006458 2.493206 -0.219995 1.192248 2.978478 0.400766 0.552154 2.615365 1.634003 -0.915122 2.985163 -0.116081 4.422379 -4.514034 1.585529 -1.438592 -1.306200 2.263729 6.296051 -2.820244 -0.850663 1.291938 1.290378 1.054497 -3.705013 -0.963591 -1.099915 -1.917717 2.410242 1.966507 -0.710629 -1.050288 4.047378 1.403722 -3.649605 4.263678 -0.014653 -0.360616 -0.016689 -1.667416 -1.832291 2.215294 -2.147485 -0.598298 1.784396 2.655237 -3.029780 -2.662456 -0.763840 3.552940 0.292719 0.803472 -3.723133 0.903197 3.660674 3.784391 1.422198 1.816166 -2.235956 -3.185137 0.308920 -0.667368 -1.620468 0.627073 1.108883 -2.217377 0.582277 -0.179794 -2.047989 +3.164754 4.492732 11.428030 -11.618138 -16.622591 2.764745 -0.256385 -6.356934 2.978113 12.474618 6.057313 -7.688639 -7.825685 18.198829 -6.609860 -11.059817 -2.190970 -6.325234 -0.735117 -4.750046 1.560661 8.417621 -1.655275 2.349398 0.577667 -3.874797 -0.678280 7.694900 5.048398 -1.763255 -7.013062 -2.937421 -0.267363 15.222644 0.097972 -0.388183 2.000740 23.956047 -11.395562 17.140828 -18.807533 -16.868283 8.960247 1.838879 0.601881 -16.342593 -9.548964 7.371103 -8.289341 -3.352194 10.540362 0.769536 0.501442 -1.821906 8.349421 8.015111 -24.229680 10.592974 1.130816 -3.979132 -1.704497 -2.564462 -0.205852 6.301344 -7.390891 -7.837825 3.915076 7.434511 -7.765081 3.076516 -0.306521 -16.000711 17.623489 4.238656 -10.563307 3.767187 11.206967 -13.924181 13.767177 -15.579032 -15.359098 -1.042145 1.701606 -6.385529 13.325163 2.315905 10.078621 -23.076364 5.073591 -20.342713 11.957048 -15.287185 7.071763 15.987845 -10.512288 5.264212 7.699544 8.261843 15.071014 0.697690 14.786997 11.102365 10.649171 4.742478 8.843256 9.842617 -9.615276 -7.890804 -13.756657 -17.342562 -0.103345 -6.032861 -24.349988 0.914946 0.977051 3.603743 3.506837 -2.894175 -0.775609 14.530160 -23.163460 -3.665410 6.068872 -2.151930 5.360283 14.315976 -5.703202 4.840991 -3.683237 18.085200 -8.313851 6.156378 -0.592054 5.225231 -9.409542 -10.073718 -17.837034 4.416939 4.581616 -8.623122 -14.416277 -20.466586 -3.135471 7.705355 -3.795321 15.503489 29.365263 -8.064449 -16.151321 16.530086 4.509208 -1.608318 14.791891 1.790862 19.374405 -9.008248 -1.166895 -11.286657 -3.398201 -0.791697 16.329910 6.217260 -4.137901 7.813474 1.390701 -16.307379 12.620829 -5.661562 -8.069747 -9.767962 2.745923 -9.258110 -5.896470 17.970516 -8.799213 14.206609 -4.716374 21.028565 -9.525393 -15.405573 5.657788 -16.737062 1.089634 -11.617039 -4.387084 4.007333 12.524818 -14.624892 -6.557238 -7.072890 -8.940228 -5.799798 3.176481 -7.344664 3.551945 2.519153 5.703190 19.084248 19.218215 4.977284 1.049904 -17.020593 5.133348 6.707215 -3.799698 -19.758774 2.546414 -9.667388 -0.375102 1.759345 -2.607519 4.698197 -8.360739 -8.436534 -3.980496 -9.076469 4.696258 1.205091 -19.308933 3.292856 -4.064615 11.869401 5.822354 9.163296 19.707827 14.705706 13.716958 1.219237 2.891106 -4.912257 0.772508 5.228045 8.431082 -1.011273 6.306562 18.181149 6.908583 1.903509 12.981548 11.898947 -0.108141 13.686875 0.781763 23.141723 -4.807564 0.623346 -4.313850 -0.690617 10.604044 27.741107 -4.253270 3.760033 8.114259 7.063949 -3.276661 -11.028603 -0.541831 -8.431981 -1.870611 10.215342 5.457007 -5.749742 -2.062244 16.185679 1.810176 -21.209804 8.065221 -0.255043 4.635339 8.819754 -2.356076 -1.213728 6.929138 -13.717229 13.711857 9.735628 8.971690 -12.626113 -8.774386 -1.159029 8.693060 9.232785 9.485620 -23.616194 3.495899 9.468770 15.745773 3.950939 15.990804 -12.241147 -9.053045 6.048845 -8.914245 -7.742190 1.610739 7.302459 -9.551748 4.956249 -12.140625 -14.284550 +18.113397 8.741022 25.493415 -28.751029 -38.304894 11.668574 -11.950716 -18.367919 6.573812 25.594678 20.622334 -23.515739 -22.208244 45.092663 -17.363225 -34.985703 0.050537 -12.321131 -0.611627 -11.986545 0.879955 16.665431 -5.142155 -1.646241 5.321434 -9.049232 -4.636884 18.390423 24.029017 -8.784493 -28.395046 -3.536644 -0.485158 47.403195 1.897208 -7.155372 11.811843 67.811155 -19.070153 34.904948 -46.758208 -44.013319 31.406622 6.155461 -0.553405 -31.007503 -24.875785 22.118115 -35.106090 -6.489675 27.205954 -5.311181 -0.311029 -9.602641 14.904980 32.797619 -76.864315 36.298758 4.184497 -2.371731 -9.016670 -6.805858 5.972428 10.030787 -6.344597 -25.698109 15.456273 25.003008 -26.944658 5.660066 -11.150107 -49.145098 56.362016 12.320842 -24.476513 9.656482 23.556672 -35.756013 34.989010 -39.352328 -42.959443 -3.824772 8.144203 -13.781113 41.796855 8.324754 25.284273 -67.716378 15.357261 -63.578895 33.750045 -41.641054 28.804751 46.016663 -41.311058 13.243492 22.151001 20.086193 35.814853 8.326965 50.626950 22.007761 17.707824 5.282010 22.509303 21.205026 -22.870518 -16.191319 -30.030002 -45.850137 -7.282189 -10.260698 -71.470029 5.160441 -15.004392 19.503803 9.076717 -3.727842 -1.891882 30.594487 -62.168094 -20.536741 9.461174 -6.525138 27.726263 43.400137 -13.264517 11.834807 -11.097378 53.897693 -18.540520 4.342537 -5.931498 15.714727 -14.890132 -41.856827 -55.880661 12.088002 20.577205 -31.720691 -48.146856 -54.488775 -5.882597 12.816851 -12.400588 51.240748 83.813069 -19.059581 -40.445337 46.540782 3.944895 6.009103 60.310148 4.460989 65.703613 -36.144386 6.787994 -19.977923 -3.198078 -4.175808 3.318463 8.077488 -9.784758 17.283405 10.737529 -24.374798 38.393726 -12.207028 -17.240185 -17.843670 7.033933 -20.684852 -23.769865 51.783437 -7.202953 38.733764 2.008762 67.442049 -29.604707 -50.095997 22.865415 -29.740558 -1.299134 -22.036789 -14.781484 3.176939 33.953763 -41.464460 -21.643556 -15.124360 -15.033052 -14.741371 17.077974 17.709047 11.383947 6.313885 7.963981 38.254038 50.691682 6.944879 10.303470 -53.562145 8.761617 25.620507 -17.770314 -52.382968 7.805555 -31.120400 1.889932 15.300535 -7.867691 17.466425 -24.786297 -29.559260 -9.319370 -14.428462 23.482091 1.533308 -42.300797 10.836604 -14.020442 18.204569 20.057023 35.816345 54.749530 40.345413 30.297238 -1.667233 11.354217 -11.898837 7.603440 5.721571 14.523258 18.279957 17.340361 39.832392 14.998541 8.219721 29.419898 26.043868 -0.255985 41.656196 13.453674 66.593915 -15.632373 2.988367 -10.580609 -14.795614 35.402252 77.739562 -30.478540 6.273024 21.008869 21.770300 -4.772290 -41.234112 -1.669469 -21.493932 -13.904766 20.582578 10.979418 -7.116376 -13.618010 51.280092 7.441600 -64.596155 35.024799 -0.641263 11.113994 24.967138 -8.947122 -3.658216 17.969884 -39.099112 30.378355 27.398196 31.951351 -36.000386 -14.166459 -4.436084 34.552984 5.415549 20.289500 -50.491446 19.009235 29.709622 42.695696 24.148012 27.813251 -33.329058 -29.208760 6.129948 -27.976680 -17.854104 3.305272 22.284656 -28.994929 12.258286 -30.742948 -34.106963 +0.869537 1.130675 1.161352 -1.480165 -1.225085 0.397441 0.154336 -1.297053 0.256745 1.303809 0.706323 -1.175810 -2.106048 0.817663 -0.928873 -1.773748 0.228819 -0.361686 -0.380947 -1.363026 -0.093081 0.223291 -0.091929 -1.116452 0.531848 -0.920500 0.315928 0.999565 1.498851 -0.684535 -1.013812 -0.114818 1.078090 2.694371 0.022117 0.357933 -0.087434 2.604956 0.778350 0.855282 -3.278775 -2.694111 2.355893 0.309400 0.182859 -2.877025 -0.206588 1.082841 -1.970381 -0.149852 0.042238 -0.669809 -0.071728 -1.469337 -0.165965 2.579612 -3.221335 2.353685 0.028207 -1.023031 -1.209130 -0.275110 0.560172 0.387244 0.705853 -1.732811 0.433435 1.253905 -2.426867 1.165485 -1.130583 -1.954609 3.407331 0.337347 -1.195487 0.596513 -0.098125 -1.231968 0.908427 -1.804050 -1.077908 -0.618049 1.729090 1.081820 1.102225 0.854049 0.874527 -3.610597 -0.954693 -2.767152 1.978329 -1.455768 2.411334 1.416915 -1.339264 1.188268 0.562943 -1.124051 0.611466 0.998464 2.619704 0.314362 1.883532 -0.412360 1.025379 0.580580 -0.845701 -1.500160 -0.600312 -1.818254 -0.435440 0.643590 -3.966825 -0.030666 -2.269057 1.417247 0.549899 -0.369962 0.185286 0.920435 -3.411364 -2.132472 0.743218 -0.469430 2.301043 1.870786 0.173802 0.835038 0.230864 2.311329 -0.091827 -0.319335 -0.666494 0.972103 0.603997 -3.703791 -2.552878 0.150986 1.009164 -1.614122 -2.627702 -1.590730 -1.099994 0.688393 -0.548010 0.793623 3.865234 -0.355818 -2.298066 1.637531 -0.455532 0.732784 2.871610 0.585745 3.966319 -2.986512 1.605899 -0.181901 0.972998 1.145600 1.176808 -0.878298 -1.649566 0.629100 0.626587 -1.140603 -0.215085 -0.855906 0.084623 0.162924 -0.438662 -0.751589 -1.265003 1.821794 0.224070 3.315202 -0.729433 3.613978 -2.648708 -3.246306 0.735667 0.126689 -0.500463 -0.012362 -0.115571 0.048808 1.853323 -2.454963 -1.509358 -0.031978 -0.780033 0.016538 2.009826 0.520648 -0.127027 -0.521018 -0.771348 1.506133 1.356135 -0.745010 0.339948 -2.496214 0.302261 1.217679 0.382705 -2.984028 0.106221 -1.683023 -0.252841 1.185217 -0.377267 1.256014 0.277473 -0.965949 0.190360 -1.279720 0.920886 -0.921932 0.138267 0.616809 -0.610147 -0.153749 0.006746 2.765134 2.614719 1.372778 0.151660 -0.535313 0.796945 -1.721393 0.313892 0.267677 0.618125 0.858361 0.894005 1.887026 0.419976 0.497058 2.205503 0.497160 -0.216744 2.288354 0.339113 3.018605 -2.531086 0.350676 -0.059367 -1.458862 1.737758 3.557702 -1.791441 -1.286902 1.102089 1.080027 0.172248 -2.311557 -0.764925 -0.705253 -1.300699 1.990097 1.442486 -0.475236 -0.952880 3.508572 0.753234 -3.373381 2.609823 -0.062283 0.252522 0.689806 -1.296857 -0.588801 1.790727 -0.916432 -0.209460 0.803270 1.888301 -2.335203 -1.569123 -0.386540 2.207952 -0.727587 -0.286769 -2.732443 -0.319461 1.593037 3.089529 1.634694 1.315525 -1.410408 -0.899160 -0.158083 -0.597805 -0.646053 0.082223 1.141296 -1.657435 -0.369061 -1.757861 0.006260 +5.207677 1.365627 5.963143 -7.029525 -2.067105 2.439276 4.026871 -4.640241 1.753274 14.183441 3.623197 -3.178717 -8.158882 8.214524 -2.244739 -7.793330 5.479298 -2.260025 0.692863 -2.254260 -1.219568 3.143457 -1.082892 -5.257831 4.826697 -2.977955 1.202860 6.918020 1.407710 0.686808 -6.408103 -1.101689 -0.155912 14.107735 -0.606171 0.744250 -0.046572 14.758164 -11.410392 13.251892 -14.332405 -13.160461 13.114220 1.477168 -0.454855 -8.038141 -0.569641 4.948166 -5.918287 -7.403729 3.536284 -3.922713 3.070819 -7.446221 1.260552 12.627435 -18.369022 3.020720 1.205799 -3.246398 -7.638872 -3.061584 5.862628 1.876806 -5.814358 -8.415442 3.809757 1.086927 -8.018438 3.110018 -8.056464 -13.506847 8.876607 4.174389 -5.991545 3.204512 1.156830 -11.195172 6.722021 -5.945693 -6.980169 -4.292993 3.676200 -3.861353 7.830335 4.048618 8.998540 -18.817058 1.694962 -14.698941 10.460235 -9.599884 12.142977 12.072659 -6.396017 5.772834 4.070847 7.373869 2.480720 -2.522092 12.841290 5.311096 6.573328 -2.201173 7.120758 7.638982 -10.831811 -9.770398 -7.734548 -7.751394 0.709393 -3.963048 -14.640785 0.030765 -10.389098 2.202855 5.636249 -3.630783 -3.738270 10.610443 -20.017547 -4.237209 2.874622 -2.425711 9.991868 10.508916 -0.017945 1.657981 0.815125 12.376385 -2.409612 -0.431853 -4.602370 5.943395 -5.402862 -6.342445 -5.515032 -0.334107 4.570166 -10.504846 -14.016094 -17.464760 -3.596484 6.191623 -2.402023 11.663836 20.365306 -3.187283 -10.365456 8.303796 -4.686221 2.179216 12.624301 2.156185 16.341327 -14.815615 7.583198 -4.022665 5.783712 3.788261 12.813394 -2.075084 -6.273551 5.356088 -0.248164 -2.914579 7.328753 -1.428709 0.593082 -5.700921 0.596621 -4.981531 -5.015594 13.859697 -11.192270 11.885058 -5.598557 17.395860 -11.390383 -10.608765 5.471567 -12.883127 -3.570297 -10.096347 -5.442636 -0.049901 9.569439 -11.993820 -7.292820 -6.475210 -1.841623 0.510134 9.299229 -6.514908 -0.258551 -3.291843 -3.012651 13.778155 6.758900 -1.783958 0.932229 -11.888911 1.640438 7.151055 -3.170694 -14.032698 0.805300 -8.529430 -1.587585 4.106090 -1.077134 6.742069 -7.537228 -6.992870 2.583519 -2.761518 1.521893 -4.630232 -15.611334 3.442625 -1.834641 -0.014671 5.701112 13.315218 11.583930 7.968769 1.588644 -3.367619 3.129447 -6.427101 -8.028054 3.955637 1.165555 5.766194 4.809560 8.397643 2.484354 1.980194 6.714455 3.813579 0.511368 11.228789 5.285810 12.841741 -2.478197 0.261294 3.069622 -7.693409 7.387656 13.651312 -6.326614 -1.738705 6.528400 3.172442 -4.004617 -6.471993 -1.923493 -6.012729 -4.657052 6.973896 3.738762 -3.591372 -5.197322 18.543963 2.038138 -20.280970 9.262201 -0.193403 3.485790 8.543698 -4.839999 2.349981 6.005512 -4.858326 7.801612 3.473856 10.083841 -9.884792 0.245459 -0.978788 8.231386 6.772170 -1.352611 -19.294832 1.132250 3.425096 14.539042 8.900256 13.410869 -5.574704 1.916941 -3.831455 -6.686307 -1.713024 -3.422283 7.902304 -3.012625 0.382487 -17.236851 0.823240 +4.464749 0.906759 2.688249 -4.174543 -0.693509 1.841385 2.100385 -4.173700 0.357020 9.937338 3.067073 -2.982315 -4.242970 5.519725 -1.601151 -5.101803 4.440476 1.684773 0.434554 -2.152445 -1.458895 1.473258 -0.907186 -4.505258 3.137720 -2.683260 0.799608 3.661463 0.172542 1.194052 -4.608571 -0.595250 0.574843 9.953758 0.155899 0.105212 -0.968168 8.987369 -6.995286 9.117855 -9.509010 -7.844072 8.978174 1.576612 0.907815 -4.893383 -1.604133 2.913884 -1.280000 -5.442315 1.150715 -3.814351 2.354239 -5.259928 0.044922 9.547822 -10.316459 0.927771 1.292309 -3.724689 -6.101365 -1.160896 4.806746 1.398706 -4.642160 -6.355675 2.720232 2.691056 -4.213629 2.132228 -7.219153 -11.241292 5.431140 2.916009 -4.014164 1.577547 -0.822656 -7.273706 3.933406 -1.978838 -4.370507 -3.102579 3.265122 -1.298451 3.431790 3.891804 7.847663 -13.369335 1.400497 -10.772818 7.423820 -5.655337 9.738686 7.762504 -3.321422 3.509652 3.156352 4.749715 1.403838 0.146160 9.013265 3.033434 2.948730 -2.747485 4.844350 5.623899 -6.886607 -7.357619 -4.039515 -4.640209 0.854872 -1.468806 -9.396487 0.715777 -9.250510 1.763073 2.502238 -1.753358 -1.634183 7.980592 -12.718081 -4.525007 2.283892 -1.957526 7.922369 7.232211 0.976679 1.497265 -0.103257 7.783593 -0.993319 -1.723898 -3.448382 4.571874 -4.221634 -5.656389 -3.814597 0.299168 3.901459 -8.780293 -9.697819 -11.122787 -2.693903 5.312516 -2.349473 8.141027 13.850234 -2.864055 -6.261864 4.666238 -2.686014 0.600602 9.393404 1.833594 13.793184 -12.203299 6.968881 -1.723541 5.010202 3.430316 7.283215 -2.613755 -4.891684 3.910013 0.085847 -2.535070 7.563150 -1.874472 0.873190 -1.473733 1.091492 -0.589101 -2.671023 8.768030 -7.411124 8.206471 -4.003170 12.495445 -8.513692 -6.854308 3.806566 -7.439014 -4.018941 -5.154548 -1.526362 -1.291739 7.878605 -7.324194 -5.063241 -2.873162 -2.686902 1.149665 7.546528 -2.425609 -0.440795 -2.337749 -4.140614 8.667656 4.133674 -0.989496 0.606109 -7.851467 0.977786 5.105762 -2.450815 -9.639861 -0.316297 -6.525329 -0.939189 0.568099 -0.878263 5.426628 -5.428845 -4.289300 1.251844 -1.661437 1.608990 -3.881343 -7.033079 3.158585 -1.937290 -0.321579 2.547698 10.429757 7.957396 6.190034 0.587155 -3.323537 2.333325 -5.311700 -6.107793 4.021714 0.721066 4.830741 3.281751 5.148528 0.201724 2.113747 4.648188 -0.592422 2.734834 7.610579 3.253010 8.809544 -2.273997 1.052503 2.380765 -6.934727 5.768275 10.052080 -4.257079 -2.841197 3.885090 0.706656 -4.036155 -4.471872 -0.931221 -2.752508 -5.555011 4.529107 4.028560 -1.136818 -5.400757 13.651021 2.122745 -14.493296 7.472769 0.084590 1.950520 7.156169 -3.971793 3.204596 3.897972 -0.314982 3.356233 2.721905 7.968331 -8.062766 -0.204824 -0.974523 5.778591 4.442184 -2.495731 -13.816276 2.417096 3.796155 10.507343 5.261064 8.469601 -4.536271 2.778330 -2.813953 -3.654798 -0.821263 -2.603072 5.467685 -2.701328 0.318952 -11.599260 2.470191 +4.505764 2.574331 3.864241 -4.995776 -1.146334 1.217743 3.226857 -4.157912 0.558119 11.163436 2.784234 -3.106972 -6.275765 4.670799 -2.497625 -6.648315 4.040980 0.961231 0.086598 -5.102984 -1.258403 1.475495 -0.243603 -5.030062 3.385106 -4.532261 1.236118 4.896548 0.737051 0.823485 -2.891916 -0.623189 1.869639 10.500947 -0.700139 0.936505 -2.118473 8.975449 -6.140466 8.189117 -11.770108 -9.801965 10.546677 1.924920 0.822129 -8.110106 -0.750411 2.634757 -1.897971 -3.949326 0.032653 -3.476470 2.472364 -6.406078 -0.524792 10.734715 -11.122153 2.036333 0.226146 -6.247703 -7.036935 -0.868284 4.729786 1.711211 -3.376437 -6.966008 2.442379 3.080943 -5.541485 4.102676 -6.776612 -10.396565 6.175623 2.953511 -3.717366 2.209488 -1.006603 -6.591424 3.693041 -3.055188 -3.449110 -4.207829 5.200230 1.056315 2.083741 4.456121 8.056147 -14.065672 -0.689791 -10.470358 8.599792 -5.714965 10.668490 6.889057 -2.225473 5.109662 2.848484 1.396411 1.025855 -0.763876 9.495404 2.813878 6.050658 -2.342613 4.488468 6.022261 -6.685405 -8.296397 -3.880442 -4.917244 0.644474 -0.962473 -10.444834 0.182857 -10.077922 0.589576 3.576309 -3.129296 -1.093294 8.778305 -13.444164 -5.820249 3.483687 -2.160030 7.962611 6.616903 1.860030 1.637703 0.920372 8.202660 -0.624639 -1.098105 -3.280691 4.753210 -3.212412 -8.391749 -4.364141 -0.344373 3.148913 -8.954812 -10.003364 -10.284344 -3.590434 6.034116 -2.265386 7.089412 14.731250 -2.403764 -8.087872 4.385062 -2.414792 0.204950 9.223438 2.440026 14.773001 -13.083034 7.447183 -2.176933 6.041440 5.993970 11.342450 -3.193668 -5.949554 4.790373 0.484749 -2.658061 4.189306 -3.588621 1.703725 -0.760659 0.405044 -0.925076 -2.225070 8.015221 -6.344642 11.127611 -5.579748 13.249991 -10.110652 -9.201321 3.294598 -8.847288 -4.640816 -4.479686 -0.287822 -0.792349 8.147168 -7.952928 -5.911970 -4.097444 -3.891700 1.911079 8.300429 -5.185960 -0.425422 -3.183692 -4.750609 9.944195 4.009465 -1.300683 0.476779 -8.512094 1.147067 5.420964 0.217761 -11.688323 -0.278332 -5.956238 -1.252678 0.864725 -0.774993 6.032676 -3.304439 -3.346478 1.374853 -3.191917 0.643233 -5.196390 -6.287988 3.395064 -2.233432 -0.280023 0.591666 11.358231 9.274021 5.374753 -0.451570 -3.443392 2.869774 -7.266153 -5.003139 4.720243 1.759509 3.235356 3.323783 6.064116 -0.239060 2.118101 7.392754 0.536533 1.404466 7.506555 1.858302 9.310158 -5.132463 1.474984 2.224694 -6.869925 5.645875 11.268753 -2.491906 -4.533816 4.756771 1.520498 -3.076179 -5.864285 -2.170377 -2.798459 -5.574077 7.223085 5.775636 -2.847277 -4.983853 14.625517 3.385766 -15.154073 9.048356 0.288205 0.949321 5.631132 -5.411328 1.280949 5.835762 -0.321144 1.317616 2.249529 8.464541 -9.333940 -1.173556 -1.047627 6.831238 4.202452 -2.980498 -16.259855 0.351101 5.156964 11.926168 5.234311 11.238391 -4.659992 1.812441 -2.753821 -2.574098 -1.679959 -1.588819 4.492491 -4.251100 0.700727 -10.971550 3.449852 +11.962382 6.154567 18.251505 -24.668269 -31.229090 7.902194 -8.007755 -12.262892 4.375907 12.102677 16.011902 -18.104597 -18.583200 37.247334 -10.713596 -28.883059 -1.643013 -15.056864 -2.734677 -5.517068 1.175841 14.293661 -3.713179 2.029416 3.290364 -4.235415 -6.152390 13.988689 21.419989 -13.371895 -22.648465 -2.785065 -1.399294 34.640638 0.764492 -5.450160 10.093929 54.643636 -12.006932 27.420884 -33.812000 -30.223255 21.620723 2.975920 -4.421617 -26.736526 -21.191212 18.280435 -27.201878 -4.588440 24.101725 -0.964083 -3.817364 -5.785931 13.668050 25.174384 -59.492895 31.052566 4.720937 3.173525 -2.036279 -6.075508 1.764230 5.491509 -3.507214 -18.839184 11.795131 15.267580 -22.174539 2.389503 -6.461685 -35.872973 47.608222 11.473884 -18.450671 8.420594 19.604155 -27.074788 28.087995 -32.555232 -34.391172 -1.325205 4.658930 -9.428989 35.777766 2.686119 14.321777 -51.069596 10.955044 -48.442786 22.937690 -34.686653 18.767418 36.623578 -31.718748 9.773858 15.855848 11.699064 27.754029 6.110316 38.282142 15.419264 13.138343 6.457389 17.252693 13.367206 -16.422735 -10.274924 -22.888215 -36.869561 -5.508395 -7.384106 -56.020604 5.557620 -7.006019 14.050091 7.481981 -0.134380 -0.853561 18.592109 -43.012262 -13.927995 7.330250 -5.173707 19.623133 36.736194 -12.362124 8.067150 -12.424159 41.386403 -13.887254 9.269706 -4.445174 10.914422 -8.219116 -31.977096 -43.223310 8.069036 15.081371 -21.909518 -35.788082 -39.783560 -2.956898 5.767088 -10.777355 40.377244 64.338158 -16.215768 -30.676861 39.176954 8.227951 9.065752 43.097854 1.709200 49.233120 -23.311490 1.041378 -14.618413 -6.337000 -5.979802 -2.652686 8.978269 -6.282615 11.517306 7.176624 -22.248555 31.041353 -8.333030 -16.187726 -9.627887 4.498202 -18.296877 -23.074924 40.607535 1.019753 29.921140 6.385734 50.610874 -18.958726 -36.691959 18.914126 -17.389584 2.039673 -19.973944 -14.043662 3.871337 23.116338 -30.148239 -15.272307 -11.782183 -10.620932 -15.025040 9.833612 15.968364 9.837894 6.174669 11.195364 26.504480 42.935428 5.411985 8.841389 -43.027917 8.700398 18.665726 -13.908834 -37.808255 8.085201 -21.587045 1.245240 15.165741 -7.258168 10.637290 -18.047473 -23.773460 -7.048787 -10.425857 18.746055 4.236644 -35.040244 5.835750 -9.806052 14.742121 16.922098 24.930971 41.871487 30.581432 26.237581 0.197373 7.989402 -3.360066 5.816618 0.311112 7.919802 15.484699 14.634725 28.905686 14.139681 5.518836 24.812114 22.383410 -2.563132 31.282547 12.028629 53.264007 -6.867180 -1.699322 -9.162931 -9.763181 27.469153 61.195505 -24.506897 7.893975 17.811627 19.314510 -2.835343 -33.916988 -1.418199 -17.690249 -10.580264 17.910529 4.166836 -5.644916 -7.607961 37.396056 2.360890 -47.844416 24.056698 0.142867 10.145899 16.972151 -3.453396 -3.035060 14.411499 -35.948452 23.522329 22.024313 23.891020 -24.814580 -10.644849 -3.199220 24.356527 0.859284 19.580863 -34.976159 13.531268 23.116086 32.307500 18.222860 17.845549 -24.007710 -25.317463 8.043939 -19.396498 -13.401321 3.133866 16.453488 -23.646326 7.377316 -21.231994 -29.489439 +3.633927 0.680895 5.223935 -5.286891 -3.561800 2.799762 -0.687433 -4.388391 1.232187 8.514966 3.026082 -3.156750 -5.722418 7.301750 -2.863973 -7.373945 2.251669 0.508438 0.681246 -3.338502 -0.695387 2.115184 -1.220062 -2.840154 2.418345 -3.359639 1.284465 4.835208 3.002721 1.256711 -5.104849 -1.162716 -0.414910 11.248391 0.496473 1.121255 0.823431 12.685893 -5.850914 9.466513 -10.841448 -10.940467 8.752708 1.579988 -0.105202 -5.208915 -2.381199 3.639693 -7.930370 -2.982752 3.791905 -2.967662 1.782049 -4.079830 2.015167 8.274112 -14.911868 4.360414 0.315219 -2.664555 -5.033332 -2.464987 3.450619 1.673435 -3.381125 -5.937475 3.257172 4.162386 -6.055905 2.430868 -5.056795 -10.993343 8.894473 3.115549 -5.257253 2.056056 2.853081 -7.444651 5.458470 -4.662008 -7.187687 -2.931367 2.722827 -3.257651 7.227634 3.805775 7.136608 -14.941484 2.349607 -12.793537 8.141369 -7.597117 9.084446 9.527517 -7.509048 4.036321 4.520760 6.070227 3.429863 -1.139090 10.173703 4.057909 3.286980 -0.670253 5.912365 4.955727 -6.893282 -6.407444 -6.019019 -7.418247 -0.577475 -3.857665 -13.254567 -0.269825 -7.255350 3.321785 2.279916 -1.455091 -2.620023 6.675081 -16.112817 -4.052244 1.815065 -1.866484 8.120513 7.552737 -0.937121 2.637785 0.287471 10.525807 -3.371562 -1.266700 -3.563044 4.174785 -3.152315 -5.682218 -8.644399 1.162066 4.612838 -7.630005 -11.364411 -12.458028 -3.512092 5.308291 -1.587554 10.491219 16.831710 -3.037146 -8.455536 7.446131 -3.685475 2.212706 12.386243 2.257710 13.013241 -10.506805 4.883535 -4.093753 2.868975 1.791507 4.621816 -0.728396 -3.775951 4.944744 1.085687 -0.803941 6.411536 -3.046536 -1.379053 -6.749908 1.127027 -4.023743 -3.360291 11.251035 -7.646168 8.776033 -3.053637 14.032632 -8.932233 -9.882948 3.821441 -11.034600 -2.474506 -5.927351 -3.251450 -1.255505 8.202692 -10.232369 -6.057213 -4.323405 -2.048474 -0.140574 5.970980 -0.192066 0.262387 -1.161400 -0.863021 10.851775 7.820956 0.337968 0.784456 -9.845138 1.151415 6.385182 -2.917026 -10.683728 1.314149 -6.621915 -0.755879 2.326911 -0.602299 4.657496 -6.261297 -5.348499 -0.845040 -2.459429 3.478962 -1.734314 -11.299011 3.138184 -1.913534 0.762064 5.005234 9.342751 10.667818 7.192334 3.592079 -2.065460 3.064036 -5.063554 -2.340917 3.015214 3.007907 5.013535 3.420618 7.360370 2.257958 1.527381 5.154262 4.410941 1.025272 8.626014 3.979153 12.096175 -2.480054 1.297854 0.201424 -4.933761 6.187259 13.541309 -5.871478 0.699168 5.087040 3.421280 -1.596338 -7.914599 -1.231926 -4.534354 -3.540419 4.889310 3.046839 -2.603570 -4.208469 13.743087 2.090741 -14.947417 7.671500 0.119440 2.016953 6.255325 -3.782868 -0.033726 4.443488 -5.575049 6.520050 3.774091 7.505365 -8.221855 0.225476 -1.172942 7.037507 4.680793 0.349219 -11.997769 2.892548 4.203977 10.918817 7.036200 8.202964 -5.338696 -1.584670 -1.845135 -6.686502 -2.231209 -1.073399 5.874208 -2.866136 1.380602 -10.648832 -3.766676 +6.448860 2.986274 6.554307 -6.867912 -2.394024 1.446016 1.466156 -4.435282 1.562932 16.905265 4.930636 -6.036135 -10.163475 9.110500 -3.986194 -9.135667 6.308687 2.053505 2.534498 -5.948760 -0.492485 2.397526 0.674450 -6.672439 5.584231 -4.457407 -1.130217 6.349342 5.632859 0.516869 -5.557656 0.343576 3.045554 14.884065 -3.033493 -1.647000 -1.541951 14.293409 -10.105443 10.988890 -16.163824 -13.831468 16.006160 2.911276 1.194525 -10.571603 -2.433522 5.301807 -5.748585 -7.850784 0.848412 -3.769581 3.414634 -9.993862 -1.769209 15.579558 -21.303929 4.762654 0.960421 -6.199959 -8.048207 0.647507 7.111750 2.040381 -2.624268 -9.455225 2.673194 2.927750 -9.409665 3.294222 -8.804606 -13.906695 9.583051 3.184961 -5.526002 5.008150 1.242120 -9.990273 7.274018 -7.386917 -6.239672 -5.181658 5.510366 -0.666011 5.591350 6.296666 10.526132 -19.879517 0.878456 -15.420892 13.812802 -9.941520 14.340626 11.733987 -6.972840 6.884638 5.768212 2.659849 4.669510 0.206144 16.407023 5.432863 7.770452 -2.684858 5.776092 9.120527 -10.460046 -9.424639 -7.347826 -8.712229 -0.086984 -1.785666 -15.217466 0.300189 -13.682450 1.852625 7.979075 -5.925502 -1.740970 12.213560 -19.714213 -7.467053 4.434328 -2.648726 9.998371 12.033486 1.840746 0.403784 0.970727 14.004732 -2.614766 -2.982631 -1.158175 6.609284 -3.916897 -13.774903 -6.177345 -0.088065 3.164754 -13.682439 -14.000776 -17.960312 -2.212764 5.365224 -2.820356 10.391670 23.230509 -2.395547 -10.652819 7.927332 -3.967111 1.104178 16.689762 2.924345 23.301131 -18.207567 8.236692 -3.269556 6.375965 7.912814 13.280252 -2.921931 -6.035666 5.545236 2.666632 -4.066958 4.738213 -4.440034 2.557922 -2.288033 1.815709 -3.291374 -4.624430 11.707895 -7.751398 13.955859 -6.208578 20.202191 -11.411906 -15.021519 7.002756 -11.869298 -6.058758 -5.503647 -3.050167 -0.706087 10.102682 -12.401076 -7.769187 -7.243902 -3.257563 1.384359 11.421102 -5.938854 1.711487 -2.737767 -6.561340 12.291790 4.909101 -2.433655 2.748738 -14.646250 -0.272817 7.863535 -2.494172 -19.166169 1.181997 -11.125374 0.193950 4.793928 -2.850476 9.164991 -6.140889 -7.531879 2.155138 -4.868549 1.808592 -8.452015 -9.112638 4.137755 -3.977248 0.934305 4.112939 17.117153 13.776620 8.827477 -0.976644 -1.672329 4.050085 -8.665863 -5.505010 5.280774 0.269691 6.068932 5.157875 7.331581 0.360014 3.963449 9.254220 0.803366 0.184801 12.863650 3.194389 13.305223 -5.815569 1.320718 3.315400 -10.274737 9.012652 16.713477 -5.173586 -5.935137 6.931383 1.927858 -3.270991 -9.068826 -1.664052 -4.288310 -8.017280 10.157577 7.664089 -1.890623 -6.843381 18.607222 4.503113 -23.003876 14.925745 -0.757561 1.707881 8.442688 -5.901612 1.776386 7.206234 -2.582765 2.106585 4.266319 12.814969 -14.523180 -0.427005 -1.114784 12.288047 5.605601 -1.996553 -25.608683 1.380770 6.383424 13.816112 7.984925 14.772646 -7.684461 -1.424858 -3.969719 -5.054482 -3.913923 -4.545914 6.055882 -5.826653 0.706533 -14.308658 4.265340 +5.421402 0.679031 3.266933 -5.041047 0.387700 2.133419 3.623256 -5.036666 0.508086 13.760111 3.843344 -3.486735 -4.849827 6.479754 -1.194386 -6.406220 6.200148 3.295052 0.677388 -2.912198 -1.745045 1.636251 -0.952318 -6.830250 4.453906 -4.141677 1.323831 5.295096 -1.379273 2.914196 -4.851250 -0.816920 0.950288 12.627197 -0.212973 0.948149 -2.074907 10.362881 -10.942908 12.506129 -11.933259 -10.576100 12.765451 2.235659 0.924610 -5.258468 -1.793266 3.111039 -0.376481 -8.069844 0.650603 -4.974680 4.140622 -7.532713 -0.501862 12.518720 -12.019260 -1.053459 1.280535 -6.518431 -9.023033 -1.161996 6.259413 2.143216 -7.155934 -8.266472 3.198900 2.933308 -4.248239 2.616624 -9.435450 -14.573968 6.505158 3.892500 -4.375824 2.223503 -1.669381 -9.292170 4.731545 -0.380809 -4.686718 -4.776217 4.242615 -1.873503 3.029484 5.510136 11.437014 -16.747539 1.434844 -13.081438 10.376159 -6.401983 12.906631 9.313505 -3.221166 5.014734 4.088182 6.885934 0.761029 -0.683326 11.138978 3.853040 4.153999 -3.742476 6.338772 8.013810 -9.815402 -10.579810 -5.608573 -5.208935 2.140643 -2.861921 -11.356456 0.817226 -12.330092 0.976426 3.700272 -3.206548 -2.088890 11.725662 -16.008701 -4.442677 3.527963 -2.534919 9.561704 8.338244 2.015096 1.238307 0.705395 9.136709 -1.163708 -2.630910 -4.368663 6.213009 -6.325730 -5.880919 -2.536990 0.362050 4.406947 -11.947418 -11.900100 -14.344643 -3.378949 8.690964 -2.959253 9.767917 17.282091 -3.606298 -8.022816 4.643313 -2.963574 -0.153601 10.643471 2.779409 17.385207 -16.268834 9.463621 -2.621309 7.101019 6.002630 12.515266 -3.670406 -6.731398 5.887765 -0.350695 -3.348461 10.828472 -2.833510 2.112986 -1.490986 1.707309 -0.373998 -2.459080 10.777153 -10.274648 10.648788 -6.447608 15.597138 -11.343542 -8.024029 4.558397 -10.926392 -6.764072 -7.584520 -1.692053 -1.661026 10.031271 -8.944841 -6.479693 -4.574973 -3.979233 2.407042 10.292634 -5.670369 -0.810997 -3.672072 -6.576979 11.225713 4.022955 -1.115668 -0.138540 -9.450881 1.064051 6.452608 -3.035142 -12.314668 -1.071657 -8.080554 -1.224584 -0.149413 -0.890973 7.663609 -7.312821 -4.600547 2.033211 -2.100807 0.647521 -6.114458 -9.547357 4.130032 -1.622453 -0.282479 2.978955 13.884274 9.991966 7.607352 -0.318023 -4.106795 2.803590 -7.385391 -9.830591 6.112728 0.596539 6.085867 4.239971 6.915364 -0.497928 2.908652 6.457140 -1.153449 4.397706 9.314218 3.778170 10.324011 -1.951057 1.211982 4.047894 -8.904554 7.016401 11.758732 -4.078431 -4.305955 5.059411 0.189190 -6.029962 -4.505687 -1.007452 -3.132092 -7.151207 6.484787 5.858971 -1.468885 -7.345606 17.816347 3.321455 -19.009484 9.351110 0.253818 2.539054 9.646056 -5.850674 5.026475 4.983090 1.411320 4.164449 2.968774 10.360337 -11.116745 0.681324 -1.050444 6.935761 7.508246 -4.112258 -18.839505 2.819247 4.140287 13.487383 6.030130 12.589207 -5.725698 5.454692 -4.473745 -4.344862 -0.600423 -3.757964 6.271267 -3.027932 0.780402 -16.385402 4.889911 +6.996625 1.309970 5.155521 -5.167124 0.717449 3.672990 4.541445 -7.307459 0.767594 20.588593 5.088077 -3.749331 -5.686182 7.252705 -2.033223 -6.314096 8.241394 5.185112 1.250540 -4.763975 -2.870218 1.422126 -1.754764 -9.403774 5.744149 -5.631949 3.261675 5.874764 -3.441810 5.407534 -6.175511 -1.553692 1.371674 16.781167 0.470440 1.670982 -3.279078 13.115544 -13.895168 15.811163 -15.299893 -15.843899 16.747172 2.857500 3.025743 -4.314109 0.462289 4.728784 1.326357 -12.009964 0.081650 -7.294179 6.215322 -10.153793 -1.863956 14.351535 -14.325244 -2.758344 1.570949 -9.889733 -14.010974 -2.176751 9.507427 3.805300 -10.488788 -10.229858 4.492898 4.684837 -5.501591 3.271414 -12.789449 -19.478838 6.327546 3.951852 -5.661477 2.335664 -2.599039 -11.335593 5.957363 1.427456 -6.434587 -6.230144 5.358686 -3.957612 3.017579 8.582940 15.983660 -22.326838 2.727204 -17.635556 13.915634 -6.668492 17.696842 11.796477 -4.252796 6.450132 6.239899 12.271078 0.402283 -1.065082 14.676720 4.783579 5.158690 -4.748605 8.826300 10.991269 -13.586024 -14.314337 -8.002133 -7.086331 3.914037 -3.135493 -11.915858 0.659399 -17.035042 0.747988 3.949144 -3.818337 -3.512075 15.555136 -23.844552 -6.610424 4.666641 -3.178751 13.891326 9.295273 2.682228 3.002030 2.762766 11.860730 -2.618726 -5.369988 -5.715380 8.588228 -7.712723 -5.132096 -3.248221 1.323461 6.675445 -15.776299 -15.854497 -20.097831 -5.040673 12.608038 -3.688796 11.880836 22.659194 -4.687753 -9.521940 5.254183 -6.517816 -1.204962 14.522368 4.089476 22.438662 -21.986120 13.061035 -2.691076 9.905026 8.388234 17.274617 -5.281274 -8.624129 7.863235 0.095137 -1.277180 13.401458 -3.993820 2.760090 -4.340621 3.027502 -0.516020 -2.520011 13.148743 -15.255413 12.227727 -8.899483 20.675039 -15.923176 -9.613236 5.472387 -15.212026 -8.924873 -9.584786 -1.537424 -3.186984 14.523473 -12.016935 -8.730548 -5.226940 -5.092860 3.925212 13.548174 -8.367435 -1.092509 -4.607655 -9.564872 14.080442 4.166942 -1.231269 -1.592540 -11.586610 0.109254 8.423351 -3.215649 -14.515227 -2.725711 -12.178030 -1.912406 -0.703838 -0.773148 10.602195 -9.292158 -5.504834 2.883883 -2.876250 0.491258 -7.963207 -12.430764 5.762153 -1.710613 -0.547887 3.674808 18.806559 12.352217 10.810889 -0.326277 -5.405152 3.737098 -10.407144 -13.343241 8.440156 1.302249 9.061360 5.496577 8.722465 0.156473 4.641452 7.260758 -3.399691 6.324849 13.016665 4.047129 13.461320 -5.142511 3.253405 5.368528 -10.897429 9.099875 14.201970 -4.742985 -6.502879 5.781486 -1.078428 -8.622283 -3.839528 -0.981578 -3.939148 -7.500928 5.892304 9.599335 -1.049359 -10.547521 24.002281 3.927518 -25.417805 12.671927 -0.510254 4.008719 14.502620 -8.243814 7.149651 6.000625 3.698291 6.493298 4.344419 13.588631 -15.211453 1.471859 -1.650308 10.378570 9.532234 -6.664491 -25.281196 5.003233 3.903178 16.521185 7.975611 15.596626 -8.604186 8.360867 -6.454218 -7.626648 -0.418117 -4.063945 10.189735 -1.640585 0.621658 -23.543365 7.563109 +3.517975 1.495950 3.416772 -4.850862 -1.997353 1.340443 2.332166 -3.722595 1.220707 8.520430 2.944414 -3.293340 -2.847716 6.498678 -1.999565 -4.080247 3.153632 -1.938929 0.073594 -1.121981 0.112000 2.329006 -0.706024 -3.232074 2.184311 -1.505961 0.833211 3.363899 0.129677 -0.675579 -4.428586 -0.597502 0.945253 8.473900 0.007450 -0.279367 -0.592056 8.503349 -6.874012 8.604792 -9.680955 -7.022344 7.588155 1.088621 0.477942 -7.485285 -2.685904 3.032459 -0.455599 -4.703402 1.718155 -2.535203 1.497531 -4.340707 0.547110 7.878981 -10.221416 2.153880 1.402891 -2.319797 -4.041429 -1.258436 3.975042 1.771725 -3.899872 -5.278763 2.407704 1.422873 -4.478107 2.160390 -5.051229 -9.264250 6.042875 2.449517 -3.904493 1.508144 -0.025896 -7.853628 4.511549 -4.482175 -4.174264 -2.074196 2.446660 -1.889320 3.581273 2.005897 5.737276 -11.522701 0.813656 -9.327322 6.251094 -6.082197 7.122645 6.699793 -3.595482 2.802434 2.107684 3.899287 3.231411 0.748905 7.578191 4.133507 4.405477 -2.031136 4.706841 5.256861 -5.563056 -5.746077 -3.964704 -5.291352 0.500957 -1.088645 -9.679375 0.644088 -6.091159 0.745179 2.385959 -2.486332 -0.980495 7.617551 -11.526426 -3.784169 2.227864 -1.395390 5.265300 7.131238 0.020104 1.407174 -0.798683 7.061402 -0.861588 0.187150 -2.069299 3.626835 -5.490012 -6.171094 -4.001230 0.427943 2.753673 -6.871281 -8.250645 -10.670532 -1.965469 3.307857 -2.158767 6.651037 12.076021 -2.290509 -7.474407 4.886105 0.513832 -0.719509 7.625939 0.968803 11.862052 -9.541225 4.937091 -2.175971 3.037536 2.098461 7.577991 -1.600381 -3.918714 2.637268 -0.998090 -7.221262 6.555583 -0.505448 0.297040 -1.153464 0.570218 -2.286805 -3.327859 8.064209 -5.294526 7.690157 -4.407731 10.930988 -7.096957 -6.225140 3.132399 -6.573051 -2.204274 -5.017216 -2.431479 0.153640 7.366830 -6.187530 -4.012884 -2.484815 -2.910501 0.204770 5.958316 -4.721340 0.051860 -1.704081 -2.381759 7.736280 4.336600 -1.230042 1.372593 -6.970656 1.335780 5.096964 -1.232346 -10.021313 -0.201635 -6.316504 -0.824435 0.388277 -1.174505 4.408213 -4.882096 -4.372249 1.390235 -2.298479 1.243159 -3.101119 -7.321581 2.372833 -2.518845 1.343258 1.946765 8.489581 6.699472 5.403298 1.321112 -2.708120 1.662715 -4.862322 -4.588899 2.790891 1.456324 1.939930 2.972533 6.079735 1.134238 1.446806 4.290628 1.254014 0.959774 6.827271 2.306749 7.801419 -2.545633 0.866048 1.244565 -4.839088 5.070729 10.064883 -2.811574 -2.603925 3.278732 1.461116 -3.284567 -4.191613 -1.298637 -2.843176 -3.848066 4.410132 2.793519 -1.627544 -3.454154 11.240511 1.862822 -12.218603 5.953505 -0.275324 1.933332 5.580259 -3.271768 2.247250 3.769089 -1.980299 3.646848 2.504461 6.419763 -6.347141 -2.431471 -0.915570 4.944821 4.484586 -0.561021 -12.662433 2.628850 3.495587 9.343576 4.031604 8.478975 -4.357579 1.468100 -1.413725 -2.685590 -1.349524 -1.668164 4.958025 -3.114081 -0.182688 -9.838578 0.932497 +1.782051 0.730078 1.917597 -3.356689 -1.103349 0.728044 1.722991 -2.287474 0.479347 4.616689 2.284350 -2.158570 -3.264728 4.078268 -1.020254 -3.132661 2.344869 -0.097408 -0.275427 -0.756210 -0.321210 1.342710 -0.487708 -2.389710 1.902472 -0.923382 0.370140 2.806634 1.566178 -0.399826 -2.982353 -0.311492 0.514824 5.913151 -0.146651 0.289347 -0.357847 5.852511 -4.493255 5.429017 -6.272276 -4.394209 5.687426 0.719895 -0.362428 -4.995867 -1.771256 2.200954 -1.956584 -3.379756 1.098247 -1.800907 1.181002 -3.348250 0.276736 6.058404 -7.137456 1.400349 1.182971 -1.403697 -2.932746 -0.837825 2.717033 0.554257 -2.662491 -3.779449 1.403543 0.394675 -3.248151 1.010300 -3.686752 -6.308665 4.308281 1.372131 -2.575323 1.300937 -0.389654 -5.210542 2.811084 -1.907430 -2.627394 -1.547598 1.950276 -0.735054 2.808942 1.339036 3.568106 -8.028595 -0.237813 -6.416609 4.036973 -4.122876 5.228244 4.718968 -3.156081 2.152656 1.391005 2.065728 1.318095 0.354569 5.384592 2.060379 2.708551 -1.571966 3.381188 3.062034 -3.905315 -4.177624 -2.804618 -3.650645 0.404295 -1.159744 -7.151031 0.373425 -4.936544 0.362516 1.634496 -1.387325 -0.751282 4.643103 -6.869092 -1.576466 1.486488 -1.046155 3.949740 5.504733 0.262284 0.527241 -0.331041 4.810200 -0.547512 0.112037 -1.863570 2.602795 -2.048288 -4.514530 -2.221281 -0.122334 1.882406 -4.597517 -5.780563 -7.030135 -1.331954 1.959955 -1.390938 3.676723 8.388489 -1.600341 -4.619398 3.423967 -0.397640 0.805069 5.362377 0.707962 8.441437 -6.765276 3.616746 -1.205938 2.193181 1.712490 4.422369 -1.376547 -3.117304 1.769211 -0.568363 -4.210014 4.587735 -0.603197 0.450500 -0.607959 0.492157 -1.688816 -2.858278 5.825627 -3.528860 5.586111 -2.457985 7.305762 -4.928489 -4.578661 2.561033 -3.623468 -1.615978 -3.532043 -1.915206 0.020605 4.475601 -4.322683 -2.877819 -2.320047 -0.931618 0.091265 4.395059 -2.206498 -0.221806 -1.430613 -1.618891 3.990359 2.744527 -1.243773 1.033354 -4.972663 0.827676 3.535452 -0.788087 -6.651028 0.250600 -4.252964 -0.705598 0.933962 -0.732813 3.095076 -2.761236 -2.950078 1.180963 -1.363161 0.887774 -2.274639 -5.554573 1.595644 -1.709156 0.028184 1.777051 6.185711 5.059365 3.586459 0.349052 -1.512440 1.398410 -2.943130 -3.612132 1.603545 0.044117 2.410600 2.226043 3.380054 0.912575 1.157220 3.183734 0.612607 0.731967 4.990946 2.698827 5.557104 -0.698067 -0.061308 1.434984 -3.737172 3.466602 6.531229 -1.865115 -1.405635 2.510223 1.374221 -2.099006 -3.718149 -0.974525 -1.876630 -3.332526 3.931472 1.517864 -0.994921 -2.443856 8.076739 0.818850 -8.601732 4.252086 -0.248347 1.514765 3.388472 -2.115686 1.391115 2.781138 -1.343256 2.367152 1.576872 4.554891 -4.359058 -1.225657 -0.497844 3.621535 3.011090 -0.860391 -8.678157 1.430490 1.886347 6.555526 3.200366 5.087486 -2.524010 1.103363 -1.497233 -1.944660 -0.556035 -1.878114 3.107883 -1.932932 -0.772348 -7.266938 0.841655 +3.864693 1.507339 4.108630 -3.987304 -1.960093 1.638797 1.510585 -4.438990 0.619648 11.713215 2.800025 -2.984255 -3.866834 6.290336 -2.568368 -4.745020 2.334536 0.785279 -0.115383 -2.985384 -0.756959 2.190266 -0.893897 -4.317606 3.042382 -2.741253 1.657240 3.913708 -0.688112 1.587291 -3.194050 -1.113204 1.012534 9.860709 -0.190860 1.339593 -1.216036 9.107265 -8.225259 8.833038 -10.895477 -10.854589 9.716227 1.408007 1.395270 -4.831673 -0.802416 3.621546 -1.805069 -5.819975 0.706720 -2.747562 2.061761 -5.769187 0.051284 7.555783 -11.514402 1.513644 0.891995 -5.129447 -7.538690 -1.265160 4.999532 2.077362 -5.097875 -6.308987 2.043318 2.934213 -4.475890 2.357877 -5.315117 -10.434246 5.723840 1.610404 -3.849364 2.052834 -0.195564 -6.645376 4.948124 -2.978700 -4.509281 -3.358088 3.392488 -2.806887 3.025188 4.859692 8.071173 -13.440670 2.343355 -10.411261 8.091536 -5.016070 8.803227 7.312691 -4.454998 4.138305 3.568574 6.820241 2.879819 -0.442712 8.706066 3.658200 4.508569 -1.183944 4.859861 6.259662 -7.700793 -7.411158 -5.887058 -6.455252 1.877130 -2.857801 -9.993059 0.271791 -7.303655 1.173345 2.708703 -2.971896 -1.304652 9.011093 -16.114231 -3.301276 2.960975 -1.448807 6.617447 5.880687 0.445075 1.602138 0.801611 7.686010 -2.210858 -1.924964 -1.909307 4.628740 -4.976800 -4.454664 -3.959753 1.107407 3.017216 -8.220023 -8.950310 -12.734427 -2.491889 6.713732 -2.276881 7.762619 14.404702 -2.938024 -7.893586 4.789900 -2.452582 -1.122823 9.040778 2.049694 12.903813 -11.105756 5.302729 -2.387877 3.770046 4.656197 8.889343 -1.770360 -5.079027 4.687211 0.090123 -3.365630 6.804367 -2.138518 0.538618 -4.276175 1.973962 -2.526357 -1.449429 8.305512 -8.297495 8.614112 -5.408535 12.130824 -9.031867 -6.803066 3.177949 -11.587468 -4.269063 -5.632282 -2.298876 -1.305835 8.356595 -8.386880 -4.618148 -3.925480 -3.462455 0.641994 7.441904 -5.616589 0.247549 -2.063100 -3.425061 9.555829 4.150834 -0.849308 -0.177281 -7.754067 0.675024 5.730200 -1.134420 -10.692215 -0.897571 -7.271581 -0.978019 0.972886 -0.934792 5.704760 -5.031089 -3.235483 1.134675 -2.639744 0.675545 -4.190207 -7.606212 2.744591 -2.470464 1.938932 2.678817 10.371240 8.420555 6.662688 1.083990 -1.685087 2.277373 -6.472082 -5.039545 4.350861 1.654256 3.669140 3.807524 6.622297 1.352746 2.553458 5.448529 1.303014 1.605653 8.684810 2.027964 9.592881 -4.252682 1.709234 1.634332 -4.230591 5.409615 10.146056 -3.805286 -2.351189 3.862156 0.584965 -3.779260 -3.090715 -1.118397 -3.187730 -3.824057 4.449446 5.034659 -1.697331 -4.395538 13.237371 2.190187 -14.355287 7.610065 -0.363613 2.433769 6.612667 -4.454252 2.326586 4.278792 -0.551714 3.969673 3.369081 7.421280 -9.070137 -0.474035 -0.706352 7.209929 6.156007 -1.157052 -14.766818 3.068170 3.140237 9.786139 3.603006 9.247940 -5.593989 1.784809 -2.343180 -4.141868 -1.109526 -1.403782 5.235557 -1.624930 0.643111 -12.352192 1.030053 +19.046087 7.178021 28.322672 -35.250964 -38.540917 11.170343 -12.122202 -12.812358 8.251332 19.148196 17.790072 -21.227100 -31.584760 49.211566 -17.859051 -42.790441 3.756803 -20.045599 1.919009 -10.151189 3.312115 19.759957 1.771545 0.892997 8.667827 -10.637107 -11.219820 23.851388 38.538290 -18.751733 -28.538300 -1.770932 0.173513 49.542473 -3.619786 -9.267160 14.760947 77.496634 -12.155193 38.484426 -41.950527 -41.569579 35.257543 5.416280 -9.110034 -36.739232 -28.158352 24.349439 -40.604941 -10.961701 31.555239 -1.616485 -2.924987 -11.736041 13.641165 39.300906 -85.474867 39.644281 0.952000 6.171982 -0.645277 -6.605753 2.319149 7.212440 -0.611246 -28.005469 15.033300 19.144868 -39.815900 2.384160 -7.603803 -42.743791 70.270966 15.748317 -25.983973 14.822806 32.389073 -36.998287 36.620771 -46.180605 -45.986981 -3.738370 4.094759 -11.712475 52.435226 1.066632 21.374541 -72.636260 14.503645 -63.482792 36.996237 -48.719126 29.531915 51.637271 -45.265922 17.913031 22.564827 17.604126 33.139220 4.964508 61.461486 22.954478 17.396623 9.598968 24.822511 15.732392 -23.565536 -14.557718 -33.301082 -48.471238 -7.032925 -12.945973 -81.318924 5.122789 -12.029391 19.725472 17.770163 -3.630474 -5.852823 26.501180 -64.204742 -19.107517 9.677184 -7.554517 25.129902 50.140705 -14.990849 7.187894 -10.904582 62.481410 -20.305009 7.675865 -1.897215 14.928129 -7.049407 -42.567093 -52.495296 6.616256 18.001648 -31.039893 -51.843686 -55.492183 -4.596128 6.369933 -13.504954 55.267033 93.334441 -16.250264 -39.551678 53.580511 6.115610 15.549268 60.728573 3.250640 68.870920 -35.328912 -2.580942 -21.025014 -7.191561 -0.125237 4.331958 12.243532 -5.502954 16.514065 11.574777 -25.050850 33.085266 -16.157306 -18.902463 -12.729094 1.667675 -27.341988 -33.754443 56.199823 -0.138304 43.115240 7.172674 74.096386 -20.592747 -58.863392 25.278573 -22.286300 1.108188 -31.412290 -17.180776 2.804863 27.940488 -45.501165 -23.889493 -18.270557 -10.974827 -18.247754 15.169717 17.362940 17.258399 5.604759 12.657944 40.852670 55.094885 6.386228 12.701614 -63.506842 8.802455 26.606291 -19.313675 -53.467995 13.564767 -29.020847 2.974102 25.158697 -13.701748 13.202290 -25.481224 -35.188936 -11.245957 -16.393170 22.484891 1.885282 -54.257555 7.282483 -7.365486 16.858923 25.502518 37.673037 63.018346 38.309443 30.614733 2.662384 13.705379 -3.991286 1.800642 0.660539 8.460813 23.099877 20.007492 41.767535 18.840691 9.205510 37.771476 33.743261 -2.623493 43.910776 16.067003 73.569810 -6.982564 -6.162561 -11.680777 -16.654079 38.304914 85.120804 -30.617636 10.184465 28.080339 28.069406 0.384764 -50.893116 1.099445 -26.245086 -10.691681 30.250964 5.497985 -6.140187 -10.303171 49.834050 2.966397 -71.848195 36.894372 -0.537363 11.523718 24.986434 -5.732472 -2.529239 19.874303 -51.215327 28.197988 28.168922 33.739971 -36.940169 -7.455499 -4.502682 35.083865 -2.104489 26.004713 -54.964820 12.904415 27.994378 46.561193 28.765451 28.330367 -30.691414 -37.305438 11.262922 -25.524722 -20.485245 0.831196 22.005414 -35.618841 9.317951 -29.437823 -34.443624 +5.112562 2.215524 5.659021 -5.992472 -3.056296 1.764225 2.547052 -6.598869 0.715328 14.589930 4.986853 -5.458128 -5.311786 9.218424 -3.359589 -7.212679 4.155101 2.033541 -0.478666 -4.532519 -0.772982 2.880651 -1.106284 -5.769611 4.166875 -3.619550 2.701427 6.161724 0.525708 1.474697 -5.043629 -0.977527 1.449259 13.728034 -0.156067 2.221452 -2.112150 13.050570 -10.891136 12.470212 -15.425073 -13.211721 13.408286 2.252057 1.850014 -8.756249 -2.767472 5.318571 -3.208491 -7.750263 1.520846 -3.904084 2.688877 -7.873419 0.242051 11.735331 -15.374522 2.357184 1.832133 -6.827842 -9.772013 -1.443947 6.609417 2.651929 -7.538341 -9.203329 3.282978 3.730017 -6.270433 3.984389 -8.541479 -15.001239 8.204178 2.133706 -5.126055 2.715751 -0.694256 -9.849057 6.846853 -3.899596 -6.355745 -4.578858 5.405784 -2.492993 3.901579 6.299384 11.054572 -19.266723 1.630469 -15.293771 11.067175 -8.103330 12.671507 10.497689 -6.888405 5.743899 4.343038 8.004569 4.369850 0.955541 12.314791 5.259866 5.951206 -2.722795 7.515941 8.240052 -9.793264 -10.739218 -7.435757 -9.159071 2.012607 -3.455064 -15.300447 1.049296 -11.433602 0.899984 2.719228 -3.566653 -0.552848 12.197647 -20.318043 -4.676998 4.191807 -1.727065 9.422141 9.629529 0.574182 2.804723 0.041078 10.839245 -2.107716 -1.653154 -3.143693 6.541762 -6.667696 -8.956460 -6.299143 1.168108 4.954445 -11.324229 -13.059432 -17.467877 -3.696898 7.949101 -3.567350 9.722472 19.565017 -4.201184 -10.918881 6.801621 -1.868109 -1.222491 12.996819 2.277052 19.637568 -16.354131 8.261196 -2.600801 5.585974 6.274824 11.080360 -3.101339 -7.728437 6.338804 -0.412817 -7.583139 10.762938 -2.697652 0.929744 -4.391707 2.532265 -2.658508 -3.544732 12.456862 -10.624307 13.036657 -7.973856 17.122267 -12.859025 -10.161144 5.120534 -14.081772 -4.964947 -7.502007 -2.632543 -1.880575 12.573234 -11.329076 -6.895698 -5.439080 -5.170491 1.201814 10.333226 -6.565254 -0.083819 -3.005273 -4.502187 11.538989 6.334263 -1.255699 0.909336 -11.529646 1.460169 8.594558 -0.328681 -15.212101 -0.690397 -10.781215 -1.676265 -0.654450 -1.354721 7.996676 -6.940452 -5.192663 1.254400 -3.482888 1.745037 -5.375302 -10.902159 4.285864 -3.964755 2.277539 3.500788 14.944636 11.987634 9.261916 1.511623 -3.609077 3.755993 -9.207749 -7.291632 6.313176 2.360938 5.173329 4.863266 8.855868 1.979076 3.278153 7.805555 0.838945 2.282686 12.333203 4.004294 13.618479 -5.653046 2.597496 2.180033 -6.701458 8.221506 15.184811 -3.968622 -4.408345 5.205440 1.573525 -5.513643 -6.497555 -2.677077 -3.895940 -6.997659 6.706681 5.796273 -2.516353 -6.189928 18.947145 3.203249 -20.449950 10.899281 -1.096983 2.800649 9.272940 -6.119864 2.863253 6.402285 -1.650901 4.971939 4.400424 10.788264 -11.750005 -1.931979 -1.298878 9.901834 8.628803 -2.394057 -20.918848 5.495965 5.634221 14.729259 5.648456 12.495925 -7.756267 2.695245 -3.463363 -5.592085 -1.682215 -2.343961 7.276143 -2.991846 -0.407307 -17.054847 0.957856 +1.962164 2.164979 1.712986 -2.515635 -2.876298 1.267906 -2.283871 -3.182622 0.514830 2.144792 2.266970 -3.007327 -1.140834 3.828403 -2.687398 -2.933039 -0.497012 -0.247756 -0.266254 -1.904819 0.560155 0.736203 -0.473929 -1.048042 -0.331964 -0.973981 0.666031 0.315615 2.182876 -1.313192 -2.647374 -0.166731 1.421459 4.220129 0.845864 -0.492234 -0.011634 3.897424 1.012523 2.058058 -5.910236 -3.469857 2.723005 1.090334 0.921098 -5.609386 -2.623805 1.573005 -2.085268 0.254477 0.695774 -1.520481 -0.397677 -1.123551 0.174849 3.477712 -5.530981 4.692495 0.426264 -1.333456 -0.980761 -0.003241 1.846616 1.111319 1.420070 -2.689741 0.952697 3.688858 -3.124054 1.498338 -1.831569 -4.955390 5.534081 0.582366 -2.751573 0.023275 -0.324250 -2.645757 2.040057 -4.231956 -2.541135 -0.355595 2.548492 1.405798 1.130372 1.850178 1.676895 -5.325949 -0.380291 -5.355640 2.948380 -2.462379 3.583442 1.983485 -3.715021 0.385187 1.253998 -1.193374 3.878385 2.356731 3.746259 1.478500 2.191985 -1.028361 1.337618 1.964862 -0.389879 -1.075754 -0.467564 -3.958666 -1.163643 1.264008 -6.267170 0.219273 -3.225691 2.085319 -0.275221 -0.731348 0.855801 1.978382 -5.496689 -5.059880 0.656920 -0.378543 3.624306 3.426390 -0.126936 2.224187 -0.608630 3.619221 -0.336343 -0.862759 -0.478895 1.346302 -1.380153 -6.974462 -6.373087 1.593870 2.281582 -3.129363 -4.077571 -4.092959 -1.053382 -0.190868 -1.374932 3.345501 5.901325 -1.288162 -4.733032 2.733899 0.743256 -0.918161 6.423903 0.359074 7.772420 -4.838488 2.698697 -0.497359 0.596393 0.664753 -0.150753 -1.288844 -1.875167 0.341944 0.376904 -4.825998 0.703530 -0.654642 -0.846965 -0.060404 0.117756 -0.729177 -1.150346 2.777178 -0.199141 4.023850 -1.940410 5.899050 -4.186310 -5.009425 1.283728 -3.065726 -1.300513 1.356213 -0.298149 -0.138403 4.737936 -3.186432 -1.704391 0.528752 -2.309115 -0.461172 2.801403 1.604106 0.341709 0.046408 -0.923917 3.344787 3.522939 -0.305661 1.674591 -3.542249 0.519728 3.267502 0.426133 -6.548752 -0.495040 -4.304931 0.001447 0.266379 -0.952668 2.128493 -0.800659 -1.982705 -1.120543 -1.954722 3.299115 -0.835112 0.583672 1.618889 -3.155670 1.130577 -0.158866 4.471562 3.750926 3.173489 1.733993 -1.526593 1.498436 -3.812120 2.561528 0.802955 2.505749 0.141416 1.580455 2.980496 0.368765 0.860334 2.412965 0.785697 -0.049213 3.390763 0.222218 4.894212 -4.238098 2.212396 -1.438219 -2.141448 2.938287 7.837086 -3.014091 -1.647103 0.865084 1.230065 0.151104 -3.811007 -0.990862 -1.197262 -2.899083 2.485736 2.178220 0.003351 -1.992315 5.125448 2.005051 -4.573302 4.860640 -0.292384 -0.198504 1.392770 -2.377700 -0.754452 2.059475 -1.907673 -0.349569 2.247668 3.462559 -3.724286 -2.980193 -1.261460 3.845689 0.299339 0.355305 -3.923985 2.641011 4.212686 4.673686 1.854835 2.381795 -3.279478 -2.294264 0.285249 -0.753944 -1.192669 0.668107 1.882272 -2.725152 -0.166523 -1.051596 -1.393828 +5.297001 -0.274737 7.074431 -8.684853 -8.850225 4.742042 -4.061072 -7.149305 2.342213 8.963631 5.950989 -6.146730 -2.910149 12.927077 -4.753260 -8.948703 1.920268 0.892155 1.646102 -3.048423 0.594298 4.212791 -2.235036 -2.737721 1.009510 -4.590218 0.747351 5.772997 3.319896 2.408705 -7.886041 -2.189875 -1.168882 14.877293 2.517372 0.168281 1.703194 18.004944 -7.536878 14.269664 -14.462293 -12.978027 10.117029 2.334494 0.631700 -7.676261 -8.375594 4.333948 -7.668575 -3.416544 6.281388 -4.233160 3.647933 -2.956376 2.991742 8.761171 -18.280505 4.729278 0.923394 -4.095574 -4.391725 -2.221140 2.632003 4.967209 -7.187427 -7.571000 4.707593 8.964441 -5.065765 1.756022 -4.740880 -16.195446 15.021521 4.501694 -7.760315 1.244308 5.647408 -12.545742 8.884002 -6.448275 -12.320187 -2.479003 0.978901 -6.333078 10.329238 3.076085 12.752161 -19.774896 6.063162 -19.404413 10.628109 -10.654440 9.925300 13.013138 -11.371467 3.511710 7.336857 11.706501 9.467139 2.057635 13.462289 8.570878 2.868369 -0.096925 9.512943 7.780068 -6.882373 -6.998630 -8.206002 -11.536967 -1.152276 -6.058814 -21.996365 1.076929 -6.291345 5.152026 -0.218122 -0.960947 -1.495044 12.835982 -19.000480 -4.440859 2.681554 -2.156517 7.334892 10.354688 -2.390027 3.535096 -1.692911 14.340163 -5.932513 -0.961824 -2.759362 5.716087 -9.019495 -8.061185 -13.696039 4.331653 6.388125 -10.833079 -14.820989 -16.924907 -3.774703 8.916722 -2.896605 15.362368 23.144070 -5.838735 -12.167710 10.834787 0.781138 -1.966248 17.156391 2.704506 18.125695 -12.080902 4.004376 -7.884335 0.612592 -0.529393 5.769280 0.647994 -3.594837 7.528689 0.329850 -8.939131 16.736051 -4.160248 -3.961439 -7.057763 1.795944 -5.020385 -4.864276 15.518239 -8.599059 11.001526 -3.500687 19.380693 -9.842045 -12.811927 5.204083 -12.862003 -3.163715 -6.841103 -1.858132 -0.231758 12.117924 -12.265835 -7.525225 -3.714928 -5.824318 -1.808603 7.185639 2.164713 1.596147 1.578349 -0.753034 14.318375 12.965665 2.733436 1.129800 -12.190545 2.981218 8.689337 -5.805536 -14.257359 0.035556 -9.594391 0.205527 -0.955396 -0.531212 7.130891 -10.713851 -7.209967 -3.452372 -3.299770 5.950162 -0.100910 -15.237366 4.894680 -2.747810 5.420966 5.547950 11.350386 14.957386 12.478269 7.382600 -1.944139 2.717001 -5.705090 -1.822073 4.324708 6.702968 3.607982 4.148894 14.161261 2.821008 3.269433 8.147041 7.385302 4.764680 11.339441 3.001911 17.236827 -2.734468 1.775852 -1.424048 -4.829824 10.288667 22.229986 -5.912774 2.151529 5.280817 4.052107 -4.085862 -11.065672 0.481724 -4.558790 -4.412629 5.388360 5.033262 -0.794217 -6.441808 16.490899 4.182715 -19.853867 9.445544 0.464814 2.990160 10.405431 -4.546008 1.545738 4.068978 -6.606479 11.056486 7.509270 8.961315 -11.660983 -3.870198 -0.862769 8.209867 7.340714 3.935244 -14.551726 7.457583 7.284588 13.964158 6.313919 11.112897 -10.080136 -3.352520 0.474413 -8.932130 -4.272665 -0.286402 6.188320 -6.846177 3.776448 -12.232273 -8.295816 +2.262166 1.444705 2.595573 -4.026587 -2.072951 0.755211 1.982819 -2.372514 0.779219 5.829969 2.198532 -2.224938 -3.119402 4.675603 -1.545129 -3.138662 1.922137 -1.889766 -0.331709 -0.921217 -0.076187 1.853040 -0.470226 -1.981944 1.540311 -0.861017 0.427263 2.715538 0.960907 -0.811513 -3.132998 -0.494844 0.514279 6.063036 -0.163123 -0.188637 -0.494386 6.326607 -4.751180 5.617866 -7.269379 -5.015473 5.378437 0.687784 -0.155605 -6.231182 -1.566597 2.489903 -0.949816 -3.367280 1.447913 -1.477770 0.989668 -3.188175 0.430275 5.662750 -7.710778 1.893303 1.074748 -1.372112 -2.702468 -0.929841 3.049938 1.304632 -2.856995 -3.851026 1.600213 0.438664 -3.516866 1.342511 -3.286555 -6.428641 4.243103 1.691015 -2.986628 1.229824 0.053499 -5.866773 3.412001 -3.484650 -3.003412 -1.417923 1.754278 -1.169649 3.040812 1.057262 3.658612 -8.317411 0.378831 -6.652044 4.077483 -4.530005 4.846385 4.963990 -2.570689 2.032854 1.319814 2.347746 2.519957 -0.110297 5.430475 2.821189 3.861729 -1.188205 3.383990 3.672661 -4.076844 -4.019069 -3.134783 -4.307999 0.330198 -1.124467 -7.511345 0.508506 -3.979358 -0.034462 1.973324 -1.829603 -0.837910 5.395002 -7.861993 -2.402661 1.713534 -1.005295 3.533148 5.690807 -0.124311 0.858424 -0.466376 5.171838 -0.664374 0.779579 -1.387362 2.472919 -3.139718 -4.364400 -2.777431 0.177560 1.816645 -4.475743 -5.898447 -7.823552 -1.326864 1.867827 -1.564753 4.412490 8.890953 -1.736828 -5.443956 3.827905 0.225580 -0.114042 5.322273 0.462435 8.446645 -6.515816 3.174896 -1.660939 1.988544 1.435942 6.248182 -0.937352 -2.861937 2.040452 -0.879119 -4.974022 3.888899 -0.464721 0.086513 -0.687428 0.366860 -2.200251 -2.857111 5.873815 -3.805396 5.887541 -2.622381 7.546277 -5.012589 -4.691976 2.557995 -4.757285 -1.203924 -3.875316 -2.041989 0.552130 4.917463 -4.570537 -2.776573 -2.372462 -1.651823 -0.310120 4.143814 -3.813363 0.092888 -1.216497 -1.114307 5.378169 3.456734 -0.999358 1.095689 -5.127737 1.220475 3.532577 -0.546006 -7.039400 -0.040806 -4.462719 -0.701315 1.125475 -0.854395 3.081404 -2.898266 -3.121711 1.300115 -1.874267 0.730684 -2.119859 -6.304317 1.559141 -2.115422 1.154352 1.424736 6.117557 5.090489 4.004182 1.062593 -1.658198 1.291300 -3.151261 -3.308169 1.555869 0.662710 1.216270 2.442172 4.185487 1.101382 1.051125 3.983914 1.483069 0.029313 5.119535 1.697621 5.873454 -1.465764 0.099945 0.931167 -3.331383 3.475176 7.451877 -1.514311 -1.394029 2.692157 1.404911 -2.221419 -3.441335 -0.985525 -2.269067 -2.550417 3.810551 2.082790 -1.469222 -2.076414 8.075993 0.921925 -8.794369 4.097519 -0.299394 1.531080 3.662015 -2.195476 1.313262 2.830486 -1.902556 2.846709 2.024368 4.481107 -4.461222 -1.886843 -0.370487 3.711825 2.906879 -0.196028 -9.631625 1.115746 2.271442 6.790037 2.932978 6.363032 -3.091060 0.677428 -0.650274 -1.738920 -1.002900 -1.376441 3.419767 -2.379855 -0.395403 -7.143336 0.520916 +3.093121 3.337817 12.389793 -11.793834 -17.609079 3.862243 -3.045422 -7.485740 3.382909 11.146055 6.354722 -7.885927 -6.711993 19.186196 -7.612166 -11.880969 -2.910102 -3.835348 -0.061954 -5.755160 2.019846 8.160821 -2.063164 2.691692 -0.350853 -5.299061 0.267949 7.848871 5.691015 -0.113033 -7.395219 -3.442129 -0.924104 16.079222 1.156736 0.548712 2.500976 25.143523 -9.993781 18.035304 -19.222794 -17.724636 8.468076 2.220064 0.851040 -15.656204 -11.483173 6.728990 -10.512415 -1.814856 11.232026 0.039598 1.173996 -0.771558 9.001045 7.044256 -24.549001 10.627100 0.516870 -4.743572 -1.475860 -2.882006 -0.803825 6.997992 -8.053250 -7.600375 4.655549 10.413937 -7.493198 3.332497 0.230513 -17.199690 19.580805 4.319169 -11.393648 3.226134 12.922873 -14.227719 14.044972 -14.624336 -16.943754 -1.192835 1.230604 -7.503247 14.342185 2.666207 11.694393 -24.025623 6.319354 -22.039831 12.590377 -15.660507 7.485294 16.401197 -12.865099 5.156874 9.175121 10.700901 15.930868 1.223644 15.208488 12.103019 8.958215 5.002294 10.235685 9.447901 -8.842437 -7.867539 -14.112566 -18.161743 -0.804612 -7.689912 -27.096092 0.434805 1.023648 4.915332 1.408361 -1.925750 -0.811835 15.039246 -24.554081 -3.327777 5.908002 -2.239051 5.459817 13.768526 -6.223143 5.850322 -3.528984 19.120517 -9.905736 4.907156 -0.974767 5.255703 -10.012458 -9.785539 -20.625463 5.446850 5.539431 -8.830696 -15.521614 -20.381113 -4.361986 9.598703 -3.236152 17.143149 30.527356 -8.473434 -16.934682 16.905607 4.405788 -2.038781 17.140353 2.701437 19.688287 -8.997803 -1.363953 -13.058622 -4.009853 -1.469355 13.692080 6.542016 -3.494740 9.166743 1.811279 -16.086064 15.513241 -7.377347 -9.164552 -11.999159 3.122037 -9.522307 -5.344458 19.150070 -9.725741 14.327246 -4.903680 22.164754 -10.215312 -16.636377 4.999652 -18.712295 0.923044 -10.808581 -3.206581 2.949921 13.940814 -15.756367 -7.509665 -6.681711 -9.872192 -5.324045 3.067936 -4.396981 3.621651 3.353850 6.032715 20.464785 21.066015 6.394866 0.685762 -17.127036 5.206946 7.874247 -4.514539 -19.882380 2.737002 -9.984633 -0.061657 -0.231431 -1.976450 4.940052 -9.937296 -8.565012 -6.403230 -9.165282 6.054129 2.343983 -20.625236 3.964378 -4.074871 12.455224 6.405960 8.762288 21.474502 15.738713 15.274488 1.085620 3.362122 -5.636664 2.423435 5.957272 10.718210 -0.791326 5.779109 20.159526 6.919132 2.044981 12.821860 13.365905 1.747330 13.792880 0.927020 24.693537 -4.942005 1.531127 -5.621299 -0.143647 11.362667 30.280185 -4.334389 5.717976 8.081478 7.877050 -2.823548 -13.412168 -0.264806 -8.218439 -1.750627 9.965012 5.964078 -5.474222 -2.838149 16.578549 2.871519 -21.524559 8.339733 0.031700 4.191054 9.600694 -2.890035 -2.009972 6.661496 -14.245983 15.082624 10.219283 8.866562 -13.483972 -8.911769 -1.384460 8.922362 10.235066 10.226762 -21.986687 5.535270 10.285950 16.375093 4.229413 15.462148 -13.225898 -10.104518 6.383277 -10.710112 -8.309328 2.598469 7.270555 -10.015200 5.788254 -11.646836 -17.451216 +13.099654 6.371208 24.123402 -29.730451 -37.776641 7.470501 -18.946199 -7.941174 7.937569 13.850278 18.036082 -24.595660 -31.306630 43.962442 -14.467062 -39.120774 -0.311134 -14.662613 5.198347 -10.601776 5.939932 15.312442 3.184222 3.567527 4.340986 -6.257432 -17.067113 17.565728 45.550444 -18.404450 -23.568742 1.782249 1.415884 37.445666 -7.492491 -12.777428 14.242639 64.024735 -7.738627 24.965747 -36.950740 -33.338903 27.957148 5.183577 -6.933837 -32.549896 -25.877703 21.579983 -42.737001 -4.752382 26.864992 3.663498 -3.515259 -9.135896 10.193606 31.956098 -79.863075 42.243537 1.407623 6.649995 6.027950 1.313354 -0.961775 8.119677 6.963890 -21.094956 10.264692 15.595388 -33.867267 -0.323016 -1.782757 -31.185363 61.268012 11.071097 -21.247003 15.593379 32.539835 -27.391249 34.186854 -46.397351 -39.830332 -0.258077 2.737441 -8.579678 45.471903 0.916423 14.282650 -55.930111 12.485561 -52.098451 32.868883 -43.840771 19.387768 43.102493 -42.135363 12.673924 21.013443 4.373386 37.863546 7.900274 52.588583 19.623850 17.075652 11.152554 16.037671 13.120448 -16.259584 -4.803326 -27.522866 -44.101813 -11.543297 -8.425000 -68.728051 5.499202 -6.420861 19.098913 20.034458 -5.991805 -0.862268 19.697749 -46.184613 -17.245608 7.538728 -5.050397 16.539093 45.122997 -14.294392 4.006498 -10.975059 55.030604 -18.441515 7.577899 7.480575 10.646600 -1.896222 -44.795553 -49.362552 9.054426 11.116233 -25.844626 -38.455081 -44.395512 2.012585 -0.904408 -9.353633 45.510077 78.639576 -11.911042 -33.385417 47.316474 5.993617 12.866199 56.360926 1.247982 61.579108 -24.942487 -6.870455 -19.268465 -10.685848 -2.296156 -2.337841 14.540662 -0.614131 11.173073 14.991093 -21.991775 19.546026 -13.488198 -16.366043 -11.254604 3.332397 -25.246534 -29.199682 42.641686 8.219874 35.419816 11.658196 61.408622 -11.046599 -53.980726 26.007225 -13.865528 2.608875 -15.529784 -16.944893 7.108896 17.824263 -36.791957 -17.281139 -19.801835 -7.725580 -18.543556 9.558905 21.841414 18.998735 11.473841 12.137217 30.688291 46.026127 6.011570 13.779611 -56.698042 5.513252 20.645661 -19.186796 -48.449530 14.363367 -26.378645 7.988160 27.474004 -13.302151 14.013383 -19.101967 -32.417074 -11.714007 -14.214392 22.695598 0.647414 -38.073097 4.973614 -9.135889 19.185033 22.616565 29.999576 51.830639 33.104263 26.051878 9.321444 10.718666 -0.006483 14.817369 -3.090904 5.967930 16.577414 15.867396 31.713332 13.858899 8.932777 33.442172 30.130713 -9.795723 37.444425 8.862876 59.420879 -8.536383 -4.768428 -11.767610 -12.857325 32.817927 74.507368 -28.513551 8.462459 22.782706 24.905319 4.787008 -46.774812 0.148229 -20.517227 -9.860889 26.623586 4.496470 -3.073755 -6.720437 32.643176 6.937296 -56.405765 35.863916 -1.380449 7.318292 16.604600 -1.987784 -9.613768 15.685162 -48.764091 19.256324 26.061752 26.774786 -32.123290 -8.555518 -1.915551 34.397239 -6.100599 28.196797 -45.016175 9.089094 27.703829 30.738169 23.374409 20.489189 -28.106992 -44.984045 12.251563 -21.346660 -22.032177 -1.715985 11.122044 -34.469561 9.975575 -11.261503 -34.192010 +3.169538 1.977279 4.704619 -6.628167 -2.771454 1.230542 4.075146 -3.307554 1.282105 10.712934 3.542241 -3.807798 -7.573287 8.317589 -1.677031 -6.318846 3.888974 -3.534145 -0.413379 -1.757224 -0.895099 3.207957 -0.641522 -3.904077 3.987254 -1.866505 0.066881 5.833377 2.039043 -1.409317 -4.909639 -0.706451 0.576557 11.297986 -0.966789 0.362707 -0.183187 12.508031 -10.084732 11.343474 -12.015453 -10.327213 11.071934 1.126018 -0.914178 -8.217790 -1.368527 4.836791 -4.493461 -6.174951 3.139404 -2.224286 1.630395 -6.315454 1.287588 10.945337 -15.414530 3.917060 1.462850 -2.430667 -5.513374 -2.253790 4.076827 1.281408 -4.449832 -7.017083 2.469157 -0.053847 -7.155500 1.995297 -5.997068 -10.561443 7.844531 3.278731 -4.544983 3.167663 0.633276 -8.964988 5.999476 -6.406626 -5.653034 -2.971583 3.453340 -2.434861 6.471553 3.110023 6.214875 -15.422131 -0.103392 -11.948131 8.239737 -8.371240 9.219167 9.833715 -4.796778 4.916923 2.663558 3.648293 2.791891 -0.930442 10.437398 3.884231 6.602254 -1.118533 5.838320 6.522609 -8.747473 -7.762760 -6.478204 -7.166075 0.757702 -2.358955 -11.513824 0.535142 -7.788875 0.695764 5.076587 -2.866672 -2.634135 8.297503 -14.734527 -3.306568 2.818913 -1.962514 7.635886 9.756653 -0.121661 0.935263 -0.194556 9.945406 -1.518592 1.344849 -3.343604 4.856617 -3.428476 -6.841841 -4.598569 -0.360455 3.135047 -8.291584 -11.028178 -14.293596 -2.349425 3.910572 -2.747036 8.919935 17.065625 -3.014156 -8.791179 7.664809 -1.726659 2.454552 9.391116 1.281100 14.452702 -11.641418 5.493414 -2.757083 3.608166 3.235071 11.578517 -1.286058 -5.627195 3.517458 -0.067149 -5.288198 5.687805 -0.783162 0.171478 -3.608094 0.645831 -4.598280 -5.451401 11.278701 -7.301415 10.387999 -4.265618 14.314503 -8.953075 -9.066651 5.323957 -8.554773 -2.269775 -8.527974 -4.818245 0.762120 7.366062 -9.071097 -5.563970 -5.534863 -1.547631 -0.755633 7.164296 -6.269212 0.098846 -2.542402 -1.824764 9.793308 5.958198 -1.919950 1.517021 -10.644336 1.697097 5.697286 -1.521662 -12.646453 1.133246 -6.889596 -1.433827 4.250533 -1.416079 5.194024 -5.185841 -5.626162 2.685474 -2.932930 1.204150 -3.830840 -12.137023 2.563949 -1.916466 0.691073 4.530688 11.057955 9.651404 6.577740 1.441565 -1.872734 1.824378 -4.676901 -6.214054 2.801235 0.279178 4.108393 4.630138 7.175932 2.601187 1.803630 6.981767 2.996585 -0.934118 9.461498 4.063966 10.980398 -1.911628 -0.480870 2.487815 -5.973289 6.268816 12.011984 -4.914180 -2.588603 5.845393 2.878165 -3.263701 -5.356936 -1.800904 -5.089114 -4.145009 7.287484 2.711189 -2.957808 -3.484935 15.007117 0.944999 -16.578250 7.702909 -0.268794 3.375383 5.847369 -3.531614 1.743612 5.635103 -5.000934 5.664410 3.419993 8.281418 -8.058120 -1.355657 -0.798666 6.848052 5.657959 -0.429257 -17.268513 0.638046 3.254756 11.865638 6.558174 10.754534 -4.683883 0.505603 -2.354622 -4.441961 -1.659677 -2.792793 6.079485 -3.630057 0.110247 -13.476480 0.606309 +73.829536 29.281274 92.853546 -123.816419 -152.109312 50.852347 -52.019154 -78.436957 29.372753 91.686907 83.944428 -89.850303 -73.613792 180.414548 -55.926121 -130.740302 2.771236 -74.415888 1.084683 -43.390953 8.115978 63.242841 -20.675992 7.132414 2.395487 -28.525010 -23.922538 64.139935 100.086527 -52.677421 -121.373607 -15.550891 -12.354784 178.305775 14.249923 -41.135158 42.616443 265.090567 -71.793824 125.642088 -175.447477 -150.363796 103.269000 20.117806 -18.879445 -123.243779 -100.401575 87.521953 -102.131333 -31.531810 118.102022 -17.190115 0.131668 -22.997157 53.239462 122.470309 -278.512498 131.458223 20.076541 5.101756 -18.585434 -28.742368 34.163750 57.162960 -45.300467 -98.142453 81.115617 84.397428 -101.702170 12.044536 -45.877618 -202.877012 208.081763 59.333745 -99.188654 26.806652 95.101606 -154.153983 142.573750 -133.540459 -173.937057 -3.437364 12.568296 -73.100948 169.141907 6.592158 95.487898 -259.928786 69.674427 -250.782777 114.306877 -166.368918 105.351111 177.792505 -157.755514 32.393560 81.243383 101.554678 152.213439 8.973816 194.556577 87.278290 63.620204 22.088526 104.195532 78.524012 -77.496667 -48.246453 -115.319093 -185.407875 -21.331995 -45.177232 -278.092364 34.575079 -52.189172 38.572999 26.538126 -10.804742 -16.220348 131.165097 -224.778979 -90.154950 32.840919 -25.664605 96.897760 186.723082 -65.143992 54.715933 -50.628085 208.772990 -68.509818 35.050430 -18.697905 54.430219 -64.033233 -140.572095 -221.401274 54.160166 90.714209 -127.612649 -185.347427 -209.161906 -19.423194 30.327999 -51.824627 219.691814 323.629016 -82.761805 -156.543604 184.213052 33.172739 11.821871 230.619618 3.144643 264.699803 -137.145112 22.496476 -83.069225 -18.461141 -31.179707 8.919410 38.591925 -18.334971 62.061917 29.717870 -97.517337 165.122954 -41.593366 -80.600033 -45.853301 28.266844 -75.197962 -113.639523 198.833318 -18.817735 139.609733 30.988617 251.850729 -98.781861 -179.010746 97.275057 -93.853987 1.313169 -87.398528 -65.450088 12.514149 139.818248 -138.652388 -75.315693 -63.263343 -65.282817 -62.859419 54.240182 80.525476 56.481701 33.542185 44.295721 143.231172 223.562982 38.967649 40.408633 -207.713753 44.778534 115.996016 -69.795576 -171.331741 20.263929 -131.776047 8.970959 47.952401 -37.348215 75.937974 -115.345695 -123.746075 -43.757802 -39.948039 96.228496 22.444223 -208.631425 47.820459 -58.475621 79.403967 79.592052 136.206563 195.887755 166.081483 141.609490 -23.870763 43.980032 -29.757347 10.973667 9.270703 51.666841 73.725016 72.608262 157.520033 60.036335 36.124729 128.186970 99.693386 3.849403 159.933441 40.079103 262.999242 -43.260377 14.253922 -53.908707 -61.608270 137.468154 325.854835 -96.982899 29.311251 83.120606 87.959483 -35.083497 -179.588625 -5.114099 -84.119193 -33.457012 62.424727 34.536046 -24.775549 -56.734825 195.325381 26.755462 -250.468784 121.564326 -3.612686 41.160986 118.466070 -32.623246 -4.996725 57.090504 -167.866769 130.612973 118.035039 120.126055 -128.300738 -48.426931 -13.466859 129.808103 -0.017351 83.149348 -195.936208 94.004366 115.835237 167.606354 100.916801 106.740564 -137.752644 -104.749389 48.135895 -102.999359 -62.327829 20.941092 103.826095 -134.113166 46.464897 -120.162785 -128.359661 +36.069928 17.809582 42.856325 -54.423372 -69.965527 24.001351 -21.399864 -41.498292 12.779121 52.607139 34.462465 -38.550149 -25.857259 81.676032 -30.466077 -52.263488 -2.447164 -38.496889 -0.965224 -24.577552 1.254708 30.544537 -13.306944 5.978516 -1.786296 -14.670950 -3.969610 24.531509 30.127913 -21.506405 -52.929568 -10.997387 -6.853205 80.934725 11.755546 -16.338885 15.109766 116.396018 -34.005264 57.835593 -86.544173 -71.799504 39.743207 9.623923 -2.123568 -57.728719 -40.593339 38.115536 -34.567115 -9.422114 51.191777 -10.401661 -1.885749 -6.155083 26.830205 48.137284 -117.614315 58.164829 8.588943 -3.331482 -13.381634 -16.682727 20.022224 28.823063 -27.132746 -44.073783 38.674990 44.275216 -42.682260 11.823756 -21.621434 -94.534947 78.459861 26.876449 -47.299487 6.737017 38.076972 -69.389539 62.451798 -63.642157 -77.208366 -1.919215 8.236587 -36.257342 68.738777 7.533923 46.084709 -116.989336 35.437371 -112.654826 46.730982 -70.299238 48.238166 76.976287 -62.940423 12.354994 34.822885 51.353741 72.199608 1.026180 80.918987 41.452070 30.147236 9.918053 47.927646 39.730261 -33.337037 -22.578617 -49.596778 -82.792231 -8.102906 -18.559784 -116.893826 14.509963 -22.912643 13.625504 4.434392 -3.151247 -9.092801 62.730579 -110.631799 -50.131216 14.757484 -11.446535 45.395380 78.030141 -28.958987 30.793801 -22.995576 89.375377 -30.278357 16.305736 -12.908442 24.052315 -37.447187 -57.869912 -105.731392 24.978844 43.273611 -56.495664 -83.582543 -96.102699 -14.545051 17.431055 -24.175939 103.729905 142.092797 -40.576747 -73.671345 80.480190 12.744119 -3.699507 101.910799 1.457855 114.772154 -61.687628 13.936214 -37.806931 -5.465362 -15.783930 12.045227 15.782191 -10.000469 29.030539 10.983072 -42.612402 70.137623 -17.668598 -38.753577 -28.334790 13.761467 -29.204627 -43.705701 86.772185 -21.331303 61.929397 6.272238 108.975973 -51.022894 -75.805448 39.066463 -56.566574 1.779614 -36.222438 -25.336054 2.204239 71.366269 -62.331380 -33.131371 -23.693296 -36.910271 -27.066406 23.376311 27.734342 22.283822 13.515612 20.625846 75.292338 103.506269 19.899944 16.987586 -86.902092 23.043618 54.021570 -24.269837 -75.845731 5.111736 -59.919505 -0.050309 12.515842 -14.309119 33.281557 -52.887071 -50.379651 -20.815153 -19.020664 43.440989 12.728952 -91.664643 25.301480 -32.610339 38.653624 30.715815 58.728854 82.826871 76.081277 67.834509 -18.317856 18.342599 -22.264049 8.011904 10.278309 33.117595 24.020637 32.183262 74.715275 27.669370 14.897139 56.725266 43.476476 2.451654 70.581195 10.928264 117.924101 -30.841144 14.726590 -27.937336 -24.809093 58.169719 147.229017 -40.732209 11.123694 35.712925 34.981443 -19.352811 -74.890054 -3.801594 -37.799243 -11.934917 20.192862 20.776527 -15.935441 -25.764779 91.317147 12.254430 -108.864138 51.646278 -1.534390 16.304358 53.615273 -17.074986 -3.372021 26.029015 -71.869403 60.807467 54.135104 52.557679 -56.030993 -27.453088 -7.196468 57.023813 5.788843 34.687726 -90.477014 46.025109 54.870770 78.282866 42.055704 52.222840 -63.555102 -41.986756 24.501892 -46.057799 -27.972156 17.014221 52.911596 -57.012988 24.002643 -54.759492 -58.263475 +19.844486 6.239655 30.071219 -38.529679 -42.140618 13.224279 -11.501615 -18.978741 8.621470 27.979476 23.479864 -24.917375 -31.401517 54.667657 -15.286627 -45.441898 3.426229 -17.883803 0.492639 -9.776679 2.219923 20.679081 -3.568883 -1.263906 8.052299 -10.456702 -8.377132 24.442929 32.884002 -15.813773 -33.736638 -4.465050 -2.535639 56.516944 -1.244027 -6.339014 12.772668 84.646961 -21.827387 46.818772 -52.499213 -51.113404 39.931229 5.315967 -6.698773 -36.832681 -27.933363 27.552757 -40.069538 -15.232403 33.978689 -3.916528 -0.136346 -14.244084 16.191254 41.064989 -91.718940 39.114352 5.183613 0.261099 -7.874536 -8.797363 6.703820 10.941705 -10.508229 -31.113782 18.826903 21.507467 -37.372757 2.926922 -13.106156 -56.235112 71.809448 19.061720 -28.597747 14.749259 30.957931 -43.329136 42.760791 -43.605041 -52.426158 -5.731269 5.668359 -18.719778 54.319983 5.730462 29.670958 -82.265022 19.475918 -75.511191 41.270029 -52.397750 34.913642 58.342153 -48.299784 18.485721 27.464617 27.193001 37.976033 4.092869 64.080496 25.739894 19.863995 8.894530 29.916515 22.097632 -30.746412 -20.469513 -38.181074 -55.482903 -5.268276 -16.501209 -86.509700 7.193260 -16.773858 19.956111 16.104867 -3.291835 -5.146416 34.798338 -75.239866 -20.141004 12.363486 -8.766706 31.408405 55.587692 -16.274107 10.197684 -12.787753 66.347196 -23.776615 8.664463 -5.522136 19.470536 -13.510614 -40.685851 -58.326149 10.725768 22.694998 -38.503055 -58.022383 -65.727943 -6.662121 14.878355 -15.077514 64.516854 103.466978 -23.181699 -46.540309 57.497709 4.212675 12.312923 67.895742 4.989500 78.297917 -42.251335 3.622025 -24.800506 -5.280800 -1.520098 8.471045 12.047168 -10.063915 21.307406 10.088239 -26.873059 47.231222 -15.598088 -20.907030 -18.287502 6.882566 -29.300958 -34.942659 62.795587 -9.005650 48.064767 5.399545 82.047414 -30.435005 -57.405140 29.556361 -32.874268 -2.222781 -35.556423 -21.043283 3.080199 37.090307 -49.533935 -26.306034 -22.308417 -16.424232 -18.285401 20.474368 16.673428 15.955748 7.133440 10.893230 47.413510 61.833376 8.043258 9.740603 -67.478405 11.654812 30.341762 -22.927564 -57.226617 10.491781 -36.324412 2.121463 23.566900 -11.749553 20.900717 -31.671050 -37.538146 -10.515702 -15.171659 24.670398 1.128536 -63.089431 9.891170 -10.044568 20.817344 28.458056 44.234741 65.883118 47.662602 35.778817 -0.062733 13.423588 -7.161037 -1.080747 3.302701 10.165388 27.430101 23.047817 46.541690 20.683212 11.658203 40.519641 33.426941 0.117709 50.839371 17.070099 81.336825 -9.341807 -3.312744 -10.057041 -18.187108 42.960910 93.011155 -35.186920 10.967751 29.366842 28.011970 -7.220685 -51.358338 -0.602365 -27.683250 -14.106965 28.812204 10.437126 -6.630663 -15.572284 61.604310 5.661101 -82.093925 40.192825 -0.996267 16.066470 33.027324 -8.486109 -0.262714 21.760325 -51.026706 37.126144 32.849216 38.921217 -43.564771 -8.811641 -4.294223 39.875530 4.856239 25.815765 -61.528849 19.605003 30.926069 52.648163 30.995258 34.629144 -37.819560 -32.934533 9.239211 -32.808924 -19.782871 0.865369 26.689553 -34.394496 10.396909 -42.205100 -37.191415 +2.026650 1.834227 2.283047 -3.365632 -1.437881 0.722269 1.298819 -2.160743 0.212686 6.666979 1.506223 -2.144744 -4.455226 4.153515 -1.723525 -4.050301 1.502031 -1.330599 -0.306995 -2.750346 -0.568697 1.590852 -0.114202 -2.680819 2.133472 -2.032543 0.181991 2.343637 1.056551 -0.638640 -1.809522 -0.419487 1.165963 6.289069 -0.541895 0.701356 -0.931675 6.200182 -3.561552 5.236505 -7.586671 -7.054375 6.290064 0.893492 0.381899 -4.689553 0.042371 2.288318 -2.002283 -2.244629 0.316494 -1.475741 0.336753 -3.795682 -0.001072 5.706248 -8.096965 3.185024 0.198458 -2.752254 -3.864876 -0.945217 2.697346 0.692967 -1.164627 -3.827904 0.932406 1.544516 -4.492730 1.883975 -3.181756 -5.412661 3.875488 1.803092 -2.235995 1.683625 -0.455481 -3.412375 2.674316 -4.197536 -2.571260 -2.037935 3.172142 0.299828 2.033357 3.320262 3.845101 -8.665162 -0.181582 -6.381298 5.005722 -3.467723 5.805943 4.523802 -1.936464 3.064490 1.680460 0.676173 1.686748 -0.206627 5.817359 1.480119 3.942934 -0.415990 2.428027 3.706834 -4.191557 -4.132210 -2.512838 -3.766838 0.278826 -0.507891 -5.650938 0.098031 -5.087706 0.524577 2.530841 -1.554386 -1.145752 3.678305 -9.358337 -4.377122 1.668515 -1.111228 5.075299 3.929759 0.625794 1.003604 0.321929 5.247897 -0.716614 -0.241053 -1.660299 2.786790 -1.233144 -4.777755 -3.453026 -0.001565 1.599931 -5.009359 -5.903012 -7.102572 -1.883662 2.791048 -1.599586 4.993181 9.370095 -1.576255 -5.170004 3.797508 -1.713704 1.107369 5.888484 1.143956 8.386313 -6.898890 3.524255 -0.624268 2.612219 3.095550 6.006212 -1.266057 -3.373592 2.050680 0.658018 -1.313731 0.452788 -1.633613 0.309467 -2.772937 0.386434 -2.110765 -1.800492 4.764848 -3.806095 6.335665 -2.963723 7.836310 -5.993361 -5.772561 2.558191 -6.226229 -2.293971 -2.863916 -1.217264 -0.653918 4.458705 -5.577372 -3.184174 -2.324366 -1.587486 -0.173038 4.244426 -3.474027 0.058852 -1.479872 -1.735334 6.156828 2.792611 -1.117219 0.602561 -5.622917 0.455952 3.525476 0.479378 -7.519449 0.360437 -3.792536 -0.772610 2.486496 -0.834710 2.896803 -1.526792 -2.178437 1.050738 -2.190745 1.111581 -2.723487 -3.511612 1.643218 -1.539698 0.296082 1.179656 6.645873 5.343813 3.352762 0.127768 -1.128880 1.454319 -4.075927 -1.540673 2.018884 0.931292 1.829045 2.560725 3.841800 0.972255 1.353042 4.844109 1.328596 -0.900063 5.105064 0.886577 6.293683 -3.447505 0.636655 0.915341 -3.385128 3.389944 7.196781 -2.856851 -2.409280 3.288626 0.825182 -1.052493 -2.957550 -1.170075 -2.436577 -2.716989 4.277241 3.019681 -1.580266 -2.308654 8.484884 1.222964 -8.863689 5.808551 0.086230 1.315473 2.489761 -2.798023 0.073730 3.855021 -2.035509 1.121612 2.076388 4.870325 -5.374088 -0.967658 -0.805181 4.780116 2.602597 -0.796908 -8.919028 0.443679 3.002171 6.585072 3.234864 5.513032 -2.760612 -0.620641 -1.425699 -1.784734 -1.315139 -0.714219 2.971839 -1.923477 0.279630 -5.926593 0.784130 +4.948921 2.613646 5.993481 -7.420487 -4.425235 1.725218 3.305170 -6.593097 0.388132 12.589713 5.912123 -5.698041 -6.423731 9.957481 -3.730147 -7.863763 3.874935 3.675310 -1.305885 -4.200005 -0.709360 3.239246 -1.720389 -5.385679 4.165042 -3.327765 2.227782 6.952004 3.021188 1.593976 -6.281918 -1.450133 2.140807 15.151483 -0.210185 1.016153 -1.814181 14.746252 -11.326501 11.796371 -15.682904 -12.876730 14.156940 2.351448 0.694469 -13.000850 -6.387066 5.692119 -3.998193 -8.422867 2.343920 -3.868192 3.084984 -8.184931 1.033186 13.549244 -17.460355 2.424575 2.970154 -6.338196 -9.210992 -1.382744 7.255060 1.769215 -7.812263 -9.655436 3.348635 3.356556 -5.691379 3.287173 -8.654631 -17.680482 10.423603 2.346238 -6.554550 3.333425 0.131703 -12.918784 7.869374 -1.862135 -7.184865 -4.362435 4.950087 -2.572474 5.932936 4.269394 10.437803 -20.538212 0.977728 -16.865319 10.470555 -10.019322 13.069265 11.640311 -9.090397 5.771938 5.012141 7.380218 4.509049 0.805067 13.632708 6.038150 7.000378 -3.208805 8.737850 8.365682 -10.075387 -11.277607 -8.889243 -10.955350 2.042607 -4.348927 -19.514834 0.878510 -11.403186 -0.657545 2.456975 -4.370790 -0.549124 13.663698 -19.202080 -2.943672 5.486244 -2.642495 8.718982 12.896144 0.219957 2.015525 -0.963385 12.003642 -2.746339 -0.643655 -3.529554 6.626929 -6.514002 -11.867653 -6.841438 1.192377 4.920050 -11.687784 -14.208666 -17.979157 -3.384340 6.950430 -3.683541 7.502593 22.125571 -4.821478 -12.503521 8.144901 0.372834 -0.309847 14.056960 2.717860 22.466693 -17.019321 8.339587 -4.057859 4.542072 5.455344 9.289563 -2.846449 -7.667593 6.597342 -1.194732 -11.438088 14.399959 -4.502870 0.589502 -1.552772 3.381486 -3.449869 -4.783944 14.699494 -8.790332 14.231024 -6.981944 18.005660 -12.831145 -11.426448 5.054191 -12.753695 -5.107683 -8.416857 -3.145863 -1.126053 13.153554 -11.049955 -7.259408 -6.107817 -4.651712 0.655505 10.941439 -6.354168 -0.043477 -3.070950 -3.476593 8.753432 7.839179 -1.415429 1.905679 -12.498893 1.811324 9.255482 -1.645984 -17.674131 -0.155324 -11.587977 -1.576723 -0.867098 -1.662673 8.239458 -6.718532 -6.218325 1.546066 -4.749352 1.530535 -5.769089 -12.280898 4.445428 -5.899169 2.603917 3.397016 15.792366 15.004055 10.435171 2.460870 -2.973725 4.861504 -8.976647 -8.498689 5.755235 1.377847 6.073948 5.659441 8.642265 2.351284 3.309556 7.846959 1.190460 3.830123 13.063519 6.485890 15.781144 -2.523586 1.133476 2.503966 -7.722694 8.555672 17.932921 -1.584737 -2.755052 5.784843 2.943184 -6.038911 -9.990607 -2.229490 -3.622102 -8.886870 9.455209 5.991509 -3.358008 -6.171720 20.277567 2.606430 -21.901048 10.671852 -0.812466 3.443326 9.543253 -5.825796 3.808592 7.040227 -1.058611 6.113880 4.727381 11.635925 -13.315321 -3.114348 -1.245130 10.165669 8.829099 -1.837679 -23.622427 6.269252 5.248541 15.898134 5.550270 13.571715 -8.245094 2.637221 -2.643194 -5.394166 -2.034292 -3.102741 7.910446 -4.387789 -1.389080 -18.811743 0.612192 +7.145741 1.589652 8.298708 -6.832604 -2.301691 3.597419 3.240453 -7.831122 1.478270 22.410319 4.572933 -3.379546 -5.215969 8.063264 -4.457412 -6.351697 6.117908 3.703516 1.623676 -6.203595 -1.040413 2.877234 -1.816727 -7.689500 4.720781 -5.895750 4.248107 6.818334 -3.977203 6.058606 -4.928851 -2.508766 0.529163 16.749509 0.354052 2.313312 -3.812365 13.853888 -14.294923 14.786635 -18.881649 -18.292774 15.848487 2.790541 4.489531 -8.624431 -1.274181 4.965578 -0.597456 -10.906486 0.065624 -6.262116 6.438279 -9.686776 -1.235085 11.207286 -16.798669 -2.633658 1.143069 -11.419770 -14.090617 -1.093009 10.359924 5.030815 -10.880769 -10.179318 4.248356 5.191212 -5.179670 4.555601 -9.608138 -18.294406 4.347163 3.054631 -5.988625 2.509397 0.165531 -12.575158 7.755345 -1.522184 -7.475004 -6.639862 3.926361 -8.168075 3.654228 7.371933 16.759126 -21.690218 6.138959 -17.465363 13.444024 -7.087480 15.145961 11.498030 -5.173317 6.827002 7.158436 14.303503 4.037723 -2.391627 13.989509 8.185332 7.510451 -2.711954 10.187365 10.988677 -13.146126 -13.164604 -10.336461 -9.780100 3.428368 -7.267595 -15.143908 0.161996 -12.884259 -0.340613 3.401374 -5.721862 -2.620848 17.952324 -27.259336 -4.368985 5.464480 -2.628014 9.287311 8.300827 1.474494 2.231751 3.178749 12.347649 -5.142452 -4.224392 -2.656761 8.337647 -10.128627 -4.526628 -4.313709 2.293395 5.214737 -14.064460 -15.056365 -21.431958 -5.197068 12.995953 -2.852980 12.336471 23.303631 -4.529025 -13.276819 5.585292 -5.448017 -5.433989 14.621861 4.454172 20.337885 -19.156765 9.420226 -6.143178 7.380355 8.247977 18.387854 -3.568566 -7.470770 10.021206 -1.414767 -4.975452 12.847502 -4.925879 2.220313 -6.707812 3.960069 -3.284622 -0.683117 12.652873 -17.383982 13.941599 -10.116715 19.065022 -14.999255 -10.171619 3.757570 -21.805343 -8.190905 -8.729065 -1.863100 -3.048409 14.848424 -12.984465 -8.381622 -7.686097 -7.182498 3.252320 13.344555 -12.405030 0.333826 -3.086464 -7.409341 16.558362 5.266144 -0.186814 -1.369818 -10.732365 1.182298 9.202971 -1.581998 -16.226593 -3.286687 -12.684477 -1.448626 -1.714042 -0.204709 11.445979 -9.256074 -4.799981 1.836637 -3.916262 -0.830063 -7.645098 -14.869582 5.265190 -3.306956 3.487861 3.362716 17.647492 13.386143 11.669155 0.619953 -3.952158 3.886618 -11.875472 -10.782675 7.655222 3.708761 4.672392 4.942990 10.453288 1.289830 4.907970 8.280849 1.711216 5.570505 13.827851 1.933208 13.622600 -6.628941 3.567241 3.787888 -7.412378 7.979812 15.205206 -1.540367 -3.428069 5.495152 -0.392244 -8.358814 -5.189917 -0.621954 -4.225469 -5.143547 6.043810 11.282890 -2.607564 -8.882616 21.593257 5.336972 -24.826284 12.214856 -1.128985 3.450295 13.923770 -8.031501 5.630831 5.552157 2.476566 8.095489 5.092079 11.333333 -16.210618 -0.237603 -0.468836 11.391914 11.940640 -3.441417 -26.428605 5.766715 2.997801 15.800696 5.347864 18.898822 -10.203971 5.985906 -4.250639 -8.544853 -2.278984 -2.159431 8.947949 -1.416186 0.807616 -22.952762 4.323534 +18.782566 8.011087 24.844582 -28.648628 -39.090888 11.750339 -12.071795 -19.843134 5.790211 25.737268 21.789687 -24.530865 -17.347948 45.844625 -16.912568 -33.473747 -0.771290 -8.743528 -1.436993 -10.903657 1.048158 16.821618 -6.127344 -2.700196 4.606700 -8.866538 -3.337032 17.912583 21.467081 -6.237215 -28.070534 -4.643344 0.450227 48.031770 3.168545 -6.801195 10.187949 67.333802 -20.085288 35.616292 -45.980531 -43.990538 32.602497 6.121419 0.056199 -30.800380 -27.324347 22.595783 -29.498079 -9.708308 26.020990 -5.455068 1.061531 -10.273098 13.311297 31.535676 -73.499545 32.448411 5.637558 -4.967566 -11.290492 -6.658277 6.805399 11.422441 -11.401724 -26.345431 15.067136 25.999232 -23.287630 4.728997 -11.937309 -52.153367 57.986253 11.993157 -24.749141 8.936282 22.055961 -37.715011 35.630851 -33.604039 -43.513518 -4.185603 6.877581 -14.989135 40.255403 8.022215 28.595131 -68.329492 17.379331 -65.446918 33.632513 -41.128030 29.009692 46.356224 -42.445746 12.865872 22.865603 25.739979 36.876583 9.664578 50.385311 23.304103 16.669727 4.866520 24.101658 23.076160 -23.201697 -17.889927 -30.906116 -47.256442 -4.758409 -11.186885 -74.195463 6.449523 -14.727088 17.433042 6.297873 -3.755803 -0.504770 34.702948 -62.530357 -18.844129 11.221708 -6.626790 26.196580 43.187872 -13.238330 12.001010 -12.105082 52.549559 -18.614288 3.592547 -4.943627 16.698991 -19.399780 -40.417822 -54.125577 14.005337 20.984964 -33.079635 -48.220392 -56.432989 -5.475394 16.040017 -13.810705 49.226090 83.948760 -20.679629 -40.867143 45.555708 7.904163 2.041465 59.446956 4.784027 67.851720 -36.949688 6.824207 -20.013303 -4.052440 -3.444298 3.681313 7.477850 -10.634654 19.233429 8.151906 -29.553842 47.086681 -12.961724 -17.374137 -15.146990 8.407477 -19.699655 -23.377957 52.539079 -7.531674 38.455756 0.315511 67.726112 -29.573446 -47.404800 22.456640 -30.884593 -3.430144 -23.381525 -12.872009 2.752892 36.832966 -40.482347 -21.605199 -13.380315 -17.442915 -14.646615 18.595508 15.897656 11.142834 6.955459 6.867574 36.135147 50.427282 7.426107 8.991865 -52.214650 9.088609 26.604202 -18.417983 -51.786934 4.836223 -33.051936 1.661848 10.504372 -7.508965 19.036061 -26.619824 -28.228821 -9.216933 -14.413129 22.371701 1.371677 -42.532482 11.750202 -14.866123 21.187958 18.720802 37.674195 55.263244 42.637917 30.912667 -1.260327 11.371332 -12.559528 3.649392 7.523652 14.719828 18.533679 18.191901 41.157933 15.086907 9.787352 29.843746 24.126788 3.725395 42.481347 13.272611 67.674300 -14.487720 3.253244 -9.944798 -13.563874 36.571687 79.403610 -26.772623 5.564434 19.859677 19.577076 -8.434841 -39.976644 -0.936209 -19.194684 -15.007453 19.323415 12.714280 -5.578549 -14.683161 52.728947 7.459142 -66.142189 34.367960 -0.548721 12.242168 28.246141 -9.830339 0.237543 17.479298 -33.977358 31.614866 28.947524 32.651073 -38.253363 -14.815408 -3.967042 34.494411 7.909659 20.286627 -51.882657 23.250684 29.386481 42.840402 20.871647 28.720243 -35.598200 -25.653314 7.071657 -27.135362 -16.900824 3.380355 22.498051 -28.149946 11.692943 -34.165103 -33.173989 +3.582431 4.074357 4.519742 -6.242425 -1.337635 2.030076 3.280913 -3.125856 0.683584 14.555091 0.600333 0.059349 -7.210502 5.213669 -3.565759 -5.934573 3.852193 -3.280523 -0.255271 -5.333641 -2.589258 2.599034 0.195120 -5.655188 4.680869 -4.941733 0.994442 4.769637 -1.970439 -0.880917 -1.538901 -1.313876 0.080959 10.625727 -2.097700 3.256817 -1.407307 8.340944 -5.979582 8.727488 -14.344853 -11.154479 10.365809 1.067635 2.593025 -9.500862 2.709215 2.206381 -1.006921 -4.021464 -1.206803 -4.460726 1.275998 -6.396340 1.020020 8.649190 -11.021775 2.140962 0.008521 -5.115904 -7.383714 -1.557405 6.310744 0.724550 -3.068362 -7.693585 0.849675 2.483960 -7.547129 4.240667 -6.611567 -7.514201 1.641396 3.831150 -3.439492 2.388495 -1.850283 -5.916225 2.403297 -7.848570 -2.506973 -4.953153 6.689479 -0.130805 1.638832 5.294117 7.736182 -12.603660 0.071644 -8.516320 6.819737 -4.406943 10.854355 6.835496 1.383131 4.676348 2.919514 0.808644 1.284952 -1.927694 8.991940 2.294394 7.385499 -1.887648 4.347545 5.697612 -8.274904 -8.435425 -3.080770 -5.143616 0.814319 -1.565485 -6.868124 -0.239775 -9.033467 -0.248923 4.583125 -2.430724 -3.064195 7.138943 -17.392368 -7.806956 2.781061 -1.984159 7.500007 4.298322 2.171279 0.874118 3.727376 6.448117 -1.021024 -0.807556 -3.262047 5.187135 -2.867685 -5.121828 -3.268825 -2.887136 1.600424 -8.840531 -9.620452 -10.731483 -4.168834 5.094394 -1.826148 8.752741 15.277155 -2.078256 -8.905089 3.519011 -4.862670 0.200370 8.523406 2.555969 10.913335 -12.243350 6.431601 -1.497828 6.541734 6.526277 15.129625 -3.655300 -5.572063 4.011098 -0.121876 0.471134 -1.932828 -2.137385 2.728774 -3.589965 -0.168395 -2.484460 -1.106759 6.478585 -9.735752 12.646706 -6.605223 12.531555 -11.278463 -8.430093 3.708077 -12.681968 -3.528089 -5.236111 -2.071221 -0.934435 6.720690 -8.139259 -5.786992 -5.224106 -3.529589 2.181323 8.288478 -10.052248 0.135696 -4.498255 -4.880804 14.035768 3.659321 -2.252193 1.132582 -7.038339 2.657959 5.931902 2.202261 -10.948692 -0.649667 -5.221146 -2.195394 4.278800 -0.833790 5.113577 -1.874287 -2.132027 2.747863 -4.044208 -1.274614 -5.220896 -6.869616 2.277117 -3.211761 -0.864610 0.827489 11.045895 7.315617 4.173600 -1.997993 -3.258593 1.661740 -8.278857 -3.827630 4.453311 0.986199 1.374766 4.195909 5.260365 0.932277 3.182088 7.518741 2.704542 -1.152712 8.216736 0.102524 8.149495 -7.828594 2.291175 2.138494 -6.064979 4.774583 9.243775 -3.028361 -4.302174 5.597616 1.086299 -2.286180 -4.111573 -2.572030 -4.236487 -4.269813 6.692970 6.332303 -2.948826 -4.178892 14.929442 2.974730 -13.556344 8.960688 -1.358070 1.142599 4.173387 -5.124496 0.183030 6.320431 -1.737373 0.670489 1.659354 7.411998 -8.264404 -0.003148 -0.595940 7.698389 4.998676 -2.399361 -16.460625 -1.730766 3.253056 10.842815 5.357940 13.118723 -3.177321 1.448379 -2.550782 -2.671575 -2.234642 -1.503740 4.060704 -1.790125 0.417919 -11.965036 4.822174 +2.175242 1.532624 2.295031 -2.664117 -1.663543 0.960804 0.535200 -2.077894 0.268508 5.406506 1.358441 -1.787098 -3.024911 3.401075 -1.645450 -3.344714 1.043848 -1.260481 -0.210543 -2.004805 -0.508419 1.265179 -0.383655 -1.794810 1.497992 -1.258536 0.428723 1.725014 0.827178 -0.591901 -2.100663 -0.418422 0.699728 5.492088 -0.100754 0.198014 -0.321854 5.672897 -2.228832 3.879872 -6.266987 -5.723811 4.727918 0.640320 0.291975 -3.643447 -0.014880 2.307109 -2.007831 -1.886764 0.794759 -1.276038 0.128822 -2.852833 0.038191 4.421382 -7.320263 2.900550 0.425149 -1.673648 -3.230756 -0.919780 2.696721 0.728874 -0.892439 -3.112727 1.201588 1.493210 -3.585022 1.545124 -2.671830 -5.067182 3.595836 1.427286 -2.252487 1.203330 0.006957 -3.082195 2.601212 -3.489064 -2.746378 -1.583937 2.232786 -0.618717 2.449953 2.307525 3.062391 -7.467040 0.848516 -5.875632 4.000830 -3.200519 4.676096 4.246373 -2.416961 2.185748 1.586746 1.399326 1.820308 -0.339244 5.026150 1.343722 2.821882 -0.342696 2.126496 2.908532 -3.417414 -3.115658 -2.372487 -3.759058 0.134850 -0.463163 -5.268785 0.222736 -3.971127 1.126809 1.802708 -1.099818 -0.951729 2.954149 -8.225062 -3.782931 1.207432 -0.900538 4.353995 3.707861 0.004471 1.298352 0.016499 4.746074 -0.903582 -0.377747 -1.279536 2.208906 -1.309766 -3.775339 -3.738279 0.333022 1.868075 -3.970318 -5.239506 -6.465418 -1.445828 1.911252 -1.388267 4.792248 8.144967 -1.442441 -4.493170 3.559373 -1.372268 0.758415 5.634311 0.796307 7.096056 -5.655082 2.673931 -0.724030 1.907307 1.855633 3.427860 -0.888930 -2.247604 1.995472 0.426767 -0.629748 1.271389 -1.079549 -0.191328 -1.976059 0.449693 -1.811501 -1.838083 4.400837 -2.586116 4.825506 -1.697076 6.882966 -4.846018 -4.780351 2.108567 -5.233574 -1.548148 -2.313374 -1.494919 -0.627460 4.173811 -4.860101 -2.642197 -1.629048 -1.296291 -0.379731 3.291301 -1.512641 0.306683 -0.890148 -1.028955 5.176493 2.993943 -0.752930 0.548606 -4.899206 0.288048 3.163784 -0.124360 -5.644713 0.135767 -3.643838 -0.586180 2.105451 -0.722528 2.393924 -1.946646 -2.204160 0.735212 -1.644332 1.377266 -1.710419 -3.787054 1.392539 -1.645936 0.463358 1.340248 5.452974 4.600141 3.338103 0.896533 -1.058815 1.418709 -3.065938 -1.052556 1.097169 0.873455 2.117813 2.183462 2.830789 1.139308 1.055855 3.384479 1.264771 -0.673757 4.564516 0.992067 5.767133 -2.889342 0.882685 0.317158 -2.632304 3.049728 6.431481 -2.843961 -1.368648 2.564490 0.879971 -0.902244 -3.155281 -0.905787 -2.149464 -1.861253 2.577917 2.339016 -1.310668 -1.946310 7.091362 0.860713 -7.484427 4.709773 -0.044234 1.056482 2.619948 -2.105981 0.120724 2.872067 -2.146784 1.564069 2.079524 4.199574 -4.410148 -0.353959 -0.657556 4.281289 1.298705 -0.109185 -6.959823 0.855522 2.457430 5.257965 2.943183 4.383013 -2.717360 -0.770478 -0.818146 -2.004905 -1.168488 -0.277961 3.065694 -1.197700 0.217331 -5.082805 -0.090143 +5.110590 2.399151 5.672426 -5.095543 -3.137520 1.976566 2.835430 -5.525491 0.866104 14.257305 4.070236 -4.406092 -4.406030 8.036900 -3.302905 -5.465097 3.618324 1.038671 -0.205985 -3.487023 -1.357976 2.710150 -1.403453 -4.942826 3.885826 -2.912271 2.085092 5.011713 -0.668780 1.598027 -4.753454 -1.310005 1.537123 12.933566 0.002964 0.460489 -1.319672 12.291644 -9.736312 11.119745 -13.462954 -12.120467 12.014983 1.731984 1.616123 -7.331920 -1.883353 5.244611 -1.699982 -7.648893 1.535938 -3.539696 2.725257 -7.215227 -0.034424 10.421011 -14.713189 1.965751 1.913146 -5.940178 -9.151238 -1.582097 6.402484 2.556646 -6.619787 -7.941090 2.886419 3.352124 -5.270979 2.975125 -7.382423 -14.103074 7.564903 2.052710 -5.420880 2.574648 -0.226130 -9.212443 6.501193 -3.398514 -6.162551 -4.113155 4.109697 -3.622941 4.529023 5.032793 9.822280 -17.508045 2.564999 -14.067212 9.941702 -7.406714 11.303447 10.080037 -5.785067 5.113418 4.276721 7.580591 3.629211 0.164272 11.365086 4.642102 5.739868 -1.957745 6.342816 8.172705 -9.518837 -9.571672 -7.420923 -8.390257 2.165306 -2.356366 -12.627420 0.712762 -9.670440 1.689690 3.213483 -3.302136 -1.539181 11.681623 -18.528286 -4.272349 4.136197 -2.130770 8.625953 9.072919 0.344517 2.394250 0.127785 10.135608 -2.558556 -1.773694 -2.828801 5.926868 -6.287163 -7.092235 -5.620324 1.190662 4.316738 -10.196759 -12.024080 -16.550979 -3.023469 7.150861 -3.366574 9.160961 18.716955 -3.930671 -9.709869 6.592417 -1.803626 -0.968507 11.668057 2.388307 17.531786 -14.510243 6.971267 -3.119883 4.738901 5.097125 11.256744 -2.419757 -6.194190 5.927171 -0.039007 -5.532641 10.425601 -2.399152 0.449587 -2.906864 2.414670 -2.476926 -3.282750 11.404251 -8.659457 10.578628 -6.226848 16.299358 -11.160361 -9.010948 4.332082 -12.108471 -4.448555 -7.158546 -2.711628 -0.986656 11.144787 -10.078675 -6.231590 -4.125829 -4.317401 0.682958 9.108331 -5.903108 0.186342 -2.504118 -4.252807 10.883961 5.630365 -1.253826 0.384137 -10.454411 0.811419 6.880939 -1.672761 -13.488290 -1.033193 -9.505068 -1.466276 0.677741 -1.177789 7.037726 -6.774201 -4.750684 1.982334 -3.712070 1.095436 -4.907965 -10.455668 3.801420 -3.650907 2.212215 3.222373 13.359557 11.220306 8.866986 1.851987 -2.374712 2.743736 -7.597876 -6.974014 5.162566 1.841497 5.114817 4.882951 7.638161 2.018525 2.959391 6.195839 0.364521 2.276529 11.058971 3.251121 12.534610 -5.024818 2.174432 2.213924 -5.967390 7.469000 13.536021 -3.981963 -3.708645 4.876297 1.000856 -5.220132 -5.265388 -1.477096 -3.754599 -5.103974 5.538637 6.173346 -2.334524 -5.578467 17.306628 2.193950 -18.736358 9.533882 -0.554407 3.095404 8.835734 -5.014313 3.531161 5.526257 -0.608085 5.296029 4.410715 10.043590 -11.402298 -1.280988 -1.050186 8.868029 6.771607 -1.336641 -20.216108 3.611095 4.134211 12.425144 4.843173 12.126291 -7.313001 2.402322 -2.488467 -5.281857 -1.760833 -1.858829 7.323845 -2.316792 0.560699 -15.983533 1.602359 +5.974682 1.125032 2.951974 -4.400427 -0.752885 2.410151 1.568081 -5.895820 -0.205361 13.089184 3.804186 -3.920927 -3.530649 6.241598 -2.112497 -6.122090 4.689845 4.736275 0.390169 -3.677774 -1.967032 1.216493 -1.340669 -6.179494 3.307345 -4.089528 1.761355 3.954642 -1.135050 3.301492 -4.815195 -1.083161 1.276800 12.263177 0.711865 0.485471 -2.215292 9.875310 -8.467349 10.559563 -11.449793 -10.261069 11.244643 2.318807 2.075706 -4.915923 -2.401523 3.308634 0.092380 -6.952598 0.321183 -4.922677 3.431760 -6.622418 -0.729968 10.923570 -10.876715 -0.117596 1.507173 -6.758373 -8.927332 -0.894561 6.493046 2.420361 -6.649906 -8.049121 3.057697 4.849551 -3.428569 2.700091 -9.298110 -14.839070 6.171052 3.336019 -4.661652 1.469166 -1.739858 -8.192004 4.528372 -0.062641 -5.136547 -4.329078 4.117544 -1.568005 2.513301 5.944082 11.233044 -16.220709 2.623190 -13.455367 9.426516 -5.697753 12.341788 8.782236 -3.674639 4.166458 4.435589 7.051125 1.910596 0.244712 10.563284 3.551959 3.011043 -3.440772 5.936715 7.535718 -8.440958 -9.601110 -4.907772 -5.807172 1.824942 -2.216096 -11.322835 1.179163 -11.740208 1.602757 1.933722 -2.413142 -1.442067 10.850616 -16.192120 -5.858661 3.357804 -2.438633 9.643114 7.562656 1.605829 2.286313 0.132629 8.595327 -1.311686 -3.429380 -3.719037 5.900637 -6.280944 -6.417932 -4.625220 1.551723 5.141814 -11.433952 -11.522997 -13.391469 -3.454962 8.346163 -3.232950 9.642584 16.644700 -3.996423 -7.720277 4.505452 -2.934494 -1.019553 11.577466 2.802036 17.703080 -15.602166 8.975048 -2.026555 6.215266 5.348555 8.703439 -3.706362 -6.270846 6.099805 -0.086939 -2.728520 10.650819 -3.438208 1.219561 -1.436195 2.259733 0.571823 -1.549700 9.916353 -9.600099 9.772068 -5.601691 15.013743 -10.973137 -7.661618 4.018970 -10.951165 -6.603074 -5.443901 -0.466610 -2.565365 10.788166 -8.707653 -6.152197 -3.034230 -4.728489 2.004019 9.967719 -3.211216 -0.624857 -2.677164 -6.064997 10.550795 4.727338 -0.499903 -0.041656 -8.823417 1.059399 6.596689 -2.892632 -11.575834 -1.704930 -8.416071 -1.049107 -1.235328 -0.831411 7.449754 -6.924862 -3.996284 0.957150 -2.144956 1.725477 -5.107300 -6.660011 4.455419 -2.749707 0.582396 2.228179 13.542894 9.719858 8.297730 0.798759 -4.030056 3.093442 -7.594277 -7.711326 6.135741 1.529768 5.946736 4.151171 6.301979 -0.582781 3.190174 5.992131 -1.797403 4.885814 9.189454 2.983438 10.778643 -3.381292 2.296033 2.788036 -8.146571 6.987873 12.640859 -4.227689 -4.062605 4.272756 -0.517585 -5.790680 -4.855295 -0.798668 -2.317413 -7.350627 4.939654 6.702697 -0.918369 -7.496111 16.985225 3.293916 -17.809283 9.519762 0.316177 2.072082 9.780017 -5.826701 4.839085 4.397233 2.168617 3.393244 3.904354 10.009807 -11.342631 0.356684 -1.106503 7.363277 6.315206 -3.718743 -17.187214 4.331228 5.132571 12.674251 4.993302 10.732291 -6.617224 4.424137 -3.238750 -4.061350 -0.637414 -2.761191 6.433625 -2.900600 0.943203 -14.267424 3.599626 +36.040924 -2.886848 53.907933 -71.348389 -83.322842 35.596441 -42.029546 -43.936607 18.347949 28.150302 46.609705 -40.228288 -34.682452 96.722840 -21.854226 -79.834713 1.222020 -29.529116 3.508035 -20.246252 8.245748 31.074789 -12.349583 8.747318 -4.385761 -22.886649 -8.803251 36.937470 56.868900 -25.564725 -68.424778 -12.335848 -19.709279 97.126957 12.410332 -12.470207 25.751898 155.662486 -20.734981 74.600584 -84.308188 -81.390549 50.532717 7.444872 -17.133217 -49.266430 -61.538593 44.130854 -64.017189 -16.123204 71.884471 -10.779074 5.127294 -6.114102 31.276525 55.298081 -144.064191 59.318374 7.667652 3.221645 -5.825872 -19.100207 11.852280 33.998475 -31.363238 -48.791790 53.806857 53.182274 -54.031979 -0.388268 -19.049345 -114.229040 130.580462 40.363146 -51.231747 12.807696 67.960762 -81.665069 80.854384 -49.371888 -108.196010 -4.021903 -6.494119 -57.299950 105.545531 -5.670939 60.731301 -144.884216 53.861408 -146.006532 63.363827 -90.453235 54.586085 101.480820 -95.828669 19.626978 56.568587 80.374380 74.268188 -1.969302 108.949932 48.309824 16.595165 20.164800 69.276038 27.714765 -40.938330 -25.315961 -67.221103 -104.117122 -9.877918 -44.366308 -163.578247 21.023415 -21.134168 26.309830 4.393235 8.683030 -10.652607 67.031718 -125.411604 -33.982027 17.680189 -15.903490 49.544094 97.556956 -42.076450 30.463529 -26.739755 119.419925 -53.156492 16.957474 -11.624828 30.539322 -27.363223 -47.537046 -124.086256 33.924410 56.004363 -67.242277 -105.331039 -103.920660 -16.871931 29.363356 -23.823893 138.040432 182.863392 -50.540341 -83.394957 103.056958 16.611993 11.591953 128.784811 7.129804 136.139302 -66.436787 0.790079 -58.705913 -18.025473 -20.865693 -22.742536 28.818772 1.554622 45.877582 15.622996 -35.674724 121.699967 -35.174779 -53.565142 -28.066943 18.944770 -47.557767 -68.159020 112.577695 -5.821405 73.700024 32.888876 141.013010 -48.213171 -91.879891 48.804900 -50.734629 -1.038045 -56.143617 -31.170074 -2.303766 74.981425 -75.946583 -46.102360 -36.985933 -40.951694 -32.629827 25.267419 71.442498 36.131698 26.796563 31.330261 80.658665 136.586463 34.493135 9.192154 -115.266729 27.918385 65.378237 -49.346402 -69.554426 9.898376 -66.716852 7.476306 20.734753 -16.112793 42.705913 -73.980385 -69.251808 -40.049566 -11.886582 55.068347 24.491432 -140.862767 22.362690 -15.158311 43.906402 51.696523 67.291716 114.999810 95.272740 88.880204 -11.212089 26.004056 -1.950152 1.818139 -3.881817 28.300713 57.135798 36.707949 91.835345 37.775857 23.456386 72.530613 66.351162 20.013383 84.638126 24.255994 154.243275 -6.900207 0.863379 -35.136029 -25.477656 79.679161 185.705084 -53.171191 39.747164 48.076672 56.838618 -20.340210 -113.850009 4.267015 -47.053015 -7.182574 29.374761 18.151331 -5.771309 -36.650048 103.552554 15.601425 -140.574930 60.189612 0.057849 27.084691 77.599128 -14.800871 0.784494 24.820527 -100.328510 84.287887 67.889099 60.038169 -73.148518 -9.440919 -6.264296 66.301394 -7.921066 55.205498 -79.178285 61.809000 57.214633 91.063050 57.872234 47.805035 -79.302864 -58.812777 31.313913 -71.075795 -32.531136 20.277371 54.238110 -73.498237 24.971445 -70.752336 -87.146959 +5.226134 0.788142 5.513422 -3.483721 -0.509543 2.439682 2.012416 -4.852564 0.623180 14.872538 2.248127 -2.364198 -5.980780 5.851299 -2.496102 -6.329177 3.925822 2.253703 0.808393 -3.796086 -2.027208 1.695468 -1.192132 -5.383553 4.622576 -3.742839 2.395162 5.321542 -1.369968 3.261137 -3.782749 -1.334418 0.270390 12.578400 -0.330238 2.129009 -0.801542 11.725543 -9.657512 11.181525 -12.140194 -13.821216 11.976613 1.617281 1.861979 -2.870196 0.979475 4.371920 -5.269678 -6.830357 1.292662 -3.758145 2.658906 -7.235607 0.364611 9.588843 -15.227896 1.428513 0.508556 -5.877730 -10.003844 -2.182456 5.756037 1.312290 -5.275565 -7.637923 2.692064 3.345663 -5.856897 3.492376 -7.497633 -12.175715 5.854677 2.377293 -4.535781 2.818981 0.622002 -6.563690 5.279977 -2.922597 -5.690735 -5.006023 3.889037 -4.266615 4.893218 6.787111 9.609000 -16.496248 3.555800 -12.702564 10.317458 -6.385986 11.612181 9.911534 -5.413188 5.937683 4.925572 8.539335 0.972020 -2.151024 10.964424 3.684612 3.963949 -1.357849 5.712401 6.750427 -10.412653 -9.558541 -7.429037 -6.509423 1.785257 -4.075329 -10.198307 -0.485130 -10.101498 3.588980 4.168761 -2.824578 -2.994710 9.005490 -21.094562 -3.473267 2.955380 -2.071970 9.831547 6.206813 0.590331 1.946985 1.838867 10.033218 -3.128463 -3.531747 -3.602640 5.748934 -4.362410 -3.723166 -4.807606 0.465396 4.309776 -9.755337 -11.860358 -15.424641 -3.695774 8.672261 -2.095024 10.796732 17.796709 -2.891200 -8.187017 5.754400 -6.777835 1.009771 11.667215 3.299548 14.110225 -13.761909 6.911942 -3.000490 5.651399 5.685846 9.079517 -2.377616 -6.033972 6.419472 1.240760 1.820221 6.917892 -2.843108 0.943728 -7.200502 2.002961 -2.742379 -1.116476 10.853800 -11.736113 9.649974 -5.972404 15.198275 -10.917753 -8.497628 3.568605 -15.296660 -5.068723 -7.508163 -3.475070 -2.655123 9.243704 -11.615934 -6.676142 -5.373134 -2.812456 1.719339 9.090547 -4.912562 -0.267086 -2.976994 -4.178766 12.968348 4.460023 -0.951106 -0.719815 -9.989647 0.196748 6.076174 -2.600085 -11.723869 -0.078556 -7.651493 -1.379726 2.435934 -0.411290 6.480802 -6.828524 -4.198644 1.450312 -2.370729 0.819374 -4.806443 -10.103391 3.184332 -1.307038 0.107399 5.166040 12.361245 10.439767 7.259910 0.848854 -2.136939 2.969495 -7.242273 -6.506701 5.225269 1.613950 6.749856 4.039647 6.069978 1.666939 2.392160 4.583400 1.637508 1.949702 10.295133 4.059605 11.228524 -4.538562 2.135204 2.756503 -5.755742 6.099423 10.033585 -6.926087 -1.745697 5.213836 0.885942 -3.697517 -3.621099 -1.456505 -4.564120 -4.319104 4.411934 5.371276 -2.753806 -5.500034 16.505984 2.328251 -17.811646 9.152043 -0.107966 2.638068 8.238902 -4.974067 2.426470 5.011751 -1.324949 5.486723 3.167552 9.194390 -10.759552 2.654953 -0.990252 8.475123 7.128221 -2.139495 -16.813915 2.056862 2.679208 11.586216 6.329391 10.707783 -5.636920 2.312832 -4.253498 -6.996169 -1.136989 -1.969426 6.979976 0.011377 1.148042 -15.644550 1.076560 +6.645003 1.737942 4.213552 -6.587779 -1.191066 2.650430 3.091162 -6.304364 0.583056 15.812872 4.594057 -4.369304 -6.082065 8.473879 -2.580208 -7.666654 6.099963 1.996468 0.388529 -3.634845 -1.661228 2.404361 -1.269739 -6.994156 4.458957 -4.109783 1.545687 5.473357 -0.145737 2.091803 -6.606018 -1.021145 1.072403 14.757252 0.030340 0.422091 -1.952370 12.993861 -11.452617 13.255860 -14.902633 -12.848282 13.748423 2.473327 1.376300 -7.887709 -2.323510 4.272841 -1.271827 -8.417781 1.410603 -5.435966 3.587893 -8.127890 -0.070523 13.744604 -15.460566 1.141403 1.726205 -6.068909 -9.590143 -1.700438 7.933195 2.601251 -7.292807 -9.496371 4.066986 3.810010 -6.141679 3.238773 -10.405097 -16.897901 7.576347 4.288322 -5.760221 2.371014 -1.353163 -11.311784 6.194050 -2.994918 -6.254894 -4.695221 4.928197 -2.283061 4.554876 6.028138 12.026848 -19.870011 2.329426 -15.762382 11.208514 -8.047442 14.329550 11.154704 -4.926587 5.159597 4.665061 7.985437 2.791287 -0.573260 13.249841 4.987564 5.399778 -4.023603 7.408649 8.958908 -10.638761 -11.038986 -6.493117 -7.520982 1.677698 -3.059626 -14.496885 1.058209 -13.344954 1.051648 3.853104 -3.663221 -2.408594 12.645885 -20.031582 -6.852628 3.648025 -2.752573 11.163602 10.427869 1.396630 2.218284 0.270926 11.371495 -1.540723 -2.516971 -4.548649 6.759147 -7.191181 -8.043329 -5.272587 0.881681 5.526733 -13.255759 -14.133997 -17.220755 -3.863653 8.301168 -3.429626 11.916528 20.624405 -4.206344 -10.272282 6.634512 -3.552078 -0.187983 13.849780 2.613355 20.582661 -18.219166 10.354625 -2.690940 7.421005 5.633600 11.970775 -3.789199 -7.269511 6.117113 -0.436787 -4.375706 10.567156 -3.023514 1.538432 -2.925608 2.071605 -1.560422 -3.384602 12.769739 -11.704424 12.548796 -6.577268 18.065607 -13.158294 -10.001144 5.530928 -13.216711 -6.589799 -8.004838 -2.609245 -2.002715 12.201031 -10.948072 -7.211048 -5.057752 -4.405950 1.717821 11.375119 -5.838370 -0.432557 -3.637034 -6.031294 13.126363 6.163981 -1.360904 0.791957 -11.412752 1.461029 8.307889 -3.061433 -14.882746 -0.908506 -10.258381 -1.339769 0.666490 -1.459258 8.417420 -7.952127 -6.163011 1.971932 -2.745470 1.896181 -6.277641 -10.906459 4.696579 -3.416657 0.447427 3.457396 15.839469 11.703940 9.389271 0.916664 -5.000225 3.800042 -8.686255 -9.247585 6.118953 1.237317 6.391254 5.127219 8.217938 0.248819 3.304999 7.694693 -0.144845 3.604852 11.508031 4.245675 13.107842 -3.432496 1.775839 3.345132 -9.942224 8.199565 15.357956 -5.269787 -4.220396 5.816076 0.821594 -6.220095 -6.295973 -1.480626 -4.202096 -7.958092 6.894456 6.559661 -2.053982 -7.888817 20.317720 3.506291 -21.665530 11.103952 -0.065146 2.950026 10.812223 -6.579896 4.695717 5.872229 -0.309342 5.221688 4.180754 11.714241 -12.330746 -0.310131 -1.327688 9.086215 7.439979 -3.797054 -21.128617 4.322363 5.586007 15.708683 7.377546 13.622183 -7.178898 4.415927 -4.193638 -5.170011 -1.184434 -3.707048 8.189427 -3.966705 0.419595 -17.774520 3.810951 +5.710225 -7.487768 13.069061 -15.397836 -14.403113 10.377397 -9.976879 -14.619818 4.836640 13.478735 10.277227 -9.714450 -2.662988 24.845833 -5.445456 -17.158691 3.951678 11.905347 4.509028 -2.732139 1.240142 6.868808 -5.633199 -3.563367 0.582386 -9.786832 4.793801 11.814871 6.225738 10.510598 -14.831857 -6.358364 -6.185044 27.944967 6.476881 6.417408 2.912373 35.196636 -14.572906 34.328474 -23.257065 -23.449448 16.845489 3.952056 0.071612 -7.580762 -17.486304 6.688536 -17.450106 -9.508286 13.864107 -8.281387 9.585636 -3.672357 8.517776 12.142405 -28.501170 1.349460 2.001430 -8.394843 -8.287487 -6.602353 3.112605 10.542915 -23.117785 -12.540635 9.615169 17.014203 -6.925010 1.280927 -9.013345 -32.659391 28.860390 9.400282 -17.079472 1.647614 14.164483 -23.794316 16.176940 -1.287129 -25.894298 -5.149224 -2.161129 -18.453615 21.714200 5.496461 28.189972 -37.634762 15.354561 -37.828997 19.860164 -20.244038 18.938456 27.168439 -24.976244 6.553778 16.384613 34.067219 14.470460 1.078473 23.438648 17.660550 -1.676534 0.214085 22.946127 12.745701 -14.754216 -16.534166 -17.912150 -21.852864 0.444211 -18.834465 -42.944296 0.686336 -10.845411 11.307557 -4.531718 2.413605 -5.631109 23.513518 -38.413002 -1.020756 4.819131 -4.638648 13.774286 18.204475 -6.258317 7.890775 -1.933470 26.812730 -14.908519 -3.448505 -7.431282 11.300919 -18.722990 -1.413518 -23.725378 8.702145 13.709133 -19.003264 -28.605489 -32.404577 -10.557850 23.340531 -3.296409 30.918311 43.369116 -12.524424 -20.569128 19.627219 -3.171795 -2.107733 30.738886 6.843421 30.135716 -21.111766 6.747117 -19.207767 0.199465 -2.267304 9.952087 3.153803 -6.713166 17.276904 -2.825936 -13.974731 41.176231 -9.952194 -9.643503 -22.355709 4.967759 -10.575980 -8.235165 33.168112 -27.934687 17.878885 -9.017757 35.299998 -17.457525 -19.264561 8.036376 -30.057675 -6.767676 -18.178745 -3.745968 -3.517865 24.964110 -24.325558 -15.223587 -7.827935 -11.168811 -1.380629 12.112330 5.275796 0.774811 3.411334 0.617246 31.141454 26.361713 8.857101 -2.903569 -21.149165 6.161433 16.898742 -15.017741 -19.616687 0.429357 -17.892427 -0.704364 -8.353092 0.746570 12.468248 -26.442230 -13.532546 -11.333068 -3.868106 11.077608 2.649683 -40.346584 9.654192 -0.342445 10.354353 15.623322 18.699755 29.016820 24.887360 17.747378 -3.674863 5.550194 -8.554902 -9.634107 10.817403 13.813618 9.967947 6.891723 28.096771 7.169873 5.962524 12.229971 14.550673 15.494135 20.723092 8.682078 33.606613 3.522614 2.486509 -1.853414 -7.058727 18.684431 41.549483 -9.732101 11.818187 10.435272 8.019308 -10.399457 -21.890587 1.644748 -8.609635 -7.051676 7.855484 6.303882 -1.020531 -13.158469 31.320116 6.546215 -37.684719 12.615744 0.838529 7.232613 24.728337 -7.878246 5.494210 5.495920 -12.262088 28.085179 13.458052 14.718206 -21.132313 -1.618090 -1.821155 11.447076 21.650296 7.093909 -21.867975 17.845091 9.529301 27.369291 12.638963 19.083928 -18.111531 -1.011823 0.745532 -22.592408 -6.127914 -2.794474 12.795532 -7.042013 5.371013 -29.234310 -21.446934 +11.162629 5.643261 15.812282 -22.737935 -31.273054 7.227564 -9.232093 -11.624136 3.390558 6.415286 15.791167 -17.581297 -14.566665 34.515174 -9.863931 -26.334615 -3.606734 -13.057320 -3.580192 -3.902674 1.614814 13.202837 -3.885810 3.124491 1.383055 -2.826451 -6.179643 11.952242 21.386040 -12.887170 -21.468425 -2.706278 -0.792449 30.774979 1.685493 -6.224768 9.991648 50.282544 -8.227916 22.437001 -28.706804 -25.455264 18.120660 2.389883 -4.558844 -25.285603 -22.560503 17.064190 -23.800121 -3.383447 22.952167 0.029904 -4.238000 -3.658338 12.636677 21.613720 -53.047168 29.250186 5.280566 4.172589 0.036729 -5.231903 0.173806 5.177151 -3.127944 -16.852251 10.715919 15.153894 -18.357860 1.067926 -4.761581 -33.363392 47.151666 10.050267 -17.076592 7.007260 18.578945 -25.397914 26.343098 -28.139004 -32.618355 0.183923 3.012793 -7.595413 33.554617 0.353063 12.073501 -45.723819 10.519901 -45.150438 19.217853 -32.252559 15.174007 33.247556 -31.279749 7.512862 14.657544 11.161294 27.393545 7.704391 34.698110 14.290211 10.794358 6.351874 15.589526 11.225176 -12.684368 -7.736261 -20.569057 -35.166482 -5.242085 -6.075103 -54.689149 6.265621 -3.975000 12.785645 4.478494 0.844807 1.216575 16.995989 -36.218681 -11.942212 6.987274 -4.496124 16.206247 34.402483 -12.571351 7.702127 -13.491196 37.414458 -12.575113 9.326197 -2.890547 9.328088 -8.113546 -31.151285 -41.395250 8.933209 14.305601 -19.204254 -31.989706 -34.714969 -1.411012 4.099848 -10.606266 34.997161 58.193834 -15.759800 -27.726206 36.630480 11.623493 7.268729 39.498718 0.916382 45.767409 -19.313990 -0.935345 -13.070767 -8.461654 -7.644247 -8.338331 9.036964 -4.821578 10.235268 6.091213 -24.201015 32.653472 -7.972997 -16.470151 -5.272399 4.341346 -16.373257 -22.156128 37.347271 5.641248 26.501096 8.234495 45.631284 -15.297299 -32.811921 17.262813 -11.915416 2.764027 -17.336259 -11.809598 4.322517 21.200463 -26.038904 -13.123640 -8.761699 -10.345705 -15.326484 7.978730 18.735539 9.688823 7.448418 12.033758 20.108529 41.196342 5.738468 8.622260 -39.000499 8.646751 16.988931 -13.742615 -33.559457 6.698788 -19.895206 1.736737 12.223336 -6.877286 9.233875 -16.045865 -21.753725 -7.577247 -9.436616 18.279446 5.895856 -30.090588 5.172731 -10.020839 15.433024 14.428705 21.769881 38.912017 29.080269 26.123208 1.034754 7.607901 -1.268113 6.671659 -0.680597 7.260258 14.338607 13.497957 26.693404 13.327212 5.359091 22.627744 20.567935 -0.912663 28.340776 11.471272 50.158036 -5.275493 -2.109156 -9.911558 -7.459218 26.039706 58.215057 -21.253849 8.365329 15.075475 18.190991 -2.857834 -32.387159 -0.795654 -14.771650 -10.290150 15.529453 3.079241 -3.905365 -6.402859 32.562493 1.614339 -42.289412 20.890873 0.334497 9.487979 15.610171 -2.297002 -2.200606 12.376280 -32.520530 21.706939 21.493723 21.284728 -22.321148 -11.514393 -2.663884 21.793412 -1.607794 19.950391 -29.056728 14.864199 22.244054 28.459892 14.822218 13.463329 -23.153224 -24.608106 9.684840 -16.589430 -12.214980 3.817047 14.295700 -23.315308 6.548010 -17.121711 -29.539688 +6.863418 4.228214 8.438298 -8.379381 -5.601125 2.835510 3.094056 -8.349737 2.011968 20.171892 6.082016 -6.421588 -5.320029 13.034617 -6.030183 -7.114932 4.422051 -0.108817 0.110896 -6.181514 -0.459830 4.465391 -1.694393 -6.221648 3.737046 -4.970234 3.492728 6.352830 -1.046184 1.780802 -6.546803 -2.287865 2.206240 16.798590 0.304718 1.435565 -2.951891 16.034436 -13.959102 16.110614 -20.699946 -17.500681 15.253372 2.968704 3.020609 -13.352835 -3.538254 6.125420 -0.433634 -8.966162 2.178747 -4.992976 3.772444 -8.713866 0.493931 12.775031 -18.618268 2.897428 1.744062 -8.812894 -11.004900 -2.466557 8.840083 5.102127 -10.043987 -10.268005 4.502843 5.924609 -7.886575 4.994811 -9.129663 -18.616084 8.895534 2.722032 -7.606016 2.424006 0.104320 -13.576303 8.916090 -7.093239 -8.402263 -4.874033 5.641260 -3.654088 4.429348 7.062418 14.339767 -23.562545 3.070025 -18.926589 13.418559 -9.735032 14.860427 12.436563 -7.230664 6.040095 5.728445 10.879268 7.652119 0.689451 14.809469 8.398522 9.200742 -2.944053 9.922264 12.161510 -11.499482 -12.388612 -9.435802 -12.333525 2.515922 -3.146940 -18.304174 0.520277 -12.180655 -0.572020 2.870258 -5.159853 -1.510011 16.679917 -25.909470 -7.585369 5.787186 -2.556312 10.395433 11.618354 0.439990 4.253557 0.359586 13.649260 -3.705300 -1.282268 -3.195278 7.500894 -10.618521 -11.280381 -8.866094 2.095075 5.454690 -13.906139 -15.978207 -23.000294 -4.515543 10.489474 -4.167980 12.067806 24.780549 -5.380825 -14.586222 8.520027 -0.618532 -4.411420 16.096537 2.620992 24.073699 -19.248946 9.653642 -4.550008 6.331931 6.546058 18.181084 -2.940805 -8.307401 7.652713 -1.108839 -11.762173 12.293603 -4.022156 0.255779 -6.117170 3.005604 -4.024921 -3.619665 14.625029 -13.696638 15.146860 -10.455771 21.331591 -15.787994 -12.691540 5.541408 -19.034029 -5.686521 -8.743024 -2.298037 -0.921266 16.829261 -13.349661 -8.170788 -6.264064 -7.721460 1.159043 11.625961 -11.986246 0.408747 -2.993936 -5.274262 16.073171 8.776133 -0.654947 1.202073 -13.121733 1.618181 10.680481 0.117142 -19.768435 -1.510961 -13.891176 -1.915726 -1.585523 -1.698342 9.634507 -8.579714 -6.416404 1.260516 -6.125291 1.599056 -6.372706 -13.708487 5.486080 -6.128912 4.961685 2.461812 17.556749 14.261717 12.372258 3.443598 -4.599931 3.818942 -11.912107 -7.837747 8.147795 5.029797 2.694138 6.036562 12.625572 2.434695 4.216124 10.782867 1.910811 2.208174 14.324517 2.252968 16.641551 -8.504730 4.254240 1.569212 -7.650182 9.718303 20.801820 -2.474788 -5.370693 6.284468 1.225824 -7.046721 -7.045250 -2.558751 -4.945911 -7.209254 8.055526 9.450125 -3.326336 -7.478789 22.843935 4.146684 -24.662903 12.805294 -1.359715 3.268199 11.986250 -8.001845 3.059584 7.647779 -1.471507 7.408408 6.155023 13.018619 -14.452031 -4.880463 -1.639646 12.153156 11.384267 -1.859449 -27.940803 6.979711 7.656271 17.659130 5.854103 17.801315 -10.728371 2.722667 -2.804439 -6.715190 -3.152003 -1.472352 9.834101 -4.525497 0.470431 -20.228370 1.473810 +41.221879 -1.656315 58.839115 -73.803686 -83.490475 37.805453 -38.808245 -48.366402 19.816315 44.477091 49.591891 -43.690971 -36.626428 104.163279 -24.220224 -82.572890 5.884051 -27.782700 4.516650 -22.121269 6.627808 33.169498 -13.543168 2.931697 -0.064546 -25.442252 -6.332326 40.526165 51.892642 -21.906126 -72.498105 -13.441827 -18.451027 108.340975 12.225070 -11.210790 24.235305 164.808638 -32.519123 88.042120 -95.782422 -93.203735 61.817790 9.432006 -14.376226 -51.209894 -60.753228 48.415208 -62.728524 -25.451070 72.489949 -14.748648 8.368439 -13.127192 30.655861 64.031265 -155.835047 58.250571 8.583412 -2.836949 -15.614793 -20.837014 18.027254 36.832013 -39.188155 -55.524801 55.945336 56.366884 -58.086328 2.087391 -26.578430 -126.832985 135.048416 42.053443 -55.816873 14.718136 66.860888 -89.022447 85.973110 -52.055100 -112.670568 -8.151842 -3.259664 -61.477090 107.825149 1.249032 71.558891 -159.959893 57.342933 -157.604780 73.919816 -95.622052 65.534041 110.268267 -99.194741 24.041146 60.565056 90.499950 76.687817 -1.566848 118.490564 52.900996 20.502083 17.417888 74.637360 36.813627 -51.387180 -35.002417 -73.887958 -109.872999 -6.806657 -46.015643 -170.699654 20.798046 -30.671674 29.098088 8.099012 5.730137 -12.950643 77.879666 -144.159726 -37.699237 21.007790 -17.538452 58.329398 103.512963 -40.912866 32.572689 -25.386387 127.602691 -55.328415 13.011088 -14.538108 36.000838 -35.482343 -50.330720 -126.213935 34.965823 59.572972 -77.272294 -115.758476 -121.180081 -19.314841 38.935207 -26.745863 147.059840 198.363602 -53.391779 -90.040121 106.983440 13.404222 9.489428 138.317898 9.427246 150.464148 -80.632070 8.619351 -60.606554 -11.954978 -15.537827 -8.540867 26.150651 -4.352668 51.207115 15.829991 -38.999303 131.684388 -36.231992 -51.888366 -33.356158 21.030119 -48.678235 -69.019984 122.213750 -17.484286 80.835921 24.878535 155.605028 -58.850870 -98.037606 52.716315 -64.373576 -6.335961 -63.705978 -33.649586 -3.695719 85.469613 -85.704643 -51.510042 -39.960828 -44.927016 -30.622682 33.693893 62.995396 35.436046 23.648790 25.221579 92.651650 138.668931 33.369484 8.475290 -123.506745 27.215305 70.527159 -51.944492 -80.781041 8.444976 -75.681087 6.186000 20.678887 -16.843277 48.801849 -81.921930 -73.042378 -37.470015 -15.056941 55.012734 18.882089 -149.341297 25.616266 -16.817531 45.629051 55.330505 79.549946 123.078792 102.816020 89.199744 -13.669003 27.366862 -9.511253 -6.786770 2.787811 30.029688 61.696145 40.689702 98.407152 38.548276 25.878058 76.461667 64.628830 22.640423 93.968956 26.736511 162.981092 -11.506500 3.924022 -31.630629 -31.383779 85.839169 194.711559 -58.431452 35.290388 51.934226 55.308166 -26.016862 -113.228057 3.427786 -50.425419 -11.669735 32.425462 24.074240 -6.676547 -42.530336 119.338904 17.745189 -157.578119 68.179896 -0.796400 29.969114 87.235149 -19.884183 5.638281 28.793503 -98.335623 89.613096 71.027496 69.475468 -83.201790 -9.254749 -7.531882 73.373126 1.236896 52.273502 -97.801753 64.940506 59.756165 101.194160 62.012833 59.194941 -85.533757 -53.857057 26.712479 -76.909150 -33.569657 17.672249 61.247470 -72.448179 26.109615 -87.310282 -83.284254 +4.252476 0.709992 5.071397 -3.917335 -0.062008 1.968726 3.164546 -4.540020 0.708785 11.460579 2.638186 -2.199316 -5.840380 4.255580 -2.150747 -5.279737 4.796350 3.400434 0.488389 -3.467409 -1.829930 0.738908 -1.156361 -4.940950 3.898420 -3.392055 2.874657 5.393910 0.089751 2.765353 -3.981730 -1.092681 0.521705 11.526931 0.006105 1.683200 -1.389817 10.012989 -7.221327 9.533243 -10.887961 -9.941195 10.577652 1.484410 1.257555 -5.804992 -0.496099 3.767140 -4.266655 -6.410178 0.815951 -4.070954 3.302118 -6.838021 -0.327126 9.948899 -12.196835 0.053962 1.137412 -5.319750 -8.445390 -1.680967 5.880897 1.085157 -5.412413 -6.970124 2.828192 2.124599 -5.188344 3.473856 -7.802415 -11.751998 5.145046 2.106341 -4.510712 2.294230 -0.086768 -7.371510 4.152424 -0.284596 -4.498225 -4.583779 3.534624 -3.221870 4.362529 4.228064 8.158822 -14.700181 1.386662 -11.639790 8.290329 -6.409348 10.955806 8.502917 -4.705352 5.236685 3.791520 6.043684 -0.447833 -1.414140 9.617435 3.396357 3.892567 -2.715564 6.372281 5.181136 -8.380910 -9.252527 -5.870360 -5.442041 1.192134 -3.297330 -10.283148 -0.383463 -10.512062 2.044680 2.807455 -2.191815 -2.437108 8.610713 -16.072288 -2.320088 3.108566 -2.230858 8.526662 7.225027 0.974279 1.723187 1.561883 8.698631 -2.110031 -2.605298 -3.937859 5.150385 -3.045093 -4.840107 -3.638076 -0.265978 4.242147 -8.209713 -11.257387 -12.603702 -4.139217 6.452571 -1.694710 7.347078 15.233824 -2.184306 -7.389924 4.387329 -5.132994 1.305140 10.192393 3.091316 13.934369 -13.360391 7.461477 -3.030209 5.783520 5.008785 8.365562 -3.361105 -5.740032 5.712914 -0.064978 -0.913315 7.826463 -2.921969 1.674363 -3.073155 1.360694 -1.785270 -2.565299 10.147860 -9.623160 9.587519 -5.436574 13.615986 -10.007024 -7.886463 2.898308 -10.394967 -3.840209 -6.115490 -2.134184 -2.065345 8.894197 -9.185555 -6.648073 -4.469653 -2.294779 2.599607 8.997092 -3.996307 -1.006602 -3.216865 -4.322370 9.547764 3.510972 -1.569813 -0.015742 -8.486069 0.603818 5.596288 -1.516650 -10.267035 -0.184682 -7.127445 -1.617384 0.507108 0.017097 6.227749 -5.686188 -4.148339 1.742000 -2.239772 0.320031 -4.645198 -10.301116 3.249279 -1.734491 -1.133354 3.625619 11.612476 9.767234 6.155231 -0.040804 -3.067667 2.997604 -6.661828 -7.471214 4.316386 0.984012 6.078929 3.187111 4.667240 1.071581 1.965312 3.852761 0.172217 2.943123 8.861969 4.781335 9.329551 -3.033626 1.434060 3.195190 -6.491444 5.467264 9.317686 -3.481677 -2.100767 4.469086 1.655697 -3.915030 -5.880030 -1.874485 -3.160711 -4.793563 5.308684 4.838646 -2.670508 -5.259970 15.460361 2.196138 -16.207357 7.845112 -0.327894 1.977879 7.716481 -4.623839 2.871123 4.687679 0.117408 4.411990 1.963459 8.252105 -9.477375 1.122761 -0.854126 6.874532 5.802260 -3.279454 -16.337519 1.578044 1.869500 11.491048 6.183059 10.207449 -4.708242 3.676008 -3.755246 -5.734671 -0.794996 -2.523468 6.509177 -0.818400 -0.717735 -14.975785 2.458396 +0.449010 0.873882 0.312446 -0.779182 -1.094437 0.466914 -1.391659 -0.080626 -0.437726 -0.169285 -0.582046 0.374656 -0.862650 0.598556 -1.626292 -1.238389 -1.003414 -0.493983 -0.753591 -0.676740 -0.603576 0.390002 0.183227 -0.819754 0.856756 -0.931514 -0.328565 0.570329 0.452408 -0.980945 0.192726 0.008980 0.099744 1.267456 -0.611933 0.714946 0.990681 0.974917 1.507485 -0.147442 -1.366192 -1.406902 1.016105 -0.153635 0.564847 -1.549662 -0.271393 0.084119 -1.662044 0.946618 -0.400180 -0.778458 -1.467213 -0.189959 0.719790 0.480010 -2.048831 1.886129 0.027234 0.215964 -0.226157 -0.246642 -0.010464 -0.799918 1.607205 -0.980370 -0.897085 1.436429 -1.236106 0.491027 -0.210375 0.009342 1.754567 0.066152 -0.033490 0.448498 -0.193740 0.088485 -0.139630 -2.301565 -0.287352 -0.513376 1.598229 1.154563 0.745994 0.766457 -0.410203 -0.883252 -0.371868 -0.717410 0.047540 -0.495996 0.966644 0.401106 -0.665993 0.247327 0.527766 -1.097960 0.655075 1.212034 1.110762 -0.489372 0.405439 -0.169430 -0.358185 -0.143378 0.007735 -0.303246 0.507718 -0.908107 -0.541240 0.581423 -1.509640 0.009143 -0.304064 1.415645 -0.191417 0.091349 0.011105 -0.538633 -2.065937 -1.325718 0.191915 -0.262060 0.541575 -0.309198 0.116922 -0.264224 0.340949 0.197213 -0.127133 -0.607658 -0.288313 0.445200 0.517113 -1.938070 -1.944314 -0.948966 -0.216068 -0.659443 -0.807100 -0.084083 -0.668618 -0.109106 -0.279818 0.589838 2.012537 -0.193701 -0.690011 0.582500 -0.050886 0.881561 1.668468 0.612610 0.876809 -0.478096 -0.174968 0.240208 -0.165254 0.627515 -1.901084 -0.844757 -0.381979 0.256986 0.884852 -0.235164 -0.882525 -0.532898 0.270216 -0.010267 -0.206940 -0.171091 -0.317441 0.643680 0.725791 1.942873 0.385910 1.653783 -1.322972 -1.519093 0.806410 -0.376363 0.530819 0.465008 -0.243419 -0.219610 0.050060 -0.973443 -0.544549 0.554236 0.119596 -0.079318 0.643020 1.173647 0.194626 -0.543654 -0.224171 1.059816 0.773042 -0.811755 1.132427 -0.842810 0.686055 0.804344 0.428421 -1.880930 0.147126 -0.043449 -0.145984 1.130189 -0.089195 -0.444357 1.047350 0.189773 0.126978 -1.055365 0.302261 0.411906 1.654992 -0.252093 -1.389910 -0.347126 0.075285 0.777710 1.455194 -0.004276 -0.346473 0.444923 -0.033510 -1.123240 2.154940 -0.050154 0.191791 0.616811 0.799287 0.592204 0.572866 0.423041 0.359538 0.777226 -0.469146 1.342822 0.073812 1.525597 -2.016995 0.416437 -0.764841 -0.296566 1.030167 1.007471 -1.657174 -0.011183 0.379916 0.829630 1.145715 -1.427895 -0.625167 -0.150429 -1.149984 0.981956 0.265983 0.005542 0.240309 1.590348 0.208270 -0.375950 1.075059 -0.475261 -0.018674 -0.950949 -0.144648 -1.029939 0.961218 -0.868745 -1.440294 0.308639 0.948465 -1.051895 -0.423252 -0.124022 1.157801 -1.038081 0.723619 0.219400 0.077248 0.694540 0.682641 0.480769 -0.352061 0.069202 -1.747677 0.310403 0.273559 -0.717050 0.187442 -0.500758 -0.550363 0.203499 0.077977 -0.693856 +3.370373 2.171397 9.154137 -8.322063 -6.146945 0.624969 -4.843270 2.328771 4.093808 10.387784 3.237732 -8.533889 -16.219603 10.499579 -5.923592 -12.708540 5.681745 -1.788840 5.856163 -7.886051 2.043277 2.643793 5.736152 -2.799379 5.219778 -4.114681 -8.270678 7.117727 19.975786 -5.590304 -2.611278 4.040584 3.057516 11.268420 -7.881239 -5.125758 2.812377 15.173257 -0.925714 6.097909 -13.743397 -9.601816 14.002665 3.426535 -0.574002 -11.721485 -3.849943 6.336413 -16.365319 -3.368557 2.451237 1.117495 1.304589 -8.787278 -3.091836 15.048034 -27.960096 12.004228 -2.601034 -0.917792 -0.235335 6.026587 2.218131 2.857353 7.411178 -7.781881 0.225676 1.826264 -15.726347 1.193915 -0.706743 -3.427681 14.139387 0.754163 -4.935153 8.404348 9.407764 -4.661808 7.964951 -17.818032 -6.638185 -2.280740 3.560351 -1.588599 10.894807 1.899424 5.267562 -15.547230 0.846947 -10.695969 14.995388 -12.332797 8.664461 11.180068 -9.549355 7.231277 4.647130 -7.520491 9.163065 2.914805 19.153006 5.177423 9.373485 1.930749 3.029634 4.376406 -5.471474 -1.989180 -7.230533 -9.957453 -5.548142 -0.834553 -15.670037 0.138296 -7.599670 6.655875 14.247743 -6.082720 -1.932534 5.703880 -12.557160 -6.887819 2.296046 -1.490389 3.982872 12.599263 -0.449315 -2.753981 2.310507 18.201174 -4.017108 -1.738872 6.814045 3.856922 4.218904 -17.389294 -8.153071 -0.072215 -1.137314 -8.626872 -10.576246 -13.845983 1.175771 -2.607778 -1.548026 11.458066 23.718972 2.971398 -9.352008 10.539358 -3.930095 5.492869 17.660958 1.018072 20.925323 -12.105560 -0.263028 -5.151631 2.226047 7.399001 9.359468 1.876780 -0.497316 2.685987 6.774369 -3.153314 -6.720609 -4.726835 2.511037 -2.707273 -0.699290 -7.226654 -8.035602 8.757567 1.782042 13.732312 0.245324 20.070636 -1.826580 -23.036861 8.795454 -3.564442 -1.811892 1.084332 -4.305604 1.996061 0.848297 -11.918807 -6.586925 -10.048373 0.707117 -2.046175 5.437078 1.407349 7.011307 1.008625 -2.946708 11.433082 3.629977 -1.822109 5.912735 -19.290945 -2.643626 5.561853 -3.160317 -18.228518 5.690647 -8.124435 4.061187 13.140977 -4.841433 6.592466 -3.417822 -10.099948 -1.084869 -5.210226 3.967003 -7.573693 -8.445700 1.176960 -1.311511 2.384758 6.091947 13.546775 16.144396 5.225175 -2.276270 5.216881 3.258270 -3.442594 4.385899 -1.200491 -0.836914 3.249808 3.540937 5.331589 0.504373 3.354937 11.846295 6.891382 -7.743370 11.439321 -0.131538 11.377280 -6.441067 -1.663185 0.714000 -8.456243 8.319319 17.906320 -7.486901 -3.639516 8.641038 6.732459 4.631147 -15.186394 -0.455412 -6.010859 -2.508339 12.547878 2.920208 -1.194123 -2.286334 7.444665 6.044116 -19.069668 17.777610 -1.743223 -0.983047 2.619881 -1.935897 -4.912789 5.843729 -13.136821 -2.583718 4.468766 8.189545 -12.449869 -0.366920 0.256530 14.382134 -2.450718 5.033140 -21.563887 -4.549691 6.067647 7.317649 9.309431 10.316709 -5.771697 -16.019554 -0.072385 -5.265907 -9.559321 -4.835748 -0.965050 -10.493466 2.113289 -1.326455 -1.127385 +3.898080 3.276354 9.764493 -9.865447 -13.801483 3.166968 -1.853915 -6.126270 2.678202 11.642097 4.402130 -6.009995 -6.423271 15.987616 -6.713637 -9.973909 -1.714951 -5.417836 0.219808 -4.319398 1.336545 7.428895 -1.498658 1.811341 0.532339 -3.939501 -0.304545 5.564210 3.909512 -1.278141 -6.603903 -2.753780 -0.774220 13.628714 0.506193 0.202706 1.878532 21.104877 -7.725771 15.423476 -17.320253 -15.774286 7.140414 1.595825 1.523233 -13.232217 -7.258228 5.774667 -7.361784 -1.907993 8.596123 -0.260493 -0.173043 -1.303597 7.195249 6.181551 -21.452511 9.841867 0.379247 -3.029784 -1.659732 -2.744272 0.349078 5.313482 -5.915461 -6.677239 3.789511 8.343392 -8.013735 3.513691 -0.428433 -13.690132 14.977761 4.183278 -9.737203 2.844202 9.840659 -11.614978 11.493700 -15.186223 -13.678475 -1.072584 1.722594 -5.376356 11.633203 3.154326 9.603649 -20.670402 6.229848 -18.079320 10.679757 -12.967130 6.973135 14.205833 -9.402648 4.542204 7.274577 8.793321 13.404501 0.894646 13.347254 10.176050 7.893821 3.883099 7.532411 8.212525 -7.788156 -6.387208 -10.814858 -14.531431 -0.875244 -5.141303 -21.429113 0.289587 0.225674 5.217552 2.420676 -1.497808 -1.141458 11.467381 -23.204931 -5.712061 4.430374 -1.868498 5.896220 11.110865 -4.830113 4.759512 -3.061073 16.359331 -7.582147 3.823540 -0.928235 4.542288 -8.831484 -7.998091 -16.761188 3.602959 4.323924 -7.984388 -13.260503 -18.060902 -3.712974 7.656647 -2.859262 15.816750 25.684140 -6.719831 -13.967516 14.502338 1.664796 -1.405556 14.688794 1.876783 16.084153 -8.088387 -0.512453 -9.342665 -1.920562 -1.017161 11.899962 5.112386 -3.333503 6.685556 1.569675 -11.688557 9.656396 -5.226742 -7.141566 -11.183170 1.808730 -8.124336 -4.156072 15.435821 -9.771820 12.428377 -4.573153 18.762625 -8.934281 -13.678245 4.612463 -16.997014 0.705901 -8.993690 -2.977482 1.993138 11.478946 -14.320809 -6.154769 -4.886126 -7.997005 -4.677795 3.026503 -4.916060 2.924008 2.279802 4.605738 19.443054 16.687162 4.314279 0.775822 -14.429297 4.136782 6.382763 -3.638027 -16.823884 2.415280 -8.501095 -0.243511 1.612504 -2.051078 3.724741 -7.758441 -7.609486 -4.389499 -7.412026 5.207810 1.186840 -15.581450 2.898934 -3.549530 9.772846 5.052431 7.865508 16.926537 12.619818 11.725147 0.108595 2.929213 -5.248303 2.192886 4.855016 8.473626 -0.915043 4.967692 16.154453 5.848980 1.686750 10.827057 10.947448 0.063919 11.979945 0.295695 20.396252 -5.953007 1.280323 -4.283409 -1.055525 9.489999 24.497633 -5.730488 4.165584 6.993062 5.738869 -2.161987 -9.356951 -0.445080 -7.524785 -1.792321 7.510665 4.992698 -4.602126 -2.333299 14.362443 2.202274 -18.386770 7.907963 -0.000852 3.643373 7.891531 -2.318847 -1.709164 6.102856 -12.227520 11.668520 8.332026 7.856507 -10.846864 -7.351640 -1.366422 8.091233 7.667052 8.151177 -17.963410 3.781642 9.043067 14.060608 4.264284 12.677531 -10.338055 -8.515307 4.704040 -8.460284 -7.095530 1.928907 6.746114 -7.480629 4.333483 -9.687021 -13.204233 +2.418672 3.261316 8.195342 -8.748920 -12.503396 1.875808 -0.946225 -4.484581 2.009660 8.165333 4.222328 -6.183205 -6.470390 13.784831 -5.049123 -9.141910 -2.087802 -4.807752 -0.796366 -3.659366 0.842675 6.329574 -1.209646 1.911562 0.807309 -2.838806 -0.950152 5.743772 5.226718 -2.227533 -5.210694 -2.013839 -0.100129 11.713894 -0.133653 -0.332600 2.100424 18.723777 -6.941954 12.159739 -13.799248 -12.597726 6.931322 1.298224 -0.066707 -11.799486 -7.120630 5.806869 -8.059909 -1.467266 7.932552 0.890040 -0.614065 -1.549480 6.355573 6.493222 -19.314852 9.589741 0.852288 -2.145418 -1.166264 -2.164092 -0.577149 3.765102 -4.379984 -6.102871 2.729639 5.787382 -6.801348 2.415742 -0.166649 -11.466475 14.316424 3.360488 -7.901093 3.267237 8.343151 -9.660978 10.135586 -12.477794 -11.645588 -0.804887 1.877989 -4.222826 10.812036 1.869049 6.676339 -17.542936 3.686281 -15.494040 8.696126 -11.988539 5.508246 12.543254 -8.878014 4.389743 5.536759 5.079089 11.090088 0.930388 11.610652 7.590110 7.480586 3.845369 6.124688 6.727823 -6.703785 -5.425590 -9.743660 -13.101508 -0.808680 -4.049235 -18.832777 0.712778 0.313678 3.843801 2.823631 -1.454396 -0.731880 9.449854 -17.426675 -3.634024 4.175700 -1.720225 4.697053 10.941244 -4.339007 3.434218 -3.268969 13.972241 -5.871756 4.465106 -0.787960 3.837506 -5.856545 -8.464303 -14.495328 2.837335 3.497979 -6.303495 -11.288118 -14.817144 -2.505397 4.918866 -3.030978 12.436479 22.449872 -5.880453 -12.042295 13.226280 2.736981 0.463290 12.013421 1.343050 14.765287 -6.610626 -1.005654 -7.869903 -2.629914 -0.715279 9.326951 4.571397 -3.253264 5.416973 1.618168 -10.724882 8.677424 -4.184735 -6.162794 -7.725673 1.781209 -7.192596 -5.125491 13.982227 -5.556324 11.214051 -2.755379 16.311985 -7.033639 -12.467955 4.728130 -11.851160 1.113556 -8.298938 -3.500845 2.521647 8.925030 -11.482855 -5.235744 -4.858030 -6.005891 -4.861720 2.349171 -2.907240 2.656451 1.814402 4.755009 14.137161 14.761967 3.175628 1.349097 -13.668842 3.767143 5.281977 -3.023872 -14.859524 2.681576 -6.726900 -0.373247 2.497771 -2.034874 3.010902 -6.012590 -6.530217 -3.174587 -6.373722 4.433629 1.096780 -13.888262 2.471302 -3.314744 8.170767 4.890462 6.983382 15.356581 10.574297 10.111722 1.129797 2.287650 -3.457279 1.841737 3.402797 6.025301 0.214939 4.891517 13.293523 5.497271 1.318218 9.694990 9.356916 -0.960748 10.447813 1.300709 18.218812 -3.929113 0.138923 -3.452231 -0.711561 8.243981 21.370612 -4.846567 2.939543 6.565379 6.001311 -1.517764 -9.461130 -0.810777 -6.475201 -1.816247 7.640830 3.064831 -4.544754 -1.087471 12.327811 1.094965 -15.850055 6.710232 0.055543 3.371920 5.434214 -1.478412 -1.775470 5.844710 -11.567218 9.586296 7.349631 6.867117 -9.324898 -6.103037 -1.000059 7.095356 5.684486 7.496912 -16.224030 2.561064 7.643304 11.869102 3.769276 10.617727 -8.593623 -8.248427 4.473945 -6.661947 -6.000167 1.385477 5.202811 -7.424314 3.818596 -8.010784 -11.757738 +7.039281 3.453938 9.639421 -11.704119 -4.129250 2.579701 8.403005 -6.830169 2.113453 23.899166 5.688086 -5.686857 -13.832063 15.200978 -3.722113 -11.597556 8.053670 -6.093678 0.251999 -3.854886 -1.803987 6.624658 -1.271262 -7.151184 8.429438 -3.990635 0.629590 10.674150 0.473605 -1.587616 -8.399944 -1.557593 0.010156 21.386573 -2.080501 1.869391 -1.399197 23.129417 -20.068063 22.557159 -24.451995 -20.881708 20.378794 2.201547 0.351173 -15.310565 -1.223829 8.700360 -6.719367 -12.474257 5.246054 -4.821412 3.199047 -11.875655 2.717770 19.685792 -29.106695 5.565228 2.495979 -6.285038 -11.876170 -3.460906 8.651850 2.096142 -9.109446 -13.562563 4.626276 0.539235 -12.824687 5.104120 -11.548014 -20.047506 11.491242 6.291726 -8.449360 6.111539 1.372894 -16.594496 11.368354 -13.085846 -10.455196 -6.718375 6.645666 -5.898532 10.764532 7.606096 13.467131 -29.296349 2.068402 -22.047551 16.344229 -15.045348 18.041301 18.601174 -7.041994 9.857410 6.174039 8.653343 5.481202 -2.556862 19.655315 8.391549 11.920348 -1.734442 10.626990 12.660492 -17.814017 -15.362479 -12.937351 -12.735775 2.091578 -5.565845 -19.950246 0.668549 -14.635881 1.877620 9.763304 -5.799335 -4.531493 16.701267 -31.361887 -6.195409 5.608760 -3.342554 14.117588 16.841578 0.432083 1.558937 -0.026387 18.611044 -4.059755 1.883983 -6.123770 9.642486 -8.044351 -10.928065 -7.437295 -1.280091 5.366554 -16.238860 -20.330416 -28.143089 -5.003206 9.241079 -4.968129 18.093520 32.114288 -6.136398 -16.748397 13.649617 -4.715494 2.856408 17.173338 3.070595 25.676774 -22.239998 10.099373 -5.734327 7.769750 7.377142 23.495296 -2.180627 -10.526100 7.939024 0.098008 -8.986647 10.615673 -1.934855 0.602978 -8.167578 1.709179 -7.916187 -7.744625 20.171761 -17.155925 19.873935 -10.059468 26.341549 -17.367394 -16.000297 8.912067 -21.092735 -4.901178 -16.191705 -8.586472 0.061698 14.152345 -18.429701 -10.487974 -10.906110 -4.492007 -0.485766 13.789828 -14.931218 0.318346 -4.954436 -4.287213 21.587459 10.318678 -2.886452 2.019079 -19.241182 3.287408 10.016055 -2.432111 -24.155271 1.776258 -13.222450 -2.769298 7.091569 -2.423415 10.329741 -10.330838 -9.773050 4.971645 -5.583768 1.331808 -7.784791 -21.995298 4.491323 -3.525564 1.841875 8.609108 20.746481 17.853168 12.643802 2.046491 -3.854110 3.835593 -10.310757 -12.280794 6.619672 1.345723 7.295897 8.277904 12.975613 4.948347 3.458455 12.342799 5.476101 -0.431513 18.410132 6.605884 20.086996 -5.155989 -0.088124 5.031556 -10.641541 11.233207 20.454652 -9.226727 -4.163255 10.781921 4.120698 -6.870817 -8.001409 -2.782601 -9.654458 -7.772546 12.773212 6.653716 -5.860160 -7.117316 28.412271 2.441834 -31.696083 14.838342 -0.774447 6.061020 11.823310 -6.081481 3.874003 10.347053 -8.268987 10.439442 6.122310 15.951220 -16.147857 -1.812693 -1.391356 12.999710 12.674614 -1.088058 -34.050884 0.975673 5.542806 22.270479 11.254160 21.801037 -8.753956 2.025778 -4.736878 -9.035688 -3.593657 -4.687484 11.603106 -4.491789 0.134316 -26.630686 2.117230 +2.275558 2.017002 4.722467 -4.463587 -2.592280 0.153996 -0.678198 -0.082552 1.338863 8.489602 1.608555 -4.025896 -8.905072 5.181612 -2.897817 -7.077863 2.500252 -1.415293 1.775833 -5.047935 0.505451 1.674231 2.074218 -3.012134 3.420229 -2.652674 -2.695773 3.962166 7.540269 -1.882073 -1.095951 1.215683 2.110374 7.398964 -3.735592 -1.107656 0.052222 8.524519 -2.579659 3.972064 -9.704872 -8.820303 9.334826 1.498117 0.269717 -6.719102 -0.173369 3.585248 -7.621013 -2.284651 0.145424 0.090360 0.492981 -6.154004 -1.541759 8.263678 -15.256508 6.361732 -0.929159 -2.606834 -3.342348 1.685814 2.606290 1.121559 2.582877 -4.825035 0.258390 0.915872 -8.222611 2.050098 -1.827712 -3.487277 6.457159 1.020981 -2.365956 4.482764 2.878801 -2.873561 4.393639 -8.672727 -3.229155 -2.481934 3.589705 -0.278572 4.502588 3.179769 3.830530 -10.169676 0.225679 -6.851159 8.446383 -6.090062 6.278895 6.317789 -4.497675 4.998202 2.592035 -2.583931 3.897851 0.044204 9.948789 2.469930 6.607878 0.803148 1.840069 3.830089 -4.733744 -3.205328 -4.207553 -5.597870 -1.706131 -0.982325 -8.343175 -0.056000 -5.607861 2.151809 7.266439 -3.865607 -1.244321 3.898720 -10.795949 -4.927456 2.088146 -1.091502 4.155207 5.803081 0.297846 -0.734334 1.478429 9.266681 -1.752355 -0.892131 2.009258 3.079785 1.079258 -8.916166 -4.313110 -0.156669 -0.116561 -5.904442 -6.699927 -8.988387 -0.508687 0.858882 -1.112127 6.289498 13.523232 0.623701 -6.656145 5.620943 -3.307340 2.586347 9.466938 1.259485 11.593450 -7.955983 1.830805 -1.921743 2.653321 5.328474 6.878153 -0.156958 -2.394086 2.350311 2.932647 -0.280040 -4.009443 -2.838071 1.681354 -3.495121 0.229754 -4.432534 -3.128863 5.248091 -1.666506 8.944245 -2.019247 11.013849 -4.375180 -11.358381 4.452837 -6.582804 -2.447488 -1.025612 -2.547714 0.199330 2.418499 -7.804462 -4.151060 -5.758484 -0.457056 -0.587567 4.652474 -2.718396 2.555239 -0.642732 -2.058763 7.528829 1.965014 -1.763938 2.103985 -9.988875 -1.071425 4.037991 -0.239917 -11.102218 2.204309 -4.840209 1.031292 6.830687 -1.984313 4.305844 -1.205277 -4.444341 0.800965 -3.110520 1.362888 -5.031883 -4.396432 1.102859 -1.423691 1.067051 2.626793 8.801401 8.635094 3.152111 -1.568154 1.711202 2.269988 -4.112947 1.157808 0.615861 -0.114714 2.097482 2.679408 3.497709 0.792501 1.984017 7.024355 3.676294 -4.384815 7.128858 0.279472 7.277314 -5.081069 -0.147843 1.076532 -4.447228 4.510538 9.483362 -4.010120 -2.920008 5.017070 2.632960 1.387028 -6.561837 -1.424123 -3.529787 -2.171256 6.890992 3.117031 -2.076485 -1.638142 7.287317 3.193089 -11.646287 10.096024 -0.511636 0.425083 1.674013 -2.581383 -2.461992 4.862129 -5.572756 -0.763484 2.383370 5.500579 -7.805638 -0.039356 -0.197187 8.636043 0.658231 1.244631 -12.623640 -1.835033 3.605865 5.756556 4.995426 7.161749 -3.413033 -6.311678 -1.465864 -2.833529 -4.194614 -1.962529 0.928577 -4.139962 0.833308 -3.894214 0.305142 +5.071527 2.962911 5.606553 -7.351851 -2.732789 1.703090 5.514270 -5.489500 0.970446 16.659587 4.577202 -4.401241 -6.962869 9.058177 -2.664384 -6.287828 5.420346 -1.151286 -0.241201 -2.946384 -1.261016 3.674467 -1.273171 -5.648923 4.774018 -2.534579 1.544592 6.035147 -0.059373 0.417989 -5.728720 -1.390305 1.311860 14.146393 -0.622955 0.460096 -2.363019 13.433058 -12.655873 13.276150 -16.058351 -12.897478 13.721640 1.795103 0.982478 -11.038651 -1.512728 5.785427 -0.880955 -9.728977 1.820704 -3.979883 3.284511 -8.534583 0.047923 12.793422 -16.300859 1.695853 2.550874 -5.723909 -9.233922 -1.837409 7.978357 2.629646 -7.833342 -9.016225 3.045552 0.729569 -6.724472 2.914953 -8.869070 -15.150587 6.402639 3.372034 -6.015563 3.093387 -1.235642 -11.814195 7.043895 -4.867743 -6.148351 -4.455594 4.428248 -3.619124 4.872520 4.679281 10.219848 -19.299969 1.510003 -14.924628 10.372121 -8.531052 12.656835 11.331616 -4.568462 5.557188 3.805690 6.766208 3.745317 -1.221236 12.482885 5.426811 8.049683 -2.693132 7.430647 9.454201 -11.276146 -10.809013 -7.893294 -8.895683 2.532905 -2.823676 -13.351938 0.922667 -11.066666 -0.611836 5.007560 -4.581181 -2.446808 12.802912 -19.621543 -5.036590 4.455765 -2.508559 9.304955 11.452540 0.873610 1.708844 0.223126 11.030932 -2.068978 0.082418 -3.526188 6.708524 -6.858247 -7.719282 -3.947641 0.245330 4.092627 -11.403913 -13.212529 -18.884302 -3.175806 6.234713 -3.731554 9.401966 20.416695 -4.320131 -11.238636 7.416491 -2.221453 -0.556978 11.413620 1.886064 19.277443 -16.295474 8.260513 -3.139718 5.773978 5.579120 16.373315 -2.819996 -7.338839 5.561582 -1.632593 -7.786839 8.769119 -1.632213 1.168713 -2.885780 2.108311 -3.680109 -4.683722 12.447796 -11.302436 12.503549 -7.376257 17.053215 -12.196974 -9.470196 5.520420 -13.210518 -4.823060 -9.345929 -4.336668 -0.159077 11.521941 -10.583841 -6.532444 -6.084024 -3.835380 0.416195 10.294837 -10.687160 -0.185508 -3.415368 -4.444304 12.253017 5.690256 -2.159967 0.967055 -11.281984 1.655257 7.585130 -1.134222 -15.463042 -0.921440 -10.648420 -2.010478 2.080817 -1.707852 7.958376 -6.726159 -5.873972 3.692457 -4.003989 0.425080 -6.129187 -13.391536 3.974640 -3.939034 1.801940 3.548735 15.275733 11.012924 9.317801 1.018120 -3.315206 2.984279 -8.009208 -9.728863 5.001329 0.715788 4.470351 5.788781 7.785769 2.457115 3.184935 8.077246 0.701183 1.295264 12.145877 3.664698 12.776811 -3.711982 1.012103 3.701330 -7.792426 7.417638 14.309710 -3.021200 -4.518229 6.063008 1.044298 -6.317920 -5.521000 -1.684916 -4.790680 -6.061908 7.670446 6.285428 -3.035584 -5.954309 19.499232 1.862138 -21.276056 10.249666 -0.896410 3.937249 9.579785 -5.310347 4.363449 6.383315 -1.550057 6.119108 4.534359 11.042753 -11.651125 -1.779466 -0.984236 9.129607 8.473745 -2.284518 -24.022956 2.654950 3.790536 14.754770 6.173486 15.233893 -7.031126 3.858883 -3.039360 -4.891203 -1.641249 -3.632896 8.300348 -2.570570 -0.854810 -18.898546 4.000328 +5.083065 0.645056 3.393474 -4.670977 0.309669 2.943684 3.044613 -5.427213 0.650087 14.297389 4.043932 -3.626144 -4.405996 6.116910 -1.083786 -5.547350 6.823979 4.123085 1.216087 -3.320098 -2.490901 1.059618 -1.360570 -6.491147 4.083589 -4.333975 1.776764 4.241369 -1.679924 3.077531 -5.236279 -1.010033 0.638683 12.993193 0.611758 0.849890 -2.320396 10.566648 -8.898111 13.000649 -11.505371 -10.150833 11.922309 2.361311 1.694470 -3.589728 -0.571816 3.565172 0.698849 -8.448379 0.701706 -5.766558 4.521406 -7.132435 -1.155040 11.818941 -10.528402 -1.566168 1.430390 -6.885330 -9.414204 -1.404226 6.889296 2.921009 -7.860365 -7.752560 3.603457 3.729020 -4.379935 2.168683 -10.143484 -15.232731 5.273953 4.118393 -4.847002 1.634789 -1.980058 -8.466060 4.253447 0.649649 -5.411730 -4.576810 4.007344 -2.914922 2.924517 5.914140 12.150994 -17.180172 2.017881 -14.045036 10.295315 -5.700092 13.712140 9.632372 -2.557314 4.579731 4.511620 7.396550 0.353204 -0.273173 11.250655 3.135160 2.990235 -3.745895 6.848786 8.048443 -9.631257 -10.547860 -5.011778 -5.202324 2.250400 -1.631844 -8.762107 0.912550 -13.501664 1.668854 2.890825 -1.615503 -2.916828 10.850853 -15.968485 -6.244663 3.168112 -2.778454 11.155493 8.273957 2.127483 2.421882 1.197766 9.321730 -1.709477 -3.461551 -5.008955 6.492222 -5.281976 -4.178148 -3.442097 0.774405 5.543536 -11.968377 -12.530749 -14.510721 -4.237655 8.678871 -3.201800 10.694441 17.577444 -4.010794 -6.917049 4.607481 -4.566268 0.223181 11.356990 2.913402 17.867769 -16.931478 10.149815 -2.329912 7.487991 5.576149 12.824321 -3.973672 -6.246267 5.851997 -0.055527 -0.916220 10.793248 -2.849992 1.608646 -1.994772 1.884798 0.435267 -3.204559 10.337567 -10.805137 9.373255 -5.764102 16.450924 -11.690151 -7.859450 4.823187 -9.445056 -6.487940 -6.758426 -0.866064 -2.386390 10.983074 -8.667355 -6.873629 -3.229183 -4.028127 2.580767 9.805888 -3.793320 -0.967178 -3.205072 -7.234911 11.474636 4.093827 -0.659524 -0.834878 -9.446930 0.529336 6.180288 -3.036722 -10.168961 -1.609496 -8.815411 -1.507170 -0.442765 -0.691101 7.740687 -7.832834 -4.626846 1.656677 -1.833631 1.553091 -5.424139 -10.138422 4.761298 -1.066842 -0.991704 3.064738 14.199685 9.403288 8.416715 0.220471 -4.600774 2.386646 -7.012341 -9.836550 5.905324 0.998969 7.170944 4.221286 6.258424 -0.127183 3.370311 5.973629 -3.066664 4.975663 9.355857 2.894782 10.515725 -2.945276 2.171648 4.014557 -9.351831 7.307372 12.102569 -4.410299 -5.011765 4.949315 -0.457576 -6.521384 -4.808197 -0.555086 -2.990242 -6.234959 4.788358 6.677713 -0.503263 -8.387388 18.387083 2.939196 -19.479585 9.830273 -0.106525 2.708891 11.009106 -5.749716 5.540477 4.535294 1.666231 4.527941 3.693176 10.595527 -11.295790 1.180870 -1.435434 7.148474 6.394268 -4.793769 -18.606188 3.210231 3.835125 13.074777 6.833650 11.765723 -6.261370 5.789926 -4.206454 -5.650108 -0.732696 -3.425260 7.478215 -1.980868 0.729208 -16.752712 5.401879 +5.511463 0.989045 4.375104 -4.891003 0.976119 2.760497 4.307606 -5.865801 0.791710 15.810186 4.322381 -3.664496 -5.510892 5.858746 -0.986238 -6.658369 7.809454 4.086771 1.367302 -4.679471 -2.558768 0.954442 -1.176789 -7.493445 4.808236 -5.332251 2.529460 5.784379 -2.071708 3.400634 -4.722407 -1.107690 0.902096 14.026434 0.170521 2.233321 -3.002536 11.420628 -10.421079 13.951531 -12.974854 -12.179374 14.018973 2.516714 1.638613 -4.412217 0.433379 3.699019 -0.378069 -8.699498 0.554240 -5.935233 4.997324 -8.367910 -1.391574 13.185690 -11.611828 -1.933719 1.082216 -8.405471 -10.967499 -1.894288 6.867174 2.893644 -8.355049 -8.592379 4.057354 3.352525 -5.223488 3.650896 -11.134582 -15.377303 5.556878 4.099038 -4.284108 2.061413 -2.095576 -8.512511 4.374385 0.738476 -5.332215 -5.647059 5.061677 -1.877474 2.430759 6.827885 13.277030 -18.734715 1.020359 -14.806223 11.821605 -6.324346 15.150561 10.185377 -2.849106 5.952544 4.640265 7.520668 -0.501211 -1.118510 12.296017 3.408755 4.146430 -4.029783 7.760886 8.755333 -10.526542 -12.220101 -5.737254 -5.526208 2.680777 -1.948853 -9.818054 0.718586 -15.213580 0.695298 3.443041 -2.458582 -2.710513 11.604355 -17.821223 -6.156025 3.854019 -2.821376 12.008960 8.140947 2.548975 2.684555 1.960042 10.136971 -1.505693 -3.133202 -5.462604 7.210629 -5.237132 -5.780160 -3.269485 0.086954 5.703388 -13.041998 -13.632798 -15.872456 -4.632509 10.165142 -3.176712 10.507579 18.859347 -3.903084 -7.811103 4.679518 -4.973889 -0.044540 11.787299 3.216066 18.979650 -18.462694 11.197561 -2.170078 8.832686 7.301818 15.060972 -4.606058 -7.551937 6.804555 -0.136129 -0.764294 10.403423 -3.370407 2.382698 -2.602999 1.480798 0.102306 -3.314549 11.211242 -11.583861 11.304907 -7.323925 17.708554 -13.053511 -9.027067 5.011741 -11.398567 -7.122541 -7.954436 -0.966950 -2.423650 11.864500 -9.819065 -7.972178 -5.097593 -4.491323 3.537388 10.767386 -5.927540 -1.154143 -4.032205 -7.869663 12.174336 4.125692 -0.854669 -1.025568 -10.518382 0.466044 7.025978 -1.607714 -11.405683 -1.447163 -9.246407 -1.977881 -0.956525 -0.487972 8.718277 -7.641225 -4.659612 2.043695 -2.044045 0.768368 -6.202026 -11.321503 5.033051 -0.504731 -1.453480 3.023030 15.608696 10.174350 8.365733 -0.458867 -5.297536 2.976534 -8.091363 -11.068594 6.762316 1.208388 7.458268 4.188363 6.553019 0.049260 3.573544 7.230788 -2.595295 4.414582 10.178608 3.414168 11.190092 -4.002062 2.740742 4.622100 -9.755840 7.796061 12.339014 -3.734541 -6.169517 5.524263 -0.155421 -6.766822 -5.177672 -1.776361 -3.320994 -6.961925 5.796457 6.957642 -1.556535 -8.647769 20.221567 3.573928 -21.390222 10.822164 -0.279708 2.355085 11.400367 -6.861020 4.610611 5.802546 1.362897 4.644128 3.164558 11.678803 -11.763844 1.728088 -1.506394 8.243489 7.482130 -5.703893 -20.577906 3.128684 4.456354 14.538906 7.829187 13.649043 -6.425024 6.544609 -5.484114 -6.172127 -0.726562 -3.297110 7.867502 -1.929953 0.390164 -18.603056 6.199811 +12.551161 -5.716923 17.703177 -16.037940 -16.134529 13.520113 -11.143502 -20.812770 6.040131 31.055143 13.734184 -12.596948 0.845520 30.086655 -10.072779 -17.088160 6.291923 15.393436 6.378505 -6.366746 0.919199 8.367207 -7.129390 -9.372680 2.491876 -12.927358 8.012850 13.028754 -1.602833 16.893908 -17.593403 -7.619445 -4.855299 36.655728 7.900357 6.007450 0.918959 39.709936 -25.442577 41.621910 -34.078630 -35.030368 25.610465 6.453530 5.847026 -7.325625 -17.718109 9.232561 -12.267403 -16.835219 12.275478 -13.218693 14.385995 -8.589976 5.986997 15.983460 -36.279307 -1.789241 2.291612 -17.172868 -18.788956 -5.892932 10.680367 15.894450 -30.111649 -18.293806 11.998932 24.214126 -6.417154 3.265154 -14.380122 -44.684729 29.903861 8.627743 -19.988787 1.212222 12.501880 -30.355500 20.953197 -2.273481 -29.612782 -8.581390 -0.168321 -24.311584 19.919333 12.471097 41.038843 -48.936337 22.158244 -47.506997 29.158069 -20.797676 27.340726 31.524551 -27.831331 8.228102 21.371189 47.133455 20.260857 2.490214 30.606364 23.165378 1.109408 -2.189380 26.924970 22.030960 -22.325746 -23.082943 -23.930324 -27.387553 3.666158 -21.180040 -49.393121 1.164571 -17.836893 12.660535 -4.125528 -2.585800 -5.278432 37.907025 -55.924772 -4.800358 7.621001 -5.051004 18.451817 19.955544 -4.810975 10.289925 0.401708 32.078896 -18.243091 -10.156550 -6.775854 16.078689 -29.901528 -3.923518 -26.285286 13.068132 16.954914 -29.006946 -35.461521 -47.049318 -11.514747 33.774965 -5.666105 38.453660 54.980681 -15.473361 -27.578851 20.223241 -4.529032 -11.942053 40.381214 9.066085 42.445484 -33.185965 12.786542 -21.782380 4.558622 2.828432 20.912204 0.506280 -10.117019 23.485464 -2.394347 -18.011397 52.020910 -11.334941 -8.035754 -25.847405 8.903829 -9.412050 -4.512150 37.727628 -37.613104 22.322008 -16.303734 46.302321 -26.856856 -23.350862 9.535860 -44.946599 -13.705850 -20.085151 -3.358894 -5.446960 35.716507 -31.041231 -18.332918 -9.619922 -17.753696 1.080783 20.455352 -1.798092 1.985602 2.604261 -7.167925 40.776184 27.330131 9.630454 -4.190221 -24.910377 5.101293 22.464584 -16.947959 -29.598400 -4.696145 -27.776414 -0.302051 -12.028742 0.383738 20.638637 -33.707298 -14.736438 -10.563070 -6.343880 10.790547 -2.480023 -42.820735 13.473549 -4.154413 15.326067 15.733271 29.374889 34.387288 33.507630 18.135230 -5.707905 6.771925 -17.755979 -14.227469 17.593100 18.118858 11.198374 9.581079 35.554712 5.931835 9.984866 15.014921 12.502450 20.683554 28.898798 6.416396 39.696494 -4.939562 8.453025 -0.838996 -10.050006 23.840023 49.123283 -11.906121 7.224605 10.569800 3.932727 -16.681873 -19.151985 2.959430 -9.420191 -9.520566 6.670301 16.161670 0.564466 -20.277304 42.707553 11.356904 -50.916364 20.696185 -0.383803 8.585226 34.814544 -13.852528 10.466477 6.176298 -5.603811 31.905439 17.790824 21.973187 -31.867693 -2.932708 -2.035642 19.397044 29.537052 5.036814 -37.955736 24.714711 12.448796 33.617123 12.137333 29.833823 -26.988490 3.617639 -2.288410 -27.166424 -7.056486 -2.666449 17.838499 -6.925740 8.727777 -41.640600 -17.136821 +5.630916 2.873805 5.073794 -5.500563 -1.072123 1.778105 4.196654 -5.678959 0.170387 15.582569 3.679971 -3.614560 -5.050293 6.239428 -2.849448 -6.468995 5.243001 0.829343 0.058115 -5.073996 -1.001781 1.986766 -0.750874 -6.455561 4.228791 -3.924450 2.557217 5.174324 -2.078606 2.571534 -4.239042 -0.537973 1.617127 12.963168 -0.204428 1.134884 -3.186772 10.625399 -9.548951 10.590271 -14.542924 -12.289517 12.372486 2.100882 2.237798 -8.968690 -0.901391 4.014767 0.145794 -7.331867 0.133128 -4.340984 3.098306 -7.730910 -1.114223 11.431548 -13.229205 0.734975 1.313790 -7.298735 -9.811094 -0.742800 7.482672 2.644557 -5.979613 -8.173826 3.156625 2.928950 -4.789314 4.689718 -8.906392 -14.137115 5.193550 3.427273 -4.164841 2.497129 -1.575132 -9.609953 5.510083 -3.113488 -4.593721 -5.045517 5.388996 -1.590224 2.492992 6.145709 10.658236 -17.199518 1.115572 -13.151635 10.309806 -6.808147 12.426614 8.986975 -2.921926 5.431454 3.787094 6.049669 2.706067 -0.910855 10.945501 4.718558 6.611929 -3.149276 6.076337 8.265107 -9.544791 -10.506415 -5.905287 -6.217448 1.759837 -2.940935 -11.752738 1.187508 -11.650650 -0.732814 3.342669 -4.217886 -1.214507 11.843830 -18.408847 -6.541965 3.999292 -1.726374 9.072845 7.783313 1.595788 2.640336 0.837266 9.387592 -0.950236 -1.828603 -3.282730 6.129601 -6.694323 -7.434104 -4.197179 0.753755 4.439755 -10.992980 -11.890426 -15.410130 -4.063804 7.227806 -3.054714 8.639410 17.031239 -3.201028 -9.872490 4.930609 -1.916807 -1.345725 11.042427 2.652512 17.081592 -16.065031 8.929487 -2.093324 7.129364 6.699144 13.529957 -3.892269 -6.507422 6.605996 -0.417837 -4.419842 7.303356 -3.093447 1.982070 -1.904935 1.671785 -1.547128 -2.299762 10.090688 -9.689407 11.914352 -7.858636 14.891799 -12.601157 -8.958211 3.930469 -14.055054 -5.427513 -6.653582 -1.267873 -2.128218 11.208454 -10.338139 -6.694488 -4.272904 -4.870701 2.248473 9.863283 -8.926678 -0.487640 -3.545877 -5.552408 11.597750 4.172937 -1.463110 0.389736 -9.467661 1.202725 7.074424 0.257132 -13.666822 -1.424611 -9.141693 -1.557393 -0.530080 -0.860316 7.660727 -5.867512 -4.255607 2.760232 -3.542337 0.648052 -6.044610 -9.255172 4.215083 -3.320771 1.084870 1.920315 14.194543 10.407355 7.668841 -0.273180 -4.470373 3.983740 -9.618064 -8.082161 5.784133 2.043541 4.388127 4.194994 7.183789 0.528081 2.537596 7.042100 -0.007680 2.502018 10.471024 2.433260 10.723352 -5.230124 2.511869 2.934566 -7.502826 6.927139 12.405429 -1.810897 -5.378127 4.860941 0.102546 -5.384416 -5.228957 -2.152602 -3.222844 -5.845108 6.343054 7.189475 -3.113761 -6.252548 17.879935 3.751309 -18.833489 10.101698 -0.313432 2.031495 9.072550 -6.147714 3.720578 6.073948 0.525878 3.624597 3.153620 10.289670 -11.602076 -0.982627 -1.112059 8.357058 6.895529 -3.910060 -20.420530 2.873690 4.490966 13.510498 5.518327 13.830737 -6.576984 4.293007 -3.507215 -3.805066 -1.763343 -2.271024 7.199955 -2.379885 -0.149693 -15.824970 3.932406 +20.956740 -0.372667 3.487523 -3.801196 3.153389 9.430225 -0.999859 -18.280659 -2.622441 36.678829 11.193075 -9.241829 2.708162 11.359175 -3.595625 -12.900091 14.024363 26.990586 3.546156 -9.646060 -6.553764 -1.295746 -5.086811 -21.605630 7.467325 -13.471885 7.022684 7.147401 -12.219646 21.786001 -13.430047 -2.954251 4.005659 31.741048 5.455674 -0.249903 -6.343641 19.688483 -25.713289 25.600415 -21.608027 -27.018023 30.209334 8.130235 9.123143 3.354861 -7.804914 4.598278 8.351560 -20.729052 -1.682840 -17.452522 14.167752 -15.916206 -4.999728 26.613424 -19.075549 -10.847368 2.975148 -22.766308 -28.769571 -1.662159 17.983871 8.506614 -21.486255 -20.682599 9.533469 20.857405 2.426169 5.251244 -29.627486 -45.734100 14.581125 8.366690 -9.924129 -0.248915 -7.432294 -20.686856 9.181572 15.652570 -12.800801 -12.325720 8.770713 -3.302378 0.447689 20.360264 38.656012 -40.949949 11.535582 -36.528736 27.463308 -8.851730 35.768625 20.739441 -10.379397 7.532613 15.294814 30.975637 2.455762 1.835707 26.903260 8.854216 -1.307663 -13.521547 14.584955 23.186243 -22.828763 -27.278244 -11.748113 -10.370437 7.816581 -6.580507 -27.546387 4.021640 -35.634082 4.615160 -0.624780 -7.089162 -2.428912 33.932583 -41.696814 -15.359370 8.311961 -6.257939 27.821269 13.026143 6.110757 8.130169 1.789305 18.945812 -2.872858 -19.153571 -10.799335 16.343444 -24.380215 -13.232108 -9.537103 9.407955 17.473052 -36.154112 -29.570372 -34.270170 -7.335669 31.480172 -8.464922 23.834250 39.983018 -11.384674 -13.938687 4.957470 -8.069406 -9.769684 32.784300 9.200852 47.726570 -45.720924 29.199607 -3.132025 19.709901 14.718280 15.947990 -12.757883 -15.336153 19.678827 1.091893 0.557586 40.866793 -11.889959 4.632086 -1.718566 8.938122 10.782562 4.387674 24.610453 -26.966893 17.595451 -15.288952 38.429005 -30.014502 -14.613613 8.770763 -30.726147 -25.689063 -12.638364 4.683634 -10.694972 32.206574 -20.776655 -15.930992 -3.427741 -14.966221 10.224734 28.458825 -1.702144 -2.814140 -6.654644 -22.999321 23.060905 9.033036 2.823849 -3.826769 -18.205261 -0.436562 17.532458 -14.573765 -25.945427 -9.695259 -23.715629 -0.711451 -13.641470 -0.681637 22.397110 -23.418929 -8.169032 0.061200 -2.765311 4.975150 -13.785811 -8.070357 14.714901 -5.302990 1.147665 4.043065 37.265779 23.461723 24.251744 2.040597 -13.140444 9.744919 -21.731871 -25.209813 22.258013 5.320815 20.801641 9.177315 15.756486 -7.908844 9.970489 9.511070 -13.254354 24.380759 21.459256 8.249789 25.632366 -5.969445 11.044787 8.009775 -23.981836 19.499731 30.105691 -10.021416 -12.520231 6.246358 -8.738175 -19.802362 -5.812969 1.305888 -1.010372 -23.070669 4.569523 21.723910 3.033651 -26.696423 45.484892 12.003917 -46.784511 24.227678 2.241492 4.138246 34.240408 -19.160699 19.474150 6.280464 19.594134 9.933467 10.304189 28.552343 -32.616228 6.748905 -3.455024 17.779991 18.557146 -15.701044 -40.085629 20.037172 14.547717 30.218016 10.712039 25.988330 -20.451769 20.591825 -12.995451 -11.892633 2.010664 -7.624546 17.516563 -5.125823 7.028802 -39.600292 13.912660 +6.525369 4.228277 11.073967 -9.936484 -7.248122 1.170734 -1.321574 -3.242279 3.733606 19.123819 6.236547 -9.823530 -15.459156 14.342722 -6.914866 -12.874364 6.245550 -1.050760 4.115207 -8.111309 1.251431 4.251130 2.825299 -5.347546 6.465536 -4.530202 -4.531671 8.574002 13.782357 -3.409489 -6.375922 1.887987 3.957971 17.577310 -6.229776 -4.025937 0.720924 20.455473 -9.685209 12.307928 -20.973187 -16.652053 18.983092 3.534341 0.902977 -15.498895 -4.639627 8.415239 -12.842486 -8.085265 2.870925 -1.488214 2.426633 -11.904965 -1.716005 18.672257 -32.487141 11.133647 0.323745 -4.896146 -6.322037 3.098448 6.698082 3.498095 0.700442 -11.191780 2.621498 3.256160 -15.516524 3.383666 -6.141431 -13.493812 15.489816 2.103592 -7.525695 8.346305 6.817334 -11.176090 11.627717 -16.585542 -9.466415 -4.647047 5.912635 -2.916027 10.905823 5.495806 10.416845 -24.352607 2.164086 -18.467582 18.276097 -15.166820 14.460812 15.670181 -11.760338 8.923544 7.232545 0.022314 10.327035 2.218281 22.505105 8.013772 11.788006 -0.263834 6.534632 9.829934 -11.434608 -8.303801 -11.079885 -14.111960 -2.367641 -2.216819 -21.349034 0.435849 -12.575405 5.104644 13.026230 -7.815678 -1.528614 13.748564 -23.686991 -8.366733 5.277819 -2.557788 9.009923 17.061193 -0.071061 -0.472040 0.882063 20.814529 -5.042574 -2.112594 3.305256 7.045568 -2.205094 -19.736299 -10.675922 0.370945 1.892563 -14.644207 -16.318559 -22.822718 -0.860943 2.871487 -3.062269 14.636156 31.498881 -1.262817 -14.468699 13.064711 -3.600844 2.447718 22.453347 2.525540 29.369749 -19.450440 4.958617 -6.119900 4.551303 8.989427 15.170883 -0.197239 -4.947781 5.730686 5.482866 -7.670487 2.440678 -5.267184 1.977155 -3.851861 1.942452 -7.534342 -8.323245 14.620417 -5.106488 18.303418 -4.914496 26.596173 -10.212599 -23.074022 10.090146 -12.131839 -4.244691 -4.644346 -5.661588 1.173090 9.717967 -16.212881 -8.946262 -10.907637 -3.317853 -0.968334 11.314421 -4.560597 5.548413 -0.972350 -5.207101 15.919907 7.638053 -2.724760 5.176967 -21.999753 -1.054606 9.353455 -3.295939 -25.316193 3.921094 -14.015092 2.084404 10.130125 -5.052070 10.455719 -7.097142 -11.529325 0.978197 -7.317324 3.413794 -9.862510 -13.147358 3.557153 -5.086263 4.114213 6.737106 19.619127 19.778883 10.913588 0.187660 1.851853 4.522549 -8.513167 -1.275472 3.468323 0.394590 5.721077 6.293237 10.108625 1.956922 4.898343 13.221660 5.097583 -4.381133 17.278430 2.316455 17.943828 -8.927045 0.655991 1.773601 -10.612245 12.015790 23.669136 -8.108435 -5.715966 9.593166 5.570022 -0.796907 -14.786298 -2.064693 -7.026892 -6.814696 13.994345 7.557535 -2.610965 -5.616734 18.472722 6.081082 -27.910356 19.999612 -1.967659 1.546787 8.127848 -5.160281 -1.456960 8.989545 -9.877071 1.909681 6.415809 14.147542 -17.854733 -2.269377 -0.718681 17.630819 3.713122 2.937840 -32.367655 -0.118089 8.424031 14.604060 9.872326 17.181141 -10.380319 -10.067305 -1.901332 -7.245263 -8.360290 -5.071125 5.236252 -10.147118 1.691392 -12.780323 0.322578 +0.762991 0.832864 1.143321 -2.402107 -0.796819 -0.093513 1.770520 -0.817650 0.251625 2.308281 1.212384 -1.382446 -2.395440 2.554017 -0.443481 -1.923243 1.142475 -1.592644 -0.583930 -0.302068 0.019899 1.031438 -0.020672 -1.381759 1.180870 -0.221258 -0.108833 1.971415 1.086687 -1.020639 -1.404009 -0.071770 0.621816 3.160326 -0.456692 -0.044447 -0.261125 3.383521 -3.028555 2.936359 -3.760340 -2.433547 3.575888 0.192758 -0.776438 -3.985849 -1.063080 1.435501 -1.217334 -1.775363 0.623218 -0.421018 0.300461 -2.218421 0.133447 3.793559 -4.552608 1.466790 0.728574 -0.448471 -1.299870 -0.536819 1.249894 0.097519 -1.010616 -2.148927 0.516481 -0.792740 -2.207759 0.653815 -1.737635 -2.832689 2.709364 0.879507 -1.127883 1.067841 -0.324518 -3.060773 1.751244 -2.037911 -1.152532 -0.849606 1.231857 0.062773 1.774564 0.319007 1.177195 -4.305773 -0.911792 -3.189997 2.061469 -2.734786 2.405622 2.585792 -1.462489 1.493049 0.174944 -0.055739 0.789693 -0.034981 2.835738 1.112205 2.599951 -0.625559 1.741821 1.822094 -2.198262 -2.262838 -1.602588 -2.106272 0.167998 -0.570910 -4.161447 0.359093 -2.233033 -0.546420 1.546399 -1.214717 -0.402971 2.451803 -3.206026 -0.663674 1.022370 -0.567125 1.684033 3.377515 0.055047 -0.085303 -0.434116 2.574877 0.199303 1.074423 -0.793033 1.356276 -0.978092 -3.286855 -0.874259 -0.362944 0.545126 -2.243676 -3.037490 -3.920512 -0.432178 0.366920 -0.917911 1.617732 4.562449 -0.675628 -3.013002 2.200011 0.730051 0.785472 2.287743 0.150137 4.555892 -3.327728 1.615594 -0.507606 0.944803 1.085062 3.428403 -0.690107 -1.937098 0.743742 -0.556929 -3.341345 1.623745 0.009663 0.388430 0.238694 -0.044840 -1.591056 -2.130477 3.304393 -1.080738 3.627172 -1.377406 3.837421 -2.521027 -2.729290 1.625152 -1.736983 -0.579788 -2.443178 -1.527107 0.622494 1.966081 -2.259920 -1.515415 -1.721836 -0.260167 -0.355487 2.380294 -2.475929 -0.064126 -0.963205 -0.439298 1.904684 1.478972 -1.208943 0.975487 -3.016308 0.695966 1.950954 0.175075 -4.363088 0.390006 -1.921264 -0.491923 1.261558 -0.521364 1.510223 -0.991720 -1.655632 1.352092 -1.036203 0.072856 -1.449326 -3.347985 0.631972 -1.025714 0.191743 0.870691 3.422013 2.770551 1.523664 -0.088983 -0.545091 0.564700 -1.439812 -2.065843 0.457528 -0.373721 0.695297 1.459229 1.977421 0.685800 0.446405 2.464214 1.029937 -0.719295 2.694237 1.520959 2.922089 -0.126554 -0.592810 0.919544 -1.897246 1.838242 3.615288 -0.644046 -1.201663 1.733618 1.014601 -0.907502 -2.070769 -0.898823 -1.276935 -1.718717 3.100022 0.497344 -1.095497 -0.640535 4.332129 0.224219 -4.644010 2.207954 0.010547 0.966971 1.084655 -1.124208 0.486555 2.032294 -1.360131 1.075298 0.747301 2.402478 -2.137030 -1.092352 -0.139713 1.903595 1.635077 -0.119801 -5.355440 0.006717 1.074552 3.723194 1.654068 3.365655 -1.118222 0.256292 -0.675747 -0.298637 -0.358269 -1.104930 1.445468 -1.611310 -0.547771 -3.757620 0.585353 +3.909235 1.176616 4.090524 -4.229709 -2.232687 1.925408 1.026237 -3.720689 1.077721 9.546142 2.600659 -2.337339 -3.714027 5.260817 -2.612484 -4.476654 2.713851 -0.501807 0.564072 -2.444849 -0.352042 2.048378 -0.764703 -3.522977 2.515005 -2.446408 1.053554 3.484964 -0.099918 0.940464 -3.597825 -0.875141 0.392216 8.896796 0.027504 0.656923 -0.606426 8.573025 -5.843454 7.516957 -10.101250 -9.173913 8.046954 1.220252 1.252265 -5.303991 -0.930569 2.948901 -2.257544 -4.330888 1.126794 -2.884738 2.058710 -4.586234 0.005036 6.759809 -10.970813 1.659678 0.564091 -3.764081 -5.639079 -0.943498 4.263314 1.999973 -3.502729 -5.332785 2.257243 2.861341 -4.381981 2.297143 -4.351499 -8.922472 5.396344 1.979719 -3.569357 1.589535 0.593586 -6.589050 4.437396 -3.923896 -4.498446 -2.779167 2.507071 -2.612513 3.577221 3.273048 7.101168 -11.774525 2.411708 -9.567835 7.028827 -4.913123 7.544832 6.602527 -3.963386 3.388062 3.325627 5.350153 3.056280 -0.200022 8.104378 3.924946 4.081954 -1.210402 4.520689 5.065252 -5.967192 -5.715481 -4.725163 -5.577209 0.571941 -2.439372 -9.706233 0.182335 -6.210430 1.787439 2.387170 -2.384730 -1.094536 7.719645 -13.604491 -3.505003 2.201888 -1.279149 5.532796 5.494448 0.242245 1.219092 0.676193 7.505784 -2.220804 -1.413079 -1.653587 3.942722 -4.305306 -4.728483 -4.231973 0.837957 2.782350 -7.102400 -8.334448 -10.928550 -2.224670 5.226325 -1.734033 7.343401 12.925434 -2.287289 -7.210723 4.585666 -2.004349 -1.152916 8.709425 1.729470 10.942272 -9.464251 4.444602 -2.635904 3.315837 3.018488 7.311542 -1.417962 -3.700756 4.032912 0.070207 -3.234315 5.664139 -1.766800 0.433781 -3.060146 0.951902 -2.581527 -1.932192 7.342707 -6.347630 7.786966 -3.909312 10.959564 -7.576187 -6.861500 2.849807 -9.109913 -3.139487 -4.288793 -1.832264 -0.665120 6.920054 -7.534889 -4.326730 -3.287967 -2.899701 0.452218 6.315429 -3.748692 0.457105 -1.337179 -2.864449 8.646556 3.974851 -0.638069 0.358223 -6.841412 0.795046 4.803488 -1.326628 -9.201144 -0.639603 -6.256224 -0.530223 1.337902 -0.609577 5.054481 -4.335793 -3.533791 0.910572 -2.180360 1.080202 -3.266415 -7.131476 2.277446 -1.903859 1.432296 2.143307 8.782653 7.536524 5.886299 0.868962 -1.869795 2.002605 -5.310289 -3.538443 2.771660 1.805170 2.714408 2.810291 5.885631 1.124051 2.073892 4.805293 2.185119 1.365149 7.433306 1.662886 8.245791 -3.875346 1.253752 1.268419 -4.177968 4.999453 9.365848 -3.399116 -1.412469 3.283929 1.161919 -2.885579 -3.814010 -0.649139 -2.897244 -3.034396 3.859520 4.367768 -1.275586 -3.981393 11.176276 2.443522 -12.689676 6.868215 -0.344697 1.809479 5.819910 -3.623346 1.588021 3.481937 -1.385927 3.906233 2.884822 6.271779 -7.607735 -1.161289 -0.499081 6.187871 4.165045 -0.479533 -11.990488 2.187145 2.851921 8.602037 3.937768 8.334942 -4.938251 0.671077 -1.912154 -4.095448 -1.695440 -1.001073 4.385523 -2.040852 0.570944 -10.075145 0.588469 +17.461894 6.316087 24.425716 -31.147075 -37.974029 11.867489 -13.890866 -15.952417 6.261275 17.399472 18.875006 -20.736846 -24.078218 46.138845 -15.562952 -38.245007 0.081565 -15.064445 -0.176618 -8.517861 1.934475 17.741552 -2.117015 1.695107 5.220095 -8.690095 -7.897912 19.532185 31.200972 -14.780118 -28.272054 -3.271608 -1.528967 45.954146 0.488820 -7.531015 13.606449 71.179042 -12.887060 35.059727 -39.085528 -39.181440 29.783968 4.879299 -6.796081 -29.818256 -26.914616 22.768340 -35.241608 -9.280729 30.384148 -2.776926 -2.385032 -8.104731 14.590965 32.803298 -75.724552 35.950401 3.297909 3.831180 -2.829324 -7.282821 3.267136 8.298939 -4.870510 -25.497957 15.449405 21.350962 -31.085670 1.320129 -8.391572 -45.280261 64.109758 14.271214 -24.722124 10.979154 27.841661 -34.626247 34.915864 -37.855196 -44.875820 -2.621606 3.634267 -13.394843 47.114912 2.821788 21.773280 -67.420581 16.386019 -62.027046 32.250039 -43.147695 26.899468 47.608187 -43.359589 13.528599 22.419268 21.636807 33.060279 5.386014 53.832304 20.356721 13.062308 8.704159 23.444769 15.749083 -21.866005 -13.610442 -31.080197 -46.939745 -5.253699 -12.323744 -74.981178 6.129801 -10.780207 18.672524 10.926170 -1.417018 -3.671150 26.258254 -59.955992 -17.603395 8.652110 -6.779295 25.090978 45.993340 -14.993320 9.884877 -12.009974 55.650503 -19.859965 6.527093 -3.765608 14.302448 -9.561056 -36.551786 -52.937750 9.988641 19.969491 -29.662257 -47.600704 -51.667201 -4.602630 8.911246 -13.228884 53.205562 85.516372 -19.212666 -37.434258 49.532148 6.347058 11.117860 57.577897 3.105136 64.486436 -32.390674 -0.664790 -19.862932 -8.045354 -3.620557 -2.024003 11.367226 -5.693492 16.531574 10.008995 -22.963380 38.978361 -13.929010 -20.483078 -13.130266 4.867231 -23.056636 -29.287273 52.344186 -1.691296 37.405640 7.951992 67.712530 -21.828808 -49.959683 23.124242 -22.993578 0.167170 -27.784222 -16.084013 1.838807 29.819466 -40.592418 -20.842040 -15.104279 -12.691305 -17.679608 13.985868 21.261744 14.965231 7.208442 12.237805 36.745633 54.701433 8.261601 9.783154 -56.353899 9.505513 25.605671 -19.665536 -46.879592 9.658721 -28.989411 2.335857 19.124098 -11.336396 13.988057 -25.825268 -31.061900 -12.017402 -13.387251 23.357742 4.740545 -49.308339 8.361545 -9.444802 17.757729 23.428768 34.056424 56.519512 39.639819 32.982485 1.018476 12.348712 -4.058648 3.226805 1.780889 10.065791 23.099407 19.095996 39.183811 17.765050 9.265123 32.602260 29.008824 1.143432 41.253451 14.664625 70.109486 -7.321630 -2.572848 -12.423241 -13.350877 36.011179 80.123765 -30.181483 11.098427 23.584394 24.430930 -2.881540 -45.610989 1.235602 -23.049016 -10.879862 22.955450 6.543688 -4.466383 -11.760764 47.964675 2.843508 -65.123776 32.571150 -0.284074 11.904033 25.658675 -5.738268 -1.177288 16.658058 -44.992177 29.630474 28.800157 31.515975 -34.543749 -7.558656 -4.252755 32.448196 -0.470098 24.319347 -47.216395 17.945433 27.446846 42.697538 24.681529 23.793957 -31.489924 -31.936214 11.280055 -25.517324 -16.909620 2.693629 22.220018 -31.154980 10.032876 -28.775098 -35.510497 +53.930135 4.077135 76.296889 -100.661492 -122.282835 48.017660 -58.788682 -59.299843 24.670142 40.445512 64.956952 -59.026711 -53.566797 142.037970 -38.293306 -114.316886 -1.021605 -46.797853 3.778832 -25.742483 11.248399 48.591009 -14.489488 13.810228 -2.348544 -29.311368 -17.400665 52.292676 86.399231 -41.635625 -97.729219 -15.530188 -21.613305 138.065383 14.465220 -22.187298 40.373528 222.178794 -29.881611 105.657088 -117.757555 -114.846508 72.807785 12.024493 -23.607387 -77.337310 -89.496284 65.089857 -93.549153 -23.545633 103.624513 -12.952482 1.073190 -8.968306 46.582885 82.442419 -213.168615 94.509596 10.816362 11.317382 -2.824009 -25.994718 13.681097 42.563037 -34.118482 -70.823866 69.027944 75.579732 -81.971196 -1.123124 -24.527275 -156.744125 192.644868 54.062888 -75.618952 21.089645 96.676058 -115.123631 114.282755 -88.096714 -152.187225 -3.383393 -6.037509 -68.607446 151.018503 -5.241432 79.056127 -205.607423 71.362047 -203.746173 91.166113 -130.733362 76.373511 145.076168 -137.207612 28.245601 78.257356 102.184972 109.721040 4.574189 158.724708 68.836054 25.918437 28.746847 90.388427 41.367705 -58.112927 -33.721424 -95.640115 -149.490227 -15.566210 -54.200742 -234.897943 27.363389 -26.201920 44.365691 12.005407 8.560479 -12.956954 90.170334 -179.351175 -52.367978 24.347086 -21.395188 70.995314 141.397895 -58.081518 41.000637 -40.096451 171.193417 -72.589029 23.700062 -13.494364 41.703467 -38.171931 -82.199812 -177.072611 44.889547 75.649225 -93.608965 -148.194543 -151.345114 -18.972124 35.097942 -36.645858 188.083050 261.553962 -69.661717 -116.637198 150.469103 27.326487 19.449250 183.200527 8.211710 195.230773 -93.211602 -3.127801 -76.837079 -29.513355 -29.169039 -30.303756 42.046387 0.235277 59.714613 25.305049 -60.875765 158.926746 -47.682984 -76.144898 -37.713210 22.942021 -68.563776 -95.886044 160.397990 -3.120100 104.372250 43.918896 202.581294 -65.249419 -137.448750 69.981472 -68.695521 1.749183 -81.317421 -45.769048 0.462234 102.961835 -112.511206 -63.098226 -47.711410 -53.617941 -51.643641 34.580439 94.614547 51.939234 35.918872 45.690937 113.112281 191.720851 44.807610 20.024417 -166.700801 37.439794 88.447076 -69.610933 -111.461304 18.686528 -94.508976 10.851088 37.746846 -28.415835 53.092117 -98.529286 -99.353261 -53.654493 -25.205531 79.280718 32.736413 -184.288907 29.281296 -25.167711 63.408064 73.078257 95.551789 166.431787 134.371477 124.481913 -10.513589 37.611782 -2.882558 8.044688 -3.726456 38.925956 77.233510 54.398910 129.104919 54.701510 31.680845 102.138456 94.310893 22.209481 122.015649 36.463734 220.549533 -12.369158 -1.062472 -50.448497 -36.622843 113.440250 263.297940 -81.699221 53.194200 68.339960 79.640540 -22.281767 -155.932998 7.891197 -68.267689 -16.640279 48.364504 23.548721 -7.338845 -47.179637 144.364068 16.588603 -198.090426 87.612045 -0.663623 37.421878 102.353570 -18.353141 0.138493 37.308557 -144.147448 113.210067 96.560215 88.844105 -103.075847 -18.390044 -10.446849 94.748568 -11.707770 80.842546 -119.366492 81.097457 84.478957 128.797086 79.355387 66.556733 -110.306377 -91.346560 45.817400 -93.653714 -48.878040 24.290550 76.068798 -104.117877 35.014345 -92.420007 -123.750639 +1.435201 1.230057 1.697249 -2.812450 -0.622794 0.274287 1.965890 -1.624899 0.546142 3.034046 1.653686 -1.494572 -3.135485 2.282686 -0.983183 -2.794223 1.791629 -1.371003 -0.462553 -1.214281 0.085740 0.846264 0.025274 -2.419379 1.694163 -1.055805 0.474467 2.603380 1.109773 -0.891673 -1.743115 0.049176 1.022056 4.408532 -0.420132 0.775481 -0.591917 3.959926 -2.403494 3.266459 -5.490280 -3.846850 4.979878 0.449657 -0.509972 -5.035262 -0.578730 1.503044 -1.887908 -1.839635 0.216123 -1.291450 0.698065 -3.080683 -0.417141 5.143036 -5.563750 1.761315 0.459408 -1.466336 -2.332551 -0.594051 1.778223 0.214354 -0.651577 -2.987394 0.875873 0.083365 -3.298624 1.692240 -2.570391 -3.761170 3.995575 1.075986 -1.346206 1.205076 -0.826288 -3.600976 1.782930 -2.341542 -1.166119 -1.512592 2.476467 1.218796 1.528299 1.063876 2.207975 -5.881260 -1.720473 -4.335228 3.393049 -3.040748 4.098732 2.793612 -2.070982 2.150075 0.507486 -0.290022 0.653978 0.408244 4.033714 1.304925 3.306615 -1.370090 2.226375 1.996031 -2.362988 -3.209211 -1.511097 -2.391872 -0.019313 -0.337747 -6.029852 0.187796 -4.139741 0.086955 1.556010 -1.545290 0.015610 3.294037 -4.948340 -1.797319 1.284653 -0.546256 2.924807 3.659001 0.640031 0.364251 0.183428 3.403474 0.324290 0.372965 -1.374119 1.913096 -0.811102 -5.143485 -1.552012 -0.588435 1.073012 -3.343241 -4.301771 -4.575474 -1.180208 1.286788 -0.992860 1.605746 5.781625 -0.628704 -3.879049 2.213194 0.294339 0.513522 3.699809 0.546883 6.119567 -5.316350 3.057666 -0.290677 2.227575 2.224771 4.350467 -1.672056 -2.851202 1.229886 -0.302201 -3.701451 1.636872 -0.448236 0.998169 0.511143 -0.573645 -1.655208 -2.400113 3.777506 -1.176543 5.439418 -2.453269 5.338216 -4.406519 -4.262720 1.896601 -2.052867 -1.158398 -2.251488 -1.000647 0.403356 3.075072 -3.609757 -2.442043 -1.708483 -0.764232 0.445112 3.691469 -2.448191 -0.327666 -1.587031 -1.654538 2.500538 1.448788 -1.672285 1.015411 -3.687717 0.659486 2.672230 0.955401 -5.563001 0.167767 -2.893846 -0.649445 1.202684 -0.452215 2.432870 -0.681218 -1.873275 1.496334 -1.460277 0.416652 -2.220692 -3.069267 0.978308 -1.118199 -0.431473 0.431156 4.968480 3.797875 1.866872 -0.812764 -1.416197 1.240756 -2.959320 -2.243027 0.825011 0.152085 1.200914 1.536180 2.839951 0.508557 0.711387 3.325353 1.061609 -0.328787 3.696447 1.701644 3.821545 -1.871461 0.041249 1.103499 -2.843831 2.703174 4.700564 -1.016728 -2.096599 1.916633 1.496838 -0.877071 -2.997004 -1.527018 -1.273040 -2.538749 4.035099 1.358699 -1.140373 -1.484787 6.266476 1.179691 -6.285083 3.667632 -0.195241 0.716696 1.494651 -2.190746 0.099740 2.927741 -1.085677 0.600744 0.568368 3.526591 -3.206838 -1.844183 -0.381965 3.033471 1.483852 -1.128168 -6.236191 -0.010894 1.792651 5.367655 2.691958 4.351726 -1.594835 0.579365 -1.528535 -0.665030 -0.522491 -0.998205 1.763186 -2.007507 -0.946379 -4.975823 1.349714 +6.775802 0.832413 3.589089 -3.657957 0.113148 3.296380 1.731037 -6.599559 0.138355 15.675604 4.249558 -3.767026 -2.989122 6.088631 -2.098488 -5.812795 6.070671 5.918975 1.250465 -3.790120 -2.459841 0.942376 -1.705570 -7.278540 4.074089 -4.473588 2.428914 4.151565 -2.584008 4.793602 -5.483061 -1.164398 1.074628 13.683142 1.075998 0.584359 -2.137972 10.496908 -9.944988 11.986722 -12.198116 -11.596714 12.699276 2.613225 2.544917 -3.000226 -1.291964 3.611643 0.238123 -8.496322 0.340361 -6.258128 4.746244 -7.387217 -1.334448 11.829775 -11.820124 -1.358968 1.536310 -7.725640 -10.821340 -1.201506 7.670123 2.929601 -7.633724 -8.494073 3.678840 5.432042 -3.261938 2.670450 -10.733872 -16.675612 6.107448 3.279832 -5.085328 1.330418 -2.206929 -8.785373 4.728099 1.041804 -5.674817 -5.105975 4.267473 -2.767067 2.480578 7.085124 13.197200 -17.977656 3.371251 -14.913219 11.167559 -5.472563 14.286216 9.722106 -4.288507 4.422174 5.321167 9.300184 1.338514 -0.095304 11.754332 3.628623 2.442144 -4.183508 6.416878 8.779207 -10.054211 -10.864399 -5.719236 -5.824267 2.508213 -2.193478 -10.886938 0.932136 -13.877449 2.585855 2.255853 -2.780569 -2.076536 12.284821 -18.334226 -6.137616 3.350005 -2.613684 11.463672 7.773554 2.069687 2.873906 1.050515 9.486835 -1.995740 -5.073248 -4.571540 6.766933 -7.154647 -5.770081 -4.455998 1.777154 6.034824 -13.037256 -12.870878 -15.786515 -3.715118 9.872506 -3.329319 10.736438 18.189246 -4.290917 -7.799188 4.368815 -4.440218 -1.426435 13.097016 3.248992 18.959805 -17.856839 10.524291 -2.267384 7.560290 5.989084 10.423142 -4.409015 -6.500321 6.940104 0.278212 -0.999748 12.439417 -3.229326 1.592846 -2.177416 2.641898 1.081603 -1.348126 10.768168 -11.035785 9.307648 -6.416581 16.996859 -12.534813 -8.112581 4.300360 -12.369410 -7.733417 -6.122912 -0.903372 -2.956603 12.165428 -9.818553 -6.909811 -3.164437 -4.676787 2.886959 10.961760 -3.202760 -0.788706 -3.084767 -7.803745 11.771771 4.257957 -0.466530 -0.725910 -9.313044 0.196963 7.152279 -3.776169 -11.903805 -2.326483 -9.872978 -1.159053 -1.330702 -0.705048 8.579010 -8.577462 -4.409518 1.388408 -2.073535 1.831068 -5.729853 -8.185602 5.126096 -2.400812 -0.156757 2.983515 15.100385 10.083410 9.354163 0.532026 -4.503660 3.255376 -8.429526 -9.239882 6.923744 1.739367 7.610876 4.387238 6.428785 -0.610791 3.611963 5.128473 -3.043534 6.008175 10.235426 3.369628 11.287963 -4.026459 3.365800 3.532863 -9.112562 7.779182 12.540956 -5.177621 -4.794272 4.280687 -1.240007 -6.632236 -4.406907 -0.436654 -2.601330 -7.340554 4.066301 7.706611 -0.408010 -9.087004 19.145776 3.625073 -20.010659 10.724887 0.095900 2.386665 11.695789 -6.495401 5.745856 4.261777 3.180493 4.484108 4.130913 11.548150 -12.543105 1.586077 -1.414558 8.316467 7.159622 -4.672118 -19.131666 4.773050 4.736458 13.253774 6.046642 12.002675 -7.364677 5.911236 -4.688508 -5.680937 -0.418636 -3.166746 7.717144 -1.595721 1.338456 -17.054107 4.968100 +43.955359 -1.768377 62.655643 -73.369929 -83.752615 38.128253 -43.433651 -47.686913 21.615440 51.401814 50.582160 -47.769945 -44.476133 104.753900 -27.105336 -89.360039 9.064553 -21.694243 8.736542 -26.846543 6.651084 32.019078 -10.733090 -0.286314 3.731690 -28.328288 -9.240691 45.028891 62.865989 -19.961059 -72.889068 -10.468667 -16.531742 113.991620 8.032636 -14.172214 27.248198 170.241898 -33.403047 87.982342 -100.504049 -98.212535 70.173310 11.881040 -12.853629 -51.085210 -60.988405 50.454832 -77.220954 -25.941588 72.136088 -15.309341 10.573204 -18.337632 28.790706 72.469607 -170.905029 63.712526 6.408962 -4.607802 -18.496214 -17.165321 18.863164 37.012659 -33.146296 -60.213243 55.501283 58.799492 -64.395648 3.760887 -28.714926 -128.523889 141.997611 40.127317 -58.163344 18.936739 71.142987 -88.812443 88.324014 -57.663399 -114.421929 -10.617766 -0.055946 -62.023974 112.098917 4.515278 74.536165 -166.816714 57.588974 -161.959247 82.940284 -100.537436 71.599325 115.302119 -106.864654 28.200024 63.258333 87.036576 78.418362 -0.415681 128.132989 54.049679 22.939629 16.656410 73.726153 38.490488 -54.724388 -36.941734 -77.244546 -112.457237 -10.426965 -46.321998 -177.619049 19.424390 -37.762885 37.471447 16.221971 1.614095 -13.836150 80.679500 -151.912259 -40.123608 20.881847 -18.026238 62.885182 107.149083 -40.288527 31.364698 -21.861047 136.557515 -56.823779 7.015496 -11.684458 38.047532 -33.060938 -59.612574 -130.392336 35.153665 59.854408 -81.982769 -121.060130 -126.581012 -18.940201 38.384744 -25.813842 151.827443 208.666035 -50.046422 -92.863799 109.978017 4.375350 13.058598 149.471668 11.156742 160.088870 -88.571633 10.960943 -63.083375 -8.530806 -10.595328 -7.966578 25.275267 -5.927649 52.802063 21.421630 -33.108216 125.929177 -38.116722 -48.601130 -37.199503 21.095979 -49.749251 -68.666784 126.691949 -19.409103 86.575301 23.374969 165.731175 -60.707657 -110.566997 56.094713 -67.710196 -9.019455 -60.695437 -36.241514 -3.534600 85.125511 -92.741322 -55.383950 -45.259026 -42.784527 -28.962125 38.500191 68.988934 37.764254 23.063203 21.350110 98.644205 137.293321 31.941903 10.748683 -132.595885 24.212275 72.922801 -56.480815 -90.446777 11.169940 -79.262541 8.682798 27.089113 -18.277151 53.045566 -83.987679 -77.698765 -38.908181 -16.308265 57.377782 13.730826 -150.190369 27.136859 -16.940208 43.583146 59.563211 86.520342 131.095257 103.804734 85.950994 -11.035304 30.307364 -13.053329 -3.122887 4.410294 30.028041 66.092025 40.971945 99.092878 36.713305 26.689832 76.968270 66.000955 19.988839 99.589305 29.124012 166.894854 -16.676838 5.043640 -30.452848 -36.486858 89.163780 199.449242 -66.185874 33.268866 54.826192 58.437083 -22.209850 -119.683726 2.147456 -53.202144 -14.213298 36.282711 24.643367 -7.729840 -44.661788 122.851973 22.557131 -165.961944 78.538569 -1.446917 27.753829 88.021286 -21.985034 2.009706 30.839454 -102.180564 87.012521 71.199727 73.603204 -89.747965 -5.534368 -7.530846 81.543527 0.133618 52.450858 -106.347319 61.454935 62.300318 103.924714 68.403633 63.150634 -87.385665 -61.266778 23.166164 -81.563612 -37.234900 13.806393 59.551966 -75.709298 28.880860 -87.578155 -83.795996 +6.144808 1.134712 3.562473 -3.970451 -1.554096 3.170023 0.751757 -5.971957 0.158939 13.182793 4.103950 -4.231238 -3.704293 6.524319 -2.109969 -6.596307 4.730555 4.742412 0.857177 -3.572907 -2.521252 1.246794 -1.685273 -5.458812 3.495483 -3.955276 1.463202 3.806806 -0.684847 2.985403 -5.572731 -1.014281 0.811701 13.050243 0.964672 0.205922 -1.120019 11.437737 -7.510021 11.075769 -11.298175 -10.573298 11.013210 2.444482 1.957500 -3.162071 -1.754164 4.070858 -1.465765 -6.869213 1.649581 -5.136916 3.315585 -6.094232 -0.240982 11.168638 -12.449599 0.905072 1.494331 -6.181662 -8.896020 -1.134644 6.161362 2.519114 -6.064862 -8.015625 3.434561 5.643982 -3.844976 2.341684 -9.355224 -15.631244 7.517123 3.513570 -5.408951 1.550193 -0.879913 -7.687905 4.984494 -0.757129 -6.484066 -4.217200 4.053390 -2.373741 3.877046 6.240468 11.340376 -17.285307 3.317590 -14.775591 10.238350 -6.202422 12.936369 10.011777 -4.662217 4.078261 5.167570 7.097352 2.250266 0.428495 11.613529 3.018820 2.156738 -2.989361 5.663871 7.552154 -8.897365 -9.365537 -5.440058 -6.566858 1.563573 -1.397179 -10.992566 1.080445 -12.091965 3.930450 2.329642 -1.592604 -1.806581 10.135117 -16.838736 -6.576247 2.985185 -2.543315 11.180572 8.367208 1.186340 3.031650 0.084288 9.905629 -2.199625 -3.896823 -4.316849 6.035447 -5.427037 -6.237726 -6.503902 1.804429 6.048811 -11.643144 -12.433685 -14.333650 -3.421927 8.239263 -3.515758 11.306681 18.341348 -4.547027 -7.392047 5.717289 -3.900660 0.042426 13.032305 2.809287 18.318851 -16.007648 8.877129 -2.381095 5.998178 4.555535 7.820364 -3.142960 -5.712560 6.245021 1.047050 -0.653594 11.289798 -3.190082 0.267182 -1.955169 2.295293 0.700895 -2.352006 10.748279 -8.702207 9.029884 -4.390537 16.768651 -11.173282 -8.726757 4.636545 -10.094096 -6.157432 -5.564866 -1.235192 -2.423004 11.021087 -9.615699 -6.475178 -2.622834 -4.423870 1.469269 9.212770 -0.263760 -0.301904 -2.204351 -5.866477 11.302524 5.889511 0.094617 -0.259374 -10.180175 0.611278 6.238453 -4.141834 -10.943478 -1.341798 -8.925684 -0.976029 0.030477 -1.014070 7.271925 -7.835732 -4.670491 0.489255 -2.168424 3.010684 -4.235935 -7.679845 4.611268 -2.318086 0.212351 3.411622 13.600279 10.473186 9.299944 2.027330 -3.709044 3.022647 -6.786664 -6.821149 5.684997 1.786435 7.687573 4.426520 6.039158 0.104847 3.120657 5.358461 -2.044505 4.870022 9.827557 3.240387 12.239856 -3.915066 2.818682 2.397867 -8.281526 7.719780 13.504070 -6.556920 -3.612753 4.588136 0.024972 -5.380660 -5.631734 -0.391469 -2.989649 -6.813483 4.009218 6.412557 -0.574761 -7.958293 17.661033 2.898043 -18.710707 10.165132 0.139140 2.220397 10.318618 -5.242696 4.483409 4.226525 0.583400 4.305714 4.699532 10.869542 -11.664283 1.197591 -1.462077 7.942732 5.061602 -2.976400 -17.019203 3.991935 5.377635 12.496856 6.199740 10.187370 -7.128101 3.176359 -3.082857 -5.711994 -1.158637 -2.441967 7.148174 -2.331534 1.724453 -14.438346 2.454763 +5.285579 3.189608 8.016954 -7.425160 -4.637240 1.062348 -0.252258 -3.015474 2.333555 15.833921 4.319134 -6.781596 -11.630068 10.263666 -5.066594 -9.882610 4.770091 -0.757689 2.715092 -6.506830 0.701805 3.108894 1.570628 -5.032714 4.950391 -3.701027 -2.327094 6.245235 8.694990 -1.286561 -4.843474 0.917723 2.818868 13.710022 -4.179602 -2.026366 -0.291829 15.088881 -8.058490 9.653616 -17.193728 -14.368509 14.776170 2.550734 1.338573 -11.925049 -2.387633 5.971704 -9.345192 -5.876654 1.462920 -1.731062 1.917430 -9.422876 -1.199345 13.823213 -24.222811 8.116568 0.231183 -4.473245 -6.198357 1.412639 5.963725 2.531926 -0.136646 -8.498346 2.133394 2.612933 -11.423524 3.522372 -5.593776 -10.774917 10.174713 2.097270 -5.615773 5.872374 3.984292 -8.711715 8.386713 -12.117273 -6.800405 -4.076215 5.097854 -1.882617 7.439138 5.325117 8.510804 -18.908763 1.803300 -14.263096 13.727927 -10.981110 11.675775 11.800430 -8.338788 6.934826 5.364895 1.022247 7.285060 0.677134 16.317354 6.193890 9.438139 -0.763486 5.143247 8.064602 -9.191607 -7.164469 -7.922686 -10.158946 -1.664805 -2.241242 -15.917683 0.087011 -10.336129 3.176377 9.256278 -6.086515 -1.604036 10.115087 -19.962769 -7.349067 3.967102 -2.057358 7.954786 11.710773 0.174958 0.245906 0.980200 15.290392 -3.414899 -1.755678 1.395396 5.678606 -2.720354 -14.345538 -7.987358 0.382606 1.809209 -11.455745 -12.840590 -17.843969 -1.467007 3.358192 -2.091623 11.107662 23.319326 -1.022874 -11.616373 9.377292 -4.061770 1.648329 17.040916 2.215101 21.444623 -15.245590 5.237983 -4.056145 4.718182 6.875776 11.821392 -0.954972 -4.700078 4.745139 3.340202 -4.506556 0.773123 -4.073468 1.854710 -5.088050 1.507229 -5.977129 -5.023289 11.211935 -6.358744 14.199133 -4.998710 19.476622 -9.443411 -16.619347 7.213986 -12.502253 -4.000026 -3.788993 -4.239364 0.220793 8.202008 -13.113511 -7.139613 -8.357035 -2.584093 -0.150708 9.249425 -5.362096 3.123124 -1.281615 -4.032112 13.205981 5.316863 -2.323210 3.420307 -15.661252 -0.684841 7.687295 -1.889127 -19.383129 2.554096 -10.576269 1.060158 7.159965 -3.054354 8.097432 -5.088170 -8.317446 1.311387 -5.341920 2.447615 -7.726576 -9.549971 2.939134 -4.096609 2.653760 4.640099 15.259953 14.283276 7.988165 -0.276210 0.323454 3.892873 -7.817028 -1.272905 3.212356 0.890588 3.880955 4.665483 7.507234 1.377162 3.411221 9.820528 4.157402 -3.540627 12.946365 2.074566 13.278619 -7.255437 1.031086 1.781191 -8.274454 8.623685 17.306330 -5.988766 -4.278881 7.231201 3.454250 -0.901254 -10.131545 -2.229140 -5.410425 -5.660793 10.108091 6.224398 -2.863039 -4.538639 15.247011 4.907254 -21.157855 15.160242 -1.146872 1.437157 6.368109 -4.803406 -1.279734 7.312772 -6.654910 2.055844 4.458373 10.748817 -13.343006 -1.612449 -0.728718 13.358821 4.220430 1.054525 -23.567223 0.372530 6.503502 11.855634 7.856100 13.496535 -7.512606 -6.211272 -2.665040 -5.729325 -5.778159 -3.700762 4.597946 -6.325612 0.877728 -10.841618 0.523870 +4.098650 1.757669 5.072677 -5.588418 -2.384347 2.087285 3.224188 -4.060921 1.699118 11.537279 3.279730 -2.781641 -7.003632 6.310673 -2.339905 -5.969730 3.964983 -1.768232 0.279474 -2.570463 -1.192417 2.322295 -0.851410 -4.507526 3.818808 -3.010575 1.155795 5.569670 1.530196 0.418530 -4.894592 -0.872186 0.527698 11.576507 -0.393614 0.660169 -0.062941 11.860235 -8.302061 10.146047 -11.580302 -11.186997 10.995972 1.293720 0.071538 -6.494072 0.213294 4.190446 -3.956847 -5.908215 2.460129 -3.308002 2.747728 -6.180835 0.528451 10.150000 -14.306322 2.764332 0.667773 -3.580751 -6.585925 -2.437750 4.309041 2.099396 -4.677289 -7.080804 2.986610 1.960731 -6.973369 2.638559 -6.276923 -11.011984 8.576624 2.840498 -4.989755 2.561311 0.758834 -8.811918 5.364670 -4.502177 -5.591042 -3.282774 3.628672 -2.180166 5.858419 3.564254 7.453464 -15.491893 0.357187 -12.196134 8.813852 -7.406818 10.257500 9.165919 -5.165862 4.891812 3.446822 5.700202 2.041497 -1.012214 10.791214 4.006282 6.032494 -1.635412 5.557681 6.118243 -8.425370 -8.116553 -6.164823 -6.458066 0.601155 -2.014270 -12.069228 -0.072741 -8.761912 2.081821 4.362585 -2.729021 -2.625999 9.445795 -16.482134 -3.901250 2.698317 -1.904702 8.536930 8.189628 0.268582 1.744919 1.268177 10.146778 -1.960347 -0.909908 -3.707312 4.910031 -3.618296 -5.672003 -5.031281 0.014493 3.872125 -8.631044 -11.502153 -13.465440 -3.289502 5.679770 -2.123454 8.527014 16.827855 -2.611167 -8.238649 6.535526 -3.885464 1.449187 10.398258 2.036362 13.999386 -12.519257 6.489701 -3.095745 4.868355 3.676134 11.420329 -1.969216 -5.579075 4.104472 0.657394 -2.648369 5.899313 -1.619524 0.531822 -4.108659 0.258296 -3.828436 -4.238240 10.782721 -8.225579 10.168006 -4.734261 14.942671 -9.909154 -9.249725 4.390151 -8.630410 -2.665518 -7.560624 -3.266384 0.372574 8.037648 -9.628459 -6.149126 -4.425838 -1.939584 0.634516 7.955545 -4.896133 -0.188627 -2.692994 -3.170557 10.620145 5.322480 -1.536155 0.384911 -9.728589 1.300741 5.400459 -2.074183 -11.546995 0.110536 -7.137687 -1.293057 3.302315 -0.816511 5.820275 -5.106168 -5.257099 1.923092 -2.740162 1.216578 -3.936106 -11.412351 2.946396 -1.411637 0.061842 3.661399 11.165509 9.988930 6.668155 1.168731 -2.566627 2.392809 -5.704096 -5.954566 3.744463 1.470584 4.760526 3.978020 7.987140 1.938988 1.996614 6.087731 2.453008 0.835452 9.390614 3.566558 10.903122 -4.217380 0.515550 2.295190 -5.952644 6.451629 11.611047 -5.202426 -2.423898 5.020458 2.950151 -3.216796 -4.786924 -1.659692 -4.538658 -3.360474 5.877020 4.022957 -2.407300 -4.458867 15.507451 1.911018 -16.638970 8.064410 -0.338340 2.944694 6.870933 -4.399630 1.794142 5.159649 -3.044749 5.737266 3.035143 8.269939 -8.742503 -1.138419 -0.850218 7.172024 4.449119 -1.480822 -16.254021 0.658424 3.022991 12.030984 7.024246 10.380836 -5.146180 1.274847 -2.804477 -5.384279 -1.458670 -2.187488 6.330589 -3.466705 0.619516 -13.932336 1.080663 +2.428334 1.222511 2.955126 -3.645291 -1.962190 0.791577 1.463847 -2.858325 0.643308 6.459811 1.983143 -2.452977 -2.672856 4.844098 -2.021362 -3.194833 1.680923 -0.318960 -0.369965 -1.579404 -0.299615 1.726327 -0.567009 -2.101205 1.686923 -1.376122 0.993536 2.546790 0.307091 -0.383018 -2.619719 -0.703742 0.700610 6.544220 -0.120220 0.548118 -0.911058 6.430735 -3.956661 6.145890 -7.877770 -5.617512 5.600835 0.786847 0.636390 -5.853965 -1.669893 2.643721 -0.848319 -3.518681 0.742084 -1.612370 0.832773 -3.638615 0.222670 5.434492 -7.606695 1.602384 1.084743 -2.583558 -3.834722 -0.658430 3.411254 1.287652 -3.370470 -4.159284 1.478095 1.531617 -3.575022 1.863072 -3.378946 -6.969418 4.156841 1.373519 -3.148331 1.390547 0.015289 -5.106232 3.446635 -3.009778 -3.074687 -1.947854 2.200328 -1.667312 2.580474 1.929499 4.583339 -8.927573 1.299298 -7.083059 4.601910 -4.339855 5.421705 5.088320 -2.679358 2.597083 1.803509 3.018766 2.396362 0.455424 5.623243 2.828204 3.358610 -1.059010 3.673803 3.634762 -4.210879 -4.643769 -3.328069 -4.662193 0.648672 -1.366386 -7.509486 0.415575 -4.460533 0.924986 1.479384 -1.315537 -0.554256 5.619184 -9.338309 -2.498692 2.154356 -1.112875 3.817227 5.253795 0.056345 1.029952 -0.424693 5.225412 -1.128609 -0.121626 -1.228966 2.818306 -3.229993 -4.023222 -3.128927 0.246234 1.905092 -4.736624 -6.145480 -8.093814 -1.934181 3.155917 -1.717631 5.136400 9.500099 -1.937352 -5.678456 3.621672 -0.201642 -0.460705 5.829897 1.054631 9.096838 -7.115113 3.293950 -1.836756 2.254134 2.409900 5.668904 -1.159505 -3.263635 2.829934 -0.672576 -4.710712 5.110637 -1.207129 0.210734 -1.052636 0.849413 -1.753226 -2.262084 5.844508 -4.509905 6.491561 -3.308014 8.178648 -5.607707 -4.796329 2.204948 -6.100865 -1.747116 -3.333975 -1.274102 -0.473616 5.772372 -5.155122 -3.138533 -2.021719 -2.643474 0.130009 4.727039 -3.297028 0.083296 -1.292325 -1.727368 6.319321 3.306936 -0.917099 0.672596 -5.380237 1.022824 3.751676 -0.274945 -7.118222 -0.243986 -4.762972 -0.823691 0.311855 -0.696868 3.361666 -3.255075 -2.621647 0.802190 -2.032373 0.678432 -2.540045 -5.665821 1.671733 -2.303769 1.468376 1.336718 6.646172 5.859788 4.349816 0.966404 -1.550883 1.339978 -4.013116 -3.184391 2.206812 1.058262 1.654765 2.460917 4.225552 1.077314 1.372616 4.013279 0.978758 0.768634 5.610661 1.464705 6.447050 -2.552847 0.668421 0.897943 -3.149485 3.767136 7.776927 -1.886272 -1.414791 2.771514 1.110303 -2.522124 -3.668941 -1.086453 -1.981056 -2.902883 3.714858 2.883417 -1.423402 -2.432787 8.618620 1.277285 -9.330489 4.726620 -0.323087 1.402366 4.031689 -2.456504 1.523432 3.138277 -1.041201 2.222011 2.144209 4.771996 -5.574907 -1.685854 -0.448157 4.313367 3.443480 -0.277034 -10.043232 1.681160 2.483130 7.033077 2.355551 6.308023 -3.543075 0.792406 -0.634443 -2.123427 -1.212624 -0.943896 3.432579 -1.797141 -0.399104 -7.619721 0.348860 +7.314478 2.858495 6.852054 -6.801144 -3.784696 3.516860 1.623721 -7.444043 1.301049 17.045960 5.187054 -5.066923 -7.603029 10.165092 -4.907848 -8.915289 4.467696 0.806249 0.499354 -4.610710 -1.334398 3.364868 -1.696295 -6.591185 4.889706 -4.079775 2.153918 6.757741 1.810871 2.059943 -7.399083 -1.282663 1.353738 16.915345 0.335701 0.769285 -0.266782 16.164941 -11.909845 13.378409 -18.085190 -16.473828 15.356229 2.672272 1.186002 -9.594836 -2.262956 5.885330 -6.727656 -7.609301 2.938978 -5.596768 3.376691 -8.327013 0.724013 14.437502 -21.678732 5.093407 1.380245 -5.783547 -10.215809 -2.553973 7.918417 2.457768 -5.685835 -10.401081 3.940419 5.267599 -8.303645 4.100165 -9.596283 -17.578170 11.617673 3.070286 -7.619437 2.855500 0.125027 -12.221621 7.838570 -6.724214 -8.193423 -5.064260 5.606118 -2.808314 7.088215 6.939923 11.489137 -22.582846 2.381269 -18.294781 13.002453 -9.784274 15.133588 12.806316 -9.515182 5.863689 5.792618 8.558758 5.090532 -0.384678 15.343393 5.846650 6.721998 -3.076811 7.430270 9.523920 -11.583718 -10.914569 -8.586768 -10.389177 0.888047 -3.297120 -18.901028 -0.146802 -13.206446 3.941245 4.507545 -4.803084 -2.358912 13.261199 -24.854336 -6.696318 3.566481 -2.487560 12.510537 11.591998 0.609183 3.343606 0.683229 14.168430 -3.250302 -3.099546 -4.727913 6.965331 -7.101234 -11.407522 -9.342308 1.448987 6.024682 -13.264038 -16.297008 -20.694569 -3.975347 8.192656 -3.375738 12.506712 24.045807 -4.395076 -13.051878 9.119383 -4.450228 0.167834 17.573748 2.910358 21.980045 -18.752010 9.667743 -3.870532 6.328730 5.214928 11.134975 -3.433612 -7.602498 6.719279 0.944551 -5.102488 9.982773 -2.979325 0.247637 -6.173686 1.876259 -4.033425 -3.679402 15.135267 -11.539135 13.766291 -7.391214 21.063483 -14.948820 -13.737496 5.768777 -16.473307 -5.627067 -8.133060 -4.694870 -1.170644 13.362297 -14.738032 -8.262413 -5.801648 -3.591579 0.712514 11.894232 -5.128913 -0.001970 -3.188366 -4.861201 14.974666 8.009219 -1.757551 1.578030 -13.356807 1.046906 9.734123 -3.081486 -18.872693 -0.092104 -12.153714 -1.316771 3.099971 -1.602457 8.797943 -8.361612 -7.032897 1.686287 -4.524009 3.407180 -5.627099 -12.515237 4.975465 -5.068006 1.102518 5.072427 16.815620 14.312761 10.790268 2.249419 -3.583863 4.619909 -10.114805 -6.234311 6.138647 3.334379 6.747781 5.869244 10.049490 2.076132 3.187336 7.510850 2.879885 2.179212 14.021315 5.493861 16.237320 -6.501694 2.906778 2.105395 -8.580290 9.284921 17.964961 -8.019773 -3.114599 6.299134 2.530705 -4.215982 -8.083215 -2.070401 -5.645092 -7.498304 7.758266 6.807529 -2.905961 -7.426475 22.347456 3.535069 -23.423330 13.221955 -0.383743 3.081907 9.866465 -6.859461 2.263858 6.966618 -3.167543 6.916828 5.410253 13.135180 -13.654913 -1.384831 -1.703612 11.752364 8.136156 -1.729023 -23.123649 4.138846 6.307646 16.884770 8.566527 14.374272 -8.475063 0.998271 -4.321353 -7.295285 -2.216084 -2.895355 9.014377 -3.575801 0.974756 -18.545114 0.482121 +2.903531 1.360617 3.460481 -4.118988 -0.669555 0.856038 3.245698 -2.979979 0.988942 7.959650 2.170861 -2.341413 -4.866983 4.297302 -1.913854 -3.969016 3.500999 -0.041052 -0.182888 -1.879334 -0.902465 1.430216 -0.474795 -3.406587 3.064436 -1.844717 1.310884 3.761833 0.817727 -0.532713 -3.151158 -0.478352 0.960961 8.263966 -0.602447 1.005900 -1.173793 7.303991 -4.527464 7.401779 -9.468872 -6.412291 7.804222 0.969984 0.353042 -7.110187 -0.518334 3.086218 -1.876338 -4.753318 0.351518 -2.621334 1.574343 -5.408970 -0.381670 8.242344 -9.418714 1.401326 1.142986 -3.141558 -5.216587 -0.878358 4.466210 0.788183 -3.440455 -5.374726 1.716290 0.724593 -5.258538 2.645273 -5.152648 -8.079788 4.837884 1.740211 -3.672761 2.043619 -0.879202 -6.029682 3.294049 -2.882501 -2.699845 -2.984306 3.392905 -1.092257 2.962285 2.336331 5.087379 -10.855723 -0.046933 -8.120907 5.916887 -5.221891 7.795551 6.002581 -2.699431 3.816513 1.737809 2.043007 0.725135 0.126054 7.182277 2.582156 4.383216 -2.219532 4.223161 3.887496 -5.542514 -6.371092 -3.481140 -4.411176 0.568832 -0.944646 -8.272820 -0.031879 -7.406330 1.622221 2.882628 -1.699477 -1.149142 6.317219 -10.798789 -2.847064 2.457621 -1.548277 5.788888 6.627055 0.997358 0.760667 0.402227 6.357726 -0.712217 -0.640744 -2.552407 3.616452 -2.322266 -5.245469 -2.387908 -0.953883 2.253812 -5.855084 -7.984385 -9.331053 -2.780723 3.449351 -1.783566 5.234783 11.184517 -1.561601 -6.280724 3.715414 -1.950292 0.922489 6.861187 1.552080 11.038977 -9.890921 5.432440 -1.744355 4.308010 3.795623 8.036277 -2.513818 -4.644636 3.046762 -0.568390 -4.132114 4.888142 -1.157101 1.540418 -0.404962 0.212874 -1.806954 -3.281497 7.053428 -5.526620 8.425942 -4.342886 10.315108 -7.459598 -6.361162 2.786020 -5.841089 -2.222123 -4.165298 -1.790217 -0.436018 6.325688 -6.430189 -4.420448 -2.731873 -1.987778 1.182149 6.661515 -4.034192 -0.621005 -2.693448 -3.311924 7.308063 2.418478 -2.210108 0.854989 -6.586896 0.871029 4.080930 -0.134158 -8.519934 0.017412 -5.461277 -1.313098 1.462211 -0.618036 4.305368 -3.309383 -3.320389 2.032955 -2.210754 0.309966 -4.071040 -7.094089 1.970340 -2.106213 -0.462318 1.698536 8.786808 6.946589 4.199948 -0.653361 -2.395509 1.740286 -5.073409 -5.076783 2.536860 0.320608 3.116390 2.766985 3.969460 0.918697 1.383147 4.316289 0.268756 0.837432 6.695642 2.826814 6.838956 -3.150895 0.405007 2.416954 -5.152912 4.310200 7.762313 -2.785827 -2.553149 3.608615 1.779969 -2.729812 -4.587981 -1.781244 -2.449367 -3.947574 5.330477 3.192568 -1.900749 -3.263094 11.400421 1.554861 -11.847443 6.230253 -0.486319 1.515356 4.468674 -3.184876 1.854169 4.252642 -0.713165 1.880152 1.443502 6.280436 -6.633756 -1.361200 -0.654147 5.146635 3.583799 -1.911189 -12.789116 0.180505 2.123142 9.120165 4.299120 7.950674 -3.164820 2.019995 -2.208552 -2.674129 -1.070237 -2.067844 4.186968 -1.694986 -1.230107 -10.390609 2.586808 +3.540972 1.160263 2.198562 -4.143638 -0.251617 0.897376 3.147257 -2.675419 -0.249851 8.405869 2.038193 -2.094724 -5.512685 4.068394 -0.693308 -5.528745 3.684484 0.120611 -0.072413 -2.410086 -1.442904 1.446411 -0.414495 -4.133189 3.344817 -2.589693 0.072126 4.017655 0.583402 0.500357 -2.908503 -0.536712 0.773488 8.596057 -0.617333 0.304025 -1.220617 8.159744 -6.455351 7.237393 -8.133740 -7.666153 8.798701 1.063888 -0.036263 -5.141785 -0.717026 2.555824 -2.051740 -4.225461 0.819459 -2.447402 1.604067 -5.241150 0.054032 8.930854 -9.791964 1.508185 0.872670 -3.453720 -5.383194 -1.200104 3.448091 0.251569 -2.852819 -5.663686 1.772890 0.875937 -4.072206 2.164157 -6.027172 -8.405000 4.680967 3.221495 -2.587475 2.183207 -0.750865 -5.685983 3.208144 -2.163040 -3.324961 -3.237290 3.237320 -0.046606 3.168566 3.380238 5.803195 -11.363313 0.048714 -8.701634 6.282771 -5.216040 8.242496 6.798417 -2.011496 4.143900 2.355893 1.933008 0.184767 -1.337569 7.850688 1.974169 3.907451 -1.504336 3.662789 4.749549 -6.384751 -6.563086 -3.610350 -3.594992 0.736066 -1.631497 -7.750724 0.661376 -7.733640 0.178019 3.443715 -2.111521 -1.755227 6.020040 -10.663887 -3.720972 2.365764 -1.894276 6.663602 5.892592 1.050035 0.455123 -0.028306 6.663809 -0.392969 -0.186942 -3.089394 4.064284 -2.325923 -5.472691 -2.529826 -0.491451 2.632329 -7.399300 -8.243424 -8.900346 -2.186628 4.068011 -2.120128 6.398111 12.153423 -2.297654 -5.704987 4.429560 -2.369416 1.923284 6.970626 1.765199 11.149295 -9.868454 5.433944 -1.187443 4.207168 3.841271 7.201312 -2.110678 -4.648498 3.512913 0.185050 -0.911043 3.948724 -2.097633 1.013944 -1.139057 0.538823 -1.364589 -2.447456 7.438142 -5.525835 8.050321 -3.234470 10.243269 -7.055712 -6.291730 3.355494 -6.946560 -3.668350 -5.471244 -1.735318 -0.852116 5.361025 -6.495118 -4.623442 -3.707200 -1.693115 0.616312 6.463133 -3.845202 -0.414066 -2.389858 -2.828337 7.114073 3.409300 -1.272292 0.574514 -7.281904 1.154987 4.021216 -1.329105 -8.946490 0.285085 -4.200870 -1.049805 2.126618 -0.690856 4.423793 -3.281186 -3.269517 1.971829 -1.577471 0.574782 -3.651585 -5.957172 2.346670 -1.029313 -0.745720 2.231392 9.098266 7.114032 4.354053 -0.250375 -2.201835 2.125211 -4.188457 -5.411534 2.987789 -0.221525 4.149114 3.144573 3.845929 0.482310 1.605770 5.155706 0.684871 0.974130 6.273972 3.023891 7.651547 -1.312869 -0.223903 2.583894 -5.766178 4.502387 8.011904 -3.127312 -2.691872 4.269470 0.897146 -2.809552 -3.901274 -1.134712 -2.756055 -4.724377 5.400405 3.244465 -2.142949 -3.763926 11.811458 1.444378 -12.574618 6.537608 0.629636 1.871934 4.786874 -3.295345 2.115289 4.346761 -1.132016 2.359052 2.049299 6.803502 -7.002339 0.672155 -0.638606 4.891445 3.618016 -2.037487 -12.206004 0.363888 3.070382 9.151381 4.745607 8.036633 -3.024470 1.771620 -2.516558 -2.321517 -0.713813 -2.178153 4.085341 -2.620951 0.317343 -9.611722 2.548655 +7.580020 1.180532 7.640279 -6.089068 -3.304509 4.067892 1.939726 -9.127717 1.258636 17.619008 5.662582 -5.890845 -4.714684 9.979271 -4.729249 -6.490995 6.636290 6.978624 1.166186 -3.665023 -2.849656 1.930310 -2.933968 -5.160232 3.912233 -3.574097 4.313903 5.875479 -0.404009 3.547683 -8.692593 -1.976894 0.078273 17.802278 1.983817 0.616047 -1.549478 16.081941 -9.830132 16.425410 -17.463379 -11.782486 12.587582 2.837311 3.733089 -9.452145 -4.416112 6.882414 -3.578802 -10.504353 2.965466 -7.005140 4.661426 -7.942465 0.488732 13.966250 -17.439239 0.473594 3.557972 -7.043858 -11.090850 -1.532963 10.050280 3.577175 -10.763934 -10.751384 5.013700 6.144310 -6.088540 4.131038 -12.442155 -21.514688 7.708296 2.767583 -9.616709 1.745820 0.216335 -12.645122 7.686073 -1.828795 -9.342934 -5.368497 3.880852 -7.356643 7.052707 5.786100 13.974184 -23.329332 5.824987 -20.394321 11.897119 -10.432756 16.060845 14.307565 -7.934164 5.066132 6.544040 11.316475 3.931261 1.481246 14.492585 6.621014 2.984780 -4.765004 10.499837 8.815859 -11.557327 -12.912856 -8.731113 -10.676125 1.667747 -3.422659 -16.500870 0.671106 -14.910898 6.171493 1.424911 -1.386459 -2.416949 14.466920 -23.641338 -5.173586 4.342998 -3.328055 12.916378 13.845795 0.310473 4.569475 -0.439974 13.615751 -4.230042 -4.175931 -5.217862 7.712660 -8.159964 -7.866090 -9.124048 1.763556 8.245985 -12.700174 -17.421107 -21.293016 -5.832082 9.052441 -3.929558 14.040752 24.116999 -5.544937 -11.238794 7.812909 -5.275531 -1.044498 17.656166 3.625205 24.402172 -20.729498 10.919915 -5.452132 6.969257 4.370155 10.272359 -4.274295 -7.617353 8.787972 -0.937660 -6.733724 18.182566 -3.095116 0.105977 -2.816861 3.408272 -0.178399 -4.451772 16.206587 -15.238959 12.589508 -7.361413 22.190643 -14.331717 -11.104988 5.049945 -14.199124 -4.735095 -7.135888 -2.661590 -3.083349 16.726769 -13.195875 -9.102433 -3.774241 -6.053804 2.507248 12.814562 -1.777784 -0.937800 -2.702197 -6.354105 15.947758 8.154984 -0.676814 0.818916 -12.975996 1.618417 8.792148 -4.430836 -15.017156 -1.341696 -13.790460 -2.063264 -2.449774 -0.735323 9.630868 -12.087957 -7.366657 0.629962 -3.629980 3.294323 -4.951742 -15.159432 5.967549 -5.228646 1.197425 5.643883 17.441828 14.454911 13.075172 3.694569 -5.372640 3.760387 -9.525614 -10.191953 7.081065 3.314763 8.421152 5.208262 7.484030 1.751226 3.544113 4.668318 -2.324944 6.938340 14.367137 6.014960 15.659638 -5.094858 4.125578 3.024872 -10.020277 9.741787 17.912718 -6.693321 -2.593382 5.506729 1.327615 -7.993068 -9.986459 -1.481505 -4.097457 -8.499395 5.223265 7.911031 -1.815236 -9.482536 23.252240 3.055184 -24.818172 11.771675 -1.254994 2.820833 14.680533 -5.767637 6.388242 4.997877 0.448023 7.741483 5.724969 13.260827 -14.640787 -0.832457 -1.562796 10.195786 9.144378 -3.075589 -25.840321 5.868980 5.029526 17.468854 7.676166 14.677797 -9.877880 5.172361 -2.788197 -9.311227 -1.934849 -3.805225 11.216706 -1.369889 -0.729776 -21.776061 1.530743 +3.328814 1.869679 2.838626 -4.231304 -1.367799 0.845216 2.363115 -3.024720 0.454538 6.829288 2.514256 -2.718738 -3.902087 5.051085 -1.999442 -4.221908 2.826013 -1.172228 -0.474671 -1.972813 -0.458336 1.628879 -0.425706 -3.270926 2.247703 -1.553061 0.755694 3.057401 0.764152 -0.927315 -3.486058 -0.439159 1.283633 7.625889 -0.255359 0.239848 -1.077052 7.153430 -4.644213 6.455508 -9.020512 -6.329404 7.153459 0.944746 0.166158 -7.400713 -1.632666 2.783749 -1.287484 -3.602761 0.762981 -2.238398 0.808986 -4.563946 -0.147694 7.736909 -9.222578 2.506751 1.185991 -2.367158 -4.164435 -1.005446 3.995407 0.772375 -2.375966 -4.843229 1.898887 1.175362 -4.548194 2.444264 -4.836794 -7.830174 4.981727 1.958923 -3.015196 1.541188 -0.821049 -5.912799 3.462332 -3.850238 -2.967154 -2.351521 3.126406 0.230024 2.755889 2.320131 4.572036 -10.386592 -0.011309 -8.064582 5.428868 -5.115629 6.843479 5.618723 -2.868165 2.985145 1.605410 1.523229 1.935958 0.379903 6.821399 2.619074 4.192098 -2.060129 3.907107 4.228584 -4.605015 -5.308151 -2.958571 -4.625205 0.349536 -0.568598 -8.582288 0.544651 -6.422900 0.376150 2.132979 -1.919564 -0.604600 5.427863 -9.614151 -3.899836 2.232110 -1.388319 5.343948 6.335299 0.507474 1.156361 -0.579536 6.051162 -0.262420 0.148853 -2.059988 3.222237 -2.923978 -7.058932 -3.474332 -0.207581 2.358911 -6.026853 -7.418819 -9.030097 -1.801755 2.744148 -2.028601 5.131549 10.643852 -1.818725 -6.317891 4.106323 0.118213 0.371431 7.055138 0.957790 11.080969 -8.928880 4.889620 -0.858466 3.441807 2.818953 5.814382 -2.122938 -3.973862 2.664683 -0.564526 -4.973461 4.357368 -1.250209 0.800768 0.029736 0.290366 -1.743704 -3.068830 6.665398 -3.530309 7.633987 -3.362749 9.477716 -6.821796 -6.160827 2.934707 -5.833242 -2.297630 -3.658850 -1.646267 -0.322320 6.252780 -5.863472 -3.833003 -2.544890 -2.156865 0.358742 5.705685 -3.626980 -0.152701 -1.969965 -2.355903 5.968797 3.419017 -1.704607 1.538934 -6.399610 0.880784 4.609868 0.111254 -8.893883 0.114950 -5.283643 -0.936144 1.131592 -0.932678 3.830894 -2.902064 -3.414949 1.764988 -2.301664 0.974106 -3.254487 -5.194400 1.914269 -2.646114 0.341328 1.110772 8.219602 6.307798 4.344281 0.250051 -2.475551 1.938139 -4.575041 -3.756519 2.082188 0.501283 2.330467 2.766147 3.807570 0.728013 1.344177 4.841267 0.760638 0.096658 6.110945 2.509861 6.972782 -2.607333 0.679707 1.442490 -4.943309 4.446836 8.677243 -2.261300 -2.673429 3.298887 1.210093 -2.355764 -4.539805 -1.691198 -2.275941 -4.495646 5.043097 2.998963 -1.750041 -3.048137 10.453131 1.496831 -10.867947 6.019274 -0.106624 1.284479 4.139910 -3.234266 1.282185 4.088510 -1.358525 1.724599 1.942150 6.242516 -5.837953 -1.791428 -0.765315 5.083024 3.047036 -1.221620 -11.348475 1.486621 3.555414 8.431638 3.751428 7.085320 -3.481032 1.031766 -1.793306 -1.674104 -1.097069 -1.453134 4.111670 -2.541121 -0.873561 -8.286949 1.702040 +61.438960 25.672878 73.183615 -118.194448 -164.033578 53.124407 -69.990091 -80.030734 21.617710 37.037449 86.530395 -88.973183 -58.147958 173.612925 -49.910136 -126.695133 -15.404967 -66.137339 -6.488765 -25.357736 9.414524 60.168039 -26.114648 24.031130 -15.673754 -15.622351 -26.125400 51.325521 115.612749 -57.692801 -126.850569 -17.120893 -16.062687 156.932139 30.013305 -41.967060 51.601511 250.503290 -41.741294 105.888753 -145.335548 -114.849548 69.611033 16.772497 -27.843018 -117.010505 -116.699380 82.029244 -109.626376 -12.910575 129.490907 -14.624115 -7.176161 4.850040 63.110152 101.897161 -245.701826 141.324744 25.977966 27.085059 12.785873 -31.158541 15.551323 53.101792 -34.695828 -83.646192 74.360083 87.375895 -83.049922 -3.011684 -35.281697 -190.961277 220.889022 56.345717 -101.880472 12.301667 92.684035 -143.222227 131.636140 -122.851356 -176.177206 12.140323 0.786820 -55.828247 169.905331 -8.032689 71.443905 -232.575408 61.180297 -240.198012 87.160319 -155.146966 81.002907 163.484290 -164.096746 9.706837 74.730465 83.954052 155.979049 20.405360 169.924790 74.228872 38.485574 23.585324 94.201392 58.803029 -50.934847 -26.471555 -97.484212 -181.170716 -26.606140 -35.545631 -278.340559 37.551107 -28.938581 49.489838 1.858234 5.491376 -7.111128 99.772293 -176.864768 -82.550267 20.270567 -22.121882 89.815582 183.342089 -71.883026 62.080104 -63.407675 189.338641 -64.458819 43.527869 -21.703693 42.798080 -52.817293 -139.969561 -234.081404 62.829271 96.309594 -104.221787 -167.242249 -175.637372 -12.583645 9.192743 -51.545068 196.431977 290.501018 -89.237215 -140.419281 182.719491 49.318323 17.270829 215.845428 -5.416493 241.273218 -105.823042 7.413513 -75.480109 -43.709221 -60.891563 -40.445310 44.266990 -8.665149 49.451338 23.308504 -110.323732 165.314604 -32.887658 -99.350682 -33.285567 23.269443 -67.533792 -115.147371 187.661542 7.287086 111.586590 52.480486 223.798459 -77.867028 -161.739686 89.955234 -52.807044 14.241403 -72.796344 -63.239688 19.578886 126.788618 -120.722254 -60.531516 -40.997906 -55.040367 -76.975811 33.382270 119.806066 51.075135 46.924272 64.161656 112.682804 233.906425 46.946826 42.317809 -185.505075 51.047119 106.092854 -75.689678 -145.129567 19.609094 -120.205679 9.693181 41.377831 -37.398349 57.538827 -105.251880 -116.855591 -55.489695 -35.933531 113.169005 50.839206 -184.566316 44.920339 -58.059397 78.166623 76.293259 108.011618 175.783718 164.150148 158.879047 -19.030260 41.446810 -6.298552 32.152829 -3.689005 54.474675 68.681159 68.661059 144.834306 62.659117 30.084830 113.469424 97.979685 11.180262 141.230177 43.520259 254.657415 -21.981669 10.219788 -66.331143 -47.723340 129.646829 319.800892 -99.419560 46.689846 69.343485 87.888459 -24.824997 -182.436242 2.278628 -75.025580 -36.060310 52.846117 16.678584 -11.428187 -50.769006 167.488983 12.182672 -211.319449 99.134349 -0.476200 39.210842 104.582189 -19.721176 -8.243022 41.278403 -172.742472 130.222073 122.860688 105.379685 -102.555908 -55.521822 -14.958611 105.887907 -13.922562 93.682103 -141.313948 97.493773 118.325865 152.823830 90.530982 67.877444 -130.812498 -113.099623 63.897864 -91.030114 -53.321785 20.403859 94.606814 -130.464503 41.349956 -82.968789 -152.542959 +5.693210 0.858594 8.492456 -5.622094 -1.530045 2.867866 3.515003 -6.453669 1.795922 18.640341 3.497659 -3.863370 -7.189045 8.646518 -3.575531 -7.711589 5.514967 3.776315 0.908584 -5.092400 -2.048162 2.315146 -1.488250 -6.156180 5.443151 -5.250094 3.883922 7.674916 -1.862437 3.956628 -4.858674 -1.854537 0.338341 16.507204 -0.523943 3.197153 -1.645597 15.374257 -12.329706 16.429587 -16.786649 -16.254224 14.963658 2.302618 2.344776 -6.556128 -0.845924 5.680486 -5.867289 -9.401687 1.889428 -4.748966 4.226975 -9.365099 0.797337 12.702672 -18.664538 0.382464 0.958744 -8.630210 -12.424907 -2.147309 7.594346 2.822604 -8.939524 -9.852536 3.874526 4.283206 -7.421501 4.881792 -9.192304 -16.845294 7.868910 2.937797 -6.723559 3.760936 1.676850 -9.802770 7.429028 -2.942629 -7.491668 -6.544809 4.796722 -6.981676 6.399431 7.279027 13.286797 -21.683664 4.297858 -16.770206 13.499255 -9.265907 14.806215 12.837071 -6.499942 7.887293 6.226607 10.893147 1.608668 -1.934596 13.804141 5.970335 5.963105 -2.127350 9.103616 8.715213 -13.212313 -13.381220 -10.220873 -9.249855 2.474567 -5.963649 -14.323279 -0.655041 -12.664924 4.216195 4.745856 -3.280107 -3.394490 13.628502 -25.756763 -2.791152 4.922076 -2.888930 11.176675 9.590822 0.613180 2.564240 2.156769 13.120073 -4.563305 -3.639617 -4.380598 7.445669 -6.423880 -4.482613 -5.961845 0.440552 5.359159 -11.955366 -15.514425 -19.980229 -5.708829 11.761838 -2.653616 13.772571 23.483866 -3.877684 -11.552535 7.113159 -6.529309 0.294312 14.302782 4.525021 19.396803 -18.241530 8.884759 -5.989868 7.175265 7.643595 15.129217 -2.869038 -7.870739 9.177533 0.514419 -2.113653 12.520100 -4.278675 1.381847 -7.343110 2.847254 -3.386109 -2.535182 14.732453 -15.399787 13.750481 -8.813800 20.323488 -14.353851 -11.273752 4.238668 -18.817689 -5.817530 -9.860581 -3.596925 -2.860451 13.266117 -14.179252 -8.986659 -7.113919 -5.355481 2.937716 11.787409 -7.470491 -0.423732 -4.007390 -5.677500 17.464080 6.288798 -0.833023 -1.012156 -13.154445 0.888722 7.844010 -2.649912 -15.222246 -0.162373 -10.314802 -2.001449 0.710479 -0.332728 8.685108 -9.801572 -5.586347 1.289203 -3.947094 0.270564 -6.565866 -16.152203 4.289209 -1.945483 1.228797 6.123413 15.844185 14.818634 9.876310 1.633939 -3.142894 3.352521 -9.787261 -9.690244 7.177936 2.759683 7.410235 4.960473 9.133709 2.043483 2.943050 6.698246 1.873385 3.697200 13.239870 4.819650 14.547876 -5.261251 2.663751 3.572308 -7.452088 8.167738 14.529858 -6.405065 -2.146267 6.981041 2.177921 -5.887514 -6.766788 -2.184286 -5.555553 -5.348603 7.277443 7.400069 -4.026711 -7.051759 21.503543 3.594341 -23.614658 11.038958 -0.605869 3.152864 11.438006 -6.475988 3.797014 6.644728 -1.285203 7.418917 3.773793 11.569786 -14.522829 1.549275 -1.165548 10.135836 10.551367 -2.544441 -24.367071 2.552408 3.235070 16.017306 7.369156 16.002270 -7.957863 3.915821 -4.419152 -9.242445 -2.229933 -2.579027 8.807019 -0.971532 0.977398 -21.518060 1.161018 +4.061081 1.138763 4.429950 -4.173631 -1.925770 1.850865 1.443749 -3.857935 0.819358 10.991838 2.521269 -2.356224 -3.971154 5.251812 -2.431719 -4.801193 2.822470 0.317388 0.507259 -3.130155 -0.603845 1.950894 -0.792569 -4.115228 2.861475 -3.030607 1.399856 4.062332 -0.836563 1.974285 -3.103785 -1.090299 0.528790 9.573148 -0.124270 0.999115 -1.085493 8.987313 -7.306929 8.169014 -10.374388 -10.501062 9.175575 1.358192 1.508118 -4.822977 -0.793788 3.105112 -2.289349 -4.981921 0.872266 -2.841852 2.467145 -5.297307 -0.090874 7.085922 -11.358857 0.981204 0.457470 -4.987494 -6.902680 -1.032415 4.504073 2.103346 -4.299950 -5.815787 2.216257 2.900894 -4.068345 2.532194 -4.874274 -9.572093 5.009993 2.127924 -3.343006 1.897321 0.626835 -6.597007 4.657075 -3.011020 -4.622688 -3.400304 2.659743 -3.162975 3.420852 4.074296 8.074052 -12.543793 2.678119 -10.069233 7.733313 -4.990745 8.193397 7.060159 -3.818694 4.112367 3.724823 6.280916 2.602466 -0.933257 8.483616 4.050140 4.457511 -0.993081 4.952610 5.767432 -7.049013 -6.758353 -5.561338 -5.751565 1.135009 -3.329437 -9.629376 0.193453 -6.746588 1.081768 2.695895 -2.852628 -1.432048 8.614305 -15.001100 -3.115092 2.726582 -1.465650 5.833607 5.185874 0.376777 1.156550 1.066140 7.726276 -2.425368 -1.691087 -1.719158 4.427902 -4.672700 -4.216289 -3.849443 1.027692 2.890415 -7.768283 -8.807355 -11.727587 -2.470497 6.450785 -1.852467 7.701484 13.857098 -2.466593 -7.546527 4.514228 -2.531578 -1.274882 8.793828 2.220731 11.522640 -10.203547 4.758721 -2.919511 3.636903 4.016429 8.565007 -1.545404 -4.245517 4.958612 0.113980 -2.397868 6.109887 -2.441754 0.691237 -3.838288 1.470392 -2.609046 -1.358224 7.851949 -7.617752 8.285592 -4.587300 11.460605 -8.171111 -6.926975 2.832772 -11.014352 -3.970105 -5.202281 -1.795064 -1.122189 7.393843 -8.033948 -4.797986 -4.127836 -3.288396 0.811034 6.967084 -5.096686 0.390380 -1.627846 -3.172728 9.252671 3.936552 -0.453230 -0.105090 -7.306299 0.777869 5.054963 -1.322102 -9.813637 -0.823247 -6.332397 -0.674328 1.016557 -0.437762 5.599829 -4.713593 -3.262864 1.067030 -2.303658 0.466262 -3.783756 -7.726817 2.557767 -1.625611 1.663720 2.470601 9.615658 8.209954 6.184263 0.762786 -1.716911 2.148631 -5.856661 -4.551135 3.556647 1.795837 3.139529 3.078679 6.179365 1.070501 2.315930 5.223875 2.200519 1.667380 7.851224 1.758173 8.697312 -3.726900 1.353318 1.681610 -4.208618 5.059144 9.456343 -3.017792 -1.714443 3.697335 0.781151 -3.414803 -3.471015 -0.712471 -3.025910 -3.144812 4.163136 5.060759 -1.748370 -4.247412 12.108506 2.618032 -13.809633 7.172170 -0.189947 2.029844 6.484026 -4.153531 2.026126 3.802642 -0.784131 4.296917 3.008376 6.643357 -8.629952 -0.288086 -0.425057 6.563104 5.328435 -0.900574 -13.476296 2.358863 2.679495 9.055514 3.850356 9.466920 -5.316156 1.332791 -2.268896 -4.474019 -1.576762 -1.050883 4.657939 -1.828585 0.956376 -11.372042 0.927776 +4.159602 2.676446 6.744679 -7.270546 -5.095226 2.514612 2.486692 -5.355287 1.426007 13.628415 4.267710 -4.551977 -8.313221 9.816342 -3.482744 -7.781061 3.218548 -2.203247 -0.089078 -4.201735 -1.340005 3.632592 -1.222488 -3.920515 3.903676 -3.669281 0.916165 6.227653 2.125694 -0.448453 -5.361896 -1.456802 0.635564 14.144821 -0.160944 0.900045 -0.259816 15.771257 -9.541587 12.913960 -14.996823 -14.101907 12.367035 1.636354 0.582697 -8.728163 -1.549918 5.863183 -5.594193 -6.124536 3.709186 -3.138550 2.150101 -6.588346 1.615017 11.260539 -18.182390 5.240211 1.190802 -4.966612 -7.460966 -2.510188 4.684915 2.574881 -5.295434 -8.278227 3.246010 3.495723 -8.196626 2.937219 -6.461967 -13.541927 10.057272 3.387785 -6.179948 3.253690 1.946425 -9.459953 7.441055 -7.270540 -8.236973 -3.704542 4.283179 -3.606733 7.490155 5.013855 8.966719 -19.405476 1.546634 -15.758985 10.570117 -9.244247 11.518432 11.674713 -6.460627 5.920566 4.932682 5.795637 4.443750 -0.518131 12.980885 4.743424 7.019377 -0.149800 7.068261 7.673043 -9.908348 -9.131146 -8.220355 -9.670295 0.907341 -2.763080 -14.079849 0.388809 -9.037131 2.502873 4.438438 -2.523510 -2.722675 10.441896 -20.142687 -5.194977 3.697504 -2.374390 9.863987 10.321504 -0.422888 2.699268 0.275486 12.683484 -3.679750 0.105219 -3.696553 6.055850 -3.800694 -7.727655 -8.612766 0.943991 4.704548 -10.102336 -13.623301 -16.766181 -3.882676 6.577220 -3.267410 11.850633 21.841297 -4.513513 -10.877609 9.475613 -3.180589 1.705022 13.051693 2.513554 17.779021 -13.900974 5.920075 -4.313032 3.687869 4.130085 12.466522 -1.073231 -6.202964 5.561857 1.314018 -4.382772 7.524334 -2.881736 -1.208611 -5.893486 1.529147 -4.912386 -5.137100 12.926922 -8.999519 12.254949 -4.993018 18.287561 -11.505167 -11.767232 5.426874 -11.857840 -2.915609 -8.400101 -3.843792 -0.167902 10.215315 -11.837090 -7.167414 -5.555677 -3.617740 -0.780910 8.293343 -5.166505 0.689201 -1.855360 -2.280408 13.229721 8.598872 -0.689633 0.657037 -12.816783 1.828844 6.883645 -1.699312 -14.794523 0.630038 -8.831258 -1.505851 3.906946 -1.362571 6.669579 -6.265328 -5.909383 1.140358 -4.218745 2.485665 -3.558540 -13.164301 3.653207 -2.500672 1.935328 4.849336 13.068152 12.924684 9.394086 3.418148 -1.787195 2.552550 -6.521489 -4.884373 4.241121 2.683491 5.216869 5.393772 9.747126 3.446516 2.852163 8.492653 3.592549 0.459612 11.884747 3.191497 15.033523 -5.468548 1.152557 1.380641 -5.801908 8.135476 16.195113 -6.277010 -2.411737 6.618035 3.268990 -3.640285 -7.149617 -1.557803 -5.784149 -4.005167 7.511238 5.563758 -3.052524 -5.074607 18.195154 1.845012 -20.053527 10.323520 -0.288010 3.723759 7.853742 -4.538116 1.407950 6.545768 -5.482534 6.875034 5.397291 10.047079 -11.406271 -1.920767 -1.209243 9.332739 6.106021 0.255744 -20.342826 1.869943 4.880135 14.001699 7.066513 12.192700 -7.355649 -0.956763 -1.548804 -6.768039 -2.790294 -1.353605 7.602504 -4.294576 1.367899 -15.152546 -1.228154 +4.261327 3.984799 7.259542 -8.892355 -6.519092 1.651884 2.749011 -5.694537 1.548803 13.903993 4.984674 -5.855725 -8.669617 11.484992 -4.668771 -8.964593 2.359717 -3.369826 -0.898200 -5.025615 0.151495 4.658642 -0.773497 -4.286594 3.666323 -3.632762 0.869771 7.514446 3.827408 -0.732286 -5.490489 -1.187831 1.772331 14.582501 -0.757957 0.247041 -0.450282 16.100926 -11.837331 12.243951 -17.560847 -14.762935 13.697437 2.033436 -0.451939 -13.641159 -4.320806 5.719092 -6.897724 -5.355894 3.605726 -2.572740 2.084737 -7.205334 1.992688 12.785069 -20.672676 6.941845 1.288397 -4.991926 -6.955164 -2.082738 5.418398 2.897625 -4.885558 -8.951783 3.090308 2.902356 -8.460413 3.664568 -5.851241 -14.080018 11.493625 3.029498 -6.606667 3.630645 1.841376 -11.941105 8.555956 -9.213159 -7.789083 -3.749682 5.124413 -2.598616 7.470615 4.187742 8.616107 -20.183184 0.211477 -15.816566 10.951751 -10.530412 11.140879 11.562709 -8.080759 5.999668 4.098505 4.481813 6.619834 -0.736966 13.264471 6.156825 9.876939 -0.662206 7.217394 8.867807 -9.804182 -9.258156 -8.806155 -11.122921 0.536880 -3.978901 -18.703461 0.409848 -8.479217 0.327790 4.999438 -5.268768 -1.821023 12.657207 -20.009995 -4.973141 4.338314 -2.202799 8.182836 11.918524 -0.582946 2.384254 -0.366807 13.193287 -2.925291 1.441473 -2.771007 5.839022 -5.937352 -11.782716 -9.210694 1.199866 3.795397 -10.361429 -13.734211 -17.893533 -3.352062 5.386644 -3.166872 10.662952 22.544206 -4.176839 -14.062654 10.112949 -0.251190 0.360261 13.746536 1.977913 19.621724 -14.323169 5.897932 -5.187489 3.242605 4.559990 14.277378 -1.188735 -6.736593 5.665183 0.144602 -9.563007 7.021902 -3.044226 -0.834888 -5.275289 1.709521 -6.251545 -5.171308 14.015034 -8.408272 14.546604 -6.611872 18.241097 -12.373355 -13.629303 5.583594 -14.203962 -3.288530 -8.486486 -4.704543 1.009592 11.058767 -12.193238 -6.941020 -7.117051 -3.999291 -1.264290 9.028844 -8.240152 0.978754 -2.298448 -1.518441 13.345123 9.404376 -1.389198 2.153006 -13.274217 2.393650 8.929554 -0.498716 -18.981311 1.007588 -9.703276 -1.319126 3.450563 -1.982399 7.138036 -5.977955 -6.442554 1.438043 -5.654452 2.271699 -4.629445 -14.196675 4.076017 -5.039172 3.504563 3.961200 13.785835 14.213513 9.339179 3.366750 -1.815148 3.501733 -8.372521 -4.199817 4.552393 3.381415 2.522232 5.840843 11.669163 3.117468 2.588147 10.199005 5.866398 -0.942102 12.422803 3.456592 15.733730 -5.075850 0.999290 0.706076 -5.863837 8.258651 18.881429 -3.963220 -2.845669 6.965052 4.122731 -3.180297 -9.380040 -2.586686 -6.032780 -5.121359 10.306357 5.486439 -4.687797 -4.158707 18.587378 2.841995 -20.446431 10.994609 -0.201026 3.216975 6.553841 -5.649041 0.292373 7.734238 -6.346552 6.586350 5.377113 10.319731 -11.799173 -4.137191 -1.135742 10.157931 7.893090 1.045524 -22.972266 2.396177 6.382208 15.595906 6.426300 15.115527 -7.818831 -1.844279 -1.310858 -4.998192 -3.383692 -1.850569 6.864200 -6.538969 1.294880 -14.844427 -2.099424 +12.151704 5.140491 11.244627 -10.694919 -6.838490 6.142277 -0.902160 -14.279449 2.303298 26.765143 8.595997 -7.089670 -4.836012 15.495509 -11.300950 -10.245895 5.348520 6.416092 0.839824 -10.309086 1.032544 3.748148 -2.935834 -10.392885 2.679393 -8.258543 7.933698 7.023724 -0.204200 8.394522 -12.000248 -3.066793 3.133020 23.707728 2.744328 1.253483 -4.244222 19.100418 -16.238122 17.404960 -29.247786 -24.702587 18.958779 5.316522 6.154595 -20.035488 -8.322279 5.594873 -1.645429 -10.371738 1.558475 -10.178570 7.001983 -10.586204 -0.001256 16.234518 -24.718480 2.688606 1.452411 -12.095646 -15.231415 -2.766861 16.346605 8.156991 -12.618408 -13.769269 7.973335 13.308304 -8.659516 8.005063 -13.995910 -29.860759 12.052187 3.157587 -12.163452 0.849810 0.376975 -22.172955 11.490220 -5.542580 -11.126897 -6.550261 7.345423 -4.503839 5.429846 10.046943 21.208652 -32.010464 6.120513 -26.734595 17.841644 -11.889830 21.716071 14.611387 -13.681408 5.416184 9.599567 19.843670 11.782054 0.516298 19.909594 13.877757 10.561797 -8.011092 14.489024 15.319968 -13.767569 -16.255624 -11.551242 -16.456152 1.379335 -7.874404 -31.847979 -0.432141 -18.515287 -1.164038 -0.410390 -8.898382 -1.577215 24.519410 -38.768640 -12.177974 6.636765 -3.188307 14.642389 14.516318 0.514217 7.953200 2.004776 18.644825 -5.463255 -7.282075 -4.511381 9.176477 -17.735945 -16.802236 -14.997349 5.816089 9.926310 -19.769891 -22.908155 -29.923612 -7.834481 15.162326 -3.287251 14.877291 31.996268 -5.779518 -21.727074 8.595001 -2.621326 -8.995526 27.749038 4.793258 34.007439 -28.844029 16.732979 -7.146203 10.443812 7.428206 16.004602 -6.348707 -9.615841 11.945451 -2.230682 -15.230123 17.685955 -8.808834 1.209120 -9.720242 5.219356 -4.455237 -0.509106 20.002691 -21.860324 19.912498 -14.943135 27.339605 -24.607766 -18.010233 4.748738 -31.437569 -9.829855 -7.356901 -0.862212 -4.356389 26.459002 -19.698866 -11.432963 -6.778925 -10.745155 4.626976 18.352466 -13.267150 -0.323364 -4.200925 -8.212103 21.677050 12.048960 0.088050 2.392408 -14.339609 1.672177 17.996516 -1.574996 -28.478606 -3.506498 -21.715810 -1.125162 -6.741022 -1.542586 14.288212 -12.635241 -9.676938 -0.936723 -8.594260 4.176815 -9.222818 -15.787140 8.817530 -12.133800 6.421003 1.569081 24.473203 20.651684 17.677592 5.082282 -9.640240 9.466968 -20.995103 -8.475997 12.242341 9.801208 3.392615 6.518484 17.933678 -0.047137 5.145702 11.495333 3.335844 7.648216 19.121733 4.687998 21.936449 -11.183831 8.289411 0.112083 -12.684571 12.497015 30.797950 -1.119166 -3.710079 6.096694 1.466504 -8.716713 -13.067753 -3.085452 -4.979257 -11.967249 9.779757 15.632879 -4.056436 -12.884510 31.422702 9.073616 -32.309802 17.843726 -1.684464 2.379503 18.963644 -14.115597 4.564164 8.264479 2.346488 10.472747 7.336154 17.364181 -21.151314 -7.218443 -2.669012 17.221473 15.645248 -5.519561 -34.341616 14.652431 11.208234 25.579009 8.638016 23.224005 -16.172271 5.464028 -5.116050 -9.673583 -3.618346 -2.431583 14.771972 -6.540361 -0.409052 -26.885763 0.540293 +4.469563 1.519145 5.068188 -5.279460 -4.003207 2.445575 0.583284 -5.543722 0.651518 11.662596 4.212079 -4.618448 -4.073991 8.867501 -3.059503 -6.294507 2.573626 1.481819 -0.077102 -3.135296 -0.943558 2.785971 -1.575067 -4.162151 2.988563 -2.891471 1.575926 4.722883 0.966815 1.808905 -5.205790 -1.427474 0.861292 12.478782 0.602859 0.644654 -0.396276 12.966779 -8.966907 10.942591 -12.243000 -11.944463 10.918784 1.756777 0.944163 -6.033492 -3.258496 4.820109 -3.950441 -6.131088 2.716011 -3.237359 2.276732 -5.717786 0.980892 9.312672 -14.806742 3.053749 1.656669 -4.660491 -7.530675 -2.019682 5.042116 2.422029 -6.124107 -7.251188 2.952399 4.220239 -4.922436 2.140846 -6.507378 -13.676092 8.813815 2.438856 -5.464414 2.179295 0.981113 -8.891554 6.547298 -3.473241 -7.276180 -3.322622 3.231557 -3.699569 5.764239 4.846650 9.361725 -16.997854 3.019513 -14.411587 9.293830 -7.578738 10.311806 10.321966 -7.477816 4.329262 4.731850 8.270973 4.510093 0.279833 11.109521 4.663570 4.150262 -1.260304 6.557099 7.455001 -8.545268 -8.293734 -7.209660 -8.759544 1.462046 -3.317692 -13.822651 0.733851 -8.432123 2.038148 2.120453 -2.456093 -1.723632 10.075937 -17.791371 -4.112998 3.257516 -1.989661 8.390349 8.724114 -0.492200 2.701003 -0.417489 10.402489 -3.067252 -1.572146 -2.894363 5.440611 -5.923994 -6.776002 -7.396001 1.992240 4.730759 -9.719080 -11.874814 -15.685805 -2.834081 6.851879 -3.042456 9.940942 18.551741 -4.238364 -9.383927 7.485676 -1.669872 -0.171521 12.468258 2.195799 16.603535 -12.886032 5.883187 -3.357860 3.205871 3.367185 7.544767 -1.480558 -5.315978 5.611583 0.200019 -4.859610 10.547167 -2.742788 -0.911923 -4.975328 2.471960 -3.159865 -3.329159 11.912973 -8.407345 9.552327 -4.906465 15.625089 -10.150131 -9.142405 4.504855 -12.121097 -4.100084 -6.971184 -2.969510 -1.275752 10.574403 -10.191473 -5.986016 -4.019748 -3.675860 -0.277137 7.820283 -3.193872 0.397786 -1.426956 -2.561219 10.340853 7.254250 -0.243919 0.555695 -10.411549 1.018368 7.301350 -2.665861 -12.803690 -0.300434 -8.991631 -1.056344 0.665962 -1.154303 6.249864 -7.176542 -5.062142 0.442918 -3.192432 2.594346 -3.225417 -10.612681 3.840920 -3.290897 2.510937 4.232275 12.060273 11.249321 9.087992 3.340816 -1.902862 2.923964 -6.437767 -5.190069 4.632142 2.465992 5.252407 4.673255 8.145379 2.363364 2.833209 6.017344 1.935292 2.300647 10.541879 3.712324 13.263377 -3.370258 1.928089 1.120125 -5.286796 7.476984 14.694841 -4.747153 -1.832525 4.827080 1.488172 -4.297156 -6.256162 -1.090192 -3.916266 -5.049007 5.022526 4.863173 -1.907787 -5.306331 16.112599 1.987241 -17.617661 8.897924 -0.198518 3.091196 8.405695 -4.594007 2.572546 4.957186 -2.534978 6.442111 5.006550 9.258947 -10.465812 -0.900410 -1.155788 8.388529 6.767746 -0.172243 -16.790192 4.970953 4.664422 11.851534 5.194006 10.047875 -7.220197 0.695271 -1.959366 -5.903639 -1.833960 -1.632619 6.905432 -2.684309 1.070954 -14.006270 -1.436879 +2.729220 1.835863 4.350935 -4.394547 -3.586405 1.319562 0.475839 -4.050449 0.672682 7.499945 2.105266 -3.296404 -1.778987 5.995961 -2.374885 -3.423653 1.025536 -0.705548 -0.008094 -2.847481 0.289363 2.349504 -0.978448 -2.227334 1.090259 -2.187599 1.137781 2.676530 0.038429 0.375847 -2.919011 -1.301119 0.968712 7.599751 0.401262 0.358066 -0.617901 8.292013 -4.940773 6.140058 -9.495760 -8.141734 6.041124 1.097904 0.806608 -6.781386 -3.119214 2.745322 -1.636325 -2.541958 1.674722 -1.577381 1.017146 -3.046292 1.009586 5.238349 -9.074472 2.849094 0.762009 -3.460071 -3.990191 -0.844104 2.511014 2.647618 -3.233327 -4.541871 2.375956 3.260843 -3.200138 2.183451 -2.923150 -7.565826 6.420352 0.984387 -3.350186 1.294796 1.327730 -6.298605 4.507135 -4.129389 -4.737674 -1.877859 2.050090 -2.504909 3.289668 2.365891 5.642871 -10.616612 1.753273 -8.365704 5.740791 -4.490582 5.664530 5.700162 -3.636219 2.646560 2.871779 4.204843 4.278510 1.057984 6.887149 3.961362 4.023347 -0.201783 4.674356 4.789550 -5.149742 -4.918917 -4.808592 -6.028909 0.556976 -1.772382 -10.571910 0.568573 -3.897850 0.095336 0.734422 -2.328670 -0.179697 6.702931 -11.260704 -2.748972 2.748952 -1.292021 3.491487 5.315893 -0.529020 2.077912 -0.594198 6.566151 -2.314477 0.147001 -1.030882 3.108857 -4.186684 -5.986476 -5.697683 1.612645 2.281643 -5.732974 -6.948017 -8.989125 -2.170404 4.145209 -1.711923 5.513284 11.810354 -2.551100 -7.920106 4.952879 1.676874 -1.219887 7.356507 1.432174 10.498576 -7.345544 2.831988 -3.277362 1.429472 2.213281 5.796331 -0.412308 -3.021107 3.754576 0.161158 -6.024972 6.110963 -2.311313 -1.023670 -2.052841 1.378326 -2.206417 -1.935718 6.775327 -3.685877 7.225214 -3.340162 9.865528 -5.935941 -6.388596 1.407223 -7.341610 -2.221561 -3.142565 -1.516606 -0.500442 6.770891 -6.034198 -3.616948 -2.294250 -3.967961 -0.376642 4.358779 -3.549135 0.707133 -0.436912 -1.066513 6.909353 5.446980 0.338971 0.403494 -6.504198 1.209689 4.574157 -0.747148 -9.178632 -0.218495 -5.631289 -0.455899 -0.364038 -0.944908 4.316001 -4.205802 -2.942632 -0.178296 -2.956426 1.175943 -1.874221 -5.216708 2.329460 -2.642336 3.264843 1.813144 7.004656 7.177654 5.949364 2.796045 -1.174419 1.676372 -4.625827 -2.014284 2.822276 2.740160 0.965331 2.747660 6.655766 1.813356 1.756741 5.431723 2.237971 1.078787 6.603988 0.380847 8.605688 -3.400257 1.231256 -0.353653 -2.328041 4.699861 10.351342 -1.888823 -1.823077 3.181787 1.073916 -2.286832 -4.564499 -0.301580 -2.365597 -2.582457 3.360186 4.368940 -1.745057 -2.857993 9.567884 1.978002 -10.597409 5.467693 -0.069145 1.541896 4.891530 -2.647790 0.621848 3.454402 -2.514923 3.679669 3.470740 5.294945 -6.850121 -2.790627 -0.542103 5.402644 3.545624 1.305714 -11.548357 3.228709 3.703501 7.609934 2.148023 6.845157 -5.215281 -0.546430 0.393382 -2.804658 -1.996152 0.496246 4.324429 -3.423561 0.420785 -7.637014 -1.360359 +2.499470 2.267970 4.294722 -4.381118 -4.777274 0.017088 -2.362305 -1.330870 1.447391 5.842102 2.941509 -5.138072 -6.337473 7.210953 -3.365653 -5.954381 0.557089 -1.389076 1.348552 -3.260458 1.276037 2.214693 1.067062 -1.322029 1.857157 -1.265807 -2.748182 2.644951 7.304325 -2.664130 -2.887937 0.833701 2.253699 6.515872 -2.725268 -2.050809 0.774254 8.847949 -2.387557 3.774035 -9.095223 -7.061209 6.944115 1.233193 0.170510 -7.588425 -3.004164 3.551742 -6.622508 -1.267892 1.496351 0.467353 -0.527339 -4.152374 -0.124209 6.815965 -14.703609 7.715015 0.321494 -1.021819 -0.841877 1.335382 1.467903 0.986930 2.140070 -3.959921 0.539517 2.151291 -6.812903 1.421837 -1.162459 -4.564651 8.388026 0.867651 -3.153329 3.633376 3.434645 -4.003896 5.371774 -9.425024 -4.386530 -1.217160 2.701757 0.605006 4.894381 2.415735 2.762986 -9.316166 0.663928 -7.750600 7.051950 -6.943496 4.602029 6.298221 -6.252221 3.240153 3.148491 -1.848976 6.525711 2.252867 9.019085 3.467138 5.068913 0.658683 1.591683 3.782671 -3.228381 -1.702916 -3.791405 -6.753119 -2.124048 -0.013215 -10.321759 0.261997 -3.566825 2.898838 4.993453 -2.937365 0.580435 4.189748 -9.119926 -4.565218 2.099298 -0.781703 3.136486 7.173125 -0.635449 -0.138731 -1.080500 8.664176 -2.048948 -0.125319 2.225948 2.265214 -0.719964 -10.825464 -6.847675 0.547779 0.211997 -5.573083 -6.082178 -8.634246 0.391716 0.092120 -1.246870 5.751577 12.768445 -0.759156 -6.398538 6.501081 0.150891 1.176766 10.270604 0.717001 12.186813 -6.231596 0.806704 -2.078279 0.251873 2.522361 3.031956 0.717255 -1.646158 1.489169 3.037980 -4.610939 -0.257832 -2.268667 -0.200095 -2.005416 0.671767 -4.008271 -3.634515 5.616988 0.363788 7.673927 -1.284221 10.570767 -3.684168 -10.150157 4.658261 -4.587607 -0.931314 -0.390146 -2.317025 1.119307 3.597942 -7.022964 -3.142501 -3.748796 -1.570728 -1.682823 3.810761 -0.110053 2.666919 0.737182 -0.746257 5.765757 4.320417 -1.199894 3.112199 -9.356714 -0.240158 3.881275 -1.241650 -11.658293 2.408120 -5.622526 1.383454 5.073073 -2.388474 3.611696 -1.834354 -4.930871 -0.246682 -3.626881 2.717263 -3.362423 -2.660014 1.055426 -3.277719 2.941624 2.464479 7.110224 8.148918 4.547861 1.000847 1.694773 1.784003 -3.189686 3.125342 0.883471 0.707127 1.299754 2.625142 4.604486 1.138480 1.858267 6.051738 3.417437 -3.366006 7.027866 0.569041 8.152907 -4.670240 0.257023 -0.552859 -3.397090 5.374652 11.412302 -4.365275 -1.883394 3.785260 2.788187 1.039715 -6.700876 -1.320846 -2.591038 -3.585756 6.189172 2.732722 -0.894429 -1.281565 6.366619 2.595422 -10.023978 8.551764 -0.579524 0.394603 1.439359 -1.647387 -2.457964 4.257167 -5.614531 0.004282 3.227677 5.646704 -6.988922 -2.657365 -0.392577 7.722480 0.680681 2.997301 -11.149515 0.398489 5.334823 5.152853 3.422058 5.327365 -4.585684 -7.226243 0.098085 -2.213330 -4.202529 -1.386760 1.064106 -5.182293 0.952617 -1.957310 -2.446739 +29.070868 18.477750 31.160772 -45.871531 -48.518149 10.971744 6.648901 -35.808499 7.883654 64.708327 29.979021 -38.614738 -29.607048 73.428469 -22.102818 -40.083381 10.051055 -23.749425 -2.499493 -14.698468 0.240557 30.378643 -8.445069 -6.653085 8.239473 -7.803168 -3.017682 24.728545 16.545375 -16.037666 -40.550299 -9.770004 5.224466 70.893158 3.904235 -4.690926 -3.028320 89.452278 -50.267826 72.979990 -91.757620 -60.335915 49.583293 8.991991 4.493457 -73.305415 -32.181012 35.686842 -12.400390 -31.363218 29.647261 -10.424589 1.924633 -21.545952 17.273869 57.113285 -94.846797 39.906035 13.873152 -16.163589 -20.154395 -9.697297 22.142686 22.563549 -36.909544 -45.358460 19.749942 21.923689 -38.201693 15.321884 -30.904980 -81.734705 56.429539 19.628751 -44.597820 9.197206 13.379341 -61.966599 50.072071 -57.426623 -52.165193 -8.864864 15.431997 -13.427391 39.154344 16.596335 46.730040 -105.246921 16.767256 -92.173611 49.586928 -59.676832 50.566272 65.386979 -39.032466 17.211376 22.538073 29.576839 58.239107 8.486053 66.576152 38.796664 38.516587 -2.951145 40.916119 46.994688 -38.903841 -37.679793 -40.033126 -65.822708 4.174481 -8.300854 -93.687086 10.718993 -32.006213 10.773061 13.831623 -10.956778 -2.336476 59.903559 -97.499451 -39.107039 21.872186 -10.891010 42.698005 72.237626 -14.076448 20.021317 -20.409166 68.918172 -15.668047 18.081539 -10.778446 28.190892 -44.010446 -62.449916 -63.608380 12.698863 27.490322 -54.882130 -69.475789 -98.831886 -10.285936 22.466415 -25.718940 66.114696 118.333255 -34.645535 -64.111772 60.239230 13.799877 -10.177841 71.177742 0.415858 110.092495 -67.690199 24.770503 -22.709690 6.654286 3.903132 61.683127 3.416295 -30.160364 22.999737 -3.151318 -75.212144 54.488778 -8.587844 -19.587074 -17.898158 8.038499 -19.128889 -31.926075 71.812877 -42.152192 62.602491 -26.299934 91.338924 -50.925933 -59.318516 35.387514 -58.717940 -9.206040 -36.693394 -21.733793 8.111425 65.733889 -58.853142 -27.447105 -22.948727 -35.730601 -17.718950 34.790553 -25.243794 7.569716 0.896128 3.156876 72.431276 65.265164 4.606503 14.935658 -70.042009 19.551755 42.448429 -10.030954 -84.716737 1.077161 -59.164025 -5.942138 5.128870 -14.451633 32.144996 -39.100937 -38.574677 -1.176080 -27.219590 23.951100 -7.870331 -62.943952 20.765855 -28.293766 33.049480 19.210164 65.638526 63.175956 61.835080 38.967203 -15.455307 12.984387 -31.850546 -17.770567 23.539497 20.610154 6.787818 31.096999 55.367965 20.741845 13.076469 55.041361 19.261437 1.895479 65.190509 11.874365 88.203651 -26.840062 10.320991 -4.133234 -31.098746 48.248214 113.474435 -26.781715 -10.161266 31.656289 14.147498 -27.700602 -42.889744 -8.498685 -28.599158 -32.170260 37.966124 22.840276 -13.721832 -24.520128 89.682411 8.233411 -103.236159 50.051777 -3.773363 16.255821 47.659876 -18.731436 9.363115 30.180494 -39.370121 39.127340 40.565067 54.289222 -53.024523 -36.143034 -7.687851 44.733181 37.397752 16.162507 -110.741767 25.756243 46.468769 79.247101 26.369458 62.738309 -50.461888 -13.895447 9.849198 -26.347200 -20.517753 -5.088869 42.319587 -34.649327 4.768250 -66.987101 -19.960050 +0.874664 0.595412 0.732150 -1.109492 -0.683906 0.159062 0.543730 -0.747264 -0.048574 1.549057 0.740671 -0.902296 -1.364990 1.455437 -0.452559 -1.289426 0.445913 -0.772672 -0.347936 -0.363696 -0.293557 0.498146 -0.164443 -0.806073 0.715968 -0.126337 -0.073184 1.003765 0.626180 -0.567156 -0.974350 -0.063955 0.364663 2.175730 -0.057293 -0.249756 0.123102 2.406854 -1.452293 1.383216 -2.131502 -1.791809 2.155003 0.099770 -0.229449 -1.657265 -0.427544 1.136672 -1.137547 -0.872105 0.508257 -0.338370 -0.022765 -1.262968 0.055148 2.239366 -3.218821 1.403482 0.492357 -0.245132 -1.085021 -0.392390 0.756242 -0.060046 -0.196738 -1.453335 0.400010 0.088686 -1.323157 0.410915 -1.245386 -1.970074 1.927548 0.421129 -0.721213 0.592201 -0.132376 -1.436533 1.144767 -1.357966 -1.066551 -0.538960 0.816589 -0.021155 1.333597 0.563608 0.698420 -2.918204 -0.111829 -2.387484 1.346510 -1.641504 1.633556 1.814778 -1.266500 0.895163 0.389048 0.127499 0.558632 0.115749 2.012406 0.373495 1.132432 -0.184264 0.832945 1.035972 -1.360024 -1.230945 -1.055751 -1.462319 0.024109 -0.066035 -2.445484 0.324526 -1.522747 0.376138 0.803355 -0.498951 -0.228314 1.237480 -2.516104 -0.795844 0.493870 -0.361586 1.573576 1.955237 -0.096287 0.239311 -0.368743 1.797544 -0.035864 0.245785 -0.532064 0.904686 -0.309945 -2.237176 -1.327004 0.033696 0.726784 -1.533658 -2.094037 -2.484425 -0.205494 0.243978 -0.718946 1.513916 3.174295 -0.597401 -1.695831 1.623687 0.002694 0.661323 2.047346 0.185177 3.041040 -2.134699 0.927773 -0.093126 0.463080 0.537697 0.739877 -0.431482 -1.103059 0.593387 0.180806 -0.951529 1.082436 -0.022450 -0.067369 0.038347 0.113118 -0.722533 -1.180662 2.099575 -0.275702 1.974973 -0.319791 2.771837 -1.594656 -1.847281 1.041780 -1.037205 -0.353618 -1.190765 -0.949279 0.102495 1.305052 -1.681692 -1.029849 -0.767455 -0.132493 -0.379004 1.500857 -0.237961 0.114565 -0.359311 -0.249421 1.162451 1.232248 -0.631924 0.579355 -2.143279 0.301022 1.198168 -0.204447 -2.591471 0.179742 -1.263134 -0.244481 1.080706 -0.322892 0.982730 -0.718270 -1.010843 0.678597 -0.505040 0.467136 -0.587906 -1.412421 0.470807 -0.721956 0.040804 0.759902 2.232835 1.868739 1.248545 0.271283 -0.208053 0.409674 -0.782893 -0.712457 0.221240 -0.136272 1.110626 0.994496 0.980578 0.521915 0.384218 1.199657 0.455030 -0.370864 1.922647 1.000040 2.275346 -0.663927 -0.036601 0.303211 -1.074797 1.373817 2.335288 -1.317169 -0.708225 0.993457 0.524045 -0.399715 -1.277918 -0.447963 -0.823305 -1.045295 1.319109 0.467508 -0.508897 -0.582592 2.839999 0.041285 -2.973611 1.700300 0.094363 0.595396 0.789489 -0.612234 0.217745 1.155102 -0.921047 0.620801 0.804168 1.728672 -1.556866 -0.266399 -0.127704 1.576748 0.362472 0.107400 -2.998626 0.211128 0.912603 2.106699 1.130671 1.474844 -0.962811 -0.290577 -0.329979 -0.464830 -0.183151 -0.358024 1.154106 -0.890467 -0.003769 -2.020654 0.006547 +2.150701 1.002088 2.081928 -3.587291 -1.458119 0.890603 1.294749 -2.631188 0.482628 5.353349 2.345900 -2.395040 -3.257684 4.523255 -1.415542 -3.307444 2.147287 -0.500338 -0.291506 -1.081273 -0.340488 1.455871 -0.542335 -2.453151 1.771738 -1.020678 0.448487 2.653220 1.541592 -0.512157 -3.218598 -0.363298 0.534114 6.290020 -0.007108 0.072685 -0.344067 6.249684 -4.543049 5.469327 -6.870867 -4.988220 5.782824 0.796216 -0.123087 -5.086074 -1.693062 2.405546 -1.938370 -3.255395 1.138578 -1.900956 1.022166 -3.401452 0.253459 6.056912 -7.689858 1.959413 1.163513 -1.445348 -3.157053 -0.934743 3.128375 0.842328 -2.636961 -4.008694 1.610011 0.859606 -3.586294 1.136329 -3.835571 -6.702807 4.308747 1.453539 -2.770436 1.222192 -0.391783 -5.358615 3.071030 -2.626898 -2.950607 -1.522113 2.104590 -0.975906 2.956266 1.659002 3.813307 -8.574382 0.208985 -6.914771 4.204790 -4.225772 5.455880 4.971623 -3.309468 2.101823 1.503693 2.440181 1.888479 0.349234 5.694249 2.212421 2.876508 -1.498251 3.476607 3.360323 -4.008787 -4.124338 -2.872662 -4.073654 0.285060 -1.141318 -7.432461 0.493486 -5.080839 0.438167 1.600454 -1.454354 -0.892904 4.866517 -7.870423 -2.435975 1.403779 -1.058947 4.304303 5.607621 0.136711 0.857938 -0.360574 5.155017 -0.612431 -0.057851 -1.782517 2.689984 -2.354464 -4.696803 -2.981985 0.175335 2.167308 -4.903877 -6.150445 -7.550299 -1.467373 1.988398 -1.522492 4.569171 8.964116 -1.731727 -5.062492 3.744145 -0.655189 0.579785 6.102652 0.674495 9.000054 -7.104970 3.751661 -1.179476 2.247135 1.677601 4.307243 -1.408368 -3.129465 1.876528 -0.458838 -3.907820 4.257827 -0.586799 0.267551 -1.139176 0.632535 -1.810064 -2.828150 5.998562 -3.912737 5.818466 -2.424994 7.802355 -5.323987 -4.912538 2.739811 -4.359235 -1.668697 -3.371335 -1.973010 -0.189058 4.980558 -4.678585 -2.975870 -2.277476 -1.178026 -0.076011 4.594187 -2.081326 -0.051034 -1.329236 -1.604967 4.716618 3.217940 -1.208216 1.149260 -5.288763 0.889096 3.971423 -0.755862 -7.032913 0.131148 -4.637863 -0.688414 1.106085 -0.832739 3.294389 -3.008164 -3.120670 1.053097 -1.401488 1.238993 -2.251621 -5.596111 1.803272 -2.106072 0.318306 1.820405 6.549835 5.204121 3.981892 0.673097 -1.715476 1.466315 -3.299806 -3.178671 1.666850 0.386790 2.339979 2.418982 3.811137 0.949062 1.314391 3.512334 0.824531 0.455897 5.361758 2.365744 6.054229 -1.385834 0.286184 1.100528 -3.825981 3.692815 7.303605 -2.336582 -1.550976 2.624667 1.303945 -2.105976 -3.863192 -1.018774 -2.096058 -3.240825 3.670608 1.871396 -1.036258 -2.607143 8.476474 0.970214 -8.997521 4.695886 -0.251639 1.525318 3.637534 -2.377494 1.271108 2.860418 -1.657002 2.464921 1.971478 4.748600 -4.648779 -1.300248 -0.530325 4.147343 2.876635 -0.746372 -8.979406 1.825832 2.338475 6.856379 3.368985 5.263167 -2.949802 0.765110 -1.331165 -2.058841 -0.662727 -1.656496 3.485939 -2.210590 -0.509666 -7.201958 0.564963 +5.582460 -8.207859 8.591453 -13.779944 0.396462 9.863393 -8.880304 -13.748066 2.069821 11.588440 6.115858 -1.909594 -9.366097 9.718781 -3.679011 -20.102559 8.062851 22.905115 3.671591 -10.056716 1.980383 -1.729629 -3.831561 -11.316920 0.390783 -14.123259 11.937039 10.870156 10.206773 17.529368 -13.041744 -5.326432 -4.042684 25.809949 5.052514 12.857974 -4.526930 22.284602 -6.150080 22.002834 -22.180575 -25.722951 18.106030 5.377521 0.337920 -10.944929 -10.649127 0.043117 -19.797115 -7.538395 3.700404 -12.399194 11.017486 -8.911039 2.401961 13.454183 -19.265017 -5.708906 -1.588813 -11.021687 -13.666239 -7.022018 13.825932 6.932937 -18.357997 -11.136925 10.712452 13.277009 -9.283560 6.488639 -15.397068 -30.573583 15.382610 10.330740 -12.531572 0.467544 6.807697 -21.268740 7.131867 13.678517 -14.770258 -8.708657 2.536568 -10.025966 13.051822 8.050810 25.512559 -31.916219 8.759719 -29.354513 16.256455 -12.801745 24.605208 17.806956 -21.531152 7.047034 13.491249 30.875373 0.959256 -8.893105 19.565827 13.625769 -0.495332 -8.867905 24.473819 6.184488 -12.273040 -18.915235 -10.207844 -14.416632 -0.978838 -24.302793 -40.657997 -3.198219 -22.698628 -1.323050 -6.272638 -1.409583 -8.586672 14.298577 -40.513067 -6.444660 2.985270 -5.148209 17.466285 10.785202 -1.094606 7.700912 7.188209 20.862781 -9.013011 -10.983519 -10.484853 9.412816 -10.510072 0.596829 -14.796060 5.434570 14.468068 -17.985927 -27.697055 -22.309777 -16.116879 22.225548 2.844755 19.827196 32.133109 -4.125273 -19.561110 7.594620 -16.248531 1.731943 31.270091 9.143599 27.126325 -27.330515 18.708738 -12.534000 11.794862 5.265988 0.451138 -6.243704 -8.282701 16.946360 -7.395587 2.857738 20.656682 -17.145301 0.928274 -25.408087 4.157254 -9.878804 -1.845589 26.344708 -35.967037 20.964593 -12.000286 24.061408 -24.106954 -17.233420 3.084177 -38.745877 -13.694163 -12.186167 -0.619541 -13.189642 25.393845 -23.271851 -16.514625 -11.867129 -5.633775 9.123740 18.064315 -0.993382 -4.448411 -4.368757 -3.593375 24.522017 15.835242 4.677703 -3.230986 -13.165158 2.921032 22.255022 -7.254319 -14.559726 0.021315 -17.521553 -1.681875 -11.215536 2.880656 13.285007 -17.559633 -11.387301 -9.810042 -0.898716 7.258926 -5.244313 -34.302705 9.766463 -1.416708 -1.381671 10.050038 22.229570 24.086127 15.463759 6.417915 -12.933938 14.409995 -17.240550 -13.791289 9.630688 9.387995 12.469674 2.965637 16.691514 0.137474 4.327070 10.616370 12.200256 14.925651 15.666455 13.263755 23.636249 7.415755 3.488490 2.074554 -15.540581 9.996110 33.076918 0.505811 12.029745 9.612188 7.083642 -7.075329 -26.737977 -3.589360 -5.344055 -12.130905 10.385320 8.163575 -4.961414 -15.215669 31.860462 10.855605 -33.259638 13.095003 0.167508 1.994414 23.473945 -16.532022 2.884927 6.872005 -3.473615 19.567119 3.666714 12.075185 -19.170751 7.333087 -2.724903 12.558307 19.686767 -9.553322 -11.870764 19.669804 5.113127 29.805761 19.262953 17.124208 -11.208589 9.274583 -9.030343 -19.590262 -1.235163 -6.457404 14.012212 -1.335238 -4.967935 -31.302274 -10.013536 +3.994750 0.456152 4.649486 -3.556256 0.628864 1.741917 3.612900 -3.330181 1.031789 12.385815 1.743729 -1.378660 -6.348303 4.234983 -1.366318 -5.163294 4.867023 0.250086 0.881004 -2.549518 -1.659747 1.333565 -0.639553 -4.970350 4.437251 -3.004802 1.804826 5.292474 -0.832993 2.165524 -3.506116 -0.823211 -0.033606 10.536628 -0.754665 1.526010 -0.600483 9.911943 -8.818655 9.995606 -10.004965 -10.827757 10.569534 1.037382 0.724088 -3.240088 1.664974 3.384847 -4.458108 -6.157966 1.154278 -3.305511 2.748407 -6.632788 0.142213 9.160256 -12.780752 0.551453 0.387012 -4.055221 -7.901068 -2.253200 4.744055 0.955285 -4.495337 -6.293075 2.644233 0.901749 -5.841545 3.041736 -6.717817 -9.506950 4.507781 2.507972 -3.568575 2.648951 0.415668 -6.463503 4.141120 -2.530126 -4.181817 -4.231335 3.211966 -3.401571 4.668093 4.555461 7.489690 -13.796546 1.611016 -10.070871 8.519712 -5.968448 9.919345 8.482715 -3.695700 5.386450 3.328970 6.403060 -0.659838 -2.582865 9.288254 3.183962 4.290976 -1.739714 5.147808 5.448556 -9.033002 -8.478960 -5.962586 -4.352268 1.247483 -3.366005 -8.134244 -0.532597 -9.091257 2.235744 4.576226 -2.571433 -3.317706 7.643875 -16.545668 -2.442546 2.320156 -1.896846 8.282155 5.830251 0.695294 1.069218 2.015440 8.636456 -1.908021 -2.091227 -3.660420 4.857915 -3.097604 -2.725208 -2.459121 -0.761562 3.322075 -8.020945 -10.284008 -12.663466 -3.355637 6.421213 -1.288813 8.642404 14.569726 -1.643419 -6.569535 4.738422 -6.245046 1.943045 8.878493 2.583249 11.154657 -11.798609 6.411597 -2.594957 5.753742 4.701663 10.109157 -2.350863 -5.257440 4.722861 0.588956 1.710404 4.700594 -1.642954 1.619410 -5.448776 0.730190 -2.886200 -2.188889 9.527487 -10.173956 8.568509 -5.102008 12.749394 -9.078026 -7.167821 3.290732 -11.117174 -3.594434 -7.441561 -3.397162 -1.417440 6.936171 -9.339344 -5.962638 -5.141470 -1.288512 1.938473 7.826792 -5.431104 -0.607364 -3.271979 -3.729243 10.891153 2.984664 -1.642718 -0.482769 -8.434201 0.332946 4.764250 -1.988523 -9.532791 0.391721 -5.745915 -1.420887 2.781353 -0.201452 5.339223 -5.489641 -4.277623 2.292601 -1.639235 -0.113974 -4.531026 -10.728891 2.474702 -0.113009 -1.278918 4.436017 10.281187 8.410453 5.014349 -0.354394 -2.482711 2.269731 -5.550063 -7.090052 3.830831 0.461455 5.506162 3.090719 5.143193 1.333599 1.594875 3.866026 1.548493 0.955985 8.265638 4.029292 8.401037 -2.810350 0.785397 3.268735 -5.810451 5.006273 7.376705 -5.155869 -1.922095 4.752094 1.414814 -3.155938 -3.138763 -1.665341 -4.316094 -3.083308 4.501422 3.621948 -2.852551 -4.324027 14.086464 1.794932 -15.269113 7.150279 -0.077352 2.435308 6.774690 -4.122871 2.127012 4.536546 -1.630576 5.020804 1.539004 7.433925 -8.016543 2.189497 -0.737742 6.352846 5.565577 -2.538296 -14.633360 0.082096 1.328031 10.308751 6.622396 9.880711 -3.654079 2.962252 -4.318483 -5.733745 -0.747443 -2.524964 6.077379 -0.545606 0.386046 -14.105105 2.243751 +6.932377 2.633196 7.165226 -7.582153 -1.921753 2.935413 3.891391 -7.546863 2.256662 19.595462 4.739866 -3.631744 -5.198463 9.256233 -5.033176 -6.419588 6.113747 0.793793 0.889901 -4.894590 0.097678 3.242967 -1.222257 -7.456282 4.120753 -4.856386 4.091311 6.139970 -1.813341 3.343369 -6.521489 -1.734119 1.361055 15.376300 -0.025860 1.734279 -3.199689 12.581414 -13.080764 14.184471 -19.348137 -15.672927 14.489666 2.642975 2.510414 -12.341304 -1.929397 3.982205 0.166715 -9.345150 0.436737 -6.153557 5.071962 -9.021542 -0.596360 12.479169 -16.270990 -0.273871 1.140949 -7.955497 -10.962806 -1.985115 10.377546 4.647155 -9.414081 -9.430636 4.771644 4.171545 -7.206605 5.032975 -9.371750 -17.400657 6.564954 2.979304 -6.911516 2.051182 -0.919756 -14.153273 7.189134 -4.243583 -5.851689 -5.358454 5.118794 -3.965477 3.367445 5.786747 13.859317 -20.935605 2.955290 -15.786720 12.425644 -7.944425 14.696835 10.335423 -5.793152 5.458860 4.932885 11.627892 4.686011 -1.456966 13.212514 8.195509 8.523119 -4.789939 9.154995 10.392611 -11.200082 -12.137931 -7.960264 -9.083472 2.263657 -4.816414 -17.432510 -0.227836 -12.849470 -0.879848 3.388294 -6.113333 -2.155099 16.496994 -24.568937 -6.258904 4.685691 -2.327435 9.395075 9.977049 1.424977 2.960542 2.104554 11.913222 -2.854224 -2.920449 -3.501124 6.874529 -10.678138 -7.824704 -4.706820 0.974566 4.692718 -13.183461 -14.570895 -20.375608 -4.965782 10.062715 -2.355667 10.595207 20.989480 -3.427484 -13.618407 5.561999 -2.974800 -4.402777 14.421694 2.859810 20.438717 -19.097400 10.805141 -4.702032 8.424229 6.890701 18.009133 -4.151059 -7.454884 7.244424 -2.281826 -8.906677 10.464860 -3.464231 2.466435 -5.181589 2.184439 -3.725017 -2.196684 12.794663 -15.267477 14.285522 -10.745173 18.278993 -15.518729 -10.640073 4.037823 -19.103537 -6.579482 -8.141072 -2.427009 -1.505281 15.029078 -12.340312 -7.556354 -6.286720 -6.090277 3.254460 12.477936 -12.804387 -0.397755 -4.323049 -6.747012 16.049961 5.495777 -1.641274 0.455114 -10.044313 1.255499 10.221981 -0.528088 -17.318492 -2.051585 -12.728330 -1.614756 -1.569113 -1.130085 9.657237 -8.291598 -6.197284 2.094343 -4.594694 0.147427 -7.785381 -14.392093 4.833531 -5.162296 2.508990 1.892021 16.453990 12.205561 9.886504 0.565737 -5.937608 4.537904 -12.310419 -9.754165 7.282070 3.730272 2.702819 4.714161 11.093204 0.683582 3.438586 8.471983 1.863335 3.455353 12.598456 2.813617 12.756363 -6.383701 3.324931 2.875345 -8.773068 7.900618 16.438392 -1.383123 -3.990681 5.331203 1.072772 -6.781713 -6.295761 -2.295899 -4.416764 -6.413530 7.560032 8.878943 -3.230493 -7.759836 21.255575 5.091738 -22.595129 11.380583 -1.208197 2.645211 11.783087 -8.342613 3.955087 6.415473 0.853465 6.618365 3.491369 11.520165 -13.130259 -3.006422 -1.246668 10.423806 10.694460 -3.972754 -24.782330 5.361501 4.947279 17.062297 6.520963 17.850334 -8.471263 5.780729 -4.604406 -5.910087 -1.940779 -2.964135 9.011505 -3.205679 -0.760538 -20.802819 4.259763 +8.598969 1.548089 7.402427 -5.949778 -1.022590 4.010464 3.826073 -7.871107 1.492411 20.656327 5.477546 -4.746002 -7.867846 7.540591 -3.201722 -9.720500 8.016719 5.454505 1.640524 -5.592132 -3.067663 1.584406 -1.975929 -9.323991 6.564811 -6.239353 3.409845 9.135819 0.083628 6.229116 -7.595032 -1.256481 1.125865 19.850545 0.335173 0.445331 -0.693793 17.354140 -14.835701 15.424517 -16.994867 -17.254951 19.101841 3.215353 1.113442 -5.981026 -1.109937 5.655762 -6.740926 -10.194110 2.550765 -7.397612 6.876008 -10.688606 -0.473401 17.898206 -21.496172 0.629906 1.306415 -8.782473 -14.062078 -2.895814 8.839983 3.325836 -8.761362 -12.109870 5.349069 5.304361 -6.861866 4.600673 -13.521709 -21.320060 11.888976 4.180988 -7.693962 3.312924 -0.310090 -13.621906 7.493090 -0.392254 -8.450230 -7.292841 6.042515 -4.428849 7.357820 7.610777 15.604739 -25.550898 2.287732 -20.676473 15.793938 -10.541871 19.207842 14.962867 -9.091945 7.787109 6.741993 11.429825 0.947224 -2.471713 17.484111 5.544095 6.268599 -4.850421 8.773545 11.171131 -14.699722 -15.164720 -9.931864 -8.721759 1.873059 -4.473949 -18.888111 0.040802 -18.242000 4.287043 5.724135 -5.389507 -4.075316 17.398233 -25.908643 -5.618654 4.538604 -3.611672 15.409992 12.210169 1.733768 3.430043 2.505895 15.540117 -2.987657 -5.504264 -6.963293 8.848289 -7.948387 -9.300811 -7.430919 1.111296 7.909012 -16.265403 -19.316911 -21.989556 -5.447264 11.598305 -3.331208 13.957445 26.848560 -4.395210 -12.313261 8.037126 -7.774615 1.013379 18.760081 4.602485 24.752353 -23.645123 13.400149 -5.386222 10.025245 7.618831 15.817658 -5.290088 -9.107210 9.542376 1.212341 0.104947 14.465370 -4.039220 2.187867 -4.819523 2.269179 -1.761358 -3.763657 17.938025 -14.501093 14.704674 -8.493951 24.774751 -17.227294 -14.465176 6.152137 -16.582820 -8.128641 -10.882681 -3.933910 -1.735859 15.033174 -15.335338 -10.828202 -6.996171 -3.800086 3.711266 14.844038 -4.383780 -1.097699 -5.018391 -8.371237 16.753497 7.060413 -1.558056 -0.282476 -14.968116 0.690410 9.749843 -5.572772 -18.276940 -1.098729 -12.249203 -1.838134 1.301850 -0.592666 11.247302 -11.328108 -7.658961 2.495912 -3.416780 2.029958 -7.502333 -17.177285 6.776752 -2.742731 -1.388576 6.130223 19.958139 16.596726 11.484943 0.990650 -5.210146 5.073712 -10.965802 -11.940223 8.481753 2.571283 10.666267 5.892546 10.517288 0.560872 3.512758 6.664114 0.169945 5.547236 14.703655 7.154575 16.818498 -5.094886 3.125652 4.714960 -11.706790 10.640392 17.583079 -7.662289 -4.980911 7.183935 2.312047 -6.696768 -8.896122 -2.130076 -5.555182 -7.902374 7.612094 8.082419 -3.599718 -10.118927 26.766895 4.666375 -28.200520 14.218603 0.178328 3.298356 13.809650 -8.604650 5.037448 7.190852 0.073308 8.583641 4.479578 15.273825 -16.348999 2.455625 -1.639102 11.782257 8.864486 -5.017876 -27.446356 3.062879 5.274967 19.338172 11.199135 18.362197 -8.993384 5.653416 -6.771020 -9.398506 -1.274521 -4.605389 10.464100 -3.791433 2.499013 -24.194713 3.900492 +2.218844 1.603426 6.327225 -6.883971 -8.942219 1.887816 -0.915799 -4.108181 1.759645 7.039202 3.298588 -4.420554 -3.499772 11.050719 -4.013225 -6.271550 -0.828670 -2.943154 -0.009673 -2.370852 0.971633 4.855422 -1.124692 0.829038 0.347378 -2.515547 0.002207 4.213876 2.574140 -0.445675 -4.381388 -1.932252 -0.512546 9.227369 0.533690 0.083931 1.094730 14.057397 -6.155198 10.828716 -11.036969 -9.713676 5.350027 0.998545 0.444922 -8.906244 -5.966640 3.850503 -4.654561 -1.827174 5.681862 -0.185774 0.472607 -1.186072 4.519536 4.463426 -13.671778 5.586010 0.702655 -2.139677 -1.227229 -1.946071 0.154349 3.581655 -5.187064 -4.573312 2.549219 4.960916 -4.646711 1.890480 -0.656563 -9.520370 10.260022 2.805664 -6.288333 1.887126 6.201735 -8.533103 7.678157 -8.577543 -9.083841 -0.830598 0.739673 -4.204924 7.900611 1.483978 6.754497 -13.746558 3.852357 -12.334336 6.823151 -8.964577 4.580212 9.678742 -6.753797 3.088892 4.587271 6.630349 8.584398 0.783957 8.660367 6.985253 4.962013 2.294250 5.829072 5.741204 -5.235343 -4.712029 -7.354336 -9.611739 -0.305131 -4.041803 -14.898092 0.521822 -0.097114 2.515969 1.092347 -0.982693 -0.860316 8.543523 -14.235466 -2.525782 3.160089 -1.359557 3.301065 7.861266 -3.191677 2.813506 -2.340281 10.510306 -4.778566 2.827518 -0.753141 3.245737 -6.505037 -5.182118 -10.391135 2.439405 2.881984 -5.438273 -9.026933 -12.228816 -2.450467 5.159708 -2.067162 10.097229 16.877019 -4.571177 -9.366099 9.471275 2.198696 -1.035774 9.397144 1.271164 11.098380 -5.503229 -0.221072 -6.500089 -1.510772 -0.703936 8.110709 3.092802 -2.470526 4.700864 0.264645 -9.233898 8.708956 -3.241078 -4.539323 -6.705234 1.407748 -5.416698 -3.419389 11.008783 -6.508392 8.315605 -3.315636 12.533424 -5.724825 -8.681640 3.229045 -10.721642 0.316818 -6.653471 -1.962031 1.430860 7.905708 -8.885545 -4.327927 -3.373017 -5.198074 -2.983088 2.430986 -3.411401 1.706055 1.434166 2.901798 11.961452 10.987007 2.628029 0.652817 -9.463012 2.978578 4.711827 -2.540444 -11.229445 1.407049 -5.650627 -0.323047 0.037203 -1.128757 2.828496 -5.955648 -5.055843 -2.668278 -4.564868 3.125694 0.755325 -11.774028 2.263616 -2.377033 6.575506 3.626341 5.567061 11.348689 8.459659 7.599634 0.098710 1.631362 -3.295461 0.102168 3.385524 5.348172 -0.513762 3.407519 11.162442 3.889877 1.294001 7.152007 7.085589 0.633762 7.924114 0.803616 13.395251 -2.572305 0.437772 -2.397043 -0.752568 6.549829 16.477491 -2.693239 2.494272 4.663297 3.788788 -2.168342 -6.714647 -0.342147 -4.596474 -1.427655 5.250588 2.923938 -2.967839 -1.594237 9.902980 1.356888 -12.576669 4.827877 0.133357 2.711594 5.576195 -1.636981 -0.371325 4.021150 -7.540270 8.319947 5.500551 5.175927 -7.224757 -4.893286 -0.706101 4.982141 6.066135 5.299653 -12.458419 3.246382 5.604665 9.553776 2.615308 8.829948 -6.873368 -4.682404 3.011700 -5.438262 -4.306158 0.840585 4.383909 -5.283355 2.713311 -7.307358 -8.618230 +1.368510 1.440783 1.488894 -3.004338 -1.675026 0.041781 1.313605 -1.362069 0.130385 2.742797 1.568271 -2.038189 -3.047053 3.514354 -1.181172 -3.000680 0.796812 -1.673636 -0.848828 -1.035136 0.044587 1.330848 -0.054184 -1.597391 1.213766 -0.587488 -0.181741 2.131881 1.801599 -1.317537 -1.891928 -0.107370 1.079266 4.202738 -0.429293 -0.125136 -0.248015 4.576479 -2.829819 3.221551 -5.155873 -3.612693 4.277304 0.421671 -0.598618 -5.357897 -1.732801 1.818532 -1.909952 -1.440640 0.815940 -0.526858 -0.097758 -2.527085 0.361995 4.683432 -6.241334 2.904535 0.741640 -0.724491 -1.536643 -0.572606 1.484788 0.136406 -0.534283 -2.815911 0.644680 0.218506 -2.967615 1.160604 -2.042195 -3.894631 4.136279 1.100075 -1.683799 1.265493 -0.153598 -3.534060 2.335693 -3.308787 -1.787165 -0.987698 1.952396 0.838881 2.231551 0.920596 1.526885 -5.806586 -0.921622 -4.478524 2.814684 -3.519782 3.188590 3.254629 -2.264069 1.810294 0.554712 -0.495977 1.741939 0.436088 3.899203 1.415050 3.219847 -0.662834 1.905994 2.251427 -2.346186 -2.585120 -1.824670 -3.110215 -0.159244 -0.397880 -6.031500 0.442630 -2.767411 -0.086386 1.594889 -1.395261 -0.134258 2.741030 -4.733819 -1.903260 1.324558 -0.715206 2.531515 4.139906 -0.054457 0.339917 -0.808896 3.607759 0.125436 1.028331 -0.881569 1.626119 -1.174436 -5.270978 -2.531927 -0.067408 0.950981 -3.002989 -4.027263 -4.769604 -0.635258 0.611926 -1.275423 2.376275 6.275140 -1.025800 -4.114428 3.109538 1.034203 0.917545 3.840208 0.305511 6.385809 -4.318928 2.039272 -0.486187 1.043944 1.305442 2.947587 -0.784422 -2.402375 1.062965 -0.184523 -4.103084 1.635129 -0.627870 0.110436 0.052869 0.022459 -1.837994 -2.280096 4.130740 -0.853776 4.854670 -1.560400 5.197355 -3.525159 -4.148696 1.986484 -2.683456 -0.834915 -2.274889 -1.439372 0.486286 2.869229 -3.377709 -1.973173 -1.738027 -0.800441 -0.649196 2.940771 -2.125489 0.068648 -0.956343 -0.347217 2.704375 2.519285 -1.221222 1.435946 -4.128876 0.858410 2.671105 0.240877 -6.090907 0.591395 -2.591619 -0.449020 1.562195 -0.779019 1.774584 -0.933960 -2.078345 1.106333 -1.702468 0.778603 -1.642929 -2.756416 0.884417 -1.816549 0.601815 0.761724 4.400911 4.078335 2.255757 0.398988 -0.699940 1.096252 -2.266128 -1.237333 0.761551 0.121779 0.825043 1.877442 2.695067 0.745838 0.568827 3.434032 1.511290 -0.923588 3.550394 1.695226 4.469583 -1.073733 -0.313926 0.508730 -2.394877 2.582330 5.661759 -1.366621 -1.373960 2.187928 1.355058 -0.674851 -3.106147 -1.168878 -1.550059 -2.646540 3.987827 1.056642 -1.388594 -0.922673 5.552150 0.561020 -5.817485 3.361104 0.127814 0.931679 1.194740 -1.614297 0.083939 2.760013 -1.937441 0.882819 1.305669 3.288292 -3.130770 -1.800795 -0.364532 2.884883 1.588770 0.108397 -6.329680 0.426173 2.368988 4.880835 1.989869 3.751400 -1.844351 -0.692288 -0.528098 -0.317452 -0.813555 -0.907841 1.795073 -2.439224 -0.399286 -3.742110 -0.096741 +11.294658 5.098020 16.533751 -23.786077 -29.770872 7.845610 -7.622502 -12.198428 3.842090 10.317819 16.099531 -17.477724 -16.693807 34.823109 -9.086987 -27.460935 -1.333301 -12.446228 -3.090687 -4.566699 0.880917 13.127490 -3.975962 1.060848 2.921715 -4.134248 -5.465479 13.320279 20.766511 -11.945657 -21.899453 -3.028344 -1.036422 33.616697 1.357081 -4.789213 9.052880 52.340026 -10.457290 26.068187 -30.891669 -28.641659 21.605731 2.668500 -4.534609 -24.528683 -20.452625 17.740065 -23.888742 -6.185837 22.522088 -1.253008 -2.726535 -6.101078 11.863179 23.958870 -54.695570 27.644085 5.157857 2.203883 -2.990615 -6.060874 1.844744 5.865431 -5.597312 -18.341458 11.396888 14.611438 -20.188330 1.368360 -7.025644 -35.722082 47.308527 11.279631 -17.590238 7.785692 17.867019 -26.629347 26.732956 -26.846939 -33.265449 -1.261949 3.926503 -9.064070 34.054026 1.963603 15.026192 -49.347662 10.583293 -47.540529 21.750369 -32.847551 18.659037 35.294223 -31.083917 9.313160 15.482700 13.646469 25.665195 6.287277 37.077290 14.477274 11.791940 5.762159 17.527874 12.751784 -15.687322 -10.758338 -21.823843 -35.621144 -4.183381 -7.179717 -54.909998 6.056662 -7.616565 12.532895 6.011928 0.645302 -0.582094 18.852356 -40.675431 -12.868289 7.539182 -5.170868 19.109999 35.291315 -11.718116 7.782592 -11.751864 39.290258 -13.041488 8.288446 -4.386578 11.072649 -8.132406 -29.140072 -40.250073 8.419925 15.221176 -21.729303 -34.759306 -37.889627 -3.007033 6.813702 -10.853635 37.428553 61.832382 -16.119196 -28.745344 37.115705 8.366434 8.247373 40.982377 1.854891 48.363351 -23.151848 1.634632 -13.497531 -5.953969 -5.392006 -3.143130 7.964703 -6.581956 11.450899 5.799909 -21.787333 33.330584 -8.456256 -15.332761 -7.574303 4.475463 -17.220201 -23.123519 39.291768 1.369339 28.701513 6.449641 48.953714 -18.184231 -33.982449 18.397880 -14.572187 0.953223 -20.020567 -12.449674 3.426360 22.980367 -28.109582 -14.930308 -10.327938 -10.409624 -14.176127 10.357337 16.248969 9.123707 6.069300 9.974305 23.270491 40.883419 5.170589 7.351089 -40.889953 8.452830 18.135128 -13.980408 -34.328898 6.281889 -21.428588 1.011398 13.087391 -6.721742 11.068565 -17.509283 -22.492384 -6.657682 -9.210596 17.694643 4.066072 -34.372969 6.002722 -8.602097 14.150434 15.696648 25.106710 40.390594 30.140311 25.035955 0.045349 7.883534 -2.660480 2.991033 0.400081 6.734398 16.574675 14.393681 27.965193 13.656857 6.279138 24.201879 20.062887 -0.303541 30.364107 11.993336 51.762563 -5.585122 -2.169394 -7.978998 -9.518741 27.100373 59.288202 -22.175716 7.181325 16.655216 18.104530 -4.444768 -32.509929 -1.095871 -15.887158 -10.428398 16.523130 4.314848 -4.142582 -8.203083 36.905289 2.070038 -46.997472 22.870839 0.117915 10.611745 18.183647 -3.878513 -0.902965 13.626263 -32.244350 23.177740 21.654875 23.114551 -24.637849 -9.771015 -2.887808 23.317321 0.197799 17.940130 -32.685269 14.628256 21.417413 31.310152 17.271702 16.297458 -23.733603 -22.215976 7.786398 -18.617369 -11.953648 2.620627 16.066571 -22.565301 6.233460 -22.486484 -27.237305 +1.585870 1.983047 2.145741 -3.325399 -3.367001 0.385262 0.132209 -2.007359 0.233337 3.079559 2.193721 -2.929163 -3.912248 4.155633 -2.003281 -4.207566 0.132018 -1.412428 -0.922508 -2.155787 0.208763 1.727516 -0.055750 -1.279510 1.138449 -1.032056 -0.154228 2.789853 3.957094 -1.304054 -2.369702 -0.023833 1.234255 5.132820 -0.202761 -0.634309 0.521390 6.308823 -2.530281 2.712244 -6.193110 -4.641726 4.944211 0.778015 -0.863860 -5.870436 -2.426151 2.371193 -4.645226 -0.512468 1.547784 -0.740230 0.004763 -2.379400 0.765689 5.415424 -8.554777 4.983288 0.490124 -0.717012 -1.568596 -0.762203 1.522939 0.431418 0.168656 -3.344375 0.898961 1.262480 -3.851336 1.237048 -1.964919 -4.603993 5.953751 0.810698 -2.528317 1.245881 0.367448 -3.904552 3.009868 -4.260200 -2.960363 -0.993413 2.416385 0.720881 3.231358 1.050161 1.599691 -7.505969 -1.088182 -6.066771 3.582073 -4.187919 3.886392 4.101985 -4.391445 2.020731 0.989886 -0.808006 2.780075 0.563803 5.154649 1.354621 3.695495 -0.261568 1.737717 2.444124 -2.485828 -2.387401 -2.291546 -4.419372 -0.674611 -0.474188 -8.302733 0.232704 -3.208710 0.940792 1.828151 -1.799402 -0.086223 3.193608 -5.905243 -2.640664 1.164865 -0.771683 3.548986 5.068782 -0.447121 1.128163 -0.862229 5.194666 -0.503870 0.781102 -1.119862 1.784508 -0.813564 -7.044547 -5.018402 0.549288 1.660262 -3.268133 -5.237968 -5.436274 -0.896487 -0.044371 -1.348391 3.259598 8.134187 -1.354324 -5.351970 4.489451 0.157840 1.399167 6.028972 0.278579 7.980722 -4.954450 1.949469 -1.156579 0.562376 1.090466 2.286715 -0.657342 -2.474263 1.219523 0.548161 -3.573768 1.241828 -1.012295 -0.740529 -1.240146 0.299727 -2.335759 -2.713427 5.261953 -0.620828 5.555171 -1.289086 6.895850 -4.423329 -6.303259 2.519340 -3.115854 -0.686051 -1.919892 -1.849886 0.676073 3.622698 -4.486871 -2.482160 -2.077328 -0.636718 -1.259744 3.156426 -0.163558 0.453812 -0.540718 0.263338 3.494264 4.031474 -1.011310 1.696435 -5.447189 0.835438 3.722110 0.043735 -7.658708 0.992153 -3.399844 -0.332923 2.372719 -1.072286 2.063624 -1.127481 -2.744521 0.236922 -2.245181 2.085578 -1.143416 -3.856114 1.578896 -2.616320 0.682982 1.132402 5.014092 5.548442 2.993274 1.392550 -0.402565 1.720735 -2.704669 0.537822 0.907786 1.170932 1.156319 2.223710 3.928150 1.257451 0.755474 3.889168 2.452530 -1.350304 4.444826 2.022501 6.507000 -2.350310 0.168077 -0.527822 -2.280418 3.380303 8.048616 -2.270181 -1.313642 2.534780 2.343033 0.217760 -5.235090 -1.413326 -2.253546 -2.489718 4.360277 1.191206 -1.662083 -1.120410 6.553747 0.823705 -6.920018 4.945693 0.072586 0.935590 0.962339 -1.986978 -1.029308 3.260600 -3.637509 1.297943 2.319689 3.877949 -3.777052 -2.181614 -0.773280 4.145470 1.152195 0.918996 -7.095673 0.760297 3.571150 5.881294 2.797732 4.079651 -2.659019 -2.643686 -0.309607 -1.223937 -1.347996 -0.592408 1.929257 -3.501715 0.385228 -3.467658 -1.850632 +3.509763 1.480151 2.965066 -3.550368 -2.842781 1.545982 -0.257829 -4.348243 0.291231 7.684365 2.861138 -3.204348 -1.664744 5.872368 -2.968360 -3.536250 1.222442 1.346056 -0.247941 -2.220698 -0.278573 1.774418 -1.079832 -2.760516 1.309320 -1.714946 1.451616 2.187390 0.427393 0.931056 -3.576548 -0.967462 0.977278 7.702341 0.761607 0.205882 -0.886480 7.142451 -4.804402 6.106408 -8.910418 -7.069364 6.301070 1.278240 1.423963 -5.647956 -2.784564 2.889600 -0.936156 -3.713270 0.874004 -2.501879 1.287654 -3.571959 0.136282 5.600516 -8.555271 2.090017 1.340656 -3.298498 -4.731838 -0.751079 4.337099 1.923828 -3.922916 -4.847018 1.866187 3.569516 -2.987039 1.747199 -4.315980 -9.189146 5.066064 1.080743 -3.856372 0.819367 -0.281200 -6.090397 4.031043 -2.690459 -4.123435 -1.970838 2.395313 -1.700308 2.484177 3.122511 6.113616 -10.538882 2.265098 -9.042707 5.429787 -4.290379 6.533773 5.650024 -4.526404 2.055464 2.803922 5.106225 4.002303 1.127169 6.613978 3.411277 2.739505 -1.550602 4.114852 4.742848 -4.503677 -4.914972 -3.779593 -5.842875 0.752130 -1.603376 -9.621419 0.642940 -5.463103 1.131169 0.346321 -1.821110 -0.242867 6.991485 -11.502860 -3.633977 2.133322 -1.117265 4.887870 5.587269 -0.042660 2.019221 -0.597441 5.941875 -1.619293 -1.425286 -1.284077 3.307160 -4.782859 -5.545155 -5.047231 1.631639 3.012706 -6.239850 -7.197499 -9.775041 -1.882070 4.076486 -2.086340 5.784433 10.983988 -2.736557 -6.620094 4.030575 -0.219596 -1.742883 8.345110 1.211830 11.380165 -8.595163 4.196572 -1.759056 2.196788 2.228854 4.023143 -1.557450 -3.508091 3.463314 -0.481532 -5.291157 6.775574 -1.710445 -0.329338 -2.066907 1.723336 -1.361958 -1.474526 6.696043 -5.426251 6.451584 -3.726599 9.465309 -6.877026 -5.550958 2.428756 -8.079536 -2.804113 -2.747848 -1.064222 -1.084972 7.679172 -6.147984 -3.404912 -1.698489 -3.258920 0.045652 5.657769 -2.341893 0.210325 -0.844271 -2.203147 6.596344 4.360947 -0.409188 0.890188 -5.672018 0.873482 5.224079 -0.960810 -8.777871 -0.945504 -6.576114 -0.583081 -0.699893 -0.870563 4.360211 -4.233562 -2.926011 0.105696 -2.303080 1.860601 -2.417059 -4.724525 2.590307 -3.658036 2.275669 1.389163 8.019394 6.607592 6.082220 1.922217 -1.875364 2.091458 -5.282981 -2.578559 3.206932 2.136391 2.138139 2.908893 5.207455 0.927247 2.030349 4.015312 0.650422 1.890956 6.770743 1.607564 8.001232 -3.462431 1.907302 0.261129 -3.524155 4.668106 9.936337 -2.407168 -1.556747 2.399062 0.429222 -2.991450 -4.085427 -0.754507 -1.760164 -4.040312 3.087527 4.069658 -0.780813 -3.723280 10.113912 1.806529 -10.643569 6.045210 -0.338153 1.481874 5.394069 -3.361397 1.844698 2.921198 -0.288278 2.893846 3.329783 5.910127 -6.883760 -2.016887 -0.691700 5.666062 4.313992 -0.420336 -10.879371 4.148207 3.760653 7.838789 2.324219 6.334354 -5.105553 0.729950 -0.808022 -2.689740 -1.086338 -0.877870 4.317742 -2.020770 0.059494 -8.175567 -0.321687 +8.789287 2.650756 6.842236 -11.151349 -7.782725 7.112466 -3.473775 -7.510582 1.659841 15.145921 5.959933 -3.694539 -3.174225 13.420487 -5.811172 -10.027589 3.704051 -1.594454 -0.196055 -5.356369 -3.613098 4.741305 -2.827755 -7.127095 5.277043 -7.024326 0.057061 6.912479 0.374624 -0.235103 -9.474271 -1.916687 -2.964139 20.022346 0.239669 -1.636536 3.966292 20.605372 -10.648280 13.101726 -16.583422 -15.310790 14.967038 2.128488 0.326638 -7.450502 -6.235579 4.558864 -3.200810 -5.570334 5.314078 -8.425146 2.092255 -5.034754 3.654320 13.896802 -22.742215 4.040304 2.008909 -3.236754 -9.467114 -4.070952 8.290415 3.093957 -8.697486 -13.174410 6.671637 10.818259 -6.573818 1.202485 -10.685040 -22.443353 14.435175 6.925515 -6.685405 2.114883 1.851250 -16.804559 8.996791 -5.329186 -12.608875 -4.351919 5.679992 -8.072383 11.878162 4.361652 14.609263 -24.287883 7.727222 -22.880518 9.826081 -11.547949 16.774887 16.371262 -10.499693 3.370543 8.371587 14.745517 8.157972 0.817578 19.160857 5.731466 3.964879 -3.208486 10.820746 8.845624 -11.736701 -10.092984 -7.864828 -12.712276 -0.173559 -4.715909 -22.754601 2.684283 -12.998405 0.846455 0.622012 -1.117146 -4.075101 17.417872 -24.860394 -10.471150 3.524412 -3.487842 11.634486 12.543792 -1.101081 3.097181 0.252983 14.876445 -4.826542 -3.044358 -6.812198 7.943781 -8.967793 -8.947965 -15.239293 1.036284 7.976026 -17.553414 -19.375248 -20.006645 -5.002646 8.520069 -4.558703 22.315974 30.876593 -7.556366 -13.488654 11.437191 -1.139149 0.174950 23.529477 3.614476 25.563983 -19.429638 8.596702 -6.175978 4.508437 2.217626 2.211156 -3.389805 -3.403740 8.790581 2.399978 -1.372706 21.760792 -4.389953 -1.492351 -2.443971 3.726903 -3.375708 -7.864596 18.684251 -7.203427 15.716923 0.434652 26.048223 -15.595144 -14.103301 8.815408 -12.087082 -4.087630 -10.320922 -4.308271 -2.371715 14.794867 -11.638533 -9.785422 -4.358939 -5.723257 -0.060911 10.918769 6.042654 3.919087 -2.568170 -4.523730 14.925550 16.190639 0.493144 3.501427 -15.987049 5.208511 13.308002 -7.161428 -15.819748 -1.253117 -12.073000 -0.958270 1.720357 -1.653110 9.632236 -12.583739 -8.638862 -0.342110 -1.944293 4.932119 -1.085571 -19.448967 6.445084 -8.197348 2.280661 6.273800 17.110673 17.795233 13.986646 6.285742 -5.529278 2.712722 -8.674094 -5.111368 4.818440 2.886295 11.122861 8.270995 14.552801 3.147595 6.132576 8.746795 4.944942 6.328186 15.634949 4.750001 21.964684 -5.125289 3.370379 -1.874813 -9.436011 13.766377 25.867546 -8.396444 -1.482102 7.255764 5.317160 -6.446015 -14.977807 -0.570018 -5.937015 -6.560381 4.222829 6.375147 -0.973598 -8.990054 26.032778 4.532167 -25.781009 12.538251 -1.858371 4.300843 13.564316 -5.896961 3.699913 6.537068 -6.095527 9.777003 8.624961 14.462712 -15.316203 0.494060 -0.888641 12.466134 1.746244 1.615553 -21.575230 10.591116 7.621866 16.811744 10.608337 14.067380 -10.237359 -0.986050 -0.998205 -9.416457 -3.737811 0.429579 10.254608 -10.131694 5.836150 -20.055604 -2.575430 +4.285602 1.565853 3.961615 -4.628254 -2.996510 1.946571 0.756794 -4.296869 0.926684 9.593617 3.162214 -3.033289 -3.263246 6.695616 -2.848176 -4.896008 2.264031 -0.460945 0.051577 -2.200380 -0.277025 2.370147 -1.062733 -3.385438 2.217298 -2.117531 1.232584 3.556610 0.771731 0.987521 -4.751018 -0.939266 0.538927 9.523973 0.273827 -0.073504 -0.179650 9.747339 -7.112288 7.760307 -10.134554 -9.343401 8.196330 1.349272 0.667312 -5.949256 -2.193699 3.300304 -2.258814 -4.518823 2.128370 -2.744752 1.736476 -4.364846 0.787851 7.360265 -11.869340 2.488483 1.044925 -2.745958 -5.341500 -1.691203 4.610550 2.136270 -4.367141 -5.705274 2.864973 3.085799 -4.379045 2.078750 -5.024498 -10.588959 6.696465 2.119434 -4.409102 1.493689 0.758028 -8.186355 5.190794 -3.838152 -5.266059 -2.315402 2.570091 -2.433196 4.497711 3.105060 6.982563 -13.048906 2.365236 -10.750888 6.971976 -6.071669 7.947463 7.690128 -5.593812 2.950235 3.309031 6.780486 4.030412 -0.253955 8.772655 4.391591 4.101537 -1.646610 4.875848 5.785886 -6.391902 -6.035795 -5.258219 -6.589538 0.617736 -2.531149 -11.839551 0.478719 -6.373308 0.973691 1.986947 -2.699869 -1.331821 8.482802 -14.362981 -4.015009 2.263755 -1.392631 6.158765 6.956944 -0.429565 2.023622 -0.185088 8.260564 -1.932112 -1.098324 -2.145273 3.856782 -5.551681 -5.654693 -5.556697 1.290104 3.539472 -7.659703 -9.251159 -12.191513 -2.118014 4.735463 -2.000487 7.771968 14.027159 -2.777790 -7.826922 5.616823 -1.228848 -0.813843 9.949369 1.306865 12.611226 -10.181713 5.012371 -2.580629 3.185341 2.187977 6.183589 -1.266145 -3.841700 3.870142 -0.213049 -4.275936 7.050005 -1.750750 -0.281148 -3.561897 1.427525 -2.828368 -2.505509 9.155468 -6.767806 7.868281 -3.888360 11.840816 -8.131844 -7.161805 3.416338 -9.718002 -2.879880 -5.397527 -2.510474 -0.562947 8.251519 -7.890309 -4.422140 -3.214089 -2.796386 0.008705 6.274375 -3.453710 0.407493 -1.467223 -1.968226 8.570514 5.644025 -0.471411 0.916362 -7.695857 1.037977 5.964102 -2.082113 -10.322978 -0.327921 -7.169612 -0.643189 0.734532 -1.058044 4.883345 -5.336648 -4.552220 0.596502 -2.384454 1.864118 -2.852131 -8.457002 2.797477 -3.161612 1.965665 2.642702 9.215424 8.396556 6.722306 2.377074 -2.467266 2.710536 -5.478493 -3.936868 3.370819 2.012205 3.177896 3.399859 6.871971 1.410566 1.898265 4.795116 2.245292 1.330788 8.045652 2.729373 9.874483 -3.001678 1.395659 0.618326 -4.616445 5.611061 11.555621 -3.403338 -1.198928 3.544576 1.594093 -3.179973 -4.720359 -1.045498 -3.261078 -3.767490 3.764474 3.691229 -1.797819 -3.963550 12.383460 2.008911 -13.459176 6.697083 -0.295126 2.142103 6.504517 -3.873392 1.756403 3.749199 -2.172117 5.074277 3.382546 7.012883 -7.514952 -1.390548 -0.797298 6.535763 4.519824 -0.378048 -12.838142 3.820796 3.846968 9.649916 4.511378 8.388051 -5.414628 0.733224 -1.650043 -4.084536 -1.447860 -1.291122 5.576448 -2.885532 0.626206 -10.742287 -0.668429 +3.979977 1.697866 3.310233 -4.239349 -3.352453 1.896340 -0.406128 -4.665583 0.620710 8.091293 3.331106 -3.586107 -2.366635 6.612507 -3.283454 -4.287150 1.675740 0.645214 -0.074247 -2.248296 -0.240103 2.028903 -1.154987 -2.862696 1.447139 -1.757738 1.266205 2.603801 1.413547 0.603998 -4.690966 -0.828469 0.809238 8.690205 0.830943 -0.338230 -0.303949 8.509837 -5.231963 6.625535 -9.771900 -7.533530 6.819804 1.449721 1.053900 -6.352544 -3.103243 3.155275 -2.033669 -3.619622 1.679352 -2.901696 1.392665 -3.630175 0.502933 6.726209 -10.346471 3.031510 1.386875 -2.580413 -4.503291 -1.095623 4.658469 2.112754 -3.759154 -5.300401 2.496176 3.782997 -3.846571 1.836137 -4.843004 -10.218007 6.176871 1.489720 -4.534390 0.879803 0.084950 -7.319458 4.586691 -3.745159 -4.894569 -1.856260 2.609223 -1.777529 3.642107 2.931673 6.300751 -11.924702 2.172042 -10.257450 5.981965 -5.317731 7.305441 6.667611 -5.528324 2.033574 2.962484 5.288272 4.564275 1.077833 7.755527 3.821583 3.102213 -1.921548 4.478480 5.109585 -4.857549 -5.055947 -4.050013 -6.439751 0.220020 -1.564798 -11.243131 0.658310 -6.209468 1.555068 0.742289 -2.033742 -0.613118 7.482674 -12.340272 -4.491845 1.896997 -1.254035 5.802741 6.868887 -0.285003 2.374553 -0.731925 7.243474 -1.656916 -1.342771 -1.809770 3.467675 -5.034176 -6.643013 -6.278278 1.650898 3.620405 -6.908641 -8.415338 -10.818044 -2.037131 3.627663 -2.109486 6.926447 12.505022 -2.839697 -7.358266 5.052009 -0.561819 -1.213653 9.918249 1.054911 12.681035 -9.592022 4.836720 -2.080789 2.557312 1.661591 4.055198 -1.594057 -3.544259 3.351390 -0.298328 -5.346140 6.910449 -1.521626 -0.553794 -2.441823 1.536071 -1.797417 -2.336006 8.005316 -5.637658 7.098601 -3.473364 10.899214 -7.581213 -6.838314 3.101729 -8.029966 -2.561954 -3.189993 -1.715584 -0.781824 8.278961 -6.926350 -3.873150 -1.976792 -2.945057 -0.162630 5.948468 -1.530882 0.307194 -0.935574 -2.064971 7.411805 5.410501 -0.494191 1.397212 -6.744277 1.008002 5.915647 -1.571550 -9.787956 -0.552538 -7.255378 -0.539004 -0.075871 -1.104666 4.613769 -4.877952 -4.042301 0.048539 -2.379938 2.656218 -2.349856 -6.190769 2.956890 -4.047428 1.991657 1.914111 8.659384 7.467635 6.654453 2.434154 -2.440511 2.474122 -5.450280 -2.456248 3.093352 2.364779 2.562755 3.139842 6.006093 1.068069 1.961699 4.268217 1.194797 1.607805 7.467669 2.210857 9.121595 -3.500942 1.944376 0.059325 -4.434182 5.359547 11.520401 -3.264111 -1.477659 2.812575 1.172007 -2.851322 -5.319869 -0.929307 -2.409566 -4.300257 3.381923 3.777475 -1.029741 -4.060805 11.268561 1.977961 -11.886775 6.718664 -0.375716 1.566596 5.827783 -3.590073 1.548315 3.223709 -1.554013 3.713525 3.605511 6.599650 -7.033586 -2.282653 -0.881280 6.254958 3.947840 -0.315122 -11.635858 4.316828 4.395952 8.940797 3.651565 6.915146 -5.425711 0.235235 -0.992930 -3.278400 -1.368927 -1.177616 5.040098 -2.890421 0.263499 -8.721027 -0.863830 +4.305673 1.717860 4.621521 -4.347927 -3.083284 2.457680 -0.463795 -4.894444 0.532249 9.973438 3.144187 -3.696887 -4.265022 6.892112 -3.341455 -5.895930 2.107769 1.078607 0.135252 -3.827932 -1.051629 1.812985 -1.270223 -3.335987 2.368909 -2.830198 1.641036 3.602396 1.429711 1.052394 -4.585668 -0.987454 0.623357 10.837822 0.647176 0.434333 -0.158910 10.910782 -5.572202 8.109556 -11.027932 -10.339747 8.640494 1.706544 1.048181 -5.230919 -2.011483 4.035622 -4.881964 -3.767862 2.122815 -3.205824 1.342314 -4.707102 0.637198 8.114858 -13.421189 3.948076 0.934386 -3.631152 -6.425593 -1.675070 5.148493 1.677165 -3.398113 -6.113264 2.883073 4.338281 -5.257314 2.569060 -5.785416 -11.380917 6.684078 2.170508 -4.724274 1.686233 0.797111 -6.598986 5.087382 -4.072505 -6.038787 -3.005687 3.364330 -2.949079 5.071974 4.550511 7.189789 -14.449710 2.700584 -12.197563 7.685206 -6.238127 9.240888 8.459984 -6.263932 3.609681 3.997761 5.559730 3.503673 -0.143284 9.561114 3.277414 3.258966 -1.211955 5.256719 5.515578 -6.675315 -6.361691 -5.314382 -7.311395 0.266618 -2.383704 -11.122586 0.257638 -8.056954 2.559378 1.791281 -1.749319 -1.827811 7.009598 -15.785960 -5.288369 2.124750 -1.745540 8.138429 7.175545 -0.253280 2.869886 -0.001787 9.169123 -2.577467 -2.053653 -2.820935 4.273426 -3.563558 -6.494812 -7.810992 1.505517 4.515848 -7.920050 -10.528256 -12.596784 -3.075958 4.868174 -2.278813 9.616491 15.684469 -3.079993 -8.168178 6.333813 -2.967871 0.725869 12.009926 2.014224 14.180639 -11.332495 5.517351 -2.560047 3.311079 2.835415 4.192129 -1.770778 -4.029186 4.709802 0.910678 -1.389762 6.511175 -2.665116 -0.708303 -4.639670 1.890302 -2.440331 -2.682593 9.613442 -6.739243 8.322430 -3.372258 13.463598 -9.218063 -8.824267 3.649315 -10.678077 -3.199265 -4.300359 -2.459772 -2.023854 9.070549 -9.147166 -5.420432 -3.219998 -2.768848 0.064139 6.665625 -0.711351 0.415927 -1.325682 -2.206653 9.500001 6.369621 -0.397665 0.955679 -9.069373 0.555617 6.610876 -1.707256 -10.675840 0.205551 -7.570841 -0.853143 1.494587 -0.920826 5.148319 -5.743657 -4.409786 -0.006537 -2.588988 3.077744 -2.640698 -8.229376 3.403308 -3.402989 1.048400 3.585134 10.285073 9.499997 7.299056 2.669759 -2.282646 2.906425 -6.018281 -2.602930 3.278665 2.521300 4.914485 3.700534 5.947959 1.688969 2.161116 4.822567 1.850884 1.137666 8.795886 3.020074 11.222737 -4.178290 2.405554 0.321256 -5.078077 6.009179 12.674940 -5.212687 -1.447925 4.279956 1.675029 -2.451483 -6.783433 -1.307268 -3.589990 -4.172400 3.927759 4.408838 -1.981221 -4.647234 13.740226 2.090293 -14.554987 8.418360 -0.158864 1.763316 6.474394 -4.154430 0.987264 4.368510 -3.057715 4.416393 4.098082 7.948605 -8.806201 -0.105258 -1.226287 7.853395 4.165447 -0.518132 -13.360588 3.852598 4.461246 10.123853 5.479002 7.973118 -5.867697 -0.535088 -1.794086 -5.299984 -1.850185 -0.778200 6.209556 -2.221722 0.940553 -10.569500 -1.451549 +5.689929 2.201165 6.438558 -6.159132 -5.120553 2.738020 1.073923 -6.702895 1.226494 15.145391 4.781249 -5.039335 -3.250659 9.660423 -4.384840 -5.430718 3.038329 1.195396 0.288974 -3.663102 -0.720881 3.372285 -1.767644 -4.192189 2.774304 -3.166064 2.133383 4.704748 -1.114983 1.931775 -5.451812 -1.763498 0.801137 13.369098 0.796700 0.249836 -1.414892 13.023093 -10.087094 12.095741 -15.087086 -12.577649 11.061364 2.101778 2.837982 -8.397103 -3.732223 5.327550 -1.053870 -7.625690 2.142153 -3.949398 3.213346 -6.214816 0.445514 9.253460 -15.005813 1.707207 2.011097 -6.671623 -8.685751 -0.850006 6.851239 4.075110 -7.878799 -8.272566 3.347110 5.190666 -4.592122 2.802862 -6.771062 -15.449514 7.326162 2.146653 -6.207000 1.883030 0.923922 -10.424628 7.590630 -4.577924 -7.673227 -3.704299 3.082845 -5.700431 4.837161 4.840403 11.616585 -18.066600 4.924900 -15.450152 10.073782 -7.555126 10.758165 10.364087 -6.040282 4.265008 5.336684 9.624685 6.393458 0.972687 11.572039 6.452493 5.467444 -1.521318 7.553217 8.670885 -9.163094 -9.017710 -8.145796 -9.952683 1.930049 -3.629594 -14.389586 1.099138 -8.387508 2.040963 1.995935 -3.254541 -0.917050 13.583503 -19.870363 -4.376661 4.180457 -1.972332 7.419228 9.410023 -0.236258 2.710743 -0.269648 10.740330 -3.903697 -1.756452 -1.719580 6.085279 -8.339067 -6.796499 -7.208356 2.642458 4.741494 -10.602809 -12.198226 -17.531048 -3.102387 8.143592 -3.530729 11.073200 19.866306 -4.862293 -11.002080 7.031624 -0.868204 -3.678327 12.835358 2.399568 18.384762 -14.283197 6.061713 -4.708972 3.532102 4.129019 11.387727 -1.622149 -5.587644 6.862155 -0.532192 -8.272896 12.716399 -2.725976 -0.504405 -3.457267 3.127525 -2.528104 -2.696381 11.491115 -10.154875 10.881916 -6.204840 16.734558 -10.962479 -9.134064 4.218955 -13.775368 -4.489102 -6.338139 -2.181443 -1.053303 12.354477 -10.218341 -5.998282 -4.254941 -6.205597 0.149352 9.228503 -5.767143 0.975532 -1.144641 -4.004010 12.564418 7.257496 0.090937 0.442913 -10.303523 1.667718 7.384207 -2.211196 -14.000244 -1.846929 -10.701554 -0.927829 -0.783952 -1.174226 7.987396 -8.022304 -4.919574 0.603234 -3.863135 1.721126 -4.193224 -10.948376 4.146846 -4.364672 4.506336 3.119687 13.339060 11.631076 10.791139 3.374007 -2.414027 2.499753 -7.962472 -5.993146 5.371487 3.435195 3.564777 4.812494 9.328269 1.975527 3.651636 7.017049 1.464654 3.564098 11.710659 1.770666 13.305293 -5.636019 2.818643 1.177052 -5.331791 7.895068 15.671875 -3.684593 -2.518359 4.431342 0.785221 -6.146162 -5.744459 -0.531325 -3.670180 -4.887069 4.935061 7.497881 -1.524755 -6.287723 16.868632 3.157484 -19.298263 9.675765 -0.857934 3.004800 10.313523 -5.057224 3.987126 4.498669 -0.727918 6.478198 5.822519 9.621885 -12.329498 -2.755756 -0.672182 9.160306 7.853325 -0.000960 -20.790453 5.407045 4.820691 12.737751 3.699650 13.054753 -9.170778 1.710562 -1.003728 -6.049031 -2.515447 -1.245315 7.268703 -3.180323 1.209727 -15.714462 0.071562 diff --git a/src/test-suite/sanity_check.sh.cmake b/src/test-suite/sanity_check.sh.cmake index a8467b2b..ac58deda 100644 --- a/src/test-suite/sanity_check.sh.cmake +++ b/src/test-suite/sanity_check.sh.cmake @@ -25,77 +25,8 @@ else fi SEED_VERSION=$2 - -Absolute_path_of_RepresentationFile=./vocabulary/seedEmbeddingVocab-300-${SEED_VERSION}.txt - -ORIG_FILE=oracle/${EncodingType}_${SEED_VERSION}/ir2vec.txt - -VIR_FILE=ir2vec.txt - - -while IFS= read -r d -do -../bin/ir2vec -${PASS} -vocab $Absolute_path_of_RepresentationFile -level p -o ${VIR_FILE} ${d} &> /dev/null -done < index-${SEED_VERSION}.files - -TEMP=temp_${EncodingType}_${SEED_VERSION} - -if ls *${VIR_FILE} 1> /dev/null 2>&1 -then - mkdir -p ${TEMP} - mv *${VIR_FILE} ${TEMP}/ - - - d=$(diff <(sed -e 's/^ *#[0-9]* *//g' ${ORIG_FILE}) <(sed -e 's/^ *#[0-9]* *//g' ${TEMP}/${VIR_FILE})) - if [ "$d" == "" ] - then - echo -e "${GREEN}${BOLD}[Test Passed] Vectors of Oracle and Current version of p-level are Identical.${NC}" - else - echo -e "$(tput bold)${RED}[Test Failed] Vectors of Oracle and Current version of p-level are Different.${NC}" - - exit 1 - fi -else - echo -e "$(tput bold)${RED}[Error] No embeddings are generated.${NC}" - exit 1 -fi - -ORIG_FILE_F=oracle/${EncodingType}_${SEED_VERSION}_f/ir2vec.txt - -VIR_FILE_F=ir2vec_f.txt - - -while IFS= read -r d_f -do -../bin/ir2vec -${PASS} -vocab $Absolute_path_of_RepresentationFile -level f -o ${VIR_FILE_F} ${d_f} &> /dev/null -done < index-${SEED_VERSION}.files - - -TEMP_F=temp_${EncodingType}_${SEED_VERSION}_f - -if ls *${VIR_FILE_F} 1> /dev/null 2>&1 -then - mkdir -p ${TEMP_F} - mv *${VIR_FILE_F} ${TEMP_F}/ - # removing demangled file and function names before '=' - sed 's/.*=//' ${ORIG_FILE_F} > orig_file_f.txt - sed 's/.*=//' ${TEMP_F}/${VIR_FILE_F}> vir_file_f.txt - d_f=$(diff orig_file_f.txt vir_file_f.txt ) - - if [ "$d_f" == "" ] - then - echo -e "${GREEN}${BOLD}[Test Passed] Vectors of Oracle and Current version of f-level are Identical.${NC}" - - else - echo -e "$(tput bold)${RED}[Test Failed] Vectors of Oracle and Current version of f-level are Different.${NC}" - exit 1 - fi -else - echo -e "$(tput bold)${RED}[Error] No embeddings are generated.${NC}" - exit 1 -fi - - +VOCAB_PATH="./vocabulary/seedEmbeddingVocab-llvm14.txt" +IR2VEC_PATH="../bin/ir2vec" functions=("main" "buildMatchingMachine" "search" "BellamFord" "BFS" "isBCUtil" "insertionSort" "binomialCoeff" "find" "countParenth" "boruvkaMST" "maxStackHeight" "badCharHeuristic" "bpm" "count" "getMaxUtil" "buildSuffixArray" "countOnes" "countStrings" "countRec" "countWays" "AP" "cutRod" "isCyclic" "isDivisible" "DFS" "editDist" "eggDrop" "isSC" "isConnected" "printClosest" @@ -104,38 +35,75 @@ functions=("main" "buildMatchingMachine" "search" "BellamFord" "BFS" "isBCUtil" "selectKItems" "getMinDiceThrows" "countSort" "subset_sum" "SolveSudoku" "SCC" "solveKTUtil" "topologicalSort" "transitiveClosure" "insertSuffix" "tugOfWar" "isUgly" "Union" "printVertexCover" "findMaxProfit" "solveWordWrap") -ORIG_FILE_ONDEMAND=oracle/${EncodingType}_${SEED_VERSION}_onDemand/ir2vec.txt -VIR_FILE_ONDEMAND=ir2vec_on.txt -while IFS= read -r d_on -do -for func in "${functions[@]}" -do - ../bin/ir2vec -${PASS} -vocab $Absolute_path_of_RepresentationFile -level f -funcName=$func -o ${VIR_FILE_ONDEMAND} ${d_on} &> /dev/null -done +perform_vector_comparison() { + LEVEL=$1 + FILE_PREFIX=$2 + echo -e "${BLUE}${BOLD}Running ir2vec on ${FILE_PREFIX}-level for ${EncodingType} encoding type" -done < index-${SEED_VERSION}.files + ORIG_FILE=oracle/${EncodingType}_${SEED_VERSION}_${FILE_PREFIX}/ir2vec.txt + VIR_FILE=ir2vec_${FILE_PREFIX}.txt -TEMP_ONDEMAND=temp_${EncodingType}_${SEED_VERSION}_ONDEMAND + # if file prefix is p or f, run the first while loop, else, run the second while loop -if ls *${VIR_FILE_ONDEMAND} 1> /dev/null 2>&1 -then - mkdir -p ${TEMP_ONDEMAND} - mv *${VIR_FILE_ONDEMAND} ${TEMP_ONDEMAND}/ - # removing demangled file and function names before '=' - sed 's/.*=//' ${ORIG_FILE_ONDEMAND} > orig_file_on.txt - sed 's/.*=//' ${TEMP_ONDEMAND}/${VIR_FILE_ONDEMAND}> vir_file_on.txt - d_on=$(diff orig_file_on.txt vir_file_on.txt ) - - if [ "$d_on" == "" ] - then - echo -e "${GREEN}${BOLD}[Test Passed] Vectors of Oracle and Current version of on-demand are Identical.${NC}" - exit 0 + if [[ "$FILE_PREFIX" == "p" || "$FILE_PREFIX" == "f" ]]; then + while IFS= read -r d; do + ${IR2VEC_PATH} -${PASS} -vocab=${VOCAB_PATH} -level ${LEVEL} -o ${VIR_FILE} ${d} &> /dev/null + done < index-${SEED_VERSION}.files + wait else - echo -e "$(tput bold)${RED}[Test Failed] Vectors of Oracle and Current version of on-demand are Different.${NC}" - exit 1 + while IFS= read -r d_on + do + for func in "${functions[@]}" + do + ${IR2VEC_PATH} -${PASS} -vocab=${VOCAB_PATH} -level ${LEVEL} -funcName=$func -o ${VIR_FILE} ${d_on} &> /dev/null + done + done < index-${SEED_VERSION}.files + wait fi -else - echo -e "$(tput bold)${RED}[Error] No embeddings are generated.${NC}" - exit 1 -fi + + TEMP=temp_${EncodingType}_${SEED_VERSION}_${FILE_PREFIX} + if [[ "$LEVEL" == "p" ]]; then + if ls *${VIR_FILE} 1> /dev/null 2>&1; then + mkdir -p ${TEMP} + mv *${VIR_FILE} ${TEMP}/ + + d=$(diff <(sed -e 's/^ *#[0-9]* *//g' ${ORIG_FILE}) <(sed -e 's/^ *#[0-9]* *//g' ${TEMP}/${VIR_FILE})) + if [ "$d" == "" ]; then + echo -e "${GREEN}${BOLD}[Test Passed] Vectors of Oracle and Current version of ${FILE_PREFIX}-level are Identical.${NC}" + else + echo -e "$(tput bold)${RED}[Test Failed] Vectors of Oracle and Current version of ${FILE_PREFIX}-level are Different.${NC}" + exit 1 + fi + else + echo -e "$(tput bold)${RED}[Error] No embeddings are generated.${NC}" + exit 1 + fi + else + if ls *${VIR_FILE} 1> /dev/null 2>&1 + then + mkdir -p ${TEMP} + mv *${VIR_FILE} ${TEMP}/ + # removing demangled file and function names before '=' + sed 's/.*=//' ${ORIG_FILE} > orig_file_${FILE_PREFIX}.txt + sed 's/.*=//' ${TEMP}/${VIR_FILE}> vir_file_${FILE_PREFIX}.txt + d_f=$(diff orig_file_${FILE_PREFIX}.txt vir_file_${FILE_PREFIX}.txt ) + + if [ "$d_f" == "" ] + then + echo -e "${GREEN}${BOLD}[Test Passed] Vectors of Oracle and Current version of ${FILE_PREFIX}-level are Identical.${NC}" + + else + echo -e "$(tput bold)${RED}[Test Failed] Vectors of Oracle and Current version of ${FILE_PREFIX}-level are Different.${NC}" + exit 1 + fi + else + echo -e "$(tput bold)${RED}[Error] No embeddings are generated.${NC}" + exit 1 + fi + fi +} + +perform_vector_comparison "p" "p" +perform_vector_comparison "f" "f" +perform_vector_comparison "f" "onDemand" 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] diff --git a/vocabulary/seedEmbeddingVocab-llvm14.txt b/vocabulary/seedEmbeddingVocab-llvm14.txt new file mode 100644 index 00000000..4b8161fd --- /dev/null +++ b/vocabulary/seedEmbeddingVocab-llvm14.txt @@ -0,0 +1,63 @@ +add:[0.046384546905756, 0.0594622828066349, -0.008738556876778603, -0.09920377284288406, -0.021937735378742218, -0.020994944497942924, 0.042849063873291016, -0.025885706767439842, -0.10254453122615814, 0.06232951208949089, -0.023098809644579887, 0.09337335079908371, -0.14626626670360565, -0.10664544999599457, 0.00782080553472042, -0.09775744378566742, -0.05301147699356079, 0.15039269626140594, -0.025710653513669968, -0.11124534159898758, -0.0820975974202156, -0.01960432529449463, -0.08350108563899994, -0.04254687950015068, 0.027670659124851227, -0.0833556279540062, 0.039012786000967026, 0.07032956928014755, 0.08571875840425491, 0.12346508353948593, 0.014236622489988804, -0.10591094940900803, -0.024106940254569054, 0.12072230130434036, 0.00013435556320473552, 0.04688221961259842, -0.11476410925388336, 0.07068025320768356, -0.014285637997090816, -0.1355341523885727, -0.0202080886811018, -0.15243367850780487, 0.05576050281524658, 0.034838996827602386, 0.03585990518331528, -0.1626204252243042, -0.020048337057232857, 0.04126017913222313, -0.03789879009127617, -0.054623980075120926, -0.020021410658955574, 0.004468117840588093, -0.007053692825138569, -0.03759050369262695, -0.021369563415646553, -0.03619550168514252, -0.03773334622383118, -0.06816784292459488, 0.012492646463215351, -0.10802188515663147, -0.07607489824295044, -0.07646114379167557, 0.0974913239479065, -0.0853271558880806, -0.05148208141326904, -0.06681949645280838, -0.036023061722517014, -0.02984270267188549, 0.035551197826862335, 0.04114691913127899, -0.12019188702106476, -0.08004078269004822, -0.13122479617595673, 0.09250470250844955, -0.024808205664157867, 0.040385521948337555, -0.02369862236082554, -0.09487166255712509, -0.03644818067550659, 0.1913861632347107, -0.07051970809698105, -0.09365154057741165, -0.014864829368889332, 0.045573022216558456, 0.025493981316685677, 0.03890857473015785, 0.0038107663858681917, -0.045031651854515076, 0.023629499599337578, -0.10542366653680801, -0.10650421679019928, -0.03827759996056557, 0.11509735137224197, 0.06649468839168549, -0.034876853227615356, 0.06847449392080307, 0.09570500999689102, 0.05365150794386864, -0.025522490963339806, -0.17063209414482117, 0.06359317898750305, -0.014425218105316162, 0.06073734164237976, 0.012579779140651226, 0.07756417244672775, -0.01823129691183567, -0.07610666006803513, -0.033435214310884476, -0.029963135719299316, -0.07662340253591537, -0.0024605898652225733, -0.1196705773472786, -0.09774750471115112, -0.019212661311030388, -0.07677201181650162, -0.25084418058395386, -0.0203778725117445, -0.04943239316344261, -0.07334646582603455, -0.0310943815857172, -0.17821015417575836, -0.05928649380803108, 0.0903557762503624, -0.08971165120601654, 0.0777135044336319, -0.04481280967593193, 0.044119663536548615, -0.018885381519794464, 0.02107980102300644, -0.008005425333976746, -0.04006204381585121, 0.02286948636174202, -0.07331131398677826, 0.015241000801324844, 0.05747197940945625, -0.029900845140218735, -0.015340602956712246, 0.0004112457681912929, 0.022515540942549706, -0.01347348652780056, -0.10854203999042511, -0.02399904653429985, -0.04735364019870758, -0.0007470859563909471, -0.025841491296887398, -0.1299496591091156, 0.07075072824954987, -0.06200660392642021, -0.050801075994968414, 0.0332438088953495, -0.13590414822101593, 0.057748474180698395, 0.055054303258657455, 0.09730082005262375, 0.058205496519804, -0.038864318281412125, 0.031467143446207047, 0.02592959627509117, -0.013965032994747162, 0.032369792461395264, -0.1397569328546524, -0.03222091868519783, -0.0385235920548439, 0.08906228095293045, -0.08240947872400284, 0.13719332218170166, -0.14905469119548798, -0.17394456267356873, -0.03572476655244827, -0.09959212690591812, 0.034003764390945435, -0.08690525591373444, 0.04493699222803116, 0.06318134069442749, -0.17041659355163574, 0.08207621425390244, 0.020569350570440292, -0.02390347421169281, -0.03720187023282051, -0.0019406259525567293, -0.0036602248437702656, -0.217180535197258, -0.043392788618803024, -0.09687988460063934, -0.003429011208936572, -0.11670633405447006, 0.04672748222947121, -0.03994793817400932, -0.08722764253616333, -0.08789511024951935, 0.025213612243533134, 0.01708802580833435, 0.07144726812839508, -0.16078628599643707, -0.06079339608550072, 0.025550685822963715, 0.08527641743421555, -0.10289996862411499, 0.07943151146173477, 0.050589919090270996, 0.024381741881370544, -0.011006148532032967, 0.0743141621351242, 0.048793818801641464, 0.010369102470576763, -0.053210727870464325, -0.003741669934242964, -0.01533458847552538, -0.08610201627016068, 0.0011396135669201612, 0.05464635416865349, 0.060005106031894684, 0.1181836947798729, 0.04137644171714783, 0.03515975549817085, -0.029417626559734344, -0.026368824765086174, 0.020546654239296913, 0.019791657105088234, 0.0794949159026146, -0.0891631618142128, -0.04349301755428314, 0.01283347886055708, 0.10969200730323792, 0.06783386319875717, 0.05884966254234314, 0.034432753920555115, -0.030973412096500397, 0.09864235669374466, -0.04142390936613083, -0.08152686804533005, 0.010870705358684063, -0.025958765298128128, 0.07408973574638367, 0.06550996005535126, -0.10267442464828491, 0.043834611773490906, 0.030527060851454735, 0.06695416569709778, 0.03406435251235962, 0.05961037799715996, 0.020221879705786705, 0.09613077342510223, 0.097548708319664, 0.09470251202583313, -0.0538051575422287, 0.04845820367336273, -0.005898110568523407, -0.08445708453655243, 0.06933367252349854, 0.1928267925977707, 0.09245990216732025, 0.06287931650876999, -0.011655079200863838, -0.001718662679195404, -0.08621766418218613, 0.01899087242782116, 0.05773571506142616, -0.1220802515745163, 0.03326070308685303, 0.0614115409553051, -0.08069805055856705, -0.014578379690647125, 0.14160874485969543, -0.07087865471839905, -0.11159379035234451, 0.0036460086703300476, -0.016717126592993736, 0.009662550874054432, 0.04259321466088295, -0.03648771718144417, 0.027404101565480232, 0.06617585569620132, 0.06393805891275406, 0.061013877391815186, 0.05048688128590584, 0.046415816992521286, -0.10877351462841034, 0.11129684746265411, 0.06109414994716644, 0.04121195897459984, 0.04335281625390053, -0.07948143035173416, -0.046327535063028336, 0.099585622549057, -0.06531009078025818, 0.09328725934028625, 0.046429309993982315, 0.03066888637840748, 0.00607575848698616, 0.06518004834651947, 0.019876254722476006, -0.03751298412680626, 0.04585631564259529, -0.014835014939308167, 0.09054335951805115, 0.08802639693021774, -0.11760123819112778, -0.13776394724845886, 0.009873533621430397], +alloca:[0.07996522635221481, 0.0496990792453289, -0.10951748490333557, -0.13184602558612823, -0.04486194998025894, -0.02307107299566269, -0.003824517596513033, -0.0007592150941491127, -0.0019998112693428993, 0.030167434364557266, 0.04376526549458504, -0.08417051285505295, 0.004293474834412336, 0.12188871949911118, 0.03429191932082176, -0.016490919515490532, -0.014807065948843956, -0.12627890706062317, -0.026415470987558365, 0.154353067278862, -0.07628978043794632, 0.04444348067045212, -0.07465293258428574, -0.04060585796833038, 0.03088720329105854, 0.08788098394870758, -0.07949680835008621, -0.0061698611825704575, 0.08764670789241791, -0.11862260848283768, -0.14219357073307037, -0.029712459072470665, -0.028605369850993156, 0.1008664146065712, -0.0001079944777302444, -0.08838565647602081, 0.025594590231776237, 0.07169806957244873, -0.07558570057153702, 0.04336867481470108, -0.013623103499412537, 0.07316554337739944, 0.027876000851392746, 0.03594580292701721, -0.06462278217077255, -0.02449764497578144, -0.019811468198895454, 0.11309544742107391, 0.0656009241938591, -0.130218967795372, 0.05713542923331261, 0.003913437016308308, -0.07892382889986038, -0.02200211212038994, -0.03358913213014603, 0.07249415665864944, -0.09790987521409988, 0.0709187239408493, 0.07045025378465652, 0.14712175726890564, 0.05477680638432503, -0.07733751833438873, 0.09471993893384933, -0.0231771282851696, -0.07373097538948059, -0.09490712732076645, -0.028938446193933487, -0.08890529721975327, -0.0588320828974247, -0.08186747133731842, -0.13608704507350922, -0.09608183801174164, 0.054196689277887344, 0.10641370713710785, -0.08955248445272446, 0.015317169949412346, -0.13316726684570312, -0.15423519909381866, 0.006260102614760399, -0.10445024073123932, -0.07095523178577423, 0.013528755865991116, -0.02021171897649765, 0.015274399891495705, 0.0962008461356163, -0.025998322293162346, -0.04922234266996384, -0.0418868288397789, 0.042085085064172745, -0.1161099448800087, -0.09811399132013321, -0.09756332635879517, 0.0734274759888649, 0.129657581448555, -0.05158977583050728, -0.054603010416030884, -0.043573301285505295, 0.02640458568930626, 0.13345634937286377, 0.043309248983860016, 0.07016458362340927, -0.038656096905469894, -0.0023906929418444633, -0.06846874952316284, 0.007223161403089762, 0.05188823118805885, -0.050956033170223236, 0.06454868614673615, 0.07393551617860794, -0.08928808569908142, -0.0488266795873642, 0.09921624511480331, -0.07428384572267532, 0.053834449499845505, -0.07575324922800064, -0.0021323394030332565, 0.07018853724002838, 0.016879281029105186, -0.07491452991962433, -0.02456716261804104, -0.009571734815835953, -0.18464398384094238, -0.026106324046850204, -0.05938524007797241, 0.1229800209403038, 0.13605140149593353, 0.02591012232005596, -0.030360473319888115, -0.09993385523557663, -0.008265746757388115, 0.0943898931145668, 0.032253023236989975, -0.06689463555812836, -0.015028450638055801, -0.0901486724615097, -0.04841811582446098, -0.02598634921014309, 0.00040033771074377, 0.0318339578807354, -0.0418802835047245, -0.11040165275335312, -0.15889239311218262, 0.0609259270131588, -0.13849245011806488, -0.11656203866004944, 0.11456321179866791, 0.04215789958834648, -0.061891473829746246, -0.005762833170592785, 0.10644524544477463, 0.009701596572995186, 0.06406528502702713, 0.08531060814857483, -0.0494355745613575, 0.16088631749153137, -0.0870787724852562, 0.0740441381931305, 0.11390307545661926, -0.01310972310602665, -0.11721403151750565, -0.06972047686576843, -0.03751106560230255, -0.03756706789135933, -0.08685630559921265, -0.10119592398405075, -0.09021727740764618, 0.0003433649253565818, 0.16298840939998627, -0.03930848836898804, 0.031968072056770325, -0.0469229519367218, -0.04993030056357384, -0.16162528097629547, 0.12268105894327164, -0.049439750611782074, 0.006550381891429424, 0.08633936196565628, 0.11402586847543716, 0.008527305908501148, 0.011217239312827587, 0.18221400678157806, 0.12339477241039276, 0.03256258741021156, -0.1004849299788475, -0.15690381824970245, 0.020919525995850563, 0.047537095844745636, 0.015685690566897392, -0.004036653321236372, 0.0772397592663765, 0.07418223470449448, -0.10178863257169724, 0.05600503087043762, 0.06572882831096649, -0.04567553848028183, 0.02392195165157318, 0.012658674269914627, -0.007860342971980572, 0.0784979835152626, -0.05741911754012108, 0.13001060485839844, -0.08190253376960754, 0.07759382575750351, 0.0532490499317646, -0.13370606303215027, -0.018246624618768692, -0.004494867753237486, -0.0861077532172203, -0.06825195252895355, 0.1458977460861206, -0.028104659169912338, 0.02349686436355114, -0.07070096582174301, -0.07361152023077011, 0.10451895743608475, 0.04850253462791443, 0.10952574014663696, 0.02759556658565998, -0.04100542142987251, 0.0811261534690857, -0.12719938158988953, -0.02802092395722866, 0.09264402091503143, 0.12623591721057892, -0.07594869285821915, 0.08619949221611023, 0.0438125878572464, -0.06879543513059616, -0.06000722572207451, 0.06262002140283585, -0.08394118398427963, -0.05649124085903168, -0.08658117055892944, 0.05862092226743698, 0.12400545179843903, -0.010484155267477036, 0.015294604003429413, 0.018196454271674156, 0.05792149528861046, -0.049787018448114395, -0.07090472429990768, 0.04083854332566261, 0.06530378758907318, 0.05314658209681511, 0.08894003182649612, -0.06250718235969543, 0.05178813636302948, -0.1014479324221611, 0.01639016903936863, 0.13927923142910004, -0.172807976603508, -0.04398944228887558, 0.05148463323712349, -0.008220762945711613, -0.03231755644083023, 0.018251584842801094, 0.019320737570524216, 0.010435188189148903, -0.12850366532802582, -0.06900729238986969, -0.13200892508029938, 0.06440044194459915, -0.012256215326488018, 0.14092907309532166, -0.10650686174631119, -0.10731422901153564, 0.007314012851566076, -0.04377947747707367, 0.03505508601665497, 0.034455638378858566, 0.006258165929466486, 0.09619113057851791, 0.01251565758138895, -0.07085587829351425, 0.046035751700401306, 0.10635870695114136, 0.09343228489160538, 0.0216108039021492, 0.007520974148064852, 0.05520190671086311, 0.012296084314584732, -0.05021841078996658, 0.0029828327242285013, 0.009424942545592785, 0.08350685238838196, 0.019683346152305603, 0.09401299804449081, 0.11003425717353821, -0.043333929032087326, 0.009128870442509651, 0.037947166711091995, 0.024258529767394066, 0.03709204122424126, 0.06308553367853165, -0.12080243229866028, 0.08384887874126434, -0.0012303757248446345, -0.054241787642240524, -0.07806466519832611, 0.028802750632166862], +and:[0.0692586675286293, -0.02107895538210869, 0.01670316979289055, -0.08801648020744324, -0.07182574272155762, 0.002098493045195937, 0.03623481094837189, -0.036590687930583954, 0.00794296432286501, 0.11003243923187256, -0.030389249324798584, -0.021136585623025894, 0.09189555048942566, -0.12093764543533325, 0.13103410601615906, 0.043930381536483765, -0.04365896061062813, -0.0253437589854002, 0.015243111178278923, -0.005277771037071943, 0.028106747195124626, -0.018101142719388008, -0.0856134444475174, -0.06781667470932007, 0.02664799988269806, -0.08222584426403046, 0.024043815210461617, 0.06679889559745789, 0.11328490823507309, -0.01042842771857977, 0.015063310973346233, -0.11000368744134903, 0.09767598658800125, 0.12185774743556976, 0.0025122843217104673, 0.027496226131916046, -0.08541210740804672, 0.06923957169055939, -0.06272661685943604, -0.09596662223339081, -0.10497736930847168, -0.10582318902015686, 0.10785228759050369, 0.03861163184046745, 0.05730185657739639, -0.1650247573852539, -0.08519652485847473, 0.04521361365914345, -0.055982206016778946, -0.0575777068734169, -0.0144813759252429, 0.003951868042349815, -0.00823970790952444, -0.043264735490083694, -0.012380236759781837, -0.01801350899040699, 0.05775976926088333, -0.002755825873464346, -0.016373666003346443, -0.11135569959878922, -0.06694713979959488, -0.06267672032117844, -0.060162317007780075, -0.09062087535858154, -0.0385374091565609, -0.06220570579171181, -0.030354389920830727, -0.08144202083349228, 0.009039685130119324, 0.03569658473134041, -0.12125159054994583, -0.009802731685340405, 0.11325038224458694, 0.14031314849853516, 0.0051854271441698074, 0.03605446591973305, -0.024824216961860657, -0.14201433956623077, -0.06029920279979706, 0.085536427795887, -0.07130095362663269, -0.09133683145046234, -0.0655045285820961, -0.1821976751089096, 0.014117532409727573, 0.038061629980802536, -0.059507355093955994, -0.04290401563048363, 0.011519194580614567, -0.10465139895677567, -0.08727677911520004, -0.03098246268928051, 0.11336692422628403, 0.014112686738371849, 0.14696620404720306, 0.06637104600667953, 0.05115662142634392, -0.012442756444215775, -0.05519900470972061, -0.018123161047697067, 0.1123022735118866, -0.013332176953554153, 0.015988856554031372, 0.004224993288516998, 0.09261298924684525, -0.01682940497994423, -0.05969959497451782, -0.03895100578665733, 0.04417159780859947, -0.06288240849971771, -0.006934085860848427, 0.0687130019068718, -0.11190523952245712, -0.01951707899570465, -0.07402274757623672, -0.036747582256793976, -0.01530879270285368, 0.005351051688194275, -0.07666642963886261, -0.10072313249111176, -0.1923465132713318, -0.17465369403362274, 0.055317968130111694, -0.09975770115852356, 0.10865864157676697, -0.05582117661833763, 0.06773839145898819, -0.05526234954595566, 0.003839799202978611, -0.0076626017689704895, -0.026371218264102936, -0.007172230631113052, -0.07275418192148209, 0.009199674241244793, -0.18929925560951233, -0.1249842494726181, -0.0118040656670928, 0.001874161884188652, 0.02390749566257, -0.02012849971652031, -0.10661117732524872, 0.08426178991794586, -0.054631173610687256, 0.0449487641453743, -0.05240950733423233, -0.12446451187133789, 0.07140204310417175, -0.05347595363855362, -0.048185259103775024, 0.032990701496601105, -0.00036051927600055933, 0.06314586848020554, -0.007253582123667002, 0.09784521907567978, 0.05180702358484268, -0.05777947977185249, 0.03404147922992706, -0.0295282993465662, -0.035906411707401276, -0.06744401156902313, -0.11323443800210953, -0.03052627108991146, -0.03666425123810768, 0.057183556258678436, -0.06819602102041245, 0.13298042118549347, -0.10142473131418228, -0.0320700965821743, 0.006090648006647825, 0.045154672116041183, -0.028925353661179543, -0.05873614549636841, -0.045631930232048035, 0.058633338660001755, 0.1445596069097519, 0.10059549659490585, -0.01776988059282303, 0.1351565420627594, -0.09365446865558624, -0.03183581307530403, -0.06057310104370117, 0.2693209946155548, -0.024854876101017, -0.09652522206306458, -0.17854663729667664, -0.015064660459756851, 0.04515665024518967, -0.02947089821100235, -0.08407071977853775, 0.08407123386859894, -0.06418588012456894, 0.010310519486665726, 0.08646897971630096, -0.0681484118103981, -0.06899290531873703, 0.02610573172569275, -0.02303103171288967, -0.09677287191152573, 0.03404049575328827, 0.017363345250487328, 0.012959824874997139, -0.06235747039318085, 0.07165303081274033, 0.049444299191236496, -0.11983376741409302, 0.0019414536654949188, -0.01173470076173544, -0.0010082096559926867, -0.07781586050987244, 0.05259362980723381, -0.024193229153752327, 0.08086739480495453, -0.019352752715349197, 0.04071563109755516, 0.031678326427936554, -0.022785332053899765, -0.06025132164359093, 0.022729316726326942, 0.1557944118976593, 0.07941055297851562, 0.043877262622117996, -0.034705325961112976, 0.07860821485519409, 0.08386237174272537, -0.10647155344486237, 0.05930328741669655, 0.031685613095760345, -0.02299424447119236, -0.04956642538309097, 0.023234425112605095, -0.080695241689682, 0.03363442048430443, 0.025732511654496193, 0.07556913048028946, 0.041473329067230225, 0.20056717097759247, 0.05171577259898186, 0.02133849821984768, 0.07925373315811157, -0.017576299607753754, 0.05553755164146423, 0.020934635773301125, -0.05065104365348816, 0.09764519333839417, -0.06900223344564438, -0.056249137967824936, 0.04720969870686531, -0.019449129700660706, -0.08913205564022064, 0.0660676434636116, -0.12663634121418, -0.09508049488067627, 0.06769787520170212, -0.020707113668322563, -0.06233051419258118, -0.10684020072221756, 0.0164128839969635, 0.06381615251302719, -0.08158276975154877, -0.18991832435131073, 0.06300050020217896, -0.020495248958468437, -0.0622907392680645, 0.15601743757724762, -0.07084226608276367, -0.1151777058839798, 0.023538080975413322, -0.01758166216313839, 0.002507265191525221, 0.04870625212788582, -0.0420667789876461, 0.02186092920601368, 0.06728541105985641, 0.06364309787750244, 0.06511831283569336, 0.05586486682295799, 0.050950322300195694, -0.10756760835647583, 0.12053258717060089, 0.06431680917739868, -0.007929696701467037, -0.07016881555318832, -0.02548084408044815, 0.012986992485821247, 0.0015622148057445884, -0.0660380944609642, 0.09258907288312912, 0.06941714137792587, -0.10366860032081604, -0.016416290774941444, 0.06043785810470581, -0.00972763542085886, -0.04740828648209572, 0.002213126514106989, 0.04340806230902672, 0.08954021334648132, 0.02239823527634144, -0.03736542537808418, -0.14159972965717316, 0.02940111979842186], +ashr:[0.14358524978160858, 0.043314479291439056, 0.13635751605033875, -0.07179948687553406, 0.0023077691439539194, 0.09198538959026337, 0.10590444505214691, -0.06392943114042282, 0.0166877880692482, 0.056517090648412704, -0.02538263611495495, -0.019006527960300446, -0.05176134034991264, -0.03689899295568466, 0.11175022274255753, -0.005699106026440859, 0.04039209336042404, 0.00949054304510355, 0.08622532337903976, -0.07180362194776535, -0.02596767619252205, -0.060428693890571594, -0.0822526291012764, 0.013763810507953167, 0.01683649607002735, -0.002888803370296955, 0.014047553762793541, 0.010985953733325005, -0.0613308921456337, 0.029770277440547943, -0.04051664471626282, -0.06461081653833389, -0.051808618009090424, 0.11963257193565369, 0.0001985426206374541, 0.0196132380515337, -0.061653029173612595, 0.06974080950021744, 0.08437860757112503, 0.02919929474592209, 0.05998160317540169, -0.047216493636369705, 0.14346370100975037, 0.03646763786673546, -0.03939288109540939, -0.17064791917800903, -0.024200547486543655, 0.12199652194976807, 0.06720462441444397, -0.1437561959028244, 0.0591442808508873, 0.005563699174672365, -0.03435630723834038, -0.020190559327602386, -0.03336061164736748, 0.023616934195160866, 0.07524096965789795, 0.01579064503312111, -0.007872875779867172, -0.1139921247959137, -0.055559419095516205, -0.01850617118179798, -0.08615774661302567, -0.026952460408210754, 0.04092714190483093, -0.08850602805614471, -0.02809213474392891, 0.022028274834156036, -0.08502499759197235, 0.10808921605348587, -0.15953877568244934, -0.09514317661523819, 0.016932062804698944, 0.18960659205913544, -0.07103601098060608, 0.023480847477912903, -0.048704665154218674, -0.048281844705343246, -0.03569047525525093, 0.2299327701330185, -0.14034974575042725, -0.005426985677331686, -0.010641016066074371, -0.04695969820022583, -0.02332444116473198, 0.0404885858297348, -0.0561339296400547, 0.13550443947315216, -0.016775263473391533, -0.11238151043653488, -0.00249619223177433, -0.11608795076608658, 0.1319715529680252, -0.009146513417363167, 0.03272560238838196, 0.07066447287797928, 0.05690966174006462, -0.1655418425798416, -0.0337381511926651, -0.0823667123913765, 0.03144464269280434, -0.011616447940468788, 0.16095024347305298, 0.044524841010570526, -0.15082058310508728, -0.08160212635993958, 0.02416008524596691, 0.06645380705595016, 0.037067852914333344, 0.04318530485033989, -0.059741370379924774, -0.013607451692223549, 0.027830103412270546, -0.01845051348209381, -0.09814579784870148, 0.04617684334516525, 0.058562781661748886, -0.10088729858398438, -0.07306861132383347, -0.03029698133468628, -0.028677860274910927, -0.06746266037225723, 0.12441299110651016, -0.06671406328678131, 0.12126240879297256, -0.007885273545980453, 0.02546810172498226, 0.0008886360446922481, -0.05375288426876068, -0.007732817903161049, 0.09204844385385513, 0.032717082649469376, -0.08296357840299606, 0.08218920975923538, -0.003925791010260582, -0.030642902478575706, -0.1258760392665863, 0.0010939253261312842, 0.09143562614917755, -0.041017115116119385, -0.11253451555967331, -0.026755517348647118, 0.10920781642198563, -0.12139606475830078, -0.12294244021177292, -0.01131077203899622, 0.016838137060403824, 0.005854431539773941, -0.018620340153574944, 0.02485675737261772, -0.03343088924884796, -0.10257158428430557, 0.002072880044579506, 0.05873323976993561, 0.11799150705337524, -0.08869611471891403, 0.05985037982463837, -0.05535576120018959, 0.054241590201854706, 0.03268533572554588, 0.04247567430138588, -0.057497818022966385, -0.036675069481134415, -0.08549753576517105, -0.10342374444007874, -0.00794681441038847, 0.08454503118991852, 0.07179661840200424, -0.04650808498263359, 0.04051272198557854, -0.09713732451200485, 0.018753962591290474, -0.16916458308696747, 0.03922503814101219, 0.013128039427101612, -0.08781399577856064, -0.05743589997291565, 0.15755467116832733, 0.05673990026116371, 0.13816489279270172, -0.00128162931650877, 0.036953896284103394, -0.11397925764322281, -0.09882324934005737, -0.1098700538277626, 0.03665958344936371, 0.13187839090824127, 0.033915597945451736, -0.0906849056482315, 0.05088424310088158, -0.09426336735486984, 0.06541475653648376, 0.03187420219182968, -0.013390587642788887, -0.04325568303465843, 0.02709195762872696, -0.0151679627597332, 0.0730060413479805, 0.04583929479122162, 0.06988587975502014, -0.04262746125459671, -0.08274403214454651, 0.004045382607728243, -0.14048685133457184, 0.0856395810842514, 0.0010672725038602948, -0.005042887292802334, -0.08542455732822418, -0.07112019509077072, -0.11322925984859467, -0.021283434703946114, 0.0461653433740139, 0.023051824420690536, -0.07136103510856628, 0.0035524931736290455, 0.08426658809185028, 0.11349762976169586, 0.025460081174969673, 0.021849865093827248, 0.08235149085521698, 0.043960850685834885, -0.03223918750882149, 0.08421439677476883, 0.1486266404390335, 0.0730830729007721, -0.08367226272821426, 0.07192349433898926, -0.07487563043832779, -0.05745231360197067, -0.04645673930644989, -0.08508577942848206, -0.0892358273267746, 0.04032982885837555, -0.06060580164194107, 0.06509434431791306, -0.027913827449083328, 0.05646949261426926, 0.04251667112112045, -0.14843197166919708, 0.029650099575519562, 0.09240072220563889, -0.14434103667736053, 0.01479269377887249, -0.02032691240310669, 0.0033157984726130962, 0.1284107118844986, 0.04703153669834137, -0.00884171761572361, 0.015749014914035797, 0.07213450223207474, -0.125388503074646, -0.10389475524425507, -0.10329662263393402, 0.057947222143411636, -0.06376368552446365, 0.054430101066827774, -0.028798643499612808, 0.028448808938264847, 0.04378291592001915, -0.0967806726694107, -0.11716170608997345, -0.014217879623174667, -0.012706144712865353, 0.0988553985953331, 0.04547714814543724, -0.1187271997332573, 0.054441072046756744, -0.07859968394041061, 0.014376215636730194, 0.052890244871377945, -0.04018763452768326, 0.1231873631477356, 0.06165708228945732, -0.033041324466466904, 0.04141915217041969, 0.00843280740082264, 0.057560812681913376, -0.11351609230041504, 0.05728314071893692, -0.14167249202728271, -0.09334659576416016, -0.08331788331270218, -0.01943962462246418, 0.10903355479240417, 0.1478748619556427, -0.04184144735336304, 0.10285510122776031, 0.045340947806835175, 0.05260993540287018, 0.00850199069827795, 0.11563242226839066, -0.028921213001012802, -0.05009431019425392, 0.024896232411265373, 0.09316457808017731, 0.10598965734243393, -0.0030987660866230726, -0.07724452018737793, -0.09748587757349014, 0.07431304454803467], +bitcast:[0.09883642196655273, 0.05724601447582245, 0.08156898617744446, -0.1059262603521347, -0.0221269428730011, 0.012705412693321705, 0.01597248762845993, -0.013279114849865437, 0.025420866906642914, 0.061517439782619476, 0.006903934292495251, 0.06890493631362915, 0.06509557366371155, -0.027067527174949646, -0.025716425850987434, 0.029050538316369057, -0.052444346249103546, -0.18141822516918182, -0.03213287889957428, -0.06741346418857574, -0.07075313478708267, -0.020298374816775322, -0.07189470529556274, -0.04172873869538307, 0.025952154770493507, -0.07917657494544983, 0.03553174436092377, 0.06427773088216782, -0.12260027974843979, -0.0659986063838005, 0.014092682860791683, -0.059613533318042755, -0.06120011582970619, 0.1156780943274498, -0.00037511263508349657, -0.05723646283149719, 0.0019342427840456367, 0.06873210519552231, -0.02298438549041748, -0.14174602925777435, 0.01672634482383728, -0.07192753255367279, 0.05737094581127167, 0.00761029776185751, -0.05290171131491661, 0.051935773342847824, 0.03570624068379402, 0.06053391844034195, 0.13631318509578705, -0.02283615805208683, 0.003496194025501609, 0.0005264971987344325, -0.007964610122144222, -0.04082705080509186, -0.10195630043745041, -0.03765365481376648, -0.06534215062856674, -0.07897770404815674, -0.015153988264501095, -0.062109995633363724, -0.11517713218927383, -0.06989996880292892, 0.11977829784154892, -0.008701932616531849, -0.03561064600944519, -0.06284349411725998, 0.09168287366628647, 0.012479029595851898, -0.0018795655341818929, 0.007279389072209597, -0.02869497425854206, -0.0785687267780304, 0.003626609221100807, 0.06788366287946701, 0.06753590703010559, 0.039151519536972046, -0.021451985463500023, -0.10086004436016083, 0.027411898598074913, 0.10716308653354645, -0.06631804257631302, -0.0791357159614563, -0.022619938477873802, -0.17625699937343597, 0.08096746355295181, -0.06834262609481812, 0.0029558136593550444, -0.02146061696112156, 0.09671173989772797, -0.08462198078632355, -0.09182441234588623, -0.028185904026031494, 0.06273592263460159, 0.016881119459867477, -0.003976373467594385, 0.057790786027908325, 0.04703986644744873, 0.16507688164710999, -0.022317588329315186, -0.10626507550477982, 0.07184101641178131, -0.05424848198890686, 0.05299563333392143, 0.05527779832482338, 0.07853145897388458, -0.022130534052848816, -0.05564742907881737, 0.0444963164627552, -0.05097575485706329, -0.0761420801281929, -0.001723561785183847, -0.03934047743678093, -0.011819230392575264, 0.04183211177587509, -0.03607504814863205, -0.20259037613868713, 0.0001312713575316593, -0.01462723221629858, -0.06900490075349808, 0.158333420753479, -0.07834801822900772, -0.022573139518499374, 0.06421587616205215, -0.06313122808933258, -0.0178169347345829, -0.033140286803245544, 0.031095346435904503, -0.0346829928457737, 0.016409752890467644, -0.015982473269104958, -0.040625959634780884, -0.004067111760377884, -0.03926254063844681, -0.012157122604548931, 0.023536667227745056, 0.07902214676141739, -0.024363242089748383, 0.0006680415826849639, 0.019450416788458824, -0.030085783451795578, -0.09756612777709961, -0.015392439439892769, -0.022722359746694565, 0.00691885594278574, -0.06560461968183517, 0.17006607353687286, 0.06943527609109879, -0.04402182996273041, -0.0802355632185936, 0.02668522484600544, 0.08302527666091919, -0.02274886518716812, 0.055058661848306656, 0.07236239314079285, 0.04890074208378792, -0.041866760700941086, -0.01949247345328331, -0.040354322642087936, -0.009812606498599052, 0.03439074009656906, -0.13601446151733398, -0.028388742357492447, 0.07946351170539856, 0.08692905306816101, 0.008907098323106766, 0.1663953959941864, 0.19082912802696228, -0.031422585248947144, -0.02638215385377407, 0.1717936098575592, 0.027065502479672432, -0.07221159338951111, -0.11542785912752151, 0.03773237392306328, 0.19541239738464355, 0.0772484838962555, 0.17074017226696014, 0.13346654176712036, -0.040606509894132614, -0.00012711204180959612, 0.030732711777091026, 0.03914254903793335, 0.0304032601416111, -0.09039048850536346, -0.02539086528122425, -0.07754113525152206, 0.05027572065591812, 0.09814202040433884, -0.08050428330898285, -0.01660732552409172, -0.04215163737535477, 0.021689938381314278, 0.06037718430161476, 0.08850771188735962, 0.06702222675085068, 0.02396542951464653, -0.031870801001787186, -0.09542319923639297, 0.12048089504241943, 0.011469641700387001, 0.02826816402375698, -0.06905343383550644, 0.05834760144352913, 0.08023533970117569, 0.008807489648461342, 0.06436261534690857, -0.06263235956430435, 0.01564212515950203, -0.057073429226875305, 0.05861132591962814, 0.05250759795308113, 0.11935032904148102, -0.04795312508940697, 0.040455978363752365, 0.06183924898505211, 0.06784254312515259, -0.048590101301670074, 0.023871976882219315, -0.1945071518421173, 0.06692507863044739, -0.09095574915409088, -0.017572106793522835, 0.012901839800179005, 0.08052176237106323, 0.0648956224322319, 0.05799603834748268, 0.038384340703487396, -0.053947899490594864, -0.051364608108997345, 0.013184462673962116, -0.06956145912408829, -0.09186325967311859, -0.024104159325361252, 0.14805416762828827, 0.07800337672233582, 0.08237726986408234, 0.017518209293484688, 0.06279154121875763, 0.08068623393774033, 0.04827018082141876, 0.030471231788396835, 0.018784215673804283, -0.03139971196651459, 0.09056247025728226, -0.06780575215816498, -0.011085642501711845, -0.03098226524889469, 0.05492937192320824, 0.01243871171027422, 0.08119411766529083, 0.059170614928007126, -0.012405567802488804, 0.051592424511909485, 0.08390189707279205, -0.03341754898428917, -0.09737323224544525, 0.02840288169682026, 0.035386182367801666, 0.12438797205686569, -0.10303086042404175, 0.06360609084367752, -0.0181706715375185, -0.011769715696573257, 0.135280042886734, -0.008851452730596066, -0.11035346239805222, -0.007619387004524469, -0.016418004408478737, 0.009803622961044312, 0.034210119396448135, -0.03712138906121254, 0.05044936388731003, 0.0380462110042572, 0.01348867081105709, 0.043081171810626984, 0.06198098883032799, 0.048643577843904495, -0.10842256993055344, 0.10929650813341141, 0.09976643323898315, 0.0906849279999733, -0.2076931595802307, 0.026704102754592896, -0.06921432912349701, 0.12001799046993256, -0.08383999019861221, 0.011285524815320969, 0.035065993666648865, 0.056259576231241226, -0.05168965458869934, 0.043893489986658096, 0.06390402466058731, -0.030072735622525215, 0.04448501765727997, 0.16511602699756622, 0.08977081626653671, -0.10154251754283905, 0.055432695895433426, -0.13461017608642578, 0.04643763229250908], +br:[0.0222519151866436, 0.04571843519806862, 0.08461058139801025, -0.09590277075767517, 0.009207449853420258, 0.003415161743760109, 0.07201280444860458, -0.006344273220747709, 0.011132470332086086, 0.20997050404548645, -0.03536875173449516, 0.03806893900036812, -0.15206988155841827, 0.024915212765336037, 0.016038496047258377, -0.01803157851099968, -0.005443444475531578, -0.14189846813678741, 0.015536422841250896, -0.028986798599362373, -0.10274697840213776, -0.020763490349054337, -0.049319490790367126, -0.04760558530688286, 0.028252054005861282, -0.05058905854821205, 0.024012412875890732, 0.09357576817274094, -0.11618219316005707, -0.009511832147836685, 0.015949392691254616, -0.07433527708053589, -0.06967849284410477, 0.12228035181760788, -0.0005808552959933877, 0.04796634986996651, -0.04655636474490166, 0.06982347369194031, -0.16303232312202454, 0.1594480723142624, -0.1066230833530426, -0.11895546317100525, 0.054778218269348145, 0.018949750810861588, 0.02090107649564743, 0.015709396451711655, 0.13073833286762238, 0.10522235184907913, -0.06666233390569687, -0.10135223716497421, 0.031462833285331726, 0.004723296966403723, -0.0005127422627992928, -0.05473710596561432, -0.032993119210004807, 0.0004446734383236617, -0.11692439764738083, 1.6474423318868503e-05, -0.026556385681033134, -0.08582863956689835, -0.05368026718497276, -0.07479830831289291, 0.05824927240610123, 0.014432206749916077, -0.037809405475854874, -0.07218331843614578, -0.028674785047769547, -0.07429851591587067, -0.08475805819034576, 0.021386172622442245, -0.09290480613708496, -0.0020265865605324507, -0.11750058084726334, 0.08598070591688156, -0.022560644894838333, 0.03718781843781471, -0.00982850231230259, 0.021976668387651443, -0.00306821265257895, -0.11443475633859634, -0.07433952391147614, -0.09953341633081436, -0.033623769879341125, -0.11863797903060913, 0.07577832043170929, 0.08664814382791519, -0.00409620301797986, -0.04223618283867836, 0.04249690845608711, -0.07678399980068207, -0.003343855729326606, -0.04027607664465904, 0.06613907217979431, 0.06563735008239746, 0.1291544884443283, 0.07002713531255722, 0.038005437701940536, -0.01856941357254982, -0.023027833551168442, -0.12951521575450897, 0.002392963971942663, -0.05530471354722977, 0.07871659845113754, 0.06168350577354431, 0.08356323093175888, 0.019391901791095734, -0.15694363415241241, -0.034201785922050476, -0.051892925053834915, -0.04510660469532013, -0.00623622490093112, -0.045730989426374435, 0.1793069690465927, -0.018457084894180298, -0.03768591210246086, -0.00608619162812829, 0.11370184272527695, 0.005651683080941439, -0.14564497768878937, -0.03166485205292702, -0.18361155688762665, -0.019142676144838333, 0.02913559600710869, -0.07110151648521423, 0.11786053329706192, -0.04195041209459305, 0.03651951625943184, 5.336829781299457e-05, 0.06637968122959137, -0.007980234920978546, -0.04321722686290741, 0.032698627561330795, -0.05792652443051338, 0.016361992806196213, 0.07111209630966187, 0.1299257129430771, -0.00524274492636323, 0.0012233098968863487, 0.017989331856369972, 0.02089148946106434, -0.10077628493309021, -0.12539421021938324, -0.046136524528265, 0.049549516290426254, -0.05053708329796791, 0.18308322131633759, 0.07094057649374008, -0.03847166523337364, -0.03309798240661621, 0.03276798129081726, -0.14999514818191528, 0.0656687542796135, -0.010466549545526505, 0.07736458629369736, -0.0020651035010814667, -0.042985789477825165, 0.0015438705449923873, -0.028699668124318123, -0.012621951289474964, 0.037022754549980164, 0.25765153765678406, -0.01937749795615673, -0.038568105548620224, 0.09085756540298462, -0.0053146700374782085, 0.1677265614271164, -0.17481069266796112, 0.03703586757183075, -0.04216437786817551, -0.12467971444129944, -0.03408677875995636, -0.09137219190597534, -0.02322453260421753, 0.03419230133295059, -0.1946677565574646, 0.026715746149420738, 0.020727964118123055, 0.10687959939241409, -0.047560516744852066, -0.00508893933147192, 0.05172238126397133, -0.1475921869277954, 0.03326001018285751, -0.11788032948970795, -0.1215042695403099, -0.028269784525036812, 0.004229997284710407, -0.060310132801532745, -0.08413663506507874, -0.09255518019199371, 0.005033572670072317, 0.005838014651089907, 0.0699186623096466, -0.18200106918811798, -0.03631128370761871, 0.025700626894831657, -0.011629035696387291, 0.20048516988754272, 0.0512668713927269, 0.013532142154872417, 0.0026113109197467566, -0.06698685884475708, 0.07678448408842087, -0.02481195330619812, 0.01045165117830038, -0.015104133635759354, -0.003010114422068, 0.026854917407035828, -0.085797980427742, 0.17625001072883606, 0.05850657820701599, 0.06961041688919067, -0.03807568550109863, 0.041420720517635345, 0.0969420075416565, -0.023480750620365143, -0.037546511739492416, 0.024764539673924446, -0.13405075669288635, 0.04640042781829834, 0.04555971547961235, -0.0417642705142498, 0.13668204843997955, 0.08413324505090714, -0.04674753546714783, 0.05239160731434822, 0.029940778389573097, 0.002062160987406969, -0.11614465713500977, 0.02394350990653038, -0.07547589391469955, -0.026349540799856186, 0.0034378976561129093, 0.02064746618270874, 0.0823625698685646, -0.014616972766816616, 0.022490371018648148, 0.00847609993070364, 0.10124752670526505, 0.05049377307295799, -0.0796598568558693, 0.017832333222031593, -0.04590073972940445, -0.02785033918917179, -0.02700047567486763, -0.005179709754884243, 0.06269521266222, 0.016889406368136406, -0.055491894483566284, -0.03376990184187889, -0.12938962876796722, -0.011668497696518898, 0.10334474593400955, -0.024790942668914795, 0.013348915614187717, 0.09023304283618927, 0.018727105110883713, -0.052689045667648315, 0.05635709688067436, 0.026843609288334846, 0.06245644390583038, -0.02590506337583065, -0.01615639217197895, 0.12960585951805115, -0.06438985466957092, -0.11469809710979462, -0.0069228061474859715, -0.016410473734140396, 0.013315591961145401, 0.043197520077228546, -0.02852923981845379, 0.03061525709927082, 0.018117446452379227, -0.05815817788243294, 0.06325264275074005, 0.06640971451997757, 0.04173693060874939, -0.07433130592107773, 0.1252574622631073, 0.07898757606744766, -0.009121074341237545, 0.07772216945886612, -0.007094465661793947, -0.16796381771564484, -0.1393778920173645, -0.09339307993650436, 0.07664456218481064, 0.07104187458753586, 0.12090848386287689, -0.01656191237270832, 0.04627535492181778, 0.02011624164879322, -0.07772748917341232, 0.05165763199329376, -0.015668056905269623, 0.08964495360851288, 0.07849610596895218, 0.01288694329559803, -0.12771621346473694, 0.04844726249575615], +call:[0.03562856838107109, 0.06504956632852554, 0.05015304312109947, -0.07559778541326523, -0.09867362678050995, -0.023141682147979736, -0.138082355260849, -0.027238478884100914, 0.021481730043888092, 0.02031746879220009, -0.023430246859788895, -0.01773911342024803, -0.05708138272166252, 0.012653078883886337, -0.11612950265407562, -0.08975297957658768, -0.12478791177272797, 0.06106187403202057, 0.013967619277536869, -0.11590870469808578, -0.07869964838027954, -0.02094235084950924, -0.06496068090200424, -0.04708943888545036, 0.02793910913169384, -0.1099674329161644, 0.03099105693399906, 0.03207200765609741, 0.12031640112400055, 0.0009990541730076075, 0.016503136605024338, -0.0714806467294693, 0.0031449126545339823, 0.12187431752681732, -0.0004645849985536188, 0.02148010954260826, -0.005054884124547243, 0.06138680875301361, 0.14007939398288727, -0.11860261112451553, -0.10752396285533905, -0.09437362849712372, 0.05424404516816139, 0.035525623708963394, 0.029605383053421974, -0.047686200588941574, 0.004833365324884653, 0.05471476912498474, -0.19162259995937347, 0.12320912629365921, -0.012354351580142975, 0.003988785203546286, -0.025163263082504272, -0.03760530427098274, -0.032066937536001205, -0.04036341980099678, -0.12030851095914841, 0.16277647018432617, -0.023424427956342697, -0.08988635241985321, -0.01864498481154442, -0.05905788391828537, 0.0029356935992836952, -0.012027881108224392, 0.10710697621107101, -0.0662323608994484, -0.03738575056195259, 0.1496932953596115, -0.08972302824258804, 0.03855825588107109, -0.022678937762975693, -0.004210032057017088, 0.11942000687122345, 0.018915323540568352, -0.0612950436770916, 0.05315694585442543, -0.021196573972702026, 0.025668226182460785, -0.035384323447942734, -0.11788824200630188, -0.0712621882557869, -0.09319622814655304, 0.1025957241654396, 0.0843004360795021, 0.027637485414743423, 0.09380488097667694, -0.011488915421068668, -0.041717544198036194, -0.012987704947590828, -0.10755942016839981, -0.003783605294302106, -0.027861665934324265, 0.10714666545391083, 0.018307873979210854, -0.11228087544441223, 0.07004038244485855, 0.055788103491067886, -0.12005539238452911, 0.11835629492998123, 0.030885465443134308, 0.05101596191525459, -0.05723360553383827, 0.0480063259601593, 0.012025149539113045, -0.029417624697089195, -0.016548560932278633, 0.041289038956165314, 0.048334814608097076, 0.05313638597726822, -0.07763322442770004, -0.13534334301948547, 0.056030385196208954, -0.10203363001346588, -0.018870646134018898, -0.08040895313024521, 0.09693940728902817, -0.014546896331012249, 0.006762424483895302, -0.042564913630485535, -0.031834330409765244, -0.11299750208854675, -0.1593063473701477, 0.03971818462014198, -0.0690295621752739, 0.11398114264011383, -0.05113908648490906, 0.04537250101566315, 0.013113106600940228, 0.022032370790839195, -0.007793664000928402, -0.04430321231484413, -0.08133900165557861, -0.05908772721886635, 0.009163874201476574, 0.07891206443309784, -0.16396284103393555, -0.23925749957561493, 0.0008547448669560254, 0.01750919409096241, -0.0010767981875687838, -0.10769324004650116, 0.009934939444065094, -0.05574962869286537, -0.023159701377153397, -0.05318417772650719, 0.04571859538555145, 0.07298129796981812, -0.04143355414271355, -0.09119667857885361, 0.03316548839211464, -0.08320977538824081, 0.06712191551923752, 0.17780350148677826, 0.09488668292760849, 0.07882276922464371, -0.046280913054943085, 0.033919986337423325, -0.012272909283638, -0.0127023383975029, 0.03640934079885483, -0.1245390772819519, -0.03422680124640465, -0.037499625235795975, 0.058828823268413544, 0.0565374381840229, 0.11193735897541046, -0.19327305257320404, -0.03429155796766281, -0.03644658252596855, -0.10696322470903397, -0.013599280267953873, -0.06407574564218521, 0.002173025393858552, 0.029503056779503822, 0.03631283715367317, 0.08248534798622131, 0.008186685852706432, 0.1421808898448944, -0.11680732667446136, -0.16800858080387115, 0.02483268268406391, -0.06589878350496292, 0.018295438960194588, 0.11661301553249359, 0.010782833211123943, -0.03461964428424835, 0.050080884248018265, -0.07831677794456482, -0.09195361286401749, 0.04915662109851837, -0.024227267131209373, 0.01289844885468483, 0.061400797218084335, 0.15756835043430328, -0.049770817160606384, 0.026271486654877663, -0.029139695689082146, 0.07556690275669098, 0.09271381795406342, 0.01366144698113203, 0.09303808957338333, -0.06941642612218857, 0.04981725290417671, 0.04838837310671806, 0.008487604558467865, -0.11715811491012573, -0.003984622657299042, 0.016852466389536858, -0.07182689011096954, 0.10628975182771683, 0.057111456990242004, 0.04769187793135643, 0.060672443360090256, 0.04177933931350708, -0.017600592225790024, -0.04116468504071236, 0.10523561388254166, 0.014243616722524166, 0.13501401245594025, 0.08203301578760147, -0.12276920676231384, -0.022237950935959816, 0.019320039078593254, 0.08104535937309265, 0.07029269635677338, 0.05878942832350731, 0.03679152950644493, -0.0012830222258344293, -0.03567291051149368, -0.11260028928518295, 0.251454621553421, 0.004191135056316853, 0.097806915640831, 0.005720345303416252, 0.06578920781612396, 0.06573368608951569, 0.01917205937206745, -0.0032861006911844015, 0.07948735356330872, 0.05040699988603592, -0.06769851595163345, 0.02261470817029476, -0.049282222986221313, 0.09836811572313309, -0.21320243179798126, 0.036195412278175354, -0.03818754479289055, 0.016500333324074745, 0.013996562920510769, 0.1590888798236847, -0.11735782772302628, -0.008278905414044857, 0.07071376591920853, 0.07462207973003387, 0.13361488282680511, -0.12116134166717529, 0.016403893008828163, 0.05323817580938339, -0.04119411110877991, 0.01717490702867508, 0.06028995290398598, -0.020968785509467125, -0.01960398070514202, 0.1220070943236351, -0.00972994975745678, -0.042926397174596786, 0.11637219786643982, -0.017538558691740036, -0.03803648427128792, -0.11569078266620636, -0.040909506380558014, -0.12656846642494202, 0.0650341808795929, -0.04879578948020935, -0.06142748147249222, 0.05065804719924927, 0.07304168492555618, -0.11121470481157303, -0.020035816356539726, 0.05454392731189728, 0.0973842516541481, -0.055262915790081024, 0.010989694856107235, 0.029083572328090668, -0.0038267874624580145, 0.07905156165361404, 0.06895504891872406, 0.07392223924398422, -0.040406618267297745, -0.0274339746683836, -0.14309997856616974, 0.021787166595458984, -0.03534899652004242, -9.70078181126155e-05, 0.05147113278508186, -0.012648848816752434, -0.02687036618590355, 0.03941672667860985, 0.11016446352005005, -0.10521077364683151], +constant:[0.11255902051925659, -0.03976628929376602, 0.10756251215934753, 0.01795591041445732, 0.08752646297216415, 0.051399774849414825, 0.0148451067507267, 0.030549131333827972, 0.07748407125473022, -0.06984901428222656, -0.05003223195672035, 0.07573588937520981, 0.009762601926922798, -0.009992802515625954, -0.09891112893819809, 0.06280795484781265, 0.1183975338935852, -0.0480867363512516, 0.09828091412782669, 0.003362103132531047, 0.003840606426820159, -0.060349006205797195, -0.0027845031581819057, -0.004804035183042288, -0.011164058931171894, -0.03851204365491867, 0.07748087495565414, 0.02968421019613743, -0.022973407059907913, 0.10257761180400848, -0.12752780318260193, 0.014267011545598507, -0.05126701667904854, 0.030691301450133324, 0.04507409781217575, -0.0802890807390213, 0.08540888130664825, 0.033133991062641144, 0.03387164697051048, 0.05413708835840225, 0.03212758153676987, 0.06913217902183533, -0.0804537758231163, 0.016430595889687538, 0.008701737970113754, -0.07274509221315384, -0.045098740607500076, -0.08100556582212448, -0.12643106281757355, 0.14432935416698456, 0.07979840785264969, -0.09001658856868744, 0.029757672920823097, 0.06745782494544983, 0.03938249498605728, 0.04668858274817467, -0.0887514129281044, 0.0048010991886258125, -0.07668199390172958, 0.1713663637638092, 0.125219464302063, -0.10433107614517212, -0.027495210990309715, -0.057028479874134064, 0.06702052801847458, 0.048560988157987595, 0.09277475625276566, 0.0672595202922821, -0.07278363406658173, 0.11852071434259415, -0.07223954796791077, 0.02538408525288105, -0.027800332754850388, 0.03963544964790344, -0.05258306488394737, -0.055969223380088806, 0.11370132863521576, -0.1346042901277542, -0.057983461767435074, -0.09137999266386032, -0.003987486474215984, 0.0057296063750982285, -0.06297440081834793, 0.031896524131298065, 0.1436292678117752, -0.06917359679937363, -0.06886661052703857, 0.02383645996451378, -0.04297175630927086, -0.019432878121733665, -0.043784525245428085, -0.14089462161064148, 0.026079753413796425, 0.03403614088892937, -0.060205064713954926, -0.01780945621430874, -0.010961906984448433, 0.05406050756573677, -0.07205991446971893, 0.00444409903138876, 0.005581418517976999, 0.13451404869556427, -0.06162262335419655, -0.12563948333263397, 0.06558093428611755, -0.04272311553359032, 0.06877350807189941, 0.026718584820628166, 0.07992184162139893, 0.1477939635515213, -0.18750342726707458, 0.011837390251457691, -0.06670238077640533, -0.10455692559480667, -0.05745525285601616, 0.0529884472489357, -0.06132619082927704, 0.05026727169752121, -0.10219632089138031, -0.05239478498697281, -0.0010669921757653356, -0.017847862094640732, -0.07196997106075287, -0.012750305235385895, 0.04051535949110985, -0.02004166878759861, -0.019432691857218742, 0.04668480530381203, 0.0033427481539547443, 0.07921403646469116, 0.03401951864361763, -0.0520310178399086, -0.1362643837928772, -0.07676999270915985, -0.06132049486041069, -0.11105566471815109, -0.10296211391687393, -0.0765761137008667, 0.05279524251818657, 0.06468135863542557, -0.14728215336799622, 0.0049627176485955715, -0.08623862266540527, -0.057562097907066345, 0.09993372112512589, 0.009173720143735409, -0.08341880142688751, 0.14628779888153076, 0.06771891564130783, -0.028227847069501877, -0.058839768171310425, 0.09660637378692627, 0.1451181322336197, 0.026954976841807365, -0.1107199415564537, -0.011187169700860977, 0.11048416048288345, -0.03523249551653862, 0.11023110896348953, -0.17684516310691833, -0.15872831642627716, -0.06663443148136139, 0.07284091413021088, -0.02390233613550663, 0.03916940838098526, 0.08036620169878006, -0.016130659729242325, -0.020977482199668884, 0.034110527485609055, -0.09071226418018341, -0.12901735305786133, -0.003042613621801138, -0.006310722790658474, 0.14631251990795135, -0.08453059196472168, -0.057457465678453445, -0.0250286553055048, 0.036623261868953705, -0.012105065397918224, -0.0941828265786171, -0.050475385040044785, -0.0007460569613613188, 0.16895955801010132, 0.011851451359689236, 0.06625419110059738, -0.005935594905167818, 0.022020373493433, -0.07709750533103943, -0.1274622678756714, 0.0775551050901413, 0.10883153229951859, 0.12400669604539871, -0.011103684082627296, 0.08790421485900879, -0.08551743626594543, -0.043467409908771515, 0.03482253849506378, 0.05009903013706207, -0.013828366063535213, -0.0256896261125803, 0.12941768765449524, 0.03878086060285568, -0.019415710121393204, -0.004078356549143791, -0.05493280664086342, -0.055606596171855927, 0.12819071114063263, 0.0798082947731018, 0.006690734066069126, -0.08850148320198059, 0.092258021235466, -0.09630788862705231, -0.08466513454914093, -0.12473813444375992, -0.01338203065097332, -0.003436299506574869, 0.03535669296979904, 0.06174404174089432, -0.08323045819997787, 0.0175698883831501, -0.008653340861201286, -0.15333116054534912, 0.036239173263311386, -0.08862773329019547, 0.0322493240237236, -0.11973807215690613, -0.02091771923005581, -0.15007567405700684, 0.02468593418598175, -0.03452163562178612, 0.03928649425506592, 0.03480500727891922, 0.12101878225803375, -0.05672910064458847, -0.13211669027805328, 0.019804371520876884, -0.0673019215464592, -0.134064182639122, -0.19373896718025208, 0.0853576809167862, -0.0013426268706098199, -0.1142520159482956, 0.17491236329078674, -0.11567970365285873, 0.042400579899549484, 0.022887442260980606, -0.018318215385079384, -0.11241547763347626, -0.016444988548755646, -0.02305377833545208, 0.015870248898863792, 0.07868552207946777, -0.015169994905591011, 0.09201372414827347, 0.11608574539422989, -0.07861510664224625, -0.059485822916030884, -0.008950711227953434, -0.01158431638032198, -0.04049660265445709, -0.08638617396354675, -0.07688935101032257, 0.03108004666864872, 0.01191261038184166, 0.037406545132398605, 0.05554730072617531, -0.09025873988866806, 0.02843678742647171, -0.09347810596227646, -0.007707157637923956, -0.004789599217474461, -0.07496386021375656, -0.01761089637875557, -0.04150738939642906, 0.1111791729927063, -0.14907291531562805, -0.026089582592248917, 0.14872123301029205, -0.05975235998630524, -0.02935210056602955, -0.11041062325239182, -0.007524877320975065, -0.07631081342697144, 0.08236560970544815, -0.029475299641489983, 0.0015468384372070432, 0.037490155547857285, 0.18292681872844696, -0.012021283619105816, 0.1022346019744873, -0.002952439244836569, -0.10582182556390762, -0.09664402902126312, -0.034263622015714645, 0.011516234837472439, 0.0796341672539711, -0.03807196393609047, 0.001742968917824328, 0.061050381511449814, -0.07767417281866074], +extractelement:[-0.04094846919178963, 0.06760185956954956, 0.041964322328567505, -0.10458970069885254, -0.10448863357305527, 0.0027786102145910263, 0.006220925133675337, -0.022529564797878265, -0.049435075372457504, 0.046184297651052475, 0.043102946132421494, -0.05098380893468857, 0.053298015147447586, -0.05539746209979057, -0.02822607010602951, 0.03892335668206215, -0.10553260147571564, 0.028657494112849236, -0.03295578435063362, 0.09212983399629593, -0.15895554423332214, -0.02011711336672306, -0.09931081533432007, -0.08684654533863068, 0.025523614138364792, -0.053000159561634064, -0.062442898750305176, 0.11698474735021591, 0.012299316935241222, 0.03753839060664177, 0.014535108581185341, -0.12304946035146713, -0.026671919971704483, 0.11527541279792786, -0.012128832750022411, 0.15986914932727814, 0.08295842260122299, 0.07055442780256271, 0.01529493648558855, 0.04447322338819504, -0.0067175570875406265, -0.19307909905910492, -0.08296165615320206, -0.0025624828413128853, 0.164103165268898, 0.044232990592718124, -0.06455115228891373, -0.030873076990246773, 0.015579202212393284, 0.04654926061630249, -0.028704339638352394, -0.024533193558454514, 0.08728024363517761, -0.0023479717783629894, 0.05373554676771164, 0.02197103388607502, -0.08705911040306091, -0.07148148119449615, 0.07245254516601562, -0.054828472435474396, -0.002788540907204151, -0.0576963871717453, 0.00852601882070303, -0.11417219042778015, 0.008989597670733929, -0.07066715508699417, -0.0353231243789196, 0.02635914459824562, 0.06685680896043777, 0.028225036337971687, -0.0676213875412941, -0.005733951460570097, 0.019693559035658836, -0.040909543633461, -0.0784108117222786, 0.050447866320610046, -0.0028125932440161705, -0.10718274116516113, 0.012027163058519363, -0.12413685023784637, -0.06015923619270325, -0.07469974458217621, 0.02177540771663189, -0.09584534913301468, 0.05628844350576401, 0.07073158025741577, 0.1049865335226059, -0.022966086864471436, -0.01502283476293087, -0.07456235587596893, -0.11060868948698044, -0.05017329752445221, 0.10085809975862503, 0.055318694561719894, 0.08269327878952026, -0.004127004183828831, 0.09311935305595398, -0.013704659417271614, -0.022173307836055756, 0.1654263138771057, 0.04581911116838455, -0.019727559760212898, -0.025269852951169014, 0.0017102762358263135, 0.11130879074335098, -0.07732295244932175, -0.18415209650993347, -0.051260583102703094, 0.00026641730801202357, -0.09723345190286636, -0.04529091715812683, -0.06131117790937424, -0.08890576660633087, 0.00019668022287078202, -0.0441717691719532, -0.04778345301747322, -0.020092591643333435, 0.10498671978712082, 0.0011192163219675422, 0.04629017040133476, 0.044071681797504425, -0.05578286945819855, -0.06944549828767776, -0.038027677685022354, -0.046816136687994, 0.10406410694122314, 0.06454433500766754, -0.060690637677907944, 0.07554429769515991, -0.09929211437702179, -0.049731310456991196, -0.043205615133047104, 0.0030891485512256622, 0.015268298797309399, 0.021790187805891037, 0.015509583987295628, -0.013691600412130356, -0.02659793198108673, 0.02063230238854885, -0.07024109363555908, -0.06996830552816391, -0.033920127898454666, -0.14804688096046448, 0.1396520435810089, -0.02752210572361946, 0.051647432148456573, 0.07687754184007645, -0.07490652799606323, -0.15262100100517273, 0.029044134542346, -0.08667183667421341, 0.05987858399748802, -0.008892165496945381, 0.09357506036758423, -0.013379997573792934, -0.05834503471851349, -0.017562244087457657, 0.02813047170639038, -0.01197146438062191, -0.07839074730873108, 0.053394004702568054, 0.12321069091558456, -0.03542434796690941, -0.04476506635546684, 0.02480381727218628, -0.0437164343893528, 0.0018085321644321084, 0.06978954374790192, 0.011512820608913898, -0.01481682900339365, 0.0033980533480644226, -0.06833311170339584, -0.035513054579496384, 0.1055353656411171, -0.1342562437057495, 0.1031516045331955, -0.029580973088741302, 0.14565671980381012, -0.037240173667669296, -0.005388667341321707, -0.026967041194438934, 0.10051696002483368, 0.091695137321949, -0.04667992144823074, 0.08678394556045532, 0.03992491215467453, -0.005443106405436993, -0.03901558741927147, -0.07994931191205978, 0.045049019157886505, -0.035442471504211426, 0.11870868504047394, 0.08448908478021622, -0.04267658293247223, -0.05884559825062752, 0.118148572742939, -0.041713546961545944, -0.012728405185043812, 0.1145670935511589, -0.048944614827632904, 0.07618819922208786, 0.022177787497639656, 0.09101353585720062, -0.08511556684970856, -0.0952770784497261, 0.15746921300888062, -0.008665977977216244, 0.11218347400426865, 0.026591815054416656, -0.021806592121720314, 0.0900251716375351, 0.11900526285171509, 0.002579019870609045, 0.058252524584531784, 0.059685178101062775, -0.06400029361248016, -0.09718678891658783, -0.02135411649942398, -0.05346854403614998, 0.05510588362812996, -0.1044517531991005, 0.05767451599240303, 0.03373761475086212, 0.018564842641353607, 0.06296878308057785, 0.0727124884724617, 0.014400385320186615, 0.0022652954794466496, -0.07004745304584503, 0.03878588229417801, 0.010155762545764446, 0.020558074116706848, -0.031171513721346855, 0.029128070920705795, 0.025165840983390808, -0.023844901472330093, 0.015050757676362991, 0.0745311751961708, -0.014940716326236725, 0.03849112614989281, 0.03561285138130188, 0.027385691180825233, 0.0901920422911644, 0.09002519398927689, -0.2003990262746811, -0.06008019670844078, 0.08803392201662064, 0.026785578578710556, 0.02582947351038456, -0.06939052790403366, 0.06855440139770508, -0.11110971122980118, 0.03866191580891609, 0.02494860254228115, 0.010018207132816315, -0.14183808863162994, 0.02887008897960186, 0.07474217563867569, 0.033212486654520035, -0.08513662219047546, 0.07095522433519363, -0.024551963433623314, -0.04938264936208725, 0.12208191305398941, 0.025825263932347298, 0.01387977134436369, -0.08436036854982376, -0.014960243366658688, 0.0027024815790355206, -0.04432991147041321, 0.10455101728439331, -0.01159633882343769, 0.038944609463214874, 0.12179115414619446, 0.05123121663928032, 0.0702381283044815, -0.047812074422836304, -0.11793318390846252, 0.0026181768625974655, 0.09076602756977081, 0.08279330283403397, -0.0019208518788218498, 0.05280439183115959, -0.18419304490089417, 0.00852467492222786, -0.12059475481510162, -0.10145219415426254, 0.0187113918364048, 0.013102014549076557, -0.022907305508852005, 0.05161726847290993, -0.05867040529847145, -0.04140117019414902, 0.0019767731428146362, 0.08129184693098068, -0.02363171987235546, -0.05122482404112816, 0.03226950392127037, -0.04973379895091057, -0.08700266480445862], +extractvalue:[0.07072554528713226, -0.036285530775785446, 0.090692900121212, -0.12598779797554016, -0.12185034900903702, 0.04594988375902176, -0.07819158583879471, 0.14470165967941284, 0.02196778543293476, 0.05571233853697777, 0.0518781952559948, -0.059870313853025436, -0.09286873787641525, -0.08177843689918518, -0.0008112229406833649, -0.026798272505402565, 0.0820014625787735, 0.0027745564002543688, 0.12513598799705505, -0.07518761605024338, -0.037701044231653214, -0.040924638509750366, 0.017097232863307, -0.10262000560760498, 0.028928186744451523, -0.06089626997709274, -0.10308503359556198, 0.08497800678014755, 0.16318297386169434, 0.10921843349933624, 0.01663769595324993, -0.014241918921470642, -0.05463146045804024, 0.10443506389856339, 0.0027663575019687414, -0.09291549772024155, 0.0214751698076725, 0.07863634079694748, 0.006510842125862837, -0.043989233672618866, -0.007875928655266762, -0.046391844749450684, 0.128483384847641, 0.09701676666736603, 0.13340093195438385, 0.00218455889262259, 0.0014917815569788218, 0.03551262617111206, -0.04387594386935234, -0.06726934015750885, -0.017705796286463737, -0.03539983928203583, 0.10672300308942795, -0.05456661060452461, -0.1475237011909485, -0.02336546592414379, -0.17013861238956451, -0.13197985291481018, -0.077590711414814, -0.1361256092786789, -0.07134827971458435, 0.1289770007133484, -0.0012344276765361428, 0.11273322254419327, -0.02055324800312519, -0.06348524242639542, -0.03251731023192406, 0.021845558658242226, 0.060919467359781265, 0.00910668820142746, 0.03389697149395943, 0.054369375109672546, -0.01153761800378561, 0.011257140897214413, 0.04970330744981766, 0.04142420366406441, 0.1072966605424881, -0.09508790820837021, 0.0107906898483634, -0.013048045337200165, -0.13031555712223053, -0.04110897704958916, -0.14322470128536224, -0.18872661888599396, 0.08449219167232513, -0.04883500188589096, 0.1404593139886856, 0.0456489697098732, 0.16377340257167816, -0.0790145993232727, -0.004645203240215778, -0.013188938610255718, -0.027498280629515648, 0.021340640261769295, 0.03248782828450203, 0.06982584297657013, 0.05368271470069885, 0.042219992727041245, 0.12127812951803207, 0.08387461304664612, 0.15005016326904297, 0.1218813955783844, 0.11291776597499847, 0.014948845840990543, 0.09486129134893417, 0.029916204512119293, 0.003063841722905636, 0.04961805045604706, -0.009173359721899033, -0.05949781835079193, -0.14130008220672607, -0.06403250247240067, -0.0162166990339756, 0.006064599379897118, -0.007120149210095406, -0.019651368260383606, 0.0923682376742363, -0.004473505076020956, -0.007461063098162413, 0.07123564183712006, 0.035769399255514145, 0.008064397610723972, -0.01906438171863556, -0.04062170162796974, -0.07281054556369781, -0.12125664204359055, 0.0029570208862423897, -0.14780615270137787, 0.1280105859041214, 0.1359453648328781, -0.05977261811494827, -0.10554962605237961, 0.15062658488750458, 0.02470371313393116, -0.04631862789392471, 0.027946172282099724, 0.0035486803390085697, 0.13892507553100586, -0.004881065338850021, -0.0388353057205677, -0.08043728768825531, -0.08580572158098221, 0.06643328070640564, 0.08771726489067078, -0.030103910714387894, 0.0438704751431942, 0.11831028014421463, 0.077150858938694, -0.06608527898788452, 0.03193444013595581, -0.04934152588248253, -0.10868643969297409, 0.12112250924110413, 0.08808723092079163, 0.026930861175060272, -0.0009678479400463402, -0.03776196390390396, -0.09743990749120712, -0.01190374419093132, -0.07857479900121689, 0.03599131107330322, 0.038082193583250046, 0.049512192606925964, 0.07345489412546158, 0.009910844266414642, -0.004134939517825842, -0.012309557758271694, -0.0359884649515152, 0.14473623037338257, 0.01230011135339737, -0.05969945713877678, -0.0871039405465126, -0.05725167691707611, 0.0099349869415164, 0.0416375994682312, 0.06480664759874344, 0.11830486357212067, 0.12507203221321106, 0.12922988831996918, -0.1745685636997223, 0.04034266620874405, 0.02854730747640133, -0.00523074297234416, 0.10394971072673798, 0.04875475540757179, 0.04509655386209488, -0.11306041479110718, 0.04105786234140396, -0.08754315972328186, -0.08845716714859009, 0.05119645968079567, -0.058109745383262634, 0.092063769698143, 0.03065153956413269, 0.04632904753088951, 0.139224573969841, -0.03623821586370468, -0.037200041115283966, -0.12060102075338364, 0.016818784177303314, 0.07443161308765411, -0.06427427381277084, -0.008992348797619343, -0.07457862049341202, -0.1317063271999359, 0.020138313993811607, -0.06271811574697495, 0.021260691806674004, 0.05308988690376282, 0.06149260327219963, 0.06827197223901749, 0.13618408143520355, 0.02386441081762314, 0.006630330346524715, 0.05293324217200279, 0.07169700413942337, -0.0748186931014061, -0.023623762652277946, -0.034500665962696075, 0.07545680552721024, 0.11531233042478561, 0.05418562889099121, -0.0067262290976941586, 0.12183273583650589, 0.07084472477436066, 0.08595064282417297, -0.13914261758327484, 0.07415842264890671, -0.05108293890953064, 0.02504042722284794, 0.043428074568510056, -0.08226315677165985, -0.003565864870324731, -0.060102678835392, -0.1073693260550499, -0.04374448210000992, -0.09661288559436798, 0.08083456009626389, 0.0829373151063919, 0.11915133148431778, 0.018115004524588585, 0.018369603902101517, -0.0532548613846302, -0.1169917955994606, -0.0492154024541378, -0.12027471512556076, 0.1319960057735443, -0.035156652331352234, 0.01190308015793562, 0.0038750774692744017, 0.04919683560729027, 0.006739321164786816, -0.014699860475957394, -0.021731773391366005, -0.019483327865600586, 0.02086099237203598, 0.1577051877975464, 0.04776403680443764, 0.0495014563202858, -0.08447791635990143, 0.07898622751235962, 0.09379284083843231, -0.06391693651676178, -0.1041366457939148, 0.12628600001335144, -0.12840333580970764, 0.13340424001216888, -0.018491055816411972, -0.020413067191839218, 0.11525674164295197, -0.042437467724084854, 0.07000952959060669, -0.05756039172410965, 0.04435370862483978, 0.11189871281385422, 0.09018373489379883, -0.09950152039527893, -0.1337464600801468, 0.0278899148106575, 0.15089237689971924, 0.03535009175539017, -0.08123309910297394, 0.07042890042066574, -0.021485043689608574, 0.010197049006819725, -0.14675165712833405, -0.12232335656881332, 0.03302893042564392, 0.004564816132187843, -0.09791316837072372, -0.11507447808980942, -0.010427236557006836, -0.1605699509382248, -0.13271212577819824, -0.051962584257125854, -0.10421217232942581, -0.040607184171676636, 0.0655188038945198, 0.009008369408547878, 0.019828323274850845], +fadd:[0.007809346541762352, 0.07606150209903717, 0.04083550348877907, -0.10182543098926544, -0.0803452879190445, 0.0036891098134219646, -0.06586723029613495, -0.007972285151481628, 0.07512006163597107, 0.05365767702460289, -0.06976458430290222, 0.0978069007396698, 0.09103728085756302, -0.1029515340924263, -0.08299313485622406, 0.06832706928253174, -0.11732933670282364, -0.021135957911610603, 0.017795346677303314, 0.09165608882904053, -0.111121267080307, -0.09954330325126648, -0.0494401715695858, -0.07072226703166962, 0.02312115766108036, -0.1265203356742859, 0.025247694924473763, 0.10306929051876068, 0.01793850027024746, -0.03247182071208954, 0.011290287598967552, -0.09732671082019806, -0.014188888482749462, 0.05587146803736687, -0.0048348079435527325, -0.0007233180804178119, 0.10773160308599472, 0.07000815868377686, -0.07320365309715271, -0.010646359995007515, -0.07380636781454086, 0.07480885088443756, 0.050874389708042145, -0.012694066390395164, 0.04386945813894272, -0.19737127423286438, 0.04894973710179329, -0.03050410747528076, 0.007242790888994932, -0.002899403916671872, -0.025563599541783333, -0.0072209471836686134, -0.0008454492781311274, -0.0382949560880661, 0.060581035912036896, -0.12386275827884674, -0.056562282145023346, -0.05644121766090393, 0.006937600672245026, -0.008325205184519291, 0.009932057000696659, -0.0954621434211731, -0.0007936703623272479, -0.10803470015525818, -0.16573947668075562, -0.00946054793894291, -0.08097601681947708, 0.10182464867830276, -0.032835736870765686, -0.048557545989751816, -0.01155997533351183, -0.0006915619014762342, -0.024154584854841232, -0.0018283671233803034, -0.025685444474220276, 0.058829598128795624, 0.026032933965325356, -0.08542715758085251, -0.06765129417181015, 0.005810534581542015, -0.059028103947639465, -0.08453790843486786, 0.043008193373680115, 0.045769546180963516, 0.06251341849565506, 0.10584484040737152, 0.1383044570684433, 0.01946391351521015, 0.10082866251468658, -0.03671250492334366, -0.11361268162727356, -0.011455673724412918, 0.05974283069372177, 0.015232028439640999, 0.019546842202544212, 0.005276065319776535, 0.0860341265797615, 0.012537862174212933, -0.022698547691106796, 0.05207069218158722, 0.10687712579965591, -0.09748006612062454, 0.011650529690086842, 0.014319190755486488, 0.09086240082979202, -0.07524852454662323, -0.05544854328036308, -0.03300615772604942, -0.05072806775569916, 0.09376700967550278, -0.005001001991331577, 0.06676534563302994, 0.022166553884744644, -0.11801262944936752, 0.005339046940207481, -0.07896360754966736, -0.025999661535024643, 0.04647773131728172, -0.14450965821743011, -0.022077420726418495, -0.027578581124544144, -0.14082813262939453, 0.027041349560022354, -0.08255773782730103, -0.0013963193632662296, -0.04442519322037697, 0.044996052980422974, -0.07227002084255219, 0.11731598526239395, -0.09907266497612, -0.039378128945827484, -0.0870724692940712, -0.09105503559112549, 0.014193737879395485, -0.007450696546584368, 0.0390317402780056, -0.012533117085695267, -0.0491025410592556, 0.0024312594905495644, 0.006605953443795443, 0.045164089649915695, -0.05205032601952553, -0.0313233844935894, 0.11056685447692871, -0.007509919814765453, -0.055445630103349686, 0.06782691180706024, -0.04419055953621864, 0.056445252150297165, 0.10873854905366898, -0.11547057330608368, -0.014290648512542248, 0.0797467976808548, 0.0940970778465271, 0.0027032175567001104, 0.03613969311118126, -0.038524728268384933, -0.040970370173454285, -0.01919114589691162, -0.11123919486999512, 0.01246237475425005, -0.019252749159932137, -0.08469798415899277, 0.08681774884462357, 0.0014819178031757474, 0.07271774113178253, 0.025211744010448456, 0.037791766226291656, 0.00861075334250927, 0.005206391215324402, -0.03671932592988014, -0.09460773319005966, -0.07901088893413544, 0.10399918258190155, -0.013078175485134125, 0.06063055247068405, 0.09758810698986053, 0.03450135886669159, -0.0610811673104763, 0.001291707274504006, 0.052839476615190506, 0.15520483255386353, 0.10325362533330917, -0.087395079433918, -0.04930984228849411, 0.0548723042011261, 0.007929790765047073, 0.0512399785220623, -0.07126349210739136, 0.11124115437269211, 0.041340362280607224, 0.01593451015651226, 0.07038164883852005, 0.07071126252412796, 0.04740384593605995, -0.014358616434037685, -0.12833213806152344, 0.07895297557115555, 0.08838849514722824, -0.027208246290683746, 0.06610675901174545, -0.03561900183558464, 0.06467743217945099, -0.0652318224310875, -0.12259521335363388, -0.012332594022154808, 0.010963046923279762, 0.09043575078248978, -0.07234864681959152, 0.06674858182668686, 0.09854535758495331, -0.055262528359889984, 0.059825725853443146, 0.05652891471982002, 0.08471926301717758, -0.08911086618900299, -0.057408250868320465, -0.012825976125895977, -0.08002287149429321, 0.04476544260978699, -0.08843337744474411, -0.020574195310473442, 0.07881426811218262, 0.07613545656204224, 0.06331215798854828, 0.05456311255693436, 0.01770692691206932, 0.012137573212385178, -0.05236629769206047, 0.022259069606661797, -0.02447298727929592, 0.02258242480456829, -0.023813584819436073, -0.10118888318538666, 0.07004977762699127, -0.02217126451432705, 0.0172434039413929, 0.039384324103593826, 0.031792979687452316, 0.1455124169588089, 0.02851078473031521, 0.025623982772231102, 0.06737233698368073, 0.09580431133508682, -0.058674946427345276, -0.057679254561662674, -0.037100665271282196, -0.010505208745598793, 0.037451762706041336, 0.17936769127845764, 0.1326604038476944, -0.1309880167245865, 0.059864532202482224, -0.012740959413349628, 0.03556231036782265, -0.05729374662041664, 0.05434679985046387, 0.05544917285442352, -0.024759160354733467, 0.16244736313819885, 0.057879701256752014, 0.032938770949840546, -0.04924839362502098, 0.1503925323486328, -0.058610111474990845, 0.0033720468636602163, -0.10097086429595947, -0.01498181838542223, 0.00815536081790924, -0.08535731583833694, -0.03456870838999748, -0.015576895326375961, 0.11752425134181976, 0.1403287649154663, 0.07189609110355377, 0.057347606867551804, -0.006675912067294121, -0.048859793692827225, 0.002797817811369896, 0.08395260572433472, 0.05585278198122978, -0.07649876177310944, 0.035770732909440994, -0.08650260418653488, -0.12792333960533142, -0.07471495866775513, -0.07190200686454773, -0.11372581869363785, 0.08037986606359482, -0.028195420280098915, 0.03870629519224167, 0.047703176736831665, -0.08200469613075256, 0.047413088381290436, -0.04456324875354767, -0.028524938970804214, -0.003554996568709612, 0.10221967101097107, -0.13884620368480682, -0.05233556032180786], +fcmp:[-0.03791837394237518, 0.09401441365480423, 0.08172242343425751, -0.12003816664218903, -0.1218033954501152, 0.011664078570902348, 0.005724099464714527, -0.023576516658067703, -0.02529643289744854, 0.09427902847528458, -0.08550512045621872, 0.11186998337507248, 0.05050996318459511, 0.014135008677840233, -0.0911014974117279, 0.025785041972994804, 0.13276076316833496, 0.04160578176379204, -0.09840106964111328, 0.12847590446472168, -0.12840932607650757, 0.07919064909219742, -0.09961334615945816, -0.056426048278808594, 0.116960808634758, -0.11069615185260773, 0.04193791747093201, 0.05690253898501396, -0.006700798403471708, 0.06414337456226349, 0.012519772164523602, -0.11849423497915268, -0.007068399805575609, 0.12989452481269836, -0.018818875774741173, -0.05355304107069969, 0.12329534441232681, 0.07710924744606018, 0.11948487162590027, -0.05044078081846237, 0.020862635225057602, 0.06161213666200638, -0.11357024312019348, -0.013098037801682949, 0.18912827968597412, 0.17324429750442505, 0.16932614147663116, 0.029593575745821, 0.15153338015079498, -0.022314434871077538, -0.01918855868279934, -0.029305413365364075, -0.001990845426917076, -0.04796997457742691, 0.06722018867731094, -0.11126352101564407, -0.12540151178836823, -0.08225458115339279, 0.062206462025642395, -0.017747551202774048, -0.08371111005544662, -0.13564352691173553, 0.1103612408041954, -0.12152395397424698, -0.1864369511604309, -0.013609996996819973, -0.08277127146720886, 0.037221211940050125, -0.0364425927400589, -0.0621623694896698, -0.0158730149269104, 0.04611019790172577, -0.011146798729896545, -0.024449482560157776, -0.04218640550971031, 0.15363386273384094, -0.002587808994576335, -0.06611672043800354, -0.037357572466135025, 0.048940300941467285, -0.07407261431217194, -0.09479259699583054, 0.04893074557185173, -0.12830783426761627, 0.07422520965337753, -0.0004896892351098359, 0.0010691025527194142, -0.03294392302632332, -0.008270010352134705, 0.057869795709848404, -0.12505896389484406, 0.010248303413391113, 0.09644990414381027, 0.006617970298975706, 0.14929607510566711, 0.02051633596420288, 0.08126826584339142, -0.0531001091003418, -0.02394448034465313, 0.1587742120027542, 0.06374635547399521, -0.10553693771362305, 0.043401096016168594, 0.017578845843672752, 0.1254829615354538, -0.018281174823641777, 0.004882367793470621, -0.0333825945854187, -0.059612054377794266, -0.07804035395383835, -0.0024156509898602962, -0.0648777112364769, 0.032767683267593384, -0.03295597434043884, -0.08019982278347015, -0.0851157009601593, -0.028735335916280746, 0.1080716922879219, -0.005003811791539192, -0.004388691391795874, -0.031300608068704605, -0.04155283421278, 0.01571585051715374, -0.041238367557525635, 0.05746392533183098, -0.0462571457028389, 0.044262032955884933, 0.054255325347185135, 0.13967153429985046, -0.07325276732444763, -0.04545574635267258, -0.09198476374149323, -0.02122563309967518, 0.01077219471335411, 0.023518847301602364, -0.02310493215918541, 0.0255745742470026, 0.029978666454553604, 0.013400126248598099, 0.008149122819304466, -0.07397517561912537, -0.025328217074275017, -0.06269645690917969, -0.06584543734788895, -0.01825309731066227, -0.12764771282672882, 0.0765879675745964, -0.03505486622452736, -0.11881094425916672, 0.03218706697225571, 0.06431394070386887, 0.1213766485452652, 0.09875475615262985, 0.12177110463380814, -0.031717803329229355, -0.04416990280151367, -0.035978008061647415, 0.08918559551239014, -0.02273697219789028, 0.05868278071284294, -0.07388000935316086, -0.03423269838094711, -0.06745937466621399, 0.07434918731451035, -0.07288845628499985, 0.17392736673355103, 0.01823141798377037, 0.03838099166750908, 0.00920100323855877, 0.08238065242767334, 0.002884656423702836, -0.09565247595310211, -0.018678447231650352, 0.05231801047921181, 0.01565619371831417, 0.10549121350049973, -0.07037314772605896, 0.1318189948797226, -0.14157411456108093, -0.10905086249113083, -0.03399338573217392, 0.005487372167408466, 0.021645691245794296, -0.12595005333423615, -0.07802855223417282, -0.052780795842409134, 0.05554404854774475, 0.10047252476215363, -0.05679842084646225, 0.12630873918533325, 0.0306583009660244, 0.03668183833360672, 0.08379755914211273, -0.017886383458971977, -0.09245491027832031, -0.014379858039319515, -0.0362996980547905, -0.0521111786365509, 0.05381440743803978, 0.010055582039058208, 0.0014037659857422113, -0.011399243026971817, 0.06218085065484047, 0.09991490840911865, 0.005833972245454788, 0.08786318451166153, 0.023531833663582802, 0.015630587935447693, -0.09515409916639328, 0.1841701716184616, 0.1000526174902916, 0.0898372158408165, 0.19317437708377838, 0.06762205809354782, 0.049029599875211716, -0.09601440280675888, -0.04552624747157097, -0.019804786890745163, 0.09500088542699814, -0.04550237953662872, -0.08381717652082443, 0.030617350712418556, -0.09158188849687576, 0.08625251054763794, -0.05112934857606888, 0.06378660351037979, 0.024310238659381866, 0.008010832592844963, 0.03224588930606842, 0.010869499295949936, 0.007077301386743784, 0.10155675560235977, -0.0385676808655262, 0.13062652945518494, 0.028025861829519272, -0.08060818165540695, 0.04012620449066162, 0.034439411014318466, 0.023204511031508446, -0.04739367589354515, 0.020758427679538727, 0.028330104425549507, 0.04708161950111389, 0.10673943161964417, 0.012873654253780842, -0.12711337208747864, 0.0711832046508789, 0.0561358816921711, 0.0075172437354922295, 0.003907294478267431, -0.09812311083078384, 0.023779552429914474, 0.037584252655506134, 0.06777913868427277, 0.0617951974272728, 0.07885857671499252, 0.031247762963175774, 0.05255710706114769, -0.031530220061540604, -0.18779537081718445, 0.07595259696245193, 0.025896843522787094, -0.024351101368665695, 0.16979774832725525, -0.042278893291950226, -0.03957618772983551, -0.10806629806756973, -0.01750212535262108, 0.009653974324464798, -0.12441092729568481, 0.04716097563505173, 0.0006996097508817911, 0.04082933068275452, 0.06012415513396263, 0.10444233566522598, 0.07951633632183075, -0.10392237454652786, -0.011844665743410587, 0.033725906163454056, 0.09301632642745972, 0.07780458778142929, 0.06652450561523438, 0.03208078444004059, -0.17315766215324402, -0.10413748025894165, -0.10902900248765945, -0.04829684644937515, 0.0811753123998642, -0.020666729658842087, -0.029329732060432434, 0.05822408199310303, -0.07135148346424103, -0.09165491163730621, 0.048802729696035385, -0.017168553546071053, 0.03780063986778259, 0.11589991301298141, -0.01776738651096821, -0.15440498292446136, -0.10290797054767609], +fdiv:[-0.012159309349954128, 0.06948390603065491, 0.04155806824564934, -0.10601378977298737, -0.07739167660474777, 0.003594885813072324, -0.11468606442213058, -0.021035654470324516, -0.016827233135700226, 0.08054006099700928, -0.08489377796649933, 0.09579923748970032, -0.07558839023113251, -0.007764745038002729, -0.16420933604240417, -0.025080880150198936, -0.08983295410871506, -0.01483188197016716, -0.06586281210184097, 0.0978146642446518, -0.10951441526412964, -0.01764180138707161, -0.08348788321018219, -0.056914132088422775, 0.03174344077706337, -0.12674733996391296, 0.05037802830338478, 0.17077498137950897, -0.020951490849256516, -0.09699754416942596, 0.013440489768981934, -0.0957922711968422, -0.12280936539173126, 0.12303313612937927, -0.020488956943154335, 0.05500686541199684, 0.12045878171920776, 0.07297573238611221, 0.10751572251319885, 0.14922882616519928, 0.002051874529570341, -0.02253795973956585, 0.02669507823884487, -0.012641113251447678, 0.16192539036273956, -0.06546802818775177, -0.010815171524882317, -0.039638303220272064, -0.07832896709442139, -0.02086338959634304, 0.06958240270614624, -0.09769892692565918, -0.03422490879893303, -0.01839890144765377, -0.0739293023943901, -0.131336510181427, -0.038922019302845, -0.07607647776603699, 0.09114079922437668, -0.009965162724256516, 0.0016764947213232517, -0.06517301499843597, 0.06829994916915894, 0.04315858706831932, 0.08558287471532822, 0.07575249671936035, -0.08928071707487106, -0.009642318822443485, 0.05792741850018501, -0.027055438607931137, -0.016838539391756058, -0.00224235444329679, -0.0037490357644855976, 0.13756361603736877, -0.12158498913049698, 0.07857459038496017, 0.006384189240634441, -0.09184213727712631, -0.07916542142629623, -0.06155794858932495, -0.062462154775857925, -0.0887276902794838, 0.07465378940105438, -0.0279636699706316, 0.07165443897247314, -0.02480858936905861, -0.007727295625954866, -0.009376464411616325, -0.09490808844566345, 0.11970628052949905, -0.1183861568570137, -0.028946194797754288, 0.0719667598605156, 0.004600744228810072, 0.04907027631998062, -0.009497501887381077, 0.06026880815625191, 0.026504667475819588, -0.024655768647789955, 0.0868876725435257, 0.022855553776025772, -0.07214627414941788, -0.02667483501136303, 0.015539705753326416, 0.10449735820293427, 0.023341933265328407, 0.04417175054550171, -0.035784896463155746, -0.10374049097299576, -0.09445693343877792, 0.026799935847520828, 0.11531832814216614, 0.035936351865530014, -0.021290840581059456, 0.05042323097586632, 0.057175152003765106, -0.028059033676981926, -0.07077981531620026, -0.15246210992336273, -0.014140386134386063, -0.02937106043100357, -0.0753212496638298, 0.025669658556580544, -0.10720998048782349, -0.07606779038906097, -0.0468938834965229, 0.054618142545223236, -0.07072623819112778, 0.10983595997095108, -0.06865963339805603, -0.04109819605946541, -0.029950333759188652, -0.017021534964442253, 0.012720015831291676, -0.04487766698002815, 0.02033272199332714, -0.01391213946044445, -0.06747640669345856, 0.019839616492390633, 0.008817599155008793, -0.056981515139341354, 0.05372626334428787, -0.16291563212871552, -0.020886583253741264, -0.039269860833883286, 0.04307469353079796, 0.07150210440158844, -0.052687764167785645, -0.011297271586954594, 0.02680911496281624, -0.023348171263933182, 0.06842967867851257, 0.036630380898714066, 0.10401642322540283, -0.053170736879110336, -0.03585800528526306, -0.11558568477630615, -0.09743860363960266, -0.033860187977552414, -0.020627889782190323, -0.07709313929080963, -0.02396208420395851, -0.1222744733095169, 0.08835068345069885, -0.06152208149433136, -0.06580611318349838, -0.12943212687969208, 0.10872912406921387, 0.008707258850336075, 0.03741417080163956, 0.024705518037080765, -0.079923115670681, -0.13361698389053345, 0.09663314372301102, -0.021015826612710953, 0.11053557693958282, -0.07598163932561874, 0.12307218462228775, -0.09532105177640915, -0.006886813323944807, 0.15136027336120605, 0.022548748180270195, 0.12408468127250671, -0.08911997079849243, -0.07989635318517685, 0.0203736312687397, 0.05127192288637161, 0.0319766141474247, 0.0814027488231659, 0.11638667434453964, 0.024407271295785904, 0.026915637776255608, 0.06744342297315598, -0.013317788951098919, 0.06166723370552063, -0.013487766496837139, -0.03307144716382027, 0.03452834486961365, 0.08277786523103714, -0.024553900584578514, 0.07558178901672363, 0.023534458130598068, 0.07183725386857986, 0.093527652323246, 0.009236259385943413, -0.024251626804471016, -0.13466714322566986, 0.09406349807977676, -0.08991171419620514, 0.034856949001550674, 0.13305982947349548, -0.061643265187740326, 0.15856245160102844, 0.06181814521551132, -0.08194365352392197, -0.09437426924705505, -0.04410295560956001, 0.10665832459926605, 0.022338837385177612, -0.02438245713710785, -0.10106771439313889, -0.07877282798290253, 0.08905868232250214, 0.06177496165037155, 0.06888602674007416, 0.055257610976696014, 0.02423357404768467, -0.004798619542270899, 0.005994091276079416, 0.021412910893559456, -0.03717898577451706, -0.026086825877428055, -0.025206707417964935, 0.177515909075737, 0.06876865029335022, 0.024570515379309654, 0.027084460482001305, 0.07348901778459549, -0.020670462399721146, -0.08116216212511063, 0.033999066799879074, 0.025934211909770966, 0.008492489345371723, 0.10074374079704285, -0.017711156979203224, -0.05699986219406128, 0.052114132791757584, -0.04124541953206062, 0.06691532582044601, -0.0031741599086672068, 0.07062041759490967, 0.028663069009780884, 0.0741720050573349, 0.09088748693466187, 0.0447562038898468, -0.1891098916530609, 0.03007388859987259, 0.061374008655548096, -0.04063685983419418, -0.01458597369492054, 0.056678760796785355, -0.021497195586562157, 0.066318579018116, 0.15780025720596313, -0.05431917682290077, 0.03632764145731926, -0.12078793346881866, -0.015892619267106056, 0.0074805826880037785, -0.050454746931791306, -0.06964059174060822, -0.011311264708638191, 0.04252331703901291, 0.06096132844686508, -0.06615453213453293, -0.029626308009028435, 0.04644344374537468, -0.08027876168489456, 0.04400663450360298, 0.08478524535894394, 0.054656337946653366, -0.1617770940065384, 0.022807586938142776, 0.011003230698406696, 0.1428360491991043, -0.09101951867341995, 0.051218271255493164, -0.08303406089544296, 0.05083807557821274, -0.013521398417651653, 0.05197953060269356, 0.1044381633400917, 0.07271602749824524, 0.04739904776215553, -0.12924741208553314, -0.007494358345866203, 0.004140754230320454, -0.040148328989744186, -0.08922184258699417, -0.09702958166599274], +floatTy:[-0.11065809428691864, 0.01623190939426422, -0.08247078210115433, 0.025187425315380096, -0.0715833231806755, 0.09970595687627792, -0.0985308289527893, 0.0878518670797348, -0.10372339934110641, 0.011438584886491299, -0.04781622439622879, 0.051893603056669235, 0.03336309641599655, 0.020663956180214882, -0.007239643484354019, 0.0051025585271418095, -0.02586458995938301, -0.019537920132279396, -0.10678499937057495, -0.07554896175861359, -0.01771443709731102, 0.1142175942659378, 0.11748374998569489, -0.1196439117193222, 0.08205831050872803, 0.04348515719175339, -0.10155142843723297, -0.03734566643834114, -0.08405406773090363, -0.004659025464206934, 0.11515259742736816, 0.08914081007242203, -0.03894413635134697, -0.07805539667606354, -0.10982895642518997, 0.01848864182829857, 0.11512322723865509, -0.08460906147956848, -0.03190230578184128, -0.009694894775748253, 0.012809831649065018, -0.019274558871984482, 0.10550486296415329, -0.14007729291915894, 0.023098096251487732, -0.022125491872429848, -0.03262701258063316, -0.10253645479679108, -0.004413076210767031, 0.0383555069565773, -0.13368253409862518, -0.11618173122406006, -0.09166873246431351, 0.06731299310922623, 0.13207486271858215, 0.026665937155485153, 0.04872903972864151, 0.06743065267801285, 0.06516332924365997, 0.09800246357917786, -0.03570958599448204, 0.049150485545396805, -0.0792587473988533, 0.048791397362947464, 0.024548377841711044, -0.1167801097035408, -0.12273174524307251, 0.028945963829755783, 0.1086726114153862, -0.09402312338352203, 0.010385503992438316, 0.0874139666557312, -0.03748884052038193, -0.06066494435071945, 0.13329318165779114, -0.08617843687534332, -0.07818420231342316, 0.059218667447566986, -0.006344751454889774, -0.0564153827726841, 0.09719832241535187, 0.08931338042020798, 0.1273706704378128, -0.021565092727541924, -0.03531406447291374, -0.021445417776703835, -0.019701233133673668, 0.06800250709056854, 0.03139002248644829, 0.08644113689661026, -0.05220533907413483, 0.0968271940946579, -0.10255718231201172, 0.02445496991276741, 0.029030248522758484, -0.13432200253009796, -0.0772681012749672, 0.008055820129811764, 0.06847459822893143, 0.06241055950522423, -0.05388101190328598, -0.00208998192101717, 0.03419946879148483, -0.06434649229049683, -0.035489700734615326, 0.024729037657380104, -0.01791412942111492, -0.09821288287639618, 0.11010872572660446, 0.0016031392151489854, 0.09299411624670029, -0.04163698852062225, -0.006296881474554539, 0.1146497055888176, 0.12067729979753494, -0.016187874600291252, -0.09854082018136978, 0.009340842254459858, 0.04685347154736519, 0.035016562789678574, 0.00011221826571272686, 0.01834678277373314, -0.014004029333591461, 0.10030823200941086, -0.1478458046913147, -0.10485358536243439, -0.11656247824430466, -0.03237878531217575, 0.09871062636375427, -0.11302271485328674, 0.06955249607563019, 0.049728039652109146, 0.08873187750577927, 0.11796793341636658, -0.03920719400048256, 0.03181035444140434, -0.03226675093173981, -0.10897418856620789, -0.09290648251771927, -0.11773025244474411, 0.10103607922792435, 0.054011665284633636, 0.03474997729063034, -0.057707253843545914, 0.0577600821852684, 0.016635214909911156, 0.12045038491487503, 0.019180413335561752, 0.05392865464091301, -0.11139313131570816, -0.001189546543173492, -0.05744584649801254, 0.008272428065538406, -0.07917453348636627, -0.018201269209384918, 0.09608834236860275, -0.10350482165813446, 0.050433531403541565, -0.08833405375480652, 0.08706967532634735, -0.010573143139481544, -0.09758894145488739, 0.04936625063419342, -0.00012697004422079772, 0.042652614414691925, -0.004086935427039862, 0.02645820565521717, 0.027020158246159554, 0.11251462996006012, -0.028907721862196922, 0.07494153082370758, 0.08125750720500946, 0.04322092607617378, -0.07650920748710632, -0.018064409494400024, 0.018281416967511177, 0.06422943621873856, -0.10574118793010712, 0.027425097301602364, 0.11123766005039215, 0.034321922808885574, 0.00619639502838254, -0.007229483686387539, 0.034545958042144775, -0.012813079170882702, 0.09107030928134918, -0.12030071020126343, 0.01816471479833126, 0.08767279237508774, -0.058757584542036057, 0.026159418746829033, -0.03348878398537636, -0.05134030804038048, 0.0070516192354261875, 0.14065125584602356, -0.10898910462856293, 0.04302797466516495, 0.0034091316629201174, -0.05066881701350212, -0.11507128179073334, 0.0099110696464777, 0.10450520366430283, 0.10819575935602188, 0.09719529747962952, 0.08194535225629807, -0.005308449734002352, -0.10546008497476578, -0.0160269383341074, 0.07249440997838974, -0.07166808098554611, -0.09652087092399597, -0.08813294768333435, 0.029723167419433594, 0.011984562501311302, 0.05787791311740875, 0.007035232614725828, -0.12417189031839371, 0.11900027841329575, -0.01043227780610323, -0.088550865650177, -0.06391402333974838, 0.08518807590007782, -0.04873846843838692, -0.07412934303283691, -0.04680027440190315, -0.10530521720647812, -0.10426349192857742, 0.12834787368774414, -0.0996670201420784, -0.07728677988052368, 0.10049515962600708, -0.008217751048505306, -0.11230422556400299, -0.04550676792860031, 0.0689069926738739, 0.02065795660018921, 0.10366874188184738, 0.11424104869365692, -0.08495877683162689, 0.021548684686422348, -0.014634712599217892, 0.1188952773809433, -0.08626960963010788, -0.0601339153945446, -0.01778963953256607, 0.10994956642389297, -0.09660375118255615, 0.05975634232163429, 0.139439195394516, -0.1110449731349945, 0.02022266946732998, -0.06760580092668533, -0.09605128318071365, -0.09457661956548691, -0.07261180877685547, -0.008444717153906822, -0.09734249114990234, -0.08845742046833038, 0.020010367035865784, -0.0006090152892284095, -0.04501553252339363, 0.0383010171353817, 0.10049225389957428, -0.07068297266960144, 0.04164900258183479, 0.12218765169382095, 0.030837571248412132, -0.12062933295965195, 0.09784385561943054, 0.06531015038490295, 0.058739081025123596, -0.011778260581195354, -0.03243473172187805, -0.020660527050495148, -0.1176760122179985, -0.0038025768008083105, -0.02813642844557762, 0.04074005037546158, 0.013002210296690464, -0.07995961606502533, -0.04675229638814926, -0.025136765092611313, 0.11095203459262848, 0.017498662695288658, 0.025597525760531425, 0.011861980892717838, -0.1250573992729187, -0.06567852944135666, 0.005278321448713541, 0.05375306308269501, -0.10446222126483917, 0.016917524859309196, 0.10972495377063751, -0.10187646001577377, -0.036837100982666016, -0.09833957254886627, -0.0650714859366417, 0.09325486421585083, 0.027257081121206284, 0.07416542619466782], +fmul:[0.007995007559657097, 0.07286606729030609, 0.017441891133785248, -0.10361158102750778, -0.04923369735479355, -0.025705307722091675, -0.13309285044670105, -0.10028500109910965, -0.08291365951299667, 0.0462554432451725, -0.17489175498485565, 0.08956912904977798, -0.049895137548446655, -0.13031281530857086, -0.1257062405347824, -0.0546187125146389, -0.09090858697891235, -0.15732404589653015, -0.056543052196502686, 0.06815264374017715, -0.16538697481155396, -0.09185562282800674, -0.03191426023840904, -0.04378492385149002, 0.03227316960692406, -0.12215983867645264, 0.02842048928141594, 0.1667107194662094, -0.11289138346910477, -0.022124573588371277, 0.013729322701692581, -0.12096944451332092, 0.023950772359967232, 0.120716392993927, -0.11110921204090118, 0.022992942482233047, 0.12189362198114395, 0.06858142465353012, 0.019839242100715637, 0.00037743026041425765, 0.0063917492516338825, -0.10490214824676514, -0.014858531765639782, -0.01280910987406969, 0.012049935758113861, -0.044730864465236664, -0.0005154481623321772, -0.022876517847180367, 0.033739592880010605, 0.01929694041609764, -0.014414751902222633, 0.002874568337574601, -0.11487565189599991, -0.0017288913950324059, 0.032736096531152725, -0.12869499623775482, -0.03969944640994072, -0.057733211666345596, 0.03853554278612137, -0.02843352220952511, -0.03430759534239769, -0.05349602550268173, -0.07677856832742691, -0.11317047476768494, -0.013949994929134846, -0.08736632019281387, -0.07583063840866089, 0.026838351041078568, -0.03299429267644882, 0.13870921730995178, -0.14130465686321259, -0.0021781083196401596, -0.021398384124040604, 0.008745796047151089, 0.04437732324004173, 0.06295254826545715, -0.013195226900279522, -0.0612492673099041, -0.015088768675923347, -0.0019803810864686966, -0.061675168573856354, -0.08762006461620331, 0.11931515485048294, 0.10536959767341614, 0.04958745837211609, 0.035348329693078995, 0.010427224449813366, -0.022389832884073257, 0.049684833735227585, -0.04230261966586113, -0.11649645119905472, -0.06361355632543564, 0.11208091676235199, -0.0063263969495892525, 0.03520180657505989, 0.02300390414893627, 0.061575405299663544, -0.011961556039750576, -0.02423899993300438, 0.05392013117671013, 0.058480676263570786, -0.03015907108783722, -0.05265938863158226, 0.009980599395930767, 0.018206702545285225, 0.0525512620806694, -0.05460919067263603, -0.04660298675298691, -0.07546588033437729, 0.0017365842359140515, -0.007845873013138771, 0.03193897008895874, 0.03125253692269325, -0.02610519528388977, -0.07251985371112823, -0.05323836952447891, -0.029398707672953606, -0.012942205183207989, -0.14961808919906616, 0.07553044706583023, 0.011453940533101559, -0.057046301662921906, 0.03691406920552254, -0.11394819617271423, 0.04897380992770195, -0.039819926023483276, 0.06363626569509506, -0.06590040773153305, -0.06312985718250275, -0.07112518697977066, -0.006627255119383335, -0.03193692862987518, -0.05743283033370972, 0.01508130319416523, -0.029086414724588394, 0.05172844976186752, -0.0371464267373085, -0.05364464968442917, 0.027528734877705574, -0.11189015209674835, -0.07672957330942154, -0.04075309634208679, -0.0757407546043396, -0.013662304729223251, -0.06374749541282654, -0.05390303209424019, 0.06987722218036652, -0.0645441859960556, -0.038179684430360794, 0.005300324410200119, 0.014344130642712116, 0.060335658490657806, -0.07726956158876419, 0.09602810442447662, -0.02796059474349022, 0.03452372923493385, -0.013167223893105984, 0.014867856167256832, -0.004887639544904232, 0.04731937125325203, 0.015447741374373436, -0.039181966334581375, -0.0461835116147995, 0.08686980605125427, 0.05039989575743675, -0.11623933911323547, -0.06780973076820374, -0.05329931154847145, -0.00020059049711562693, 0.2340734750032425, -0.12937332689762115, 0.07333869487047195, 0.0037768702022731304, 0.10592339932918549, -0.13946612179279327, 0.10666988790035248, 0.047288984060287476, 0.14655664563179016, 0.013727075420320034, -0.01172320544719696, 0.15657660365104675, 0.06807998567819595, 0.1152196079492569, -0.0891239270567894, 0.03018404170870781, -0.08875279128551483, 0.011700263246893883, 0.16638708114624023, -0.07756136357784271, 0.0992487370967865, 0.001536978641524911, 0.05690775439143181, 0.059142496436834335, -0.013267064467072487, -0.09185261279344559, -0.012580787762999535, -0.033317405730485916, 0.05361667647957802, 0.10975953191518784, 0.009519093669950962, 0.07804673165082932, -0.12653601169586182, 0.07322224229574203, -0.08587117493152618, 0.007646800484508276, -0.06915606558322906, -0.003585654543712735, 0.06705880165100098, -0.0686722919344902, -0.036018967628479004, 0.09127622097730637, 0.022643890231847763, 0.11569416522979736, 0.12826412916183472, 0.04490631818771362, -0.08015356957912445, -0.04879770800471306, 0.02466714009642601, 0.15328913927078247, 0.06480550020933151, -0.05058717355132103, -0.05817170441150665, 0.03650301322340965, 0.07340126484632492, 0.06784602254629135, 0.055939726531505585, 0.032491300255060196, -0.008191916160285473, -0.031189730390906334, 0.013361158780753613, -0.0720147117972374, -0.02489537186920643, -0.023632837459445, 0.13697288930416107, 0.0627419501543045, 0.10780297964811325, 0.019730692729353905, -0.013154333457350731, -0.025617867708206177, -0.08716200292110443, 0.06482376158237457, 0.112923264503479, 0.10240062326192856, 0.09881909191608429, -0.08577889949083328, -0.02346816472709179, 0.042016830295324326, -0.023039817810058594, 0.04342653602361679, -0.0050844307988882065, -0.11914435029029846, -0.006017184816300869, 0.06342491507530212, 0.024921486154198647, -0.007647205144166946, -0.019327733665704727, -0.09942939877510071, 0.07546534389257431, -0.12492821365594864, -0.015590977855026722, 0.024255037307739258, -0.02622031420469284, -0.007323247380554676, 0.15450285375118256, -0.01617451012134552, -0.03203771635890007, -0.09451841562986374, -0.007283656857907772, -0.013244378380477428, -0.04870622232556343, -0.03335766866803169, 0.0443580262362957, 0.048099201172590256, -0.0034995691385120153, 0.0168681051582098, 0.0502559058368206, 0.11293506622314453, -0.1061612069606781, 0.04018484801054001, 0.07744444906711578, 0.05064478889107704, -0.06269007176160812, -0.03054208680987358, 0.10376092046499252, -0.09605623781681061, -0.08240191638469696, 0.07096119225025177, -0.007629722822457552, -0.024031739681959152, -0.026918945834040642, 0.060167841613292694, 0.13213200867176056, -0.0734308511018753, 0.042708877474069595, 0.06980236619710922, 0.026195842772722244, 0.0018699789652600884, -0.09363719820976257, -0.1431427150964737, 0.0740838497877121], +fneg:[-0.05259137228131294, 0.09775549173355103, -0.07852856814861298, -0.11562972515821457, -0.10003963857889175, -0.12273597717285156, -0.015104955062270164, -0.008925581350922585, 0.09303205460309982, -0.13825464248657227, 0.06809254735708237, 0.1018691435456276, -0.0035182153806090355, 0.07043400406837463, -0.0874655470252037, 0.12310207635164261, -0.11658209562301636, -0.031656328588724136, -0.08021771907806396, 0.15938059985637665, -0.14941748976707458, -0.03934592381119728, -0.08194278925657272, -0.04430166631937027, 0.054421138018369675, 0.13289032876491547, 0.04475978761911392, -0.010450618341565132, -0.08491893857717514, -0.10226915776729584, 0.013786966912448406, -0.03817761689424515, 0.0023992760106921196, 0.12108654528856277, -0.019263694062829018, 0.051828689873218536, 0.11845926940441132, 0.07542585581541061, 0.016460895538330078, -0.011160338297486305, -0.04117549955844879, -0.08497218787670135, 0.06459594517946243, -0.05119495466351509, 0.1475428193807602, -0.00273544411174953, 0.11441165953874588, -0.0030144592747092247, 0.01924755983054638, -0.08271574974060059, -0.02902110666036606, 0.09523273259401321, 0.11948858201503754, -0.022876115515828133, -0.10579952597618103, -0.13390833139419556, -0.11359298974275589, -0.08792709559202194, 0.08854661881923676, -0.029778560623526573, -0.012227739207446575, -0.05759777873754501, 0.05358441546559334, -0.12098380923271179, -0.035626497119665146, -0.08542968332767487, -0.10325810313224792, 0.0995059534907341, 0.053284477442502975, -0.006259264424443245, 0.09656573832035065, -0.0039807758294045925, -0.07680550217628479, 0.13108046352863312, -0.1380445510149002, 0.05687279254198074, -0.003737840335816145, -0.038563698530197144, 0.07834769040346146, -0.027254436165094376, -0.05426044389605522, -0.03278752416372299, 0.09573917835950851, -0.07258889824151993, 0.05548817664384842, -0.05030043050646782, 0.0040305438451468945, 0.04179520905017853, 0.06857004016637802, -0.0222134031355381, -0.12031500786542892, -0.02677452377974987, 0.030814243480563164, 0.05995605140924454, 0.041358284652233124, -0.07858926057815552, 0.12315831333398819, 0.0585627444088459, 0.022601444274187088, -0.01530588697642088, 0.03871535882353783, -0.12302049249410629, 0.055180858820676804, 0.12432360649108887, 0.12654449045658112, -0.06642228364944458, -0.1362994909286499, -0.003972136415541172, -0.13767200708389282, -0.09780767560005188, -0.0009725309209898114, -0.02832040749490261, -0.031388163566589355, 0.008880354464054108, -0.04804711416363716, -0.05488438531756401, 0.008234047330915928, 0.08289702236652374, -0.020797934383153915, 0.079295814037323, -0.05545689910650253, 0.07608513534069061, 0.009606203064322472, -0.0654464066028595, -0.06804659962654114, -0.046328406780958176, 0.008084102533757687, -0.14702096581459045, 0.15030887722969055, -0.12972645461559296, -0.12997934222221375, -0.08187294751405716, -0.001784578082151711, 0.0176609568297863, -0.05666327103972435, 0.04952426627278328, -0.016341382637619972, -0.05409633368253708, 0.01828739419579506, -0.05449872091412544, -0.07178612798452377, 0.04379061609506607, 0.06518140435218811, -0.020587297156453133, -0.025974484160542488, 0.055096425116062164, 0.07266054302453995, -0.04831449314951897, -0.1321433186531067, 0.02808704786002636, 0.026682667434215546, 0.0408770851790905, -0.110505610704422, 0.08931902796030045, -0.031500473618507385, -0.045231256633996964, -0.03132985532283783, -0.11813365668058395, -0.0142930643633008, -0.045228905975818634, 0.04250286892056465, 0.009055734612047672, -0.08181554824113846, -0.10794510692358017, 0.0213506780564785, -0.030125519260764122, -0.007942503318190575, -0.0974215641617775, -0.07253646105527878, 0.01971874199807644, 0.03557736799120903, -0.09055615961551666, -0.03386811912059784, 0.004637487232685089, 0.000527768861502409, 0.10073062777519226, 0.06483124941587448, -0.12428171187639236, -0.037677377462387085, -0.009182424284517765, 0.12558400630950928, -0.0703747346997261, 0.11129272729158401, 0.005090512800961733, 0.05529111996293068, -0.08291365206241608, 0.027869198471307755, 0.09688004851341248, -0.0544741116464138, 0.06278299540281296, 0.020372070372104645, 0.03155507892370224, 0.06227796897292137, 0.0022851843386888504, 0.040533646941185, -0.0132722407579422, -0.04406556114554405, -0.0987526997923851, 0.08260533213615417, 0.010411993600428104, 0.07630899548530579, 0.014288066886365414, 0.07457918673753738, -0.07710354775190353, 0.004548483993858099, 0.024267688393592834, 0.004633917007595301, 0.07774341851472855, -0.08862578868865967, -0.041168536990880966, 0.08380214869976044, -0.04220826178789139, 0.09553695470094681, 0.14407707750797272, 0.054240740835666656, -0.08610924333333969, -0.009776366874575615, -0.023777632042765617, 0.07321270555257797, 0.041883207857608795, -0.12133466452360153, -0.13276182115077972, -0.08246024698019028, -0.015108872205018997, 0.1037609726190567, 0.07839377969503403, 0.03042042814195156, 0.06363650411367416, -0.13257749378681183, 0.010361997410655022, 0.01890638656914234, 0.09544596076011658, -0.0370078980922699, -0.03126854449510574, 0.13282209634780884, -0.05039488896727562, 0.009318830445408821, -0.06035573035478592, -0.05164271220564842, -0.06591838598251343, 0.035392291843891144, 0.07624197006225586, 0.09410713613033295, 0.09433707594871521, -0.008682748302817345, 0.03758085146546364, 0.09731131047010422, 0.04097820445895195, 0.0002292966964887455, 0.06720582395792007, -0.08081140369176865, 0.02114654704928398, 0.0203385166823864, 0.09796735644340515, -0.11293689906597137, 0.034059762954711914, 0.036363955587148666, -0.003692114492878318, -0.12172523140907288, -0.09621100127696991, 0.05765050649642944, 0.08426785469055176, 0.000961282174102962, 0.1301954835653305, -0.01013902947306633, 0.04197803884744644, -0.050840187817811966, -0.01632034406065941, 0.008214605040848255, -0.03961721062660217, -0.026283105835318565, 0.04649810120463371, 0.018970467150211334, 0.07909905165433884, -0.0619327649474144, 0.07237100601196289, 0.029610686004161835, -0.1250792294740677, -0.0699298307299614, 0.11039069294929504, 0.09279049932956696, -0.1240653395652771, 0.04659358784556389, -0.031880926340818405, -0.04990905895829201, -0.11371427774429321, 0.036050304770469666, -0.06361246109008789, 0.004306791815906763, -0.05612337961792946, 0.04727950319647789, 0.14887216687202454, -0.12215939164161682, 0.04354515299201012, 0.07288723438978195, -0.036846697330474854, 0.03949021175503731, -0.01973731257021427, -0.13864418864250183, -0.0483071506023407], +fpext:[-0.01979772187769413, 0.13683323562145233, 0.04458075761795044, -0.11552969366312027, -0.12244117259979248, 0.021906325593590736, -0.1655689924955368, -0.005247131455689669, 0.00408982252702117, 0.050587184727191925, -0.10944925993680954, 0.11074075102806091, 0.14869017899036407, 0.0912008211016655, -0.12869906425476074, 0.039035242050886154, -0.11563082039356232, -0.18267479538917542, -0.1006898581981659, 0.11448121070861816, -0.15099215507507324, -0.08566015958786011, -0.09874439984560013, -0.0414278544485569, 0.022021759301424026, 0.13290216028690338, 0.02152913436293602, 0.04459365829825401, -0.07395259290933609, -0.0650406926870346, 0.0008349760319106281, -0.11251591891050339, -0.03686986118555069, 0.125554621219635, 0.09868377447128296, 0.1187279149889946, 0.1031496599316597, 0.07420146465301514, -0.07663126289844513, -0.021750932559370995, -0.0035756013821810484, 0.002226055832579732, 0.06648348271846771, 0.0013356312410905957, -0.002190621104091406, -0.012286019511520863, 0.010311247780919075, 0.06043471395969391, -0.07066582888364792, -0.06944315880537033, -0.029477398842573166, 0.00348452921025455, 0.12209250777959824, -0.030286934226751328, 0.06775966286659241, -0.11500358581542969, 0.13754571974277496, 0.00684095686301589, 0.034178636968135834, 0.14359720051288605, -0.1278013437986374, -0.12603111565113068, 0.006435795221477747, -0.1237817034125328, -0.04233939200639725, -0.06765489280223846, -0.10685810446739197, 0.10167428851127625, -0.0582822784781456, -0.043585117906332016, -0.039447419345378876, -0.0017278273589909077, 0.005812778137624264, 0.03603263944387436, -0.08711203932762146, -0.03995387628674507, -0.021594617515802383, -0.12324008345603943, -0.07892384380102158, -0.01957736536860466, -0.07034852355718613, -0.023781631141901016, 0.08063965290784836, 0.10460498929023743, 0.06406921148300171, 0.06952526420354843, 0.017977233976125717, 0.008978751488029957, -0.0500994436442852, -0.047553543001413345, -0.1258847713470459, -0.028497982770204544, 0.009832988493144512, 0.001262713223695755, 0.05649184435606003, -0.007056180387735367, 0.08642010390758514, 0.13261280953884125, 0.0018284711986780167, 0.03209185600280762, 0.038342952728271484, 0.0012966612121090293, -0.13052880764007568, 0.10591080784797668, 0.08814497292041779, 0.020030951127409935, -0.05574839189648628, -0.03073206916451454, -0.09667082130908966, -0.11260271817445755, -0.0018728113500401378, -0.01386030949652195, -0.006709197070449591, -0.01958492584526539, 0.078569196164608, 0.01606321893632412, -0.03056243434548378, 0.07228484749794006, -0.16287072002887726, 0.08194111287593842, -0.20509015023708344, 0.07436896860599518, 0.0326879508793354, -0.06911556422710419, -0.04871712625026703, -0.04100990295410156, -0.055285342037677765, -0.047205038368701935, 0.08902935683727264, -0.1359836459159851, -0.03625839203596115, -0.08324000984430313, -0.04328087717294693, 0.017968669533729553, 0.11650216579437256, 0.04269180819392204, -0.014859864488244057, -0.05466729775071144, 0.03351856395602226, 0.021035155281424522, -0.10662628710269928, 0.09236126393079758, 0.07297944277524948, -0.0674445629119873, -0.06788751482963562, -0.004798579961061478, 0.07558587193489075, -0.027680089697241783, -0.1236729770898819, -0.0004809438541997224, 0.050032638013362885, 0.0625467598438263, -0.018236851319670677, 0.06847192347049713, -0.1308339387178421, -0.04502016305923462, -0.025645654648542404, 0.09345240145921707, -0.014574838802218437, -0.04352414980530739, 0.04730483889579773, 0.06887823343276978, -0.1329713612794876, -0.13008847832679749, -0.05387990176677704, -0.02058006078004837, 0.026311572641134262, 6.929535629751626e-06, -0.02202790603041649, -0.02877587266266346, 0.027372874319553375, -0.07522786408662796, -0.008395184762775898, 0.12130787968635559, 0.08111941814422607, 0.08810824900865555, -0.06951983273029327, 0.1704145073890686, -0.07511719316244125, -0.0010555923217907548, 0.06273970007896423, 0.024025926366448402, 0.03623583912849426, -0.10124978423118591, -0.017582308501005173, 0.047498371452093124, 0.013394751586019993, 0.025638308376073837, -0.08773724734783173, -0.09464052319526672, 0.052960384637117386, 0.02149190939962864, 0.11279069632291794, -0.11752782762050629, 0.05999302864074707, -0.01248530950397253, -0.04038318991661072, -0.062386494129896164, 0.12230739742517471, 0.011771999299526215, 0.06386265158653259, 0.035326872020959854, 0.07430820912122726, 0.06292953342199326, 0.014293340966105461, 0.039559222757816315, -0.14439664781093597, 0.10214528441429138, -0.08189556747674942, 0.1199694275856018, 0.011939526535570621, -0.07150545716285706, -0.05181349068880081, 0.09841036796569824, -0.048250965774059296, -0.09834227710962296, -0.10081887990236282, 0.029142634943127632, 0.09589313715696335, -0.02082277089357376, -0.12665687501430511, -0.08987687528133392, 0.134295254945755, 0.0906054899096489, 0.12483275681734085, 0.046062834560871124, 0.023205596953630447, 0.04770433157682419, -0.06305453181266785, 0.022772151976823807, 0.011316487565636635, 0.11435370147228241, -0.034887924790382385, -0.012968177907168865, 0.0801612064242363, 0.13860812783241272, 0.01954871602356434, 0.09206606447696686, -0.1587497889995575, 0.1470087319612503, -0.05445829778909683, 0.03212131932377815, 0.12913979589939117, 0.10422858595848083, -0.057618193328380585, 0.07826750725507736, -0.04445243626832962, 0.07321184128522873, 0.019470782950520515, 0.12599293887615204, 0.012203473597764969, -0.01353149488568306, 0.029526038095355034, 0.109463170170784, -0.01248918380588293, 0.029143881052732468, 0.020158162340521812, -0.040404025465250015, 0.005481243133544922, 0.08289768546819687, 0.003354007611051202, 0.13683773577213287, -0.009730721823871136, 0.07091054320335388, -0.11851828545331955, -6.85982740833424e-05, 0.12198506295681, -0.022184036672115326, 0.013316662050783634, -0.12823329865932465, -0.0543019063770771, 0.0670546442270279, 0.011102779768407345, 0.09699645638465881, 0.05270914360880852, -0.0215689018368721, -0.0980406329035759, -0.03303167596459389, 0.09733614325523376, 0.08562779426574707, 0.09728068858385086, 0.04005974531173706, 0.028732536360621452, 0.005009263288229704, 0.06721627712249756, -0.10077708214521408, -0.026665059849619865, -0.0882546678185463, 0.08158472925424576, -0.03487032651901245, 0.043940842151641846, 0.04538631811738014, -0.07161925733089447, 0.05605532228946686, 0.03224187344312668, 0.038817185908555984, 0.10791244357824326, -0.006223045289516449, -0.14817804098129272, -0.02699955552816391], +fptosi:[0.1461920291185379, 0.055850014090538025, -0.0006012231460772455, -0.08369821310043335, -0.11647359281778336, -0.022247618064284325, 0.02979641780257225, -0.019251255318522453, -0.10476096719503403, -0.06552151590585709, -0.028701070696115494, 0.09720886498689651, 0.13073287904262543, -0.158524751663208, -0.1514723002910614, -0.08946951478719711, -0.060968056321144104, 0.009564075618982315, -0.050694920122623444, 0.01944827474653721, 0.0005696525331586599, -0.021211810410022736, 0.07496771961450577, -0.0614081546664238, 0.1338844746351242, -0.14080369472503662, 0.018329931423068047, 0.1825750470161438, -0.030793296173214912, -0.046973831951618195, 0.013251186348497868, 0.06472750008106232, 0.045690204948186874, 0.128998801112175, 0.1053796038031578, 0.04963880777359009, 0.06611490994691849, 0.07187938690185547, -0.034428566694259644, -0.0643211230635643, -0.0073643215000629425, -0.05019143223762512, 0.010868893004953861, 0.105258509516716, 0.12516580522060394, -0.010727377608418465, 0.040951505303382874, 0.08050089329481125, -0.07402198016643524, -0.07672268897294998, 0.03255900368094444, -0.01498884055763483, -0.0004642317071557045, -0.04305269569158554, 0.14320789277553558, -0.04104108363389969, -0.07720736414194107, -0.06209579482674599, 0.031081881374120712, -0.01411425694823265, 0.010868508368730545, -0.05095471814274788, 0.1406010389328003, -0.03041238896548748, -0.17595353722572327, -0.07681568711996078, -0.07833533734083176, -0.055671773850917816, -0.04471266642212868, -0.07751046121120453, -0.10880374908447266, -0.042363446205854416, -0.01488286629319191, -0.13013418018817902, 0.08342690765857697, 0.0911717638373375, 0.0012151914415881038, -0.039370015263557434, -0.03743721544742584, -0.07267923653125763, -0.06811491400003433, -0.09388639032840729, -0.01061766967177391, -0.022947294637560844, 0.07008418440818787, 0.05310143530368805, 0.019998697564005852, -0.04211423546075821, -0.04986810311675072, -0.1364324986934662, -0.010553203523159027, -0.04136773198843002, 0.07775258272886276, 0.017424114048480988, 0.13406436145305634, 0.03259207308292389, 0.10128481686115265, 0.1347866803407669, -0.02445395663380623, 0.12365393340587616, 0.09190378338098526, -0.10004667937755585, -0.011092222295701504, 0.010769549757242203, -0.06116538867354393, 0.06669191271066666, -0.0665261298418045, -0.04939979687333107, 0.045347731560468674, -0.02189723215997219, -0.007072612643241882, -0.01948092319071293, 0.09036510437726974, 0.06861754506826401, -0.03889739513397217, 0.02025478519499302, -0.01590370386838913, -0.07740337401628494, 0.02636769600212574, 0.1052786335349083, -0.24149452149868011, 0.10166910290718079, -0.02240520715713501, -0.06496188044548035, -0.017782794311642647, -0.03840872272849083, 0.053907059133052826, -0.0319940410554409, -0.005805459804832935, -0.07124881446361542, -0.02631233260035515, -0.15515746176242828, 0.013569481670856476, 0.01538943313062191, -0.06078704074025154, 0.030789490789175034, 0.05994671583175659, -0.03153387829661369, 0.02554837428033352, 0.12635211646556854, 0.11056826263666153, 0.03476366028189659, -0.12207859754562378, 0.05662733316421509, -0.08109200745820999, -0.1106656938791275, 0.07472094148397446, -0.06397950649261475, 0.057152777910232544, 0.10898188501596451, 0.0021927731577306986, 0.07112416625022888, -0.051194485276937485, 0.10912541300058365, 0.032664407044649124, -0.021598801016807556, -0.006287976633757353, 0.013822791166603565, -0.04873490333557129, 0.05986519157886505, 0.0493319146335125, -0.04073265939950943, -0.03895189240574837, 0.13061989843845367, -0.0765194371342659, -0.07068223506212234, -0.05590338632464409, -0.022203287109732628, 0.007156859152019024, 0.05973005294799805, 0.07875028252601624, 0.01724286377429962, -0.029577257111668587, 0.111932672560215, -0.08488788455724716, 0.1333324909210205, 0.10475839674472809, 0.11654680222272873, -0.11842606961727142, 0.002021846594288945, 0.105511873960495, -0.02944818139076233, 0.10382381081581116, -0.09690424799919128, -0.09623569250106812, -0.11739900708198547, 0.04553452879190445, 0.1156974658370018, -0.08351609855890274, 0.12281293421983719, 0.12618498504161835, 0.018641797825694084, 0.08182515949010849, 0.0399852953851223, -0.0818500742316246, 0.0016093887388706207, -0.15574166178703308, 0.07803279161453247, 0.04294265806674957, -0.052721861749887466, 0.07546531409025192, -0.037677355110645294, 0.10541325062513351, 0.08802369236946106, 0.008875406347215176, 0.06394943594932556, -0.0035016874317079782, 0.033213429152965546, -0.04091531038284302, 0.07613927125930786, 0.05554739013314247, 0.002849281532689929, 0.04869452863931656, 0.04535433277487755, 0.09672041237354279, -0.10155078023672104, -0.03818417340517044, 0.054517727345228195, -0.039126988500356674, -0.045239273458719254, -0.03434115648269653, -0.03414241969585419, 0.03169332444667816, 0.08226391673088074, 0.07160153239965439, 0.06267322599887848, 0.017120609059929848, 0.004358701407909393, 0.035127658396959305, 0.042444828897714615, 0.1397915482521057, 0.08315952122211456, 0.12096914649009705, -0.11212406307458878, 0.053099147975444794, -0.10442722588777542, 0.018658366054296494, -0.031511057168245316, -0.005159111227840185, -0.060356393456459045, -0.09037138521671295, 0.14881274104118347, -0.13495075702667236, 0.10196094214916229, -0.0683702602982521, -0.06548109650611877, -0.06091354042291641, -0.09214048087596893, -0.05008837580680847, -0.005845304112881422, 0.014047438278794289, -0.01470053382217884, -0.06085006147623062, 0.06930796802043915, 0.09874241799116135, 0.015104945749044418, 0.05387204512953758, 0.10419052094221115, 0.04100198671221733, -0.12724529206752777, 0.056824058294296265, -0.021410822868347168, -0.04195406287908554, 0.16906952857971191, -0.06774268299341202, -0.07592367380857468, -0.09639596194028854, -0.01634196750819683, 0.007586895488202572, -0.04191545024514198, 0.07836654037237167, 0.09441445767879486, -0.07345609366893768, -0.05371241644024849, -0.08725731819868088, 0.06449433416128159, -0.10874582827091217, 0.004525016061961651, 0.023495543748140335, 0.0644526332616806, 0.0005133057129569352, -0.07340192794799805, 0.010444162413477898, -0.052822522819042206, 0.035050589591264725, -0.10242534428834915, 0.07455591857433319, 0.11630648374557495, 0.11672043055295944, 0.0037045374047011137, 0.06439557671546936, 0.08924160152673721, 0.1303236484527588, 0.04619855433702469, -0.1461782157421112, -0.002083216793835163, -0.004806013777852058, 0.06163137033581734, -0.1548658311367035, -0.10274676978588104], +fptoui:[0.07311668246984482, -0.09628057479858398, -0.12269384413957596, -0.07498876750469208, 0.08996739238500595, 0.002452858490869403, 0.018245989456772804, -0.02881111018359661, -0.11091063916683197, 0.09118061512708664, -0.15679799020290375, 0.08962848782539368, 0.04249471426010132, -0.11294691264629364, -0.15366607904434204, -0.006271427497267723, -0.05260900780558586, -0.0054857912473380566, -0.05657463148236275, -0.0036306078545749187, 0.08141228556632996, 0.07347584515810013, -0.02071322686970234, -0.12587043642997742, 0.11492619663476944, -0.13384686410427094, 0.032784353941679, 0.1216532289981842, -0.023561816662549973, 0.05353542044758797, 0.012513009831309319, -0.09239912033081055, -0.0254041850566864, 0.12313241511583328, 0.016116902232170105, -0.10394763946533203, -0.1061021238565445, -0.048998620361089706, -0.022110436111688614, 0.03339903801679611, -0.020040011033415794, -0.0011519327526912093, -0.058933962136507034, -0.012737687677145004, -0.056040603667497635, 0.0023499035742133856, -0.05354892835021019, -0.051248472183942795, 0.008787985891103745, 0.03508615121245384, 6.712403410347179e-05, -0.10169999301433563, -0.11418288201093674, -0.04256734624505043, 0.00993362721055746, 0.12702244520187378, -0.07783130556344986, -0.06549172848463058, -0.03200434148311615, -0.04723978415131569, -0.0796552374958992, -0.046172983944416046, 0.13717354834079742, 0.05159960314631462, -0.024183183908462524, 0.07718853652477264, -0.07691241055727005, 0.004025368019938469, 0.019524550065398216, -0.1321844607591629, -0.023769505321979523, -0.05892862007021904, -0.0039618853479623795, -0.09632188081741333, 0.03747338429093361, 0.07090668380260468, 0.01760745793581009, -0.04911774769425392, -0.05765600502490997, -0.019150428473949432, 0.13126587867736816, -0.08855817466974258, -0.03166177123785019, -0.026554347947239876, 0.048926323652267456, -0.09281504899263382, -0.02710583619773388, -0.08007783442735672, -0.001604178105480969, -0.05048738047480583, 0.020314540714025497, -0.03006078116595745, -0.13424544036388397, -0.1076466366648674, 0.01751781813800335, 0.030573580414056778, 0.0376015342772007, 0.02720245160162449, -0.10291990637779236, -0.10736217349767685, -0.10785219073295593, -0.07976754754781723, 0.09310223907232285, 0.014341306872665882, 0.09948840737342834, 0.059070076793432236, 0.08511453121900558, 0.07548535615205765, -0.00047268313937820494, -0.016771579161286354, -0.0064287614077329636, -0.01265538576990366, -0.0023912766482681036, -0.12397707998752594, -0.03683972358703613, -0.03205493837594986, -0.030212141573429108, -0.1505584418773651, -0.03979480266571045, 0.0758368968963623, 0.015416388399899006, 0.05894399434328079, 0.05458595231175423, -0.11648748070001602, 0.049183979630470276, 0.01906222477555275, 0.040198806673288345, -0.07763216644525528, -0.025948235765099525, -0.06856148689985275, -0.04030377417802811, 0.08688009530305862, -0.044817399233579636, -0.04558556154370308, -0.017737139016389847, 0.027263350784778595, 0.05071549862623215, 0.027044836431741714, -0.13471107184886932, 0.016618749126791954, 0.04794358089566231, -0.05693898722529411, -0.16165482997894287, 0.07892485707998276, -0.003917156718671322, 0.004331366159021854, 0.07171757519245148, -0.04891939461231232, 0.01609763689339161, 0.07509315013885498, -0.0706920176744461, -0.0036510704085230827, -0.07910311967134476, 0.10418018698692322, 0.026499222964048386, 0.12860070168972015, -0.046143531799316406, 0.03001227229833603, -0.04126446694135666, 0.05705656483769417, 0.031079286709427834, -0.10942203551530838, -0.03826078400015831, 0.09167224913835526, -0.06972470134496689, 0.005514831747859716, 0.009155215695500374, -0.008588394150137901, 0.09053675830364227, 0.05578997731208801, -0.06069062277674675, -0.0378301776945591, -0.005832179449498653, 0.09998629987239838, -0.15125468373298645, 0.029897799715399742, 0.12236303091049194, -0.050461556762456894, -0.10457444190979004, 0.015523070469498634, -0.11365202814340591, -0.0069623179733753204, -0.08625730127096176, 0.08493634313344955, -0.03368934243917465, -0.1269189864397049, 0.04745922237634659, 0.0546066053211689, 0.08602630347013474, -0.023860448971390724, 0.04974565654993057, 0.012789703905582428, 0.07716549932956696, 0.0075467852875590324, -0.10039928555488586, -0.04756898805499077, -0.025799477472901344, 0.018546855077147484, 0.04218035191297531, -0.018871061503887177, 0.02403932809829712, -0.1363726407289505, 0.05847143009305, 0.13123570382595062, -0.02910325862467289, -0.03546709194779396, -0.05455390363931656, 0.023278463631868362, 0.009259645827114582, 0.11161277443170547, 0.09249705076217651, 0.03615410253405571, 0.09272854030132294, 0.04330461472272873, 0.11341892182826996, -0.060082606971263885, -0.04191477969288826, 0.021780967712402344, 0.034266792237758636, -0.05521628260612488, -0.04782161861658096, 0.11623328179121017, -0.04573050141334534, 0.07979047298431396, 0.06495478749275208, 0.057378511875867844, 0.027101853862404823, -0.001755567267537117, 0.026374882087111473, 0.021988186985254288, -0.056694332510232925, -0.1184733510017395, 0.12506860494613647, 0.016152149066329002, 0.06235770136117935, 0.02831507846713066, 0.01965506374835968, -0.0547076091170311, 0.07528071850538254, 0.15862007439136505, 0.0649578720331192, 0.02146317809820175, -0.06405836343765259, 0.1011863574385643, -0.06031446158885956, -0.0478830561041832, -0.09007250517606735, -0.09137784689664841, -0.1166248768568039, 0.05139229819178581, -0.03771045058965683, 0.1166253313422203, 0.07362008839845657, 0.10956478118896484, -0.10121676325798035, 0.005709485150873661, 0.06261975318193436, 0.05054329335689545, 0.027803920209407806, 0.12212531268596649, 0.06133538484573364, -0.10959366708993912, -0.07134675979614258, 0.16101102530956268, -0.009220628999173641, -0.0641951933503151, -0.10036755353212357, 0.08704674988985062, 0.0024045377504080534, -0.06267035752534866, -0.1401931196451187, -0.045318689197301865, 0.04435507580637932, 0.10648530721664429, 0.08213703334331512, 0.06208479031920433, 0.046918366104364395, -0.10801458358764648, 0.009449876844882965, 0.07522037625312805, -0.04948614910244942, -0.104896180331707, -0.0747246965765953, 0.008134918287396431, 0.02274397201836109, -0.06069440394639969, 0.11559010297060013, 0.08329848945140839, -0.0384136401116848, -0.028945552185177803, 0.017551599070429802, 0.031841933727264404, 0.02355096861720085, -0.0007547732093371451, -0.1562354564666748, 0.11495857685804367, 0.04975028336048126, 0.10114239156246185, -0.1470678150653839, -0.09744556248188019], +fptrunc:[-0.06736938655376434, 0.1256217360496521, 0.1084274873137474, -0.10656954348087311, -0.0987684354186058, 0.019435757771134377, -0.011085298843681812, -0.0006180849159136415, 0.03887758031487465, 0.09586818516254425, 0.04976823925971985, 0.10550032556056976, 0.043365832418203354, 0.11932685971260071, -0.08740168809890747, -0.04381752386689186, -0.11066003888845444, -0.023711785674095154, -0.09330988675355911, 0.08976391702890396, -0.12740634381771088, -0.03001435473561287, -0.07464516907930374, -0.045221105217933655, 0.026980359107255936, -0.11570241302251816, 0.03418607637286186, 0.045747559517621994, -0.10843198746442795, 0.07754185050725937, 0.05378987267613411, -0.07348252087831497, -0.033805157989263535, 0.1184917613863945, -0.008779767900705338, 0.08687349408864975, 0.13289009034633636, 0.07094404846429825, -0.028487714007496834, 0.014161970466375351, 0.057992130517959595, 0.022598393261432648, 0.05807425081729889, -0.057210929691791534, -0.06331532448530197, 0.03766494616866112, -0.10733143985271454, -0.01056324690580368, -0.04985224828124046, 0.04923254996538162, -0.03953346610069275, -0.006368374451994896, 0.04690246656537056, -0.0009696802590042353, 0.06442064046859741, -0.13402380049228668, 0.016663428395986557, -0.040128856897354126, 0.044209010899066925, 0.006834257394075394, 0.09687261283397675, -0.06287474930286407, 0.042665448039770126, -0.11545998603105545, -0.008486788719892502, 0.06054525822401047, 0.1349644511938095, 0.11163458973169327, 0.045378461480140686, -0.035872090607881546, 0.09402669221162796, -0.0015939399600028992, -0.03792602941393852, -0.022429119795560837, 0.05314930900931358, 0.035737842321395874, -0.00943551491945982, -0.04985460266470909, 0.008207269944250584, -0.06035574525594711, 0.07208872586488724, -0.08780087530612946, 0.08879745751619339, -0.031247718259692192, 0.0875793918967247, 0.049197494983673096, -0.0027390620671212673, 0.03585250303149223, 0.07238809019327164, 0.0002639171725604683, -0.11854664236307144, 0.00875522755086422, 0.06551051139831543, 0.035268619656562805, 0.0013437691377475858, 0.05422459915280342, 0.11781029403209686, -0.0774274691939354, -0.023054135963320732, 0.12322358787059784, -0.029008356854319572, -0.12605121731758118, 0.021484283730387688, 0.09629944711923599, 0.07101868838071823, 0.025134969502687454, -0.15888966619968414, -0.032898396253585815, -0.11271298676729202, -0.09628567844629288, -0.00236396212130785, -0.088288314640522, 0.019104931503534317, -0.018623901531100273, 0.1234404593706131, -0.028432274237275124, -0.05119764059782028, 0.028219249099493027, -0.1533166766166687, -0.11289889365434647, -0.01575830765068531, 0.061528611928224564, -0.009777807630598545, 0.04999055713415146, -0.04850100353360176, -0.04384782165288925, 0.047829315066337585, -0.051146604120731354, 0.1399412900209427, -0.1285841017961502, -0.043213482946157455, -0.0784812942147255, -0.013800101354718208, 0.016686564311385155, -0.015989059582352638, -0.009459558874368668, -0.014989660121500492, -0.053413473069667816, 0.01831301487982273, 0.011367270722985268, -0.0873693898320198, 0.07379485666751862, 0.029460901394486427, -0.03278636932373047, -0.09755519777536392, 0.039444465190172195, 0.07182471454143524, -0.01955733634531498, -0.10692913830280304, 0.00025117455516010523, 0.011568055488169193, -0.009677072986960411, 0.01778925582766533, 0.08151756227016449, -0.11142092198133469, -0.04267825558781624, -0.1454588919878006, 0.06301040202379227, -0.01138547994196415, 0.009275105781853199, 0.027742840349674225, 0.0010517321061342955, -0.09805692732334137, 0.08821120858192444, -0.008141295984387398, -0.06443829089403152, -0.011829081922769547, -0.0005750789423473179, -0.12037570029497147, -0.1590963453054428, -0.06713148951530457, -0.0881778746843338, 0.004088135436177254, 0.1105213314294815, -0.018289871513843536, 0.09170359373092651, 0.10403548181056976, -0.03190455213189125, -0.05205116420984268, -0.12108177691698074, -0.06611116230487823, -0.05128861963748932, 0.07975821197032928, -0.09067234396934509, 0.054004184901714325, -0.14138005673885345, -0.049447331577539444, 0.17604346573352814, -0.08172139525413513, 0.06158528849482536, 0.004716705065220594, 0.019852684810757637, 0.06552155315876007, 0.04962597414851189, 0.1038190945982933, -0.013229480013251305, -0.03873315081000328, 0.1099364310503006, 0.12128202617168427, 0.01080857403576374, 0.1232728436589241, 0.054651737213134766, 0.06980039924383163, 0.06756080687046051, 0.009723680093884468, -0.16353923082351685, 0.06562827527523041, 0.13699816167354584, -0.07607554644346237, 0.1139935851097107, 0.10324777662754059, -0.06469307094812393, 0.054225560277700424, 0.10379853844642639, 0.050090402364730835, -0.09603330492973328, 0.05169196054339409, -0.012448495253920555, 0.00436356058344245, 0.05640850588679314, -0.11814276874065399, 0.04642981290817261, -0.057901423424482346, -0.024944815784692764, 0.1196153536438942, 0.03876549378037453, 0.016555367037653923, 0.08581876754760742, 0.13469548523426056, 0.010198289528489113, 0.0008019933593459427, -0.08677627146244049, -0.03239666670560837, 0.03519779071211815, 0.0751102939248085, 0.05389159545302391, -0.11824364215135574, 0.09398485720157623, 0.00634221825748682, -0.06893789768218994, 0.03606036677956581, 0.01604245789349079, 0.10064006596803665, 0.10581003129482269, -0.06194990500807762, -0.06194036826491356, 0.07674776762723923, 0.04070228710770607, 0.041662391275167465, -0.0030249180272221565, 0.03280686214566231, 0.025750843808054924, 0.07513691484928131, 0.02796008437871933, 0.09610602259635925, 0.06335530430078506, 0.03548663482069969, 0.03801913559436798, 0.030893290415406227, -0.002283420879393816, 0.10037935525178909, -0.024986905977129936, -0.001178288017399609, 0.116221584379673, -0.019855670630931854, 0.016515085473656654, -0.05720273032784462, -0.014465410262346268, 0.009469525888562202, -0.13126464188098907, -0.05218702554702759, 0.1428273767232895, -0.00568007118999958, 0.07223916053771973, 0.055641986429691315, -0.05848884955048561, -0.07816702872514725, -0.0362909734249115, 0.012190595269203186, 0.08860711008310318, 0.1475347876548767, -0.07755681872367859, 0.052306532859802246, 0.001453367993235588, 0.04977187141776085, -0.10195212811231613, -0.00016652990598231554, -0.10041705518960953, 0.11050841212272644, -0.02657904103398323, 0.047532327473163605, 0.13772255182266235, 0.07088819891214371, 0.04848731681704521, 0.06039150431752205, -0.030105559155344963, 0.048023197799921036, 0.06513576954603195, 0.11402865499258041, -0.07187661528587341], +freeze:[0.04047654941678047, 0.0853683352470398, -0.027995089069008827, -0.07335766404867172, 0.08669883012771606, 0.01375220064073801, 0.005128039512783289, -0.12736916542053223, 0.046809226274490356, 0.006034024525433779, -0.09895633161067963, -0.1171751618385315, -0.02378329262137413, 0.008681188337504864, -0.036054827272892, -0.04999753460288048, -0.05412463843822479, 0.04780784994363785, 0.015687933191657066, -0.05960944667458534, -0.05007351189851761, 0.10374444723129272, -0.07684021443128586, 0.017720622941851616, -0.055910177528858185, -0.08092080801725388, 0.04501420632004738, -0.00263661309145391, -0.0029022397939115763, 0.06581295281648636, 0.10242612659931183, -0.09984046965837479, 0.09912590682506561, -0.01334377657622099, 0.040430787950754166, 0.010287156328558922, -0.08103638887405396, -0.02305614948272705, 0.04277458414435387, -0.0378650426864624, -0.0765901654958725, -0.09229032695293427, 0.05480935424566269, 0.03749612346291542, -0.02863294631242752, 0.03793404996395111, 0.049634065479040146, -0.057124990969896317, -0.029223496094346046, -0.04933439940214157, -0.016172129660844803, 0.060139577835798264, -0.003840802703052759, -0.1412925124168396, -0.007934384979307652, -0.04766964167356491, 0.03334946930408478, -0.09618812054395676, -0.02017657458782196, -0.10427356511354446, -0.07357442378997803, -0.08803123980760574, 0.05362914875149727, 0.08145357668399811, -0.01385289803147316, 0.011582634411752224, 0.05223986506462097, -0.08705504238605499, -0.04736658185720444, 0.05371086299419403, 0.13596083223819733, -0.01796134188771248, -0.009575490839779377, -0.022172946482896805, -0.032017964869737625, -0.10461883991956711, -0.05420810729265213, -0.011715902015566826, -0.03852974250912666, 0.011259838007390499, -0.09886351972818375, 0.10065363347530365, -0.054789215326309204, -0.06549336761236191, -0.06391777843236923, 0.04067711532115936, 0.11669489741325378, -0.09786080569028854, 0.10283055901527405, 0.07860773801803589, -0.019911130890250206, 0.042033325880765915, 0.11817032843828201, 0.06352346390485764, 0.02584410272538662, 0.019974108785390854, -0.12015905231237411, 0.1104479730129242, 0.059950925409793854, -0.08830150961875916, 0.11310980468988419, 0.1127794086933136, 0.055694278329610825, 0.03838218376040459, -0.10356809198856354, 0.06739119440317154, 0.010231433436274529, -0.02982168458402157, -0.010699169710278511, -0.06579238176345825, 0.04444676637649536, -0.05966309458017349, 0.01901114173233509, -0.018561100587248802, 0.11770036816596985, -0.03430400788784027, -0.05995575711131096, -0.01635022647678852, -0.0773678719997406, 0.06759969890117645, -0.010468400083482265, -0.02317887358367443, -0.06725332885980606, 0.13466860353946686, 0.13291750848293304, -0.11835157871246338, -0.04038520157337189, 0.06678713858127594, 0.09991277754306793, 0.05631940811872482, -0.011999459937214851, -0.024752657860517502, 0.05829814821481705, 0.13496136665344238, -0.026639072224497795, 0.026794666424393654, 0.011383084580302238, 0.030506247654557228, 0.12429095059633255, -0.019060468301177025, -0.10076050460338593, -0.022104578092694283, 0.052257224917411804, 0.1254982203245163, -0.028063222765922546, 0.0034968405961990356, -0.13481910526752472, 0.12096184492111206, -0.11652475595474243, 0.030666043981909752, -0.05024002119898796, 0.10963793098926544, 0.10594886541366577, 0.013162849470973015, -0.04257801175117493, 0.003133477410301566, 0.04252391681075096, -0.10765275359153748, -0.030400123447179794, 0.03603508695960045, 0.04029468819499016, -0.007554156240075827, -0.11578154563903809, 0.04920186474919319, -0.13548897206783295, -0.02230765111744404, -0.0035365174990147352, 0.03525171056389809, 0.008707747794687748, 0.009658193215727806, 0.023847384378314018, -0.10134164243936539, 0.08711779117584229, -0.11576057970523834, 0.016127292066812515, 0.07318248599767685, -0.07970966398715973, 0.08307874202728271, 0.029175741598010063, -0.08028697967529297, -0.09704264253377914, 0.026388559490442276, -0.07742572575807571, -0.11735941469669342, -0.09264318645000458, 0.044694069772958755, 0.12908002734184265, 0.04146070033311844, -0.05451839044690132, -0.11967442184686661, 0.07837808132171631, 0.004621854517608881, -0.12459342926740646, -0.0031807643827050924, -0.06712804734706879, 0.02482011914253235, 0.08442558348178864, -0.006272887345403433, -0.051984261721372604, 0.03842540085315704, -0.06819683313369751, -0.006858561187982559, -0.13799647986888885, 0.047147657722234726, 0.1363765299320221, 0.007788390852510929, -0.12210793048143387, -0.12611010670661926, -0.08869799226522446, -0.06658266484737396, -0.11831575632095337, 0.07965453714132309, 0.009351852349936962, -0.13197073340415955, -0.06990918517112732, 0.13660301268100739, 0.06371726840734482, -0.13235069811344147, 2.1325986381270923e-05, 0.07753344625234604, 0.0456085167825222, 0.10666079819202423, 0.06699539721012115, 0.0551447756588459, -0.1349373310804367, 0.052694305777549744, 0.037258949130773544, -0.11985322088003159, 0.0984245091676712, -0.09954328089952469, 0.10018867254257202, -0.050928808748722076, 0.041239168494939804, 0.024549495428800583, -0.07928887009620667, 0.023740392178297043, 0.1210038959980011, -0.03358184173703194, 0.08553211390972137, -0.059334516525268555, -0.07275145500898361, 0.01580708846449852, -0.05088738724589348, 0.09475534409284592, -0.0015280639054253697, 0.030691640451550484, -0.03468463942408562, 0.03504597768187523, -0.09607189148664474, -0.047588977962732315, 0.03184977173805237, 0.0902830958366394, 0.0908857136964798, -0.04432676360011101, -0.10896790772676468, 0.04762793704867363, 0.023006565868854523, -0.13018856942653656, -0.0004726099723484367, -0.08265268057584763, 0.07174094766378403, -0.021258963271975517, 0.10562428832054138, 0.023784970864653587, 0.11792826652526855, -0.12587402760982513, 0.020624395459890366, -0.01731608435511589, 0.04216780513525009, -0.0971495658159256, -0.053882673382759094, -0.016602039337158203, 0.07226243615150452, 0.06739407032728195, 0.06521475315093994, 0.058986108750104904, 0.001595213427208364, 0.11326497048139572, 0.0076873707585036755, -0.020928317680954933, 0.03666834905743599, 0.035380687564611435, -0.03483756631612778, 0.010737798176705837, -0.04343428090214729, -0.021370699629187584, 0.02082938328385353, 0.1051214411854744, 0.011295240372419357, 0.13259896636009216, 0.06961920857429504, -0.09212955087423325, -0.07381485402584076, -0.005589454900473356, 0.08137405663728714, 0.047836609184741974, -0.015728211030364037, 0.04245533049106598, 0.047532085329294205, -0.1271992027759552], +fsub:[0.04647134616971016, 0.07771113514900208, 0.0524933859705925, -0.11507827788591385, -0.10723001509904861, 0.008968193084001541, -0.12179108709096909, -0.01452818512916565, -0.011770369485020638, 0.04329364746809006, -0.07922476530075073, 0.09855815023183823, 0.05176667124032974, 0.16638149321079254, -0.10465992242097855, 0.06890754401683807, -0.10590754449367523, 0.04579857736825943, -0.09631142020225525, 0.127280592918396, -0.09010689705610275, -0.09273707121610641, -0.08848004043102264, -0.05319343879818916, -0.08709003776311874, -0.12632399797439575, 0.04310469329357147, 0.03641514480113983, -0.0004022016655653715, 0.08022045344114304, 0.01081291027367115, -0.08784130215644836, -0.028562430292367935, 0.12942010164260864, 0.010337220504879951, 0.023633582517504692, -0.01792200468480587, 0.07861943542957306, 0.04191524535417557, -0.1455824226140976, 0.0961562916636467, 0.02003726363182068, 0.06041758507490158, -0.0036014863289892673, 0.15291659533977509, -0.1411285400390625, -0.10417959094047546, 0.09925687313079834, 0.04258229583501816, -0.023786025121808052, -0.02885940484702587, -0.06404412537813187, -0.13468891382217407, -0.042752765119075775, 0.06161325052380562, -0.11208044737577438, 0.1332530528306961, -0.08909185230731964, 0.016175737604498863, -0.013054067268967628, 0.006738399155437946, -0.055026352405548096, 0.10461071133613586, -0.1226394847035408, 0.10677560418844223, 0.12015961110591888, -0.08080162853002548, 0.08718143403530121, -0.03582070395350456, -0.03918331116437912, -0.02075245790183544, -0.0022888516541570425, -0.017909379675984383, 0.08585526049137115, 0.036928605288267136, 0.049003466963768005, 0.0031560722272843122, -0.0907781571149826, -0.08156395703554153, 0.006211162079125643, -0.06828833371400833, -0.09385750442743301, -0.12071749567985535, -0.1536584198474884, 0.11945886164903641, -0.03153228387236595, -0.019384676590561867, -0.008147604763507843, -0.12312568724155426, -0.06524064391851425, -0.12551666796207428, -0.01342510711401701, 0.051658786833286285, -0.023572571575641632, 0.05266870930790901, 0.03171704337000847, 0.12121038883924484, 0.023863568902015686, -0.10933312028646469, -0.05910767614841461, 0.012777985073626041, -0.0939006432890892, 0.03295188397169113, 0.01657080464065075, -0.04714418202638626, 0.0015092383837327361, -0.05839825049042702, -0.026664840057492256, -0.04901914671063423, -0.06866034865379333, -0.006250458769500256, -0.08434545993804932, 0.04789121821522713, 0.056179020553827286, 0.07010628283023834, -0.06307411938905716, -0.010331321507692337, -0.01773116923868656, -0.1588670015335083, -0.08564572781324387, -0.09571139514446259, 0.0011710745748132467, 0.04107868671417236, -0.10799628496170044, -0.029635798186063766, -0.043247565627098083, 0.0355791412293911, -0.07842382788658142, 0.15113815665245056, -0.08080699294805527, -0.062277670949697495, -0.0844912976026535, -0.03782108053565025, 0.0167683195322752, -0.01549866795539856, 0.18974800407886505, -0.013783708214759827, -0.035697564482688904, 0.0160058680921793, 0.04629199206829071, -0.09591566771268845, 0.005400408059358597, -0.036200132220983505, -0.07848875224590302, -0.016850143671035767, -0.07345443964004517, 0.07668013125658035, -0.026957258582115173, 0.04650994762778282, 0.029006419703364372, 0.052755460143089294, 0.001558567164465785, -0.02463446743786335, 0.09715133160352707, -0.14825518429279327, -0.018599798902869225, -0.04673532024025917, -0.12579382956027985, -0.014296358451247215, -0.1282665729522705, -0.08270137012004852, -0.12556768953800201, 0.00636163167655468, -0.09098761528730392, -0.06347750872373581, 0.1129482164978981, -0.044068239629268646, -0.0006557733286172152, 0.009118342772126198, 0.04200240597128868, 0.04339291527867317, 0.06507238745689392, -0.09061039984226227, 0.11022136360406876, -0.013020006939768791, 0.0928390622138977, 0.1282787322998047, 0.1310795098543167, -0.09001686424016953, 0.0016064982628449798, 0.03827441856265068, 0.13701096177101135, 0.11571381986141205, -0.09662021696567535, -0.09341852366924286, 0.05180814862251282, 0.003249732544645667, 0.12292418628931046, -0.08096621930599213, 0.012567167170345783, 0.03244950994849205, 0.01799498312175274, 0.08133608102798462, -0.18954040110111237, -0.146161288022995, -0.011889511719346046, -0.03979260101914406, 0.12033388018608093, 0.06877771764993668, 0.008406553417444229, 0.08791638165712357, 0.004670231603085995, 0.06822649389505386, -0.10108710825443268, -0.13616907596588135, -0.17605425417423248, 0.0014071045443415642, 0.045767687261104584, -0.07993116974830627, 0.07469216734170914, 0.0023932158946990967, -0.06578786671161652, 0.03478426858782768, 0.04713936895132065, 0.07415597140789032, -0.11792626231908798, -0.050148848444223404, 0.021259110420942307, 0.06167013943195343, 0.059768032282590866, -0.10814385861158371, -0.06988684087991714, 0.08813872188329697, 0.08632228523492813, 0.08330653607845306, 0.04282497614622116, 0.02591243013739586, 0.048244722187519073, -0.05475758761167526, 0.02350607141852379, -0.00942243356257677, 0.004520788323134184, -0.03052576817572117, 0.0640849843621254, 0.06641167402267456, 0.16911602020263672, 0.019910292699933052, 0.09602245688438416, 0.008071883581578732, 0.1692330539226532, 0.032179925590753555, 0.023703712970018387, -0.05010035261511803, 0.10715096443891525, -0.058095574378967285, -0.016686061397194862, -0.08911428600549698, -0.011412990279495716, -0.022043341770768166, -0.06200714409351349, 0.05635754391551018, 0.025412317365407944, 0.06318046897649765, 0.0741952657699585, 0.0547800287604332, -0.02249402366578579, 0.057661864906549454, 0.03900448605418205, -0.05073314905166626, 0.10949499905109406, 0.06289183348417282, 0.10715804994106293, -0.07322701811790466, 0.168556347489357, -0.07865691184997559, -0.02796858176589012, -0.10030863434076309, -0.018150821328163147, 0.009129224345088005, -0.05058881640434265, -0.05631839111447334, 0.006969797890633345, 0.016691330820322037, 0.0802406370639801, 0.06497780978679657, 0.0775662511587143, 0.00011534643999766558, -0.1255417913198471, 0.09718043357133865, 0.09429090470075607, 0.1311226338148117, 0.013601389713585377, 0.04311113432049751, -0.025916973128914833, 0.04317823052406311, -0.13576669991016388, -0.048693012446165085, -0.006818105932325125, -0.00101200130302459, -0.03309212997555733, 0.04514357075095177, 0.12959620356559753, -0.052468761801719666, 0.048183344304561615, -0.045915842056274414, -0.11162083595991135, 0.002420679898932576, 0.06329825520515442, -0.15528973937034607, -0.06062212213873863], +function:[0.01519160158932209, 0.11510910838842392, -0.0961546003818512, 0.11074268817901611, -0.022856539115309715, 0.10834574699401855, -0.08722088485956192, -0.11729273200035095, -0.10990110039710999, -0.03736488148570061, 0.03419861942529678, -0.09750589728355408, -0.030342837795615196, -0.03311342000961304, -0.036161649972200394, 0.02426045387983322, -0.09291208535432816, -0.04853544384241104, -0.03208035230636597, -0.11833629757165909, 0.08425205200910568, 0.05703664943575859, 0.05922427773475647, 0.0760653018951416, -0.08769449591636658, 0.009065513499081135, -0.08351261168718338, 0.020657934248447418, 0.07318227738142014, 0.03470492362976074, 0.10408464074134827, 0.09952035546302795, 0.09133051335811615, -0.05185255780816078, 0.08210385590791702, -0.018693245947360992, 0.08941211551427841, -0.08127467334270477, 0.04307638108730316, -0.0142748998478055, 0.00967007502913475, -0.0016357926651835442, -0.07403799146413803, 0.10943853110074997, -0.09820133447647095, 0.0030905872117727995, -0.03481857106089592, -0.05592914670705795, -0.09799569845199585, 0.0749344527721405, -0.11076652258634567, -0.09167183190584183, -0.0946393832564354, 0.16358698904514313, -0.09126690775156021, 0.11140262335538864, -0.11557389795780182, 0.11546574532985687, -0.144820898771286, 0.009256342425942421, 0.004293500911444426, 0.07494840025901794, 0.05742308869957924, -0.07040902227163315, 0.0688188225030899, 0.03191423416137695, -0.12055591493844986, 0.024755746126174927, 0.010013237595558167, 0.0797390416264534, 0.0864383727312088, 0.11135938763618469, -0.0012275052722543478, -0.06574820727109909, -0.0491916798055172, -0.13430428504943848, -0.10332392901182175, 0.08383285999298096, -0.05798196792602539, 0.033473603427410126, 0.068611741065979, 0.0802125409245491, -0.0697694793343544, 0.03156184032559395, -0.03879378363490105, -0.00467812642455101, -0.09354277700185776, 0.05555294081568718, -0.0502731092274189, 0.09150877594947815, -0.06271406263113022, 0.09018982946872711, -0.0483999066054821, -0.08802931755781174, -0.05213898792862892, -0.10797905921936035, -0.047998856753110886, -0.042902566492557526, -0.10202375054359436, 0.014639848843216896, -0.007039354648441076, -0.11955803632736206, -0.08401269465684891, 0.1115160658955574, -0.07950341701507568, -0.034489706158638, 0.01588587276637554, 0.13251519203186035, 0.0935126394033432, 0.01471832673996687, 0.11630980670452118, 0.02071252651512623, -0.04835747182369232, -0.15303117036819458, 0.0035626671742647886, 0.04984073340892792, 0.05505891144275665, -0.052850138396024704, 0.06614106148481369, -0.05530127137899399, 0.01303703524172306, -0.07393983751535416, -0.13866937160491943, 0.06879440695047379, 0.010242576710879803, -0.11548580974340439, 0.10790806263685226, 0.0981391966342926, 0.0018695042235776782, 0.07731238752603531, 0.07690882682800293, -0.039048630744218826, 0.03250610828399658, -0.1394391506910324, 0.01033712923526764, -0.08233460038900375, 0.03136879578232765, 0.08829779922962189, -0.06992915272712708, 0.09958423674106598, 0.05691372603178024, 0.044826339930295944, -0.015424270182847977, -0.008783327415585518, 0.07865126430988312, 0.003932539839297533, -0.12009549885988235, 0.09096051752567291, -0.001704895170405507, 0.09915619343519211, -0.05455532670021057, -0.08260547369718552, 0.010206104256212711, -0.05318460986018181, -0.01851782202720642, 0.055652860552072525, -0.10831420123577118, 0.054628945887088776, -0.09742829203605652, -0.024912655353546143, -0.014044907875359058, -0.09378820657730103, 0.07170504331588745, -0.13261593878269196, 0.04630497470498085, 0.024311726912856102, -0.014325665310025215, -0.0879751518368721, -0.12269414216279984, -0.033764470368623734, -0.1269817352294922, 0.04562509059906006, 0.06500903517007828, -0.08966397494077682, 0.000895701174158603, -0.00751050841063261, -0.03321452438831329, -0.07255682349205017, 0.11454786360263824, -0.09677419811487198, -0.004106329753994942, -0.011935430578887463, -0.04562748223543167, 0.09148287028074265, 0.029632940888404846, -0.07392695546150208, -0.04281020164489746, -0.03438160568475723, 0.039918843656778336, 0.09121552109718323, 0.14259672164916992, -0.1209210455417633, -0.015190999023616314, 0.060506124049425125, 0.08983127772808075, 0.10301031917333603, 0.05648752674460411, 0.00717208394780755, -0.08341243118047714, -0.08588089048862457, -0.09811488538980484, 0.1113598495721817, -0.1036762222647667, 0.09873703867197037, 0.10515513271093369, -0.05716146528720856, 0.10139662772417068, -0.07477305084466934, 0.07297865301370621, 0.0191211961209774, -0.07885657995939255, -0.035938575863838196, 0.007531729992479086, 0.11705572158098221, -0.08672758936882019, -0.11102695763111115, 0.08379461616277695, 0.08741424232721329, 0.01934005878865719, 0.12025639414787292, -0.07837215065956116, -0.11192300170660019, -0.0699397623538971, -0.0698312297463417, -0.02127872407436371, -0.14620444178581238, -0.08821547776460648, 0.10604895651340485, 0.09680261462926865, 0.019841426983475685, -0.008684036321938038, 0.03677702695131302, 0.16179996728897095, -0.06237877160310745, -0.03758525848388672, 0.015734683722257614, -0.0822293683886528, 0.0979645624756813, -0.03177819773554802, 0.0888424813747406, 0.08678753674030304, -0.05852777883410454, 0.03740331903100014, -0.026944762095808983, -0.023394905030727386, 0.11659571528434753, -0.11067748069763184, 0.11907646805047989, -0.07389611750841141, 0.008187823928892612, -0.00951249897480011, -0.059128131717443466, -0.11331189423799515, -0.11311470717191696, 0.1097978949546814, -0.07049619406461716, -0.11582642048597336, -0.04413238540291786, 8.60141881275922e-05, 0.04916691035032272, -0.054977837949991226, 0.06097695603966713, 0.0608464740216732, -0.08929472416639328, 0.10597554594278336, 0.12999039888381958, 0.09857804328203201, 0.06548690795898438, -0.1542075127363205, -0.10102632641792297, -0.09205666184425354, -0.049748774617910385, 0.09374219924211502, 0.017790863290429115, -0.14863629639148712, 0.1278063952922821, -0.04804059490561485, 0.03572208061814308, -0.01784946396946907, -0.09259555488824844, 0.018286213278770447, -0.007887480780482292, 0.12161143124103546, 0.050558414310216904, -0.016217676922678947, 0.010090496391057968, -0.006520853843539953, -0.10699395835399628, 0.0012016863329336047, 0.05742355063557625, -0.12008891999721527, 0.058724407106637955, 0.10593130439519882, -0.08045157045125961, 0.022938737645745277, -0.07279769331216812, -0.005376717541366816, 0.057045869529247284, 0.07730121165513992, -0.041614267975091934], +getelementptr:[-0.03696941211819649, -0.10735181719064713, -0.028884591534733772, -0.07949580997228622, 0.014368053525686264, 0.008688804693520069, -0.1144942119717598, -0.011927677318453789, 0.025415988638997078, -0.07684697955846786, -0.018271172419190407, -0.01407570019364357, 0.021729597821831703, 0.028720904141664505, 0.058279234915971756, -0.096737802028656, -0.05460834503173828, 0.17384739220142365, 0.012033043429255486, 0.04151984676718712, -0.05878707394003868, -0.0192396342754364, -0.06776891648769379, -0.044728219509124756, 0.028695091605186462, -0.08206374198198318, 0.02390114776790142, 0.06458048522472382, 0.057719890028238297, 0.04647895693778992, 0.014234570786356926, -0.07367494702339172, -0.07189199328422546, 0.11725997924804688, -0.00022890571563038975, 0.1501675844192505, -0.0038293476682156324, 0.07106634974479675, 0.09135238081216812, 0.12524597346782684, 0.019248992204666138, -0.03025050088763237, 0.05417619273066521, 0.03478318452835083, -0.061593230813741684, 0.16246849298477173, -0.018295906484127045, 0.033404503017663956, -0.12641625106334686, -0.06781886518001556, -0.0060006738640367985, 0.002472377149388194, -0.002398623386397958, -0.03459255397319794, -0.030048301443457603, -0.04165506735444069, 0.0008907912415452302, -0.0840892419219017, -0.01846352592110634, -0.06977251172065735, -0.0532965213060379, -0.06400393694639206, 0.000684710219502449, -0.003122142981737852, -0.14857229590415955, -0.0535995177924633, -0.035396598279476166, 0.04446818307042122, -0.030209625139832497, -0.03406774625182152, -0.02762792818248272, -0.05935121700167656, 0.15273575484752655, 0.09269461035728455, -0.061734527349472046, 0.050097156316041946, -0.006908313371241093, 0.005777786020189524, -0.03122759610414505, 0.1610916554927826, -0.08755434304475784, -0.08738396316766739, -0.01871880702674389, -0.10285554081201553, 0.0811091810464859, 0.03266362100839615, 0.10103774070739746, -0.03876417502760887, 0.10866588354110718, -0.10272859036922455, -0.0028325910679996014, -0.03237714245915413, 0.10122919082641602, 0.09040480107069016, -0.11227408796548843, 0.06453858315944672, 0.06439367681741714, 0.16798388957977295, -0.018948355689644814, -0.012373339384794235, 0.04208468273282051, -0.05365581810474396, -0.10781840980052948, 0.01622319035232067, 0.09283222258090973, -0.05431005731225014, -0.04572869464755058, -0.02807811088860035, 0.012590606696903706, -0.07496140897274017, -0.006043603178113699, -0.11027542501688004, -0.11805450916290283, -0.018147241324186325, -0.07022286206483841, 0.11463789641857147, -0.010004719719290733, 0.10391265153884888, -0.07626894861459732, -0.02859262377023697, -0.10965102910995483, 0.010293279774487019, 0.023344872519373894, -0.07114273309707642, 0.08121592551469803, -0.04570130258798599, 0.03940710052847862, -0.03708998113870621, 0.0225015077739954, -0.007463103160262108, -0.051861099898815155, -0.08928407728672028, -0.07001101970672607, 0.014673933386802673, 0.007569105364382267, 0.21323102712631226, -0.015173793770372868, 0.0005358460475690663, 0.01449907198548317, -0.006863260641694069, -0.10010945051908493, -0.029817258939146996, -0.07714138180017471, 0.1550028771162033, -0.03790814429521561, 0.17019884288311005, 0.07134447246789932, -0.05467750132083893, -0.016045864671468735, 0.03188513219356537, -0.10095004737377167, 0.08088286966085434, 0.06144808605313301, 0.09247323125600815, 0.03114458918571472, -0.04626448452472687, 0.010981561616063118, -0.05422282591462135, -0.013161536306142807, 0.03400799259543419, -0.08603599667549133, -0.009136423468589783, -0.036611106246709824, 0.08687904477119446, -0.06744074821472168, 0.10904897749423981, 0.1780487447977066, -0.03379679471254349, -0.03486902639269829, -0.13546903431415558, -0.01676420122385025, -0.07896404713392258, -0.06365640461444855, 0.10642299801111221, -0.14032472670078278, 0.06956855952739716, 0.00859125517308712, 0.12380395829677582, -0.032076265662908554, -0.007606975734233856, 0.06115282326936722, -0.0718831792473793, -0.06183698773384094, -0.09006167203187943, -0.037389758974313736, -0.10511799156665802, 0.05103549733757973, -0.05251481011509895, -0.08055984973907471, 0.027126142755150795, -0.01966322772204876, 0.015744464471936226, 0.061427511274814606, 0.17355822026729584, -0.054115209728479385, 0.024611975997686386, -0.029219381511211395, 0.12286558002233505, 0.0669979527592659, 0.036212220788002014, -0.047174256294965744, -0.061550337821245193, 0.05097470432519913, 0.05239415913820267, -0.11392078548669815, 0.12268713861703873, -0.003485850989818573, 0.004664062522351742, -0.07153688371181488, 0.015676163136959076, 0.05427100509405136, 0.04584675282239914, -0.11357355862855911, 0.04006263613700867, -0.057004984468221664, 0.060007769614458084, 0.05621495842933655, 0.02044428326189518, -0.1849295198917389, 0.07113278657197952, 0.0426550917327404, -0.035495419055223465, 0.12903784215450287, 0.07000227272510529, 0.06808972358703613, 0.05848321318626404, 0.03359903767704964, 0.0014040741370990872, -0.04807667434215546, 0.015127935446798801, -0.0729430764913559, 0.0001536195195512846, 0.0027397670783102512, 0.13755376636981964, 0.06367893517017365, 0.06704457104206085, 0.017951687797904015, 0.03744383528828621, 0.07147198915481567, 0.046987034380435944, 0.0953226238489151, 0.013445645570755005, 0.03875041380524635, 0.09391573071479797, 0.0918993353843689, -0.04711883142590523, 0.047561004757881165, 0.014113484881818295, 0.01200133841484785, 0.11545737087726593, -0.127719908952713, 0.11232753098011017, 0.08182672411203384, 0.05223053693771362, -0.007240829523652792, -0.09501422196626663, 0.02211330085992813, 0.04077255353331566, -0.0372251458466053, -0.01894681714475155, -0.07552926242351532, 0.04700354114174843, -0.03836338594555855, 0.12120644003152847, -0.01465710997581482, -0.10694418847560883, -0.0023153037764132023, -0.01706196554005146, 0.00810744147747755, 0.044932425022125244, -0.03897542506456375, 0.04348120093345642, 0.03519892692565918, -0.01948377676308155, 0.057711709290742874, 0.05021781101822853, 0.02893723174929619, -0.09789088368415833, 0.14975309371948242, 0.06004522740840912, -0.002245902782306075, 0.05888568237423897, 0.017933836206793785, 0.16980624198913574, 0.07727869600057602, -0.062159620225429535, 0.0912289023399353, 0.07270411401987076, -0.04990953207015991, 0.0089741051197052, 0.04885914921760559, 0.0031647849828004837, -0.10588480532169342, 0.037812575697898865, -0.040914226323366165, -0.020604297518730164, 0.08630965650081635, -0.016074175015091896, -0.13465425372123718, -0.11225505918264389], +icmp:[0.06012368202209473, 0.07886715978384018, 0.02560577727854252, -0.0712861567735672, -0.10464990139007568, 0.00399554381147027, 0.07272554188966751, -0.012688330374658108, 0.02577580325305462, 0.05613083392381668, -0.020318642258644104, 0.0873115211725235, -0.07982344925403595, -0.24737827479839325, 0.025252796709537506, -0.09189319610595703, -0.05349927023053169, 0.010470161214470863, 0.010980386286973953, -0.01960408128798008, -0.07854916900396347, -0.02001279592514038, -0.0652122050523758, -0.04417818784713745, 0.025826573371887207, -0.07938508689403534, 0.029846517369151115, 0.09519389271736145, 0.0926765725016594, 0.08361473679542542, 0.017211850732564926, -0.07972825318574905, 0.006208884064108133, 0.11738885939121246, 0.0016411244869232178, 0.004077935591340065, -0.01725236512720585, 0.06769943982362747, 0.2049984335899353, -0.17110402882099152, 0.009137460961937904, -0.07383576035499573, 0.0709812119603157, 0.00015410920605063438, -0.03978538140654564, -0.05540493503212929, 0.1827496886253357, 0.055006805807352066, 0.018907098099589348, -0.06966941803693771, -0.014605031348764896, 0.0038579890970140696, 0.08157743513584137, -0.0402865931391716, -0.10603554546833038, -0.032766856253147125, 0.0015040220459923148, -0.056591976433992386, -0.023305773735046387, -0.10943566262722015, -0.05860741809010506, -0.07317260652780533, 0.0034942731726914644, 0.0785524845123291, -0.04345754534006119, -0.05803326144814491, -0.034754883497953415, -0.016377024352550507, -0.002313566394150257, 0.038015216588974, -0.028747107833623886, -0.023641936480998993, 0.23425044119358063, 0.07513877004384995, -0.11911722272634506, 0.03182508051395416, -0.018162863329052925, -0.08996462821960449, -0.032729391008615494, 0.1721159815788269, -0.06955422461032867, -0.08784512430429459, 0.0023275092244148254, 0.08736193180084229, 0.05034164711833, -0.08805761486291885, 0.039472825825214386, -0.041709061712026596, -0.016047848388552666, -0.09211112558841705, -0.0033609713427722454, -0.02747388742864132, 0.10666937381029129, 0.056689437478780746, -0.03481298312544823, 0.066487617790699, 0.0416145883500576, 0.024912029504776, -0.02403147891163826, -0.14107127487659454, 0.08300844579935074, -0.050112295895814896, 0.14848391711711884, 0.016922106966376305, -0.05611346289515495, -0.017576755955815315, -0.034086354076862335, -0.03856687620282173, 0.010704746469855309, -0.04895155876874924, -0.003251161891967058, 0.05986512824892998, -0.19405117630958557, -0.01792278327047825, -0.03683837130665779, 0.07073134183883667, 0.09434936195611954, -0.04946643114089966, -0.03961408883333206, 0.1108321025967598, -0.08744129538536072, -0.09635192900896072, 0.08406492322683334, -0.07340822368860245, 0.10455495119094849, -0.04654772952198982, 0.04368941858410835, 0.026117868721485138, 0.10021448135375977, 0.03294289857149124, -0.009783963672816753, -0.02477923594415188, -0.04750898852944374, 0.015880607068538666, 0.005640973336994648, 0.08247848600149155, -0.012859796173870564, 0.0024604748468846083, 0.021168937906622887, 0.021129250526428223, -0.09997306764125824, 0.023393532261252403, -0.04732880741357803, 0.04604610428214073, -0.026914389804005623, -0.1305614858865738, 0.0708460584282875, -0.03481768071651459, -0.03961681202054024, 0.029762782156467438, -0.1414225995540619, -0.013219231739640236, -0.009451495483517647, 0.0747106522321701, -0.010386203415691853, -0.04226290062069893, 0.011116200126707554, -0.05600813776254654, 0.04250975325703621, 0.03675882890820503, 0.2615489661693573, -0.026408875361084938, -0.03741950914263725, 0.08764424175024033, -0.06652303785085678, 0.16820651292800903, -0.11896014958620071, -0.034746695309877396, -0.03400110825896263, 0.0979020968079567, -0.12333578616380692, -0.07821077853441238, -0.05751199647784233, 0.034094374626874924, 0.024130865931510925, 0.07927750051021576, 0.016949040815234184, 0.12510475516319275, -0.04127237945795059, -0.057624075561761856, 0.001424663350917399, 0.10028459131717682, -0.004866547882556915, -0.0913308784365654, 0.012673628516495228, 0.10387532413005829, 0.009922348894178867, -0.04976966977119446, -0.08189228177070618, 0.06881656497716904, 0.000740450865123421, 0.017920121550559998, 0.0655781701207161, -0.02169187180697918, -0.056363191455602646, 0.025378001853823662, -0.02691333368420601, 0.07912491261959076, 0.03310764953494072, 0.017427777871489525, -0.10605134069919586, -0.0040854704566299915, 0.06870301067829132, -0.07126280665397644, -0.0778171569108963, 0.11388446390628815, -0.11868046969175339, 0.007501378655433655, -0.08293641358613968, 0.10233481228351593, 0.05419078469276428, 0.0777369812130928, 0.09837320446968079, 0.04088188707828522, 0.06540820747613907, -0.04610012099146843, -0.024333611130714417, 0.02253468707203865, -0.14062298834323883, 0.0774587094783783, 0.043255943804979324, -0.04114723205566406, -0.06968816369771957, 0.07380549609661102, 0.06754987686872482, 0.05435054376721382, 0.027974413707852364, -0.004288176540285349, 0.029799440875649452, 0.010633250698447227, -0.07705956697463989, -0.024583809077739716, 0.02826039306819439, 0.051258500665426254, 0.06515476107597351, 0.05782618001103401, 0.03717464208602905, 0.015547539107501507, 0.08643684536218643, 0.03751588240265846, 0.06689409166574478, 0.010956446640193462, -0.05047454312443733, 0.09531458467245102, -0.12087267637252808, -0.04927249625325203, 0.05123600363731384, 0.045623745769262314, 0.011704602278769016, 0.07445375621318817, 0.05232074484229088, 0.013795389793813229, 0.02576078288257122, 0.066220223903656, 0.010834676213562489, -0.036602266132831573, 0.017262164503335953, 0.04860006272792816, 0.09046069532632828, -0.023295488208532333, 0.0571434311568737, -0.026592325419187546, -0.012186774052679539, 0.13857008516788483, -0.026945987716317177, -0.11204954236745834, 0.013138809241354465, -0.015492848120629787, 0.008241677656769753, 0.055636342614889145, -0.051388613879680634, 0.027331719174981117, 0.056548699736595154, 0.08176227658987045, 0.06272642314434052, 0.048665426671504974, 0.05175957828760147, -0.10705095529556274, 0.048094335943460464, 0.07495631277561188, 0.004065948072820902, -0.20764769613742828, 0.0048796567134559155, 0.01994350366294384, -0.18518486618995667, -0.07094789296388626, 0.10397576540708542, 0.08782963454723358, 0.12005667388439178, -0.027053114026784897, 0.058510493487119675, 0.07744944095611572, -0.01942489482462406, 0.021150585263967514, -0.01588836871087551, 0.014138869009912014, 0.02363700233399868, -0.009025294333696365, -0.13539116084575653, 0.04710198566317558], +insertelement:[-0.12075871229171753, 0.09369582682847977, -0.08567079156637192, -0.10563404113054276, -0.09924314171075821, 0.014774725772440434, 0.04195427894592285, -0.028837719932198524, -0.06984055787324905, 0.006727669853717089, -0.07583407312631607, 0.10217621922492981, 0.010764368809759617, -0.03658837825059891, -0.05316400155425072, -0.09251324832439423, -0.10557862371206284, 0.04008336737751961, -0.08447451144456863, 0.055599890649318695, -0.12446193397045135, -0.03313998505473137, -0.10273607075214386, -0.07464583218097687, 0.03256818652153015, -0.1060524582862854, 0.01827937550842762, -0.006229928229004145, -0.07009201496839523, 0.17109784483909607, 0.015092696063220501, -0.040275897830724716, -0.02974255569279194, 0.12270783632993698, -0.018178660422563553, -0.02861354500055313, 0.09503233432769775, 0.051312461495399475, 0.10027574002742767, -0.2185298502445221, 0.020044634118676186, -0.14036202430725098, -0.004741819109767675, 0.004626569803804159, 0.03258094936609268, -0.05665067583322525, -0.06657516211271286, 0.012626850977540016, 0.06571012735366821, 0.011081078089773655, -0.011724512092769146, -0.011114241555333138, -0.10155755281448364, -0.048349779099226, 0.0646430179476738, -0.07936956733465195, -0.11103333532810211, -0.057665832340717316, 0.07142957299947739, -0.07316216826438904, -0.06698092818260193, -0.10334093868732452, 0.06194869056344032, -0.09118535369634628, -0.028355887159705162, -0.039187174290418625, -0.05100945010781288, 0.1195950135588646, 0.11995191127061844, 0.031492169946432114, -0.12486552447080612, -0.007073578890413046, -0.1581360101699829, 0.06827064603567123, 0.03878327086567879, 0.09005843847990036, -0.016887227073311806, -0.09290493279695511, -0.013127951882779598, -0.026120765134692192, -0.06648015230894089, -0.07274912297725677, 0.09309489279985428, 0.004373284988105297, 0.04016844183206558, 0.07920544594526291, 0.09002606570720673, -0.04140739515423775, -0.020455962046980858, -0.06564504653215408, -0.1192261278629303, -0.039658550173044205, 0.10634230822324753, 0.09876369684934616, 0.08714981377124786, -0.010444044135510921, 0.0752577930688858, -0.06379878520965576, 0.02536623924970627, -0.013005937449634075, 0.04571099951863289, -0.08903047442436218, -0.02746458351612091, 0.0964774340391159, -0.04144018888473511, -0.0726296678185463, 0.032634928822517395, -0.05145834758877754, -0.1030142679810524, 0.011353102512657642, -0.04908895492553711, 0.02179129607975483, 0.03196989744901657, 0.001993399579077959, 0.07156588137149811, 0.0636829063296318, -0.028646176680922508, -0.12981222569942474, -0.0142147745937109, -0.019704608246684074, -0.047155022621154785, -0.058804918080568314, 0.0037278104573488235, -0.11122721433639526, -0.04919934272766113, -0.04661138728260994, 0.06894513964653015, 0.07531801611185074, 0.05294061824679375, -0.039236828684806824, -0.010770960710942745, -0.07908882945775986, -0.06540779024362564, 0.018358729779720306, 0.051701318472623825, 0.06315288692712784, -0.013175700791180134, 0.00024260609643533826, 0.02914556674659252, -0.010519271716475487, -0.0605739951133728, -0.04128683730959892, -0.17521584033966064, 0.1015530675649643, -0.0760674774646759, 0.068196602165699, 0.07312612980604172, -0.040850214660167694, -0.1305534541606903, 0.031750015914440155, -0.01706770434975624, 0.10869544744491577, -0.01807565614581108, 0.12057505548000336, -0.09254617989063263, -0.07833440601825714, 0.004240323323756456, -0.13556456565856934, -0.011042465455830097, -0.1168879047036171, -0.07227581739425659, -0.0014126792084425688, -0.03722534701228142, 0.0893154889345169, -0.008725213818252087, -0.03649980202317238, 0.03481996804475784, 0.03958483412861824, 0.006290811114013195, 0.008099937811493874, 0.033160168677568436, -0.09032616764307022, -0.0671311765909195, 0.11389167606830597, 0.03800478205084801, 0.1164911761879921, 0.10947812348604202, 0.1262543797492981, -0.09125413000583649, -0.04245668649673462, -0.05585353821516037, 0.148122176527977, 0.1276058852672577, -0.09247321635484695, 0.12996231019496918, -0.16545024514198303, -0.0020411775913089514, 0.018353397026658058, -0.09638676792383194, 0.123198501765728, 0.03305359184741974, 0.03696007281541824, -0.04171808809041977, -0.045997846871614456, -0.07855167984962463, 0.011096294969320297, -0.047205835580825806, -0.04814764857292175, -0.08106176555156708, 0.009851538576185703, 0.016979655250906944, -0.02582767978310585, 0.09498647600412369, -0.08851038664579391, -0.13012276589870453, -0.030274532735347748, 0.018599389120936394, 0.15415555238723755, -0.07840021699666977, 0.06944720447063446, 0.05914841964840889, -0.014106955379247665, -0.06993912160396576, 0.08718699961900711, 0.10591547936201096, -0.08313621580600739, -0.0848662480711937, -0.012459659948945045, -0.058424197137355804, 0.10515199601650238, 0.12869319319725037, -0.04708795249462128, -0.08919456601142883, 0.06343425810337067, 0.09003416448831558, 0.06566620618104935, 0.015863511711359024, -0.0020838717464357615, 0.041468922048807144, 0.0105151841416955, 0.005568246357142925, 0.026710493490099907, 0.011345185339450836, 0.011597621254622936, 0.04297367110848427, 0.05813517048954964, -0.11519849300384521, -0.10109478235244751, -0.030664123594760895, 0.1088433787226677, 0.02190137282013893, 0.040689677000045776, 0.09775041043758392, 0.10090724378824234, 0.06931489706039429, -0.06256033480167389, 0.06886502355337143, 0.07437790930271149, 0.06752365827560425, -0.010885310359299183, 0.028831645846366882, 0.019681833684444427, 0.06547091901302338, 0.06773362308740616, 0.034906379878520966, -0.008418263867497444, 0.03432762250304222, 0.07483819872140884, 0.08779185265302658, 0.022391391918063164, 0.054834745824337006, -0.026340579614043236, -0.041079893708229065, 0.12909530103206635, -0.0177213866263628, -0.03475147858262062, -0.06783772259950638, -0.015678681433200836, 0.00957607850432396, -0.05474041402339935, 0.07431985437870026, 0.0013112406013533473, 0.0367322713136673, -0.044113218784332275, 0.05643847957253456, 0.07272125035524368, -0.063808374106884, -0.11831223964691162, -0.1257268339395523, 0.08811011165380478, 0.059602055698633194, 0.057256877422332764, -0.09472727030515671, 0.0981912687420845, 0.03635287284851074, -0.07131124287843704, 0.030035560950636864, -0.06237601861357689, 0.08099982887506485, -0.013477785512804985, 0.05966319143772125, 0.0974501296877861, -0.0778251364827156, -0.04480870068073273, 0.08224742114543915, -0.0019893795251846313, 0.12975364923477173, -0.02816728688776493, -0.1415589451789856, -0.12798933684825897], +insertvalue:[-0.021996090188622475, 0.00246769399382174, 0.049910999834537506, -0.10659050941467285, -0.026234479621052742, -0.1354919672012329, -0.10528987646102905, -0.09279680252075195, 0.08029228448867798, -0.04881459102034569, 0.07313510030508041, -0.06261385977268219, 0.03521007299423218, 0.016857009381055832, 0.12490205466747284, 0.12891694903373718, -0.12952177226543427, 0.0886891633272171, 0.09979455918073654, 0.11479554325342178, 0.10576272010803223, -0.11258639395236969, -0.09827715158462524, 0.09697902202606201, -0.035968877375125885, 0.0426923930644989, 0.06570805609226227, -0.03672279417514801, -0.008935175836086273, -0.022352147847414017, -0.061094626784324646, -0.13827241957187653, 0.03976386412978172, -0.07097233086824417, -0.11908776313066483, 0.07177909463644028, -0.0891568511724472, 0.07565510272979736, 0.006338242907077074, -0.017355838790535927, -0.043246567249298096, 0.002330823102965951, -0.10384776443243027, -0.03071550838649273, -0.016571978107094765, -0.028589995577931404, 0.02784806676208973, -0.12340303510427475, -0.003819646779447794, 0.014132914133369923, -0.030788101255893707, 0.09687592089176178, -0.1344223916530609, -0.0440702922642231, 0.031157059594988823, -0.1359848827123642, -0.022011078894138336, -0.09952915459871292, 0.1183926984667778, -0.05591420456767082, 0.1275140941143036, 0.002554758684709668, 0.011041305959224701, -0.1242745891213417, 0.002264681039378047, 0.1136433556675911, 0.05375905707478523, -0.11194688826799393, -0.03247459605336189, 0.11163724958896637, -0.0032165588345378637, -0.011013921350240707, 0.023540884256362915, 0.12759917974472046, -0.03554515540599823, 0.10142092406749725, 0.042753759771585464, -0.05539754778146744, 0.08259950578212738, 0.04317137598991394, -0.031501706689596176, -0.07692235708236694, -0.02995990589261055, 0.048153817653656006, -0.1220991313457489, 0.07029218226671219, -0.12518410384655, 0.13197843730449677, -0.014576219022274017, 0.02013603411614895, -0.06314931809902191, -0.11254042387008667, -0.07878347486257553, -0.020471518859267235, 0.0010102655505761504, -0.004024854861199856, 0.1463422030210495, -0.05060514062643051, 0.07889600098133087, -0.039477985352277756, -0.08092654496431351, 0.08886131644248962, -0.04406852647662163, -0.02403915300965309, 0.01662646047770977, 0.0039739832282066345, 0.03369894251227379, 0.035761792212724686, 0.04489942640066147, -0.11107032001018524, -0.01001813542097807, 0.0033318670466542244, 0.025421272963285446, -0.08645301312208176, 0.021440066397190094, -0.002807597629725933, -0.011918523348867893, 0.008091382682323456, 0.1108696460723877, -0.020386826246976852, -0.02813662774860859, 0.010770893655717373, 0.12903980910778046, -0.03725600615143776, -0.043907005339860916, 0.11231130361557007, -0.018675941973924637, -0.10373298078775406, -0.08482424914836884, -0.10488317161798477, -0.14046885073184967, -0.0034671968314796686, 0.04564522206783295, -0.08060853183269501, 0.0118838706985116, 0.02845172770321369, -0.12279493361711502, -0.08117509633302689, -0.07981220632791519, -0.1293780356645584, 0.05526058003306389, 0.10413535684347153, 0.003848206251859665, 0.07527299225330353, 0.11472663283348083, -0.06157836318016052, -0.013209439814090729, -0.08417601138353348, -0.0031070271506905556, -0.02726398967206478, 0.033614907413721085, -0.09629809111356735, 0.07292167842388153, 0.10507050156593323, 0.01840898208320141, 0.06672078371047974, -0.04425070062279701, -0.1552659571170807, -0.05485609918832779, -0.0821356326341629, -0.03520577773451805, 0.13633304834365845, 0.029833519831299782, -0.04771694540977478, 0.06569474190473557, 0.012929629534482956, -0.0020108018070459366, 0.005102159921079874, 0.0676100105047226, 0.07797303795814514, 0.07708831131458282, -0.12152238190174103, -0.05757955461740494, -0.11898910254240036, 0.038416966795921326, 0.1159042939543724, -0.03575504198670387, -0.033077340573072433, -0.037278737872838974, 0.13503381609916687, 0.06092511862516403, 0.01594972051680088, 0.093086838722229, -0.003580154851078987, 0.00045014091301709414, 0.10698187351226807, 0.13341696560382843, -0.00023979578691069037, 0.023551329970359802, 0.01753896474838257, -0.11975543200969696, 0.13133159279823303, 0.09787363559007645, -0.02853861078619957, -0.016012467443943024, 0.12454117834568024, -0.01294464897364378, -0.041001614183187485, 0.10110518336296082, -0.09060980379581451, -0.0023193173110485077, 0.007545995991677046, 0.010003166273236275, -0.11757238209247589, -0.07005583494901657, 0.006371788680553436, 0.13465876877307892, -0.10358845442533493, 0.02509414032101631, -0.034969672560691833, -0.056917812675237656, 0.01141125988215208, 0.001163994544185698, -0.03557831421494484, -0.05424834415316582, -0.0749129205942154, -0.10932102799415588, -0.07738702744245529, -0.0022683804854750633, 0.03078402578830719, -0.11034473031759262, 0.10855340212583542, 0.10298378765583038, -0.12299907207489014, -0.11821478605270386, 0.0975230410695076, 0.09965680539608002, -0.031059984117746353, -0.07644473016262054, 0.0532800666987896, 0.047918420284986496, 0.050317201763391495, -0.09099208563566208, 0.017017019912600517, -0.12212491035461426, -0.006229153834283352, -0.024227173998951912, 0.07956786453723907, -0.05303075164556503, -0.03780584782361984, 0.048159148544073105, 0.028151798993349075, -0.010996988974511623, -0.018412727862596512, 0.024339517578482628, -0.025549327954649925, -0.026207368820905685, 0.003914031200110912, 0.09385420382022858, 0.040269967168569565, -0.01824887841939926, 0.10623419284820557, 0.06842921674251556, 0.06365633755922318, -0.0322195403277874, -0.03187524527311325, -0.07418294250965118, 0.11137600988149643, -0.14982478320598602, 0.06551618129014969, 0.11590777337551117, 0.06567510217428207, 0.009608554653823376, -0.019251413643360138, 0.05896608531475067, 0.05373514071106911, -0.10511578619480133, -0.0398230105638504, -0.08355049043893814, -0.05702455714344978, -0.022087637335062027, -0.09349014610052109, 0.09161262214183807, 0.10844659805297852, -0.06556928157806396, -0.021488770842552185, 0.10171175748109818, -0.12469638884067535, 0.036748871207237244, 0.10684818774461746, -0.030724016949534416, 0.013700994662940502, 0.04941432550549507, -0.016295215114951134, -0.0028646911960095167, 0.0037884691264480352, -0.09944692999124527, -0.08339618146419525, 0.05256982892751694, -0.11905232816934586, 0.045880064368247986, 0.019236596301198006, -0.010679977014660835, -0.038245491683483124, -0.021848708391189575, -0.05441293865442276, 0.07661260664463043, -0.07239542156457901, -0.014907083474099636, -0.04719965159893036], +integerTy:[-0.03017476387321949, -0.06791212409734726, -0.07856602966785431, 0.09783533960580826, 0.11714082211256027, 0.04023236036300659, -0.01787642203271389, -0.10978439450263977, -0.0733465775847435, 0.019559716805815697, 0.06386646628379822, -0.08633680641651154, 0.028700845316052437, -0.04609832540154457, 0.05552464351058006, -0.009222149848937988, 0.13503393530845642, 0.05101992189884186, -0.05312027409672737, -0.011289645917713642, 0.10617917031049728, -0.07338196784257889, 0.11332396417856216, -0.11155849695205688, -0.08555874228477478, 0.0913250520825386, 0.06560901552438736, -0.08011355996131897, -0.007418939843773842, 0.027918659150600433, -0.02992069534957409, 0.10717640817165375, 0.1163506880402565, -0.06650349497795105, 0.08400669693946838, -0.021577537059783936, -0.048615921288728714, -0.08222300559282303, -0.0032957326620817184, 0.00406662980094552, -0.04549935832619667, -0.0029476957861334085, 0.10050534456968307, -0.0871046856045723, 0.02314123883843422, 0.02605481632053852, 0.03200606256723404, -0.04323174059391022, 0.026102984324097633, -0.025621147826313972, -0.11881192028522491, -0.0708850622177124, 0.0880817249417305, -0.10683036595582962, -0.07784509658813477, 0.12647143006324768, 0.1240135058760643, 0.03251134604215622, 0.08502953499555588, -0.00562747847288847, -0.1210455521941185, 0.0953669548034668, 0.07740411907434464, 0.12248765677213669, 0.01395917683839798, 0.016333146020770073, 0.0793495774269104, -0.04553474858403206, 0.01517395954579115, -0.016822395846247673, -0.071467824280262, -0.05865076184272766, -0.011945817619562149, -0.11043913662433624, 0.09396858513355255, -0.09630570560693741, -0.10152003914117813, 0.0907571017742157, 0.03896099328994751, 0.09614404290914536, 0.1082853302359581, 0.07280674576759338, 0.05481269583106041, 0.01968134380877018, -0.1109856441617012, 0.025341415777802467, 0.08483879268169403, -0.11083050072193146, -0.05304634943604469, 0.01372781116515398, 0.13432863354682922, 0.11299679428339005, -0.040208857506513596, -0.07023658603429794, 0.016142943874001503, -0.06017758697271347, -0.10337527096271515, 0.009249549359083176, -0.12167384475469589, 0.019157785922288895, -0.04965715482831001, 0.0009960103780031204, -0.02497786656022072, -0.08134081214666367, 0.03773346543312073, 0.04766236990690231, 0.048477984964847565, -0.1373339742422104, 0.005338259506970644, 0.062120094895362854, 0.11804228276014328, -0.03871726617217064, -0.009236526675522327, 0.11661316454410553, -0.10434724390506744, 0.005082560237497091, -0.08687886595726013, -0.03412553668022156, 0.0780380591750145, 0.020331736654043198, 0.029218679293990135, 0.0005371058941818774, -0.0880897119641304, 0.1021852120757103, 0.015591352246701717, 0.07718806713819504, -0.07596782594919205, 0.10385452210903168, 0.04040016233921051, 0.019585084170103073, 0.115925133228302, -0.03971215337514877, 0.1221625879406929, 0.1102907583117485, -0.003435730002820492, -0.033470455557107925, 0.06246672943234444, 0.10062048584222794, 0.11451799422502518, -0.11507784575223923, 0.0678262934088707, 0.014157903380692005, -0.0004613905039150268, 0.0052408138290047646, 0.05568894371390343, -0.009574643336236477, -0.008162996731698513, 0.061698898673057556, -0.03411003202199936, -0.08049488812685013, -0.02392042800784111, -0.08309171348810196, 0.010478057898581028, -0.10502775758504868, 0.11991927027702332, -0.10487611591815948, 0.09994161128997803, 0.08977318555116653, 0.0963631272315979, 0.09451523423194885, 0.028328891843557358, -0.10181541740894318, -0.08568550646305084, -0.0015548572409898043, -0.039304327219724655, -0.0044065555557608604, 0.002930751070380211, 0.07201813161373138, 0.11605970561504364, 0.08566261827945709, 0.06566503643989563, 0.11253151297569275, 0.021172955632209778, -0.07743500918149948, -0.00663268705829978, -0.00036859416286461055, -0.056336909532547, -0.07605988532304764, -0.06866655498743057, 0.061769671738147736, -0.047235287725925446, 0.006893076468259096, -0.15737631916999817, 0.126522034406662, 0.04670227691531181, -0.0052879746071994305, 0.06323426961898804, -0.008852683939039707, 0.07140187174081802, -0.0472145676612854, 0.003486458444967866, 0.020241551101207733, 0.1143609881401062, 0.01170706283301115, 0.043604109436273575, -0.06920504570007324, -0.09683734178543091, -0.006809310521930456, -0.12191790342330933, -0.11547669768333435, -0.10969465970993042, 0.05743119493126869, -0.08959528803825378, 0.12269292026758194, 0.1218852549791336, 0.02014777809381485, -0.11948846280574799, -0.10496176779270172, 0.1025380790233612, -0.11070101708173752, -0.07375368475914001, 0.06257123500108719, -0.03388724476099014, -0.05168277025222778, 0.01136374194175005, 0.07943040877580643, -0.017316943034529686, -0.10303093492984772, 0.014892138540744781, -0.05892125517129898, 0.10567593574523926, 0.017932185903191566, -0.0869506448507309, 0.09315100312232971, -0.08063217252492905, -0.013698332011699677, -0.10521665215492249, -0.030989669263362885, 0.09090859442949295, -0.05498247593641281, -0.09292495995759964, -0.018412908539175987, -0.07291119545698166, 0.00962262973189354, -0.055737484246492386, -0.03853769227862358, -0.05160117149353027, 0.06012905761599541, -0.008889547549188137, -0.09249252080917358, -0.023250309750437737, 0.10515764355659485, -0.03469470143318176, -0.05318601056933403, -0.02290751412510872, 0.08390022814273834, 0.005390584468841553, -0.10874196141958237, 0.11196261644363403, -0.05392245575785637, 0.0065939598716795444, -0.1714288890361786, -0.0899256095290184, -0.14125452935695648, -0.1287410408258438, -0.007878018543124199, -0.08863791078329086, -0.06302768737077713, 0.026317166164517403, 0.026408573612570763, 0.10185127705335617, 0.03738735616207123, -0.09689181298017502, -0.0307755284011364, 0.107537180185318, -0.011424582451581955, 0.1143074631690979, 0.07748492807149887, 0.05336317420005798, 0.13929834961891174, -0.11003798991441727, 0.054758407175540924, -0.05237066373229027, 0.09514783322811127, -0.07356298714876175, -0.032470837235450745, -0.03581368550658226, 0.024388041347265244, 0.015938660129904747, -0.10230115056037903, 0.08554509282112122, -0.0012394817313179374, -0.10295675694942474, -0.025362689048051834, 0.026149526238441467, 0.08836529403924942, 0.015339399687945843, -0.032765697687864304, 0.014135335572063923, -0.09489012509584427, 0.1101609319448471, -0.08875982463359833, 0.11082801222801208, 0.05977440997958183, -0.07646199315786362, 0.03302926942706108, -0.06584734469652176, -0.03327297419309616, 0.004271522630006075, 0.14165347814559937], +inttoptr:[0.12314794212579727, 0.010843053460121155, 0.0852377861738205, 0.056856222450733185, 0.023623233661055565, 0.12284033745527267, 0.11879680305719376, 0.0010827801888808608, 0.03841741755604744, 0.03974393010139465, 0.0757501870393753, 0.019819434732198715, -0.08377295732498169, 0.04437463730573654, 0.04000520706176758, -0.09246660023927689, -0.03993414714932442, 0.0030682096257805824, 0.01177958957850933, -0.08746304363012314, -0.01772911846637726, -0.020492615178227425, -0.07595627009868622, 0.12977951765060425, 0.10945149511098862, 0.10733523964881897, 0.01897601969540119, 0.0043733310885727406, -0.01633271761238575, 0.05956259369850159, -0.11208457499742508, -0.06599817425012589, -0.03386092931032181, 0.12377098947763443, 0.08366833627223969, 0.010568336583673954, -0.022207152098417282, -0.00234240829013288, 0.0011283945059403777, -0.024677542969584465, -0.007781610358506441, 0.007835746742784977, 0.1444682478904724, -0.11791068315505981, -0.03859264776110649, 0.0013080755015835166, 0.06305799633264542, 0.1425677239894867, -0.012688581831753254, 0.15123578906059265, 0.14856621623039246, 0.002138615120202303, -0.013358667492866516, -0.11872804164886475, -0.0339583195745945, 0.02244485355913639, -0.10388091206550598, 0.140981987118721, -0.010168202221393585, -0.0805009976029396, -0.14787286520004272, 0.0005030341562815011, 0.13331614434719086, 0.01284248847514391, 0.018909750506281853, 0.09739226847887039, -0.03647613897919655, 0.13349497318267822, 0.07538986951112747, 0.05947161465883255, -0.02580481581389904, -0.12918682396411896, 0.007122057490050793, 0.021963324397802353, -0.09168775379657745, 0.04004185274243355, -0.021542703732848167, 0.08697313815355301, 0.09730380028486252, 0.07645716518163681, -0.09401758760213852, 0.14305435121059418, -0.029524315148591995, 0.005564077291637659, 0.10988565534353256, -0.034004561603069305, -0.012533813714981079, -0.08588674664497375, 0.10056799650192261, -0.10879894345998764, -0.0033941350411623716, -0.0922323614358902, -0.0677926316857338, 0.11724501103162766, -0.04126102849841118, 0.0703115314245224, -0.06782005727291107, 0.02582125924527645, -0.020840249955654144, -0.117429219186306, -0.1233179047703743, 0.1098116859793663, 0.14448601007461548, 0.06028879061341286, 0.0604868158698082, 0.06386049836874008, 0.050618745386600494, -0.010225947014987469, -0.045975442975759506, -0.08730786293745041, 0.058921799063682556, -0.03778832405805588, 0.036464154720306396, -0.018401408568024635, -0.03992954641580582, -0.054189663380384445, -0.15449878573417664, -0.0411701537668705, -0.04142111539840698, 0.07983684539794922, -0.0026474427431821823, 0.07716361433267593, 0.11932773888111115, -0.07128236442804337, 0.07935457676649094, 0.0689864456653595, 0.035758618265390396, -0.016560064628720284, -0.009281756356358528, 0.10116607695817947, -0.04296167194843292, 0.09264024347066879, -0.06749323755502701, 0.09409159421920776, -0.06803125888109207, 0.03036363050341606, -0.09112957864999771, 0.0006493633263744414, -0.13603033125400543, 0.012092799879610538, -0.10780233889818192, 0.10301883518695831, -0.1620824933052063, 0.0920703187584877, 0.01508806087076664, 0.0030151864048093557, -0.07089496403932571, -0.06085503473877907, 0.024904847145080566, 0.048287421464920044, 0.017953168600797653, -0.14572051167488098, 0.05978114902973175, 0.07135940343141556, 0.03119329735636711, 0.13027845323085785, 0.009181511588394642, -0.11344800144433975, -0.017214708030223846, 0.036656830459833145, 0.04705921187996864, -0.11530560255050659, -0.03772624954581261, 0.09185665100812912, -0.08119593560695648, -0.029239576309919357, 0.0206409003585577, -0.10213277488946915, -0.0343940332531929, 0.019497741013765335, 0.02231394313275814, -0.07799087464809418, 0.12133631110191345, 0.034473199397325516, 0.0209200456738472, -0.09220654517412186, 0.10731948912143707, 0.0006370660848915577, -0.04028767719864845, 0.047595638781785965, -0.09246990084648132, -0.035792119801044464, -0.08890392631292343, 0.03493792563676834, -0.03067057393491268, 0.05663742497563362, 0.06233016029000282, -0.04308996722102165, -0.08648336678743362, -0.12996238470077515, 0.0297103188931942, -0.020066823810338974, -0.07652390003204346, -0.03615584224462509, 0.131033793091774, 0.025912150740623474, -0.07538923621177673, -0.013349524699151516, 0.054177284240722656, -0.006309216842055321, -0.0648849681019783, 0.1139242872595787, -0.05488000437617302, -0.07505516707897186, 0.010538709349930286, 0.001185932313092053, -0.018246211111545563, -0.007916473783552647, 0.0497685931622982, 0.06215014308691025, 0.05549348518252373, 0.04848670959472656, -0.004773402586579323, 0.04274982586503029, 0.1294715851545334, 0.11310002952814102, 0.11169536411762238, 0.024364396929740906, 0.009206277318298817, -0.13789436221122742, 0.0637882649898529, -0.05327976122498512, 0.08602430671453476, -0.03832850605249405, 0.07080605626106262, 0.08751142770051956, 0.03740593045949936, -0.06365582346916199, -0.12020257115364075, -0.03339884430170059, -0.077595554292202, -0.08911184966564178, 0.1378209888935089, 0.03295523300766945, 0.08541639149188995, 0.04848518967628479, 0.01921669766306877, 0.0625605657696724, -0.1663508266210556, -0.05109978839755058, 0.11131676286458969, -0.04586084932088852, -0.03527035936713219, -0.09594329446554184, 0.034409042447805405, 0.04060307890176773, 0.012161791324615479, 0.03845811262726784, -0.09016519039869308, 0.05103231966495514, -0.018026292324066162, 0.14086966216564178, -0.09933997690677643, 0.13093924522399902, -0.024566879495978355, -0.014648059383034706, 0.022208446636795998, -0.10858453065156937, 0.04942896217107773, -0.045431457459926605, 0.008423998020589352, -0.13855794072151184, 0.08884359896183014, -0.1408621072769165, 0.059468504041433334, -0.10982636362314224, 0.002591721247881651, 0.10600398480892181, 0.013034608215093613, 0.03461417928338051, 0.11468962579965591, 0.07111920416355133, -0.07958627492189407, 0.15587091445922852, 0.08196806907653809, -0.13769619166851044, 0.11506592482328415, -0.11717906594276428, -0.13792376220226288, 0.005801653955131769, -0.07150371372699738, 0.03166462853550911, -0.06895576417446136, -0.03078415058553219, -0.023550715297460556, 0.04524124413728714, 0.08673611283302307, -0.0018310209270566702, 0.01458963006734848, 0.03211706131696701, 0.13367797434329987, 0.021730823442339897, 0.019708460196852684, -0.07731914520263672, 0.08885698765516281, -0.024352803826332092, -0.014669330790638924, 0.16178660094738007, 0.05527104437351227, 0.04676287621259689], +invoke:[0.11469509452581406, 0.04785963147878647, 0.08710534125566483, -0.08178569376468658, 0.01753193512558937, -0.022775009274482727, -0.1629411280155182, 0.0023516665678471327, 0.015686092898249626, -0.013000696897506714, -0.106599822640419, 0.08724137395620346, -0.005077042151242495, 0.017287585884332657, -0.17417795956134796, -0.0102488212287426, -0.0007816780707798898, 0.04261774942278862, 0.11614978313446045, -0.029909733682870865, -0.03234085068106651, -0.02981492504477501, 0.08095446974039078, -0.04430060461163521, 0.026893770322203636, -0.12085769325494766, 0.02271469309926033, 0.09761785715818405, 0.1447242945432663, 0.006685340311378241, 0.014164089225232601, -0.0664915218949318, 0.07032454758882523, 0.11762632429599762, 0.0029863552190363407, -0.08353958278894424, -0.004607270006090403, 0.06927219778299332, 0.12090114504098892, -0.013848205097019672, 0.19443511962890625, 0.08712787926197052, 0.05197282135486603, 0.03503410145640373, -0.07106173783540726, -0.007839178666472435, -0.10486306995153427, 0.04711411893367767, -0.06673435866832733, -0.10131809860467911, 0.0023993905633687973, 0.0036960523575544357, 0.003241011407226324, -0.03988638520240784, -0.1451178640127182, -0.026714986190199852, -0.0003687935823109001, -0.026863323524594307, -0.06856250762939453, 0.04132350906729698, 0.13232895731925964, -0.05908292531967163, 0.0017626781482249498, -0.005069469567388296, 0.10417766869068146, -0.06214829906821251, -0.062148407101631165, 0.028086278587579727, -0.16097326576709747, -0.06639508903026581, -0.026940595358610153, 0.11811818182468414, 0.14626477658748627, 0.007424552924931049, -0.059263795614242554, 0.03831806778907776, 0.09713061153888702, 0.009102225303649902, -0.0822543278336525, -0.05954817309975624, -0.06517383456230164, -0.09060797840356827, -0.11454282701015472, 0.08084633946418762, 0.10235718637704849, -0.03460570052266121, -0.02147461660206318, -0.009526479057967663, 0.02957368828356266, 0.0007835206924937665, -0.0027098620776087046, -0.012029913254082203, 0.0562424473464489, 0.01740201562643051, -0.09594912827014923, 0.06813093274831772, 0.04534989967942238, 0.06030089408159256, -0.025456737726926804, -0.06548182666301727, 0.13282540440559387, 0.007477801293134689, -0.12892872095108032, 0.01304563693702221, 0.08364469558000565, -0.07260297983884811, 0.03624116629362106, 0.04726891964673996, -0.013340625911951065, -0.024518923833966255, -0.00642184354364872, -0.055657923221588135, -0.09494531899690628, -0.023710282519459724, -0.008657910861074924, -0.004524259362369776, 0.020615659654140472, -0.03276696428656578, -0.15661120414733887, -0.03065618686378002, -0.10537903010845184, -0.04242941364645958, 0.010185999795794487, -0.07051485776901245, -0.018747108057141304, -0.036887288093566895, 0.039262183010578156, -0.045997150242328644, 0.09145617485046387, -0.007292802445590496, -0.04229355230927467, -0.15927843749523163, 0.08764603734016418, -0.021381763741374016, 0.08020685613155365, -0.011088980361819267, -0.016273245215415955, -0.05985486879944801, 0.009876977652311325, 0.03122483566403389, -0.10381174832582474, -0.03996265307068825, -0.004739934578537941, -0.1073366105556488, -0.05318548157811165, -0.0015044673345983028, 0.07149437814950943, 0.047186143696308136, 0.06615510582923889, 0.0015502017922699451, 0.004860593471676111, 0.03166310861706734, 0.08489561080932617, 0.07954595983028412, 0.06438443064689636, -0.019186150282621384, -0.16800937056541443, 0.00862312875688076, -0.14411711692810059, 0.12968288362026215, 0.03224026411771774, -0.02608272060751915, 0.09829739481210709, 0.08943011611700058, -0.003881824901327491, 0.054973769932985306, -0.2619582712650299, -0.07523329555988312, -0.04095294699072838, 0.07975277304649353, -0.10758645832538605, -0.043199580162763596, -0.06531424820423126, 0.02941054105758667, 0.001971704186871648, -0.07814425230026245, 0.00874372385442257, 0.12294936925172806, 0.1559445858001709, -0.1627398133277893, -0.055758990347385406, 0.02979392558336258, 0.017537813633680344, -0.09204888343811035, 0.05402837693691254, -0.11931508779525757, 0.019991092383861542, -0.0633067712187767, -0.08219631761312485, 0.08873508870601654, 0.04314335063099861, 0.018068285658955574, 0.06882034242153168, -0.04386310651898384, 0.0442974828183651, -0.01079198345541954, -0.027377387508749962, 0.07296629250049591, 0.07123702019453049, 0.015065406449139118, 0.12429946660995483, -0.06638650596141815, 0.016907358542084694, 0.06040821596980095, 0.008235828019678593, -0.05654224753379822, -0.002241881564259529, 0.025131791830062866, -0.06944310665130615, 0.042075563222169876, -0.07697336375713348, -0.06370527297258377, -0.05593208223581314, 0.01484272163361311, -0.027182601392269135, -0.10623541474342346, -0.028291964903473854, 0.026421083137392998, -0.04997128248214722, 0.06904502958059311, 0.043792180716991425, -0.02714676782488823, 0.11632707715034485, 0.08408743888139725, 0.06728897988796234, 0.03724381700158119, 0.029762933030724525, 0.04038408771157265, -0.030394507572054863, 0.023475557565689087, -0.08041783422231674, 0.0010279950220137835, -0.008554445579648018, 0.0147713553160429, 0.07667893171310425, 0.058656856417655945, 0.018564054742455482, 0.04591493681073189, 0.09171022474765778, 0.04198369011282921, 0.05982977896928787, 0.007827595807611942, -0.05033766105771065, 0.03014058619737625, 0.09320057183504105, -0.053777702152729034, -0.04439917579293251, -0.008229762315750122, 0.013993294909596443, 0.12604404985904694, 0.0656009241938591, -0.012890437617897987, 0.08762160688638687, -0.045228540897369385, 0.12998050451278687, -0.10800968110561371, 0.16690793633460999, 0.03933132439851761, 0.04819713160395622, 0.10413865000009537, 0.05147930607199669, 0.10292650014162064, -0.009981755167245865, -0.008560685440897942, -0.16679731011390686, -0.1022716537117958, -0.0074141002260148525, -0.016451159492135048, -0.09352921694517136, 0.04212850704789162, -0.03993785008788109, 0.10418430715799332, -0.05073106288909912, 0.012049213983118534, -0.0818757712841034, 0.04081713780760765, 0.0703534260392189, -0.10092192143201828, 0.21532030403614044, 0.06029472500085831, -0.029224758967757225, -0.05229007825255394, 0.02016659639775753, -0.1695091873407364, -0.05253884568810463, -0.07098212838172913, 0.07029729336500168, 0.016524838283658028, 0.020909994840621948, -0.03394249081611633, -0.027769673615694046, 0.14366596937179565, 0.11252234876155853, 0.05200963839888573, -0.0718003585934639, 0.10526618361473083, -0.054206881672143936, -0.01702938787639141, 0.11001811176538467, 0.051917776465415955], +label:[0.09389500319957733, -0.11348514258861542, 0.030053356662392616, -0.028598034754395485, 0.06996460258960724, -0.07518381625413895, 0.13124598562717438, 0.06207523122429848, -0.043605558574199677, -0.05104714259505272, -0.07101195305585861, -0.07989174872636795, 0.035005856305360794, 0.020151769742369652, -0.030484385788440704, 0.03278776630759239, -0.07296845316886902, -0.08682920038700104, -0.024761836975812912, 0.05725222826004028, -0.0538053885102272, 0.05270994082093239, -0.10683239996433258, 0.057518113404512405, 0.07950230687856674, 0.050806183367967606, 0.13991467654705048, -0.015216576866805553, 0.06511880457401276, -0.04672853648662567, 0.07755913585424423, -0.10884731262922287, 0.059500884264707565, 0.025195134803652763, 0.1488495022058487, -0.03311808407306671, -0.06223202496767044, -0.03773828595876694, 0.08206038177013397, 0.08695770800113678, 0.1360682100057602, 0.02482643537223339, -0.022755732759833336, 0.09474985301494598, -0.026250338181853294, -0.05564403906464577, 0.01607736386358738, 0.08300871402025223, -0.011754459701478481, 0.07155854254961014, 0.12157902866601944, 0.07282570004463196, 0.0609663687646389, 0.02964136004447937, -0.0777410939335823, 0.06556349247694016, 0.04432513937354088, -0.014605428092181683, 0.054030876606702805, 0.09199760109186172, 0.032817158848047256, 0.04757915809750557, -0.11202206462621689, 0.04908384010195732, -0.07687836140394211, -0.015780793502926826, 0.02714238315820694, -0.060082580894231796, -0.04234607145190239, -0.030438244342803955, 0.008713205344974995, 0.05697530880570412, -0.011767962947487831, 0.044476546347141266, -0.010410532355308533, -0.06806506961584091, -0.08239986002445221, 0.01291576772928238, 0.02112535759806633, -0.004072592128068209, 0.02359188161790371, -0.019438905641436577, -0.1681991070508957, -0.026790903881192207, -0.023874377831816673, -0.03862779587507248, -0.10798761248588562, 0.11404912918806076, 0.009702193550765514, 0.012196635827422142, -0.15140976011753082, 0.0365326851606369, -0.028388766571879387, -0.04289448633790016, -0.041135337203741074, 0.11007478088140488, -0.10031156241893768, -0.03021172434091568, 0.04510536044836044, -0.09329283237457275, -0.0880918800830841, 0.14846926927566528, -0.0420616939663887, -0.02128656394779682, 0.016167160123586655, 0.058699555695056915, 0.005326226819306612, -0.09957671910524368, -0.035968899726867676, 0.15810859203338623, -0.0885128602385521, -0.03665059804916382, -0.04477330669760704, 0.04555601626634598, 0.03775818273425102, -0.049485839903354645, -0.141130730509758, 0.037344373762607574, -0.11969652771949768, -0.052116554230451584, 0.04685535654425621, 0.027854174375534058, -0.14166228473186493, 0.029383376240730286, -0.0798899233341217, 0.046018581837415695, 0.10140011459589005, -0.08227302879095078, 0.01589464768767357, 0.026287812739610672, 0.130971297621727, 0.08032716065645218, 0.027945930138230324, 0.07066618651151657, -0.020690059289336205, -0.023634547367691994, 0.06958337128162384, 0.07864795625209808, 0.1322532296180725, 0.0855010598897934, 0.01589934714138508, -0.06797292083501816, -0.06416299939155579, -0.08756950497627258, -0.10152523219585419, -0.04262138530611992, -0.12023738026618958, 0.07879633456468582, 0.08894812315702438, -0.06904612481594086, 0.03206769749522209, -0.008140793070197105, -0.06790298223495483, -0.028985487297177315, -0.15609852969646454, 0.060309186577796936, -0.07271014153957367, 0.07299285382032394, -0.058305125683546066, -0.04904262349009514, -0.06696098297834396, 0.0531504824757576, -0.009040757082402706, 0.1278703510761261, -0.12067313492298126, 0.06713513284921646, -0.0741097703576088, 0.06037376821041107, 0.027394060045480728, -0.03207824379205704, -0.014198772609233856, 0.037205033004283905, -0.035622719675302505, -0.0208891611546278, -0.09835964441299438, -0.121877022087574, -0.018460571765899658, -0.007692310027778149, 0.08413115888834, 0.05908367782831192, -0.031243933364748955, -0.05879852548241615, 0.07213898003101349, -0.05385681986808777, 0.10869008302688599, 0.034568239003419876, -0.06135092303156853, -0.042536742985248566, 0.041644446551799774, 0.027248218655586243, 0.14253391325473785, -0.03818260505795479, 0.003858280833810568, -0.03723813220858574, -0.12612897157669067, -0.06763427704572678, 0.1565326601266861, 0.03597848489880562, -0.03961576148867607, -0.09541811048984528, 0.10959070920944214, 0.12521861493587494, 0.027233554050326347, -0.12479633092880249, 0.06780138611793518, 0.002226352458819747, -0.05472685396671295, 0.12477677315473557, -0.11487298458814621, -0.011422269977629185, -0.04889621213078499, -0.10784786194562912, -0.10193709284067154, 0.09836430847644806, 0.0950787290930748, 0.11963021755218506, -0.09317424148321152, 0.13252416253089905, -0.020103689283132553, -0.0036688202526420355, 0.09054205566644669, 0.03683251887559891, 0.03824432194232941, 0.01107639167457819, -0.0646313801407814, -0.04959937185049057, -0.06155748665332794, 0.057452596724033356, -0.0984359011054039, -0.020454254001379013, -0.1256214678287506, 0.02267923392355442, 0.07528137415647507, -0.03337583690881729, -0.049252863973379135, -0.03068036399781704, -0.019251225516200066, -0.08109024167060852, -0.08502291142940521, 0.108094222843647, -0.12262330204248428, -0.13130906224250793, 0.04165025055408478, -0.14911295473575592, 0.06383650749921799, -0.10100321471691132, 0.11259933561086655, 0.0628865584731102, -0.0644177496433258, -0.10489533096551895, 0.06519011408090591, -0.06218602508306503, 0.11103153973817825, -0.00803985446691513, 0.011579603888094425, 0.04494084417819977, 0.0948718711733818, 0.10433738678693771, 0.10841982811689377, 0.012400130741298199, 0.01327025331556797, 0.03414482995867729, 0.12973296642303467, -0.03963016718626022, -0.12151943892240524, 0.02696804143488407, -0.1134420782327652, 0.1479610651731491, 0.0735999345779419, -0.06600414216518402, 0.053449299186468124, 0.09522219747304916, -0.11038083583116531, 0.052444152534008026, -0.030630186200141907, -0.06888429820537567, -0.08921414613723755, 0.07138674706220627, 0.020920801907777786, 0.0003161395725328475, -0.11939603090286255, 0.123951755464077, -0.07448119670152664, -0.025965729728341103, -0.0760285034775734, -0.029922740533947945, 0.0020718283485621214, 0.0630970448255539, -0.02102062478661537, 0.044224828481674194, -0.0470588244497776, 0.06814485788345337, 0.057133834809064865, 0.09486956894397736, 0.04565878212451935, -0.07377378642559052, 0.025305306538939476, 0.053310591727495193, 0.14417682588100433, 0.11173541843891144], +landingpad:[-0.005688824690878391, -0.12546715140342712, 0.09384822100400925, -0.020326506346464157, 0.09694206714630127, 0.04623926803469658, -0.048038337379693985, 0.10974013805389404, 0.039330217987298965, 0.05124369636178017, -0.09650830179452896, 0.04904034361243248, -0.0142448078840971, 0.12258604913949966, 0.07510385662317276, -0.06302206963300705, 0.0003666743286885321, 0.027682116255164146, 0.11405950039625168, -0.021467261016368866, 0.003994563594460487, -0.1710391640663147, 0.10718356817960739, -0.09645317494869232, -0.05844821780920029, -0.0608958937227726, -0.09682028740644455, -0.003979827743023634, 0.07018367946147919, 0.025102226063609123, 0.11817450076341629, 0.03748463839292526, -0.11165902763605118, -0.13693228363990784, -0.15264594554901123, -0.048178888857364655, -0.023074666038155556, -0.129545196890831, 0.04095401614904404, -0.012572330422699451, -0.07639026641845703, 0.04105415195226669, -0.014848840422928333, -0.05586981028318405, 0.004232738167047501, 0.027311310172080994, 0.0068594226613640785, 0.061294086277484894, 0.00473588053137064, -0.11125566065311432, 0.033898741006851196, 0.15575353801250458, 0.05790518596768379, -0.06860800832509995, -0.144695445895195, 7.435819134116173e-05, 0.008767361752688885, 0.008855674415826797, -0.08007493615150452, 0.04424535110592842, 0.13826319575309753, 0.037073589861392975, 0.0035985871218144894, 0.09708712249994278, 0.09778662770986557, -0.017220081761479378, 0.027098815888166428, -0.016738131642341614, -0.1467883288860321, -0.05976739898324013, -0.03649909421801567, 0.11321418732404709, 0.04751095175743103, -0.003013854380697012, -0.06888775527477264, 0.11003459244966507, 0.1372063308954239, 0.08284235000610352, 0.015250994823873043, 0.009705321863293648, 0.003996764309704304, -0.00661657378077507, -0.060522645711898804, -0.051676101982593536, 0.11356056481599808, -0.035110533237457275, -0.039010997861623764, 0.00800170935690403, 0.05024736747145653, 0.05285247787833214, 0.14067819714546204, -0.16103197634220123, 0.01848679594695568, 0.052785299718379974, -0.03233984485268593, -0.04182573780417442, 0.03960225731134415, 0.006361940409988165, 0.10686247795820236, -0.05089385807514191, -0.009892643429338932, -0.07616528868675232, 0.08075371384620667, 0.06552157551050186, 0.038104698061943054, -0.07156563550233841, -0.04071233421564102, 0.05340757966041565, -0.07322034239768982, 0.031400930136442184, -0.02843494527041912, -0.0044966344721615314, 0.024162886664271355, 0.08661523461341858, 0.08061961829662323, -0.0063409991562366486, 0.12457175552845001, -0.07965598255395889, -0.14958181977272034, 0.003653955180197954, 0.056299787014722824, 0.11800172924995422, 0.09894917905330658, -0.05246080458164215, -0.06295027583837509, -0.03137977421283722, -0.104630246758461, 0.15010930597782135, 0.022395672276616096, -0.0032288392540067434, -0.05687164142727852, 0.09533043205738068, 0.13878008723258972, -0.06944946944713593, 0.08376219868659973, -0.027939343824982643, 0.11523500829935074, 0.14743460714817047, -0.08169572800397873, 0.03352811560034752, 0.06823963671922684, -0.009559661149978638, 0.06082407385110855, -0.029870573431253433, -0.006853111088275909, 0.028371255844831467, -0.10988664627075195, 0.08881121128797531, 0.13078901171684265, -0.0920606181025505, 0.018307754769921303, 0.11706040054559708, -0.08642037957906723, -0.011988639831542969, -0.019749024882912636, -0.019834203645586967, -0.03376676142215729, -0.010348033159971237, 0.10576934367418289, 0.1363024264574051, 0.03899289295077324, 0.060797955840826035, 0.09611515700817108, 0.09420352429151535, 0.008084853179752827, 0.04593809321522713, 0.010289041325449944, -0.04157562553882599, -0.09549033641815186, -0.03266102075576782, 0.0010674785589799285, -0.1225496158003807, 0.06540347635746002, -0.03018316626548767, 0.020434970036149025, -0.06777656823396683, 0.097188301384449, 0.03176657482981682, 0.14549241960048676, 0.10355775058269501, 0.12511694431304932, 0.06799997389316559, 0.04506251588463783, 0.08026185631752014, -0.05446885898709297, 0.057060904800891876, -0.11558080464601517, -0.004120089579373598, -0.08556947112083435, -0.11336354166269302, 0.011390123516321182, 0.15083914995193481, -0.1249842643737793, -0.06324206292629242, 0.057163089513778687, 0.13663481175899506, -0.01426678616553545, 0.02806185930967331, -0.020185096189379692, 0.09844793379306793, -0.05955428630113602, -0.07259254157543182, -0.060936085879802704, 0.027413489297032356, -0.07564143091440201, 0.06855018436908722, 0.029143624007701874, 0.029933815822005272, 0.07990974932909012, 0.11294279992580414, 0.07254772633314133, 0.12794393301010132, -0.10840845853090286, -0.09289517253637314, -0.042856570333242416, -0.007333206478506327, 0.05244335159659386, 0.0683816596865654, 0.07745183259248734, -0.09840430319309235, 0.047626424580812454, 0.08153455704450607, 0.10996910184621811, 0.03920620679855347, -0.040777578949928284, -0.051196079701185226, 0.1291937530040741, 0.11824904382228851, -0.017924288287758827, 0.13238371908664703, -0.07759147882461548, -0.12434805184602737, -0.004945761989802122, 0.02041097916662693, 0.10812564194202423, -0.05361336097121239, -0.08681387454271317, -0.04004683718085289, 0.10598922520875931, -0.04036281630396843, -0.1354164332151413, -0.08930710703134537, -0.12636186182498932, -0.10871818661689758, 0.029105009511113167, 0.062274862080812454, -0.11255311220884323, 0.03382190316915512, 0.009928141720592976, 0.027131695300340652, 0.023503383621573448, 0.07211724668741226, 0.12150318920612335, 0.06421718001365662, 0.1358192265033722, 0.015266809612512589, -0.08901384472846985, -0.003677615663036704, 0.1484845131635666, 0.004152185283601284, -0.01573660410940647, -0.058508940041065216, 0.00020208746718708426, -0.0513223335146904, 0.10870356112718582, 0.09418810158967972, -0.01269078254699707, 0.02554262802004814, 0.06869450956583023, 0.14029191434383392, 0.06463741511106491, -0.06964588910341263, -0.058715298771858215, -0.071010060608387, -0.1026553362607956, 0.0026525473222136497, 0.008155201561748981, 0.01693122833967209, 0.05235330015420914, 0.11755304783582687, 0.06000029295682907, -0.03849555552005768, 0.007485935930162668, 0.007849175482988358, -0.10323827713727951, 0.018595842644572258, -0.1013522520661354, 0.06364317238330841, 0.004334528464823961, 0.10380677878856659, -0.06816768646240234, 0.0799274668097496, -0.035043831914663315, 0.1358160823583603, 0.02500639669597149, -0.10071294754743576, -0.05644180253148079, -0.08730972558259964, 0.09433627128601074, 0.05097714811563492], +load:[0.07475069165229797, 0.04276235029101372, 0.07955818623304367, -0.11206015199422836, -0.07176888734102249, -0.025404689833521843, 0.028705578297376633, -0.038437869399785995, 0.025468533858656883, 0.16079601645469666, -0.011027614586055279, -0.014034643769264221, 0.07835377752780914, 0.14204710721969604, -0.09100798517465591, 0.04212101176381111, -0.058928895741701126, -0.03744976222515106, 0.004184760618954897, -0.020000601187348366, -0.032683249562978745, 0.062404751777648926, -0.06536269932985306, -0.044217608869075775, 0.027522094547748566, -0.07310353219509125, 0.04447735473513603, 0.05095117166638374, -0.13437221944332123, 0.04431876912713051, 0.015091692097485065, -0.09581858664751053, -0.010870561003684998, 0.12302971631288528, 4.1760707972571254e-05, 0.021785957738757133, -0.06535138934850693, 0.07315284758806229, -0.12264508754014969, 0.13694609701633453, -0.13587023317813873, -0.10221772640943527, 0.05894124507904053, 0.035746317356824875, 0.054048486053943634, -0.13367433845996857, -0.07805022597312927, 0.04985274374485016, 0.1469581574201584, -0.07728283107280731, -0.025840235874056816, 0.005134507082402706, -0.009521234780550003, -0.041387639939785004, -0.03206079825758934, -0.0525093711912632, -0.0627349391579628, -0.06058857589960098, -0.0059636496007442474, -0.11452550441026688, -0.05578162893652916, -0.06744788587093353, 0.05356733128428459, 0.016706248745322227, -0.16676850616931915, -0.06975001841783524, -0.03015555441379547, 0.06646457314491272, -0.010285800322890282, 0.05489814281463623, -0.029592303559184074, -0.07035965472459793, -0.0022865966893732548, 0.05181409418582916, -0.06613696366548538, 0.030952440574765205, -0.014364190399646759, -0.14171263575553894, 0.02986598201096058, -0.06148844212293625, -0.07110568135976791, -0.08231151849031448, -0.02043120749294758, -0.06818683445453644, 0.012240871787071228, 0.039892129600048065, 0.10140977799892426, -0.06654852628707886, 0.10101982206106186, -0.10967135429382324, -0.01710563525557518, -0.08146671205759048, 0.06752515584230423, 0.07069645822048187, -0.005640215706080198, 0.06691956520080566, 0.05497216433286667, 0.17662863433361053, 0.12624908983707428, 0.03076080046594143, 0.03812757506966591, 0.10041412711143494, 0.07231616228818893, 0.015330673195421696, 0.09218797087669373, 0.09372866898775101, -0.06909957528114319, -0.03518630564212799, -0.03192778304219246, -0.08447473496198654, -0.0029334428254514933, -0.040177904069423676, -0.0993541032075882, -0.01817087084054947, 0.011931334622204304, -0.07555592805147171, -0.020365498960018158, -0.014435398392379284, -0.04035606235265732, 0.1668049395084381, -0.20291084051132202, -0.03346778452396393, 0.10317333787679672, -0.06307310611009598, -0.01972750388085842, -0.044565875083208084, 0.04193633049726486, -0.022574735805392265, -0.03682538494467735, -0.0090019591152668, -0.043692123144865036, 0.0032237558625638485, -0.02085012197494507, 0.009432448074221611, -0.19778186082839966, -0.0015142622869461775, -0.020336182788014412, 0.0010597098153084517, -0.04436104744672775, -0.02717682346701622, -0.10549350082874298, -0.17233693599700928, -0.044923413544893265, 0.12366336584091187, -0.06716086715459824, 0.07480385899543762, 0.07371344417333603, -0.0544947013258934, -0.10006721317768097, 0.031211161985993385, 0.09483584761619568, -0.10716550052165985, 0.037382397800683975, 0.07911631464958191, 0.0664011612534523, -0.04227890446782112, -0.005525357089936733, -0.051754388958215714, -0.019209641963243484, 0.02800176665186882, 0.1582336574792862, -0.014748654328286648, -0.03879226744174957, 0.08637560904026031, -0.07133906334638596, -0.20234307646751404, 0.15429028868675232, -0.041050057858228683, -0.03434919938445091, -0.07050011307001114, -0.00590434530749917, -0.0817146748304367, 0.009480145759880543, 0.09468499571084976, -0.15798360109329224, 0.0938568264245987, -0.12564976513385773, 0.12225847691297531, -0.05879686400294304, -0.009753158316016197, 0.017144249752163887, -0.22463089227676392, 0.012826911173760891, -0.09639253467321396, 0.03745274990797043, -0.03810802102088928, 0.1298244446516037, -0.048234421759843826, -0.0856761634349823, 0.04105311632156372, -0.11431598663330078, 0.015351397916674614, 0.08034772425889969, -0.22204133868217468, -0.03430879861116409, 0.026996523141860962, -0.021606815978884697, 0.1362772136926651, 0.05499280244112015, 0.014392168261110783, 0.04802640900015831, -0.02028193324804306, 0.07384272664785385, 0.05127500370144844, 0.009689457714557648, -0.14268328249454498, -0.025705944746732712, -0.030246445909142494, -0.0760497972369194, -0.07678927481174469, 0.05637408420443535, 0.055172525346279144, -0.07003875076770782, 0.04242885857820511, 0.033903393894433975, -0.07285521924495697, -0.039481647312641144, -0.010286493226885796, -0.055919256061315536, 0.07681393623352051, -0.11299233883619308, 0.09938479959964752, 0.0009451944497413933, 0.08302364498376846, 0.06843595206737518, 0.07563113421201706, 0.03479299321770668, -0.018505683168768883, -0.06704503297805786, -0.1021614745259285, -0.0602327436208725, 0.0961703434586525, 0.09933128952980042, -0.0986044630408287, 0.06349274516105652, 0.15706312656402588, 0.018899034708738327, 0.02706117555499077, 0.09731278568506241, 0.05119039863348007, 0.045965105295181274, 0.0254302266985178, -0.03505724295973778, 0.058200664818286896, -0.07239772379398346, 0.002290411153808236, 0.013375743292272091, 0.055442873388528824, 0.01332118920981884, 0.13957247138023376, 0.07970061153173447, -0.007981657050549984, 0.051394812762737274, -0.023304099217057228, -0.04599938914179802, 0.04652721807360649, 0.016602063551545143, 0.05199793726205826, -0.041106171905994415, 0.013007919304072857, 0.07453161478042603, -0.020388808101415634, 0.006722459103912115, 0.14348235726356506, -0.010051192715764046, -0.11801409721374512, -0.00353486486710608, -0.018625112250447273, 0.008444343693554401, 0.04069985821843147, -0.04116854816675186, 0.06542294472455978, 0.06845554709434509, 0.082978256046772, 0.0609419010579586, 0.059933215379714966, 0.05669530853629112, -0.11649420857429504, -0.08923819661140442, 0.0658910796046257, 0.010997357778251171, 0.1689433604478836, 0.03893602266907692, -0.17444992065429688, 0.09725665301084518, -0.0005722158239223063, 0.09689261019229889, -0.06378372013568878, 0.1317301243543625, -0.05068011209368706, 0.053337715566158295, 0.046765878796577454, -0.01301025040447712, -0.012180669233202934, 0.04169056937098503, 0.04106626287102699, 0.0063421293161809444, 0.003552313195541501, -0.13141407072544098, -0.023830750957131386], +lshr:[-0.08261411637067795, -0.1067526713013649, -0.05134831741452217, -0.014372884295880795, 0.011710138991475105, -0.0356464646756649, 0.08909768611192703, -0.05519551411271095, 0.0025207223370671272, 0.04971078783273697, 0.07527875155210495, -0.017075330018997192, 0.1516946703195572, -0.1664668470621109, 0.06517387181520462, 0.14216914772987366, 0.03869162127375603, -0.013619222678244114, 0.015256463550031185, -0.017908591777086258, 0.014284838922321796, -0.01904292404651642, -0.026497505605220795, -0.042525071650743484, 0.02693212404847145, -0.034676443785429, 0.027575917541980743, 0.04807814583182335, -0.0271158367395401, 0.10520059615373611, 0.017827611416578293, -0.13274484872817993, -0.00735881645232439, 0.11975982785224915, -0.0002182896714657545, 0.020258959382772446, -0.0855073630809784, 0.06211007758975029, 0.08004613220691681, -0.08575255423784256, 0.018763933330774307, 0.01928323693573475, -0.01114229392260313, 0.03662509471178055, -0.09084688872098923, -0.04753443971276283, -0.11238217353820801, 0.03633478283882141, -0.07639265805482864, 0.036206066608428955, -0.00570724718272686, 0.004588031675666571, -0.09020091593265533, -0.002311107935383916, -0.03232337906956673, 0.09694729000329971, 0.037020470947027206, 0.01818528212606907, -0.029040809720754623, -0.11390040069818497, -0.05533450096845627, -0.08862245082855225, -0.09190847724676132, -0.01995757780969143, 0.110470712184906, -0.09329263120889664, -0.039329610764980316, -0.037391770631074905, -0.04024503007531166, 0.06312015652656555, -0.15449629724025726, -0.08441140502691269, -0.04571763053536415, 0.0803908035159111, -0.10919079929590225, -0.01654204912483692, -0.03566683828830719, -0.05487621948122978, -0.07133612036705017, 0.10404467582702637, -0.0683952048420906, -0.09965437650680542, 0.014439779333770275, -0.013170020654797554, -0.04005616903305054, 0.03259841725230217, 0.09320127218961716, -0.04662225767970085, -0.11899865418672562, -0.1079283058643341, 0.039786964654922485, -0.09771694242954254, 0.12401125580072403, 0.09942902624607086, -0.03414882346987724, 0.07144869863986969, 0.03529145568609238, -0.0797715038061142, -0.03631913289427757, -0.06437230110168457, 0.05428672581911087, -0.02644346095621586, -0.048503369092941284, -0.0006583547219634056, 0.11048420518636703, -0.15258409082889557, 0.08013806492090225, -0.08889546990394592, 0.06567615270614624, 0.08511186391115189, -0.06926027685403824, 0.15448199212551117, -0.037906236946582794, -0.025074552744627, -0.10216379910707474, -0.036024536937475204, 0.02687329798936844, 0.18828780949115753, -0.03858340159058571, -0.08285406976938248, -0.0689869076013565, -0.15419623255729675, 0.091804638504982, -0.07139717787504196, 0.1196766272187233, 0.1066155806183815, 0.07992251962423325, 0.04264937341213226, -0.0690278708934784, -0.00749173853546381, -0.0019755903631448746, 0.033654145896434784, -0.0910293310880661, -0.02024536207318306, 0.21970424056053162, -0.036111775785684586, -0.03943181782960892, 0.0015951937530189753, 0.02115212380886078, -0.09575790166854858, -0.11459797620773315, 0.009105518460273743, -0.10141278803348541, 0.11669959127902985, -0.09577707946300507, 0.13160675764083862, 0.07102275639772415, -0.08889467269182205, -0.08494645357131958, 0.021131444722414017, -0.006186823360621929, 0.06572582572698593, -0.009529786184430122, -0.06175550818443298, 0.10100924968719482, -0.08905556797981262, 0.06410597264766693, 0.05573796108365059, 0.05326971039175987, 0.13239210844039917, 0.0345015823841095, -0.02512967586517334, 0.09360622614622116, 0.0896841362118721, 0.055936191231012344, -0.059654153883457184, 0.022990860044956207, -0.02331959269940853, -0.039694879204034805, 0.09831854701042175, -0.07909651100635529, -0.02612527646124363, 0.0017104733269661665, 0.11405474692583084, 0.018667299300432205, -0.07823740690946579, -0.0855000764131546, 0.17199330031871796, 0.04359690845012665, -0.04380393400788307, -0.12152430415153503, 0.026622671633958817, -0.04304805025458336, -0.10047420114278793, 0.07392995059490204, 0.040657706558704376, -0.001407252042554319, -0.1752202957868576, -0.10089996457099915, 0.07361256331205368, -0.09836531430482864, 0.06485743820667267, 0.016605457291007042, 0.021836237981915474, -0.06515916436910629, 0.02842257171869278, -0.008104133419692516, -0.09300827980041504, 0.1303737908601761, 0.11783786118030548, -0.03459693491458893, -0.09968598932027817, 0.09831862151622772, -0.0911410003900528, -0.02893448993563652, -0.05824051424860954, -0.06902910768985748, -0.02424255758523941, -0.12326950579881668, 0.036880411207675934, 0.05598719045519829, 0.07231144607067108, 9.690709703136235e-05, 0.04135710000991821, 0.010708887130022049, 0.020574936643242836, -0.08526588976383209, 0.026292597874999046, 0.044465310871601105, 0.11040782183408737, 0.04414539784193039, -0.032906774431467056, -0.03380798175930977, 0.07981648296117783, 0.022333402186632156, 0.05893317610025406, 0.05046737566590309, -0.048028528690338135, -0.062290679663419724, -0.11366607993841171, -0.1082654595375061, -0.0911707803606987, 0.01856466569006443, 0.11309362202882767, 0.02940378151834011, -0.07843603193759918, 0.0613798163831234, 0.07598468661308289, 0.1315407156944275, -0.05989690124988556, 0.09063510596752167, -0.08968564867973328, 0.13095203042030334, 0.03706159442663193, -0.05832512676715851, -0.01666291430592537, 0.05429428443312645, 0.042907100170850754, 0.029483100399374962, 0.03768844157457352, 0.1437978446483612, -0.12293199449777603, 0.08040433377027512, -0.05557367950677872, -0.020312627777457237, -0.11436276137828827, -0.004779832437634468, 0.07134940475225449, 0.009242386557161808, 0.0287918858230114, 0.00893548596650362, -0.028791921213269234, -0.048039890825748444, 0.09431777894496918, -0.10393350571393967, -0.11038807034492493, 0.031162550672888756, -0.10228169709444046, -0.04980671405792236, 0.05662382021546364, -0.033893123269081116, -0.09842271357774734, 0.06111644580960274, -0.01444699801504612, 0.04206431657075882, 0.04509616270661354, 0.05108748748898506, -0.11093872785568237, 0.09105269610881805, 0.020749006420373917, -0.07816031575202942, 0.04061932861804962, -0.04455871134996414, -0.07134351134300232, -0.06326606869697571, 0.13520652055740356, 0.11877874284982681, 0.05865956097841263, -0.01045334991067648, -0.033904068171978, 0.020511601120233536, -0.07550332695245743, -0.05216120183467865, -0.006782507989555597, 0.027840789407491684, 0.11132197082042694, 0.15713292360305786, -0.0575740709900856, -0.12906987965106964, 0.07801935821771622], +mul:[0.14819632470607758, 0.04544922336935997, -0.0715935081243515, -0.07461439818143845, -0.003254031063988805, -0.033307939767837524, 0.07237179577350616, 0.02649303339421749, -0.06598662585020065, 0.05899982899427414, -0.03207241743803024, -0.017286712303757668, 0.0019058536272495985, -0.027208944782614708, 0.05867667496204376, -0.11360199749469757, 0.023398952558636665, 0.044273264706134796, 0.01818520948290825, -0.05013500899076462, -0.131015345454216, -0.02138528972864151, -0.03894900530576706, -0.08173833787441254, 0.029091445729136467, -0.13855379819869995, -0.08509448915719986, 0.057565294206142426, -0.10769259929656982, 0.0863453820347786, 0.01786736212670803, -0.05078672990202904, 0.009022638201713562, 0.12053232640028, -0.000386658008210361, -0.10139960795640945, -0.05365430563688278, 0.0713455006480217, -0.02963443100452423, 0.06875094026327133, 0.07687480002641678, 0.030572721734642982, 0.054617989808321, 0.05233914032578468, -0.0008825474651530385, 0.020927544683218002, -0.06927736848592758, -0.01391411293298006, 0.16425399482250214, 0.01699216291308403, 0.0040606302209198475, 0.003971311263740063, -0.004173278342932463, -0.003172940807417035, -0.033704861998558044, 0.10788428783416748, 0.03324148803949356, -0.053418755531311035, -0.03160995617508888, -0.11627518385648727, 0.011089801788330078, -0.03635517507791519, -0.07939817011356354, -0.01812179572880268, -0.026650065556168556, -0.08534298837184906, -0.027218056842684746, 0.08236175030469894, 0.10380773991346359, 0.04869965463876724, -0.15581436455249786, -0.0932135283946991, 0.0618157833814621, 0.21109531819820404, -0.009773843921720982, 0.023150527849793434, -0.030748700723052025, -0.03226490691304207, -0.05538388341665268, 0.0613856241106987, -0.06577742844820023, -0.0992044135928154, -0.0018612125422805548, 0.16601704061031342, 0.010970166884362698, 0.04371298849582672, 0.10248944163322449, -0.043931711465120316, 0.012051579542458057, -0.11552867293357849, -0.0015079495497047901, -0.09497882425785065, 0.11970829218626022, 0.10059837251901627, 0.188095822930336, 0.07147803902626038, 0.0417177639901638, -0.1202515959739685, -0.03244272246956825, -0.0327192023396492, 0.06078900769352913, -0.04907581955194473, 0.003889965359121561, 0.0001714633108349517, -0.03580769523978233, 0.08220665901899338, -0.04725199192762375, -0.05503998324275017, 0.09248015284538269, 0.08940636366605759, -0.04988085851073265, 0.07743459194898605, 0.021530337631702423, 0.05443968623876572, -0.08609113842248917, -0.015347220934927464, 0.06027563661336899, 0.035356562584638596, -0.05552747845649719, 0.05713485926389694, 0.09049489349126816, -0.18331623077392578, 0.0885276049375534, -0.11558271944522858, 0.12140732258558273, -0.05440320074558258, 0.08000070601701736, -0.022094296291470528, -0.09329010546207428, -0.007963630370795727, 0.08361899852752686, 0.032802484929561615, -0.10541854053735733, 0.01508762314915657, -0.09047861397266388, -0.08366561681032181, -0.03914574533700943, 0.0005924530560150743, 0.025962507352232933, -0.10073493421077728, -0.11707907915115356, 0.05919274687767029, -0.016824766993522644, 0.10331220924854279, -0.10411102324724197, 0.13025937974452972, 0.07320340722799301, -0.07637336850166321, 0.06262323260307312, 0.034444279968738556, 0.06616269052028656, 0.06009575352072716, -0.009096374735236168, 0.09332198649644852, 0.10803013294935226, -0.08716479688882828, 0.06675563007593155, 0.01305712666362524, 0.05270836502313614, 0.016171758994460106, 0.12524603307247162, -0.0343845896422863, -0.03710757568478584, 0.11105368286371231, 0.019414449110627174, 0.13385769724845886, 0.05534863844513893, -0.10714232176542282, -0.042395658791065216, 0.18581163883209229, -0.07719331234693527, 0.12405740469694138, 0.014215204864740372, 0.07765790075063705, 0.03826133906841278, 0.050553884357213974, 0.05441794916987419, 0.14370888471603394, 0.01298289280384779, -0.03113354556262493, 0.06215197965502739, 0.05666811391711235, -0.06871262937784195, -0.09603748470544815, 0.13394388556480408, -0.01077626645565033, 0.00047350197564810514, 0.02298980951309204, -0.11395597457885742, 0.08805204927921295, -0.09921486675739288, 0.017048927024006844, 0.05216474458575249, 0.0360671766102314, -0.06145712733268738, 0.02846185676753521, -0.054138146340847015, 0.10950781404972076, 0.09041161835193634, 0.07853800803422928, 0.019153233617544174, -0.08205515891313553, 0.10426360368728638, -0.08633673191070557, -0.13403812050819397, -0.03135232254862785, -0.0033989506773650646, 0.15992489457130432, -0.05219035968184471, -0.02572512812912464, 0.05674046650528908, 0.023461701348423958, -0.0289642121642828, 0.04199829697608948, 0.03664448484778404, -0.02153925411403179, 0.009366006590425968, 0.026146482676267624, 0.14226101338863373, 0.11056889593601227, 0.043355558067560196, -0.038468245416879654, -0.0360373817384243, 0.0791030302643776, 0.06945574283599854, 0.02627812884747982, 0.034195877611637115, -0.0621483214199543, -0.055435944348573685, 0.04216824844479561, -0.09521989524364471, 0.09968214482069016, 0.01679220423102379, 0.027367234230041504, 0.05253632739186287, 0.02523116208612919, -0.1192987933754921, -0.012488956563174725, 0.13629251718521118, -0.06359142065048218, 0.09975968301296234, -0.11165185272693634, -0.02807117998600006, 0.041830047965049744, 0.07653868198394775, -0.05921425297856331, 0.05789804086089134, -0.11045244336128235, 0.038459815084934235, 0.12456951290369034, -0.006488259881734848, -0.09575630724430084, 0.09310494363307953, -0.06359146535396576, -0.029766421765089035, 0.021408945322036743, 0.04698814079165459, 0.07382990419864655, -0.14434784650802612, 0.04807910695672035, 0.05491327866911888, -0.026169296354055405, -0.0560007244348526, 0.14303800463676453, -0.0011250147363170981, -0.11951708048582077, 0.0023406329564750195, 0.09626741707324982, -0.04370976984500885, 0.05882350355386734, -0.0331268236041069, 0.11445879191160202, 0.06130547448992729, 0.10902448743581772, -0.04685256630182266, 0.053912173956632614, 0.11150219291448593, -0.11363927274942398, 0.07561640441417694, 0.05484043061733246, -0.12020940333604813, -0.05320753902196884, -0.030587632209062576, -0.06583157181739807, -0.10200623422861099, 0.12558139860630035, 0.11357832700014114, 0.02357633039355278, 0.119142547249794, 0.005754771642386913, 0.05824846774339676, 0.05668878182768822, 0.0907905176281929, 0.005767264869064093, -0.01136094518005848, -0.016676580533385277, -0.13462740182876587, 0.14116960763931274, 0.05312812700867653, 0.07103827595710754], +or:[-0.018048424273729324, 0.06718926876783371, 0.051202595233917236, -0.1121353954076767, -0.04600503295660019, -0.03149754926562309, -0.08189136534929276, -0.024940524250268936, 0.032290019094944, -0.08042079210281372, 0.13051491975784302, -0.02178124710917473, 0.08108949661254883, 0.03256614878773689, 0.058460596948862076, 0.10381101071834564, -0.020492099225521088, 0.03748687356710434, 0.016820691525936127, 0.1451304405927658, -0.047498662024736404, -0.018806610256433487, -0.07140742987394333, -0.04305436089634895, 0.0266104843467474, -0.03993085399270058, 0.04587360471487045, 0.056151293218135834, -0.09701361507177353, 0.033472854644060135, 0.019536826759576797, -0.11413293331861496, -0.03929539769887924, 0.11884380877017975, 1.85257158591412e-05, -0.09147093445062637, -0.05757782980799675, 0.07520741969347, 0.17197290062904358, 0.0951806977391243, -0.026092631742358208, 0.07158004492521286, 0.05897583067417145, 0.038726091384887695, 0.05900726839900017, -0.13287575542926788, -0.06678566336631775, -0.020061083137989044, -0.12816298007965088, -0.04892236366868019, -0.026056481525301933, 0.00500783184543252, -0.002799527021124959, -0.020375635474920273, -0.03292751684784889, -0.02370629645884037, 0.021408239379525185, -0.093888059258461, -0.008380592800676823, -0.11438620835542679, -0.03188309445977211, -0.04965033382177353, -0.07518130540847778, -0.10082951188087463, 0.12649846076965332, -0.06891540437936783, -0.013989157043397427, -0.008556540124118328, 0.004033465404063463, -0.04366977885365486, -0.021355822682380676, -0.07434181869029999, 0.1784725785255432, 0.06307775527238846, -0.016735389828681946, 0.01669953763484955, -0.03396616131067276, -0.08782337605953217, -0.039145369082689285, 0.0207530464977026, -0.07397888600826263, -0.09893502295017242, 0.003094012849032879, -0.015455756336450577, 0.03148334473371506, 0.03867117688059807, -0.01855657435953617, 0.0397629551589489, -0.012377594597637653, -0.10696394741535187, -0.09788000583648682, -0.011557629331946373, 0.11878117173910141, 0.05382775887846947, -0.07360318303108215, 0.07036937773227692, 0.051905352622270584, -0.014349505305290222, -0.02529609017074108, -0.016745800152420998, 0.07890626043081284, 0.03556009382009506, 0.040075983852148056, 0.0005543232546187937, 0.1137324720621109, 0.15334707498550415, -0.08545070886611938, -0.03231913223862648, 0.002022805390879512, -0.07868131250143051, 0.01650279387831688, 0.06055062636733055, 0.11158384382724762, -0.019711531698703766, -0.0888553187251091, -0.09716051071882248, -0.014398339204490185, 0.21442830562591553, -0.0529354102909565, -0.05104830116033554, 0.06499608606100082, -0.1432984620332718, 0.08521021902561188, -0.0664294958114624, 0.12076456099748611, -0.06219744682312012, 0.0521981380879879, -0.041293222457170486, 0.11089739948511124, -0.00754899438470602, -0.04482610523700714, -0.005058206617832184, -0.0393698588013649, 0.015998510643839836, 0.04112798348069191, -0.027707818895578384, -0.01645444519817829, 0.001488332636654377, 0.024608444422483444, -0.030258186161518097, -0.1105763241648674, -0.15942294895648956, -0.04192810133099556, -0.1415736824274063, -0.043418705463409424, 0.15288551151752472, 0.06981734186410904, -0.0711776614189148, 0.1003841981291771, 0.029037872329354286, -0.10278232395648956, 0.05026810243725777, 0.08662416785955429, 0.07787224650382996, 0.07615486532449722, -0.04821739345788956, 0.05155346542596817, -0.053449828177690506, -0.009766608476638794, 0.02214067056775093, 0.2648632824420929, -0.06618604063987732, -0.1208593100309372, -0.049435243010520935, -0.0634695366024971, 0.02847876399755478, -0.15652896463871002, 0.024826139211654663, -0.03764188289642334, 0.2120755910873413, -0.05581023171544075, -0.07055896520614624, 0.04950777441263199, 0.035679057240486145, -0.14535892009735107, 0.07684938609600067, -0.15100853145122528, 0.140898197889328, 0.03077753819525242, -0.02687240019440651, 0.02794092893600464, -0.22209207713603973, -0.10809212177991867, -0.1031939685344696, -0.0022087576799094677, 0.03323063999414444, 0.0515979640185833, 0.1329880803823471, -0.08601470291614532, 0.06579366326332092, -0.09373819082975388, 0.01919671520590782, 0.07026643306016922, 0.07759401947259903, -0.03757123276591301, 0.026897268369793892, -0.025129543617367744, -0.046522509306669235, 0.08957525342702866, 0.034461166709661484, 0.02278880402445793, -0.06367757171392441, 0.07186690717935562, -0.07465818524360657, -0.09120981395244598, -0.13101284205913544, -0.12688444554805756, -0.0108082490041852, -0.09687594324350357, 0.044869210571050644, 0.09693462401628494, 0.08509404957294464, 0.10087675601243973, 0.04091484099626541, -0.04043533280491829, -0.017044050619006157, -0.01347864419221878, 0.00853643286973238, -0.15769046545028687, 0.08029066771268845, 0.03602986037731171, -0.04212959483265877, 0.09063736349344254, 0.1173211932182312, 0.06754952669143677, 0.05364934727549553, 0.033687032759189606, -0.06165527552366257, -0.0556911937892437, 0.00944769848138094, -0.08586130291223526, 0.00497445510700345, -0.031248288229107857, 0.03378879651427269, 0.07214187830686569, 0.003152143908664584, 0.06140279769897461, 0.03169487416744232, 0.08443070948123932, -0.07153324782848358, 0.03992479294538498, 0.014877007342875004, 0.05915983021259308, 0.052087727934122086, 0.08516602963209152, -0.054791562259197235, 0.05571892112493515, -0.003863911610096693, 0.01330520585179329, 0.07028401643037796, 0.0020740756299346685, -0.009929699823260307, 0.06496511399745941, -0.03628695011138916, -0.06507384032011032, 0.15080414712429047, 0.016619445756077766, -0.1132655069231987, -0.13397827744483948, 0.023627834394574165, 0.07419133931398392, 0.06774846464395523, -0.01362224668264389, 0.13978245854377747, 0.017819954082369804, -0.019641367718577385, 0.02564423717558384, -0.018331477418541908, -0.020653011277318, 0.05384121090173721, -0.04431695118546486, 0.07892667502164841, 0.07032378017902374, 0.04869360104203224, 0.06239234656095505, 0.04539094865322113, 0.0639885738492012, -0.10156267136335373, 0.13576740026474, 0.05344270169734955, 0.03251153230667114, 0.009007005952298641, 0.021844662725925446, 0.011070181615650654, -0.019465221092104912, -0.08164310455322266, -0.0061438800767064095, 0.05063094571232796, 0.11984508484601974, -0.02666950598359108, 0.049217790365219116, -0.020224522799253464, -0.08042677491903305, 0.04369666054844856, 0.13254888355731964, -0.05053607001900673, 0.025053851306438446, -0.0848693773150444, -0.11029277741909027, 0.05294802412390709], +phi:[0.09582628309726715, -0.006449727341532707, 0.09263445436954498, 0.007425384595990181, 0.0677725300192833, 0.03329375758767128, -0.009682753123342991, 0.007688599638640881, 0.09633653610944748, -0.04281360283493996, -0.023627830669283867, 0.10266990959644318, -0.018695473670959473, -0.02367183193564415, -0.11724763363599777, 0.0381852351129055, 0.1358354538679123, -0.032678551971912384, 0.11409890651702881, -0.012914511375129223, 0.014791003428399563, -0.04232456162571907, -0.014751216396689415, -0.038179632276296616, 0.015595893375575542, -0.07569131255149841, 0.040098048746585846, 0.05118530988693237, 0.0018456404795870185, 0.09407774358987808, -0.16169142723083496, 0.01042910572141409, -0.06875962018966675, 0.05270252004265785, -0.0002512091596145183, -0.07422713935375214, 0.11030422151088715, 0.030213046818971634, 0.005251084454357624, 0.0383690781891346, -0.004210675600916147, 0.06641551107168198, -0.10195906460285187, 0.037253789603710175, 0.03036867082118988, -0.05586114153265953, -0.07273958623409271, -0.10742273926734924, -0.15843595564365387, 0.12925615906715393, 0.05331713333725929, -0.101410873234272, 0.0034334242809563875, 0.07922609150409698, 0.05299869924783707, 0.021340999752283096, -0.1256936490535736, -0.014790618792176247, -0.08785691112279892, 0.153411865234375, 0.14111533761024475, -0.09603527188301086, 0.003098837099969387, -0.04321959614753723, 0.11202412098646164, 0.07096828520298004, 0.11763200163841248, 0.095625139772892, -0.09361367672681808, 0.13117554783821106, -0.04525145888328552, -0.0019070227863267064, -0.04126283526420593, 0.014810855500400066, -0.0625343918800354, -0.02382240630686283, 0.13731703162193298, -0.16246266663074493, -0.03861753270030022, -0.12264451384544373, -0.03156774118542671, -0.005734866484999657, -0.023798750713467598, 0.05952529236674309, 0.12832902371883392, -0.06079111248254776, -0.038085732609033585, -0.012069245800375938, -0.014841173775494099, -0.0004456227761693299, -0.00510864844545722, -0.12317777425050735, 0.06215931102633476, 0.018279995769262314, -0.09908481687307358, -0.013316075317561626, 0.03670749068260193, 0.07165245711803436, -0.038384467363357544, 0.033597324043512344, 0.049475155770778656, 0.10674633830785751, -0.03543105721473694, -0.15720267593860626, 0.05553899705410004, -0.07326305657625198, 0.048834916204214096, 0.049960557371377945, 0.07046908885240555, 0.11987946182489395, -0.175628200173378, -0.0054161143489181995, -0.09948113560676575, -0.11868973076343536, -0.07327534258365631, 0.09568670392036438, -0.015244637615978718, 0.007337559014558792, -0.0775197297334671, -0.03475220128893852, -0.018261201679706573, -0.04766888543963432, -0.041294198483228683, -0.04847562685608864, 0.07610315084457397, -0.03824988752603531, 0.0008407898130826652, 0.043985337018966675, 0.02298820950090885, 0.09633193165063858, -0.011706046760082245, -0.08606492727994919, -0.12047918140888214, -0.08637014776468277, -0.05374250188469887, -0.1419588178396225, -0.11119282245635986, -0.08355599641799927, 0.01825643889605999, 0.03322130814194679, -0.12194225192070007, 0.007240484934300184, -0.05897432938218117, -0.034671999514102936, 0.12962046265602112, 0.046864770352840424, -0.050751905888319016, 0.13193218410015106, 0.04300522804260254, 0.005008682608604431, -0.08666802942752838, 0.07194587588310242, 0.18549612164497375, 0.06322335451841354, -0.08304097503423691, -0.04685205966234207, 0.10873758792877197, -0.052990783005952835, 0.1324596405029297, -0.15684004127979279, -0.1478518396615982, -0.037156615406274796, 0.10466872155666351, -0.05244977027177811, 0.06351818144321442, 0.05943022295832634, -0.041764263063669205, -0.036703355610370636, 0.005423838272690773, -0.11066372692584991, -0.11662662774324417, -0.03779297322034836, 0.0024712400045245886, 0.12679451704025269, -0.0654221847653389, -0.03649690002202988, 0.0005397509085014462, 0.07495906949043274, -0.04622042551636696, -0.12498586624860764, -0.03127919137477875, 0.03256183862686157, 0.15035991370677948, 0.03426375985145569, 0.02762678638100624, -0.028839323669672012, 0.03751629218459129, -0.05704127997159958, -0.10353954881429672, 0.05181238427758217, 0.07749307155609131, 0.1490343064069748, -0.026365887373685837, 0.13727828860282898, -0.0513806976377964, -0.013561422936618328, -0.009817917831242085, 0.0780610740184784, 0.025747474282979965, 0.013444660231471062, 0.11433794349431992, 0.0014521566918119788, -0.03275427594780922, 0.030895980075001717, -0.07935485243797302, -0.07799041271209717, 0.1582922339439392, 0.04119321331381798, -0.01133828703314066, -0.0718972235918045, 0.06503728032112122, -0.06820904463529587, -0.05074252560734749, -0.1543371081352234, -0.03250160068273544, -0.043468229472637177, 0.05283983051776886, 0.026628049090504646, -0.07215859740972519, 0.042962752282619476, -0.030328592285513878, -0.1817176192998886, 0.01982530951499939, -0.11551456153392792, 0.07027910649776459, -0.09248100966215134, 0.01281744334846735, -0.18177784979343414, 0.03858185186982155, -0.052111897617578506, 0.07390981912612915, 0.00561283715069294, 0.10342137515544891, -0.048099618405103683, -0.12535986304283142, 0.06281670928001404, -0.08893822133541107, -0.11613135784864426, -0.17982850968837738, 0.05361132696270943, 0.030687972903251648, -0.09653211385011673, 0.15436658263206482, -0.08538564294576645, 0.018774831667542458, 0.04397738724946976, -0.04225963354110718, -0.13458873331546783, 0.009106475859880447, 0.005211711395531893, 0.0012868954800069332, 0.10821827501058578, -0.02178904227912426, 0.10684361308813095, 0.1404910683631897, -0.11324042081832886, -0.039238691329956055, -0.012608113698661327, -0.03804364055395126, -0.018784351646900177, -0.10376531630754471, -0.06004859879612923, -0.013580158352851868, 0.003699100809171796, 0.057311832904815674, 0.03146002069115639, -0.0641055628657341, -0.01760052517056465, -0.11224202811717987, 0.010211162269115448, -0.02974037267267704, -0.10728882253170013, 0.015153919346630573, -0.058543022722005844, 0.0848873034119606, -0.1665560007095337, 0.0014348741387948394, 0.12605944275856018, -0.08299567550420761, -0.00481057446449995, -0.07536797970533371, -0.05688665807247162, -0.05035283416509628, 0.11333854496479034, 0.007325462996959686, 0.012775789946317673, 0.06658147275447845, 0.19256657361984253, -0.04086092486977577, 0.08922525495290756, 0.011605306528508663, -0.12863053381443024, -0.12311752140522003, -0.04373917356133461, -0.01667584292590618, 0.1048797070980072, -0.060244470834732056, -0.01796426624059677, 0.028271563351154327, -0.10305915027856827], +pointer:[0.012226720340549946, 0.12341221421957016, 0.1233774796128273, 0.07566431909799576, -0.05455403029918671, 0.0024287982378154993, -0.08516289293766022, 0.061271946877241135, 0.1159808486700058, -0.006625560112297535, 0.02000276744365692, -0.08057848364114761, -0.0249500535428524, 0.01190759614109993, -0.09124532341957092, -0.025838591158390045, -0.08105768263339996, 0.04302992299199104, -0.051922593265771866, -0.12114621698856354, 0.05891602113842964, -0.09818311780691147, 0.04782218858599663, 0.06355302035808563, -0.09310904145240784, -0.02017262578010559, 0.08156408369541168, -0.01461813971400261, 0.06522772461175919, 0.035458825528621674, -0.08995914459228516, 0.0929168164730072, 0.0784962996840477, -0.0411422960460186, -0.08320087939500809, -0.030241452157497406, 0.08139100670814514, -0.0789104700088501, 0.031163979321718216, -0.06389877200126648, 0.03149138763546944, -0.024977518245577812, -0.13208556175231934, 0.10389014333486557, 0.03762921318411827, 0.023892123252153397, -0.03177918493747711, -0.0066460068337619305, -0.11744231730699539, 0.07081340253353119, 0.0843283012509346, 0.07014695554971695, -0.086094431579113, 0.05555365979671478, 0.10392174124717712, 0.007665770594030619, -0.08435507863759995, 0.0863092690706253, -0.12533000111579895, 0.07662740349769592, 0.056498199701309204, 0.04953918978571892, 0.05437246710062027, 0.09746962785720825, 0.11456920951604843, 0.03927724435925484, 0.0726250633597374, 0.12111445516347885, -0.0638456717133522, 0.0925791934132576, 0.06638079136610031, -0.10100353509187698, 0.03587339073419571, -0.07148309051990509, -0.047522611916065216, 0.001441812957637012, 0.17820057272911072, 0.02444186992943287, 0.05885917693376541, -0.08239990472793579, 0.054822638630867004, 0.0905357152223587, 0.06679420918226242, 0.030517475679516792, 0.02152654528617859, 0.019888171926140785, -0.09115081280469894, 0.0490126870572567, -0.04859773814678192, 0.08774758875370026, 0.08043532073497772, -0.05363163352012634, -0.038234010338783264, -0.08284974843263626, -0.03676176443696022, -0.07433360815048218, -0.032827846705913544, -0.04523755609989166, 0.08199156075716019, 0.03137059509754181, -0.005883939564228058, 0.04277391731739044, 0.12102969735860825, -0.11091941595077515, -0.01736840233206749, -0.03655889257788658, 0.004443158395588398, 0.0136384516954422, -0.05432628467679024, -0.1010461077094078, -0.0897691622376442, 0.011259649880230427, -0.04276043549180031, -0.08705542981624603, 0.04337377846240997, 0.04234745725989342, 0.06553348898887634, -0.06375826150178909, 0.032221563160419464, -0.05166364833712578, -0.050484638661146164, -0.06830175220966339, -0.00032394641311839223, 0.03703230246901512, 0.022492067888379097, 0.046411167830228806, -0.0843287780880928, 0.11366262286901474, 0.08107146620750427, 0.07366928458213806, 0.04371994733810425, -0.12061018496751785, 0.059840623289346695, -0.14498601853847504, 0.012913688085973263, -0.056198906153440475, -0.16294139623641968, 0.08066634833812714, 0.05984706059098244, 0.09462052583694458, 0.014794169925153255, 0.026540685445070267, 0.00543869286775589, 0.012675545178353786, 0.07572825253009796, 0.00426133768633008, 0.0021864697337150574, 0.151223823428154, 0.006966301240026951, -0.07013357430696487, 0.01850282959640026, -0.005789414048194885, 0.12370704859495163, -0.03012247383594513, 0.11607503145933151, -0.10266295820474625, 0.12147516012191772, -0.03244033083319664, 0.08302579075098038, -0.031367816030979156, -0.04368642345070839, 0.04251949116587639, 0.06836510449647903, -0.02153191715478897, 0.11353228986263275, 0.02157723903656006, -0.1230199858546257, -0.09534767270088196, 0.06234128400683403, -0.04784112796187401, 0.03628326207399368, 0.036608655005693436, 0.06503311544656754, 0.03886650502681732, 0.05298931896686554, -0.007416959851980209, 0.039848897606134415, 0.008312827907502651, -0.10231546312570572, -0.1331472396850586, 0.0006421288126148283, -0.012863082811236382, 0.07637768983840942, 0.07293127477169037, -0.031050080433487892, 0.005362617317587137, 0.1110517755150795, -0.022121645510196686, 0.044578272849321365, -0.03332578390836716, -0.058455031365156174, 0.0907738134264946, -0.09608681499958038, 0.0791642963886261, 0.02119770273566246, -0.08029387146234512, 0.04814588651061058, 0.006616446189582348, 0.05419567599892616, 0.07909702509641647, 0.05976094678044319, -0.11357422918081284, -0.08144290000200272, -0.012743751518428326, -0.033413976430892944, -0.0011722283670678735, 0.09883906692266464, -0.07926316559314728, 0.06890343874692917, -0.05399952083826065, -0.04914269223809242, -0.10530110448598862, 0.004258669912815094, -0.10449165850877762, -0.11177781224250793, -0.12044154852628708, 0.02677871473133564, -0.06869058310985565, 0.035816825926303864, -0.03276291489601135, -0.07452058792114258, 0.06087077036499977, -0.01967257633805275, -0.0668472945690155, 0.12968860566616058, -0.02900436893105507, 0.12630338966846466, -0.10673954337835312, 0.09433073550462723, -0.09543207287788391, 0.1386023610830307, 0.03423646092414856, 0.04878339171409607, -0.02373162843286991, -0.0653683990240097, 0.011228913441300392, -0.14778119325637817, -0.1363680064678192, -0.0358443483710289, 0.0003525631327647716, -0.11058737337589264, -0.05320083349943161, 0.032959241420030594, -0.016233718022704124, -0.02609136328101158, 0.12940280139446259, -0.12447886914014816, -0.0922519639134407, -0.06879914551973343, 0.12907296419143677, -0.05985056981444359, 0.044921986758708954, -0.014501137658953667, 0.15130330622196198, 0.10312519967556, -0.06590423732995987, -0.11372145265340805, -0.05773540213704109, 0.0018781484104692936, 0.01238564494997263, -0.04313107952475548, -0.10755269229412079, 0.05841584503650665, -0.09494657814502716, 0.10736896097660065, 0.07910487055778503, -0.0891936868429184, -0.0960121750831604, -0.14578455686569214, 0.037902455776929855, -0.1169992983341217, -0.11656134575605392, -0.030440738424658775, -0.08655493706464767, -0.025457678362727165, -0.10043385624885559, -0.039527762681245804, 0.02587081864476204, -0.04876168072223663, -0.05234038457274437, 0.02285093069076538, -0.10658328235149384, -0.08874586969614029, -0.007720000110566616, 0.027530169114470482, 0.07893388718366623, -0.003881300101056695, 0.08585195988416672, 0.0020690567325800657, -0.07390972971916199, -0.07820482552051544, -0.0194094255566597, -0.08773056417703629, -0.09086013585329056, 0.01910756155848503, 0.05699625238776207, -0.09139546006917953, 0.050345130264759064, 0.060668591409921646, -0.14926066994667053], +pointerTy:[-0.05047248303890228, -0.08166636526584625, -0.05660942196846008, 0.05757133290171623, -0.09172610938549042, 0.11613372713327408, -0.07368700206279755, -0.11363212764263153, -0.08528231829404831, -0.0031793408561497927, 0.08366662263870239, 0.004590996075421572, -0.0026792765129357576, 0.02453894354403019, 0.050528641790151596, -0.04434991255402565, 0.08233921229839325, -0.019111623987555504, 0.04771934449672699, 0.029128745198249817, 0.0969843789935112, 0.0748879611492157, 0.05501507967710495, 0.1090361624956131, -0.08757787942886353, 0.09325642138719559, -0.07923366874456406, -0.11255299299955368, 0.054146114736795425, -0.015948953106999397, -0.05563688650727272, 0.04600279778242111, -0.04065904766321182, -0.09583824872970581, 0.12133533507585526, -0.06302645057439804, 0.02921956032514572, 0.10012145340442657, -0.010121911764144897, 0.008308859542012215, -0.0274822860956192, -0.024490300565958023, -0.054960474371910095, -0.09479960799217224, 0.034960635006427765, 0.017752597108483315, -0.019248325377702713, -0.05356794223189354, 0.005998244509100914, 0.05521531403064728, 0.0967089906334877, -0.07075867056846619, 0.10626430064439774, 0.116888128221035, 0.10358875244855881, -0.006972549017518759, 0.048944830894470215, 0.07497664541006088, 0.09348675608634949, 0.04836812615394592, 0.05853115767240524, 0.08803829550743103, -0.08287479728460312, 0.0912780687212944, 0.029533959925174713, 0.06677161902189255, 0.08456446975469589, 0.03076084330677986, 0.10151194036006927, -0.1155138611793518, 0.05476529523730278, -0.03871433436870575, -0.003212873823940754, -0.04319796338677406, 0.020295269787311554, -0.11098470538854599, 0.0758613720536232, 0.03156675398349762, 0.096694216132164, -0.036643266677856445, -0.0977742001414299, 0.1316744089126587, -0.06613950431346893, -0.04865515977144241, -0.004755774978548288, -0.02073267661035061, 0.10081551969051361, -0.12131018191576004, 0.05569940060377121, -0.07168827950954437, 0.09169783443212509, 0.09161625802516937, -0.09780219197273254, 0.029795924201607704, -0.007910544984042645, -0.11619788408279419, 0.05868283286690712, 0.03515562415122986, 0.057543374598026276, -0.026285072788596153, 0.01946433074772358, 0.06253368407487869, -0.11441794782876968, 0.10109980404376984, -0.024780290201306343, 0.05494154617190361, 0.049708105623722076, 0.0013000224716961384, -0.08417771011590958, 0.005042464938014746, 0.10140374302864075, -0.034926705062389374, -0.010730638168752193, 0.1065521091222763, 0.09627843648195267, 0.035939428955316544, -0.11195390671491623, 0.0067294868640601635, 0.08975488692522049, 0.029769716784358025, 0.04419928789138794, 0.030801454558968544, -0.10434401035308838, 0.10286898165941238, -0.03854672610759735, 0.11309092491865158, -0.12073410302400589, 0.09411504864692688, -0.04313896596431732, 0.11920412629842758, -0.10504837334156036, 0.11211711168289185, 0.08184704184532166, 0.11230061203241348, 0.004893383011221886, 0.0016234806971624494, -0.08570439368486404, 0.10569954663515091, 0.09734616428613663, -0.11835559457540512, 0.09473120421171188, 0.007419082336127758, 0.05218619853258133, -0.04619033634662628, 0.04274602606892586, 0.03434288874268532, 0.12078355997800827, -0.12038733810186386, -0.01393170841038227, 0.09773291647434235, -0.0188797265291214, -0.0957460030913353, 0.0063912817277014256, -0.11991685628890991, -0.023085320368409157, 0.09977702051401138, -0.11997703462839127, -0.047522835433483124, -0.10101239383220673, -0.09473616629838943, -0.011740605346858501, 0.11238361895084381, 0.05128926411271095, -0.019823947921395302, 0.03963747248053551, -0.0037721702829003334, 0.03881184756755829, 0.027240516617894173, -0.11570120602846146, -0.02733009122312069, 0.09443432092666626, 0.07777952402830124, 0.04321420192718506, -0.08295468986034393, 0.01044729258865118, -0.11764005571603775, 0.06240738928318024, -0.08987992256879807, 0.07856577634811401, 0.05161453038454056, -0.05367708206176758, 0.006217589136213064, -0.06675280630588531, 0.06769207119941711, 0.024129366502165794, 0.08329060673713684, -0.0503726452589035, -0.020764557644724846, 0.11425837129354477, -0.07378431409597397, -0.007848135195672512, -0.1355908215045929, -0.09741534292697906, 0.07175461202859879, 0.12309101969003677, 0.09597543627023697, 0.07858169078826904, 0.021801140159368515, 0.10159508883953094, 0.08386152982711792, -0.1352711021900177, 0.0563841350376606, -0.023730942979454994, 0.0025883002672344446, -0.00820960197597742, 0.02130579948425293, -0.07489500939846039, -0.07313872128725052, 0.12934249639511108, -0.03556213155388832, -0.09528250247240067, 0.024795688688755035, -0.022564200684428215, -0.06830482184886932, -0.11302945762872696, 0.06111827865242958, 0.08196548372507095, 0.11417419463396072, -0.021450571715831757, -0.07483715564012527, 0.1312219202518463, 0.10583991557359695, -0.02468227408826351, -0.07362063974142075, -0.05833463370800018, 0.12313514947891235, 0.10497003048658371, 0.08374163508415222, 0.0911383256316185, 0.11315541714429855, 0.07435382157564163, -0.03433826565742493, 0.027141308411955833, -0.009869897738099098, -0.04390306398272514, 0.0007006474188528955, 0.10534199327230453, 0.0808253064751625, -0.032249752432107925, 0.019623829051852226, 0.0782095268368721, 0.11015800386667252, -0.09873861074447632, 0.11140887439250946, 0.014000427909195423, 0.03127849102020264, -0.08667866140604019, 0.035086795687675476, 0.11443234980106354, 0.005755462683737278, 0.013666560873389244, 0.04974772408604622, -0.08739200234413147, -0.1023249626159668, -0.10193480551242828, -0.008834628388285637, 0.0959482491016388, -0.10854902118444443, 0.0960434302687645, -0.04543603956699371, 0.1042533591389656, 0.08575439453125, -0.10193490982055664, -0.11201921105384827, 0.019091570749878883, 0.006600472144782543, 0.08924727886915207, 0.0776924341917038, 0.11670536547899246, 0.11508310586214066, 0.10619572550058365, -0.001282551558688283, -0.12456677109003067, -0.11002928018569946, 0.117955781519413, 0.10992550104856491, -0.03095722384750843, 0.05211776867508888, -0.031923189759254456, -0.1047976166009903, 0.03567533195018768, 0.00043684002594091, 0.11271829158067703, 0.006325234659016132, 0.025935819372534752, 0.10241668671369553, -0.06884507089853287, -0.06876545399427414, -0.019256867468357086, -0.10622373968362808, -0.10355605185031891, 0.06895535439252853, -0.011421478353440762, -0.031004004180431366, 0.01971612498164177, 0.007082837633788586, -0.04940147325396538, 0.05915796011686325, 0.11454690992832184, -0.04702836647629738], +ptrtoint:[0.10001032054424286, -0.11303112655878067, -0.08277293294668198, 0.12224550545215607, 0.0386866070330143, -0.08272220939397812, 0.06430158019065857, -9.771229815669358e-05, 0.011451289057731628, -0.05848907306790352, -0.09561274945735931, -0.02031106874346733, -0.0714322105050087, -0.05743097886443138, 0.14819371700286865, 0.08183682709932327, -0.014566346071660519, -0.13997597992420197, 0.010590150952339172, -0.0824645385146141, -0.026885708793997765, -0.006490110419690609, -0.01294538751244545, -0.0399085134267807, 0.029674896970391273, 0.02612108178436756, -0.12084362655878067, 0.03494971618056297, -0.02733519673347473, 0.017350565642118454, 0.01496551651507616, -0.06098080053925514, 0.09464254230260849, 0.09814215451478958, -5.944680015090853e-05, -0.004158987198024988, -0.10312153398990631, 0.06658482551574707, -0.0013692087959498167, 1.5134372006286867e-05, -0.1204007938504219, -0.024351760745048523, 0.08193081617355347, -0.04265935346484184, -0.07600501924753189, 0.037695519626140594, -0.013187997974455357, 0.112720787525177, 0.0633944496512413, -0.11944983154535294, -0.09077145159244537, 0.1044408306479454, -0.08415789902210236, -0.020294010639190674, -0.11335290223360062, 0.09651000797748566, -0.09247010946273804, 0.06633864343166351, -0.07706081122159958, -0.11247163265943527, -0.03614163026213646, -0.04030399024486542, -0.09735235571861267, 0.013665853999555111, -0.06472006440162659, -0.09321149438619614, -0.006810305640101433, -0.07729145884513855, -0.03325555473566055, 0.09818010032176971, -0.03645046055316925, -0.0919826477766037, -0.040465280413627625, 0.07954354584217072, -0.0873376801609993, -0.017281772568821907, -0.04219274967908859, 0.06704354286193848, 0.04613307863473892, 0.20576024055480957, 0.029446694999933243, -0.08565212786197662, -0.0745309367775917, 0.041259489953517914, -0.006128441076725721, 0.018920229747891426, -0.06190767139196396, -0.050182294100522995, -0.06805796176195145, -0.10662726312875748, 0.00644321832805872, -0.11294008791446686, 0.09713942557573318, -0.052328627556562424, -0.12851949036121368, 0.0688406378030777, -0.029970576986670494, 0.02494869939982891, 0.1277502179145813, -0.15932263433933258, 0.007442878093570471, -0.02779364213347435, 0.09938164800405502, 0.0002503747818991542, 0.08740614354610443, -0.03265444189310074, 0.08259028941392899, 0.07898974418640137, 0.05372670665383339, 0.05723344162106514, 0.08034702390432358, -0.08019467443227768, 0.06293053925037384, 0.015197287313640118, -0.0745004341006279, -0.0694514662027359, 0.06622275710105896, 0.09928791970014572, -0.07115373760461807, 0.027303090319037437, -0.08859498053789139, -0.05787460133433342, 0.12221700698137283, -0.06188497692346573, 0.11864986270666122, -0.005128841381520033, -0.13585931062698364, -0.04499530419707298, -0.0996592566370964, -0.007653144653886557, 0.10489162802696228, 0.031918905675411224, -0.065874844789505, -0.017465980723500252, 0.01121913269162178, -0.05770041048526764, -0.09939407557249069, 0.002153808018192649, 0.039030469954013824, -0.10603557527065277, -0.10964363813400269, -0.07344245910644531, 0.05048589035868645, -0.05527934432029724, -0.12127459049224854, 0.025784417986869812, 0.05313822999596596, -0.04229370132088661, 0.07263696938753128, 0.0072830659337341785, 0.05042374134063721, 0.06135785952210426, -0.008903078734874725, 0.02118436060845852, 0.1414927840232849, -0.08543351292610168, 0.07933062314987183, 0.04208992049098015, -0.0024474249221384525, 0.03003893792629242, 0.07364969700574875, -0.024171845987439156, -0.03616912290453911, -0.0783238485455513, 0.11650256812572479, -0.06984136253595352, 0.013787548989057541, -0.04561322554945946, -0.06278913468122482, 0.049607519060373306, -0.09668362140655518, 0.1297295093536377, -0.0261576846241951, 0.024818219244480133, 0.03520114719867706, -0.07367471605539322, -0.07591594010591507, -0.13798411190509796, 0.00923264678567648, -0.02055496908724308, 0.13358891010284424, 0.0008755144663155079, -0.07351209968328476, 0.11867769807577133, -0.0595417320728302, -0.08254151791334152, 0.030137203633785248, -0.1077464371919632, -0.0012565781362354755, 0.054558128118515015, -0.12023796141147614, 0.010892532765865326, 0.05330631881952286, 0.15421533584594727, -0.06019298732280731, 0.025695055723190308, 0.1167602688074112, -0.012323031201958656, 0.018104026094079018, 0.023005008697509766, 0.06980367749929428, -0.11059334874153137, 0.07390370965003967, 0.11156118661165237, 0.030679482966661453, 0.007104639429599047, -0.035707950592041016, -0.04363344609737396, -0.0604226291179657, 0.006759129464626312, 0.054553575813770294, 0.030491499230265617, -0.01627974770963192, 0.03829286992549896, 0.08001746237277985, -0.014218995347619057, 0.016348371282219887, 0.024544544517993927, 0.01631312072277069, 0.08075668662786484, 0.041930217295885086, -0.035734809935092926, 0.06905613839626312, 0.12313682585954666, -0.007913448847830296, -0.08762582391500473, 0.038997404277324677, -0.07287377119064331, -0.05829508975148201, -0.10990569740533829, -0.08739428967237473, 0.06763702630996704, -0.06575368344783783, 0.048643920570611954, 0.0641927570104599, -0.046661220490932465, 0.012396737933158875, -0.10955706238746643, 0.12062402069568634, -0.07839594781398773, 0.07948698103427887, 0.041991136968135834, 0.14184166491031647, 0.04175860062241554, -0.036809880286455154, 0.0330948568880558, 0.05377400666475296, -0.10613597929477692, 0.014901063404977322, 0.15025709569454193, 0.016873495653271675, -0.049702875316143036, 0.09671091288328171, -0.04795015603303909, -0.05853763967752457, 0.03981867432594299, -0.06609006971120834, 0.041427019983530045, 0.03992334380745888, 0.085052490234375, -0.12641608715057373, -0.043635688722133636, -0.004492880776524544, 0.13822419941425323, -0.023670151829719543, -0.10977572947740555, 0.014892278239130974, 0.04398508742451668, -0.056376636028289795, 0.04096616804599762, -0.04287482053041458, 0.09684242308139801, 0.05459481477737427, 0.0030883168801665306, -0.046238549053668976, 0.04005724564194679, 0.04948689416050911, -0.10911191999912262, -0.13775311410427094, -0.009842101484537125, -0.09023082256317139, 0.08085134625434875, -0.020566357299685478, -0.06754447519779205, -0.03319928050041199, -0.02185405045747757, 0.12533463537693024, 0.03807534649968147, -0.19872066378593445, -0.0626612976193428, 0.012432388961315155, 0.013322636485099792, -0.030218537896871567, 0.026267727836966515, 0.10311026126146317, 0.10032491385936737, -0.07194767892360687, 0.01858881302177906, -0.13645239174365997, 0.07863419502973557], +resume:[0.005834374111145735, 0.0011947641614824533, 0.08757571876049042, 0.11050046980381012, 0.0870245173573494, -0.019345851615071297, -0.006155109498649836, 0.11617103964090347, 0.039826199412345886, 0.04942711815237999, 0.062176428735256195, 0.11264393478631973, -0.024331238120794296, 0.017469119280576706, 0.07665062695741653, -0.04382935166358948, -0.1276678740978241, 0.039132751524448395, 0.10950452834367752, 0.09796160459518433, 0.05841058865189552, -0.022754695266485214, 0.09372162073850632, -0.03920723497867584, -0.015498343855142593, 0.05774279683828354, -0.006356267258524895, -0.10630714148283005, -0.12027350068092346, -0.10064659267663956, -0.12533338367938995, 0.046655185520648956, -0.03254948928952217, -0.08759696036577225, -0.001076999818906188, -0.07777088135480881, -0.01830030232667923, -0.12472080439329147, -0.03549816086888313, 0.04061489924788475, -0.009085196070373058, 0.024495907127857208, 0.010868777520954609, -0.012886950746178627, -0.06376174092292786, -0.0020636634435504675, 0.022598419338464737, 0.08986341953277588, 0.01971413753926754, -0.1471123844385147, 0.034822165966033936, 0.006625205744057894, 0.00326875364407897, -0.05334831029176712, 0.007661910727620125, -0.032080650329589844, -0.1128150001168251, 0.15313665568828583, -0.02879800833761692, 0.04292520880699158, 0.13230352103710175, -0.11574901640415192, 0.00438920920714736, -0.012492171488702297, -0.03643348813056946, 0.11488504707813263, 0.0012856378452852368, -0.1468842774629593, -0.08001267910003662, -0.09363418817520142, 0.06702996045351028, 0.10866980254650116, 0.008287068456411362, 0.021674588322639465, 0.03660161793231964, 0.1410207897424698, 0.09533452242612839, -0.013880071230232716, 0.01037630531936884, 0.006532400380820036, -0.0723332092165947, -0.10502420365810394, -0.030765559524297714, 0.10626383870840073, 0.10853172838687897, -0.03621438145637512, -0.09911376982927322, 0.09289098531007767, 0.10808330774307251, 0.050302114337682724, -0.0038020797073841095, -0.002524908632040024, 0.05836135149002075, 0.017538409680128098, -0.19605176150798798, 0.12165713310241699, 0.09083150327205658, 0.13949528336524963, -0.022238634526729584, -0.0008127155597321689, 0.12389248609542847, 0.019799815490841866, 0.09084833413362503, -0.06564675271511078, -0.08612328767776489, -0.10393213480710983, -0.1620069295167923, 0.049102891236543655, 0.01515553891658783, -0.010482290759682655, -0.006665404420346022, -0.034403614699840546, 0.022119134664535522, -0.11114637553691864, -0.02352624200284481, -0.013779748231172562, 0.13581129908561707, 0.00466486532241106, 0.11146145313978195, 0.05124201998114586, -0.0429919995367527, 0.07390142232179642, -0.05013996362686157, -0.04784500226378441, -0.033730678260326385, -0.033599164336919785, 0.03058636747300625, 0.00645644124597311, -0.010224760510027409, 0.08917268365621567, -0.04237671196460724, -0.14951284229755402, 0.08722639828920364, -0.08073285967111588, -0.07106291502714157, 0.02751561813056469, 0.13076835870742798, -0.06036907806992531, -0.08260584622621536, 0.032315608114004135, 0.06537682563066483, -0.1354178488254547, 0.05453132092952728, -0.03811005502939224, 0.08494371920824051, 0.03207641467452049, -0.04858364537358284, -0.03667405992746353, 0.09456430375576019, 0.13808925449848175, 0.00843932293355465, 0.03664178028702736, 0.14694342017173767, 0.10889968276023865, 0.031172608956694603, 0.10466386377811432, 0.0350489616394043, 0.04581000283360481, -0.1374901533126831, 0.13140712678432465, 0.03144407272338867, -0.023279406130313873, 0.09868957847356796, -0.004779545124620199, 0.07706468552350998, -0.029149265959858894, -0.006047606933861971, -0.1034785658121109, -0.03932863846421242, 0.033106815069913864, -0.07378506660461426, -0.13165625929832458, -0.13347701728343964, 0.019506659358739853, -0.011404037475585938, -0.10119783133268356, -0.08368682861328125, 0.07624418288469315, -0.04916390776634216, 0.11940161138772964, 0.11553705483675003, -0.028347430750727654, 0.04231654852628708, -0.07130026817321777, -0.1439000815153122, -0.11073589324951172, 0.0397651344537735, 0.0632200688123703, -0.01596711203455925, -0.009348982945084572, -0.024446429684758186, -0.10847645252943039, 0.08156193047761917, 0.008958699181675911, -0.023406194522976875, -0.12353479862213135, -0.0067439004778862, 0.02390885166823864, 0.049495257437229156, -0.06957122683525085, 0.09674675017595291, -0.06524287909269333, 0.010493961162865162, 0.04653334617614746, -0.0005400495720095932, -0.06888505071401596, 0.03248290717601776, 0.01827024295926094, -0.06040995568037033, 0.1338738352060318, -0.11306946724653244, 0.09432308375835419, 0.00018928736972156912, -0.020292265340685844, 0.11783277988433838, -0.04022393748164177, -0.03497694060206413, -0.07380349934101105, 0.011109907180070877, -0.09462430328130722, 0.09656772017478943, -0.004892539232969284, 0.03322206810116768, 0.0854683592915535, -0.07216168940067291, 0.06156064569950104, 0.013078566640615463, 0.014297288842499256, 0.0017104026628658175, -0.04754085838794708, 0.07495562732219696, -0.06660884618759155, -0.09128246456384659, 0.03210970386862755, 0.10439451783895493, 0.05322376266121864, -0.07410311698913574, -0.030306171625852585, 0.09837153553962708, -0.06162011995911598, -0.09549099206924438, 0.04752487689256668, -0.13218510150909424, -0.08102133870124817, -0.040328849107027054, -0.05654119327664375, -0.041728366166353226, 0.024021416902542114, 0.009506725706160069, 0.06999513506889343, -0.011779003776609898, -0.015206686221063137, -0.13114985823631287, -0.0568692609667778, 0.05955617502331734, 0.06392430514097214, 0.009777805767953396, -0.0005768914707005024, -0.09376329183578491, 0.03887851536273956, 0.12922225892543793, 0.056330930441617966, -0.01640050671994686, -0.024920174852013588, -0.05725891888141632, 0.07296629995107651, -0.01509428396821022, -0.01652374304831028, 0.13029266893863678, 0.07380536198616028, 0.02704031951725483, 0.06666591018438339, 0.12030625343322754, -0.09564397484064102, 0.07859007269144058, -0.07692234218120575, 0.013146393932402134, 0.01698586530983448, 0.040214721113443375, -0.050484467297792435, -0.03502984717488289, 0.07584241032600403, 0.0004850289842579514, 0.011920440010726452, -0.03273128345608711, 0.01206923183053732, -0.0669543594121933, 0.10925929993391037, -0.005340296775102615, 0.09359914064407349, -0.0354219526052475, 0.020640850067138672, -0.06684805452823639, 0.13695016503334045, -0.08767279982566833, 0.10320262610912323, -0.08158896863460541, -0.09460868686437607, 0.06061461567878723, 0.02662169747054577], +ret:[0.11115065217018127, 0.028784925118088722, 0.081939198076725, -0.09061803668737411, 0.008739591576159, 0.027269449084997177, 0.08528704941272736, -0.0011945100268349051, 0.0065292008221149445, -0.09958168864250183, -0.007747280411422253, 0.09206421673297882, -0.08485843986272812, 0.04655671864748001, -0.012211395427584648, -0.04814343899488449, -0.0376092791557312, -0.14864546060562134, -0.05694323033094406, 0.07756322622299194, -0.07135015726089478, -0.022533783689141273, -0.061573296785354614, -0.04612622410058975, 0.028327701613307, -0.01151276845484972, 0.02190193347632885, 0.027900012210011482, -0.17273646593093872, -0.13389021158218384, -0.06014179065823555, -0.07827892154455185, -0.01667547971010208, 0.11671872437000275, -0.0007604782003909349, 0.14321929216384888, -0.04207352176308632, 0.06732639670372009, 0.10218770802021027, 0.1543617993593216, -0.10719788074493408, -0.08994080126285553, 0.008519507013261318, -0.012589315883815289, 0.023100359365344048, -0.15083138644695282, 0.029098698869347572, 0.1020253524184227, 0.08700060844421387, -0.1269596964120865, 0.033114537596702576, 0.004425914026796818, -0.11414316296577454, -0.045252494513988495, -0.03116408735513687, 0.018055472522974014, -0.11853055655956268, 0.0070419395342469215, -0.0069472407922148705, -0.025195686146616936, -0.0014593403320759535, -0.05924943462014198, 0.00836070068180561, -0.0977126806974411, 0.05817348137497902, -0.07034355401992798, -0.025013817474246025, 0.02672906033694744, -0.10763166844844818, 0.0774724930524826, -0.049142248928546906, -0.06373780965805054, 0.19493363797664642, 0.0911901444196701, -0.02217666245996952, 0.04636361822485924, 0.01468373741954565, 0.0060593439266085625, 0.01661604642868042, -0.11087029427289963, -0.0651465356349945, -0.08870276063680649, -0.02048960141837597, 0.10574258118867874, 0.09541498869657516, 0.04576285928487778, -0.06538691371679306, -0.04028980806469917, 0.04367007315158844, -0.10379739105701447, -0.003244767664000392, -0.09564109891653061, 0.057334497570991516, 0.017003241926431656, 0.0671154335141182, 0.06804591417312622, 0.08709151297807693, -0.042904362082481384, -0.021250523626804352, 0.05989611893892288, 0.04771645739674568, -0.02403201349079609, 0.019508514553308487, 0.0012112838448956609, 0.09642080962657928, -0.11052796244621277, -0.05875951796770096, -0.02336248941719532, -0.013674870133399963, -0.09096091240644455, -0.007683772128075361, 0.04632192477583885, -0.05358632281422615, -0.022772816941142082, 0.019998472183942795, 0.10917084664106369, 0.010099089704453945, 0.11206956207752228, 0.03480798006057739, -0.1365552842617035, -0.1912814825773239, 0.03012249618768692, 0.09953455626964569, -0.06130257248878479, 0.09550411999225616, -0.012080354616045952, 0.026293298229575157, -0.026727283373475075, -0.04182372987270355, -0.007664894685149193, -0.042720429599285126, 0.03097524866461754, -0.054280076175928116, -0.016637315973639488, 0.09078390151262283, -0.07380034029483795, -0.014974587596952915, -0.03398109972476959, 0.0069560459814965725, 0.020825641229748726, -0.0998428463935852, -0.07458402216434479, -0.001726400339975953, 0.1502145677804947, -0.09265322983264923, 0.045987386256456375, 0.07138491421937943, -0.05123601481318474, -0.01954156905412674, 0.025164606049656868, 0.15431377291679382, 0.062233131378889084, -0.007471971679478884, 0.09899988025426865, 0.05139308422803879, -0.04113887622952461, -0.004382269456982613, 0.06662573665380478, -0.020826274529099464, 0.016566433012485504, -0.15124092996120453, -0.024324223399162292, -0.035255271941423416, 0.08771106600761414, 0.005733555182814598, -0.16623042523860931, 0.16573631763458252, -0.06322215497493744, -0.037292562425136566, 0.2006295770406723, -0.10202804207801819, -0.08291593939065933, -0.06616456061601639, 0.029710549861192703, 0.16718803346157074, 0.10416962951421738, 0.08151855319738388, 0.12902599573135376, -0.05201861262321472, 0.01776658557355404, 0.0001398081221850589, 0.008427909575402737, 0.050964970141649246, -0.09278852492570877, -0.03242556005716324, -0.04758799821138382, 0.02021895721554756, -0.10765083879232407, -0.08106991648674011, 0.054877858608961105, -0.08097194880247116, 0.01882004179060459, 0.0827912986278534, -0.05366036668419838, -0.03355808183550835, 0.02316281944513321, -0.010195321403443813, -0.0035510999150574207, 0.06033991277217865, -0.006656292825937271, 0.04502726346254349, -0.06932536512613297, 0.07085777819156647, -0.07258433848619461, 0.004206777550280094, -0.018613865599036217, 0.005163105204701424, 0.00988060049712658, -0.05618079751729965, 0.12961256504058838, 0.05293167755007744, 0.00969467032700777, 0.06015406921505928, 0.03981703519821167, 0.09905939549207687, -0.07979942113161087, -0.04154086858034134, 0.022989587858319283, 0.1709388643503189, -0.08591832965612411, 0.027744293212890625, -0.016225848346948624, 0.029961273074150085, 0.08164303004741669, 0.06577721983194351, 0.06247016042470932, 0.02697029337286949, -0.010758654214441776, -0.05351688340306282, 0.04103514924645424, -0.07518663257360458, -0.0866871327161789, -0.062445275485515594, 0.12848548591136932, 0.06358087062835693, -0.09909232705831528, 0.015615459531545639, -0.017682496458292007, 0.10956578701734543, 0.038038190454244614, 0.05603306367993355, 0.028857527300715446, 0.09109635651111603, 0.04174300283193588, -0.029821543022990227, -0.05829238146543503, 0.05801818147301674, 0.0069356318563222885, 0.013306185603141785, 0.004427020438015461, -0.17149151861667633, 0.10366489738225937, 0.059785645455121994, 0.04053548723459244, 0.022428732365369797, 0.08576951920986176, 0.014245271682739258, 0.0326928086578846, -0.13109847903251648, 0.12371385842561722, 0.059617746621370316, 0.05445702001452446, -0.01438210066407919, 0.1407361924648285, -0.06420151889324188, -0.09433071315288544, -0.04245268180966377, -0.015768183395266533, 0.00987139344215393, 0.04474901780486107, 0.004046406131237745, 0.0803411453962326, 0.053140319883823395, 0.04495875909924507, -0.04382738843560219, 0.018400587141513824, 0.11652278155088425, -0.11140681803226471, -0.0195259191095829, 0.0625571459531784, -0.025980951264500618, -0.058186132460832596, 0.02416195720434189, 0.011780902743339539, -0.057871732860803604, -0.043522827327251434, 0.08990476280450821, -0.009966708719730377, -0.0825158953666687, -0.02822650596499443, 0.039634380489587784, 0.021302074193954468, -0.015050177462399006, 0.03671356290578842, 0.06815207749605179, 0.06565671414136887, 0.09813655912876129, -0.14765097200870514, -0.13617458939552307, 0.04440624639391899], +sdiv:[0.13437843322753906, 0.058864958584308624, 0.0567961111664772, -0.008890065364539623, -0.0028726975433528423, -0.027511825785040855, 0.08942867070436478, -0.06538400799036026, 0.0373653881251812, 0.05288202688097954, 0.04230120778083801, -0.01479498203843832, 0.03537944704294205, -0.05730320140719414, 0.03828653693199158, -0.045610204339027405, 0.060954608023166656, 0.02052692510187626, 0.07194399833679199, -0.05458803474903107, -0.12263714522123337, -0.011957801878452301, -0.08407224714756012, 0.013587458990514278, 0.018251214176416397, -0.08223772794008255, 0.06442733108997345, 0.12696443498134613, -0.045840345323085785, -0.06846985220909119, 0.03892026096582413, -0.11449997127056122, -0.044927921146154404, 0.054253071546554565, -0.0002696323790587485, 0.15512464940547943, -0.058139003813266754, 0.07118969410657883, -0.01670006662607193, 0.05414273962378502, -0.021296264603734016, -0.029582982882857323, 0.05666740983724594, 0.03792890906333923, -0.0028232575859874487, 0.004970375448465347, 0.15879783034324646, 0.0658249780535698, -0.012884046882390976, -0.005061418749392033, 0.06807012856006622, 0.004920178558677435, -0.007654175162315369, -0.0072562177665531635, -0.03272082656621933, 0.009035021997988224, 0.07580799609422684, -0.10155115276575089, -0.007378230337053537, -0.11188279837369919, -0.053462766110897064, -0.15225188434123993, -0.07879254966974258, -0.02131841890513897, -0.15595871210098267, -0.08240304887294769, 0.04125764220952988, -0.027515115216374397, -0.04461053013801575, 0.1488770693540573, -0.15433214604854584, 0.07645417004823685, -0.021927937865257263, 0.002571342745795846, 0.009134779684245586, -0.029812775552272797, -0.053534653037786484, 0.08115487545728683, -0.08168309926986694, 0.050471942871809006, -0.07393532991409302, -0.10093141347169876, 0.012651492841541767, 0.20019713044166565, -0.09219776839017868, 0.013164998032152653, 0.08760020136833191, -0.04028072953224182, -0.004687267355620861, -0.10999202728271484, -0.0028742635622620583, -0.06484553217887878, 0.13153637945652008, 0.08921507000923157, -0.02825450524687767, 0.06994496285915375, 0.012057042680680752, 0.017109470441937447, -0.034328438341617584, -0.038844916969537735, 0.07054344564676285, -0.03769724443554878, -0.03561471775174141, -0.030460912734270096, 0.10297871381044388, 0.03520171344280243, 0.030966445803642273, -0.050187960267066956, 0.03973311930894852, -0.09352906048297882, 0.03006014972925186, 0.2001979798078537, -0.016833560541272163, -0.022009223699569702, -0.1500176638364792, -0.03408791497349739, -0.027178289368748665, 0.045340169221162796, 0.04832395166158676, -0.059469446539878845, -0.02714983932673931, -0.061258357018232346, 0.08167703449726105, -0.06706231087446213, 0.1193806529045105, -0.05524997413158417, 0.06446279585361481, 0.05866739898920059, -0.011920951306819916, -0.007425203919410706, 0.023944607004523277, 0.10847023129463196, -0.09192308038473129, 0.01577838882803917, -0.007925687357783318, -0.2170792669057846, -0.0488920658826828, -0.11700668931007385, 0.0327041894197464, -0.037592239677906036, -0.11400527507066727, -0.1277807652950287, 0.03601977601647377, 0.12881208956241608, -0.07720008492469788, -0.047981344163417816, 0.021407369524240494, -0.07962016016244888, 0.05774104595184326, 0.027251871302723885, -0.019092697650194168, -0.12225193530321121, -0.006310217548161745, -0.013505463488399982, 0.09057113528251648, -0.05101257190108299, 0.05411849915981293, 0.10061830282211304, 0.0707782432436943, 0.03677210584282875, 0.05580369755625725, -0.041424013674259186, -0.12014152854681015, 0.055838692933321, -0.10069544613361359, -0.002573777921497822, 0.03372129052877426, 0.03807025030255318, -0.03279164060950279, 0.04169300198554993, -0.1349489837884903, 0.06373489648103714, -0.08195434510707855, 0.06619822233915329, -0.004531092010438442, 0.08083220571279526, -0.03934069722890854, 0.15370504558086395, 0.03975523263216019, -0.013601687736809254, 0.07049666345119476, 0.05399272218346596, 0.03662615269422531, -0.10597125440835953, -0.003581603989005089, 0.050748273730278015, 0.11638518422842026, 0.022993942722678185, -0.1094614714384079, -0.11454974859952927, -0.08816283941268921, 0.06200873479247093, 0.0008928101742640138, -0.013238919898867607, -0.04847172647714615, 0.027247946709394455, -0.023198533803224564, -0.018740806728601456, 0.10645414143800735, 0.06699880212545395, 0.022270239889621735, -0.07839159667491913, 0.04353424534201622, 0.018304206430912018, 0.10257727652788162, 0.11569847911596298, -0.005070162937045097, -0.029207389801740646, -0.1348368227481842, -0.13286611437797546, 0.05406304448843002, 0.0843251422047615, 0.021532369777560234, 0.04095170646905899, -0.0050018238835036755, 0.04627116397023201, -0.029396913945674896, 0.10059243440628052, -0.02298019267618656, 0.07999864220619202, 0.036905981600284576, -0.06256978213787079, -0.03190349042415619, 0.07736168801784515, -0.109580859541893, 0.052608672529459, 0.06493880599737167, -0.12774613499641418, -0.0501960813999176, 0.0795101746916771, -0.11320503801107407, 0.06400308758020401, 0.04357217997312546, 0.014803305268287659, 0.002280597807839513, -0.13506238162517548, 0.06059369817376137, 0.05059932544827461, 0.12578321993350983, -0.06931436061859131, -0.05337284132838249, -0.023575659841299057, 0.029817862436175346, 0.05196197330951691, -0.15847469866275787, 0.1124943420290947, 0.0441819429397583, 0.025253886356949806, 0.014834779314696789, 0.02244160696864128, 0.03361649438738823, -0.1118595227599144, 0.015638571232557297, 0.007586915977299213, -0.04334823042154312, 0.015296551398932934, -0.11636269092559814, 0.07034704834222794, -0.16526782512664795, -0.1290919929742813, -0.09392466396093369, -0.019233088940382004, -0.015902210026979446, 0.1442764699459076, -0.055542100220918655, -0.12206803262233734, 0.0021146973595023155, -0.08553500473499298, -0.11826333403587341, 0.05512739717960358, -0.04013228788971901, -0.13772158324718475, 0.08121883869171143, -0.04115229845046997, 0.02102157659828663, 0.02015773206949234, 0.14119607210159302, 0.11772407591342926, 0.09642795473337173, 0.0521787665784359, 0.053680457174777985, -0.00496168015524745, -0.02614951878786087, -0.016702981665730476, 0.07488112151622772, 0.134407177567482, 0.0866888239979744, 0.10421599447727203, 0.05883393809199333, 0.00697418674826622, 0.08874782919883728, -0.04120048135519028, -0.078969307243824, 0.05208393186330795, 0.06815903633832932, 0.047968894243240356, 0.10142385214567184, -0.07748278975486755, -0.09943792223930359, 0.07480933517217636], +select:[0.08718383312225342, 0.07805062085390091, 0.04814824089407921, -0.07696089893579483, -0.09717995673418045, 0.0034347870387136936, 0.040908269584178925, -0.031230315566062927, 0.02397260069847107, 0.0034645400010049343, -0.010137238539755344, 0.01966094970703125, 0.035813089460134506, -0.196439728140831, 0.01528866309672594, 0.01938130147755146, -0.037182167172431946, 0.03835402429103851, 0.012041306123137474, -0.01415090449154377, -0.02829497866332531, -0.018564125522971153, -0.06718108803033829, -0.040470920503139496, 0.0758921429514885, -0.08205783367156982, 0.02459956705570221, 0.1355540007352829, -0.23754149675369263, 0.13460147380828857, 0.013370733708143234, -0.06722670793533325, 0.004030425101518631, 0.11455119401216507, 7.093098247423768e-05, 0.006439975928515196, -0.012691528536379337, 0.06819336116313934, 0.1261843591928482, -0.10474036633968353, 0.004009148571640253, -0.12966662645339966, 0.05268445238471031, 0.032302986830472946, 0.056995704770088196, 0.08770646154880524, -0.0878063291311264, 0.049497026950120926, -0.26375648379325867, -0.004856015555560589, -0.01484179962426424, -0.010057758539915085, -0.003281539538875222, -0.03007698617875576, -0.030865442007780075, 0.002185037825256586, -0.033477768301963806, -0.07682193070650101, -0.024202844128012657, -0.10522449761629105, -0.05183370038866997, -0.041683513671159744, 0.0010945257963612676, -0.09572377800941467, 0.14639462530612946, -0.05629400536417961, -0.06564929336309433, 0.04133548215031624, 0.016843728721141815, 0.030005520209670067, -0.02036743238568306, -0.00514449505135417, -0.20539243519306183, 0.16371342539787292, 0.025165056809782982, 0.041586995124816895, -0.019981468096375465, -0.007891585119068623, -0.031891003251075745, 0.07212686538696289, -0.0631924718618393, -0.08547104895114899, 0.014525465667247772, -0.06878577172756195, 0.052201081067323685, -0.052656665444374084, 0.09812568128108978, -0.016641579568386078, 0.04954855889081955, -0.09996593743562698, -0.003410114673897624, -0.01216016337275505, 0.0723988488316536, 0.08681775629520416, -0.03657437115907669, 0.06219565495848656, 0.06590770184993744, -0.10100727528333664, -0.022868646308779716, 0.002306477865204215, 0.03762457147240639, -0.019700217992067337, 0.07169664651155472, 0.014427589252591133, 0.08701205998659134, -0.029576191678643227, 0.010931402444839478, 0.04161413386464119, -0.030075710266828537, -0.05791874974966049, -0.0020578207913786173, -0.1424895077943802, -0.09604086726903915, -0.017056209966540337, -0.0365108922123909, 0.11270264536142349, -0.0030715984757989645, -0.05006730183959007, -0.013034581206738949, 0.07404106110334396, -0.008407358080148697, -0.05787719413638115, 0.08187127858400345, -0.06432074308395386, -0.027708014473319054, -0.0397535040974617, 0.04493747651576996, -0.05973555147647858, 0.01846344769001007, -0.06162363663315773, -0.04055716097354889, -0.004400979727506638, -0.044802118092775345, 0.01452335063368082, 0.07457151263952255, -0.15368731319904327, -0.016353072598576546, -0.002555023180320859, 0.016927264630794525, -0.0035343049094080925, -0.09291186183691025, 0.06567340344190598, -0.022690963000059128, -0.007872470654547215, -0.039170991629362106, -0.09697926789522171, 0.06919082999229431, -0.044919151812791824, 0.0784059464931488, 0.02721402794122696, -0.08551431447267532, -0.12049640715122223, -0.006134283263236284, 0.07428847998380661, -0.030034828931093216, -0.04355857893824577, -0.024832671508193016, -0.011477531865239143, -0.0793447270989418, 0.05050516873598099, 0.10422767698764801, -0.03842557594180107, -0.035474296659231186, 0.0851379781961441, -0.05945410206913948, 0.05343811586499214, -0.03394852578639984, -0.036089107394218445, -0.02935674600303173, 0.08251325786113739, -0.03206084296107292, -0.040961068123579025, 0.0015238127671182156, 0.0296957828104496, -0.027410518378019333, 0.10559722036123276, 0.040774669498205185, -0.04407741129398346, -0.03989875316619873, -0.03818302974104881, 0.13709969818592072, 0.25893744826316833, -0.05624149739742279, -0.08736598491668701, 0.06074236333370209, -0.030679909512400627, 0.04119695723056793, -0.049622394144535065, -0.07895393669605255, 0.05901002138853073, -0.08793025463819504, 0.020926950499415398, 0.06248662248253822, 0.1679934859275818, -0.04196208715438843, 0.02548179402947426, -0.03345874696969986, -0.2163705825805664, 0.059109434485435486, 0.013560164719820023, 0.006940366700291634, -0.05416344106197357, 0.06188682094216347, -0.07679562270641327, 0.01796364039182663, 0.06020347401499748, -0.007998294197022915, 0.002518031746149063, -0.06607648730278015, 0.040883321315050125, 0.051781345158815384, 0.045319296419620514, 0.12065216898918152, 0.04010101780295372, 0.056552376598119736, -0.08201994746923447, 0.04345805197954178, 0.02280483767390251, 0.16387654840946198, 0.06722605973482132, 0.06406465917825699, -0.036092329770326614, 0.031741172075271606, 0.07448729127645493, 0.06516174226999283, 0.05637815594673157, 0.022792957723140717, -0.014329854398965836, -0.051095400005578995, 0.011813257820904255, -0.07032040506601334, -0.17304661870002747, -0.006316938437521458, -0.01688070222735405, 0.06349460780620575, 0.0639444962143898, 0.01731415092945099, 0.04771289601922035, 0.054410841315984726, 0.04746653139591217, 0.08716073632240295, 0.013161910697817802, -0.034276314079761505, 0.09229664504528046, 0.06836919486522675, 0.03427829220890999, -0.03646994009613991, -0.029658246785402298, 0.015093471854925156, 0.07003097236156464, 0.0729144886136055, -0.010564900934696198, 0.0209690872579813, 0.026058059185743332, -0.0035920296795666218, -0.10269523411989212, 0.018738482147455215, 0.0483640655875206, -0.0387117862701416, 0.02173205092549324, 0.05502619966864586, -0.015275980345904827, -0.01140633039176464, 0.06975161284208298, 0.0238284133374691, -0.10814318060874939, -0.06293916702270508, -0.06427953392267227, 0.0009545093053020537, 0.02500472590327263, -0.04109262302517891, 0.03158021345734596, 0.04664553701877594, 0.04861479997634888, 0.03898352012038231, 0.04423832893371582, -0.010800893418490887, -0.1060885563492775, -0.10494979470968246, 0.05397732928395271, 0.0038373610004782677, -0.052499908953905106, -0.058921411633491516, 0.15279947221279144, -0.0606437511742115, -0.0706186443567276, 0.061622168868780136, 0.05048215016722679, 0.26135265827178955, -0.03526923060417175, 0.050482023507356644, 0.028712505474686623, -0.1257586032152176, -0.0016046407399699092, 0.07152164727449417, -0.03016205132007599, 0.0005163002642802894, 0.024022050201892853, -0.13316816091537476, 0.042462848126888275], +sext:[0.1477319300174713, 0.07756788283586502, 0.05973057821393013, 0.11597096174955368, -0.017208663746714592, -0.024095095694065094, 0.07639908045530319, -0.0060404222458601, -0.045086126774549484, 0.19288913905620575, -0.005049027036875486, 0.001346225501038134, 0.05642755329608917, -0.043562598526477814, -0.03270687162876129, 0.09688121825456619, -0.029570359736680984, 0.12164393812417984, 0.011661817319691181, -0.004967751447111368, -0.1685643494129181, -0.0229668989777565, -0.0975598469376564, -0.042475681751966476, 0.1085217222571373, -0.004139983560889959, 0.011771338991820812, 0.06339637190103531, -0.15737223625183105, 0.1347004920244217, 0.011948583647608757, -0.054015226662158966, 0.009140233509242535, 0.12412355095148087, -0.00027628272073343396, -0.09894376993179321, 0.03884657099843025, 0.0711384266614914, -0.19366420805454254, -0.03538430854678154, 0.09609056264162064, -0.04818066582083702, 0.08512478321790695, 0.036787111312150955, 0.0859476700425148, 0.17071864008903503, 0.028191275894641876, 0.12541939318180084, 0.018902653828263283, -0.12278404086828232, 0.02750552073121071, 0.004350409843027592, -0.004102748353034258, -0.04025992006063461, -0.033756744116544724, 0.021850334480404854, -0.1360086053609848, -0.0524396114051342, 0.032005056738853455, -0.0795610249042511, -0.14506828784942627, -0.056372277438640594, 0.00040698942029848695, -0.09855165332555771, -0.03613376244902611, -0.09274396300315857, -0.05455121025443077, 0.04245862737298012, 0.11279504001140594, 0.020590301603078842, -0.14138193428516388, -0.09549392014741898, -0.032549209892749786, -0.0416303314268589, -0.025411009788513184, 0.04681798070669174, -0.030290693044662476, -0.007516270503401756, 0.002219889545813203, 0.08920435607433319, -0.07236386090517044, -0.09352540224790573, -0.01786157488822937, -0.035524141043424606, 0.042725760489702225, 0.09669959545135498, 0.0055524930357933044, -0.04134960100054741, 0.06862416118383408, -0.11413553357124329, -0.003202694235369563, -0.06578598916530609, 0.10262104868888855, 0.11554598063230515, -0.0549299418926239, 0.0709938257932663, 0.08379723876714706, 0.09077409654855728, -0.02163458615541458, 0.0309868473559618, 0.07948898524045944, -0.05609763413667679, -0.04130358621478081, 0.01129827369004488, -0.05329639092087746, 0.07755232602357864, -0.15300458669662476, -0.04477635771036148, -0.09500720351934433, -0.015100916847586632, 0.021450582891702652, 0.09976567327976227, 0.11008992791175842, -0.01644859090447426, -0.07653659582138062, 0.07678865641355515, 0.05239817872643471, -0.020956963300704956, -0.032168395817279816, 0.09721734374761581, -0.11200083792209625, 0.065842404961586, 0.08675476163625717, -0.06691975146532059, 0.12144962698221207, -0.03592082858085632, 0.04525738209486008, -0.011725976131856441, -0.039002854377031326, -0.008323723450303078, -0.027040377259254456, -0.09167207777500153, -0.07475931942462921, 0.017608044669032097, -0.04250914603471756, -0.09164483845233917, -0.025484859943389893, 0.000441859447164461, 0.025756077840924263, -0.0322868674993515, -0.10615874826908112, -0.15955719351768494, 0.0630774274468422, 0.04525178670883179, -0.0945349708199501, -0.04637397080659866, 0.07361110299825668, -0.055857714265584946, 0.09352952241897583, 0.03184504061937332, -0.05016075074672699, 0.023966822773218155, 0.05911282077431679, 0.08850409090518951, 0.08252757042646408, -0.08102499693632126, 0.019366730004549026, 0.042374398559331894, -0.013043511658906937, 0.008885985240340233, -0.08785047382116318, -0.03562949597835541, -0.03806057572364807, 0.0753529965877533, 0.10054051131010056, 0.1333923190832138, 0.18196600675582886, 0.008019523695111275, -0.03679060563445091, 0.05860714241862297, 0.03439359366893768, 0.08376698940992355, 0.049704644829034805, 0.11602167040109634, 0.01790032908320427, -0.08674736320972443, 0.021865390241146088, 0.15801213681697845, 0.003596717957407236, 0.001789376139640808, 0.03350112587213516, 0.00527431583032012, 0.03171718120574951, -0.09869477152824402, -0.03611435368657112, -0.018769029527902603, 0.037830911576747894, -0.03652876242995262, -0.08632431924343109, 0.05745750665664673, 0.021173130720853806, 0.020927606150507927, 0.0666668564081192, 0.05471646413207054, -0.03853892907500267, 0.024162085726857185, -0.05078573152422905, -0.10125073045492172, -0.012925916351377964, 0.010265056043863297, 0.0474032424390316, -0.08350212872028351, -0.01357049960643053, -0.08620107173919678, -0.133009672164917, -0.09801793098449707, -0.004402471706271172, -0.0040659294463694096, -0.06807493418455124, 0.025754012167453766, 0.0553271509706974, 0.043867554515600204, -0.051007386296987534, 0.042999234050512314, 0.11054687201976776, -0.04121725633740425, -0.032210614532232285, 0.025378866121172905, 0.14061111211776733, 0.08095595985651016, -0.07784432172775269, -0.04010004550218582, 0.09336715191602707, 0.09153933823108673, 0.07060405611991882, 0.07698331773281097, 0.0330575592815876, 0.059631288051605225, -0.05578184500336647, 0.01185474544763565, -0.08423196524381638, 0.10228868573904037, -0.017213692888617516, 0.17130470275878906, 0.06733732670545578, -0.08997386693954468, 0.018497131764888763, 0.0015675098402425647, -0.15421055257320404, -0.16476257145404816, 0.08309123665094376, 0.044397905468940735, 0.12327276170253754, 0.05128469318151474, -0.07095963507890701, 0.04208149015903473, 0.06669458001852036, 0.03395868092775345, 0.013986988924443722, -0.09184268862009048, -0.09844095259904861, -0.07364305853843689, -0.0014464989071711898, -0.06520715355873108, -0.022040097042918205, 0.1553938090801239, 0.044277533888816833, 0.0611957386136055, -0.0796261578798294, -0.12520428001880646, 0.029665639623999596, -0.0042376150377094746, -0.017206473276019096, 0.15104492008686066, -0.10910048335790634, -0.1182367280125618, 0.006020285654813051, -0.0174314696341753, 0.008869721554219723, 0.049904920160770416, 0.04268999770283699, 0.10655644536018372, 0.010835867375135422, 0.16372625529766083, 0.04697383940219879, 0.057063307613134384, 0.14012430608272552, -0.11806871742010117, 0.09741074591875076, 0.05447046086192131, 0.03144798055291176, 0.010486103594303131, -0.008670782670378685, -0.23532633483409882, 0.004757643211632967, -0.05959932506084442, -0.03783026710152626, -0.020617716014385223, -0.0005157519481144845, -0.03352923318743706, 0.059011802077293396, -0.026916805654764175, -0.0841192826628685, 0.04513010010123253, 0.013326738029718399, 0.09814456105232239, 0.11302977800369263, 0.07363088428974152, -0.15125618875026703, 0.05255585536360741], +shl:[-0.058998093008995056, 0.04949623718857765, -0.07456368207931519, -0.07006888836622238, 0.10330846160650253, -0.034469399601221085, 0.07807265967130661, -0.036059848964214325, 0.026489101350307465, 0.05469803884625435, -0.02159217745065689, -0.010710214264690876, 0.0646057054400444, -0.11471476405858994, 0.09135555475950241, -0.17219269275665283, -0.007227038498967886, -0.031762417405843735, 0.012077580206096172, 0.06910007447004318, -0.06318119913339615, -0.018135564401745796, -0.08352561295032501, -0.04140368476510048, 0.031221160665154457, -0.08023647964000702, 0.04205150529742241, 0.05545242875814438, -0.07826263457536697, -0.11633004993200302, 0.014008031226694584, -0.05164189264178276, 0.042434025555849075, 0.12216116487979889, -0.0006088317604735494, 0.023102551698684692, -0.026473330333828926, 0.08989810198545456, 0.04798189550638199, 0.11368304491043091, 0.09813210368156433, -0.052397191524505615, 0.011642172001302242, 0.03470365330576897, 0.08001423627138138, 0.0057114241644740105, -0.014080795459449291, 0.06524284183979034, 0.22783929109573364, -0.10746972262859344, 0.02150006592273712, 0.004997723735868931, -0.00575760193169117, -0.020271461457014084, -0.03203669935464859, 0.04514840990304947, -0.07280589640140533, -0.06966619193553925, 0.04867950826883316, -0.10542883723974228, 0.017338186502456665, -0.08657342195510864, 0.04594206064939499, -0.018062008544802666, -0.005012118257582188, -0.08070674538612366, -0.043265510350465775, -0.08269011229276657, 0.018491899594664574, 0.036534618586301804, -0.1304856389760971, -0.07929395139217377, 0.14292778074741364, 0.15211963653564453, -0.0354628786444664, 0.07720028609037399, -0.03258928284049034, 0.0054086041636765, -0.03212708607316017, 0.050959546118974686, -0.06893976032733917, -0.0970664769411087, 0.009547224268317223, 0.009305761195719242, -0.002763420110568404, -0.0814434364438057, -0.004834452643990517, -0.04271344840526581, -0.0999469980597496, -0.10504557192325592, -0.002874342491850257, -0.08843709528446198, 0.11298199743032455, 0.09097891300916672, -0.044674672186374664, 0.06848246604204178, 0.039770446717739105, -0.07765350490808487, -0.028456488624215126, 0.04905439913272858, 0.05487549677491188, -0.05271006375551224, 0.001676639192737639, -0.0004144792619626969, 0.11978350579738617, -0.01730288937687874, -0.08151138573884964, -0.05104755237698555, 0.04386604204773903, -0.05774065479636192, -0.001016102498397231, 0.1933206021785736, 0.17795699834823608, 0.004507715813815594, -0.09665418416261673, -0.05964842811226845, 0.11435388028621674, -0.01882018707692623, -0.014032875187695026, 0.0008102009887807071, -0.19796958565711975, -0.17369171977043152, 0.03772041201591492, -0.08892767131328583, 0.11506080627441406, -0.04788203537464142, 0.06199074909090996, 0.032250404357910156, -0.0026072044856846333, -0.018619000911712646, -0.009952444583177567, 0.02827305719256401, -0.08321397751569748, 0.010778005234897137, -0.017959751188755035, 0.04102395474910736, -0.03357318788766861, 0.0006320176180452108, 0.025341665372252464, -0.020132532343268394, -0.10846710205078125, 0.07038717716932297, -0.13672399520874023, -0.038538046181201935, -0.08092720806598663, 0.006654705386608839, 0.04868924617767334, -0.07027527689933777, -0.17118482291698456, 0.032362546771764755, 0.014690261334180832, 0.05988316610455513, -0.07444187998771667, 0.11137513816356659, 0.09633083641529083, -0.07912396639585495, 0.06023690849542618, 0.03957551717758179, -0.10310826450586319, 0.0530238151550293, -0.10236179828643799, -0.03298649564385414, -0.03629545122385025, -0.03541015461087227, -0.08443161100149155, -0.24702711403369904, -0.05968969687819481, 0.008078057318925858, -0.038583338260650635, 0.05982203409075737, -0.0354878231883049, -0.042630843818187714, -0.016244783997535706, 0.03729228675365448, 0.00028716051019728184, 0.10411826521158218, -0.07304159551858902, 0.12599694728851318, 0.0075638508424162865, -0.04144841432571411, -0.0005262722843326628, 0.10423187911510468, 0.04817279055714607, -0.09829734265804291, 0.0016236109659075737, -0.10009350627660751, 0.053787365555763245, 0.11397159844636917, -0.08934611827135086, 0.08245185762643814, -0.06865711510181427, 0.03686201572418213, 0.04924549162387848, -0.11094077676534653, -0.058178845793008804, 0.02542928420007229, -0.01242933701723814, -0.05175035074353218, 0.03780725970864296, 0.013950265944004059, 0.024599697440862656, -0.06826499104499817, 0.11924935132265091, 0.034640874713659286, -0.10258803516626358, -0.04891447350382805, -0.08198560029268265, -0.005285300780087709, -0.09927217662334442, 0.0019679635297507048, 0.05362265557050705, 0.07605087757110596, -0.02114645577967167, 0.03988010436296463, 0.03878285363316536, -0.006248739548027515, 0.008166350424289703, 0.025363482534885406, 0.0959157794713974, 0.08464258164167404, 0.04189281910657883, -0.1131303459405899, -0.01867877133190632, 0.07147853821516037, -0.07264062017202377, 0.056969236582517624, 0.0330938883125782, -0.05913930758833885, 0.001599772134795785, -0.00698418403044343, -0.07983241975307465, 0.0042654285207390785, 0.028621327131986618, 0.17914390563964844, 0.045940104871988297, -0.1256108283996582, 0.05490977689623833, -0.03237632289528847, -0.1196226254105568, -0.12642550468444824, 0.08847197145223618, 0.005210605915635824, 0.03191962465643883, 0.049301404505968094, -0.06674482673406601, -0.0296242143958807, 0.05142153427004814, 0.03660937771201134, -0.06127418950200081, 0.05848013237118721, 0.04454980790615082, -0.09933657199144363, 0.07668323069810867, 0.06778331100940704, 0.032777030020952225, -0.03118501603603363, 0.013202930800616741, 0.06692761182785034, -0.03900931403040886, -0.0016447730595245957, -0.08772848546504974, -0.022973883897066116, -0.01323841791599989, 0.1296333223581314, -0.025764888152480125, -0.10816480219364166, -0.002624782267957926, -0.016106612980365753, -0.0003567415114957839, 0.0489015206694603, 0.01045349519699812, 0.10409397631883621, 0.05415744706988335, -0.041168101131916046, -0.0583975613117218, 0.04028542712330818, 0.06300085037946701, -0.0814230665564537, 0.0736997202038765, 0.04487449303269386, -0.025825046002864838, 0.004925993271172047, -0.03881215304136276, 0.004590044263750315, 0.085843525826931, -0.05294758826494217, 0.10455817729234695, 0.13497024774551392, 0.11742561310529709, 0.008631675504148006, 0.06382515281438828, 0.1419675499200821, -0.05661602318286896, 0.039460696280002594, -0.01357776578515768, 0.0929301381111145, 0.10111856460571289, -0.05942285433411598, -0.11459110677242279, 0.06652282923460007], +shufflevector:[-0.09342236816883087, 0.09883135557174683, 0.03151840716600418, -0.11063414067029953, -0.09001169353723526, 0.011820836924016476, 0.032085712999105453, -0.0475321002304554, 0.0860891342163086, -0.02253946103155613, 0.04146966710686684, 0.048112303018569946, -0.05864667892456055, -0.11944493651390076, 0.03636224940419197, -0.013535969890654087, -0.12964989244937897, -0.06194869056344032, -0.09701240062713623, 0.13404513895511627, -0.09127350151538849, 0.005942835938185453, -0.09820915013551712, 0.02591552585363388, -0.03887144476175308, -0.10919924080371857, 0.051396630704402924, 0.07641757279634476, -0.008206406608223915, 0.0004794656706508249, 0.04852164536714554, -0.12467313557863235, -0.07969404757022858, 0.12944237887859344, -0.03192572668194771, 0.17343957722187042, -0.08570516854524612, 0.07792967557907104, 0.09313428401947021, 0.003965667448937893, 0.0025449262466281652, 0.05550827458500862, 0.05942199006676674, -0.003888318780809641, 0.08718174695968628, -0.036024969071149826, -0.10924981534481049, -0.11807634681463242, 0.029786117374897003, 0.01709798164665699, -0.028997886925935745, 0.01505966018885374, 0.00017165606550406665, -0.01703275926411152, 0.0666915699839592, -0.13790516555309296, 0.0002393344766460359, -0.09635580331087112, 0.06505342572927475, -0.09388729929924011, -0.05659832805395126, -0.14042647182941437, 0.06070322170853615, -0.12240106612443924, 0.1275758296251297, 0.09139435738325119, -0.08763822168111801, 0.032968033105134964, 0.07459756731987, 0.01205926388502121, -0.008858236484229565, -0.0010654809884727001, -0.02173851802945137, 0.09835555404424667, 0.03536514565348625, 0.11238427460193634, -0.05240797623991966, -0.11451497673988342, 0.009596017189323902, -0.011530488729476929, -0.07430218160152435, -0.10278847813606262, 0.11786754429340363, 0.05452548339962959, -0.02432798221707344, 0.01575731299817562, 0.08608678728342056, -0.021413860842585564, -0.2110726684331894, -0.039089590311050415, -0.12396025657653809, -0.02815687656402588, 0.12326960265636444, -0.09571366012096405, 0.03345407545566559, -0.005637700669467449, 0.07052083313465118, -0.004528413992375135, -0.10682479292154312, 0.05790519714355469, -0.028444577008485794, -0.08130406588315964, 0.005426133517175913, 0.10472112149000168, 0.1032211035490036, -0.08787223696708679, 0.015681831166148186, -0.0387762226164341, -0.029422475025057793, -0.09432690590620041, -0.0012511457316577435, 0.010250166058540344, -0.002437952905893326, -0.02109343931078911, -0.09052939713001251, 0.08008114248514175, -0.04366980865597725, -0.006198076531291008, -0.12680302560329437, 0.16152161359786987, -0.003973897080868483, -0.10650809109210968, 0.058742769062519073, -0.11363387852907181, 0.06848496943712234, -0.05273299291729927, 0.07287141680717468, 0.07113887369632721, 0.1165807917714119, -0.11365330219268799, -0.011863754130899906, -0.03005119040608406, -0.0889752209186554, 0.017056560143828392, -0.09182651340961456, -0.07384518533945084, -0.013934594579041004, -0.05452103167772293, 0.02705496735870838, -0.03274077549576759, -0.001885833335109055, 0.12259180843830109, 0.10295922309160233, 0.07643969357013702, -0.0389067605137825, -0.09266442805528641, 0.030230984091758728, -0.09244201332330704, -0.08852310478687286, 0.02842942625284195, -0.0009123270865529776, -0.02778843231499195, -0.02791466936469078, 0.10831837356090546, -0.06154261529445648, -0.04899447411298752, -0.018096938729286194, -0.10441698879003525, 0.02351819910109043, 0.027231262996792793, -0.00012681270891334862, 0.005282359663397074, -0.11716581881046295, 0.008664366789162159, -0.06156395375728607, -0.0673699602484703, 0.007571666035801172, 0.0369810126721859, 0.009228871203958988, 0.02007105201482773, 0.06277404725551605, -0.10332363843917847, -0.048264630138874054, 0.09575023502111435, -0.06833649426698685, 0.10055917501449585, 0.07858993858098984, 0.14503076672554016, -0.07292582094669342, -0.016675150021910667, 0.09006324410438538, 0.04624880477786064, 0.10418528318405151, -0.049600325524806976, -0.13265107572078705, -0.036017101258039474, 0.1277780681848526, 0.15090779960155487, -0.14278247952461243, -0.02923429384827614, -0.04788517579436302, 0.06268628686666489, 0.055709127336740494, -0.013653026893734932, 0.07428078353404999, 0.02658144198358059, -0.04183531552553177, 0.08132634311914444, 0.12486163526773453, 0.012956548482179642, 0.010980461724102497, 0.016691269353032112, 0.06749074161052704, -0.10724422335624695, 0.14128495752811432, -0.040921323001384735, 0.04757402092218399, 0.11042314022779465, -0.12032747268676758, 0.03688289597630501, 0.1186792403459549, 0.13654999434947968, 0.0036049154587090015, 0.09712808579206467, 0.02129214257001877, 0.0060798004269599915, -0.11614816635847092, -0.014880477450788021, -0.06910204887390137, 0.06025398522615433, -0.029917219653725624, -0.14444729685783386, 0.023502536118030548, -0.08347276598215103, 0.12326983362436295, 0.05717792361974716, 0.06929734349250793, -0.007453979924321175, -0.13496196269989014, 0.00889293197542429, 0.004828065168112516, 0.08274077624082565, 0.035409267991781235, -0.013039940036833286, 0.0689493715763092, 0.07065865397453308, 0.05792391672730446, 0.14094658195972443, -0.043402787297964096, -0.018324997276067734, 0.031211623921990395, 0.02246536873281002, 0.03212147206068039, 0.10805543512105942, -0.13976788520812988, 0.01891283318400383, -0.10446231812238693, -0.0073594762943685055, -0.011663596145808697, -0.10001961141824722, -0.08696597814559937, 0.027472954243421555, 0.04339949041604996, 0.13574279844760895, -0.10459773987531662, 0.018898960202932358, -0.012869919650256634, 0.06292136013507843, -0.12594470381736755, -0.09088585525751114, -0.045064590871334076, -0.028043340891599655, -0.02050112560391426, 0.12962524592876434, -0.006835069507360458, -0.0018038998823612928, -0.06514941155910492, -0.020615683868527412, 0.002361451042816043, -0.13580986857414246, -0.05883876234292984, -0.07671834528446198, 0.13240787386894226, 0.022196905687451363, 0.06611496210098267, 0.058201201260089874, -0.057594794780015945, -0.03159499540925026, -0.028900854289531708, 0.09307236969470978, 0.042740315198898315, -0.03203224763274193, -0.04734160006046295, 0.09253291040658951, -0.06958022713661194, -0.098197340965271, -0.1353214979171753, 0.046722449362277985, 0.01251439843326807, -0.015110483393073082, 0.07159396260976791, 0.10409273207187653, -0.10571052134037018, 0.049941837787628174, -0.041097793728113174, -0.007881303317844868, 0.0016447901725769043, 0.04193875566124916, -0.11205476522445679, -0.11276822537183762], +sitofp:[-0.0745358094573021, 0.08400636911392212, 0.01788615807890892, 0.08378298580646515, -0.09794622659683228, 0.004611813463270664, 0.07003848254680634, -0.010977357625961304, -0.03136201575398445, -0.13405084609985352, 0.06399175524711609, 0.10730104148387909, 0.07453498989343643, 0.08756595104932785, 0.025623107329010963, 0.14506469666957855, -0.11019043624401093, -0.0913299173116684, -0.030762679874897003, -0.13068626821041107, -0.1589868813753128, -0.018901681527495384, -0.00042122299782931805, -0.043522514402866364, 0.02140823006629944, -0.104831762611866, 0.019389599561691284, 0.10044222325086594, -0.20639899373054504, -0.031934257596731186, 0.018721656873822212, -0.07158270478248596, -0.051829639822244644, 0.11767701059579849, -0.00010171351459575817, 0.1842496246099472, 0.08928102254867554, 0.06950031965970993, 0.012173665687441826, -0.06014624238014221, -0.015935732051730156, -0.002914268057793379, 0.05519463121891022, 0.03551945835351944, 0.1700998693704605, -0.039667513221502304, -0.06503444164991379, 0.061684560030698776, 0.10567005723714828, -0.04530173912644386, 0.07541023194789886, 0.003029275918379426, -0.004322127904742956, -0.0028200007509440184, 0.06350862979888916, -0.12512120604515076, 0.10158544778823853, -0.048547253012657166, 0.043458715081214905, -0.020450294017791748, -0.005866552237421274, 0.014250985346734524, -0.0011098552495241165, -0.1063004806637764, -0.017794497311115265, -0.128043994307518, -0.11148480325937271, 0.04815707355737686, 0.04232711344957352, 0.010036063380539417, -0.1363120675086975, -0.006247109733521938, -0.010959516279399395, 0.09471582621335983, -0.06728288531303406, 0.05596135929226875, -0.023047570139169693, 0.02883908897638321, -0.07732454687356949, -0.09652645885944366, -0.064150370657444, -0.09003500640392303, 0.07748290151357651, -0.008690999820828438, 0.019470490515232086, -0.02938597835600376, 0.07298003882169724, 0.08005119115114212, -0.13409096002578735, -0.10368373245000839, -0.11738917231559753, -0.05225439742207527, 0.10626685619354248, 0.1067277044057846, -0.004183775745332241, 0.018377553671598434, 0.08494845032691956, 0.029419448226690292, -0.02381620928645134, 0.08564577251672745, 0.045203156769275665, -0.08859651535749435, -0.018828092142939568, 0.017555847764015198, -0.04248642548918724, -0.04996833950281143, -0.14926640689373016, -0.046572744846343994, -0.005850066896528006, -0.08416666835546494, -0.0025407695211470127, 0.02034359984099865, 0.08140835165977478, 0.059855394065380096, -0.07845071703195572, -0.08115238696336746, -0.0175612885504961, 0.19438104331493378, -0.05640716478228569, 0.05078120529651642, -0.06279181689023972, 0.02101500891149044, -0.008622093126177788, -0.060631439089775085, 0.10806646198034286, -0.04627262055873871, 0.0748075395822525, 0.009745466522872448, 0.005093576852232218, -0.03831113502383232, -0.002057950245216489, 0.007798106409609318, -0.07061237841844559, 0.01632676087319851, -0.04377516359090805, 0.05617313086986542, -0.014401505701243877, -0.05148026719689369, 0.020287049934267998, -0.033690426498651505, -0.09111178666353226, -0.032809801399707794, -0.005140016321092844, 0.038823287934064865, -0.08252736926078796, -0.030677543953061104, 0.06985897570848465, -0.07768424600362778, -0.01770920865237713, 0.027165798470377922, 0.1633051335811615, 0.061038997024297714, -0.009286565706133842, 0.08167627453804016, -0.14494788646697998, -0.04996982589364052, 0.034064266830682755, -0.006659228820353746, -0.006572789512574673, -0.1163800060749054, 0.08105433732271194, -0.02739804796874523, 0.08957674354314804, -0.04791485145688057, 0.03748000040650368, 0.09638208895921707, 0.056967467069625854, 0.08919461071491241, -0.03367958217859268, 0.19939692318439484, -0.03696832433342934, -0.051811691373586655, 0.0681488886475563, 0.07832642644643784, 0.09797807782888412, 0.10214134305715561, -0.13317131996154785, 0.15073083341121674, -0.11043036729097366, -0.01315511204302311, 0.12389691919088364, -0.04413165897130966, 0.10805214196443558, -0.0927334651350975, -0.03422088176012039, -0.04416586458683014, -0.0012035333784297109, 0.011219898238778114, -0.09582703560590744, 0.09443479776382446, -0.06369511038064957, 0.023063968867063522, 0.061238646507263184, -0.033935174345970154, -0.05950404331088066, 0.0026064396370202303, -0.038568731397390366, -0.08337188512086868, 0.11143146455287933, 0.01119970716536045, 0.09131408482789993, -0.02420259267091751, 0.09893198311328888, 0.018945254385471344, 0.011556784622371197, 0.042933668941259384, 0.0003826965985354036, 0.0483381524682045, -0.10810904949903488, 0.13975943624973297, 0.05380866304039955, 0.05152785778045654, 0.004372758790850639, 0.12131698429584503, 0.06971085071563721, -0.09242309629917145, -0.05233975127339363, -0.03565177321434021, -0.008340182714164257, 0.07213888317346573, -0.037072572857141495, -0.11501618474721909, 0.058630649000406265, 0.07058441638946533, 0.11231058835983276, 0.0592116080224514, 0.013170898891985416, 0.010950084775686264, -0.06144193932414055, 0.009525901637971401, -0.041743528097867966, 0.07638433575630188, -0.032062847167253494, 0.05774401128292084, 0.07135482132434845, -0.04535156115889549, 0.040178004652261734, 0.08538593351840973, -0.001152422628365457, 0.01875372976064682, 0.02726120501756668, 0.07305005192756653, 0.07934398949146271, 0.09479488432407379, -0.21502353250980377, 0.07599655538797379, 0.06665724515914917, 0.03207049146294594, 0.03858513385057449, 0.09946436434984207, 0.0927189365029335, -0.01127124298363924, 0.1090051680803299, -0.014802997931838036, -0.00345214968547225, -0.03079885244369507, 0.01308211125433445, 0.07329754531383514, -0.03405224159359932, -0.07976836711168289, 0.048515018075704575, -0.021135622635483742, -0.06258036941289902, 0.1428433209657669, -0.06974555552005768, 0.09916093945503235, -0.05147087201476097, -0.016364172101020813, 0.00934450514614582, -0.027924062684178352, -0.042190343141555786, 0.02816712111234665, 0.10258405655622482, 0.003520723432302475, 0.04375971108675003, -0.03770071640610695, 0.08071441203355789, -0.01117578987032175, -0.026285193860530853, 0.057164937257766724, 0.11178627610206604, 0.07918448001146317, -0.00677427789196372, -0.03913868963718414, -0.003211564151570201, -0.09749174118041992, -0.020688403397798538, -0.052103444933891296, 0.026442496106028557, -0.009865582920610905, 0.05032391473650932, 0.07772873342037201, -0.0070236301980912685, 0.047378476709127426, 0.029576746746897697, -0.005287011153995991, 0.026627270504832268, -0.015878424048423767, -0.1361219584941864, -0.03317238762974739], +srem:[-0.031773850321769714, 0.047959908843040466, -0.001508916961029172, -0.029707839712500572, -0.008756157010793686, -0.029313718900084496, 0.08785077929496765, -0.06411100924015045, -0.08884602785110474, 0.018450934439897537, 0.05773799493908882, -0.01898481324315071, -0.020132772624492645, -0.11337616294622421, 0.09207563102245331, -0.1481732279062271, 0.06640464812517166, 0.034899137914180756, 0.016789259389042854, -0.07134171575307846, -0.035103391855955124, -0.01932670921087265, -0.037939805537462234, -0.042848169803619385, 0.12814994156360626, -0.018241118639707565, 0.011916713789105415, 0.12263843417167664, -0.063908651471138, 0.08715034276247025, 0.020259888842701912, 0.09727264940738678, -0.11514946073293686, 0.11841008812189102, 0.00015845824964344501, 0.15308326482772827, -0.07992839068174362, 0.06873097270727158, 0.0338875949382782, -0.014029431156814098, -0.024622313678264618, 0.03437761217355728, 0.0018059707945212722, 0.050411406904459, 0.08527471125125885, 0.000846204929985106, 0.060892246663570404, 0.07486899197101593, -0.00927410926669836, -0.07411570101976395, 0.06770166754722595, 0.004407020751386881, -0.03308539092540741, 0.05504636839032173, -0.032252728939056396, 0.016966549679636955, 0.0007017617463134229, -0.05978959798812866, 0.029697224497795105, -0.11256318539381027, -0.05322549119591713, 0.09739841520786285, -0.0813719630241394, -0.030836503952741623, -0.02748677134513855, -0.09726772457361221, -0.033511705696582794, -0.016680527478456497, 0.1499248743057251, 0.14276184141635895, -0.15444928407669067, -0.09020352363586426, 0.033118024468421936, 0.131826251745224, 0.07390563189983368, 0.09608875215053558, -0.03295205906033516, -0.0942780002951622, 0.009491103701293468, 0.006967047695070505, -0.07300013303756714, -0.09780777245759964, 0.1334500014781952, 0.10174363106489182, -0.01020547840744257, 0.1689968705177307, 0.06966426223516464, -0.04219771921634674, -0.1340956687927246, -0.10929503291845322, 0.04023371636867523, -0.11326669901609421, 0.12083262950181961, 0.09952718764543533, 0.04680562764406204, 0.06943651288747787, 0.0595562607049942, -0.023141924291849136, 0.11550387740135193, 0.08985331654548645, 0.060990575700998306, -0.019423503428697586, -0.0455617718398571, -0.000775703287217766, -0.051188308745622635, -0.055780503898859024, -0.08419559895992279, -0.08551041036844254, 0.016514787450432777, 0.08236353099346161, -0.07279417663812637, -0.060375653207302094, -0.03524176403880119, 0.14051489531993866, -0.14887367188930511, -0.03394332900643349, -0.026428641751408577, 0.03762159124016762, 0.13434500992298126, 0.04877122864127159, -0.02894464135169983, -0.11161685734987259, 0.00035923245013691485, 0.09437228739261627, 0.11731436848640442, -0.058419518172740936, 0.0714898332953453, 0.07869157195091248, -0.035543203353881836, -0.0072803860530257225, 0.08258792012929916, 0.032186996191740036, -0.09397095441818237, 0.0519745908677578, -0.004164739977568388, 0.013977406546473503, -0.056336645036935806, 0.0015726721612736583, 0.09510249644517899, -0.022490601986646652, -0.05961136519908905, -0.02083730325102806, -0.08664945513010025, -0.04372883960604668, -0.08761785924434662, -0.04932858422398567, -0.07072177529335022, -0.0840158686041832, 0.050030749291181564, 0.03278379514813423, 0.06545565277338028, 0.07138560712337494, -0.008790265768766403, 0.05531906709074974, -0.0448705293238163, -0.12043701112270355, 0.05931318551301956, 0.09734615683555603, 0.0728975459933281, 0.05675167217850685, 0.02571675181388855, -0.045026153326034546, -0.03701069951057434, 0.12255758047103882, 0.06945660710334778, -0.004045551177114248, 0.0032626702450215816, 0.04791421443223953, -0.03306940943002701, 0.05577700957655907, -0.07167237251996994, 0.03728247433900833, -0.08152187615633011, 0.06227318197488785, -0.00862576812505722, 0.1247112974524498, -0.12759874761104584, -5.119016350363381e-05, -0.10888632386922836, -0.04238711670041084, 0.08842276781797409, -0.021257253363728523, 0.11996622383594513, -0.1014576256275177, 0.03609681874513626, -0.10976022481918335, 0.0067039853893220425, -0.15920798480510712, -0.09848073869943619, 0.10855156183242798, -0.04796460270881653, 0.03837021067738533, -0.03655994310975075, -0.010443910025060177, -0.07305870950222015, 0.027421891689300537, -0.015217037871479988, -0.05604388937354088, 0.02599843218922615, 0.07668785005807877, 0.0189076978713274, -0.07879623025655746, 0.1372862160205841, -0.08779599517583847, 0.08376756310462952, 0.03813667222857475, -0.005227067042142153, -0.047498032450675964, -0.07833071053028107, -0.11298545449972153, 0.05422094464302063, 0.0778433233499527, -0.0002274753205711022, 0.04056011140346527, 0.0629657506942749, 0.031402427703142166, 0.1331436038017273, 0.10045888274908066, -0.019455045461654663, 0.10755902528762817, 0.04558786749839783, -0.05317891016602516, 0.13037234544754028, 0.07556074857711792, 0.07033905386924744, 0.061948105692863464, -0.04186994209885597, -0.10649958997964859, 0.11535949259996414, -0.11323252320289612, -0.0860709622502327, 0.06836793571710587, 0.06463031470775604, 0.1786976158618927, 0.0020158165134489536, 0.04646763205528259, 0.061342593282461166, -0.05355566367506981, -0.0301008690148592, -0.06097003072500229, 0.13479992747306824, 0.14051568508148193, 0.02668214589357376, 0.045018572360277176, -0.056441064924001694, 0.02239605411887169, 0.056542590260505676, 0.037829700857400894, 0.07043026387691498, -0.0683833509683609, 0.03423398733139038, -0.1097964271903038, -0.011630176566541195, 0.020754951983690262, -0.026781387627124786, -0.019817810505628586, -0.030109945684671402, 0.08743429183959961, -0.04839525744318962, -0.07300575822591782, -0.09534715116024017, -0.021075716242194176, -0.03134793043136597, 0.14302989840507507, 0.035287901759147644, -0.1215246170759201, 0.027819860726594925, -0.07973555475473404, -0.04350792616605759, 0.05396728590130806, 0.07445909082889557, 0.051564641296863556, 0.06326838582754135, -0.09233008325099945, 0.01981138437986374, 0.009866582229733467, 0.10666825622320175, -0.08699329942464828, 0.0015514593105763197, 0.051562804728746414, -0.03707553446292877, -0.02476322650909424, -0.11657286435365677, 0.01481273677200079, 0.010420506820082664, -0.04907146841287613, 0.09528505802154541, 0.11275757104158401, -0.02784431353211403, 0.007104963064193726, 0.08649715781211853, 0.015778927132487297, -0.04299849271774292, -0.042315248399972916, -0.04117522016167641, 0.03248037025332451, 0.12826567888259888, -0.08236309885978699, -0.09885424375534058, -0.11696772277355194], +store:[-0.04971972852945328, 0.044417623430490494, 0.08200641721487045, -0.10701671242713928, -0.07658485323190689, -0.02134331315755844, 0.07835592329502106, -0.006734571885317564, 0.02391616441309452, -0.10026069730520248, 0.07958665490150452, -0.016569161787629128, -0.08928074687719345, 0.0017873087199404836, 0.016799859702587128, -0.04343695566058159, -0.029958505183458328, 0.033732566982507706, -0.028077686205506325, -0.030750267207622528, -0.04263964667916298, -0.023210985586047173, -0.056857235729694366, -0.04574395343661308, 0.02786906622350216, -0.06689397245645523, 0.01221169251948595, 0.18517859280109406, 0.07206776738166809, 0.016266660764813423, 0.014786144718527794, -0.05146108567714691, 0.0019454527646303177, 0.1175387054681778, -0.0003237652708776295, 0.030976057052612305, -0.002141461241990328, 0.06923950463533401, -0.11784391850233078, 0.0193296167999506, -0.029852913692593575, 0.016586747020483017, 0.11907155811786652, 0.03406605124473572, -0.10421717911958694, -0.1530046910047531, -0.12395614385604858, 0.06566115468740463, -0.1458253413438797, -0.05139457806944847, 0.05711962282657623, 0.004115923307836056, 0.0806342139840126, -0.03545893356204033, -0.032249290496110916, 0.09651466459035873, -0.10045844316482544, -0.031727638095617294, 0.008258476853370667, -0.11098206043243408, 0.006516479421406984, -0.030135372653603554, -0.03823850676417351, -0.018322618678212166, -0.023886924609541893, -0.06418803334236145, -0.03262076899409294, -0.05279995873570442, 0.03047315403819084, -0.015118236653506756, -0.03398378938436508, -0.06840628385543823, 0.19075386226177216, 0.015959782525897026, -0.025271737948060036, 0.05429355800151825, -0.0003763934364542365, -0.10847350209951401, 0.011685546487569809, 0.12486834079027176, -0.06349245458841324, -0.08858142793178558, -0.008893191814422607, 0.01286684162914753, 0.08346416801214218, -0.06387101113796234, -0.027899956330657005, -0.031066112220287323, -0.15556758642196655, -0.10390722751617432, -0.0027356178034096956, -0.09115088731050491, 0.06057794392108917, 0.017679430544376373, -0.08869635313749313, 0.06730858236551285, 0.0421174056828022, -0.11894520372152328, -0.02395692653954029, -0.016033263877034187, 0.03570867329835892, -0.05443042516708374, 0.09794962406158447, 0.009594818577170372, 0.09107311815023422, -0.013650472275912762, -0.05990901589393616, -0.04300284385681152, -0.07370071858167648, -0.0835079476237297, -0.007898596115410328, -0.03654872253537178, -0.14792396128177643, -0.01794208586215973, -0.04919896647334099, -0.0774531215429306, 0.02892153710126877, -0.054199133068323135, -0.006547972094267607, 0.11163648962974548, 0.13739991188049316, 0.18920786678791046, 0.10081564635038376, -0.06938759237527847, 0.002326185815036297, 0.07719020545482635, 0.05307416990399361, -0.038947705179452896, 0.01782417669892311, -0.007397626992315054, -0.04255923628807068, 0.06926191598176956, -0.07311996072530746, 0.007997720502316952, 0.08985397964715958, -0.15681296586990356, -0.015735745429992676, 0.0008406825945712626, -0.009534144774079323, 0.020811066031455994, -0.08942613750696182, -0.016538318246603012, 0.0023737840820103884, 0.0038739724550396204, -0.04826132580637932, -0.12392082810401917, 0.07134886831045151, -0.05570531263947487, -0.08663035929203033, 0.03334686532616615, 0.14910027384757996, 0.0525599904358387, -0.008970619179308414, 0.08667635917663574, 0.11163549870252609, -0.04909313842654228, -0.004845813382416964, -0.10251110047101974, -0.08020871877670288, 0.03452519699931145, 0.1377865970134735, -0.03213875740766525, -0.03560444340109825, 0.0883825421333313, -0.015746403485536575, -0.1962481290102005, 0.17858336865901947, -0.041487421840429306, -0.03793688490986824, 0.1806269735097885, -0.02579205483198166, -0.07473767548799515, -0.11885246634483337, 0.1039368137717247, 0.1671990603208542, 0.08592119067907333, 0.02630292810499668, 0.12798166275024414, -0.04141998663544655, -0.11055567860603333, 0.030467713251709938, 0.14832209050655365, 0.027653150260448456, -0.09167490899562836, -0.0632404163479805, 0.08034209907054901, 0.003861083649098873, 0.032830461859703064, -0.09213913232088089, -0.07858961820602417, 0.01856987364590168, 0.019118404015898705, 0.06739651411771774, -0.02481355518102646, -0.033643294125795364, 0.025794189423322678, -0.019332662224769592, -0.1455482393503189, 0.07851701974868774, 0.010653417557477951, 0.045994602143764496, -0.06685011088848114, 0.07242992520332336, 0.01358861569315195, 0.007078635040670633, -0.12171123176813126, 0.004494101274758577, 0.008166715502738953, -0.06505636125802994, 0.03772241622209549, 0.05472663789987564, 0.09825114905834198, 0.014858143404126167, 0.04074765369296074, 0.06662239134311676, -0.08190016448497772, -0.03465292602777481, 0.02382473833858967, -0.15622179210186005, 0.07096265256404877, -0.029277147725224495, -0.04252074286341667, 0.04923190921545029, 0.07738205045461655, 0.11463356763124466, 0.058205746114254, 0.024775007739663124, 0.054823048412799835, -0.053959112614393234, 0.023927779868245125, -0.08229716867208481, -0.025479603558778763, -0.0007279254496097565, 0.05579518526792526, 0.07213998585939407, 0.05480479076504707, 0.018405497074127197, 0.00874614343047142, 0.0872693881392479, 0.03627000004053116, 0.06748533993959427, 0.008107784204185009, 0.0845460295677185, 0.0489891842007637, 0.08375927060842514, -0.05632681027054787, 0.052587080746889114, 0.03294927626848221, 0.011770343407988548, 0.08335809409618378, 0.10204261541366577, -0.011862446554005146, 0.05825890600681305, 0.10474685579538345, 0.021627193316817284, -0.15260478854179382, 0.012332424521446228, 0.048941489309072495, -0.040840718895196915, 0.19146542251110077, 0.01515199989080429, -0.01637181267142296, -0.01308174803853035, 0.13924534618854523, -0.03403598070144653, -0.1069948822259903, -0.0071998098865151405, -0.014001203700900078, -0.00016684288857504725, -0.0332498699426651, -0.02667677029967308, 0.012901727110147476, 0.058791693300008774, 0.01530192606151104, 0.047005798667669296, 0.03661877661943436, 0.08168043941259384, -0.11059480905532837, -0.02836223691701889, 0.07217198610305786, -0.020697547122836113, 0.05071627348661423, 0.023941367864608765, -0.20232167840003967, -0.06786561012268066, -0.06963495910167694, 0.09562353044748306, 0.018907392397522926, 0.11807957291603088, -0.02942139282822609, 0.032738763839006424, 0.025017349049448967, -0.020705347880721092, 0.03740844130516052, -0.020683778449892998, -0.016085484996438026, -0.06666237860918045, -0.01596677117049694, -0.13523396849632263, 0.005948318634182215], +structTy:[-0.08361160755157471, -0.07360938936471939, -0.07405316829681396, 0.10408192873001099, 0.02414027415215969, -0.09117576479911804, -0.08607939630746841, -0.10958167910575867, 0.09316577017307281, 0.004989049397408962, 0.06087125837802887, -0.09833820909261703, -0.022252539172768593, 0.033574964851140976, -0.03174233436584473, -0.011434386484324932, 0.0759473592042923, 0.05155142769217491, -0.026595046743750572, 0.04420582577586174, 0.10437613725662231, 0.09845101088285446, -0.08351573348045349, 0.08479045331478119, -0.11276446282863617, 0.07914043962955475, -0.09180954843759537, -0.06704092770814896, 0.04597971960902214, -0.003439761232584715, -0.052333299070596695, 0.10281134396791458, 0.09519851952791214, -0.02325957827270031, -0.09276758134365082, -0.0017066288273781538, -0.05967172980308533, -0.10375042259693146, -0.005404969677329063, 0.004870743956416845, 0.012701724655926228, -0.020123153924942017, -0.058548860251903534, -0.09143217653036118, -0.00834690686315298, -0.013998281210660934, -0.027574893087148666, 0.05681154131889343, -0.005608433857560158, 0.0459037609398365, -0.11260940879583359, 0.09128095209598541, 0.09756726026535034, 0.02997775562107563, -0.07565020769834518, -0.1001066267490387, 0.030489901080727577, 0.08005943894386292, 0.09222111105918884, 0.05166938155889511, 0.08627169579267502, 0.07834259420633316, -0.07402188330888748, 0.10556779056787491, -0.054814547300338745, 0.09564843773841858, -0.08897080272436142, -0.0007424384239129722, 0.06861337274312973, -0.11772625893354416, 0.016371965408325195, -0.015365778468549252, 0.00487546157091856, -0.018551355227828026, 0.08436489850282669, -0.08007264137268066, 0.06240132078528404, 0.11333631724119186, 0.09958779811859131, -0.05816347897052765, 0.10661553591489792, 0.10470148921012878, -0.056361373513936996, 0.0008160197758115828, 0.008269467391073704, -0.013151095248758793, 0.0856509730219841, 0.110316701233387, 0.006158796139061451, -0.07439932227134705, 0.10022538155317307, -0.058474477380514145, -0.10949797928333282, 0.015580895356833935, -0.005690073128789663, -0.10246286541223526, 0.08105571568012238, 0.00563086336478591, 0.0688023790717125, 0.0026998252142220736, -0.12004145979881287, 0.05769679695367813, -0.11123661696910858, 0.07894744724035263, -0.059244368225336075, 0.04257362335920334, 0.06363872438669205, 0.10835497826337814, -8.505670848535374e-05, 0.05449683219194412, -0.04116721451282501, -0.003421459114179015, -0.011796514503657818, 0.08846912533044815, 0.08944084495306015, 0.03469838574528694, 0.039786990731954575, -0.02434125915169716, 0.06233520805835724, 0.01563398540019989, 0.04453744739294052, 0.012545434758067131, 0.05786297470331192, 0.09754762053489685, -0.11966440081596375, 0.08636506646871567, 0.08306284993886948, -0.09222529828548431, -0.10288204997777939, -0.08504027128219604, 0.06824979186058044, 0.10984799265861511, 0.126225546002388, 0.07422945648431778, 0.003929561004042625, -0.031481947749853134, 0.09479255229234695, -0.10278116911649704, -0.1083633154630661, 0.08820655941963196, 0.08094445616006851, 0.05030558258295059, 0.053474392741918564, -0.05840025097131729, 0.07107456773519516, 0.013759223744273186, -0.09396913647651672, 0.060369424521923065, 0.08157633990049362, -0.12261992692947388, -0.0008293483988381922, -0.07208742201328278, 0.0017749110702425241, -0.10529199987649918, 0.07315176725387573, 0.09637604653835297, -0.11701032519340515, 0.04464360699057579, -0.09880359470844269, 0.003237213473767042, -0.01141350157558918, -0.09070904552936554, 0.04412248358130455, -0.0020025812555104494, -0.021778304129838943, -0.004891080316156149, 0.02440662682056427, 0.021442757919430733, -0.1081339493393898, -0.04153110086917877, 0.06231661140918732, 0.08391135931015015, 0.04171259328722954, -0.10438728332519531, -0.014650248922407627, -0.11937888711690903, 0.055069662630558014, -0.09430503845214844, 0.11703053116798401, 0.06204991415143013, 0.01858559250831604, 0.006669578142464161, -0.06911739706993103, 0.1092468723654747, -0.00281420536339283, 0.010318244807422161, -0.06933686137199402, -0.01773148775100708, 0.10293345153331757, -0.07275097072124481, -0.08717622607946396, 0.07035788148641586, -0.0633709579706192, 0.009571311064064503, 0.08675725013017654, 0.09013639390468597, -0.10092238336801529, 0.016310522332787514, -0.08798032253980637, 0.09425347298383713, -0.0773620754480362, 0.0742240771651268, 0.0533631257712841, -0.01301475428044796, -0.007319001946598291, -0.004791442304849625, -0.06880433857440948, -0.10195131599903107, 0.10785724967718124, -0.008099346421658993, 0.10425788164138794, 0.07601628452539444, -0.03847062587738037, -0.07717537134885788, -0.01830068603157997, 0.03171364217996597, 0.0747760534286499, -0.08966264128684998, -0.0018347912700846791, -0.10611964017152786, -0.059940971434116364, 0.0530586838722229, -0.03595719113945961, -0.0874112993478775, -0.06509315967559814, -0.11555398255586624, -0.093295618891716, 0.10696512460708618, -0.09405399858951569, 0.10354438424110413, 0.1041775718331337, 0.02947007305920124, -0.023612285032868385, -0.03209448233246803, 0.07196296751499176, -0.00015697676280979067, 0.10043744742870331, -0.004799524322152138, -0.025322049856185913, 0.018035059794783592, -0.07149341702461243, -0.03649221360683441, -0.028224676847457886, -0.06323933601379395, 0.03155459091067314, 0.09755459427833557, 0.10150737315416336, 0.07779963314533234, -0.07525842636823654, -0.0821162685751915, 0.01645299792289734, -0.06546781957149506, -0.09391064941883087, -0.04945218190550804, -0.08334687352180481, -0.008122531697154045, -0.12522092461585999, 0.11314360052347183, 0.014613112434744835, 0.01833389326930046, -0.05908660963177681, 0.10677710175514221, 0.10503166913986206, -0.11977481842041016, 0.01457599550485611, -0.05384974926710129, -0.022275827825069427, -0.08507922291755676, -0.10383602976799011, -0.06807727366685867, 0.08105213195085526, -0.07308648526668549, -0.12425429373979568, 0.050461020320653915, -0.08264443278312683, -0.05446835979819298, -0.020420458167791367, 0.02929041162133217, -0.08379453420639038, -0.08349412679672241, 0.09558173269033432, 3.553794522304088e-05, 0.09001443535089493, 0.040953341871500015, 0.01276447158306837, 0.09799212962388992, -0.039461709558963776, -0.09516990929841995, -5.6519336794735864e-05, -0.09978031367063522, -0.08272931724786758, -0.0225196722894907, 0.10203667730093002, -0.10626862198114395, -0.05066903680562973, -0.09444557875394821, -0.013252616859972477, 0.019328158348798752, 0.10419118404388428, -0.037949275225400925], +sub:[0.0015674136811867356, 0.04665481671690941, 0.0795540139079094, -0.09147033095359802, -0.06408612430095673, -0.030933387577533722, 0.0943334549665451, -0.030204826965928078, 0.009418431669473648, 0.057824522256851196, -0.024884281679987907, -0.01576460897922516, -0.08142802119255066, -0.049488190561532974, -0.030650833621621132, 0.015455596148967743, 0.019214767962694168, 0.15674079954624176, 0.010380789637565613, -0.03826778754591942, -0.14306950569152832, -0.019194988533854485, -0.0849871039390564, 0.10049542784690857, 0.030890362337231636, -0.03914830461144447, 0.04554243013262749, 0.046395376324653625, 0.02820444479584694, -0.06882693618535995, 0.014682960696518421, -0.0765964537858963, -0.0577707514166832, 0.12417732924222946, -6.986455991864204e-05, 0.024936949834227562, -0.08193857967853546, 0.07098895311355591, 0.22490569949150085, 0.06395485252141953, -0.0866766944527626, 0.1665082722902298, -0.09167514741420746, 0.0359635129570961, 0.07173211872577667, -0.19923308491706848, -0.012274091131985188, 0.12049606442451477, 0.03912179917097092, -0.09150964766740799, -0.009395266883075237, -0.014051699079573154, -0.01749585010111332, -0.02004212699830532, -0.03308963030576706, 0.01929560862481594, 0.041398316621780396, -0.08211381733417511, 0.06479399651288986, -0.11337631940841675, -0.022441385313868523, 0.02020230144262314, 0.10099517554044724, -0.0255244392901659, -0.13075360655784607, -0.08028466999530792, -0.03729937598109245, -0.013678125105798244, -0.04245949164032936, 0.06385946273803711, -0.10373940318822861, -0.09282763302326202, -0.12953616678714752, 0.05349662899971008, -0.15257787704467773, 0.04503490403294563, -0.025028889998793602, -0.007145483512431383, -0.04043801873922348, 0.0693741962313652, -0.06987852603197098, -0.09542115777730942, 0.0011400608345866203, -0.11975718289613724, 0.04088945314288139, -0.06240523234009743, 0.0026371863204985857, -0.04153193533420563, 0.07349647581577301, -0.10849731415510178, -0.1035107895731926, -0.09274843335151672, 0.11346734315156937, 0.09939823299646378, 0.11946797370910645, 0.06926221400499344, 0.03467157483100891, -0.1499374806880951, -0.03536408394575119, 0.03032950684428215, 0.022492732852697372, -0.055456001311540604, -0.006312037818133831, 0.0009808866307139397, 0.07973909378051758, -0.08338665962219238, -0.02082870900630951, -0.04643549770116806, 0.02957702986896038, -0.0772773027420044, -0.031660158187150955, 0.07814953476190567, 0.09358882904052734, -0.01373444963246584, -0.0994613915681839, 0.12008858472108841, 0.004042282234877348, 0.14210443198680878, -0.04077443107962608, -0.005960023961961269, 0.01468024030327797, -0.04511720687150955, 0.10079893469810486, -0.10685764998197556, 0.07773791998624802, 0.1131059005856514, 0.06867734342813492, -2.0177021724521182e-06, -0.03942057490348816, -0.007854804396629333, -0.05871739238500595, 0.03204762563109398, -0.07880906015634537, 0.011417700909078121, 0.11361880600452423, 0.05970784276723862, -0.04397479072213173, -0.08445017039775848, 0.021598227322101593, 0.09634491056203842, -0.11149788647890091, 0.006195344962179661, -0.1297815442085266, -0.05586714297533035, -0.07671796530485153, 0.05513051897287369, 0.0715518444776535, -0.07825880497694016, 0.0032111925538629293, 0.028074773028492928, -0.10721087455749512, 0.06657112389802933, -0.009002352133393288, 0.0907585471868515, 0.12490428984165192, -0.0839475765824318, 0.014123831875622272, -0.08841925114393234, 0.009690893813967705, 0.02677491307258606, 0.10204251110553741, -0.039505548775196075, -0.03630155324935913, 0.08876899629831314, -0.0694696456193924, -0.02495126612484455, 0.09705783426761627, -0.03867233544588089, -0.03915746137499809, 0.183444082736969, -0.014818299561738968, 0.07244696468114853, -0.11715292185544968, 0.039395466446876526, -0.10076174885034561, 0.10724980384111404, 0.020929470658302307, 0.1389075368642807, 0.001982703572139144, -0.022535543888807297, 0.012453182600438595, 0.1476937234401703, 0.11023294180631638, 0.033730871975421906, 0.04924989491701126, -0.05815943330526352, 0.08906052261590958, 0.032145410776138306, -0.10098668932914734, 0.08029337972402573, -0.09400228410959244, 0.03932996094226837, 0.0558757483959198, 0.0932844802737236, -0.06538447737693787, 0.026971101760864258, -0.03696002811193466, 0.11403639614582062, 0.05031444877386093, 0.01470242440700531, 0.0177376177161932, -0.06869864463806152, 0.09705174714326859, -0.09076172113418579, 0.009166243486106396, 0.10089252144098282, -0.0030546444468200207, -0.015492035076022148, -0.12144159525632858, -0.029356425628066063, 0.05505098029971123, 0.044179730117321014, -0.017465056851506233, 0.04143166169524193, 0.014954052865505219, -0.042381059378385544, 0.0001551959867356345, 0.024820517748594284, -0.11647004634141922, 0.08123502135276794, -0.07944680005311966, -0.06259376555681229, 0.01688639260828495, 0.07153220474720001, 0.06972166150808334, 0.07951896637678146, 0.03795585408806801, -0.04275653511285782, -0.0719236508011818, 0.012885736301541328, -0.08623940497636795, -0.011710231192409992, 0.005101348273456097, 0.059776902198791504, 0.04817093536257744, -0.13081325590610504, 0.04218887910246849, 0.011067705228924751, 0.012497936375439167, -0.1610550433397293, 0.10822229087352753, 0.017338208854198456, -0.013744452968239784, 0.04445984587073326, -0.06945493817329407, -0.012541360221803188, 0.06437414884567261, -0.029521306976675987, -0.0313396081328392, 0.06210543215274811, 0.02678563818335533, 0.010353059507906437, 0.07134100049734116, 0.05034991353750229, -0.05491418391466141, -0.19086696207523346, 0.012253126129508018, 0.06917957216501236, -0.049999650567770004, 0.012286989018321037, 0.051876407116651535, -0.025582242757081985, -0.0239481832832098, 0.12989115715026855, -0.07619506120681763, -0.11195886880159378, 0.0046717580407857895, -0.06826931238174438, -0.04230207949876785, 0.048865921795368195, 0.07492770999670029, 0.09132992476224899, 0.043867286294698715, 0.05744504928588867, -0.06352544575929642, 0.0521608404815197, 0.05468685179948807, -0.11715856194496155, -0.0013959573116153479, 0.0598413422703743, -0.03187147527933121, -0.05766543373465538, -0.01279046107083559, -0.21359410881996155, -0.115175262093544, -0.07615019381046295, 0.1078236922621727, 0.014912080951035023, 0.08484426140785217, -5.864247214049101e-05, 0.0629824548959732, 0.14691655337810516, -0.06580507755279541, -0.03322471305727959, -0.013611530885100365, 0.05959806218743324, 0.09283313155174255, -0.10597024857997894, -0.12793609499931335, 0.05993163585662842], +switch:[0.14962570369243622, -0.10274995863437653, 0.08453474193811417, -0.08141396194696426, 0.04031609743833542, -0.02382514625787735, 0.09908899664878845, 0.006155394949018955, 0.005619867704808712, -0.10592629015445709, -0.09311628341674805, -0.013621296733617783, 0.053503502160310745, 0.008223575539886951, -0.06598089635372162, 0.04570701718330383, -0.03103696182370186, -0.12451750785112381, 0.012521527707576752, 0.0404103584587574, -0.08579517155885696, -0.019523564726114273, -0.07475165277719498, -0.04410257190465927, 0.029725318774580956, -0.014739610254764557, 0.1563223898410797, 0.04953489825129509, 0.014889194630086422, -0.0002711485722102225, 0.015207545831799507, -0.08676698058843613, -0.01746664009988308, 0.12340609729290009, 0.10725226998329163, -0.06609523296356201, -0.02992386557161808, 0.07254993915557861, 0.12243399024009705, 0.11152840405702591, 0.10344668477773666, 0.06486872583627701, 0.01526141632348299, 0.037261128425598145, -0.004076751880347729, -0.12189572304487228, 0.020933670923113823, 0.057233069092035294, -0.07193546742200851, 0.12553103268146515, 0.09347222000360489, 0.003938339650630951, 0.004050334449857473, -0.015432210639119148, -0.03401419147849083, 0.02360450103878975, -0.0028894012793898582, -0.044668834656476974, 0.00683643389493227, 0.14878755807876587, 0.05174317583441734, -0.060470521450042725, -0.08285567164421082, -0.016257647424936295, -0.038251157850027084, -0.06361519545316696, 0.003918623086065054, -0.024270137771964073, -0.03742099553346634, 0.0366273932158947, -0.11544112116098404, -0.0023120269179344177, -0.0412856824696064, 0.10861723870038986, -0.0219819825142622, -0.023171614855527878, -0.021767335012555122, -0.059486065059900284, -0.03368749842047691, -0.0318775437772274, -0.06874026358127594, -0.09412696957588196, -0.13255909085273743, -0.002240414498373866, 0.07998622208833694, -0.09330325573682785, -0.07485093176364899, 0.07852760702371597, -0.00816309917718172, -0.1095949336886406, -0.12389626353979111, -0.09467262029647827, 0.07246922701597214, 0.0608552061021328, -0.0825665146112442, 0.07220235466957092, -0.049801308661699295, 0.005668021272867918, -0.025404242798686028, -0.06764321774244308, -0.040746696293354034, 0.18408866226673126, -0.01459529995918274, 0.0005851479945704341, 0.1009078249335289, 0.03173230588436127, 0.03583206981420517, -0.049910854548215866, -0.0014694605488330126, 0.19885653257369995, -0.15210042893886566, -0.01833675429224968, -0.08312629163265228, -0.018663570284843445, -0.039891693741083145, -0.058226872235536575, -0.14744925498962402, 0.11286657303571701, -0.16167142987251282, -0.03393489867448807, 0.031250517815351486, -0.002359474543482065, -0.1136842891573906, -0.06575585901737213, -0.01903143711388111, -0.037503715604543686, 0.06227009370923042, -0.029168693348765373, -0.011677777394652367, -0.00777241587638855, 0.0882468894124031, 0.03380058705806732, -0.07715120166540146, 0.017464855685830116, -0.08506354689598083, -0.09674680978059769, -0.015041358768939972, 0.0007459159824065864, 0.09585776180028915, 0.03194683417677879, -0.11158805340528488, -0.056489862501621246, -0.13086910545825958, -0.10437189042568207, -0.07119963318109512, -0.055637773126363754, -0.1370236575603485, 0.10145001858472824, 0.10356093943119049, 0.006798509508371353, 0.0009572402923367918, 0.06850577145814896, -0.0095210000872612, 0.0657898411154747, -0.1883183866739273, -0.0024204272776842117, 0.009780559688806534, 0.047107309103012085, -0.012578307650983334, -0.1321909874677658, -0.16750943660736084, -0.02437930554151535, -0.03817836195230484, 0.09426748007535934, -0.08255535364151001, 0.1178276538848877, -0.06024260073900223, 0.042225394397974014, -0.031579311937093735, -0.07933435589075089, -0.07868128269910812, -0.03801361471414566, -0.06992977857589722, 0.11265551298856735, -0.15399618446826935, -0.08693845570087433, 0.003723789006471634, 0.07791718095541, 0.01803484931588173, 0.00012012725346721709, -0.02663370780646801, -0.05661261826753616, 0.14695699512958527, -0.09922283887863159, 0.13632448017597198, 0.013360077515244484, 0.002086453605443239, -0.098868727684021, -0.08853819966316223, 0.10193338990211487, 0.15911082923412323, 0.020433012396097183, 0.06692405790090561, 0.01478339172899723, -0.1450519859790802, 0.010874173603951931, 0.11691174656152725, 0.07650164514780045, 0.026213252916932106, -0.054021723568439484, 0.14089737832546234, 0.08838625997304916, 0.07621070742607117, -0.08596653491258621, 0.0130928885191679, -0.02692406065762043, -0.0040626851841807365, 0.1529596894979477, -0.08604788780212402, -0.038219153881073, 0.05665616691112518, -0.06580713391304016, -0.14038480818271637, 0.04342431575059891, 0.07919356971979141, 0.07996254414319992, -0.046260375529527664, 0.10128883272409439, -0.07256145775318146, 0.07674195617437363, 0.04618543013930321, -0.048304323107004166, 0.07531844079494476, 0.06393212825059891, -0.010236922651529312, -0.08864151686429977, 0.015613913536071777, -0.013765438459813595, -0.0620676726102829, 0.016174407675862312, -0.08622487634420395, 0.005728397984057665, 0.12835995852947235, -0.06890133023262024, -0.0726422592997551, -0.03677430376410484, 0.019641397520899773, -0.10939740389585495, -0.17169667780399323, 0.15251249074935913, -0.08413533866405487, -0.15451474487781525, 0.14466893672943115, -0.17037129402160645, 0.09082011878490448, -0.06909491121768951, 0.0696893185377121, 0.01503750216215849, 0.012711097486317158, -0.07675936818122864, 0.08142887055873871, -0.013794632628560066, 0.08289287239313126, 0.033050842583179474, 0.0371064655482769, 0.01213047280907631, 0.021191837266087532, 0.0675322562456131, 0.08520225435495377, -0.030420387163758278, 0.029360933229327202, -0.02426156960427761, 0.08670777827501297, 0.07267207652330399, -0.0815712958574295, 0.0038313507102429867, -0.13182368874549866, 0.10919918864965439, 0.011309292167425156, -0.02820449508726597, 0.006136057432740927, 0.057462841272354126, -0.05835573002696037, 0.036660607904195786, 0.06126013770699501, -0.09327443689107895, -0.06031296029686928, 0.12305302917957306, -0.009590045548975468, 0.05616858974099159, -0.13757166266441345, 0.13854758441448212, -0.0351974293589592, 0.016416391357779503, -0.09347070008516312, -0.07150600105524063, 0.07569410651922226, 0.13533148169517517, -0.04774151369929314, 0.029145171865820885, 0.04474230110645294, 0.025312146171927452, -0.01444824505597353, 0.051204971969127655, 0.0661691278219223, -0.01572737842798233, -0.0023164900485426188, 0.03160812705755234, 0.11355960369110107, 0.05389847233891487], +trunc:[-0.07951313257217407, 0.06414914131164551, 0.08159318566322327, -0.07503467798233032, -0.008445953018963337, 0.01306707039475441, 0.07453812658786774, 0.09546362608671188, 0.02779334783554077, -0.015506818890571594, 0.009347734041512012, -0.01327179279178381, 0.0932994931936264, 0.032084204256534576, 0.06592418253421783, 0.008649937808513641, 0.03590470552444458, -0.038645967841148376, 0.016891852021217346, -0.08445967733860016, -0.04373728111386299, -0.018587879836559296, -0.053873561322689056, -0.049655310809612274, 0.022220280021429062, -0.08588820695877075, 0.04263828694820404, -0.017587976530194283, -0.1323542594909668, 0.04653947055339813, 0.03539242595434189, -0.07558204978704453, 0.04376571252942085, 0.11761152744293213, 4.5500699343392625e-05, 0.05954208970069885, -0.11043372750282288, 0.06931006908416748, 0.14323842525482178, 0.13191457092761993, -0.005376465152949095, -0.07617980241775513, 0.05787240341305733, 0.03956012800335884, -0.06576187163591385, 0.005490312818437815, 0.03476285934448242, 0.05769937485456467, 0.15034043788909912, -0.07028082013130188, -0.0018525893101468682, 0.01540207490324974, -0.002454930217936635, -0.04270010069012642, -0.12303298711776733, -0.0483614020049572, 0.049391504377126694, -0.09294848144054413, -0.02993105724453926, -0.1165161058306694, -0.05665504187345505, -0.10489271581172943, 0.05538308992981911, 0.02578553557395935, -0.04938770830631256, 0.11502822488546371, -0.020813707262277603, -0.03360366076231003, 0.017982734367251396, -0.007027624174952507, -0.02338952012360096, -0.04587079957127571, -0.021713316440582275, 0.1596640646457672, 0.012294084765017033, 0.04185600206255913, -0.036387499421834946, 0.01501548383384943, -0.04078708961606026, 0.13140611350536346, -0.07454649358987808, -0.09981594234704971, -0.01437339372932911, -0.010966921225190163, 0.003577748779207468, 0.03540130704641342, 0.07235337793827057, -0.04984516277909279, -0.026144204661250114, -0.10909579694271088, 0.038387324661016464, -0.0129610700532794, 0.10767869651317596, 0.06972377002239227, 0.061813149601221085, 0.071278415620327, 0.043032705783843994, -0.04040383920073509, -0.03419690951704979, -0.06746512651443481, 0.02223099023103714, -0.07585133612155914, 0.0603497251868248, 0.019352097064256668, 0.09817478060722351, 0.11455050110816956, -0.05437025800347328, -0.0343216173350811, 0.04423563927412033, -0.057803161442279816, 0.03951446712017059, 0.0651162788271904, 0.21429824829101562, -0.018834475427865982, -0.08969874680042267, -0.1854049265384674, 0.004424156621098518, 0.07183679938316345, -0.12820954620838165, -0.14534339308738708, 0.08326692879199982, -0.20353694260120392, 0.10711156576871872, -0.09852704405784607, 0.12264703214168549, -0.05784820392727852, 0.05378235504031181, 0.061682820320129395, 0.024569999426603317, -0.0077156792394816875, -0.04410857334733009, 0.03292320296168327, -0.10007014870643616, 0.009333779104053974, 0.030034789815545082, 0.06613503396511078, -0.012904394418001175, 0.003454112447798252, 0.001727219787426293, 0.0017066943692043424, -0.11188264936208725, -0.1540212482213974, -0.04588659480214119, 0.05433059111237526, -0.08067864924669266, -0.01198786124587059, 0.06864620745182037, -0.03610426187515259, 0.0003867037012241781, 0.03014518693089485, 0.1692337989807129, 0.09707587957382202, -0.007693469058722258, 0.07470954209566116, 0.043206293135881424, -0.05106055736541748, 0.050898559391498566, 0.03235660493373871, 0.020037179812788963, 0.03547132760286331, 0.25441938638687134, -0.01725725457072258, 0.08486796170473099, 0.09271307289600372, -0.0722251906991005, 0.09933163970708847, 0.008984774351119995, -0.11824964731931686, -0.043885890394449234, 0.007339440286159515, -0.023199869319796562, -0.09771794825792313, -0.15416941046714783, 0.0307310838252306, 0.19008268415927887, -0.08130163699388504, 0.007939685136079788, 0.11587367206811905, -0.08870090544223785, -0.053779929876327515, 0.06165093928575516, -0.05463731288909912, -0.04869956150650978, -0.1099979504942894, 0.03883933275938034, -0.06411039084196091, 0.1238521933555603, 0.005240284837782383, -0.11090466380119324, 0.08601466566324234, -0.02003219723701477, 0.014816537499427795, -0.12629784643650055, -0.1396520733833313, -0.0505533292889595, 0.02700900100171566, -0.01842656172811985, -0.06778690963983536, 0.015475595369935036, 0.05332954600453377, -0.0277799591422081, -0.0687655434012413, -0.08810964971780777, 0.03514792397618294, 0.0905623733997345, 0.11453413963317871, 0.002271044533699751, -0.01756833679974079, -0.09945975989103317, -0.00018896246911026537, 0.05695574730634689, -0.04088664799928665, -0.018895039334893227, 0.04240760952234268, 0.0906294733285904, -0.12006420642137527, 0.009513198398053646, 0.01971057988703251, -0.1979537159204483, 0.0847327709197998, 0.04653981700539589, -0.03832777962088585, -0.011602303944528103, 0.08570396900177002, 0.030604692175984383, 0.04108734056353569, 0.03728118911385536, -0.011893381364643574, -0.050408244132995605, 0.008796093985438347, -0.09150584042072296, -0.07372382283210754, 0.010948792099952698, 0.0606093555688858, 0.06771112233400345, -0.07431023567914963, 0.06621294468641281, -0.00444953003898263, 0.12186556309461594, -0.07083216309547424, -0.05871906504034996, -0.08241914212703705, -0.051321353763341904, 0.04841344431042671, 0.105034239590168, 0.030644850805401802, 0.056338079273700714, -0.022607775405049324, 0.010793570429086685, 0.15835219621658325, 0.24019043147563934, -0.10704215615987778, 0.11868908256292343, -0.06784447282552719, 0.007383790798485279, -0.12098336219787598, 0.025611629709601402, 0.05198843032121658, 0.04926358908414841, 0.019229546189308167, 0.06256405264139175, -0.021301068365573883, -0.024699026718735695, 0.14940525591373444, -0.07230907678604126, -0.12684345245361328, 0.021399658173322678, -0.017396846786141396, 0.010432043112814426, 0.06596607714891434, -0.05422654747962952, 0.025615794584155083, 0.12371914833784103, -0.010639705695211887, 0.06651632487773895, 0.05253958702087402, 0.12133392691612244, -0.08680161833763123, 0.09593641012907028, -0.017695996910333633, -0.008367344737052917, 0.009896607138216496, -0.026651883497834206, -0.02466929331421852, 0.035099051892757416, -0.04756166413426399, -0.036847058683633804, 0.07710212469100952, 0.11452525854110718, -0.0146833760663867, 0.04984636604785919, -0.02657925896346569, -0.08254722505807877, -0.06978054344654083, 0.06659213453531265, 0.09607978910207748, 0.19404852390289307, -0.04275873675942421, -0.1351197063922882, 0.05370202660560608], +udiv:[-0.055299680680036545, -0.026175500825047493, -0.00979585014283657, -0.005144041031599045, 0.017134666442871094, -0.05739424377679825, 0.08325008302927017, -0.039255641400814056, 0.03497419133782387, 0.03305692598223686, 0.06931927055120468, -0.018079984933137894, -0.04999805614352226, 0.019307278096675873, 0.08100062608718872, 0.11734669655561447, 0.06702791154384613, 0.1236974224448204, 0.017054526135325432, -0.10315205156803131, 0.008102193474769592, -0.017972977831959724, -0.05138253793120384, -0.04495323821902275, 0.025852402672171593, -0.07977383583784103, 0.11357573419809341, 0.05759744346141815, -0.04922371357679367, 0.007193971425294876, 0.03285779431462288, 0.02912658266723156, -0.12187691032886505, -0.00988207571208477, 0.0002831123711075634, 0.03493749350309372, -0.12269337475299835, 0.1147705614566803, 0.0004834768478758633, 0.015319442376494408, -0.1374063640832901, 0.07558559626340866, 0.0541214756667614, 0.05100185051560402, -0.034123096615076065, -0.10987169295549393, -0.010694854892790318, 0.06425868719816208, -0.027027497068047523, 0.03415019065141678, -0.07489576190710068, -0.04807411879301071, -0.0074179284274578094, -0.032832518219947815, -0.03206659480929375, 0.007413068786263466, 0.08696936070919037, -0.09715336561203003, -0.030288400128483772, -0.11225340515375137, 0.017321767285466194, -0.06805490702390671, -0.07643428444862366, 0.02267417497932911, 0.060695379972457886, -0.06408815085887909, 0.09233158826828003, 0.003536576172336936, -0.04894963651895523, 0.05927463248372078, -0.1121433824300766, -0.08030885457992554, -0.0005949650076217949, 0.0463801771402359, 0.0738769993185997, -0.03529691323637962, -0.02675575576722622, -0.03380666673183441, 0.08570435643196106, 0.20510420203208923, 0.007532380521297455, -0.09894061088562012, 0.020136632025241852, 0.039277058094739914, -0.09670163691043854, -0.11604107916355133, 0.10024953633546829, -0.04853145405650139, -0.018074041232466698, -0.10613859444856644, 0.0843505933880806, 0.1313433200120926, -0.0991227850317955, 0.09163474291563034, -0.028840376064181328, 0.0809764638543129, 0.015736818313598633, 0.02386111207306385, -0.07006186246871948, -0.06522855907678604, 0.04660161957144737, -0.03876215219497681, 0.04904725402593613, -0.014532762579619884, 0.07474484294652939, -0.09604284912347794, -0.012432022020220757, -0.10261738300323486, 0.09739215672016144, 0.09603600203990936, 0.018925627693533897, 0.018277011811733246, -0.011554508469998837, 0.13949048519134521, -0.1475820243358612, -0.004744743462651968, 0.038475848734378815, 0.08716700971126556, -0.028017399832606316, 0.005637678783386946, -0.021814357489347458, -0.11754962801933289, 0.1124701201915741, -0.0958305150270462, 0.11580526828765869, -0.07858852297067642, 0.11478061228990555, 0.03706273064017296, -0.01724422164261341, 7.360780000453815e-05, -0.07032424211502075, 0.051615212112665176, -0.10425576567649841, 0.008375816978514194, -0.026784615591168404, -0.007153044920414686, -0.055550310760736465, 0.002730076899752021, -0.01631726324558258, 0.10483027994632721, -0.11702408641576767, -0.04412880912423134, 0.016300292685627937, -0.0901593491435051, 0.11821988224983215, -0.00033713006996549666, 0.06592590361833572, -0.09058185666799545, -0.019584456458687782, 0.03411315381526947, 0.005254459101706743, -0.12664183974266052, -0.007138287648558617, -0.07037559896707535, 0.11127250641584396, -0.07098005712032318, 0.06828010827302933, -0.09470182657241821, 0.12167689204216003, 0.0349409282207489, -0.004637670703232288, -0.0441274419426918, 0.08140341192483902, 0.10863257199525833, 0.07206850498914719, -0.01794234849512577, 0.01749752275645733, -0.0660192221403122, -0.03946024551987648, 0.040757954120635986, 0.09030308574438095, -0.01971086673438549, -0.046808671206235886, 0.029300952330231667, -0.0115319499745965, 0.07131274789571762, -0.06289782375097275, -0.07391887158155441, -0.03885775804519653, -0.06228210777044296, -0.05839663743972778, -0.010277299210429192, -0.04607927054166794, -0.10510515421628952, 0.09542939811944962, 0.13517509400844574, -0.03721310570836067, -0.04239051043987274, -0.12531249225139618, -0.10005182772874832, -0.11324290186166763, 0.007587742991745472, -0.02828488126397133, -0.013360265642404556, -0.060096822679042816, 0.027653053402900696, 0.09831180423498154, 0.026004092767834663, 0.017863435670733452, 0.1255885809659958, -0.07627668231725693, -0.06616182625293732, 0.1367083638906479, 0.017380626872181892, -0.11342329531908035, -0.01734090968966484, -0.08906087279319763, -0.02223379537463188, -0.12971091270446777, -0.10076425224542618, 0.05408558249473572, 0.09712196886539459, 0.0866856575012207, 0.04021603614091873, -0.06011177971959114, -0.019558344036340714, 0.014839040115475655, 0.09933195263147354, 0.010062930174171925, 0.10846352577209473, -0.08170022070407867, -0.061376847326755524, -0.06930244714021683, 0.016690785065293312, -0.10717803984880447, -0.066569484770298, -0.04433610662817955, -0.06613841652870178, 0.11875747889280319, -0.11281988024711609, -0.11556180566549301, -0.08788958936929703, 0.023632343858480453, -0.05898814648389816, 0.0017605179455131292, 0.02461306005716324, 0.06631498038768768, 0.05063078552484512, 0.13372275233268738, -0.0356011763215065, 0.13717210292816162, -0.06164025887846947, -0.0699869766831398, 0.038422711193561554, 0.0754413977265358, 0.0005372128798626363, 0.05116765573620796, 0.08185571432113647, -0.0808991864323616, 0.1310284435749054, -0.00911908783018589, -0.11412256956100464, 0.08347479999065399, -0.07218094170093536, 0.0063057891093194485, -0.013824041932821274, 0.007208618335425854, -0.07094410806894302, -0.12658178806304932, 0.1186763197183609, 0.06030222401022911, -0.01780446246266365, -0.14386944472789764, 0.08486854285001755, -0.08364728093147278, -0.11748526245355606, 0.031752847135066986, -0.09187382459640503, -0.046331699937582016, 0.10693369805812836, -0.03156539052724838, -0.13804969191551208, 0.09625162929296494, -0.049882348626852036, 0.01824292726814747, 0.03772331401705742, -0.024781767278909683, -0.08370161056518555, 0.020769847556948662, 0.020758097991347313, 0.08088561147451401, -0.019765444099903107, 0.1286882758140564, 0.10539328306913376, -0.04566852003335953, 0.021479332819581032, 0.1319662183523178, 0.11438354104757309, 0.045851416885852814, -0.11363506317138672, 0.018857846036553383, -0.021148428320884705, -0.05058108642697334, -0.031224096193909645, 0.08378038555383682, -0.06887922435998917, -0.026660166680812836, -0.09979509562253952, -0.12531548738479614, 0.06682118773460388], +uitofp:[-0.10623636096715927, 0.07330349832773209, 0.08278922736644745, -0.10788834095001221, -0.1125580370426178, 0.009259436279535294, -0.15264378488063812, 0.0034710096661001444, -0.020019985735416412, -0.07305349409580231, -0.13520854711532593, 0.1046672984957695, 0.058202311396598816, -0.05092867091298103, 0.0013984134420752525, -0.08791231364011765, -0.10576339066028595, -0.007544215302914381, -0.09569794684648514, 0.019145337864756584, -0.11861240118741989, 0.11919086426496506, -0.06122640147805214, -0.06603139638900757, 0.027821101248264313, -0.11791020631790161, 0.04594250023365021, -0.005030400585383177, -0.09511850029230118, 0.06914428621530533, 0.016615670174360275, -0.10218176990747452, -0.05794937163591385, 0.11710952967405319, -0.03111589513719082, 0.1083851158618927, 0.012888866476714611, 0.06909085810184479, 0.1450442373752594, -0.057027701288461685, -0.08272471278905869, 0.0015994618879631162, 0.05229905620217323, -0.0024659319315105677, 0.11543725430965424, 0.09958495199680328, 0.028472835198044777, -0.10626710206270218, 0.05383943393826485, 0.07270940393209457, -0.07776687294244766, -0.016574662178754807, 0.004888132214546204, -0.0013109548017382622, 0.06403186917304993, -0.10502703487873077, 0.08551919460296631, -0.03182216361165047, -0.04886644706130028, 0.006351302843540907, -0.0009072076645679772, -0.0726233646273613, 0.07675498723983765, 0.13433431088924408, -0.03644924610853195, -0.044245101511478424, 0.118902787566185, 0.01655091904103756, 0.020235909149050713, -0.059324510395526886, -0.03273331746459007, -0.0004196699010208249, -0.0770944282412529, 0.14960063993930817, 0.06946546584367752, -0.10792052745819092, -0.017353540286421776, -0.003771877149119973, -0.11860360950231552, -0.06175332888960838, -0.06294384598731995, -0.08981194347143173, 0.06425654143095016, -0.07370058447122574, 0.06321977823972702, 0.10602088272571564, 0.10831960290670395, -0.022246304899454117, -0.14427590370178223, -0.041004326194524765, -0.11853295564651489, 0.030677419155836105, 0.07659317553043365, -0.09066715836524963, 0.018112482503056526, -0.005699255038052797, 0.04514400660991669, -0.12499435991048813, -0.026053130626678467, 0.07924473285675049, -0.030051549896597862, -0.04510927572846413, -0.009192433208227158, 0.01640351489186287, 0.08993946760892868, -0.054192330688238144, -0.14716067910194397, -0.035243723541498184, 0.012266353704035282, -0.08398143202066422, -0.004110688343644142, -0.07121321558952332, 0.06983332335948944, -0.01985914073884487, 0.07407886534929276, -0.15464241802692413, -0.026414308696985245, -0.007007432170212269, -0.1537255048751831, 0.06140317767858505, 0.10143401473760605, -0.05791512504220009, 0.07267894595861435, -0.11493145674467087, -0.020158397033810616, -0.041939180344343185, 0.1218324676156044, -0.04595335200428963, -0.06807094812393188, -0.04185636341571808, -0.04342113435268402, -0.0281621515750885, -0.04851331561803818, -0.0145347835496068, -0.07381489127874374, 0.06733774393796921, -0.013883453793823719, -0.05101428180932999, 0.01354639045894146, 0.08883867412805557, -0.10411987453699112, -0.06307049840688705, -0.16636104881763458, 0.05281079560518265, -0.05824863538146019, -0.02523443102836609, 0.07238512486219406, -0.030389154329895973, 0.0314762182533741, -0.0005030231550335884, -0.035562194883823395, 0.09665422141551971, -0.010893944650888443, 0.07841870188713074, -0.06489135324954987, -0.04377113655209541, -0.01984083466231823, -0.002657851902768016, -0.008701406419277191, -0.06323964148759842, 0.03961160406470299, 0.07240086793899536, -0.062327101826667786, 0.08911576122045517, -0.03158174082636833, -0.0017148153856396675, 0.0020802521612495184, -0.0908430814743042, -0.03673520311713219, -0.1579754650592804, -0.002696635667234659, -0.059702351689338684, 0.0668889507651329, 0.10427756607532501, 0.03531917557120323, 0.07798873633146286, 0.0916052907705307, 0.1272193044424057, -0.1251066029071808, -0.016039039939641953, 0.14208945631980896, -0.0935898944735527, -0.05412612482905388, -0.09091132879257202, 0.03635994717478752, -0.09970998764038086, -0.003614514833316207, 0.049451086670160294, -0.110559843480587, 0.10824265331029892, -0.1403736025094986, 0.015881827101111412, 0.06944993138313293, -0.008902396075427532, -0.12346980720758438, -0.011912022717297077, -0.030988330021500587, -0.07304620742797852, 0.1123257651925087, 0.01247868500649929, -0.07874920219182968, 0.06163712590932846, 0.07126721739768982, 0.09369505196809769, 0.01005915179848671, 0.09626511484384537, 0.014126885682344437, 0.1466224640607834, 0.08179518580436707, 0.0670333057641983, 0.05902718007564545, -0.06780336797237396, 0.04306769371032715, 0.08665266633033752, -0.0779077485203743, -0.0986688882112503, -0.0558561235666275, 0.015954382717609406, -0.03207298368215561, 0.06226031482219696, -0.06499382108449936, -0.034470681101083755, -0.05069398134946823, 0.041677579283714294, 0.06594788283109665, 0.03163702040910721, 0.026287555694580078, -0.0038855639286339283, -0.06481845676898956, 0.027771880850195885, -0.08597120642662048, 0.005214261822402477, -0.0447334423661232, -0.06491079926490784, 0.0730624571442604, 0.15664055943489075, 0.01948593556880951, -0.004596360959112644, 0.11397474259138107, 0.12205777317285538, 0.028440771624445915, 0.014737463556230068, -0.02544366754591465, 0.10317445546388626, -0.05938347056508064, -0.06700678169727325, 0.06099095568060875, -0.03242435306310654, 0.010559155605733395, 0.14723697304725647, -0.014401187188923359, -0.008961179293692112, 0.11336160451173782, -0.023687738925218582, 0.11299633979797363, 0.014414737932384014, 0.025108877569437027, 0.04752277210354805, -0.07485988736152649, -0.001120262430049479, 0.0589519627392292, -0.027125217020511627, -0.0216987244784832, 0.12560859322547913, -0.08171025663614273, -0.006434712093323469, -0.05828334018588066, 0.009157298132777214, 0.010662194341421127, -0.0733276754617691, -0.05584738776087761, 0.051223378628492355, 0.06929978728294373, 0.034754566848278046, 0.014373228885233402, 0.08717962354421616, 0.09603448957204819, -0.09005935490131378, 0.09316197037696838, 0.07189515978097916, 0.019134001806378365, 0.08127893507480621, 0.03957560285925865, -0.06964145600795746, -0.07010558247566223, -0.08737026900053024, -0.020747525617480278, -0.017825661227107048, -0.07026667147874832, -0.026842566207051277, 0.03730929642915726, 0.10309813916683197, 0.0660872682929039, 0.05584763363003731, 0.08733700960874557, 0.05530613288283348, -0.07960788160562515, 0.06629402190446854, -0.13651500642299652, 0.05188314989209175], +unreachable:[0.16360832750797272, -0.03880205750465393, 0.011393465101718903, -0.013163674622774124, -0.13487161695957184, -0.0951424166560173, 0.09657301008701324, 0.10958322882652283, 0.010766571387648582, 0.07740887999534607, 0.05686294287443161, -0.010674829594790936, 0.0030541885644197464, 0.03063383512198925, 0.07054007798433304, -0.04867084324359894, -0.003721643006429076, -0.04079082980751991, -0.12806907296180725, 0.03525084629654884, 0.057665202766656876, 0.07900439202785492, 0.08824235200881958, -0.01400510873645544, 0.02743198163807392, -0.010913371108472347, 0.11321602016687393, 0.09954091906547546, 0.07856567949056625, -0.060987744480371475, -0.08908916264772415, -0.03355419635772705, -0.03152671083807945, -0.1310790330171585, -0.04370487481355667, -0.08897393941879272, -0.07164735347032547, 0.055537670850753784, -0.05556559935212135, 0.03235108405351639, -0.006304312963038683, 0.10440775752067566, 0.05137511342763901, 0.02193242870271206, 0.021781979128718376, -0.001951518002897501, -0.12029438465833664, 0.12537698447704315, 0.017458876594901085, -0.1536301225423813, 0.031638383865356445, 0.005382021889090538, 0.008011722937226295, -0.06805036216974258, -0.03230559453368187, -0.010486559011042118, 0.03647720068693161, 0.038695283234119415, -0.09660609066486359, 0.06456350535154343, 0.06515073031187057, -0.10142417252063751, 0.10501817613840103, -0.010601759888231754, -0.0199501384049654, -0.0672277882695198, 0.011986439116299152, -0.11236156523227692, -0.15495164692401886, -0.08636338263750076, -0.10397615283727646, 0.08337508141994476, -0.0478903129696846, 0.0018106718780472875, 0.044463858008384705, -0.09566004574298859, -0.13082143664360046, 0.03871951624751091, 0.008562606759369373, -0.006216558627784252, -0.07296713441610336, -0.10661587119102478, -0.12380261719226837, -0.007809929084032774, -0.08970370888710022, -0.08597531914710999, -0.07271333783864975, -0.12810808420181274, 0.06149740517139435, -0.11634255200624466, -0.0021381599362939596, 0.047138363122940063, 0.04083704203367233, -0.027812892571091652, -0.008821153081953526, 0.08015762269496918, -0.047077029943466187, -0.002970697358250618, 0.005304558668285608, 0.03006233088672161, 0.0059449151158332825, -0.06574886292219162, 0.09245121479034424, -0.05016925185918808, -0.08735667169094086, -0.10351688414812088, -0.12026126682758331, 0.06687362492084503, 0.11815259605646133, -0.04838244616985321, 0.019472472369670868, -0.031724803149700165, 0.010707542300224304, -0.017551228404045105, 0.075876884162426, 0.015560170635581017, 0.12680049240589142, -0.0009443877497687936, 0.0702834501862526, -0.11331962794065475, -0.026219237595796585, 0.11529363691806793, 0.058553148061037064, -0.06059318035840988, 0.11687389761209488, -0.011982818134129047, -0.06918488442897797, -0.010441301390528679, -0.12444043159484863, -0.007615203503519297, -0.05636082589626312, 0.03278384357690811, -0.0475829653441906, -0.028708089143037796, -0.04984789341688156, 0.0169515423476696, 0.1103292852640152, 0.052036404609680176, 0.06836550682783127, 0.1309056580066681, -0.1183866336941719, -0.009054937399923801, 0.06843949854373932, -0.18326818943023682, -0.13058660924434662, 0.056006722152233124, -0.12904644012451172, -0.018718168139457703, 0.010298780165612698, -0.05761351436376572, -0.09403533488512039, 0.06025848165154457, -0.03323057293891907, -0.07277633994817734, 0.07125125825405121, -0.021835220977663994, -0.048074450343847275, 0.09251844882965088, -0.06880108267068863, 0.017468895763158798, -0.023402411490678787, -0.02790629304945469, -0.034771256148815155, -0.0022041869815438986, -0.11000248789787292, -0.03169829025864601, -0.002590938238427043, 0.03448648378252983, -0.042116545140743256, -0.058117639273405075, 0.07781776040792465, 0.0010389108210802078, -0.02587207779288292, 0.002464293735101819, -0.033026810735464096, -0.0888497456908226, 0.08717543631792068, 0.08938831835985184, -0.07643294334411621, 0.09946676343679428, 0.11575006693601608, -0.004748182836920023, 0.02773689106106758, -0.13067781925201416, -0.028997022658586502, -0.03325914964079857, 0.0787595584988594, 0.05589280277490616, -0.01404477097094059, -0.042456354945898056, -0.08432149142026901, -0.006356851663440466, 0.1078643649816513, 0.0071755629032850266, -0.025419266894459724, 0.0536506287753582, 0.12077824771404266, 0.0231197290122509, 0.008674096316099167, 0.0333012193441391, 0.04571560397744179, -0.06985438615083694, 0.04944093897938728, 0.059831246733665466, 0.020752524957060814, -0.018028270453214645, -0.0038482274394482374, 0.014960694126784801, -0.044128887355327606, 0.12007744610309601, 0.0035274827387183905, -0.08247217535972595, 0.060247618705034256, -0.08264704048633575, -0.017357315868139267, -0.015288487076759338, -0.036025505512952805, 0.06909888982772827, -0.0747498944401741, -0.04697190597653389, 0.04077089577913284, -0.01409844122827053, -0.08081962913274765, 0.08979598432779312, -0.10836091637611389, -0.08104892820119858, 0.057359661906957626, -0.052457861602306366, -0.04622020572423935, 0.12172700464725494, 0.028342118486762047, 0.015414462424814701, -0.07371366769075394, -0.048869382590055466, 0.01672414317727089, -0.03250719606876373, 0.010330374352633953, -0.04143239185214043, 0.12604393064975739, -0.05817139148712158, -0.10388381779193878, -0.14303849637508392, 0.13512180745601654, -0.0020274834241718054, -0.05256817862391472, -0.12906265258789062, -0.08630013465881348, 0.044324036687612534, 0.0032489111181348562, 0.052037205547094345, 0.02537628449499607, -0.04173377901315689, 0.034231822937726974, 0.04175795614719391, 0.09859519451856613, 0.05727047100663185, 0.010977936908602715, -0.069135382771492, 0.011665408499538898, -0.015917310491204262, 0.0014401808148249984, 0.12862542271614075, -0.015203393064439297, 0.04021206498146057, -0.11901470273733139, -0.11975592374801636, 0.12560784816741943, -0.10638253390789032, 0.12719018757343292, 0.0639379620552063, -0.03905585780739784, 0.14278975129127502, -0.06381352245807648, -0.08424033224582672, -0.10305828601121902, 0.11220483481884003, -0.001107561751268804, 0.11756807565689087, 0.001384053030051291, -0.062013179063797, -0.11288914084434509, 0.023177601397037506, 0.012472528964281082, 0.008192691951990128, 0.07296355813741684, 0.13338476419448853, 0.14028653502464294, -0.08836343884468079, -0.0318579375743866, -0.03598487004637718, -0.03567368909716606, -0.12485548108816147, -0.08733254671096802, 0.13191407918930054, 0.037133291363716125, -0.11605030298233032, -0.006431207060813904, -0.08676367253065109, -0.10129786282777786, 0.05266919359564781], +urem:[-0.08698207139968872, -0.11045993864536285, -0.059305496513843536, -0.07127896696329117, 0.13086237013339996, -0.05050833150744438, 0.08515911549329758, 0.017585961148142815, 0.014019372873008251, -0.0011963446158915758, 0.048021405935287476, -0.02027941681444645, -0.019133856520056725, -0.03715313971042633, 0.08616475760936737, -0.02380393259227276, 0.03649827465415001, 0.03849276900291443, 0.013389548286795616, -0.08356834948062897, -0.03328811377286911, -0.018137043341994286, -0.05256357789039612, -0.09744108468294144, 0.027105478569865227, -0.04124628007411957, 0.04597017914056778, -0.014693411067128181, 0.0037841254379600286, 0.0928499698638916, 0.03227877616882324, -0.09334170818328857, 0.08509612083435059, -0.008704614825546741, 0.0013069042470306158, -0.001989665674045682, -0.1470051109790802, -0.049221500754356384, 0.017949700355529785, -0.010374347679316998, -0.022278515622019768, 0.0658399760723114, -0.04183920472860336, 0.05605252459645271, -0.03403853252530098, 0.01699978858232498, 0.06019366532564163, -0.0974302664399147, 0.021021120250225067, -0.07482864707708359, -0.10899730026721954, 0.034254446625709534, 0.07988927513360977, 0.10117398202419281, -0.031187189742922783, 0.13318629562854767, 0.05480582267045975, 0.10284893959760666, -0.02640240266919136, -0.11423373967409134, 0.017915144562721252, 0.0023910854943096638, -0.12149020284414291, 0.0584966316819191, 0.013023248873651028, -0.06911098212003708, 0.003022016491740942, 0.024125903844833374, -0.03421911597251892, 0.054228149354457855, -0.06329633295536041, -0.06873112916946411, 0.007627472281455994, 0.020957935601472855, -0.12007392942905426, -0.011334951967000961, 0.11488621681928635, -0.02572179026901722, -0.082354836165905, 0.00668419199064374, 0.09896118193864822, -0.09689260274171829, -0.0037538371980190277, 0.10950565338134766, -0.015509785152971745, -0.0040594059973955154, -0.11632701009511948, -0.07393147051334381, -0.03472955524921417, -0.10614970326423645, 0.08739025145769119, -0.09264243394136429, 0.11201681941747665, 0.06860722601413727, -0.0025285875890403986, 0.13111095130443573, 0.024864114820957184, -0.059231169521808624, -0.08317644894123077, 0.0803002342581749, -0.08615151047706604, 0.09131724387407303, 0.04252788424491882, -0.0008773902081884444, 0.1289442777633667, 0.09314102679491043, -0.122134730219841, -0.10822824388742447, 0.12293679267168045, -0.06705330312252045, -0.14710070192813873, -0.05408278480172157, 0.020737797021865845, -0.019232016056776047, -0.10081876069307327, -0.002146770479157567, 0.1343577355146408, 0.057215217500925064, 0.0013892099959775805, -0.10570078343153, -0.02824338525533676, -0.002621317747980356, 0.1329830139875412, -0.10473069548606873, 0.10783183574676514, -0.08290175348520279, 0.11670958995819092, 0.021665751934051514, 0.005339119117707014, 0.003443043911829591, -0.08634791523218155, 0.07127057015895844, -0.10794064402580261, 0.008738566190004349, 0.019292455166578293, 0.029124444350600243, -0.011775239370763302, 0.0029928938020020723, -0.050215113908052444, 0.0333162322640419, -0.11264675110578537, -0.06741993129253387, -0.021324964240193367, 0.13192318379878998, 0.07777032256126404, -0.03375145047903061, 0.08113217353820801, -0.09781228750944138, -0.09987540543079376, 0.0347825288772583, 0.009422877803444862, 0.09148339182138443, -0.009339218959212303, 0.10421880334615707, 0.1354936957359314, -0.08807888627052307, 0.10982943326234818, -0.020984288305044174, -0.08771201968193054, 0.017068276181817055, 0.04853673279285431, 0.08506127446889877, -0.032804835587739944, -0.04924725368618965, -0.05871077999472618, -0.007921945303678513, -0.019422616809606552, -0.11566976457834244, -0.04134070873260498, 0.043967630714178085, -0.05740894004702568, -0.04995128512382507, 0.06489107757806778, -0.0564325787127018, -0.02576608769595623, 0.021892545744776726, -0.07560519874095917, 0.11619715392589569, 0.011163723655045033, -0.06487513333559036, -0.1185486763715744, 0.027090128511190414, -0.11667775362730026, 0.12894999980926514, 0.10821108520030975, 0.06200670823454857, -0.13504475355148315, -0.17271752655506134, -0.12892234325408936, 0.07323775440454483, -0.1236635148525238, -0.047775495797395706, 0.09478101879358292, -0.014138732105493546, -0.07578399777412415, 0.027119582518935204, 0.10842777043581009, 0.027661148458719254, 0.024732038378715515, 0.1295524388551712, -0.078078992664814, 0.09246211498975754, 0.12414414435625076, -0.00786803849041462, -0.10262323170900345, -0.01896617002785206, 0.049836982041597366, -0.013636365532875061, -0.10772446542978287, -0.10093282908201218, 0.05609722435474396, 0.059840936213731766, -0.018289895728230476, 0.04122369736433029, -0.07664716243743896, -0.03141825273633003, 0.0051665641367435455, -0.05912802740931511, 0.020030586048960686, 0.11037012189626694, 0.01864113099873066, -0.053799327462911606, -0.11855515837669373, 0.03168927878141403, -0.001137151033617556, -0.09201864153146744, -0.003241022350266576, 0.053899697959423065, -0.08153635263442993, 0.03727852180600166, -0.10914577543735504, -0.08883131295442581, 0.10900428891181946, -0.061094146221876144, 0.02492029033601284, 0.029790442436933517, 0.076249860227108, -0.0595378540456295, 0.12735988199710846, -0.07024670392274857, 0.10842005163431168, -0.07073251157999039, -0.07389635592699051, -0.013704433105885983, 0.04298387095332146, -0.054112620651721954, 0.1019316092133522, -0.030088601633906364, -0.11675364524126053, 0.03497302532196045, -0.022204214707016945, 0.12049149721860886, 0.10099486261606216, -0.12106534838676453, 0.04345543682575226, -0.017906609922647476, 0.009808633476495743, 0.065584696829319, -0.057032160460948944, -0.009600963443517685, 0.06202508136630058, -0.10316521674394608, -0.15001395344734192, 0.09133216738700867, -0.08354523777961731, 0.09912192076444626, 0.02813960425555706, 0.11155031621456146, -0.041075386106967926, 0.09181014448404312, -0.02011781372129917, -0.08692152798175812, 0.06499990075826645, -0.05661410838365555, 0.06270752847194672, 0.03266933560371399, 0.10394599288702011, -0.0784870982170105, 0.024435555562376976, 0.021377727389335632, -0.1527869999408722, 0.02909371443092823, -0.04275677725672722, 0.03133910149335861, -0.1200801208615303, 0.09148337692022324, 0.11723680049180984, 0.0415688194334507, -0.030821578577160835, 0.06495591998100281, -0.13511349260807037, -0.022432547062635422, 0.02245686948299408, -0.025814101099967957, 0.08835233002901077, 0.08577674627304077, -0.026200518012046814, -0.09367440640926361, -0.12839478254318237, 0.06865530461072922], +variable:[0.02373001165688038, -0.03920198231935501, -0.0045554679818451405, 0.017984410747885704, 0.10662522166967392, 0.10706504434347153, -0.05980793386697769, 0.06258188188076019, 0.1448557823896408, -0.007055939640849829, 0.021686721593141556, 0.148742213845253, -0.026200514286756516, 0.001699653803370893, -0.05300203710794449, -0.027394205331802368, 0.11456313729286194, 0.04576972499489784, 0.16155554354190826, 0.012176105752587318, 0.05770834907889366, 0.06524746865034103, -0.00036466115852817893, 0.0666046142578125, 0.10999056696891785, -0.0773882120847702, -0.081261545419693, -0.05549050122499466, 0.06834365427494049, -0.05462675169110298, -0.09440528601408005, 0.055102523416280746, -0.12309323251247406, -0.04260527342557907, -0.08757919073104858, 0.07366270571947098, 0.0863223597407341, -0.08234286308288574, 0.03274622932076454, -0.011585060507059097, -0.07640363276004791, -0.0013505000388249755, -0.07599609345197678, 0.10938945412635803, -0.04480181634426117, 0.032737672328948975, 0.04294448718428612, -0.16841799020767212, -0.0033536513801664114, 0.07495579868555069, 0.08865413814783096, -0.16066864132881165, 0.06212844327092171, 0.12397011369466782, 0.10978297889232635, 0.06945465505123138, -0.08801177889108658, -0.09351780265569687, -0.12971502542495728, 0.08007364720106125, 0.10552259534597397, 0.05189165472984314, 0.05702760070562363, -0.08902357518672943, 0.12027854472398758, 0.040933724492788315, 0.07601501792669296, 0.12692546844482422, -0.06710503250360489, -0.02330552600324154, 0.07298905402421951, -0.04268745332956314, -0.004332588519901037, 0.0460188053548336, -0.048507802188396454, 0.0018818714888766408, 0.030200522392988205, -0.12918592989444733, -0.06017111614346504, -0.0863315537571907, 0.05623164772987366, 0.011570006608963013, 0.07013893127441406, 0.0665961354970932, -0.07531474530696869, 0.022203048691153526, 0.05023173615336418, 0.05138528719544411, -0.051087334752082825, 0.09156037867069244, 0.08398601412773132, 0.08353590965270996, 0.16224156320095062, -0.08697518706321716, -0.037325624376535416, -0.07700986415147781, 0.10387543588876724, -0.01667514443397522, 0.05219541862607002, 0.004284776747226715, 0.12475309520959854, 0.045071616768836975, -0.08101092278957367, -0.11665324866771698, -0.10395253449678421, -0.03523566946387291, 0.0045832977630198, 0.12033584713935852, 0.051173415035009384, 0.07258130609989166, -0.09400017559528351, 0.061331573873758316, -0.04305204749107361, -0.16410697996616364, -0.12156543135643005, 0.04444899782538414, 0.06794318556785583, -0.06673844903707504, 0.0341855026781559, 0.03317783400416374, -0.0004938468337059021, -0.07271992415189743, -0.0807923972606659, 0.03210991621017456, 0.023322969675064087, 0.03734426572918892, 0.13845263421535492, -0.08594547212123871, 0.08506453782320023, 0.07349243015050888, -0.13013511896133423, -0.12662293016910553, -0.1544146090745926, -0.07110101729631424, 0.013228988274931908, -0.05133047699928284, 0.04498589411377907, -0.14380237460136414, -0.07337988913059235, -0.1002676710486412, 0.015494782477617264, 0.024685602635145187, 0.00521518848836422, 0.013358401134610176, 0.08139848709106445, 0.005014951340854168, 0.002082063117995858, 0.007386310491710901, 0.007096184883266687, -0.06445639580488205, -0.0591348297894001, -0.006269351113587618, 0.13013987243175507, -0.014308635145425797, -0.056692324578762054, -0.10749713331460953, 0.13937751948833466, -0.07684904336929321, 0.14674007892608643, -0.032786041498184204, -0.046170130372047424, 0.04383263364434242, 0.1399858593940735, -0.13140740990638733, 0.11890944093465805, 0.0223399568349123, 0.005706425290554762, -0.057540349662303925, 0.06532242149114609, -0.05007171258330345, -0.01643972471356392, 0.039819881319999695, 0.06803656369447708, -0.07813488692045212, 0.031211962923407555, -0.008243925869464874, -0.03264864534139633, 0.009660572744905949, -0.1077798455953598, -0.1398327499628067, 0.0015058028511703014, -0.013447875156998634, -0.045451562851667404, 0.07141504436731339, -0.03250724822282791, 0.004002574365586042, -0.05417124554514885, -0.017048725858330727, 0.045648183673620224, -0.03488868102431297, 0.04292808100581169, 0.09564431756734848, -0.09960625320672989, 0.08539564162492752, 0.02178637497127056, -0.08451517671346664, -0.122426837682724, 0.006717124953866005, -0.0362243689596653, 0.08242681622505188, 0.06364364176988602, 0.043773017823696136, -0.08400329202413559, -0.013958797790110111, -0.10643308609724045, -0.054508574306964874, 0.10347626358270645, -0.08332028239965439, 0.06555607914924622, 0.07619306445121765, -0.051179081201553345, -0.011050992645323277, 0.0048367795534431934, -0.06868176907300949, -0.11723592877388, 0.007706027943640947, 0.08967366069555283, -0.07202135026454926, 0.0378594733774662, -0.03376980498433113, -0.07749543339014053, -0.14961986243724823, -0.021067390218377113, -0.07006300240755081, 0.01289428398013115, -0.030147461220622063, -0.08148569613695145, -0.11213797330856323, 0.09924785047769547, -0.09820879995822906, 0.1277429759502411, 0.035915736109018326, 0.051371749490499496, 0.05936043709516525, -0.06821282207965851, 0.011624390259385109, -0.06263798475265503, -0.04372755438089371, -0.09391035884618759, -0.0001972676836885512, 0.12734046578407288, -0.056095756590366364, 0.03627650439739227, -0.01654963195323944, -0.011347425170242786, 0.020908543840050697, -0.01092895120382309, -0.1397579163312912, -0.07249629497528076, -0.025857778266072273, -0.062417224049568176, 0.15466828644275665, -0.01600164733827114, 0.15864132344722748, 0.10831517726182938, -0.06823640316724777, 0.1076778843998909, -0.011734841391444206, -0.09128158539533615, 0.012474292889237404, -0.04177963361144066, 0.08031445741653442, -0.10405491292476654, 0.011668450199067593, 0.11202505230903625, 0.015858672559261322, 0.07791072875261307, -0.10110708326101303, -0.08735182136297226, -0.09797879308462143, 0.051959797739982605, -0.12269964069128036, -0.04023519903421402, -0.08855390548706055, -0.02683536522090435, -0.10558617860078812, 0.09768659621477127, 0.03839799389243126, -0.05017242953181267, -0.0677226111292839, 0.02427641488611698, -0.006298830267041922, -0.09260556101799011, 0.08162763714790344, 0.05688130855560303, -0.0013708224287256598, -0.004187504295259714, 0.15513014793395996, 0.0019295234233140945, 0.12374943494796753, -0.05466964468359947, -0.16555090248584747, -0.1350928097963333, -0.0947810709476471, 0.01986353099346161, -0.08072687685489655, 0.042217500507831573, 0.0020245364867150784, -0.02320312149822712, 0.10413794219493866], +vectorTy:[-0.12738975882530212, 0.06955726444721222, -0.1251596361398697, 0.0617714449763298, -0.06504174321889877, 0.09020297229290009, -0.04647238925099373, 0.08520902693271637, 0.10252277553081512, 0.02082892134785652, 0.04622611775994301, 0.04447576031088829, 0.01963467337191105, -0.07916665077209473, -0.006500708870589733, 0.005214795470237732, 0.030208509415388107, 0.006154028233140707, -0.13483025133609772, 0.04121110960841179, 0.03689355403184891, -0.11080309748649597, 0.0848369225859642, 0.07938126474618912, -0.1006971225142479, 0.04063721001148224, 0.06542782485485077, -0.08481486886739731, -0.05657089874148369, 0.031135082244873047, -0.030308030545711517, 0.08577806502580643, -0.034710872918367386, -0.030940508469939232, 0.06856454908847809, 0.013332555070519447, -0.05841217190027237, 0.11491665989160538, 0.018041731789708138, -0.01644175313413143, -0.014324958436191082, 0.0012411783682182431, 0.10119553655385971, -0.08711623400449753, 0.0532333180308342, 6.732553447363898e-05, -0.020890064537525177, -0.0882008969783783, -0.011462832801043987, 0.03267262130975723, -0.11412704735994339, 0.08515087515115738, 0.08459974080324173, 0.06605315953493118, 0.12852391600608826, -0.09662328660488129, 0.12250148504972458, 0.03312899172306061, 0.13137158751487732, 0.01484361756592989, -0.11344392597675323, 0.06075691059231758, -0.03209444880485535, 0.061276912689208984, -0.08244267851114273, 0.051129359751939774, -0.11567205935716629, -0.04433443024754524, 0.10496652871370316, 0.0908661037683487, 0.09416305273771286, 0.04349653050303459, -0.04726918414235115, -0.08870810270309448, 0.1273234486579895, 0.0820736289024353, -0.09760162234306335, 0.05057532712817192, 0.015253281220793724, 0.08858593553304672, 0.06471452116966248, 0.07909763604402542, 0.1199350357055664, -0.01222784910351038, -0.08546249568462372, 0.06118199974298477, 0.0692792609333992, 0.030065307393670082, 0.024416375905275345, 0.07419387251138687, -0.025872625410556793, 0.027528516948223114, -0.035297736525535583, -0.08830983191728592, 0.06547601521015167, -0.10303828865289688, -0.07297634333372116, 0.026933973655104637, -0.10717104375362396, 0.014587479643523693, -0.06647477298974991, -0.12084201723337173, -0.10379379242658615, -0.06240225210785866, -0.1252080798149109, 0.05218534916639328, 0.040308792144060135, 0.10759487748146057, -0.08101139962673187, 0.061686016619205475, 0.09280799329280853, 0.07749710232019424, 0.020249629393219948, 0.1055229976773262, 0.11561688780784607, 0.004128722473978996, -0.09819918870925903, 0.0016177521320059896, 0.05661098286509514, -0.04588407650589943, 0.01848337985575199, -0.003613343695178628, 0.00503833033144474, 0.07196016609668732, -0.12111615389585495, 0.05915415659546852, -0.06969679147005081, -0.09824353456497192, -0.0769290030002594, -0.107899010181427, 0.1005432978272438, 0.07636775821447372, 0.06256155669689178, -0.10407020151615143, -0.03972550854086876, 0.008295218460261822, -0.050008758902549744, 0.0943937599658966, -0.034209899604320526, -0.10932479798793793, 0.09977313131093979, 0.047694068402051926, -0.007228638976812363, 0.01402597688138485, 0.011574660427868366, -0.043325088918209076, 0.0002957805700134486, 0.04189552366733551, -0.029102878645062447, -0.080460324883461, -0.02222166396677494, -0.07022395730018616, -0.1342483013868332, -0.07616524398326874, -0.06940190494060516, 0.08562342077493668, 0.08317059278488159, 0.021360969170928, 0.09281795471906662, -0.013781013898551464, -0.01327737607061863, 0.07013334333896637, -0.15139420330524445, 0.002884442685171962, -0.037773117423057556, 0.02477123588323593, 0.018785782158374786, 0.03707940876483917, 0.10861913859844208, 0.02980075404047966, 0.09918761998414993, 0.11883764714002609, 0.10269097238779068, -0.04028543084859848, -0.007592909503728151, 0.00573292700573802, -0.11355752497911453, -0.020222138613462448, 0.10930385440587997, 0.09218508750200272, -0.005393511150032282, 0.01460136566311121, -0.12717199325561523, 0.01804632879793644, -0.00803343579173088, -0.04284605756402016, -0.052404895424842834, 0.07986211031675339, 0.06433362513780594, -0.028781335800886154, 0.021608151495456696, -0.05434217303991318, -0.07798425853252411, 0.015709256753325462, -0.08699599653482437, -0.10606884956359863, 0.04389658570289612, -0.027788221836090088, -0.1046723872423172, 0.10994717478752136, -0.07266116887331009, -0.10283839702606201, -0.10617933422327042, -0.011927529238164425, -0.06567466259002686, 0.006109542679041624, -0.11619201302528381, 0.07878362387418747, 0.07750009000301361, -0.050888050347566605, -0.0654156357049942, -0.02810782566666603, 0.03556770458817482, 0.09843762218952179, 0.02036290243268013, 0.12032704055309296, 0.10941611230373383, -0.09130892902612686, 0.01045257318764925, -0.06668649613857269, 0.0952896699309349, 0.06680283695459366, -0.0907338410615921, -0.009692567400634289, -0.04839197173714638, 0.11159928143024445, 0.09194904565811157, 0.08679630607366562, -0.0677872821688652, 0.05946454405784607, 0.1117672398686409, 0.09433399885892868, 0.002136226510629058, -0.027452168986201286, -0.020124057307839394, 0.026861347258090973, 0.14220252633094788, 0.06636998802423477, -0.06842315942049026, -0.09719289839267731, -0.014605279080569744, 0.10585884004831314, -0.08979590237140656, 0.007144077215343714, -0.022373661398887634, 0.031550802290439606, -0.08353039622306824, 0.01926620677113533, 0.13392741978168488, -0.05313734710216522, -0.00549433846026659, -0.060831211507320404, -0.09855636954307556, -0.09374155104160309, -0.11735270172357559, 0.015924811363220215, 0.08518347144126892, -0.05989403277635574, 0.01761334016919136, -0.024176891893148422, -0.061657000333070755, 0.03341084346175194, 0.04405374825000763, 0.01501366589218378, -0.008206906728446484, 0.08006882667541504, 0.10576463490724564, 0.0745520144701004, 0.09549997001886368, 0.1295444667339325, 0.047663722187280655, -0.021861476823687553, -0.06773392111063004, 0.042285241186618805, -0.017977828159928322, -0.02445216476917267, -0.08282344788312912, 0.04890783131122589, 0.06365448236465454, 0.09366139024496078, 0.043098706752061844, -0.027807030826807022, -0.09957623481750488, 0.040076036006212234, 0.0663931593298912, 0.049255575984716415, -0.11184359341859818, -0.09066952019929886, 0.024272043257951736, 0.043306756764650345, 0.1059786006808281, 0.09495909512042999, 0.047291748225688934, 0.10112369805574417, -0.07399338483810425, 0.02516578882932663, 0.022180767729878426, 0.020459851250052452, -0.04045126214623451, -0.027728116139769554], +voidTy:[-0.09000939875841141, -0.07958554476499557, -0.07291815429925919, 0.08979514241218567, 0.04707391932606697, -0.09423940628767014, 0.11838021129369736, 0.07256688177585602, -0.07934272289276123, -0.007992403581738472, -0.053255390375852585, -0.08408867567777634, -0.04283592104911804, 0.05508279427886009, 0.06839311867952347, -0.05503489822149277, 0.08377442508935928, -0.04187502712011337, -0.06547374278306961, 0.030503246933221817, 0.08454546332359314, 0.11743707954883575, 0.13747410476207733, 0.06464771181344986, 0.09018135070800781, 0.11277538537979126, -0.10179999470710754, -0.0451647974550724, 0.07261732965707779, -0.12517043948173523, 0.10316703468561172, 0.10725896060466766, 0.08990520983934402, -0.10293866693973541, -0.09876062721014023, -0.026705490425229073, 0.016970796510577202, 0.1123298704624176, 0.019247407093644142, 0.03846059739589691, 0.031569354236125946, -0.019539734348654747, 0.09883300215005875, -0.11793255060911179, -0.019593320786952972, 0.0035468395799398422, 0.006796017289161682, -0.027836119756102562, -0.005097345914691687, 0.03902468457818031, -0.07016787678003311, 0.11262007802724838, -0.09223636239767075, -0.10399038344621658, 0.09139473736286163, 0.10496342927217484, -0.04243927448987961, 0.10802552103996277, 0.08636016398668289, 0.08827995508909225, -0.07454343140125275, 0.08326178789138794, -0.11973113566637039, -0.08231087028980255, 0.014773264527320862, 0.0283557940274477, -0.008044017478823662, -0.12828560173511505, -0.05807545781135559, 0.01052007358521223, 0.10872852057218552, 0.12022276222705841, -0.005469347815960646, -0.06836899369955063, 0.1031341627240181, 0.08253084868192673, 0.03900105506181717, 0.12089749425649643, 0.08851012587547302, -0.08854254335165024, 0.0886768251657486, 0.07710672169923782, 0.09653070569038391, 0.007529801223427057, -0.015547486953437328, -0.020897801965475082, 0.004568950738757849, -0.11604361236095428, 0.001215052790939808, 0.09477251023054123, 0.09757891297340393, -0.04006538540124893, -0.09788641333580017, 0.10182297974824905, 0.0007399037131108344, 0.11034149676561356, -0.10565201193094254, -0.05712905153632164, -0.0982864499092102, 0.04566897824406624, 0.053900353610515594, 0.05048181861639023, 0.018882308155298233, 0.09350458532571793, -0.0972236767411232, 0.048622917383909225, 0.012779678218066692, -0.10851069539785385, -0.06546550244092941, 0.059690579771995544, 0.10711677372455597, -0.018590690568089485, -0.003685903502628207, 0.08392605185508728, 0.07047095149755478, 0.03401381894946098, 0.06701119989156723, 0.022379154339432716, 0.08609151840209961, -0.02803741954267025, -0.0008451372268609703, 0.049039166420698166, -0.0078123100101947784, 0.0866536796092987, -0.11253651976585388, 0.10148797184228897, -0.09869030863046646, -0.07432699203491211, -0.11277113854885101, 0.10995643585920334, 0.07121813297271729, 0.12467680126428604, 0.12056763470172882, 0.09881768375635147, 0.006000128109008074, -0.00955195352435112, 0.11801338940858841, -0.10964632779359818, -0.08093464374542236, -0.06323272734880447, 0.10345004498958588, 0.01357194222509861, 0.02852703630924225, -0.05095754936337471, 0.030341051518917084, 0.016611749306321144, 0.1194460317492485, 0.03888899087905884, 0.008534271270036697, 0.1116071492433548, 0.002040289109572768, 0.09802134335041046, -0.11323697119951248, -0.11058668792247772, -0.023218054324388504, 0.08029177784919739, -0.11041776090860367, 0.05632156506180763, 0.03243021294474602, 0.107472263276577, -0.016683395951986313, 0.0871221274137497, -0.08608917891979218, -0.08880440890789032, 0.028913896530866623, -0.006483744829893112, 0.009140468202531338, 0.018846742808818817, 0.08086776733398438, -0.04068073257803917, 0.07313085347414017, 0.020746147260069847, -0.028271308168768883, 0.022695310413837433, 0.02607773244380951, 0.11390038579702377, -0.0877179503440857, -0.07601189613342285, 0.09136694669723511, 0.022374838590621948, -0.0019219225505366921, -0.02900284342467785, -0.048269085586071014, -0.06295301765203476, 0.04408819228410721, 0.009801012463867664, -0.10083624720573425, -0.04871703311800957, 0.0757184773683548, -0.0633048340678215, 0.006450219079852104, -0.10348402708768845, -0.055976904928684235, -0.03225826099514961, 0.0867755338549614, -0.09393185377120972, 0.0860830619931221, 0.023512668907642365, -0.09172635525465012, -0.11941346526145935, -0.07919265329837799, -0.10476791858673096, -0.08223827928304672, -0.011219807900488377, 0.07626605033874512, -0.04147420823574066, 0.08178616315126419, 0.06812693178653717, 0.0722544863820076, -0.012516196817159653, -0.11220896989107132, -0.1163560226559639, 0.03793609142303467, -0.07026831805706024, -0.008041108958423138, 0.06385529041290283, -0.06924095749855042, -0.1120322123169899, -0.02148726023733616, -0.13585086166858673, 0.10683934390544891, 0.072574183344841, -0.03529989719390869, -0.04071047529578209, 0.10344579815864563, -0.11905985325574875, -0.10904425382614136, 0.11106753349304199, 0.08515572547912598, 0.030809853225946426, -0.03432377427816391, 0.02357606403529644, -0.14124606549739838, 0.003411151934415102, -0.04544477537274361, -0.011099744588136673, 0.10650371015071869, 0.015100529417395592, -0.01413649320602417, 0.012174281291663647, -0.13259629905223846, 0.11260432749986649, 0.036382243037223816, 0.11978887766599655, 0.01884659193456173, -0.09706543385982513, 0.016752036288380623, -0.0009981058537960052, 0.11261249333620071, -0.06276674568653107, 0.013514988124370575, -0.07347568869590759, 0.024075977504253387, -0.021525125950574875, -0.0781879797577858, -0.0034146008547395468, -0.09301304072141647, -0.11433450132608414, 0.02224336937069893, 0.056502290070056915, -0.10772483795881271, -0.11469872295856476, 0.11905641108751297, -0.10814329981803894, -0.001308982726186514, -0.01643332466483116, 0.08009127527475357, 0.08234446495771408, 0.11152905225753784, -0.08385452628135681, 0.1071920096874237, -0.031198211014270782, 0.10446848720312119, -0.11725159734487534, -0.07371806353330612, -0.07358905673027039, -0.06663504987955093, 0.06184534728527069, -0.013791234232485294, -0.11275289952754974, 0.07584232836961746, 0.006988022476434708, 0.0820593386888504, -0.02593594416975975, -0.04122712463140488, 0.08460208028554916, -0.05725690722465515, -0.08163148164749146, -0.017830906435847282, 0.06977681070566177, -0.11105182766914368, -0.029793385416269302, 0.09619097411632538, -0.10040455311536789, -0.011055052280426025, -0.08168138563632965, -0.05608296021819115, 0.014498220756649971, 0.050504572689533234, -0.033985868096351624], +xor:[-0.029546743258833885, 0.04272785410284996, 0.08442351967096329, -0.06823106110095978, 0.10614518076181412, -0.026261480525135994, 0.056363124400377274, -0.05522790178656578, -0.029207715764641762, 0.01719292253255844, -0.16099730134010315, -0.01591842621564865, 0.050398919731378555, -0.14263980090618134, 0.13172291219234467, 0.029459059238433838, 0.06338372826576233, 0.18536004424095154, 0.09175121039152145, -0.07052300870418549, -0.09466012567281723, -0.021672477945685387, -0.10057182610034943, -0.09041444957256317, 0.025121768936514854, -0.08383399993181229, 0.036539461463689804, 0.004921828396618366, -0.11819758266210556, 0.14000152051448822, 0.03286801278591156, -0.10889818519353867, -0.032886672765016556, 0.11247352510690689, -0.0010760822333395481, 0.10181199759244919, -0.028607632964849472, 0.06570121645927429, 0.17313261330127716, -0.0445546880364418, -0.03966304287314415, -0.11301117390394211, -0.014444224536418915, 0.04785528406500816, -0.0554671436548233, 0.0030594810377806425, 0.032636743038892746, 0.009607333689928055, -0.03903317451477051, 0.015740979462862015, -0.015740979462862015, 0.006231285631656647, -0.003809504909440875, 0.00014097406528890133, -0.02976267784833908, 0.00826385710388422, 0.03812205046415329, -0.07685419172048569, -0.026975028216838837, -0.10783322155475616, -0.051287367939949036, -0.03233149275183678, -0.07912827283143997, 0.12643831968307495, -0.012501567602157593, -0.06755287200212479, 0.04837824031710625, 0.04121643677353859, 0.050323616713285446, 0.0717335119843483, -0.05349355563521385, 0.10659616440534592, 0.14784292876720428, -0.061620257794857025, -0.02470998838543892, 0.0472746267914772, -0.005120677873492241, -0.023840144276618958, -0.0742867961525917, 0.12551458179950714, -0.06798859685659409, -0.09297378361225128, 0.005692245904356241, 0.01308156456798315, 0.020060664042830467, -0.017408255487680435, 0.08169758319854736, -0.038426417857408524, -0.007186375092715025, 0.050463639199733734, 0.04102978855371475, 0.08410445600748062, 0.11881343275308609, 0.0623730830848217, 0.027115486562252045, 0.06715985387563705, 0.049697909504175186, -0.013507426716387272, -0.03379876911640167, 0.07587011158466339, 0.07783637940883636, -0.02824035845696926, 0.010555937886238098, 0.0077871535904705524, 0.11284804344177246, 0.005680840462446213, -0.194663405418396, -0.08333376795053482, -0.05289176106452942, 0.021339697763323784, -0.026157008484005928, 0.038464222103357315, -0.2085818499326706, -0.023830793797969818, -0.09999096393585205, -0.07661276310682297, -0.006003593560308218, -0.0604727566242218, 0.002268226118758321, -0.09274031221866608, -0.013753720559179783, 0.056446611881256104, 0.11783909052610397, -0.11373130977153778, -0.009672014974057674, -0.07375366240739822, 0.06978905946016312, 0.05670355632901192, 0.03452344238758087, -0.003212548792362213, -0.04175649955868721, -0.015018508769571781, -0.0921110138297081, 0.007588824722915888, 0.17509841918945312, -0.03653394803404808, -0.03639105334877968, 0.003083260264247656, -0.042180441319942474, -0.012406397610902786, -0.07308008521795273, 0.037454698234796524, -0.10240951180458069, 0.07303604483604431, 0.01383165642619133, -0.13741903007030487, 0.06913437694311142, 0.02521318569779396, -0.1568135768175125, 0.03040405362844467, 0.086819127202034, 0.11126427352428436, -0.0055086263455450535, 0.11020608991384506, 0.06138543039560318, -0.06828133016824722, 0.05242375656962395, -0.09725213795900345, 0.06643076986074448, 0.11171679198741913, 0.07371199876070023, -0.026127902790904045, -0.036086492240428925, 0.08647521585226059, 0.017854930832982063, -0.010753572918474674, 0.028567103669047356, -0.10587846487760544, -0.04181081801652908, 0.04212154448032379, -0.0622418113052845, 0.05273151770234108, -0.014100524596869946, 0.032756976783275604, 0.001314414432272315, 0.09097420424222946, 0.02628377079963684, 0.13338622450828552, 0.11821997910737991, -0.07472638040781021, -0.14772678911685944, 0.03629658743739128, -0.09212812036275864, 0.07171868532896042, -2.8745896997861564e-05, -0.11766037344932556, -0.01115851104259491, -0.001394855440594256, -0.10647648572921753, 0.05163067579269409, -0.06264904886484146, 0.060922540724277496, -0.026608338579535484, 0.018526636064052582, -0.07837165892124176, 0.02659551240503788, -0.01929224282503128, 0.015072176232933998, 0.030810462310910225, 0.07812952250242233, -0.09421326965093613, -0.06986677646636963, 0.014442449435591698, -0.08554666489362717, -0.0876535177230835, 0.027521653100848198, 0.024044493213295937, -0.007044605445116758, -0.06247541308403015, -0.06057750806212425, 0.058178629726171494, 0.11780842393636703, -0.061280809342861176, 0.03870536759495735, 0.010972786694765091, -0.03016098402440548, -0.018064191564917564, 0.006834195926785469, 0.1320987194776535, 0.1034127026796341, 0.044169679284095764, -0.013723905198276043, 0.09447026252746582, 0.0731033906340599, 0.06261569261550903, 0.04967721551656723, 0.026667894795536995, -0.011287499219179153, -0.001501509570516646, -0.014044646173715591, -0.10416366904973984, 0.002524725394323468, 0.016232475638389587, 0.015517708845436573, 0.027429675683379173, -0.08412893116474152, 0.06366603076457977, 0.009559701196849346, 0.1187332347035408, -0.06980226188898087, 0.08563259989023209, 0.00473117595538497, -0.06134211644530296, 0.040972817689180374, 0.08235378563404083, -0.04847501963376999, 0.05887741222977638, 0.02508227340877056, 0.012384669855237007, 0.007833275012671947, 0.026427391916513443, -0.11040207743644714, 0.0959201455116272, -0.05011317878961563, 0.07991645485162735, -0.040254782885313034, 0.13874518871307373, 0.06627850234508514, -0.03936968743801117, -0.061046916991472244, 0.06990411132574081, -0.02583298087120056, -0.025256114080548286, 0.13289716839790344, 0.025455061346292496, -0.11682510375976562, -0.008946902118623257, -0.007117383182048798, -0.0420340858399868, 0.0806044340133667, 0.06178511306643486, -0.029244428500533104, 0.06219600886106491, -0.08685252070426941, 0.02007567137479782, 0.04405602067708969, 0.04997987300157547, -0.10522764176130295, 0.002078584162518382, 0.04834149777889252, 0.014456739649176598, -0.11951884627342224, 0.07085728645324707, -0.054922036826610565, 0.027078988030552864, -0.055500973016023636, 0.04880679398775101, 0.05487987771630287, -0.005967089906334877, 0.006544401869177818, 0.074611134827137, 0.10236600041389465, -0.03694107010960579, -0.007623464800417423, 0.0473976768553257, 0.09634612500667572, 0.022406654432415962, -0.14701910316944122, -0.1205761656165123, 0.0689251646399498], +zext:[-0.06279171258211136, 0.0700196847319603, -0.004213762003928423, -0.09261283278465271, -0.0812467560172081, -0.02230857126414776, 0.07758316397666931, -0.009437257423996925, 0.012246580794453621, 0.04947355017066002, 0.04390616714954376, -0.01656648889183998, -0.16990603506565094, 0.05485546588897705, -0.013873063959181309, 0.1088358461856842, -0.04274898022413254, 0.012334030121564865, -0.04746905341744423, -0.06208883225917816, -0.1321541965007782, -0.0200771726667881, -0.06339693814516068, -0.04715495929121971, 0.029865754768252373, -0.1098208799958229, -0.006959009449928999, 0.04862246662378311, 0.06479299068450928, -0.01690303534269333, 0.01579122804105282, -0.07099296152591705, 0.006960534956306219, 0.08845822513103485, 0.0004687647451646626, 0.029240690171718597, -0.047828830778598785, 0.07274237275123596, -0.07246170938014984, 0.08844161778688431, 0.08739779144525528, -0.07961883395910263, 0.056701935827732086, 0.042619723826646805, 0.09177172183990479, 0.04032498598098755, 0.0637177899479866, 0.08680059760808945, 0.17959308624267578, -0.11657552421092987, -0.012048689648509026, 0.0046525816433131695, 3.289295273134485e-05, -0.022542880848050117, -0.03392183035612106, -0.04659077897667885, 0.12028050422668457, -0.05846550688147545, -0.02376718632876873, -0.11834976822137833, -0.02951957657933235, -0.10101255774497986, -0.07599281519651413, 0.012390542775392532, -0.18718580901622772, -0.08267895877361298, -0.04386984929442406, 0.07136306911706924, -0.10481355339288712, -0.03996776416897774, -0.07444848865270615, -0.02891988307237625, 0.00011733629071386531, 0.016906343400478363, -0.022397825494408607, 0.03551339730620384, -0.027506833896040916, -0.04681713506579399, -0.03865467384457588, 0.10295702517032623, -0.07172499597072601, 0.02583279274404049, 0.01534251682460308, 0.048924077302217484, 0.016289515420794487, 0.07346170395612717, 0.011883754283189774, -0.04090692475438118, -0.1370660811662674, -0.11289338767528534, -0.0852338895201683, -0.028360992670059204, 0.11210138350725174, 0.01765788532793522, 0.0619472935795784, 0.07244103401899338, 0.05849752947688103, 0.09327222406864166, -0.027734046801924706, 0.14712001383304596, 0.08064805716276169, -0.03917808085680008, 0.06797990947961807, 0.044407524168491364, 0.11492297053337097, -0.010533995926380157, -0.0517672523856163, -0.04526248201727867, -0.003952461294829845, -0.03344257175922394, -0.005216142162680626, 0.11665765196084976, 0.11792787164449692, -0.01807827316224575, -0.08589103072881699, -0.15003401041030884, -0.02889338508248329, 0.1297178715467453, -0.09091975539922714, 0.08013257384300232, -0.09681769460439682, -0.042530931532382965, 0.08409613370895386, -0.0699835792183876, 0.12380962073802948, -0.048636239022016525, 0.06667888909578323, -0.00599905988201499, 0.059327807277441025, -0.008082418702542782, -0.012288523837924004, -0.012592699378728867, -0.09971902519464493, 0.013431139290332794, 0.15718108415603638, 0.07042411714792252, -0.014078696258366108, 0.0009662678348831832, 0.025155935436487198, -0.008479290641844273, -0.11512286216020584, 0.03694412484765053, -0.09387695044279099, 0.10317337512969971, -0.0720762312412262, -0.08054634183645248, 0.07527324557304382, -0.05504056066274643, 0.1261734813451767, 0.03284606337547302, -0.12618137896060944, 0.08896490186452866, -0.009752318263053894, 0.09348487854003906, 0.12846733629703522, -0.0751708596944809, 0.06759657710790634, 0.06639930605888367, -0.013480995781719685, 0.02476629801094532, 0.15242871642112732, -0.03041592240333557, -0.11948774755001068, -0.07890398800373077, 0.08588402718305588, -0.02017584815621376, 0.006730870809406042, -0.0829756110906601, -0.038457050919532776, -0.12756438553333282, -0.01705140620470047, -0.04501807317137718, -0.1032978892326355, 0.05099096894264221, -0.17425405979156494, 0.07478903979063034, 0.001395762199535966, 0.14489305019378662, -0.04716283082962036, -0.010205000638961792, 0.09464496374130249, 0.28947126865386963, 0.11911572515964508, -0.10187330842018127, 0.13493777811527252, -0.025204341858625412, 0.03830808401107788, 0.06222927197813988, -0.10442794114351273, 0.08163037151098251, -0.007498313207179308, 0.016508642584085464, 0.0768323466181755, -0.068623848259449, -0.06282225996255875, 0.02380126714706421, -0.03970913216471672, -0.14136049151420593, 0.03368031233549118, 0.014216996729373932, 0.004587069153785706, -0.0672830194234848, 0.08523675799369812, -0.0815059095621109, 0.019383788108825684, -0.011831273324787617, -0.004571900237351656, 0.0014637259300798178, -0.09057621657848358, 0.0025717441458255053, 0.05711033567786217, 0.04755375161767006, 0.12870043516159058, 0.04441672936081886, 0.013695897534489632, -0.031339798122644424, -0.02293168008327484, 0.026521028950810432, 0.09043865650892258, 0.08367139101028442, 0.026886695995926857, -0.045658547431230545, -0.0007129960577003658, 0.08910591900348663, 0.07037569582462311, 0.059646617621183395, 0.0217044185847044, -0.006252591032534838, -0.10723316669464111, 0.014333815313875675, -0.09142835438251495, 0.1208019107580185, 0.012629736214876175, 0.06515329331159592, 0.06437531858682632, 0.1830843836069107, 0.03665701299905777, 0.08389655500650406, 0.13015145063400269, -0.13927769660949707, 0.08319250494241714, 0.03241805359721184, -0.008910550735890865, 0.07836779952049255, -0.14806817471981049, -0.060783497989177704, 0.05804769694805145, 0.01190230529755354, 0.012147611938416958, 0.07930511981248856, 0.015280351042747498, -0.11801182478666306, 0.038031384348869324, 0.04421663284301758, -0.05848813056945801, 0.16468413174152374, 0.01733839325606823, 0.0577675886452198, -0.01092002633959055, 0.013081032782793045, 0.061827730387449265, 0.08682520687580109, -0.024889780208468437, 0.1587631106376648, -0.09539694339036942, -0.12001819908618927, -0.020625630393624306, -0.06568348407745361, 0.08845050632953644, 0.051387786865234375, -0.029304062947630882, 0.08614585548639297, 0.05978437885642052, 0.10804608464241028, 0.047528013586997986, 0.07013339549303055, -0.005094991531223059, -0.09025318920612335, -0.16342489421367645, 0.05324475094676018, 0.002106793224811554, -0.011322136968374252, -0.12180645018815994, -0.15533818304538727, 0.07030927389860153, -0.07874257862567902, 0.0908893570303917, 0.03571706637740135, -0.1520312875509262, -0.03783762454986572, 0.05665115267038345, 0.051413100212812424, -0.08422916382551193, 0.048643361777067184, 0.018068192526698112, 0.09481100738048553, -0.1250186711549759, -0.02178032509982586, -0.1485329419374466, 0.05567638576030731]